From e6c4a1347a7ddcd510d8b244d0da0ab0a9844fd9 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Mon, 12 Jan 2015 13:15:57 +0100 Subject: [PATCH 01/25] new template for tei:notatedMusic --- .gitignore | 2 ++ xsl/common_main.xsl | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/.gitignore b/.gitignore index 6051e24a6..08595586e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .DS_Store .sass-cache build/ +tmp/ +dist/ expath-pkg.xml resources/fonts resources/pix/upb-logo.png diff --git a/xsl/common_main.xsl b/xsl/common_main.xsl index 32f908189..359fc4747 100644 --- a/xsl/common_main.xsl +++ b/xsl/common_main.xsl @@ -872,6 +872,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From e374199d3ee495d95ebe25f450f5166c8c4762ba Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Wed, 3 Jun 2015 17:26:56 +0200 Subject: [PATCH 02/25] prepared for switching person IDs to hexadecimal --- controller.xql | 16 +++++++-------- modules/config.xqm | 4 ++-- modules/dev/dev.xqm | 48 ++++++++++++++++++++++++++++++++++++++++++--- 3 files changed, 55 insertions(+), 13 deletions(-) diff --git a/controller.xql b/controller.xql index 7131aa5cf..1e2e616c8 100644 --- a/controller.xql +++ b/controller.xql @@ -282,7 +282,7 @@ else if (matches($exist:path, concat('^/', $lang, '/', $volContents, '/?$'))) th (: Personen - Weiterleitung :) -else if (matches($exist:path, '^/A00\d{4}/?$')) then +else if (matches($exist:path, '^/A00[A-F0-9]{4}/?$')) then controller:redirect-docID($exist-vars, $exist:resource) (: Andere Dokumenten - Weiterleitung :) @@ -290,8 +290,8 @@ else if (matches($exist:path, '^/(de/|en/)?A0[3456]\d{4}/?$')) then controller:redirect-docID($exist-vars, $exist:resource) (: Personen - Briefliste :) -else if (matches($exist:path, concat('^/', $lang, '/A00\d{4}/', $correspondence, '/?$'))) then - let $authorID := string-join(functx:get-matches($exist:path, 'A00\d{4}'), '') +else if (matches($exist:path, concat('^/', $lang, '/A00[A-F0-9]{4}/', $correspondence, '/?$'))) then + let $authorID := string-join(functx:get-matches($exist:path, 'A00[A-F0-9]{4}'), '') return @@ -302,8 +302,8 @@ else if (matches($exist:path, concat('^/', $lang, '/A00\d{4}/', $correspondence, (: Personen - Schriftenliste :) -else if (matches($exist:path, concat('^/', $lang, '/A00\d{4}/', $writings, '/?$'))) then - let $authorID := string-join(functx:get-matches($exist:path, 'A00\d{4}'),'') +else if (matches($exist:path, concat('^/', $lang, '/A00[A-F0-9]{4}/', $writings, '/?$'))) then + let $authorID := string-join(functx:get-matches($exist:path, 'A00[A-F0-9]{4}'),'') return @@ -314,8 +314,8 @@ else if (matches($exist:path, concat('^/', $lang, '/A00\d{4}/', $writings, '/?$' (: Personen - Werkeliste :) -else if (matches($exist:path, concat('^/', $lang, '/A00\d{4}/', $works, '/?$'))) then - let $authorID := string-join(functx:get-matches($exist:path, 'A00\d{4}'),'') +else if (matches($exist:path, concat('^/', $lang, '/A00[A-F0-9]{4}/', $works, '/?$'))) then + let $authorID := string-join(functx:get-matches($exist:path, 'A00[A-F0-9]{4}'),'') return @@ -338,7 +338,7 @@ else if (matches($exist:path, concat('^/', $lang, '/A002068/', $diaries, '/?$')) (: Personen - Einzelansicht :) -else if (matches($exist:path, concat('^/', $lang, '/A00\d{4}/?$'))) then +else if (matches($exist:path, concat('^/', $lang, '/A00[A-F0-9]{4}/?$'))) then let $js := if(request:get-parameter-names() = $ajaxCrawlerParameter) then 'false' else 'true' let $person := core:doc($exist:resource)/tei:person return if(exists($person)) then diff --git a/modules/config.xqm b/modules/config.xqm index d82626b46..7dcbf9dfc 100755 --- a/modules/config.xqm +++ b/modules/config.xqm @@ -196,7 +196,7 @@ declare function config:get-doctype-by-id($id as xs:string?) as xs:string? { : @return xs:boolean :) declare function config:is-person($docID as xs:string?) as xs:boolean { - matches($docID, '^A00\d{4}$') + matches($docID, '^A00[0-9A-F]{4}$') }; (:~ @@ -342,7 +342,7 @@ declare function config:is-biblioType($string as xs:string) as xs:boolean { declare function config:getCollectionPath($docID as xs:string) as xs:string? { let $docType := config:get-doctype-by-id($docID) return - if(exists($docType)) then core:join-path-elements(($config:data-collection-path, $docType, replace($docID, '\d{2}$', 'xx'))) + if(exists($docType)) then core:join-path-elements(($config:data-collection-path, $docType, replace($docID, '[A-F0-9]{2}$', 'xx'))) else () }; diff --git a/modules/dev/dev.xqm b/modules/dev/dev.xqm index 89f409130..2febd5780 100644 --- a/modules/dev/dev.xqm +++ b/modules/dev/dev.xqm @@ -61,7 +61,7 @@ declare function dev:addFffiEntry($IDFile as document-node(), $id as xs:string?) let $currentdateTime := util:system-dateTime() let $newNode := let $storeNode := - if (matches($id, '_A\d{6}')) then update insert $newNode into $IDFile/dev:dictionary + if (config:get-doctype-by-id(substring($id, 2))) then update insert $newNode into $IDFile/dev:dictionary else error(xs:QName('dev:error'), 'got wrong ID: ' || $id) return $IDFile//id($id)/string(@xml:id) @@ -97,8 +97,11 @@ declare function dev:removeOldEntries($IDFile as document-node()) as empty() { declare %private function dev:getNewID($max as xs:integer, $coll1 as xs:string+, $coll2 as xs:string+) as xs:string { let $IDPrefix := substring($coll1[22], 1, 3) (: use a higher element diary summaries, e.g. diary_Weber_1817 :) - let $rand := functx:pad-integer-to-length(util:random($max) + 1, 4) + let $rand := + if(config:is-person($coll1[22])) then dev:pad-hex-to-length(dev:int2hex(util:random($max)), 4) + else functx:pad-integer-to-length(util:random($max), 4) let $newID := concat($IDPrefix, $rand) + let $Log := util:log-system-out($newID) return if ($newID = ($coll1, $coll2)) then dev:getNewID($max, $coll1, $coll2) else $newID @@ -123,7 +126,7 @@ declare function dev:createNewID($docType as xs:string) as xs:string { let $removeOldTempIDS := dev:removeOldEntries($IDFile) let $maxID := count($coll1) + count($coll2) + 200 let $newID := - if ($maxID lt 9999) then dev:addFffiEntry($IDFile, concat('_', dev:getNewID($maxID, $coll1, $coll2))) + if ($maxID lt 65535) then dev:addFffiEntry($IDFile, concat('_', dev:getNewID($maxID, $coll1, $coll2))) else '_kein Eintrag verfügbar' return substring($newID, 2) @@ -221,3 +224,42 @@ declare function dev:ant-log() as map(*) { map:entry('success', if($logLines = 'BUILD SUCCESSFUL') then 'success' else 'failed') )) }; + +declare variable $dev:int2hex as map() := map { + '0' := '0', + '1' := '1', + '2' := '2', + '3' := '3', + '4' := '4', + '5' := '5', + '6' := '6', + '7' := '7', + '8' := '8', + '9' := '9', + '10' := 'A', + '11' := 'B', + '12' := 'C', + '13' := 'D', + '14' := 'E', + '15' := 'F' +}; + +declare function dev:int2hex($number as xs:int) as xs:string { + let $div := $number div 16 + let $count := floor($div) + let $remainder := ($div - $count) * 16 + return + concat( + if($count gt 15) then dev:int2hex($count) + else $dev:int2hex($count), + $dev:int2hex($remainder) + ) +}; + +declare function dev:pad-hex-to-length($stringToPad as xs:string?, $length as xs:integer) as xs:string { + if ($length lt string-length($stringToPad)) then error(xs:QName('dev:Hex_Longer_Than_Length')) + else concat( + functx:repeat-string('0', $length - string-length($stringToPad)), + $stringToPad + ) +}; From df825d859ae2c0e3dbd0bce06768d6e9f245d84b Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Wed, 3 Jun 2015 17:31:24 +0200 Subject: [PATCH 03/25] removed debug logging --- modules/dev/dev.xqm | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/dev/dev.xqm b/modules/dev/dev.xqm index 2febd5780..0f09a50f0 100644 --- a/modules/dev/dev.xqm +++ b/modules/dev/dev.xqm @@ -101,7 +101,6 @@ declare %private function dev:getNewID($max as xs:integer, $coll1 as xs:string+, if(config:is-person($coll1[22])) then dev:pad-hex-to-length(dev:int2hex(util:random($max)), 4) else functx:pad-integer-to-length(util:random($max), 4) let $newID := concat($IDPrefix, $rand) - let $Log := util:log-system-out($newID) return if ($newID = ($coll1, $coll2)) then dev:getNewID($max, $coll1, $coll2) else $newID From c4e0c71ff0cb81fb7d06ce50054fc6968f4760f7 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Wed, 10 Jun 2015 16:32:07 +0200 Subject: [PATCH 04/25] further fixes for hexadecimal IDs --- resources/js/search_functions.js | 2 +- xsl/common_main.xsl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/search_functions.js b/resources/js/search_functions.js index 3136db9c7..104ce149f 100644 --- a/resources/js/search_functions.js +++ b/resources/js/search_functions.js @@ -175,7 +175,7 @@ function requestSearchResults(lang,historySearch) { var searchString = searchString.replace(',',''); // Eingabe einer ID abfangen - if(searchString.match(/^A+\d{6}$/)) { + if(searchString.match(/^A[0-9A-F]{6}$/)) { var urlID = "functions/getAjax.xql?function=search_testID&id="+searchString+"&lang="+lang; new Ajax.Request(urlID, { onSuccess: function(t) { diff --git a/xsl/common_main.xsl b/xsl/common_main.xsl index 359fc4747..1745407ef 100644 --- a/xsl/common_main.xsl +++ b/xsl/common_main.xsl @@ -91,7 +91,7 @@ - + From 560dded41dd46bbec0bd61bc56d1113390d80c25 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Thu, 11 Jun 2015 16:03:34 +0200 Subject: [PATCH 05/25] preserve space for tei:note --- xsl/diary_tableLeft.xsl | 2 +- xsl/doc_text.xsl | 2 +- xsl/letter_text.xsl | 2 +- xsl/news.xsl | 2 +- xsl/person_singleView.xsl | 2 +- xsl/var.xsl | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/xsl/diary_tableLeft.xsl b/xsl/diary_tableLeft.xsl index ad85ab0cc..db81c119a 100644 --- a/xsl/diary_tableLeft.xsl +++ b/xsl/diary_tableLeft.xsl @@ -6,7 +6,7 @@ + elements="tei:seg tei:hi tei:ab tei:persName tei:rs tei:workName tei:characterName tei:placeName tei:date tei:add tei:head tei:note"/> diff --git a/xsl/doc_text.xsl b/xsl/doc_text.xsl index fc4752d14..4732468d4 100644 --- a/xsl/doc_text.xsl +++ b/xsl/doc_text.xsl @@ -8,7 +8,7 @@ + elements="tei:item tei:cell tei:p tei:dateline tei:closer tei:opener tei:hi tei:persName tei:rs tei:workName tei:characterName tei:placeName tei:seg tei:footNote tei:head tei:date tei:note"/> diff --git a/xsl/letter_text.xsl b/xsl/letter_text.xsl index b1a824119..997ba809c 100644 --- a/xsl/letter_text.xsl +++ b/xsl/letter_text.xsl @@ -7,7 +7,7 @@ + elements="tei:item tei:cell tei:p tei:dateline tei:closer tei:opener tei:hi tei:addrLine tei:persName tei:rs tei:workName tei:characterName tei:placeName tei:seg tei:l tei:head tei:salute tei:date tei:note"/> diff --git a/xsl/news.xsl b/xsl/news.xsl index 0a494bdbf..895f84bdf 100644 --- a/xsl/news.xsl +++ b/xsl/news.xsl @@ -6,7 +6,7 @@ + elements="tei:item tei:cell tei:p tei:dateline tei:closer tei:opener tei:hi tei:persName tei:rs tei:workName tei:characterName tei:placeName tei:seg tei:head tei:date tei:note"/> diff --git a/xsl/person_singleView.xsl b/xsl/person_singleView.xsl index ec4ddd9e2..33d381c94 100644 --- a/xsl/person_singleView.xsl +++ b/xsl/person_singleView.xsl @@ -7,7 +7,7 @@ + elements="tei:item tei:cell tei:hi tei:persName tei:rs tei:workName tei:characterName tei:placeName tei:head tei:date tei:note"/> diff --git a/xsl/var.xsl b/xsl/var.xsl index 43c6c11a4..eaba8f5ae 100644 --- a/xsl/var.xsl +++ b/xsl/var.xsl @@ -9,7 +9,7 @@ + elements="tei:cell tei:p tei:hi tei:persName tei:rs tei:workName tei:characterName tei:placeName tei:code tei:eg tei:item tei:head tei:date tei:note"/> From 08cc24e9cf1854fbdcc190320b7d64bdcf3c3393 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Tue, 16 Jun 2015 10:11:12 +0200 Subject: [PATCH 06/25] fixes a class name error --- xsl/common_main.xsl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xsl/common_main.xsl b/xsl/common_main.xsl index 1745407ef..5cf1161b5 100644 --- a/xsl/common_main.xsl +++ b/xsl/common_main.xsl @@ -550,10 +550,10 @@ tei_add - tei_hiSuperscript + tei_hi_superscript - tei_hiSubscript + tei_hi_subscript - Keine biographischen Angaben gefunden + Biographische Kurzübersicht nicht vorliegend + Kurzbiographie aus einem der folgenden Gründe nicht vorhanden + Daten werden erst zu einem späteren Zeitpunkt ergänzt + Die Recherchen der WeGA waren bislang erfolglos + Es handelt sich um eine allgemein bekannte Person, die bereits ausreichend an anderer Stelle erschlossen ist, vgl. etwa den Wikipedia-Link keine Angaben gefunden Datum unbekannt diff --git a/catalogues/dictionary_en.xml b/catalogues/dictionary_en.xml index d5094b9a3..4c9a9a32d 100644 --- a/catalogues/dictionary_en.xml +++ b/catalogues/dictionary_en.xml @@ -201,7 +201,11 @@ Tools Development - No biographical data found + Biographical data not available + Biography not available due to one of the following causes + Data will be added at a later stage + Research of the WeGA was without success so far + It is a well known person where enough information is available online elsewhere, cf. e.g Wikipedia no data found date unknown diff --git a/modules/ajax.xqm b/modules/ajax.xqm index b63b1eaef..88d366b9c 100644 --- a/modules/ajax.xqm +++ b/modules/ajax.xqm @@ -250,7 +250,15 @@ return ( else if($person//tei:event) then () - else
({lang:get-language-string('noBioFound',$lang)})
, + else
+

{lang:get-language-string('noBioFound',$lang)}

+

{lang:get-language-string('noBioFoundReason',$lang)}:

+
    +
  • {lang:get-language-string('noBioFoundReason1',$lang)}
  • +
  • {lang:get-language-string('noBioFoundReason2',$lang)}
  • +
  • {lang:get-language-string('noBioFoundReason3',$lang)}
  • +
+
, if($id eq 'A002068') then if ($lang eq 'en') then () else

Einen ausführlichen Lebenslauf finden Sie in der erweiterten Biographie

@@ -609,10 +617,7 @@ declare function ajax:printTranscription($docID as xs:string, $lang as xs:string else () let $head := if(config:is-letter($docID)) then wega:getLetterHead($doc, $lang) - else if(config:is-news($docID)) then element h1 { - transform:transform($doc//tei:fileDesc/tei:titleStmt/tei:title[@level='a'], doc(concat($config:xsl-collection-path, '/common_main.xsl')), config:get-xsl-params(())) - (:string($doc//tei:title[@level='a']):) - } + else if(config:is-news($docID)) then element h1 {string($doc//tei:title[@level='a'])} else if(config:is-writing($docID)) then wega:getWritingHead($doc, $xslParams, $lang) else () let $body := From 3756feba2dc1a9b9940a952b9e2d910e4d00046a Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Mon, 28 Sep 2015 17:31:26 +0200 Subject: [PATCH 11/25] suppressed display of GND ID for work previews, closes #42 --- modules/wega.xqm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/wega.xqm b/modules/wega.xqm index 364e1a2c6..0868f9008 100644 --- a/modules/wega.xqm +++ b/modules/wega.xqm @@ -931,9 +931,9 @@ declare function wega:getWorkMetaData($doc as document-node(), $lang as xs:strin then lang:get-language-string('noDataFound', $lang) else ( string($doc//mei:fileDesc/mei:titleStmt/mei:title[not(@type)][1]), - if(exists($doc//mei:altId[@type])) then + if(exists($doc//mei:altId/@type[. !='gnd'])) then if(exists($doc//mei:altId[@type='WeV'])) then concat('(WeV ', $doc//mei:altId[@type='WeV'], ')') (: Weber-Werke :) - else concat('(', $doc//mei:altId[1]/string(@type), ' ', $doc//mei:altId[1], ')') (: Fremd-Werke :) + else concat('(', $doc//mei:altId/@type[. !='gnd'][1]/string(.), ' ', $doc//mei:altId[@type[. !='gnd']][1], ')') (: Fremd-Werke :) else() ) }, From 746558278d6200f3bd8ce53f0d33333765004f25 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Fri, 2 Oct 2015 12:20:16 +0200 Subject: [PATCH 12/25] small XPath fix --- modules/wega.xqm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wega.xqm b/modules/wega.xqm index 0868f9008..42c2252f4 100644 --- a/modules/wega.xqm +++ b/modules/wega.xqm @@ -933,7 +933,7 @@ declare function wega:getWorkMetaData($doc as document-node(), $lang as xs:strin string($doc//mei:fileDesc/mei:titleStmt/mei:title[not(@type)][1]), if(exists($doc//mei:altId/@type[. !='gnd'])) then if(exists($doc//mei:altId[@type='WeV'])) then concat('(WeV ', $doc//mei:altId[@type='WeV'], ')') (: Weber-Werke :) - else concat('(', $doc//mei:altId/@type[. !='gnd'][1]/string(.), ' ', $doc//mei:altId[@type[. !='gnd']][1], ')') (: Fremd-Werke :) + else concat('(', ($doc//mei:altId/@type[. !='gnd'])[1]/string(.), ' ', ($doc//mei:altId[@type[. !='gnd']])[1], ')') (: Fremd-Werke :) else() ) }, From ac71c75fa7c254deae45780ee8a5bd93da242265 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Fri, 2 Oct 2015 12:20:53 +0200 Subject: [PATCH 13/25] hardcoded values for diary editorial --- modules/diary_singleView.xql | 30 ++++-------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/modules/diary_singleView.xql b/modules/diary_singleView.xql index 33f428045..45709e6af 100644 --- a/modules/diary_singleView.xql +++ b/modules/diary_singleView.xql @@ -49,9 +49,6 @@ let $lang := request:get-parameter('lang','de') let $docID := request:get-parameter('id','A060001') let $withJS := if(request:get-parameter('js', 'true') eq 'true') then true() else false() let $doc := core:doc($docID) -let $docYear := year-from-date(xs:date($doc/tei:ab/@n)) -let $docYearID := concat('diary_Weber_', $docYear) -let $docYear := collection('/db/diaries')//id($docYearID) let $authorID := 'A002068' let $xslParams := config:get-xsl-params(()) let $contextContainer := 'context' @@ -133,31 +130,12 @@ return ({lang:get-language-string('show',$lang)})
{if(not($withJS)) From f846bb5a481bb700e5e6654b6b2d81a257a934c9 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Fri, 2 Oct 2015 12:35:03 +0200 Subject: [PATCH 14/25] elaborated library description --- modules/diary_singleView.xql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/diary_singleView.xql b/modules/diary_singleView.xql index 45709e6af..aa11069f5 100644 --- a/modules/diary_singleView.xql +++ b/modules/diary_singleView.xql @@ -135,7 +135,11 @@ return

{lang:get-language-string('textSource',$lang)}

-
D-B, Mus. ms. autogr. theor. C. M. v. Weber 1
+
+

Berlin (D), Staatsbibliothek zu Berlin Preußischer Kulturbesitz, Musikabteilung (D-B), +
Signatur: Mus. ms. autogr. theor. C. M. v. Weber 1 +

+
{if(not($withJS)) From f27343831413582b95893d9de8ff57649f0e8a99 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Fri, 2 Oct 2015 13:24:33 +0200 Subject: [PATCH 15/25] fixed display of tei:biblStruct within tei:additional of the source description --- modules/wega.xqm | 17 +++++++++++++++-- xsl/sourceDesc.xsl | 20 +++++++------------- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/modules/wega.xqm b/modules/wega.xqm index 42c2252f4..1a67a269b 100644 --- a/modules/wega.xqm +++ b/modules/wega.xqm @@ -1344,12 +1344,25 @@ declare function wega:printSourceDesc($doc as document-node(), $lang as xs:strin return if(functx:all-whitespace($source)) then {lang:get-language-string('noDataFound',$lang)} - else + else ( typeswitch($source) case element(tei:listWit) return wega:listWit($source, $lang) case element(tei:msDesc) return transform:transform($source, doc(concat($config:xsl-collection-path, '/sourceDesc.xsl')), config:get-xsl-params(())) case element(tei:biblStruct) return bibl:printCitation($source, 'p', $lang) - default return {lang:get-language-string('noDataFound',$lang)} + default return {lang:get-language-string('noDataFound',$lang)}, + + if($source//tei:additional/tei:listBibl) then ( +

{lang:get-language-string('prints', $lang)}

, +
    { + for $i in $source//tei:additional/tei:listBibl/* + return + typeswitch($i) + case element(tei:biblStruct) return bibl:printCitation($i, 'li', $lang) + default return transform:transform($i, doc(concat($config:xsl-collection-path, '/sourceDesc.xsl')), config:get-xsl-params(())) + }
+ ) + else () + ) } {if(exists($doc//tei:creation)) then (

{lang:get-language-string('creation',$lang)}

, diff --git a/xsl/sourceDesc.xsl b/xsl/sourceDesc.xsl index 91fd189bc..5c820a0bc 100644 --- a/xsl/sourceDesc.xsl +++ b/xsl/sourceDesc.xsl @@ -114,12 +114,9 @@
- - - - - - + + + @@ -127,7 +124,7 @@ - + @@ -137,14 +134,11 @@ - - - + + - + \ No newline at end of file From 6d5c503ec1b6aabbadb7ce4acd606da2604aef63 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Sun, 11 Oct 2015 17:10:02 +0200 Subject: [PATCH 16/25] added display of sic! --- xsl/common_main.xsl | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/xsl/common_main.xsl b/xsl/common_main.xsl index 5cf1161b5..1d000b171 100644 --- a/xsl/common_main.xsl +++ b/xsl/common_main.xsl @@ -830,6 +830,15 @@ ] + + + + + + + [sic] + + From a730017eef6d2df609a5448ea5b4028e1448ce68 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Sun, 11 Oct 2015 17:30:10 +0200 Subject: [PATCH 17/25] suppress addition of class (and a help pointer) for unknown works --- xsl/common_link.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsl/common_link.xsl b/xsl/common_link.xsl index d4dbe7da4..8dbe3752b 100644 --- a/xsl/common_link.xsl +++ b/xsl/common_link.xsl @@ -94,7 +94,7 @@
- +
From 8aab21d5c8a05ad657a9b2a45c6d05c3596d1a19 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Sun, 11 Oct 2015 17:48:24 +0200 Subject: [PATCH 18/25] created fallback for notatedMusic without graphic --- xsl/common_main.xsl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/xsl/common_main.xsl b/xsl/common_main.xsl index 1d000b171..5061e1a09 100644 --- a/xsl/common_main.xsl +++ b/xsl/common_main.xsl @@ -899,7 +899,7 @@ - + @@ -910,6 +910,13 @@ + + + + + + + From 997064a284aa73a61028129706296a2b6eb9c3cc Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Sun, 11 Oct 2015 20:18:40 +0200 Subject: [PATCH 19/25] updated to SMuFL 1.18 --- build.properties | 2 +- catalogues/charDecl.xml | 17334 ++++++++++++++++++++++---------------- xsl/common_main.xsl | 2 +- 3 files changed, 10167 insertions(+), 7171 deletions(-) diff --git a/build.properties b/build.properties index 9ba322843..f39875b46 100644 --- a/build.properties +++ b/build.properties @@ -5,5 +5,5 @@ project.app=WeGA-WebApp project.version=1.3.0 build.dir=build -smufl.font=http://www.smufl.org/files/bravura-1.02.zip +smufl.font=http://www.smufl.org/files/bravura-1.18.zip additional.img.dir=/Users/pstadler/WeGA/Subversion/trunk/webapp/pix diff --git a/catalogues/charDecl.xml b/catalogues/charDecl.xml index 7b09ffa52..3ec7d1054 100644 --- a/catalogues/charDecl.xml +++ b/catalogues/charDecl.xml @@ -1,4 +1,3 @@ - @@ -14,21 +13,34 @@ -

This work is available under dual license: BSD 2-Clause and Creative Commons Attribution 3.0 Unported License (CC BY 3.0) -

+

This work is available under dual license:

+ BSD 2-Clause + Creative Commons Attribution 3.0 Unported License (CC BY 3.0)
-

Born digital

+

+ Born digital, created with SMuFL-Browser version + 1.1.0 + on + 2015-06-03T13:34:13.182+02:00 +

+

+ Based upon SMuFL version + 1.18 + and Bravura version + 1.18 +

Accordion - - Right hand, 3 ranks, 4' stop (piccolo) + + accdnRH3RanksPiccolo + Right hand, 3 ranks, 4' stop (piccolo) U+E8A0 - + Classes @@ -36,10 +48,11 @@ - - Right hand, 3 ranks, 8' stop (clarinet) + + accdnRH3RanksClarinet + Right hand, 3 ranks, 8' stop (clarinet) U+E8A1 - + Classes @@ -47,10 +60,11 @@ - - Right hand, 3 ranks, upper tremolo 8' stop + + accdnRH3RanksUpperTremolo8 + Right hand, 3 ranks, upper tremolo 8' stop U+E8A2 - + Classes @@ -58,10 +72,11 @@ - - Right hand, 3 ranks, lower tremolo 8' stop + + accdnRH3RanksLowerTremolo8 + Right hand, 3 ranks, lower tremolo 8' stop U+E8A3 - + Classes @@ -69,10 +84,11 @@ - - Right hand, 3 ranks, 16' stop (bassoon) + + accdnRH3RanksBassoon + Right hand, 3 ranks, 16' stop (bassoon) U+E8A4 - + Classes @@ -80,10 +96,11 @@ - - Right hand, 3 ranks, 4' stop + 8' stop (oboe) + + accdnRH3RanksOboe + Right hand, 3 ranks, 4' stop + 8' stop (oboe) U+E8A5 - + Classes @@ -91,10 +108,11 @@ - - Right hand, 3 ranks, 8' stop + upper tremolo 8' stop (violin) + + accdnRH3RanksViolin + Right hand, 3 ranks, 8' stop + upper tremolo 8' stop (violin) U+E8A6 - + Classes @@ -102,10 +120,11 @@ - - Right hand, 3 ranks, 4' stop + 8' stop + upper tremolo 8' stop (imitation musette) + + accdnRH3RanksImitationMusette + Right hand, 3 ranks, 4' stop + 8' stop + upper tremolo 8' stop (imitation musette) U+E8A7 - + Classes @@ -113,10 +132,11 @@ - - Right hand, 3 ranks, lower tremolo 8' stop + 8' stop + upper tremolo 8' stop (authentic musette) + + accdnRH3RanksAuthenticMusette + Right hand, 3 ranks, lower tremolo 8' stop + 8' stop + upper tremolo 8' stop (authentic musette) U+E8A8 - + Classes @@ -124,10 +144,11 @@ - - Right hand, 3 ranks, 4' stop + 16' stop (organ) + + accdnRH3RanksOrgan + Right hand, 3 ranks, 4' stop + 16' stop (organ) U+E8A9 - + Classes @@ -135,10 +156,11 @@ - - Right hand, 3 ranks, 4' stop + 8' stop + 16' stop (harmonium) + + accdnRH3RanksHarmonium + Right hand, 3 ranks, 4' stop + 8' stop + 16' stop (harmonium) U+E8AA - + Classes @@ -146,10 +168,11 @@ - - Right hand, 3 ranks, 8' stop + 16' stop (bandoneón) + + accdnRH3RanksBandoneon + Right hand, 3 ranks, 8' stop + 16' stop (bandoneón) U+E8AB - + Classes @@ -157,10 +180,11 @@ - - Right hand, 3 ranks, 8' stop + upper tremolo 8' stop + 16' stop (accordion) + + accdnRH3RanksAccordion + Right hand, 3 ranks, 8' stop + upper tremolo 8' stop + 16' stop (accordion) U+E8AC - + Classes @@ -168,10 +192,11 @@ - - Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + upper tremolo 8' stop + 16' stop (master) + + accdnRH3RanksMaster + Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + upper tremolo 8' stop + 16' stop (master) U+E8AD - + Classes @@ -179,10 +204,11 @@ - - Right hand, 3 ranks, lower tremolo 8' stop + upper tremolo 8' stop + + accdnRH3RanksTwoChoirs + Right hand, 3 ranks, lower tremolo 8' stop + upper tremolo 8' stop U+E8AE - + Classes @@ -190,10 +216,11 @@ - - Right hand, 3 ranks, lower tremolo 8' stop + upper tremolo 8' stop + 16' stop + + accdnRH3RanksTremoloLower8ve + Right hand, 3 ranks, lower tremolo 8' stop + upper tremolo 8' stop + 16' stop U+E8AF - + Classes @@ -201,10 +228,11 @@ - - Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + upper tremolo 8' stop + + accdnRH3RanksTremoloUpper8ve + Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + upper tremolo 8' stop U+E8B0 - + Classes @@ -212,10 +240,11 @@ - - Right hand, 3 ranks, lower tremolo 8' stop + 8' stop + upper tremolo 8' stop + 16' stop + + accdnRH3RanksDoubleTremoloLower8ve + Right hand, 3 ranks, lower tremolo 8' stop + 8' stop + upper tremolo 8' stop + 16' stop U+E8B1 - + Classes @@ -223,10 +252,11 @@ - - Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + 8' stop + upper tremolo 8' stop + + accdnRH3RanksDoubleTremoloUpper8ve + Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + 8' stop + upper tremolo 8' stop U+E8B2 - + Classes @@ -234,10 +264,11 @@ - - Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + 8' stop + upper tremolo 8' stop + 16' stop + + accdnRH3RanksFullFactory + Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + 8' stop + upper tremolo 8' stop + 16' stop U+E8B3 - + Classes @@ -245,10 +276,11 @@ - - Right hand, 4 ranks, soprano + + accdnRH4RanksSoprano + Right hand, 4 ranks, soprano U+E8B4 - + Classes @@ -256,10 +288,11 @@ - - Right hand, 4 ranks, alto + + accdnRH4RanksAlto + Right hand, 4 ranks, alto U+E8B5 - + Classes @@ -267,10 +300,11 @@ - - Right hand, 4 ranks, tenor + + accdnRH4RanksTenor + Right hand, 4 ranks, tenor U+E8B6 - + Classes @@ -278,10 +312,11 @@ - - Right hand, 4 ranks, master + + accdnRH4RanksMaster + Right hand, 4 ranks, master U+E8B7 - + Classes @@ -289,10 +324,11 @@ - - Right hand, 4 ranks, soft bass + + accdnRH4RanksSoftBass + Right hand, 4 ranks, soft bass U+E8B8 - + Classes @@ -300,10 +336,11 @@ - - Right hand, 4 ranks, soft tenor + + accdnRH4RanksSoftTenor + Right hand, 4 ranks, soft tenor U+E8B9 - + Classes @@ -311,10 +348,11 @@ - - Right hand, 4 ranks, bass/alto + + accdnRH4RanksBassAlto + Right hand, 4 ranks, bass/alto U+E8BA - + Classes @@ -322,10 +360,11 @@ - - Left hand, 2 ranks, 8' stop (round) + + accdnLH2Ranks8Round + Left hand, 2 ranks, 8' stop (round) U+E8BB - + Classes @@ -333,10 +372,11 @@ - - Left hand, 2 ranks, 16' stop (round) + + accdnLH2Ranks16Round + Left hand, 2 ranks, 16' stop (round) U+E8BC - + Classes @@ -344,10 +384,11 @@ - - Left hand, 2 ranks, 8' stop + 16' stop (round) + + accdnLH2Ranks8Plus16Round + Left hand, 2 ranks, 8' stop + 16' stop (round) U+E8BD - + Classes @@ -355,10 +396,11 @@ - - Left hand, 2 ranks, master (round) + + accdnLH2RanksMasterRound + Left hand, 2 ranks, master (round) U+E8BE - + Classes @@ -366,10 +408,11 @@ - - Left hand, 2 ranks, master + 16' stop (round) + + accdnLH2RanksMasterPlus16Round + Left hand, 2 ranks, master + 16' stop (round) U+E8BF - + Classes @@ -377,10 +420,11 @@ - - Left hand, 2 ranks, full master (round) + + accdnLH2RanksFullMasterRound + Left hand, 2 ranks, full master (round) U+E8C0 - + Classes @@ -388,10 +432,11 @@ - - Left hand, 3 ranks, 8' stop (square) + + accdnLH3Ranks8Square + Left hand, 3 ranks, 8' stop (square) U+E8C1 - + Classes @@ -399,10 +444,11 @@ - - Left hand, 3 ranks, 2' stop (square) + + accdnLH3Ranks2Square + Left hand, 3 ranks, 2' stop (square) U+E8C2 - + Classes @@ -410,10 +456,11 @@ - - Left hand, 3 ranks, double 8' stop (square) + + accdnLH3RanksDouble8Square + Left hand, 3 ranks, double 8' stop (square) U+E8C3 - + Classes @@ -421,10 +468,11 @@ - - Left hand, 3 ranks, 2' stop + 8' stop (square) + + accdnLH3Ranks2Plus8Square + Left hand, 3 ranks, 2' stop + 8' stop (square) U+E8C4 - + Classes @@ -432,10 +480,11 @@ - - Left hand, 3 ranks, 2' stop + double 8' stop (tutti) (square) + + accdnLH3RanksTuttiSquare + Left hand, 3 ranks, 2' stop + double 8' stop (tutti) (square) U+E8C5 - + Classes @@ -443,10 +492,11 @@ - - Combining right hand, 3 ranks, empty + + accdnCombRH3RanksEmpty + Combining right hand, 3 ranks, empty U+E8C6 - + Classes @@ -454,10 +504,11 @@ - - Combining right hand, 4 ranks, empty + + accdnCombRH4RanksEmpty + Combining right hand, 4 ranks, empty U+E8C7 - + Classes @@ -465,10 +516,11 @@ - - Combining left hand, 2 ranks, empty + + accdnCombLH2RanksEmpty + Combining left hand, 2 ranks, empty U+E8C8 - + Classes @@ -476,10 +528,11 @@ - - Combining left hand, 3 ranks, empty (square) + + accdnCombLH3RanksEmptySquare + Combining left hand, 3 ranks, empty (square) U+E8C9 - + Classes @@ -487,10 +540,11 @@ - - Combining accordion coupler dot + + accdnCombDot + Combining accordion coupler dot U+E8CA - + Classes @@ -498,10 +552,11 @@ - - Push + + accdnPush + Push U+E8CB - + Classes @@ -509,10 +564,11 @@ - - Pull + + accdnPull + Pull U+E8CC - + Classes @@ -520,10 +576,11 @@ - - Ricochet (2 tones) + + accdnRicochet2 + Ricochet (2 tones) U+E8CD - + Classes @@ -531,10 +588,11 @@ - - Ricochet (3 tones) + + accdnRicochet3 + Ricochet (3 tones) U+E8CE - + Classes @@ -542,10 +600,11 @@ - - Ricochet (4 tones) + + accdnRicochet4 + Ricochet (4 tones) U+E8CF - + Classes @@ -553,10 +612,11 @@ - - Ricochet (5 tones) + + accdnRicochet5 + Ricochet (5 tones) U+E8D0 - + Classes @@ -564,10 +624,11 @@ - - Ricochet (6 tones) + + accdnRicochet6 + Ricochet (6 tones) U+E8D1 - + Classes @@ -575,10 +636,11 @@ - - Combining ricochet for stem (2 tones) + + accdnRicochetStem2 + Combining ricochet for stem (2 tones) U+E8D2 - + Classes @@ -587,10 +649,11 @@ - - Combining ricochet for stem (3 tones) + + accdnRicochetStem3 + Combining ricochet for stem (3 tones) U+E8D3 - + Classes @@ -599,10 +662,11 @@ - - Combining ricochet for stem (4 tones) + + accdnRicochetStem4 + Combining ricochet for stem (4 tones) U+E8D4 - + Classes @@ -611,10 +675,11 @@ - - Combining ricochet for stem (5 tones) + + accdnRicochetStem5 + Combining ricochet for stem (5 tones) U+E8D5 - + Classes @@ -623,10 +688,11 @@ - - Combining ricochet for stem (6 tones) + + accdnRicochetStem6 + Combining ricochet for stem (6 tones) U+E8D6 - + Classes @@ -638,66 +704,89 @@ Analytics - - Hauptstimme + + analyticsHauptstimme + Hauptstimme U+E860 U+1D1A6 - + - - Nebenstimme + + analyticsNebenstimme + Nebenstimme U+E861 U+1D1A7 - + - - Start of stimme + + analyticsStartStimme + Start of stimme U+E862 - + - - End of stimme + + analyticsEndStimme + End of stimme U+E863 U+1D1A8 - + - - Theme + + analyticsTheme + Theme U+E864 - + - - Retrograde of theme + + analyticsThemeRetrograde + Retrograde of theme U+E865 - + - - Retrograde inversion of theme + + analyticsThemeRetrogradeInversion + Retrograde inversion of theme U+E866 - + - - Inversion of theme + + analyticsThemeInversion + Inversion of theme U+E867 - + - - Theme 1 + + analyticsTheme1 + Theme 1 U+E868 - + - - Inversion 1 + + analyticsInversion1 + Inversion 1 U+E869 - + + + + analyticsChoralmelodie + Choralmelodie (Berg) + U+E86A + + + + analyticsHauptrhythmus + Hauptrhythmus (Berg) + U+E86B + Arel-Ezgi-Uzdilek (AEU) accidentals - - Büyük mücenneb (flat) + + accidentalBuyukMucennebFlat + Büyük mücenneb (flat) U+E440 - + Classes @@ -707,10 +796,11 @@ - - Küçük mücenneb (flat) + + accidentalKucukMucennebFlat + Küçük mücenneb (flat) U+E441 - + Classes @@ -720,10 +810,11 @@ - - Bakiye (flat) + + accidentalBakiyeFlat + Bakiye (flat) U+E442 - + Classes @@ -733,10 +824,11 @@ - - Koma (flat) + + accidentalKomaFlat + Koma (flat) U+E443 - + Classes @@ -746,10 +838,11 @@ - - Koma (sharp) + + accidentalKomaSharp + Koma (sharp) U+E444 - + Classes @@ -759,10 +852,11 @@ - - Bakiye (sharp) + + accidentalBakiyeSharp + Bakiye (sharp) U+E445 - + Classes @@ -772,10 +866,11 @@ - - Küçük mücenneb (sharp) + + accidentalKucukMucennebSharp + Küçük mücenneb (sharp) U+E446 - + Classes @@ -785,10 +880,11 @@ - - Büyük mücenneb (sharp) + + accidentalBuyukMucennebSharp + Büyük mücenneb (sharp) U+E447 - + Classes @@ -801,254 +897,303 @@ Arrows and arrowheads - - Black arrow up (N) + + arrowBlackUp + Black arrow up (N) U+EB60 - + - - Black arrow up-right (NE) + + arrowBlackUpRight + Black arrow up-right (NE) U+EB61 - + - - Black arrow right (E) + + arrowBlackRight + Black arrow right (E) U+EB62 - + - - Black arrow down-right (SE) + + arrowBlackDownRight + Black arrow down-right (SE) U+EB63 - + - - Black arrow down (S) + + arrowBlackDown + Black arrow down (S) U+EB64 - + - - Black arrow down-left (SW) + + arrowBlackDownLeft + Black arrow down-left (SW) U+EB65 - + - - Black arrow left (W) + + arrowBlackLeft + Black arrow left (W) U+EB66 - + - - Black arrow up-left (NW) + + arrowBlackUpLeft + Black arrow up-left (NW) U+EB67 - + - - White arrow up (N) + + arrowWhiteUp + White arrow up (N) U+EB68 - + - - White arrow up-right (NE) + + arrowWhiteUpRight + White arrow up-right (NE) U+EB69 - + - - White arrow right (E) + + arrowWhiteRight + White arrow right (E) U+EB6A - + - - White arrow down-right (SE) + + arrowWhiteDownRight + White arrow down-right (SE) U+EB6B - + - - White arrow down (S) + + arrowWhiteDown + White arrow down (S) U+EB6C - + - - White arrow down-left (SW) + + arrowWhiteDownLeft + White arrow down-left (SW) U+EB6D - + - - White arrow left (W) + + arrowWhiteLeft + White arrow left (W) U+EB6E - + - - White arrow up-left (NW) + + arrowWhiteUpLeft + White arrow up-left (NW) U+EB6F - + - - Open arrow up (N) + + arrowOpenUp + Open arrow up (N) U+EB70 - + - - Open arrow up-right (NE) + + arrowOpenUpRight + Open arrow up-right (NE) U+EB71 - + - - Open arrow right (E) + + arrowOpenRight + Open arrow right (E) U+EB72 - + - - Open arrow down-right (SE) + + arrowOpenDownRight + Open arrow down-right (SE) U+EB73 - + - - Open arrow down (S) + + arrowOpenDown + Open arrow down (S) U+EB74 - + - - Open arrow down-left (SW) + + arrowOpenDownLeft + Open arrow down-left (SW) U+EB75 - + - - Open arrow left (W) + + arrowOpenLeft + Open arrow left (W) U+EB76 - + - - Open arrow up-left (NW) + + arrowOpenUpLeft + Open arrow up-left (NW) U+EB77 - + - - Black arrowhead up (N) + + arrowheadBlackUp + Black arrowhead up (N) U+EB78 - + - - Black arrowhead up-right (NE) + + arrowheadBlackUpRight + Black arrowhead up-right (NE) U+EB79 - + - - Black arrowhead right (E) + + arrowheadBlackRight + Black arrowhead right (E) U+EB7A - + - - Black arrowhead down-right (SE) + + arrowheadBlackDownRight + Black arrowhead down-right (SE) U+EB7B - + - - Black arrowhead down (S) + + arrowheadBlackDown + Black arrowhead down (S) U+EB7C - + - - Black arrowhead down-left (SW) + + arrowheadBlackDownLeft + Black arrowhead down-left (SW) U+EB7D - + - - Black arrowhead left (W) + + arrowheadBlackLeft + Black arrowhead left (W) U+EB7E - + - - Black arrowhead up-left (NW) + + arrowheadBlackUpLeft + Black arrowhead up-left (NW) U+EB7F - + - - White arrowhead up (N) + + arrowheadWhiteUp + White arrowhead up (N) U+EB80 - + - - White arrowhead up-right (NE) + + arrowheadWhiteUpRight + White arrowhead up-right (NE) U+EB81 - + - - White arrowhead right (E) + + arrowheadWhiteRight + White arrowhead right (E) U+EB82 - + - - White arrowhead down-right (SE) + + arrowheadWhiteDownRight + White arrowhead down-right (SE) U+EB83 - + - - White arrowhead down (S) + + arrowheadWhiteDown + White arrowhead down (S) U+EB84 - + - - White arrowhead down-left (SW) + + arrowheadWhiteDownLeft + White arrowhead down-left (SW) U+EB85 - + - - White arrowhead left (W) + + arrowheadWhiteLeft + White arrowhead left (W) U+EB86 - + - - White arrowhead up-left (NW) + + arrowheadWhiteUpLeft + White arrowhead up-left (NW) U+EB87 - + - - Open arrowhead up (N) + + arrowheadOpenUp + Open arrowhead up (N) U+EB88 - + - - Open arrowhead up-right (NE) + + arrowheadOpenUpRight + Open arrowhead up-right (NE) U+EB89 - + - - Open arrowhead right (E) + + arrowheadOpenRight + Open arrowhead right (E) U+EB8A - + - - Open arrowhead down-right (SE) + + arrowheadOpenDownRight + Open arrowhead down-right (SE) U+EB8B - + - - Open arrowhead down (S) + + arrowheadOpenDown + Open arrowhead down (S) U+EB8C - + - - Open arrowhead down-left (SW) + + arrowheadOpenDownLeft + Open arrowhead down-left (SW) U+EB8D - + - - Open arrowhead left (W) + + arrowheadOpenLeft + Open arrowhead left (W) U+EB8E - + - - Open arrowhead up-left (NW) + + arrowheadOpenUpLeft + Open arrowhead up-left (NW) U+EB8F - + Articulation - - Accent above + + articAccentAbove + Accent above U+E4A0 U+1D17B - + Classes @@ -1058,10 +1203,11 @@ - - Accent below + + articAccentBelow + Accent below U+E4A1 - + Classes @@ -1071,11 +1217,12 @@ - - Staccato above + + articStaccatoAbove + Staccato above U+E4A2 U+1D17C - + Classes @@ -1085,10 +1232,11 @@ - - Staccato below + + articStaccatoBelow + Staccato below U+E4A3 - + Classes @@ -1098,11 +1246,12 @@ - - Tenuto above + + articTenutoAbove + Tenuto above U+E4A4 U+1D17D - + Classes @@ -1112,10 +1261,11 @@ - - Tenuto below + + articTenutoBelow + Tenuto below U+E4A5 - + Classes @@ -1125,11 +1275,12 @@ - - Staccatissimo above + + articStaccatissimoAbove + Staccatissimo above U+E4A6 U+1D17E - + Classes @@ -1139,10 +1290,11 @@ - - Staccatissimo below + + articStaccatissimoBelow + Staccatissimo below U+E4A7 - + Classes @@ -1152,10 +1304,11 @@ - - Staccatissimo wedge above + + articStaccatissimoWedgeAbove + Staccatissimo wedge above U+E4A8 - + Classes @@ -1165,10 +1318,11 @@ - - Staccatissimo wedge below + + articStaccatissimoWedgeBelow + Staccatissimo wedge below U+E4A9 - + Classes @@ -1178,10 +1332,11 @@ - - Staccatissimo stroke above + + articStaccatissimoStrokeAbove + Staccatissimo stroke above U+E4AA - + Classes @@ -1191,10 +1346,11 @@ - - Staccatissimo stroke below + + articStaccatissimoStrokeBelow + Staccatissimo stroke below U+E4AB - + Classes @@ -1204,11 +1360,12 @@ - - Marcato above + + articMarcatoAbove + Marcato above U+E4AC U+1D17F - + Classes @@ -1218,10 +1375,11 @@ - - Marcato below + + articMarcatoBelow + Marcato below U+E4AD - + Classes @@ -1231,11 +1389,12 @@ - - Marcato-staccato above + + articMarcatoStaccatoAbove + Marcato-staccato above U+E4AE U+1D180 - + Classes @@ -1245,10 +1404,11 @@ - - Marcato-staccato below + + articMarcatoStaccatoBelow + Marcato-staccato below U+E4AF - + Classes @@ -1258,11 +1418,12 @@ - - Accent-staccato above + + articAccentStaccatoAbove + Accent-staccato above U+E4B0 U+1D181 - + Classes @@ -1272,10 +1433,11 @@ - - Accent-staccato below + + articAccentStaccatoBelow + Accent-staccato below U+E4B1 - + Classes @@ -1285,11 +1447,12 @@ - - Louré (tenuto-staccato) above + + articTenutoStaccatoAbove + Louré (tenuto-staccato) above U+E4B2 U+1D182 - + Classes @@ -1299,10 +1462,11 @@ - - Louré (tenuto-staccato) below + + articTenutoStaccatoBelow + Louré (tenuto-staccato) below U+E4B3 - + Classes @@ -1312,10 +1476,11 @@ - - Tenuto-accent above + + articTenutoAccentAbove + Tenuto-accent above U+E4B4 - + Classes @@ -1325,10 +1490,11 @@ - - Tenuto-accent below + + articTenutoAccentBelow + Tenuto-accent below U+E4B5 - + Classes @@ -1338,10 +1504,11 @@ - - Stress above + + articStressAbove + Stress above U+E4B6 - + Classes @@ -1351,10 +1518,11 @@ - - Stress below + + articStressBelow + Stress below U+E4B7 - + Classes @@ -1364,10 +1532,11 @@ - - Unstress above + + articUnstressAbove + Unstress above U+E4B8 - + Classes @@ -1377,10 +1546,11 @@ - - Unstress below + + articUnstressBelow + Unstress below U+E4B9 - + Classes @@ -1390,10 +1560,11 @@ - - Laissez vibrer (l.v.) above + + articLaissezVibrerAbove + Laissez vibrer (l.v.) above U+E4BA - + Classes @@ -1403,10 +1574,11 @@ - - Laissez vibrer (l.v.) below + + articLaissezVibrerBelow + Laissez vibrer (l.v.) below U+E4BB - + Classes @@ -1416,13 +1588,26 @@ + + articMarcatoTenutoAbove + Marcato-tenuto above + U+E4BC + + + + articMarcatoTenutoBelow + Marcato-tenuto below + U+E4BD + + Athenian Sagittal extension (medium precision) accidentals - - 7:11 kleisma up, (7:11k, ~29k) + + accSagittal7v11KleismaUp + 7:11 kleisma up, (7:11k, ~29k) U+E340 - + Classes @@ -1432,10 +1617,11 @@ - - 7:11 kleisma down + + accSagittal7v11KleismaDown + 7:11 kleisma down U+E341 - + Classes @@ -1445,10 +1631,11 @@ - - 17 comma up, (17C) + + accSagittal17CommaUp + 17 comma up, (17C) U+E342 - + Classes @@ -1458,10 +1645,11 @@ - - 17 comma down + + accSagittal17CommaDown + 17 comma down U+E343 - + Classes @@ -1471,10 +1659,11 @@ - - 55 comma up, (55C, 11M less 5C), 3°up [96 EDO], 3/16-tone up + + accSagittal55CommaUp + 55 comma up, (55C, 11M less 5C), 3°up [96 EDO], 3/16-tone up U+E344 - + Classes @@ -1484,10 +1673,11 @@ - - 55 comma down, 3° down [96 EDO], 3/16-tone down + + accSagittal55CommaDown + 55 comma down, 3° down [96 EDO], 3/16-tone down U+E345 - + Classes @@ -1497,10 +1687,11 @@ - - 7:11 comma up, (7:11C, ~13:17S, ~29S, 11L less 7C), 1° up [60 EDO] + + accSagittal7v11CommaUp + 7:11 comma up, (7:11C, ~13:17S, ~29S, 11L less 7C), 1° up [60 EDO] U+E346 - + Classes @@ -1510,10 +1701,11 @@ - - 7:11 comma down, 1° down [60 EDO], 1/10-tone down + + accSagittal7v11CommaDown + 7:11 comma down, 1° down [60 EDO], 1/10-tone down U+E347 - + Classes @@ -1523,10 +1715,11 @@ - - 5:11 small diesis up, (5:11S, ~7:13S, ~11:17S, 5:7k plus 7:11C) + + accSagittal5v11SmallDiesisUp + 5:11 small diesis up, (5:11S, ~7:13S, ~11:17S, 5:7k plus 7:11C) U+E348 - + Classes @@ -1536,10 +1729,11 @@ - - 5:11 small diesis down + + accSagittal5v11SmallDiesisDown + 5:11 small diesis down U+E349 - + Classes @@ -1549,10 +1743,11 @@ - - Sharp 5:11S-down + + accSagittalSharp5v11SDown + Sharp 5:11S-down U+E34A - + Classes @@ -1562,10 +1757,11 @@ - - Flat 5:11S-up + + accSagittalFlat5v11SUp + Flat 5:11S-up U+E34B - + Classes @@ -1575,10 +1771,11 @@ - - Sharp 7:11C-down, 4° up [60 EDO], 2/5-tone up + + accSagittalSharp7v11CDown + Sharp 7:11C-down, 4° up [60 EDO], 2/5-tone up U+E34C - + Classes @@ -1588,10 +1785,11 @@ - - Flat 7:11C-up, 4° down [60 EDO], 2/5-tone down + + accSagittalFlat7v11CUp + Flat 7:11C-up, 4° down [60 EDO], 2/5-tone down U+E34D - + Classes @@ -1601,10 +1799,11 @@ - - Sharp 55C-down, 5° up [96 EDO], 5/16-tone up + + accSagittalSharp55CDown + Sharp 55C-down, 5° up [96 EDO], 5/16-tone up U+E34E - + Classes @@ -1614,10 +1813,11 @@ - - Flat 55C-up, 5° down [96 EDO], 5/16-tone down + + accSagittalFlat55CUp + Flat 55C-up, 5° down [96 EDO], 5/16-tone down U+E34F - + Classes @@ -1627,10 +1827,11 @@ - - Sharp 17C-down + + accSagittalSharp17CDown + Sharp 17C-down U+E350 - + Classes @@ -1640,10 +1841,11 @@ - - Flat 17C-up + + accSagittalFlat17CUp + Flat 17C-up U+E351 - + Classes @@ -1653,10 +1855,11 @@ - - Sharp 7:11k-down + + accSagittalSharp7v11kDown + Sharp 7:11k-down U+E352 - + Classes @@ -1666,10 +1869,11 @@ - - Flat 7:11k-up + + accSagittalFlat7v11kUp + Flat 7:11k-up U+E353 - + Classes @@ -1679,10 +1883,11 @@ - - Sharp 7:11k-up + + accSagittalSharp7v11kUp + Sharp 7:11k-up U+E354 - + Classes @@ -1692,10 +1897,11 @@ - - Flat 7:11k-down + + accSagittalFlat7v11kDown + Flat 7:11k-down U+E355 - + Classes @@ -1705,10 +1911,11 @@ - - Sharp 17C-up + + accSagittalSharp17CUp + Sharp 17C-up U+E356 - + Classes @@ -1718,10 +1925,11 @@ - - Flat 17C-down + + accSagittalFlat17CDown + Flat 17C-down U+E357 - + Classes @@ -1731,10 +1939,11 @@ - - Sharp 55C-up, 11° up [96 EDO], 11/16-tone up + + accSagittalSharp55CUp + Sharp 55C-up, 11° up [96 EDO], 11/16-tone up U+E358 - + Classes @@ -1744,10 +1953,11 @@ - - Flat 55C-down, 11° down [96 EDO], 11/16-tone down + + accSagittalFlat55CDown + Flat 55C-down, 11° down [96 EDO], 11/16-tone down U+E359 - + Classes @@ -1757,10 +1967,11 @@ - - Sharp 7:11C-up, 6° up [60 EDO], 3/5- tone up + + accSagittalSharp7v11CUp + Sharp 7:11C-up, 6° up [60 EDO], 3/5- tone up U+E35A - + Classes @@ -1770,10 +1981,11 @@ - - Flat 7:11C-down, 6° down [60 EDO], 3/5- tone down + + accSagittalFlat7v11CDown + Flat 7:11C-down, 6° down [60 EDO], 3/5- tone down U+E35B - + Classes @@ -1783,10 +1995,11 @@ - - Sharp 5:11S-up + + accSagittalSharp5v11SUp + Sharp 5:11S-up U+E35C - + Classes @@ -1796,10 +2009,11 @@ - - Flat 5:11S-down + + accSagittalFlat5v11SDown + Flat 5:11S-down U+E35D - + Classes @@ -1809,10 +2023,11 @@ - - Double sharp 5:11S-down + + accSagittalDoubleSharp5v11SDown + Double sharp 5:11S-down U+E35E - + Classes @@ -1822,10 +2037,11 @@ - - Double flat 5:11S-up + + accSagittalDoubleFlat5v11SUp + Double flat 5:11S-up U+E35F - + Classes @@ -1835,10 +2051,11 @@ - - Double sharp 7:11C-down, 9° up [60 EDO], 9/10-tone up + + accSagittalDoubleSharp7v11CDown + Double sharp 7:11C-down, 9° up [60 EDO], 9/10-tone up U+E360 - + Classes @@ -1848,10 +2065,11 @@ - - Double flat 7:11C-up, 9° down [60 EDO], 9/10-tone down + + accSagittalDoubleFlat7v11CUp + Double flat 7:11C-up, 9° down [60 EDO], 9/10-tone down U+E361 - + Classes @@ -1861,10 +2079,11 @@ - - Double sharp 55C-down, 13° up [96 EDO], 13/16-tone up + + accSagittalDoubleSharp55CDown + Double sharp 55C-down, 13° up [96 EDO], 13/16-tone up U+E362 - + Classes @@ -1874,10 +2093,11 @@ - - Double flat 55C-up, 13° down [96 EDO], 13/16-tone down + + accSagittalDoubleFlat55CUp + Double flat 55C-up, 13° down [96 EDO], 13/16-tone down U+E363 - + Classes @@ -1887,10 +2107,11 @@ - - Double sharp 17C-down + + accSagittalDoubleSharp17CDown + Double sharp 17C-down U+E364 - + Classes @@ -1900,10 +2121,11 @@ - - Double flat 17C-up + + accSagittalDoubleFlat17CUp + Double flat 17C-up U+E365 - + Classes @@ -1913,10 +2135,11 @@ - - Double sharp 7:11k-down + + accSagittalDoubleSharp7v11kDown + Double sharp 7:11k-down U+E366 - + Classes @@ -1926,10 +2149,11 @@ - - Double flat 7:11k-up + + accSagittalDoubleFlat7v11kUp + Double flat 7:11k-up U+E367 - + Classes @@ -1942,11 +2166,12 @@ Bar repeats - - Repeat last bar + + repeat1Bar + Repeat last bar U+E500 U+1D10E - + Classes @@ -1954,11 +2179,12 @@ - - Repeat last two bars + + repeat2Bars + Repeat last two bars U+E501 U+1D10F - + Classes @@ -1966,10 +2192,11 @@ - - Repeat last four bars + + repeat4Bars + Repeat last four bars U+E502 - + Classes @@ -1980,11 +2207,12 @@ Barlines - - Single barline + + barlineSingle + Single barline U+E030 U+1D100 - + Classes @@ -1992,11 +2220,12 @@ - - Double barline + + barlineDouble + Double barline U+E031 U+1D101 - + Classes @@ -2004,11 +2233,12 @@ - - Final barline + + barlineFinal + Final barline U+E032 U+1D102 - + Classes @@ -2016,11 +2246,12 @@ - - Reverse final barline + + barlineReverseFinal + Reverse final barline U+E033 U+1D103 - + Classes @@ -2028,10 +2259,11 @@ - - Heavy barline + + barlineHeavy + Heavy barline U+E034 - + Classes @@ -2039,10 +2271,11 @@ - - Heavy double barline + + barlineHeavyHeavy + Heavy double barline U+E035 - + Classes @@ -2050,11 +2283,12 @@ - - Dashed barline + + barlineDashed + Dashed barline U+E036 U+1D104 - + Classes @@ -2062,10 +2296,11 @@ - - Dotted barline + + barlineDotted + Dotted barline U+E037 - + Classes @@ -2073,11 +2308,12 @@ - - Short barline + + barlineShort + Short barline U+E038 U+1D105 - + Classes @@ -2085,10 +2321,11 @@ - - Tick barline + + barlineTick + Tick barline U+E039 - + Classes @@ -2099,10 +2336,11 @@ Beamed groups of notes - - Black note, short stem + + textBlackNoteShortStem + Black note, short stem U+E1F0 - + Classes @@ -2111,10 +2349,11 @@ - - Black note, long stem + + textBlackNoteLongStem + Black note, long stem U+E1F1 - + Classes @@ -2123,10 +2362,11 @@ - - Black note, fractional 8th beam, short stem + + textBlackNoteFrac8thShortStem + Black note, fractional 8th beam, short stem U+E1F2 - + Classes @@ -2135,10 +2375,11 @@ - - Black note, fractional 8th beam, long stem + + textBlackNoteFrac8thLongStem + Black note, fractional 8th beam, long stem U+E1F3 - + Classes @@ -2147,10 +2388,11 @@ - - Black note, fractional 16th beam, short stem + + textBlackNoteFrac16thShortStem + Black note, fractional 16th beam, short stem U+E1F4 - + Classes @@ -2159,10 +2401,11 @@ - - Black note, fractional 16th beam, long stem + + textBlackNoteFrac16thLongStem + Black note, fractional 16th beam, long stem U+E1F5 - + Classes @@ -2171,10 +2414,11 @@ - - Black note, fractional 32nd beam, long stem + + textBlackNoteFrac32ndLongStem + Black note, fractional 32nd beam, long stem U+E1F6 - + Classes @@ -2183,10 +2427,11 @@ - - Continuing 8th beam for short stem + + textCont8thBeamShortStem + Continuing 8th beam for short stem U+E1F7 - + Classes @@ -2195,10 +2440,11 @@ - - Continuing 8th beam for long stem + + textCont8thBeamLongStem + Continuing 8th beam for long stem U+E1F8 - + Classes @@ -2207,10 +2453,11 @@ - - Continuing 16th beam for short stem + + textCont16thBeamShortStem + Continuing 16th beam for short stem U+E1F9 - + Classes @@ -2219,10 +2466,11 @@ - - Continuing 16th beam for long stem + + textCont16thBeamLongStem + Continuing 16th beam for long stem U+E1FA - + Classes @@ -2231,10 +2479,11 @@ - - Continuing 32nd beam for long stem + + textCont32ndBeamLongStem + Continuing 32nd beam for long stem U+E1FB - + Classes @@ -2243,10 +2492,11 @@ - - Augmentation dot + + textAugmentationDot + Augmentation dot U+E1FC - + Classes @@ -2255,10 +2505,11 @@ - - Tie + + textTie + Tie U+E1FD - + Classes @@ -2267,10 +2518,11 @@ - - Tuplet bracket start for short stem + + textTupletBracketStartShortStem + Tuplet bracket start for short stem U+E1FE - + Classes @@ -2279,10 +2531,11 @@ - - Tuplet number 3 for short stem + + textTuplet3ShortStem + Tuplet number 3 for short stem U+E1FF - + Classes @@ -2291,10 +2544,11 @@ - - Tuplet bracket end for short stem + + textTupletBracketEndShortStem + Tuplet bracket end for short stem U+E200 - + Classes @@ -2303,10 +2557,11 @@ - - Tuplet bracket start for long stem + + textTupletBracketStartLongStem + Tuplet bracket start for long stem U+E201 - + Classes @@ -2315,10 +2570,11 @@ - - Tuplet number 3 for long stem + + textTuplet3LongStem + Tuplet number 3 for long stem U+E202 - + Classes @@ -2327,10 +2583,11 @@ - - Tuplet bracket end for long stem + + textTupletBracketEndLongStem + Tuplet bracket end for long stem U+E203 - + Classes @@ -2342,61 +2599,70 @@ Beams and slurs - - Begin beam + + controlBeginBeam + Begin beam U+E8E0 U+1D173 - + - - End beam + + controlEndBeam + End beam U+E8E1 U+1D174 - + - - Begin tie + + controlBeginTie + Begin tie U+E8E2 U+1D175 - + - - End tie + + controlEndTie + End tie U+E8E3 U+1D176 - + - - Begin slur + + controlBeginSlur + Begin slur U+E8E4 U+1D177 - + - - End slur + + controlEndSlur + End slur U+E8E5 U+1D178 - + - - Begin phrase + + controlBeginPhrase + Begin phrase U+E8E6 U+1D179 - + - - End phrase + + controlEndPhrase + End phrase U+E8E7 U+1D17A - + Beaters pictograms - - Soft xylophone stick up + + pictBeaterSoftXylophoneUp + Soft xylophone stick up U+E770 - + Classes @@ -2404,10 +2670,11 @@ - - Soft xylophone stick down + + pictBeaterSoftXylophoneDown + Soft xylophone stick down U+E771 - + Classes @@ -2415,10 +2682,11 @@ - - Soft xylophone stick right + + pictBeaterSoftXylophoneRight + Soft xylophone stick right U+E772 - + Classes @@ -2426,10 +2694,11 @@ - - Soft xylophone stick left + + pictBeaterSoftXylophoneLeft + Soft xylophone stick left U+E773 - + Classes @@ -2438,10 +2707,11 @@ - - Medium xylophone stick up + + pictBeaterMediumXylophoneUp + Medium xylophone stick up U+E774 - + Classes @@ -2449,10 +2719,11 @@ - - Medium xylophone stick down + + pictBeaterMediumXylophoneDown + Medium xylophone stick down U+E775 - + Classes @@ -2460,10 +2731,11 @@ - - Medium xylophone stick right + + pictBeaterMediumXylophoneRight + Medium xylophone stick right U+E776 - + Classes @@ -2471,10 +2743,11 @@ - - Medium xylophone stick left + + pictBeaterMediumXylophoneLeft + Medium xylophone stick left U+E777 - + Classes @@ -2483,10 +2756,11 @@ - - Hard xylophone stick up + + pictBeaterHardXylophoneUp + Hard xylophone stick up U+E778 - + Classes @@ -2494,10 +2768,11 @@ - - Hard xylophone stick down + + pictBeaterHardXylophoneDown + Hard xylophone stick down U+E779 - + Classes @@ -2505,10 +2780,11 @@ - - Hard xylophone stick right + + pictBeaterHardXylophoneRight + Hard xylophone stick right U+E77A - + Classes @@ -2516,10 +2792,11 @@ - - Hard xylophone stick left + + pictBeaterHardXylophoneLeft + Hard xylophone stick left U+E77B - + Classes @@ -2528,10 +2805,11 @@ - - Wood xylophone stick up + + pictBeaterWoodXylophoneUp + Wood xylophone stick up U+E77C - + Classes @@ -2539,10 +2817,11 @@ - - Wood xylophone stick down + + pictBeaterWoodXylophoneDown + Wood xylophone stick down U+E77D - + Classes @@ -2550,10 +2829,11 @@ - - Wood xylophone stick right + + pictBeaterWoodXylophoneRight + Wood xylophone stick right U+E77E - + Classes @@ -2561,10 +2841,11 @@ - - Wood xylophone stick left + + pictBeaterWoodXylophoneLeft + Wood xylophone stick left U+E77F - + Classes @@ -2573,10 +2854,11 @@ - - Soft glockenspiel stick up + + pictBeaterSoftGlockenspielUp + Soft glockenspiel stick up U+E780 - + Classes @@ -2584,10 +2866,11 @@ - - Soft glockenspiel stick down + + pictBeaterSoftGlockenspielDown + Soft glockenspiel stick down U+E781 - + Classes @@ -2595,10 +2878,11 @@ - - Soft glockenspiel stick right + + pictBeaterSoftGlockenspielRight + Soft glockenspiel stick right U+E782 - + Classes @@ -2606,10 +2890,11 @@ - - Soft glockenspiel stick left + + pictBeaterSoftGlockenspielLeft + Soft glockenspiel stick left U+E783 - + Classes @@ -2618,10 +2903,11 @@ - - Hard glockenspiel stick up + + pictBeaterHardGlockenspielUp + Hard glockenspiel stick up U+E784 - + Classes @@ -2629,10 +2915,11 @@ - - Hard glockenspiel stick down + + pictBeaterHardGlockenspielDown + Hard glockenspiel stick down U+E785 - + Classes @@ -2640,10 +2927,11 @@ - - Hard glockenspiel stick right + + pictBeaterHardGlockenspielRight + Hard glockenspiel stick right U+E786 - + Classes @@ -2651,10 +2939,11 @@ - - Hard glockenspiel stick left + + pictBeaterHardGlockenspielLeft + Hard glockenspiel stick left U+E787 - + Classes @@ -2663,10 +2952,11 @@ - - Soft timpani stick up + + pictBeaterSoftTimpaniUp + Soft timpani stick up U+E788 - + Classes @@ -2674,10 +2964,11 @@ - - Soft timpani stick down + + pictBeaterSoftTimpaniDown + Soft timpani stick down U+E789 - + Classes @@ -2685,10 +2976,11 @@ - - Soft timpani stick right + + pictBeaterSoftTimpaniRight + Soft timpani stick right U+E78A - + Classes @@ -2696,10 +2988,11 @@ - - Soft timpani stick left + + pictBeaterSoftTimpaniLeft + Soft timpani stick left U+E78B - + Classes @@ -2708,10 +3001,11 @@ - - Medium timpani stick up + + pictBeaterMediumTimpaniUp + Medium timpani stick up U+E78C - + Classes @@ -2719,10 +3013,11 @@ - - Medium timpani stick down + + pictBeaterMediumTimpaniDown + Medium timpani stick down U+E78D - + Classes @@ -2730,10 +3025,11 @@ - - Medium timpani stick right + + pictBeaterMediumTimpaniRight + Medium timpani stick right U+E78E - + Classes @@ -2741,10 +3037,11 @@ - - Medium timpani stick left + + pictBeaterMediumTimpaniLeft + Medium timpani stick left U+E78F - + Classes @@ -2753,10 +3050,11 @@ - - Hard timpani stick up + + pictBeaterHardTimpaniUp + Hard timpani stick up U+E790 - + Classes @@ -2764,10 +3062,11 @@ - - Hard timpani stick down + + pictBeaterHardTimpaniDown + Hard timpani stick down U+E791 - + Classes @@ -2775,10 +3074,11 @@ - - Hard timpani stick right + + pictBeaterHardTimpaniRight + Hard timpani stick right U+E792 - + Classes @@ -2786,10 +3086,11 @@ - - Hard timpani stick left + + pictBeaterHardTimpaniLeft + Hard timpani stick left U+E793 - + Classes @@ -2798,10 +3099,11 @@ - - Wood timpani stick up + + pictBeaterWoodTimpaniUp + Wood timpani stick up U+E794 - + Classes @@ -2809,10 +3111,11 @@ - - Wood timpani stick down + + pictBeaterWoodTimpaniDown + Wood timpani stick down U+E795 - + Classes @@ -2820,10 +3123,11 @@ - - Wood timpani stick right + + pictBeaterWoodTimpaniRight + Wood timpani stick right U+E796 - + Classes @@ -2831,10 +3135,11 @@ - - Wood timpani stick left + + pictBeaterWoodTimpaniLeft + Wood timpani stick left U+E797 - + Classes @@ -2843,10 +3148,11 @@ - - Soft bass drum stick up + + pictBeaterSoftBassDrumUp + Soft bass drum stick up U+E798 - + Classes @@ -2854,10 +3160,11 @@ - - Soft bass drum stick down + + pictBeaterSoftBassDrumDown + Soft bass drum stick down U+E799 - + Classes @@ -2865,10 +3172,11 @@ - - Medium bass drum stick up + + pictBeaterMediumBassDrumUp + Medium bass drum stick up U+E79A - + Classes @@ -2876,10 +3184,11 @@ - - Medium bass drum stick down + + pictBeaterMediumBassDrumDown + Medium bass drum stick down U+E79B - + Classes @@ -2887,10 +3196,11 @@ - - Hard bass drum stick up + + pictBeaterHardBassDrumUp + Hard bass drum stick up U+E79C - + Classes @@ -2898,10 +3208,11 @@ - - Hard bass drum stick down + + pictBeaterHardBassDrumDown + Hard bass drum stick down U+E79D - + Classes @@ -2909,10 +3220,11 @@ - - Metal bass drum stick up + + pictBeaterMetalBassDrumUp + Metal bass drum stick up U+E79E - + Classes @@ -2920,10 +3232,11 @@ - - Metal bass drum stick down + + pictBeaterMetalBassDrumDown + Metal bass drum stick down U+E79F - + Classes @@ -2931,10 +3244,11 @@ - - Double bass drum stick up + + pictBeaterDoubleBassDrumUp + Double bass drum stick up U+E7A0 - + Classes @@ -2942,10 +3256,11 @@ - - Double bass drum stick down + + pictBeaterDoubleBassDrumDown + Double bass drum stick down U+E7A1 - + Classes @@ -2953,10 +3268,11 @@ - - Soft yarn beater up + + pictBeaterSoftYarnUp + Soft yarn beater up U+E7A2 - + Classes @@ -2964,10 +3280,11 @@ - - Soft yarn beater down + + pictBeaterSoftYarnDown + Soft yarn beater down U+E7A3 - + Classes @@ -2975,10 +3292,11 @@ - - Soft yarn beater right + + pictBeaterSoftYarnRight + Soft yarn beater right U+E7A4 - + Classes @@ -2986,10 +3304,11 @@ - - Soft yarn beater left + + pictBeaterSoftYarnLeft + Soft yarn beater left U+E7A5 - + Classes @@ -2998,10 +3317,11 @@ - - Medium yarn beater up + + pictBeaterMediumYarnUp + Medium yarn beater up U+E7A6 - + Classes @@ -3009,10 +3329,11 @@ - - Medium yarn beater down + + pictBeaterMediumYarnDown + Medium yarn beater down U+E7A7 - + Classes @@ -3020,10 +3341,11 @@ - - Medium yarn beater right + + pictBeaterMediumYarnRight + Medium yarn beater right U+E7A8 - + Classes @@ -3031,10 +3353,11 @@ - - Medium yarn beater left + + pictBeaterMediumYarnLeft + Medium yarn beater left U+E7A9 - + Classes @@ -3043,10 +3366,11 @@ - - Hard yarn beater up + + pictBeaterHardYarnUp + Hard yarn beater up U+E7AA - + Classes @@ -3054,10 +3378,11 @@ - - Hard yarn beater down + + pictBeaterHardYarnDown + Hard yarn beater down U+E7AB - + Classes @@ -3065,10 +3390,11 @@ - - Hard yarn beater right + + pictBeaterHardYarnRight + Hard yarn beater right U+E7AC - + Classes @@ -3076,10 +3402,11 @@ - - Hard yarn beater left + + pictBeaterHardYarnLeft + Hard yarn beater left U+E7AD - + Classes @@ -3088,10 +3415,11 @@ - - Superball beater up + + pictBeaterSuperballUp + Superball beater up U+E7AE - + Classes @@ -3099,10 +3427,11 @@ - - Superball beater down + + pictBeaterSuperballDown + Superball beater down U+E7AF - + Classes @@ -3110,10 +3439,11 @@ - - Superball beater right + + pictBeaterSuperballRight + Superball beater right U+E7B0 - + Classes @@ -3121,10 +3451,11 @@ - - Superball beater left + + pictBeaterSuperballLeft + Superball beater left U+E7B1 - + Classes @@ -3133,10 +3464,11 @@ - - Superball + + pictSuperball + Superball U+E7B2 - + Classes @@ -3144,10 +3476,11 @@ - - Wound beater, hard core up + + pictWoundHardUp + Wound beater, hard core up U+E7B3 - + Classes @@ -3155,10 +3488,11 @@ - - Wound beater, hard core down + + pictWoundHardDown + Wound beater, hard core down U+E7B4 - + Classes @@ -3166,10 +3500,11 @@ - - Wound beater, hard core right + + pictWoundHardRight + Wound beater, hard core right U+E7B5 - + Classes @@ -3177,10 +3512,11 @@ - - Wound beater, hard core left + + pictWoundHardLeft + Wound beater, hard core left U+E7B6 - + Classes @@ -3189,10 +3525,11 @@ - - Wound beater, soft core up + + pictWoundSoftUp + Wound beater, soft core up U+E7B7 - + Classes @@ -3200,10 +3537,11 @@ - - Wound beater, soft core down + + pictWoundSoftDown + Wound beater, soft core down U+E7B8 - + Classes @@ -3211,10 +3549,11 @@ - - Wound beater, soft core right + + pictWoundSoftRight + Wound beater, soft core right U+E7B9 - + Classes @@ -3222,10 +3561,11 @@ - - Wound beater, soft core left + + pictWoundSoftLeft + Wound beater, soft core left U+E7BA - + Classes @@ -3234,10 +3574,11 @@ - - Soft gum beater, up + + pictGumSoftUp + Soft gum beater, up U+E7BB - + Classes @@ -3245,10 +3586,11 @@ - - Soft gum beater, down + + pictGumSoftDown + Soft gum beater, down U+E7BC - + Classes @@ -3256,10 +3598,11 @@ - - Soft gum beater, right + + pictGumSoftRight + Soft gum beater, right U+E7BD - + Classes @@ -3267,10 +3610,11 @@ - - Soft gum beater, left + + pictGumSoftLeft + Soft gum beater, left U+E7BE - + Classes @@ -3279,10 +3623,11 @@ - - Medium gum beater, up + + pictGumMediumUp + Medium gum beater, up U+E7BF - + Classes @@ -3290,10 +3635,11 @@ - - Medium gum beater, down + + pictGumMediumDown + Medium gum beater, down U+E7C0 - + Classes @@ -3301,10 +3647,11 @@ - - Medium gum beater, right + + pictGumMediumRight + Medium gum beater, right U+E7C1 - + Classes @@ -3312,10 +3659,11 @@ - - Medium gum beater, left + + pictGumMediumLeft + Medium gum beater, left U+E7C2 - + Classes @@ -3324,10 +3672,11 @@ - - Hard gum beater, up + + pictGumHardUp + Hard gum beater, up U+E7C3 - + Classes @@ -3335,10 +3684,11 @@ - - Hard gum beater, down + + pictGumHardDown + Hard gum beater, down U+E7C4 - + Classes @@ -3346,10 +3696,11 @@ - - Hard gum beater, right + + pictGumHardRight + Hard gum beater, right U+E7C5 - + Classes @@ -3357,10 +3708,11 @@ - - Hard gum beater, left + + pictGumHardLeft + Hard gum beater, left U+E7C6 - + Classes @@ -3369,10 +3721,11 @@ - - Metal beater, up + + pictBeaterMetalUp + Metal beater, up U+E7C7 - + Classes @@ -3380,10 +3733,11 @@ - - Metal beater down + + pictBeaterMetalDown + Metal beater down U+E7C8 - + Classes @@ -3391,10 +3745,11 @@ - - Metal beater, right + + pictBeaterMetalRight + Metal beater, right U+E7C9 - + Classes @@ -3402,10 +3757,11 @@ - - Metal beater, left + + pictBeaterMetalLeft + Metal beater, left U+E7CA - + Classes @@ -3414,10 +3770,11 @@ - - Wooden hammer, up + + pictBeaterHammerWoodUp + Wooden hammer, up U+E7CB - + Classes @@ -3425,10 +3782,11 @@ - - Wooden hammer, down + + pictBeaterHammerWoodDown + Wooden hammer, down U+E7CC - + Classes @@ -3436,10 +3794,11 @@ - - Plastic hammer, up + + pictBeaterHammerPlasticUp + Plastic hammer, up U+E7CD - + Classes @@ -3447,10 +3806,11 @@ - - Plastic hammer, down + + pictBeaterHammerPlasticDown + Plastic hammer, down U+E7CE - + Classes @@ -3458,10 +3818,11 @@ - - Metal hammer, up + + pictBeaterHammerMetalUp + Metal hammer, up U+E7CF - + Classes @@ -3469,10 +3830,11 @@ - - Metal hammer, down + + pictBeaterHammerMetalDown + Metal hammer, down U+E7D0 - + Classes @@ -3480,10 +3842,11 @@ - - Snare sticks up + + pictBeaterSnareSticksUp + Snare sticks up U+E7D1 - + Classes @@ -3491,10 +3854,11 @@ - - Snare sticks down + + pictBeaterSnareSticksDown + Snare sticks down U+E7D2 - + Classes @@ -3502,10 +3866,11 @@ - - Jazz sticks up + + pictBeaterJazzSticksUp + Jazz sticks up U+E7D3 - + Classes @@ -3513,115 +3878,137 @@ - - Jazz sticks down + + pictBeaterJazzSticksDown + Jazz sticks down U+E7D4 - + - - Triangle beater up + + pictBeaterTriangleUp + Triangle beater up U+E7D5 - + - - Triangle beater down + + pictBeaterTriangleDown + Triangle beater down U+E7D6 - + - - Wire brushes up + + pictBeaterWireBrushesUp + Wire brushes up U+E7D7 - + - - Wire brushes down + + pictBeaterWireBrushesDown + Wire brushes down U+E7D8 - + - - Brass mallets up + + pictBeaterBrassMalletsUp + Brass mallets up U+E7D9 - + - - Brass mallets down + + pictBeaterBrassMalletsDown + Brass mallets down U+E7DA - + - - Soft xylophone beaters + + pictBeaterSoftXylophone + Soft xylophone beaters U+E7DB - + - - Spoon-shaped wooden mallet + + pictBeaterSpoonWoodenMallet + Spoon-shaped wooden mallet U+E7DC - + - - Guiro scraper + + pictBeaterGuiroScraper + Guiro scraper U+E7DD - + - - Bow + + pictBeaterBow + Bow U+E7DE - + - - Chime hammer + + pictBeaterMallet + Chime hammer U+E7DF - + - - Metal hammer + + pictBeaterMetalHammer + Metal hammer U+E7E0 - + - - Hammer + + pictBeaterHammer + Hammer U+E7E1 - + - - Knitting needle + + pictBeaterKnittingNeedle + Knitting needle U+E7E2 - + - - Hand + + pictBeaterHand + Hand U+E7E3 - + - - Finger + + pictBeaterFinger + Finger U+E7E4 - + - - Fist + + pictBeaterFist + Fist U+E7E5 - + - - Fingernails + + pictBeaterFingernails + Fingernails U+E7E6 - + - - Coins + + pictCoins + Coins U+E7E7 - + - - Drum stick + + pictDrumStick + Drum stick U+E7E8 - + - - Combining parentheses for round beaters (padded) + + pictBeaterCombiningParentheses + Combining parentheses for round beaters (padded) U+E7E9 - + Classes @@ -3629,10 +4016,11 @@ - - Combining dashed circle for round beaters (plated) + + pictBeaterCombiningDashedCircle + Combining dashed circle for round beaters (plated) U+E7EA - + Classes @@ -3640,10 +4028,11 @@ - - Box for percussion beater + + pictBeaterBox + Box for percussion beater U+E7EB - + Classes @@ -3654,10 +4043,11 @@ Bells pictograms - - Sleigh bell + + pictSleighBell + Sleigh bell U+E710 - + Classes @@ -3665,10 +4055,11 @@ - - Cow bell + + pictCowBell + Cow bell U+E711 - + Classes @@ -3676,10 +4067,11 @@ - - Almglocken + + pictAlmglocken + Almglocken U+E712 - + Classes @@ -3687,10 +4079,11 @@ - - Bell plate + + pictBellPlate + Bell plate U+E713 - + Classes @@ -3698,10 +4091,11 @@ - - Bell + + pictBell + Bell U+E714 - + Classes @@ -3709,10 +4103,11 @@ - - Handbell + + pictHandbell + Handbell U+E715 - + Classes @@ -3720,10 +4115,11 @@ - - Cencerro + + pictCencerro + Cencerro U+E716 - + Classes @@ -3731,10 +4127,11 @@ - - Agogo + + pictAgogo + Agogo U+E717 - + Classes @@ -3742,10 +4139,11 @@ - - Shell bells + + pictShellBells + Shell bells U+E718 - + Classes @@ -3753,10 +4151,11 @@ - - Jingle bells + + pictJingleBells + Jingle bells U+E719 - + Classes @@ -3764,10 +4163,11 @@ - - Bell tree + + pictBellTree + Bell tree U+E71A - + Classes @@ -3778,158 +4178,205 @@ Brass techniques - - Scoop + + brassScoop + Scoop U+E5D0 - + - - Lift, short + + brassLiftShort + Lift, short U+E5D1 - + - - Lift, medium + + brassLiftMedium + Lift, medium U+E5D2 - + - - Lift, long + + brassLiftLong + Lift, long U+E5D3 - + - - Doit, short + + brassDoitShort + Doit, short U+E5D4 U+1D185 - + - - Doit, medium + + brassDoitMedium + Doit, medium U+E5D5 - + - - Doit, long + + brassDoitLong + Doit, long U+E5D6 - + - - Lip fall, short + + brassFallLipShort + Lip fall, short U+E5D7 U+1D186 - + - - Lip fall, medium + + brassFallLipMedium + Lip fall, medium U+E5D8 - + - - Lip fall, long + + brassFallLipLong + Lip fall, long U+E5D9 - + - - Smooth fall, short + + brassFallSmoothShort + Smooth fall, short U+E5DA - + - - Smooth fall, medium + + brassFallSmoothMedium + Smooth fall, medium U+E5DB - + - - Smooth fall, long + + brassFallSmoothLong + Smooth fall, long U+E5DC - + - - Rough fall, short + + brassFallRoughShort + Rough fall, short U+E5DD - + - - Rough fall, medium + + brassFallRoughMedium + Rough fall, medium U+E5DE - + - - Rough fall, long + + brassFallRoughLong + Rough fall, long U+E5DF - + - - Plop + + brassPlop + Plop U+E5E0 - + - - Flip + + brassFlip + Flip U+E5E1 U+1D187 - + - - Smear + + brassSmear + Smear U+E5E2 U+1D188 - + - - Bend + + brassBend + Bend U+E5E3 U+1D189 - + - - Jazz turn + + brassJazzTurn + Jazz turn U+E5E4 - + - - Muted (closed) + + brassMuteClosed + Muted (closed) U+E5E5 - + - - Half-muted (half-closed) + + brassMuteHalfClosed + Half-muted (half-closed) U+E5E6 - + - - Open + + brassMuteOpen + Open U+E5E7 - + - - Harmon mute, closed + + brassHarmonMuteClosed + Harmon mute, stem in U+E5E8 - + - - Harmon mute, stem-cup half-closed, left + + brassHarmonMuteStemHalfLeft + Harmon mute, stem extended, left U+E5E9 - + - - Harmon mute, stem-cup half-closed, right + + brassHarmonMuteStemHalfRight + Harmon mute, stem extended, right U+E5EA - + - - Harmon mute, stem-cup open + + brassHarmonMuteStemOpen + Harmon mute, stem out U+E5EB - + + + + brassLiftSmoothShort + Smooth lift, short + U+E5EC + + + + brassLiftSmoothMedium + Smooth lift, medium + U+E5ED + + + + brassLiftSmoothLong + Smooth lift, long + U+E5EE + Chimes pictograms - - Tubular bells + + pictTubularBells + Tubular bells U+E6C0 - + Classes @@ -3937,10 +4384,11 @@ - - Wind chimes (glass) + + pictWindChimesGlass + Wind chimes (glass) U+E6C1 - + Classes @@ -3948,10 +4396,11 @@ - - Chimes + + pictChimes + Chimes U+E6C2 - + Classes @@ -3959,10 +4408,11 @@ - - Bamboo tube chimes + + pictBambooChimes + Bamboo tube chimes U+E6C3 - + Classes @@ -3970,10 +4420,11 @@ - - Shell chimes + + pictShellChimes + Shell chimes U+E6C4 - + Classes @@ -3981,10 +4432,11 @@ - - Glass tube chimes + + pictGlassTubeChimes + Glass tube chimes U+E6C5 - + Classes @@ -3992,10 +4444,11 @@ - - Glass plate chimes + + pictGlassPlateChimes + Glass plate chimes U+E6C6 - + Classes @@ -4003,10 +4456,11 @@ - - Metal tube chimes + + pictMetalTubeChimes + Metal tube chimes U+E6C7 - + Classes @@ -4014,10 +4468,11 @@ - - Metal plate chimes + + pictMetalPlateChimes + Metal plate chimes U+E6C8 - + Classes @@ -4028,71 +4483,83 @@ Chord diagrams - - 3-string fretboard + + fretboard3String + 3-string fretboard U+E850 - + - - 3-string fretboard at nut + + fretboard3StringNut + 3-string fretboard at nut U+E851 - + - - 4-string fretboard + + fretboard4String + 4-string fretboard U+E852 U+1D11D - + - - 4-string fretboard at nut + + fretboard4StringNut + 4-string fretboard at nut U+E853 - + - - 5-string fretboard + + fretboard5String + 5-string fretboard U+E854 - + - - 5-string fretboard at nut + + fretboard5StringNut + 5-string fretboard at nut U+E855 - + - - 6-string fretboard + + fretboard6String + 6-string fretboard U+E856 U+1D11C - + - - 6-string fretboard at nut + + fretboard6StringNut + 6-string fretboard at nut U+E857 - + - - Fingered fret (filled circle) + + fretboardFilledCircle + Fingered fret (filled circle) U+E858 - + - - String not played (X) + + fretboardX + String not played (X) U+E859 - + - - Open string (O) + + fretboardO + Open string (O) U+E85A - + Chord symbols - - Diminished + + csymDiminished + Diminished U+E870 U+1D1A9 - + Classes @@ -4100,10 +4567,11 @@ - - Half-diminished + + csymHalfDiminished + Half-diminished U+E871 - + Classes @@ -4111,10 +4579,11 @@ - - Augmented + + csymAugmented + Augmented U+E872 - + Classes @@ -4122,10 +4591,11 @@ - - Major seventh + + csymMajorSeventh + Major seventh U+E873 - + Classes @@ -4133,39 +4603,45 @@ - - Minor + + csymMinor + Minor U+E874 - + - - Double-height left parenthesis + + csymParensLeftTall + Double-height left parenthesis U+E875 - + - - Double-height right parenthesis + + csymParensRightTall + Double-height right parenthesis U+E876 - + - - Double-height left bracket + + csymBracketLeftTall + Double-height left bracket U+E877 - + - - Double-height right bracket + + csymBracketRightTall + Double-height right bracket U+E878 - + Clefs - - G clef + + gClef + G clef U+E050 U+1D11E - + Classes @@ -4174,10 +4650,11 @@ - - G clef quindicesima bassa + + gClef15mb + G clef quindicesima bassa U+E051 - + Classes @@ -4186,11 +4663,12 @@ - - G clef ottava bassa + + gClef8vb + G clef ottava bassa U+E052 U+1D120 - + Classes @@ -4199,11 +4677,12 @@ - - G clef ottava alta + + gClef8va + G clef ottava alta U+E053 U+1D11F - + Classes @@ -4212,10 +4691,11 @@ - - G clef quindicesima alta + + gClef15ma + G clef quindicesima alta U+E054 - + Classes @@ -4224,10 +4704,11 @@ - - G clef ottava bassa (old style) + + gClef8vbOld + G clef ottava bassa (old style) U+E055 - + Classes @@ -4236,10 +4717,11 @@ - - G clef ottava bassa with C clef + + gClef8vbCClef + G clef ottava bassa with C clef U+E056 - + Classes @@ -4248,10 +4730,11 @@ - - G clef, optionally ottava bassa + + gClef8vbParens + G clef, optionally ottava bassa U+E057 - + Classes @@ -4260,10 +4743,11 @@ - - Combining G clef, number below + + gClefLigatedNumberBelow + Combining G clef, number below U+E058 - + Classes @@ -4272,10 +4756,11 @@ - - Combining G clef, number above + + gClefLigatedNumberAbove + Combining G clef, number above U+E059 - + Classes @@ -4284,10 +4769,11 @@ - - G clef, arrow up + + gClefArrowUp + G clef, arrow up U+E05A - + Classes @@ -4296,10 +4782,11 @@ - - G clef, arrow down + + gClefArrowDown + G clef, arrow down U+E05B - + Classes @@ -4308,11 +4795,12 @@ - - C clef + + cClef + C clef U+E05C U+1D121 - + Classes @@ -4321,10 +4809,11 @@ - - C clef ottava bassa + + cClef8vb + C clef ottava bassa U+E05D - + Classes @@ -4333,10 +4822,11 @@ - - C clef, arrow up + + cClefArrowUp + C clef, arrow up U+E05E - + Classes @@ -4345,10 +4835,11 @@ - - C clef, arrow down + + cClefArrowDown + C clef, arrow down U+E05F - + Classes @@ -4357,10 +4848,11 @@ - - C clef (19th century) + + cClefSquare + C clef (19th century) U+E060 - + Classes @@ -4369,10 +4861,11 @@ - - Combining C clef + + cClefCombining + Combining C clef U+E061 - + Classes @@ -4381,11 +4874,12 @@ - - F clef + + fClef + F clef U+E062 U+1D122 - + Classes @@ -4394,10 +4888,11 @@ - - F clef quindicesima bassa + + fClef15mb + F clef quindicesima bassa U+E063 - + Classes @@ -4406,11 +4901,12 @@ - - F clef ottava bassa + + fClef8vb + F clef ottava bassa U+E064 U+1D124 - + Classes @@ -4419,11 +4915,12 @@ - - F clef ottava alta + + fClef8va + F clef ottava alta U+E065 U+1D123 - + Classes @@ -4432,10 +4929,11 @@ - - F clef quindicesima alta + + fClef15ma + F clef quindicesima alta U+E066 - + Classes @@ -4444,10 +4942,11 @@ - - F clef, arrow up + + fClefArrowUp + F clef, arrow up U+E067 - + Classes @@ -4456,10 +4955,11 @@ - - F clef, arrow down + + fClefArrowDown + F clef, arrow down U+E068 - + Classes @@ -4468,11 +4968,12 @@ - - Unpitched percussion clef 1 + + unpitchedPercussionClef1 + Unpitched percussion clef 1 U+E069 U+1D125 - + Classes @@ -4480,11 +4981,12 @@ - - Unpitched percussion clef 2 + + unpitchedPercussionClef2 + Unpitched percussion clef 2 U+E06A U+1D126 - + Classes @@ -4492,10 +4994,11 @@ - - Semi-pitched percussion clef 1 + + semipitchedPercussionClef1 + Semi-pitched percussion clef 1 U+E06B - + Classes @@ -4503,10 +5006,11 @@ - - Semi-pitched percussion clef 2 + + semipitchedPercussionClef2 + Semi-pitched percussion clef 2 U+E06C - + Classes @@ -4515,9 +5019,10 @@ - 6-string tab clef + 6stringTabClef + 6-string tab clef U+E06D - + Classes @@ -4526,9 +5031,10 @@ - 4-string tab clef + 4stringTabClef + 4-string tab clef U+E06E - + Classes @@ -4536,10 +5042,11 @@ - - Triangular C clef + + schaefferClef + Schäffer clef U+E06F - + Classes @@ -4547,10 +5054,11 @@ - - Triangular F clef + + schaefferPreviousClef + Schäffer previous clef U+E070 - + Classes @@ -4558,10 +5066,11 @@ - - C clef to F clef change + + schaefferGClefToFClef + Schäffer G clef to F clef change U+E071 - + Classes @@ -4569,10 +5078,11 @@ - - F clef to C clef change + + schaefferFClefToGClef + Schäffer F clef to G clef change U+E072 - + Classes @@ -4580,10 +5090,11 @@ - - Reversed G clef + + gClefReversed + Reversed G clef U+E073 - + Classes @@ -4592,10 +5103,11 @@ - - Turned G clef + + gClefTurned + Turned G clef U+E074 - + Classes @@ -4604,10 +5116,11 @@ - - Reversed C clef + + cClefReversed + Reversed C clef U+E075 - + Classes @@ -4616,10 +5129,11 @@ - - Reversed F clef + + fClefReversed + Reversed F clef U+E076 - + Classes @@ -4628,10 +5142,11 @@ - - Turned F clef + + fClefTurned + Turned F clef U+E077 - + Classes @@ -4640,10 +5155,11 @@ - - Bridge clef + + bridgeClef + Bridge clef U+E078 - + Classes @@ -4651,10 +5167,11 @@ - - Diatonic accordion clef + + accdnDiatonicClef + Diatonic accordion clef U+E079 - + Classes @@ -4662,10 +5179,11 @@ - - G clef change + + gClefChange + G clef change U+E07A - + Classes @@ -4673,10 +5191,11 @@ - - C clef change + + cClefChange + C clef change U+E07B - + Classes @@ -4684,10 +5203,11 @@ - - F clef change + + fClefChange + F clef change U+E07C - + Classes @@ -4695,10 +5215,11 @@ - - 8 for clefs + + clef8 + 8 for clefs U+E07D - + Classes @@ -4706,10 +5227,11 @@ - - 15 for clefs + + clef15 + 15 for clefs U+E07E - + Classes @@ -4717,10 +5239,11 @@ - - Combining clef change + + clefChangeCombining + Combining clef change U+E07F - + Classes @@ -4731,10 +5254,11 @@ Combining staff positions - - Raise 1 staff position + + staffPosRaise1 + Raise 1 staff position U+EB90 - + Classes @@ -4742,10 +5266,11 @@ - - Raise 2 staff positions + + staffPosRaise2 + Raise 2 staff positions U+EB91 - + Classes @@ -4753,10 +5278,11 @@ - - Raise 3 staff positions + + staffPosRaise3 + Raise 3 staff positions U+EB92 - + Classes @@ -4764,10 +5290,11 @@ - - Raise 4 staff positions + + staffPosRaise4 + Raise 4 staff positions U+EB93 - + Classes @@ -4775,10 +5302,11 @@ - - Raise 5 staff positions + + staffPosRaise5 + Raise 5 staff positions U+EB94 - + Classes @@ -4786,10 +5314,11 @@ - - Raise 6 staff positions + + staffPosRaise6 + Raise 6 staff positions U+EB95 - + Classes @@ -4797,10 +5326,11 @@ - - Raise 7 staff positions + + staffPosRaise7 + Raise 7 staff positions U+EB96 - + Classes @@ -4808,10 +5338,11 @@ - - Raise 8 staff positions + + staffPosRaise8 + Raise 8 staff positions U+EB97 - + Classes @@ -4819,10 +5350,11 @@ - - Lower 1 staff position + + staffPosLower1 + Lower 1 staff position U+EB98 - + Classes @@ -4830,10 +5362,11 @@ - - Lower 2 staff positions + + staffPosLower2 + Lower 2 staff positions U+EB99 - + Classes @@ -4841,10 +5374,11 @@ - - Lower 3 staff positions + + staffPosLower3 + Lower 3 staff positions U+EB9A - + Classes @@ -4852,10 +5386,11 @@ - - Lower 4 staff positions + + staffPosLower4 + Lower 4 staff positions U+EB9B - + Classes @@ -4863,10 +5398,11 @@ - - Lower 5 staff positions + + staffPosLower5 + Lower 5 staff positions U+EB9C - + Classes @@ -4874,10 +5410,11 @@ - - Lower 6 staff positions + + staffPosLower6 + Lower 6 staff positions U+EB9D - + Classes @@ -4885,10 +5422,11 @@ - - Lower 7 staff positions + + staffPosLower7 + Lower 7 staff positions U+EB9E - + Classes @@ -4896,10 +5434,11 @@ - - Lower 8 staff positions + + staffPosLower8 + Lower 8 staff positions U+EB9F - + Classes @@ -4910,10 +5449,11 @@ Combining strokes for trills and mordents - - Ornament top left concave stroke + + ornamentTopLeftConcaveStroke + Ornament top left concave stroke U+E590 - + Classes @@ -4922,11 +5462,12 @@ - - Ornament top left convex stroke + + ornamentTopLeftConvexStroke + Ornament top left convex stroke U+E591 U+1D1A5 - + Classes @@ -4935,10 +5476,11 @@ - - Ornament high left concave stroke + + ornamentHighLeftConcaveStroke + Ornament high left concave stroke U+E592 - + Classes @@ -4947,11 +5489,12 @@ - - Ornament high left convex stroke + + ornamentHighLeftConvexStroke + Ornament high left convex stroke U+E593 U+1D1A2 - + Classes @@ -4960,11 +5503,12 @@ - - Ornament left vertical stroke + + ornamentLeftVerticalStroke + Ornament left vertical stroke U+E594 U+1D19B - + Classes @@ -4973,10 +5517,11 @@ - - Ornament left vertical stroke with cross (+) + + ornamentLeftVerticalStrokeWithCross + Ornament left vertical stroke with cross (+) U+E595 - + Classes @@ -4985,10 +5530,11 @@ - - Ornament left shake t + + ornamentLeftShakeT + Ornament left shake t U+E596 - + Classes @@ -4997,10 +5543,11 @@ - - Ornament left + + + ornamentLeftPlus + Ornament left + U+E597 - + Classes @@ -5009,10 +5556,11 @@ - - Ornament low left concave stroke + + ornamentLowLeftConcaveStroke + Ornament low left concave stroke U+E598 - + Classes @@ -5021,11 +5569,12 @@ - - Ornament low left convex stroke + + ornamentLowLeftConvexStroke + Ornament low left convex stroke U+E599 U+1D1A4 - + Classes @@ -5034,10 +5583,11 @@ - - Ornament bottom left concave stroke + + ornamentBottomLeftConcaveStroke + Ornament bottom left concave stroke U+E59A - + Classes @@ -5046,11 +5596,12 @@ - - Ornament bottom left concave stroke, large + + ornamentBottomLeftConcaveStrokeLarge + Ornament bottom left concave stroke, large U+E59B U+1D1A1 - + Classes @@ -5059,10 +5610,11 @@ - - Ornament bottom left convex stroke + + ornamentBottomLeftConvexStroke + Ornament bottom left convex stroke U+E59C - + Classes @@ -5071,11 +5623,12 @@ - - Ornament zig-zag line without right-hand end + + ornamentZigZagLineNoRightEnd + Ornament zig-zag line without right-hand end U+E59D U+1D19C - + Classes @@ -5084,11 +5637,12 @@ - - Ornament zig-zag line with right-hand end + + ornamentZigZagLineWithRightEnd + Ornament zig-zag line with right-hand end U+E59E U+1D19D - + Classes @@ -5097,11 +5651,12 @@ - - Ornament middle vertical stroke + + ornamentMiddleVerticalStroke + Ornament middle vertical stroke U+E59F U+1D1A0 - + Classes @@ -5110,10 +5665,11 @@ - - Ornament top right concave stroke + + ornamentTopRightConcaveStroke + Ornament top right concave stroke U+E5A0 - + Classes @@ -5122,11 +5678,12 @@ - - Ornament top right convex stroke + + ornamentTopRightConvexStroke + Ornament top right convex stroke U+E5A1 U+1D19E - + Classes @@ -5135,10 +5692,11 @@ - - Ornament high right concave stroke + + ornamentHighRightConcaveStroke + Ornament high right concave stroke U+E5A2 - + Classes @@ -5147,10 +5705,11 @@ - - Ornament high right convex stroke + + ornamentHighRightConvexStroke + Ornament high right convex stroke U+E5A3 - + Classes @@ -5159,10 +5718,11 @@ - - Ornament right vertical stroke + + ornamentRightVerticalStroke + Ornament right vertical stroke U+E5A4 - + Classes @@ -5171,11 +5731,12 @@ - - Ornament low right concave stroke + + ornamentLowRightConcaveStroke + Ornament low right concave stroke U+E5A5 U+1D1A3 - + Classes @@ -5184,10 +5745,11 @@ - - Ornament low right convex stroke + + ornamentLowRightConvexStroke + Ornament low right convex stroke U+E5A6 - + Classes @@ -5196,11 +5758,12 @@ - - Ornament bottom right concave stroke + + ornamentBottomRightConcaveStroke + Ornament bottom right concave stroke U+E5A7 U+1D19F - + Classes @@ -5209,10 +5772,11 @@ - - Ornament bottom right convex stroke + + ornamentBottomRightConvexStroke + Ornament bottom right convex stroke U+E5A8 - + Classes @@ -5224,11 +5788,12 @@ Common ornaments - - Slashed grace note stem up + + graceNoteAcciaccaturaStemUp + Slashed grace note stem up U+E560 U+1D194 - + Classes @@ -5237,10 +5802,11 @@ - - Slashed grace note stem down + + graceNoteAcciaccaturaStemDown + Slashed grace note stem down U+E561 - + Classes @@ -5249,11 +5815,12 @@ - - Grace note stem up + + graceNoteAppoggiaturaStemUp + Grace note stem up U+E562 U+1D195 - + Classes @@ -5262,10 +5829,11 @@ - - Grace note stem down + + graceNoteAppoggiaturaStemDown + Grace note stem down U+E563 - + Classes @@ -5274,10 +5842,11 @@ - - Slash for stem up grace note + + graceNoteSlashStemUp + Slash for stem up grace note U+E564 - + Classes @@ -5286,10 +5855,11 @@ - - Slash for stem down grace note + + graceNoteSlashStemDown + Slash for stem down grace note U+E565 - + Classes @@ -5298,11 +5868,12 @@ - - Trill + + ornamentTrill + Trill U+E566 U+1D196 - + Classes @@ -5311,11 +5882,12 @@ - - Turn + + ornamentTurn + Turn U+E567 U+1D197 - + Classes @@ -5324,11 +5896,12 @@ - - Inverted turn + + ornamentTurnInverted + Inverted turn U+E568 U+1D198 - + Classes @@ -5337,11 +5910,12 @@ - - Turn with slash + + ornamentTurnSlash + Turn with slash U+E569 U+1D199 - + Classes @@ -5350,11 +5924,12 @@ - - Turn up + + ornamentTurnUp + Turn up U+E56A U+1D19A - + Classes @@ -5363,10 +5938,11 @@ - - Inverted turn up + + ornamentTurnUpS + Inverted turn up U+E56B - + Classes @@ -5375,10 +5951,11 @@ - - Mordent + + ornamentMordent + Mordent U+E56C - + Classes @@ -5387,10 +5964,11 @@ - - Inverted mordent + + ornamentMordentInverted + Inverted mordent U+E56D - + Classes @@ -5399,10 +5977,11 @@ - - Tremblement + + ornamentTremblement + Tremblement U+E56E - + Classes @@ -5411,10 +5990,11 @@ - - Haydn ornament + + ornamentHaydn + Haydn ornament U+E56F - + Classes @@ -5426,63 +6006,74 @@ Conductor symbols - - Strong beat or cue + + conductorStrongBeat + Strong beat or cue U+E890 - + - - Left-hand beat or cue + + conductorLeftBeat + Left-hand beat or cue U+E891 - + - - Right-hand beat or cue + + conductorRightBeat + Right-hand beat or cue U+E892 - + - - Weak beat or cue + + conductorWeakBeat + Weak beat or cue U+E893 - + - - Beat 2, simple time + + conductorBeat2Simple + Beat 2, simple time U+E894 - + - - Beat 3, simple time + + conductorBeat3Simple + Beat 3, simple time U+E895 - + - - Beat 4, simple time + + conductorBeat4Simple + Beat 4, simple time U+E896 - + - - Beat 2, compound time + + conductorBeat2Compound + Beat 2, compound time U+E897 - + - - Beat 3, compound time + + conductorBeat3Compound + Beat 3, compound time U+E898 - + - - Beat 4, compound time + + conductorBeat4Compound + Beat 4, compound time U+E899 - + Cymbals pictograms - - Crash cymbals + + pictCrashCymbals + Crash cymbals U+E720 - + Classes @@ -5490,10 +6081,11 @@ - - Suspended cymbal + + pictSuspendedCymbal + Suspended cymbal U+E721 - + Classes @@ -5501,10 +6093,11 @@ - - Hi-hat + + pictHiHat + Hi-hat U+E722 - + Classes @@ -5512,10 +6105,11 @@ - - Hi-hat cymbals on stand + + pictHiHatOnStand + Hi-hat cymbals on stand U+E723 - + Classes @@ -5523,10 +6117,11 @@ - - Sizzle cymbal + + pictSizzleCymbal + Sizzle cymbal U+E724 - + Classes @@ -5534,10 +6129,11 @@ - - Vietnamese hat cymbal + + pictVietnameseHat + Vietnamese hat cymbal U+E725 - + Classes @@ -5545,10 +6141,11 @@ - - Chinese cymbal + + pictChineseCymbal + Chinese cymbal U+E726 - + Classes @@ -5556,10 +6153,11 @@ - - Finger cymbals + + pictFingerCymbals + Finger cymbals U+E727 - + Classes @@ -5567,10 +6165,11 @@ - - Cymbal tongs + + pictCymbalTongs + Cymbal tongs U+E728 - + Classes @@ -5578,10 +6177,11 @@ - - Edge of cymbal + + pictEdgeOfCymbal + Edge of cymbal U+E729 - + Classes @@ -5589,10 +6189,11 @@ - - Bell of cymbal + + pictBellOfCymbal + Bell of cymbal U+E72A - + Classes @@ -5603,10 +6204,11 @@ Daseian notation - - Daseian graves 1 + + daseianGraves1 + Daseian graves 1 U+EA30 - + Classes @@ -5614,10 +6216,11 @@ - - Daseian graves 2 + + daseianGraves2 + Daseian graves 2 U+EA31 - + Classes @@ -5625,10 +6228,11 @@ - - Daseian graves 3 + + daseianGraves3 + Daseian graves 3 U+EA32 - + Classes @@ -5636,10 +6240,11 @@ - - Daseian graves 4 + + daseianGraves4 + Daseian graves 4 U+EA33 - + Classes @@ -5647,10 +6252,11 @@ - - Daseian finales 1 + + daseianFinales1 + Daseian finales 1 U+EA34 - + Classes @@ -5658,10 +6264,11 @@ - - Daseian finales 2 + + daseianFinales2 + Daseian finales 2 U+EA35 - + Classes @@ -5669,10 +6276,11 @@ - - Daseian finales 3 + + daseianFinales3 + Daseian finales 3 U+EA36 - + Classes @@ -5680,10 +6288,11 @@ - - Daseian finales 4 + + daseianFinales4 + Daseian finales 4 U+EA37 - + Classes @@ -5691,10 +6300,11 @@ - - Daseian superiores 1 + + daseianSuperiores1 + Daseian superiores 1 U+EA38 - + Classes @@ -5702,10 +6312,11 @@ - - Daseian superiores 2 + + daseianSuperiores2 + Daseian superiores 2 U+EA39 - + Classes @@ -5713,10 +6324,11 @@ - - Daseian superiores 3 + + daseianSuperiores3 + Daseian superiores 3 U+EA3A - + Classes @@ -5724,10 +6336,11 @@ - - Daseian superiores 4 + + daseianSuperiores4 + Daseian superiores 4 U+EA3B - + Classes @@ -5735,10 +6348,11 @@ - - Daseian excellentes 1 + + daseianExcellentes1 + Daseian excellentes 1 U+EA3C - + Classes @@ -5746,10 +6360,11 @@ - - Daseian excellentes 2 + + daseianExcellentes2 + Daseian excellentes 2 U+EA3D - + Classes @@ -5757,10 +6372,11 @@ - - Daseian excellentes 3 + + daseianExcellentes3 + Daseian excellentes 3 U+EA3E - + Classes @@ -5768,10 +6384,11 @@ - - Daseian excellentes 4 + + daseianExcellentes4 + Daseian excellentes 4 U+EA3F - + Classes @@ -5779,10 +6396,11 @@ - - Daseian residua 1 + + daseianResidua1 + Daseian residua 1 U+EA40 - + Classes @@ -5790,10 +6408,11 @@ - - Daseian residua 2 + + daseianResidua2 + Daseian residua 2 U+EA41 - + Classes @@ -5804,10 +6423,11 @@ Drums pictograms - - Timpani + + pictTimpani + Timpani U+E6D0 - + Classes @@ -5815,10 +6435,11 @@ - - Snare drum + + pictSnareDrum + Snare drum U+E6D1 - + Classes @@ -5826,10 +6447,11 @@ - - Snare drum, snares off + + pictSnareDrumSnaresOff + Snare drum, snares off U+E6D2 - + Classes @@ -5837,10 +6459,11 @@ - - Military snare drum + + pictSnareDrumMilitary + Military snare drum U+E6D3 - + Classes @@ -5848,10 +6471,11 @@ - - Bass drum + + pictBassDrum + Bass drum U+E6D4 - + Classes @@ -5859,10 +6483,11 @@ - - Bass drum on side + + pictBassDrumOnSide + Bass drum on side U+E6D5 - + Classes @@ -5870,10 +6495,11 @@ - - Tenor drum + + pictTenorDrum + Tenor drum U+E6D6 - + Classes @@ -5881,10 +6507,11 @@ - - Tom-tom + + pictTomTom + Tom-tom U+E6D7 - + Classes @@ -5892,10 +6519,11 @@ - - Chinese tom-tom + + pictTomTomChinese + Chinese tom-tom U+E6D8 - + Classes @@ -5903,10 +6531,11 @@ - - Japanese tom-tom + + pictTomTomJapanese + Japanese tom-tom U+E6D9 - + Classes @@ -5914,10 +6543,11 @@ - - Indo-American tom tom + + pictTomTomIndoAmerican + Indo-American tom tom U+E6DA - + Classes @@ -5925,10 +6555,11 @@ - - Tambourine + + pictTambourine + Tambourine U+E6DB - + Classes @@ -5936,10 +6567,11 @@ - - Timbales + + pictTimbales + Timbales U+E6DC - + Classes @@ -5947,10 +6579,11 @@ - - Bongos + + pictBongos + Bongos U+E6DD - + Classes @@ -5958,10 +6591,11 @@ - - Conga + + pictConga + Conga U+E6DE - + Classes @@ -5969,10 +6603,11 @@ - - Log drum + + pictLogDrum + Log drum U+E6DF - + Classes @@ -5980,10 +6615,11 @@ - - Slit drum + + pictSlitDrum + Slit drum U+E6E0 - + Classes @@ -5991,10 +6627,11 @@ - - Brake drum + + pictBrakeDrum + Brake drum U+E6E1 - + Classes @@ -6002,10 +6639,11 @@ - - Goblet drum (djembe, dumbek) + + pictGobletDrum + Goblet drum (djembe, dumbek) U+E6E2 - + Classes @@ -6013,10 +6651,11 @@ - - Indian tabla + + pictTabla + Indian tabla U+E6E3 - + Classes @@ -6024,10 +6663,11 @@ - - Cuica + + pictCuica + Cuica U+E6E4 - + Classes @@ -6038,11 +6678,12 @@ Dynamics - - Piano + + dynamicPiano + Piano U+E520 U+1D18F - + Classes @@ -6050,11 +6691,12 @@ - - Mezzo + + dynamicMezzo + Mezzo U+E521 U+1D190 - + Classes @@ -6062,11 +6704,12 @@ - - Forte + + dynamicForte + Forte U+E522 U+1D191 - + Classes @@ -6074,11 +6717,12 @@ - - Rinforzando + + dynamicRinforzando + Rinforzando U+E523 U+1D18C - + Classes @@ -6086,11 +6730,12 @@ - - Sforzando + + dynamicSforzando + Sforzando U+E524 U+1D18D - + Classes @@ -6098,11 +6743,12 @@ - - Z + + dynamicZ + Z U+E525 U+1D18E - + Classes @@ -6110,10 +6756,11 @@ - - Niente + + dynamicNiente + Niente U+E526 - + Classes @@ -6121,10 +6768,11 @@ - - pppppp + + dynamicPPPPPP + pppppp U+E527 - + Classes @@ -6132,10 +6780,11 @@ - - ppppp + + dynamicPPPPP + ppppp U+E528 - + Classes @@ -6143,10 +6792,11 @@ - - pppp + + dynamicPPPP + pppp U+E529 - + Classes @@ -6154,10 +6804,11 @@ - - ppp + + dynamicPPP + ppp U+E52A - + Classes @@ -6165,10 +6816,11 @@ - - pp + + dynamicPP + pp U+E52B - + Classes @@ -6176,10 +6828,11 @@ - - mp + + dynamicMP + mp U+E52C - + Classes @@ -6187,10 +6840,11 @@ - - mf + + dynamicMF + mf U+E52D - + Classes @@ -6198,10 +6852,11 @@ - - pf + + dynamicPF + pf U+E52E - + Classes @@ -6209,10 +6864,11 @@ - - ff + + dynamicFF + ff U+E52F - + Classes @@ -6220,10 +6876,11 @@ - - fff + + dynamicFFF + fff U+E530 - + Classes @@ -6231,10 +6888,11 @@ - - ffff + + dynamicFFFF + ffff U+E531 - + Classes @@ -6242,10 +6900,11 @@ - - fffff + + dynamicFFFFF + fffff U+E532 - + Classes @@ -6253,10 +6912,11 @@ - - ffffff + + dynamicFFFFFF + ffffff U+E533 - + Classes @@ -6264,10 +6924,11 @@ - - Forte-piano + + dynamicFortePiano + Forte-piano U+E534 - + Classes @@ -6275,10 +6936,11 @@ - - Forzando + + dynamicForzando + Forzando U+E535 - + Classes @@ -6286,10 +6948,11 @@ - - Sforzando 1 + + dynamicSforzando1 + Sforzando 1 U+E536 - + Classes @@ -6297,10 +6960,11 @@ - - Sforzando-piano + + dynamicSforzandoPiano + Sforzando-piano U+E537 - + Classes @@ -6308,10 +6972,11 @@ - - Sforzando-pianissimo + + dynamicSforzandoPianissimo + Sforzando-pianissimo U+E538 - + Classes @@ -6319,10 +6984,11 @@ - - Sforzato + + dynamicSforzato + Sforzato U+E539 - + Classes @@ -6330,10 +6996,11 @@ - - Sforzato-piano + + dynamicSforzatoPiano + Sforzato-piano U+E53A - + Classes @@ -6341,10 +7008,11 @@ - - Sforzatissimo + + dynamicSforzatoFF + Sforzatissimo U+E53B - + Classes @@ -6352,10 +7020,11 @@ - - Rinforzando 1 + + dynamicRinforzando1 + Rinforzando 1 U+E53C - + Classes @@ -6363,10 +7032,11 @@ - - Rinforzando 2 + + dynamicRinforzando2 + Rinforzando 2 U+E53D - + Classes @@ -6374,11 +7044,12 @@ - - Crescendo + + dynamicCrescendoHairpin + Crescendo U+E53E U+1D192 - + Classes @@ -6387,11 +7058,12 @@ - - Diminuendo + + dynamicDiminuendoHairpin + Diminuendo U+E53F U+1D193 - + Classes @@ -6400,10 +7072,11 @@ - - Messa di voce + + dynamicMessaDiVoce + Messa di voce U+E540 - + Classes @@ -6412,10 +7085,11 @@ - - Niente (for hairpins) + + dynamicNienteForHairpin + Niente (for hairpins) U+E541 - + Classes @@ -6426,338 +7100,404 @@ Electronic music pictograms - - Microphone + + elecMicrophone + Microphone U+EB10 - + - - Headphones + + elecHeadphones + Headphones U+EB11 - + - - Headset + + elecHeadset + Headset U+EB12 - + - - Disc + + elecDisc + Disc U+EB13 - + - - Tape + + elecTape + Tape U+EB14 - + - - Mixing console + + elecMixingConsole + Mixing console U+EB15 - + - - USB connection + + elecUSB + USB connection U+EB16 - + - - Video camera + + elecVideoCamera + Video camera U+EB17 - + - - Monitor + + elecMonitor + Monitor U+EB18 - + - - Projector + + elecProjector + Projector U+EB19 - + - - Loudspeaker + + elecLoudspeaker + Loudspeaker U+EB1A - + - - Camera + + elecCamera + Camera U+EB1B - + - - Play + + elecPlay + Play U+EB1C - + - - Stop + + elecStop + Stop U+EB1D - + - - Pause + + elecPause + Pause U+EB1E - + - - Fast-forward + + elecFastForward + Fast-forward U+EB1F - + - - Rewind + + elecRewind + Rewind U+EB20 - + - - Skip forwards + + elecSkipForwards + Skip forwards U+EB21 - + - - Skip backwards + + elecSkipBackwards + Skip backwards U+EB22 - + - - Loop + + elecLoop + Loop U+EB23 - + - - Replay + + elecReplay + Replay U+EB24 - + - - Shuffle + + elecShuffle + Shuffle U+EB25 - + - - Mute + + elecMute + Mute U+EB26 - + - - Unmute + + elecUnmute + Unmute U+EB27 - + - - Mute microphone + + elecMicrophoneMute + Mute microphone U+EB28 - + - - Unmute microphone + + elecMicrophoneUnmute + Unmute microphone U+EB29 - + - - Power on/off + + elecPowerOnOff + Power on/off U+EB2A - + - - Eject + + elecEject + Eject U+EB2B - + - - Combining volume fader + + elecVolumeFader + Combining volume fader U+EB2C - + - - Combining volume fader thumb + + elecVolumeFaderThumb + Combining volume fader thumb U+EB2D - + - - Volume level 0% + + elecVolumeLevel0 + Volume level 0% U+EB2E - + - - Volume level 20% + + elecVolumeLevel20 + Volume level 20% U+EB2F - + - - Volume level 40% + + elecVolumeLevel40 + Volume level 40% U+EB30 - + - - Volume level 60% + + elecVolumeLevel60 + Volume level 60% U+EB31 - + - - Volume level 80% + + elecVolumeLevel80 + Volume level 80% U+EB32 - + - - Volume level 100% + + elecVolumeLevel100 + Volume level 100% U+EB33 - + - - MIDI in + + elecMIDIIn + MIDI in U+EB34 - + - - MIDI out + + elecMIDIOut + MIDI out U+EB35 - + - - MIDI controller 0% + + elecMIDIController0 + MIDI controller 0% U+EB36 - + - - MIDI controller 20% + + elecMIDIController20 + MIDI controller 20% U+EB37 - + - - MIDI controller 40% + + elecMIDIController40 + MIDI controller 40% U+EB38 - + - - MIDI controller 60% + + elecMIDIController60 + MIDI controller 60% U+EB39 - + - - MIDI controller 80% + + elecMIDIController80 + MIDI controller 80% U+EB3A - + - - MIDI controller 100% + + elecMIDIController100 + MIDI controller 100% U+EB3B - + - - Mono audio setup + + elecAudioMono + Mono audio setup U+EB3C - + - - Stereo audio setup + + elecAudioStereo + Stereo audio setup U+EB3D - + - - One channel (mono) + + elecAudioChannelsOne + One channel (mono) U+EB3E - + - - Two channels (stereo) + + elecAudioChannelsTwo + Two channels (stereo) U+EB3F - + - - Three channels (frontal) + + elecAudioChannelsThreeFrontal + Three channels (frontal) U+EB40 - + - - Three channels (surround) + + elecAudioChannelsThreeSurround + Three channels (surround) U+EB41 - + - - Four channels + + elecAudioChannelsFour + Four channels U+EB42 - + - - Five channels + + elecAudioChannelsFive + Five channels U+EB43 - + - - Six channels (5.1 surround) + + elecAudioChannelsSix + Six channels (5.1 surround) U+EB44 - + - - Seven channels + + elecAudioChannelsSeven + Seven channels U+EB45 - + - - Eight channels (7.1 surround) + + elecAudioChannelsEight + Eight channels (7.1 surround) U+EB46 - + - - Line in + + elecLineIn + Line in U+EB47 - + - - Line out + + elecLineOut + Line out U+EB48 - + - - Audio in + + elecAudioIn + Audio in U+EB49 - + - - Audio out + + elecAudioOut + Audio out U+EB4A - + - - Video in + + elecVideoIn + Video in U+EB4B - + - - Video out + + elecVideoOut + Video out U+EB4C - + - - Data in + + elecDataIn + Data in U+EB4D - + - - Data out + + elecDataOut + Data out U+EB4E - + - - Download + + elecDownload + Download U+EB4F - + - - Upload + + elecUpload + Upload U+EB50 - + Extended Helmholtz-Ellis accidentals (just intonation) - - Double flat lowered by one syntonic comma + + accidentalDoubleFlatOneArrowDown + Double flat lowered by one syntonic comma U+E2C0 - + Classes @@ -6767,10 +7507,11 @@ - - Flat lowered by one syntonic comma + + accidentalFlatOneArrowDown + Flat lowered by one syntonic comma U+E2C1 - + Classes @@ -6780,10 +7521,11 @@ - - Natural lowered by one syntonic comma + + accidentalNaturalOneArrowDown + Natural lowered by one syntonic comma U+E2C2 - + Classes @@ -6793,10 +7535,11 @@ - - Sharp lowered by one syntonic comma + + accidentalSharpOneArrowDown + Sharp lowered by one syntonic comma U+E2C3 - + Classes @@ -6806,10 +7549,11 @@ - - Double sharp lowered by one syntonic comma + + accidentalDoubleSharpOneArrowDown + Double sharp lowered by one syntonic comma U+E2C4 - + Classes @@ -6819,10 +7563,11 @@ - - Double flat raised by one syntonic comma + + accidentalDoubleFlatOneArrowUp + Double flat raised by one syntonic comma U+E2C5 - + Classes @@ -6832,10 +7577,11 @@ - - Flat raised by one syntonic comma + + accidentalFlatOneArrowUp + Flat raised by one syntonic comma U+E2C6 - + Classes @@ -6845,10 +7591,11 @@ - - Natural raised by one syntonic comma + + accidentalNaturalOneArrowUp + Natural raised by one syntonic comma U+E2C7 - + Classes @@ -6858,10 +7605,11 @@ - - Sharp raised by one syntonic comma + + accidentalSharpOneArrowUp + Sharp raised by one syntonic comma U+E2C8 - + Classes @@ -6871,10 +7619,11 @@ - - Double sharp raised by one syntonic comma + + accidentalDoubleSharpOneArrowUp + Double sharp raised by one syntonic comma U+E2C9 - + Classes @@ -6884,10 +7633,11 @@ - - Double flat lowered by two syntonic commas + + accidentalDoubleFlatTwoArrowsDown + Double flat lowered by two syntonic commas U+E2CA - + Classes @@ -6897,10 +7647,11 @@ - - Flat lowered by two syntonic commas + + accidentalFlatTwoArrowsDown + Flat lowered by two syntonic commas U+E2CB - + Classes @@ -6910,10 +7661,11 @@ - - Natural lowered by two syntonic commas + + accidentalNaturalTwoArrowsDown + Natural lowered by two syntonic commas U+E2CC - + Classes @@ -6923,10 +7675,11 @@ - - Sharp lowered by two syntonic commas + + accidentalSharpTwoArrowsDown + Sharp lowered by two syntonic commas U+E2CD - + Classes @@ -6936,10 +7689,11 @@ - - Double sharp lowered by two syntonic commas + + accidentalDoubleSharpTwoArrowsDown + Double sharp lowered by two syntonic commas U+E2CE - + Classes @@ -6949,10 +7703,11 @@ - - Double flat raised by two syntonic commas + + accidentalDoubleFlatTwoArrowsUp + Double flat raised by two syntonic commas U+E2CF - + Classes @@ -6962,10 +7717,11 @@ - - Flat raised by two syntonic commas + + accidentalFlatTwoArrowsUp + Flat raised by two syntonic commas U+E2D0 - + Classes @@ -6975,10 +7731,11 @@ - - Natural raised by two syntonic commas + + accidentalNaturalTwoArrowsUp + Natural raised by two syntonic commas U+E2D1 - + Classes @@ -6988,10 +7745,11 @@ - - Sharp raised by two syntonic commas + + accidentalSharpTwoArrowsUp + Sharp raised by two syntonic commas U+E2D2 - + Classes @@ -7001,10 +7759,11 @@ - - Double sharp raised by two syntonic commas + + accidentalDoubleSharpTwoArrowsUp + Double sharp raised by two syntonic commas U+E2D3 - + Classes @@ -7014,10 +7773,11 @@ - - Double flat lowered by three syntonic commas + + accidentalDoubleFlatThreeArrowsDown + Double flat lowered by three syntonic commas U+E2D4 - + Classes @@ -7027,10 +7787,11 @@ - - Flat lowered by three syntonic commas + + accidentalFlatThreeArrowsDown + Flat lowered by three syntonic commas U+E2D5 - + Classes @@ -7040,10 +7801,11 @@ - - Natural lowered by three syntonic commas + + accidentalNaturalThreeArrowsDown + Natural lowered by three syntonic commas U+E2D6 - + Classes @@ -7053,10 +7815,11 @@ - - Sharp lowered by three syntonic commas + + accidentalSharpThreeArrowsDown + Sharp lowered by three syntonic commas U+E2D7 - + Classes @@ -7066,10 +7829,11 @@ - - Double sharp lowered by three syntonic commas + + accidentalDoubleSharpThreeArrowsDown + Double sharp lowered by three syntonic commas U+E2D8 - + Classes @@ -7079,10 +7843,11 @@ - - Double flat raised by three syntonic commas + + accidentalDoubleFlatThreeArrowsUp + Double flat raised by three syntonic commas U+E2D9 - + Classes @@ -7092,10 +7857,11 @@ - - Flat raised by three syntonic commas + + accidentalFlatThreeArrowsUp + Flat raised by three syntonic commas U+E2DA - + Classes @@ -7105,10 +7871,11 @@ - - Natural raised by three syntonic commas + + accidentalNaturalThreeArrowsUp + Natural raised by three syntonic commas U+E2DB - + Classes @@ -7118,10 +7885,11 @@ - - Sharp raised by three syntonic commas + + accidentalSharpThreeArrowsUp + Sharp raised by three syntonic commas U+E2DC - + Classes @@ -7131,10 +7899,11 @@ - - Double sharp raised by three syntonic commas + + accidentalDoubleSharpThreeArrowsUp + Double sharp raised by three syntonic commas U+E2DD - + Classes @@ -7144,10 +7913,11 @@ - - Lower by one septimal comma + + accidentalLowerOneSeptimalComma + Lower by one septimal comma U+E2DE - + Classes @@ -7157,10 +7927,11 @@ - - Raise by one septimal comma + + accidentalRaiseOneSeptimalComma + Raise by one septimal comma U+E2DF - + Classes @@ -7170,10 +7941,11 @@ - - Lower by two septimal commas + + accidentalLowerTwoSeptimalCommas + Lower by two septimal commas U+E2E0 - + Classes @@ -7183,10 +7955,11 @@ - - Raise by two septimal commas + + accidentalRaiseTwoSeptimalCommas + Raise by two septimal commas U+E2E1 - + Classes @@ -7196,10 +7969,11 @@ - - Lower by one undecimal quartertone + + accidentalLowerOneUndecimalQuartertone + Lower by one undecimal quartertone U+E2E2 - + Classes @@ -7209,10 +7983,11 @@ - - Raise by one undecimal quartertone + + accidentalRaiseOneUndecimalQuartertone + Raise by one undecimal quartertone U+E2E3 - + Classes @@ -7222,10 +7997,11 @@ - - Lower by one tridecimal quartertone + + accidentalLowerOneTridecimalQuartertone + Lower by one tridecimal quartertone U+E2E4 - + Classes @@ -7235,10 +8011,11 @@ - - Raise by one tridecimal quartertone + + accidentalRaiseOneTridecimalQuartertone + Raise by one tridecimal quartertone U+E2E5 - + Classes @@ -7248,10 +8025,11 @@ - - Combining lower by one 17-limit schisma + + accidentalCombiningLower17Schisma + Combining lower by one 17-limit schisma U+E2E6 - + Classes @@ -7261,10 +8039,11 @@ - - Combining raise by one 17-limit schisma + + accidentalCombiningRaise17Schisma + Combining raise by one 17-limit schisma U+E2E7 - + Classes @@ -7274,10 +8053,11 @@ - - Combining lower by one 19-limit schisma + + accidentalCombiningLower19Schisma + Combining lower by one 19-limit schisma U+E2E8 - + Classes @@ -7287,10 +8067,11 @@ - - Combining raise by one 19-limit schisma + + accidentalCombiningRaise19Schisma + Combining raise by one 19-limit schisma U+E2E9 - + Classes @@ -7300,10 +8081,11 @@ - - Combining lower by one 23-limit comma or 29-limit comma + + accidentalCombiningLower23Limit29LimitComma + Combining lower by one 23-limit comma or 29-limit comma U+E2EA - + Classes @@ -7313,10 +8095,11 @@ - - Combining raise by one 23-limit comma or 29-limit comma + + accidentalCombiningRaise23Limit29LimitComma + Combining raise by one 23-limit comma or 29-limit comma U+E2EB - + Classes @@ -7326,10 +8109,11 @@ - - Combining lower by one 31-limit schisma + + accidentalCombiningLower31Schisma + Combining lower by one 31-limit schisma U+E2EC - + Classes @@ -7339,10 +8123,11 @@ - - Combining raise by one 31-limit schisma + + accidentalCombiningRaise31Schisma + Combining raise by one 31-limit schisma U+E2ED - + Classes @@ -7352,10 +8137,11 @@ - - Combining open curly brace + + accidentalCombiningOpenCurlyBrace + Combining open curly brace U+E2EE - + Classes @@ -7365,10 +8151,11 @@ - - Combining close curly brace + + accidentalCombiningCloseCurlyBrace + Combining close curly brace U+E2EF - + Classes @@ -7378,10 +8165,11 @@ - - Double flat equal tempered semitone + + accidentalDoubleFlatEqualTempered + Double flat equal tempered semitone U+E2F0 - + Classes @@ -7391,10 +8179,11 @@ - - Flat equal tempered semitone + + accidentalFlatEqualTempered + Flat equal tempered semitone U+E2F1 - + Classes @@ -7404,10 +8193,11 @@ - - Natural equal tempered semitone + + accidentalNaturalEqualTempered + Natural equal tempered semitone U+E2F2 - + Classes @@ -7417,10 +8207,11 @@ - - Sharp equal tempered semitone + + accidentalSharpEqualTempered + Sharp equal tempered semitone U+E2F3 - + Classes @@ -7430,10 +8221,11 @@ - - Double sharp equal tempered semitone + + accidentalDoubleSharpEqualTempered + Double sharp equal tempered semitone U+E2F4 - + Classes @@ -7446,10 +8238,11 @@ Extended Stein-Zimmermann accidentals - - Reversed flat with arrow up + + accidentalReversedFlatArrowUp + Reversed flat with arrow up U+E290 - + Classes @@ -7459,10 +8252,11 @@ - - Reversed flat with arrow down + + accidentalReversedFlatArrowDown + Reversed flat with arrow down U+E291 - + Classes @@ -7472,10 +8266,11 @@ - - Filled reversed flat with arrow up + + accidentalFilledReversedFlatArrowUp + Filled reversed flat with arrow up U+E292 - + Classes @@ -7485,10 +8280,11 @@ - - Filled reversed flat with arrow down + + accidentalFilledReversedFlatArrowDown + Filled reversed flat with arrow down U+E293 - + Classes @@ -7498,10 +8294,11 @@ - - Reversed flat and flat with arrow up + + accidentalReversedFlatAndFlatArrowUp + Reversed flat and flat with arrow up U+E294 - + Classes @@ -7511,10 +8308,11 @@ - - Reversed flat and flat with arrow down + + accidentalReversedFlatAndFlatArrowDown + Reversed flat and flat with arrow down U+E295 - + Classes @@ -7524,10 +8322,11 @@ - - Filled reversed flat and flat + + accidentalFilledReversedFlatAndFlat + Filled reversed flat and flat U+E296 - + Classes @@ -7537,10 +8336,11 @@ - - Filled reversed flat and flat with arrow up + + accidentalFilledReversedFlatAndFlatArrowUp + Filled reversed flat and flat with arrow up U+E297 - + Classes @@ -7550,10 +8350,11 @@ - - Filled reversed flat and flat with arrow down + + accidentalFilledReversedFlatAndFlatArrowDown + Filled reversed flat and flat with arrow down U+E298 - + Classes @@ -7563,10 +8364,11 @@ - - Half sharp with arrow up + + accidentalHalfSharpArrowUp + Half sharp with arrow up U+E299 - + Classes @@ -7576,10 +8378,11 @@ - - Half sharp with arrow down + + accidentalHalfSharpArrowDown + Half sharp with arrow down U+E29A - + Classes @@ -7589,10 +8392,11 @@ - - One and a half sharps with arrow up + + accidentalOneAndAHalfSharpsArrowUp + One and a half sharps with arrow up U+E29B - + Classes @@ -7602,10 +8406,11 @@ - - One and a half sharps with arrow down + + accidentalOneAndAHalfSharpsArrowDown + One and a half sharps with arrow down U+E29C - + Classes @@ -7618,10 +8423,11 @@ Figured bass - - Figured bass 0 + + figbass0 + Figured bass 0 U+EA50 - + Classes @@ -7629,10 +8435,11 @@ - - Figured bass 1 + + figbass1 + Figured bass 1 U+EA51 - + Classes @@ -7640,10 +8447,11 @@ - - Figured bass 2 + + figbass2 + Figured bass 2 U+EA52 - + Classes @@ -7651,10 +8459,11 @@ - - Figured bass 2 raised by half-step + + figbass2Raised + Figured bass 2 raised by half-step U+EA53 - + Classes @@ -7662,10 +8471,11 @@ - - Figured bass 3 + + figbass3 + Figured bass 3 U+EA54 - + Classes @@ -7673,10 +8483,11 @@ - - Figured bass 4 + + figbass4 + Figured bass 4 U+EA55 - + Classes @@ -7684,10 +8495,11 @@ - - Figured bass 4 raised by half-step + + figbass4Raised + Figured bass 4 raised by half-step U+EA56 - + Classes @@ -7695,10 +8507,11 @@ - - Figured bass 5 + + figbass5 + Figured bass 5 U+EA57 - + Classes @@ -7706,10 +8519,11 @@ - - Figured bass 5 raised by half-step + + figbass5Raised1 + Figured bass 5 raised by half-step U+EA58 - + Classes @@ -7717,10 +8531,11 @@ - - Figured bass 5 raised by half-step 2 + + figbass5Raised2 + Figured bass 5 raised by half-step 2 U+EA59 - + Classes @@ -7728,10 +8543,11 @@ - - Figured bass diminished 5 + + figbass5Raised3 + Figured bass diminished 5 U+EA5A - + Classes @@ -7739,10 +8555,11 @@ - - Figured bass 6 + + figbass6 + Figured bass 6 U+EA5B - + Classes @@ -7750,10 +8567,11 @@ - - Figured bass 6 raised by half-step + + figbass6Raised + Figured bass 6 raised by half-step U+EA5C - + Classes @@ -7761,10 +8579,11 @@ - - Figured bass 7 + + figbass7 + Figured bass 7 U+EA5D - + Classes @@ -7772,10 +8591,11 @@ - - Figured bass 7 raised by half-step + + figbass7Raised1 + Figured bass 7 raised by half-step U+EA5E - + Classes @@ -7783,10 +8603,11 @@ - - Figured bass 7 raised by a half-step 2 + + figbass7Raised2 + Figured bass 7 raised by a half-step 2 U+EA5F - + Classes @@ -7794,10 +8615,11 @@ - - Figured bass 8 + + figbass8 + Figured bass 8 U+EA60 - + Classes @@ -7805,10 +8627,11 @@ - - Figured bass 9 + + figbass9 + Figured bass 9 U+EA61 - + Classes @@ -7816,10 +8639,11 @@ - - Figured bass 9 raised by half-step + + figbass9Raised + Figured bass 9 raised by half-step U+EA62 - + Classes @@ -7827,10 +8651,11 @@ - - Figured bass double flat + + figbassDoubleFlat + Figured bass double flat U+EA63 - + Classes @@ -7838,10 +8663,11 @@ - - Figured bass flat + + figbassFlat + Figured bass flat U+EA64 - + Classes @@ -7849,10 +8675,11 @@ - - Figured bass natural + + figbassNatural + Figured bass natural U+EA65 - + Classes @@ -7860,10 +8687,11 @@ - - Figured bass sharp + + figbassSharp + Figured bass sharp U+EA66 - + Classes @@ -7871,10 +8699,11 @@ - - Figured bass double sharp + + figbassDoubleSharp + Figured bass double sharp U+EA67 - + Classes @@ -7882,10 +8711,11 @@ - - Figured bass [ + + figbassBracketLeft + Figured bass [ U+EA68 - + Classes @@ -7893,10 +8723,11 @@ - - Figured bass ] + + figbassBracketRight + Figured bass ] U+EA69 - + Classes @@ -7904,10 +8735,11 @@ - - Figured bass ( + + figbassParensLeft + Figured bass ( U+EA6A - + Classes @@ -7915,10 +8747,11 @@ - - Figured bass ) + + figbassParensRight + Figured bass ) U+EA6B - + Classes @@ -7926,10 +8759,11 @@ - - Figured bass + + + figbassPlus + Figured bass + U+EA6C - + Classes @@ -7937,10 +8771,11 @@ - - Combining raise + + figbassCombiningRaising + Combining raise U+EA6D - + Classes @@ -7948,10 +8783,11 @@ - - Combining lower + + figbassCombiningLowering + Combining lower U+EA6E - + Classes @@ -7959,14 +8795,21 @@ + + figbass6Raised2 + Figured bass 6 raised by half-step 2 + U+EA6F + + Flags - - Combining flag 1 (8th) above + + flag8thUp + Combining flag 1 (8th) above U+E240 U+1D16E - + Classes @@ -7974,10 +8817,11 @@ - - Combining flag 1 (8th) below + + flag8thDown + Combining flag 1 (8th) below U+E241 - + Classes @@ -7985,11 +8829,12 @@ - - Combining flag 2 (16th) above + + flag16thUp + Combining flag 2 (16th) above U+E242 U+1D16F - + Classes @@ -7997,10 +8842,11 @@ - - Combining flag 2 (16th) below + + flag16thDown + Combining flag 2 (16th) below U+E243 - + Classes @@ -8008,11 +8854,12 @@ - - Combining flag 3 (32nd) above + + flag32ndUp + Combining flag 3 (32nd) above U+E244 U+1D170 - + Classes @@ -8020,10 +8867,11 @@ - - Combining flag 3 (32nd) below + + flag32ndDown + Combining flag 3 (32nd) below U+E245 - + Classes @@ -8031,11 +8879,12 @@ - - Combining flag 4 (64th) above + + flag64thUp + Combining flag 4 (64th) above U+E246 U+1D171 - + Classes @@ -8043,10 +8892,11 @@ - - Combining flag 4 (64th) below + + flag64thDown + Combining flag 4 (64th) below U+E247 - + Classes @@ -8054,11 +8904,12 @@ - - Combining flag 5 (128th) above + + flag128thUp + Combining flag 5 (128th) above U+E248 U+1D172 - + Classes @@ -8066,10 +8917,11 @@ - - Combining flag 5 (128th) below + + flag128thDown + Combining flag 5 (128th) below U+E249 - + Classes @@ -8077,10 +8929,11 @@ - - Combining flag 6 (256th) above + + flag256thUp + Combining flag 6 (256th) above U+E24A - + Classes @@ -8088,10 +8941,11 @@ - - Combining flag 6 (256th) below + + flag256thDown + Combining flag 6 (256th) below U+E24B - + Classes @@ -8099,10 +8953,11 @@ - - Combining flag 7 (512th) above + + flag512thUp + Combining flag 7 (512th) above U+E24C - + Classes @@ -8110,10 +8965,11 @@ - - Combining flag 7 (512th) below + + flag512thDown + Combining flag 7 (512th) below U+E24D - + Classes @@ -8121,10 +8977,11 @@ - - Combining flag 8 (1024th) above + + flag1024thUp + Combining flag 8 (1024th) above U+E24E - + Classes @@ -8132,10 +8989,11 @@ - - Combining flag 8 (1024th) below + + flag1024thDown + Combining flag 8 (1024th) below U+E24F - + Classes @@ -8143,10 +9001,11 @@ - - Internal combining flag above + + flagInternalUp + Internal combining flag above U+E250 - + Classes @@ -8154,10 +9013,11 @@ - - Internal combining flag below + + flagInternalDown + Internal combining flag below U+E251 - + Classes @@ -8168,514 +9028,614 @@ French and English Renaissance lute tablature - - Open string (a) + + luteFrenchFretA + Open string (a) U+EBC0 - + - - First fret (b) + + luteFrenchFretB + First fret (b) U+EBC1 - + - - Second fret (c) + + luteFrenchFretC + Second fret (c) U+EBC2 - + - - Third fret (d) + + luteFrenchFretD + Third fret (d) U+EBC3 - + - - Fourth fret (e) + + luteFrenchFretE + Fourth fret (e) U+EBC4 - + - - Fifth fret (f) + + luteFrenchFretF + Fifth fret (f) U+EBC5 - + - - Sixth fret (g) + + luteFrenchFretG + Sixth fret (g) U+EBC6 - + - - Seventh fret (h) + + luteFrenchFretH + Seventh fret (h) U+EBC7 - + - - Eighth fret (i) + + luteFrenchFretI + Eighth fret (i) U+EBC8 - + - - Ninth fret (k) + + luteFrenchFretK + Ninth fret (k) U+EBC9 - + - - 10th fret (l) + + luteFrenchFretL + 10th fret (l) U+EBCA - + - - 11th fret (m) + + luteFrenchFretM + 11th fret (m) U+EBCB - + - - 12th fret (n) + + luteFrenchFretN + 12th fret (n) U+EBCC - + - - Seventh course (diapason) + + luteFrench7thCourse + Seventh course (diapason) U+EBCD - + - - Eighth course (diapason) + + luteFrench8thCourse + Eighth course (diapason) U+EBCE - + - - Ninth course (diapason) + + luteFrench9thCourse + Ninth course (diapason) U+EBCF - + - - 10th course (diapason) + + luteFrench10thCourse + 10th course (diapason) U+EBD0 - + - - Mordent with upper auxiliary + + luteFrenchMordentUpper + Mordent with upper auxiliary U+EBD1 - + - - Mordent with lower auxiliary + + luteFrenchMordentLower + Mordent with lower auxiliary U+EBD2 - + - - Inverted mordent + + luteFrenchMordentInverted + Inverted mordent U+EBD3 - + - - Appoggiatura from below + + luteFrenchAppoggiaturaBelow + Appoggiatura from below U+EBD4 - + - - Appoggiatura from above + + luteFrenchAppoggiaturaAbove + Appoggiatura from above U+EBD5 - + Function theory symbols - - Function theory 0 + + functionZero + Function theory 0 U+EA70 - + - - Function theory 1 + + functionOne + Function theory 1 U+EA71 - + - - Function theory 2 + + functionTwo + Function theory 2 U+EA72 - + - - Function theory 3 + + functionThree + Function theory 3 U+EA73 - + - - Function theory 4 + + functionFour + Function theory 4 U+EA74 - + - - Function theory 5 + + functionFive + Function theory 5 U+EA75 - + - - Function theory 6 + + functionSix + Function theory 6 U+EA76 - + - - Function theory 7 + + functionSeven + Function theory 7 U+EA77 - + - - Function theory 8 + + functionEight + Function theory 8 U+EA78 - + - - Function theory 9 + + functionNine + Function theory 9 U+EA79 - + - - Function theory less than + + functionLessThan + Function theory less than U+EA7A - + - - Function theory minus + + functionMinus + Function theory minus U+EA7B - + - - Function theory greater than + + functionGreaterThan + Function theory greater than U+EA7C - + - - Function theory major subdominant of subdominant + + functionSSUpper + Function theory major subdominant of subdominant U+EA7D - + - - Function theory minor subdominant of subdominant + + functionSSLower + Function theory minor subdominant of subdominant U+EA7E - + - - Function theory major dominant + + functionDUpper + Function theory major dominant U+EA7F - + - - Function theory minor dominant + + functionDLower + Function theory minor dominant U+EA80 - + - - Function theory dominant of dominant + + functionDD + Function theory dominant of dominant U+EA81 - + - - Function theory double dominant seventh + + functionSlashedDD + Function theory double dominant seventh U+EA82 - + - - Function theory G + + functionGUpper + Function theory G U+EA83 - + - - Function theory g + + functionGLower + Function theory g U+EA84 - + - - Function theory N + + functionNUpper + Function theory N U+EA85 - + - - Function theory n + + functionNLower + Function theory n U+EA86 - + - - Function theory P + + functionPUpper + Function theory P U+EA87 - + - - Function theory p + + functionPLower + Function theory p U+EA88 - + - - Function theory major subdominant + + functionSUpper + Function theory major subdominant U+EA89 - + - - Function theory minor subdominant + + functionSLower + Function theory minor subdominant U+EA8A - + - - Function theory tonic + + functionTUpper + Function theory tonic U+EA8B - + - - Function theory minor tonic + + functionTLower + Function theory minor tonic U+EA8C - + - - Function theory V + + functionVUpper + Function theory V U+EA8D - + - - Function theory v + + functionVLower + Function theory v U+EA8E - + - - Function theory bracket left + + functionBracketLeft + Function theory bracket left U+EA8F - + - - Function theory bracket right + + functionBracketRight + Function theory bracket right U+EA90 - + - - Function theory parenthesis left + + functionParensLeft + Function theory parenthesis left U+EA91 - + - - Function theory parenthesis right + + functionParensRight + Function theory parenthesis right U+EA92 - + - - Function theory angle bracket left + + functionAngleLeft + Function theory angle bracket left U+EA93 - + - - Function theory angle bracket right + + functionAngleRight + Function theory angle bracket right U+EA94 - + - - Function theory repetition 1 + + functionRepetition1 + Function theory repetition 1 U+EA95 - + - - Function theory repetition 2 + + functionRepetition2 + Function theory repetition 2 U+EA96 - + - - Function theory prefix ring + + functionRing + Function theory prefix ring U+EA97 - + - - Function theory prefix plus + + functionPlus + Function theory prefix plus U+EA98 - + German Renaissance lute tablature - - 5th course, 1st fret (a) + + luteGermanALower + 5th course, 1st fret (a) U+EC00 - + - - 4th course, 1st fret (b) + + luteGermanBLower + 4th course, 1st fret (b) U+EC01 - + - - 3rd course, 1st fret (c) + + luteGermanCLower + 3rd course, 1st fret (c) U+EC02 - + - - 2nd course, 1st fret (d) + + luteGermanDLower + 2nd course, 1st fret (d) U+EC03 - + - - 1st course, 1st fret (e) + + luteGermanELower + 1st course, 1st fret (e) U+EC04 - + - - 5th course, 2nd fret (f) + + luteGermanFLower + 5th course, 2nd fret (f) U+EC05 - + - - 4th course, 2nd fret (g) + + luteGermanGLower + 4th course, 2nd fret (g) U+EC06 - + - - 3rd course, 2nd fret (h) + + luteGermanHLower + 3rd course, 2nd fret (h) U+EC07 - + - - 2nd course, 2nd fret (i) + + luteGermanILower + 2nd course, 2nd fret (i) U+EC08 - + - - 1st course, 2nd fret (k) + + luteGermanKLower + 1st course, 2nd fret (k) U+EC09 - + - - 5th course, 3rd fret (l) + + luteGermanLLower + 5th course, 3rd fret (l) U+EC0A - + - - 4th course, 3rd fret (m) + + luteGermanMLower + 4th course, 3rd fret (m) U+EC0B - + - - 3rd course, 3rd fret (n) + + luteGermanNLower + 3rd course, 3rd fret (n) U+EC0C - + - - 2nd course, 3rd fret (o) + + luteGermanOLower + 2nd course, 3rd fret (o) U+EC0D - + - - 1st course, 3rd fret (p) + + luteGermanPLower + 1st course, 3rd fret (p) U+EC0E - + - - 5th course, 4th fret (q) + + luteGermanQLower + 5th course, 4th fret (q) U+EC0F - + - - 4th course, 4th fret (r) + + luteGermanRLower + 4th course, 4th fret (r) U+EC10 - + - - 3rd course, 4th fret (s) + + luteGermanSLower + 3rd course, 4th fret (s) U+EC11 - + - - 2nd course, 4th fret (t) + + luteGermanTLower + 2nd course, 4th fret (t) U+EC12 - + - - 1st course, 4th fret (v) + + luteGermanVLower + 1st course, 4th fret (v) U+EC13 - + - - 5th course, 5th fret (x) + + luteGermanXLower + 5th course, 5th fret (x) U+EC14 - + - - 4th course, 5th fret (y) + + luteGermanYLower + 4th course, 5th fret (y) U+EC15 - + - - 3rd course, 5th fret (z) + + luteGermanZLower + 3rd course, 5th fret (z) U+EC16 - + - - 6th course, 1st fret (A) + + luteGermanAUpper + 6th course, 1st fret (A) U+EC17 - + - - 6th course, 2nd fret (B) + + luteGermanBUpper + 6th course, 2nd fret (B) U+EC18 - + - - 6th course, 3rd fret (C) + + luteGermanCUpper + 6th course, 3rd fret (C) U+EC19 - + - - 6th course, 4th fret (D) + + luteGermanDUpper + 6th course, 4th fret (D) U+EC1A - + - - 6th course, 5th fret (E) + + luteGermanEUpper + 6th course, 5th fret (E) U+EC1B - + - - 6th course, 6th fret (F) + + luteGermanFUpper + 6th course, 6th fret (F) U+EC1C - + - - 6th course, 7th fret (G) + + luteGermanGUpper + 6th course, 7th fret (G) U+EC1D - + - - 6th course, 8th fret (H) + + luteGermanHUpper + 6th course, 8th fret (H) U+EC1E - + - - 6th course, 9th fret (I) + + luteGermanIUpper + 6th course, 9th fret (I) U+EC1F - + - - 6th course, 10th fret (K) + + luteGermanKUpper + 6th course, 10th fret (K) U+EC20 - + - - 6th course, 11th fret (L) + + luteGermanLUpper + 6th course, 11th fret (L) U+EC21 - + - - 6th course, 12th fret (M) + + luteGermanMUpper + 6th course, 12th fret (M) U+EC22 - + - - 6th course, 13th fret (N) + + luteGermanNUpper + 6th course, 13th fret (N) U+EC23 - + Gongs pictograms - - Tam-tam + + pictTamTam + Tam-tam U+E730 - + Classes @@ -8683,10 +9643,11 @@ - - Tam-tam with beater (Smith Brindle) + + pictTamTamWithBeater + Tam-tam with beater (Smith Brindle) U+E731 - + Classes @@ -8694,10 +9655,11 @@ - - Gong + + pictGong + Gong U+E732 - + Classes @@ -8705,10 +9667,11 @@ - - Gong with button (nipple) + + pictGongWithButton + Gong with button (nipple) U+E733 - + Classes @@ -8716,10 +9679,11 @@ - - Slide brush on gong + + pictSlideBrushOnGong + Slide brush on gong U+E734 - + Classes @@ -8730,11 +9694,12 @@ Gould arrow quartertone accidentals (24-EDO) - - Quarter-tone flat + + accidentalQuarterToneFlatArrowUp + Quarter-tone flat U+E270 U+1D12C - + Classes @@ -8744,11 +9709,12 @@ - - Three-quarter-tones flat + + accidentalThreeQuarterTonesFlatArrowDown + Three-quarter-tones flat U+E271 U+1D12D - + Classes @@ -8758,11 +9724,12 @@ - - Quarter-tone sharp + + accidentalQuarterToneSharpNaturalArrowUp + Quarter-tone sharp U+E272 U+1D12E - + Classes @@ -8772,11 +9739,12 @@ - - Quarter-tone flat + + accidentalQuarterToneFlatNaturalArrowDown + Quarter-tone flat U+E273 U+1D12F - + Classes @@ -8786,11 +9754,12 @@ - - Three-quarter-tones sharp + + accidentalThreeQuarterTonesSharpArrowUp + Three-quarter-tones sharp U+E274 U+1D130 - + Classes @@ -8800,11 +9769,12 @@ - - Quarter-tone sharp + + accidentalQuarterToneSharpArrowDown + Quarter-tone sharp U+E275 U+1D131 - + Classes @@ -8814,10 +9784,11 @@ - - Five-quarter-tones sharp + + accidentalFiveQuarterTonesSharpArrowUp + Five-quarter-tones sharp U+E276 - + Classes @@ -8827,10 +9798,11 @@ - - Three-quarter-tones sharp + + accidentalThreeQuarterTonesSharpArrowDown + Three-quarter-tones sharp U+E277 - + Classes @@ -8840,10 +9812,11 @@ - - Three-quarter-tones flat + + accidentalThreeQuarterTonesFlatArrowUp + Three-quarter-tones flat U+E278 - + Classes @@ -8853,10 +9826,11 @@ - - Five-quarter-tones flat + + accidentalFiveQuarterTonesFlatArrowDown + Five-quarter-tones flat U+E279 - + Classes @@ -8866,10 +9840,11 @@ - - Arrow up (raise by one quarter-tone) + + accidentalArrowUp + Arrow up (raise by one quarter-tone) U+E27A - + Classes @@ -8879,10 +9854,11 @@ - - Arrow down (lower by one quarter-tone) + + accidentalArrowDown + Arrow down (lower by one quarter-tone) U+E27B - + Classes @@ -8895,226 +9871,269 @@ Guitar - - Guitar vibrato bar scoop + + guitarVibratoBarScoop + Guitar vibrato bar scoop U+E830 - + - - Guitar vibrato bar dip + + guitarVibratoBarDip + Guitar vibrato bar dip U+E831 - + - - Guitar shake + + guitarShake + Guitar shake U+E832 - + - - String number 0 + + guitarString0 + String number 0 U+E833 - + - - String number 1 + + guitarString1 + String number 1 U+E834 - + - - String number 2 + + guitarString2 + String number 2 U+E835 - + - - String number 3 + + guitarString3 + String number 3 U+E836 - + - - String number 4 + + guitarString4 + String number 4 U+E837 - + - - String number 5 + + guitarString5 + String number 5 U+E838 - + - - String number 6 + + guitarString6 + String number 6 U+E839 - + - - String number 7 + + guitarString7 + String number 7 U+E83A - + - - String number 8 + + guitarString8 + String number 8 U+E83B - + - - String number 9 + + guitarString9 + String number 9 U+E83C - + - - Open wah/volume pedal + + guitarOpenPedal + Open wah/volume pedal U+E83D - + - - Half-open wah/volume pedal + + guitarHalfOpenPedal + Half-open wah/volume pedal U+E83E - + - - Closed wah/volume pedal + + guitarClosePedal + Closed wah/volume pedal U+E83F - + - - Left-hand tapping + + guitarLeftHandTapping + Left-hand tapping U+E840 - + - - Right-hand tapping + + guitarRightHandTapping + Right-hand tapping U+E841 - + - - Golpe (tapping the pick guard) + + guitarGolpe + Golpe (tapping the pick guard) U+E842 - + - - Fade in + + guitarFadeIn + Fade in U+E843 - + - - Fade out + + guitarFadeOut + Fade out U+E844 - + - - Volume swell + + guitarVolumeSwell + Volume swell U+E845 - + - - Strum direction up + + guitarStrumUp + Strum direction up U+E846 - + - - Strum direction down + + guitarStrumDown + Strum direction down U+E847 - + Handbells - - Martellato + + handbellsMartellato + Martellato U+E810 - + - - Martellato lift + + handbellsMartellatoLift + Martellato lift U+E811 - + - - Hand martellato + + handbellsHandMartellato + Hand martellato U+E812 - + - - Muted martellato + + handbellsMutedMartellato + Muted martellato U+E813 - + - - Mallet, bell suspended + + handbellsMalletBellSuspended + Mallet, bell suspended U+E814 - + - - Mallet, bell on table + + handbellsMalletBellOnTable + Mallet, bell on table U+E815 - + - - Mallet lift + + handbellsMalletLft + Mallet lift U+E816 - + - - Pluck lift + + handbellsPluckLift + Pluck lift U+E817 - + - - Swing up + + handbellsSwingUp + Swing up U+E818 - + - - Swing down + + handbellsSwingDown + Swing down U+E819 - + - - Swing + + handbellsSwing + Swing U+E81A - + - - Echo + + handbellsEcho1 + Echo U+E81B - + - - Echo 2 + + handbellsEcho2 + Echo 2 U+E81C - + - - Gyro + + handbellsGyro + Gyro U+E81D - + - - Damp 3 + + handbellsDamp3 + Damp 3 U+E81E - + - - Belltree + + handbellsBelltree + Belltree U+E81F - + - - Table single handbell + + handbellsTableSingleBell + Table single handbell U+E820 - + - - Table pair of handbells + + handbellsTablePairBells + Table pair of handbells U+E821 - + Harp techniques - - Harp pedal raised (flat) + + harpPedalRaised + Harp pedal raised (flat) U+E680 - + Classes @@ -9122,10 +10141,11 @@ - - Harp pedal centered (natural) + + harpPedalCentered + Harp pedal centered (natural) U+E681 - + Classes @@ -9133,10 +10153,11 @@ - - Harp pedal lowered (sharp) + + harpPedalLowered + Harp pedal lowered (sharp) U+E682 - + Classes @@ -9144,10 +10165,11 @@ - - Harp pedal divider + + harpPedalDivider + Harp pedal divider U+E683 - + Classes @@ -9155,90 +10177,107 @@ - - Slide with suppleness (Salzedo) + + harpSalzedoSlideWithSuppleness + Slide with suppleness (Salzedo) U+E684 - + - - Oboic flux (Salzedo) + + harpSalzedoOboicFlux + Oboic flux (Salzedo) U+E685 - + - - Thunder effect (Salzedo) + + harpSalzedoThunderEffect + Thunder effect (Salzedo) U+E686 - + - - Whistling sounds (Salzedo) + + harpSalzedoWhistlingSounds + Whistling sounds (Salzedo) U+E687 - + - - Metallic sounds (Salzedo) + + harpSalzedoMetallicSounds + Metallic sounds (Salzedo) U+E688 - + - - Tam-tam sounds (Salzedo) + + harpSalzedoTamTamSounds + Tam-tam sounds (Salzedo) U+E689 - + - - Play at upper end of strings (Salzedo) + + harpSalzedoPlayUpperEnd + Play at upper end of strings (Salzedo) U+E68A - + - - Timpanic sounds (Salzedo) + + harpSalzedoTimpanicSounds + Timpanic sounds (Salzedo) U+E68B - + - - Muffle totally (Salzedo) + + harpSalzedoMuffleTotally + Muffle totally (Salzedo) U+E68C - + - - Fluidic sounds, left hand (Salzedo) + + harpSalzedoFluidicSoundsLeft + Fluidic sounds, left hand (Salzedo) U+E68D - + - - Fluidic sounds, right hand (Salzedo) + + harpSalzedoFluidicSoundsRight + Fluidic sounds, right hand (Salzedo) U+E68E - + - - Metal rod pictogram + + harpMetalRod + Metal rod pictogram U+E68F - + - - Tuning key pictogram + + harpTuningKey + Tuning key pictogram U+E690 - + - - Use handle of tuning key pictogram + + harpTuningKeyHandle + Use handle of tuning key pictogram U+E691 - + - - Use shank of tuning key pictogram + + harpTuningKeyShank + Use shank of tuning key pictogram U+E692 - + - - Retune strings for glissando + + harpTuningKeyGlissando + Retune strings for glissando U+E693 - + - - Combining string noise for stem + + harpStringNoiseStem + Combining string noise for stem U+E694 - + Classes @@ -9246,13 +10285,26 @@ + + harpSalzedoAeolianAscending + Ascending aeolian chords (Salzedo) + U+E695 + + + + harpSalzedoAeolianDescending + Descending aeolian chords (Salzedo) + U+E696 + + Herculean Sagittal extension (very high precision) accidental diacritics - - Shaft up, (natural for use with only diacritics up) + + accSagittalShaftUp + Shaft up, (natural for use with only diacritics up) U+E3F0 - + Classes @@ -9262,10 +10314,11 @@ - - Shaft down, (natural for use with only diacritics down) + + accSagittalShaftDown + Shaft down, (natural for use with only diacritics down) U+E3F1 - + Classes @@ -9275,10 +10328,11 @@ - - Acute, 5 schisma up (5s), 2 cents up + + accSagittalAcute + Acute, 5 schisma up (5s), 2 cents up U+E3F2 - + Classes @@ -9288,10 +10342,11 @@ - - Grave, 5 schisma down, 2 cents down + + accSagittalGrave + Grave, 5 schisma down, 2 cents down U+E3F3 - + Classes @@ -9304,11 +10359,12 @@ Holds and pauses - - Fermata above + + fermataAbove + Fermata above U+E4C0 U+1D110 - + Classes @@ -9318,11 +10374,12 @@ - - Fermata below + + fermataBelow + Fermata below U+E4C1 U+1D111 - + Classes @@ -9332,10 +10389,11 @@ - - Very short fermata above + + fermataVeryShortAbove + Very short fermata above U+E4C2 - + Classes @@ -9345,10 +10403,11 @@ - - Very short fermata below + + fermataVeryShortBelow + Very short fermata below U+E4C3 - + Classes @@ -9358,10 +10417,11 @@ - - Short fermata above + + fermataShortAbove + Short fermata above U+E4C4 - + Classes @@ -9371,10 +10431,11 @@ - - Short fermata below + + fermataShortBelow + Short fermata below U+E4C5 - + Classes @@ -9384,10 +10445,11 @@ - - Long fermata above + + fermataLongAbove + Long fermata above U+E4C6 - + Classes @@ -9397,10 +10459,11 @@ - - Long fermata below + + fermataLongBelow + Long fermata below U+E4C7 - + Classes @@ -9410,10 +10473,11 @@ - - Very long fermata above + + fermataVeryLongAbove + Very long fermata above U+E4C8 - + Classes @@ -9423,10 +10487,11 @@ - - Very long fermata below + + fermataVeryLongBelow + Very long fermata below U+E4C9 - + Classes @@ -9436,10 +10501,11 @@ - - Long fermata (Henze) above + + fermataLongHenzeAbove + Long fermata (Henze) above U+E4CA - + Classes @@ -9449,10 +10515,11 @@ - - Long fermata (Henze) below + + fermataLongHenzeBelow + Long fermata (Henze) below U+E4CB - + Classes @@ -9462,10 +10529,11 @@ - - Short fermata (Henze) above + + fermataShortHenzeAbove + Short fermata (Henze) above U+E4CC - + Classes @@ -9475,10 +10543,11 @@ - - Short fermata (Henze) below + + fermataShortHenzeBelow + Short fermata (Henze) below U+E4CD - + Classes @@ -9488,11 +10557,12 @@ - - Breath mark (comma) + + breathMarkComma + Breath mark (comma) U+E4CE U+1D112 - + Classes @@ -9501,21 +10571,24 @@ - - Breath mark (tick-like) + + breathMarkTick + Breath mark (tick-like) U+E4CF - + - - Breath mark (upbow-like) + + breathMarkUpbow + Breath mark (upbow-like) U+E4D0 - + - - Caesura + + caesura + Caesura U+E4D1 U+1D113 - + Classes @@ -9524,10 +10597,11 @@ - - Thick caesura + + caesuraThick + Thick caesura U+E4D2 - + Classes @@ -9536,10 +10610,11 @@ - - Short caesura + + caesuraShort + Short caesura U+E4D3 - + Classes @@ -9548,15 +10623,17 @@ - - Curved caesura + + caesuraCurved + Curved caesura U+E4D4 - + - - Breath mark (Salzedo) + + breathMarkSalzedo + Breath mark (Salzedo) U+E4D5 - + Classes @@ -9565,10 +10642,11 @@ - - Curlew (Britten) + + curlewSign + Curlew (Britten) U+E4D6 - + Classes @@ -9580,11 +10658,12 @@ Individual notes - - Double whole note (breve) + + noteDoubleWhole + Double whole note (breve) U+E1D0 U+1D15C - + Classes @@ -9593,10 +10672,11 @@ - - Double whole note (square) + + noteDoubleWholeSquare + Double whole note (square) U+E1D1 - + Classes @@ -9605,11 +10685,12 @@ - - Whole note (semibreve) + + noteWhole + Whole note (semibreve) U+E1D2 U+1D15D - + Classes @@ -9618,11 +10699,12 @@ - - Half note (minim) stem up + + noteHalfUp + Half note (minim) stem up U+E1D3 U+1D15E - + Classes @@ -9631,10 +10713,11 @@ - - Half note (minim) stem down + + noteHalfDown + Half note (minim) stem down U+E1D4 - + Classes @@ -9643,11 +10726,12 @@ - - Quarter note (crotchet) stem up + + noteQuarterUp + Quarter note (crotchet) stem up U+E1D5 U+1D15F - + Classes @@ -9656,10 +10740,11 @@ - - Quarter note (crotchet) stem down + + noteQuarterDown + Quarter note (crotchet) stem down U+E1D6 - + Classes @@ -9668,11 +10753,12 @@ - - Eighth note (quaver) stem up + + note8thUp + Eighth note (quaver) stem up U+E1D7 U+1D160 - + Classes @@ -9681,10 +10767,11 @@ - - Eighth note (quaver) stem down + + note8thDown + Eighth note (quaver) stem down U+E1D8 - + Classes @@ -9693,11 +10780,12 @@ - - 16th note (semiquaver) stem up + + note16thUp + 16th note (semiquaver) stem up U+E1D9 U+1D161 - + Classes @@ -9706,10 +10794,11 @@ - - 16th note (semiquaver) stem down + + note16thDown + 16th note (semiquaver) stem down U+E1DA - + Classes @@ -9718,11 +10807,12 @@ - - 32nd note (demisemiquaver) stem up + + note32ndUp + 32nd note (demisemiquaver) stem up U+E1DB U+1D162 - + Classes @@ -9731,10 +10821,11 @@ - - 32nd note (demisemiquaver) stem down + + note32ndDown + 32nd note (demisemiquaver) stem down U+E1DC - + Classes @@ -9743,11 +10834,12 @@ - - 64th note (hemidemisemiquaver) stem up + + note64thUp + 64th note (hemidemisemiquaver) stem up U+E1DD U+1D163 - + Classes @@ -9756,10 +10848,11 @@ - - 64th note (hemidemisemiquaver) stem down + + note64thDown + 64th note (hemidemisemiquaver) stem down U+E1DE - + Classes @@ -9768,11 +10861,12 @@ - - 128th note (semihemidemisemiquaver) stem up + + note128thUp + 128th note (semihemidemisemiquaver) stem up U+E1DF U+1D164 - + Classes @@ -9781,10 +10875,11 @@ - - 128th note (semihemidemisemiquaver) stem down + + note128thDown + 128th note (semihemidemisemiquaver) stem down U+E1E0 - + Classes @@ -9793,10 +10888,11 @@ - - 256th note (demisemihemidemisemiquaver) stem up + + note256thUp + 256th note (demisemihemidemisemiquaver) stem up U+E1E1 - + Classes @@ -9805,10 +10901,11 @@ - - 256th note (demisemihemidemisemiquaver) stem down + + note256thDown + 256th note (demisemihemidemisemiquaver) stem down U+E1E2 - + Classes @@ -9817,10 +10914,11 @@ - - 512th note (hemidemisemihemidemisemiquaver) stem up + + note512thUp + 512th note (hemidemisemihemidemisemiquaver) stem up U+E1E3 - + Classes @@ -9829,10 +10927,11 @@ - - 512th note (hemidemisemihemidemisemiquaver) stem down + + note512thDown + 512th note (hemidemisemihemidemisemiquaver) stem down U+E1E4 - + Classes @@ -9841,10 +10940,11 @@ - - 1024th note (semihemidemisemihemidemisemiquaver) stem up + + note1024thUp + 1024th note (semihemidemisemihemidemisemiquaver) stem up U+E1E5 - + Classes @@ -9853,10 +10953,11 @@ - - 1024th note (semihemidemisemihemidemisemiquaver) stem down + + note1024thDown + 1024th note (semihemidemisemihemidemisemiquaver) stem down U+E1E6 - + Classes @@ -9865,11 +10966,12 @@ - - Augmentation dot + + augmentationDot + Augmentation dot U+E1E7 U+1D16D - + Classes @@ -9881,128 +10983,152 @@ Italian and Spanish Renaissance lute tablature - - Open string (0) + + luteItalianFret0 + Open string (0) U+EBE0 - + - - First fret (1) + + luteItalianFret1 + First fret (1) U+EBE1 - + - - Second fret (2) + + luteItalianFret2 + Second fret (2) U+EBE2 - + - - Third fret (3) + + luteItalianFret3 + Third fret (3) U+EBE3 - + - - Fourth fret (4) + + luteItalianFret4 + Fourth fret (4) U+EBE4 - + - - Fifth fret (5) + + luteItalianFret5 + Fifth fret (5) U+EBE5 - + - - Sixth fret (6) + + luteItalianFret6 + Sixth fret (6) U+EBE6 - + - - Seventh fret (7) + + luteItalianFret7 + Seventh fret (7) U+EBE7 - + - - Eighth fret (8) + + luteItalianFret8 + Eighth fret (8) U+EBE8 - + - - Ninth fret (9) + + luteItalianFret9 + Ninth fret (9) U+EBE9 - + - - Fast tempo indication (de Mudarra) + + luteItalianTempoFast + Fast tempo indication (de Mudarra) U+EBEA - + - - Somewhat fast tempo indication (de Narvaez) + + luteItalianTempoSomewhatFast + Somewhat fast tempo indication (de Narvaez) U+EBEB - + - - Neither fast nor slow tempo indication (de Mudarra) + + luteItalianTempoNeitherFastNorSlow + Neither fast nor slow tempo indication (de Mudarra) U+EBEC - + - - Slow tempo indication (de Mudarra) + + luteItalianTempoSlow + Slow tempo indication (de Mudarra) U+EBED - + - - Very slow indication (de Narvaez) + + luteItalianTempoVerySlow + Very slow indication (de Narvaez) U+EBEE - + - - Triple time indication + + luteItalianTimeTriple + Triple time indication U+EBEF - + - - F fa ut clef + + luteItalianClefFFaUt + F fa ut clef U+EBF0 - + - - C sol fa ut clef + + luteItalianClefCSolFaUt + C sol fa ut clef U+EBF1 - + - - Single-finger tremolo or mordent + + luteItalianTremolo + Single-finger tremolo or mordent U+EBF2 - + - - Hold note + + luteItalianHoldNote + Hold note U+EBF3 - + - - Hold finger in place + + luteItalianHoldFinger + Hold finger in place U+EBF4 - + - - Release finger + + luteItalianReleaseFinger + Release finger U+EBF5 - + - - Vibrato (verre cassé) + + luteItalianVibrato + Vibrato (verre cassé) U+EBF6 - + Johnston accidentals (just intonation) - - Plus (raise by 81:80) + + accidentalJohnstonPlus + Plus (raise by 81:80) U+E2B0 - + Classes @@ -10012,10 +11138,11 @@ - - Minus (lower by 81:80) + + accidentalJohnstonMinus + Minus (lower by 81:80) U+E2B1 - + Classes @@ -10025,10 +11152,11 @@ - - Inverted seven (raise by 36:35) + + accidentalJohnstonEl + Inverted seven (raise by 36:35) U+E2B2 - + Classes @@ -10038,10 +11166,11 @@ - - Seven (lower by 36:35) + + accidentalJohnstonSeven + Seven (lower by 36:35) U+E2B3 - + Classes @@ -10051,10 +11180,11 @@ - - Up arrow (raise by 33:32) + + accidentalJohnstonUp + Up arrow (raise by 33:32) U+E2B4 - + Classes @@ -10064,10 +11194,11 @@ - - Down arrow (lower by 33:32) + + accidentalJohnstonDown + Down arrow (lower by 33:32) U+E2B5 - + Classes @@ -10077,10 +11208,11 @@ - - Thirteen (raise by 65:64~) + + accidentalJohnston13 + Thirteen (raise by 65:64) U+E2B6 - + Classes @@ -10090,10 +11222,11 @@ - - Inverted 13 (lower by 65:64) + + accidentalJohnston31 + Inverted 13 (lower by 65:64) U+E2B7 - + Classes @@ -10106,11 +11239,12 @@ Keyboard techniques - - Pedal mark + + keyboardPedalPed + Pedal mark U+E650 U+1D1AE - + Classes @@ -10118,10 +11252,11 @@ - - Pedal P + + keyboardPedalP + Pedal P U+E651 - + Classes @@ -10129,10 +11264,11 @@ - - Pedal e + + keyboardPedalE + Pedal e U+E652 - + Classes @@ -10140,10 +11276,11 @@ - - Pedal d + + keyboardPedalD + Pedal d U+E653 - + Classes @@ -10151,10 +11288,11 @@ - - Pedal dot + + keyboardPedalDot + Pedal dot U+E654 - + Classes @@ -10162,11 +11300,12 @@ - - Pedal up mark + + keyboardPedalUp + Pedal up mark U+E655 U+1D1AF - + Classes @@ -10174,11 +11313,12 @@ - - Half-pedal mark + + keyboardPedalHalf + Half-pedal mark U+E656 U+1D1B0 - + Classes @@ -10186,10 +11326,11 @@ - - Pedal up notch + + keyboardPedalUpNotch + Pedal up notch U+E657 - + Classes @@ -10197,10 +11338,11 @@ - - Pedal hyphen + + keyboardPedalHyphen + Pedal hyphen U+E658 - + Classes @@ -10208,10 +11350,11 @@ - - Sostenuto pedal mark + + keyboardPedalSost + Sostenuto pedal mark U+E659 - + Classes @@ -10219,10 +11362,11 @@ - - Pedal S + + keyboardPedalS + Pedal S U+E65A - + Classes @@ -10230,129 +11374,153 @@ - - Half pedal mark 1 + + keyboardPedalHalf2 + Half pedal mark 1 U+E65B - + - - Half pedal mark 2 + + keyboardPedalHalf3 + Half pedal mark 2 U+E65C - + - - Pedal up special + + keyboardPedalUpSpecial + Pedal up special U+E65D - + - - Left pedal pictogram + + keyboardLeftPedalPictogram + Left pedal pictogram U+E65E - + - - Middle pedal pictogram + + keyboardMiddlePedalPictogram + Middle pedal pictogram U+E65F - + - - Right pedal pictogram + + keyboardRightPedalPictogram + Right pedal pictogram U+E660 - + - - Pedal heel 1 + + keyboardPedalHeel1 + Pedal heel 1 U+E661 - + - - Pedal heel 2 + + keyboardPedalHeel2 + Pedal heel 2 U+E662 - + - - Pedal heel 3 (Davis) + + keyboardPedalHeel3 + Pedal heel 3 (Davis) U+E663 - + - - Pedal toe 1 + + keyboardPedalToe1 + Pedal toe 1 U+E664 - + - - Pedal toe 2 + + keyboardPedalToe2 + Pedal toe 2 U+E665 - + - - Pedal heel or toe + + keyboardPedalHeelToe + Pedal heel or toe U+E666 - + - - Pluck strings inside piano (Maderna) + + keyboardPluckInside + Pluck strings inside piano (Maderna) U+E667 - + - - Clavichord bebung, 2 finger movements (above) + + keyboardBebung2DotsAbove + Clavichord bebung, 2 finger movements (above) U+E668 - + - - Clavichord bebung, 2 finger movements (below) + + keyboardBebung2DotsBelow + Clavichord bebung, 2 finger movements (below) U+E669 - + - - Clavichord bebung, 3 finger movements (above) + + keyboardBebung3DotsAbove + Clavichord bebung, 3 finger movements (above) U+E66A - + - - Clavichord bebung, 3 finger movements (below) + + keyboardBebung3DotsBelow + Clavichord bebung, 3 finger movements (below) U+E66B - + - - Clavichord bebung, 4 finger movements (above) + + keyboardBebung4DotsAbove + Clavichord bebung, 4 finger movements (above) U+E66C - + - - Clavichord bebung, 4 finger movements (below) + + keyboardBebung4DotsBelow + Clavichord bebung, 4 finger movements (below) U+E66D - + - - Play with right hand + + keyboardPlayWithRH + Play with right hand U+E66E - + - - Play with right hand (end) + + keyboardPlayWithRHEnd + Play with right hand (end) U+E66F - + - - Play with left hand + + keyboardPlayWithLH + Play with left hand U+E670 - + - - Play with left hand (end) + + keyboardPlayWithLHEnd + Play with left hand (end) U+E671 - + Kievan square notation - - Kievan C clef (tse-fa-ut) + + kievanCClef + Kievan C clef (tse-fa-ut) U+EC30 U+1D1DE - + Classes @@ -10360,11 +11528,12 @@ - - Kievan ending symbol + + kievanEndingSymbol + Kievan ending symbol U+EC31 U+1D1DF - + Classes @@ -10372,11 +11541,12 @@ - - Kievan reciting note + + kievanNoteReciting + Kievan reciting note U+EC32 U+1D1E1 - + Classes @@ -10384,11 +11554,12 @@ - - Kievan whole note + + kievanNoteWhole + Kievan whole note U+EC33 U+1D1E2 - + Classes @@ -10396,11 +11567,12 @@ - - Kievan final whole note + + kievanNoteWholeFinal + Kievan final whole note U+EC34 U+1D1E0 - + Classes @@ -10408,11 +11580,12 @@ - - Kievan half note (on staff line) + + kievanNoteHalfStaffLine + Kievan half note (on staff line) U+EC35 U+1D1E3 - + Classes @@ -10420,16 +11593,18 @@ - - Kievan half note (in staff space) + + kievanNoteHalfStaffSpace + Kievan half note (in staff space) U+EC36 - + - - Kievan quarter note, stem up + + kievanNoteQuarterStemUp + Kievan quarter note, stem up U+EC37 U+1D1E5 - + Classes @@ -10437,11 +11612,12 @@ - - Kievan quarter note, stem down + + kievanNoteQuarterStemDown + Kievan quarter note, stem down U+EC38 U+1D1E4 - + Classes @@ -10449,11 +11625,12 @@ - - Kievan eighth note, stem up + + kievanNote8thStemUp + Kievan eighth note, stem up U+EC39 U+1D1E7 - + Classes @@ -10461,11 +11638,12 @@ - - Kievan eighth note, stem down + + kievanNote8thStemDown + Kievan eighth note, stem down U+EC3A U+1D1E6 - + Classes @@ -10473,15 +11651,17 @@ - - Kievan beam + + kievanNoteBeam + Kievan beam U+EC3B - + - - Kievan augmentation dot + + kievanAugmentationDot + Kievan augmentation dot U+EC3C - + Classes @@ -10489,10 +11669,11 @@ - - Kievan sharp + + kievanAccidentalSharp + Kievan sharp U+EC3D - + Classes @@ -10500,11 +11681,12 @@ - - Kievan flat + + kievanAccidentalFlat + Kievan flat U+EC3E U+1D1E8 - + Classes @@ -10515,68 +11697,80 @@ Kodály hand signs - - Do hand sign + + kodalyHandDo + Do hand sign U+EC40 - + - - Re hand sign + + kodalyHandRe + Re hand sign U+EC41 - + - - Mi hand sign + + kodalyHandMi + Mi hand sign U+EC42 - + - - Fa hand sign + + kodalyHandFa + Fa hand sign U+EC43 - + - - So hand sign + + kodalyHandSo + So hand sign U+EC44 - + - - La hand sign + + kodalyHandLa + La hand sign U+EC45 - + - - Ti hand sign + + kodalyHandTi + Ti hand sign U+EC46 - + Lyrics - - Narrow elision + + lyricsElisionNarrow + Narrow elision U+E550 - + - - Elision + + lyricsElision + Elision U+E551 - + - - Wide elision + + lyricsElisionWide + Wide elision U+E552 - + - - Baseline hyphen + + lyricsHyphenBaseline + Baseline hyphen U+E553 - + - - Non-breaking baseline hyphen + + lyricsHyphenBaselineNonBreaking + Non-breaking baseline hyphen U+E554 - + @@ -10585,10 +11779,12 @@ Medieval and Renaissance accidentals - - Flat, soft b (fa) + + medRenFlatSoftB + Flat, soft b (fa) U+E9E0 - + U+1D1D2 + Classes @@ -10596,10 +11792,11 @@ - - Natural, hard b (mi) + + medRenFlatHardB + Flat, hard b (mi) U+E9E1 - + Classes @@ -10607,10 +11804,11 @@ - - Natural + + medRenNatural + Natural U+E9E2 - + Classes @@ -10618,11 +11816,12 @@ - - Croix + + medRenSharpCroix + Croix U+E9E3 U+1D1CF - + Classes @@ -10630,10 +11829,11 @@ - - Flat with dot + + medRenFlatWithDot + Flat with dot U+E9E4 - + Classes @@ -10641,10 +11841,11 @@ - - Natural with interrupted cross + + medRenNaturalWithCross + Natural with interrupted cross U+E9E5 - + Classes @@ -10655,10 +11856,11 @@ Medieval and Renaissance clefs - - Mensural G clef + + mensuralGclef + Mensural G clef U+E900 - + Classes @@ -10666,10 +11868,11 @@ - - Petrucci G clef + + mensuralGclefPetrucci + Petrucci G clef U+E901 - + Classes @@ -10677,10 +11880,12 @@ - - Plainchant F clef + + chantFclef + Plainchant F clef U+E902 - + U+1D1D1 + Classes @@ -10688,10 +11893,11 @@ - - Mensural F clef + + mensuralFclef + Mensural F clef U+E903 - + Classes @@ -10699,10 +11905,11 @@ - - Petrucci F clef + + mensuralFclefPetrucci + Petrucci F clef U+E904 - + Classes @@ -10710,15 +11917,18 @@ - - Mensural C clef + + mensuralCclef + Mensural C clef U+E905 - + - - Plainchant C clef + + chantCclef + Plainchant C clef U+E906 - + U+1D1D0 + Classes @@ -10726,20 +11936,23 @@ - - Petrucci C clef, lowest position + + mensuralCclefPetrucciPosLowest + Petrucci C clef, lowest position U+E907 - + - - Petrucci C clef, low position + + mensuralCclefPetrucciPosLow + Petrucci C clef, low position U+E908 - + - - Petrucci C clef, middle position + + mensuralCclefPetrucciPosMiddle + Petrucci C clef, middle position U+E909 - + Classes @@ -10747,23 +11960,26 @@ - - Petrucci C clef, high position + + mensuralCclefPetrucciPosHigh + Petrucci C clef, high position U+E90A - + - - Petrucci C clef, highest position + + mensuralCclefPetrucciPosHighest + Petrucci C clef, highest position U+E90B - + Medieval and Renaissance individual notes - - Black mensural maxima + + mensuralBlackMaxima + Black mensural maxima U+E950 - + Classes @@ -10771,10 +11987,11 @@ - - Black mensural longa + + mensuralBlackLonga + Black mensural longa U+E951 - + Classes @@ -10782,10 +11999,11 @@ - - Black mensural brevis + + mensuralBlackBrevis + Black mensural brevis U+E952 - + Classes @@ -10793,11 +12011,12 @@ - - Black mensural semibrevis + + mensuralBlackSemibrevis + Black mensural semibrevis U+E953 U+1D1BA - + Classes @@ -10805,11 +12024,12 @@ - - Black mensural minima + + mensuralBlackMinima + Black mensural minima U+E954 U+1D1BC - + Classes @@ -10817,10 +12037,11 @@ - - Black mensural semiminima + + mensuralBlackSemiminima + Black mensural semiminima U+E955 - + Classes @@ -10828,10 +12049,11 @@ - - Black mensural void brevis + + mensuralBlackBrevisVoid + Black mensural void brevis U+E956 - + Classes @@ -10839,11 +12061,12 @@ - - Black mensural void semibrevis + + mensuralBlackSemibrevisVoid + Black mensural void semibrevis U+E957 U+1D1B9 - + Classes @@ -10851,11 +12074,12 @@ - - Black mensural void minima + + mensuralBlackMinimaVoid + Black mensural void minima U+E958 U+1D1BB - + Classes @@ -10863,10 +12087,11 @@ - - Black mensural semibrevis caudata + + mensuralBlackSemibrevisCaudata + Black mensural semibrevis caudata U+E959 - + Classes @@ -10874,10 +12099,11 @@ - - Black mensural dragma + + mensuralBlackDragma + Black mensural dragma U+E95A - + Classes @@ -10885,10 +12111,11 @@ - - Black mensural oblique semibrevis + + mensuralBlackSemibrevisOblique + Black mensural oblique semibrevis U+E95B - + Classes @@ -10896,11 +12123,12 @@ - - White mensural maxima + + mensuralWhiteMaxima + White mensural maxima U+E95C U+1D1B6 - + Classes @@ -10908,11 +12136,12 @@ - - White mensural longa + + mensuralWhiteLonga + White mensural longa U+E95D U+1D1B7 - + Classes @@ -10920,11 +12149,12 @@ - - White mensural brevis + + mensuralWhiteBrevis + White mensural brevis U+E95E U+1D1B8 - + Classes @@ -10932,10 +12162,11 @@ - - White mensural minima + + mensuralWhiteMinima + White mensural minima U+E95F - + Classes @@ -10943,11 +12174,12 @@ - - White mensural semiminima + + mensuralWhiteSemiminima + White mensural semiminima U+E960 - U+1D1BE - + U+1D1BC + Classes @@ -10955,11 +12187,12 @@ - - White mensural fusa + + mensuralWhiteFusa + White mensural fusa U+E961 U+1D1BE - + Classes @@ -10970,10 +12203,11 @@ Medieval and Renaissance miscellany - - Signum congruentiae up + + mensuralSignumUp + Signum congruentiae up U+EA00 - + Classes @@ -10981,10 +12215,11 @@ - - Signum congruentiae down + + mensuralSignumDown + Signum congruentiae down U+EA01 - + Classes @@ -10992,10 +12227,11 @@ - - Mensural custos up + + mensuralCustosUp + Mensural custos up U+EA02 - + Classes @@ -11003,10 +12239,11 @@ - - Mensural custos down + + mensuralCustosDown + Mensural custos down U+EA03 - + Classes @@ -11014,20 +12251,23 @@ - - Plainchant custos, stem up, lowest position + + chantCustosStemUpPosLowest + Plainchant custos, stem up, lowest position U+EA04 - + - - Plainchant custos, stem up, low position + + chantCustosStemUpPosLow + Plainchant custos, stem up, low position U+EA05 - + - - Plainchant custos, stem up, middle position + + chantCustosStemUpPosMiddle + Plainchant custos, stem up, middle position U+EA06 - + Classes @@ -11035,10 +12275,11 @@ - - Plainchant custos, stem down, middle position + + chantCustosStemDownPosMiddle + Plainchant custos, stem down, middle position U+EA07 - + Classes @@ -11046,20 +12287,23 @@ - - Plainchant custos, stem down, high position + + chantCustosStemDownPosHigh + Plainchant custos, stem down, high position U+EA08 - + - - Plainchant custos, stem down, highest position + + chantCustosStemDownPosHighest + Plainchant custos, stem down, highest position U+EA09 - + - - Checkmark custos + + mensuralCustosCheckmark + Checkmark custos U+EA0A - + Classes @@ -11067,10 +12311,11 @@ - - Turn-like custos + + mensuralCustosTurn + Turn-like custos U+EA0B - + Classes @@ -11078,10 +12323,11 @@ - - Coloration start, square + + mensuralColorationStartSquare + Coloration start, square U+EA0C - + Classes @@ -11089,10 +12335,11 @@ - - Coloration end, square + + mensuralColorationEndSquare + Coloration end, square U+EA0D - + Classes @@ -11100,10 +12347,11 @@ - - Coloration start, round + + mensuralColorationStartRound + Coloration start, round U+EA0E - + Classes @@ -11111,10 +12359,11 @@ - - Coloration end, round + + mensuralColorationEndRound + Coloration end, round U+EA0F - + Classes @@ -11122,10 +12371,11 @@ - - Alteration sign + + mensuralAlterationSign + Alteration sign U+EA10 - + Classes @@ -11136,10 +12386,11 @@ Medieval and Renaissance noteheads and stems - - Maxima notehead, black + + mensuralNoteheadMaximaBlack + Maxima notehead, black U+E930 - + Classes @@ -11147,11 +12398,12 @@ - - Maxima notehead, void + + mensuralNoteheadMaximaVoid + Maxima notehead, void U+E931 U+1D1B6 - + Classes @@ -11159,10 +12411,11 @@ - - Maxima notehead, black and void + + mensuralNoteheadMaximaBlackVoid + Maxima notehead, black and void U+E932 - + Classes @@ -11170,10 +12423,11 @@ - - Maxima notehead, white + + mensuralNoteheadMaximaWhite + Maxima notehead, white U+E933 - + Classes @@ -11181,10 +12435,11 @@ - - Longa/brevis notehead, black + + mensuralNoteheadLongaBlack + Longa/brevis notehead, black U+E934 - + Classes @@ -11192,11 +12447,12 @@ - - Longa/brevis notehead, void + + mensuralNoteheadLongaVoid + Longa/brevis notehead, void U+E935 U+1D1B7 - + Classes @@ -11204,10 +12460,11 @@ - - Longa/brevis notehead, black and void + + mensuralNoteheadLongaBlackVoid + Longa/brevis notehead, black and void U+E936 - + Classes @@ -11215,10 +12472,11 @@ - - Longa/brevis notehead, white + + mensuralNoteheadLongaWhite + Longa/brevis notehead, white U+E937 - + Classes @@ -11226,11 +12484,12 @@ - - Semibrevis notehead, black + + mensuralNoteheadSemibrevisBlack + Semibrevis notehead, black U+E938 U+1D1BA - + Classes @@ -11238,11 +12497,12 @@ - - Semibrevis notehead, void + + mensuralNoteheadSemibrevisVoid + Semibrevis notehead, void U+E939 U+1D1B9 - + Classes @@ -11250,10 +12510,11 @@ - - Semibrevis notehead, black and void + + mensuralNoteheadSemibrevisBlackVoid + Semibrevis notehead, black and void U+E93A - + Classes @@ -11261,10 +12522,11 @@ - - Semibrevis notehead, black and void (turned) + + mensuralNoteheadSemibrevisBlackVoidTurned + Semibrevis notehead, black and void (turned) U+E93B - + Classes @@ -11272,10 +12534,11 @@ - - Minima notehead, white + + mensuralNoteheadMinimaWhite + Minima notehead, white U+E93C - + Classes @@ -11283,10 +12546,11 @@ - - Semiminima/fusa notehead, white + + mensuralNoteheadSemiminimaWhite + Semiminima/fusa notehead, white U+E93D - + Classes @@ -11294,10 +12558,11 @@ - - Combining stem up + + mensuralCombStemUp + Combining stem up U+E93E - + Classes @@ -11305,10 +12570,11 @@ - - Combining stem down + + mensuralCombStemDown + Combining stem down U+E93F - + Classes @@ -11316,10 +12582,11 @@ - - Combining stem diagonal + + mensuralCombStemDiagonal + Combining stem diagonal U+E940 - + Classes @@ -11327,10 +12594,11 @@ - - Combining stem with flag right up + + mensuralCombStemUpFlagRight + Combining stem with flag right up U+E941 - + Classes @@ -11338,10 +12606,11 @@ - - Combining stem with flag right down + + mensuralCombStemDownFlagRight + Combining stem with flag right down U+E942 - + Classes @@ -11349,10 +12618,11 @@ - - Combining stem with flag left up + + mensuralCombStemUpFlagLeft + Combining stem with flag left up U+E943 - + Classes @@ -11360,10 +12630,11 @@ - - Combining stem with flag left down + + mensuralCombStemDownFlagLeft + Combining stem with flag left down U+E944 - + Classes @@ -11371,10 +12642,11 @@ - - Combining stem with flared flag up + + mensuralCombStemUpFlagFlared + Combining stem with flared flag up U+E945 - + Classes @@ -11382,10 +12654,11 @@ - - Combining stem with flared flag down + + mensuralCombStemDownFlagFlared + Combining stem with flared flag down U+E946 - + Classes @@ -11393,10 +12666,11 @@ - - Combining stem with extended flag up + + mensuralCombStemUpFlagExtended + Combining stem with extended flag up U+E947 - + Classes @@ -11404,10 +12678,11 @@ - - Combining stem with extended flag down + + mensuralCombStemDownFlagExtended + Combining stem with extended flag down U+E948 - + Classes @@ -11415,10 +12690,11 @@ - - Combining stem with semiminima flag up + + mensuralCombStemUpFlagSemiminima + Combining stem with semiminima flag up U+E949 - + Classes @@ -11426,10 +12702,11 @@ - - Combining stem with semiminima flag down + + mensuralCombStemDownFlagSemiminima + Combining stem with semiminima flag down U+E94A - + Classes @@ -11437,10 +12714,11 @@ - - Combining stem with fusa flag up + + mensuralCombStemUpFlagFusa + Combining stem with fusa flag up U+E94B - + Classes @@ -11448,10 +12726,11 @@ - - Combining stem with fusa flag down + + mensuralCombStemDownFlagFusa + Combining stem with fusa flag down U+E94C - + Classes @@ -11462,173 +12741,206 @@ Medieval and Renaissance oblique forms - - Oblique form, ascending 2nd, black + + mensuralObliqueAsc2ndBlack + Oblique form, ascending 2nd, black U+E970 - + - - Oblique form, ascending 2nd, void + + mensuralObliqueAsc2ndVoid + Oblique form, ascending 2nd, void U+E971 - + - - Oblique form, ascending 2nd, black and void + + mensuralObliqueAsc2ndBlackVoid + Oblique form, ascending 2nd, black and void U+E972 - + - - Oblique form, ascending 2nd, white + + mensuralObliqueAsc2ndWhite + Oblique form, ascending 2nd, white U+E973 - + - - Oblique form, ascending 3rd, black + + mensuralObliqueAsc3rdBlack + Oblique form, ascending 3rd, black U+E974 - + - - Oblique form, ascending 3rd, void + + mensuralObliqueAsc3rdVoid + Oblique form, ascending 3rd, void U+E975 - + - - Oblique form, ascending 3rd, black and void + + mensuralObliqueAsc3rdBlackVoid + Oblique form, ascending 3rd, black and void U+E976 - + - - Oblique form, ascending 3rd, white + + mensuralObliqueAsc3rdWhite + Oblique form, ascending 3rd, white U+E977 - + - - Oblique form, ascending 4th, black + + mensuralObliqueAsc4thBlack + Oblique form, ascending 4th, black U+E978 - + - - Oblique form, ascending 4th, void + + mensuralObliqueAsc4thVoid + Oblique form, ascending 4th, void U+E979 - + - - Oblique form, ascending 4th, black and void + + mensuralObliqueAsc4thBlackVoid + Oblique form, ascending 4th, black and void U+E97A - + - - Oblique form, ascending 4th, white + + mensuralObliqueAsc4thWhite + Oblique form, ascending 4th, white U+E97B - + - - Oblique form, ascending 5th, black + + mensuralObliqueAsc5thBlack + Oblique form, ascending 5th, black U+E97C - + - - Oblique form, ascending 5th, void + + mensuralObliqueAsc5thVoid + Oblique form, ascending 5th, void U+E97D - + - - Oblique form, ascending 5th, black and void + + mensuralObliqueAsc5thBlackVoid + Oblique form, ascending 5th, black and void U+E97E - + - - Oblique form, ascending 5th, white + + mensuralObliqueAsc5thWhite + Oblique form, ascending 5th, white U+E97F - + - - Oblique form, descending 2nd, black + + mensuralObliqueDesc2ndBlack + Oblique form, descending 2nd, black U+E980 - + - - Oblique form, descending 2nd, void + + mensuralObliqueDesc2ndVoid + Oblique form, descending 2nd, void U+E981 - + - - Oblique form, descending 2nd, black and void + + mensuralObliqueDesc2ndBlackVoid + Oblique form, descending 2nd, black and void U+E982 - + - - Oblique form, descending 2nd, white + + mensuralObliqueDesc2ndWhite + Oblique form, descending 2nd, white U+E983 - + - - Oblique form, descending 3rd, black + + mensuralObliqueDesc3rdBlack + Oblique form, descending 3rd, black U+E984 - + - - Oblique form, descending 3rd, void + + mensuralObliqueDesc3rdVoid + Oblique form, descending 3rd, void U+E985 - + - - Oblique form, descending 3rd, black and void + + mensuralObliqueDesc3rdBlackVoid + Oblique form, descending 3rd, black and void U+E986 - + - - Oblique form, descending 3rd, white + + mensuralObliqueDesc3rdWhite + Oblique form, descending 3rd, white U+E987 - + - - Oblique form, descending 4th, black + + mensuralObliqueDesc4thBlack + Oblique form, descending 4th, black U+E988 - + - - Oblique form, descending 4th, void + + mensuralObliqueDesc4thVoid + Oblique form, descending 4th, void U+E989 - + - - Oblique form, descending 4th, black and void + + mensuralObliqueDesc4thBlackVoid + Oblique form, descending 4th, black and void U+E98A - + - - Oblique form, descending 4th, white + + mensuralObliqueDesc4thWhite + Oblique form, descending 4th, white U+E98B - + - - Oblique form, descending 5th, black + + mensuralObliqueDesc5thBlack + Oblique form, descending 5th, black U+E98C - + - - Oblique form, descending 5th, void + + mensuralObliqueDesc5thVoid + Oblique form, descending 5th, void U+E98D - + - - Oblique form, descending 5th, black and void + + mensuralObliqueDesc5thBlackVoid + Oblique form, descending 5th, black and void U+E98E - + - - Oblique form, descending 5th, white + + mensuralObliqueDesc5thWhite + Oblique form, descending 5th, white U+E98F - + Medieval and Renaissance plainchant articulations - - Ictus above + + chantIctusAbove + Ictus above U+E9D0 - + Classes @@ -11636,10 +12948,11 @@ - - Ictus below + + chantIctusBelow + Ictus below U+E9D1 - + Classes @@ -11647,10 +12960,11 @@ - - Circulus above + + chantCirculusAbove + Circulus above U+E9D2 - + Classes @@ -11658,10 +12972,11 @@ - - Circulus below + + chantCirculusBelow + Circulus below U+E9D3 - + Classes @@ -11669,10 +12984,11 @@ - - Semicirculus above + + chantSemicirculusAbove + Semicirculus above U+E9D4 - + Classes @@ -11680,10 +12996,11 @@ - - Semicirculus below + + chantSemicirculusBelow + Semicirculus below U+E9D5 - + Classes @@ -11691,10 +13008,11 @@ - - Accentus above + + chantAccentusAbove + Accentus above U+E9D6 - + Classes @@ -11702,10 +13020,11 @@ - - Accentus below + + chantAccentusBelow + Accentus below U+E9D7 - + Classes @@ -11713,10 +13032,11 @@ - - Episema + + chantEpisema + Episema U+E9D8 - + Classes @@ -11724,10 +13044,11 @@ - - Augmentum (mora) + + chantAugmentum + Augmentum (mora) U+E9D9 - + Classes @@ -11738,10 +13059,11 @@ Medieval and Renaissance plainchant multiple-note forms - - Podatus, lower + + chantPodatusLower + Podatus, lower U+E9B0 - + Classes @@ -11749,11 +13071,12 @@ - - Podatus, upper + + chantPodatusUpper + Podatus, upper U+E9B1 U+1D1D4 - + Classes @@ -11761,10 +13084,11 @@ - - Punctum deminutum, upper + + chantDeminutumUpper + Punctum deminutum, upper U+E9B2 - + Classes @@ -11772,10 +13096,11 @@ - - Punctum deminutum, lower + + chantDeminutumLower + Punctum deminutum, lower U+E9B3 - + Classes @@ -11783,10 +13108,11 @@ - - Entry line, ascending 2nd + + chantEntryLineAsc2nd + Entry line, ascending 2nd U+E9B4 - + Classes @@ -11794,10 +13120,11 @@ - - Entry line, ascending 3rd + + chantEntryLineAsc3rd + Entry line, ascending 3rd U+E9B5 - + Classes @@ -11805,10 +13132,11 @@ - - Entry line, ascending 4th + + chantEntryLineAsc4th + Entry line, ascending 4th U+E9B6 - + Classes @@ -11816,10 +13144,11 @@ - - Entry line, ascending 5th + + chantEntryLineAsc5th + Entry line, ascending 5th U+E9B7 - + Classes @@ -11827,10 +13156,11 @@ - - Entry line, ascending 6th + + chantEntryLineAsc6th + Entry line, ascending 6th U+E9B8 - + Classes @@ -11838,10 +13168,11 @@ - - Ligated stroke, descending 2nd + + chantLigaturaDesc2nd + Ligated stroke, descending 2nd U+E9B9 - + Classes @@ -11849,10 +13180,11 @@ - - Ligated stroke, descending 3rd + + chantLigaturaDesc3rd + Ligated stroke, descending 3rd U+E9BA - + Classes @@ -11860,10 +13192,11 @@ - - Ligated stroke, descending 4th + + chantLigaturaDesc4th + Ligated stroke, descending 4th U+E9BB - + Classes @@ -11871,10 +13204,11 @@ - - Ligated stroke, descending 5th + + chantLigaturaDesc5th + Ligated stroke, descending 5th U+E9BC - + Classes @@ -11882,10 +13216,11 @@ - - Connecting line, ascending 2nd + + chantConnectingLineAsc2nd + Connecting line, ascending 2nd U+E9BD - + Classes @@ -11893,10 +13228,11 @@ - - Connecting line, ascending 3rd + + chantConnectingLineAsc3rd + Connecting line, ascending 3rd U+E9BE - + Classes @@ -11904,10 +13240,11 @@ - - Connecting line, ascending 4th + + chantConnectingLineAsc4th + Connecting line, ascending 4th U+E9BF - + Classes @@ -11915,10 +13252,11 @@ - - Connecting line, ascending 5th + + chantConnectingLineAsc5th + Connecting line, ascending 5th U+E9C0 - + Classes @@ -11926,10 +13264,11 @@ - - Connecting line, ascending 6th + + chantConnectingLineAsc6th + Connecting line, ascending 6th U+E9C1 - + Classes @@ -11937,33 +13276,38 @@ - - Strophicus liquescens, 2nd + + chantStrophicusLiquescens2nd + Strophicus liquescens, 2nd U+E9C2 - + - - Strophicus liquescens, 3rd + + chantStrophicusLiquescens3rd + Strophicus liquescens, 3rd U+E9C3 - + - - Strophicus liquescens, 4th + + chantStrophicusLiquescens4th + Strophicus liquescens, 4th U+E9C4 - + - - Strophicus liquescens, 5th + + chantStrophicusLiquescens5th + Strophicus liquescens, 5th U+E9C5 - + Medieval and Renaissance plainchant single-note forms - - Punctum + + chantPunctum + Punctum U+E990 - + Classes @@ -11971,10 +13315,11 @@ - - Punctum inclinatum + + chantPunctumInclinatum + Punctum inclinatum U+E991 - + Classes @@ -11982,10 +13327,11 @@ - - Punctum inclinatum auctum + + chantPunctumInclinatumAuctum + Punctum inclinatum auctum U+E992 - + Classes @@ -11993,10 +13339,11 @@ - - Punctum inclinatum deminutum + + chantPunctumInclinatumDeminutum + Punctum inclinatum deminutum U+E993 - + Classes @@ -12004,10 +13351,11 @@ - - Punctum auctum, ascending + + chantAuctumAsc + Punctum auctum, ascending U+E994 - + Classes @@ -12015,10 +13363,11 @@ - - Punctum auctum, descending + + chantAuctumDesc + Punctum auctum, descending U+E995 - + Classes @@ -12026,11 +13375,12 @@ - - Punctum virga + + chantPunctumVirga + Punctum virga U+E996 U+1D1D3 - + Classes @@ -12038,10 +13388,11 @@ - - Punctum virga, reversed + + chantPunctumVirgaReversed + Punctum virga, reversed U+E997 - + Classes @@ -12049,10 +13400,11 @@ - - Punctum cavum + + chantPunctumCavum + Punctum cavum U+E998 - + Classes @@ -12060,10 +13412,11 @@ - - Punctum linea + + chantPunctumLinea + Punctum linea U+E999 - + Classes @@ -12071,10 +13424,11 @@ - - Punctum linea cavum + + chantPunctumLineaCavum + Punctum linea cavum U+E99A - + Classes @@ -12082,10 +13436,11 @@ - - Quilisma + + chantQuilisma + Quilisma U+E99B - + Classes @@ -12093,10 +13448,11 @@ - - Oriscus ascending + + chantOriscusAscending + Oriscus ascending U+E99C - + Classes @@ -12104,10 +13460,11 @@ - - Oriscus descending + + chantOriscusDescending + Oriscus descending U+E99D - + Classes @@ -12115,15 +13472,17 @@ - - Oriscus liquescens + + chantOriscusLiquescens + Oriscus liquescens U+E99E - + - - Strophicus + + chantStrophicus + Strophicus U+E99F - + Classes @@ -12131,10 +13490,11 @@ - - Strophicus auctus + + chantStrophicusAuctus + Strophicus auctus U+E9A0 - + Classes @@ -12142,14 +13502,21 @@ + + chantPunctumDeminutum + Punctum deminutum + U+E9A1 + + Medieval and Renaissance prolations - - Tempus perfectum cum prolatione perfecta (9/8) + + mensuralProlation1 + Tempus perfectum cum prolatione perfecta (9/8) U+E910 U+1D1C7 - + Classes @@ -12157,11 +13524,12 @@ - - Tempus perfectum cum prolatione imperfecta (3/4) + + mensuralProlation2 + Tempus perfectum cum prolatione imperfecta (3/4) U+E911 U+1D1C8 - + Classes @@ -12169,11 +13537,12 @@ - - Tempus perfectum cum prolatione imperfecta diminution 1 (3/8) + + mensuralProlation3 + Tempus perfectum cum prolatione imperfecta diminution 1 (3/8) U+E912 U+1D1C9 - + Classes @@ -12181,10 +13550,11 @@ - - Tempus perfectum cum prolatione perfecta diminution 2 (9/16) + + mensuralProlation4 + Tempus perfectum cum prolatione perfecta diminution 2 (9/16) U+E913 - + Classes @@ -12192,11 +13562,12 @@ - - Tempus imperfectum cum prolatione perfecta (6/8) + + mensuralProlation5 + Tempus imperfectum cum prolatione perfecta (6/8) U+E914 U+1D1CA - + Classes @@ -12204,11 +13575,12 @@ - - Tempus imperfectum cum prolatione imperfecta (2/4) + + mensuralProlation6 + Tempus imperfectum cum prolatione imperfecta (2/4) U+E915 U+1D1CB - + Classes @@ -12216,11 +13588,12 @@ - - Tempus imperfectum cum prolatione imperfecta diminution 1 (2/2) + + mensuralProlation7 + Tempus imperfectum cum prolatione imperfecta diminution 1 (2/2) U+E916 U+1D1CC - + Classes @@ -12228,10 +13601,11 @@ - - Tempus imperfectum cum prolatione imperfecta diminution 2 (6/16) + + mensuralProlation8 + Tempus imperfectum cum prolatione imperfecta diminution 2 (6/16) U+E917 - + Classes @@ -12239,11 +13613,12 @@ - - Tempus imperfectum cum prolatione imperfecta diminution 3 (2/2) + + mensuralProlation9 + Tempus imperfectum cum prolatione imperfecta diminution 3 (2/2) U+E918 U+1D1CD - + Classes @@ -12251,11 +13626,12 @@ - - Tempus imperfectum cum prolatione imperfecta diminution 4 + + mensuralProlation10 + Tempus imperfectum cum prolatione imperfecta diminution 4 U+E919 U+1D1CE - + Classes @@ -12263,10 +13639,11 @@ - - Tempus imperfectum cum prolatione imperfecta diminution 5 + + mensuralProlation11 + Tempus imperfectum cum prolatione imperfecta diminution 5 U+E91A - + Classes @@ -12274,10 +13651,11 @@ - - Tempus perfectum + + mensuralProportionTempusPerfectum + Tempus perfectum U+E91B - + Classes @@ -12285,10 +13663,11 @@ - - Proportio dupla 1 + + mensuralProportionProportioDupla1 + Proportio dupla 1 U+E91C - + Classes @@ -12296,10 +13675,11 @@ - - Proportio dupla 2 + + mensuralProportionProportioDupla2 + Proportio dupla 2 U+E91D - + Classes @@ -12307,10 +13687,11 @@ - - Proportio tripla + + mensuralProportionProportioTripla + Proportio tripla U+E91E - + Classes @@ -12318,10 +13699,11 @@ - - Proportio quadrupla + + mensuralProportionProportioQuadrupla + Proportio quadrupla U+E91F - + Classes @@ -12329,10 +13711,11 @@ - - Combining dot + + mensuralProlationCombiningDot + Combining dot U+E920 - + Classes @@ -12340,10 +13723,11 @@ - - Combining two dots + + mensuralProlationCombiningTwoDots + Combining two dots U+E921 - + Classes @@ -12351,10 +13735,11 @@ - - Combining three dots horizontal + + mensuralProlationCombiningThreeDots + Combining three dots horizontal U+E922 - + Classes @@ -12362,10 +13747,11 @@ - - Combining three dots triangular + + mensuralProlationCombiningThreeDotsTri + Combining three dots triangular U+E923 - + Classes @@ -12373,10 +13759,11 @@ - - Combining void dot + + mensuralProlationCombiningDotVoid + Combining void dot U+E924 - + Classes @@ -12384,10 +13771,11 @@ - - Combining vertical stroke + + mensuralProlationCombiningStroke + Combining vertical stroke U+E925 - + Classes @@ -12395,10 +13783,11 @@ - - Mensural proportion 1 + + mensuralProportion1 + Mensural proportion 1 U+E926 - + Classes @@ -12406,10 +13795,11 @@ - - Mensural proportion 2 + + mensuralProportion2 + Mensural proportion 2 U+E927 - + Classes @@ -12417,10 +13807,11 @@ - - Mensural proportion 3 + + mensuralProportion3 + Mensural proportion 3 U+E928 - + Classes @@ -12428,10 +13819,11 @@ - - Mensural proportion 4 + + mensuralProportion4 + Mensural proportion 4 U+E929 - + Classes @@ -12439,10 +13831,11 @@ - - Mensural proportion minor + + mensuralProportionMinor + Mensural proportion minor U+E92A - + Classes @@ -12450,10 +13843,11 @@ - - Mensural proportion major + + mensuralProportionMajor + Mensural proportion major U+E92B - + Classes @@ -12461,10 +13855,11 @@ - - Modus perfectum, vertical + + mensuralModusPerfectumVert + Modus perfectum, vertical U+E92C - + Classes @@ -12472,10 +13867,11 @@ - - Modus imperfectum, vertical + + mensuralModusImperfectumVert + Modus imperfectum, vertical U+E92D - + Classes @@ -12483,10 +13879,11 @@ - - Tempus perfectum, horizontal + + mensuralTempusPerfectumHoriz + Tempus perfectum, horizontal U+E92E - + Classes @@ -12494,10 +13891,11 @@ - - Tempus imperfectum, horizontal + + mensuralTempusImperfectumHoriz + Tempus imperfectum, horizontal U+E92F - + Classes @@ -12508,64 +13906,74 @@ Medieval and Renaissance rests - - Maxima rest + + mensuralRestMaxima + Maxima rest U+E9F0 - + - - Longa perfecta rest + + mensuralRestLongaPerfecta + Longa perfecta rest U+E9F1 U+1D1C1 - + - - Longa imperfecta rest + + mensuralRestLongaImperfecta + Longa imperfecta rest U+E9F2 U+1D1C2 - + - - Brevis rest + + mensuralRestBrevis + Brevis rest U+E9F3 U+1D1C3 - + - - Semibrevis rest + + mensuralRestSemibrevis + Semibrevis rest U+E9F4 U+1D1C4 - + - - Minima rest + + mensuralRestMinima + Minima rest U+E9F5 U+1D1C5 - + - - Semiminima rest + + mensuralRestSemiminima + Semiminima rest U+E9F6 U+1D1C6 - + - - Fusa rest + + mensuralRestFusa + Fusa rest U+E9F7 - + - - Semifusa rest + + mensuralRestSemifusa + Semifusa rest U+E9F8 - + Medieval and Renaissance staves - - Plainchant staff + + chantStaff + Plainchant staff U+E8F0 - + Classes @@ -12574,10 +13982,11 @@ - - Plainchant staff (wide) + + chantStaffWide + Plainchant staff (wide) U+E8F1 - + Classes @@ -12586,10 +13995,11 @@ - - Plainchant staff (narrow) + + chantStaffNarrow + Plainchant staff (narrow) U+E8F2 - + Classes @@ -12598,10 +14008,11 @@ - - Divisio minima + + chantDivisioMinima + Divisio minima U+E8F3 - + Classes @@ -12609,10 +14020,11 @@ - - Divisio maior + + chantDivisioMaior + Divisio maior U+E8F4 - + Classes @@ -12620,10 +14032,11 @@ - - Divisio maxima + + chantDivisioMaxima + Divisio maxima U+E8F5 - + Classes @@ -12631,10 +14044,11 @@ - - Divisio finalis + + chantDivisioFinalis + Divisio finalis U+E8F6 - + Classes @@ -12642,10 +14056,11 @@ - - Virgula + + chantVirgula + Virgula U+E8F7 - + Classes @@ -12653,10 +14068,11 @@ - - Caesura + + chantCaesura + Caesura U+E8F8 - + Classes @@ -12667,68 +14083,80 @@ Medieval and Renaissance symbols in CMN - - Quilisma + + ornamentQuilisma + Quilisma U+EA20 - + - - Oriscus + + ornamentOriscus + Oriscus U+EA21 - + - - Liquescence + + medRenLiquescenceCMN + Liquescence U+EA22 - + - - Plica + + medRenPlicaCMN + Plica U+EA23 - + - - G clef (Corpus Monodicum) + + medRenGClefCMN + G clef (Corpus Monodicum) U+EA24 - + - - Punctum (Corpus Monodicum) + + medRenPunctumCMN + Punctum (Corpus Monodicum) U+EA25 - + - - Liquescent ascending (Corpus Monodicum) + + medRenLiquescentAscCMN + Liquescent ascending (Corpus Monodicum) U+EA26 - + - - Liquescent descending (Corpus Monodicum) + + medRenLiquescentDescCMN + Liquescent descending (Corpus Monodicum) U+EA27 - + - - Quilisma (Corpus Monodicum) + + medRenQuilismaCMN + Quilisma (Corpus Monodicum) U+EA28 - + - - Strophicus (Corpus Monodicum) + + medRenStrophicusCMN + Strophicus (Corpus Monodicum) U+EA29 - + - - Oriscus (Corpus Monodicum) + + medRenOriscusCMN + Oriscus (Corpus Monodicum) U+EA2A - + Metallic struck percussion pictograms - - Triangle + + pictTriangle + Triangle U+E700 - + Classes @@ -12736,10 +14164,11 @@ - - Anvil + + pictAnvil + Anvil U+E701 - + Classes @@ -12748,12 +14177,304 @@ + + Metronome marks + + metNoteDoubleWhole + Double whole note (breve) + U+ECA0 + + + + Classes + tf_metronomeMarks + + + + + metNoteDoubleWholeSquare + Double whole note (square) + U+ECA1 + + + + Classes + tf_metronomeMarks + + + + + metNoteWhole + Whole note (semibreve) + U+ECA2 + + + + Classes + tf_metronomeMarks + + + + + metNoteHalfUp + Half note (minim) stem up + U+ECA3 + + + + Classes + tf_metronomeMarks + + + + + metNoteHalfDown + Half note (minim) stem down + U+ECA4 + + + + Classes + tf_metronomeMarks + + + + + metNoteQuarterUp + Quarter note (crotchet) stem up + U+ECA5 + + + + Classes + tf_metronomeMarks + + + + + metNoteQuarterDown + Quarter note (crotchet) stem down + U+ECA6 + + + + Classes + tf_metronomeMarks + + + + + metNote8thUp + Eighth note (quaver) stem up + U+ECA7 + + + + Classes + tf_metronomeMarks + + + + + metNote8thDown + Eighth note (quaver) stem down + U+ECA8 + + + + Classes + tf_metronomeMarks + + + + + metNote16thUp + 16th note (semiquaver) stem up + U+ECA9 + + + + Classes + tf_metronomeMarks + + + + + metNote16thDown + 16th note (semiquaver) stem down + U+ECAA + + + + Classes + tf_metronomeMarks + + + + + metNote32ndUp + 32nd note (demisemiquaver) stem up + U+ECAB + + + + Classes + tf_metronomeMarks + + + + + metNote32ndDown + 32nd note (demisemiquaver) stem down + U+ECAC + + + + Classes + tf_metronomeMarks + + + + + metNote64thUp + 64th note (hemidemisemiquaver) stem up + U+ECAD + + + + Classes + tf_metronomeMarks + + + + + metNote64thDown + 64th note (hemidemisemiquaver) stem down + U+ECAE + + + + Classes + tf_metronomeMarks + + + + + metNote128thUp + 128th note (semihemidemisemiquaver) stem up + U+ECAF + + + + Classes + tf_metronomeMarks + + + + + metNote128thDown + 128th note (semihemidemisemiquaver) stem down + U+ECB0 + + + + Classes + tf_metronomeMarks + + + + + metNote256thUp + 256th note (demisemihemidemisemiquaver) stem up + U+ECB1 + + + + Classes + tf_metronomeMarks + + + + + metNote256thDown + 256th note (demisemihemidemisemiquaver) stem down + U+ECB2 + + + + Classes + tf_metronomeMarks + + + + + metNote512thUp + 512th note (hemidemisemihemidemisemiquaver) stem up + U+ECB3 + + + + Classes + tf_metronomeMarks + + + + + metNote512thDown + 512th note (hemidemisemihemidemisemiquaver) stem down + U+ECB4 + + + + Classes + tf_metronomeMarks + + + + + metNote1024thUp + 1024th note (semihemidemisemihemidemisemiquaver) stem up + U+ECB5 + + + + Classes + tf_metronomeMarks + + + + + metNote1024thDown + 1024th note (semihemidemisemihemidemisemiquaver) stem down + U+ECB6 + + + + Classes + tf_metronomeMarks + + + + + metAugmentationDot + Augmentation dot + U+ECB7 + + + + Classes + tf_metronomeMarks + + + + Miscellaneous percussion instrument pictograms - - Pistol shot + + pictPistolShot + Pistol shot U+E760 - + Classes @@ -12761,10 +14482,11 @@ - - Cannon + + pictCannon + Cannon U+E761 - + Classes @@ -12772,10 +14494,11 @@ - - Sandpaper blocks + + pictSandpaperBlocks + Sandpaper blocks U+E762 - + Classes @@ -12783,10 +14506,11 @@ - - Lion's roar + + pictLionsRoar + Lion's roar U+E763 - + Classes @@ -12794,10 +14518,11 @@ - - Glass harp + + pictGlassHarp + Glass harp U+E764 - + Classes @@ -12805,10 +14530,11 @@ - - Glass harmonica + + pictGlassHarmonica + Glass harmonica U+E765 - + Classes @@ -12816,10 +14542,11 @@ - - Musical saw + + pictMusicalSaw + Musical saw U+E766 - + Classes @@ -12827,10 +14554,11 @@ - - Jaw harp + + pictJawHarp + Jaw harp U+E767 - + Classes @@ -12841,25 +14569,29 @@ Miscellaneous symbols - - Do not photocopy + + miscDoNotPhotocopy + Do not photocopy U+EC60 - + - - Do not copy + + miscDoNotCopy + Do not copy U+EC61 - + - - Eyeglasses + + miscEyeglasses + Eyeglasses U+EC62 - + - - Left-pointing arrow for metric modulation + + metricModulationArrowLeft + Left-pointing arrow for metric modulation U+EC63 - + Classes @@ -12867,10 +14599,11 @@ - - Right-pointing arrow for metric modulation + + metricModulationArrowRight + Right-pointing arrow for metric modulation U+EC64 - + Classes @@ -12881,10 +14614,11 @@ Multi-segment lines - - Trill wiggle segment, fastest + + wiggleTrillFastest + Trill wiggle segment, fastest U+EAA0 - + Classes @@ -12893,10 +14627,11 @@ - - Trill wiggle segment, faster still + + wiggleTrillFasterStill + Trill wiggle segment, faster still U+EAA1 - + Classes @@ -12905,10 +14640,11 @@ - - Trill wiggle segment, faster + + wiggleTrillFaster + Trill wiggle segment, faster U+EAA2 - + Classes @@ -12917,10 +14653,11 @@ - - Trill wiggle segment, fast + + wiggleTrillFast + Trill wiggle segment, fast U+EAA3 - + Classes @@ -12929,10 +14666,11 @@ - - Trill wiggle segment + + wiggleTrill + Trill wiggle segment U+EAA4 - + Classes @@ -12941,10 +14679,11 @@ - - Trill wiggle segment, slow + + wiggleTrillSlow + Trill wiggle segment, slow U+EAA5 - + Classes @@ -12953,10 +14692,11 @@ - - Trill wiggle segment, slower + + wiggleTrillSlower + Trill wiggle segment, slower U+EAA6 - + Classes @@ -12965,10 +14705,11 @@ - - Trill wiggle segment, slower still + + wiggleTrillSlowerStill + Trill wiggle segment, slower still U+EAA7 - + Classes @@ -12977,10 +14718,11 @@ - - Trill wiggle segment, slowest + + wiggleTrillSlowest + Trill wiggle segment, slowest U+EAA8 - + Classes @@ -12989,10 +14731,11 @@ - - Arpeggiato wiggle segment, upwards + + wiggleArpeggiatoUp + Arpeggiato wiggle segment, upwards U+EAA9 - + Classes @@ -13002,10 +14745,11 @@ - - Arpeggiato wiggle segment, downwards + + wiggleArpeggiatoDown + Arpeggiato wiggle segment, downwards U+EAAA - + Classes @@ -13015,10 +14759,11 @@ - - Arpeggiato upward swash + + wiggleArpeggiatoUpSwash + Arpeggiato upward swash U+EAAB - + Classes @@ -13028,10 +14773,11 @@ - - Arpeggiato downward swash + + wiggleArpeggiatoDownSwash + Arpeggiato downward swash U+EAAC - + Classes @@ -13041,10 +14787,11 @@ - - Arpeggiato arrowhead up + + wiggleArpeggiatoUpArrow + Arpeggiato arrowhead up U+EAAD - + Classes @@ -13054,10 +14801,11 @@ - - Arpeggiato arrowhead down + + wiggleArpeggiatoDownArrow + Arpeggiato arrowhead down U+EAAE - + Classes @@ -13067,10 +14815,11 @@ - - Glissando wiggle segment + + wiggleGlissando + Glissando wiggle segment U+EAAF - + Classes @@ -13078,10 +14827,11 @@ - - Vibrato / shake wiggle segment + + wiggleVibrato + Vibrato / shake wiggle segment U+EAB0 - + Classes @@ -13090,10 +14840,11 @@ - - Wide vibrato / shake wiggle segment + + wiggleVibratoWide + Wide vibrato / shake wiggle segment U+EAB1 - + Classes @@ -13102,10 +14853,11 @@ - - Vibrato wiggle segment + + guitarVibratoStroke + Vibrato wiggle segment U+EAB2 - + Classes @@ -13114,10 +14866,11 @@ - - Wide vibrato wiggle segment + + guitarWideVibratoStroke + Wide vibrato wiggle segment U+EAB3 - + Classes @@ -13126,15 +14879,17 @@ - - Narrow wavy line segment + + wiggleWavyNarrow + Narrow wavy line segment U+EAB4 - + - - Wavy line segment + + wiggleWavy + Wavy line segment U+EAB5 - + Classes @@ -13142,20 +14897,23 @@ - - Wide wavy line segment + + wiggleWavyWide + Wide wavy line segment U+EAB6 - + - - Narrow square wave line segment + + wiggleSquareWaveNarrow + Narrow square wave line segment U+EAB7 - + - - Square wave line segment + + wiggleSquareWave + Square wave line segment U+EAB8 - + Classes @@ -13163,20 +14921,23 @@ - - Wide square wave line segment + + wiggleSquareWaveWide + Wide square wave line segment U+EAB9 - + - - Narrow sawtooth line segment + + wiggleSawtoothNarrow + Narrow sawtooth line segment U+EABA - + - - Sawtooth line segment + + wiggleSawtooth + Sawtooth line segment U+EABB - + Classes @@ -13184,15 +14945,17 @@ - - Wide sawtooth line segment + + wiggleSawtoothWide + Wide sawtooth line segment U+EABC - + - - Group glissando 1 + + wiggleGlissandoGroup1 + Group glissando 1 U+EABD - + Classes @@ -13200,10 +14963,11 @@ - - Group glissando 2 + + wiggleGlissandoGroup2 + Group glissando 2 U+EABE - + Classes @@ -13211,10 +14975,11 @@ - - Group glissando 3 + + wiggleGlissandoGroup3 + Group glissando 3 U+EABF - + Classes @@ -13222,10 +14987,11 @@ - - Constant circular motion segment + + wiggleCircularConstant + Constant circular motion segment U+EAC0 - + Classes @@ -13233,10 +14999,11 @@ - - Constant circular motion segment (flipped) + + wiggleCircularConstantFlipped + Constant circular motion segment (flipped) U+EAC1 - + Classes @@ -13244,10 +15011,11 @@ - - Constant circular motion segment (large) + + wiggleCircularConstantLarge + Constant circular motion segment (large) U+EAC2 - + Classes @@ -13255,10 +15023,11 @@ - - Constant circular motion segment (flipped, large) + + wiggleCircularConstantFlippedLarge + Constant circular motion segment (flipped, large) U+EAC3 - + Classes @@ -13266,10 +15035,11 @@ - - Circular motion start + + wiggleCircularStart + Circular motion start U+EAC4 - + Classes @@ -13278,10 +15048,11 @@ - - Circular motion segment, largest + + wiggleCircularLargest + Circular motion segment, largest U+EAC5 - + Classes @@ -13290,10 +15061,11 @@ - - Circular motion segment, larger still + + wiggleCircularLargerStill + Circular motion segment, larger still U+EAC6 - + Classes @@ -13302,10 +15074,11 @@ - - Circular motion segment, larger + + wiggleCircularLarger + Circular motion segment, larger U+EAC7 - + Classes @@ -13314,10 +15087,11 @@ - - Circular motion segment, large + + wiggleCircularLarge + Circular motion segment, large U+EAC8 - + Classes @@ -13326,10 +15100,11 @@ - - Circular motion segment + + wiggleCircular + Circular motion segment U+EAC9 - + Classes @@ -13338,10 +15113,11 @@ - - Circular motion segment, small + + wiggleCircularSmall + Circular motion segment, small U+EACA - + Classes @@ -13350,10 +15126,11 @@ - - Circular motion end + + wiggleCircularEnd + Circular motion end U+EACB - + Classes @@ -13362,10 +15139,11 @@ - - Vibrato start + + wiggleVibratoStart + Vibrato start U+EACC - + Classes @@ -13374,10 +15152,11 @@ - - Vibrato smallest, fastest + + wiggleVibratoSmallestFastest + Vibrato smallest, fastest U+EACD - + Classes @@ -13386,10 +15165,11 @@ - - Vibrato smallest, faster still + + wiggleVibratoSmallestFasterStill + Vibrato smallest, faster still U+EACE - + Classes @@ -13398,10 +15178,11 @@ - - Vibrato smallest, faster + + wiggleVibratoSmallestFaster + Vibrato smallest, faster U+EACF - + Classes @@ -13410,10 +15191,11 @@ - - Vibrato smallest, fast + + wiggleVibratoSmallestFast + Vibrato smallest, fast U+EAD0 - + Classes @@ -13422,10 +15204,11 @@ - - Vibrato smallest, slow + + wiggleVibratoSmallestSlow + Vibrato smallest, slow U+EAD1 - + Classes @@ -13434,10 +15217,11 @@ - - Vibrato smallest, slower + + wiggleVibratoSmallestSlower + Vibrato smallest, slower U+EAD2 - + Classes @@ -13446,10 +15230,11 @@ - - Vibrato smallest, slowest + + wiggleVibratoSmallestSlowest + Vibrato smallest, slowest U+EAD3 - + Classes @@ -13458,10 +15243,11 @@ - - Vibrato small, fastest + + wiggleVibratoSmallFastest + Vibrato small, fastest U+EAD4 - + Classes @@ -13470,10 +15256,11 @@ - - Vibrato small, faster still + + wiggleVibratoSmallFasterStill + Vibrato small, faster still U+EAD5 - + Classes @@ -13482,10 +15269,11 @@ - - Vibrato small, faster + + wiggleVibratoSmallFaster + Vibrato small, faster U+EAD6 - + Classes @@ -13494,10 +15282,11 @@ - - Vibrato small, fast + + wiggleVibratoSmallFast + Vibrato small, fast U+EAD7 - + Classes @@ -13506,10 +15295,11 @@ - - Vibrato small, slow + + wiggleVibratoSmallSlow + Vibrato small, slow U+EAD8 - + Classes @@ -13518,10 +15308,11 @@ - - Vibrato small, slower + + wiggleVibratoSmallSlower + Vibrato small, slower U+EAD9 - + Classes @@ -13530,10 +15321,11 @@ - - Vibrato small, slowest + + wiggleVibratoSmallSlowest + Vibrato small, slowest U+EADA - + Classes @@ -13542,10 +15334,11 @@ - - Vibrato medium, fastest + + wiggleVibratoMediumFastest + Vibrato medium, fastest U+EADB - + Classes @@ -13554,10 +15347,11 @@ - - Vibrato medium, faster still + + wiggleVibratoMediumFasterStill + Vibrato medium, faster still U+EADC - + Classes @@ -13566,10 +15360,11 @@ - - Vibrato medium, faster + + wiggleVibratoMediumFaster + Vibrato medium, faster U+EADD - + Classes @@ -13578,10 +15373,11 @@ - - Vibrato medium, fast + + wiggleVibratoMediumFast + Vibrato medium, fast U+EADE - + Classes @@ -13590,10 +15386,11 @@ - - Vibrato medium, slow + + wiggleVibratoMediumSlow + Vibrato medium, slow U+EADF - + Classes @@ -13602,10 +15399,11 @@ - - Vibrato medium, slower + + wiggleVIbratoMediumSlower + Vibrato medium, slower U+EAE0 - + Classes @@ -13614,10 +15412,11 @@ - - Vibrato medium, slowest + + wiggleVibratoMediumSlowest + Vibrato medium, slowest U+EAE1 - + Classes @@ -13626,10 +15425,11 @@ - - Vibrato large, fastest + + wiggleVibratoLargeFastest + Vibrato large, fastest U+EAE2 - + Classes @@ -13638,10 +15438,11 @@ - - Vibrato large, faster still + + wiggleVibratoLargeFasterStill + Vibrato large, faster still U+EAE3 - + Classes @@ -13650,10 +15451,11 @@ - - Vibrato large, faster + + wiggleVibratoLargeFaster + Vibrato large, faster U+EAE4 - + Classes @@ -13662,10 +15464,11 @@ - - Vibrato large, fast + + wiggleVibratoLargeFast + Vibrato large, fast U+EAE5 - + Classes @@ -13674,10 +15477,11 @@ - - Vibrato large, slow + + wiggleVibratoLargeSlow + Vibrato large, slow U+EAE6 - + Classes @@ -13686,10 +15490,11 @@ - - Vibrato large, slower + + wiggleVibratoLargeSlower + Vibrato large, slower U+EAE7 - + Classes @@ -13698,10 +15503,11 @@ - - Vibrato large, slowest + + wiggleVibratoLargeSlowest + Vibrato large, slowest U+EAE8 - + Classes @@ -13710,10 +15516,11 @@ - - Vibrato largest, fastest + + wiggleVibratoLargestFastest + Vibrato largest, fastest U+EAE9 - + Classes @@ -13722,10 +15529,11 @@ - - Vibrato largest, faster still + + wiggleVibratoLargestFasterStill + Vibrato largest, faster still U+EAEA - + Classes @@ -13734,10 +15542,11 @@ - - Vibrato largest, faster + + wiggleVibratoLargestFaster + Vibrato largest, faster U+EAEB - + Classes @@ -13746,10 +15555,11 @@ - - Vibrato largest, fast + + wiggleVibratoLargestFast + Vibrato largest, fast U+EAEC - + Classes @@ -13758,10 +15568,11 @@ - - Vibrato largest, slow + + wiggleVibratoLargestSlow + Vibrato largest, slow U+EAED - + Classes @@ -13770,10 +15581,11 @@ - - Vibrato largest, slower + + wiggleVIbratoLargestSlower + Vibrato largest, slower U+EAEE - + Classes @@ -13782,10 +15594,11 @@ - - Vibrato largest, slowest + + wiggleVibratoLargestSlowest + Vibrato largest, slowest U+EAEF - + Classes @@ -13794,10 +15607,11 @@ - - Quasi-random squiggle 1 + + wiggleRandom1 + Quasi-random squiggle 1 U+EAF0 - + Classes @@ -13806,10 +15620,11 @@ - - Quasi-random squiggle 2 + + wiggleRandom2 + Quasi-random squiggle 2 U+EAF1 - + Classes @@ -13818,10 +15633,11 @@ - - Quasi-random squiggle 3 + + wiggleRandom3 + Quasi-random squiggle 3 U+EAF2 - + Classes @@ -13830,10 +15646,11 @@ - - Quasi-random squiggle 4 + + wiggleRandom4 + Quasi-random squiggle 4 U+EAF3 - + Classes @@ -13842,94 +15659,111 @@ - - Accel./rit. beam 1 (widest) + + beamAccelRit1 + Accel./rit. beam 1 (widest) U+EAF4 - + - - Accel./rit. beam 2 + + beamAccelRit2 + Accel./rit. beam 2 U+EAF5 - + - - Accel./rit. beam 3 + + beamAccelRit3 + Accel./rit. beam 3 U+EAF6 - + - - Accel./rit. beam 4 + + beamAccelRit4 + Accel./rit. beam 4 U+EAF7 - + - - Accel./rit. beam 5 + + beamAccelRit5 + Accel./rit. beam 5 U+EAF8 - + - - Accel./rit. beam 6 + + beamAccelRit6 + Accel./rit. beam 6 U+EAF9 - + - - Accel./rit. beam 7 + + beamAccelRit7 + Accel./rit. beam 7 U+EAFA - + - - Accel./rit. beam 8 + + beamAccelRit8 + Accel./rit. beam 8 U+EAFB - + - - Accel./rit. beam 9 + + beamAccelRit9 + Accel./rit. beam 9 U+EAFC - + - - Accel./rit. beam 10 + + beamAccelRit10 + Accel./rit. beam 10 U+EAFD - + - - Accel./rit. beam 11 + + beamAccelRit11 + Accel./rit. beam 11 U+EAFE - + - - Accel./rit. beam 12 + + beamAccelRit12 + Accel./rit. beam 12 U+EAFF - + - - Accel./rit. beam 13 + + beamAccelRit13 + Accel./rit. beam 13 U+EB00 - + - - Accel./rit. beam 14 + + beamAccelRit14 + Accel./rit. beam 14 U+EB01 - + - - Accel./rit. beam 15 (narrowest) + + beamAccelRit15 + Accel./rit. beam 15 (narrowest) U+EB02 - + - - Accel./rit. beam terminating line + + beamAccelRitFinal + Accel./rit. beam terminating line U+EB03 - + Note clusters - - Cluster notehead white (square) + + noteheadClusterSquareWhite + Cluster notehead white (square) U+E120 U+1D15A - + Classes @@ -13938,11 +15772,12 @@ - - Cluster notehead black (square) + + noteheadClusterSquareBlack + Cluster notehead black (square) U+E121 U+1D15B - + Classes @@ -13951,10 +15786,11 @@ - - Cluster notehead white (round) + + noteheadClusterRoundWhite + Cluster notehead white (round) U+E122 - + Classes @@ -13963,10 +15799,11 @@ - - Cluster notehead black (round) + + noteheadClusterRoundBlack + Cluster notehead black (round) U+E123 - + Classes @@ -13975,10 +15812,11 @@ - - Double whole note cluster, 2nd + + noteheadClusterDoubleWhole2nd + Double whole note cluster, 2nd U+E124 - + Classes @@ -13988,10 +15826,11 @@ - - Whole note cluster, 2nd + + noteheadClusterWhole2nd + Whole note cluster, 2nd U+E125 - + Classes @@ -14001,10 +15840,11 @@ - - Half note cluster, 2nd + + noteheadClusterHalf2nd + Half note cluster, 2nd U+E126 - + Classes @@ -14014,10 +15854,11 @@ - - Quarter note cluster, 2nd + + noteheadClusterQuarter2nd + Quarter note cluster, 2nd U+E127 - + Classes @@ -14027,10 +15868,11 @@ - - Double whole note cluster, 3rd + + noteheadClusterDoubleWhole3rd + Double whole note cluster, 3rd U+E128 - + Classes @@ -14040,10 +15882,11 @@ - - Whole note cluster, 3rd + + noteheadClusterWhole3rd + Whole note cluster, 3rd U+E129 - + Classes @@ -14053,10 +15896,11 @@ - - Half note cluster, 3rd + + noteheadClusterHalf3rd + Half note cluster, 3rd U+E12A - + Classes @@ -14066,10 +15910,11 @@ - - Quarter note cluster, 3rd + + noteheadClusterQuarter3rd + Quarter note cluster, 3rd U+E12B - + Classes @@ -14079,10 +15924,11 @@ - - Combining double whole note cluster, top + + noteheadClusterDoubleWholeTop + Combining double whole note cluster, top U+E12C - + Classes @@ -14092,10 +15938,11 @@ - - Combining double whole note cluster, middle + + noteheadClusterDoubleWholeMiddle + Combining double whole note cluster, middle U+E12D - + Classes @@ -14105,10 +15952,11 @@ - - Combining double whole note cluster, bottom + + noteheadClusterDoubleWholeBottom + Combining double whole note cluster, bottom U+E12E - + Classes @@ -14118,10 +15966,11 @@ - - Combining whole note cluster, top + + noteheadClusterWholeTop + Combining whole note cluster, top U+E12F - + Classes @@ -14131,10 +15980,11 @@ - - Combining whole note cluster, middle + + noteheadClusterWholeMiddle + Combining whole note cluster, middle U+E130 - + Classes @@ -14144,10 +15994,11 @@ - - Combining whole note cluster, bottom + + noteheadClusterWholeBottom + Combining whole note cluster, bottom U+E131 - + Classes @@ -14157,10 +16008,11 @@ - - Combining half note cluster, top + + noteheadClusterHalfTop + Combining half note cluster, top U+E132 - + Classes @@ -14170,10 +16022,11 @@ - - Combining half note cluster, middle + + noteheadClusterHalfMiddle + Combining half note cluster, middle U+E133 - + Classes @@ -14183,10 +16036,11 @@ - - Combining half note cluster, bottom + + noteheadClusterHalfBottom + Combining half note cluster, bottom U+E134 - + Classes @@ -14196,10 +16050,11 @@ - - Combining quarter note cluster, top + + noteheadClusterQuarterTop + Combining quarter note cluster, top U+E135 - + Classes @@ -14209,10 +16064,11 @@ - - Combining quarter note cluster, middle + + noteheadClusterQuarterMiddle + Combining quarter note cluster, middle U+E136 - + Classes @@ -14222,10 +16078,11 @@ - - Combining quarter note cluster, bottom + + noteheadClusterQuarterBottom + Combining quarter note cluster, bottom U+E137 - + Classes @@ -14235,10 +16092,11 @@ - - White diamond cluster, 2nd + + noteheadDiamondClusterWhite2nd + White diamond cluster, 2nd U+E138 - + Classes @@ -14248,10 +16106,11 @@ - - Black diamond cluster, 2nd + + noteheadDiamondClusterBlack2nd + Black diamond cluster, 2nd U+E139 - + Classes @@ -14261,10 +16120,11 @@ - - White diamond cluster, 3rd + + noteheadDiamondClusterWhite3rd + White diamond cluster, 3rd U+E13A - + Classes @@ -14274,10 +16134,11 @@ - - Black diamond cluster, 3rd + + noteheadDiamondClusterBlack3rd + Black diamond cluster, 3rd U+E13B - + Classes @@ -14287,10 +16148,11 @@ - - Combining white diamond cluster, top + + noteheadDiamondClusterWhiteTop + Combining white diamond cluster, top U+E13C - + Classes @@ -14300,10 +16162,11 @@ - - Combining white diamond cluster, middle + + noteheadDiamondClusterWhiteMiddle + Combining white diamond cluster, middle U+E13D - + Classes @@ -14313,10 +16176,11 @@ - - Combining white diamond cluster, bottom + + noteheadDiamondClusterWhiteBottom + Combining white diamond cluster, bottom U+E13E - + Classes @@ -14326,10 +16190,11 @@ - - Combining black diamond cluster, top + + noteheadDiamondClusterBlackTop + Combining black diamond cluster, top U+E13F - + Classes @@ -14339,10 +16204,11 @@ - - Combining black diamond cluster, middle + + noteheadDiamondClusterBlackMiddle + Combining black diamond cluster, middle U+E140 - + Classes @@ -14352,10 +16218,11 @@ - - Combining black diamond cluster, bottom + + noteheadDiamondClusterBlackBottom + Combining black diamond cluster, bottom U+E141 - + Classes @@ -14365,10 +16232,11 @@ - - Combining black rectangular cluster, top + + noteheadRectangularClusterBlackTop + Combining black rectangular cluster, top U+E142 - + Classes @@ -14378,10 +16246,11 @@ - - Combining black rectangular cluster, middle + + noteheadRectangularClusterBlackMiddle + Combining black rectangular cluster, middle U+E143 - + Classes @@ -14391,10 +16260,11 @@ - - Combining black rectangular cluster, bottom + + noteheadRectangularClusterBlackBottom + Combining black rectangular cluster, bottom U+E144 - + Classes @@ -14404,10 +16274,11 @@ - - Combining white rectangular cluster, top + + noteheadRectangularClusterWhiteTop + Combining white rectangular cluster, top U+E145 - + Classes @@ -14417,10 +16288,11 @@ - - Combining white rectangular cluster, middle + + noteheadRectangularClusterWhiteMiddle + Combining white rectangular cluster, middle U+E146 - + Classes @@ -14430,10 +16302,11 @@ - - Combining white rectangular cluster, bottom + + noteheadRectangularClusterWhiteBottom + Combining white rectangular cluster, bottom U+E147 - + Classes @@ -14446,10 +16319,11 @@ Note name noteheads - - Do (whole note) + + noteDoWhole + Do (whole note) U+E150 - + Classes @@ -14459,10 +16333,11 @@ - - Re (whole note) + + noteReWhole + Re (whole note) U+E151 - + Classes @@ -14472,10 +16347,11 @@ - - Mi (whole note) + + noteMiWhole + Mi (whole note) U+E152 - + Classes @@ -14485,10 +16361,11 @@ - - Fa (whole note) + + noteFaWhole + Fa (whole note) U+E153 - + Classes @@ -14498,10 +16375,11 @@ - - So (whole note) + + noteSoWhole + So (whole note) U+E154 - + Classes @@ -14511,10 +16389,11 @@ - - La (whole note) + + noteLaWhole + La (whole note) U+E155 - + Classes @@ -14524,10 +16403,11 @@ - - Ti (whole note) + + noteTiWhole + Ti (whole note) U+E156 - + Classes @@ -14537,10 +16417,11 @@ - - Si (whole note) + + noteSiWhole + Si (whole note) U+E157 - + Classes @@ -14550,10 +16431,11 @@ - - Do (half note) + + noteDoHalf + Do (half note) U+E158 - + Classes @@ -14563,10 +16445,11 @@ - - Re (half note) + + noteReHalf + Re (half note) U+E159 - + Classes @@ -14576,10 +16459,11 @@ - - Mi (half note) + + noteMiHalf + Mi (half note) U+E15A - + Classes @@ -14589,10 +16473,11 @@ - - Fa (half note) + + noteFaHalf + Fa (half note) U+E15B - + Classes @@ -14602,10 +16487,11 @@ - - So (half note) + + noteSoHalf + So (half note) U+E15C - + Classes @@ -14615,10 +16501,11 @@ - - La (half note) + + noteLaHalf + La (half note) U+E15D - + Classes @@ -14628,10 +16515,11 @@ - - Ti (half note) + + noteTiHalf + Ti (half note) U+E15E - + Classes @@ -14641,10 +16529,11 @@ - - Si (half note) + + noteSiHalf + Si (half note) U+E15F - + Classes @@ -14654,10 +16543,11 @@ - - Do (black note) + + noteDoBlack + Do (black note) U+E160 - + Classes @@ -14667,10 +16557,11 @@ - - Re (black note) + + noteReBlack + Re (black note) U+E161 - + Classes @@ -14680,10 +16571,11 @@ - - Mi (black note) + + noteMiBlack + Mi (black note) U+E162 - + Classes @@ -14693,10 +16585,11 @@ - - Fa (black note) + + noteFaBlack + Fa (black note) U+E163 - + Classes @@ -14706,10 +16599,11 @@ - - So (black note) + + noteSoBlack + So (black note) U+E164 - + Classes @@ -14719,10 +16613,11 @@ - - La (black note) + + noteLaBlack + La (black note) U+E165 - + Classes @@ -14732,10 +16627,11 @@ - - Ti (black note) + + noteTiBlack + Ti (black note) U+E166 - + Classes @@ -14745,10 +16641,11 @@ - - Si (black note) + + noteSiBlack + Si (black note) U+E167 - + Classes @@ -14758,10 +16655,11 @@ - - A flat (whole note) + + noteAFlatWhole + A flat (whole note) U+E168 - + Classes @@ -14771,10 +16669,11 @@ - - A (whole note) + + noteAWhole + A (whole note) U+E169 - + Classes @@ -14784,10 +16683,11 @@ - - A sharp (whole note) + + noteASharpWhole + A sharp (whole note) U+E16A - + Classes @@ -14797,10 +16697,11 @@ - - B flat (whole note) + + noteBFlatWhole + B flat (whole note) U+E16B - + Classes @@ -14810,10 +16711,11 @@ - - B (whole note) + + noteBWhole + B (whole note) U+E16C - + Classes @@ -14823,10 +16725,11 @@ - - B sharp (whole note) + + noteBSharpWhole + B sharp (whole note) U+E16D - + Classes @@ -14836,10 +16739,11 @@ - - C flat (whole note) + + noteCFlatWhole + C flat (whole note) U+E16E - + Classes @@ -14849,10 +16753,11 @@ - - C (whole note) + + noteCWhole + C (whole note) U+E16F - + Classes @@ -14862,10 +16767,11 @@ - - C sharp (whole note) + + noteCSharpWhole + C sharp (whole note) U+E170 - + Classes @@ -14875,10 +16781,11 @@ - - D flat (whole note) + + noteDFlatWhole + D flat (whole note) U+E171 - + Classes @@ -14888,10 +16795,11 @@ - - D (whole note) + + noteDWhole + D (whole note) U+E172 - + Classes @@ -14901,10 +16809,11 @@ - - D sharp (whole note) + + noteDSharpWhole + D sharp (whole note) U+E173 - + Classes @@ -14914,10 +16823,11 @@ - - E flat (whole note) + + noteEFlatWhole + E flat (whole note) U+E174 - + Classes @@ -14927,10 +16837,11 @@ - - E (whole note) + + noteEWhole + E (whole note) U+E175 - + Classes @@ -14940,10 +16851,11 @@ - - E sharp (whole note) + + noteESharpWhole + E sharp (whole note) U+E176 - + Classes @@ -14953,10 +16865,11 @@ - - F flat (whole note) + + noteFFlatWhole + F flat (whole note) U+E177 - + Classes @@ -14966,10 +16879,11 @@ - - F (whole note) + + noteFWhole + F (whole note) U+E178 - + Classes @@ -14979,10 +16893,11 @@ - - F sharp (whole note) + + noteFSharpWhole + F sharp (whole note) U+E179 - + Classes @@ -14992,10 +16907,11 @@ - - G flat (whole note) + + noteGFlatWhole + G flat (whole note) U+E17A - + Classes @@ -15005,10 +16921,11 @@ - - G (whole note) + + noteGWhole + G (whole note) U+E17B - + Classes @@ -15018,10 +16935,11 @@ - - G sharp (whole note) + + noteGSharpWhole + G sharp (whole note) U+E17C - + Classes @@ -15031,10 +16949,11 @@ - - H (whole note) + + noteHWhole + H (whole note) U+E17D - + Classes @@ -15044,10 +16963,11 @@ - - H sharp (whole note) + + noteHSharpWhole + H sharp (whole note) U+E17E - + Classes @@ -15057,10 +16977,11 @@ - - A flat (half note) + + noteAFlatHalf + A flat (half note) U+E17F - + Classes @@ -15070,10 +16991,11 @@ - - A (half note) + + noteAHalf + A (half note) U+E180 - + Classes @@ -15083,10 +17005,11 @@ - - A sharp (half note) + + noteASharpHalf + A sharp (half note) U+E181 - + Classes @@ -15096,10 +17019,11 @@ - - B flat (half note) + + noteBFlatHalf + B flat (half note) U+E182 - + Classes @@ -15109,10 +17033,11 @@ - - B (half note) + + noteBHalf + B (half note) U+E183 - + Classes @@ -15122,10 +17047,11 @@ - - B sharp (half note) + + noteBSharpHalf + B sharp (half note) U+E184 - + Classes @@ -15135,10 +17061,11 @@ - - C flat (half note) + + noteCFlatHalf + C flat (half note) U+E185 - + Classes @@ -15148,10 +17075,11 @@ - - C (half note) + + noteCHalf + C (half note) U+E186 - + Classes @@ -15161,10 +17089,11 @@ - - C sharp (half note) + + noteCSharpHalf + C sharp (half note) U+E187 - + Classes @@ -15174,10 +17103,11 @@ - - D flat (half note) + + noteDFlatHalf + D flat (half note) U+E188 - + Classes @@ -15187,10 +17117,11 @@ - - D (half note) + + noteDHalf + D (half note) U+E189 - + Classes @@ -15200,10 +17131,11 @@ - - D sharp (half note) + + noteDSharpHalf + D sharp (half note) U+E18A - + Classes @@ -15213,10 +17145,11 @@ - - E flat (half note) + + noteEFlatHalf + E flat (half note) U+E18B - + Classes @@ -15226,10 +17159,11 @@ - - E (half note) + + noteEHalf + E (half note) U+E18C - + Classes @@ -15239,10 +17173,11 @@ - - E sharp (half note) + + noteESharpHalf + E sharp (half note) U+E18D - + Classes @@ -15252,10 +17187,11 @@ - - F flat (half note) + + noteFFlatHalf + F flat (half note) U+E18E - + Classes @@ -15265,10 +17201,11 @@ - - F (half note) + + noteFHalf + F (half note) U+E18F - + Classes @@ -15278,10 +17215,11 @@ - - F sharp (half note) + + noteFSharpHalf + F sharp (half note) U+E190 - + Classes @@ -15291,10 +17229,11 @@ - - G flat (half note) + + noteGFlatHalf + G flat (half note) U+E191 - + Classes @@ -15304,10 +17243,11 @@ - - G (half note) + + noteGHalf + G (half note) U+E192 - + Classes @@ -15317,10 +17257,11 @@ - - G sharp (half note) + + noteGSharpHalf + G sharp (half note) U+E193 - + Classes @@ -15330,10 +17271,11 @@ - - H (half note) + + noteHHalf + H (half note) U+E194 - + Classes @@ -15343,10 +17285,11 @@ - - H sharp (half note) + + noteHSharpHalf + H sharp (half note) U+E195 - + Classes @@ -15356,10 +17299,11 @@ - - A flat (black note) + + noteAFlatBlack + A flat (black note) U+E196 - + Classes @@ -15369,10 +17313,11 @@ - - A (black note) + + noteABlack + A (black note) U+E197 - + Classes @@ -15382,10 +17327,11 @@ - - A sharp (black note) + + noteASharpBlack + A sharp (black note) U+E198 - + Classes @@ -15395,10 +17341,11 @@ - - B flat (black note) + + noteBFlatBlack + B flat (black note) U+E199 - + Classes @@ -15408,10 +17355,11 @@ - - B (black note) + + noteBBlack + B (black note) U+E19A - + Classes @@ -15421,10 +17369,11 @@ - - B sharp (black note) + + noteBSharpBlack + B sharp (black note) U+E19B - + Classes @@ -15434,10 +17383,11 @@ - - C flat (black note) + + noteCFlatBlack + C flat (black note) U+E19C - + Classes @@ -15447,10 +17397,11 @@ - - C (black note) + + noteCBlack + C (black note) U+E19D - + Classes @@ -15460,10 +17411,11 @@ - - C sharp (black note) + + noteCSharpBlack + C sharp (black note) U+E19E - + Classes @@ -15473,10 +17425,11 @@ - - D flat (black note) + + noteDFlatBlack + D flat (black note) U+E19F - + Classes @@ -15486,10 +17439,11 @@ - - D (black note) + + noteDBlack + D (black note) U+E1A0 - + Classes @@ -15499,10 +17453,11 @@ - - D sharp (black note) + + noteDSharpBlack + D sharp (black note) U+E1A1 - + Classes @@ -15512,10 +17467,11 @@ - - E flat (black note) + + noteEFlatBlack + E flat (black note) U+E1A2 - + Classes @@ -15525,10 +17481,11 @@ - - E (black note) + + noteEBlack + E (black note) U+E1A3 - + Classes @@ -15538,10 +17495,11 @@ - - E sharp (black note) + + noteESharpBlack + E sharp (black note) U+E1A4 - + Classes @@ -15551,10 +17509,11 @@ - - F flat (black note) + + noteFFlatBlack + F flat (black note) U+E1A5 - + Classes @@ -15564,10 +17523,11 @@ - - F (black note) + + noteFBlack + F (black note) U+E1A6 - + Classes @@ -15577,10 +17537,11 @@ - - F sharp (black note) + + noteFSharpBlack + F sharp (black note) U+E1A7 - + Classes @@ -15590,10 +17551,11 @@ - - G flat (black note) + + noteGFlatBlack + G flat (black note) U+E1A8 - + Classes @@ -15603,10 +17565,11 @@ - - G (black note) + + noteGBlack + G (black note) U+E1A9 - + Classes @@ -15616,10 +17579,11 @@ - - G sharp (black note) + + noteGSharpBlack + G sharp (black note) U+E1AA - + Classes @@ -15629,10 +17593,11 @@ - - H (black note) + + noteHBlack + H (black note) U+E1AB - + Classes @@ -15642,10 +17607,11 @@ - - H sharp (black note) + + noteHSharpBlack + H sharp (black note) U+E1AC - + Classes @@ -15655,10 +17621,11 @@ - - Empty whole note + + noteEmptyWhole + Empty whole note U+E1AD - + Classes @@ -15667,10 +17634,11 @@ - - Empty half note + + noteEmptyHalf + Empty half note U+E1AE - + Classes @@ -15679,10 +17647,11 @@ - - Empty black note + + noteEmptyBlack + Empty black note U+E1AF - + Classes @@ -15694,10 +17663,11 @@ Noteheads - - Double whole (breve) notehead + + noteheadDoubleWhole + Double whole (breve) notehead U+E0A0 - + Classes @@ -15707,10 +17677,11 @@ - - Double whole (breve) notehead (square) + + noteheadDoubleWholeSquare + Double whole (breve) notehead (square) U+E0A1 - + Classes @@ -15720,10 +17691,11 @@ - - Whole (semibreve) notehead + + noteheadWhole + Whole (semibreve) notehead U+E0A2 - + Classes @@ -15733,11 +17705,12 @@ - - Half (minim) notehead + + noteheadHalf + Half (minim) notehead U+E0A3 U+1D157 - + Classes @@ -15747,11 +17720,12 @@ - - Black notehead + + noteheadBlack + Black notehead U+E0A4 U+1D158 - + Classes @@ -15761,11 +17735,12 @@ - - Null notehead + + noteheadNull + Null notehead U+E0A5 U+1D159 - + Classes @@ -15774,10 +17749,11 @@ - - X notehead double whole + + noteheadXDoubleWhole + X notehead double whole U+E0A6 - + Classes @@ -15787,10 +17763,11 @@ - - X notehead whole + + noteheadXWhole + X notehead whole U+E0A7 - + Classes @@ -15800,10 +17777,11 @@ - - X notehead half + + noteheadXHalf + X notehead half U+E0A8 - + Classes @@ -15813,11 +17791,12 @@ - - X notehead black + + noteheadXBlack + X notehead black U+E0A9 U+1D143 - + Classes @@ -15827,10 +17806,11 @@ - - Ornate X notehead + + noteheadXOrnate + Ornate X notehead U+E0AA - + Classes @@ -15840,10 +17820,11 @@ - - Ornate X notehead in ellipse + + noteheadXOrnateEllipse + Ornate X notehead in ellipse U+E0AB - + Classes @@ -15852,10 +17833,11 @@ - - Plus notehead double whole + + noteheadPlusDoubleWhole + Plus notehead double whole U+E0AC - + Classes @@ -15865,10 +17847,11 @@ - - Plus notehead whole + + noteheadPlusWhole + Plus notehead whole U+E0AD - + Classes @@ -15878,10 +17861,11 @@ - - Plus notehead half + + noteheadPlusHalf + Plus notehead half U+E0AE - + Classes @@ -15891,11 +17875,12 @@ - - Plus notehead black + + noteheadPlusBlack + Plus notehead black U+E0AF U+1D144 - + Classes @@ -15905,10 +17890,11 @@ - - Circle X double whole + + noteheadCircleXDoubleWhole + Circle X double whole U+E0B0 - + Classes @@ -15919,10 +17905,11 @@ - - Circle X whole + + noteheadCircleXWhole + Circle X whole U+E0B1 - + Classes @@ -15932,10 +17919,11 @@ - - Circle X half + + noteheadCircleXHalf + Circle X half U+E0B2 - + Classes @@ -15945,11 +17933,12 @@ - - Circle X notehead + + noteheadCircleX + Circle X notehead U+E0B3 U+1D145 - + Classes @@ -15959,10 +17948,11 @@ - - Double whole notehead with X + + noteheadDoubleWholeWithX + Double whole notehead with X U+E0B4 - + Classes @@ -15973,10 +17963,11 @@ - - Whole notehead with X + + noteheadWholeWithX + Whole notehead with X U+E0B5 - + Classes @@ -15986,10 +17977,11 @@ - - Half notehead with X + + noteheadHalfWithX + Half notehead with X U+E0B6 - + Classes @@ -15999,10 +17991,11 @@ - - Void notehead with X + + noteheadVoidWithX + Void notehead with X U+E0B7 - + Classes @@ -16012,11 +18005,12 @@ - - Square notehead white + + noteheadSquareWhite + Square notehead white U+E0B8 U+1D146 - + Classes @@ -16025,11 +18019,12 @@ - - Square notehead black + + noteheadSquareBlack + Square notehead black U+E0B9 U+1D147 - + Classes @@ -16038,10 +18033,11 @@ - - Triangle notehead up double whole + + noteheadTriangleUpDoubleWhole + Triangle notehead up double whole U+E0BA - + Classes @@ -16051,10 +18047,11 @@ - - Triangle notehead up whole + + noteheadTriangleUpWhole + Triangle notehead up whole U+E0BB - + Classes @@ -16064,10 +18061,11 @@ - - Triangle notehead up half + + noteheadTriangleUpHalf + Triangle notehead up half U+E0BC - + Classes @@ -16077,11 +18075,12 @@ - - Triangle notehead up white + + noteheadTriangleUpWhite + Triangle notehead up white U+E0BD U+1D148 - + Classes @@ -16091,11 +18090,12 @@ - - Triangle notehead up black + + noteheadTriangleUpBlack + Triangle notehead up black U+E0BE U+1D149 - + Classes @@ -16105,11 +18105,12 @@ - - Triangle notehead left white + + noteheadTriangleLeftWhite + Triangle notehead left white U+E0BF U+1D14A - + Classes @@ -16119,11 +18120,12 @@ - - Triangle notehead left black + + noteheadTriangleLeftBlack + Triangle notehead left black U+E0C0 U+1D14B - + Classes @@ -16133,11 +18135,12 @@ - - Triangle notehead right white + + noteheadTriangleRightWhite + Triangle notehead right white U+E0C1 U+1D14C - + Classes @@ -16147,11 +18150,12 @@ - - Triangle notehead right black + + noteheadTriangleRightBlack + Triangle notehead right black U+E0C2 U+1D14D - + Classes @@ -16161,10 +18165,11 @@ - - Triangle notehead down double whole + + noteheadTriangleDownDoubleWhole + Triangle notehead down double whole U+E0C3 - + Classes @@ -16174,10 +18179,11 @@ - - Triangle notehead down whole + + noteheadTriangleDownWhole + Triangle notehead down whole U+E0C4 - + Classes @@ -16187,10 +18193,11 @@ - - Triangle notehead down half + + noteheadTriangleDownHalf + Triangle notehead down half U+E0C5 - + Classes @@ -16200,11 +18207,12 @@ - - Triangle notehead down white + + noteheadTriangleDownWhite + Triangle notehead down white U+E0C6 U+1D14E - + Classes @@ -16214,11 +18222,12 @@ - - Triangle notehead down black + + noteheadTriangleDownBlack + Triangle notehead down black U+E0C7 U+1D14F - + Classes @@ -16228,11 +18237,12 @@ - - Triangle notehead up right white + + noteheadTriangleUpRightWhite + Triangle notehead up right white U+E0C8 U+1D150 - + Classes @@ -16241,11 +18251,12 @@ - - Triangle notehead up right black + + noteheadTriangleUpRightBlack + Triangle notehead up right black U+E0C9 U+1D151 - + Classes @@ -16254,11 +18265,12 @@ - - Moon notehead white + + noteheadMoonWhite + Moon notehead white U+E0CA U+1D152 - + Classes @@ -16267,11 +18279,12 @@ - - Moon notehead black + + noteheadMoonBlack + Moon notehead black U+E0CB U+1D153 - + Classes @@ -16280,11 +18293,12 @@ - - Triangle-round notehead down white + + noteheadTriangleRoundDownWhite + Triangle-round notehead down white U+E0CC U+1D154 - + Classes @@ -16293,11 +18307,12 @@ - - Triangle-round notehead down black + + noteheadTriangleRoundDownBlack + Triangle-round notehead down black U+E0CD U+1D155 - + Classes @@ -16306,11 +18321,12 @@ - - Parenthesis notehead + + noteheadParenthesis + Parenthesis notehead U+E0CE U+1D156 - + Classes @@ -16319,10 +18335,11 @@ - - Slashed black notehead (bottom left to top right) + + noteheadSlashedBlack1 + Slashed black notehead (bottom left to top right) U+E0CF - + Classes @@ -16332,10 +18349,11 @@ - - Slashed black notehead (top left to bottom right) + + noteheadSlashedBlack2 + Slashed black notehead (top left to bottom right) U+E0D0 - + Classes @@ -16345,10 +18363,11 @@ - - Slashed half notehead (bottom left to top right) + + noteheadSlashedHalf1 + Slashed half notehead (bottom left to top right) U+E0D1 - + Classes @@ -16358,10 +18377,11 @@ - - Slashed half notehead (top left to bottom right) + + noteheadSlashedHalf2 + Slashed half notehead (top left to bottom right) U+E0D2 - + Classes @@ -16371,10 +18391,11 @@ - - Slashed whole notehead (bottom left to top right) + + noteheadSlashedWhole1 + Slashed whole notehead (bottom left to top right) U+E0D3 - + Classes @@ -16384,10 +18405,11 @@ - - Slashed whole notehead (top left to bottom right) + + noteheadSlashedWhole2 + Slashed whole notehead (top left to bottom right) U+E0D4 - + Classes @@ -16397,10 +18419,11 @@ - - Slashed double whole notehead (bottom left to top right) + + noteheadSlashedDoubleWhole1 + Slashed double whole notehead (bottom left to top right) U+E0D5 - + Classes @@ -16410,10 +18433,11 @@ - - Slashed double whole notehead (top left to bottom right) + + noteheadSlashedDoubleWhole2 + Slashed double whole notehead (top left to bottom right) U+E0D6 - + Classes @@ -16423,10 +18447,11 @@ - - Diamond double whole notehead + + noteheadDiamondDoubleWhole + Diamond double whole notehead U+E0D7 - + Classes @@ -16436,10 +18461,11 @@ - - Diamond whole notehead + + noteheadDiamondWhole + Diamond whole notehead U+E0D8 - + Classes @@ -16449,10 +18475,11 @@ - - Diamond half notehead + + noteheadDiamondHalf + Diamond half notehead U+E0D9 - + Classes @@ -16462,15 +18489,17 @@ - - Diamond half notehead (wide) + + noteheadDiamondHalfWide + Diamond half notehead (wide) U+E0DA - + - - Diamond black notehead + + noteheadDiamondBlack + Diamond black notehead U+E0DB - + Classes @@ -16480,15 +18509,17 @@ - - Diamond black notehead (wide) + + noteheadDiamondBlackWide + Diamond black notehead (wide) U+E0DC - + - - Diamond white notehead + + noteheadDiamondWhite + Diamond white notehead U+E0DD - + Classes @@ -16497,10 +18528,11 @@ - - Diamond white notehead (wide) + + noteheadDiamondWhiteWide + Diamond white notehead (wide) U+E0DE - + Classes @@ -16509,10 +18541,11 @@ - - Diamond double whole notehead (old) + + noteheadDiamondDoubleWholeOld + Diamond double whole notehead (old) U+E0DF - + Classes @@ -16522,10 +18555,11 @@ - - Diamond whole notehead (old) + + noteheadDiamondWholeOld + Diamond whole notehead (old) U+E0E0 - + Classes @@ -16535,10 +18569,11 @@ - - Diamond half notehead (old) + + noteheadDiamondHalfOld + Diamond half notehead (old) U+E0E1 - + Classes @@ -16548,10 +18583,11 @@ - - Diamond black notehead (old) + + noteheadDiamondBlackOld + Diamond black notehead (old) U+E0E2 - + Classes @@ -16561,10 +18597,11 @@ - - Half-filled diamond notehead + + noteheadDiamondHalfFilled + Half-filled diamond notehead U+E0E3 - + Classes @@ -16574,10 +18611,11 @@ - - Circled black notehead + + noteheadCircledBlack + Circled black notehead U+E0E4 - + Classes @@ -16587,10 +18625,11 @@ - - Circled half notehead + + noteheadCircledHalf + Circled half notehead U+E0E5 - + Classes @@ -16600,10 +18639,11 @@ - - Circled whole notehead + + noteheadCircledWhole + Circled whole notehead U+E0E6 - + Classes @@ -16613,10 +18653,11 @@ - - Circled double whole notehead + + noteheadCircledDoubleWhole + Circled double whole notehead U+E0E7 - + Classes @@ -16626,10 +18667,11 @@ - - Black notehead in large circle + + noteheadCircledBlackLarge + Black notehead in large circle U+E0E8 - + Classes @@ -16638,10 +18680,11 @@ - - Half notehead in large circle + + noteheadCircledHalfLarge + Half notehead in large circle U+E0E9 - + Classes @@ -16650,10 +18693,11 @@ - - Whole notehead in large circle + + noteheadCircledWholeLarge + Whole notehead in large circle U+E0EA - + Classes @@ -16662,10 +18706,11 @@ - - Double whole notehead in large circle + + noteheadCircledDoubleWholeLarge + Double whole notehead in large circle U+E0EB - + Classes @@ -16674,10 +18719,11 @@ - - Cross notehead in large circle + + noteheadCircledXLarge + Cross notehead in large circle U+E0EC - + Classes @@ -16686,10 +18732,11 @@ - - Large arrow up (highest pitch) double whole notehead + + noteheadLargeArrowUpDoubleWhole + Large arrow up (highest pitch) double whole notehead U+E0ED - + Classes @@ -16699,10 +18746,11 @@ - - Large arrow up (highest pitch) whole notehead + + noteheadLargeArrowUpWhole + Large arrow up (highest pitch) whole notehead U+E0EE - + Classes @@ -16712,10 +18760,11 @@ - - Large arrow up (highest pitch) half notehead + + noteheadLargeArrowUpHalf + Large arrow up (highest pitch) half notehead U+E0EF - + Classes @@ -16725,10 +18774,11 @@ - - Large arrow up (highest pitch) black notehead + + noteheadLargeArrowUpBlack + Large arrow up (highest pitch) black notehead U+E0F0 - + Classes @@ -16738,10 +18788,11 @@ - - Large arrow down (lowest pitch) double whole notehead + + noteheadLargeArrowDownDoubleWhole + Large arrow down (lowest pitch) double whole notehead U+E0F1 - + Classes @@ -16751,10 +18802,11 @@ - - Large arrow down (lowest pitch) whole notehead + + noteheadLargeArrowDownWhole + Large arrow down (lowest pitch) whole notehead U+E0F2 - + Classes @@ -16764,10 +18816,11 @@ - - Large arrow down (lowest pitch) half notehead + + noteheadLargeArrowDownHalf + Large arrow down (lowest pitch) half notehead U+E0F3 - + Classes @@ -16777,10 +18830,11 @@ - - Large arrow down (lowest pitch) black notehead + + noteheadLargeArrowDownBlack + Large arrow down (lowest pitch) black notehead U+E0F4 - + Classes @@ -16790,10 +18844,11 @@ - - Opening parenthesis + + noteheadParenthesisLeft + Opening parenthesis U+E0F5 - + Classes @@ -16803,10 +18858,11 @@ - - Closing parenthesis + + noteheadParenthesisRight + Closing parenthesis U+E0F6 - + Classes @@ -16816,10 +18872,11 @@ - - Circle slash notehead + + noteheadCircleSlash + Circle slash notehead U+E0F7 - + Classes @@ -16828,10 +18885,11 @@ - - Heavy X notehead + + noteheadHeavyX + Heavy X notehead U+E0F8 - + Classes @@ -16841,10 +18899,11 @@ - - Heavy X with hat notehead + + noteheadHeavyXHat + Heavy X with hat notehead U+E0F9 - + Classes @@ -16854,10 +18913,11 @@ - - Filled whole (semibreve) notehead + + noteheadWholeFilled + Filled whole (semibreve) notehead U+E0FA - + Classes @@ -16866,10 +18926,11 @@ - - Filled half (minim) notehead + + noteheadHalfFilled + Filled half (minim) notehead U+E0FB - + Classes @@ -16878,10 +18939,11 @@ - - Open diamond notehead + + noteheadDiamondOpen + Open diamond notehead U+E0FC - + Classes @@ -16893,69 +18955,264 @@ Octaves - - Ottava + + ottava + Ottava U+E510 - + + + + Classes + octaves + + - - Ottava alta + + ottavaAlta + Ottava alta U+E511 U+1D136 - + + + + Classes + octaves + + - - Ottava bassa + + ottavaBassa + Ottava bassa U+E512 U+1D137 - + + + + Classes + octaves + + - - Ottava bassa (ba) + + ottavaBassaBa + Ottava bassa (ba) U+E513 - + + + + Classes + octaves + + - - Quindicesima + + quindicesima + Quindicesima U+E514 - + + + + Classes + octaves + + - - Quindicesima alta + + quindicesimaAlta + Quindicesima alta U+E515 U+1D138 - + + + + Classes + octaves + + - - Quindicesima bassa + + quindicesimaBassa + Quindicesima bassa U+E516 U+1D139 - + + + + Classes + octaves + + - - Ventiduesima + + ventiduesima + Ventiduesima U+E517 - + + + + Classes + octaves + + - - Ventiduesima alta + + ventiduesimaAlta + Ventiduesima alta U+E518 - + + + + Classes + octaves + + - - Ventiduesima bassa + + ventiduesimaBassa + Ventiduesima bassa U+E519 - + + + + Classes + octaves + + - - Left parenthesis for octave signs + + octaveParensLeft + Left parenthesis for octave signs U+E51A - + + + + Classes + octaves + + - - Right parenthesis for octave signs + + octaveParensRight + Right parenthesis for octave signs U+E51B - + + + + Classes + octaves + + + + + ottavaBassaVb + Ottava bassa (8vb) + U+E51C + + + + Classes + octaves + + + + + quindicesimaBassaMb + Quindicesima bassa (mb) + U+E51D + + + + Classes + octaves + + + + + ventiduesimaBassaMb + Ventiduesima bassa (mb) + U+E51E + + + + Classes + octaves + + + + + octaveBassa + Bassa + U+E51F + + + + Classes + octaves + + + + + + Octaves supplement + + octaveLoco + Loco + U+EC90 + + + + Classes + octaves + + + + + octaveBaselineA + a (baseline) + U+EC91 + + + + octaveSuperscriptA + a (superscript) + U+EC92 + + + + octaveBaselineB + b (baseline) + U+EC93 + + + + octaveSuperscriptB + b (superscript) + U+EC94 + + + + octaveBaselineM + m (baseline) + U+EC95 + + + + octaveSuperscriptM + m (superscript) + U+EC96 + + + + octaveBaselineV + v (baseline) + U+EC97 + + + + octaveSuperscriptV + v (superscript) + U+EC98 + @@ -16964,10 +19221,11 @@ Other accidentals - - One-third-tone sharp (Xenakis) + + accidentalXenakisOneThirdToneSharp + One-third-tone sharp (Xenakis) U+E470 - + Classes @@ -16976,10 +19234,11 @@ - - Two-third-tones sharp (Xenakis) + + accidentalXenakisTwoThirdTonesSharp + Two-third-tones sharp (Xenakis) U+E471 - + Classes @@ -16988,10 +19247,11 @@ - - Quarter tone sharp (Busotti) + + accidentalQuarterToneSharpBusotti + Quarter tone sharp (Bussotti) U+E472 - + Classes @@ -17000,10 +19260,11 @@ - - One or three quarter tones sharp + + accidentalSharpOneHorizontalStroke + One or three quarter tones sharp U+E473 - + Classes @@ -17012,10 +19273,11 @@ - - Three quarter tones sharp (Busotti) + + accidentalThreeQuarterTonesSharpBusotti + Three quarter tones sharp (Bussotti) U+E474 - + Classes @@ -17024,10 +19286,11 @@ - - Quarter tone sharp with wiggly tail + + accidentalQuarterToneSharpWiggle + Quarter tone sharp with wiggly tail U+E475 - + Classes @@ -17036,10 +19299,11 @@ - - Byzantine-style slashed sharp (Tavener) + + accidentalTavenerSharp + Byzantine-style Büyük mücenneb sharp (Tavener) U+E476 - + Classes @@ -17048,10 +19312,11 @@ - - Byzantine-style slashed flat (Tavener) + + accidentalTavenerFlat + Byzantine-style Bakiye flat (Tavener) U+E477 - + Classes @@ -17060,10 +19325,11 @@ - - Quarter tone flat (Penderecki) + + accidentalQuarterToneFlatPenderecki + Quarter tone flat (Penderecki) U+E478 - + Classes @@ -17072,10 +19338,11 @@ - - Syntonic/Didymus comma (80:81) up (Bosanquet) + + accidentalCommaSlashUp + Syntonic/Didymus comma (80:81) up (Bosanquet) U+E479 - + Classes @@ -17084,10 +19351,11 @@ - - Syntonic/Didymus comma (80:81) down (Bosanquet) + + accidentalCommaSlashDown + Syntonic/Didymus comma (80:81) down (Bosanquet) U+E47A - + Classes @@ -17096,10 +19364,11 @@ - - Wilson plus (5 comma up) + + accidentalWilsonPlus + Wilson plus (5 comma up) U+E47B - + Classes @@ -17108,10 +19377,11 @@ - - Wilson minus (5 comma down) + + accidentalWilsonMinus + Wilson minus (5 comma down) U+E47C - + Classes @@ -17120,10 +19390,11 @@ - - Large double sharp + + accidentalLargeDoubleSharp + Large double sharp U+E47D - + Classes @@ -17133,11 +19404,12 @@ - - Quarter-tone sharp + + accidentalQuarterToneSharp4 + Quarter-tone sharp U+E47E U+1D132 - + Classes @@ -17146,11 +19418,12 @@ - - Quarter-tone flat + + accidentalQuarterToneFlat4 + Quarter-tone flat U+E47F U+1D133 - + Classes @@ -17159,10 +19432,11 @@ - - Filled reversed flat (quarter-tone flat) + + accidentalQuarterToneFlatFilledReversed + Filled reversed flat (quarter-tone flat) U+E480 - + Classes @@ -17171,10 +19445,11 @@ - - Reversed sharp + + accidentalSharpReversed + Reversed sharp U+E481 - + Classes @@ -17183,10 +19458,11 @@ - - Reversed natural + + accidentalNaturalReversed + Reversed natural U+E482 - + Classes @@ -17195,10 +19471,11 @@ - - Reversed double flat + + accidentalDoubleFlatReversed + Reversed double flat U+E483 - + Classes @@ -17207,10 +19484,11 @@ - - Turned flat + + accidentalFlatTurned + Turned flat U+E484 - + Classes @@ -17219,10 +19497,11 @@ - - Turned double flat + + accidentalDoubleFlatTurned + Turned double flat U+E485 - + Classes @@ -17231,10 +19510,11 @@ - - Three-quarter-tones flat (Grisey) + + accidentalThreeQuarterTonesFlatGrisey + Three-quarter-tones flat (Grisey) U+E486 - + Classes @@ -17243,10 +19523,11 @@ - - Three-quarter-tones flat (Tartini) + + accidentalThreeQuarterTonesFlatTartini + Three-quarter-tones flat (Tartini) U+E487 - + Classes @@ -17255,10 +19536,11 @@ - - Quarter-tone flat (van Blankenburg) + + accidentalQuarterToneFlatVanBlankenburg + Quarter-tone flat (van Blankenburg) U+E488 - + Classes @@ -17267,10 +19549,11 @@ - - Three-quarter-tones flat (Couper) + + accidentalThreeQuarterTonesFlatCouper + Three-quarter-tones flat (Couper) U+E489 - + Classes @@ -17279,10 +19562,11 @@ - - One-third-tone sharp (Ferneyhough) + + accidentalOneThirdToneSharpFerneyhough + One-third-tone sharp (Ferneyhough) U+E48A - + Classes @@ -17291,10 +19575,11 @@ - - One-third-tone flat (Ferneyhough) + + accidentalOneThirdToneFlatFerneyhough + One-third-tone flat (Ferneyhough) U+E48B - + Classes @@ -17303,10 +19588,11 @@ - - Two-third-tones sharp (Ferneyhough) + + accidentalTwoThirdTonesSharpFerneyhough + Two-third-tones sharp (Ferneyhough) U+E48C - + Classes @@ -17315,10 +19601,11 @@ - - Two-third-tones flat (Ferneyhough) + + accidentalTwoThirdTonesFlatFerneyhough + Two-third-tones flat (Ferneyhough) U+E48D - + Classes @@ -17330,10 +19617,11 @@ Other baroque ornaments - - Port de voix + + ornamentPortDeVoixV + Port de voix U+E570 - + Classes @@ -17342,10 +19630,11 @@ - - Right-facing half circle + + ornamentRightFacingHalfCircle + Right-facing half circle U+E571 - + Classes @@ -17354,10 +19643,11 @@ - - Left-facing half circle + + ornamentLeftFacingHalfCircle + Left-facing half circle U+E572 - + Classes @@ -17366,10 +19656,11 @@ - - Right-facing hook + + ornamentRightFacingHook + Right-facing hook U+E573 - + Classes @@ -17378,10 +19669,11 @@ - - Left-facing hook + + ornamentLeftFacingHook + Left-facing hook U+E574 - + Classes @@ -17390,10 +19682,11 @@ - - Hook before note + + ornamentHookBeforeNote + Hook before note U+E575 - + Classes @@ -17402,10 +19695,11 @@ - - Hook after note + + ornamentHookAfterNote + Hook after note U+E576 - + Classes @@ -17414,10 +19708,11 @@ - - Curve above + + ornamentUpCurve + Curve above U+E577 - + Classes @@ -17426,10 +19721,11 @@ - - Curve below + + ornamentDownCurve + Curve below U+E578 - + Classes @@ -17438,10 +19734,11 @@ - - Short oblique straight line SW-NE + + ornamentShortObliqueLineBeforeNote + Short oblique straight line SW-NE U+E579 - + Classes @@ -17450,10 +19747,11 @@ - - Short oblique straight line NW-SE + + ornamentShortObliqueLineAfterNote + Short oblique straight line NW-SE U+E57A - + Classes @@ -17462,10 +19760,11 @@ - - Oblique straight line SW-NE + + ornamentObliqueLineBeforeNote + Oblique straight line SW-NE U+E57B - + Classes @@ -17474,10 +19773,11 @@ - - Oblique straight line NW-SE + + ornamentObliqueLineAfterNote + Oblique straight line NW-SE U+E57C - + Classes @@ -17486,10 +19786,11 @@ - - Double oblique straight lines SW-NE + + ornamentDoubleObliqueLinesBeforeNote + Double oblique straight lines SW-NE U+E57D - + Classes @@ -17498,10 +19799,11 @@ - - Double oblique straight lines NW-SE + + ornamentDoubleObliqueLinesAfterNote + Double oblique straight lines NW-SE U+E57E - + Classes @@ -17510,10 +19812,11 @@ - - Oblique straight line tilted SW-NE + + ornamentObliqueLineHorizBeforeNote + Oblique straight line tilted SW-NE U+E57F - + Classes @@ -17522,10 +19825,11 @@ - - Oblique straight line tilted NW-SE + + ornamentObliqueLineHorizAfterNote + Oblique straight line tilted NW-SE U+E580 - + Classes @@ -17534,10 +19838,11 @@ - - Comma + + ornamentComma + Comma U+E581 - + Classes @@ -17546,10 +19851,11 @@ - - Shake + + ornamentShake3 + Shake U+E582 - + Classes @@ -17558,10 +19864,11 @@ - - Vertical line + + ornamentVerticalLine + Vertical line U+E583 - + Classes @@ -17570,10 +19877,11 @@ - - Shake (Muffat) + + ornamentShakeMuffat1 + Shake (Muffat) U+E584 - + Classes @@ -17582,11 +19890,12 @@ - - Glissando up + + glissandoUp + Glissando up U+E585 U+1D1B1 - + Classes @@ -17595,11 +19904,12 @@ - - Glissando down + + glissandoDown + Glissando down U+E586 U+1D1B2 - + Classes @@ -17608,10 +19918,11 @@ - - Schleifer (long mordent) + + ornamentSchleifer + Schleifer (long mordent) U+E587 - + Classes @@ -17620,10 +19931,11 @@ - - Pincé (Couperin) + + ornamentPinceCouperin + Pincé (Couperin) U+E588 - + Classes @@ -17631,10 +19943,11 @@ - - Tremblement appuyé (Couperin) + + ornamentTremblementCouperin + Tremblement appuyé (Couperin) U+E589 - + Classes @@ -17645,10 +19958,11 @@ Percussion playing technique pictograms - - Stick shot + + pictStickShot + Stick shot U+E7F0 - + Classes @@ -17656,10 +19970,11 @@ - - Scrape from center to edge + + pictScrapeCenterToEdge + Scrape from center to edge U+E7F1 - + Classes @@ -17667,10 +19982,11 @@ - - Scrape from edge to center + + pictScrapeEdgeToCenter + Scrape from edge to center U+E7F2 - + Classes @@ -17678,10 +19994,11 @@ - - Scrape around rim + + pictScrapeAroundRim + Scrape around rim U+E7F3 - + Classes @@ -17689,10 +20006,11 @@ - - On rim + + pictOnRim + On rim U+E7F4 - + Classes @@ -17700,10 +20018,11 @@ - - Closed / rim shot + + pictOpenRimShot + Closed / rim shot U+E7F5 - + Classes @@ -17711,10 +20030,11 @@ - - Half-open + + pictHalfOpen1 + Half-open U+E7F6 - + Classes @@ -17722,10 +20042,11 @@ - - Half-open 2 (Weinberg) + + pictHalfOpen2 + Half-open 2 (Weinberg) U+E7F7 - + Classes @@ -17733,10 +20054,11 @@ - - Open + + pictOpen + Open U+E7F8 - + Classes @@ -17744,10 +20066,11 @@ - - Damp + + pictDamp1 + Damp U+E7F9 - + Classes @@ -17755,10 +20078,11 @@ - - Damp 2 + + pictDamp2 + Damp 2 U+E7FA - + Classes @@ -17766,10 +20090,11 @@ - - Damp 3 + + pictDamp3 + Damp 3 U+E7FB - + Classes @@ -17777,10 +20102,11 @@ - - Damp 4 + + pictDamp4 + Damp 4 U+E7FC - + Classes @@ -17788,10 +20114,11 @@ - - Rim shot (on stem) + + pictRimShotOnStem + Rim shot for stem U+E7FD - + Classes @@ -17800,10 +20127,11 @@ - - Center (Weinberg) + + pictCenter1 + Center (Weinberg) U+E7FE - + Classes @@ -17811,10 +20139,11 @@ - - Center (Ghent) + + pictCenter2 + Center (Ghent) U+E7FF - + Classes @@ -17822,10 +20151,11 @@ - - Center (Caltabiano) + + pictCenter3 + Center (Caltabiano) U+E800 - + Classes @@ -17833,10 +20163,11 @@ - - Rim or edge (Weinberg) + + pictRim1 + Rim or edge (Weinberg) U+E801 - + Classes @@ -17844,10 +20175,11 @@ - - Rim (Ghent) + + pictRim2 + Rim (Ghent) U+E802 - + Classes @@ -17855,10 +20187,11 @@ - - Rim (Caltabiano) + + pictRim3 + Rim (Caltabiano) U+E803 - + Classes @@ -17866,10 +20199,11 @@ - - Normal position (Caltabiano) + + pictNormalPosition + Normal position (Caltabiano) U+E804 - + Classes @@ -17877,10 +20211,11 @@ - - Choke (Weinberg) + + pictChokeCymbal + Choke (Weinberg) U+E805 - + Classes @@ -17888,10 +20223,11 @@ - - Left hand (Agostini) + + pictRightHandSquare + Left hand (Agostini) U+E806 - + Classes @@ -17899,10 +20235,11 @@ - - Right hand (Agostini) + + pictLeftHandCircle + Right hand (Agostini) U+E807 - + Classes @@ -17910,10 +20247,11 @@ - - Combining swish for stem + + pictSwishStem + Combining swish for stem U+E808 - + Classes @@ -17922,10 +20260,11 @@ - - Combining turn right for stem + + pictTurnRightStem + Combining turn right for stem U+E809 - + Classes @@ -17934,10 +20273,11 @@ - - Combining turn left for stem + + pictTurnLeftStem + Combining turn left for stem U+E80A - + Classes @@ -17946,10 +20286,11 @@ - - Combining turn left or right for stem + + pictTurnRightLeftStem + Combining turn left or right for stem U+E80B - + Classes @@ -17958,10 +20299,11 @@ - - Combining crush for stem + + pictCrushStem + Combining crush for stem U+E80C - + Classes @@ -17970,10 +20312,11 @@ - - Combining X for stem (dead note) + + pictDeadNoteStem + Combining X for stem (dead note) U+E80D - + Classes @@ -17985,10 +20328,11 @@ Persian accidentals - - Koron (quarter tone flat) + + accidentalKoron + Koron (quarter tone flat) U+E460 - + Classes @@ -17998,10 +20342,11 @@ - - Sori (quarter tone sharp) + + accidentalSori + Sori (quarter tone sharp) U+E461 - + Classes @@ -18014,71 +20359,83 @@ Plucked techniques - - Snap pizzicato below + + pluckedSnapPizzicatoBelow + Snap pizzicato below U+E630 U+1D1AD - + - - Snap pizzicato above + + pluckedSnapPizzicatoAbove + Snap pizzicato above U+E631 - + - - Buzz pizzicato + + pluckedBuzzPizzicato + Buzz pizzicato U+E632 - + - - Left-hand pizzicato + + pluckedLeftHandPizzicato + Left-hand pizzicato U+E633 - + - - Arpeggiato up + + arpeggiatoUp + Arpeggiato up U+E634 U+1D183 - + - - Arpeggiato down + + arpeggiatoDown + Arpeggiato down U+E635 U+1D184 - + - - With fingernails + + pluckedWithFingernails + With fingernails U+E636 U+1D1B3 - + - - Fingernail flick + + pluckedFingernailFlick + Fingernail flick U+E637 - + - - Damp + + pluckedDamp + Damp U+E638 U+1D1B4 - + - - Damp all + + pluckedDampAll + Damp all U+E639 U+1D1B5 - + - - Plectrum + + pluckedPlectrum + Plectrum U+E63A - + - - Damp (on stem) + + pluckedDampOnStem + Damp for stem U+E63B - + Classes @@ -18089,10 +20446,11 @@ Precomposed trills and mordents - - Slide + + ornamentPrecompSlide + Slide U+E5B0 - + Classes @@ -18101,10 +20459,11 @@ - - Descending slide + + ornamentPrecompDescendingSlide + Descending slide U+E5B1 - + Classes @@ -18113,10 +20472,11 @@ - - Supported appoggiatura trill + + ornamentPrecompAppoggTrill + Supported appoggiatura trill U+E5B2 - + Classes @@ -18125,10 +20485,11 @@ - - Supported appoggiatura trill with two-note suffix + + ornamentPrecompAppoggTrillSuffix + Supported appoggiatura trill with two-note suffix U+E5B3 - + Classes @@ -18137,10 +20498,11 @@ - - Turn-trill (D'Anglebert) + + ornamentPrecompTurnTrillDAnglebert + Turn-trill (D'Anglebert) U+E5B4 - + Classes @@ -18149,10 +20511,11 @@ - - Slide-trill (D'Anglebert) + + ornamentPrecompSlideTrillDAnglebert + Slide-trill (D'Anglebert) U+E5B5 - + Classes @@ -18161,10 +20524,11 @@ - - Slide-trill with one-note suffix (Marpurg) + + ornamentPrecompSlideTrillMarpurg + Slide-trill with one-note suffix (Marpurg) U+E5B6 - + Classes @@ -18173,10 +20537,11 @@ - - Turn-trill with two-note suffix (J.S. Bach) + + ornamentPrecompTurnTrillBach + Turn-trill with two-note suffix (J.S. Bach) U+E5B7 - + Classes @@ -18185,10 +20550,11 @@ - - Slide-trill with two-note suffix (J.S. Bach) + + ornamentPrecompSlideTrillBach + Slide-trill with two-note suffix (J.S. Bach) U+E5B8 - + Classes @@ -18197,10 +20563,11 @@ - - Slide-trill (Muffat) + + ornamentPrecompSlideTrillMuffat + Slide-trill (Muffat) U+E5B9 - + Classes @@ -18209,10 +20576,11 @@ - - Slide-trill with two-note suffix (Muffat) + + ornamentPrecompSlideTrillSuffixMuffat + Slide-trill with two-note suffix (Muffat) U+E5BA - + Classes @@ -18221,10 +20589,11 @@ - - Trill with two-note suffix (Dandrieu) + + ornamentPrecompTrillSuffixDandrieu + Trill with two-note suffix (Dandrieu) U+E5BB - + Classes @@ -18233,10 +20602,11 @@ - - Pre-beat port de voix follwed by multiple mordent (Dandrieu) + + ornamentPrecompPortDeVoixMordent + Pre-beat port de voix follwed by multiple mordent (Dandrieu) U+E5BC - + Classes @@ -18245,10 +20615,11 @@ - - Trill with mordent + + ornamentPrecompTrillWithMordent + Trill with mordent U+E5BD - + Classes @@ -18256,10 +20627,11 @@ - - Cadence + + ornamentPrecompCadence + Cadence U+E5BE - + Classes @@ -18267,10 +20639,11 @@ - - Cadence with turn + + ornamentPrecompCadenceWithTurn + Cadence with turn U+E5BF - + Classes @@ -18278,10 +20651,11 @@ - - Double cadence with lower prefix + + ornamentPrecompDoubleCadenceLowerPrefix + Double cadence with lower prefix U+E5C0 - + Classes @@ -18289,10 +20663,11 @@ - - Cadence with upper prefix + + ornamentPrecompCadenceUpperPrefix + Cadence with upper prefix U+E5C1 - + Classes @@ -18300,10 +20675,11 @@ - - Cadence with upper prefix and turn + + ornamentPrecompCadenceUpperPrefixTurn + Cadence with upper prefix and turn U+E5C2 - + Classes @@ -18311,10 +20687,11 @@ - - Double cadence with upper prefix + + ornamentPrecompDoubleCadenceUpperPrefix + Double cadence with upper prefix U+E5C3 - + Classes @@ -18322,10 +20699,11 @@ - - Double cadence with upper prefix and turn + + ornamentPrecompDoubleCadenceUpperPrefixTurn + Double cadence with upper prefix and turn U+E5C4 - + Classes @@ -18333,10 +20711,11 @@ - - Mordent with release + + ornamentPrecompMordentRelease + Mordent with release U+E5C5 - + Classes @@ -18344,10 +20723,11 @@ - - Mordent with upper prefix + + ornamentPrecompMordentUpperPrefix + Mordent with upper prefix U+E5C6 - + Classes @@ -18355,10 +20735,11 @@ - - Inverted mordent with upper prefix + + ornamentPrecompInvertedMordentUpperPrefix + Inverted mordent with upper prefix U+E5C7 - + Classes @@ -18366,10 +20747,11 @@ - - Trill with lower suffix + + ornamentPrecompTrillLowerSuffix + Trill with lower suffix U+E5C8 - + Classes @@ -18380,10 +20762,11 @@ Promethean Sagittal extension (high precision) multi-shaft accidentals - - Sharp 23S-down + + accSagittalSharp23SDown + Sharp 23S-down U+E3B0 - + Classes @@ -18393,10 +20776,11 @@ - - Flat 23S-up + + accSagittalFlat23SUp + Flat 23S-up U+E3B1 - + Classes @@ -18406,10 +20790,11 @@ - - Sharp 49S-down + + accSagittalSharp49SDown + Sharp 49S-down U+E3B2 - + Classes @@ -18419,10 +20804,11 @@ - - Flat 49S-up + + accSagittalFlat49SUp + Flat 49S-up U+E3B3 - + Classes @@ -18432,10 +20818,11 @@ - - Sharp 7:19C-down + + accSagittalSharp7v19CDown + Sharp 7:19C-down U+E3B4 - + Classes @@ -18445,10 +20832,11 @@ - - Flat 7:19C-up + + accSagittalFlat7v19CUp + Flat 7:19C-up U+E3B5 - + Classes @@ -18458,10 +20846,11 @@ - - Sharp 19C-down + + accSagittalSharp19CDown + Sharp 19C-down U+E3B6 - + Classes @@ -18471,10 +20860,11 @@ - - Flat 19C-up + + accSagittalFlat19CUp + Flat 19C-up U+E3B7 - + Classes @@ -18484,10 +20874,11 @@ - - Sharp 11:49C-down + + accSagittalSharp11v49CDown + Sharp 11:49C-down U+E3B8 - + Classes @@ -18497,10 +20888,11 @@ - - Flat 11:49C-up + + accSagittalFlat11v49CUp + Flat 11:49C-up U+E3B9 - + Classes @@ -18510,10 +20902,11 @@ - - Sharp 143C-down + + accSagittalSharp143CDown + Sharp 143C-down U+E3BA - + Classes @@ -18523,10 +20916,11 @@ - - Flat 143C-up + + accSagittalFlat143CUp + Flat 143C-up U+E3BB - + Classes @@ -18536,10 +20930,11 @@ - - Sharp 17k-down + + accSagittalSharp17kDown + Sharp 17k-down U+E3BC - + Classes @@ -18549,10 +20944,11 @@ - - Flat 17k-up + + accSagittalFlat17kUp + Flat 17k-up U+E3BD - + Classes @@ -18562,10 +20958,11 @@ - - Sharp 19s-down + + accSagittalSharp19sDown + Sharp 19s-down U+E3BE - + Classes @@ -18575,10 +20972,11 @@ - - Flat 19s-up + + accSagittalFlat19sUp + Flat 19s-up U+E3BF - + Classes @@ -18588,10 +20986,11 @@ - - Sharp 19s-up + + accSagittalSharp19sUp + Sharp 19s-up U+E3C0 - + Classes @@ -18601,10 +21000,11 @@ - - Flat 19s-down + + accSagittalFlat19sDown + Flat 19s-down U+E3C1 - + Classes @@ -18614,10 +21014,11 @@ - - Sharp 17k-up + + accSagittalSharp17kUp + Sharp 17k-up U+E3C2 - + Classes @@ -18627,10 +21028,11 @@ - - Flat 17k-down + + accSagittalFlat17kDown + Flat 17k-down U+E3C3 - + Classes @@ -18640,10 +21042,11 @@ - - Sharp 143C-up + + accSagittalSharp143CUp + Sharp 143C-up U+E3C4 - + Classes @@ -18653,10 +21056,11 @@ - - Flat 143C-down + + accSagittalFlat143CDown + Flat 143C-down U+E3C5 - + Classes @@ -18666,10 +21070,11 @@ - - Sharp 11:49C-up + + accSagittalSharp11v49CUp + Sharp 11:49C-up U+E3C6 - + Classes @@ -18679,10 +21084,11 @@ - - Flat 11:49C-down + + accSagittalFlat11v49CDown + Flat 11:49C-down U+E3C7 - + Classes @@ -18692,10 +21098,11 @@ - - Sharp 19C-up + + accSagittalSharp19CUp + Sharp 19C-up U+E3C8 - + Classes @@ -18705,10 +21112,11 @@ - - Flat 19C-down + + accSagittalFlat19CDown + Flat 19C-down U+E3C9 - + Classes @@ -18718,10 +21126,11 @@ - - Sharp 7:19C-up + + accSagittalSharp7v19CUp + Sharp 7:19C-up U+E3CA - + Classes @@ -18731,10 +21140,11 @@ - - Flat 7:19C-down + + accSagittalFlat7v19CDown + Flat 7:19C-down U+E3CB - + Classes @@ -18744,10 +21154,11 @@ - - Sharp 49S-up + + accSagittalSharp49SUp + Sharp 49S-up U+E3CC - + Classes @@ -18757,10 +21168,11 @@ - - Flat 49S-down + + accSagittalFlat49SDown + Flat 49S-down U+E3CD - + Classes @@ -18770,10 +21182,11 @@ - - Sharp 23S-up + + accSagittalSharp23SUp + Sharp 23S-up U+E3CE - + Classes @@ -18783,10 +21196,11 @@ - - Flat 23S-down + + accSagittalFlat23SDown + Flat 23S-down U+E3CF - + Classes @@ -18796,10 +21210,11 @@ - - Sharp 5:13M-up + + accSagittalSharp5v13MUp + Sharp 5:13M-up U+E3D0 - + Classes @@ -18809,10 +21224,11 @@ - - Flat 5:13M-down + + accSagittalFlat5v13MDown + Flat 5:13M-down U+E3D1 - + Classes @@ -18822,10 +21238,11 @@ - - Sharp 11:19M-up + + accSagittalSharp11v19MUp + Sharp 11:19M-up U+E3D2 - + Classes @@ -18835,10 +21252,11 @@ - - Flat 11:19M-down + + accSagittalFlat11v19MDown + Flat 11:19M-down U+E3D3 - + Classes @@ -18848,10 +21266,11 @@ - - Sharp 49M-up + + accSagittalSharp49MUp + Sharp 49M-up U+E3D4 - + Classes @@ -18861,10 +21280,11 @@ - - Flat 49M-down + + accSagittalFlat49MDown + Flat 49M-down U+E3D5 - + Classes @@ -18874,10 +21294,11 @@ - - Sharp 5:49M-up, (one and a half apotomes) + + accSagittalSharp5v49MUp + Sharp 5:49M-up, (one and a half apotomes) U+E3D6 - + Classes @@ -18887,10 +21308,11 @@ - - Flat 5:49M-down + + accSagittalFlat5v49MDown + Flat 5:49M-down U+E3D7 - + Classes @@ -18900,10 +21322,11 @@ - - Sharp 49L-up + + accSagittalSharp49LUp + Sharp 49L-up U+E3D8 - + Classes @@ -18913,10 +21336,11 @@ - - Flat 49L-down + + accSagittalFlat49LDown + Flat 49L-down U+E3D9 - + Classes @@ -18926,10 +21350,11 @@ - - Sharp 11:19L-up + + accSagittalSharp11v19LUp + Sharp 11:19L-up U+E3DA - + Classes @@ -18939,10 +21364,11 @@ - - Flat 11:19L-down + + accSagittalFlat11v19LDown + Flat 11:19L-down U+E3DB - + Classes @@ -18952,10 +21378,11 @@ - - Sharp 5:13L-up + + accSagittalSharp5v13LUp + Sharp 5:13L-up U+E3DC - + Classes @@ -18965,10 +21392,11 @@ - - Flat 5:13L-down + + accSagittalFlat5v13LDown + Flat 5:13L-down U+E3DD - + Classes @@ -18978,10 +21406,10 @@ - - Unused + + accSagittalUnused3 + Unused U+E3DE - Classes @@ -18991,10 +21419,10 @@ - - Unused + + accSagittalUnused4 + Unused U+E3DF - Classes @@ -19004,10 +21432,11 @@ - - Double sharp 23S-down + + accSagittalDoubleSharp23SDown + Double sharp 23S-down U+E3E0 - + Classes @@ -19017,10 +21446,11 @@ - - Double flat 23S-up + + accSagittalDoubleFlat23SUp + Double flat 23S-up U+E3E1 - + Classes @@ -19030,10 +21460,11 @@ - - Double sharp 49S-down + + accSagittalDoubleSharp49SDown + Double sharp 49S-down U+E3E2 - + Classes @@ -19043,10 +21474,11 @@ - - Double flat 49S-up + + accSagittalDoubleFlat49SUp + Double flat 49S-up U+E3E3 - + Classes @@ -19056,10 +21488,11 @@ - - Double sharp 7:19C-down + + accSagittalDoubleSharp7v19CDown + Double sharp 7:19C-down U+E3E4 - + Classes @@ -19069,10 +21502,11 @@ - - Double flat 7:19C-up + + accSagittalDoubleFlat7v19CUp + Double flat 7:19C-up U+E3E5 - + Classes @@ -19082,10 +21516,11 @@ - - Double sharp 19C-down + + accSagittalDoubleSharp19CDown + Double sharp 19C-down U+E3E6 - + Classes @@ -19095,10 +21530,11 @@ - - Double flat 19C-up + + accSagittalDoubleFlat19CUp + Double flat 19C-up U+E3E7 - + Classes @@ -19108,10 +21544,11 @@ - - Double sharp 11:49C-down + + accSagittalDoubleSharp11v49CDown + Double sharp 11:49C-down U+E3E8 - + Classes @@ -19121,10 +21558,11 @@ - - Double flat 11:49C-up + + accSagittalDoubleFlat11v49CUp + Double flat 11:49C-up U+E3E9 - + Classes @@ -19134,10 +21572,11 @@ - - Double sharp 143C-down + + accSagittalDoubleSharp143CDown + Double sharp 143C-down U+E3EA - + Classes @@ -19147,10 +21586,11 @@ - - Double flat 143C-up + + accSagittalDoubleFlat143CUp + Double flat 143C-up U+E3EB - + Classes @@ -19160,10 +21600,11 @@ - - Double sharp 17k-down + + accSagittalDoubleSharp17kDown + Double sharp 17k-down U+E3EC - + Classes @@ -19173,10 +21614,11 @@ - - Double flat 17k-up + + accSagittalDoubleFlat17kUp + Double flat 17k-up U+E3ED - + Classes @@ -19186,10 +21628,11 @@ - - Double sharp 19s-down + + accSagittalDoubleSharp19sDown + Double sharp 19s-down U+E3EE - + Classes @@ -19199,10 +21642,11 @@ - - Double flat 19s-up + + accSagittalDoubleFlat19sUp + Double flat 19s-up U+E3EF - + Classes @@ -19215,10 +21659,11 @@ Promethean Sagittal extension (high precision) single-shaft accidentals - - 19 schisma up, (19s) + + accSagittal19SchismaUp + 19 schisma up, (19s) U+E390 - + Classes @@ -19228,10 +21673,11 @@ - - 19 schisma down + + accSagittal19SchismaDown + 19 schisma down U+E391 - + Classes @@ -19241,10 +21687,11 @@ - - 17 kleisma up, (17k) + + accSagittal17KleismaUp + 17 kleisma up, (17k) U+E392 - + Classes @@ -19254,10 +21701,11 @@ - - 17 kleisma down + + accSagittal17KleismaDown + 17 kleisma down U+E393 - + Classes @@ -19267,10 +21715,11 @@ - - 143 comma up, (143C, 13L less 11M) + + accSagittal143CommaUp + 143 comma up, (143C, 13L less 11M) U+E394 - + Classes @@ -19280,10 +21729,11 @@ - - 143 comma down + + accSagittal143CommaDown + 143 comma down U+E395 - + Classes @@ -19293,10 +21743,11 @@ - - 11:49 comma up, (11:49C, 11M less 49C) + + accSagittal11v49CommaUp + 11:49 comma up, (11:49C, 11M less 49C) U+E396 - + Classes @@ -19306,10 +21757,11 @@ - - 11:49 comma down + + accSagittal11v49CommaDown + 11:49 comma down U+E397 - + Classes @@ -19319,10 +21771,11 @@ - - 19 comma up, (19C) + + accSagittal19CommaUp + 19 comma up, (19C) U+E398 - + Classes @@ -19332,10 +21785,11 @@ - - 19 comma down + + accSagittal19CommaDown + 19 comma down U+E399 - + Classes @@ -19345,10 +21799,11 @@ - - 7:19 comma up, (7:19C, 7C less 19s) + + accSagittal7v19CommaUp + 7:19 comma up, (7:19C, 7C less 19s) U+E39A - + Classes @@ -19358,10 +21813,11 @@ - - 7:19 comma down + + accSagittal7v19CommaDown + 7:19 comma down U+E39B - + Classes @@ -19371,10 +21827,11 @@ - - 49 small diesis up, (49S, ~31S) + + accSagittal49SmallDiesisUp + 49 small diesis up, (49S, ~31S) U+E39C - + Classes @@ -19384,10 +21841,11 @@ - - 49 small diesis down + + accSagittal49SmallDiesisDown + 49 small diesis down U+E39D - + Classes @@ -19397,10 +21855,11 @@ - - 23 small diesis up, (23S) + + accSagittal23SmallDiesisUp + 23 small diesis up, (23S) U+E39E - + Classes @@ -19410,10 +21869,11 @@ - - 23 small diesis down + + accSagittal23SmallDiesisDown + 23 small diesis down U+E39F - + Classes @@ -19423,10 +21883,11 @@ - - 5:13 medium diesis up, (5:13M, ~37M, 5C plus 13C) + + accSagittal5v13MediumDiesisUp + 5:13 medium diesis up, (5:13M, ~37M, 5C plus 13C) U+E3A0 - + Classes @@ -19436,10 +21897,11 @@ - - 5:13 medium diesis down + + accSagittal5v13MediumDiesisDown + 5:13 medium diesis down U+E3A1 - + Classes @@ -19449,10 +21911,11 @@ - - 11:19 medium diesis up, (11:19M, 11M plus 19s) + + accSagittal11v19MediumDiesisUp + 11:19 medium diesis up, (11:19M, 11M plus 19s) U+E3A2 - + Classes @@ -19462,10 +21925,11 @@ - - 11:19 medium diesis down + + accSagittal11v19MediumDiesisDown + 11:19 medium diesis down U+E3A3 - + Classes @@ -19475,10 +21939,11 @@ - - 49 medium diesis up, (49M, ~31M, 7C plus 7C) + + accSagittal49MediumDiesisUp + 49 medium diesis up, (49M, ~31M, 7C plus 7C) U+E3A4 - + Classes @@ -19488,10 +21953,11 @@ - - 49 medium diesis down + + accSagittal49MediumDiesisDown + 49 medium diesis down U+E3A5 - + Classes @@ -19501,10 +21967,11 @@ - - 5:49 medium diesis up, (5:49M, half apotome) + + accSagittal5v49MediumDiesisUp + 5:49 medium diesis up, (5:49M, half apotome) U+E3A6 - + Classes @@ -19514,10 +21981,11 @@ - - 5:49 medium diesis down + + accSagittal5v49MediumDiesisDown + 5:49 medium diesis down U+E3A7 - + Classes @@ -19527,10 +21995,11 @@ - - 49 large diesis up, (49L, ~31L, apotome less 49M) + + accSagittal49LargeDiesisUp + 49 large diesis up, (49L, ~31L, apotome less 49M) U+E3A8 - + Classes @@ -19540,10 +22009,11 @@ - - 49 large diesis down + + accSagittal49LargeDiesisDown + 49 large diesis down U+E3A9 - + Classes @@ -19553,10 +22023,11 @@ - - 11:19 large diesis up, (11:19L, apotome less 11:19M) + + accSagittal11v19LargeDiesisUp + 11:19 large diesis up, (11:19L, apotome less 11:19M) U+E3AA - + Classes @@ -19566,10 +22037,11 @@ - - 11:19 large diesis down + + accSagittal11v19LargeDiesisDown + 11:19 large diesis down U+E3AB - + Classes @@ -19579,10 +22051,11 @@ - - 5:13 large diesis up, (5:13L, ~37L, apotome less 5:13M) + + accSagittal5v13LargeDiesisUp + 5:13 large diesis up, (5:13L, ~37L, apotome less 5:13M) U+E3AC - + Classes @@ -19592,10 +22065,11 @@ - - 5:13 large diesis down + + accSagittal5v13LargeDiesisDown + 5:13 large diesis down U+E3AD - + Classes @@ -19608,10 +22082,11 @@ Renaissance lute tablature - - Lute tablature staff, 6 courses + + luteStaff6Lines + Lute tablature staff, 6 courses U+EBA0 - + Classes @@ -19620,10 +22095,11 @@ - - Lute tablature staff, 6 courses (wide) + + luteStaff6LinesWide + Lute tablature staff, 6 courses (wide) U+EBA1 - + Classes @@ -19632,10 +22108,11 @@ - - Lute tablature staff, 6 courses (narrow) + + luteStaff6LinesNarrow + Lute tablature staff, 6 courses (narrow) U+EBA2 - + Classes @@ -19644,10 +22121,11 @@ - - Lute tablature start repeat barline + + luteBarlineStartRepeat + Lute tablature start repeat barline U+EBA3 - + Classes @@ -19655,10 +22133,11 @@ - - Lute tablature end repeat barline + + luteBarlineEndRepeat + Lute tablature end repeat barline U+EBA4 - + Classes @@ -19666,10 +22145,11 @@ - - Lute tablature final barline + + luteBarlineFinal + Lute tablature final barline U+EBA5 - + Classes @@ -19677,69 +22157,81 @@ - - Double whole note (breve) duration sign + + luteDurationDoubleWhole + Double whole note (breve) duration sign U+EBA6 - + - - Whole note (semibreve) duration sign + + luteDurationWhole + Whole note (semibreve) duration sign U+EBA7 - + - - Half note (minim) duration sign + + luteDurationHalf + Half note (minim) duration sign U+EBA8 - + - - Quarter note (crotchet) duration sign + + luteDurationQuarter + Quarter note (crotchet) duration sign U+EBA9 - + - - Eighth note (quaver) duration sign + + luteDuration8th + Eighth note (quaver) duration sign U+EBAA - + - - 16th note (semiquaver) duration sign + + luteDuration16th + 16th note (semiquaver) duration sign U+EBAB - + - - 32nd note (demisemiquaver) duration sign + + luteDuration32nd + 32nd note (demisemiquaver) duration sign U+EBAC - + - - Right-hand fingering, thumb + + luteFingeringRHThumb + Right-hand fingering, thumb U+EBAD - + - - Right-hand fingering, first finger + + luteFingeringRHFirst + Right-hand fingering, first finger U+EBAE - + - - Right-hand fingering, second finger + + luteFingeringRHSecond + Right-hand fingering, second finger U+EBAF - + - - Right-hand fingering, third finger + + luteFingeringRHThird + Right-hand fingering, third finger U+EBB0 - + Repeats - - Left (start) repeat sign + + repeatLeft + Left (start) repeat sign U+E040 U+1D106 - + Classes @@ -19747,11 +22239,12 @@ - - Right (end) repeat sign + + repeatRight + Right (end) repeat sign U+E041 U+1D107 - + Classes @@ -19759,10 +22252,11 @@ - - Right and left repeat sign + + repeatRightLeft + Right and left repeat sign U+E042 - + Classes @@ -19770,22 +22264,25 @@ - - Repeat dots + + repeatDots + Repeat dots U+E043 U+1D108 - + - - Single repeat dot + + repeatDot + Single repeat dot U+E044 - + - - Dal segno + + dalSegno + Dal segno U+E045 U+1D109 - + Classes @@ -19793,11 +22290,12 @@ - - Da capo + + daCapo + Da capo U+E046 U+1D10A - + Classes @@ -19805,37 +22303,43 @@ - - Segno + + segno + Segno U+E047 U+1D10B - + - - Coda + + coda + Coda U+E048 U+1D10C - + - - Square coda + + codaSquare + Square coda U+E049 - + - - Segno (serpent) + + segnoSerpent1 + Segno (serpent) U+E04A - + - - Segno (serpent with vertical lines) + + segnoSerpent2 + Segno (serpent with vertical lines) U+E04B - + - - Left repeat sign within bar + + leftRepeatSmall + Left repeat sign within bar U+E04C - + Classes @@ -19843,10 +22347,11 @@ - - Right repeat sign within bar + + rightRepeatSmall + Right repeat sign within bar U+E04D - + Classes @@ -19857,10 +22362,11 @@ Rests - - Maxima rest + + restMaxima + Maxima rest U+E4E0 - + Classes @@ -19868,10 +22374,11 @@ - - Longa rest + + restLonga + Longa rest U+E4E1 - + Classes @@ -19880,11 +22387,12 @@ - - Double whole (breve) rest + + restDoubleWhole + Double whole (breve) rest U+E4E2 U+1D13A - + Classes @@ -19893,11 +22401,12 @@ - - Whole (semibreve) rest + + restWhole + Whole (semibreve) rest U+E4E3 U+1D13B - + Classes @@ -19906,11 +22415,12 @@ - - Half (minim) rest + + restHalf + Half (minim) rest U+E4E4 U+1D13C - + Classes @@ -19919,11 +22429,12 @@ - - Quarter (crotchet) rest + + restQuarter + Quarter (crotchet) rest U+E4E5 U+1D13D - + Classes @@ -19932,11 +22443,12 @@ - - Eighth (quaver) rest + + rest8th + Eighth (quaver) rest U+E4E6 U+1D13E - + Classes @@ -19945,11 +22457,12 @@ - - 16th (semiquaver) rest + + rest16th + 16th (semiquaver) rest U+E4E7 U+1D13F - + Classes @@ -19958,11 +22471,12 @@ - - 32nd (demisemiquaver) rest + + rest32nd + 32nd (demisemiquaver) rest U+E4E8 U+1D140 - + Classes @@ -19971,11 +22485,12 @@ - - 64th (hemidemisemiquaver) rest + + rest64th + 64th (hemidemisemiquaver) rest U+E4E9 U+1D141 - + Classes @@ -19984,11 +22499,12 @@ - - 128th (semihemidemisemiquaver) rest + + rest128th + 128th (semihemidemisemiquaver) rest U+E4EA U+1D142 - + Classes @@ -19997,10 +22513,11 @@ - - 256th rest + + rest256th + 256th rest U+E4EB - + Classes @@ -20009,10 +22526,11 @@ - - 512th rest + + rest512th + 512th rest U+E4EC - + Classes @@ -20021,10 +22539,11 @@ - - 1024th rest + + rest1024th + 1024th rest U+E4ED - + Classes @@ -20033,11 +22552,12 @@ - - Multiple measure rest + + restHBar + Multiple measure rest U+E4EE U+1D129 - + Classes @@ -20046,10 +22566,11 @@ - - H-bar, left half + + restHBarLeft + H-bar, left half U+E4EF - + Classes @@ -20058,10 +22579,11 @@ - - H-bar, middle + + restHBarMiddle + H-bar, middle U+E4F0 - + Classes @@ -20069,10 +22591,11 @@ - - H-bar, right half + + restHBarRight + H-bar, right half U+E4F1 - + Classes @@ -20081,10 +22604,11 @@ - - Old-style quarter (crotchet) rest + + restQuarterOld + Old-style quarter (crotchet) rest U+E4F2 - + Classes @@ -20093,10 +22617,11 @@ - - Double whole rest on leger lines + + restDoubleWholeLegerLine + Double whole rest on leger lines U+E4F3 - + Classes @@ -20104,10 +22629,11 @@ - - Whole rest on leger line + + restWholeLegerLine + Whole rest on leger line U+E4F4 - + Classes @@ -20116,10 +22642,11 @@ - - Half rest on leger line + + restHalfLegerLine + Half rest on leger line U+E4F5 - + Classes @@ -20128,13 +22655,26 @@ + + restQuarterZ + Z-style quarter (crotchet) rest + U+E4F6 + + + + Classes + rests + + + Round and square noteheads - - Large round black notehead + + noteheadRoundBlackLarge + Large round black notehead U+E110 - + Classes @@ -20144,10 +22684,11 @@ - - Large round white notehead + + noteheadRoundWhiteLarge + Large round white notehead U+E111 - + Classes @@ -20157,10 +22698,11 @@ - - Large round white notehead with dot + + noteheadRoundWhiteWithDotLarge + Large round white notehead with dot U+E112 - + Classes @@ -20170,10 +22712,11 @@ - - Round black notehead + + noteheadRoundBlack + Round black notehead U+E113 - + Classes @@ -20183,10 +22726,11 @@ - - Round white notehead + + noteheadRoundWhite + Round white notehead U+E114 - + Classes @@ -20196,10 +22740,11 @@ - - Round white notehead with dot + + noteheadRoundWhiteWithDot + Round white notehead with dot U+E115 - + Classes @@ -20209,10 +22754,11 @@ - - Large round black notehead, slashed + + noteheadRoundBlackSlashedLarge + Large round black notehead, slashed U+E116 - + Classes @@ -20222,10 +22768,11 @@ - - Large round white notehead, slashed + + noteheadRoundWhiteSlashedLarge + Large round white notehead, slashed U+E117 - + Classes @@ -20235,10 +22782,11 @@ - - Round black notehead, slashed + + noteheadRoundBlackSlashed + Round black notehead, slashed U+E118 - + Classes @@ -20248,10 +22796,11 @@ - - Round white notehead, slashed + + noteheadRoundWhiteSlashed + Round white notehead, slashed U+E119 - + Classes @@ -20261,10 +22810,11 @@ - - Large square black notehead + + noteheadSquareBlackLarge + Large square black notehead U+E11A - + Classes @@ -20274,10 +22824,11 @@ - - Large square white notehead + + noteheadSquareBlackWhite + Large square white notehead U+E11B - + Classes @@ -20290,10 +22841,11 @@ Shakers or rattles pictograms - - Flexatone + + pictFlexatone + Flexatone U+E740 - + Classes @@ -20301,10 +22853,11 @@ - - Maraca + + pictMaraca + Maraca U+E741 - + Classes @@ -20312,10 +22865,11 @@ - - Maracas + + pictMaracas + Maracas U+E742 - + Classes @@ -20323,10 +22877,11 @@ - - Cabasa + + pictCabasa + Cabasa U+E743 - + Classes @@ -20334,10 +22889,11 @@ - - Thundersheet + + pictThundersheet + Thundersheet U+E744 - + Classes @@ -20345,10 +22901,11 @@ - - Vibraslap + + pictVibraslap + Vibraslap U+E745 - + Classes @@ -20356,10 +22913,11 @@ - - Sistrum + + pictSistrum + Sistrum U+E746 - + Classes @@ -20367,10 +22925,11 @@ - - Rainstick + + pictRainstick + Rainstick U+E747 - + Classes @@ -20378,10 +22937,11 @@ - - Chain rattle + + pictChainRattle + Chain rattle U+E748 - + Classes @@ -20392,10 +22952,11 @@ Shape note noteheads - - Round white (4-shape sol; 7-shape so) + + noteShapeRoundWhite + Round white (4-shape sol; 7-shape so) U+E1B0 - + Classes @@ -20404,10 +22965,11 @@ - - Round black (4-shape sol; 7-shape so) + + noteShapeRoundBlack + Round black (4-shape sol; 7-shape so) U+E1B1 - + Classes @@ -20416,10 +22978,11 @@ - - Square white (4-shape la; Aiken 7-shape la) + + noteShapeSquareWhite + Square white (4-shape la; Aikin 7-shape la) U+E1B2 - + Classes @@ -20428,10 +22991,11 @@ - - Square black (4-shape la; Aiken 7-shape la) + + noteShapeSquareBlack + Square black (4-shape la; Aikin 7-shape la) U+E1B3 - + Classes @@ -20440,10 +23004,11 @@ - - Triangle right white (stem down; 4-shape fa; 7-shape fa) + + noteShapeTriangleRightWhite + Triangle right white (stem down; 4-shape fa; 7-shape fa) U+E1B4 - + Classes @@ -20452,10 +23017,11 @@ - - Triangle right black (stem down; 4-shape fa; 7-shape fa) + + noteShapeTriangleRightBlack + Triangle right black (stem down; 4-shape fa; 7-shape fa) U+E1B5 - + Classes @@ -20464,10 +23030,11 @@ - - Triangle left white (stem up; 4-shape fa; 7-shape fa) + + noteShapeTriangleLeftWhite + Triangle left white (stem up; 4-shape fa; 7-shape fa) U+E1B6 - + Classes @@ -20476,10 +23043,11 @@ - - Triangle left black (stem up; 4-shape fa; 7-shape fa) + + noteShapeTriangleLeftBlack + Triangle left black (stem up; 4-shape fa; 7-shape fa) U+E1B7 - + Classes @@ -20488,10 +23056,11 @@ - - Diamond white (4-shape mi; 7-shape mi) + + noteShapeDiamondWhite + Diamond white (4-shape mi; 7-shape mi) U+E1B8 - + Classes @@ -20500,10 +23069,11 @@ - - Diamond black (4-shape mi; 7-shape mi) + + noteShapeDiamondBlack + Diamond black (4-shape mi; 7-shape mi) U+E1B9 - + Classes @@ -20512,10 +23082,11 @@ - - Triangle up white (Aikin 7-shape do) + + noteShapeTriangleUpWhite + Triangle up white (Aikin 7-shape do) U+E1BA - + Classes @@ -20524,10 +23095,11 @@ - - Triangle up black (Aikin 7-shape do) + + noteShapeTriangleUpBlack + Triangle up black (Aikin 7-shape do) U+E1BB - + Classes @@ -20536,10 +23108,11 @@ - - Moon white (Aikin 7-shape re) + + noteShapeMoonWhite + Moon white (Aikin 7-shape re) U+E1BC - + Classes @@ -20548,10 +23121,11 @@ - - Moon black (Aikin 7-shape re) + + noteShapeMoonBlack + Moon black (Aikin 7-shape re) U+E1BD - + Classes @@ -20560,10 +23134,11 @@ - - Triangle-round white (Aikin 7-shape ti) + + noteShapeTriangleRoundWhite + Triangle-round white (Aikin 7-shape ti) U+E1BE - + Classes @@ -20572,10 +23147,11 @@ - - Triangle-round black (Aikin 7-shape ti) + + noteShapeTriangleRoundBlack + Triangle-round black (Aikin 7-shape ti) U+E1BF - + Classes @@ -20584,121 +23160,155 @@ - - Inverted keystone white (Walker 7-shape do) + + noteShapeKeystoneWhite + Inverted keystone white (Walker 7-shape do) U+E1C0 - + - - Inverted keystone black (Walker 7-shape do) + + noteShapeKeystoneBlack + Inverted keystone black (Walker 7-shape do) U+E1C1 - + - - Quarter moon white (Walker 7-shape re) + + noteShapeQuarterMoonWhite + Quarter moon white (Walker 7-shape re) U+E1C2 - + - - Quarter moon black (Walker 7-shape re) + + noteShapeQuarterMoonBlack + Quarter moon black (Walker 7-shape re) U+E1C3 - + - - Isosceles triangle white (Walker 7-shape ti) + + noteShapeIsoscelesTriangleWhite + Isosceles triangle white (Walker 7-shape ti) U+E1C4 - + - - Isosceles triangle black (Walker 7-shape ti) + + noteShapeIsoscelesTriangleBlack + Isosceles triangle black (Walker 7-shape ti) U+E1C5 - + - - Moon left white (Funk 7-shape do) + + noteShapeMoonLeftWhite + Moon left white (Funk 7-shape do) U+E1C6 - + - - Moon left black (Funk 7-shape do) + + noteShapeMoonLeftBlack + Moon left black (Funk 7-shape do) U+E1C7 - + - - Arrowhead left white (Funk 7-shape re) + + noteShapeArrowheadLeftWhite + Arrowhead left white (Funk 7-shape re) U+E1C8 - + - - Arrowhead left black (Funk 7-shape re) + + noteShapeArrowheadLeftBlack + Arrowhead left black (Funk 7-shape re) U+E1C9 - + - - Triangle-round left white (Funk 7-shape ti) + + noteShapeTriangleRoundLeftWhite + Triangle-round left white (Funk 7-shape ti) U+E1CA - + - - Triangle-round left black (Funk 7-shape ti) + + noteShapeTriangleRoundLeftBlack + Triangle-round left black (Funk 7-shape ti) U+E1CB - + Simplified Music Notation - - Sharp + + smnSharp + Sharp stem up U+EC50 - + - - Sharp (white) + + smnSharpWhite + Sharp (white) stem up U+EC51 - + - - Flat + + smnFlat + Flat U+EC52 - + - - Flat (white) + + smnFlatWhite + Flat (white) U+EC53 - + - - Sharp history sign + + smnHistorySharp + Sharp history sign U+EC54 - + - - Double sharp history sign + + smnHistoryDoubleSharp + Double sharp history sign U+EC55 - + - - Flat history sign + + smnHistoryFlat + Flat history sign U+EC56 - + - - Double flat history sign + + smnHistoryDoubleFlat + Double flat history sign U+EC57 - + - - Natural (N) + + smnNatural + Natural (N) U+EC58 - + + + + smnSharpDown + Sharp stem down + U+EC59 + + + + smnSharpWhiteDown + Sharp (white) stem down + U+EC5A + Sims accidentals (72-EDO) - - 1/12 tone low + + accidentalSims12Down + 1/12 tone low U+E2A0 - + Classes @@ -20708,10 +23318,11 @@ - - 1/6 tone low + + accidentalSims6Down + 1/6 tone low U+E2A1 - + Classes @@ -20721,10 +23332,11 @@ - - 1/4 tone low + + accidentalSims4Down + 1/4 tone low U+E2A2 - + Classes @@ -20734,10 +23346,11 @@ - - 1/12 tone high + + accidentalSims12Up + 1/12 tone high U+E2A3 - + Classes @@ -20747,10 +23360,11 @@ - - 1/6 tone high + + accidentalSims6Up + 1/6 tone high U+E2A4 - + Classes @@ -20760,10 +23374,11 @@ - - 1/4 tone high + + accidentalSims4Up + 1/4 tone high U+E2A5 - + Classes @@ -20776,10 +23391,11 @@ Slash noteheads - - Slash with vertical ends + + noteheadSlashVerticalEnds + Slash with vertical ends U+E100 - + Classes @@ -20789,11 +23405,12 @@ - - Slash with horizontal ends + + noteheadSlashHorizontalEnds + Slash with horizontal ends U+E101 U+1D10D - + Classes @@ -20803,10 +23420,11 @@ - - White slash whole + + noteheadSlashWhiteWhole + White slash whole U+E102 - + Classes @@ -20815,10 +23433,11 @@ - - White slash half + + noteheadSlashWhiteHalf + White slash half U+E103 - + Classes @@ -20829,10 +23448,11 @@ - - Large white diamond + + noteheadSlashDiamondWhite + Large white diamond U+E104 - + Classes @@ -20843,10 +23463,11 @@ - - Small slash with vertical ends + + noteheadSlashVerticalEndsSmall + Small slash with vertical ends U+E105 - + Classes @@ -20856,10 +23477,11 @@ - - Large X notehead + + noteheadSlashX + Large X notehead U+E106 - + Classes @@ -20869,10 +23491,11 @@ - - Muted slash with vertical ends + + noteheadSlashVerticalEndsMuted + Muted slash with vertical ends U+E107 - + Classes @@ -20882,10 +23505,11 @@ - - Muted slash with horizontal ends + + noteheadSlashHorizontalEndsMuted + Muted slash with horizontal ends U+E108 - + Classes @@ -20895,10 +23519,11 @@ - - Muted white slash + + noteheadSlashWhiteMuted + Muted white slash U+E109 - + Classes @@ -20912,10 +23537,11 @@ Spartan Sagittal multi-shaft accidentals - - Sharp 25S-down, 3° up [53 EDO] + + accSagittalSharp25SDown + Sharp 25S-down, 3° up [53 EDO] U+E310 - + Classes @@ -20925,10 +23551,11 @@ - - Flat 25S-up, 3° down [53 EDO] + + accSagittalFlat25SUp + Flat 25S-up, 3° down [53 EDO] U+E311 - + Classes @@ -20938,10 +23565,11 @@ - - Sharp 7C-down, 2° up [43 EDO], 4° up [72 EDO], 1/3-tone up + + accSagittalSharp7CDown + Sharp 7C-down, 2° up [43 EDO], 4° up [72 EDO], 1/3-tone up U+E312 - + Classes @@ -20951,10 +23579,11 @@ - - Flat 7C-up, 2° down [43 EDO], 4° down [72 EDO], 1/3-tone down + + accSagittalFlat7CUp + Flat 7C-up, 2° down [43 EDO], 4° down [72 EDO], 1/3-tone down U+E313 - + Classes @@ -20964,10 +23593,11 @@ - - Sharp 5C-down, 2°[22 29] 3°[34 41] 4°[46 53 60] up, 5/12-tone up + + accSagittalSharp5CDown + Sharp 5C-down, 2°[22 29] 3°[34 41] 4°[46 53 60] up, 5/12-tone up U+E314 - + Classes @@ -20977,10 +23607,11 @@ - - Flat 5C-up, 2°[22,29] 3°[34 41] 4°[46 53 60] down, 5/12-tone down + + accSagittalFlat5CUp + Flat 5C-up, 2°[22,29] 3°[34 41] 4°[46 53 60] down, 5/12-tone down U+E315 - + Classes @@ -20990,10 +23621,11 @@ - - Sharp 5:7k-down + + accSagittalSharp5v7kDown + Sharp 5:7k-down U+E316 - + Classes @@ -21003,10 +23635,11 @@ - - Flat 5:7k-up + + accSagittalFlat5v7kUp + Flat 5:7k-up U+E317 - + Classes @@ -21016,10 +23649,11 @@ - - Sharp, (apotome up)[almost all EDOs], 1/2-tone up + + accSagittalSharp + Sharp, (apotome up)[almost all EDOs], 1/2-tone up U+E318 - + Classes @@ -21029,10 +23663,11 @@ - - Flat, (apotome down)[almost all EDOs], 1/2-tone down + + accSagittalFlat + Flat, (apotome down)[almost all EDOs], 1/2-tone down U+E319 - + Classes @@ -21042,10 +23677,10 @@ - - Unused + + accSagittalUnused1 + Unused U+E31A - Classes @@ -21055,10 +23690,10 @@ - - Unused + + accSagittalUnused2 + Unused U+E31B - Classes @@ -21068,10 +23703,11 @@ - - Sharp 5:7k-up + + accSagittalSharp5v7kUp + Sharp 5:7k-up U+E31C - + Classes @@ -21081,10 +23717,11 @@ - - Flat 5:7k-down + + accSagittalFlat5v7kDown + Flat 5:7k-down U+E31D - + Classes @@ -21094,10 +23731,11 @@ - - Sharp 5C-up, 4°[22 29] 5°[27 34 41] 6°[39 46 53] up, 7/12-tone up + + accSagittalSharp5CUp + Sharp 5C-up, 4°[22 29] 5°[27 34 41] 6°[39 46 53] up, 7/12-tone up U+E31E - + Classes @@ -21107,10 +23745,11 @@ - - Flat 5C-down, 4°[22 29] 5°[27 34 41] 6°[39 46 53] down, 7/12-tone down + + accSagittalFlat5CDown + Flat 5C-down, 4°[22 29] 5°[27 34 41] 6°[39 46 53] down, 7/12-tone down U+E31F - + Classes @@ -21120,10 +23759,11 @@ - - Sharp 7C-up, 4° up [43 EDO], 8° up [72 EDO], 2/3-tone up + + accSagittalSharp7CUp + Sharp 7C-up, 4° up [43 EDO], 8° up [72 EDO], 2/3-tone up U+E320 - + Classes @@ -21133,10 +23773,11 @@ - - Flat 7C-down, 4° down [43 EDO], 8° down [72 EDO], 2/3-tone down + + accSagittalFlat7CDown + Flat 7C-down, 4° down [43 EDO], 8° down [72 EDO], 2/3-tone down U+E321 - + Classes @@ -21146,10 +23787,11 @@ - - Sharp 25S-up, 7° up [53 EDO] + + accSagittalSharp25SUp + Sharp 25S-up, 7° up [53 EDO] U+E322 - + Classes @@ -21159,10 +23801,11 @@ - - Flat 25S-down, 7° down [53 EDO] + + accSagittalFlat25SDown + Flat 25S-down, 7° down [53 EDO] U+E323 - + Classes @@ -21172,10 +23815,11 @@ - - Sharp 35M-up, 4° up [50 EDO], 6° up [27 EDO], 13/18-tone up + + accSagittalSharp35MUp + Sharp 35M-up, 4° up [50 EDO], 6° up [27 EDO], 13/18-tone up U+E324 - + Classes @@ -21185,10 +23829,11 @@ - - Flat 35M-down, 4° down [50 EDO], 6° down [27 EDO], 13/18-tone down + + accSagittalFlat35MDown + Flat 35M-down, 4° down [50 EDO], 6° down [27 EDO], 13/18-tone down U+E325 - + Classes @@ -21198,10 +23843,11 @@ - - Sharp 11M-up, 3° up [17 31 EDOs], 7° up [46 EDO], 3/4-tone up + + accSagittalSharp11MUp + Sharp 11M-up, 3° up [17 31 EDOs], 7° up [46 EDO], 3/4-tone up U+E326 - + Classes @@ -21211,10 +23857,11 @@ - - Flat 11M-down, 3° down [17 31 EDOs], 7° down [46 EDO], 3/4-tone down + + accSagittalFlat11MDown + Flat 11M-down, 3° down [17 31 EDOs], 7° down [46 EDO], 3/4-tone down U+E327 - + Classes @@ -21224,10 +23871,11 @@ - - Sharp 11L-up, 8° up [46 EDO] + + accSagittalSharp11LUp + Sharp 11L-up, 8° up [46 EDO] U+E328 - + Classes @@ -21237,10 +23885,11 @@ - - Flat 11L-down, 8° up [46 EDO] + + accSagittalFlat11LDown + Flat 11L-down, 8° up [46 EDO] U+E329 - + Classes @@ -21250,10 +23899,11 @@ - - Sharp 35L-up, 5° up [50 EDO] + + accSagittalSharp35LUp + Sharp 35L-up, 5° up [50 EDO] U+E32A - + Classes @@ -21263,10 +23913,11 @@ - - Flat 35L-down, 5° down [50 EDO] + + accSagittalFlat35LDown + Flat 35L-down, 5° down [50 EDO] U+E32B - + Classes @@ -21276,10 +23927,11 @@ - - Double sharp 25S-down, 8°up [53 EDO] + + accSagittalDoubleSharp25SDown + Double sharp 25S-down, 8°up [53 EDO] U+E32C - + Classes @@ -21289,10 +23941,11 @@ - - Double flat 25S-up, 8°down [53 EDO] + + accSagittalDoubleFlat25SUp + Double flat 25S-up, 8°down [53 EDO] U+E32D - + Classes @@ -21302,10 +23955,11 @@ - - Double sharp 7C-down, 5°[43] 10°[72] up, 5/6-tone up + + accSagittalDoubleSharp7CDown + Double sharp 7C-down, 5°[43] 10°[72] up, 5/6-tone up U+E32E - + Classes @@ -21315,10 +23969,11 @@ - - Double flat 7C-up, 5° down [43 EDO], 10° down [72 EDO], 5/6-tone down + + accSagittalDoubleFlat7CUp + Double flat 7C-up, 5° down [43 EDO], 10° down [72 EDO], 5/6-tone down U+E32F - + Classes @@ -21328,10 +23983,11 @@ - - Double sharp 5C-down, 5°[22 29] 7°[34 41] 9°53 up, 11/12 tone up + + accSagittalDoubleSharp5CDown + Double sharp 5C-down, 5°[22 29] 7°[34 41] 9°53 up, 11/12 tone up U+E330 - + Classes @@ -21341,10 +23997,11 @@ - - Double flat 5C-up, 5°[22 29] 7°[34 41] 9°53 down, 11/12 tone down + + accSagittalDoubleFlat5CUp + Double flat 5C-up, 5°[22 29] 7°[34 41] 9°53 down, 11/12 tone down U+E331 - + Classes @@ -21354,10 +24011,11 @@ - - Double sharp 5:7k-down + + accSagittalDoubleSharp5v7kDown + Double sharp 5:7k-down U+E332 - + Classes @@ -21367,10 +24025,11 @@ - - Double flat 5:7k-up + + accSagittalDoubleFlat5v7kUp + Double flat 5:7k-up U+E333 - + Classes @@ -21380,10 +24039,11 @@ - - Double sharp, (2 apotomes up)[almost all EDOs], whole-tone up + + accSagittalDoubleSharp + Double sharp, (2 apotomes up)[almost all EDOs], whole-tone up U+E334 - + Classes @@ -21393,10 +24053,11 @@ - - Double flat, (2 apotomes down)[almost all EDOs], whole-tone down + + accSagittalDoubleFlat + Double flat, (2 apotomes down)[almost all EDOs], whole-tone down U+E335 - + Classes @@ -21409,10 +24070,11 @@ Spartan Sagittal single-shaft accidentals - - 5:7 kleisma up, (5:7k, ~11:13k, 7C less 5C) + + accSagittal5v7KleismaUp + 5:7 kleisma up, (5:7k, ~11:13k, 7C less 5C) U+E300 - + Classes @@ -21422,10 +24084,11 @@ - - 5:7 kleisma down + + accSagittal5v7KleismaDown + 5:7 kleisma down U+E301 - + Classes @@ -21435,10 +24098,11 @@ - - 5 comma up, (5C), 1° up [22 27 29 34 41 46 53 96 EDOs], 1/12-tone up + + accSagittal5CommaUp + 5 comma up, (5C), 1° up [22 27 29 34 41 46 53 96 EDOs], 1/12-tone up U+E302 - + Classes @@ -21448,10 +24112,11 @@ - - 5 comma down, 1° down [22 27 29 34 41 46 53 96 EDOs], 1/12-tone down + + accSagittal5CommaDown + 5 comma down, 1° down [22 27 29 34 41 46 53 96 EDOs], 1/12-tone down U+E303 - + Classes @@ -21461,10 +24126,11 @@ - - 7 comma up, (7C), 1° up [43 EDO], 2° up [72 EDO], 1/6-tone up + + accSagittal7CommaUp + 7 comma up, (7C), 1° up [43 EDO], 2° up [72 EDO], 1/6-tone up U+E304 - + Classes @@ -21474,10 +24140,11 @@ - - 7 comma down, 1° down [43 EDO], 2° down [72 EDO], 1/6-tone down + + accSagittal7CommaDown + 7 comma down, 1° down [43 EDO], 2° down [72 EDO], 1/6-tone down U+E305 - + Classes @@ -21487,10 +24154,11 @@ - - 25 small diesis up, (25S, ~5:13S, ~37S, 5C plus 5C), 2° up [53 EDO] + + accSagittal25SmallDiesisUp + 25 small diesis up, (25S, ~5:13S, ~37S, 5C plus 5C), 2° up [53 EDO] U+E306 - + Classes @@ -21500,10 +24168,11 @@ - - 25 small diesis down, 2° down [53 EDO] + + accSagittal25SmallDiesisDown + 25 small diesis down, 2° down [53 EDO] U+E307 - + Classes @@ -21513,10 +24182,11 @@ - - 35 medium diesis up, (35M, ~13M, ~125M, 5C plus 7C), 2/9-tone up + + accSagittal35MediumDiesisUp + 35 medium diesis up, (35M, ~13M, ~125M, 5C plus 7C), 2/9-tone up U+E308 - + Classes @@ -21526,10 +24196,11 @@ - - 35 medium diesis down, 1°[50] 2°[27] down, 2/9-tone down + + accSagittal35MediumDiesisDown + 35 medium diesis down, 1°[50] 2°[27] down, 2/9-tone down U+E309 - + Classes @@ -21539,10 +24210,11 @@ - - 11 medium diesis up, (11M), 1°[17 31] 2°46 up, 1/4-tone up + + accSagittal11MediumDiesisUp + 11 medium diesis up, (11M), 1°[17 31] 2°46 up, 1/4-tone up U+E30A - + Classes @@ -21552,10 +24224,11 @@ - - 11 medium diesis down, 1°[17 31] 2°46 down, 1/4-tone down + + accSagittal11MediumDiesisDown + 11 medium diesis down, 1°[17 31] 2°46 down, 1/4-tone down U+E30B - + Classes @@ -21565,10 +24238,11 @@ - - 11 large diesis up, (11L), (sharp less 11M), 3° up [46 EDO] + + accSagittal11LargeDiesisUp + 11 large diesis up, (11L), (sharp less 11M), 3° up [46 EDO] U+E30C - + Classes @@ -21578,10 +24252,11 @@ - - 11 large diesis down, 3° down [46 EDO] + + accSagittal11LargeDiesisDown + 11 large diesis down, 3° down [46 EDO] U+E30D - + Classes @@ -21591,10 +24266,11 @@ - - 35 large diesis up, (35L, ~13L, ~125L, sharp less 35M), 2°50 up + + accSagittal35LargeDiesisUp + 35 large diesis up, (35L, ~13L, ~125L, sharp less 35M), 2°50 up U+E30E - + Classes @@ -21604,10 +24280,11 @@ - - 35 large diesis down, 2° down [50 EDO], 5/18-tone down + + accSagittal35LargeDiesisDown + 35 large diesis down, 2° down [50 EDO], 5/18-tone down U+E30F - + Classes @@ -21620,22 +24297,25 @@ Staff brackets and dividers - - Brace + + brace + Brace U+E000 U+1D114 - + - - Reversed brace + + reversedBrace + Reversed brace U+E001 - + - - Bracket + + bracket + Bracket U+E002 U+1D115 - + Classes @@ -21643,69 +24323,81 @@ - - Bracket top + + bracketTop + Bracket top U+E003 - + - - Bracket bottom + + bracketBottom + Bracket bottom U+E004 - + - - Reversed bracket top + + reversedBracketTop + Reversed bracket top U+E005 - + - - Reversed bracket bottom + + reversedBracketBottom + Reversed bracket bottom U+E006 - + - - System divider + + systemDivider + System divider U+E007 - + - - Long system divider + + systemDividerLong + Long system divider U+E008 - + - - Extra long system divider + + systemDividerExtraLong + Extra long system divider U+E009 - + - - Split bar divider (bar spans a system break) + + splitBarDivider + Split bar divider (bar spans a system break) U+E00A - + - - Staff divide arrow down + + staffDivideArrowDown + Staff divide arrow down U+E00B - + - - Staff divide arrow up + + staffDivideArrowUp + Staff divide arrow up U+E00C - + - - Staff divide arrows + + staffDivideArrowUpDown + Staff divide arrows U+E00D - + Standard accidentals (12-EDO) - - Flat + + accidentalFlat + Flat U+E260 - 266D - + U+266D + Classes @@ -21716,11 +24408,12 @@ - - Natural + + accidentalNatural + Natural U+E261 - 266E - + U+266E + Classes @@ -21732,11 +24425,12 @@ - - Sharp + + accidentalSharp + Sharp U+E262 - 266F - + U+266F + Classes @@ -21747,11 +24441,12 @@ - - Double sharp + + accidentalDoubleSharp + Double sharp U+E263 U+1D12A - + Classes @@ -21761,11 +24456,12 @@ - - Double flat + + accidentalDoubleFlat + Double flat U+E264 U+1D12B - + Classes @@ -21776,10 +24472,11 @@ - - Triple sharp + + accidentalTripleSharp + Triple sharp U+E265 - + Classes @@ -21789,10 +24486,11 @@ - - Triple flat + + accidentalTripleFlat + Triple flat U+E266 - + Classes @@ -21802,10 +24500,11 @@ - - Natural flat + + accidentalNaturalFlat + Natural flat U+E267 - + Classes @@ -21815,10 +24514,11 @@ - - Natural sharp + + accidentalNaturalSharp + Natural sharp U+E268 - + Classes @@ -21828,10 +24528,11 @@ - - Sharp sharp + + accidentalSharpSharp + Sharp sharp U+E269 - + Classes @@ -21841,10 +24542,11 @@ - - Accidental parenthesis, left + + accidentalParensLeft + Accidental parenthesis, left U+E26A - + Classes @@ -21854,10 +24556,11 @@ - - Accidental parenthesis, right + + accidentalParensRight + Accidental parenthesis, right U+E26B - + Classes @@ -21870,11 +24573,12 @@ Staves - - 1-line staff + + staff1Line + 1-line staff U+E010 U+1D116 - + Classes @@ -21883,11 +24587,12 @@ - - 2-line staff + + staff2Lines + 2-line staff U+E011 U+1D117 - + Classes @@ -21896,11 +24601,12 @@ - - 3-line staff + + staff3Lines + 3-line staff U+E012 U+1D118 - + Classes @@ -21909,11 +24615,12 @@ - - 4-line staff + + staff4Lines + 4-line staff U+E013 U+1D119 - + Classes @@ -21922,11 +24629,12 @@ - - 5-line staff + + staff5Lines + 5-line staff U+E014 U+1D11A - + Classes @@ -21935,11 +24643,12 @@ - - 6-line staff + + staff6Lines + 6-line staff U+E015 U+1D11B - + Classes @@ -21948,10 +24657,11 @@ - - 1-line staff (wide) + + staff1LineWide + 1-line staff (wide) U+E016 - + Classes @@ -21960,10 +24670,11 @@ - - 2-line staff (wide) + + staff2LinesWide + 2-line staff (wide) U+E017 - + Classes @@ -21972,10 +24683,11 @@ - - 3-line staff (wide) + + staff3LinesWide + 3-line staff (wide) U+E018 - + Classes @@ -21984,10 +24696,11 @@ - - 4-line staff (wide) + + staff4LinesWide + 4-line staff (wide) U+E019 - + Classes @@ -21996,10 +24709,11 @@ - - 5-line staff (wide) + + staff5LinesWide + 5-line staff (wide) U+E01A - + Classes @@ -22008,10 +24722,11 @@ - - 6-line staff (wide) + + staff6LinesWide + 6-line staff (wide) U+E01B - + Classes @@ -22020,10 +24735,11 @@ - - 1-line staff (narrow) + + staff1LineNarrow + 1-line staff (narrow) U+E01C - + Classes @@ -22032,10 +24748,11 @@ - - 2-line staff (narrow) + + staff2LinesNarrow + 2-line staff (narrow) U+E01D - + Classes @@ -22044,10 +24761,11 @@ - - 3-line staff (narrow) + + staff3LinesNarrow + 3-line staff (narrow) U+E01E - + Classes @@ -22056,10 +24774,11 @@ - - 4-line staff (narrow) + + staff4LinesNarrow + 4-line staff (narrow) U+E01F - + Classes @@ -22068,10 +24787,11 @@ - - 5-line staff (narrow) + + staff5LinesNarrow + 5-line staff (narrow) U+E020 - + Classes @@ -22080,10 +24800,11 @@ - - 6-line staff (narrow) + + staff6LinesNarrow + 6-line staff (narrow) U+E021 - + Classes @@ -22092,10 +24813,11 @@ - - Leger line + + legerLine + Leger line U+E022 - + Classes @@ -22104,10 +24826,11 @@ - - Leger line (wide) + + legerLineWide + Leger line (wide) U+E023 - + Classes @@ -22116,10 +24839,11 @@ - - Leger line (narrow) + + legerLineNarrow + Leger line (narrow) U+E024 - + Classes @@ -22131,10 +24855,11 @@ Stein-Zimmermann accidentals (24-EDO) - - Reversed flat (quarter-tone flat) (Stein) + + accidentalQuarterToneFlatStein + Reversed flat (quarter-tone flat) (Stein) U+E280 - + Classes @@ -22144,10 +24869,11 @@ - - Reversed flat and flat (three-quarter-tones flat) (Zimmermann) + + accidentalThreeQuarterTonesFlatZimmermann + Reversed flat and flat (three-quarter-tones flat) (Zimmermann) U+E281 - + Classes @@ -22157,10 +24883,11 @@ - - Half sharp (quarter-tone sharp) (Stein) + + accidentalQuarterToneSharpStein + Half sharp (quarter-tone sharp) (Stein) U+E282 - + Classes @@ -22170,10 +24897,11 @@ - - One and a half sharps (three-quarter-tones sharp) (Stein) + + accidentalThreeQuarterTonesSharpStein + One and a half sharps (three-quarter-tones sharp) (Stein) U+E283 - + Classes @@ -22183,10 +24911,11 @@ - - Narrow reversed flat(quarter-tone flat) + + accidentalNarrowReversedFlat + Narrow reversed flat(quarter-tone flat) U+E284 - + Classes @@ -22196,10 +24925,11 @@ - - Narrow reversed flat and flat(three-quarter-tones flat) + + accidentalNarrowReversedFlatAndFlat + Narrow reversed flat and flat(three-quarter-tones flat) U+E285 - + Classes @@ -22212,11 +24942,12 @@ Stems - - Combining stem + + stem + Combining stem U+E210 U+1D165 - + Classes @@ -22225,11 +24956,12 @@ - - Combining sprechgesang stem + + stemSprechgesang + Combining sprechgesang stem U+E211 U+1D166 - + Classes @@ -22238,10 +24970,11 @@ - - Combining swished stem + + stemSwished + Combining swished stem U+E212 - + Classes @@ -22250,10 +24983,11 @@ - - Combining Penderecki unmeasured tremolo stem + + stemPendereckiTremolo + Combining Penderecki unmeasured tremolo stem U+E213 - + Classes @@ -22262,10 +24996,11 @@ - - Combining sul ponticello (bow behind bridge) stem + + stemSulPonticello + Combining sul ponticello (bow behind bridge) stem U+E214 - + Classes @@ -22274,10 +25009,11 @@ - - Combining bow on bridge stem + + stemBowOnBridge + Combining bow on bridge stem U+E215 - + Classes @@ -22286,10 +25022,11 @@ - - Combining bow on tailpiece stem + + stemBowOnTailpiece + Combining bow on tailpiece stem U+E216 - + Classes @@ -22298,10 +25035,11 @@ - - Combining buzz roll stem + + stemBuzzRoll + Combining buzz roll stem U+E217 - + Classes @@ -22310,10 +25048,11 @@ - - Combining damp stem + + stemDamp + Combining damp stem U+E218 - + Classes @@ -22322,10 +25061,11 @@ - - Combining vibrato pulse accent (Saunders) stem + + stemVibratoPulse + Combining vibrato pulse accent (Saunders) stem U+E219 - + Classes @@ -22334,10 +25074,11 @@ - - Combining multiphonics (black) stem + + stemMultiphonicsBlack + Combining multiphonics (black) stem U+E21A - + Classes @@ -22346,10 +25087,11 @@ - - Combining multiphonics (white) stem + + stemMultiphonicsWhite + Combining multiphonics (white) stem U+E21B - + Classes @@ -22358,10 +25100,11 @@ - - Combining multiphonics (black and white) stem + + stemMultiphonicsBlackWhite + Combining multiphonics (black and white) stem U+E21C - + Classes @@ -22370,10 +25113,11 @@ - - Combining sussurando stem + + stemSussurando + Combining sussurando stem U+E21D - + Classes @@ -22382,10 +25126,11 @@ - - Combining rim shot stem + + stemRimShot + Combining rim shot stem U+E21E - + Classes @@ -22394,10 +25139,11 @@ - - Combining harp string noise stem + + stemHarpStringNoise + Combining harp string noise stem U+E21F - + Classes @@ -22409,53 +25155,62 @@ String techniques - - Down bow + + stringsDownBow + Down bow U+E610 U+1D1AA - + - - Turned down bow + + stringsDownBowTurned + Turned down bow U+E611 - + - - Up bow + + stringsUpBow + Up bow U+E612 U+1D1AB - + - - Turned up bow + + stringsUpBowTurned + Turned up bow U+E613 - + - - Harmonic + + stringsHarmonic + Harmonic U+E614 U+1D1AC - + - - Half-harmonic + + stringsHalfHarmonic + Half-harmonic U+E615 - + - - Mute on + + stringsMuteOn + Mute on U+E616 - + - - Mute off + + stringsMuteOff + Mute off U+E617 - + - - Bow behind bridge (sul ponticello) + + stringsBowBehindBridge + Bow behind bridge (sul ponticello) U+E618 - + Classes @@ -22463,10 +25218,11 @@ - - Bow on top of bridge + + stringsBowOnBridge + Bow on top of bridge U+E619 - + Classes @@ -22474,10 +25230,11 @@ - - Bow on tailpiece + + stringsBowOnTailpiece + Bow on tailpiece U+E61A - + Classes @@ -22485,50 +25242,59 @@ - - Overpressure, down bow + + stringsOverpressureDownBow + Overpressure, down bow U+E61B - + - - Overpressure, up bow + + stringsOverpressureUpBow + Overpressure, up bow U+E61C - + - - Overpressure possibile, down bow + + stringsOverpressurePossibileDownBow + Overpressure possibile, down bow U+E61D - + - - Overpressure possibile, up bow + + stringsOverpressurePossibileUpBow + Overpressure possibile, up bow U+E61E - + - - Overpressure, no bow direction + + stringsOverpressureNoDirection + Overpressure, no bow direction U+E61F - + - - Jeté (gettato) above + + stringsJeteAbove + Jeté (gettato) above U+E620 - + - - Jeté (gettato) below + + stringsJeteBelow + Jeté (gettato) below U+E621 - + - - Fouetté + + stringsFouette + Fouetté U+E622 - + - - Vibrato pulse accent (Saunders) for stem + + stringsVibratoPulse + Vibrato pulse accent (Saunders) for stem U+E623 - + Classes @@ -22536,28 +25302,32 @@ - - Thumb position + + stringsThumbPosition + Thumb position U+E624 - + - - Turned thumb position + + stringsThumbPositionTurned + Turned thumb position U+E625 - + - - Change bow direction, indeterminate + + stringsChangeBowDirection + Change bow direction, indeterminate U+E626 - + Time signatures - - Time signature 0 + + timeSig0 + Time signature 0 U+E080 - + Classes @@ -22565,10 +25335,11 @@ - - Time signature 1 + + timeSig1 + Time signature 1 U+E081 - + Classes @@ -22576,10 +25347,11 @@ - - Time signature 2 + + timeSig2 + Time signature 2 U+E082 - + Classes @@ -22587,10 +25359,11 @@ - - Time signature 3 + + timeSig3 + Time signature 3 U+E083 - + Classes @@ -22598,10 +25371,11 @@ - - Time signature 4 + + timeSig4 + Time signature 4 U+E084 - + Classes @@ -22609,10 +25383,11 @@ - - Time signature 5 + + timeSig5 + Time signature 5 U+E085 - + Classes @@ -22620,10 +25395,11 @@ - - Time signature 6 + + timeSig6 + Time signature 6 U+E086 - + Classes @@ -22631,10 +25407,11 @@ - - Time signature 7 + + timeSig7 + Time signature 7 U+E087 - + Classes @@ -22642,10 +25419,11 @@ - - Time signature 8 + + timeSig8 + Time signature 8 U+E088 - + Classes @@ -22653,10 +25431,11 @@ - - Time signature 9 + + timeSig9 + Time signature 9 U+E089 - + Classes @@ -22664,112 +25443,133 @@ - - Common time + + timeSigCommon + Common time U+E08A U+1D134 - + - - Cut time + + timeSigCutCommon + Cut time U+E08B U+1D135 - + - - Time signature + + + timeSigPlus + Time signature + U+E08C - + - - Time signature + (for numerators) + + timeSigPlusSmall + Time signature + (for numerators) U+E08D - + - - Time signature fraction slash + + timeSigFractionalSlash + Time signature fraction slash U+E08E - + - - Time signature equals + + timeSigEquals + Time signature equals U+E08F - + - - Time signature minus + + timeSigMinus + Time signature minus U+E090 - + - - Time signature multiply + + timeSigMultiply + Time signature multiply U+E091 - + - - Left parenthesis for numerator only + + timeSigParensLeftSmall + Left parenthesis for numerator only U+E092 - + - - Right parenthesis for numerator only + + timeSigParensRightSmall + Right parenthesis for numerator only U+E093 - + - - Left parenthesis for whole time signature + + timeSigParensLeft + Left parenthesis for whole time signature U+E094 - + - - Right parenthesis for whole time signature + + timeSigParensRight + Right parenthesis for whole time signature U+E095 - + - - Time signature comma + + timeSigComma + Time signature comma U+E096 - + - - Time signature fraction ¼ + + timeSigFractionQuarter + Time signature fraction ¼ U+E097 - + - - Time signature fraction ½ + + timeSigFractionHalf + Time signature fraction ½ U+E098 - + - - Time signature fraction ¾ + + timeSigFractionThreeQuarters + Time signature fraction ¾ U+E099 - + - - Time signature fraction ⅓ + + timeSigFractionOneThird + Time signature fraction ⅓ U+E09A - + - - Time signature fraction ⅔ + + timeSigFractionTwoThirds + Time signature fraction ⅔ U+E09B - + - - Open time signature + + timeSigX + Open time signature U+E09C - + - - Open time signature (Penderecki) + + timeSigOpenPenderecki + Open time signature (Penderecki) U+E09D - + - - Control character for numerator digit + + timeSigCombNumerator + Control character for numerator digit U+E09E - + Classes @@ -22777,10 +25577,11 @@ - - Control character for denominator digit + + timeSigCombDenominator + Control character for denominator digit U+E09F - + Classes @@ -22789,13 +25590,53 @@ + + Time signatures supplement + + timeSigBracketLeft + Left bracket for whole time signature + U+EC80 + + + + timeSigBracketRight + Right bracket for whole time signature + U+EC81 + + + + timeSigBracketLeftSmall + Left bracket for numerator only + U+EC82 + + + + timeSigBracketRightSmall + Right bracket for numerator only + U+EC83 + + + + timeSigSlash + Time signature slash separator + U+EC84 + + + + timeSigCut2 + Cut time (Bach) + U+EC85 + + + Tremolos - - Combining tremolo 1 + + tremolo1 + Combining tremolo 1 U+E220 U+1D167 - + Classes @@ -22803,11 +25644,12 @@ - - Combining tremolo 2 + + tremolo2 + Combining tremolo 2 U+E221 U+1D168 - + Classes @@ -22815,11 +25657,12 @@ - - Combining tremolo 3 + + tremolo3 + Combining tremolo 3 U+E222 U+1D169 - + Classes @@ -22827,10 +25670,11 @@ - - Combining tremolo 4 + + tremolo4 + Combining tremolo 4 U+E223 - + Classes @@ -22838,10 +25682,11 @@ - - Combining tremolo 5 + + tremolo5 + Combining tremolo 5 U+E224 - + Classes @@ -22849,38 +25694,44 @@ - - Fingered tremolo 1 + + tremoloFingered1 + Fingered tremolo 1 U+E225 U+1D16A - + - - Fingered tremolo 2 + + tremoloFingered2 + Fingered tremolo 2 U+E226 U+1D16B - + - - Fingered tremolo 3 + + tremoloFingered3 + Fingered tremolo 3 U+E227 U+1D16C - + - - Fingered tremolo 4 + + tremoloFingered4 + Fingered tremolo 4 U+E228 - + - - Fingered tremolo 5 + + tremoloFingered5 + Fingered tremolo 5 U+E229 - + - - Buzz roll + + buzzRoll + Buzz roll U+E22A - + Classes @@ -22888,10 +25739,11 @@ - - Penderecki unmeasured tremolo + + pendereckiTremolo + Penderecki unmeasured tremolo U+E22B - + Classes @@ -22899,10 +25751,11 @@ - - Wieniawski unmeasured tremolo + + unmeasuredTremolo + Wieniawski unmeasured tremolo U+E22C - + Classes @@ -22910,10 +25763,11 @@ - - Wieniawski unmeasured tremolo (simpler) + + unmeasuredTremoloSimple + Wieniawski unmeasured tremolo (simpler) U+E22D - + Classes @@ -22921,33 +25775,38 @@ - - Divide measured tremolo by 2 + + tremoloDivisiDots2 + Divide measured tremolo by 2 U+E22E - + - - Divide measured tremolo by 3 + + tremoloDivisiDots3 + Divide measured tremolo by 3 U+E22F - + - - Divide measured tremolo by 4 + + tremoloDivisiDots4 + Divide measured tremolo by 4 U+E230 - + - - Divide measured tremolo by 6 + + tremoloDivisiDots6 + Divide measured tremolo by 6 U+E231 - + Trojan Sagittal extension (12-EDO relative) accidentals - - 23 comma up, (23C), 2° up [96 EDO], 1/8-tone up + + accSagittal23CommaUp + 23 comma up, (23C), 2° up [96 EDO], 1/8-tone up U+E370 - + Classes @@ -22957,10 +25816,11 @@ - - 23 comma down, 2° down [96 EDO], 1/8-tone down + + accSagittal23CommaDown + 23 comma down, 2° down [96 EDO], 1/8-tone down U+E371 - + Classes @@ -22970,10 +25830,11 @@ - - 5:19 comma up, (5:19C, 5C plus 19s), 1/20-tone up + + accSagittal5v19CommaUp + 5:19 comma up, (5:19C, 5C plus 19s), 1/20-tone up U+E372 - + Classes @@ -22983,10 +25844,11 @@ - - 5:19 comma down, 1/20-tone down + + accSagittal5v19CommaDown + 5:19 comma down, 1/20-tone down U+E373 - + Classes @@ -22996,10 +25858,11 @@ - - 5:23 small diesis up, (5:23S, 5C plus 23C), 2° up [60 EDO], 1/5-tone up + + accSagittal5v23SmallDiesisUp + 5:23 small diesis up, (5:23S, 5C plus 23C), 2° up [60 EDO], 1/5-tone up U+E374 - + Classes @@ -23009,10 +25872,11 @@ - - 5:23 small diesis down, 2° down [60 EDO], 1/5-tone down + + accSagittal5v23SmallDiesisDown + 5:23 small diesis down, 2° down [60 EDO], 1/5-tone down U+E375 - + Classes @@ -23022,10 +25886,11 @@ - - Sharp 5:23S-down, 3° up [60 EDO], 3/10-tone up + + accSagittalSharp5v23SDown + Sharp 5:23S-down, 3° up [60 EDO], 3/10-tone up U+E376 - + Classes @@ -23035,10 +25900,11 @@ - - Flat 5:23S-up, 3° down [60 EDO], 3/10-tone down + + accSagittalFlat5v23SUp + Flat 5:23S-up, 3° down [60 EDO], 3/10-tone down U+E377 - + Classes @@ -23048,10 +25914,11 @@ - - Sharp 5:19C-down, 9/20-tone up + + accSagittalSharp5v19CDown + Sharp 5:19C-down, 9/20-tone up U+E378 - + Classes @@ -23061,10 +25928,11 @@ - - Flat 5:19C-up, 9/20-tone down + + accSagittalFlat5v19CUp + Flat 5:19C-up, 9/20-tone down U+E379 - + Classes @@ -23074,10 +25942,11 @@ - - Sharp 23C-down, 6° up [96 EDO], 3/8-tone up + + accSagittalSharp23CDown + Sharp 23C-down, 6° up [96 EDO], 3/8-tone up U+E37A - + Classes @@ -23087,10 +25956,11 @@ - - Flat 23C-up, 6° down [96 EDO], 3/8-tone down + + accSagittalFlat23CUp + Flat 23C-up, 6° down [96 EDO], 3/8-tone down U+E37B - + Classes @@ -23100,10 +25970,11 @@ - - Sharp 23C-up, 10° up [96 EDO], 5/8-tone up + + accSagittalSharp23CUp + Sharp 23C-up, 10° up [96 EDO], 5/8-tone up U+E37C - + Classes @@ -23113,10 +25984,11 @@ - - Flat 23C-down, 10° down [96 EDO], 5/8-tone down + + accSagittalFlat23CDown + Flat 23C-down, 10° down [96 EDO], 5/8-tone down U+E37D - + Classes @@ -23126,10 +25998,11 @@ - - Sharp 5:19C-up, 11/20-tone up + + accSagittalSharp5v19CUp + Sharp 5:19C-up, 11/20-tone up U+E37E - + Classes @@ -23139,10 +26012,11 @@ - - Flat 5:19C-down, 11/20-tone down + + accSagittalFlat5v19CDown + Flat 5:19C-down, 11/20-tone down U+E37F - + Classes @@ -23152,10 +26026,11 @@ - - Sharp 5:23S-up, 7° up [60 EDO], 7/10-tone up + + accSagittalSharp5v23SUp + Sharp 5:23S-up, 7° up [60 EDO], 7/10-tone up U+E380 - + Classes @@ -23165,10 +26040,11 @@ - - Flat 5:23S-down, 7° down [60 EDO], 7/10-tone down + + accSagittalFlat5v23SDown + Flat 5:23S-down, 7° down [60 EDO], 7/10-tone down U+E381 - + Classes @@ -23178,10 +26054,11 @@ - - Double sharp 5:23S-down, 8° up [60 EDO], 4/5-tone up + + accSagittalDoubleSharp5v23SDown + Double sharp 5:23S-down, 8° up [60 EDO], 4/5-tone up U+E382 - + Classes @@ -23191,10 +26068,11 @@ - - Double flat 5:23S-up, 8° down [60 EDO], 4/5-tone down + + accSagittalDoubleFlat5v23SUp + Double flat 5:23S-up, 8° down [60 EDO], 4/5-tone down U+E383 - + Classes @@ -23204,10 +26082,11 @@ - - Double sharp 5:19C-down, 19/20-tone up + + accSagittalDoubleSharp5v19CDown + Double sharp 5:19C-down, 19/20-tone up U+E384 - + Classes @@ -23217,10 +26096,11 @@ - - Double flat 5:19C-up, 19/20-tone down + + accSagittalDoubleFlat5v19CUp + Double flat 5:19C-up, 19/20-tone down U+E385 - + Classes @@ -23230,10 +26110,11 @@ - - Double sharp 23C-down, 14°up [96 EDO], 7/8-tone up + + accSagittalDoubleSharp23CDown + Double sharp 23C-down, 14°up [96 EDO], 7/8-tone up U+E386 - + Classes @@ -23243,10 +26124,11 @@ - - Double flat 23C-up, 14° down [96 EDO], 7/8-tone down + + accSagittalDoubleFlat23CUp + Double flat 23C-up, 14° down [96 EDO], 7/8-tone down U+E387 - + Classes @@ -23259,10 +26141,11 @@ Tuned mallet percussion pictograms - - Glockenspiel + + pictGlsp + Glockenspiel U+E6A0 - + Classes @@ -23270,10 +26153,11 @@ - - Xylophone + + pictXyl + Xylophone U+E6A1 - + Classes @@ -23281,10 +26165,11 @@ - - Tenor xylophone + + pictXylTenor + Tenor xylophone U+E6A2 - + Classes @@ -23292,10 +26177,11 @@ - - Bass xylophone + + pictXylBass + Bass xylophone U+E6A3 - + Classes @@ -23303,10 +26189,11 @@ - - Trough xylophone + + pictXylTrough + Trough xylophone U+E6A4 - + Classes @@ -23314,10 +26201,11 @@ - - Trough tenor xylophone + + pictXylTenorTrough + Trough tenor xylophone U+E6A5 - + Classes @@ -23325,10 +26213,11 @@ - - Marimba + + pictMar + Marimba U+E6A6 - + Classes @@ -23336,10 +26225,11 @@ - - Vibraphone + + pictVib + Vibraphone U+E6A7 - + Classes @@ -23347,10 +26237,11 @@ - - Metallophone (vibraphone motor off) + + pictVibMotorOff + Metallophone (vibraphone motor off) U+E6A8 - + Classes @@ -23358,10 +26249,11 @@ - - Empty trapezoid + + pictEmptyTrap + Empty trapezoid U+E6A9 - + Classes @@ -23369,10 +26261,11 @@ - - Glockenspiel (Smith Brindle) + + pictGlspSmithBrindle + Glockenspiel (Smith Brindle) U+E6AA - + Classes @@ -23380,10 +26273,11 @@ - - Xylophone (Smith Brindle) + + pictXylSmithBrindle + Xylophone (Smith Brindle) U+E6AB - + Classes @@ -23391,10 +26285,11 @@ - - Marimba (Smith Brindle) + + pictMarSmithBrindle + Marimba (Smith Brindle) U+E6AC - + Classes @@ -23402,10 +26297,11 @@ - - Vibraphone (Smith Brindle) + + pictVibSmithBrindle + Vibraphone (Smith Brindle) U+E6AD - + Classes @@ -23413,10 +26309,11 @@ - - Crotales + + pictCrotales + Crotales U+E6AE - + Classes @@ -23424,10 +26321,11 @@ - - Steel drums + + pictSteelDrums + Steel drums U+E6AF - + Classes @@ -23435,10 +26333,11 @@ - - Celesta + + pictCelesta + Celesta U+E6B0 - + Classes @@ -23446,10 +26345,11 @@ - - Lithophone + + pictLithophone + Lithophone U+E6B1 - + Classes @@ -23457,10 +26357,11 @@ - - Tubaphone + + pictTubaphone + Tubaphone U+E6B2 - + Classes @@ -23471,68 +26372,80 @@ Tuplets - - Tuplet 0 + + tuplet0 + Tuplet 0 U+E880 - + - - Tuplet 1 + + tuplet1 + Tuplet 1 U+E881 - + - - Tuplet 2 + + tuplet2 + Tuplet 2 U+E882 - + - - Tuplet 3 + + tuplet3 + Tuplet 3 U+E883 - + - - Tuplet 4 + + tuplet4 + Tuplet 4 U+E884 - + - - Tuplet 5 + + tuplet5 + Tuplet 5 U+E885 - + - - Tuplet 6 + + tuplet6 + Tuplet 6 U+E886 - + - - Tuplet 7 + + tuplet7 + Tuplet 7 U+E887 - + - - Tuplet 8 + + tuplet8 + Tuplet 8 U+E888 - + - - Tuplet 9 + + tuplet9 + Tuplet 9 U+E889 - + - - Tuplet colon + + tupletColon + Tuplet colon U+E88A - + Turkish folk music accidentals - - 1-comma sharp + + accidental1CommaSharp + 1-comma sharp U+E450 - + Classes @@ -23542,10 +26455,11 @@ - - 2-comma sharp + + accidental2CommaSharp + 2-comma sharp U+E451 - + Classes @@ -23555,10 +26469,11 @@ - - 3-comma sharp + + accidental3CommaSharp + 3-comma sharp U+E452 - + Classes @@ -23568,10 +26483,11 @@ - - 5-comma sharp + + accidental5CommaSharp + 5-comma sharp U+E453 - + Classes @@ -23581,10 +26497,11 @@ - - 1-comma flat + + accidental1CommaFlat + 1-comma flat U+E454 - + Classes @@ -23594,10 +26511,11 @@ - - 2-comma flat + + accidental2CommaFlat + 2-comma flat U+E455 - + Classes @@ -23607,10 +26525,11 @@ - - 3-comma flat + + accidental3CommaFlat + 3-comma flat U+E456 - + Classes @@ -23620,10 +26539,11 @@ - - 4-comma flat + + accidental4CommaFlat + 4-comma flat U+E457 - + Classes @@ -23636,35 +26556,41 @@ Vocal techniques - - Mouth closed + + vocalMouthClosed + Mouth closed U+E640 - + - - Mouth slightly open + + vocalMouthSlightlyOpen + Mouth slightly open U+E641 - + - - Mouth open + + vocalMouthOpen + Mouth open U+E642 - + - - Mouth wide open + + vocalMouthWideOpen + Mouth wide open U+E643 - + - - Mouth pursed + + vocalMouthPursed + Mouth pursed U+E644 - + - - Sprechgesang + + vocalSprechgesang + Sprechgesang U+E645 - + Classes @@ -23672,10 +26598,11 @@ - - Combining sussurando for stem + + vocalsSussurando + Combining sussurando for stem U+E646 - + Classes @@ -23686,10 +26613,11 @@ Whistles and aerophones pictograms - - Slide whistle + + pictSlideWhistle + Slide whistle U+E750 - + Classes @@ -23697,10 +26625,11 @@ - - Bird whistle + + pictBirdWhistle + Bird whistle U+E751 - + Classes @@ -23708,10 +26637,11 @@ - - Police whistle + + pictPoliceWhistle + Police whistle U+E752 - + Classes @@ -23719,10 +26649,11 @@ - - Siren + + pictSiren + Siren U+E753 - + Classes @@ -23730,10 +26661,11 @@ - - Wind machine + + pictWindMachine + Wind machine U+E754 - + Classes @@ -23741,10 +26673,11 @@ - - Car horn + + pictCarHorn + Car horn U+E755 - + Classes @@ -23752,10 +26685,11 @@ - - Klaxon horn + + pictKlaxonHorn + Klaxon horn U+E756 - + Classes @@ -23763,10 +26697,11 @@ - - Duck call + + pictDuckCall + Duck call U+E757 - + Classes @@ -23774,10 +26709,11 @@ - - Wind whistle (or mouth siren) + + pictWindWhistle + Wind whistle (or mouth siren) U+E758 - + Classes @@ -23785,10 +26721,11 @@ - - Megaphone + + pictMegaphone + Megaphone U+E759 - + Classes @@ -23796,10 +26733,11 @@ - - Lotus flute + + pictLotusFlute + Lotus flute U+E75A - + Classes @@ -23810,127 +26748,151 @@ Wind techniques - - Double-tongue above + + doubleTongueAbove + Double-tongue above U+E5F0 U+1D18A - + - - Double-tongue below + + doubleTongueBelow + Double-tongue below U+E5F1 - + - - Triple-tongue above + + tripleTongueAbove + Triple-tongue above U+E5F2 U+1D18B - + - - Triple-tongue below + + tripleTongueBelow + Triple-tongue below U+E5F3 - + - - Closed hole + + windClosedHole + Closed hole U+E5F4 - + - - Three-quarters closed hole + + windThreeQuartersClosedHole + Three-quarters closed hole U+E5F5 - + - - Half-closed hole + + windHalfClosedHole1 + Half-closed hole U+E5F6 - + - - Half-closed hole 2 + + windHalfClosedHole2 + Half-closed hole 2 U+E5F7 - + - - Half-open hole + + windHalfClosedHole3 + Half-open hole U+E5F8 - + - - Open hole + + windOpenHole + Open hole U+E5F9 - + - - Trill key + + windTrillKey + Trill key U+E5FA - + - - Sharper embouchure + + windFlatEmbouchure + Flatter embouchure U+E5FB - + - - Flatter embouchure + + windSharpEmbouchure + Sharper embouchure U+E5FC - + - - Relaxed embouchure + + windRelaxedEmbouchure + Relaxed embouchure U+E5FD - + - - Somewhat relaxed embouchure + + windLessRelaxedEmbouchure + Somewhat relaxed embouchure U+E5FE - + - - Tight embouchure + + windTightEmbouchure + Tight embouchure U+E5FF - + - - Somewhat tight embouchure + + windLessTightEmbouchure + Somewhat tight embouchure U+E600 - + - - Very tight embouchure + + windVeryTightEmbouchure + Very tight embouchure U+E601 - + - - Very relaxed embouchure / weak air-pressure + + windWeakAirPressure + Very relaxed embouchure / weak air-pressure U+E602 - + - - Very tight embouchure / strong air pressure + + windStrongAirPressure + Very tight embouchure / strong air pressure U+E603 - + - - Normal reed position + + windReedPositionNormal + Normal reed position U+E604 - + - - Very little reed (pull outwards) + + windReedPositionOut + Very little reed (pull outwards) U+E605 - + - - Much more reed (push inwards) + + windReedPositionIn + Much more reed (push inwards) U+E606 - + - - Combining multiphonics (black) for stem + + windMultiphonicsBlackStem + Combining multiphonics (black) for stem U+E607 - + Classes @@ -23938,10 +26900,11 @@ - - Combining multiphonics (white) for stem + + windMultiphonicsWhiteStem + Combining multiphonics (white) for stem U+E608 - + Classes @@ -23949,10 +26912,11 @@ - - Combining multiphonics (black and white) for stem + + windMultiphonicsBlackWhiteStem + Combining multiphonics (black and white) for stem U+E609 - + Classes @@ -23963,10 +26927,11 @@ Wooden struck or scraped percussion pictograms - - Wood block + + pictWoodBlock + Wood block U+E6F0 - + Classes @@ -23974,10 +26939,11 @@ - - Temple blocks + + pictTempleBlocks + Temple blocks U+E6F1 - + Classes @@ -23985,10 +26951,11 @@ - - Claves + + pictClaves + Claves U+E6F2 - + Classes @@ -23996,10 +26963,11 @@ - - Guiro + + pictGuiro + Guiro U+E6F3 - + Classes @@ -24007,10 +26975,11 @@ - - Ratchet + + pictRatchet + Ratchet U+E6F4 - + Classes @@ -24018,10 +26987,11 @@ - - Football rattle + + pictFootballRatchet + Football rattle U+E6F5 - + Classes @@ -24029,10 +26999,11 @@ - - Whip + + pictWhip + Whip U+E6F6 - + Classes @@ -24040,10 +27011,11 @@ - - Board clapper + + pictBoardClapper + Board clapper U+E6F7 - + Classes @@ -24051,10 +27023,11 @@ - - Castanets + + pictCastanets + Castanets U+E6F8 - + Classes @@ -24062,10 +27035,11 @@ - - Castanets with handle + + pictCastanetsWithHandle + Castanets with handle U+E6F9 - + Classes @@ -24073,10 +27047,11 @@ - - Quijada (jawbone) + + pictQuijada + Quijada (jawbone) U+E6FA - + Classes @@ -24084,10 +27059,11 @@ - - Bamboo scraper + + pictBambooScraper + Bamboo scraper U+E6FB - + Classes @@ -24095,10 +27071,11 @@ - - Reco-reco + + pictRecoReco + Reco-reco U+E6FC - + Classes @@ -24109,10 +27086,11 @@ Wyschnegradsky accidentals (72-EDO) - - 1/12 tone sharp + + accidentalWyschnegradsky1TwelfthsSharp + 1/12 tone sharp U+E420 - + Classes @@ -24122,10 +27100,11 @@ - - 1/6 tone sharp + + accidentalWyschnegradsky2TwelfthsSharp + 1/6 tone sharp U+E421 - + Classes @@ -24135,10 +27114,11 @@ - - 1/4 tone sharp + + accidentalWyschnegradsky3TwelfthsSharp + 1/4 tone sharp U+E422 - + Classes @@ -24148,10 +27128,11 @@ - - 1/3 tone sharp + + accidentalWyschnegradsky4TwelfthsSharp + 1/3 tone sharp U+E423 - + Classes @@ -24161,10 +27142,11 @@ - - 5/12 tone sharp + + accidentalWyschnegradsky5TwelfthsSharp + 5/12 tone sharp U+E424 - + Classes @@ -24174,10 +27156,11 @@ - - 1/2 tone sharp + + accidentalWyschnegradsky6TwelfthsSharp + 1/2 tone sharp U+E425 - + Classes @@ -24187,10 +27170,11 @@ - - 7/12 tone sharp + + accidentalWyschnegradsky7TwelfthsSharp + 7/12 tone sharp U+E426 - + Classes @@ -24200,10 +27184,11 @@ - - 2/3 tone sharp + + accidentalWyschnegradsky8TwelfthsSharp + 2/3 tone sharp U+E427 - + Classes @@ -24213,10 +27198,11 @@ - - 3/4 tone sharp + + accidentalWyschnegradsky9TwelfthsSharp + 3/4 tone sharp U+E428 - + Classes @@ -24226,10 +27212,11 @@ - - 5/6 tone sharp + + accidentalWyschnegradsky10TwelfthsSharp + 5/6 tone sharp U+E429 - + Classes @@ -24239,10 +27226,11 @@ - - 11/12 tone sharp + + accidentalWyschnegradsky11TwelfthsSharp + 11/12 tone sharp U+E42A - + Classes @@ -24252,10 +27240,11 @@ - - 1/12 tone flat + + accidentalWyschnegradsky1TwelfthsFlat + 1/12 tone flat U+E42B - + Classes @@ -24265,10 +27254,11 @@ - - 1/6 tone flat + + accidentalWyschnegradsky2TwelfthsFlat + 1/6 tone flat U+E42C - + Classes @@ -24278,10 +27268,11 @@ - - 1/4 tone flat + + accidentalWyschnegradsky3TwelfthsFlat + 1/4 tone flat U+E42D - + Classes @@ -24291,10 +27282,11 @@ - - 1/3 tone flat + + accidentalWyschnegradsky4TwelfthsFlat + 1/3 tone flat U+E42E - + Classes @@ -24304,10 +27296,11 @@ - - 5/12 tone flat + + accidentalWyschnegradsky5TwelfthsFlat + 5/12 tone flat U+E42F - + Classes @@ -24317,10 +27310,11 @@ - - 1/2 tone flat + + accidentalWyschnegradsky6TwelfthsFlat + 1/2 tone flat U+E430 - + Classes @@ -24330,10 +27324,11 @@ - - 7/12 tone flat + + accidentalWyschnegradsky7TwelfthsFlat + 7/12 tone flat U+E431 - + Classes @@ -24343,10 +27338,11 @@ - - 2/3 tone flat + + accidentalWyschnegradsky8TwelfthsFlat + 2/3 tone flat U+E432 - + Classes @@ -24356,10 +27352,11 @@ - - 3/4 tone flat + + accidentalWyschnegradsky9TwelfthsFlat + 3/4 tone flat U+E433 - + Classes @@ -24369,10 +27366,11 @@ - - 5/6 tone flat + + accidentalWyschnegradsky10TwelfthsFlat + 5/6 tone flat U+E434 - + Classes @@ -24382,10 +27380,11 @@ - - 11/12 tone flat + + accidentalWyschnegradsky11TwelfthsFlat + 11/12 tone flat U+E435 - + Classes @@ -24397,14 +27396,11 @@ - - Automated transformation to version 0.99 - First Draft - +

Just some dummy text to make the file valid …

-
+ \ No newline at end of file diff --git a/xsl/common_main.xsl b/xsl/common_main.xsl index 5061e1a09..18d6be239 100644 --- a/xsl/common_main.xsl +++ b/xsl/common_main.xsl @@ -1038,7 +1038,7 @@ - + From 01755ca2e65a73de49cb8fa10a53e64fea102aaa Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Sun, 11 Oct 2015 21:04:40 +0200 Subject: [PATCH 20/25] omg, it'd be XHTML MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit don’t tell anyone, I originally copy pasted this bit from my safari web inspector view … --- modules/diary_singleView.xql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/diary_singleView.xql b/modules/diary_singleView.xql index aa11069f5..d34c2ee47 100644 --- a/modules/diary_singleView.xql +++ b/modules/diary_singleView.xql @@ -137,7 +137,7 @@ return

Berlin (D), Staatsbibliothek zu Berlin Preußischer Kulturbesitz, Musikabteilung (D-B), -
Signatur: Mus. ms. autogr. theor. C. M. v. Weber 1 +
Signatur: Mus. ms. autogr. theor. C. M. v. Weber 1

From e387592833b8597d44861df735f4fb11bb1aed75 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Sun, 11 Oct 2015 21:05:44 +0200 Subject: [PATCH 21/25] pushing to version 1.4.0 --- build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.properties b/build.properties index f39875b46..df324a2b5 100644 --- a/build.properties +++ b/build.properties @@ -3,7 +3,7 @@ # Instead, copy it to local.build.properties and edit that. # project.app=WeGA-WebApp -project.version=1.3.0 +project.version=1.4.0 build.dir=build smufl.font=http://www.smufl.org/files/bravura-1.18.zip additional.img.dir=/Users/pstadler/WeGA/Subversion/trunk/webapp/pix From 850db43fa528aa47450561616bc9ad6e525e5661 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Tue, 13 Oct 2015 19:40:39 +0200 Subject: [PATCH 22/25] prevent extra spaces --- xsl/common_link.xsl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xsl/common_link.xsl b/xsl/common_link.xsl index 8dbe3752b..8e1deb354 100644 --- a/xsl/common_link.xsl +++ b/xsl/common_link.xsl @@ -94,7 +94,9 @@ - + + +
From 624bfb947b2de82181491dc02447607e9b103f2a Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Tue, 13 Oct 2015 22:18:53 +0200 Subject: [PATCH 23/25] fix for rev gt 9999 --- modules/dev/dev.xqm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/dev/dev.xqm b/modules/dev/dev.xqm index 0f09a50f0..05ca5677a 100644 --- a/modules/dev/dev.xqm +++ b/modules/dev/dev.xqm @@ -215,11 +215,12 @@ declare function dev:validatePaths($docType as xs:string) as element() { : @return map with entries 'rev' and 'success' :) declare function dev:ant-log() as map(*) { - let $logFile := util:binary-doc(core:join-path-elements(($config:tmp-collection-path, 'logs', max(xmldb:get-child-resources($config:tmp-collection-path || '/logs'))))) + let $currLogRev := max(xmldb:get-child-resources($config:tmp-collection-path || '/logs') ! (substring-before(., '.log') cast as xs:int)) + let $logFile := util:binary-doc(core:join-path-elements(($config:tmp-collection-path, 'logs', $currLogRev || '.log'))) let $logLines := tokenize(util:binary-to-string($logFile), '\n') return map:new(( - map:entry('rev', substring-after($logLines[contains(., 'Current revision of the working copy: ')], ': ')), + map:entry('rev', $currLogRev), map:entry('success', if($logLines = 'BUILD SUCCESSFUL') then 'success' else 'failed') )) }; From 8d7405b5cda589bb0a419782d564add157cccfba Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Tue, 13 Oct 2015 22:19:25 +0200 Subject: [PATCH 24/25] special rule for displaying textual source of writings --- modules/bibl.xqm | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/modules/bibl.xqm b/modules/bibl.xqm index 3621eb1d8..466cf1a0f 100644 --- a/modules/bibl.xqm +++ b/modules/bibl.xqm @@ -35,6 +35,7 @@ declare function bibl:printCitation($biblStruct as element(tei:biblStruct), $wra case 'mastersthesis' return bibl:printBookCitation($biblStruct, $wrapperElement, $lang) case 'review' return bibl:printArticleCitation($biblStruct, $wrapperElement, $lang) case 'phdthesis' return bibl:printBookCitation($biblStruct, $wrapperElement, $lang) + case 'monogrOnly' return bibl:printJournalCitation($biblStruct/tei:monogr, $wrapperElement, $lang) default return bibl:printGenericCitation($biblStruct, $wrapperElement, $lang) }; @@ -157,15 +158,7 @@ declare function bibl:printIncollectionCitation($biblStruct as element(tei:biblS declare function bibl:printJournalCitation($monogr as element(tei:monogr), $wrapperElement as xs:string, $lang as xs:string) as element() { let $journalTitle := {string-join($monogr/tei:title, '. ')} (: let $date := concat('(', $monogr/tei:imprint/tei:date, ')'):) - let $biblScope := bibl:biblScope($monogr/tei:imprint, $lang) (:concat( - if($monogr/tei:imprint/tei:biblScope[@type = 'vol']) then concat(', ', lang:get-language-string('vol', $lang), ' ', $monogr/tei:imprint/tei:biblScope[@type = 'vol']) else (), - if($monogr/tei:imprint/tei:biblScope[@type = 'jg']) then concat(', ', 'Jg.', ' ', $monogr/tei:imprint/tei:biblScope[@type = 'jg']) else (), - if($monogr/tei:imprint/tei:biblScope[@type = 'issue']) then concat(', ', lang:get-language-string('issue', $lang), ' ', $monogr/tei:imprint/tei:biblScope[@type = 'issue']) else (), - if($monogr/tei:imprint/tei:biblScope[@type = 'nr']) then concat(', ', 'Nr.', ' ', $monogr/tei:imprint/tei:biblScope[@type = 'nr']) else (), - if(exists($monogr/tei:imprint/tei:date)) then concat(' ', $date) else (), - if($monogr/tei:imprint/tei:biblScope[@type = 'pp']) then concat(', ', lang:get-language-string('pp', $lang), ' ', replace($monogr/tei:imprint/tei:biblScope[@type = 'pp'], '-', '–')) else (), - if($monogr/tei:imprint/tei:biblScope[@type = 'col']) then concat(', ', lang:get-language-string('col', $lang), ' ', replace($monogr/tei:imprint/tei:biblScope[@type = 'col'], '-', '–')) else () - ):) + let $biblScope := bibl:biblScope($monogr/tei:imprint, $lang) return element {$wrapperElement} { $journalTitle, @@ -269,7 +262,9 @@ declare %private function bibl:printpubPlaceNYear($imprint as element(tei:imprin : @return the entry type as string, the empty sequence if nothing could be inferd :) declare %private function bibl:guess-biblio-type($biblStruct as element(tei:biblStruct)) as xs:string? { - if($biblStruct/@type = $bibl:supportedBiblioTypes) then $biblStruct/@type cast as xs:string + (: An Schriften wird nur die Zeitschrift ausgegeben :) + if(config:is-writing($biblStruct/ancestor::tei:TEI/data(@xml:id))) then 'monogrOnly' + else if($biblStruct/@type = $bibl:supportedBiblioTypes) then $biblStruct/@type cast as xs:string else if($biblStruct/tei:analytic and $biblStruct/tei:monogr/tei:title[@level='j']) then 'article' else() }; From bc139135e451c843d3fc799fca81b0c720745469 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Tue, 13 Oct 2015 23:36:08 +0200 Subject: [PATCH 25/25] further mods for release 1.4 --- catalogues/options.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/catalogues/options.xml b/catalogues/options.xml index 5e0598d77..c44cad2c0 100644 --- a/catalogues/options.xml +++ b/catalogues/options.xml @@ -76,9 +76,9 @@ 120 EAO5d_GiQPkJeTGACYYOFahJm2HRNvJUWwIkyw4j0Ys AE39DA5613844228642EE48196AAA94A - 1.3 - A050157 - 2014-12-19 + 1.4 + A050158 + 2015-10-13
http://tools.wmflabs.org/persondata/redirect/gnd/