packages feed

texmath 0.8.4.1 → 0.8.4.2

raw patch · 198 files changed

+20244/−19799 lines, 198 files

Files

changelog view
@@ -1,3 +1,11 @@+texmath (0.8.4.2)++  * Fixed overbrace, underbrace (#82).  Previously we were using the wrong+    character: U+FE37 instead of U+23DE.  This didn't work in Word.+  * Support \mathop, \mathrel, \mathbin, \mathord+  * MathML - render Symbol Ord as mi, not mo (#83).+  * Handle align environments with > 2 cells per row (#84).+ texmath (0.8.4.1)    * Added stack install instructions.
src/Text/TeXMath/Readers/TeX.hs view
@@ -51,6 +51,7 @@           , styled           , root           , mspace+          , mathop           , phantom           , boxed           , binary@@ -384,14 +385,22 @@   return $ EArray (alignsFromRows AlignCenter rows) rows  eqnarray :: TP Exp-eqnarray = (EArray [AlignRight, AlignCenter, AlignLeft]) <$>-  sepEndBy1 arrayLine endLine+eqnarray = do+  rows <- sepEndBy1 arrayLine endLine+  let n = maximum $ map length rows+  return $ EArray (take n $ cycle [AlignRight, AlignCenter, AlignLeft]) rows  align :: TP Exp-align = (EArray [AlignRight, AlignLeft]) <$> sepEndBy1 arrayLine endLine+align = do+  rows <- sepEndBy1 arrayLine endLine+  let n = maximum $ map length rows+  return $ EArray (take n $ cycle [AlignRight, AlignLeft]) rows  flalign :: TP Exp-flalign = (EArray [AlignLeft, AlignRight]) <$> sepEndBy1 arrayLine endLine+flalign = do+  rows <- sepEndBy1 arrayLine endLine+  let n = maximum $ map length rows+  return $ EArray (take n $ cycle [AlignLeft, AlignRight]) rows  cases :: TP Exp cases = do@@ -552,6 +561,21 @@        ((n,[]):_) -> return $ ESpace (n/18)        _          -> mzero ++mathop :: TP Exp+mathop = mathopWith "mathop" Op+     <|> mathopWith "mathrel" Rel+     <|> mathopWith "mathbin" Bin+     <|> mathopWith "mathord" Ord++mathopWith :: String -> TeXSymbolType -> TP Exp+mathopWith name ty = try $ do+  ctrlseq name+  e <- expr1+  case e of+     ESymbol _ x   -> return $ ESymbol ty x+     EIdentifier x -> return $ ESymbol ty x+     x             -> return x  binary :: TP Exp binary = do
src/Text/TeXMath/Shared.hs view
@@ -312,11 +312,9 @@                , (("\x02DC", "\\widetilde"))                , (("\x203E", "\\bar"))                , (("\x23DE", "\\overbrace"))-               , (("\xFE37", "\\overbrace"))                , (("\x23B4", "\\overbracket")) -- Only availible in mathtools                , (("\x00AF", "\\overline"))                , (("\x23DF", "\\underbrace"))-               , (("\xFE38", "\\underbrace"))                , (("\x23B5", "\\underbracket")) -- mathtools                , (("\x0332", "\\underline"))                , (("\x0333", "\\underbar"))
src/Text/TeXMath/Writers/MathML.hs view
@@ -155,6 +155,7 @@    ESymbol Accent x -> accent x    ESymbol Open x   -> makeFence FPrefix $ op x    ESymbol Close x  -> makeFence FPostfix $ op x+   ESymbol Ord x    -> unode "mi" x    ESymbol _ x      -> op x    ESpace x         -> spaceWidth x    EFraction ft x y -> showFraction tt ft x y
src/Text/TeXMath/Writers/OMML.hs view
@@ -172,8 +172,10 @@                                         mnodeA "pos" "top" ()                                     , mnode "e" $ showExp props x ]]    EOver _ x (ESymbol Accent y) ->-                       [mnode "acc" [ mnode "accPr" $-                                        mnodeA "chr" y ()+                       [mnode "groupChr" [ mnode "groupChrPr"+                                           [ mnodeA "chr" y ()+                                           , mnodeA "pos" "top" ()+                                           , mnodeA "vertJc" "bot" () ]                                     , mnode "e" $ showExp props x ]]    ESub x y         -> [mnode "sSub" [ mnode "e" $ showExp props x                                      , mnode "sub" $ showExp props y]]
tests/readers/tex/complex_number.native view
@@ -1,1 +1,1 @@-[EIdentifier "c",ESymbol Rel "=",EOver False (EOver False (EGrouped [EUnder False (EUnder False (EIdentifier "a") (ESymbol Accent "\65080")) (EText TextNormal "real"),ESymbol Bin "+",EUnder False (EUnder False (EGrouped [EIdentifier "b",EStyled TextNormal [EIdentifier "i"]]) (ESymbol Accent "\65080")) (EText TextNormal "imaginary")]) (ESymbol Accent "\65079")) (EText TextNormal "complex number")]+[EIdentifier "c",ESymbol Rel "=",EOver False (EOver False (EGrouped [EUnder False (EUnder False (EIdentifier "a") (ESymbol Accent "\9183")) (EText TextNormal "real"),ESymbol Bin "+",EUnder False (EUnder False (EGrouped [EIdentifier "b",EStyled TextNormal [EIdentifier "i"]]) (ESymbol Accent "\9183")) (EText TextNormal "imaginary")]) (ESymbol Accent "\9182")) (EText TextNormal "complex number")]
tests/readers/tex/subsup.native view
@@ -1,1 +1,1 @@-[ESubsup (EIdentifier "x") (EIdentifier "b") (EIdentifier "a"),ESpace (1 % 1),ESubsup (EIdentifier "x") (EIdentifier "b") (EIdentifier "a"),ESpace (1 % 1),EUnder True (EMathOperator "min") (EIdentifier "A"),ESpace (1 % 1),EUnder True (EMathOperator "max") (EIdentifier "B"),ESpace (1 % 1),EUnder True (EMathOperator "det") (EIdentifier "C"),ESpace (1 % 1),EUnder True (EMathOperator "Pr") (EIdentifier "A"),ESpace (1 % 1),EUnder True (EMathOperator "gcd") (EIdentifier "A"),ESpace (1 % 1),ESuper (EOver False (EIdentifier "u") (ESymbol Accent "\775")) (ENumber "2"),ESpace (1 % 1),ESub (EOver False (EIdentifier "u") (ESymbol Accent "\175")) (EIdentifier "\949"),ESpace (1 % 1),ESubsup (EUnder False (EIdentifier "u") (ESymbol Accent "\818")) (EIdentifier "b") (EIdentifier "a"),ESpace (1 % 1),EOver False (EOver False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\65079")) (EText TextNormal "term"),ESpace (1 % 1),EOver False (EOver False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\9140")) (EIdentifier "c"),ESpace (1 % 1),EUnder False (EUnder False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\65080")) (EIdentifier "c"),ESpace (1 % 1),EUnder False (EUnder False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\9141")) (EIdentifier "c"),ESuper (ESpace (1 % 1)) (EIdentifier "H"),EIdentifier "e",ENumber "3",ESub (ESpace (1 % 1)) (EIdentifier "x"),EIdentifier "A",ESubsup (ESpace (1 % 1)) (EIdentifier "x") (ENumber "3")]+[ESubsup (EIdentifier "x") (EIdentifier "b") (EIdentifier "a"),ESpace (1 % 1),ESubsup (EIdentifier "x") (EIdentifier "b") (EIdentifier "a"),ESpace (1 % 1),EUnder True (EMathOperator "min") (EIdentifier "A"),ESpace (1 % 1),EUnder True (EMathOperator "max") (EIdentifier "B"),ESpace (1 % 1),EUnder True (EMathOperator "det") (EIdentifier "C"),ESpace (1 % 1),EUnder True (EMathOperator "Pr") (EIdentifier "A"),ESpace (1 % 1),EUnder True (EMathOperator "gcd") (EIdentifier "A"),ESpace (1 % 1),ESuper (EOver False (EIdentifier "u") (ESymbol Accent "\775")) (ENumber "2"),ESpace (1 % 1),ESub (EOver False (EIdentifier "u") (ESymbol Accent "\175")) (EIdentifier "\949"),ESpace (1 % 1),ESubsup (EUnder False (EIdentifier "u") (ESymbol Accent "\818")) (EIdentifier "b") (EIdentifier "a"),ESpace (1 % 1),EOver False (EOver False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\9182")) (EText TextNormal "term"),ESpace (1 % 1),EOver False (EOver False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\9140")) (EIdentifier "c"),ESpace (1 % 1),EUnder False (EUnder False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\9183")) (EIdentifier "c"),ESpace (1 % 1),EUnder False (EUnder False (EGrouped [EIdentifier "a",ESymbol Bin "+",EIdentifier "b"]) (ESymbol Accent "\9141")) (EIdentifier "c"),ESuper (ESpace (1 % 1)) (EIdentifier "H"),EIdentifier "e",ENumber "3",ESub (ESpace (1 % 1)) (EIdentifier "x"),EIdentifier "A",ESubsup (ESpace (1 % 1)) (EIdentifier "x") (ENumber "3")]
tests/writers/00000_C0_Controls_and_Basic_Latin.mml view
@@ -33,19 +33,19 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mi></mi>       </mtd>       <mtd>-        <mo>0</mo>+        <mi>0</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>P</mo>@@ -62,16 +62,16 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo>!</mo>       </mtd>       <mtd>-        <mo>1</mo>+        <mi>1</mi>       </mtd>       <mtd>         <mo>A</mo>@@ -91,16 +91,16 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo accent="true">&quot;</mo>       </mtd>       <mtd>-        <mo>2</mo>+        <mi>2</mi>       </mtd>       <mtd>         <mo>B</mo>@@ -120,16 +120,16 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>#</mo>+        <mi>#</mi>       </mtd>       <mtd>-        <mo>3</mo>+        <mi>3</mi>       </mtd>       <mtd>         <mo>C</mo>@@ -149,16 +149,16 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>$</mo>+        <mi>$</mi>       </mtd>       <mtd>-        <mo>4</mo>+        <mi>4</mi>       </mtd>       <mtd>         <mo>D</mo>@@ -178,16 +178,16 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>%</mo>+        <mi>%</mi>       </mtd>       <mtd>-        <mo>5</mo>+        <mi>5</mi>       </mtd>       <mtd>         <mo>E</mo>@@ -207,16 +207,16 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>&amp;</mo>+        <mi>&amp;</mi>       </mtd>       <mtd>-        <mo>6</mo>+        <mi>6</mi>       </mtd>       <mtd>         <mo>F</mo>@@ -236,16 +236,16 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo accent="true">&#39;</mo>       </mtd>       <mtd>-        <mo>7</mo>+        <mi>7</mi>       </mtd>       <mtd>         <mo>G</mo>@@ -265,16 +265,16 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">(</mo>       </mtd>       <mtd>-        <mo>8</mo>+        <mi>8</mi>       </mtd>       <mtd>         <mo>H</mo>@@ -294,16 +294,16 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">)</mo>       </mtd>       <mtd>-        <mo>9</mo>+        <mi>9</mi>       </mtd>       <mtd>         <mo>I</mo>@@ -323,13 +323,13 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo>:</mo>@@ -352,10 +352,10 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo>+</mo>@@ -381,10 +381,10 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo>,</mo>@@ -396,7 +396,7 @@         <mo>L</mo>       </mtd>       <mtd>-        <mo>\</mo>+        <mi>\</mi>       </mtd>       <mtd>         <mo>l</mo>@@ -410,10 +410,10 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo>-</mo>@@ -439,10 +439,10 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>         <mo>.</mo>@@ -454,7 +454,7 @@         <mo>N</mo>       </mtd>       <mtd>-        <mo accent="false">^</mo>+        <mi>^</mi>       </mtd>       <mtd>         <mo>n</mo>@@ -468,28 +468,28 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>       <mtd>-        <mo>/</mo>+        <mi>/</mi>       </mtd>       <mtd>-        <mo>?</mo>+        <mi>?</mi>       </mtd>       <mtd>         <mo>O</mo>       </mtd>       <mtd>-        <mo accent="false">_</mo>+        <mi>_</mi>       </mtd>       <mtd>         <mo>o</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/00080_C1_Controls_and_Latin-1_Supplement.mml view
@@ -33,25 +33,25 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>°</mo>+        <mi>°</mi>       </mtd>       <mtd>-        <mo>À</mo>+        <mi>À</mi>       </mtd>       <mtd>-        <mo>Ð</mo>+        <mi>Ð</mi>       </mtd>       <mtd>-        <mo>à</mo>+        <mi>à</mi>       </mtd>       <mtd>         <mo>ð</mo>@@ -62,28 +62,28 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>¡</mo>+        <mi>¡</mi>       </mtd>       <mtd>         <mo>±</mo>       </mtd>       <mtd>-        <mo>Á</mo>+        <mi>Á</mi>       </mtd>       <mtd>-        <mo>Ñ</mo>+        <mi>Ñ</mi>       </mtd>       <mtd>-        <mo>á</mo>+        <mi>á</mi>       </mtd>       <mtd>-        <mo>ñ</mo>+        <mi>ñ</mi>       </mtd>     </mtr>     <mtr>@@ -91,28 +91,28 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>¢</mo>+        <mi>¢</mi>       </mtd>       <mtd>         <mo accent="true">²</mo>       </mtd>       <mtd>-        <mo>Â</mo>+        <mi>Â</mi>       </mtd>       <mtd>-        <mo>Ò</mo>+        <mi>Ò</mi>       </mtd>       <mtd>-        <mo>â</mo>+        <mi>â</mi>       </mtd>       <mtd>-        <mo>ò</mo>+        <mi>ò</mi>       </mtd>     </mtr>     <mtr>@@ -120,28 +120,28 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>£</mo>+        <mi>£</mi>       </mtd>       <mtd>         <mo accent="true">³</mo>       </mtd>       <mtd>-        <mo>Ã</mo>+        <mi>Ã</mi>       </mtd>       <mtd>-        <mo>Ó</mo>+        <mi>Ó</mi>       </mtd>       <mtd>-        <mo>ã</mo>+        <mi>ã</mi>       </mtd>       <mtd>-        <mo>ó</mo>+        <mi>ó</mi>       </mtd>     </mtr>     <mtr>@@ -149,28 +149,28 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>¤</mo>+        <mi>¤</mi>       </mtd>       <mtd>         <mo accent="true">´</mo>       </mtd>       <mtd>-        <mo>Ä</mo>+        <mi>Ä</mi>       </mtd>       <mtd>-        <mo>Ô</mo>+        <mi>Ô</mi>       </mtd>       <mtd>-        <mo>ä</mo>+        <mi>ä</mi>       </mtd>       <mtd>-        <mo>ô</mo>+        <mi>ô</mi>       </mtd>     </mtr>     <mtr>@@ -178,28 +178,28 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>¥</mo>+        <mi>¥</mi>       </mtd>       <mtd>         <mo>µ</mo>       </mtd>       <mtd>-        <mo>Å</mo>+        <mi>Å</mi>       </mtd>       <mtd>-        <mo>Õ</mo>+        <mi>Õ</mi>       </mtd>       <mtd>-        <mo>å</mo>+        <mi>å</mi>       </mtd>       <mtd>-        <mo>õ</mo>+        <mi>õ</mi>       </mtd>     </mtr>     <mtr>@@ -207,28 +207,28 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>¦</mo>+        <mi>¦</mi>       </mtd>       <mtd>-        <mo>¶</mo>+        <mi>¶</mi>       </mtd>       <mtd>-        <mo>Æ</mo>+        <mi>Æ</mi>       </mtd>       <mtd>-        <mo>Ö</mo>+        <mi>Ö</mi>       </mtd>       <mtd>-        <mo>æ</mo>+        <mi>æ</mi>       </mtd>       <mtd>-        <mo>ö</mo>+        <mi>ö</mi>       </mtd>     </mtr>     <mtr>@@ -236,25 +236,25 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>§</mo>+        <mi>§</mi>       </mtd>       <mtd>         <mo>·</mo>       </mtd>       <mtd>-        <mo>Ç</mo>+        <mi>Ç</mi>       </mtd>       <mtd>         <mo>×</mo>       </mtd>       <mtd>-        <mo>ç</mo>+        <mi>ç</mi>       </mtd>       <mtd>         <mo>÷</mo>@@ -265,10 +265,10 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo accent="true">¨</mo>@@ -277,16 +277,16 @@         <mo accent="true">¸</mo>       </mtd>       <mtd>-        <mo>È</mo>+        <mi>È</mi>       </mtd>       <mtd>-        <mo>Ø</mo>+        <mi>Ø</mi>       </mtd>       <mtd>-        <mo>è</mo>+        <mi>è</mi>       </mtd>       <mtd>-        <mo>ø</mo>+        <mi>ø</mi>       </mtd>     </mtr>     <mtr>@@ -294,28 +294,28 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>©</mo>+        <mi>©</mi>       </mtd>       <mtd>         <mo accent="true">¹</mo>       </mtd>       <mtd>-        <mo>É</mo>+        <mi>É</mi>       </mtd>       <mtd>-        <mo>Ù</mo>+        <mi>Ù</mi>       </mtd>       <mtd>-        <mo>é</mo>+        <mi>é</mi>       </mtd>       <mtd>-        <mo>ù</mo>+        <mi>ù</mi>       </mtd>     </mtr>     <mtr>@@ -323,10 +323,10 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo accent="true">ª</mo>@@ -335,16 +335,16 @@         <mo accent="true">º</mo>       </mtd>       <mtd>-        <mo>Ê</mo>+        <mi>Ê</mi>       </mtd>       <mtd>-        <mo>Ú</mo>+        <mi>Ú</mi>       </mtd>       <mtd>-        <mo>ê</mo>+        <mi>ê</mi>       </mtd>       <mtd>-        <mo>ú</mo>+        <mi>ú</mi>       </mtd>     </mtr>     <mtr>@@ -352,28 +352,28 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>«</mo>+        <mi>«</mi>       </mtd>       <mtd>-        <mo>»</mo>+        <mi>»</mi>       </mtd>       <mtd>-        <mo>Ë</mo>+        <mi>Ë</mi>       </mtd>       <mtd>-        <mo>Û</mo>+        <mi>Û</mi>       </mtd>       <mtd>-        <mo>ë</mo>+        <mi>ë</mi>       </mtd>       <mtd>-        <mo>û</mo>+        <mi>û</mi>       </mtd>     </mtr>     <mtr>@@ -381,28 +381,28 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>¬</mo>+        <mi>¬</mi>       </mtd>       <mtd>-        <mo>¼</mo>+        <mi>¼</mi>       </mtd>       <mtd>-        <mo>Ì</mo>+        <mi>Ì</mi>       </mtd>       <mtd>-        <mo>Ü</mo>+        <mi>Ü</mi>       </mtd>       <mtd>-        <mo>ì</mo>+        <mi>ì</mi>       </mtd>       <mtd>-        <mo>ü</mo>+        <mi>ü</mi>       </mtd>     </mtr>     <mtr>@@ -410,28 +410,28 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>&#173;</mo>+        <mi>&#173;</mi>       </mtd>       <mtd>-        <mo>½</mo>+        <mi>½</mi>       </mtd>       <mtd>-        <mo>Í</mo>+        <mi>Í</mi>       </mtd>       <mtd>-        <mo>Ý</mo>+        <mi>Ý</mi>       </mtd>       <mtd>-        <mo>í</mo>+        <mi>í</mi>       </mtd>       <mtd>-        <mo>ý</mo>+        <mi>ý</mi>       </mtd>     </mtr>     <mtr>@@ -439,28 +439,28 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>®</mo>+        <mi>®</mi>       </mtd>       <mtd>-        <mo>¾</mo>+        <mi>¾</mi>       </mtd>       <mtd>-        <mo>Î</mo>+        <mi>Î</mi>       </mtd>       <mtd>-        <mo>Þ</mo>+        <mi>Þ</mi>       </mtd>       <mtd>-        <mo>î</mo>+        <mi>î</mi>       </mtd>       <mtd>-        <mo>þ</mo>+        <mi>þ</mi>       </mtd>     </mtr>     <mtr>@@ -468,28 +468,28 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo accent="true">¯</mo>       </mtd>       <mtd>-        <mo>¿</mo>+        <mi>¿</mi>       </mtd>       <mtd>-        <mo>Ï</mo>+        <mi>Ï</mi>       </mtd>       <mtd>-        <mo>ß</mo>+        <mi>ß</mi>       </mtd>       <mtd>-        <mo>ï</mo>+        <mi>ï</mi>       </mtd>       <mtd>-        <mo>ÿ</mo>+        <mi>ÿ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/00100_Latin_Extended-A.mml view
@@ -33,28 +33,28 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>Ā</mo>+        <mi>Ā</mi>       </mtd>       <mtd>-        <mo>Đ</mo>+        <mi>Đ</mi>       </mtd>       <mtd>-        <mo>Ġ</mo>+        <mi>Ġ</mi>       </mtd>       <mtd>-        <mo>İ</mo>+        <mi>İ</mi>       </mtd>       <mtd>-        <mo>ŀ</mo>+        <mi>ŀ</mi>       </mtd>       <mtd>-        <mo>Ő</mo>+        <mi>Ő</mi>       </mtd>       <mtd>-        <mo>Š</mo>+        <mi>Š</mi>       </mtd>       <mtd>-        <mo>Ű</mo>+        <mi>Ű</mi>       </mtd>     </mtr>     <mtr>@@ -62,28 +62,28 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ā</mo>+        <mi>ā</mi>       </mtd>       <mtd>-        <mo>đ</mo>+        <mi>đ</mi>       </mtd>       <mtd>-        <mo>ġ</mo>+        <mi>ġ</mi>       </mtd>       <mtd>         <mo>ı</mo>       </mtd>       <mtd>-        <mo>Ł</mo>+        <mi>Ł</mi>       </mtd>       <mtd>-        <mo>ő</mo>+        <mi>ő</mi>       </mtd>       <mtd>-        <mo>š</mo>+        <mi>š</mi>       </mtd>       <mtd>-        <mo>ű</mo>+        <mi>ű</mi>       </mtd>     </mtr>     <mtr>@@ -91,28 +91,28 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>Ă</mo>+        <mi>Ă</mi>       </mtd>       <mtd>-        <mo>Ē</mo>+        <mi>Ē</mi>       </mtd>       <mtd>-        <mo>Ģ</mo>+        <mi>Ģ</mi>       </mtd>       <mtd>-        <mo>IJ</mo>+        <mi>IJ</mi>       </mtd>       <mtd>-        <mo>ł</mo>+        <mi>ł</mi>       </mtd>       <mtd>-        <mo>Œ</mo>+        <mi>Œ</mi>       </mtd>       <mtd>-        <mo>Ţ</mo>+        <mi>Ţ</mi>       </mtd>       <mtd>-        <mo>Ų</mo>+        <mi>Ų</mi>       </mtd>     </mtr>     <mtr>@@ -120,28 +120,28 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ă</mo>+        <mi>ă</mi>       </mtd>       <mtd>-        <mo>ē</mo>+        <mi>ē</mi>       </mtd>       <mtd>-        <mo>ģ</mo>+        <mi>ģ</mi>       </mtd>       <mtd>-        <mo>ij</mo>+        <mi>ij</mi>       </mtd>       <mtd>-        <mo>Ń</mo>+        <mi>Ń</mi>       </mtd>       <mtd>-        <mo>œ</mo>+        <mi>œ</mi>       </mtd>       <mtd>-        <mo>ţ</mo>+        <mi>ţ</mi>       </mtd>       <mtd>-        <mo>ų</mo>+        <mi>ų</mi>       </mtd>     </mtr>     <mtr>@@ -149,28 +149,28 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>Ą</mo>+        <mi>Ą</mi>       </mtd>       <mtd>-        <mo>Ĕ</mo>+        <mi>Ĕ</mi>       </mtd>       <mtd>-        <mo>Ĥ</mo>+        <mi>Ĥ</mi>       </mtd>       <mtd>-        <mo>Ĵ</mo>+        <mi>Ĵ</mi>       </mtd>       <mtd>-        <mo>ń</mo>+        <mi>ń</mi>       </mtd>       <mtd>-        <mo>Ŕ</mo>+        <mi>Ŕ</mi>       </mtd>       <mtd>-        <mo>Ť</mo>+        <mi>Ť</mi>       </mtd>       <mtd>-        <mo>Ŵ</mo>+        <mi>Ŵ</mi>       </mtd>     </mtr>     <mtr>@@ -178,28 +178,28 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>ą</mo>+        <mi>ą</mi>       </mtd>       <mtd>-        <mo>ĕ</mo>+        <mi>ĕ</mi>       </mtd>       <mtd>-        <mo>ĥ</mo>+        <mi>ĥ</mi>       </mtd>       <mtd>-        <mo>ĵ</mo>+        <mi>ĵ</mi>       </mtd>       <mtd>-        <mo>Ņ</mo>+        <mi>Ņ</mi>       </mtd>       <mtd>-        <mo>ŕ</mo>+        <mi>ŕ</mi>       </mtd>       <mtd>-        <mo>ť</mo>+        <mi>ť</mi>       </mtd>       <mtd>-        <mo>ŵ</mo>+        <mi>ŵ</mi>       </mtd>     </mtr>     <mtr>@@ -207,28 +207,28 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>Ć</mo>+        <mi>Ć</mi>       </mtd>       <mtd>-        <mo>Ė</mo>+        <mi>Ė</mi>       </mtd>       <mtd>-        <mo>Ħ</mo>+        <mi>Ħ</mi>       </mtd>       <mtd>-        <mo>Ķ</mo>+        <mi>Ķ</mi>       </mtd>       <mtd>-        <mo>ņ</mo>+        <mi>ņ</mi>       </mtd>       <mtd>-        <mo>Ŗ</mo>+        <mi>Ŗ</mi>       </mtd>       <mtd>-        <mo>Ŧ</mo>+        <mi>Ŧ</mi>       </mtd>       <mtd>-        <mo>Ŷ</mo>+        <mi>Ŷ</mi>       </mtd>     </mtr>     <mtr>@@ -236,28 +236,28 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ć</mo>+        <mi>ć</mi>       </mtd>       <mtd>-        <mo>ė</mo>+        <mi>ė</mi>       </mtd>       <mtd>-        <mo>ħ</mo>+        <mi>ħ</mi>       </mtd>       <mtd>-        <mo>ķ</mo>+        <mi>ķ</mi>       </mtd>       <mtd>-        <mo>Ň</mo>+        <mi>Ň</mi>       </mtd>       <mtd>-        <mo>ŗ</mo>+        <mi>ŗ</mi>       </mtd>       <mtd>-        <mo>ŧ</mo>+        <mi>ŧ</mi>       </mtd>       <mtd>-        <mo>ŷ</mo>+        <mi>ŷ</mi>       </mtd>     </mtr>     <mtr>@@ -265,28 +265,28 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>Ĉ</mo>+        <mi>Ĉ</mi>       </mtd>       <mtd>-        <mo>Ę</mo>+        <mi>Ę</mi>       </mtd>       <mtd>-        <mo>Ĩ</mo>+        <mi>Ĩ</mi>       </mtd>       <mtd>-        <mo>ĸ</mo>+        <mi>ĸ</mi>       </mtd>       <mtd>-        <mo>ň</mo>+        <mi>ň</mi>       </mtd>       <mtd>-        <mo>Ř</mo>+        <mi>Ř</mi>       </mtd>       <mtd>-        <mo>Ũ</mo>+        <mi>Ũ</mi>       </mtd>       <mtd>-        <mo>Ÿ</mo>+        <mi>Ÿ</mi>       </mtd>     </mtr>     <mtr>@@ -294,28 +294,28 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>ĉ</mo>+        <mi>ĉ</mi>       </mtd>       <mtd>-        <mo>ę</mo>+        <mi>ę</mi>       </mtd>       <mtd>-        <mo>ĩ</mo>+        <mi>ĩ</mi>       </mtd>       <mtd>-        <mo>Ĺ</mo>+        <mi>Ĺ</mi>       </mtd>       <mtd>-        <mo>ʼn</mo>+        <mi>ʼn</mi>       </mtd>       <mtd>-        <mo>ř</mo>+        <mi>ř</mi>       </mtd>       <mtd>-        <mo>ũ</mo>+        <mi>ũ</mi>       </mtd>       <mtd>-        <mo>Ź</mo>+        <mi>Ź</mi>       </mtd>     </mtr>     <mtr>@@ -323,28 +323,28 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>Ċ</mo>+        <mi>Ċ</mi>       </mtd>       <mtd>-        <mo>Ě</mo>+        <mi>Ě</mi>       </mtd>       <mtd>-        <mo>Ī</mo>+        <mi>Ī</mi>       </mtd>       <mtd>-        <mo>ĺ</mo>+        <mi>ĺ</mi>       </mtd>       <mtd>-        <mo>Ŋ</mo>+        <mi>Ŋ</mi>       </mtd>       <mtd>-        <mo>Ś</mo>+        <mi>Ś</mi>       </mtd>       <mtd>-        <mo>Ū</mo>+        <mi>Ū</mi>       </mtd>       <mtd>-        <mo>ź</mo>+        <mi>ź</mi>       </mtd>     </mtr>     <mtr>@@ -352,28 +352,28 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>ċ</mo>+        <mi>ċ</mi>       </mtd>       <mtd>-        <mo>ě</mo>+        <mi>ě</mi>       </mtd>       <mtd>-        <mo>ī</mo>+        <mi>ī</mi>       </mtd>       <mtd>-        <mo>Ļ</mo>+        <mi>Ļ</mi>       </mtd>       <mtd>-        <mo>ŋ</mo>+        <mi>ŋ</mi>       </mtd>       <mtd>-        <mo>ś</mo>+        <mi>ś</mi>       </mtd>       <mtd>-        <mo>ū</mo>+        <mi>ū</mi>       </mtd>       <mtd>-        <mo>Ż</mo>+        <mi>Ż</mi>       </mtd>     </mtr>     <mtr>@@ -381,28 +381,28 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>Č</mo>+        <mi>Č</mi>       </mtd>       <mtd>-        <mo>Ĝ</mo>+        <mi>Ĝ</mi>       </mtd>       <mtd>-        <mo>Ĭ</mo>+        <mi>Ĭ</mi>       </mtd>       <mtd>-        <mo>ļ</mo>+        <mi>ļ</mi>       </mtd>       <mtd>-        <mo>Ō</mo>+        <mi>Ō</mi>       </mtd>       <mtd>-        <mo>Ŝ</mo>+        <mi>Ŝ</mi>       </mtd>       <mtd>-        <mo>Ŭ</mo>+        <mi>Ŭ</mi>       </mtd>       <mtd>-        <mo>ż</mo>+        <mi>ż</mi>       </mtd>     </mtr>     <mtr>@@ -410,28 +410,28 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>č</mo>+        <mi>č</mi>       </mtd>       <mtd>-        <mo>ĝ</mo>+        <mi>ĝ</mi>       </mtd>       <mtd>-        <mo>ĭ</mo>+        <mi>ĭ</mi>       </mtd>       <mtd>-        <mo>Ľ</mo>+        <mi>Ľ</mi>       </mtd>       <mtd>-        <mo>ō</mo>+        <mi>ō</mi>       </mtd>       <mtd>-        <mo>ŝ</mo>+        <mi>ŝ</mi>       </mtd>       <mtd>-        <mo>ŭ</mo>+        <mi>ŭ</mi>       </mtd>       <mtd>-        <mo>Ž</mo>+        <mi>Ž</mi>       </mtd>     </mtr>     <mtr>@@ -439,28 +439,28 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>Ď</mo>+        <mi>Ď</mi>       </mtd>       <mtd>-        <mo>Ğ</mo>+        <mi>Ğ</mi>       </mtd>       <mtd>-        <mo>Į</mo>+        <mi>Į</mi>       </mtd>       <mtd>-        <mo>ľ</mo>+        <mi>ľ</mi>       </mtd>       <mtd>-        <mo>Ŏ</mo>+        <mi>Ŏ</mi>       </mtd>       <mtd>-        <mo>Ş</mo>+        <mi>Ş</mi>       </mtd>       <mtd>-        <mo>Ů</mo>+        <mi>Ů</mi>       </mtd>       <mtd>-        <mo>ž</mo>+        <mi>ž</mi>       </mtd>     </mtr>     <mtr>@@ -468,28 +468,28 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>ď</mo>+        <mi>ď</mi>       </mtd>       <mtd>-        <mo>ğ</mo>+        <mi>ğ</mi>       </mtd>       <mtd>-        <mo>į</mo>+        <mi>į</mi>       </mtd>       <mtd>-        <mo>Ŀ</mo>+        <mi>Ŀ</mi>       </mtd>       <mtd>-        <mo>ŏ</mo>+        <mi>ŏ</mi>       </mtd>       <mtd>-        <mo>ş</mo>+        <mi>ş</mi>       </mtd>       <mtd>-        <mo>ů</mo>+        <mi>ů</mi>       </mtd>       <mtd>-        <mo>ſ</mo>+        <mi>ſ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/00180_Latin_Extended-B.mml view
@@ -48,43 +48,43 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>ƀ</mo>+        <mi>ƀ</mi>       </mtd>       <mtd>-        <mo>Ɛ</mo>+        <mi>Ɛ</mi>       </mtd>       <mtd>-        <mo>Ơ</mo>+        <mi>Ơ</mi>       </mtd>       <mtd>-        <mo>ư</mo>+        <mi>ư</mi>       </mtd>       <mtd>-        <mo>ǀ</mo>+        <mi>ǀ</mi>       </mtd>       <mtd>-        <mo>ǐ</mo>+        <mi>ǐ</mi>       </mtd>       <mtd>-        <mo>Ǡ</mo>+        <mi>Ǡ</mi>       </mtd>       <mtd>-        <mo>ǰ</mo>+        <mi>ǰ</mi>       </mtd>       <mtd>-        <mo>Ȁ</mo>+        <mi>Ȁ</mi>       </mtd>       <mtd>-        <mo>Ȑ</mo>+        <mi>Ȑ</mi>       </mtd>       <mtd>-        <mo>Ƞ</mo>+        <mi>Ƞ</mi>       </mtd>       <mtd>-        <mo>Ȱ</mo>+        <mi>Ȱ</mi>       </mtd>       <mtd>-        <mo>ɀ</mo>+        <mi>ɀ</mi>       </mtd>     </mtr>     <mtr>@@ -92,43 +92,43 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>Ɓ</mo>+        <mi>Ɓ</mi>       </mtd>       <mtd>-        <mo>Ƒ</mo>+        <mi>Ƒ</mi>       </mtd>       <mtd>-        <mo>ơ</mo>+        <mi>ơ</mi>       </mtd>       <mtd>-        <mo>Ʊ</mo>+        <mi>Ʊ</mi>       </mtd>       <mtd>-        <mo>ǁ</mo>+        <mi>ǁ</mi>       </mtd>       <mtd>-        <mo>Ǒ</mo>+        <mi>Ǒ</mi>       </mtd>       <mtd>-        <mo>ǡ</mo>+        <mi>ǡ</mi>       </mtd>       <mtd>-        <mo>DZ</mo>+        <mi>DZ</mi>       </mtd>       <mtd>-        <mo>ȁ</mo>+        <mi>ȁ</mi>       </mtd>       <mtd>-        <mo>ȑ</mo>+        <mi>ȑ</mi>       </mtd>       <mtd>-        <mo>ȡ</mo>+        <mi>ȡ</mi>       </mtd>       <mtd>-        <mo>ȱ</mo>+        <mi>ȱ</mi>       </mtd>       <mtd>-        <mo>Ɂ</mo>+        <mi>Ɂ</mi>       </mtd>     </mtr>     <mtr>@@ -136,43 +136,43 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>Ƃ</mo>+        <mi>Ƃ</mi>       </mtd>       <mtd>-        <mo>ƒ</mo>+        <mi>ƒ</mi>       </mtd>       <mtd>-        <mo>Ƣ</mo>+        <mi>Ƣ</mi>       </mtd>       <mtd>-        <mo>Ʋ</mo>+        <mi>Ʋ</mi>       </mtd>       <mtd>-        <mo>ǂ</mo>+        <mi>ǂ</mi>       </mtd>       <mtd>-        <mo>ǒ</mo>+        <mi>ǒ</mi>       </mtd>       <mtd>-        <mo>Ǣ</mo>+        <mi>Ǣ</mi>       </mtd>       <mtd>-        <mo>Dz</mo>+        <mi>Dz</mi>       </mtd>       <mtd>-        <mo>Ȃ</mo>+        <mi>Ȃ</mi>       </mtd>       <mtd>-        <mo>Ȓ</mo>+        <mi>Ȓ</mi>       </mtd>       <mtd>-        <mo>Ȣ</mo>+        <mi>Ȣ</mi>       </mtd>       <mtd>-        <mo>Ȳ</mo>+        <mi>Ȳ</mi>       </mtd>       <mtd>-        <mo>ɂ</mo>+        <mi>ɂ</mi>       </mtd>     </mtr>     <mtr>@@ -180,43 +180,43 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ƃ</mo>+        <mi>ƃ</mi>       </mtd>       <mtd>-        <mo>Ɠ</mo>+        <mi>Ɠ</mi>       </mtd>       <mtd>-        <mo>ƣ</mo>+        <mi>ƣ</mi>       </mtd>       <mtd>-        <mo>Ƴ</mo>+        <mi>Ƴ</mi>       </mtd>       <mtd>-        <mo>ǃ</mo>+        <mi>ǃ</mi>       </mtd>       <mtd>-        <mo>Ǔ</mo>+        <mi>Ǔ</mi>       </mtd>       <mtd>-        <mo>ǣ</mo>+        <mi>ǣ</mi>       </mtd>       <mtd>-        <mo>dz</mo>+        <mi>dz</mi>       </mtd>       <mtd>-        <mo>ȃ</mo>+        <mi>ȃ</mi>       </mtd>       <mtd>-        <mo>ȓ</mo>+        <mi>ȓ</mi>       </mtd>       <mtd>-        <mo>ȣ</mo>+        <mi>ȣ</mi>       </mtd>       <mtd>-        <mo>ȳ</mo>+        <mi>ȳ</mi>       </mtd>       <mtd>-        <mo>Ƀ</mo>+        <mi>Ƀ</mi>       </mtd>     </mtr>     <mtr>@@ -224,43 +224,43 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>Ƅ</mo>+        <mi>Ƅ</mi>       </mtd>       <mtd>-        <mo>Ɣ</mo>+        <mi>Ɣ</mi>       </mtd>       <mtd>-        <mo>Ƥ</mo>+        <mi>Ƥ</mi>       </mtd>       <mtd>-        <mo>ƴ</mo>+        <mi>ƴ</mi>       </mtd>       <mtd>-        <mo>DŽ</mo>+        <mi>DŽ</mi>       </mtd>       <mtd>-        <mo>ǔ</mo>+        <mi>ǔ</mi>       </mtd>       <mtd>-        <mo>Ǥ</mo>+        <mi>Ǥ</mi>       </mtd>       <mtd>-        <mo>Ǵ</mo>+        <mi>Ǵ</mi>       </mtd>       <mtd>-        <mo>Ȅ</mo>+        <mi>Ȅ</mi>       </mtd>       <mtd>-        <mo>Ȕ</mo>+        <mi>Ȕ</mi>       </mtd>       <mtd>-        <mo>Ȥ</mo>+        <mi>Ȥ</mi>       </mtd>       <mtd>-        <mo>ȴ</mo>+        <mi>ȴ</mi>       </mtd>       <mtd>-        <mo>Ʉ</mo>+        <mi>Ʉ</mi>       </mtd>     </mtr>     <mtr>@@ -268,43 +268,43 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>ƅ</mo>+        <mi>ƅ</mi>       </mtd>       <mtd>-        <mo>ƕ</mo>+        <mi>ƕ</mi>       </mtd>       <mtd>-        <mo>ƥ</mo>+        <mi>ƥ</mi>       </mtd>       <mtd>-        <mo>Ƶ</mo>+        <mi>Ƶ</mi>       </mtd>       <mtd>-        <mo>Dž</mo>+        <mi>Dž</mi>       </mtd>       <mtd>-        <mo>Ǖ</mo>+        <mi>Ǖ</mi>       </mtd>       <mtd>-        <mo>ǥ</mo>+        <mi>ǥ</mi>       </mtd>       <mtd>-        <mo>ǵ</mo>+        <mi>ǵ</mi>       </mtd>       <mtd>-        <mo>ȅ</mo>+        <mi>ȅ</mi>       </mtd>       <mtd>-        <mo>ȕ</mo>+        <mi>ȕ</mi>       </mtd>       <mtd>-        <mo>ȥ</mo>+        <mi>ȥ</mi>       </mtd>       <mtd>-        <mo>ȵ</mo>+        <mi>ȵ</mi>       </mtd>       <mtd>-        <mo>Ʌ</mo>+        <mi>Ʌ</mi>       </mtd>     </mtr>     <mtr>@@ -312,43 +312,43 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>Ɔ</mo>+        <mi>Ɔ</mi>       </mtd>       <mtd>-        <mo>Ɩ</mo>+        <mi>Ɩ</mi>       </mtd>       <mtd>-        <mo>Ʀ</mo>+        <mi>Ʀ</mi>       </mtd>       <mtd>-        <mo>ƶ</mo>+        <mi>ƶ</mi>       </mtd>       <mtd>-        <mo>dž</mo>+        <mi>dž</mi>       </mtd>       <mtd>-        <mo>ǖ</mo>+        <mi>ǖ</mi>       </mtd>       <mtd>-        <mo>Ǧ</mo>+        <mi>Ǧ</mi>       </mtd>       <mtd>-        <mo>Ƕ</mo>+        <mi>Ƕ</mi>       </mtd>       <mtd>-        <mo>Ȇ</mo>+        <mi>Ȇ</mi>       </mtd>       <mtd>-        <mo>Ȗ</mo>+        <mi>Ȗ</mi>       </mtd>       <mtd>-        <mo>Ȧ</mo>+        <mi>Ȧ</mi>       </mtd>       <mtd>-        <mo>ȶ</mo>+        <mi>ȶ</mi>       </mtd>       <mtd>-        <mo>Ɇ</mo>+        <mi>Ɇ</mi>       </mtd>     </mtr>     <mtr>@@ -356,43 +356,43 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>Ƈ</mo>+        <mi>Ƈ</mi>       </mtd>       <mtd>-        <mo>Ɨ</mo>+        <mi>Ɨ</mi>       </mtd>       <mtd>-        <mo>Ƨ</mo>+        <mi>Ƨ</mi>       </mtd>       <mtd>-        <mo>Ʒ</mo>+        <mi>Ʒ</mi>       </mtd>       <mtd>-        <mo>LJ</mo>+        <mi>LJ</mi>       </mtd>       <mtd>-        <mo>Ǘ</mo>+        <mi>Ǘ</mi>       </mtd>       <mtd>-        <mo>ǧ</mo>+        <mi>ǧ</mi>       </mtd>       <mtd>-        <mo>Ƿ</mo>+        <mi>Ƿ</mi>       </mtd>       <mtd>-        <mo>ȇ</mo>+        <mi>ȇ</mi>       </mtd>       <mtd>-        <mo>ȗ</mo>+        <mi>ȗ</mi>       </mtd>       <mtd>-        <mo>ȧ</mo>+        <mi>ȧ</mi>       </mtd>       <mtd>         <mo>ȷ</mo>       </mtd>       <mtd>-        <mo>ɇ</mo>+        <mi>ɇ</mi>       </mtd>     </mtr>     <mtr>@@ -400,43 +400,43 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>ƈ</mo>+        <mi>ƈ</mi>       </mtd>       <mtd>-        <mo>Ƙ</mo>+        <mi>Ƙ</mi>       </mtd>       <mtd>-        <mo>ƨ</mo>+        <mi>ƨ</mi>       </mtd>       <mtd>-        <mo>Ƹ</mo>+        <mi>Ƹ</mi>       </mtd>       <mtd>-        <mo>Lj</mo>+        <mi>Lj</mi>       </mtd>       <mtd>-        <mo>ǘ</mo>+        <mi>ǘ</mi>       </mtd>       <mtd>-        <mo>Ǩ</mo>+        <mi>Ǩ</mi>       </mtd>       <mtd>-        <mo>Ǹ</mo>+        <mi>Ǹ</mi>       </mtd>       <mtd>-        <mo>Ȉ</mo>+        <mi>Ȉ</mi>       </mtd>       <mtd>-        <mo>Ș</mo>+        <mi>Ș</mi>       </mtd>       <mtd>-        <mo>Ȩ</mo>+        <mi>Ȩ</mi>       </mtd>       <mtd>-        <mo>ȸ</mo>+        <mi>ȸ</mi>       </mtd>       <mtd>-        <mo>Ɉ</mo>+        <mi>Ɉ</mi>       </mtd>     </mtr>     <mtr>@@ -444,43 +444,43 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>Ɖ</mo>+        <mi>Ɖ</mi>       </mtd>       <mtd>-        <mo>ƙ</mo>+        <mi>ƙ</mi>       </mtd>       <mtd>-        <mo>Ʃ</mo>+        <mi>Ʃ</mi>       </mtd>       <mtd>-        <mo>ƹ</mo>+        <mi>ƹ</mi>       </mtd>       <mtd>-        <mo>lj</mo>+        <mi>lj</mi>       </mtd>       <mtd>-        <mo>Ǚ</mo>+        <mi>Ǚ</mi>       </mtd>       <mtd>-        <mo>ǩ</mo>+        <mi>ǩ</mi>       </mtd>       <mtd>-        <mo>ǹ</mo>+        <mi>ǹ</mi>       </mtd>       <mtd>-        <mo>ȉ</mo>+        <mi>ȉ</mi>       </mtd>       <mtd>-        <mo>ș</mo>+        <mi>ș</mi>       </mtd>       <mtd>-        <mo>ȩ</mo>+        <mi>ȩ</mi>       </mtd>       <mtd>-        <mo>ȹ</mo>+        <mi>ȹ</mi>       </mtd>       <mtd>-        <mo>ɉ</mo>+        <mi>ɉ</mi>       </mtd>     </mtr>     <mtr>@@ -488,43 +488,43 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>Ɗ</mo>+        <mi>Ɗ</mi>       </mtd>       <mtd>-        <mo>ƚ</mo>+        <mi>ƚ</mi>       </mtd>       <mtd>-        <mo>ƪ</mo>+        <mi>ƪ</mi>       </mtd>       <mtd>-        <mo>ƺ</mo>+        <mi>ƺ</mi>       </mtd>       <mtd>-        <mo>NJ</mo>+        <mi>NJ</mi>       </mtd>       <mtd>-        <mo>ǚ</mo>+        <mi>ǚ</mi>       </mtd>       <mtd>-        <mo>Ǫ</mo>+        <mi>Ǫ</mi>       </mtd>       <mtd>-        <mo>Ǻ</mo>+        <mi>Ǻ</mi>       </mtd>       <mtd>-        <mo>Ȋ</mo>+        <mi>Ȋ</mi>       </mtd>       <mtd>-        <mo>Ț</mo>+        <mi>Ț</mi>       </mtd>       <mtd>-        <mo>Ȫ</mo>+        <mi>Ȫ</mi>       </mtd>       <mtd>-        <mo>Ⱥ</mo>+        <mi>Ⱥ</mi>       </mtd>       <mtd>-        <mo>Ɋ</mo>+        <mi>Ɋ</mi>       </mtd>     </mtr>     <mtr>@@ -532,43 +532,43 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>Ƌ</mo>+        <mi>Ƌ</mi>       </mtd>       <mtd>-        <mo>ƛ</mo>+        <mi>ƛ</mi>       </mtd>       <mtd>-        <mo>ƫ</mo>+        <mi>ƫ</mi>       </mtd>       <mtd>-        <mo>ƻ</mo>+        <mi>ƻ</mi>       </mtd>       <mtd>-        <mo>Nj</mo>+        <mi>Nj</mi>       </mtd>       <mtd>-        <mo>Ǜ</mo>+        <mi>Ǜ</mi>       </mtd>       <mtd>-        <mo>ǫ</mo>+        <mi>ǫ</mi>       </mtd>       <mtd>-        <mo>ǻ</mo>+        <mi>ǻ</mi>       </mtd>       <mtd>-        <mo>ȋ</mo>+        <mi>ȋ</mi>       </mtd>       <mtd>-        <mo>ț</mo>+        <mi>ț</mi>       </mtd>       <mtd>-        <mo>ȫ</mo>+        <mi>ȫ</mi>       </mtd>       <mtd>-        <mo>Ȼ</mo>+        <mi>Ȼ</mi>       </mtd>       <mtd>-        <mo>ɋ</mo>+        <mi>ɋ</mi>       </mtd>     </mtr>     <mtr>@@ -576,43 +576,43 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>ƌ</mo>+        <mi>ƌ</mi>       </mtd>       <mtd>-        <mo>Ɯ</mo>+        <mi>Ɯ</mi>       </mtd>       <mtd>-        <mo>Ƭ</mo>+        <mi>Ƭ</mi>       </mtd>       <mtd>-        <mo>Ƽ</mo>+        <mi>Ƽ</mi>       </mtd>       <mtd>-        <mo>nj</mo>+        <mi>nj</mi>       </mtd>       <mtd>-        <mo>ǜ</mo>+        <mi>ǜ</mi>       </mtd>       <mtd>-        <mo>Ǭ</mo>+        <mi>Ǭ</mi>       </mtd>       <mtd>-        <mo>Ǽ</mo>+        <mi>Ǽ</mi>       </mtd>       <mtd>-        <mo>Ȍ</mo>+        <mi>Ȍ</mi>       </mtd>       <mtd>-        <mo>Ȝ</mo>+        <mi>Ȝ</mi>       </mtd>       <mtd>-        <mo>Ȭ</mo>+        <mi>Ȭ</mi>       </mtd>       <mtd>-        <mo>ȼ</mo>+        <mi>ȼ</mi>       </mtd>       <mtd>-        <mo>Ɍ</mo>+        <mi>Ɍ</mi>       </mtd>     </mtr>     <mtr>@@ -620,43 +620,43 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>ƍ</mo>+        <mi>ƍ</mi>       </mtd>       <mtd>-        <mo>Ɲ</mo>+        <mi>Ɲ</mi>       </mtd>       <mtd>-        <mo>ƭ</mo>+        <mi>ƭ</mi>       </mtd>       <mtd>-        <mo>ƽ</mo>+        <mi>ƽ</mi>       </mtd>       <mtd>-        <mo>Ǎ</mo>+        <mi>Ǎ</mi>       </mtd>       <mtd>-        <mo>ǝ</mo>+        <mi>ǝ</mi>       </mtd>       <mtd>-        <mo>ǭ</mo>+        <mi>ǭ</mi>       </mtd>       <mtd>-        <mo>ǽ</mo>+        <mi>ǽ</mi>       </mtd>       <mtd>-        <mo>ȍ</mo>+        <mi>ȍ</mi>       </mtd>       <mtd>-        <mo>ȝ</mo>+        <mi>ȝ</mi>       </mtd>       <mtd>-        <mo>ȭ</mo>+        <mi>ȭ</mi>       </mtd>       <mtd>-        <mo>Ƚ</mo>+        <mi>Ƚ</mi>       </mtd>       <mtd>-        <mo>ɍ</mo>+        <mi>ɍ</mi>       </mtd>     </mtr>     <mtr>@@ -664,43 +664,43 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>Ǝ</mo>+        <mi>Ǝ</mi>       </mtd>       <mtd>-        <mo>ƞ</mo>+        <mi>ƞ</mi>       </mtd>       <mtd>-        <mo>Ʈ</mo>+        <mi>Ʈ</mi>       </mtd>       <mtd>-        <mo>ƾ</mo>+        <mi>ƾ</mi>       </mtd>       <mtd>-        <mo>ǎ</mo>+        <mi>ǎ</mi>       </mtd>       <mtd>-        <mo>Ǟ</mo>+        <mi>Ǟ</mi>       </mtd>       <mtd>-        <mo>Ǯ</mo>+        <mi>Ǯ</mi>       </mtd>       <mtd>-        <mo>Ǿ</mo>+        <mi>Ǿ</mi>       </mtd>       <mtd>-        <mo>Ȏ</mo>+        <mi>Ȏ</mi>       </mtd>       <mtd>-        <mo>Ȟ</mo>+        <mi>Ȟ</mi>       </mtd>       <mtd>-        <mo>Ȯ</mo>+        <mi>Ȯ</mi>       </mtd>       <mtd>-        <mo>Ⱦ</mo>+        <mi>Ⱦ</mi>       </mtd>       <mtd>-        <mo>Ɏ</mo>+        <mi>Ɏ</mi>       </mtd>     </mtr>     <mtr>@@ -708,43 +708,43 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>Ə</mo>+        <mi>Ə</mi>       </mtd>       <mtd>-        <mo>Ɵ</mo>+        <mi>Ɵ</mi>       </mtd>       <mtd>-        <mo>Ư</mo>+        <mi>Ư</mi>       </mtd>       <mtd>-        <mo>ƿ</mo>+        <mi>ƿ</mi>       </mtd>       <mtd>-        <mo>Ǐ</mo>+        <mi>Ǐ</mi>       </mtd>       <mtd>-        <mo>ǟ</mo>+        <mi>ǟ</mi>       </mtd>       <mtd>-        <mo>ǯ</mo>+        <mi>ǯ</mi>       </mtd>       <mtd>-        <mo>ǿ</mo>+        <mi>ǿ</mi>       </mtd>       <mtd>-        <mo>ȏ</mo>+        <mi>ȏ</mi>       </mtd>       <mtd>-        <mo>ȟ</mo>+        <mi>ȟ</mi>       </mtd>       <mtd>-        <mo>ȯ</mo>+        <mi>ȯ</mi>       </mtd>       <mtd>-        <mo>ȿ</mo>+        <mi>ȿ</mi>       </mtd>       <mtd>-        <mo>ɏ</mo>+        <mi>ɏ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/00250_IPA_Extensions.mml view
@@ -27,22 +27,22 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>ɐ</mo>+        <mi>ɐ</mi>       </mtd>       <mtd>-        <mo>ɠ</mo>+        <mi>ɠ</mi>       </mtd>       <mtd>-        <mo>ɰ</mo>+        <mi>ɰ</mi>       </mtd>       <mtd>-        <mo>ʀ</mo>+        <mi>ʀ</mi>       </mtd>       <mtd>-        <mo>ʐ</mo>+        <mi>ʐ</mi>       </mtd>       <mtd>-        <mo>ʠ</mo>+        <mi>ʠ</mi>       </mtd>     </mtr>     <mtr>@@ -50,22 +50,22 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ɑ</mo>+        <mi>ɑ</mi>       </mtd>       <mtd>-        <mo>ɡ</mo>+        <mi>ɡ</mi>       </mtd>       <mtd>-        <mo>ɱ</mo>+        <mi>ɱ</mi>       </mtd>       <mtd>-        <mo>ʁ</mo>+        <mi>ʁ</mi>       </mtd>       <mtd>-        <mo>ʑ</mo>+        <mi>ʑ</mi>       </mtd>       <mtd>-        <mo>ʡ</mo>+        <mi>ʡ</mi>       </mtd>     </mtr>     <mtr>@@ -73,22 +73,22 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>ɒ</mo>+        <mi>ɒ</mi>       </mtd>       <mtd>-        <mo>ɢ</mo>+        <mi>ɢ</mi>       </mtd>       <mtd>-        <mo>ɲ</mo>+        <mi>ɲ</mi>       </mtd>       <mtd>-        <mo>ʂ</mo>+        <mi>ʂ</mi>       </mtd>       <mtd>-        <mo>ʒ</mo>+        <mi>ʒ</mi>       </mtd>       <mtd>-        <mo>ʢ</mo>+        <mi>ʢ</mi>       </mtd>     </mtr>     <mtr>@@ -96,22 +96,22 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ɓ</mo>+        <mi>ɓ</mi>       </mtd>       <mtd>-        <mo>ɣ</mo>+        <mi>ɣ</mi>       </mtd>       <mtd>-        <mo>ɳ</mo>+        <mi>ɳ</mi>       </mtd>       <mtd>-        <mo>ʃ</mo>+        <mi>ʃ</mi>       </mtd>       <mtd>-        <mo>ʓ</mo>+        <mi>ʓ</mi>       </mtd>       <mtd>-        <mo>ʣ</mo>+        <mi>ʣ</mi>       </mtd>     </mtr>     <mtr>@@ -119,22 +119,22 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>ɔ</mo>+        <mi>ɔ</mi>       </mtd>       <mtd>-        <mo>ɤ</mo>+        <mi>ɤ</mi>       </mtd>       <mtd>-        <mo>ɴ</mo>+        <mi>ɴ</mi>       </mtd>       <mtd>-        <mo>ʄ</mo>+        <mi>ʄ</mi>       </mtd>       <mtd>-        <mo>ʔ</mo>+        <mi>ʔ</mi>       </mtd>       <mtd>-        <mo>ʤ</mo>+        <mi>ʤ</mi>       </mtd>     </mtr>     <mtr>@@ -142,22 +142,22 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>ɕ</mo>+        <mi>ɕ</mi>       </mtd>       <mtd>-        <mo>ɥ</mo>+        <mi>ɥ</mi>       </mtd>       <mtd>-        <mo>ɵ</mo>+        <mi>ɵ</mi>       </mtd>       <mtd>-        <mo>ʅ</mo>+        <mi>ʅ</mi>       </mtd>       <mtd>-        <mo>ʕ</mo>+        <mi>ʕ</mi>       </mtd>       <mtd>-        <mo>ʥ</mo>+        <mi>ʥ</mi>       </mtd>     </mtr>     <mtr>@@ -165,22 +165,22 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>ɖ</mo>+        <mi>ɖ</mi>       </mtd>       <mtd>-        <mo>ɦ</mo>+        <mi>ɦ</mi>       </mtd>       <mtd>-        <mo>ɶ</mo>+        <mi>ɶ</mi>       </mtd>       <mtd>-        <mo>ʆ</mo>+        <mi>ʆ</mi>       </mtd>       <mtd>-        <mo>ʖ</mo>+        <mi>ʖ</mi>       </mtd>       <mtd>-        <mo>ʦ</mo>+        <mi>ʦ</mi>       </mtd>     </mtr>     <mtr>@@ -188,22 +188,22 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ɗ</mo>+        <mi>ɗ</mi>       </mtd>       <mtd>-        <mo>ɧ</mo>+        <mi>ɧ</mi>       </mtd>       <mtd>-        <mo>ɷ</mo>+        <mi>ɷ</mi>       </mtd>       <mtd>-        <mo>ʇ</mo>+        <mi>ʇ</mi>       </mtd>       <mtd>-        <mo>ʗ</mo>+        <mi>ʗ</mi>       </mtd>       <mtd>-        <mo>ʧ</mo>+        <mi>ʧ</mi>       </mtd>     </mtr>     <mtr>@@ -211,22 +211,22 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>ɘ</mo>+        <mi>ɘ</mi>       </mtd>       <mtd>-        <mo>ɨ</mo>+        <mi>ɨ</mi>       </mtd>       <mtd>-        <mo>ɸ</mo>+        <mi>ɸ</mi>       </mtd>       <mtd>-        <mo>ʈ</mo>+        <mi>ʈ</mi>       </mtd>       <mtd>-        <mo>ʘ</mo>+        <mi>ʘ</mi>       </mtd>       <mtd>-        <mo>ʨ</mo>+        <mi>ʨ</mi>       </mtd>     </mtr>     <mtr>@@ -234,22 +234,22 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>ə</mo>+        <mi>ə</mi>       </mtd>       <mtd>-        <mo>ɩ</mo>+        <mi>ɩ</mi>       </mtd>       <mtd>-        <mo>ɹ</mo>+        <mi>ɹ</mi>       </mtd>       <mtd>-        <mo>ʉ</mo>+        <mi>ʉ</mi>       </mtd>       <mtd>-        <mo>ʙ</mo>+        <mi>ʙ</mi>       </mtd>       <mtd>-        <mo>ʩ</mo>+        <mi>ʩ</mi>       </mtd>     </mtr>     <mtr>@@ -257,22 +257,22 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>ɚ</mo>+        <mi>ɚ</mi>       </mtd>       <mtd>-        <mo>ɪ</mo>+        <mi>ɪ</mi>       </mtd>       <mtd>-        <mo>ɺ</mo>+        <mi>ɺ</mi>       </mtd>       <mtd>-        <mo>ʊ</mo>+        <mi>ʊ</mi>       </mtd>       <mtd>-        <mo>ʚ</mo>+        <mi>ʚ</mi>       </mtd>       <mtd>-        <mo>ʪ</mo>+        <mi>ʪ</mi>       </mtd>     </mtr>     <mtr>@@ -280,22 +280,22 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>ɛ</mo>+        <mi>ɛ</mi>       </mtd>       <mtd>-        <mo>ɫ</mo>+        <mi>ɫ</mi>       </mtd>       <mtd>-        <mo>ɻ</mo>+        <mi>ɻ</mi>       </mtd>       <mtd>-        <mo>ʋ</mo>+        <mi>ʋ</mi>       </mtd>       <mtd>-        <mo>ʛ</mo>+        <mi>ʛ</mi>       </mtd>       <mtd>-        <mo>ʫ</mo>+        <mi>ʫ</mi>       </mtd>     </mtr>     <mtr>@@ -303,22 +303,22 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>ɜ</mo>+        <mi>ɜ</mi>       </mtd>       <mtd>-        <mo>ɬ</mo>+        <mi>ɬ</mi>       </mtd>       <mtd>-        <mo>ɼ</mo>+        <mi>ɼ</mi>       </mtd>       <mtd>-        <mo>ʌ</mo>+        <mi>ʌ</mi>       </mtd>       <mtd>-        <mo>ʜ</mo>+        <mi>ʜ</mi>       </mtd>       <mtd>-        <mo>ʬ</mo>+        <mi>ʬ</mi>       </mtd>     </mtr>     <mtr>@@ -326,22 +326,22 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>ɝ</mo>+        <mi>ɝ</mi>       </mtd>       <mtd>-        <mo>ɭ</mo>+        <mi>ɭ</mi>       </mtd>       <mtd>-        <mo>ɽ</mo>+        <mi>ɽ</mi>       </mtd>       <mtd>-        <mo>ʍ</mo>+        <mi>ʍ</mi>       </mtd>       <mtd>-        <mo>ʝ</mo>+        <mi>ʝ</mi>       </mtd>       <mtd>-        <mo>ʭ</mo>+        <mi>ʭ</mi>       </mtd>     </mtr>     <mtr>@@ -349,22 +349,22 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>ɞ</mo>+        <mi>ɞ</mi>       </mtd>       <mtd>-        <mo>ɮ</mo>+        <mi>ɮ</mi>       </mtd>       <mtd>-        <mo>ɾ</mo>+        <mi>ɾ</mi>       </mtd>       <mtd>-        <mo>ʎ</mo>+        <mi>ʎ</mi>       </mtd>       <mtd>-        <mo>ʞ</mo>+        <mi>ʞ</mi>       </mtd>       <mtd>-        <mo>ʮ</mo>+        <mi>ʮ</mi>       </mtd>     </mtr>     <mtr>@@ -372,22 +372,22 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>ɟ</mo>+        <mi>ɟ</mi>       </mtd>       <mtd>-        <mo>ɯ</mo>+        <mi>ɯ</mi>       </mtd>       <mtd>-        <mo>ɿ</mo>+        <mi>ɿ</mi>       </mtd>       <mtd>-        <mo>ʏ</mo>+        <mi>ʏ</mi>       </mtd>       <mtd>-        <mo>ʟ</mo>+        <mi>ʟ</mi>       </mtd>       <mtd>-        <mo>ʯ</mo>+        <mi>ʯ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/002B0_Spacing_Modifier_Letters.mml view
@@ -24,19 +24,19 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>ʰ</mo>+        <mi>ʰ</mi>       </mtd>       <mtd>-        <mo>ˀ</mo>+        <mi>ˀ</mi>       </mtd>       <mtd>-        <mo>ː</mo>+        <mi>ː</mi>       </mtd>       <mtd>-        <mo>ˠ</mo>+        <mi>ˠ</mi>       </mtd>       <mtd>-        <mo>˰</mo>+        <mi>˰</mi>       </mtd>     </mtr>     <mtr>@@ -44,19 +44,19 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ʱ</mo>+        <mi>ʱ</mi>       </mtd>       <mtd>-        <mo>ˁ</mo>+        <mi>ˁ</mi>       </mtd>       <mtd>-        <mo>ˑ</mo>+        <mi>ˑ</mi>       </mtd>       <mtd>-        <mo>ˡ</mo>+        <mi>ˡ</mi>       </mtd>       <mtd>-        <mo>˱</mo>+        <mi>˱</mi>       </mtd>     </mtr>     <mtr>@@ -64,19 +64,19 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>ʲ</mo>+        <mi>ʲ</mi>       </mtd>       <mtd>-        <mo>˂</mo>+        <mi>˂</mi>       </mtd>       <mtd>-        <mo>˒</mo>+        <mi>˒</mi>       </mtd>       <mtd>-        <mo>ˢ</mo>+        <mi>ˢ</mi>       </mtd>       <mtd>-        <mo>˲</mo>+        <mi>˲</mi>       </mtd>     </mtr>     <mtr>@@ -84,19 +84,19 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ʳ</mo>+        <mi>ʳ</mi>       </mtd>       <mtd>-        <mo>˃</mo>+        <mi>˃</mi>       </mtd>       <mtd>-        <mo>˓</mo>+        <mi>˓</mi>       </mtd>       <mtd>-        <mo>ˣ</mo>+        <mi>ˣ</mi>       </mtd>       <mtd>-        <mo>˳</mo>+        <mi>˳</mi>       </mtd>     </mtr>     <mtr>@@ -104,19 +104,19 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>ʴ</mo>+        <mi>ʴ</mi>       </mtd>       <mtd>-        <mo>˄</mo>+        <mi>˄</mi>       </mtd>       <mtd>-        <mo>˔</mo>+        <mi>˔</mi>       </mtd>       <mtd>-        <mo>ˤ</mo>+        <mi>ˤ</mi>       </mtd>       <mtd>-        <mo>˴</mo>+        <mi>˴</mi>       </mtd>     </mtr>     <mtr>@@ -124,19 +124,19 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>ʵ</mo>+        <mi>ʵ</mi>       </mtd>       <mtd>-        <mo>˅</mo>+        <mi>˅</mi>       </mtd>       <mtd>-        <mo>˕</mo>+        <mi>˕</mi>       </mtd>       <mtd>-        <mo>˥</mo>+        <mi>˥</mi>       </mtd>       <mtd>-        <mo>˵</mo>+        <mi>˵</mi>       </mtd>     </mtr>     <mtr>@@ -144,19 +144,19 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>ʶ</mo>+        <mi>ʶ</mi>       </mtd>       <mtd>         <mo accent="true">ˆ</mo>       </mtd>       <mtd>-        <mo>˖</mo>+        <mi>˖</mi>       </mtd>       <mtd>-        <mo>˦</mo>+        <mi>˦</mi>       </mtd>       <mtd>-        <mo>˶</mo>+        <mi>˶</mi>       </mtd>     </mtr>     <mtr>@@ -164,16 +164,16 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ʷ</mo>+        <mi>ʷ</mi>       </mtd>       <mtd>         <mo accent="true">ˇ</mo>       </mtd>       <mtd>-        <mo>˗</mo>+        <mi>˗</mi>       </mtd>       <mtd>-        <mo>˧</mo>+        <mi>˧</mi>       </mtd>       <mtd>         <mo accent="true">˷</mo>@@ -184,19 +184,19 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>ʸ</mo>+        <mi>ʸ</mi>       </mtd>       <mtd>-        <mo>ˈ</mo>+        <mi>ˈ</mi>       </mtd>       <mtd>         <mo accent="true">˘</mo>       </mtd>       <mtd>-        <mo>˨</mo>+        <mi>˨</mi>       </mtd>       <mtd>-        <mo>˸</mo>+        <mi>˸</mi>       </mtd>     </mtr>     <mtr>@@ -204,7 +204,7 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>ʹ</mo>+        <mi>ʹ</mi>       </mtd>       <mtd>         <mo accent="true">ˉ</mo>@@ -213,10 +213,10 @@         <mo accent="true">˙</mo>       </mtd>       <mtd>-        <mo>˩</mo>+        <mi>˩</mi>       </mtd>       <mtd>-        <mo>˹</mo>+        <mi>˹</mi>       </mtd>     </mtr>     <mtr>@@ -224,7 +224,7 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>ʺ</mo>+        <mi>ʺ</mi>       </mtd>       <mtd>         <mo accent="true">ˊ</mo>@@ -233,10 +233,10 @@         <mo accent="true">˚</mo>       </mtd>       <mtd>-        <mo>˪</mo>+        <mi>˪</mi>       </mtd>       <mtd>-        <mo>˺</mo>+        <mi>˺</mi>       </mtd>     </mtr>     <mtr>@@ -244,19 +244,19 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>ʻ</mo>+        <mi>ʻ</mi>       </mtd>       <mtd>         <mo accent="true">ˋ</mo>       </mtd>       <mtd>-        <mo>˛</mo>+        <mi>˛</mi>       </mtd>       <mtd>-        <mo>˫</mo>+        <mi>˫</mi>       </mtd>       <mtd>-        <mo>˻</mo>+        <mi>˻</mi>       </mtd>     </mtr>     <mtr>@@ -264,19 +264,19 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>ʼ</mo>+        <mi>ʼ</mi>       </mtd>       <mtd>-        <mo>ˌ</mo>+        <mi>ˌ</mi>       </mtd>       <mtd>         <mo accent="true">˜</mo>       </mtd>       <mtd>-        <mo>ˬ</mo>+        <mi>ˬ</mi>       </mtd>       <mtd>-        <mo>˼</mo>+        <mi>˼</mi>       </mtd>     </mtr>     <mtr>@@ -284,7 +284,7 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>ʽ</mo>+        <mi>ʽ</mi>       </mtd>       <mtd>         <mo accent="true">ˍ</mo>@@ -293,10 +293,10 @@         <mo accent="true">˝</mo>       </mtd>       <mtd>-        <mo>˭</mo>+        <mi>˭</mi>       </mtd>       <mtd>-        <mo>˽</mo>+        <mi>˽</mi>       </mtd>     </mtr>     <mtr>@@ -304,19 +304,19 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>ʾ</mo>+        <mi>ʾ</mi>       </mtd>       <mtd>-        <mo>ˎ</mo>+        <mi>ˎ</mi>       </mtd>       <mtd>-        <mo>˞</mo>+        <mi>˞</mi>       </mtd>       <mtd>-        <mo>ˮ</mo>+        <mi>ˮ</mi>       </mtd>       <mtd>-        <mo>˾</mo>+        <mi>˾</mi>       </mtd>     </mtr>     <mtr>@@ -324,19 +324,19 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>ʿ</mo>+        <mi>ʿ</mi>       </mtd>       <mtd>-        <mo>ˏ</mo>+        <mi>ˏ</mi>       </mtd>       <mtd>-        <mo>˟</mo>+        <mi>˟</mi>       </mtd>       <mtd>-        <mo>˯</mo>+        <mi>˯</mi>       </mtd>       <mtd>-        <mo>˿</mo>+        <mi>˿</mi>       </mtd>     </mtr>   </mtable>
tests/writers/00300_Combining_Diacritical_Marks.mml view
@@ -36,19 +36,19 @@         <mo accent="true">̐</mo>       </mtd>       <mtd>-        <mo>̠</mo>+        <mi>̠</mi>       </mtd>       <mtd>         <mo accent="true">̰</mo>       </mtd>       <mtd>-        <mo>̀</mo>+        <mi>̀</mi>       </mtd>       <mtd>-        <mo>͐</mo>+        <mi>͐</mi>       </mtd>       <mtd>-        <mo>͠</mo>+        <mi>͠</mi>       </mtd>     </mtr>     <mtr>@@ -62,19 +62,19 @@         <mo accent="true">̑</mo>       </mtd>       <mtd>-        <mo>̡</mo>+        <mi>̡</mi>       </mtd>       <mtd>         <mo accent="true">̱</mo>       </mtd>       <mtd>-        <mo>́</mo>+        <mi>́</mi>       </mtd>       <mtd>-        <mo>͑</mo>+        <mi>͑</mi>       </mtd>       <mtd>-        <mo>͡</mo>+        <mi>͡</mi>       </mtd>     </mtr>     <mtr>@@ -88,19 +88,19 @@         <mo accent="true">̒</mo>       </mtd>       <mtd>-        <mo>̢</mo>+        <mi>̢</mi>       </mtd>       <mtd>         <mo accent="true">̲</mo>       </mtd>       <mtd>-        <mo>͂</mo>+        <mi>͂</mi>       </mtd>       <mtd>-        <mo>͒</mo>+        <mi>͒</mi>       </mtd>       <mtd>-        <mo>͢</mo>+        <mi>͢</mi>       </mtd>     </mtr>     <mtr>@@ -111,7 +111,7 @@         <mo accent="true">̃</mo>       </mtd>       <mtd>-        <mo>̓</mo>+        <mi>̓</mi>       </mtd>       <mtd>         <mo accent="true">̣</mo>@@ -120,13 +120,13 @@         <mo accent="true">̳</mo>       </mtd>       <mtd>-        <mo>̓</mo>+        <mi>̓</mi>       </mtd>       <mtd>-        <mo>͓</mo>+        <mi>͓</mi>       </mtd>       <mtd>-        <mo>ͣ</mo>+        <mi>ͣ</mi>       </mtd>     </mtr>     <mtr>@@ -137,22 +137,22 @@         <mo accent="true">̄</mo>       </mtd>       <mtd>-        <mo>̔</mo>+        <mi>̔</mi>       </mtd>       <mtd>-        <mo>̤</mo>+        <mi>̤</mi>       </mtd>       <mtd>-        <mo>̴</mo>+        <mi>̴</mi>       </mtd>       <mtd>-        <mo>̈́</mo>+        <mi>̈́</mi>       </mtd>       <mtd>-        <mo>͔</mo>+        <mi>͔</mi>       </mtd>       <mtd>-        <mo>ͤ</mo>+        <mi>ͤ</mi>       </mtd>     </mtr>     <mtr>@@ -166,19 +166,19 @@         <mo accent="true">̕</mo>       </mtd>       <mtd>-        <mo>̥</mo>+        <mi>̥</mi>       </mtd>       <mtd>-        <mo>̵</mo>+        <mi>̵</mi>       </mtd>       <mtd>-        <mo>ͅ</mo>+        <mi>ͅ</mi>       </mtd>       <mtd>-        <mo>͕</mo>+        <mi>͕</mi>       </mtd>       <mtd>-        <mo>ͥ</mo>+        <mi>ͥ</mi>       </mtd>     </mtr>     <mtr>@@ -189,22 +189,22 @@         <mo accent="true">̆</mo>       </mtd>       <mtd>-        <mo>̖</mo>+        <mi>̖</mi>       </mtd>       <mtd>-        <mo>̦</mo>+        <mi>̦</mi>       </mtd>       <mtd>-        <mo>̶</mo>+        <mi>̶</mi>       </mtd>       <mtd>         <mo accent="true">͆</mo>       </mtd>       <mtd>-        <mo>͖</mo>+        <mi>͖</mi>       </mtd>       <mtd>-        <mo>ͦ</mo>+        <mi>ͦ</mi>       </mtd>     </mtr>     <mtr>@@ -215,22 +215,22 @@         <mo accent="true">̇</mo>       </mtd>       <mtd>-        <mo>̗</mo>+        <mi>̗</mi>       </mtd>       <mtd>-        <mo>̧</mo>+        <mi>̧</mi>       </mtd>       <mtd>-        <mo>̷</mo>+        <mi>̷</mi>       </mtd>       <mtd>-        <mo>͇</mo>+        <mi>͇</mi>       </mtd>       <mtd>-        <mo>͗</mo>+        <mi>͗</mi>       </mtd>       <mtd>-        <mo>ͧ</mo>+        <mi>ͧ</mi>       </mtd>     </mtr>     <mtr>@@ -241,22 +241,22 @@         <mo accent="true">̈</mo>       </mtd>       <mtd>-        <mo>̘</mo>+        <mi>̘</mi>       </mtd>       <mtd>-        <mo>̨</mo>+        <mi>̨</mi>       </mtd>       <mtd>         <mo accent="true"≯</mo>       </mtd>       <mtd>-        <mo>͈</mo>+        <mi>͈</mi>       </mtd>       <mtd>-        <mo>͘</mo>+        <mi>͘</mi>       </mtd>       <mtd>-        <mo>ͨ</mo>+        <mi>ͨ</mi>       </mtd>     </mtr>     <mtr>@@ -267,22 +267,22 @@         <mo accent="true">̉</mo>       </mtd>       <mtd>-        <mo>̙</mo>+        <mi>̙</mi>       </mtd>       <mtd>-        <mo>̩</mo>+        <mi>̩</mi>       </mtd>       <mtd>-        <mo>̹</mo>+        <mi>̹</mi>       </mtd>       <mtd>-        <mo>͉</mo>+        <mi>͉</mi>       </mtd>       <mtd>-        <mo>͙</mo>+        <mi>͙</mi>       </mtd>       <mtd>-        <mo>ͩ</mo>+        <mi>ͩ</mi>       </mtd>     </mtr>     <mtr>@@ -296,19 +296,19 @@         <mo accent="true">̚</mo>       </mtd>       <mtd>-        <mo>̪</mo>+        <mi>̪</mi>       </mtd>       <mtd>         <mo accent="true">̺</mo>       </mtd>       <mtd>-        <mo>͊</mo>+        <mi>͊</mi>       </mtd>       <mtd>-        <mo>͚</mo>+        <mi>͚</mi>       </mtd>       <mtd>-        <mo>ͪ</mo>+        <mi>ͪ</mi>       </mtd>     </mtr>     <mtr>@@ -316,25 +316,25 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>̋</mo>+        <mi>̋</mi>       </mtd>       <mtd>-        <mo>̛</mo>+        <mi>̛</mi>       </mtd>       <mtd>-        <mo>̫</mo>+        <mi>̫</mi>       </mtd>       <mtd>-        <mo>̻</mo>+        <mi>̻</mi>       </mtd>       <mtd>-        <mo>͋</mo>+        <mi>͋</mi>       </mtd>       <mtd>-        <mo>͛</mo>+        <mi>͛</mi>       </mtd>       <mtd>-        <mo>ͫ</mo>+        <mi>ͫ</mi>       </mtd>     </mtr>     <mtr>@@ -345,22 +345,22 @@         <mo accent="true">̌</mo>       </mtd>       <mtd>-        <mo>̜</mo>+        <mi>̜</mi>       </mtd>       <mtd>         <mo accent="true">̬</mo>       </mtd>       <mtd>-        <mo>̼</mo>+        <mi>̼</mi>       </mtd>       <mtd>-        <mo>͌</mo>+        <mi>͌</mi>       </mtd>       <mtd>-        <mo>͜</mo>+        <mi>͜</mi>       </mtd>       <mtd>-        <mo>ͬ</mo>+        <mi>ͬ</mi>       </mtd>     </mtr>     <mtr>@@ -368,25 +368,25 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>̍</mo>+        <mi>̍</mi>       </mtd>       <mtd>-        <mo>̝</mo>+        <mi>̝</mi>       </mtd>       <mtd>         <mo accent="true">̭</mo>       </mtd>       <mtd>-        <mo>̽</mo>+        <mi>̽</mi>       </mtd>       <mtd>-        <mo>͍</mo>+        <mi>͍</mi>       </mtd>       <mtd>-        <mo>͝</mo>+        <mi>͝</mi>       </mtd>       <mtd>-        <mo>ͭ</mo>+        <mi>ͭ</mi>       </mtd>     </mtr>     <mtr>@@ -394,25 +394,25 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>̎</mo>+        <mi>̎</mi>       </mtd>       <mtd>-        <mo>̞</mo>+        <mi>̞</mi>       </mtd>       <mtd>         <mo accent="true">̮</mo>       </mtd>       <mtd>-        <mo>̾</mo>+        <mi>̾</mi>       </mtd>       <mtd>-        <mo>͎</mo>+        <mi>͎</mi>       </mtd>       <mtd>-        <mo>͞</mo>+        <mi>͞</mi>       </mtd>       <mtd>-        <mo>ͮ</mo>+        <mi>ͮ</mi>       </mtd>     </mtr>     <mtr>@@ -420,10 +420,10 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>̏</mo>+        <mi>̏</mi>       </mtd>       <mtd>-        <mo>̟</mo>+        <mi>̟</mi>       </mtd>       <mtd>         <mo accent="true">̯</mo>@@ -432,13 +432,13 @@         <mo accent="true">̿</mo>       </mtd>       <mtd>-        <mo>͏</mo>+        <mi>͏</mi>       </mtd>       <mtd>-        <mo>͟</mo>+        <mi>͟</mi>       </mtd>       <mtd>-        <mo>ͯ</mo>+        <mi>ͯ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/00370_Greek_and_Coptic.mml view
@@ -36,19 +36,19 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>Ͱ</mo>+        <mi>Ͱ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ΐ</mo>+        <mi>ΐ</mi>       </mtd>       <mtd>         <mo>Π</mo>       </mtd>       <mtd>-        <mo>ΰ</mo>+        <mi>ΰ</mi>       </mtd>       <mtd>         <mo>π</mo>@@ -68,10 +68,10 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ͱ</mo>+        <mi>ͱ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>Α</mo>@@ -100,16 +100,16 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>Ͳ</mo>+        <mi>Ͳ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>Β</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>β</mo>@@ -121,10 +121,10 @@         <mo>ϒ</mo>       </mtd>       <mtd>-        <mo>Ϣ</mo>+        <mi>Ϣ</mi>       </mtd>       <mtd>-        <mo>ϲ</mo>+        <mi>ϲ</mi>       </mtd>     </mtr>     <mtr>@@ -132,10 +132,10 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ͳ</mo>+        <mi>ͳ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>Γ</mo>@@ -150,13 +150,13 @@         <mo>σ</mo>       </mtd>       <mtd>-        <mo>ϓ</mo>+        <mi>ϓ</mi>       </mtd>       <mtd>-        <mo>ϣ</mo>+        <mi>ϣ</mi>       </mtd>       <mtd>-        <mo>ϳ</mo>+        <mi>ϳ</mi>       </mtd>     </mtr>     <mtr>@@ -164,10 +164,10 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>ʹ</mo>+        <mi>ʹ</mi>       </mtd>       <mtd>-        <mo>΄</mo>+        <mi>΄</mi>       </mtd>       <mtd>         <mo>Δ</mo>@@ -182,10 +182,10 @@         <mo>τ</mo>       </mtd>       <mtd>-        <mo>ϔ</mo>+        <mi>ϔ</mi>       </mtd>       <mtd>-        <mo>Ϥ</mo>+        <mi>Ϥ</mi>       </mtd>       <mtd>         <mo>ϴ</mo>@@ -196,10 +196,10 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>͵</mo>+        <mi>͵</mi>       </mtd>       <mtd>-        <mo>΅</mo>+        <mi>΅</mi>       </mtd>       <mtd>         <mo>Ε</mo>@@ -217,7 +217,7 @@         <mo>ϕ</mo>       </mtd>       <mtd>-        <mo>ϥ</mo>+        <mi>ϥ</mi>       </mtd>       <mtd>         <mo>ϵ</mo>@@ -228,10 +228,10 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>Ͷ</mo>+        <mi>Ͷ</mi>       </mtd>       <mtd>-        <mo>Ά</mo>+        <mi>Ά</mi>       </mtd>       <mtd>         <mo>Ζ</mo>@@ -249,10 +249,10 @@         <mo>ϖ</mo>       </mtd>       <mtd>-        <mo>Ϧ</mo>+        <mi>Ϧ</mi>       </mtd>       <mtd>-        <mo>϶</mo>+        <mi>϶</mi>       </mtd>     </mtr>     <mtr>@@ -260,10 +260,10 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ͷ</mo>+        <mi>ͷ</mi>       </mtd>       <mtd>-        <mo>·</mo>+        <mi>·</mi>       </mtd>       <mtd>         <mo>Η</mo>@@ -278,13 +278,13 @@         <mo>χ</mo>       </mtd>       <mtd>-        <mo>ϗ</mo>+        <mi>ϗ</mi>       </mtd>       <mtd>-        <mo>ϧ</mo>+        <mi>ϧ</mi>       </mtd>       <mtd>-        <mo>Ϸ</mo>+        <mi>Ϸ</mi>       </mtd>     </mtr>     <mtr>@@ -292,10 +292,10 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Έ</mo>+        <mi>Έ</mi>       </mtd>       <mtd>         <mo>Θ</mo>@@ -310,13 +310,13 @@         <mo>ψ</mo>       </mtd>       <mtd>-        <mo>Ϙ</mo>+        <mi>Ϙ</mi>       </mtd>       <mtd>-        <mo>Ϩ</mo>+        <mi>Ϩ</mi>       </mtd>       <mtd>-        <mo>ϸ</mo>+        <mi>ϸ</mi>       </mtd>     </mtr>     <mtr>@@ -324,10 +324,10 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ή</mo>+        <mi>Ή</mi>       </mtd>       <mtd>         <mo>Ι</mo>@@ -342,13 +342,13 @@         <mo>ω</mo>       </mtd>       <mtd>-        <mo>ϙ</mo>+        <mi>ϙ</mi>       </mtd>       <mtd>-        <mo>ϩ</mo>+        <mi>ϩ</mi>       </mtd>       <mtd>-        <mo>Ϲ</mo>+        <mi>Ϲ</mi>       </mtd>     </mtr>     <mtr>@@ -356,31 +356,31 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>ͺ</mo>+        <mi>ͺ</mi>       </mtd>       <mtd>-        <mo>Ί</mo>+        <mi>Ί</mi>       </mtd>       <mtd>         <mo>Κ</mo>       </mtd>       <mtd>-        <mo>Ϊ</mo>+        <mi>Ϊ</mi>       </mtd>       <mtd>         <mo>κ</mo>       </mtd>       <mtd>-        <mo>ϊ</mo>+        <mi>ϊ</mi>       </mtd>       <mtd>         <mo>Ϛ</mo>       </mtd>       <mtd>-        <mo>Ϫ</mo>+        <mi>Ϫ</mi>       </mtd>       <mtd>-        <mo>Ϻ</mo>+        <mi>Ϻ</mi>       </mtd>     </mtr>     <mtr>@@ -388,31 +388,31 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>ͻ</mo>+        <mi>ͻ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>Λ</mo>       </mtd>       <mtd>-        <mo>Ϋ</mo>+        <mi>Ϋ</mi>       </mtd>       <mtd>         <mo>λ</mo>       </mtd>       <mtd>-        <mo>ϋ</mo>+        <mi>ϋ</mi>       </mtd>       <mtd>         <mo>ϛ</mo>       </mtd>       <mtd>-        <mo>ϫ</mo>+        <mi>ϫ</mi>       </mtd>       <mtd>-        <mo>ϻ</mo>+        <mi>ϻ</mi>       </mtd>     </mtr>     <mtr>@@ -420,31 +420,31 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>ͼ</mo>+        <mi>ͼ</mi>       </mtd>       <mtd>-        <mo>Ό</mo>+        <mi>Ό</mi>       </mtd>       <mtd>         <mo>Μ</mo>       </mtd>       <mtd>-        <mo>ά</mo>+        <mi>ά</mi>       </mtd>       <mtd>         <mo>μ</mo>       </mtd>       <mtd>-        <mo>ό</mo>+        <mi>ό</mi>       </mtd>       <mtd>         <mo>Ϝ</mo>       </mtd>       <mtd>-        <mo>Ϭ</mo>+        <mi>Ϭ</mi>       </mtd>       <mtd>-        <mo>ϼ</mo>+        <mi>ϼ</mi>       </mtd>     </mtr>     <mtr>@@ -452,31 +452,31 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>ͽ</mo>+        <mi>ͽ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>Ν</mo>       </mtd>       <mtd>-        <mo>έ</mo>+        <mi>έ</mi>       </mtd>       <mtd>         <mo>ν</mo>       </mtd>       <mtd>-        <mo>ύ</mo>+        <mi>ύ</mi>       </mtd>       <mtd>         <mo>ϝ</mo>       </mtd>       <mtd>-        <mo>ϭ</mo>+        <mi>ϭ</mi>       </mtd>       <mtd>-        <mo>Ͻ</mo>+        <mi>Ͻ</mi>       </mtd>     </mtr>     <mtr>@@ -484,31 +484,31 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>;</mo>+        <mi>;</mi>       </mtd>       <mtd>-        <mo>Ύ</mo>+        <mi>Ύ</mi>       </mtd>       <mtd>         <mo>Ξ</mo>       </mtd>       <mtd>-        <mo>ή</mo>+        <mi>ή</mi>       </mtd>       <mtd>         <mo>ξ</mo>       </mtd>       <mtd>-        <mo>ώ</mo>+        <mi>ώ</mi>       </mtd>       <mtd>         <mo>Ϟ</mo>       </mtd>       <mtd>-        <mo>Ϯ</mo>+        <mi>Ϯ</mi>       </mtd>       <mtd>-        <mo>Ͼ</mo>+        <mi>Ͼ</mi>       </mtd>     </mtr>     <mtr>@@ -516,31 +516,31 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ώ</mo>+        <mi>Ώ</mi>       </mtd>       <mtd>         <mo>Ο</mo>       </mtd>       <mtd>-        <mo>ί</mo>+        <mi>ί</mi>       </mtd>       <mtd>         <mo>ο</mo>       </mtd>       <mtd>-        <mo>Ϗ</mo>+        <mi>Ϗ</mi>       </mtd>       <mtd>         <mo>ϟ</mo>       </mtd>       <mtd>-        <mo>ϯ</mo>+        <mi>ϯ</mi>       </mtd>       <mtd>-        <mo>Ͽ</mo>+        <mi>Ͽ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/00400_Cyrillic.mml view
@@ -57,52 +57,52 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>Ѐ</mo>+        <mi>Ѐ</mi>       </mtd>       <mtd>-        <mo>А</mo>+        <mi>А</mi>       </mtd>       <mtd>-        <mo>Р</mo>+        <mi>Р</mi>       </mtd>       <mtd>-        <mo>а</mo>+        <mi>а</mi>       </mtd>       <mtd>-        <mo>р</mo>+        <mi>р</mi>       </mtd>       <mtd>-        <mo>ѐ</mo>+        <mi>ѐ</mi>       </mtd>       <mtd>-        <mo>Ѡ</mo>+        <mi>Ѡ</mi>       </mtd>       <mtd>-        <mo>Ѱ</mo>+        <mi>Ѱ</mi>       </mtd>       <mtd>-        <mo>Ҁ</mo>+        <mi>Ҁ</mi>       </mtd>       <mtd>-        <mo>Ґ</mo>+        <mi>Ґ</mi>       </mtd>       <mtd>-        <mo>Ҡ</mo>+        <mi>Ҡ</mi>       </mtd>       <mtd>-        <mo>Ұ</mo>+        <mi>Ұ</mi>       </mtd>       <mtd>-        <mo>Ӏ</mo>+        <mi>Ӏ</mi>       </mtd>       <mtd>-        <mo>Ӑ</mo>+        <mi>Ӑ</mi>       </mtd>       <mtd>-        <mo>Ӡ</mo>+        <mi>Ӡ</mi>       </mtd>       <mtd>-        <mo>Ӱ</mo>+        <mi>Ӱ</mi>       </mtd>     </mtr>     <mtr>@@ -110,52 +110,52 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>Ё</mo>+        <mi>Ё</mi>       </mtd>       <mtd>-        <mo>Б</mo>+        <mi>Б</mi>       </mtd>       <mtd>-        <mo>С</mo>+        <mi>С</mi>       </mtd>       <mtd>-        <mo>б</mo>+        <mi>б</mi>       </mtd>       <mtd>-        <mo>с</mo>+        <mi>с</mi>       </mtd>       <mtd>-        <mo>ё</mo>+        <mi>ё</mi>       </mtd>       <mtd>-        <mo>ѡ</mo>+        <mi>ѡ</mi>       </mtd>       <mtd>-        <mo>ѱ</mo>+        <mi>ѱ</mi>       </mtd>       <mtd>-        <mo>ҁ</mo>+        <mi>ҁ</mi>       </mtd>       <mtd>-        <mo>ґ</mo>+        <mi>ґ</mi>       </mtd>       <mtd>-        <mo>ҡ</mo>+        <mi>ҡ</mi>       </mtd>       <mtd>-        <mo>ұ</mo>+        <mi>ұ</mi>       </mtd>       <mtd>-        <mo>Ӂ</mo>+        <mi>Ӂ</mi>       </mtd>       <mtd>-        <mo>ӑ</mo>+        <mi>ӑ</mi>       </mtd>       <mtd>-        <mo>ӡ</mo>+        <mi>ӡ</mi>       </mtd>       <mtd>-        <mo>ӱ</mo>+        <mi>ӱ</mi>       </mtd>     </mtr>     <mtr>@@ -163,52 +163,52 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>Ђ</mo>+        <mi>Ђ</mi>       </mtd>       <mtd>-        <mo>В</mo>+        <mi>В</mi>       </mtd>       <mtd>-        <mo>Т</mo>+        <mi>Т</mi>       </mtd>       <mtd>-        <mo>в</mo>+        <mi>в</mi>       </mtd>       <mtd>-        <mo>т</mo>+        <mi>т</mi>       </mtd>       <mtd>-        <mo>ђ</mo>+        <mi>ђ</mi>       </mtd>       <mtd>-        <mo>Ѣ</mo>+        <mi>Ѣ</mi>       </mtd>       <mtd>-        <mo>Ѳ</mo>+        <mi>Ѳ</mi>       </mtd>       <mtd>-        <mo>҂</mo>+        <mi>҂</mi>       </mtd>       <mtd>-        <mo>Ғ</mo>+        <mi>Ғ</mi>       </mtd>       <mtd>-        <mo>Ң</mo>+        <mi>Ң</mi>       </mtd>       <mtd>-        <mo>Ҳ</mo>+        <mi>Ҳ</mi>       </mtd>       <mtd>-        <mo>ӂ</mo>+        <mi>ӂ</mi>       </mtd>       <mtd>-        <mo>Ӓ</mo>+        <mi>Ӓ</mi>       </mtd>       <mtd>-        <mo>Ӣ</mo>+        <mi>Ӣ</mi>       </mtd>       <mtd>-        <mo>Ӳ</mo>+        <mi>Ӳ</mi>       </mtd>     </mtr>     <mtr>@@ -216,52 +216,52 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>Ѓ</mo>+        <mi>Ѓ</mi>       </mtd>       <mtd>-        <mo>Г</mo>+        <mi>Г</mi>       </mtd>       <mtd>-        <mo>У</mo>+        <mi>У</mi>       </mtd>       <mtd>-        <mo>г</mo>+        <mi>г</mi>       </mtd>       <mtd>-        <mo>у</mo>+        <mi>у</mi>       </mtd>       <mtd>-        <mo>ѓ</mo>+        <mi>ѓ</mi>       </mtd>       <mtd>-        <mo>ѣ</mo>+        <mi>ѣ</mi>       </mtd>       <mtd>-        <mo>ѳ</mo>+        <mi>ѳ</mi>       </mtd>       <mtd>-        <mo>҃</mo>+        <mi>҃</mi>       </mtd>       <mtd>-        <mo>ғ</mo>+        <mi>ғ</mi>       </mtd>       <mtd>-        <mo>ң</mo>+        <mi>ң</mi>       </mtd>       <mtd>-        <mo>ҳ</mo>+        <mi>ҳ</mi>       </mtd>       <mtd>-        <mo>Ӄ</mo>+        <mi>Ӄ</mi>       </mtd>       <mtd>-        <mo>ӓ</mo>+        <mi>ӓ</mi>       </mtd>       <mtd>-        <mo>ӣ</mo>+        <mi>ӣ</mi>       </mtd>       <mtd>-        <mo>ӳ</mo>+        <mi>ӳ</mi>       </mtd>     </mtr>     <mtr>@@ -269,52 +269,52 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>Є</mo>+        <mi>Є</mi>       </mtd>       <mtd>-        <mo>Д</mo>+        <mi>Д</mi>       </mtd>       <mtd>-        <mo>Ф</mo>+        <mi>Ф</mi>       </mtd>       <mtd>-        <mo>д</mo>+        <mi>д</mi>       </mtd>       <mtd>-        <mo>ф</mo>+        <mi>ф</mi>       </mtd>       <mtd>-        <mo>є</mo>+        <mi>є</mi>       </mtd>       <mtd>-        <mo>Ѥ</mo>+        <mi>Ѥ</mi>       </mtd>       <mtd>-        <mo>Ѵ</mo>+        <mi>Ѵ</mi>       </mtd>       <mtd>-        <mo>҄</mo>+        <mi>҄</mi>       </mtd>       <mtd>-        <mo>Ҕ</mo>+        <mi>Ҕ</mi>       </mtd>       <mtd>-        <mo>Ҥ</mo>+        <mi>Ҥ</mi>       </mtd>       <mtd>-        <mo>Ҵ</mo>+        <mi>Ҵ</mi>       </mtd>       <mtd>-        <mo>ӄ</mo>+        <mi>ӄ</mi>       </mtd>       <mtd>-        <mo>Ӕ</mo>+        <mi>Ӕ</mi>       </mtd>       <mtd>-        <mo>Ӥ</mo>+        <mi>Ӥ</mi>       </mtd>       <mtd>-        <mo>Ӵ</mo>+        <mi>Ӵ</mi>       </mtd>     </mtr>     <mtr>@@ -322,52 +322,52 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>Ѕ</mo>+        <mi>Ѕ</mi>       </mtd>       <mtd>-        <mo>Е</mo>+        <mi>Е</mi>       </mtd>       <mtd>-        <mo>Х</mo>+        <mi>Х</mi>       </mtd>       <mtd>-        <mo>е</mo>+        <mi>е</mi>       </mtd>       <mtd>-        <mo>х</mo>+        <mi>х</mi>       </mtd>       <mtd>-        <mo>ѕ</mo>+        <mi>ѕ</mi>       </mtd>       <mtd>-        <mo>ѥ</mo>+        <mi>ѥ</mi>       </mtd>       <mtd>-        <mo>ѵ</mo>+        <mi>ѵ</mi>       </mtd>       <mtd>-        <mo>҅</mo>+        <mi>҅</mi>       </mtd>       <mtd>-        <mo>ҕ</mo>+        <mi>ҕ</mi>       </mtd>       <mtd>-        <mo>ҥ</mo>+        <mi>ҥ</mi>       </mtd>       <mtd>-        <mo>ҵ</mo>+        <mi>ҵ</mi>       </mtd>       <mtd>-        <mo>Ӆ</mo>+        <mi>Ӆ</mi>       </mtd>       <mtd>-        <mo>ӕ</mo>+        <mi>ӕ</mi>       </mtd>       <mtd>-        <mo>ӥ</mo>+        <mi>ӥ</mi>       </mtd>       <mtd>-        <mo>ӵ</mo>+        <mi>ӵ</mi>       </mtd>     </mtr>     <mtr>@@ -375,52 +375,52 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>І</mo>+        <mi>І</mi>       </mtd>       <mtd>-        <mo>Ж</mo>+        <mi>Ж</mi>       </mtd>       <mtd>-        <mo>Ц</mo>+        <mi>Ц</mi>       </mtd>       <mtd>-        <mo>ж</mo>+        <mi>ж</mi>       </mtd>       <mtd>-        <mo>ц</mo>+        <mi>ц</mi>       </mtd>       <mtd>-        <mo>і</mo>+        <mi>і</mi>       </mtd>       <mtd>-        <mo>Ѧ</mo>+        <mi>Ѧ</mi>       </mtd>       <mtd>-        <mo>Ѷ</mo>+        <mi>Ѷ</mi>       </mtd>       <mtd>-        <mo>҆</mo>+        <mi>҆</mi>       </mtd>       <mtd>-        <mo>Җ</mo>+        <mi>Җ</mi>       </mtd>       <mtd>-        <mo>Ҧ</mo>+        <mi>Ҧ</mi>       </mtd>       <mtd>-        <mo>Ҷ</mo>+        <mi>Ҷ</mi>       </mtd>       <mtd>-        <mo>ӆ</mo>+        <mi>ӆ</mi>       </mtd>       <mtd>-        <mo>Ӗ</mo>+        <mi>Ӗ</mi>       </mtd>       <mtd>-        <mo>Ӧ</mo>+        <mi>Ӧ</mi>       </mtd>       <mtd>-        <mo>Ӷ</mo>+        <mi>Ӷ</mi>       </mtd>     </mtr>     <mtr>@@ -428,52 +428,52 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>Ї</mo>+        <mi>Ї</mi>       </mtd>       <mtd>-        <mo>З</mo>+        <mi>З</mi>       </mtd>       <mtd>-        <mo>Ч</mo>+        <mi>Ч</mi>       </mtd>       <mtd>-        <mo>з</mo>+        <mi>з</mi>       </mtd>       <mtd>-        <mo>ч</mo>+        <mi>ч</mi>       </mtd>       <mtd>-        <mo>ї</mo>+        <mi>ї</mi>       </mtd>       <mtd>-        <mo>ѧ</mo>+        <mi>ѧ</mi>       </mtd>       <mtd>-        <mo>ѷ</mo>+        <mi>ѷ</mi>       </mtd>       <mtd>-        <mo>҇</mo>+        <mi>҇</mi>       </mtd>       <mtd>-        <mo>җ</mo>+        <mi>җ</mi>       </mtd>       <mtd>-        <mo>ҧ</mo>+        <mi>ҧ</mi>       </mtd>       <mtd>-        <mo>ҷ</mo>+        <mi>ҷ</mi>       </mtd>       <mtd>-        <mo>Ӈ</mo>+        <mi>Ӈ</mi>       </mtd>       <mtd>-        <mo>ӗ</mo>+        <mi>ӗ</mi>       </mtd>       <mtd>-        <mo>ӧ</mo>+        <mi>ӧ</mi>       </mtd>       <mtd>-        <mo>ӷ</mo>+        <mi>ӷ</mi>       </mtd>     </mtr>     <mtr>@@ -481,52 +481,52 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>Ј</mo>+        <mi>Ј</mi>       </mtd>       <mtd>-        <mo>И</mo>+        <mi>И</mi>       </mtd>       <mtd>         <mo>Ш</mo>       </mtd>       <mtd>-        <mo>и</mo>+        <mi>и</mi>       </mtd>       <mtd>-        <mo>ш</mo>+        <mi>ш</mi>       </mtd>       <mtd>-        <mo>ј</mo>+        <mi>ј</mi>       </mtd>       <mtd>-        <mo>Ѩ</mo>+        <mi>Ѩ</mi>       </mtd>       <mtd>-        <mo>Ѹ</mo>+        <mi>Ѹ</mi>       </mtd>       <mtd>-        <mo>҈</mo>+        <mi>҈</mi>       </mtd>       <mtd>-        <mo>Ҙ</mo>+        <mi>Ҙ</mi>       </mtd>       <mtd>-        <mo>Ҩ</mo>+        <mi>Ҩ</mi>       </mtd>       <mtd>-        <mo>Ҹ</mo>+        <mi>Ҹ</mi>       </mtd>       <mtd>-        <mo>ӈ</mo>+        <mi>ӈ</mi>       </mtd>       <mtd>-        <mo>Ә</mo>+        <mi>Ә</mi>       </mtd>       <mtd>-        <mo>Ө</mo>+        <mi>Ө</mi>       </mtd>       <mtd>-        <mo>Ӹ</mo>+        <mi>Ӹ</mi>       </mtd>     </mtr>     <mtr>@@ -534,52 +534,52 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>Љ</mo>+        <mi>Љ</mi>       </mtd>       <mtd>-        <mo>Й</mo>+        <mi>Й</mi>       </mtd>       <mtd>-        <mo>Щ</mo>+        <mi>Щ</mi>       </mtd>       <mtd>-        <mo>й</mo>+        <mi>й</mi>       </mtd>       <mtd>-        <mo>щ</mo>+        <mi>щ</mi>       </mtd>       <mtd>-        <mo>љ</mo>+        <mi>љ</mi>       </mtd>       <mtd>-        <mo>ѩ</mo>+        <mi>ѩ</mi>       </mtd>       <mtd>-        <mo>ѹ</mo>+        <mi>ѹ</mi>       </mtd>       <mtd>-        <mo>҉</mo>+        <mi>҉</mi>       </mtd>       <mtd>-        <mo>ҙ</mo>+        <mi>ҙ</mi>       </mtd>       <mtd>-        <mo>ҩ</mo>+        <mi>ҩ</mi>       </mtd>       <mtd>-        <mo>ҹ</mo>+        <mi>ҹ</mi>       </mtd>       <mtd>-        <mo>Ӊ</mo>+        <mi>Ӊ</mi>       </mtd>       <mtd>-        <mo>ә</mo>+        <mi>ә</mi>       </mtd>       <mtd>-        <mo>ө</mo>+        <mi>ө</mi>       </mtd>       <mtd>-        <mo>ӹ</mo>+        <mi>ӹ</mi>       </mtd>     </mtr>     <mtr>@@ -587,52 +587,52 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>Њ</mo>+        <mi>Њ</mi>       </mtd>       <mtd>-        <mo>К</mo>+        <mi>К</mi>       </mtd>       <mtd>-        <mo>Ъ</mo>+        <mi>Ъ</mi>       </mtd>       <mtd>-        <mo>к</mo>+        <mi>к</mi>       </mtd>       <mtd>-        <mo>ъ</mo>+        <mi>ъ</mi>       </mtd>       <mtd>-        <mo>њ</mo>+        <mi>њ</mi>       </mtd>       <mtd>-        <mo>Ѫ</mo>+        <mi>Ѫ</mi>       </mtd>       <mtd>-        <mo>Ѻ</mo>+        <mi>Ѻ</mi>       </mtd>       <mtd>-        <mo>Ҋ</mo>+        <mi>Ҋ</mi>       </mtd>       <mtd>-        <mo>Қ</mo>+        <mi>Қ</mi>       </mtd>       <mtd>-        <mo>Ҫ</mo>+        <mi>Ҫ</mi>       </mtd>       <mtd>-        <mo>Һ</mo>+        <mi>Һ</mi>       </mtd>       <mtd>-        <mo>ӊ</mo>+        <mi>ӊ</mi>       </mtd>       <mtd>-        <mo>Ӛ</mo>+        <mi>Ӛ</mi>       </mtd>       <mtd>-        <mo>Ӫ</mo>+        <mi>Ӫ</mi>       </mtd>       <mtd>-        <mo>Ӻ</mo>+        <mi>Ӻ</mi>       </mtd>     </mtr>     <mtr>@@ -640,52 +640,52 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>Ћ</mo>+        <mi>Ћ</mi>       </mtd>       <mtd>-        <mo>Л</mo>+        <mi>Л</mi>       </mtd>       <mtd>-        <mo>Ы</mo>+        <mi>Ы</mi>       </mtd>       <mtd>-        <mo>л</mo>+        <mi>л</mi>       </mtd>       <mtd>-        <mo>ы</mo>+        <mi>ы</mi>       </mtd>       <mtd>-        <mo>ћ</mo>+        <mi>ћ</mi>       </mtd>       <mtd>-        <mo>ѫ</mo>+        <mi>ѫ</mi>       </mtd>       <mtd>-        <mo>ѻ</mo>+        <mi>ѻ</mi>       </mtd>       <mtd>-        <mo>ҋ</mo>+        <mi>ҋ</mi>       </mtd>       <mtd>-        <mo>қ</mo>+        <mi>қ</mi>       </mtd>       <mtd>-        <mo>ҫ</mo>+        <mi>ҫ</mi>       </mtd>       <mtd>-        <mo>һ</mo>+        <mi>һ</mi>       </mtd>       <mtd>-        <mo>Ӌ</mo>+        <mi>Ӌ</mi>       </mtd>       <mtd>-        <mo>ӛ</mo>+        <mi>ӛ</mi>       </mtd>       <mtd>-        <mo>ӫ</mo>+        <mi>ӫ</mi>       </mtd>       <mtd>-        <mo>ӻ</mo>+        <mi>ӻ</mi>       </mtd>     </mtr>     <mtr>@@ -693,52 +693,52 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>Ќ</mo>+        <mi>Ќ</mi>       </mtd>       <mtd>-        <mo>М</mo>+        <mi>М</mi>       </mtd>       <mtd>-        <mo>Ь</mo>+        <mi>Ь</mi>       </mtd>       <mtd>-        <mo>м</mo>+        <mi>м</mi>       </mtd>       <mtd>-        <mo>ь</mo>+        <mi>ь</mi>       </mtd>       <mtd>-        <mo>ќ</mo>+        <mi>ќ</mi>       </mtd>       <mtd>-        <mo>Ѭ</mo>+        <mi>Ѭ</mi>       </mtd>       <mtd>-        <mo>Ѽ</mo>+        <mi>Ѽ</mi>       </mtd>       <mtd>-        <mo>Ҍ</mo>+        <mi>Ҍ</mi>       </mtd>       <mtd>-        <mo>Ҝ</mo>+        <mi>Ҝ</mi>       </mtd>       <mtd>-        <mo>Ҭ</mo>+        <mi>Ҭ</mi>       </mtd>       <mtd>-        <mo>Ҽ</mo>+        <mi>Ҽ</mi>       </mtd>       <mtd>-        <mo>ӌ</mo>+        <mi>ӌ</mi>       </mtd>       <mtd>-        <mo>Ӝ</mo>+        <mi>Ӝ</mi>       </mtd>       <mtd>-        <mo>Ӭ</mo>+        <mi>Ӭ</mi>       </mtd>       <mtd>-        <mo>Ӽ</mo>+        <mi>Ӽ</mi>       </mtd>     </mtr>     <mtr>@@ -746,52 +746,52 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>Ѝ</mo>+        <mi>Ѝ</mi>       </mtd>       <mtd>-        <mo>Н</mo>+        <mi>Н</mi>       </mtd>       <mtd>-        <mo>Э</mo>+        <mi>Э</mi>       </mtd>       <mtd>-        <mo>н</mo>+        <mi>н</mi>       </mtd>       <mtd>-        <mo>э</mo>+        <mi>э</mi>       </mtd>       <mtd>-        <mo>ѝ</mo>+        <mi>ѝ</mi>       </mtd>       <mtd>-        <mo>ѭ</mo>+        <mi>ѭ</mi>       </mtd>       <mtd>-        <mo>ѽ</mo>+        <mi>ѽ</mi>       </mtd>       <mtd>-        <mo>ҍ</mo>+        <mi>ҍ</mi>       </mtd>       <mtd>-        <mo>ҝ</mo>+        <mi>ҝ</mi>       </mtd>       <mtd>-        <mo>ҭ</mo>+        <mi>ҭ</mi>       </mtd>       <mtd>-        <mo>ҽ</mo>+        <mi>ҽ</mi>       </mtd>       <mtd>-        <mo>Ӎ</mo>+        <mi>Ӎ</mi>       </mtd>       <mtd>-        <mo>ӝ</mo>+        <mi>ӝ</mi>       </mtd>       <mtd>-        <mo>ӭ</mo>+        <mi>ӭ</mi>       </mtd>       <mtd>-        <mo>ӽ</mo>+        <mi>ӽ</mi>       </mtd>     </mtr>     <mtr>@@ -799,52 +799,52 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>Ў</mo>+        <mi>Ў</mi>       </mtd>       <mtd>-        <mo>О</mo>+        <mi>О</mi>       </mtd>       <mtd>-        <mo>Ю</mo>+        <mi>Ю</mi>       </mtd>       <mtd>-        <mo>о</mo>+        <mi>о</mi>       </mtd>       <mtd>-        <mo>ю</mo>+        <mi>ю</mi>       </mtd>       <mtd>-        <mo>ў</mo>+        <mi>ў</mi>       </mtd>       <mtd>-        <mo>Ѯ</mo>+        <mi>Ѯ</mi>       </mtd>       <mtd>-        <mo>Ѿ</mo>+        <mi>Ѿ</mi>       </mtd>       <mtd>-        <mo>Ҏ</mo>+        <mi>Ҏ</mi>       </mtd>       <mtd>-        <mo>Ҟ</mo>+        <mi>Ҟ</mi>       </mtd>       <mtd>-        <mo>Ү</mo>+        <mi>Ү</mi>       </mtd>       <mtd>-        <mo>Ҿ</mo>+        <mi>Ҿ</mi>       </mtd>       <mtd>-        <mo>ӎ</mo>+        <mi>ӎ</mi>       </mtd>       <mtd>-        <mo>Ӟ</mo>+        <mi>Ӟ</mi>       </mtd>       <mtd>-        <mo>Ӯ</mo>+        <mi>Ӯ</mi>       </mtd>       <mtd>-        <mo>Ӿ</mo>+        <mi>Ӿ</mi>       </mtd>     </mtr>     <mtr>@@ -852,52 +852,52 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>Џ</mo>+        <mi>Џ</mi>       </mtd>       <mtd>-        <mo>П</mo>+        <mi>П</mi>       </mtd>       <mtd>-        <mo>Я</mo>+        <mi>Я</mi>       </mtd>       <mtd>-        <mo>п</mo>+        <mi>п</mi>       </mtd>       <mtd>-        <mo>я</mo>+        <mi>я</mi>       </mtd>       <mtd>-        <mo>џ</mo>+        <mi>џ</mi>       </mtd>       <mtd>-        <mo>ѯ</mo>+        <mi>ѯ</mi>       </mtd>       <mtd>-        <mo>ѿ</mo>+        <mi>ѿ</mi>       </mtd>       <mtd>-        <mo>ҏ</mo>+        <mi>ҏ</mi>       </mtd>       <mtd>-        <mo>ҟ</mo>+        <mi>ҟ</mi>       </mtd>       <mtd>-        <mo>ү</mo>+        <mi>ү</mi>       </mtd>       <mtd>-        <mo>ҿ</mo>+        <mi>ҿ</mi>       </mtd>       <mtd>-        <mo>ӏ</mo>+        <mi>ӏ</mi>       </mtd>       <mtd>-        <mo>ӟ</mo>+        <mi>ӟ</mi>       </mtd>       <mtd>-        <mo>ӯ</mo>+        <mi>ӯ</mi>       </mtd>       <mtd>-        <mo>ӿ</mo>+        <mi>ӿ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/01E00_Latin_Extended_Additional.mml view
@@ -57,52 +57,52 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>Ḁ</mo>+        <mi>Ḁ</mi>       </mtd>       <mtd>-        <mo>Ḑ</mo>+        <mi>Ḑ</mi>       </mtd>       <mtd>-        <mo>Ḡ</mo>+        <mi>Ḡ</mi>       </mtd>       <mtd>-        <mo>Ḱ</mo>+        <mi>Ḱ</mi>       </mtd>       <mtd>-        <mo>Ṁ</mo>+        <mi>Ṁ</mi>       </mtd>       <mtd>-        <mo>Ṑ</mo>+        <mi>Ṑ</mi>       </mtd>       <mtd>-        <mo>Ṡ</mo>+        <mi>Ṡ</mi>       </mtd>       <mtd>-        <mo>Ṱ</mo>+        <mi>Ṱ</mi>       </mtd>       <mtd>-        <mo>Ẁ</mo>+        <mi>Ẁ</mi>       </mtd>       <mtd>-        <mo>Ẑ</mo>+        <mi>Ẑ</mi>       </mtd>       <mtd>-        <mo>Ạ</mo>+        <mi>Ạ</mi>       </mtd>       <mtd>-        <mo>Ằ</mo>+        <mi>Ằ</mi>       </mtd>       <mtd>-        <mo>Ề</mo>+        <mi>Ề</mi>       </mtd>       <mtd>-        <mo>Ố</mo>+        <mi>Ố</mi>       </mtd>       <mtd>-        <mo>Ỡ</mo>+        <mi>Ỡ</mi>       </mtd>       <mtd>-        <mo>Ự</mo>+        <mi>Ự</mi>       </mtd>     </mtr>     <mtr>@@ -110,52 +110,52 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ḁ</mo>+        <mi>ḁ</mi>       </mtd>       <mtd>-        <mo>ḑ</mo>+        <mi>ḑ</mi>       </mtd>       <mtd>-        <mo>ḡ</mo>+        <mi>ḡ</mi>       </mtd>       <mtd>-        <mo>ḱ</mo>+        <mi>ḱ</mi>       </mtd>       <mtd>-        <mo>ṁ</mo>+        <mi>ṁ</mi>       </mtd>       <mtd>-        <mo>ṑ</mo>+        <mi>ṑ</mi>       </mtd>       <mtd>-        <mo>ṡ</mo>+        <mi>ṡ</mi>       </mtd>       <mtd>-        <mo>ṱ</mo>+        <mi>ṱ</mi>       </mtd>       <mtd>-        <mo>ẁ</mo>+        <mi>ẁ</mi>       </mtd>       <mtd>-        <mo>ẑ</mo>+        <mi>ẑ</mi>       </mtd>       <mtd>-        <mo>ạ</mo>+        <mi>ạ</mi>       </mtd>       <mtd>-        <mo>ằ</mo>+        <mi>ằ</mi>       </mtd>       <mtd>-        <mo>ề</mo>+        <mi>ề</mi>       </mtd>       <mtd>-        <mo>ố</mo>+        <mi>ố</mi>       </mtd>       <mtd>-        <mo>ỡ</mo>+        <mi>ỡ</mi>       </mtd>       <mtd>-        <mo>ự</mo>+        <mi>ự</mi>       </mtd>     </mtr>     <mtr>@@ -163,52 +163,52 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>Ḃ</mo>+        <mi>Ḃ</mi>       </mtd>       <mtd>-        <mo>Ḓ</mo>+        <mi>Ḓ</mi>       </mtd>       <mtd>-        <mo>Ḣ</mo>+        <mi>Ḣ</mi>       </mtd>       <mtd>-        <mo>Ḳ</mo>+        <mi>Ḳ</mi>       </mtd>       <mtd>-        <mo>Ṃ</mo>+        <mi>Ṃ</mi>       </mtd>       <mtd>-        <mo>Ṓ</mo>+        <mi>Ṓ</mi>       </mtd>       <mtd>-        <mo>Ṣ</mo>+        <mi>Ṣ</mi>       </mtd>       <mtd>-        <mo>Ṳ</mo>+        <mi>Ṳ</mi>       </mtd>       <mtd>-        <mo>Ẃ</mo>+        <mi>Ẃ</mi>       </mtd>       <mtd>-        <mo>Ẓ</mo>+        <mi>Ẓ</mi>       </mtd>       <mtd>-        <mo>Ả</mo>+        <mi>Ả</mi>       </mtd>       <mtd>-        <mo>Ẳ</mo>+        <mi>Ẳ</mi>       </mtd>       <mtd>-        <mo>Ể</mo>+        <mi>Ể</mi>       </mtd>       <mtd>-        <mo>Ồ</mo>+        <mi>Ồ</mi>       </mtd>       <mtd>-        <mo>Ợ</mo>+        <mi>Ợ</mi>       </mtd>       <mtd>-        <mo>Ỳ</mo>+        <mi>Ỳ</mi>       </mtd>     </mtr>     <mtr>@@ -216,52 +216,52 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ḃ</mo>+        <mi>ḃ</mi>       </mtd>       <mtd>-        <mo>ḓ</mo>+        <mi>ḓ</mi>       </mtd>       <mtd>-        <mo>ḣ</mo>+        <mi>ḣ</mi>       </mtd>       <mtd>-        <mo>ḳ</mo>+        <mi>ḳ</mi>       </mtd>       <mtd>-        <mo>ṃ</mo>+        <mi>ṃ</mi>       </mtd>       <mtd>-        <mo>ṓ</mo>+        <mi>ṓ</mi>       </mtd>       <mtd>-        <mo>ṣ</mo>+        <mi>ṣ</mi>       </mtd>       <mtd>-        <mo>ṳ</mo>+        <mi>ṳ</mi>       </mtd>       <mtd>-        <mo>ẃ</mo>+        <mi>ẃ</mi>       </mtd>       <mtd>-        <mo>ẓ</mo>+        <mi>ẓ</mi>       </mtd>       <mtd>-        <mo>ả</mo>+        <mi>ả</mi>       </mtd>       <mtd>-        <mo>ẳ</mo>+        <mi>ẳ</mi>       </mtd>       <mtd>-        <mo>ể</mo>+        <mi>ể</mi>       </mtd>       <mtd>-        <mo>ồ</mo>+        <mi>ồ</mi>       </mtd>       <mtd>-        <mo>ợ</mo>+        <mi>ợ</mi>       </mtd>       <mtd>-        <mo>ỳ</mo>+        <mi>ỳ</mi>       </mtd>     </mtr>     <mtr>@@ -269,52 +269,52 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>Ḅ</mo>+        <mi>Ḅ</mi>       </mtd>       <mtd>-        <mo>Ḕ</mo>+        <mi>Ḕ</mi>       </mtd>       <mtd>-        <mo>Ḥ</mo>+        <mi>Ḥ</mi>       </mtd>       <mtd>-        <mo>Ḵ</mo>+        <mi>Ḵ</mi>       </mtd>       <mtd>-        <mo>Ṅ</mo>+        <mi>Ṅ</mi>       </mtd>       <mtd>-        <mo>Ṕ</mo>+        <mi>Ṕ</mi>       </mtd>       <mtd>-        <mo>Ṥ</mo>+        <mi>Ṥ</mi>       </mtd>       <mtd>-        <mo>Ṵ</mo>+        <mi>Ṵ</mi>       </mtd>       <mtd>-        <mo>Ẅ</mo>+        <mi>Ẅ</mi>       </mtd>       <mtd>-        <mo>Ẕ</mo>+        <mi>Ẕ</mi>       </mtd>       <mtd>-        <mo>Ấ</mo>+        <mi>Ấ</mi>       </mtd>       <mtd>-        <mo>Ẵ</mo>+        <mi>Ẵ</mi>       </mtd>       <mtd>-        <mo>Ễ</mo>+        <mi>Ễ</mi>       </mtd>       <mtd>-        <mo>Ổ</mo>+        <mi>Ổ</mi>       </mtd>       <mtd>-        <mo>Ụ</mo>+        <mi>Ụ</mi>       </mtd>       <mtd>-        <mo>Ỵ</mo>+        <mi>Ỵ</mi>       </mtd>     </mtr>     <mtr>@@ -322,52 +322,52 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>ḅ</mo>+        <mi>ḅ</mi>       </mtd>       <mtd>-        <mo>ḕ</mo>+        <mi>ḕ</mi>       </mtd>       <mtd>-        <mo>ḥ</mo>+        <mi>ḥ</mi>       </mtd>       <mtd>-        <mo>ḵ</mo>+        <mi>ḵ</mi>       </mtd>       <mtd>-        <mo>ṅ</mo>+        <mi>ṅ</mi>       </mtd>       <mtd>-        <mo>ṕ</mo>+        <mi>ṕ</mi>       </mtd>       <mtd>-        <mo>ṥ</mo>+        <mi>ṥ</mi>       </mtd>       <mtd>-        <mo>ṵ</mo>+        <mi>ṵ</mi>       </mtd>       <mtd>-        <mo>ẅ</mo>+        <mi>ẅ</mi>       </mtd>       <mtd>-        <mo>ẕ</mo>+        <mi>ẕ</mi>       </mtd>       <mtd>-        <mo>ấ</mo>+        <mi>ấ</mi>       </mtd>       <mtd>-        <mo>ẵ</mo>+        <mi>ẵ</mi>       </mtd>       <mtd>-        <mo>ễ</mo>+        <mi>ễ</mi>       </mtd>       <mtd>-        <mo>ổ</mo>+        <mi>ổ</mi>       </mtd>       <mtd>-        <mo>ụ</mo>+        <mi>ụ</mi>       </mtd>       <mtd>-        <mo>ỵ</mo>+        <mi>ỵ</mi>       </mtd>     </mtr>     <mtr>@@ -375,52 +375,52 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>Ḇ</mo>+        <mi>Ḇ</mi>       </mtd>       <mtd>-        <mo>Ḗ</mo>+        <mi>Ḗ</mi>       </mtd>       <mtd>-        <mo>Ḧ</mo>+        <mi>Ḧ</mi>       </mtd>       <mtd>-        <mo>Ḷ</mo>+        <mi>Ḷ</mi>       </mtd>       <mtd>-        <mo>Ṇ</mo>+        <mi>Ṇ</mi>       </mtd>       <mtd>-        <mo>Ṗ</mo>+        <mi>Ṗ</mi>       </mtd>       <mtd>-        <mo>Ṧ</mo>+        <mi>Ṧ</mi>       </mtd>       <mtd>-        <mo>Ṷ</mo>+        <mi>Ṷ</mi>       </mtd>       <mtd>-        <mo>Ẇ</mo>+        <mi>Ẇ</mi>       </mtd>       <mtd>-        <mo>ẖ</mo>+        <mi>ẖ</mi>       </mtd>       <mtd>-        <mo>Ầ</mo>+        <mi>Ầ</mi>       </mtd>       <mtd>-        <mo>Ặ</mo>+        <mi>Ặ</mi>       </mtd>       <mtd>-        <mo>Ệ</mo>+        <mi>Ệ</mi>       </mtd>       <mtd>-        <mo>Ỗ</mo>+        <mi>Ỗ</mi>       </mtd>       <mtd>-        <mo>Ủ</mo>+        <mi>Ủ</mi>       </mtd>       <mtd>-        <mo>Ỷ</mo>+        <mi>Ỷ</mi>       </mtd>     </mtr>     <mtr>@@ -428,52 +428,52 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ḇ</mo>+        <mi>ḇ</mi>       </mtd>       <mtd>-        <mo>ḗ</mo>+        <mi>ḗ</mi>       </mtd>       <mtd>-        <mo>ḧ</mo>+        <mi>ḧ</mi>       </mtd>       <mtd>-        <mo>ḷ</mo>+        <mi>ḷ</mi>       </mtd>       <mtd>-        <mo>ṇ</mo>+        <mi>ṇ</mi>       </mtd>       <mtd>-        <mo>ṗ</mo>+        <mi>ṗ</mi>       </mtd>       <mtd>-        <mo>ṧ</mo>+        <mi>ṧ</mi>       </mtd>       <mtd>-        <mo>ṷ</mo>+        <mi>ṷ</mi>       </mtd>       <mtd>-        <mo>ẇ</mo>+        <mi>ẇ</mi>       </mtd>       <mtd>-        <mo>ẗ</mo>+        <mi>ẗ</mi>       </mtd>       <mtd>-        <mo>ầ</mo>+        <mi>ầ</mi>       </mtd>       <mtd>-        <mo>ặ</mo>+        <mi>ặ</mi>       </mtd>       <mtd>-        <mo>ệ</mo>+        <mi>ệ</mi>       </mtd>       <mtd>-        <mo>ỗ</mo>+        <mi>ỗ</mi>       </mtd>       <mtd>-        <mo>ủ</mo>+        <mi>ủ</mi>       </mtd>       <mtd>-        <mo>ỷ</mo>+        <mi>ỷ</mi>       </mtd>     </mtr>     <mtr>@@ -481,52 +481,52 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>Ḉ</mo>+        <mi>Ḉ</mi>       </mtd>       <mtd>-        <mo>Ḙ</mo>+        <mi>Ḙ</mi>       </mtd>       <mtd>-        <mo>Ḩ</mo>+        <mi>Ḩ</mi>       </mtd>       <mtd>-        <mo>Ḹ</mo>+        <mi>Ḹ</mi>       </mtd>       <mtd>-        <mo>Ṉ</mo>+        <mi>Ṉ</mi>       </mtd>       <mtd>-        <mo>Ṙ</mo>+        <mi>Ṙ</mi>       </mtd>       <mtd>-        <mo>Ṩ</mo>+        <mi>Ṩ</mi>       </mtd>       <mtd>-        <mo>Ṹ</mo>+        <mi>Ṹ</mi>       </mtd>       <mtd>-        <mo>Ẉ</mo>+        <mi>Ẉ</mi>       </mtd>       <mtd>-        <mo>ẘ</mo>+        <mi>ẘ</mi>       </mtd>       <mtd>-        <mo>Ẩ</mo>+        <mi>Ẩ</mi>       </mtd>       <mtd>-        <mo>Ẹ</mo>+        <mi>Ẹ</mi>       </mtd>       <mtd>-        <mo>Ỉ</mo>+        <mi>Ỉ</mi>       </mtd>       <mtd>-        <mo>Ộ</mo>+        <mi>Ộ</mi>       </mtd>       <mtd>-        <mo>Ứ</mo>+        <mi>Ứ</mi>       </mtd>       <mtd>-        <mo>Ỹ</mo>+        <mi>Ỹ</mi>       </mtd>     </mtr>     <mtr>@@ -534,52 +534,52 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>ḉ</mo>+        <mi>ḉ</mi>       </mtd>       <mtd>-        <mo>ḙ</mo>+        <mi>ḙ</mi>       </mtd>       <mtd>-        <mo>ḩ</mo>+        <mi>ḩ</mi>       </mtd>       <mtd>-        <mo>ḹ</mo>+        <mi>ḹ</mi>       </mtd>       <mtd>-        <mo>ṉ</mo>+        <mi>ṉ</mi>       </mtd>       <mtd>-        <mo>ṙ</mo>+        <mi>ṙ</mi>       </mtd>       <mtd>-        <mo>ṩ</mo>+        <mi>ṩ</mi>       </mtd>       <mtd>-        <mo>ṹ</mo>+        <mi>ṹ</mi>       </mtd>       <mtd>-        <mo>ẉ</mo>+        <mi>ẉ</mi>       </mtd>       <mtd>-        <mo>ẙ</mo>+        <mi>ẙ</mi>       </mtd>       <mtd>-        <mo>ẩ</mo>+        <mi>ẩ</mi>       </mtd>       <mtd>-        <mo>ẹ</mo>+        <mi>ẹ</mi>       </mtd>       <mtd>-        <mo>ỉ</mo>+        <mi>ỉ</mi>       </mtd>       <mtd>-        <mo>ộ</mo>+        <mi>ộ</mi>       </mtd>       <mtd>-        <mo>ứ</mo>+        <mi>ứ</mi>       </mtd>       <mtd>-        <mo>ỹ</mo>+        <mi>ỹ</mi>       </mtd>     </mtr>     <mtr>@@ -587,52 +587,52 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>Ḋ</mo>+        <mi>Ḋ</mi>       </mtd>       <mtd>-        <mo>Ḛ</mo>+        <mi>Ḛ</mi>       </mtd>       <mtd>-        <mo>Ḫ</mo>+        <mi>Ḫ</mi>       </mtd>       <mtd>-        <mo>Ḻ</mo>+        <mi>Ḻ</mi>       </mtd>       <mtd>-        <mo>Ṋ</mo>+        <mi>Ṋ</mi>       </mtd>       <mtd>-        <mo>Ṛ</mo>+        <mi>Ṛ</mi>       </mtd>       <mtd>-        <mo>Ṫ</mo>+        <mi>Ṫ</mi>       </mtd>       <mtd>-        <mo>Ṻ</mo>+        <mi>Ṻ</mi>       </mtd>       <mtd>-        <mo>Ẋ</mo>+        <mi>Ẋ</mi>       </mtd>       <mtd>-        <mo>ẚ</mo>+        <mi>ẚ</mi>       </mtd>       <mtd>-        <mo>Ẫ</mo>+        <mi>Ẫ</mi>       </mtd>       <mtd>-        <mo>Ẻ</mo>+        <mi>Ẻ</mi>       </mtd>       <mtd>-        <mo>Ị</mo>+        <mi>Ị</mi>       </mtd>       <mtd>-        <mo>Ớ</mo>+        <mi>Ớ</mi>       </mtd>       <mtd>-        <mo>Ừ</mo>+        <mi>Ừ</mi>       </mtd>       <mtd>-        <mo>Ỻ</mo>+        <mi>Ỻ</mi>       </mtd>     </mtr>     <mtr>@@ -640,52 +640,52 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>ḋ</mo>+        <mi>ḋ</mi>       </mtd>       <mtd>-        <mo>ḛ</mo>+        <mi>ḛ</mi>       </mtd>       <mtd>-        <mo>ḫ</mo>+        <mi>ḫ</mi>       </mtd>       <mtd>-        <mo>ḻ</mo>+        <mi>ḻ</mi>       </mtd>       <mtd>-        <mo>ṋ</mo>+        <mi>ṋ</mi>       </mtd>       <mtd>-        <mo>ṛ</mo>+        <mi>ṛ</mi>       </mtd>       <mtd>-        <mo>ṫ</mo>+        <mi>ṫ</mi>       </mtd>       <mtd>-        <mo>ṻ</mo>+        <mi>ṻ</mi>       </mtd>       <mtd>-        <mo>ẋ</mo>+        <mi>ẋ</mi>       </mtd>       <mtd>-        <mo>ẛ</mo>+        <mi>ẛ</mi>       </mtd>       <mtd>-        <mo>ẫ</mo>+        <mi>ẫ</mi>       </mtd>       <mtd>-        <mo>ẻ</mo>+        <mi>ẻ</mi>       </mtd>       <mtd>-        <mo>ị</mo>+        <mi>ị</mi>       </mtd>       <mtd>-        <mo>ớ</mo>+        <mi>ớ</mi>       </mtd>       <mtd>-        <mo>ừ</mo>+        <mi>ừ</mi>       </mtd>       <mtd>-        <mo>ỻ</mo>+        <mi>ỻ</mi>       </mtd>     </mtr>     <mtr>@@ -693,52 +693,52 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>Ḍ</mo>+        <mi>Ḍ</mi>       </mtd>       <mtd>-        <mo>Ḝ</mo>+        <mi>Ḝ</mi>       </mtd>       <mtd>-        <mo>Ḭ</mo>+        <mi>Ḭ</mi>       </mtd>       <mtd>-        <mo>Ḽ</mo>+        <mi>Ḽ</mi>       </mtd>       <mtd>-        <mo>Ṍ</mo>+        <mi>Ṍ</mi>       </mtd>       <mtd>-        <mo>Ṝ</mo>+        <mi>Ṝ</mi>       </mtd>       <mtd>-        <mo>Ṭ</mo>+        <mi>Ṭ</mi>       </mtd>       <mtd>-        <mo>Ṽ</mo>+        <mi>Ṽ</mi>       </mtd>       <mtd>-        <mo>Ẍ</mo>+        <mi>Ẍ</mi>       </mtd>       <mtd>-        <mo>ẜ</mo>+        <mi>ẜ</mi>       </mtd>       <mtd>-        <mo>Ậ</mo>+        <mi>Ậ</mi>       </mtd>       <mtd>-        <mo>Ẽ</mo>+        <mi>Ẽ</mi>       </mtd>       <mtd>-        <mo>Ọ</mo>+        <mi>Ọ</mi>       </mtd>       <mtd>-        <mo>Ờ</mo>+        <mi>Ờ</mi>       </mtd>       <mtd>-        <mo>Ử</mo>+        <mi>Ử</mi>       </mtd>       <mtd>-        <mo>Ỽ</mo>+        <mi>Ỽ</mi>       </mtd>     </mtr>     <mtr>@@ -746,52 +746,52 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>ḍ</mo>+        <mi>ḍ</mi>       </mtd>       <mtd>-        <mo>ḝ</mo>+        <mi>ḝ</mi>       </mtd>       <mtd>-        <mo>ḭ</mo>+        <mi>ḭ</mi>       </mtd>       <mtd>-        <mo>ḽ</mo>+        <mi>ḽ</mi>       </mtd>       <mtd>-        <mo>ṍ</mo>+        <mi>ṍ</mi>       </mtd>       <mtd>-        <mo>ṝ</mo>+        <mi>ṝ</mi>       </mtd>       <mtd>-        <mo>ṭ</mo>+        <mi>ṭ</mi>       </mtd>       <mtd>-        <mo>ṽ</mo>+        <mi>ṽ</mi>       </mtd>       <mtd>-        <mo>ẍ</mo>+        <mi>ẍ</mi>       </mtd>       <mtd>-        <mo>ẝ</mo>+        <mi>ẝ</mi>       </mtd>       <mtd>-        <mo>ậ</mo>+        <mi>ậ</mi>       </mtd>       <mtd>-        <mo>ẽ</mo>+        <mi>ẽ</mi>       </mtd>       <mtd>-        <mo>ọ</mo>+        <mi>ọ</mi>       </mtd>       <mtd>-        <mo>ờ</mo>+        <mi>ờ</mi>       </mtd>       <mtd>-        <mo>ử</mo>+        <mi>ử</mi>       </mtd>       <mtd>-        <mo>ỽ</mo>+        <mi>ỽ</mi>       </mtd>     </mtr>     <mtr>@@ -799,52 +799,52 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>Ḏ</mo>+        <mi>Ḏ</mi>       </mtd>       <mtd>-        <mo>Ḟ</mo>+        <mi>Ḟ</mi>       </mtd>       <mtd>-        <mo>Ḯ</mo>+        <mi>Ḯ</mi>       </mtd>       <mtd>-        <mo>Ḿ</mo>+        <mi>Ḿ</mi>       </mtd>       <mtd>-        <mo>Ṏ</mo>+        <mi>Ṏ</mi>       </mtd>       <mtd>-        <mo>Ṟ</mo>+        <mi>Ṟ</mi>       </mtd>       <mtd>-        <mo>Ṯ</mo>+        <mi>Ṯ</mi>       </mtd>       <mtd>-        <mo>Ṿ</mo>+        <mi>Ṿ</mi>       </mtd>       <mtd>-        <mo>Ẏ</mo>+        <mi>Ẏ</mi>       </mtd>       <mtd>-        <mo>ẞ</mo>+        <mi>ẞ</mi>       </mtd>       <mtd>-        <mo>Ắ</mo>+        <mi>Ắ</mi>       </mtd>       <mtd>-        <mo>Ế</mo>+        <mi>Ế</mi>       </mtd>       <mtd>-        <mo>Ỏ</mo>+        <mi>Ỏ</mi>       </mtd>       <mtd>-        <mo>Ở</mo>+        <mi>Ở</mi>       </mtd>       <mtd>-        <mo>Ữ</mo>+        <mi>Ữ</mi>       </mtd>       <mtd>-        <mo>Ỿ</mo>+        <mi>Ỿ</mi>       </mtd>     </mtr>     <mtr>@@ -852,52 +852,52 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>ḏ</mo>+        <mi>ḏ</mi>       </mtd>       <mtd>-        <mo>ḟ</mo>+        <mi>ḟ</mi>       </mtd>       <mtd>-        <mo>ḯ</mo>+        <mi>ḯ</mi>       </mtd>       <mtd>-        <mo>ḿ</mo>+        <mi>ḿ</mi>       </mtd>       <mtd>-        <mo>ṏ</mo>+        <mi>ṏ</mi>       </mtd>       <mtd>-        <mo>ṟ</mo>+        <mi>ṟ</mi>       </mtd>       <mtd>-        <mo>ṯ</mo>+        <mi>ṯ</mi>       </mtd>       <mtd>-        <mo>ṿ</mo>+        <mi>ṿ</mi>       </mtd>       <mtd>-        <mo>ẏ</mo>+        <mi>ẏ</mi>       </mtd>       <mtd>-        <mo>ẟ</mo>+        <mi>ẟ</mi>       </mtd>       <mtd>-        <mo>ắ</mo>+        <mi>ắ</mi>       </mtd>       <mtd>-        <mo>ế</mo>+        <mi>ế</mi>       </mtd>       <mtd>-        <mo>ỏ</mo>+        <mi>ỏ</mi>       </mtd>       <mtd>-        <mo>ở</mo>+        <mi>ở</mi>       </mtd>       <mtd>-        <mo>ữ</mo>+        <mi>ữ</mi>       </mtd>       <mtd>-        <mo>ỿ</mo>+        <mi>ỿ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/01F00_Greek_Extended.mml view
@@ -57,52 +57,52 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>ἀ</mo>+        <mi>ἀ</mi>       </mtd>       <mtd>-        <mo>ἐ</mo>+        <mi>ἐ</mi>       </mtd>       <mtd>-        <mo>ἠ</mo>+        <mi>ἠ</mi>       </mtd>       <mtd>-        <mo>ἰ</mo>+        <mi>ἰ</mi>       </mtd>       <mtd>-        <mo>ὀ</mo>+        <mi>ὀ</mi>       </mtd>       <mtd>-        <mo>ὐ</mo>+        <mi>ὐ</mi>       </mtd>       <mtd>-        <mo>ὠ</mo>+        <mi>ὠ</mi>       </mtd>       <mtd>-        <mo>ὰ</mo>+        <mi>ὰ</mi>       </mtd>       <mtd>-        <mo>ᾀ</mo>+        <mi>ᾀ</mi>       </mtd>       <mtd>-        <mo>ᾐ</mo>+        <mi>ᾐ</mi>       </mtd>       <mtd>-        <mo>ᾠ</mo>+        <mi>ᾠ</mi>       </mtd>       <mtd>-        <mo>ᾰ</mo>+        <mi>ᾰ</mi>       </mtd>       <mtd>-        <mo>῀</mo>+        <mi>῀</mi>       </mtd>       <mtd>-        <mo>ῐ</mo>+        <mi>ῐ</mi>       </mtd>       <mtd>-        <mo>ῠ</mo>+        <mi>ῠ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -110,52 +110,52 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ἁ</mo>+        <mi>ἁ</mi>       </mtd>       <mtd>-        <mo>ἑ</mo>+        <mi>ἑ</mi>       </mtd>       <mtd>-        <mo>ἡ</mo>+        <mi>ἡ</mi>       </mtd>       <mtd>-        <mo>ἱ</mo>+        <mi>ἱ</mi>       </mtd>       <mtd>-        <mo>ὁ</mo>+        <mi>ὁ</mi>       </mtd>       <mtd>-        <mo>ὑ</mo>+        <mi>ὑ</mi>       </mtd>       <mtd>-        <mo>ὡ</mo>+        <mi>ὡ</mi>       </mtd>       <mtd>-        <mo>ά</mo>+        <mi>ά</mi>       </mtd>       <mtd>-        <mo>ᾁ</mo>+        <mi>ᾁ</mi>       </mtd>       <mtd>-        <mo>ᾑ</mo>+        <mi>ᾑ</mi>       </mtd>       <mtd>-        <mo>ᾡ</mo>+        <mi>ᾡ</mi>       </mtd>       <mtd>-        <mo>ᾱ</mo>+        <mi>ᾱ</mi>       </mtd>       <mtd>-        <mo>῁</mo>+        <mi>῁</mi>       </mtd>       <mtd>-        <mo>ῑ</mo>+        <mi>ῑ</mi>       </mtd>       <mtd>-        <mo>ῡ</mo>+        <mi>ῡ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -163,52 +163,52 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>ἂ</mo>+        <mi>ἂ</mi>       </mtd>       <mtd>-        <mo>ἒ</mo>+        <mi>ἒ</mi>       </mtd>       <mtd>-        <mo>ἢ</mo>+        <mi>ἢ</mi>       </mtd>       <mtd>-        <mo>ἲ</mo>+        <mi>ἲ</mi>       </mtd>       <mtd>-        <mo>ὂ</mo>+        <mi>ὂ</mi>       </mtd>       <mtd>-        <mo>ὒ</mo>+        <mi>ὒ</mi>       </mtd>       <mtd>-        <mo>ὢ</mo>+        <mi>ὢ</mi>       </mtd>       <mtd>-        <mo>ὲ</mo>+        <mi>ὲ</mi>       </mtd>       <mtd>-        <mo>ᾂ</mo>+        <mi>ᾂ</mi>       </mtd>       <mtd>-        <mo>ᾒ</mo>+        <mi>ᾒ</mi>       </mtd>       <mtd>-        <mo>ᾢ</mo>+        <mi>ᾢ</mi>       </mtd>       <mtd>-        <mo>ᾲ</mo>+        <mi>ᾲ</mi>       </mtd>       <mtd>-        <mo>ῂ</mo>+        <mi>ῂ</mi>       </mtd>       <mtd>-        <mo>ῒ</mo>+        <mi>ῒ</mi>       </mtd>       <mtd>-        <mo>ῢ</mo>+        <mi>ῢ</mi>       </mtd>       <mtd>-        <mo>ῲ</mo>+        <mi>ῲ</mi>       </mtd>     </mtr>     <mtr>@@ -216,52 +216,52 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ἃ</mo>+        <mi>ἃ</mi>       </mtd>       <mtd>-        <mo>ἓ</mo>+        <mi>ἓ</mi>       </mtd>       <mtd>-        <mo>ἣ</mo>+        <mi>ἣ</mi>       </mtd>       <mtd>-        <mo>ἳ</mo>+        <mi>ἳ</mi>       </mtd>       <mtd>-        <mo>ὃ</mo>+        <mi>ὃ</mi>       </mtd>       <mtd>-        <mo>ὓ</mo>+        <mi>ὓ</mi>       </mtd>       <mtd>-        <mo>ὣ</mo>+        <mi>ὣ</mi>       </mtd>       <mtd>-        <mo>έ</mo>+        <mi>έ</mi>       </mtd>       <mtd>-        <mo>ᾃ</mo>+        <mi>ᾃ</mi>       </mtd>       <mtd>-        <mo>ᾓ</mo>+        <mi>ᾓ</mi>       </mtd>       <mtd>-        <mo>ᾣ</mo>+        <mi>ᾣ</mi>       </mtd>       <mtd>-        <mo>ᾳ</mo>+        <mi>ᾳ</mi>       </mtd>       <mtd>-        <mo>ῃ</mo>+        <mi>ῃ</mi>       </mtd>       <mtd>-        <mo>ΐ</mo>+        <mi>ΐ</mi>       </mtd>       <mtd>-        <mo>ΰ</mo>+        <mi>ΰ</mi>       </mtd>       <mtd>-        <mo>ῳ</mo>+        <mi>ῳ</mi>       </mtd>     </mtr>     <mtr>@@ -269,52 +269,52 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>ἄ</mo>+        <mi>ἄ</mi>       </mtd>       <mtd>-        <mo>ἔ</mo>+        <mi>ἔ</mi>       </mtd>       <mtd>-        <mo>ἤ</mo>+        <mi>ἤ</mi>       </mtd>       <mtd>-        <mo>ἴ</mo>+        <mi>ἴ</mi>       </mtd>       <mtd>-        <mo>ὄ</mo>+        <mi>ὄ</mi>       </mtd>       <mtd>-        <mo>ὔ</mo>+        <mi>ὔ</mi>       </mtd>       <mtd>-        <mo>ὤ</mo>+        <mi>ὤ</mi>       </mtd>       <mtd>-        <mo>ὴ</mo>+        <mi>ὴ</mi>       </mtd>       <mtd>-        <mo>ᾄ</mo>+        <mi>ᾄ</mi>       </mtd>       <mtd>-        <mo>ᾔ</mo>+        <mi>ᾔ</mi>       </mtd>       <mtd>-        <mo>ᾤ</mo>+        <mi>ᾤ</mi>       </mtd>       <mtd>-        <mo>ᾴ</mo>+        <mi>ᾴ</mi>       </mtd>       <mtd>-        <mo>ῄ</mo>+        <mi>ῄ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ῤ</mo>+        <mi>ῤ</mi>       </mtd>       <mtd>-        <mo>ῴ</mo>+        <mi>ῴ</mi>       </mtd>     </mtr>     <mtr>@@ -322,52 +322,52 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>ἅ</mo>+        <mi>ἅ</mi>       </mtd>       <mtd>-        <mo>ἕ</mo>+        <mi>ἕ</mi>       </mtd>       <mtd>-        <mo>ἥ</mo>+        <mi>ἥ</mi>       </mtd>       <mtd>-        <mo>ἵ</mo>+        <mi>ἵ</mi>       </mtd>       <mtd>-        <mo>ὅ</mo>+        <mi>ὅ</mi>       </mtd>       <mtd>-        <mo>ὕ</mo>+        <mi>ὕ</mi>       </mtd>       <mtd>-        <mo>ὥ</mo>+        <mi>ὥ</mi>       </mtd>       <mtd>-        <mo>ή</mo>+        <mi>ή</mi>       </mtd>       <mtd>-        <mo>ᾅ</mo>+        <mi>ᾅ</mi>       </mtd>       <mtd>-        <mo>ᾕ</mo>+        <mi>ᾕ</mi>       </mtd>       <mtd>-        <mo>ᾥ</mo>+        <mi>ᾥ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ῥ</mo>+        <mi>ῥ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -375,52 +375,52 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>ἆ</mo>+        <mi>ἆ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ἦ</mo>+        <mi>ἦ</mi>       </mtd>       <mtd>-        <mo>ἶ</mo>+        <mi>ἶ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ὖ</mo>+        <mi>ὖ</mi>       </mtd>       <mtd>-        <mo>ὦ</mo>+        <mi>ὦ</mi>       </mtd>       <mtd>-        <mo>ὶ</mo>+        <mi>ὶ</mi>       </mtd>       <mtd>-        <mo>ᾆ</mo>+        <mi>ᾆ</mi>       </mtd>       <mtd>-        <mo>ᾖ</mo>+        <mi>ᾖ</mi>       </mtd>       <mtd>-        <mo>ᾦ</mo>+        <mi>ᾦ</mi>       </mtd>       <mtd>-        <mo>ᾶ</mo>+        <mi>ᾶ</mi>       </mtd>       <mtd>-        <mo>ῆ</mo>+        <mi>ῆ</mi>       </mtd>       <mtd>-        <mo>ῖ</mo>+        <mi>ῖ</mi>       </mtd>       <mtd>-        <mo>ῦ</mo>+        <mi>ῦ</mi>       </mtd>       <mtd>-        <mo>ῶ</mo>+        <mi>ῶ</mi>       </mtd>     </mtr>     <mtr>@@ -428,52 +428,52 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ἇ</mo>+        <mi>ἇ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ἧ</mo>+        <mi>ἧ</mi>       </mtd>       <mtd>-        <mo>ἷ</mo>+        <mi>ἷ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ὗ</mo>+        <mi>ὗ</mi>       </mtd>       <mtd>-        <mo>ὧ</mo>+        <mi>ὧ</mi>       </mtd>       <mtd>-        <mo>ί</mo>+        <mi>ί</mi>       </mtd>       <mtd>-        <mo>ᾇ</mo>+        <mi>ᾇ</mi>       </mtd>       <mtd>-        <mo>ᾗ</mo>+        <mi>ᾗ</mi>       </mtd>       <mtd>-        <mo>ᾧ</mo>+        <mi>ᾧ</mi>       </mtd>       <mtd>-        <mo>ᾷ</mo>+        <mi>ᾷ</mi>       </mtd>       <mtd>-        <mo>ῇ</mo>+        <mi>ῇ</mi>       </mtd>       <mtd>-        <mo>ῗ</mo>+        <mi>ῗ</mi>       </mtd>       <mtd>-        <mo>ῧ</mo>+        <mi>ῧ</mi>       </mtd>       <mtd>-        <mo>ῷ</mo>+        <mi>ῷ</mi>       </mtd>     </mtr>     <mtr>@@ -481,52 +481,52 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>Ἀ</mo>+        <mi>Ἀ</mi>       </mtd>       <mtd>-        <mo>Ἐ</mo>+        <mi>Ἐ</mi>       </mtd>       <mtd>-        <mo>Ἠ</mo>+        <mi>Ἠ</mi>       </mtd>       <mtd>-        <mo>Ἰ</mo>+        <mi>Ἰ</mi>       </mtd>       <mtd>-        <mo>Ὀ</mo>+        <mi>Ὀ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ὠ</mo>+        <mi>Ὠ</mi>       </mtd>       <mtd>-        <mo>ὸ</mo>+        <mi>ὸ</mi>       </mtd>       <mtd>-        <mo>ᾈ</mo>+        <mi>ᾈ</mi>       </mtd>       <mtd>-        <mo>ᾘ</mo>+        <mi>ᾘ</mi>       </mtd>       <mtd>-        <mo>ᾨ</mo>+        <mi>ᾨ</mi>       </mtd>       <mtd>-        <mo>Ᾰ</mo>+        <mi>Ᾰ</mi>       </mtd>       <mtd>-        <mo>Ὲ</mo>+        <mi>Ὲ</mi>       </mtd>       <mtd>-        <mo>Ῐ</mo>+        <mi>Ῐ</mi>       </mtd>       <mtd>-        <mo>Ῠ</mo>+        <mi>Ῠ</mi>       </mtd>       <mtd>-        <mo>Ὸ</mo>+        <mi>Ὸ</mi>       </mtd>     </mtr>     <mtr>@@ -534,52 +534,52 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>Ἁ</mo>+        <mi>Ἁ</mi>       </mtd>       <mtd>-        <mo>Ἑ</mo>+        <mi>Ἑ</mi>       </mtd>       <mtd>-        <mo>Ἡ</mo>+        <mi>Ἡ</mi>       </mtd>       <mtd>-        <mo>Ἱ</mo>+        <mi>Ἱ</mi>       </mtd>       <mtd>-        <mo>Ὁ</mo>+        <mi>Ὁ</mi>       </mtd>       <mtd>-        <mo>Ὑ</mo>+        <mi>Ὑ</mi>       </mtd>       <mtd>-        <mo>Ὡ</mo>+        <mi>Ὡ</mi>       </mtd>       <mtd>-        <mo>ό</mo>+        <mi>ό</mi>       </mtd>       <mtd>-        <mo>ᾉ</mo>+        <mi>ᾉ</mi>       </mtd>       <mtd>-        <mo>ᾙ</mo>+        <mi>ᾙ</mi>       </mtd>       <mtd>-        <mo>ᾩ</mo>+        <mi>ᾩ</mi>       </mtd>       <mtd>-        <mo>Ᾱ</mo>+        <mi>Ᾱ</mi>       </mtd>       <mtd>-        <mo>Έ</mo>+        <mi>Έ</mi>       </mtd>       <mtd>-        <mo>Ῑ</mo>+        <mi>Ῑ</mi>       </mtd>       <mtd>-        <mo>Ῡ</mo>+        <mi>Ῡ</mi>       </mtd>       <mtd>-        <mo>Ό</mo>+        <mi>Ό</mi>       </mtd>     </mtr>     <mtr>@@ -587,52 +587,52 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>Ἂ</mo>+        <mi>Ἂ</mi>       </mtd>       <mtd>-        <mo>Ἒ</mo>+        <mi>Ἒ</mi>       </mtd>       <mtd>-        <mo>Ἢ</mo>+        <mi>Ἢ</mi>       </mtd>       <mtd>-        <mo>Ἲ</mo>+        <mi>Ἲ</mi>       </mtd>       <mtd>-        <mo>Ὂ</mo>+        <mi>Ὂ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ὢ</mo>+        <mi>Ὢ</mi>       </mtd>       <mtd>-        <mo>ὺ</mo>+        <mi>ὺ</mi>       </mtd>       <mtd>-        <mo>ᾊ</mo>+        <mi>ᾊ</mi>       </mtd>       <mtd>-        <mo>ᾚ</mo>+        <mi>ᾚ</mi>       </mtd>       <mtd>-        <mo>ᾪ</mo>+        <mi>ᾪ</mi>       </mtd>       <mtd>-        <mo>Ὰ</mo>+        <mi>Ὰ</mi>       </mtd>       <mtd>-        <mo>Ὴ</mo>+        <mi>Ὴ</mi>       </mtd>       <mtd>-        <mo>Ὶ</mo>+        <mi>Ὶ</mi>       </mtd>       <mtd>-        <mo>Ὺ</mo>+        <mi>Ὺ</mi>       </mtd>       <mtd>-        <mo>Ὼ</mo>+        <mi>Ὼ</mi>       </mtd>     </mtr>     <mtr>@@ -640,52 +640,52 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>Ἃ</mo>+        <mi>Ἃ</mi>       </mtd>       <mtd>-        <mo>Ἓ</mo>+        <mi>Ἓ</mi>       </mtd>       <mtd>-        <mo>Ἣ</mo>+        <mi>Ἣ</mi>       </mtd>       <mtd>-        <mo>Ἳ</mo>+        <mi>Ἳ</mi>       </mtd>       <mtd>-        <mo>Ὃ</mo>+        <mi>Ὃ</mi>       </mtd>       <mtd>-        <mo>Ὓ</mo>+        <mi>Ὓ</mi>       </mtd>       <mtd>-        <mo>Ὣ</mo>+        <mi>Ὣ</mi>       </mtd>       <mtd>-        <mo>ύ</mo>+        <mi>ύ</mi>       </mtd>       <mtd>-        <mo>ᾋ</mo>+        <mi>ᾋ</mi>       </mtd>       <mtd>-        <mo>ᾛ</mo>+        <mi>ᾛ</mi>       </mtd>       <mtd>-        <mo>ᾫ</mo>+        <mi>ᾫ</mi>       </mtd>       <mtd>-        <mo>Ά</mo>+        <mi>Ά</mi>       </mtd>       <mtd>-        <mo>Ή</mo>+        <mi>Ή</mi>       </mtd>       <mtd>-        <mo>Ί</mo>+        <mi>Ί</mi>       </mtd>       <mtd>-        <mo>Ύ</mo>+        <mi>Ύ</mi>       </mtd>       <mtd>-        <mo>Ώ</mo>+        <mi>Ώ</mi>       </mtd>     </mtr>     <mtr>@@ -693,52 +693,52 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>Ἄ</mo>+        <mi>Ἄ</mi>       </mtd>       <mtd>-        <mo>Ἔ</mo>+        <mi>Ἔ</mi>       </mtd>       <mtd>-        <mo>Ἤ</mo>+        <mi>Ἤ</mi>       </mtd>       <mtd>-        <mo>Ἴ</mo>+        <mi>Ἴ</mi>       </mtd>       <mtd>-        <mo>Ὄ</mo>+        <mi>Ὄ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ὤ</mo>+        <mi>Ὤ</mi>       </mtd>       <mtd>-        <mo>ὼ</mo>+        <mi>ὼ</mi>       </mtd>       <mtd>-        <mo>ᾌ</mo>+        <mi>ᾌ</mi>       </mtd>       <mtd>-        <mo>ᾜ</mo>+        <mi>ᾜ</mi>       </mtd>       <mtd>-        <mo>ᾬ</mo>+        <mi>ᾬ</mi>       </mtd>       <mtd>-        <mo>ᾼ</mo>+        <mi>ᾼ</mi>       </mtd>       <mtd>-        <mo>ῌ</mo>+        <mi>ῌ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ῥ</mo>+        <mi>Ῥ</mi>       </mtd>       <mtd>-        <mo>ῼ</mo>+        <mi>ῼ</mi>       </mtd>     </mtr>     <mtr>@@ -746,52 +746,52 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>Ἅ</mo>+        <mi>Ἅ</mi>       </mtd>       <mtd>-        <mo>Ἕ</mo>+        <mi>Ἕ</mi>       </mtd>       <mtd>-        <mo>Ἥ</mo>+        <mi>Ἥ</mi>       </mtd>       <mtd>-        <mo>Ἵ</mo>+        <mi>Ἵ</mi>       </mtd>       <mtd>-        <mo>Ὅ</mo>+        <mi>Ὅ</mi>       </mtd>       <mtd>-        <mo>Ὕ</mo>+        <mi>Ὕ</mi>       </mtd>       <mtd>-        <mo>Ὥ</mo>+        <mi>Ὥ</mi>       </mtd>       <mtd>-        <mo>ώ</mo>+        <mi>ώ</mi>       </mtd>       <mtd>-        <mo>ᾍ</mo>+        <mi>ᾍ</mi>       </mtd>       <mtd>-        <mo>ᾝ</mo>+        <mi>ᾝ</mi>       </mtd>       <mtd>-        <mo>ᾭ</mo>+        <mi>ᾭ</mi>       </mtd>       <mtd>-        <mo>᾽</mo>+        <mi>᾽</mi>       </mtd>       <mtd>-        <mo>῍</mo>+        <mi>῍</mi>       </mtd>       <mtd>-        <mo>῝</mo>+        <mi>῝</mi>       </mtd>       <mtd>-        <mo>῭</mo>+        <mi>῭</mi>       </mtd>       <mtd>-        <mo>´</mo>+        <mi>´</mi>       </mtd>     </mtr>     <mtr>@@ -799,52 +799,52 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>Ἆ</mo>+        <mi>Ἆ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ἦ</mo>+        <mi>Ἦ</mi>       </mtd>       <mtd>-        <mo>Ἶ</mo>+        <mi>Ἶ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ὦ</mo>+        <mi>Ὦ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ᾎ</mo>+        <mi>ᾎ</mi>       </mtd>       <mtd>-        <mo>ᾞ</mo>+        <mi>ᾞ</mi>       </mtd>       <mtd>-        <mo>ᾮ</mo>+        <mi>ᾮ</mi>       </mtd>       <mtd>-        <mo>ι</mo>+        <mi>ι</mi>       </mtd>       <mtd>-        <mo>῎</mo>+        <mi>῎</mi>       </mtd>       <mtd>-        <mo>῞</mo>+        <mi>῞</mi>       </mtd>       <mtd>-        <mo>΅</mo>+        <mi>΅</mi>       </mtd>       <mtd>-        <mo>῾</mo>+        <mi>῾</mi>       </mtd>     </mtr>     <mtr>@@ -852,52 +852,52 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>Ἇ</mo>+        <mi>Ἇ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ἧ</mo>+        <mi>Ἧ</mi>       </mtd>       <mtd>-        <mo>Ἷ</mo>+        <mi>Ἷ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>Ὗ</mo>+        <mi>Ὗ</mi>       </mtd>       <mtd>-        <mo>Ὧ</mo>+        <mi>Ὧ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ᾏ</mo>+        <mi>ᾏ</mi>       </mtd>       <mtd>-        <mo>ᾟ</mo>+        <mi>ᾟ</mi>       </mtd>       <mtd>-        <mo>ᾯ</mo>+        <mi>ᾯ</mi>       </mtd>       <mtd>-        <mo>᾿</mo>+        <mi>᾿</mi>       </mtd>       <mtd>-        <mo>῏</mo>+        <mi>῏</mi>       </mtd>       <mtd>-        <mo>῟</mo>+        <mi>῟</mi>       </mtd>       <mtd>-        <mo>`</mo>+        <mi>`</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02000_General_Punctuation.mml view
@@ -30,16 +30,16 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>‐</mo>+        <mi>‐</mi>       </mtd>       <mtd>         <mo>†</mo>       </mtd>       <mtd>-        <mo>‰</mo>+        <mi>‰</mi>       </mtd>       <mtd>         <mo>⁀</mo>@@ -48,7 +48,7 @@         <mo>⁐</mo>       </mtd>       <mtd>-        <mo>&#8288;</mo>+        <mi>&#8288;</mi>       </mtd>     </mtr>     <mtr>@@ -56,25 +56,25 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>‑</mo>+        <mi>‑</mi>       </mtd>       <mtd>         <mo>‡</mo>       </mtd>       <mtd>-        <mo>‱</mo>+        <mi>‱</mi>       </mtd>       <mtd>-        <mo>⁁</mo>+        <mi>⁁</mi>       </mtd>       <mtd>-        <mo>⁑</mo>+        <mi>⁑</mi>       </mtd>       <mtd>-        <mo>&#8289;</mo>+        <mi>&#8289;</mi>       </mtd>     </mtr>     <mtr>@@ -82,25 +82,25 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>‒</mo>+        <mi>‒</mi>       </mtd>       <mtd>         <mo>•</mo>       </mtd>       <mtd>-        <mo>′</mo>+        <mi>′</mi>       </mtd>       <mtd>-        <mo>⁂</mo>+        <mi>⁂</mi>       </mtd>       <mtd>-        <mo>⁒</mo>+        <mi>⁒</mi>       </mtd>       <mtd>-        <mo>&#8290;</mo>+        <mi>&#8290;</mi>       </mtd>     </mtr>     <mtr>@@ -108,25 +108,25 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>–</mo>+        <mi>–</mi>       </mtd>       <mtd>-        <mo>‣</mo>+        <mi>‣</mi>       </mtd>       <mtd>         <mo accent="true">″</mo>       </mtd>       <mtd>-        <mo>⁃</mo>+        <mi>⁃</mi>       </mtd>       <mtd>-        <mo>⁓</mo>+        <mi>⁓</mi>       </mtd>       <mtd>-        <mo>&#8291;</mo>+        <mi>&#8291;</mi>       </mtd>     </mtr>     <mtr>@@ -134,13 +134,13 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>—</mo>+        <mi>—</mi>       </mtd>       <mtd>-        <mo>․</mo>+        <mi>․</mi>       </mtd>       <mtd>         <mo accent="true">‴</mo>@@ -149,10 +149,10 @@         <mo>⁄</mo>       </mtd>       <mtd>-        <mo>⁔</mo>+        <mi>⁔</mi>       </mtd>       <mtd>-        <mo>&#8292;</mo>+        <mi>&#8292;</mi>       </mtd>     </mtr>     <mtr>@@ -160,25 +160,25 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>―</mo>+        <mi>―</mi>       </mtd>       <mtd>-        <mo>‥</mo>+        <mi>‥</mi>       </mtd>       <mtd>         <mo accent="true">‵</mo>       </mtd>       <mtd>-        <mo>⁅</mo>+        <mi>⁅</mi>       </mtd>       <mtd>-        <mo>⁕</mo>+        <mi>⁕</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -186,25 +186,25 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">‖</mo>       </mtd>       <mtd>-        <mo>…</mo>+        <mi>…</mi>       </mtd>       <mtd>         <mo accent="true">‶</mo>       </mtd>       <mtd>-        <mo>⁆</mo>+        <mi>⁆</mi>       </mtd>       <mtd>-        <mo>⁖</mo>+        <mi>⁖</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -212,25 +212,25 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>‗</mo>+        <mi>‗</mi>       </mtd>       <mtd>-        <mo>‧</mo>+        <mi>‧</mi>       </mtd>       <mtd>         <mo accent="true">‷</mo>       </mtd>       <mtd>-        <mo>⁇</mo>+        <mi>⁇</mi>       </mtd>       <mtd>         <mo accent="true">⁗</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -238,25 +238,25 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">‘</mo>       </mtd>       <mtd>-        <mo>&#8232;</mo>+        <mi>&#8232;</mi>       </mtd>       <mtd>-        <mo>‸</mo>+        <mi>‸</mi>       </mtd>       <mtd>-        <mo>⁈</mo>+        <mi>⁈</mi>       </mtd>       <mtd>-        <mo>⁘</mo>+        <mi>⁘</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -264,25 +264,25 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">’</mo>       </mtd>       <mtd>-        <mo>&#8233;</mo>+        <mi>&#8233;</mi>       </mtd>       <mtd>-        <mo>‹</mo>+        <mi>‹</mi>       </mtd>       <mtd>-        <mo>⁉</mo>+        <mi>⁉</mi>       </mtd>       <mtd>-        <mo>⁙</mo>+        <mi>⁙</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -290,25 +290,25 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>         <mo accent="true">‚</mo>       </mtd>       <mtd>-        <mo>&#8234;</mo>+        <mi>&#8234;</mi>       </mtd>       <mtd>-        <mo>›</mo>+        <mi>›</mi>       </mtd>       <mtd>-        <mo>⁊</mo>+        <mi>⁊</mi>       </mtd>       <mtd>-        <mo>⁚</mo>+        <mi>⁚</mi>       </mtd>       <mtd>-        <mo>&#8298;</mo>+        <mi>&#8298;</mi>       </mtd>     </mtr>     <mtr>@@ -316,25 +316,25 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>&#8203;</mo>+        <mi>&#8203;</mi>       </mtd>       <mtd>         <mo accent="true">‛</mo>       </mtd>       <mtd>-        <mo>&#8235;</mo>+        <mi>&#8235;</mi>       </mtd>       <mtd>-        <mo>※</mo>+        <mi>※</mi>       </mtd>       <mtd>-        <mo>⁋</mo>+        <mi>⁋</mi>       </mtd>       <mtd>-        <mo>⁛</mo>+        <mi>⁛</mi>       </mtd>       <mtd>-        <mo>&#8299;</mo>+        <mi>&#8299;</mi>       </mtd>     </mtr>     <mtr>@@ -342,25 +342,25 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>&#8204;</mo>+        <mi>&#8204;</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">“</mo>       </mtd>       <mtd>-        <mo>&#8236;</mo>+        <mi>&#8236;</mi>       </mtd>       <mtd>-        <mo>‼</mo>+        <mi>‼</mi>       </mtd>       <mtd>-        <mo>⁌</mo>+        <mi>⁌</mi>       </mtd>       <mtd>-        <mo>⁜</mo>+        <mi>⁜</mi>       </mtd>       <mtd>-        <mo>&#8300;</mo>+        <mi>&#8300;</mi>       </mtd>     </mtr>     <mtr>@@ -368,25 +368,25 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>&#8205;</mo>+        <mi>&#8205;</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">”</mo>       </mtd>       <mtd>-        <mo>&#8237;</mo>+        <mi>&#8237;</mi>       </mtd>       <mtd>-        <mo>‽</mo>+        <mi>‽</mi>       </mtd>       <mtd>-        <mo>⁍</mo>+        <mi>⁍</mi>       </mtd>       <mtd>-        <mo>⁝</mo>+        <mi>⁝</mi>       </mtd>       <mtd>-        <mo>&#8301;</mo>+        <mi>&#8301;</mi>       </mtd>     </mtr>     <mtr>@@ -394,13 +394,13 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>&#8206;</mo>+        <mi>&#8206;</mi>       </mtd>       <mtd>         <mo accent="true">„</mo>       </mtd>       <mtd>-        <mo>&#8238;</mo>+        <mi>&#8238;</mi>       </mtd>       <mtd>         <mo accent="true">‾</mo>@@ -409,10 +409,10 @@         <mo>⁎</mo>       </mtd>       <mtd>-        <mo>⁞</mo>+        <mi>⁞</mi>       </mtd>       <mtd>-        <mo>&#8302;</mo>+        <mi>&#8302;</mi>       </mtd>     </mtr>     <mtr>@@ -420,25 +420,25 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>&#8207;</mo>+        <mi>&#8207;</mi>       </mtd>       <mtd>         <mo accent="true">‟</mo>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>‿</mo>+        <mi>‿</mi>       </mtd>       <mtd>-        <mo>⁏</mo>+        <mi>⁏</mi>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>       <mtd>-        <mo>&#8303;</mo>+        <mi>&#8303;</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02070_Superscripts_and_Subscripts.mml view
@@ -18,13 +18,13 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>⁰</mo>+        <mi>⁰</mi>       </mtd>       <mtd>-        <mo>₀</mo>+        <mi>₀</mi>       </mtd>       <mtd>-        <mo>ₐ</mo>+        <mi>ₐ</mi>       </mtd>     </mtr>     <mtr>@@ -32,13 +32,13 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ⁱ</mo>+        <mi>ⁱ</mi>       </mtd>       <mtd>-        <mo>₁</mo>+        <mi>₁</mi>       </mtd>       <mtd>-        <mo>ₑ</mo>+        <mi>ₑ</mi>       </mtd>     </mtr>     <mtr>@@ -46,13 +46,13 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>₂</mo>+        <mi>₂</mi>       </mtd>       <mtd>-        <mo>ₒ</mo>+        <mi>ₒ</mi>       </mtd>     </mtr>     <mtr>@@ -60,13 +60,13 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>₃</mo>+        <mi>₃</mi>       </mtd>       <mtd>-        <mo>ₓ</mo>+        <mi>ₓ</mi>       </mtd>     </mtr>     <mtr>@@ -74,13 +74,13 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>⁴</mo>+        <mi>⁴</mi>       </mtd>       <mtd>-        <mo>₄</mo>+        <mi>₄</mi>       </mtd>       <mtd>-        <mo>ₔ</mo>+        <mi>ₔ</mi>       </mtd>     </mtr>     <mtr>@@ -88,13 +88,13 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>⁵</mo>+        <mi>⁵</mi>       </mtd>       <mtd>-        <mo>₅</mo>+        <mi>₅</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -102,13 +102,13 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>⁶</mo>+        <mi>⁶</mi>       </mtd>       <mtd>-        <mo>₆</mo>+        <mi>₆</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -116,13 +116,13 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>⁷</mo>+        <mi>⁷</mi>       </mtd>       <mtd>-        <mo>₇</mo>+        <mi>₇</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -130,13 +130,13 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>⁸</mo>+        <mi>⁸</mi>       </mtd>       <mtd>-        <mo>₈</mo>+        <mi>₈</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -144,13 +144,13 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>⁹</mo>+        <mi>⁹</mi>       </mtd>       <mtd>-        <mo>₉</mo>+        <mi>₉</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -158,13 +158,13 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>⁺</mo>+        <mi>⁺</mi>       </mtd>       <mtd>-        <mo>₊</mo>+        <mi>₊</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -172,13 +172,13 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>⁻</mo>+        <mi>⁻</mi>       </mtd>       <mtd>-        <mo>₋</mo>+        <mi>₋</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -186,13 +186,13 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>⁼</mo>+        <mi>⁼</mi>       </mtd>       <mtd>-        <mo>₌</mo>+        <mi>₌</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -206,7 +206,7 @@         <mo stretchy="false" form="prefix">₍</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -220,7 +220,7 @@         <mo stretchy="false" form="postfix">₎</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -228,13 +228,13 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>ⁿ</mo>+        <mi>ⁿ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/020A0_Currency_Symbols.mml view
@@ -18,13 +18,13 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>₠</mo>+        <mi>₠</mi>       </mtd>       <mtd>-        <mo>₰</mo>+        <mi>₰</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -32,13 +32,13 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>₡</mo>+        <mi>₡</mi>       </mtd>       <mtd>-        <mo>₱</mo>+        <mi>₱</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -46,13 +46,13 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>₢</mo>+        <mi>₢</mi>       </mtd>       <mtd>-        <mo>₲</mo>+        <mi>₲</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -60,13 +60,13 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>₣</mo>+        <mi>₣</mi>       </mtd>       <mtd>-        <mo>₳</mo>+        <mi>₳</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -74,13 +74,13 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>₤</mo>+        <mi>₤</mi>       </mtd>       <mtd>-        <mo>₴</mo>+        <mi>₴</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -88,13 +88,13 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>₥</mo>+        <mi>₥</mi>       </mtd>       <mtd>-        <mo>₵</mo>+        <mi>₵</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -102,13 +102,13 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>₦</mo>+        <mi>₦</mi>       </mtd>       <mtd>-        <mo>₶</mo>+        <mi>₶</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -116,13 +116,13 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>₧</mo>+        <mi>₧</mi>       </mtd>       <mtd>-        <mo>₷</mo>+        <mi>₷</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -130,13 +130,13 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>₨</mo>+        <mi>₨</mi>       </mtd>       <mtd>-        <mo>₸</mo>+        <mi>₸</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -144,13 +144,13 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>₩</mo>+        <mi>₩</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -158,13 +158,13 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>₪</mo>+        <mi>₪</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -172,13 +172,13 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>₫</mo>+        <mi>₫</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -186,13 +186,13 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>€</mo>+        <mi>€</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -200,13 +200,13 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>₭</mo>+        <mi>₭</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -214,13 +214,13 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>₮</mo>+        <mi>₮</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -228,13 +228,13 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>₯</mo>+        <mi>₯</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/020D0_Combining_Diacritical_Marks_for_Symbols.mml view
@@ -21,7 +21,7 @@         <mo accent="true">⃐</mo>       </mtd>       <mtd>-        <mo>⃠</mo>+        <mi>⃠</mi>       </mtd>       <mtd>         <mo accent="true">⃰</mo>@@ -38,7 +38,7 @@         <mo accent="true">⃡</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -49,10 +49,10 @@         <mo accent="true">⃒</mo>       </mtd>       <mtd>-        <mo>⃢</mo>+        <mi>⃢</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -63,10 +63,10 @@         <mo accent="true">⃓</mo>       </mtd>       <mtd>-        <mo>⃣</mo>+        <mi>⃣</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -80,7 +80,7 @@         <mo accent="true">⃤</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -88,13 +88,13 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>⃕</mo>+        <mi>⃕</mi>       </mtd>       <mtd>         <mo accent="true">⃥</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -108,7 +108,7 @@         <mo accent="true">⃦</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -122,7 +122,7 @@         <mo accent="true">⃧</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -136,7 +136,7 @@         <mo accent="true">⃨</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -150,7 +150,7 @@         <mo accent="true">⃩</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -164,7 +164,7 @@         <mo accent="true">⃪</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -178,7 +178,7 @@         <mo accent="true">⃫</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -192,7 +192,7 @@         <mo accent="true">⃬</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -206,7 +206,7 @@         <mo accent="true">⃭</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -220,7 +220,7 @@         <mo accent="true">⃮</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -234,7 +234,7 @@         <mo accent="true">⃯</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02100_Letterlike_Symbols.mml view
@@ -24,13 +24,13 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>℀</mo>+        <mi>℀</mi>       </mtd>       <mtd>         <mo>ℐ</mo>       </mtd>       <mtd>-        <mo>℠</mo>+        <mi>℠</mi>       </mtd>       <mtd>         <mo>ℰ</mo>@@ -44,19 +44,19 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>℁</mo>+        <mi>℁</mi>       </mtd>       <mtd>         <mo>ℑ</mo>       </mtd>       <mtd>-        <mo>℡</mo>+        <mi>℡</mi>       </mtd>       <mtd>         <mo>ℱ</mo>       </mtd>       <mtd>-        <mo>⅁</mo>+        <mi>⅁</mi>       </mtd>     </mtr>     <mtr>@@ -70,13 +70,13 @@         <mo>ℒ</mo>       </mtd>       <mtd>-        <mo>™</mo>+        <mi>™</mi>       </mtd>       <mtd>-        <mo>Ⅎ</mo>+        <mi>Ⅎ</mi>       </mtd>       <mtd>-        <mo>⅂</mo>+        <mi>⅂</mi>       </mtd>     </mtr>     <mtr>@@ -84,19 +84,19 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>℃</mo>+        <mi>℃</mi>       </mtd>       <mtd>         <mo>ℓ</mo>       </mtd>       <mtd>-        <mo>℣</mo>+        <mi>℣</mi>       </mtd>       <mtd>         <mo>ℳ</mo>       </mtd>       <mtd>-        <mo>⅃</mo>+        <mi>⅃</mi>       </mtd>     </mtr>     <mtr>@@ -104,10 +104,10 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>℄</mo>+        <mi>℄</mi>       </mtd>       <mtd>-        <mo>℔</mo>+        <mi>℔</mi>       </mtd>       <mtd>         <mo>ℤ</mo>@@ -116,7 +116,7 @@         <mo>ℴ</mo>       </mtd>       <mtd>-        <mo>⅄</mo>+        <mi>⅄</mi>       </mtd>     </mtr>     <mtr>@@ -124,19 +124,19 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>℅</mo>+        <mi>℅</mi>       </mtd>       <mtd>         <mo>ℕ</mo>       </mtd>       <mtd>-        <mo>℥</mo>+        <mi>℥</mi>       </mtd>       <mtd>         <mo>ℵ</mo>       </mtd>       <mtd>-        <mo>ⅅ</mo>+        <mi>ⅅ</mi>       </mtd>     </mtr>     <mtr>@@ -144,10 +144,10 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>℆</mo>+        <mi>℆</mi>       </mtd>       <mtd>-        <mo>№</mo>+        <mi>№</mi>       </mtd>       <mtd>         <mo>Ω</mo>@@ -156,7 +156,7 @@         <mo>ℶ</mo>       </mtd>       <mtd>-        <mo>ⅆ</mo>+        <mi>ⅆ</mi>       </mtd>     </mtr>     <mtr>@@ -164,19 +164,19 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ℇ</mo>+        <mi>ℇ</mi>       </mtd>       <mtd>-        <mo>℗</mo>+        <mi>℗</mi>       </mtd>       <mtd>-        <mo>℧</mo>+        <mi>℧</mi>       </mtd>       <mtd>         <mo>ℷ</mo>       </mtd>       <mtd>-        <mo>ⅇ</mo>+        <mi>ⅇ</mi>       </mtd>     </mtr>     <mtr>@@ -184,7 +184,7 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>℈</mo>+        <mi>℈</mi>       </mtd>       <mtd>         <mo>℘</mo>@@ -196,7 +196,7 @@         <mo>ℸ</mo>       </mtd>       <mtd>-        <mo>ⅈ</mo>+        <mi>ⅈ</mi>       </mtd>     </mtr>     <mtr>@@ -204,7 +204,7 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>℉</mo>+        <mi>℉</mi>       </mtd>       <mtd>         <mo>ℙ</mo>@@ -213,10 +213,10 @@         <mo>℩</mo>       </mtd>       <mtd>-        <mo>ℹ</mo>+        <mi>ℹ</mi>       </mtd>       <mtd>-        <mo>ⅉ</mo>+        <mi>ⅉ</mi>       </mtd>     </mtr>     <mtr>@@ -230,13 +230,13 @@         <mo>ℚ</mo>       </mtd>       <mtd>-        <mo>K</mo>+        <mi>K</mi>       </mtd>       <mtd>-        <mo>℺</mo>+        <mi>℺</mi>       </mtd>       <mtd>-        <mo>⅊</mo>+        <mi>⅊</mi>       </mtd>     </mtr>     <mtr>@@ -253,7 +253,7 @@         <mo>Å</mo>       </mtd>       <mtd>-        <mo>℻</mo>+        <mi>℻</mi>       </mtd>       <mtd>         <mo>⅋</mo>@@ -273,10 +273,10 @@         <mo>ℬ</mo>       </mtd>       <mtd>-        <mo>ℼ</mo>+        <mi>ℼ</mi>       </mtd>       <mtd>-        <mo>⅌</mo>+        <mi>⅌</mi>       </mtd>     </mtr>     <mtr>@@ -296,7 +296,7 @@         <mo>ℽ</mo>       </mtd>       <mtd>-        <mo>⅍</mo>+        <mi>⅍</mi>       </mtd>     </mtr>     <mtr>@@ -304,19 +304,19 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>ℎ</mo>+        <mi>ℎ</mi>       </mtd>       <mtd>-        <mo>℞</mo>+        <mi>℞</mi>       </mtd>       <mtd>-        <mo>℮</mo>+        <mi>℮</mi>       </mtd>       <mtd>         <mo>ℾ</mo>       </mtd>       <mtd>-        <mo>ⅎ</mo>+        <mi>ⅎ</mi>       </mtd>     </mtr>     <mtr>@@ -327,7 +327,7 @@         <mo>ℏ</mo>       </mtd>       <mtd>-        <mo>℟</mo>+        <mi>℟</mi>       </mtd>       <mtd>         <mo>ℯ</mo>@@ -336,7 +336,7 @@         <mo>ℿ</mo>       </mtd>       <mtd>-        <mo>⅏</mo>+        <mi>⅏</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02150_Number_Forms.mml view
@@ -21,16 +21,16 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>⅐</mo>+        <mi>⅐</mi>       </mtd>       <mtd>-        <mo>Ⅰ</mo>+        <mi>Ⅰ</mi>       </mtd>       <mtd>-        <mo>ⅰ</mo>+        <mi>ⅰ</mi>       </mtd>       <mtd>-        <mo>ↀ</mo>+        <mi>ↀ</mi>       </mtd>     </mtr>     <mtr>@@ -38,16 +38,16 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>⅑</mo>+        <mi>⅑</mi>       </mtd>       <mtd>-        <mo>Ⅱ</mo>+        <mi>Ⅱ</mi>       </mtd>       <mtd>-        <mo>ⅱ</mo>+        <mi>ⅱ</mi>       </mtd>       <mtd>-        <mo>ↁ</mo>+        <mi>ↁ</mi>       </mtd>     </mtr>     <mtr>@@ -55,16 +55,16 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>⅒</mo>+        <mi>⅒</mi>       </mtd>       <mtd>-        <mo>Ⅲ</mo>+        <mi>Ⅲ</mi>       </mtd>       <mtd>-        <mo>ⅲ</mo>+        <mi>ⅲ</mi>       </mtd>       <mtd>-        <mo>ↂ</mo>+        <mi>ↂ</mi>       </mtd>     </mtr>     <mtr>@@ -72,16 +72,16 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>⅓</mo>+        <mi>⅓</mi>       </mtd>       <mtd>-        <mo>Ⅳ</mo>+        <mi>Ⅳ</mi>       </mtd>       <mtd>-        <mo>ⅳ</mo>+        <mi>ⅳ</mi>       </mtd>       <mtd>-        <mo>Ↄ</mo>+        <mi>Ↄ</mi>       </mtd>     </mtr>     <mtr>@@ -89,16 +89,16 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>⅔</mo>+        <mi>⅔</mi>       </mtd>       <mtd>-        <mo>Ⅴ</mo>+        <mi>Ⅴ</mi>       </mtd>       <mtd>-        <mo>ⅴ</mo>+        <mi>ⅴ</mi>       </mtd>       <mtd>-        <mo>ↄ</mo>+        <mi>ↄ</mi>       </mtd>     </mtr>     <mtr>@@ -106,16 +106,16 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>⅕</mo>+        <mi>⅕</mi>       </mtd>       <mtd>-        <mo>Ⅵ</mo>+        <mi>Ⅵ</mi>       </mtd>       <mtd>-        <mo>ⅵ</mo>+        <mi>ⅵ</mi>       </mtd>       <mtd>-        <mo>ↅ</mo>+        <mi>ↅ</mi>       </mtd>     </mtr>     <mtr>@@ -123,16 +123,16 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>⅖</mo>+        <mi>⅖</mi>       </mtd>       <mtd>-        <mo>Ⅶ</mo>+        <mi>Ⅶ</mi>       </mtd>       <mtd>-        <mo>ⅶ</mo>+        <mi>ⅶ</mi>       </mtd>       <mtd>-        <mo>ↆ</mo>+        <mi>ↆ</mi>       </mtd>     </mtr>     <mtr>@@ -140,16 +140,16 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>⅗</mo>+        <mi>⅗</mi>       </mtd>       <mtd>-        <mo>Ⅷ</mo>+        <mi>Ⅷ</mi>       </mtd>       <mtd>-        <mo>ⅷ</mo>+        <mi>ⅷ</mi>       </mtd>       <mtd>-        <mo>ↇ</mo>+        <mi>ↇ</mi>       </mtd>     </mtr>     <mtr>@@ -157,16 +157,16 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>⅘</mo>+        <mi>⅘</mi>       </mtd>       <mtd>-        <mo>Ⅸ</mo>+        <mi>Ⅸ</mi>       </mtd>       <mtd>-        <mo>ⅸ</mo>+        <mi>ⅸ</mi>       </mtd>       <mtd>-        <mo>ↈ</mo>+        <mi>ↈ</mi>       </mtd>     </mtr>     <mtr>@@ -174,16 +174,16 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>⅙</mo>+        <mi>⅙</mi>       </mtd>       <mtd>-        <mo>Ⅹ</mo>+        <mi>Ⅹ</mi>       </mtd>       <mtd>-        <mo>ⅹ</mo>+        <mi>ⅹ</mi>       </mtd>       <mtd>-        <mo>↉</mo>+        <mi>↉</mi>       </mtd>     </mtr>     <mtr>@@ -191,16 +191,16 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>⅚</mo>+        <mi>⅚</mi>       </mtd>       <mtd>-        <mo>Ⅺ</mo>+        <mi>Ⅺ</mi>       </mtd>       <mtd>-        <mo>ⅺ</mo>+        <mi>ⅺ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -208,16 +208,16 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>⅛</mo>+        <mi>⅛</mi>       </mtd>       <mtd>-        <mo>Ⅻ</mo>+        <mi>Ⅻ</mi>       </mtd>       <mtd>-        <mo>ⅻ</mo>+        <mi>ⅻ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -225,16 +225,16 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>⅜</mo>+        <mi>⅜</mi>       </mtd>       <mtd>-        <mo>Ⅼ</mo>+        <mi>Ⅼ</mi>       </mtd>       <mtd>-        <mo>ⅼ</mo>+        <mi>ⅼ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -242,16 +242,16 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>⅝</mo>+        <mi>⅝</mi>       </mtd>       <mtd>-        <mo>Ⅽ</mo>+        <mi>Ⅽ</mi>       </mtd>       <mtd>-        <mo>ⅽ</mo>+        <mi>ⅽ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -259,16 +259,16 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>⅞</mo>+        <mi>⅞</mi>       </mtd>       <mtd>-        <mo>Ⅾ</mo>+        <mi>Ⅾ</mi>       </mtd>       <mtd>-        <mo>ⅾ</mo>+        <mi>ⅾ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -276,16 +276,16 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>⅟</mo>+        <mi>⅟</mi>       </mtd>       <mtd>-        <mo>Ⅿ</mo>+        <mi>Ⅿ</mi>       </mtd>       <mtd>-        <mo>ⅿ</mo>+        <mi>ⅿ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02190_Arrows.mml view
@@ -71,10 +71,10 @@         <mo>⇑</mo>       </mtd>       <mtd>-        <mo>⇡</mo>+        <mi>⇡</mi>       </mtd>       <mtd>-        <mo>⇱</mo>+        <mi>⇱</mi>       </mtd>     </mtr>     <mtr>@@ -100,7 +100,7 @@         <mo accent="true">⇢</mo>       </mtd>       <mtd>-        <mo>⇲</mo>+        <mi>⇲</mi>       </mtd>     </mtr>     <mtr>@@ -123,10 +123,10 @@         <mo>⇓</mo>       </mtd>       <mtd>-        <mo>⇣</mo>+        <mi>⇣</mi>       </mtd>       <mtd>-        <mo>⇳</mo>+        <mi>⇳</mi>       </mtd>     </mtr>     <mtr>@@ -140,7 +140,7 @@         <mo accent="true">↤</mo>       </mtd>       <mtd>-        <mo>↴</mo>+        <mi>↴</mi>       </mtd>       <mtd>         <mo accent="true">⇄</mo>@@ -166,7 +166,7 @@         <mo>↥</mo>       </mtd>       <mtd>-        <mo>↵</mo>+        <mi>↵</mi>       </mtd>       <mtd>         <mo>⇅</mo>@@ -227,7 +227,7 @@         <mo>⇗</mo>       </mtd>       <mtd>-        <mo>⇧</mo>+        <mi>⇧</mi>       </mtd>       <mtd>         <mo accent="true">⇷</mo>@@ -241,10 +241,10 @@         <mo>↘</mo>       </mtd>       <mtd>-        <mo>↨</mo>+        <mi>↨</mi>       </mtd>       <mtd>-        <mo>↸</mo>+        <mi>↸</mi>       </mtd>       <mtd>         <mo>⇈</mo>@@ -279,7 +279,7 @@         <mo>⇙</mo>       </mtd>       <mtd>-        <mo>⇩</mo>+        <mi>⇩</mi>       </mtd>       <mtd>         <mo accent="true">⇹</mo>@@ -296,7 +296,7 @@         <mo accent="true">↪</mo>       </mtd>       <mtd>-        <mo>↺</mo>+        <mi>↺</mi>       </mtd>       <mtd>         <mo>⇊</mo>@@ -305,7 +305,7 @@         <mo accent="true">⇚</mo>       </mtd>       <mtd>-        <mo>⇪</mo>+        <mi>⇪</mi>       </mtd>       <mtd>         <mo accent="true">⇺</mo>@@ -322,7 +322,7 @@         <mo accent="true">↫</mo>       </mtd>       <mtd>-        <mo>↻</mo>+        <mi>↻</mi>       </mtd>       <mtd>         <mo accent="true">⇋</mo>@@ -331,7 +331,7 @@         <mo accent="true">⇛</mo>       </mtd>       <mtd>-        <mo>⇫</mo>+        <mi>⇫</mi>       </mtd>       <mtd>         <mo accent="true">⇻</mo>@@ -357,7 +357,7 @@         <mo accent="true">⇜</mo>       </mtd>       <mtd>-        <mo>⇬</mo>+        <mi>⇬</mi>       </mtd>       <mtd>         <mo accent="true">⇼</mo>@@ -383,7 +383,7 @@         <mo accent="true">⇝</mo>       </mtd>       <mtd>-        <mo>⇭</mo>+        <mi>⇭</mi>       </mtd>       <mtd>         <mo accent="true">⇽</mo>@@ -406,10 +406,10 @@         <mo accent="true">⇎</mo>       </mtd>       <mtd>-        <mo>⇞</mo>+        <mi>⇞</mi>       </mtd>       <mtd>-        <mo>⇮</mo>+        <mi>⇮</mi>       </mtd>       <mtd>         <mo accent="true">⇾</mo>@@ -432,10 +432,10 @@         <mo accent="true">⇏</mo>       </mtd>       <mtd>-        <mo>⇟</mo>+        <mi>⇟</mi>       </mtd>       <mtd>-        <mo>⇯</mo>+        <mi>⇯</mi>       </mtd>       <mtd>         <mo accent="true">⇿</mo>
tests/writers/02200_Mathematical_Operators.mml view
@@ -57,13 +57,13 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>∀</mo>+        <mi>∀</mi>       </mtd>       <mtd>         <mo>∐</mo>       </mtd>       <mtd>-        <mo>∠</mo>+        <mi>∠</mi>       </mtd>       <mtd>         <mo>∰</mo>@@ -110,13 +110,13 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>∁</mo>+        <mi>∁</mi>       </mtd>       <mtd>         <mo>∑</mo>       </mtd>       <mtd>-        <mo>∡</mo>+        <mi>∡</mi>       </mtd>       <mtd>         <mo>∱</mo>@@ -163,13 +163,13 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>∂</mo>+        <mi>∂</mi>       </mtd>       <mtd>         <mo>−</mo>       </mtd>       <mtd>-        <mo>∢</mo>+        <mi>∢</mi>       </mtd>       <mtd>         <mo>∲</mo>@@ -216,7 +216,7 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>∃</mo>+        <mi>∃</mi>       </mtd>       <mtd>         <mo>∓</mo>@@ -269,7 +269,7 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>∄</mo>+        <mi>∄</mi>       </mtd>       <mtd>         <mo>∔</mo>@@ -278,7 +278,7 @@         <mo>∤</mo>       </mtd>       <mtd>-        <mo>∴</mo>+        <mi>∴</mi>       </mtd>       <mtd>         <mo>≄</mo>@@ -299,7 +299,7 @@         <mo>⊔</mo>       </mtd>       <mtd>-        <mo>⊤</mo>+        <mi>⊤</mi>       </mtd>       <mtd>         <mo>⊴</mo>@@ -322,7 +322,7 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>∅</mo>+        <mi>∅</mi>       </mtd>       <mtd>         <mo>∕</mo>@@ -331,7 +331,7 @@         <mo>∥</mo>       </mtd>       <mtd>-        <mo>∵</mo>+        <mi>∵</mi>       </mtd>       <mtd>         <mo>≅</mo>@@ -352,7 +352,7 @@         <mo>⊕</mo>       </mtd>       <mtd>-        <mo>⊥</mo>+        <mi>⊥</mi>       </mtd>       <mtd>         <mo>⊵</mo>@@ -375,7 +375,7 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>∆</mo>+        <mi>∆</mi>       </mtd>       <mtd>         <mo>∖</mo>@@ -428,7 +428,7 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>∇</mo>+        <mi>∇</mi>       </mtd>       <mtd>         <mo>∗</mo>@@ -567,7 +567,7 @@         <mo>⊩</mo>       </mtd>       <mtd>-        <mo>⊹</mo>+        <mi>⊹</mi>       </mtd>       <mtd>         <mo>⋉</mo>@@ -799,10 +799,10 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>∎</mo>+        <mi>∎</mi>       </mtd>       <mtd>-        <mo>∞</mo>+        <mi>∞</mi>       </mtd>       <mtd>         <mo>∮</mo>@@ -832,7 +832,7 @@         <mo>⊮</mo>       </mtd>       <mtd>-        <mo>⊾</mo>+        <mi>⊾</mi>       </mtd>       <mtd>         <mo>⋎</mo>@@ -855,13 +855,13 @@         <mo>∏</mo>       </mtd>       <mtd>-        <mo>∟</mo>+        <mi>∟</mi>       </mtd>       <mtd>         <mo>∯</mo>       </mtd>       <mtd>-        <mo>∿</mo>+        <mi>∿</mi>       </mtd>       <mtd>         <mo>≏</mo>@@ -885,7 +885,7 @@         <mo>⊯</mo>       </mtd>       <mtd>-        <mo>⊿</mo>+        <mi>⊿</mi>       </mtd>       <mtd>         <mo>⋏</mo>@@ -894,7 +894,7 @@         <mo>⋟</mo>       </mtd>       <mtd>-        <mo>⋯</mo>+        <mi>⋯</mi>       </mtd>       <mtd>         <mo>⋿</mo>
tests/writers/02300_Miscellaneous_Technical.mml view
@@ -57,52 +57,52 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>⌀</mo>+        <mi>⌀</mi>       </mtd>       <mtd>-        <mo>⌐</mo>+        <mi>⌐</mi>       </mtd>       <mtd>-        <mo>⌠</mo>+        <mi>⌠</mi>       </mtd>       <mtd>-        <mo>⌰</mo>+        <mi>⌰</mi>       </mtd>       <mtd>-        <mo>⍀</mo>+        <mi>⍀</mi>       </mtd>       <mtd>-        <mo>⍐</mo>+        <mi>⍐</mi>       </mtd>       <mtd>-        <mo>⍠</mo>+        <mi>⍠</mi>       </mtd>       <mtd>-        <mo>⍰</mo>+        <mi>⍰</mi>       </mtd>       <mtd>-        <mo>⎀</mo>+        <mi>⎀</mi>       </mtd>       <mtd>-        <mo>⎐</mo>+        <mi>⎐</mi>       </mtd>       <mtd>-        <mo>⎠</mo>+        <mi>⎠</mi>       </mtd>       <mtd>-        <mo>⎰</mo>+        <mi>⎰</mi>       </mtd>       <mtd>-        <mo>⏀</mo>+        <mi>⏀</mi>       </mtd>       <mtd>-        <mo>⏐</mo>+        <mi>⏐</mi>       </mtd>       <mtd>         <mo accent="true">⏠</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -110,52 +110,52 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>⌁</mo>+        <mi>⌁</mi>       </mtd>       <mtd>-        <mo>⌑</mo>+        <mi>⌑</mi>       </mtd>       <mtd>-        <mo>⌡</mo>+        <mi>⌡</mi>       </mtd>       <mtd>-        <mo>⌱</mo>+        <mi>⌱</mi>       </mtd>       <mtd>-        <mo>⍁</mo>+        <mi>⍁</mi>       </mtd>       <mtd>-        <mo>⍑</mo>+        <mi>⍑</mi>       </mtd>       <mtd>-        <mo>⍡</mo>+        <mi>⍡</mi>       </mtd>       <mtd>-        <mo>⍱</mo>+        <mi>⍱</mi>       </mtd>       <mtd>-        <mo>⎁</mo>+        <mi>⎁</mi>       </mtd>       <mtd>-        <mo>⎑</mo>+        <mi>⎑</mi>       </mtd>       <mtd>-        <mo>⎡</mo>+        <mi>⎡</mi>       </mtd>       <mtd>-        <mo>⎱</mo>+        <mi>⎱</mi>       </mtd>       <mtd>-        <mo>⏁</mo>+        <mi>⏁</mi>       </mtd>       <mtd>-        <mo>⏑</mo>+        <mi>⏑</mi>       </mtd>       <mtd>         <mo accent="true">⏡</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -163,52 +163,52 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>⌂</mo>+        <mi>⌂</mi>       </mtd>       <mtd>-        <mo>⌒</mo>+        <mi>⌒</mi>       </mtd>       <mtd>         <mo>⌢</mo>       </mtd>       <mtd>-        <mo>⌲</mo>+        <mi>⌲</mi>       </mtd>       <mtd>-        <mo>⍂</mo>+        <mi>⍂</mi>       </mtd>       <mtd>-        <mo>⍒</mo>+        <mi>⍒</mi>       </mtd>       <mtd>-        <mo>⍢</mo>+        <mi>⍢</mi>       </mtd>       <mtd>-        <mo>⍲</mo>+        <mi>⍲</mi>       </mtd>       <mtd>-        <mo>⎂</mo>+        <mi>⎂</mi>       </mtd>       <mtd>-        <mo>⎒</mo>+        <mi>⎒</mi>       </mtd>       <mtd>-        <mo>⎢</mo>+        <mi>⎢</mi>       </mtd>       <mtd>-        <mo>⎲</mo>+        <mi>⎲</mi>       </mtd>       <mtd>-        <mo>⏂</mo>+        <mi>⏂</mi>       </mtd>       <mtd>-        <mo>⏒</mo>+        <mi>⏒</mi>       </mtd>       <mtd>-        <mo>⏢</mo>+        <mi>⏢</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -216,52 +216,52 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>⌃</mo>+        <mi>⌃</mi>       </mtd>       <mtd>-        <mo>⌓</mo>+        <mi>⌓</mi>       </mtd>       <mtd>         <mo>⌣</mo>       </mtd>       <mtd>-        <mo>⌳</mo>+        <mi>⌳</mi>       </mtd>       <mtd>-        <mo>⍃</mo>+        <mi>⍃</mi>       </mtd>       <mtd>-        <mo>⍓</mo>+        <mi>⍓</mi>       </mtd>       <mtd>-        <mo>⍣</mo>+        <mi>⍣</mi>       </mtd>       <mtd>-        <mo>⍳</mo>+        <mi>⍳</mi>       </mtd>       <mtd>-        <mo>⎃</mo>+        <mi>⎃</mi>       </mtd>       <mtd>-        <mo>⎓</mo>+        <mi>⎓</mi>       </mtd>       <mtd>-        <mo>⎣</mo>+        <mi>⎣</mi>       </mtd>       <mtd>-        <mo>⎳</mo>+        <mi>⎳</mi>       </mtd>       <mtd>-        <mo>⏃</mo>+        <mi>⏃</mi>       </mtd>       <mtd>-        <mo>⏓</mo>+        <mi>⏓</mi>       </mtd>       <mtd>-        <mo>⏣</mo>+        <mi>⏣</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -269,52 +269,52 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>⌄</mo>+        <mi>⌄</mi>       </mtd>       <mtd>-        <mo>⌔</mo>+        <mi>⌔</mi>       </mtd>       <mtd>-        <mo>⌤</mo>+        <mi>⌤</mi>       </mtd>       <mtd>-        <mo>⌴</mo>+        <mi>⌴</mi>       </mtd>       <mtd>-        <mo>⍄</mo>+        <mi>⍄</mi>       </mtd>       <mtd>-        <mo>⍔</mo>+        <mi>⍔</mi>       </mtd>       <mtd>-        <mo>⍤</mo>+        <mi>⍤</mi>       </mtd>       <mtd>-        <mo>⍴</mo>+        <mi>⍴</mi>       </mtd>       <mtd>-        <mo>⎄</mo>+        <mi>⎄</mi>       </mtd>       <mtd>-        <mo>⎔</mo>+        <mi>⎔</mi>       </mtd>       <mtd>-        <mo>⎤</mo>+        <mi>⎤</mi>       </mtd>       <mtd>         <mo accent="true">⎴</mo>       </mtd>       <mtd>-        <mo>⏄</mo>+        <mi>⏄</mi>       </mtd>       <mtd>-        <mo>⏔</mo>+        <mi>⏔</mi>       </mtd>       <mtd>-        <mo>⏤</mo>+        <mi>⏤</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -325,49 +325,49 @@         <mo>⌅</mo>       </mtd>       <mtd>-        <mo>⌕</mo>+        <mi>⌕</mi>       </mtd>       <mtd>-        <mo>⌥</mo>+        <mi>⌥</mi>       </mtd>       <mtd>-        <mo>⌵</mo>+        <mi>⌵</mi>       </mtd>       <mtd>-        <mo>⍅</mo>+        <mi>⍅</mi>       </mtd>       <mtd>-        <mo>⍕</mo>+        <mi>⍕</mi>       </mtd>       <mtd>-        <mo>⍥</mo>+        <mi>⍥</mi>       </mtd>       <mtd>-        <mo>⍵</mo>+        <mi>⍵</mi>       </mtd>       <mtd>-        <mo>⎅</mo>+        <mi>⎅</mi>       </mtd>       <mtd>-        <mo>⎕</mo>+        <mi>⎕</mi>       </mtd>       <mtd>-        <mo>⎥</mo>+        <mi>⎥</mi>       </mtd>       <mtd>         <mo accent="true">⎵</mo>       </mtd>       <mtd>-        <mo>⏅</mo>+        <mi>⏅</mi>       </mtd>       <mtd>-        <mo>⏕</mo>+        <mi>⏕</mi>       </mtd>       <mtd>-        <mo>⏥</mo>+        <mi>⏥</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -378,49 +378,49 @@         <mo>⌆</mo>       </mtd>       <mtd>-        <mo>⌖</mo>+        <mi>⌖</mi>       </mtd>       <mtd>-        <mo>⌦</mo>+        <mi>⌦</mi>       </mtd>       <mtd>-        <mo>⌶</mo>+        <mi>⌶</mi>       </mtd>       <mtd>-        <mo>⍆</mo>+        <mi>⍆</mi>       </mtd>       <mtd>-        <mo>⍖</mo>+        <mi>⍖</mi>       </mtd>       <mtd>-        <mo>⍦</mo>+        <mi>⍦</mi>       </mtd>       <mtd>-        <mo>⍶</mo>+        <mi>⍶</mi>       </mtd>       <mtd>-        <mo>⎆</mo>+        <mi>⎆</mi>       </mtd>       <mtd>-        <mo>⎖</mo>+        <mi>⎖</mi>       </mtd>       <mtd>-        <mo>⎦</mo>+        <mi>⎦</mi>       </mtd>       <mtd>-        <mo>⎶</mo>+        <mi>⎶</mi>       </mtd>       <mtd>-        <mo>⏆</mo>+        <mi>⏆</mi>       </mtd>       <mtd>-        <mo>⏖</mo>+        <mi>⏖</mi>       </mtd>       <mtd>-        <mo>⏦</mo>+        <mi>⏦</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -428,52 +428,52 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>⌇</mo>+        <mi>⌇</mi>       </mtd>       <mtd>-        <mo>⌗</mo>+        <mi>⌗</mi>       </mtd>       <mtd>-        <mo>⌧</mo>+        <mi>⌧</mi>       </mtd>       <mtd>-        <mo>⌷</mo>+        <mi>⌷</mi>       </mtd>       <mtd>-        <mo>⍇</mo>+        <mi>⍇</mi>       </mtd>       <mtd>-        <mo>⍗</mo>+        <mi>⍗</mi>       </mtd>       <mtd>-        <mo>⍧</mo>+        <mi>⍧</mi>       </mtd>       <mtd>-        <mo>⍷</mo>+        <mi>⍷</mi>       </mtd>       <mtd>-        <mo>⎇</mo>+        <mi>⎇</mi>       </mtd>       <mtd>-        <mo>⎗</mo>+        <mi>⎗</mi>       </mtd>       <mtd>-        <mo>⎧</mo>+        <mi>⎧</mi>       </mtd>       <mtd>-        <mo>⎷</mo>+        <mi>⎷</mi>       </mtd>       <mtd>-        <mo>⏇</mo>+        <mi>⏇</mi>       </mtd>       <mtd>-        <mo>⏗</mo>+        <mi>⏗</mi>       </mtd>       <mtd>-        <mo>⏧</mo>+        <mi>⏧</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -484,49 +484,49 @@         <mo stretchy="false" form="prefix">⌈</mo>       </mtd>       <mtd>-        <mo>⌘</mo>+        <mi>⌘</mi>       </mtd>       <mtd>-        <mo>⌨</mo>+        <mi>⌨</mi>       </mtd>       <mtd>-        <mo>⌸</mo>+        <mi>⌸</mi>       </mtd>       <mtd>-        <mo>⍈</mo>+        <mi>⍈</mi>       </mtd>       <mtd>-        <mo>⍘</mo>+        <mi>⍘</mi>       </mtd>       <mtd>-        <mo>⍨</mo>+        <mi>⍨</mi>       </mtd>       <mtd>-        <mo>⍸</mo>+        <mi>⍸</mi>       </mtd>       <mtd>-        <mo>⎈</mo>+        <mi>⎈</mi>       </mtd>       <mtd>-        <mo>⎘</mo>+        <mi>⎘</mi>       </mtd>       <mtd>-        <mo>⎨</mo>+        <mi>⎨</mi>       </mtd>       <mtd>-        <mo>⎸</mo>+        <mi>⎸</mi>       </mtd>       <mtd>-        <mo>⏈</mo>+        <mi>⏈</mi>       </mtd>       <mtd>-        <mo>⏘</mo>+        <mi>⏘</mi>       </mtd>       <mtd>-        <mo>⏨</mo>+        <mi>⏨</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -537,49 +537,49 @@         <mo stretchy="false" form="postfix">⌉</mo>       </mtd>       <mtd>-        <mo>⌙</mo>+        <mi>⌙</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">〈</mo>       </mtd>       <mtd>-        <mo>⌹</mo>+        <mi>⌹</mi>       </mtd>       <mtd>-        <mo>⍉</mo>+        <mi>⍉</mi>       </mtd>       <mtd>-        <mo>⍙</mo>+        <mi>⍙</mi>       </mtd>       <mtd>-        <mo>⍩</mo>+        <mi>⍩</mi>       </mtd>       <mtd>-        <mo>⍹</mo>+        <mi>⍹</mi>       </mtd>       <mtd>-        <mo>⎉</mo>+        <mi>⎉</mi>       </mtd>       <mtd>-        <mo>⎙</mo>+        <mi>⎙</mi>       </mtd>       <mtd>-        <mo>⎩</mo>+        <mi>⎩</mi>       </mtd>       <mtd>-        <mo>⎹</mo>+        <mi>⎹</mi>       </mtd>       <mtd>-        <mo>⏉</mo>+        <mi>⏉</mi>       </mtd>       <mtd>-        <mo>⏙</mo>+        <mi>⏙</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -590,49 +590,49 @@         <mo stretchy="false" form="prefix">⌊</mo>       </mtd>       <mtd>-        <mo>⌚</mo>+        <mi>⌚</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">〉</mo>       </mtd>       <mtd>-        <mo>⌺</mo>+        <mi>⌺</mi>       </mtd>       <mtd>-        <mo>⍊</mo>+        <mi>⍊</mi>       </mtd>       <mtd>-        <mo>⍚</mo>+        <mi>⍚</mi>       </mtd>       <mtd>-        <mo>⍪</mo>+        <mi>⍪</mi>       </mtd>       <mtd>-        <mo>⍺</mo>+        <mi>⍺</mi>       </mtd>       <mtd>-        <mo>⎊</mo>+        <mi>⎊</mi>       </mtd>       <mtd>-        <mo>⎚</mo>+        <mi>⎚</mi>       </mtd>       <mtd>-        <mo>⎪</mo>+        <mi>⎪</mi>       </mtd>       <mtd>-        <mo>⎺</mo>+        <mi>⎺</mi>       </mtd>       <mtd>-        <mo>⏊</mo>+        <mi>⏊</mi>       </mtd>       <mtd>-        <mo>⏚</mo>+        <mi>⏚</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -643,49 +643,49 @@         <mo stretchy="false" form="postfix">⌋</mo>       </mtd>       <mtd>-        <mo>⌛</mo>+        <mi>⌛</mi>       </mtd>       <mtd>-        <mo>⌫</mo>+        <mi>⌫</mi>       </mtd>       <mtd>-        <mo>⌻</mo>+        <mi>⌻</mi>       </mtd>       <mtd>-        <mo>⍋</mo>+        <mi>⍋</mi>       </mtd>       <mtd>-        <mo>⍛</mo>+        <mi>⍛</mi>       </mtd>       <mtd>-        <mo>⍫</mo>+        <mi>⍫</mi>       </mtd>       <mtd>-        <mo>⍻</mo>+        <mi>⍻</mi>       </mtd>       <mtd>-        <mo>⎋</mo>+        <mi>⎋</mi>       </mtd>       <mtd>-        <mo>⎛</mo>+        <mi>⎛</mi>       </mtd>       <mtd>-        <mo>⎫</mo>+        <mi>⎫</mi>       </mtd>       <mtd>-        <mo>⎻</mo>+        <mi>⎻</mi>       </mtd>       <mtd>-        <mo>⏋</mo>+        <mi>⏋</mi>       </mtd>       <mtd>-        <mo>⏛</mo>+        <mi>⏛</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -693,52 +693,52 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>⌌</mo>+        <mi>⌌</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">⌜</mo>       </mtd>       <mtd>-        <mo>⌬</mo>+        <mi>⌬</mi>       </mtd>       <mtd>-        <mo>⌼</mo>+        <mi>⌼</mi>       </mtd>       <mtd>-        <mo>⍌</mo>+        <mi>⍌</mi>       </mtd>       <mtd>-        <mo>⍜</mo>+        <mi>⍜</mi>       </mtd>       <mtd>-        <mo>⍬</mo>+        <mi>⍬</mi>       </mtd>       <mtd>-        <mo>⍼</mo>+        <mi>⍼</mi>       </mtd>       <mtd>-        <mo>⎌</mo>+        <mi>⎌</mi>       </mtd>       <mtd>-        <mo>⎜</mo>+        <mi>⎜</mi>       </mtd>       <mtd>-        <mo>⎬</mo>+        <mi>⎬</mi>       </mtd>       <mtd>-        <mo>⎼</mo>+        <mi>⎼</mi>       </mtd>       <mtd>-        <mo>⏌</mo>+        <mi>⏌</mi>       </mtd>       <mtd>         <mo accent="true">⏜</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -746,52 +746,52 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>⌍</mo>+        <mi>⌍</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">⌝</mo>       </mtd>       <mtd>-        <mo>⌭</mo>+        <mi>⌭</mi>       </mtd>       <mtd>         <mo>⌽</mo>       </mtd>       <mtd>-        <mo>⍍</mo>+        <mi>⍍</mi>       </mtd>       <mtd>-        <mo>⍝</mo>+        <mi>⍝</mi>       </mtd>       <mtd>-        <mo>⍭</mo>+        <mi>⍭</mi>       </mtd>       <mtd>-        <mo>⍽</mo>+        <mi>⍽</mi>       </mtd>       <mtd>-        <mo>⎍</mo>+        <mi>⎍</mi>       </mtd>       <mtd>-        <mo>⎝</mo>+        <mi>⎝</mi>       </mtd>       <mtd>-        <mo>⎭</mo>+        <mi>⎭</mi>       </mtd>       <mtd>-        <mo>⎽</mo>+        <mi>⎽</mi>       </mtd>       <mtd>-        <mo>⏍</mo>+        <mi>⏍</mi>       </mtd>       <mtd>         <mo accent="true">⏝</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -799,52 +799,52 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>⌎</mo>+        <mi>⌎</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">⌞</mo>       </mtd>       <mtd>-        <mo>⌮</mo>+        <mi>⌮</mi>       </mtd>       <mtd>-        <mo>⌾</mo>+        <mi>⌾</mi>       </mtd>       <mtd>-        <mo>⍎</mo>+        <mi>⍎</mi>       </mtd>       <mtd>-        <mo>⍞</mo>+        <mi>⍞</mi>       </mtd>       <mtd>-        <mo>⍮</mo>+        <mi>⍮</mi>       </mtd>       <mtd>-        <mo>⍾</mo>+        <mi>⍾</mi>       </mtd>       <mtd>-        <mo>⎎</mo>+        <mi>⎎</mi>       </mtd>       <mtd>-        <mo>⎞</mo>+        <mi>⎞</mi>       </mtd>       <mtd>-        <mo>⎮</mo>+        <mi>⎮</mi>       </mtd>       <mtd>-        <mo>⎾</mo>+        <mi>⎾</mi>       </mtd>       <mtd>-        <mo>⏎</mo>+        <mi>⏎</mi>       </mtd>       <mtd>         <mo accent="true">⏞</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -852,52 +852,52 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>⌏</mo>+        <mi>⌏</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">⌟</mo>       </mtd>       <mtd>-        <mo>⌯</mo>+        <mi>⌯</mi>       </mtd>       <mtd>         <mo>⌿</mo>       </mtd>       <mtd>-        <mo>⍏</mo>+        <mi>⍏</mi>       </mtd>       <mtd>-        <mo>⍟</mo>+        <mi>⍟</mi>       </mtd>       <mtd>-        <mo>⍯</mo>+        <mi>⍯</mi>       </mtd>       <mtd>-        <mo>⍿</mo>+        <mi>⍿</mi>       </mtd>       <mtd>-        <mo>⎏</mo>+        <mi>⎏</mi>       </mtd>       <mtd>-        <mo>⎟</mo>+        <mi>⎟</mi>       </mtd>       <mtd>-        <mo>⎯</mo>+        <mi>⎯</mi>       </mtd>       <mtd>-        <mo>⎿</mo>+        <mi>⎿</mi>       </mtd>       <mtd>-        <mo>⏏</mo>+        <mi>⏏</mi>       </mtd>       <mtd>         <mo accent="true">⏟</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02400_Control_Pictures.mml view
@@ -21,16 +21,16 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>␀</mo>+        <mi>␀</mi>       </mtd>       <mtd>-        <mo>␐</mo>+        <mi>␐</mi>       </mtd>       <mtd>-        <mo>␠</mo>+        <mi>␠</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -38,16 +38,16 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>␁</mo>+        <mi>␁</mi>       </mtd>       <mtd>-        <mo>␑</mo>+        <mi>␑</mi>       </mtd>       <mtd>-        <mo>␡</mo>+        <mi>␡</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -55,16 +55,16 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>␂</mo>+        <mi>␂</mi>       </mtd>       <mtd>-        <mo>␒</mo>+        <mi>␒</mi>       </mtd>       <mtd>-        <mo>␢</mo>+        <mi>␢</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -72,16 +72,16 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>␃</mo>+        <mi>␃</mi>       </mtd>       <mtd>-        <mo>␓</mo>+        <mi>␓</mi>       </mtd>       <mtd>-        <mo>␣</mo>+        <mi>␣</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -89,16 +89,16 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>␄</mo>+        <mi>␄</mi>       </mtd>       <mtd>-        <mo>␔</mo>+        <mi>␔</mi>       </mtd>       <mtd>-        <mo>␤</mo>+        <mi>␤</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -106,16 +106,16 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>␅</mo>+        <mi>␅</mi>       </mtd>       <mtd>-        <mo>␕</mo>+        <mi>␕</mi>       </mtd>       <mtd>-        <mo>␥</mo>+        <mi>␥</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -123,16 +123,16 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>␆</mo>+        <mi>␆</mi>       </mtd>       <mtd>-        <mo>␖</mo>+        <mi>␖</mi>       </mtd>       <mtd>-        <mo>␦</mo>+        <mi>␦</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -140,16 +140,16 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>␇</mo>+        <mi>␇</mi>       </mtd>       <mtd>-        <mo>␗</mo>+        <mi>␗</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -157,16 +157,16 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>␈</mo>+        <mi>␈</mi>       </mtd>       <mtd>-        <mo>␘</mo>+        <mi>␘</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -174,16 +174,16 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>␉</mo>+        <mi>␉</mi>       </mtd>       <mtd>-        <mo>␙</mo>+        <mi>␙</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -191,16 +191,16 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>␊</mo>+        <mi>␊</mi>       </mtd>       <mtd>-        <mo>␚</mo>+        <mi>␚</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -208,16 +208,16 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>␋</mo>+        <mi>␋</mi>       </mtd>       <mtd>-        <mo>␛</mo>+        <mi>␛</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -225,16 +225,16 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>␌</mo>+        <mi>␌</mi>       </mtd>       <mtd>-        <mo>␜</mo>+        <mi>␜</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -242,16 +242,16 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>␍</mo>+        <mi>␍</mi>       </mtd>       <mtd>-        <mo>␝</mo>+        <mi>␝</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -259,16 +259,16 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>␎</mo>+        <mi>␎</mi>       </mtd>       <mtd>-        <mo>␞</mo>+        <mi>␞</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -276,16 +276,16 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>␏</mo>+        <mi>␏</mi>       </mtd>       <mtd>-        <mo>␟</mo>+        <mi>␟</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02440_Optical_Character_Recognition.mml view
@@ -15,10 +15,10 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>⑀</mo>+        <mi>⑀</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -26,10 +26,10 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>⑁</mo>+        <mi>⑁</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -37,10 +37,10 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>⑂</mo>+        <mi>⑂</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -48,10 +48,10 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>⑃</mo>+        <mi>⑃</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -59,10 +59,10 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>⑄</mo>+        <mi>⑄</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -70,10 +70,10 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>⑅</mo>+        <mi>⑅</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -81,10 +81,10 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>⑆</mo>+        <mi>⑆</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -92,10 +92,10 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>⑇</mo>+        <mi>⑇</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -103,10 +103,10 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>⑈</mo>+        <mi>⑈</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -114,10 +114,10 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>⑉</mo>+        <mi>⑉</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -125,10 +125,10 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>⑊</mo>+        <mi>⑊</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -136,10 +136,10 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -147,10 +147,10 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -158,10 +158,10 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -169,10 +169,10 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -180,10 +180,10 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02460_Enclosed_Alphanumerics.mml view
@@ -39,34 +39,34 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>①</mo>+        <mi>①</mi>       </mtd>       <mtd>-        <mo>⑰</mo>+        <mi>⑰</mi>       </mtd>       <mtd>-        <mo>⒀</mo>+        <mi>⒀</mi>       </mtd>       <mtd>-        <mo>⒐</mo>+        <mi>⒐</mi>       </mtd>       <mtd>-        <mo>⒠</mo>+        <mi>⒠</mi>       </mtd>       <mtd>-        <mo>⒰</mo>+        <mi>⒰</mi>       </mtd>       <mtd>-        <mo>Ⓚ</mo>+        <mi>Ⓚ</mi>       </mtd>       <mtd>-        <mo>ⓐ</mo>+        <mi>ⓐ</mi>       </mtd>       <mtd>-        <mo>ⓠ</mo>+        <mi>ⓠ</mi>       </mtd>       <mtd>-        <mo>⓰</mo>+        <mi>⓰</mi>       </mtd>     </mtr>     <mtr>@@ -74,34 +74,34 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>②</mo>+        <mi>②</mi>       </mtd>       <mtd>-        <mo>⑱</mo>+        <mi>⑱</mi>       </mtd>       <mtd>-        <mo>⒁</mo>+        <mi>⒁</mi>       </mtd>       <mtd>-        <mo>⒑</mo>+        <mi>⒑</mi>       </mtd>       <mtd>-        <mo>⒡</mo>+        <mi>⒡</mi>       </mtd>       <mtd>-        <mo>⒱</mo>+        <mi>⒱</mi>       </mtd>       <mtd>-        <mo>Ⓛ</mo>+        <mi>Ⓛ</mi>       </mtd>       <mtd>-        <mo>ⓑ</mo>+        <mi>ⓑ</mi>       </mtd>       <mtd>-        <mo>ⓡ</mo>+        <mi>ⓡ</mi>       </mtd>       <mtd>-        <mo>⓱</mo>+        <mi>⓱</mi>       </mtd>     </mtr>     <mtr>@@ -109,34 +109,34 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>③</mo>+        <mi>③</mi>       </mtd>       <mtd>-        <mo>⑲</mo>+        <mi>⑲</mi>       </mtd>       <mtd>-        <mo>⒂</mo>+        <mi>⒂</mi>       </mtd>       <mtd>-        <mo>⒒</mo>+        <mi>⒒</mi>       </mtd>       <mtd>-        <mo>⒢</mo>+        <mi>⒢</mi>       </mtd>       <mtd>-        <mo>⒲</mo>+        <mi>⒲</mi>       </mtd>       <mtd>-        <mo>Ⓜ</mo>+        <mi>Ⓜ</mi>       </mtd>       <mtd>-        <mo>ⓒ</mo>+        <mi>ⓒ</mi>       </mtd>       <mtd>-        <mo>ⓢ</mo>+        <mi>ⓢ</mi>       </mtd>       <mtd>-        <mo>⓲</mo>+        <mi>⓲</mi>       </mtd>     </mtr>     <mtr>@@ -144,34 +144,34 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>④</mo>+        <mi>④</mi>       </mtd>       <mtd>-        <mo>⑳</mo>+        <mi>⑳</mi>       </mtd>       <mtd>-        <mo>⒃</mo>+        <mi>⒃</mi>       </mtd>       <mtd>-        <mo>⒓</mo>+        <mi>⒓</mi>       </mtd>       <mtd>-        <mo>⒣</mo>+        <mi>⒣</mi>       </mtd>       <mtd>-        <mo>⒳</mo>+        <mi>⒳</mi>       </mtd>       <mtd>-        <mo>Ⓝ</mo>+        <mi>Ⓝ</mi>       </mtd>       <mtd>-        <mo>ⓓ</mo>+        <mi>ⓓ</mi>       </mtd>       <mtd>-        <mo>ⓣ</mo>+        <mi>ⓣ</mi>       </mtd>       <mtd>-        <mo>⓳</mo>+        <mi>⓳</mi>       </mtd>     </mtr>     <mtr>@@ -179,34 +179,34 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>⑤</mo>+        <mi>⑤</mi>       </mtd>       <mtd>-        <mo>⑴</mo>+        <mi>⑴</mi>       </mtd>       <mtd>-        <mo>⒄</mo>+        <mi>⒄</mi>       </mtd>       <mtd>-        <mo>⒔</mo>+        <mi>⒔</mi>       </mtd>       <mtd>-        <mo>⒤</mo>+        <mi>⒤</mi>       </mtd>       <mtd>-        <mo>⒴</mo>+        <mi>⒴</mi>       </mtd>       <mtd>-        <mo>Ⓞ</mo>+        <mi>Ⓞ</mi>       </mtd>       <mtd>-        <mo>ⓔ</mo>+        <mi>ⓔ</mi>       </mtd>       <mtd>-        <mo>ⓤ</mo>+        <mi>ⓤ</mi>       </mtd>       <mtd>-        <mo>⓴</mo>+        <mi>⓴</mi>       </mtd>     </mtr>     <mtr>@@ -214,34 +214,34 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>⑥</mo>+        <mi>⑥</mi>       </mtd>       <mtd>-        <mo>⑵</mo>+        <mi>⑵</mi>       </mtd>       <mtd>-        <mo>⒅</mo>+        <mi>⒅</mi>       </mtd>       <mtd>-        <mo>⒕</mo>+        <mi>⒕</mi>       </mtd>       <mtd>-        <mo>⒥</mo>+        <mi>⒥</mi>       </mtd>       <mtd>-        <mo>⒵</mo>+        <mi>⒵</mi>       </mtd>       <mtd>-        <mo>Ⓟ</mo>+        <mi>Ⓟ</mi>       </mtd>       <mtd>-        <mo>ⓕ</mo>+        <mi>ⓕ</mi>       </mtd>       <mtd>-        <mo>ⓥ</mo>+        <mi>ⓥ</mi>       </mtd>       <mtd>-        <mo>⓵</mo>+        <mi>⓵</mi>       </mtd>     </mtr>     <mtr>@@ -249,34 +249,34 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>⑦</mo>+        <mi>⑦</mi>       </mtd>       <mtd>-        <mo>⑶</mo>+        <mi>⑶</mi>       </mtd>       <mtd>-        <mo>⒆</mo>+        <mi>⒆</mi>       </mtd>       <mtd>-        <mo>⒖</mo>+        <mi>⒖</mi>       </mtd>       <mtd>-        <mo>⒦</mo>+        <mi>⒦</mi>       </mtd>       <mtd>-        <mo>Ⓐ</mo>+        <mi>Ⓐ</mi>       </mtd>       <mtd>-        <mo>Ⓠ</mo>+        <mi>Ⓠ</mi>       </mtd>       <mtd>-        <mo>ⓖ</mo>+        <mi>ⓖ</mi>       </mtd>       <mtd>-        <mo>ⓦ</mo>+        <mi>ⓦ</mi>       </mtd>       <mtd>-        <mo>⓶</mo>+        <mi>⓶</mi>       </mtd>     </mtr>     <mtr>@@ -284,34 +284,34 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>⑧</mo>+        <mi>⑧</mi>       </mtd>       <mtd>-        <mo>⑷</mo>+        <mi>⑷</mi>       </mtd>       <mtd>-        <mo>⒇</mo>+        <mi>⒇</mi>       </mtd>       <mtd>-        <mo>⒗</mo>+        <mi>⒗</mi>       </mtd>       <mtd>-        <mo>⒧</mo>+        <mi>⒧</mi>       </mtd>       <mtd>-        <mo>Ⓑ</mo>+        <mi>Ⓑ</mi>       </mtd>       <mtd>-        <mo>Ⓡ</mo>+        <mi>Ⓡ</mi>       </mtd>       <mtd>-        <mo>ⓗ</mo>+        <mi>ⓗ</mi>       </mtd>       <mtd>-        <mo>ⓧ</mo>+        <mi>ⓧ</mi>       </mtd>       <mtd>-        <mo>⓷</mo>+        <mi>⓷</mi>       </mtd>     </mtr>     <mtr>@@ -319,34 +319,34 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>⑨</mo>+        <mi>⑨</mi>       </mtd>       <mtd>-        <mo>⑸</mo>+        <mi>⑸</mi>       </mtd>       <mtd>-        <mo>⒈</mo>+        <mi>⒈</mi>       </mtd>       <mtd>-        <mo>⒘</mo>+        <mi>⒘</mi>       </mtd>       <mtd>-        <mo>⒨</mo>+        <mi>⒨</mi>       </mtd>       <mtd>-        <mo>Ⓒ</mo>+        <mi>Ⓒ</mi>       </mtd>       <mtd>-        <mo>Ⓢ</mo>+        <mi>Ⓢ</mi>       </mtd>       <mtd>-        <mo>ⓘ</mo>+        <mi>ⓘ</mi>       </mtd>       <mtd>-        <mo>ⓨ</mo>+        <mi>ⓨ</mi>       </mtd>       <mtd>-        <mo>⓸</mo>+        <mi>⓸</mi>       </mtd>     </mtr>     <mtr>@@ -354,34 +354,34 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>⑩</mo>+        <mi>⑩</mi>       </mtd>       <mtd>-        <mo>⑹</mo>+        <mi>⑹</mi>       </mtd>       <mtd>-        <mo>⒉</mo>+        <mi>⒉</mi>       </mtd>       <mtd>-        <mo>⒙</mo>+        <mi>⒙</mi>       </mtd>       <mtd>-        <mo>⒩</mo>+        <mi>⒩</mi>       </mtd>       <mtd>-        <mo>Ⓓ</mo>+        <mi>Ⓓ</mi>       </mtd>       <mtd>-        <mo>Ⓣ</mo>+        <mi>Ⓣ</mi>       </mtd>       <mtd>-        <mo>ⓙ</mo>+        <mi>ⓙ</mi>       </mtd>       <mtd>-        <mo>ⓩ</mo>+        <mi>ⓩ</mi>       </mtd>       <mtd>-        <mo>⓹</mo>+        <mi>⓹</mi>       </mtd>     </mtr>     <mtr>@@ -389,34 +389,34 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>⑪</mo>+        <mi>⑪</mi>       </mtd>       <mtd>-        <mo>⑺</mo>+        <mi>⑺</mi>       </mtd>       <mtd>-        <mo>⒊</mo>+        <mi>⒊</mi>       </mtd>       <mtd>-        <mo>⒚</mo>+        <mi>⒚</mi>       </mtd>       <mtd>-        <mo>⒪</mo>+        <mi>⒪</mi>       </mtd>       <mtd>-        <mo>Ⓔ</mo>+        <mi>Ⓔ</mi>       </mtd>       <mtd>-        <mo>Ⓤ</mo>+        <mi>Ⓤ</mi>       </mtd>       <mtd>-        <mo>ⓚ</mo>+        <mi>ⓚ</mi>       </mtd>       <mtd>-        <mo>⓪</mo>+        <mi>⓪</mi>       </mtd>       <mtd>-        <mo>⓺</mo>+        <mi>⓺</mi>       </mtd>     </mtr>     <mtr>@@ -424,34 +424,34 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>⑫</mo>+        <mi>⑫</mi>       </mtd>       <mtd>-        <mo>⑻</mo>+        <mi>⑻</mi>       </mtd>       <mtd>-        <mo>⒋</mo>+        <mi>⒋</mi>       </mtd>       <mtd>-        <mo>⒛</mo>+        <mi>⒛</mi>       </mtd>       <mtd>-        <mo>⒫</mo>+        <mi>⒫</mi>       </mtd>       <mtd>-        <mo>Ⓕ</mo>+        <mi>Ⓕ</mi>       </mtd>       <mtd>-        <mo>Ⓥ</mo>+        <mi>Ⓥ</mi>       </mtd>       <mtd>-        <mo>ⓛ</mo>+        <mi>ⓛ</mi>       </mtd>       <mtd>-        <mo>⓫</mo>+        <mi>⓫</mi>       </mtd>       <mtd>-        <mo>⓻</mo>+        <mi>⓻</mi>       </mtd>     </mtr>     <mtr>@@ -459,34 +459,34 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>⑬</mo>+        <mi>⑬</mi>       </mtd>       <mtd>-        <mo>⑼</mo>+        <mi>⑼</mi>       </mtd>       <mtd>-        <mo>⒌</mo>+        <mi>⒌</mi>       </mtd>       <mtd>-        <mo>⒜</mo>+        <mi>⒜</mi>       </mtd>       <mtd>-        <mo>⒬</mo>+        <mi>⒬</mi>       </mtd>       <mtd>-        <mo>Ⓖ</mo>+        <mi>Ⓖ</mi>       </mtd>       <mtd>-        <mo>Ⓦ</mo>+        <mi>Ⓦ</mi>       </mtd>       <mtd>-        <mo>ⓜ</mo>+        <mi>ⓜ</mi>       </mtd>       <mtd>-        <mo>⓬</mo>+        <mi>⓬</mi>       </mtd>       <mtd>-        <mo>⓼</mo>+        <mi>⓼</mi>       </mtd>     </mtr>     <mtr>@@ -494,34 +494,34 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>⑭</mo>+        <mi>⑭</mi>       </mtd>       <mtd>-        <mo>⑽</mo>+        <mi>⑽</mi>       </mtd>       <mtd>-        <mo>⒍</mo>+        <mi>⒍</mi>       </mtd>       <mtd>-        <mo>⒝</mo>+        <mi>⒝</mi>       </mtd>       <mtd>-        <mo>⒭</mo>+        <mi>⒭</mi>       </mtd>       <mtd>-        <mo>Ⓗ</mo>+        <mi>Ⓗ</mi>       </mtd>       <mtd>-        <mo>Ⓧ</mo>+        <mi>Ⓧ</mi>       </mtd>       <mtd>-        <mo>ⓝ</mo>+        <mi>ⓝ</mi>       </mtd>       <mtd>-        <mo>⓭</mo>+        <mi>⓭</mi>       </mtd>       <mtd>-        <mo>⓽</mo>+        <mi>⓽</mi>       </mtd>     </mtr>     <mtr>@@ -529,34 +529,34 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>⑮</mo>+        <mi>⑮</mi>       </mtd>       <mtd>-        <mo>⑾</mo>+        <mi>⑾</mi>       </mtd>       <mtd>-        <mo>⒎</mo>+        <mi>⒎</mi>       </mtd>       <mtd>-        <mo>⒞</mo>+        <mi>⒞</mi>       </mtd>       <mtd>-        <mo>⒮</mo>+        <mi>⒮</mi>       </mtd>       <mtd>-        <mo>Ⓘ</mo>+        <mi>Ⓘ</mi>       </mtd>       <mtd>-        <mo>Ⓨ</mo>+        <mi>Ⓨ</mi>       </mtd>       <mtd>-        <mo>ⓞ</mo>+        <mi>ⓞ</mi>       </mtd>       <mtd>-        <mo>⓮</mo>+        <mi>⓮</mi>       </mtd>       <mtd>-        <mo>⓾</mo>+        <mi>⓾</mi>       </mtd>     </mtr>     <mtr>@@ -564,34 +564,34 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>⑯</mo>+        <mi>⑯</mi>       </mtd>       <mtd>-        <mo>⑿</mo>+        <mi>⑿</mi>       </mtd>       <mtd>-        <mo>⒏</mo>+        <mi>⒏</mi>       </mtd>       <mtd>-        <mo>⒟</mo>+        <mi>⒟</mi>       </mtd>       <mtd>-        <mo>⒯</mo>+        <mi>⒯</mi>       </mtd>       <mtd>-        <mo>Ⓙ</mo>+        <mi>Ⓙ</mi>       </mtd>       <mtd>-        <mo>Ⓩ</mo>+        <mi>Ⓩ</mi>       </mtd>       <mtd>-        <mo>ⓟ</mo>+        <mi>ⓟ</mi>       </mtd>       <mtd>-        <mo>⓯</mo>+        <mi>⓯</mi>       </mtd>       <mtd>-        <mo>⓿</mo>+        <mi>⓿</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02500_Box_Drawing.mml view
@@ -33,28 +33,28 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>─</mo>+        <mi>─</mi>       </mtd>       <mtd>-        <mo>┐</mo>+        <mi>┐</mi>       </mtd>       <mtd>-        <mo>┠</mo>+        <mi>┠</mi>       </mtd>       <mtd>-        <mo>┰</mo>+        <mi>┰</mi>       </mtd>       <mtd>-        <mo>╀</mo>+        <mi>╀</mi>       </mtd>       <mtd>-        <mo>═</mo>+        <mi>═</mi>       </mtd>       <mtd>-        <mo>╠</mo>+        <mi>╠</mi>       </mtd>       <mtd>-        <mo>╰</mo>+        <mi>╰</mi>       </mtd>     </mtr>     <mtr>@@ -62,28 +62,28 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>━</mo>+        <mi>━</mi>       </mtd>       <mtd>-        <mo>┑</mo>+        <mi>┑</mi>       </mtd>       <mtd>-        <mo>┡</mo>+        <mi>┡</mi>       </mtd>       <mtd>-        <mo>┱</mo>+        <mi>┱</mi>       </mtd>       <mtd>-        <mo>╁</mo>+        <mi>╁</mi>       </mtd>       <mtd>-        <mo>║</mo>+        <mi>║</mi>       </mtd>       <mtd>-        <mo>╡</mo>+        <mi>╡</mi>       </mtd>       <mtd>-        <mo>╱</mo>+        <mi>╱</mi>       </mtd>     </mtr>     <mtr>@@ -91,28 +91,28 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>│</mo>+        <mi>│</mi>       </mtd>       <mtd>-        <mo>┒</mo>+        <mi>┒</mi>       </mtd>       <mtd>-        <mo>┢</mo>+        <mi>┢</mi>       </mtd>       <mtd>-        <mo>┲</mo>+        <mi>┲</mi>       </mtd>       <mtd>-        <mo>╂</mo>+        <mi>╂</mi>       </mtd>       <mtd>-        <mo>╒</mo>+        <mi>╒</mi>       </mtd>       <mtd>-        <mo>╢</mo>+        <mi>╢</mi>       </mtd>       <mtd>-        <mo>╲</mo>+        <mi>╲</mi>       </mtd>     </mtr>     <mtr>@@ -120,28 +120,28 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>┃</mo>+        <mi>┃</mi>       </mtd>       <mtd>-        <mo>┓</mo>+        <mi>┓</mi>       </mtd>       <mtd>-        <mo>┣</mo>+        <mi>┣</mi>       </mtd>       <mtd>-        <mo>┳</mo>+        <mi>┳</mi>       </mtd>       <mtd>-        <mo>╃</mo>+        <mi>╃</mi>       </mtd>       <mtd>-        <mo>╓</mo>+        <mi>╓</mi>       </mtd>       <mtd>-        <mo>╣</mo>+        <mi>╣</mi>       </mtd>       <mtd>-        <mo>╳</mo>+        <mi>╳</mi>       </mtd>     </mtr>     <mtr>@@ -149,28 +149,28 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>┄</mo>+        <mi>┄</mi>       </mtd>       <mtd>-        <mo>└</mo>+        <mi>└</mi>       </mtd>       <mtd>-        <mo>┤</mo>+        <mi>┤</mi>       </mtd>       <mtd>-        <mo>┴</mo>+        <mi>┴</mi>       </mtd>       <mtd>-        <mo>╄</mo>+        <mi>╄</mi>       </mtd>       <mtd>-        <mo>╔</mo>+        <mi>╔</mi>       </mtd>       <mtd>-        <mo>╤</mo>+        <mi>╤</mi>       </mtd>       <mtd>-        <mo>╴</mo>+        <mi>╴</mi>       </mtd>     </mtr>     <mtr>@@ -178,28 +178,28 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>┅</mo>+        <mi>┅</mi>       </mtd>       <mtd>-        <mo>┕</mo>+        <mi>┕</mi>       </mtd>       <mtd>-        <mo>┥</mo>+        <mi>┥</mi>       </mtd>       <mtd>-        <mo>┵</mo>+        <mi>┵</mi>       </mtd>       <mtd>-        <mo>╅</mo>+        <mi>╅</mi>       </mtd>       <mtd>-        <mo>╕</mo>+        <mi>╕</mi>       </mtd>       <mtd>-        <mo>╥</mo>+        <mi>╥</mi>       </mtd>       <mtd>-        <mo>╵</mo>+        <mi>╵</mi>       </mtd>     </mtr>     <mtr>@@ -207,28 +207,28 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>┆</mo>+        <mi>┆</mi>       </mtd>       <mtd>-        <mo>┖</mo>+        <mi>┖</mi>       </mtd>       <mtd>-        <mo>┦</mo>+        <mi>┦</mi>       </mtd>       <mtd>-        <mo>┶</mo>+        <mi>┶</mi>       </mtd>       <mtd>-        <mo>╆</mo>+        <mi>╆</mi>       </mtd>       <mtd>-        <mo>╖</mo>+        <mi>╖</mi>       </mtd>       <mtd>-        <mo>╦</mo>+        <mi>╦</mi>       </mtd>       <mtd>-        <mo>╶</mo>+        <mi>╶</mi>       </mtd>     </mtr>     <mtr>@@ -236,28 +236,28 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>┇</mo>+        <mi>┇</mi>       </mtd>       <mtd>-        <mo>┗</mo>+        <mi>┗</mi>       </mtd>       <mtd>-        <mo>┧</mo>+        <mi>┧</mi>       </mtd>       <mtd>-        <mo>┷</mo>+        <mi>┷</mi>       </mtd>       <mtd>-        <mo>╇</mo>+        <mi>╇</mi>       </mtd>       <mtd>-        <mo>╗</mo>+        <mi>╗</mi>       </mtd>       <mtd>-        <mo>╧</mo>+        <mi>╧</mi>       </mtd>       <mtd>-        <mo>╷</mo>+        <mi>╷</mi>       </mtd>     </mtr>     <mtr>@@ -265,28 +265,28 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>┈</mo>+        <mi>┈</mi>       </mtd>       <mtd>-        <mo>┘</mo>+        <mi>┘</mi>       </mtd>       <mtd>-        <mo>┨</mo>+        <mi>┨</mi>       </mtd>       <mtd>-        <mo>┸</mo>+        <mi>┸</mi>       </mtd>       <mtd>-        <mo>╈</mo>+        <mi>╈</mi>       </mtd>       <mtd>-        <mo>╘</mo>+        <mi>╘</mi>       </mtd>       <mtd>-        <mo>╨</mo>+        <mi>╨</mi>       </mtd>       <mtd>-        <mo>╸</mo>+        <mi>╸</mi>       </mtd>     </mtr>     <mtr>@@ -294,28 +294,28 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>┉</mo>+        <mi>┉</mi>       </mtd>       <mtd>-        <mo>┙</mo>+        <mi>┙</mi>       </mtd>       <mtd>-        <mo>┩</mo>+        <mi>┩</mi>       </mtd>       <mtd>-        <mo>┹</mo>+        <mi>┹</mi>       </mtd>       <mtd>-        <mo>╉</mo>+        <mi>╉</mi>       </mtd>       <mtd>-        <mo>╙</mo>+        <mi>╙</mi>       </mtd>       <mtd>-        <mo>╩</mo>+        <mi>╩</mi>       </mtd>       <mtd>-        <mo>╹</mo>+        <mi>╹</mi>       </mtd>     </mtr>     <mtr>@@ -323,28 +323,28 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>┊</mo>+        <mi>┊</mi>       </mtd>       <mtd>-        <mo>┚</mo>+        <mi>┚</mi>       </mtd>       <mtd>-        <mo>┪</mo>+        <mi>┪</mi>       </mtd>       <mtd>-        <mo>┺</mo>+        <mi>┺</mi>       </mtd>       <mtd>-        <mo>╊</mo>+        <mi>╊</mi>       </mtd>       <mtd>-        <mo>╚</mo>+        <mi>╚</mi>       </mtd>       <mtd>-        <mo>╪</mo>+        <mi>╪</mi>       </mtd>       <mtd>-        <mo>╺</mo>+        <mi>╺</mi>       </mtd>     </mtr>     <mtr>@@ -352,28 +352,28 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>┋</mo>+        <mi>┋</mi>       </mtd>       <mtd>-        <mo>┛</mo>+        <mi>┛</mi>       </mtd>       <mtd>-        <mo>┫</mo>+        <mi>┫</mi>       </mtd>       <mtd>-        <mo>┻</mo>+        <mi>┻</mi>       </mtd>       <mtd>-        <mo>╋</mo>+        <mi>╋</mi>       </mtd>       <mtd>-        <mo>╛</mo>+        <mi>╛</mi>       </mtd>       <mtd>-        <mo>╫</mo>+        <mi>╫</mi>       </mtd>       <mtd>-        <mo>╻</mo>+        <mi>╻</mi>       </mtd>     </mtr>     <mtr>@@ -381,28 +381,28 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>┌</mo>+        <mi>┌</mi>       </mtd>       <mtd>-        <mo>├</mo>+        <mi>├</mi>       </mtd>       <mtd>-        <mo>┬</mo>+        <mi>┬</mi>       </mtd>       <mtd>-        <mo>┼</mo>+        <mi>┼</mi>       </mtd>       <mtd>-        <mo>╌</mo>+        <mi>╌</mi>       </mtd>       <mtd>-        <mo>╜</mo>+        <mi>╜</mi>       </mtd>       <mtd>-        <mo>╬</mo>+        <mi>╬</mi>       </mtd>       <mtd>-        <mo>╼</mo>+        <mi>╼</mi>       </mtd>     </mtr>     <mtr>@@ -410,28 +410,28 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>┍</mo>+        <mi>┍</mi>       </mtd>       <mtd>-        <mo>┝</mo>+        <mi>┝</mi>       </mtd>       <mtd>-        <mo>┭</mo>+        <mi>┭</mi>       </mtd>       <mtd>-        <mo>┽</mo>+        <mi>┽</mi>       </mtd>       <mtd>-        <mo>╍</mo>+        <mi>╍</mi>       </mtd>       <mtd>-        <mo>╝</mo>+        <mi>╝</mi>       </mtd>       <mtd>-        <mo>╭</mo>+        <mi>╭</mi>       </mtd>       <mtd>-        <mo>╽</mo>+        <mi>╽</mi>       </mtd>     </mtr>     <mtr>@@ -439,28 +439,28 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>┎</mo>+        <mi>┎</mi>       </mtd>       <mtd>-        <mo>┞</mo>+        <mi>┞</mi>       </mtd>       <mtd>-        <mo>┮</mo>+        <mi>┮</mi>       </mtd>       <mtd>-        <mo>┾</mo>+        <mi>┾</mi>       </mtd>       <mtd>-        <mo>╎</mo>+        <mi>╎</mi>       </mtd>       <mtd>-        <mo>╞</mo>+        <mi>╞</mi>       </mtd>       <mtd>-        <mo>╮</mo>+        <mi>╮</mi>       </mtd>       <mtd>-        <mo>╾</mo>+        <mi>╾</mi>       </mtd>     </mtr>     <mtr>@@ -468,28 +468,28 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>┏</mo>+        <mi>┏</mi>       </mtd>       <mtd>-        <mo>┟</mo>+        <mi>┟</mi>       </mtd>       <mtd>-        <mo>┯</mo>+        <mi>┯</mi>       </mtd>       <mtd>-        <mo>┿</mo>+        <mi>┿</mi>       </mtd>       <mtd>-        <mo>╏</mo>+        <mi>╏</mi>       </mtd>       <mtd>-        <mo>╟</mo>+        <mi>╟</mi>       </mtd>       <mtd>-        <mo>╯</mo>+        <mi>╯</mi>       </mtd>       <mtd>-        <mo>╿</mo>+        <mi>╿</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02580_Block_Elements.mml view
@@ -15,10 +15,10 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>▀</mo>+        <mi>▀</mi>       </mtd>       <mtd>-        <mo>▐</mo>+        <mi>▐</mi>       </mtd>     </mtr>     <mtr>@@ -26,10 +26,10 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>▁</mo>+        <mi>▁</mi>       </mtd>       <mtd>-        <mo>░</mo>+        <mi>░</mi>       </mtd>     </mtr>     <mtr>@@ -37,10 +37,10 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>▂</mo>+        <mi>▂</mi>       </mtd>       <mtd>-        <mo>▒</mo>+        <mi>▒</mi>       </mtd>     </mtr>     <mtr>@@ -48,10 +48,10 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>▃</mo>+        <mi>▃</mi>       </mtd>       <mtd>-        <mo>▓</mo>+        <mi>▓</mi>       </mtd>     </mtr>     <mtr>@@ -59,10 +59,10 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>▄</mo>+        <mi>▄</mi>       </mtd>       <mtd>-        <mo>▔</mo>+        <mi>▔</mi>       </mtd>     </mtr>     <mtr>@@ -70,10 +70,10 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>▅</mo>+        <mi>▅</mi>       </mtd>       <mtd>-        <mo>▕</mo>+        <mi>▕</mi>       </mtd>     </mtr>     <mtr>@@ -81,10 +81,10 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>▆</mo>+        <mi>▆</mi>       </mtd>       <mtd>-        <mo>▖</mo>+        <mi>▖</mi>       </mtd>     </mtr>     <mtr>@@ -92,10 +92,10 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>▇</mo>+        <mi>▇</mi>       </mtd>       <mtd>-        <mo>▗</mo>+        <mi>▗</mi>       </mtd>     </mtr>     <mtr>@@ -103,10 +103,10 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>█</mo>+        <mi>█</mi>       </mtd>       <mtd>-        <mo>▘</mo>+        <mi>▘</mi>       </mtd>     </mtr>     <mtr>@@ -114,10 +114,10 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>▉</mo>+        <mi>▉</mi>       </mtd>       <mtd>-        <mo>▙</mo>+        <mi>▙</mi>       </mtd>     </mtr>     <mtr>@@ -125,10 +125,10 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>▊</mo>+        <mi>▊</mi>       </mtd>       <mtd>-        <mo>▚</mo>+        <mi>▚</mi>       </mtd>     </mtr>     <mtr>@@ -136,10 +136,10 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>▋</mo>+        <mi>▋</mi>       </mtd>       <mtd>-        <mo>▛</mo>+        <mi>▛</mi>       </mtd>     </mtr>     <mtr>@@ -147,10 +147,10 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>▌</mo>+        <mi>▌</mi>       </mtd>       <mtd>-        <mo>▜</mo>+        <mi>▜</mi>       </mtd>     </mtr>     <mtr>@@ -158,10 +158,10 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>▍</mo>+        <mi>▍</mi>       </mtd>       <mtd>-        <mo>▝</mo>+        <mi>▝</mi>       </mtd>     </mtr>     <mtr>@@ -169,10 +169,10 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>▎</mo>+        <mi>▎</mi>       </mtd>       <mtd>-        <mo>▞</mo>+        <mi>▞</mi>       </mtd>     </mtr>     <mtr>@@ -180,10 +180,10 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>▏</mo>+        <mi>▏</mi>       </mtd>       <mtd>-        <mo>▟</mo>+        <mi>▟</mi>       </mtd>     </mtr>   </mtable>
tests/writers/025A0_Geometric_Shapes.mml view
@@ -27,22 +27,22 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>■</mo>+        <mi>■</mi>       </mtd>       <mtd>-        <mo>▰</mo>+        <mi>▰</mi>       </mtd>       <mtd>         <mo>◀</mo>       </mtd>       <mtd>-        <mo>◐</mo>+        <mi>◐</mi>       </mtd>       <mtd>-        <mo>◠</mo>+        <mi>◠</mi>       </mtd>       <mtd>-        <mo>◰</mo>+        <mi>◰</mi>       </mtd>     </mtr>     <mtr>@@ -50,22 +50,22 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>□</mo>+        <mi>□</mi>       </mtd>       <mtd>-        <mo>▱</mo>+        <mi>▱</mi>       </mtd>       <mtd>         <mo>◁</mo>       </mtd>       <mtd>-        <mo>◑</mo>+        <mi>◑</mi>       </mtd>       <mtd>-        <mo>◡</mo>+        <mi>◡</mi>       </mtd>       <mtd>-        <mo>◱</mo>+        <mi>◱</mi>       </mtd>     </mtr>     <mtr>@@ -73,22 +73,22 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>▢</mo>+        <mi>▢</mi>       </mtd>       <mtd>-        <mo>▲</mo>+        <mi>▲</mi>       </mtd>       <mtd>         <mo>◂</mo>       </mtd>       <mtd>-        <mo>◒</mo>+        <mi>◒</mi>       </mtd>       <mtd>-        <mo>◢</mo>+        <mi>◢</mi>       </mtd>       <mtd>-        <mo>◲</mo>+        <mi>◲</mi>       </mtd>     </mtr>     <mtr>@@ -96,7 +96,7 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>▣</mo>+        <mi>▣</mi>       </mtd>       <mtd>         <mo>△</mo>@@ -105,13 +105,13 @@         <mo>◃</mo>       </mtd>       <mtd>-        <mo>◓</mo>+        <mi>◓</mi>       </mtd>       <mtd>-        <mo>◣</mo>+        <mi>◣</mi>       </mtd>       <mtd>-        <mo>◳</mo>+        <mi>◳</mi>       </mtd>     </mtr>     <mtr>@@ -119,22 +119,22 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>▤</mo>+        <mi>▤</mi>       </mtd>       <mtd>         <mo>▴</mo>       </mtd>       <mtd>-        <mo>◄</mo>+        <mi>◄</mi>       </mtd>       <mtd>-        <mo>◔</mo>+        <mi>◔</mi>       </mtd>       <mtd>-        <mo>◤</mo>+        <mi>◤</mi>       </mtd>       <mtd>-        <mo>◴</mo>+        <mi>◴</mi>       </mtd>     </mtr>     <mtr>@@ -142,22 +142,22 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>▥</mo>+        <mi>▥</mi>       </mtd>       <mtd>         <mo>▵</mo>       </mtd>       <mtd>-        <mo>◅</mo>+        <mi>◅</mi>       </mtd>       <mtd>-        <mo>◕</mo>+        <mi>◕</mi>       </mtd>       <mtd>-        <mo>◥</mo>+        <mi>◥</mi>       </mtd>       <mtd>-        <mo>◵</mo>+        <mi>◵</mi>       </mtd>     </mtr>     <mtr>@@ -165,22 +165,22 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>▦</mo>+        <mi>▦</mi>       </mtd>       <mtd>         <mo>▶</mo>       </mtd>       <mtd>-        <mo>◆</mo>+        <mi>◆</mi>       </mtd>       <mtd>-        <mo>◖</mo>+        <mi>◖</mi>       </mtd>       <mtd>-        <mo>◦</mo>+        <mi>◦</mi>       </mtd>       <mtd>-        <mo>◶</mo>+        <mi>◶</mi>       </mtd>     </mtr>     <mtr>@@ -188,22 +188,22 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>▧</mo>+        <mi>▧</mi>       </mtd>       <mtd>         <mo>▷</mo>       </mtd>       <mtd>-        <mo>◇</mo>+        <mi>◇</mi>       </mtd>       <mtd>-        <mo>◗</mo>+        <mi>◗</mi>       </mtd>       <mtd>-        <mo>◧</mo>+        <mi>◧</mi>       </mtd>       <mtd>-        <mo>◷</mo>+        <mi>◷</mi>       </mtd>     </mtr>     <mtr>@@ -211,22 +211,22 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>▨</mo>+        <mi>▨</mi>       </mtd>       <mtd>         <mo>▸</mo>       </mtd>       <mtd>-        <mo>◈</mo>+        <mi>◈</mi>       </mtd>       <mtd>-        <mo>◘</mo>+        <mi>◘</mi>       </mtd>       <mtd>-        <mo>◨</mo>+        <mi>◨</mi>       </mtd>       <mtd>-        <mo>◸</mo>+        <mi>◸</mi>       </mtd>     </mtr>     <mtr>@@ -234,22 +234,22 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>▩</mo>+        <mi>▩</mi>       </mtd>       <mtd>         <mo>▹</mo>       </mtd>       <mtd>-        <mo>◉</mo>+        <mi>◉</mi>       </mtd>       <mtd>-        <mo>◙</mo>+        <mi>◙</mi>       </mtd>       <mtd>-        <mo>◩</mo>+        <mi>◩</mi>       </mtd>       <mtd>-        <mo>◹</mo>+        <mi>◹</mi>       </mtd>     </mtr>     <mtr>@@ -257,22 +257,22 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>▪</mo>+        <mi>▪</mi>       </mtd>       <mtd>-        <mo>►</mo>+        <mi>►</mi>       </mtd>       <mtd>-        <mo>◊</mo>+        <mi>◊</mi>       </mtd>       <mtd>-        <mo>◚</mo>+        <mi>◚</mi>       </mtd>       <mtd>-        <mo>◪</mo>+        <mi>◪</mi>       </mtd>       <mtd>-        <mo>◺</mo>+        <mi>◺</mi>       </mtd>     </mtr>     <mtr>@@ -280,22 +280,22 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>▫</mo>+        <mi>▫</mi>       </mtd>       <mtd>-        <mo>▻</mo>+        <mi>▻</mi>       </mtd>       <mtd>         <mo>○</mo>       </mtd>       <mtd>-        <mo>◛</mo>+        <mi>◛</mi>       </mtd>       <mtd>         <mo>◫</mo>       </mtd>       <mtd>-        <mo>◻</mo>+        <mi>◻</mi>       </mtd>     </mtr>     <mtr>@@ -303,22 +303,22 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>▬</mo>+        <mi>▬</mi>       </mtd>       <mtd>-        <mo>▼</mo>+        <mi>▼</mi>       </mtd>       <mtd>-        <mo>◌</mo>+        <mi>◌</mi>       </mtd>       <mtd>-        <mo>◜</mo>+        <mi>◜</mi>       </mtd>       <mtd>-        <mo>◬</mo>+        <mi>◬</mi>       </mtd>       <mtd>-        <mo>◼</mo>+        <mi>◼</mi>       </mtd>     </mtr>     <mtr>@@ -326,22 +326,22 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>▭</mo>+        <mi>▭</mi>       </mtd>       <mtd>         <mo>▽</mo>       </mtd>       <mtd>-        <mo>◍</mo>+        <mi>◍</mi>       </mtd>       <mtd>-        <mo>◝</mo>+        <mi>◝</mi>       </mtd>       <mtd>-        <mo>◭</mo>+        <mi>◭</mi>       </mtd>       <mtd>-        <mo>◽</mo>+        <mi>◽</mi>       </mtd>     </mtr>     <mtr>@@ -349,22 +349,22 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>▮</mo>+        <mi>▮</mi>       </mtd>       <mtd>         <mo>▾</mo>       </mtd>       <mtd>-        <mo>◎</mo>+        <mi>◎</mi>       </mtd>       <mtd>-        <mo>◞</mo>+        <mi>◞</mi>       </mtd>       <mtd>-        <mo>◮</mo>+        <mi>◮</mi>       </mtd>       <mtd>-        <mo>◾</mo>+        <mi>◾</mi>       </mtd>     </mtr>     <mtr>@@ -372,22 +372,22 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>▯</mo>+        <mi>▯</mi>       </mtd>       <mtd>         <mo>▿</mo>       </mtd>       <mtd>-        <mo>●</mo>+        <mi>●</mi>       </mtd>       <mtd>-        <mo>◟</mo>+        <mi>◟</mi>       </mtd>       <mtd>-        <mo>◯</mo>+        <mi>◯</mi>       </mtd>       <mtd>-        <mo>◿</mo>+        <mi>◿</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02600_Miscellaneous_Symbols.mml view
@@ -57,52 +57,52 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>☀</mo>+        <mi>☀</mi>       </mtd>       <mtd>-        <mo>☐</mo>+        <mi>☐</mi>       </mtd>       <mtd>-        <mo>☠</mo>+        <mi>☠</mi>       </mtd>       <mtd>-        <mo>☰</mo>+        <mi>☰</mi>       </mtd>       <mtd>-        <mo>♀</mo>+        <mi>♀</mi>       </mtd>       <mtd>-        <mo>♐</mo>+        <mi>♐</mi>       </mtd>       <mtd>-        <mo>♠</mo>+        <mi>♠</mi>       </mtd>       <mtd>-        <mo>♰</mo>+        <mi>♰</mi>       </mtd>       <mtd>-        <mo>⚀</mo>+        <mi>⚀</mi>       </mtd>       <mtd>-        <mo>⚐</mo>+        <mi>⚐</mi>       </mtd>       <mtd>-        <mo>⚠</mo>+        <mi>⚠</mi>       </mtd>       <mtd>-        <mo>⚰</mo>+        <mi>⚰</mi>       </mtd>       <mtd>-        <mo>⛀</mo>+        <mi>⛀</mi>       </mtd>       <mtd>-        <mo>⛐</mo>+        <mi>⛐</mi>       </mtd>       <mtd>-        <mo>⛠</mo>+        <mi>⛠</mi>       </mtd>       <mtd>-        <mo>⛰</mo>+        <mi>⛰</mi>       </mtd>     </mtr>     <mtr>@@ -110,52 +110,52 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>☁</mo>+        <mi>☁</mi>       </mtd>       <mtd>-        <mo>☑</mo>+        <mi>☑</mi>       </mtd>       <mtd>-        <mo>☡</mo>+        <mi>☡</mi>       </mtd>       <mtd>-        <mo>☱</mo>+        <mi>☱</mi>       </mtd>       <mtd>-        <mo>♁</mo>+        <mi>♁</mi>       </mtd>       <mtd>-        <mo>♑</mo>+        <mi>♑</mi>       </mtd>       <mtd>-        <mo>♡</mo>+        <mi>♡</mi>       </mtd>       <mtd>-        <mo>♱</mo>+        <mi>♱</mi>       </mtd>       <mtd>-        <mo>⚁</mo>+        <mi>⚁</mi>       </mtd>       <mtd>-        <mo>⚑</mo>+        <mi>⚑</mi>       </mtd>       <mtd>-        <mo>⚡</mo>+        <mi>⚡</mi>       </mtd>       <mtd>-        <mo>⚱</mo>+        <mi>⚱</mi>       </mtd>       <mtd>-        <mo>⛁</mo>+        <mi>⛁</mi>       </mtd>       <mtd>-        <mo>⛑</mo>+        <mi>⛑</mi>       </mtd>       <mtd>-        <mo>⛡</mo>+        <mi>⛡</mi>       </mtd>       <mtd>-        <mo>⛱</mo>+        <mi>⛱</mi>       </mtd>     </mtr>     <mtr>@@ -163,52 +163,52 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>☂</mo>+        <mi>☂</mi>       </mtd>       <mtd>-        <mo>☒</mo>+        <mi>☒</mi>       </mtd>       <mtd>-        <mo>☢</mo>+        <mi>☢</mi>       </mtd>       <mtd>-        <mo>☲</mo>+        <mi>☲</mi>       </mtd>       <mtd>-        <mo>♂</mo>+        <mi>♂</mi>       </mtd>       <mtd>-        <mo>♒</mo>+        <mi>♒</mi>       </mtd>       <mtd>-        <mo>♢</mo>+        <mi>♢</mi>       </mtd>       <mtd>-        <mo>♲</mo>+        <mi>♲</mi>       </mtd>       <mtd>-        <mo>⚂</mo>+        <mi>⚂</mi>       </mtd>       <mtd>-        <mo>⚒</mo>+        <mi>⚒</mi>       </mtd>       <mtd>-        <mo>⚢</mo>+        <mi>⚢</mi>       </mtd>       <mtd>-        <mo>⚲</mo>+        <mi>⚲</mi>       </mtd>       <mtd>-        <mo>⛂</mo>+        <mi>⛂</mi>       </mtd>       <mtd>-        <mo>⛒</mo>+        <mi>⛒</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>⛲</mo>+        <mi>⛲</mi>       </mtd>     </mtr>     <mtr>@@ -216,52 +216,52 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>☃</mo>+        <mi>☃</mi>       </mtd>       <mtd>-        <mo>☓</mo>+        <mi>☓</mi>       </mtd>       <mtd>-        <mo>☣</mo>+        <mi>☣</mi>       </mtd>       <mtd>-        <mo>☳</mo>+        <mi>☳</mi>       </mtd>       <mtd>-        <mo>♃</mo>+        <mi>♃</mi>       </mtd>       <mtd>-        <mo>♓</mo>+        <mi>♓</mi>       </mtd>       <mtd>-        <mo>♣</mo>+        <mi>♣</mi>       </mtd>       <mtd>-        <mo>♳</mo>+        <mi>♳</mi>       </mtd>       <mtd>-        <mo>⚃</mo>+        <mi>⚃</mi>       </mtd>       <mtd>-        <mo>⚓</mo>+        <mi>⚓</mi>       </mtd>       <mtd>-        <mo>⚣</mo>+        <mi>⚣</mi>       </mtd>       <mtd>-        <mo>⚳</mo>+        <mi>⚳</mi>       </mtd>       <mtd>-        <mo>⛃</mo>+        <mi>⛃</mi>       </mtd>       <mtd>-        <mo>⛓</mo>+        <mi>⛓</mi>       </mtd>       <mtd>-        <mo>⛣</mo>+        <mi>⛣</mi>       </mtd>       <mtd>-        <mo>⛳</mo>+        <mi>⛳</mi>       </mtd>     </mtr>     <mtr>@@ -269,52 +269,52 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>☄</mo>+        <mi>☄</mi>       </mtd>       <mtd>-        <mo>☔</mo>+        <mi>☔</mi>       </mtd>       <mtd>-        <mo>☤</mo>+        <mi>☤</mi>       </mtd>       <mtd>-        <mo>☴</mo>+        <mi>☴</mi>       </mtd>       <mtd>-        <mo>♄</mo>+        <mi>♄</mi>       </mtd>       <mtd>-        <mo>♔</mo>+        <mi>♔</mi>       </mtd>       <mtd>-        <mo>♤</mo>+        <mi>♤</mi>       </mtd>       <mtd>-        <mo>♴</mo>+        <mi>♴</mi>       </mtd>       <mtd>-        <mo>⚄</mo>+        <mi>⚄</mi>       </mtd>       <mtd>-        <mo>⚔</mo>+        <mi>⚔</mi>       </mtd>       <mtd>-        <mo>⚤</mo>+        <mi>⚤</mi>       </mtd>       <mtd>-        <mo>⚴</mo>+        <mi>⚴</mi>       </mtd>       <mtd>-        <mo>⛄</mo>+        <mi>⛄</mi>       </mtd>       <mtd>-        <mo>⛔</mo>+        <mi>⛔</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>⛴</mo>+        <mi>⛴</mi>       </mtd>     </mtr>     <mtr>@@ -322,52 +322,52 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>★</mo>+        <mi>★</mi>       </mtd>       <mtd>-        <mo>☕</mo>+        <mi>☕</mi>       </mtd>       <mtd>-        <mo>☥</mo>+        <mi>☥</mi>       </mtd>       <mtd>-        <mo>☵</mo>+        <mi>☵</mi>       </mtd>       <mtd>-        <mo>♅</mo>+        <mi>♅</mi>       </mtd>       <mtd>-        <mo>♕</mo>+        <mi>♕</mi>       </mtd>       <mtd>-        <mo>♥</mo>+        <mi>♥</mi>       </mtd>       <mtd>-        <mo>♵</mo>+        <mi>♵</mi>       </mtd>       <mtd>-        <mo>⚅</mo>+        <mi>⚅</mi>       </mtd>       <mtd>-        <mo>⚕</mo>+        <mi>⚕</mi>       </mtd>       <mtd>-        <mo>⚥</mo>+        <mi>⚥</mi>       </mtd>       <mtd>-        <mo>⚵</mo>+        <mi>⚵</mi>       </mtd>       <mtd>-        <mo>⛅</mo>+        <mi>⛅</mi>       </mtd>       <mtd>-        <mo>⛕</mo>+        <mi>⛕</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>⛵</mo>+        <mi>⛵</mi>       </mtd>     </mtr>     <mtr>@@ -375,52 +375,52 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>☆</mo>+        <mi>☆</mi>       </mtd>       <mtd>-        <mo>☖</mo>+        <mi>☖</mi>       </mtd>       <mtd>-        <mo>☦</mo>+        <mi>☦</mi>       </mtd>       <mtd>-        <mo>☶</mo>+        <mi>☶</mi>       </mtd>       <mtd>-        <mo>♆</mo>+        <mi>♆</mi>       </mtd>       <mtd>-        <mo>♖</mo>+        <mi>♖</mi>       </mtd>       <mtd>-        <mo>♦</mo>+        <mi>♦</mi>       </mtd>       <mtd>-        <mo>♶</mo>+        <mi>♶</mi>       </mtd>       <mtd>-        <mo>⚆</mo>+        <mi>⚆</mi>       </mtd>       <mtd>-        <mo>⚖</mo>+        <mi>⚖</mi>       </mtd>       <mtd>-        <mo>⚦</mo>+        <mi>⚦</mi>       </mtd>       <mtd>-        <mo>⚶</mo>+        <mi>⚶</mi>       </mtd>       <mtd>-        <mo>⛆</mo>+        <mi>⛆</mi>       </mtd>       <mtd>-        <mo>⛖</mo>+        <mi>⛖</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>⛶</mo>+        <mi>⛶</mi>       </mtd>     </mtr>     <mtr>@@ -428,52 +428,52 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>☇</mo>+        <mi>☇</mi>       </mtd>       <mtd>-        <mo>☗</mo>+        <mi>☗</mi>       </mtd>       <mtd>-        <mo>☧</mo>+        <mi>☧</mi>       </mtd>       <mtd>-        <mo>☷</mo>+        <mi>☷</mi>       </mtd>       <mtd>-        <mo>♇</mo>+        <mi>♇</mi>       </mtd>       <mtd>-        <mo>♗</mo>+        <mi>♗</mi>       </mtd>       <mtd>-        <mo>♧</mo>+        <mi>♧</mi>       </mtd>       <mtd>-        <mo>♷</mo>+        <mi>♷</mi>       </mtd>       <mtd>-        <mo>⚇</mo>+        <mi>⚇</mi>       </mtd>       <mtd>-        <mo>⚗</mo>+        <mi>⚗</mi>       </mtd>       <mtd>-        <mo>⚧</mo>+        <mi>⚧</mi>       </mtd>       <mtd>-        <mo>⚷</mo>+        <mi>⚷</mi>       </mtd>       <mtd>-        <mo>⛇</mo>+        <mi>⛇</mi>       </mtd>       <mtd>-        <mo>⛗</mo>+        <mi>⛗</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>⛷</mo>+        <mi>⛷</mi>       </mtd>     </mtr>     <mtr>@@ -481,52 +481,52 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>☈</mo>+        <mi>☈</mi>       </mtd>       <mtd>-        <mo>☘</mo>+        <mi>☘</mi>       </mtd>       <mtd>-        <mo>☨</mo>+        <mi>☨</mi>       </mtd>       <mtd>-        <mo>☸</mo>+        <mi>☸</mi>       </mtd>       <mtd>-        <mo>♈</mo>+        <mi>♈</mi>       </mtd>       <mtd>-        <mo>♘</mo>+        <mi>♘</mi>       </mtd>       <mtd>-        <mo>♨</mo>+        <mi>♨</mi>       </mtd>       <mtd>-        <mo>♸</mo>+        <mi>♸</mi>       </mtd>       <mtd>-        <mo>⚈</mo>+        <mi>⚈</mi>       </mtd>       <mtd>-        <mo>⚘</mo>+        <mi>⚘</mi>       </mtd>       <mtd>-        <mo>⚨</mo>+        <mi>⚨</mi>       </mtd>       <mtd>-        <mo>⚸</mo>+        <mi>⚸</mi>       </mtd>       <mtd>-        <mo>⛈</mo>+        <mi>⛈</mi>       </mtd>       <mtd>-        <mo>⛘</mo>+        <mi>⛘</mi>       </mtd>       <mtd>-        <mo>⛨</mo>+        <mi>⛨</mi>       </mtd>       <mtd>-        <mo>⛸</mo>+        <mi>⛸</mi>       </mtd>     </mtr>     <mtr>@@ -534,52 +534,52 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>☉</mo>+        <mi>☉</mi>       </mtd>       <mtd>-        <mo>☙</mo>+        <mi>☙</mi>       </mtd>       <mtd>-        <mo>☩</mo>+        <mi>☩</mi>       </mtd>       <mtd>-        <mo>☹</mo>+        <mi>☹</mi>       </mtd>       <mtd>-        <mo>♉</mo>+        <mi>♉</mi>       </mtd>       <mtd>-        <mo>♙</mo>+        <mi>♙</mi>       </mtd>       <mtd>-        <mo>♩</mo>+        <mi>♩</mi>       </mtd>       <mtd>-        <mo>♹</mo>+        <mi>♹</mi>       </mtd>       <mtd>-        <mo>⚉</mo>+        <mi>⚉</mi>       </mtd>       <mtd>-        <mo>⚙</mo>+        <mi>⚙</mi>       </mtd>       <mtd>-        <mo>⚩</mo>+        <mi>⚩</mi>       </mtd>       <mtd>-        <mo>⚹</mo>+        <mi>⚹</mi>       </mtd>       <mtd>-        <mo>⛉</mo>+        <mi>⛉</mi>       </mtd>       <mtd>-        <mo>⛙</mo>+        <mi>⛙</mi>       </mtd>       <mtd>-        <mo>⛩</mo>+        <mi>⛩</mi>       </mtd>       <mtd>-        <mo>⛹</mo>+        <mi>⛹</mi>       </mtd>     </mtr>     <mtr>@@ -587,52 +587,52 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>☊</mo>+        <mi>☊</mi>       </mtd>       <mtd>-        <mo>☚</mo>+        <mi>☚</mi>       </mtd>       <mtd>-        <mo>☪</mo>+        <mi>☪</mi>       </mtd>       <mtd>-        <mo>☺</mo>+        <mi>☺</mi>       </mtd>       <mtd>-        <mo>♊</mo>+        <mi>♊</mi>       </mtd>       <mtd>-        <mo>♚</mo>+        <mi>♚</mi>       </mtd>       <mtd>-        <mo>♪</mo>+        <mi>♪</mi>       </mtd>       <mtd>-        <mo>♺</mo>+        <mi>♺</mi>       </mtd>       <mtd>-        <mo>⚊</mo>+        <mi>⚊</mi>       </mtd>       <mtd>-        <mo>⚚</mo>+        <mi>⚚</mi>       </mtd>       <mtd>-        <mo>⚪</mo>+        <mi>⚪</mi>       </mtd>       <mtd>-        <mo>⚺</mo>+        <mi>⚺</mi>       </mtd>       <mtd>-        <mo>⛊</mo>+        <mi>⛊</mi>       </mtd>       <mtd>-        <mo>⛚</mo>+        <mi>⛚</mi>       </mtd>       <mtd>-        <mo>⛪</mo>+        <mi>⛪</mi>       </mtd>       <mtd>-        <mo>⛺</mo>+        <mi>⛺</mi>       </mtd>     </mtr>     <mtr>@@ -640,52 +640,52 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>☋</mo>+        <mi>☋</mi>       </mtd>       <mtd>-        <mo>☛</mo>+        <mi>☛</mi>       </mtd>       <mtd>-        <mo>☫</mo>+        <mi>☫</mi>       </mtd>       <mtd>-        <mo>☻</mo>+        <mi>☻</mi>       </mtd>       <mtd>-        <mo>♋</mo>+        <mi>♋</mi>       </mtd>       <mtd>-        <mo>♛</mo>+        <mi>♛</mi>       </mtd>       <mtd>-        <mo>♫</mo>+        <mi>♫</mi>       </mtd>       <mtd>-        <mo>♻</mo>+        <mi>♻</mi>       </mtd>       <mtd>-        <mo>⚋</mo>+        <mi>⚋</mi>       </mtd>       <mtd>-        <mo>⚛</mo>+        <mi>⚛</mi>       </mtd>       <mtd>-        <mo>⚫</mo>+        <mi>⚫</mi>       </mtd>       <mtd>-        <mo>⚻</mo>+        <mi>⚻</mi>       </mtd>       <mtd>-        <mo>⛋</mo>+        <mi>⛋</mi>       </mtd>       <mtd>-        <mo>⛛</mo>+        <mi>⛛</mi>       </mtd>       <mtd>-        <mo>⛫</mo>+        <mi>⛫</mi>       </mtd>       <mtd>-        <mo>⛻</mo>+        <mi>⛻</mi>       </mtd>     </mtr>     <mtr>@@ -693,52 +693,52 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>☌</mo>+        <mi>☌</mi>       </mtd>       <mtd>-        <mo>☜</mo>+        <mi>☜</mi>       </mtd>       <mtd>-        <mo>☬</mo>+        <mi>☬</mi>       </mtd>       <mtd>-        <mo>☼</mo>+        <mi>☼</mi>       </mtd>       <mtd>-        <mo>♌</mo>+        <mi>♌</mi>       </mtd>       <mtd>-        <mo>♜</mo>+        <mi>♜</mi>       </mtd>       <mtd>-        <mo>♬</mo>+        <mi>♬</mi>       </mtd>       <mtd>-        <mo>♼</mo>+        <mi>♼</mi>       </mtd>       <mtd>-        <mo>⚌</mo>+        <mi>⚌</mi>       </mtd>       <mtd>-        <mo>⚜</mo>+        <mi>⚜</mi>       </mtd>       <mtd>-        <mo>⚬</mo>+        <mi>⚬</mi>       </mtd>       <mtd>-        <mo>⚼</mo>+        <mi>⚼</mi>       </mtd>       <mtd>-        <mo>⛌</mo>+        <mi>⛌</mi>       </mtd>       <mtd>-        <mo>⛜</mo>+        <mi>⛜</mi>       </mtd>       <mtd>-        <mo>⛬</mo>+        <mi>⛬</mi>       </mtd>       <mtd>-        <mo>⛼</mo>+        <mi>⛼</mi>       </mtd>     </mtr>     <mtr>@@ -746,52 +746,52 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>☍</mo>+        <mi>☍</mi>       </mtd>       <mtd>-        <mo>☝</mo>+        <mi>☝</mi>       </mtd>       <mtd>-        <mo>☭</mo>+        <mi>☭</mi>       </mtd>       <mtd>-        <mo>☽</mo>+        <mi>☽</mi>       </mtd>       <mtd>-        <mo>♍</mo>+        <mi>♍</mi>       </mtd>       <mtd>-        <mo>♝</mo>+        <mi>♝</mi>       </mtd>       <mtd>-        <mo>♭</mo>+        <mi>♭</mi>       </mtd>       <mtd>-        <mo>♽</mo>+        <mi>♽</mi>       </mtd>       <mtd>-        <mo>⚍</mo>+        <mi>⚍</mi>       </mtd>       <mtd>-        <mo>⚝</mo>+        <mi>⚝</mi>       </mtd>       <mtd>-        <mo>⚭</mo>+        <mi>⚭</mi>       </mtd>       <mtd>-        <mo>⚽</mo>+        <mi>⚽</mi>       </mtd>       <mtd>-        <mo>⛍</mo>+        <mi>⛍</mi>       </mtd>       <mtd>-        <mo>⛝</mo>+        <mi>⛝</mi>       </mtd>       <mtd>-        <mo>⛭</mo>+        <mi>⛭</mi>       </mtd>       <mtd>-        <mo>⛽</mo>+        <mi>⛽</mi>       </mtd>     </mtr>     <mtr>@@ -799,52 +799,52 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>☎</mo>+        <mi>☎</mi>       </mtd>       <mtd>-        <mo>☞</mo>+        <mi>☞</mi>       </mtd>       <mtd>-        <mo>☮</mo>+        <mi>☮</mi>       </mtd>       <mtd>-        <mo>☾</mo>+        <mi>☾</mi>       </mtd>       <mtd>-        <mo>♎</mo>+        <mi>♎</mi>       </mtd>       <mtd>-        <mo>♞</mo>+        <mi>♞</mi>       </mtd>       <mtd>-        <mo>♮</mo>+        <mi>♮</mi>       </mtd>       <mtd>-        <mo>♾</mo>+        <mi>♾</mi>       </mtd>       <mtd>-        <mo>⚎</mo>+        <mi>⚎</mi>       </mtd>       <mtd>-        <mo>⚞</mo>+        <mi>⚞</mi>       </mtd>       <mtd>-        <mo>⚮</mo>+        <mi>⚮</mi>       </mtd>       <mtd>-        <mo>⚾</mo>+        <mi>⚾</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>⛞</mo>+        <mi>⛞</mi>       </mtd>       <mtd>-        <mo>⛮</mo>+        <mi>⛮</mi>       </mtd>       <mtd>-        <mo>⛾</mo>+        <mi>⛾</mi>       </mtd>     </mtr>     <mtr>@@ -852,52 +852,52 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>☏</mo>+        <mi>☏</mi>       </mtd>       <mtd>-        <mo>☟</mo>+        <mi>☟</mi>       </mtd>       <mtd>-        <mo>☯</mo>+        <mi>☯</mi>       </mtd>       <mtd>-        <mo>☿</mo>+        <mi>☿</mi>       </mtd>       <mtd>-        <mo>♏</mo>+        <mi>♏</mi>       </mtd>       <mtd>-        <mo>♟</mo>+        <mi>♟</mi>       </mtd>       <mtd>-        <mo>♯</mo>+        <mi>♯</mi>       </mtd>       <mtd>-        <mo>♿</mo>+        <mi>♿</mi>       </mtd>       <mtd>-        <mo>⚏</mo>+        <mi>⚏</mi>       </mtd>       <mtd>-        <mo>⚟</mo>+        <mi>⚟</mi>       </mtd>       <mtd>-        <mo>⚯</mo>+        <mi>⚯</mi>       </mtd>       <mtd>-        <mo>⚿</mo>+        <mi>⚿</mi>       </mtd>       <mtd>-        <mo>⛏</mo>+        <mi>⛏</mi>       </mtd>       <mtd>-        <mo>⛟</mo>+        <mi>⛟</mi>       </mtd>       <mtd>-        <mo>⛯</mo>+        <mi>⛯</mi>       </mtd>       <mtd>-        <mo>⛿</mo>+        <mi>⛿</mi>       </mtd>     </mtr>   </mtable>
tests/writers/02700_Dingbats.mml view
@@ -45,40 +45,40 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>✐</mo>+        <mi>✐</mi>       </mtd>       <mtd>-        <mo>✠</mo>+        <mi>✠</mi>       </mtd>       <mtd>-        <mo>✰</mo>+        <mi>✰</mi>       </mtd>       <mtd>-        <mo>❀</mo>+        <mi>❀</mi>       </mtd>       <mtd>-        <mo>❐</mo>+        <mi>❐</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>❰</mo>+        <mi>❰</mi>       </mtd>       <mtd>-        <mo>➀</mo>+        <mi>➀</mi>       </mtd>       <mtd>-        <mo>➐</mo>+        <mi>➐</mi>       </mtd>       <mtd>-        <mo>➠</mo>+        <mi>➠</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -86,40 +86,40 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>✁</mo>+        <mi>✁</mi>       </mtd>       <mtd>-        <mo>✑</mo>+        <mi>✑</mi>       </mtd>       <mtd>-        <mo>✡</mo>+        <mi>✡</mi>       </mtd>       <mtd>-        <mo>✱</mo>+        <mi>✱</mi>       </mtd>       <mtd>-        <mo>❁</mo>+        <mi>❁</mi>       </mtd>       <mtd>-        <mo>❑</mo>+        <mi>❑</mi>       </mtd>       <mtd>-        <mo>❡</mo>+        <mi>❡</mi>       </mtd>       <mtd>-        <mo>❱</mo>+        <mi>❱</mi>       </mtd>       <mtd>-        <mo>➁</mo>+        <mi>➁</mi>       </mtd>       <mtd>-        <mo>➑</mo>+        <mi>➑</mi>       </mtd>       <mtd>-        <mo>➡</mo>+        <mi>➡</mi>       </mtd>       <mtd>-        <mo>➱</mo>+        <mi>➱</mi>       </mtd>     </mtr>     <mtr>@@ -127,40 +127,40 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>✂</mo>+        <mi>✂</mi>       </mtd>       <mtd>-        <mo>✒</mo>+        <mi>✒</mi>       </mtd>       <mtd>-        <mo>✢</mo>+        <mi>✢</mi>       </mtd>       <mtd>-        <mo>✲</mo>+        <mi>✲</mi>       </mtd>       <mtd>-        <mo>❂</mo>+        <mi>❂</mi>       </mtd>       <mtd>-        <mo>❒</mo>+        <mi>❒</mi>       </mtd>       <mtd>-        <mo>❢</mo>+        <mi>❢</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">❲</mo>       </mtd>       <mtd>-        <mo>➂</mo>+        <mi>➂</mi>       </mtd>       <mtd>-        <mo>➒</mo>+        <mi>➒</mi>       </mtd>       <mtd>-        <mo>➢</mo>+        <mi>➢</mi>       </mtd>       <mtd>-        <mo>➲</mo>+        <mi>➲</mi>       </mtd>     </mtr>     <mtr>@@ -168,40 +168,40 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>✃</mo>+        <mi>✃</mi>       </mtd>       <mtd>-        <mo>✓</mo>+        <mi>✓</mi>       </mtd>       <mtd>-        <mo>✣</mo>+        <mi>✣</mi>       </mtd>       <mtd>-        <mo>✳</mo>+        <mi>✳</mi>       </mtd>       <mtd>-        <mo>❃</mo>+        <mi>❃</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>❣</mo>+        <mi>❣</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">❳</mo>       </mtd>       <mtd>-        <mo>➃</mo>+        <mi>➃</mi>       </mtd>       <mtd>-        <mo>➓</mo>+        <mi>➓</mi>       </mtd>       <mtd>-        <mo>➣</mo>+        <mi>➣</mi>       </mtd>       <mtd>-        <mo>➳</mo>+        <mi>➳</mi>       </mtd>     </mtr>     <mtr>@@ -209,40 +209,40 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>✄</mo>+        <mi>✄</mi>       </mtd>       <mtd>-        <mo>✔</mo>+        <mi>✔</mi>       </mtd>       <mtd>-        <mo>✤</mo>+        <mi>✤</mi>       </mtd>       <mtd>-        <mo>✴</mo>+        <mi>✴</mi>       </mtd>       <mtd>-        <mo>❄</mo>+        <mi>❄</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>❤</mo>+        <mi>❤</mi>       </mtd>       <mtd>-        <mo>❴</mo>+        <mi>❴</mi>       </mtd>       <mtd>-        <mo>➄</mo>+        <mi>➄</mi>       </mtd>       <mtd>-        <mo>➔</mo>+        <mi>➔</mi>       </mtd>       <mtd>-        <mo>➤</mo>+        <mi>➤</mi>       </mtd>       <mtd>-        <mo>➴</mo>+        <mi>➴</mi>       </mtd>     </mtr>     <mtr>@@ -250,40 +250,40 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>✕</mo>+        <mi>✕</mi>       </mtd>       <mtd>-        <mo>✥</mo>+        <mi>✥</mi>       </mtd>       <mtd>-        <mo>✵</mo>+        <mi>✵</mi>       </mtd>       <mtd>-        <mo>❅</mo>+        <mi>❅</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>❥</mo>+        <mi>❥</mi>       </mtd>       <mtd>-        <mo>❵</mo>+        <mi>❵</mi>       </mtd>       <mtd>-        <mo>➅</mo>+        <mi>➅</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>➥</mo>+        <mi>➥</mi>       </mtd>       <mtd>-        <mo>➵</mo>+        <mi>➵</mi>       </mtd>     </mtr>     <mtr>@@ -291,40 +291,40 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>✆</mo>+        <mi>✆</mi>       </mtd>       <mtd>-        <mo>✖</mo>+        <mi>✖</mi>       </mtd>       <mtd>-        <mo>✦</mo>+        <mi>✦</mi>       </mtd>       <mtd>-        <mo>✶</mo>+        <mi>✶</mi>       </mtd>       <mtd>-        <mo>❆</mo>+        <mi>❆</mi>       </mtd>       <mtd>-        <mo>❖</mo>+        <mi>❖</mi>       </mtd>       <mtd>-        <mo>❦</mo>+        <mi>❦</mi>       </mtd>       <mtd>-        <mo>❶</mo>+        <mi>❶</mi>       </mtd>       <mtd>-        <mo>➆</mo>+        <mi>➆</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>➦</mo>+        <mi>➦</mi>       </mtd>       <mtd>-        <mo>➶</mo>+        <mi>➶</mi>       </mtd>     </mtr>     <mtr>@@ -332,40 +332,40 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>✇</mo>+        <mi>✇</mi>       </mtd>       <mtd>-        <mo>✗</mo>+        <mi>✗</mi>       </mtd>       <mtd>-        <mo>✧</mo>+        <mi>✧</mi>       </mtd>       <mtd>-        <mo>✷</mo>+        <mi>✷</mi>       </mtd>       <mtd>-        <mo>❇</mo>+        <mi>❇</mi>       </mtd>       <mtd>-        <mo>❗</mo>+        <mi>❗</mi>       </mtd>       <mtd>-        <mo>❧</mo>+        <mi>❧</mi>       </mtd>       <mtd>-        <mo>❷</mo>+        <mi>❷</mi>       </mtd>       <mtd>-        <mo>➇</mo>+        <mi>➇</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>➧</mo>+        <mi>➧</mi>       </mtd>       <mtd>-        <mo>➷</mo>+        <mi>➷</mi>       </mtd>     </mtr>     <mtr>@@ -373,40 +373,40 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>✈</mo>+        <mi>✈</mi>       </mtd>       <mtd>-        <mo>✘</mo>+        <mi>✘</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>✸</mo>+        <mi>✸</mi>       </mtd>       <mtd>-        <mo>❈</mo>+        <mi>❈</mi>       </mtd>       <mtd>-        <mo>❘</mo>+        <mi>❘</mi>       </mtd>       <mtd>-        <mo>❨</mo>+        <mi>❨</mi>       </mtd>       <mtd>-        <mo>❸</mo>+        <mi>❸</mi>       </mtd>       <mtd>-        <mo>➈</mo>+        <mi>➈</mi>       </mtd>       <mtd>-        <mo>➘</mo>+        <mi>➘</mi>       </mtd>       <mtd>-        <mo>➨</mo>+        <mi>➨</mi>       </mtd>       <mtd>-        <mo>➸</mo>+        <mi>➸</mi>       </mtd>     </mtr>     <mtr>@@ -414,40 +414,40 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>✉</mo>+        <mi>✉</mi>       </mtd>       <mtd>-        <mo>✙</mo>+        <mi>✙</mi>       </mtd>       <mtd>-        <mo>✩</mo>+        <mi>✩</mi>       </mtd>       <mtd>-        <mo>✹</mo>+        <mi>✹</mi>       </mtd>       <mtd>-        <mo>❉</mo>+        <mi>❉</mi>       </mtd>       <mtd>-        <mo>❙</mo>+        <mi>❙</mi>       </mtd>       <mtd>-        <mo>❩</mo>+        <mi>❩</mi>       </mtd>       <mtd>-        <mo>❹</mo>+        <mi>❹</mi>       </mtd>       <mtd>-        <mo>➉</mo>+        <mi>➉</mi>       </mtd>       <mtd>-        <mo>➙</mo>+        <mi>➙</mi>       </mtd>       <mtd>-        <mo>➩</mo>+        <mi>➩</mi>       </mtd>       <mtd>-        <mo>➹</mo>+        <mi>➹</mi>       </mtd>     </mtr>     <mtr>@@ -455,40 +455,40 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>✚</mo>+        <mi>✚</mi>       </mtd>       <mtd>-        <mo>✪</mo>+        <mi>✪</mi>       </mtd>       <mtd>-        <mo>✺</mo>+        <mi>✺</mi>       </mtd>       <mtd>-        <mo>❊</mo>+        <mi>❊</mi>       </mtd>       <mtd>-        <mo>❚</mo>+        <mi>❚</mi>       </mtd>       <mtd>-        <mo>❪</mo>+        <mi>❪</mi>       </mtd>       <mtd>-        <mo>❺</mo>+        <mi>❺</mi>       </mtd>       <mtd>-        <mo>➊</mo>+        <mi>➊</mi>       </mtd>       <mtd>-        <mo>➚</mo>+        <mi>➚</mi>       </mtd>       <mtd>-        <mo>➪</mo>+        <mi>➪</mi>       </mtd>       <mtd>-        <mo>➺</mo>+        <mi>➺</mi>       </mtd>     </mtr>     <mtr>@@ -496,40 +496,40 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>✛</mo>+        <mi>✛</mi>       </mtd>       <mtd>-        <mo>✫</mo>+        <mi>✫</mi>       </mtd>       <mtd>-        <mo>✻</mo>+        <mi>✻</mi>       </mtd>       <mtd>-        <mo>❋</mo>+        <mi>❋</mi>       </mtd>       <mtd>-        <mo>❛</mo>+        <mi>❛</mi>       </mtd>       <mtd>-        <mo>❫</mo>+        <mi>❫</mi>       </mtd>       <mtd>-        <mo>❻</mo>+        <mi>❻</mi>       </mtd>       <mtd>-        <mo>➋</mo>+        <mi>➋</mi>       </mtd>       <mtd>-        <mo>➛</mo>+        <mi>➛</mi>       </mtd>       <mtd>-        <mo>➫</mo>+        <mi>➫</mi>       </mtd>       <mtd>-        <mo>➻</mo>+        <mi>➻</mi>       </mtd>     </mtr>     <mtr>@@ -537,40 +537,40 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>✌</mo>+        <mi>✌</mi>       </mtd>       <mtd>-        <mo>✜</mo>+        <mi>✜</mi>       </mtd>       <mtd>-        <mo>✬</mo>+        <mi>✬</mi>       </mtd>       <mtd>-        <mo>✼</mo>+        <mi>✼</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>❜</mo>+        <mi>❜</mi>       </mtd>       <mtd>-        <mo>❬</mo>+        <mi>❬</mi>       </mtd>       <mtd>-        <mo>❼</mo>+        <mi>❼</mi>       </mtd>       <mtd>-        <mo>➌</mo>+        <mi>➌</mi>       </mtd>       <mtd>-        <mo>➜</mo>+        <mi>➜</mi>       </mtd>       <mtd>-        <mo>➬</mo>+        <mi>➬</mi>       </mtd>       <mtd>-        <mo>➼</mo>+        <mi>➼</mi>       </mtd>     </mtr>     <mtr>@@ -578,40 +578,40 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>✍</mo>+        <mi>✍</mi>       </mtd>       <mtd>-        <mo>✝</mo>+        <mi>✝</mi>       </mtd>       <mtd>-        <mo>✭</mo>+        <mi>✭</mi>       </mtd>       <mtd>-        <mo>✽</mo>+        <mi>✽</mi>       </mtd>       <mtd>-        <mo>❍</mo>+        <mi>❍</mi>       </mtd>       <mtd>-        <mo>❝</mo>+        <mi>❝</mi>       </mtd>       <mtd>-        <mo>❭</mo>+        <mi>❭</mi>       </mtd>       <mtd>-        <mo>❽</mo>+        <mi>❽</mi>       </mtd>       <mtd>-        <mo>➍</mo>+        <mi>➍</mi>       </mtd>       <mtd>-        <mo>➝</mo>+        <mi>➝</mi>       </mtd>       <mtd>-        <mo>➭</mo>+        <mi>➭</mi>       </mtd>       <mtd>-        <mo>➽</mo>+        <mi>➽</mi>       </mtd>     </mtr>     <mtr>@@ -619,40 +619,40 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>✎</mo>+        <mi>✎</mi>       </mtd>       <mtd>-        <mo>✞</mo>+        <mi>✞</mi>       </mtd>       <mtd>-        <mo>✮</mo>+        <mi>✮</mi>       </mtd>       <mtd>-        <mo>✾</mo>+        <mi>✾</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>❞</mo>+        <mi>❞</mi>       </mtd>       <mtd>-        <mo>❮</mo>+        <mi>❮</mi>       </mtd>       <mtd>-        <mo>❾</mo>+        <mi>❾</mi>       </mtd>       <mtd>-        <mo>➎</mo>+        <mi>➎</mi>       </mtd>       <mtd>-        <mo>➞</mo>+        <mi>➞</mi>       </mtd>       <mtd>-        <mo>➮</mo>+        <mi>➮</mi>       </mtd>       <mtd>-        <mo>➾</mo>+        <mi>➾</mi>       </mtd>     </mtr>     <mtr>@@ -660,40 +660,40 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>✏</mo>+        <mi>✏</mi>       </mtd>       <mtd>-        <mo>✟</mo>+        <mi>✟</mi>       </mtd>       <mtd>-        <mo>✯</mo>+        <mi>✯</mi>       </mtd>       <mtd>-        <mo>✿</mo>+        <mi>✿</mi>       </mtd>       <mtd>-        <mo>❏</mo>+        <mi>❏</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>❯</mo>+        <mi>❯</mi>       </mtd>       <mtd>-        <mo>❿</mo>+        <mi>❿</mi>       </mtd>       <mtd>-        <mo>➏</mo>+        <mi>➏</mi>       </mtd>       <mtd>-        <mo>➟</mo>+        <mi>➟</mi>       </mtd>       <mtd>-        <mo>➯</mo>+        <mi>➯</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/027C0_Miscellaneous_Mathematical_Symbols-A.mml view
@@ -18,10 +18,10 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>⟀</mo>+        <mi>⟀</mi>       </mtd>       <mtd>-        <mo>⟐</mo>+        <mi>⟐</mi>       </mtd>       <mtd>         <mo>⟠</mo>@@ -32,7 +32,7 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>⟁</mo>+        <mi>⟁</mi>       </mtd>       <mtd>         <mo>⟑</mo>@@ -60,7 +60,7 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>⟃</mo>+        <mi>⟃</mi>       </mtd>       <mtd>         <mo>⟓</mo>@@ -74,7 +74,7 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>⟄</mo>+        <mi>⟄</mi>       </mtd>       <mtd>         <mo>⟔</mo>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>⟊</mo>+        <mi>⟊</mi>       </mtd>       <mtd>         <mo>⟚</mo>@@ -172,7 +172,7 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>⟛</mo>@@ -200,7 +200,7 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>⟝</mo>@@ -214,7 +214,7 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>⟞</mo>@@ -228,7 +228,7 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>⟟</mo>
tests/writers/02900_Supplemental_Arrows-B.mml view
@@ -42,7 +42,7 @@         <mo accent="true">⤠</mo>       </mtd>       <mtd>-        <mo>⤰</mo>+        <mi>⤰</mi>       </mtd>       <mtd>         <mo>⥀</mo>@@ -71,7 +71,7 @@         <mo>⤡</mo>       </mtd>       <mtd>-        <mo>⤱</mo>+        <mi>⤱</mi>       </mtd>       <mtd>         <mo>⥁</mo>@@ -100,7 +100,7 @@         <mo>⤢</mo>       </mtd>       <mtd>-        <mo>⤲</mo>+        <mi>⤲</mi>       </mtd>       <mtd>         <mo accent="true">⥂</mo>@@ -158,7 +158,7 @@         <mo>⤤</mo>       </mtd>       <mtd>-        <mo>⤴</mo>+        <mi>⤴</mi>       </mtd>       <mtd>         <mo accent="true">⥄</mo>@@ -187,7 +187,7 @@         <mo>⤥</mo>       </mtd>       <mtd>-        <mo>⤵</mo>+        <mi>⤵</mi>       </mtd>       <mtd>         <mo accent="true">⥅</mo>@@ -358,7 +358,7 @@         <mo accent="true">⤛</mo>       </mtd>       <mtd>-        <mo>⤫</mo>+        <mi>⤫</mi>       </mtd>       <mtd>         <mo accent="true">⤻</mo>@@ -387,7 +387,7 @@         <mo accent="true">⤜</mo>       </mtd>       <mtd>-        <mo>⤬</mo>+        <mi>⤬</mi>       </mtd>       <mtd>         <mo accent="true">⤼</mo>@@ -416,7 +416,7 @@         <mo accent="true">⤝</mo>       </mtd>       <mtd>-        <mo>⤭</mo>+        <mi>⤭</mi>       </mtd>       <mtd>         <mo accent="true">⤽</mo>@@ -445,7 +445,7 @@         <mo accent="true">⤞</mo>       </mtd>       <mtd>-        <mo>⤮</mo>+        <mi>⤮</mi>       </mtd>       <mtd>         <mo>⤾</mo>@@ -474,7 +474,7 @@         <mo accent="true">⤟</mo>       </mtd>       <mtd>-        <mo>⤯</mo>+        <mi>⤯</mi>       </mtd>       <mtd>         <mo>⤿</mo>
tests/writers/02980_Miscellaneous_Mathematical_Symbols-B.mml view
@@ -39,10 +39,10 @@         <mo stretchy="false" form="postfix">⦐</mo>       </mtd>       <mtd>-        <mo>⦠</mo>+        <mi>⦠</mi>       </mtd>       <mtd>-        <mo>⦰</mo>+        <mi>⦰</mi>       </mtd>       <mtd>         <mo>⧀</mo>@@ -51,10 +51,10 @@         <mo>⧐</mo>       </mtd>       <mtd>-        <mo>⧠</mo>+        <mi>⧠</mi>       </mtd>       <mtd>-        <mo>⧰</mo>+        <mi>⧰</mi>       </mtd>     </mtr>     <mtr>@@ -62,16 +62,16 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>⦁</mo>+        <mi>⦁</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">⦑</mo>       </mtd>       <mtd>-        <mo>⦡</mo>+        <mi>⦡</mi>       </mtd>       <mtd>-        <mo>⦱</mo>+        <mi>⦱</mi>       </mtd>       <mtd>         <mo>⧁</mo>@@ -83,7 +83,7 @@         <mo>⧡</mo>       </mtd>       <mtd>-        <mo>⧱</mo>+        <mi>⧱</mi>       </mtd>     </mtr>     <mtr>@@ -97,13 +97,13 @@         <mo stretchy="false" form="postfix">⦒</mo>       </mtd>       <mtd>-        <mo>⦢</mo>+        <mi>⦢</mi>       </mtd>       <mtd>-        <mo>⦲</mo>+        <mi>⦲</mi>       </mtd>       <mtd>-        <mo>⧂</mo>+        <mi>⧂</mi>       </mtd>       <mtd>         <mo>⧒</mo>@@ -112,7 +112,7 @@         <mo>⧢</mo>       </mtd>       <mtd>-        <mo>⧲</mo>+        <mi>⧲</mi>       </mtd>     </mtr>     <mtr>@@ -126,13 +126,13 @@         <mo stretchy="false" form="prefix">⦓</mo>       </mtd>       <mtd>-        <mo>⦣</mo>+        <mi>⦣</mi>       </mtd>       <mtd>-        <mo>⦳</mo>+        <mi>⦳</mi>       </mtd>       <mtd>-        <mo>⧃</mo>+        <mi>⧃</mi>       </mtd>       <mtd>         <mo>⧓</mo>@@ -141,7 +141,7 @@         <mo>⧣</mo>       </mtd>       <mtd>-        <mo>⧳</mo>+        <mi>⧳</mi>       </mtd>     </mtr>     <mtr>@@ -155,10 +155,10 @@         <mo stretchy="false" form="postfix">⦔</mo>       </mtd>       <mtd>-        <mo>⦤</mo>+        <mi>⦤</mi>       </mtd>       <mtd>-        <mo>⦴</mo>+        <mi>⦴</mi>       </mtd>       <mtd>         <mo>⧄</mo>@@ -184,7 +184,7 @@         <mo stretchy="false" form="prefix">⦕</mo>       </mtd>       <mtd>-        <mo>⦥</mo>+        <mi>⦥</mi>       </mtd>       <mtd>         <mo>⦵</mo>@@ -213,7 +213,7 @@         <mo stretchy="false" form="postfix">⦖</mo>       </mtd>       <mtd>-        <mo>⦦</mo>+        <mi>⦦</mi>       </mtd>       <mtd>         <mo>⦶</mo>@@ -242,7 +242,7 @@         <mo stretchy="false" form="prefix">⦗</mo>       </mtd>       <mtd>-        <mo>⦧</mo>+        <mi>⦧</mi>       </mtd>       <mtd>         <mo>⦷</mo>@@ -254,7 +254,7 @@         <mo>⧗</mo>       </mtd>       <mtd>-        <mo>⧧</mo>+        <mi>⧧</mi>       </mtd>       <mtd>         <mo>⧷</mo>@@ -271,7 +271,7 @@         <mo stretchy="false" form="postfix">⦘</mo>       </mtd>       <mtd>-        <mo>⦨</mo>+        <mi>⦨</mi>       </mtd>       <mtd>         <mo>⦸</mo>@@ -283,7 +283,7 @@         <mo stretchy="false" form="prefix">⧘</mo>       </mtd>       <mtd>-        <mo>⧨</mo>+        <mi>⧨</mi>       </mtd>       <mtd>         <mo>⧸</mo>@@ -297,22 +297,22 @@         <mo stretchy="false" form="prefix">⦉</mo>       </mtd>       <mtd>-        <mo>⦙</mo>+        <mi>⦙</mi>       </mtd>       <mtd>-        <mo>⦩</mo>+        <mi>⦩</mi>       </mtd>       <mtd>         <mo>⦹</mo>       </mtd>       <mtd>-        <mo>⧉</mo>+        <mi>⧉</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">⧙</mo>       </mtd>       <mtd>-        <mo>⧩</mo>+        <mi>⧩</mi>       </mtd>       <mtd>         <mo>⧹</mo>@@ -326,22 +326,22 @@         <mo stretchy="false" form="postfix">⦊</mo>       </mtd>       <mtd>-        <mo>⦚</mo>+        <mi>⦚</mi>       </mtd>       <mtd>-        <mo>⦪</mo>+        <mi>⦪</mi>       </mtd>       <mtd>-        <mo>⦺</mo>+        <mi>⦺</mi>       </mtd>       <mtd>-        <mo>⧊</mo>+        <mi>⧊</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">⧚</mo>       </mtd>       <mtd>-        <mo>⧪</mo>+        <mi>⧪</mi>       </mtd>       <mtd>         <mo>⧺</mo>@@ -355,16 +355,16 @@         <mo stretchy="false" form="prefix">⦋</mo>       </mtd>       <mtd>-        <mo>⦛</mo>+        <mi>⦛</mi>       </mtd>       <mtd>-        <mo>⦫</mo>+        <mi>⦫</mi>       </mtd>       <mtd>-        <mo>⦻</mo>+        <mi>⦻</mi>       </mtd>       <mtd>-        <mo>⧋</mo>+        <mi>⧋</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">⧛</mo>@@ -384,22 +384,22 @@         <mo stretchy="false" form="postfix">⦌</mo>       </mtd>       <mtd>-        <mo>⦜</mo>+        <mi>⦜</mi>       </mtd>       <mtd>-        <mo>⦬</mo>+        <mi>⦬</mi>       </mtd>       <mtd>-        <mo>⦼</mo>+        <mi>⦼</mi>       </mtd>       <mtd>-        <mo>⧌</mo>+        <mi>⧌</mi>       </mtd>       <mtd>-        <mo>⧜</mo>+        <mi>⧜</mi>       </mtd>       <mtd>-        <mo>⧬</mo>+        <mi>⧬</mi>       </mtd>       <mtd>         <mo stretchy="false" form="prefix">⧼</mo>@@ -413,22 +413,22 @@         <mo stretchy="false" form="prefix">⦍</mo>       </mtd>       <mtd>-        <mo>⦝</mo>+        <mi>⦝</mi>       </mtd>       <mtd>-        <mo>⦭</mo>+        <mi>⦭</mi>       </mtd>       <mtd>-        <mo>⦽</mo>+        <mi>⦽</mi>       </mtd>       <mtd>         <mo>⧍</mo>       </mtd>       <mtd>-        <mo>⧝</mo>+        <mi>⧝</mi>       </mtd>       <mtd>-        <mo>⧭</mo>+        <mi>⧭</mi>       </mtd>       <mtd>         <mo stretchy="false" form="postfix">⧽</mo>@@ -442,22 +442,22 @@         <mo stretchy="false" form="postfix">⦎</mo>       </mtd>       <mtd>-        <mo>⦞</mo>+        <mi>⦞</mi>       </mtd>       <mtd>-        <mo>⦮</mo>+        <mi>⦮</mi>       </mtd>       <mtd>-        <mo>⦾</mo>+        <mi>⦾</mi>       </mtd>       <mtd>         <mo>⧎</mo>       </mtd>       <mtd>-        <mo>⧞</mo>+        <mi>⧞</mi>       </mtd>       <mtd>-        <mo>⧮</mo>+        <mi>⧮</mi>       </mtd>       <mtd>         <mo>⧾</mo>@@ -471,13 +471,13 @@         <mo stretchy="false" form="prefix">⦏</mo>       </mtd>       <mtd>-        <mo>⦟</mo>+        <mi>⦟</mi>       </mtd>       <mtd>-        <mo>⦯</mo>+        <mi>⦯</mi>       </mtd>       <mtd>-        <mo>⦿</mo>+        <mi>⦿</mi>       </mtd>       <mtd>         <mo>⧏</mo>@@ -486,7 +486,7 @@         <mo>⧟</mo>       </mtd>       <mtd>-        <mo>⧯</mo>+        <mi>⧯</mi>       </mtd>       <mtd>         <mo>⧿</mo>
tests/writers/02A00_Supplemental_Mathematical_Operators.mml view
@@ -152,10 +152,10 @@         <mo>⫑</mo>       </mtd>       <mtd>-        <mo>⫡</mo>+        <mi>⫡</mi>       </mtd>       <mtd>-        <mo>⫱</mo>+        <mi>⫱</mi>       </mtd>     </mtr>     <mtr>@@ -587,7 +587,7 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>⨊</mo>+        <mi>⨊</mi>       </mtd>       <mtd>         <mo>⨚</mo>
tests/writers/02B00_Miscellaneous_Symbols_and_Arrows.mml view
@@ -27,13 +27,13 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>⬀</mo>+        <mi>⬀</mi>       </mtd>       <mtd>-        <mo>⬐</mo>+        <mi>⬐</mi>       </mtd>       <mtd>-        <mo>⬠</mo>+        <mi>⬠</mi>       </mtd>       <mtd>         <mo>⬰</mo>@@ -42,7 +42,7 @@         <mo>⭀</mo>       </mtd>       <mtd>-        <mo>⭐</mo>+        <mi>⭐</mi>       </mtd>     </mtr>     <mtr>@@ -50,13 +50,13 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>⬁</mo>+        <mi>⬁</mi>       </mtd>       <mtd>-        <mo>⬑</mo>+        <mi>⬑</mi>       </mtd>       <mtd>-        <mo>⬡</mo>+        <mi>⬡</mi>       </mtd>       <mtd>         <mo>⬱</mo>@@ -65,7 +65,7 @@         <mo>⭁</mo>       </mtd>       <mtd>-        <mo>⭑</mo>+        <mi>⭑</mi>       </mtd>     </mtr>     <mtr>@@ -73,13 +73,13 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>⬂</mo>+        <mi>⬂</mi>       </mtd>       <mtd>-        <mo>⬒</mo>+        <mi>⬒</mi>       </mtd>       <mtd>-        <mo>⬢</mo>+        <mi>⬢</mi>       </mtd>       <mtd>         <mo>⬲</mo>@@ -88,7 +88,7 @@         <mo>⭂</mo>       </mtd>       <mtd>-        <mo>⭒</mo>+        <mi>⭒</mi>       </mtd>     </mtr>     <mtr>@@ -96,13 +96,13 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>⬃</mo>+        <mi>⬃</mi>       </mtd>       <mtd>-        <mo>⬓</mo>+        <mi>⬓</mi>       </mtd>       <mtd>-        <mo>⬣</mo>+        <mi>⬣</mi>       </mtd>       <mtd>         <mo>⬳</mo>@@ -111,7 +111,7 @@         <mo>⭃</mo>       </mtd>       <mtd>-        <mo>⭓</mo>+        <mi>⭓</mi>       </mtd>     </mtr>     <mtr>@@ -119,13 +119,13 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>⬄</mo>+        <mi>⬄</mi>       </mtd>       <mtd>-        <mo>⬔</mo>+        <mi>⬔</mi>       </mtd>       <mtd>-        <mo>⬤</mo>+        <mi>⬤</mi>       </mtd>       <mtd>         <mo>⬴</mo>@@ -134,7 +134,7 @@         <mo>⭄</mo>       </mtd>       <mtd>-        <mo>⭔</mo>+        <mi>⭔</mi>       </mtd>     </mtr>     <mtr>@@ -142,13 +142,13 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>⬅</mo>+        <mi>⬅</mi>       </mtd>       <mtd>-        <mo>⬕</mo>+        <mi>⬕</mi>       </mtd>       <mtd>-        <mo>⬥</mo>+        <mi>⬥</mi>       </mtd>       <mtd>         <mo>⬵</mo>@@ -157,7 +157,7 @@         <mo>⭅</mo>       </mtd>       <mtd>-        <mo>⭕</mo>+        <mi>⭕</mi>       </mtd>     </mtr>     <mtr>@@ -165,13 +165,13 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>⬆</mo>+        <mi>⬆</mi>       </mtd>       <mtd>-        <mo>⬖</mo>+        <mi>⬖</mi>       </mtd>       <mtd>-        <mo>⬦</mo>+        <mi>⬦</mi>       </mtd>       <mtd>         <mo>⬶</mo>@@ -180,7 +180,7 @@         <mo>⭆</mo>       </mtd>       <mtd>-        <mo>⭖</mo>+        <mi>⭖</mi>       </mtd>     </mtr>     <mtr>@@ -188,13 +188,13 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>⬇</mo>+        <mi>⬇</mi>       </mtd>       <mtd>-        <mo>⬗</mo>+        <mi>⬗</mi>       </mtd>       <mtd>-        <mo>⬧</mo>+        <mi>⬧</mi>       </mtd>       <mtd>         <mo>⬷</mo>@@ -203,7 +203,7 @@         <mo>⭇</mo>       </mtd>       <mtd>-        <mo>⭗</mo>+        <mi>⭗</mi>       </mtd>     </mtr>     <mtr>@@ -211,13 +211,13 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>⬈</mo>+        <mi>⬈</mi>       </mtd>       <mtd>-        <mo>⬘</mo>+        <mi>⬘</mi>       </mtd>       <mtd>-        <mo>⬨</mo>+        <mi>⬨</mi>       </mtd>       <mtd>         <mo>⬸</mo>@@ -226,7 +226,7 @@         <mo>⭈</mo>       </mtd>       <mtd>-        <mo>⭘</mo>+        <mi>⭘</mi>       </mtd>     </mtr>     <mtr>@@ -234,13 +234,13 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>⬉</mo>+        <mi>⬉</mi>       </mtd>       <mtd>-        <mo>⬙</mo>+        <mi>⬙</mi>       </mtd>       <mtd>-        <mo>⬩</mo>+        <mi>⬩</mi>       </mtd>       <mtd>         <mo>⬹</mo>@@ -249,7 +249,7 @@         <mo>⭉</mo>       </mtd>       <mtd>-        <mo>⭙</mo>+        <mi>⭙</mi>       </mtd>     </mtr>     <mtr>@@ -257,13 +257,13 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>⬊</mo>+        <mi>⬊</mi>       </mtd>       <mtd>-        <mo>⬚</mo>+        <mi>⬚</mi>       </mtd>       <mtd>-        <mo>⬪</mo>+        <mi>⬪</mi>       </mtd>       <mtd>         <mo>⬺</mo>@@ -272,7 +272,7 @@         <mo>⭊</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -280,13 +280,13 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>⬋</mo>+        <mi>⬋</mi>       </mtd>       <mtd>-        <mo>⬛</mo>+        <mi>⬛</mi>       </mtd>       <mtd>-        <mo>⬫</mo>+        <mi>⬫</mi>       </mtd>       <mtd>         <mo>⬻</mo>@@ -295,7 +295,7 @@         <mo>⭋</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -303,13 +303,13 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>⬌</mo>+        <mi>⬌</mi>       </mtd>       <mtd>-        <mo>⬜</mo>+        <mi>⬜</mi>       </mtd>       <mtd>-        <mo>⬬</mo>+        <mi>⬬</mi>       </mtd>       <mtd>         <mo>⬼</mo>@@ -318,7 +318,7 @@         <mo>⭌</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -326,22 +326,22 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>⬍</mo>+        <mi>⬍</mi>       </mtd>       <mtd>-        <mo>⬝</mo>+        <mi>⬝</mi>       </mtd>       <mtd>-        <mo>⬭</mo>+        <mi>⬭</mi>       </mtd>       <mtd>         <mo>⬽</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -349,22 +349,22 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>⬎</mo>+        <mi>⬎</mi>       </mtd>       <mtd>-        <mo>⬞</mo>+        <mi>⬞</mi>       </mtd>       <mtd>-        <mo>⬮</mo>+        <mi>⬮</mi>       </mtd>       <mtd>         <mo>⬾</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -372,22 +372,22 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>⬏</mo>+        <mi>⬏</mi>       </mtd>       <mtd>-        <mo>⬟</mo>+        <mi>⬟</mi>       </mtd>       <mtd>-        <mo>⬯</mo>+        <mi>⬯</mi>       </mtd>       <mtd>         <mo>⬿</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/06.mml view
@@ -8,7 +8,7 @@         <mo>=</mo>         <mn>1</mn>       </mrow>-      <mo>∞</mo>+      <mi>∞</mi>     </munderover>     <munderover>       <mo>∑</mo>@@ -17,7 +17,7 @@         <mo>=</mo>         <mn>1</mn>       </mrow>-      <mo>∞</mo>+      <mi>∞</mi>     </munderover>     <mfrac>       <mrow>
tests/writers/07.mml view
@@ -2,14 +2,14 @@ <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">   <mrow>     <mi>u</mi>-    <mo accent="false">″</mo>+    <mi>″</mi>     <mo>+</mo>     <mi>p</mi>     <mo stretchy="false" form="prefix">(</mo>     <mi>x</mi>     <mo stretchy="false" form="postfix">)</mo>     <mi>u</mi>-    <mo>′</mo>+    <mi>′</mi>     <mo>+</mo>     <mi>q</mi>     <mo stretchy="false" form="prefix">(</mo>
tests/writers/0FB00_Alphabetic_Presentation_Forms.mml view
@@ -24,19 +24,19 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>ff</mo>+        <mi>ff</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﬠ</mo>+        <mi>ﬠ</mi>       </mtd>       <mtd>-        <mo>אּ</mo>+        <mi>אּ</mi>       </mtd>       <mtd>-        <mo>נּ</mo>+        <mi>נּ</mi>       </mtd>     </mtr>     <mtr>@@ -44,19 +44,19 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>fi</mo>+        <mi>fi</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﬡ</mo>+        <mi>ﬡ</mi>       </mtd>       <mtd>-        <mo>בּ</mo>+        <mi>בּ</mi>       </mtd>       <mtd>-        <mo>סּ</mo>+        <mi>סּ</mi>       </mtd>     </mtr>     <mtr>@@ -64,19 +64,19 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>fl</mo>+        <mi>fl</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﬢ</mo>+        <mi>ﬢ</mi>       </mtd>       <mtd>-        <mo>גּ</mo>+        <mi>גּ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -84,19 +84,19 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ffi</mo>+        <mi>ffi</mi>       </mtd>       <mtd>-        <mo>ﬓ</mo>+        <mi>ﬓ</mi>       </mtd>       <mtd>-        <mo>ﬣ</mo>+        <mi>ﬣ</mi>       </mtd>       <mtd>-        <mo>דּ</mo>+        <mi>דּ</mi>       </mtd>       <mtd>-        <mo>ףּ</mo>+        <mi>ףּ</mi>       </mtd>     </mtr>     <mtr>@@ -104,19 +104,19 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>ffl</mo>+        <mi>ffl</mi>       </mtd>       <mtd>-        <mo>ﬔ</mo>+        <mi>ﬔ</mi>       </mtd>       <mtd>-        <mo>ﬤ</mo>+        <mi>ﬤ</mi>       </mtd>       <mtd>-        <mo>הּ</mo>+        <mi>הּ</mi>       </mtd>       <mtd>-        <mo>פּ</mo>+        <mi>פּ</mi>       </mtd>     </mtr>     <mtr>@@ -124,19 +124,19 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>ſt</mo>+        <mi>ſt</mi>       </mtd>       <mtd>-        <mo>ﬕ</mo>+        <mi>ﬕ</mi>       </mtd>       <mtd>-        <mo>ﬥ</mo>+        <mi>ﬥ</mi>       </mtd>       <mtd>-        <mo>וּ</mo>+        <mi>וּ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -144,19 +144,19 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>st</mo>+        <mi>st</mi>       </mtd>       <mtd>-        <mo>ﬖ</mo>+        <mi>ﬖ</mi>       </mtd>       <mtd>-        <mo>ﬦ</mo>+        <mi>ﬦ</mi>       </mtd>       <mtd>-        <mo>זּ</mo>+        <mi>זּ</mi>       </mtd>       <mtd>-        <mo>צּ</mo>+        <mi>צּ</mi>       </mtd>     </mtr>     <mtr>@@ -164,19 +164,19 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﬗ</mo>+        <mi>ﬗ</mi>       </mtd>       <mtd>-        <mo>ﬧ</mo>+        <mi>ﬧ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>קּ</mo>+        <mi>קּ</mi>       </mtd>     </mtr>     <mtr>@@ -184,19 +184,19 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﬨ</mo>+        <mi>ﬨ</mi>       </mtd>       <mtd>-        <mo>טּ</mo>+        <mi>טּ</mi>       </mtd>       <mtd>-        <mo>רּ</mo>+        <mi>רּ</mi>       </mtd>     </mtr>     <mtr>@@ -204,19 +204,19 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>﬩</mo>+        <mi>﬩</mi>       </mtd>       <mtd>-        <mo>יּ</mo>+        <mi>יּ</mi>       </mtd>       <mtd>-        <mo>שּ</mo>+        <mi>שּ</mi>       </mtd>     </mtr>     <mtr>@@ -224,19 +224,19 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>שׁ</mo>+        <mi>שׁ</mi>       </mtd>       <mtd>-        <mo>ךּ</mo>+        <mi>ךּ</mi>       </mtd>       <mtd>-        <mo>תּ</mo>+        <mi>תּ</mi>       </mtd>     </mtr>     <mtr>@@ -244,19 +244,19 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>שׂ</mo>+        <mi>שׂ</mi>       </mtd>       <mtd>-        <mo>כּ</mo>+        <mi>כּ</mi>       </mtd>       <mtd>-        <mo>וֹ</mo>+        <mi>וֹ</mi>       </mtd>     </mtr>     <mtr>@@ -264,19 +264,19 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>שּׁ</mo>+        <mi>שּׁ</mi>       </mtd>       <mtd>-        <mo>לּ</mo>+        <mi>לּ</mi>       </mtd>       <mtd>-        <mo>בֿ</mo>+        <mi>בֿ</mi>       </mtd>     </mtr>     <mtr>@@ -284,19 +284,19 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>יִ</mo>+        <mi>יִ</mi>       </mtd>       <mtd>-        <mo>שּׂ</mo>+        <mi>שּׂ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>כֿ</mo>+        <mi>כֿ</mi>       </mtd>     </mtr>     <mtr>@@ -304,19 +304,19 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﬞ</mo>+        <mi>ﬞ</mi>       </mtd>       <mtd>-        <mo>אַ</mo>+        <mi>אַ</mi>       </mtd>       <mtd>-        <mo>מּ</mo>+        <mi>מּ</mi>       </mtd>       <mtd>-        <mo>פֿ</mo>+        <mi>פֿ</mi>       </mtd>     </mtr>     <mtr>@@ -324,19 +324,19 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ײַ</mo>+        <mi>ײַ</mi>       </mtd>       <mtd>-        <mo>אָ</mo>+        <mi>אָ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﭏ</mo>+        <mi>ﭏ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/0FB50_Arabic_Presentation_Forms-A.mml view
@@ -138,2143 +138,2143 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>ﭐ</mo>-      </mtd>-      <mtd>-        <mo>ﭠ</mo>-      </mtd>-      <mtd>-        <mo>ﭰ</mo>-      </mtd>-      <mtd>-        <mo>ﮀ</mo>-      </mtd>-      <mtd>-        <mo>ﮐ</mo>-      </mtd>-      <mtd>-        <mo>ﮠ</mo>-      </mtd>-      <mtd>-        <mo>ﮰ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯠ</mo>-      </mtd>-      <mtd>-        <mo>ﯰ</mo>-      </mtd>-      <mtd>-        <mo>ﰀ</mo>-      </mtd>-      <mtd>-        <mo>ﰐ</mo>-      </mtd>-      <mtd>-        <mo>ﰠ</mo>-      </mtd>-      <mtd>-        <mo>ﰰ</mo>-      </mtd>-      <mtd>-        <mo>ﱀ</mo>-      </mtd>-      <mtd>-        <mo>ﱐ</mo>-      </mtd>-      <mtd>-        <mo>ﱠ</mo>-      </mtd>-      <mtd>-        <mo>ﱰ</mo>-      </mtd>-      <mtd>-        <mo>ﲀ</mo>-      </mtd>-      <mtd>-        <mo>ﲐ</mo>-      </mtd>-      <mtd>-        <mo>ﲠ</mo>-      </mtd>-      <mtd>-        <mo>ﲰ</mo>-      </mtd>-      <mtd>-        <mo>ﳀ</mo>-      </mtd>-      <mtd>-        <mo>ﳐ</mo>-      </mtd>-      <mtd>-        <mo>ﳠ</mo>-      </mtd>-      <mtd>-        <mo>ﳰ</mo>-      </mtd>-      <mtd>-        <mo>ﴀ</mo>-      </mtd>-      <mtd>-        <mo>ﴐ</mo>-      </mtd>-      <mtd>-        <mo>ﴠ</mo>-      </mtd>-      <mtd>-        <mo>ﴰ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵐ</mo>-      </mtd>-      <mtd>-        <mo>ﵠ</mo>-      </mtd>-      <mtd>-        <mo>ﵰ</mo>-      </mtd>-      <mtd>-        <mo>ﶀ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﶠ</mo>-      </mtd>-      <mtd>-        <mo>ﶰ</mo>-      </mtd>-      <mtd>-        <mo>ﷀ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷰ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">1</mtext>-      </mtd>-      <mtd>-        <mo>ﭑ</mo>-      </mtd>-      <mtd>-        <mo>ﭡ</mo>-      </mtd>-      <mtd>-        <mo>ﭱ</mo>-      </mtd>-      <mtd>-        <mo>ﮁ</mo>-      </mtd>-      <mtd>-        <mo>ﮑ</mo>-      </mtd>-      <mtd>-        <mo>ﮡ</mo>-      </mtd>-      <mtd>-        <mo>ﮱ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯡ</mo>-      </mtd>-      <mtd>-        <mo>ﯱ</mo>-      </mtd>-      <mtd>-        <mo>ﰁ</mo>-      </mtd>-      <mtd>-        <mo>ﰑ</mo>-      </mtd>-      <mtd>-        <mo>ﰡ</mo>-      </mtd>-      <mtd>-        <mo>ﰱ</mo>-      </mtd>-      <mtd>-        <mo>ﱁ</mo>-      </mtd>-      <mtd>-        <mo>ﱑ</mo>-      </mtd>-      <mtd>-        <mo>ﱡ</mo>-      </mtd>-      <mtd>-        <mo>ﱱ</mo>-      </mtd>-      <mtd>-        <mo>ﲁ</mo>-      </mtd>-      <mtd>-        <mo>ﲑ</mo>-      </mtd>-      <mtd>-        <mo>ﲡ</mo>-      </mtd>-      <mtd>-        <mo>ﲱ</mo>-      </mtd>-      <mtd>-        <mo>ﳁ</mo>-      </mtd>-      <mtd>-        <mo>ﳑ</mo>-      </mtd>-      <mtd>-        <mo>ﳡ</mo>-      </mtd>-      <mtd>-        <mo>ﳱ</mo>-      </mtd>-      <mtd>-        <mo>ﴁ</mo>-      </mtd>-      <mtd>-        <mo>ﴑ</mo>-      </mtd>-      <mtd>-        <mo>ﴡ</mo>-      </mtd>-      <mtd>-        <mo>ﴱ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵑ</mo>-      </mtd>-      <mtd>-        <mo>ﵡ</mo>-      </mtd>-      <mtd>-        <mo>ﵱ</mo>-      </mtd>-      <mtd>-        <mo>ﶁ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﶡ</mo>-      </mtd>-      <mtd>-        <mo>ﶱ</mo>-      </mtd>-      <mtd>-        <mo>ﷁ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷱ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">2</mtext>-      </mtd>-      <mtd>-        <mo>ﭒ</mo>-      </mtd>-      <mtd>-        <mo>ﭢ</mo>-      </mtd>-      <mtd>-        <mo>ﭲ</mo>-      </mtd>-      <mtd>-        <mo>ﮂ</mo>-      </mtd>-      <mtd>-        <mo>ﮒ</mo>-      </mtd>-      <mtd>-        <mo>ﮢ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯢ</mo>-      </mtd>-      <mtd>-        <mo>ﯲ</mo>-      </mtd>-      <mtd>-        <mo>ﰂ</mo>-      </mtd>-      <mtd>-        <mo>ﰒ</mo>-      </mtd>-      <mtd>-        <mo>ﰢ</mo>-      </mtd>-      <mtd>-        <mo>ﰲ</mo>-      </mtd>-      <mtd>-        <mo>ﱂ</mo>-      </mtd>-      <mtd>-        <mo>ﱒ</mo>-      </mtd>-      <mtd>-        <mo>ﱢ</mo>-      </mtd>-      <mtd>-        <mo>ﱲ</mo>-      </mtd>-      <mtd>-        <mo>ﲂ</mo>-      </mtd>-      <mtd>-        <mo>ﲒ</mo>-      </mtd>-      <mtd>-        <mo>ﲢ</mo>-      </mtd>-      <mtd>-        <mo>ﲲ</mo>-      </mtd>-      <mtd>-        <mo>ﳂ</mo>-      </mtd>-      <mtd>-        <mo>ﳒ</mo>-      </mtd>-      <mtd>-        <mo>ﳢ</mo>-      </mtd>-      <mtd>-        <mo>ﳲ</mo>-      </mtd>-      <mtd>-        <mo>ﴂ</mo>-      </mtd>-      <mtd>-        <mo>ﴒ</mo>-      </mtd>-      <mtd>-        <mo>ﴢ</mo>-      </mtd>-      <mtd>-        <mo>ﴲ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵒ</mo>-      </mtd>-      <mtd>-        <mo>ﵢ</mo>-      </mtd>-      <mtd>-        <mo>ﵲ</mo>-      </mtd>-      <mtd>-        <mo>ﶂ</mo>-      </mtd>-      <mtd>-        <mo>ﶒ</mo>-      </mtd>-      <mtd>-        <mo>ﶢ</mo>-      </mtd>-      <mtd>-        <mo>ﶲ</mo>-      </mtd>-      <mtd>-        <mo>ﷂ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷲ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">3</mtext>-      </mtd>-      <mtd>-        <mo>ﭓ</mo>-      </mtd>-      <mtd>-        <mo>ﭣ</mo>-      </mtd>-      <mtd>-        <mo>ﭳ</mo>-      </mtd>-      <mtd>-        <mo>ﮃ</mo>-      </mtd>-      <mtd>-        <mo>ﮓ</mo>-      </mtd>-      <mtd>-        <mo>ﮣ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯓ</mo>-      </mtd>-      <mtd>-        <mo>ﯣ</mo>-      </mtd>-      <mtd>-        <mo>ﯳ</mo>-      </mtd>-      <mtd>-        <mo>ﰃ</mo>-      </mtd>-      <mtd>-        <mo>ﰓ</mo>-      </mtd>-      <mtd>-        <mo>ﰣ</mo>-      </mtd>-      <mtd>-        <mo>ﰳ</mo>-      </mtd>-      <mtd>-        <mo>ﱃ</mo>-      </mtd>-      <mtd>-        <mo>ﱓ</mo>-      </mtd>-      <mtd>-        <mo>ﱣ</mo>-      </mtd>-      <mtd>-        <mo>ﱳ</mo>-      </mtd>-      <mtd>-        <mo>ﲃ</mo>-      </mtd>-      <mtd>-        <mo>ﲓ</mo>-      </mtd>-      <mtd>-        <mo>ﲣ</mo>-      </mtd>-      <mtd>-        <mo>ﲳ</mo>-      </mtd>-      <mtd>-        <mo>ﳃ</mo>-      </mtd>-      <mtd>-        <mo>ﳓ</mo>-      </mtd>-      <mtd>-        <mo>ﳣ</mo>-      </mtd>-      <mtd>-        <mo>ﳳ</mo>-      </mtd>-      <mtd>-        <mo>ﴃ</mo>-      </mtd>-      <mtd>-        <mo>ﴓ</mo>-      </mtd>-      <mtd>-        <mo>ﴣ</mo>-      </mtd>-      <mtd>-        <mo>ﴳ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵓ</mo>-      </mtd>-      <mtd>-        <mo>ﵣ</mo>-      </mtd>-      <mtd>-        <mo>ﵳ</mo>-      </mtd>-      <mtd>-        <mo>ﶃ</mo>-      </mtd>-      <mtd>-        <mo>ﶓ</mo>-      </mtd>-      <mtd>-        <mo>ﶣ</mo>-      </mtd>-      <mtd>-        <mo>ﶳ</mo>-      </mtd>-      <mtd>-        <mo>ﷃ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷳ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">4</mtext>-      </mtd>-      <mtd>-        <mo>ﭔ</mo>-      </mtd>-      <mtd>-        <mo>ﭤ</mo>-      </mtd>-      <mtd>-        <mo>ﭴ</mo>-      </mtd>-      <mtd>-        <mo>ﮄ</mo>-      </mtd>-      <mtd>-        <mo>ﮔ</mo>-      </mtd>-      <mtd>-        <mo>ﮤ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯔ</mo>-      </mtd>-      <mtd>-        <mo>ﯤ</mo>-      </mtd>-      <mtd>-        <mo>ﯴ</mo>-      </mtd>-      <mtd>-        <mo>ﰄ</mo>-      </mtd>-      <mtd>-        <mo>ﰔ</mo>-      </mtd>-      <mtd>-        <mo>ﰤ</mo>-      </mtd>-      <mtd>-        <mo>ﰴ</mo>-      </mtd>-      <mtd>-        <mo>ﱄ</mo>-      </mtd>-      <mtd>-        <mo>ﱔ</mo>-      </mtd>-      <mtd>-        <mo>ﱤ</mo>-      </mtd>-      <mtd>-        <mo>ﱴ</mo>-      </mtd>-      <mtd>-        <mo>ﲄ</mo>-      </mtd>-      <mtd>-        <mo>ﲔ</mo>-      </mtd>-      <mtd>-        <mo>ﲤ</mo>-      </mtd>-      <mtd>-        <mo>ﲴ</mo>-      </mtd>-      <mtd>-        <mo>ﳄ</mo>-      </mtd>-      <mtd>-        <mo>ﳔ</mo>-      </mtd>-      <mtd>-        <mo>ﳤ</mo>-      </mtd>-      <mtd>-        <mo>ﳴ</mo>-      </mtd>-      <mtd>-        <mo>ﴄ</mo>-      </mtd>-      <mtd>-        <mo>ﴔ</mo>-      </mtd>-      <mtd>-        <mo>ﴤ</mo>-      </mtd>-      <mtd>-        <mo>ﴴ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵔ</mo>-      </mtd>-      <mtd>-        <mo>ﵤ</mo>-      </mtd>-      <mtd>-        <mo>ﵴ</mo>-      </mtd>-      <mtd>-        <mo>ﶄ</mo>-      </mtd>-      <mtd>-        <mo>ﶔ</mo>-      </mtd>-      <mtd>-        <mo>ﶤ</mo>-      </mtd>-      <mtd>-        <mo>ﶴ</mo>-      </mtd>-      <mtd>-        <mo>ﷄ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷴ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">5</mtext>-      </mtd>-      <mtd>-        <mo>ﭕ</mo>-      </mtd>-      <mtd>-        <mo>ﭥ</mo>-      </mtd>-      <mtd>-        <mo>ﭵ</mo>-      </mtd>-      <mtd>-        <mo>ﮅ</mo>-      </mtd>-      <mtd>-        <mo>ﮕ</mo>-      </mtd>-      <mtd>-        <mo>ﮥ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯕ</mo>-      </mtd>-      <mtd>-        <mo>ﯥ</mo>-      </mtd>-      <mtd>-        <mo>ﯵ</mo>-      </mtd>-      <mtd>-        <mo>ﰅ</mo>-      </mtd>-      <mtd>-        <mo>ﰕ</mo>-      </mtd>-      <mtd>-        <mo>ﰥ</mo>-      </mtd>-      <mtd>-        <mo>ﰵ</mo>-      </mtd>-      <mtd>-        <mo>ﱅ</mo>-      </mtd>-      <mtd>-        <mo>ﱕ</mo>-      </mtd>-      <mtd>-        <mo>ﱥ</mo>-      </mtd>-      <mtd>-        <mo>ﱵ</mo>-      </mtd>-      <mtd>-        <mo>ﲅ</mo>-      </mtd>-      <mtd>-        <mo>ﲕ</mo>-      </mtd>-      <mtd>-        <mo>ﲥ</mo>-      </mtd>-      <mtd>-        <mo>ﲵ</mo>-      </mtd>-      <mtd>-        <mo>ﳅ</mo>-      </mtd>-      <mtd>-        <mo>ﳕ</mo>-      </mtd>-      <mtd>-        <mo>ﳥ</mo>-      </mtd>-      <mtd>-        <mo>ﳵ</mo>-      </mtd>-      <mtd>-        <mo>ﴅ</mo>-      </mtd>-      <mtd>-        <mo>ﴕ</mo>-      </mtd>-      <mtd>-        <mo>ﴥ</mo>-      </mtd>-      <mtd>-        <mo>ﴵ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵕ</mo>-      </mtd>-      <mtd>-        <mo>ﵥ</mo>-      </mtd>-      <mtd>-        <mo>ﵵ</mo>-      </mtd>-      <mtd>-        <mo>ﶅ</mo>-      </mtd>-      <mtd>-        <mo>ﶕ</mo>-      </mtd>-      <mtd>-        <mo>ﶥ</mo>-      </mtd>-      <mtd>-        <mo>ﶵ</mo>-      </mtd>-      <mtd>-        <mo>ﷅ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷵ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">6</mtext>-      </mtd>-      <mtd>-        <mo>ﭖ</mo>-      </mtd>-      <mtd>-        <mo>ﭦ</mo>-      </mtd>-      <mtd>-        <mo>ﭶ</mo>-      </mtd>-      <mtd>-        <mo>ﮆ</mo>-      </mtd>-      <mtd>-        <mo>ﮖ</mo>-      </mtd>-      <mtd>-        <mo>ﮦ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯖ</mo>-      </mtd>-      <mtd>-        <mo>ﯦ</mo>-      </mtd>-      <mtd>-        <mo>ﯶ</mo>-      </mtd>-      <mtd>-        <mo>ﰆ</mo>-      </mtd>-      <mtd>-        <mo>ﰖ</mo>-      </mtd>-      <mtd>-        <mo>ﰦ</mo>-      </mtd>-      <mtd>-        <mo>ﰶ</mo>-      </mtd>-      <mtd>-        <mo>ﱆ</mo>-      </mtd>-      <mtd>-        <mo>ﱖ</mo>-      </mtd>-      <mtd>-        <mo>ﱦ</mo>-      </mtd>-      <mtd>-        <mo>ﱶ</mo>-      </mtd>-      <mtd>-        <mo>ﲆ</mo>-      </mtd>-      <mtd>-        <mo>ﲖ</mo>-      </mtd>-      <mtd>-        <mo>ﲦ</mo>-      </mtd>-      <mtd>-        <mo>ﲶ</mo>-      </mtd>-      <mtd>-        <mo>ﳆ</mo>-      </mtd>-      <mtd>-        <mo>ﳖ</mo>-      </mtd>-      <mtd>-        <mo>ﳦ</mo>-      </mtd>-      <mtd>-        <mo>ﳶ</mo>-      </mtd>-      <mtd>-        <mo>ﴆ</mo>-      </mtd>-      <mtd>-        <mo>ﴖ</mo>-      </mtd>-      <mtd>-        <mo>ﴦ</mo>-      </mtd>-      <mtd>-        <mo>ﴶ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵖ</mo>-      </mtd>-      <mtd>-        <mo>ﵦ</mo>-      </mtd>-      <mtd>-        <mo>ﵶ</mo>-      </mtd>-      <mtd>-        <mo>ﶆ</mo>-      </mtd>-      <mtd>-        <mo>ﶖ</mo>-      </mtd>-      <mtd>-        <mo>ﶦ</mo>-      </mtd>-      <mtd>-        <mo>ﶶ</mo>-      </mtd>-      <mtd>-        <mo>ﷆ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷶ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">7</mtext>-      </mtd>-      <mtd>-        <mo>ﭗ</mo>-      </mtd>-      <mtd>-        <mo>ﭧ</mo>-      </mtd>-      <mtd>-        <mo>ﭷ</mo>-      </mtd>-      <mtd>-        <mo>ﮇ</mo>-      </mtd>-      <mtd>-        <mo>ﮗ</mo>-      </mtd>-      <mtd>-        <mo>ﮧ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯗ</mo>-      </mtd>-      <mtd>-        <mo>ﯧ</mo>-      </mtd>-      <mtd>-        <mo>ﯷ</mo>-      </mtd>-      <mtd>-        <mo>ﰇ</mo>-      </mtd>-      <mtd>-        <mo>ﰗ</mo>-      </mtd>-      <mtd>-        <mo>ﰧ</mo>-      </mtd>-      <mtd>-        <mo>ﰷ</mo>-      </mtd>-      <mtd>-        <mo>ﱇ</mo>-      </mtd>-      <mtd>-        <mo>ﱗ</mo>-      </mtd>-      <mtd>-        <mo>ﱧ</mo>-      </mtd>-      <mtd>-        <mo>ﱷ</mo>-      </mtd>-      <mtd>-        <mo>ﲇ</mo>-      </mtd>-      <mtd>-        <mo>ﲗ</mo>-      </mtd>-      <mtd>-        <mo>ﲧ</mo>-      </mtd>-      <mtd>-        <mo>ﲷ</mo>-      </mtd>-      <mtd>-        <mo>ﳇ</mo>-      </mtd>-      <mtd>-        <mo>ﳗ</mo>-      </mtd>-      <mtd>-        <mo>ﳧ</mo>-      </mtd>-      <mtd>-        <mo>ﳷ</mo>-      </mtd>-      <mtd>-        <mo>ﴇ</mo>-      </mtd>-      <mtd>-        <mo>ﴗ</mo>-      </mtd>-      <mtd>-        <mo>ﴧ</mo>-      </mtd>-      <mtd>-        <mo>ﴷ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵗ</mo>-      </mtd>-      <mtd>-        <mo>ﵧ</mo>-      </mtd>-      <mtd>-        <mo>ﵷ</mo>-      </mtd>-      <mtd>-        <mo>ﶇ</mo>-      </mtd>-      <mtd>-        <mo>ﶗ</mo>-      </mtd>-      <mtd>-        <mo>ﶧ</mo>-      </mtd>-      <mtd>-        <mo>ﶷ</mo>-      </mtd>-      <mtd>-        <mo>ﷇ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷷ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">8</mtext>-      </mtd>-      <mtd>-        <mo>ﭘ</mo>-      </mtd>-      <mtd>-        <mo>ﭨ</mo>-      </mtd>-      <mtd>-        <mo>ﭸ</mo>-      </mtd>-      <mtd>-        <mo>ﮈ</mo>-      </mtd>-      <mtd>-        <mo>ﮘ</mo>-      </mtd>-      <mtd>-        <mo>ﮨ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯘ</mo>-      </mtd>-      <mtd>-        <mo>ﯨ</mo>-      </mtd>-      <mtd>-        <mo>ﯸ</mo>-      </mtd>-      <mtd>-        <mo>ﰈ</mo>-      </mtd>-      <mtd>-        <mo>ﰘ</mo>-      </mtd>-      <mtd>-        <mo>ﰨ</mo>-      </mtd>-      <mtd>-        <mo>ﰸ</mo>-      </mtd>-      <mtd>-        <mo>ﱈ</mo>-      </mtd>-      <mtd>-        <mo>ﱘ</mo>-      </mtd>-      <mtd>-        <mo>ﱨ</mo>-      </mtd>-      <mtd>-        <mo>ﱸ</mo>-      </mtd>-      <mtd>-        <mo>ﲈ</mo>-      </mtd>-      <mtd>-        <mo>ﲘ</mo>-      </mtd>-      <mtd>-        <mo>ﲨ</mo>-      </mtd>-      <mtd>-        <mo>ﲸ</mo>-      </mtd>-      <mtd>-        <mo>ﳈ</mo>-      </mtd>-      <mtd>-        <mo>ﳘ</mo>-      </mtd>-      <mtd>-        <mo>ﳨ</mo>-      </mtd>-      <mtd>-        <mo>ﳸ</mo>-      </mtd>-      <mtd>-        <mo>ﴈ</mo>-      </mtd>-      <mtd>-        <mo>ﴘ</mo>-      </mtd>-      <mtd>-        <mo>ﴨ</mo>-      </mtd>-      <mtd>-        <mo>ﴸ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵘ</mo>-      </mtd>-      <mtd>-        <mo>ﵨ</mo>-      </mtd>-      <mtd>-        <mo>ﵸ</mo>-      </mtd>-      <mtd>-        <mo>ﶈ</mo>-      </mtd>-      <mtd>-        <mo>ﶘ</mo>-      </mtd>-      <mtd>-        <mo>ﶨ</mo>-      </mtd>-      <mtd>-        <mo>ﶸ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷸ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">9</mtext>-      </mtd>-      <mtd>-        <mo>ﭙ</mo>-      </mtd>-      <mtd>-        <mo>ﭩ</mo>-      </mtd>-      <mtd>-        <mo>ﭹ</mo>-      </mtd>-      <mtd>-        <mo>ﮉ</mo>-      </mtd>-      <mtd>-        <mo>ﮙ</mo>-      </mtd>-      <mtd>-        <mo>ﮩ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯙ</mo>-      </mtd>-      <mtd>-        <mo>ﯩ</mo>-      </mtd>-      <mtd>-        <mo>ﯹ</mo>-      </mtd>-      <mtd>-        <mo>ﰉ</mo>-      </mtd>-      <mtd>-        <mo>ﰙ</mo>-      </mtd>-      <mtd>-        <mo>ﰩ</mo>-      </mtd>-      <mtd>-        <mo>ﰹ</mo>-      </mtd>-      <mtd>-        <mo>ﱉ</mo>-      </mtd>-      <mtd>-        <mo>ﱙ</mo>-      </mtd>-      <mtd>-        <mo>ﱩ</mo>-      </mtd>-      <mtd>-        <mo>ﱹ</mo>-      </mtd>-      <mtd>-        <mo>ﲉ</mo>-      </mtd>-      <mtd>-        <mo>ﲙ</mo>-      </mtd>-      <mtd>-        <mo>ﲩ</mo>-      </mtd>-      <mtd>-        <mo>ﲹ</mo>-      </mtd>-      <mtd>-        <mo>ﳉ</mo>-      </mtd>-      <mtd>-        <mo>ﳙ</mo>-      </mtd>-      <mtd>-        <mo>ﳩ</mo>-      </mtd>-      <mtd>-        <mo>ﳹ</mo>-      </mtd>-      <mtd>-        <mo>ﴉ</mo>-      </mtd>-      <mtd>-        <mo>ﴙ</mo>-      </mtd>-      <mtd>-        <mo>ﴩ</mo>-      </mtd>-      <mtd>-        <mo>ﴹ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵙ</mo>-      </mtd>-      <mtd>-        <mo>ﵩ</mo>-      </mtd>-      <mtd>-        <mo>ﵹ</mo>-      </mtd>-      <mtd>-        <mo>ﶉ</mo>-      </mtd>-      <mtd>-        <mo>ﶙ</mo>-      </mtd>-      <mtd>-        <mo>ﶩ</mo>-      </mtd>-      <mtd>-        <mo>ﶹ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷹ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">A</mtext>-      </mtd>-      <mtd>-        <mo>ﭚ</mo>-      </mtd>-      <mtd>-        <mo>ﭪ</mo>-      </mtd>-      <mtd>-        <mo>ﭺ</mo>-      </mtd>-      <mtd>-        <mo>ﮊ</mo>-      </mtd>-      <mtd>-        <mo>ﮚ</mo>-      </mtd>-      <mtd>-        <mo>ﮪ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯚ</mo>-      </mtd>-      <mtd>-        <mo>ﯪ</mo>-      </mtd>-      <mtd>-        <mo>ﯺ</mo>-      </mtd>-      <mtd>-        <mo>ﰊ</mo>-      </mtd>-      <mtd>-        <mo>ﰚ</mo>-      </mtd>-      <mtd>-        <mo>ﰪ</mo>-      </mtd>-      <mtd>-        <mo>ﰺ</mo>-      </mtd>-      <mtd>-        <mo>ﱊ</mo>-      </mtd>-      <mtd>-        <mo>ﱚ</mo>-      </mtd>-      <mtd>-        <mo>ﱪ</mo>-      </mtd>-      <mtd>-        <mo>ﱺ</mo>-      </mtd>-      <mtd>-        <mo>ﲊ</mo>-      </mtd>-      <mtd>-        <mo>ﲚ</mo>-      </mtd>-      <mtd>-        <mo>ﲪ</mo>-      </mtd>-      <mtd>-        <mo>ﲺ</mo>-      </mtd>-      <mtd>-        <mo>ﳊ</mo>-      </mtd>-      <mtd>-        <mo>ﳚ</mo>-      </mtd>-      <mtd>-        <mo>ﳪ</mo>-      </mtd>-      <mtd>-        <mo>ﳺ</mo>-      </mtd>-      <mtd>-        <mo>ﴊ</mo>-      </mtd>-      <mtd>-        <mo>ﴚ</mo>-      </mtd>-      <mtd>-        <mo>ﴪ</mo>-      </mtd>-      <mtd>-        <mo>ﴺ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵚ</mo>-      </mtd>-      <mtd>-        <mo>ﵪ</mo>-      </mtd>-      <mtd>-        <mo>ﵺ</mo>-      </mtd>-      <mtd>-        <mo>ﶊ</mo>-      </mtd>-      <mtd>-        <mo>ﶚ</mo>-      </mtd>-      <mtd>-        <mo>ﶪ</mo>-      </mtd>-      <mtd>-        <mo>ﶺ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷺ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">B</mtext>-      </mtd>-      <mtd>-        <mo>ﭛ</mo>-      </mtd>-      <mtd>-        <mo>ﭫ</mo>-      </mtd>-      <mtd>-        <mo>ﭻ</mo>-      </mtd>-      <mtd>-        <mo>ﮋ</mo>-      </mtd>-      <mtd>-        <mo>ﮛ</mo>-      </mtd>-      <mtd>-        <mo>ﮫ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯛ</mo>-      </mtd>-      <mtd>-        <mo>ﯫ</mo>-      </mtd>-      <mtd>-        <mo>ﯻ</mo>-      </mtd>-      <mtd>-        <mo>ﰋ</mo>-      </mtd>-      <mtd>-        <mo>ﰛ</mo>-      </mtd>-      <mtd>-        <mo>ﰫ</mo>-      </mtd>-      <mtd>-        <mo>ﰻ</mo>-      </mtd>-      <mtd>-        <mo>ﱋ</mo>-      </mtd>-      <mtd>-        <mo>ﱛ</mo>-      </mtd>-      <mtd>-        <mo>ﱫ</mo>-      </mtd>-      <mtd>-        <mo>ﱻ</mo>-      </mtd>-      <mtd>-        <mo>ﲋ</mo>-      </mtd>-      <mtd>-        <mo>ﲛ</mo>-      </mtd>-      <mtd>-        <mo>ﲫ</mo>-      </mtd>-      <mtd>-        <mo>ﲻ</mo>-      </mtd>-      <mtd>-        <mo>ﳋ</mo>-      </mtd>-      <mtd>-        <mo>ﳛ</mo>-      </mtd>-      <mtd>-        <mo>ﳫ</mo>-      </mtd>-      <mtd>-        <mo>ﳻ</mo>-      </mtd>-      <mtd>-        <mo>ﴋ</mo>-      </mtd>-      <mtd>-        <mo>ﴛ</mo>-      </mtd>-      <mtd>-        <mo>ﴫ</mo>-      </mtd>-      <mtd>-        <mo>ﴻ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵛ</mo>-      </mtd>-      <mtd>-        <mo>ﵫ</mo>-      </mtd>-      <mtd>-        <mo>ﵻ</mo>-      </mtd>-      <mtd>-        <mo>ﶋ</mo>-      </mtd>-      <mtd>-        <mo>ﶛ</mo>-      </mtd>-      <mtd>-        <mo>ﶫ</mo>-      </mtd>-      <mtd>-        <mo>ﶻ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﷻ</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">C</mtext>-      </mtd>-      <mtd>-        <mo>ﭜ</mo>-      </mtd>-      <mtd>-        <mo>ﭬ</mo>-      </mtd>-      <mtd>-        <mo>ﭼ</mo>-      </mtd>-      <mtd>-        <mo>ﮌ</mo>-      </mtd>-      <mtd>-        <mo>ﮜ</mo>-      </mtd>-      <mtd>-        <mo>ﮬ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯜ</mo>-      </mtd>-      <mtd>-        <mo>ﯬ</mo>-      </mtd>-      <mtd>-        <mo>ﯼ</mo>-      </mtd>-      <mtd>-        <mo>ﰌ</mo>-      </mtd>-      <mtd>-        <mo>ﰜ</mo>-      </mtd>-      <mtd>-        <mo>ﰬ</mo>-      </mtd>-      <mtd>-        <mo>ﰼ</mo>-      </mtd>-      <mtd>-        <mo>ﱌ</mo>-      </mtd>-      <mtd>-        <mo>ﱜ</mo>-      </mtd>-      <mtd>-        <mo>ﱬ</mo>-      </mtd>-      <mtd>-        <mo>ﱼ</mo>-      </mtd>-      <mtd>-        <mo>ﲌ</mo>-      </mtd>-      <mtd>-        <mo>ﲜ</mo>-      </mtd>-      <mtd>-        <mo>ﲬ</mo>-      </mtd>-      <mtd>-        <mo>ﲼ</mo>-      </mtd>-      <mtd>-        <mo>ﳌ</mo>-      </mtd>-      <mtd>-        <mo>ﳜ</mo>-      </mtd>-      <mtd>-        <mo>ﳬ</mo>-      </mtd>-      <mtd>-        <mo>ﳼ</mo>-      </mtd>-      <mtd>-        <mo>ﴌ</mo>-      </mtd>-      <mtd>-        <mo>ﴜ</mo>-      </mtd>-      <mtd>-        <mo>ﴬ</mo>-      </mtd>-      <mtd>-        <mo>ﴼ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵜ</mo>-      </mtd>-      <mtd>-        <mo>ﵬ</mo>-      </mtd>-      <mtd>-        <mo>ﵼ</mo>-      </mtd>-      <mtd>-        <mo>ﶌ</mo>-      </mtd>-      <mtd>-        <mo>ﶜ</mo>-      </mtd>-      <mtd>-        <mo>ﶬ</mo>-      </mtd>-      <mtd>-        <mo>ﶼ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>﷼</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">D</mtext>-      </mtd>-      <mtd>-        <mo>ﭝ</mo>-      </mtd>-      <mtd>-        <mo>ﭭ</mo>-      </mtd>-      <mtd>-        <mo>ﭽ</mo>-      </mtd>-      <mtd>-        <mo>ﮍ</mo>-      </mtd>-      <mtd>-        <mo>ﮝ</mo>-      </mtd>-      <mtd>-        <mo>ﮭ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯝ</mo>-      </mtd>-      <mtd>-        <mo>ﯭ</mo>-      </mtd>-      <mtd>-        <mo>ﯽ</mo>-      </mtd>-      <mtd>-        <mo>ﰍ</mo>-      </mtd>-      <mtd>-        <mo>ﰝ</mo>-      </mtd>-      <mtd>-        <mo>ﰭ</mo>-      </mtd>-      <mtd>-        <mo>ﰽ</mo>-      </mtd>-      <mtd>-        <mo>ﱍ</mo>-      </mtd>-      <mtd>-        <mo>ﱝ</mo>-      </mtd>-      <mtd>-        <mo>ﱭ</mo>-      </mtd>-      <mtd>-        <mo>ﱽ</mo>-      </mtd>-      <mtd>-        <mo>ﲍ</mo>-      </mtd>-      <mtd>-        <mo>ﲝ</mo>-      </mtd>-      <mtd>-        <mo>ﲭ</mo>-      </mtd>-      <mtd>-        <mo>ﲽ</mo>-      </mtd>-      <mtd>-        <mo>ﳍ</mo>-      </mtd>-      <mtd>-        <mo>ﳝ</mo>-      </mtd>-      <mtd>-        <mo>ﳭ</mo>-      </mtd>-      <mtd>-        <mo>ﳽ</mo>-      </mtd>-      <mtd>-        <mo>ﴍ</mo>-      </mtd>-      <mtd>-        <mo>ﴝ</mo>-      </mtd>-      <mtd>-        <mo>ﴭ</mo>-      </mtd>-      <mtd>-        <mo>ﴽ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵝ</mo>-      </mtd>-      <mtd>-        <mo>ﵭ</mo>-      </mtd>-      <mtd>-        <mo>ﵽ</mo>-      </mtd>-      <mtd>-        <mo>ﶍ</mo>-      </mtd>-      <mtd>-        <mo>ﶝ</mo>-      </mtd>-      <mtd>-        <mo>ﶭ</mo>-      </mtd>-      <mtd>-        <mo>ﶽ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>﷽</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">E</mtext>-      </mtd>-      <mtd>-        <mo>ﭞ</mo>-      </mtd>-      <mtd>-        <mo>ﭮ</mo>-      </mtd>-      <mtd>-        <mo>ﭾ</mo>-      </mtd>-      <mtd>-        <mo>ﮎ</mo>-      </mtd>-      <mtd>-        <mo>ﮞ</mo>-      </mtd>-      <mtd>-        <mo>ﮮ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯞ</mo>-      </mtd>-      <mtd>-        <mo>ﯮ</mo>-      </mtd>-      <mtd>-        <mo>ﯾ</mo>-      </mtd>-      <mtd>-        <mo>ﰎ</mo>-      </mtd>-      <mtd>-        <mo>ﰞ</mo>-      </mtd>-      <mtd>-        <mo>ﰮ</mo>-      </mtd>-      <mtd>-        <mo>ﰾ</mo>-      </mtd>-      <mtd>-        <mo>ﱎ</mo>-      </mtd>-      <mtd>-        <mo>ﱞ</mo>-      </mtd>-      <mtd>-        <mo>ﱮ</mo>-      </mtd>-      <mtd>-        <mo>ﱾ</mo>-      </mtd>-      <mtd>-        <mo>ﲎ</mo>-      </mtd>-      <mtd>-        <mo>ﲞ</mo>-      </mtd>-      <mtd>-        <mo>ﲮ</mo>-      </mtd>-      <mtd>-        <mo>ﲾ</mo>-      </mtd>-      <mtd>-        <mo>ﳎ</mo>-      </mtd>-      <mtd>-        <mo>ﳞ</mo>-      </mtd>-      <mtd>-        <mo>ﳮ</mo>-      </mtd>-      <mtd>-        <mo>ﳾ</mo>-      </mtd>-      <mtd>-        <mo>ﴎ</mo>-      </mtd>-      <mtd>-        <mo>ﴞ</mo>-      </mtd>-      <mtd>-        <mo>ﴮ</mo>-      </mtd>-      <mtd>-        <mo>﴾</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵞ</mo>-      </mtd>-      <mtd>-        <mo>ﵮ</mo>-      </mtd>-      <mtd>-        <mo>ﵾ</mo>-      </mtd>-      <mtd>-        <mo>ﶎ</mo>-      </mtd>-      <mtd>-        <mo>ﶞ</mo>-      </mtd>-      <mtd>-        <mo>ﶮ</mo>-      </mtd>-      <mtd>-        <mo>ﶾ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">F</mtext>-      </mtd>-      <mtd>-        <mo>ﭟ</mo>-      </mtd>-      <mtd>-        <mo>ﭯ</mo>-      </mtd>-      <mtd>-        <mo>ﭿ</mo>-      </mtd>-      <mtd>-        <mo>ﮏ</mo>-      </mtd>-      <mtd>-        <mo>ﮟ</mo>-      </mtd>-      <mtd>-        <mo>ﮯ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﯟ</mo>-      </mtd>-      <mtd>-        <mo>ﯯ</mo>-      </mtd>-      <mtd>-        <mo>ﯿ</mo>-      </mtd>-      <mtd>-        <mo>ﰏ</mo>-      </mtd>-      <mtd>-        <mo>ﰟ</mo>-      </mtd>-      <mtd>-        <mo>ﰯ</mo>-      </mtd>-      <mtd>-        <mo>ﰿ</mo>-      </mtd>-      <mtd>-        <mo>ﱏ</mo>-      </mtd>-      <mtd>-        <mo>ﱟ</mo>-      </mtd>-      <mtd>-        <mo>ﱯ</mo>-      </mtd>-      <mtd>-        <mo>ﱿ</mo>-      </mtd>-      <mtd>-        <mo>ﲏ</mo>-      </mtd>-      <mtd>-        <mo>ﲟ</mo>-      </mtd>-      <mtd>-        <mo>ﲯ</mo>-      </mtd>-      <mtd>-        <mo>ﲿ</mo>-      </mtd>-      <mtd>-        <mo>ﳏ</mo>-      </mtd>-      <mtd>-        <mo>ﳟ</mo>-      </mtd>-      <mtd>-        <mo>ﳯ</mo>-      </mtd>-      <mtd>-        <mo>ﳿ</mo>-      </mtd>-      <mtd>-        <mo>ﴏ</mo>-      </mtd>-      <mtd>-        <mo>ﴟ</mo>-      </mtd>-      <mtd>-        <mo>ﴯ</mo>-      </mtd>-      <mtd>-        <mo>﴿</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>ﵟ</mo>-      </mtd>-      <mtd>-        <mo>ﵯ</mo>-      </mtd>-      <mtd>-        <mo>ﵿ</mo>-      </mtd>-      <mtd>-        <mo>ﶏ</mo>-      </mtd>-      <mtd>-        <mo>ﶟ</mo>-      </mtd>-      <mtd>-        <mo>ﶯ</mo>-      </mtd>-      <mtd>-        <mo>ﶿ</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>-      </mtd>-      <mtd>-        <mo>@</mo>+        <mi>ﭐ</mi>+      </mtd>+      <mtd>+        <mi>ﭠ</mi>+      </mtd>+      <mtd>+        <mi>ﭰ</mi>+      </mtd>+      <mtd>+        <mi>ﮀ</mi>+      </mtd>+      <mtd>+        <mi>ﮐ</mi>+      </mtd>+      <mtd>+        <mi>ﮠ</mi>+      </mtd>+      <mtd>+        <mi>ﮰ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯠ</mi>+      </mtd>+      <mtd>+        <mi>ﯰ</mi>+      </mtd>+      <mtd>+        <mi>ﰀ</mi>+      </mtd>+      <mtd>+        <mi>ﰐ</mi>+      </mtd>+      <mtd>+        <mi>ﰠ</mi>+      </mtd>+      <mtd>+        <mi>ﰰ</mi>+      </mtd>+      <mtd>+        <mi>ﱀ</mi>+      </mtd>+      <mtd>+        <mi>ﱐ</mi>+      </mtd>+      <mtd>+        <mi>ﱠ</mi>+      </mtd>+      <mtd>+        <mi>ﱰ</mi>+      </mtd>+      <mtd>+        <mi>ﲀ</mi>+      </mtd>+      <mtd>+        <mi>ﲐ</mi>+      </mtd>+      <mtd>+        <mi>ﲠ</mi>+      </mtd>+      <mtd>+        <mi>ﲰ</mi>+      </mtd>+      <mtd>+        <mi>ﳀ</mi>+      </mtd>+      <mtd>+        <mi>ﳐ</mi>+      </mtd>+      <mtd>+        <mi>ﳠ</mi>+      </mtd>+      <mtd>+        <mi>ﳰ</mi>+      </mtd>+      <mtd>+        <mi>ﴀ</mi>+      </mtd>+      <mtd>+        <mi>ﴐ</mi>+      </mtd>+      <mtd>+        <mi>ﴠ</mi>+      </mtd>+      <mtd>+        <mi>ﴰ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵐ</mi>+      </mtd>+      <mtd>+        <mi>ﵠ</mi>+      </mtd>+      <mtd>+        <mi>ﵰ</mi>+      </mtd>+      <mtd>+        <mi>ﶀ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﶠ</mi>+      </mtd>+      <mtd>+        <mi>ﶰ</mi>+      </mtd>+      <mtd>+        <mi>ﷀ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷰ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">1</mtext>+      </mtd>+      <mtd>+        <mi>ﭑ</mi>+      </mtd>+      <mtd>+        <mi>ﭡ</mi>+      </mtd>+      <mtd>+        <mi>ﭱ</mi>+      </mtd>+      <mtd>+        <mi>ﮁ</mi>+      </mtd>+      <mtd>+        <mi>ﮑ</mi>+      </mtd>+      <mtd>+        <mi>ﮡ</mi>+      </mtd>+      <mtd>+        <mi>ﮱ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯡ</mi>+      </mtd>+      <mtd>+        <mi>ﯱ</mi>+      </mtd>+      <mtd>+        <mi>ﰁ</mi>+      </mtd>+      <mtd>+        <mi>ﰑ</mi>+      </mtd>+      <mtd>+        <mi>ﰡ</mi>+      </mtd>+      <mtd>+        <mi>ﰱ</mi>+      </mtd>+      <mtd>+        <mi>ﱁ</mi>+      </mtd>+      <mtd>+        <mi>ﱑ</mi>+      </mtd>+      <mtd>+        <mi>ﱡ</mi>+      </mtd>+      <mtd>+        <mi>ﱱ</mi>+      </mtd>+      <mtd>+        <mi>ﲁ</mi>+      </mtd>+      <mtd>+        <mi>ﲑ</mi>+      </mtd>+      <mtd>+        <mi>ﲡ</mi>+      </mtd>+      <mtd>+        <mi>ﲱ</mi>+      </mtd>+      <mtd>+        <mi>ﳁ</mi>+      </mtd>+      <mtd>+        <mi>ﳑ</mi>+      </mtd>+      <mtd>+        <mi>ﳡ</mi>+      </mtd>+      <mtd>+        <mi>ﳱ</mi>+      </mtd>+      <mtd>+        <mi>ﴁ</mi>+      </mtd>+      <mtd>+        <mi>ﴑ</mi>+      </mtd>+      <mtd>+        <mi>ﴡ</mi>+      </mtd>+      <mtd>+        <mi>ﴱ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵑ</mi>+      </mtd>+      <mtd>+        <mi>ﵡ</mi>+      </mtd>+      <mtd>+        <mi>ﵱ</mi>+      </mtd>+      <mtd>+        <mi>ﶁ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﶡ</mi>+      </mtd>+      <mtd>+        <mi>ﶱ</mi>+      </mtd>+      <mtd>+        <mi>ﷁ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷱ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">2</mtext>+      </mtd>+      <mtd>+        <mi>ﭒ</mi>+      </mtd>+      <mtd>+        <mi>ﭢ</mi>+      </mtd>+      <mtd>+        <mi>ﭲ</mi>+      </mtd>+      <mtd>+        <mi>ﮂ</mi>+      </mtd>+      <mtd>+        <mi>ﮒ</mi>+      </mtd>+      <mtd>+        <mi>ﮢ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯢ</mi>+      </mtd>+      <mtd>+        <mi>ﯲ</mi>+      </mtd>+      <mtd>+        <mi>ﰂ</mi>+      </mtd>+      <mtd>+        <mi>ﰒ</mi>+      </mtd>+      <mtd>+        <mi>ﰢ</mi>+      </mtd>+      <mtd>+        <mi>ﰲ</mi>+      </mtd>+      <mtd>+        <mi>ﱂ</mi>+      </mtd>+      <mtd>+        <mi>ﱒ</mi>+      </mtd>+      <mtd>+        <mi>ﱢ</mi>+      </mtd>+      <mtd>+        <mi>ﱲ</mi>+      </mtd>+      <mtd>+        <mi>ﲂ</mi>+      </mtd>+      <mtd>+        <mi>ﲒ</mi>+      </mtd>+      <mtd>+        <mi>ﲢ</mi>+      </mtd>+      <mtd>+        <mi>ﲲ</mi>+      </mtd>+      <mtd>+        <mi>ﳂ</mi>+      </mtd>+      <mtd>+        <mi>ﳒ</mi>+      </mtd>+      <mtd>+        <mi>ﳢ</mi>+      </mtd>+      <mtd>+        <mi>ﳲ</mi>+      </mtd>+      <mtd>+        <mi>ﴂ</mi>+      </mtd>+      <mtd>+        <mi>ﴒ</mi>+      </mtd>+      <mtd>+        <mi>ﴢ</mi>+      </mtd>+      <mtd>+        <mi>ﴲ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵒ</mi>+      </mtd>+      <mtd>+        <mi>ﵢ</mi>+      </mtd>+      <mtd>+        <mi>ﵲ</mi>+      </mtd>+      <mtd>+        <mi>ﶂ</mi>+      </mtd>+      <mtd>+        <mi>ﶒ</mi>+      </mtd>+      <mtd>+        <mi>ﶢ</mi>+      </mtd>+      <mtd>+        <mi>ﶲ</mi>+      </mtd>+      <mtd>+        <mi>ﷂ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷲ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">3</mtext>+      </mtd>+      <mtd>+        <mi>ﭓ</mi>+      </mtd>+      <mtd>+        <mi>ﭣ</mi>+      </mtd>+      <mtd>+        <mi>ﭳ</mi>+      </mtd>+      <mtd>+        <mi>ﮃ</mi>+      </mtd>+      <mtd>+        <mi>ﮓ</mi>+      </mtd>+      <mtd>+        <mi>ﮣ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯓ</mi>+      </mtd>+      <mtd>+        <mi>ﯣ</mi>+      </mtd>+      <mtd>+        <mi>ﯳ</mi>+      </mtd>+      <mtd>+        <mi>ﰃ</mi>+      </mtd>+      <mtd>+        <mi>ﰓ</mi>+      </mtd>+      <mtd>+        <mi>ﰣ</mi>+      </mtd>+      <mtd>+        <mi>ﰳ</mi>+      </mtd>+      <mtd>+        <mi>ﱃ</mi>+      </mtd>+      <mtd>+        <mi>ﱓ</mi>+      </mtd>+      <mtd>+        <mi>ﱣ</mi>+      </mtd>+      <mtd>+        <mi>ﱳ</mi>+      </mtd>+      <mtd>+        <mi>ﲃ</mi>+      </mtd>+      <mtd>+        <mi>ﲓ</mi>+      </mtd>+      <mtd>+        <mi>ﲣ</mi>+      </mtd>+      <mtd>+        <mi>ﲳ</mi>+      </mtd>+      <mtd>+        <mi>ﳃ</mi>+      </mtd>+      <mtd>+        <mi>ﳓ</mi>+      </mtd>+      <mtd>+        <mi>ﳣ</mi>+      </mtd>+      <mtd>+        <mi>ﳳ</mi>+      </mtd>+      <mtd>+        <mi>ﴃ</mi>+      </mtd>+      <mtd>+        <mi>ﴓ</mi>+      </mtd>+      <mtd>+        <mi>ﴣ</mi>+      </mtd>+      <mtd>+        <mi>ﴳ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵓ</mi>+      </mtd>+      <mtd>+        <mi>ﵣ</mi>+      </mtd>+      <mtd>+        <mi>ﵳ</mi>+      </mtd>+      <mtd>+        <mi>ﶃ</mi>+      </mtd>+      <mtd>+        <mi>ﶓ</mi>+      </mtd>+      <mtd>+        <mi>ﶣ</mi>+      </mtd>+      <mtd>+        <mi>ﶳ</mi>+      </mtd>+      <mtd>+        <mi>ﷃ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷳ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">4</mtext>+      </mtd>+      <mtd>+        <mi>ﭔ</mi>+      </mtd>+      <mtd>+        <mi>ﭤ</mi>+      </mtd>+      <mtd>+        <mi>ﭴ</mi>+      </mtd>+      <mtd>+        <mi>ﮄ</mi>+      </mtd>+      <mtd>+        <mi>ﮔ</mi>+      </mtd>+      <mtd>+        <mi>ﮤ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯔ</mi>+      </mtd>+      <mtd>+        <mi>ﯤ</mi>+      </mtd>+      <mtd>+        <mi>ﯴ</mi>+      </mtd>+      <mtd>+        <mi>ﰄ</mi>+      </mtd>+      <mtd>+        <mi>ﰔ</mi>+      </mtd>+      <mtd>+        <mi>ﰤ</mi>+      </mtd>+      <mtd>+        <mi>ﰴ</mi>+      </mtd>+      <mtd>+        <mi>ﱄ</mi>+      </mtd>+      <mtd>+        <mi>ﱔ</mi>+      </mtd>+      <mtd>+        <mi>ﱤ</mi>+      </mtd>+      <mtd>+        <mi>ﱴ</mi>+      </mtd>+      <mtd>+        <mi>ﲄ</mi>+      </mtd>+      <mtd>+        <mi>ﲔ</mi>+      </mtd>+      <mtd>+        <mi>ﲤ</mi>+      </mtd>+      <mtd>+        <mi>ﲴ</mi>+      </mtd>+      <mtd>+        <mi>ﳄ</mi>+      </mtd>+      <mtd>+        <mi>ﳔ</mi>+      </mtd>+      <mtd>+        <mi>ﳤ</mi>+      </mtd>+      <mtd>+        <mi>ﳴ</mi>+      </mtd>+      <mtd>+        <mi>ﴄ</mi>+      </mtd>+      <mtd>+        <mi>ﴔ</mi>+      </mtd>+      <mtd>+        <mi>ﴤ</mi>+      </mtd>+      <mtd>+        <mi>ﴴ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵔ</mi>+      </mtd>+      <mtd>+        <mi>ﵤ</mi>+      </mtd>+      <mtd>+        <mi>ﵴ</mi>+      </mtd>+      <mtd>+        <mi>ﶄ</mi>+      </mtd>+      <mtd>+        <mi>ﶔ</mi>+      </mtd>+      <mtd>+        <mi>ﶤ</mi>+      </mtd>+      <mtd>+        <mi>ﶴ</mi>+      </mtd>+      <mtd>+        <mi>ﷄ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷴ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">5</mtext>+      </mtd>+      <mtd>+        <mi>ﭕ</mi>+      </mtd>+      <mtd>+        <mi>ﭥ</mi>+      </mtd>+      <mtd>+        <mi>ﭵ</mi>+      </mtd>+      <mtd>+        <mi>ﮅ</mi>+      </mtd>+      <mtd>+        <mi>ﮕ</mi>+      </mtd>+      <mtd>+        <mi>ﮥ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯕ</mi>+      </mtd>+      <mtd>+        <mi>ﯥ</mi>+      </mtd>+      <mtd>+        <mi>ﯵ</mi>+      </mtd>+      <mtd>+        <mi>ﰅ</mi>+      </mtd>+      <mtd>+        <mi>ﰕ</mi>+      </mtd>+      <mtd>+        <mi>ﰥ</mi>+      </mtd>+      <mtd>+        <mi>ﰵ</mi>+      </mtd>+      <mtd>+        <mi>ﱅ</mi>+      </mtd>+      <mtd>+        <mi>ﱕ</mi>+      </mtd>+      <mtd>+        <mi>ﱥ</mi>+      </mtd>+      <mtd>+        <mi>ﱵ</mi>+      </mtd>+      <mtd>+        <mi>ﲅ</mi>+      </mtd>+      <mtd>+        <mi>ﲕ</mi>+      </mtd>+      <mtd>+        <mi>ﲥ</mi>+      </mtd>+      <mtd>+        <mi>ﲵ</mi>+      </mtd>+      <mtd>+        <mi>ﳅ</mi>+      </mtd>+      <mtd>+        <mi>ﳕ</mi>+      </mtd>+      <mtd>+        <mi>ﳥ</mi>+      </mtd>+      <mtd>+        <mi>ﳵ</mi>+      </mtd>+      <mtd>+        <mi>ﴅ</mi>+      </mtd>+      <mtd>+        <mi>ﴕ</mi>+      </mtd>+      <mtd>+        <mi>ﴥ</mi>+      </mtd>+      <mtd>+        <mi>ﴵ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵕ</mi>+      </mtd>+      <mtd>+        <mi>ﵥ</mi>+      </mtd>+      <mtd>+        <mi>ﵵ</mi>+      </mtd>+      <mtd>+        <mi>ﶅ</mi>+      </mtd>+      <mtd>+        <mi>ﶕ</mi>+      </mtd>+      <mtd>+        <mi>ﶥ</mi>+      </mtd>+      <mtd>+        <mi>ﶵ</mi>+      </mtd>+      <mtd>+        <mi>ﷅ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷵ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">6</mtext>+      </mtd>+      <mtd>+        <mi>ﭖ</mi>+      </mtd>+      <mtd>+        <mi>ﭦ</mi>+      </mtd>+      <mtd>+        <mi>ﭶ</mi>+      </mtd>+      <mtd>+        <mi>ﮆ</mi>+      </mtd>+      <mtd>+        <mi>ﮖ</mi>+      </mtd>+      <mtd>+        <mi>ﮦ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯖ</mi>+      </mtd>+      <mtd>+        <mi>ﯦ</mi>+      </mtd>+      <mtd>+        <mi>ﯶ</mi>+      </mtd>+      <mtd>+        <mi>ﰆ</mi>+      </mtd>+      <mtd>+        <mi>ﰖ</mi>+      </mtd>+      <mtd>+        <mi>ﰦ</mi>+      </mtd>+      <mtd>+        <mi>ﰶ</mi>+      </mtd>+      <mtd>+        <mi>ﱆ</mi>+      </mtd>+      <mtd>+        <mi>ﱖ</mi>+      </mtd>+      <mtd>+        <mi>ﱦ</mi>+      </mtd>+      <mtd>+        <mi>ﱶ</mi>+      </mtd>+      <mtd>+        <mi>ﲆ</mi>+      </mtd>+      <mtd>+        <mi>ﲖ</mi>+      </mtd>+      <mtd>+        <mi>ﲦ</mi>+      </mtd>+      <mtd>+        <mi>ﲶ</mi>+      </mtd>+      <mtd>+        <mi>ﳆ</mi>+      </mtd>+      <mtd>+        <mi>ﳖ</mi>+      </mtd>+      <mtd>+        <mi>ﳦ</mi>+      </mtd>+      <mtd>+        <mi>ﳶ</mi>+      </mtd>+      <mtd>+        <mi>ﴆ</mi>+      </mtd>+      <mtd>+        <mi>ﴖ</mi>+      </mtd>+      <mtd>+        <mi>ﴦ</mi>+      </mtd>+      <mtd>+        <mi>ﴶ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵖ</mi>+      </mtd>+      <mtd>+        <mi>ﵦ</mi>+      </mtd>+      <mtd>+        <mi>ﵶ</mi>+      </mtd>+      <mtd>+        <mi>ﶆ</mi>+      </mtd>+      <mtd>+        <mi>ﶖ</mi>+      </mtd>+      <mtd>+        <mi>ﶦ</mi>+      </mtd>+      <mtd>+        <mi>ﶶ</mi>+      </mtd>+      <mtd>+        <mi>ﷆ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷶ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">7</mtext>+      </mtd>+      <mtd>+        <mi>ﭗ</mi>+      </mtd>+      <mtd>+        <mi>ﭧ</mi>+      </mtd>+      <mtd>+        <mi>ﭷ</mi>+      </mtd>+      <mtd>+        <mi>ﮇ</mi>+      </mtd>+      <mtd>+        <mi>ﮗ</mi>+      </mtd>+      <mtd>+        <mi>ﮧ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯗ</mi>+      </mtd>+      <mtd>+        <mi>ﯧ</mi>+      </mtd>+      <mtd>+        <mi>ﯷ</mi>+      </mtd>+      <mtd>+        <mi>ﰇ</mi>+      </mtd>+      <mtd>+        <mi>ﰗ</mi>+      </mtd>+      <mtd>+        <mi>ﰧ</mi>+      </mtd>+      <mtd>+        <mi>ﰷ</mi>+      </mtd>+      <mtd>+        <mi>ﱇ</mi>+      </mtd>+      <mtd>+        <mi>ﱗ</mi>+      </mtd>+      <mtd>+        <mi>ﱧ</mi>+      </mtd>+      <mtd>+        <mi>ﱷ</mi>+      </mtd>+      <mtd>+        <mi>ﲇ</mi>+      </mtd>+      <mtd>+        <mi>ﲗ</mi>+      </mtd>+      <mtd>+        <mi>ﲧ</mi>+      </mtd>+      <mtd>+        <mi>ﲷ</mi>+      </mtd>+      <mtd>+        <mi>ﳇ</mi>+      </mtd>+      <mtd>+        <mi>ﳗ</mi>+      </mtd>+      <mtd>+        <mi>ﳧ</mi>+      </mtd>+      <mtd>+        <mi>ﳷ</mi>+      </mtd>+      <mtd>+        <mi>ﴇ</mi>+      </mtd>+      <mtd>+        <mi>ﴗ</mi>+      </mtd>+      <mtd>+        <mi>ﴧ</mi>+      </mtd>+      <mtd>+        <mi>ﴷ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵗ</mi>+      </mtd>+      <mtd>+        <mi>ﵧ</mi>+      </mtd>+      <mtd>+        <mi>ﵷ</mi>+      </mtd>+      <mtd>+        <mi>ﶇ</mi>+      </mtd>+      <mtd>+        <mi>ﶗ</mi>+      </mtd>+      <mtd>+        <mi>ﶧ</mi>+      </mtd>+      <mtd>+        <mi>ﶷ</mi>+      </mtd>+      <mtd>+        <mi>ﷇ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷷ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">8</mtext>+      </mtd>+      <mtd>+        <mi>ﭘ</mi>+      </mtd>+      <mtd>+        <mi>ﭨ</mi>+      </mtd>+      <mtd>+        <mi>ﭸ</mi>+      </mtd>+      <mtd>+        <mi>ﮈ</mi>+      </mtd>+      <mtd>+        <mi>ﮘ</mi>+      </mtd>+      <mtd>+        <mi>ﮨ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯘ</mi>+      </mtd>+      <mtd>+        <mi>ﯨ</mi>+      </mtd>+      <mtd>+        <mi>ﯸ</mi>+      </mtd>+      <mtd>+        <mi>ﰈ</mi>+      </mtd>+      <mtd>+        <mi>ﰘ</mi>+      </mtd>+      <mtd>+        <mi>ﰨ</mi>+      </mtd>+      <mtd>+        <mi>ﰸ</mi>+      </mtd>+      <mtd>+        <mi>ﱈ</mi>+      </mtd>+      <mtd>+        <mi>ﱘ</mi>+      </mtd>+      <mtd>+        <mi>ﱨ</mi>+      </mtd>+      <mtd>+        <mi>ﱸ</mi>+      </mtd>+      <mtd>+        <mi>ﲈ</mi>+      </mtd>+      <mtd>+        <mi>ﲘ</mi>+      </mtd>+      <mtd>+        <mi>ﲨ</mi>+      </mtd>+      <mtd>+        <mi>ﲸ</mi>+      </mtd>+      <mtd>+        <mi>ﳈ</mi>+      </mtd>+      <mtd>+        <mi>ﳘ</mi>+      </mtd>+      <mtd>+        <mi>ﳨ</mi>+      </mtd>+      <mtd>+        <mi>ﳸ</mi>+      </mtd>+      <mtd>+        <mi>ﴈ</mi>+      </mtd>+      <mtd>+        <mi>ﴘ</mi>+      </mtd>+      <mtd>+        <mi>ﴨ</mi>+      </mtd>+      <mtd>+        <mi>ﴸ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵘ</mi>+      </mtd>+      <mtd>+        <mi>ﵨ</mi>+      </mtd>+      <mtd>+        <mi>ﵸ</mi>+      </mtd>+      <mtd>+        <mi>ﶈ</mi>+      </mtd>+      <mtd>+        <mi>ﶘ</mi>+      </mtd>+      <mtd>+        <mi>ﶨ</mi>+      </mtd>+      <mtd>+        <mi>ﶸ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷸ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">9</mtext>+      </mtd>+      <mtd>+        <mi>ﭙ</mi>+      </mtd>+      <mtd>+        <mi>ﭩ</mi>+      </mtd>+      <mtd>+        <mi>ﭹ</mi>+      </mtd>+      <mtd>+        <mi>ﮉ</mi>+      </mtd>+      <mtd>+        <mi>ﮙ</mi>+      </mtd>+      <mtd>+        <mi>ﮩ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯙ</mi>+      </mtd>+      <mtd>+        <mi>ﯩ</mi>+      </mtd>+      <mtd>+        <mi>ﯹ</mi>+      </mtd>+      <mtd>+        <mi>ﰉ</mi>+      </mtd>+      <mtd>+        <mi>ﰙ</mi>+      </mtd>+      <mtd>+        <mi>ﰩ</mi>+      </mtd>+      <mtd>+        <mi>ﰹ</mi>+      </mtd>+      <mtd>+        <mi>ﱉ</mi>+      </mtd>+      <mtd>+        <mi>ﱙ</mi>+      </mtd>+      <mtd>+        <mi>ﱩ</mi>+      </mtd>+      <mtd>+        <mi>ﱹ</mi>+      </mtd>+      <mtd>+        <mi>ﲉ</mi>+      </mtd>+      <mtd>+        <mi>ﲙ</mi>+      </mtd>+      <mtd>+        <mi>ﲩ</mi>+      </mtd>+      <mtd>+        <mi>ﲹ</mi>+      </mtd>+      <mtd>+        <mi>ﳉ</mi>+      </mtd>+      <mtd>+        <mi>ﳙ</mi>+      </mtd>+      <mtd>+        <mi>ﳩ</mi>+      </mtd>+      <mtd>+        <mi>ﳹ</mi>+      </mtd>+      <mtd>+        <mi>ﴉ</mi>+      </mtd>+      <mtd>+        <mi>ﴙ</mi>+      </mtd>+      <mtd>+        <mi>ﴩ</mi>+      </mtd>+      <mtd>+        <mi>ﴹ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵙ</mi>+      </mtd>+      <mtd>+        <mi>ﵩ</mi>+      </mtd>+      <mtd>+        <mi>ﵹ</mi>+      </mtd>+      <mtd>+        <mi>ﶉ</mi>+      </mtd>+      <mtd>+        <mi>ﶙ</mi>+      </mtd>+      <mtd>+        <mi>ﶩ</mi>+      </mtd>+      <mtd>+        <mi>ﶹ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷹ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">A</mtext>+      </mtd>+      <mtd>+        <mi>ﭚ</mi>+      </mtd>+      <mtd>+        <mi>ﭪ</mi>+      </mtd>+      <mtd>+        <mi>ﭺ</mi>+      </mtd>+      <mtd>+        <mi>ﮊ</mi>+      </mtd>+      <mtd>+        <mi>ﮚ</mi>+      </mtd>+      <mtd>+        <mi>ﮪ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯚ</mi>+      </mtd>+      <mtd>+        <mi>ﯪ</mi>+      </mtd>+      <mtd>+        <mi>ﯺ</mi>+      </mtd>+      <mtd>+        <mi>ﰊ</mi>+      </mtd>+      <mtd>+        <mi>ﰚ</mi>+      </mtd>+      <mtd>+        <mi>ﰪ</mi>+      </mtd>+      <mtd>+        <mi>ﰺ</mi>+      </mtd>+      <mtd>+        <mi>ﱊ</mi>+      </mtd>+      <mtd>+        <mi>ﱚ</mi>+      </mtd>+      <mtd>+        <mi>ﱪ</mi>+      </mtd>+      <mtd>+        <mi>ﱺ</mi>+      </mtd>+      <mtd>+        <mi>ﲊ</mi>+      </mtd>+      <mtd>+        <mi>ﲚ</mi>+      </mtd>+      <mtd>+        <mi>ﲪ</mi>+      </mtd>+      <mtd>+        <mi>ﲺ</mi>+      </mtd>+      <mtd>+        <mi>ﳊ</mi>+      </mtd>+      <mtd>+        <mi>ﳚ</mi>+      </mtd>+      <mtd>+        <mi>ﳪ</mi>+      </mtd>+      <mtd>+        <mi>ﳺ</mi>+      </mtd>+      <mtd>+        <mi>ﴊ</mi>+      </mtd>+      <mtd>+        <mi>ﴚ</mi>+      </mtd>+      <mtd>+        <mi>ﴪ</mi>+      </mtd>+      <mtd>+        <mi>ﴺ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵚ</mi>+      </mtd>+      <mtd>+        <mi>ﵪ</mi>+      </mtd>+      <mtd>+        <mi>ﵺ</mi>+      </mtd>+      <mtd>+        <mi>ﶊ</mi>+      </mtd>+      <mtd>+        <mi>ﶚ</mi>+      </mtd>+      <mtd>+        <mi>ﶪ</mi>+      </mtd>+      <mtd>+        <mi>ﶺ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷺ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">B</mtext>+      </mtd>+      <mtd>+        <mi>ﭛ</mi>+      </mtd>+      <mtd>+        <mi>ﭫ</mi>+      </mtd>+      <mtd>+        <mi>ﭻ</mi>+      </mtd>+      <mtd>+        <mi>ﮋ</mi>+      </mtd>+      <mtd>+        <mi>ﮛ</mi>+      </mtd>+      <mtd>+        <mi>ﮫ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯛ</mi>+      </mtd>+      <mtd>+        <mi>ﯫ</mi>+      </mtd>+      <mtd>+        <mi>ﯻ</mi>+      </mtd>+      <mtd>+        <mi>ﰋ</mi>+      </mtd>+      <mtd>+        <mi>ﰛ</mi>+      </mtd>+      <mtd>+        <mi>ﰫ</mi>+      </mtd>+      <mtd>+        <mi>ﰻ</mi>+      </mtd>+      <mtd>+        <mi>ﱋ</mi>+      </mtd>+      <mtd>+        <mi>ﱛ</mi>+      </mtd>+      <mtd>+        <mi>ﱫ</mi>+      </mtd>+      <mtd>+        <mi>ﱻ</mi>+      </mtd>+      <mtd>+        <mi>ﲋ</mi>+      </mtd>+      <mtd>+        <mi>ﲛ</mi>+      </mtd>+      <mtd>+        <mi>ﲫ</mi>+      </mtd>+      <mtd>+        <mi>ﲻ</mi>+      </mtd>+      <mtd>+        <mi>ﳋ</mi>+      </mtd>+      <mtd>+        <mi>ﳛ</mi>+      </mtd>+      <mtd>+        <mi>ﳫ</mi>+      </mtd>+      <mtd>+        <mi>ﳻ</mi>+      </mtd>+      <mtd>+        <mi>ﴋ</mi>+      </mtd>+      <mtd>+        <mi>ﴛ</mi>+      </mtd>+      <mtd>+        <mi>ﴫ</mi>+      </mtd>+      <mtd>+        <mi>ﴻ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵛ</mi>+      </mtd>+      <mtd>+        <mi>ﵫ</mi>+      </mtd>+      <mtd>+        <mi>ﵻ</mi>+      </mtd>+      <mtd>+        <mi>ﶋ</mi>+      </mtd>+      <mtd>+        <mi>ﶛ</mi>+      </mtd>+      <mtd>+        <mi>ﶫ</mi>+      </mtd>+      <mtd>+        <mi>ﶻ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﷻ</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">C</mtext>+      </mtd>+      <mtd>+        <mi>ﭜ</mi>+      </mtd>+      <mtd>+        <mi>ﭬ</mi>+      </mtd>+      <mtd>+        <mi>ﭼ</mi>+      </mtd>+      <mtd>+        <mi>ﮌ</mi>+      </mtd>+      <mtd>+        <mi>ﮜ</mi>+      </mtd>+      <mtd>+        <mi>ﮬ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯜ</mi>+      </mtd>+      <mtd>+        <mi>ﯬ</mi>+      </mtd>+      <mtd>+        <mi>ﯼ</mi>+      </mtd>+      <mtd>+        <mi>ﰌ</mi>+      </mtd>+      <mtd>+        <mi>ﰜ</mi>+      </mtd>+      <mtd>+        <mi>ﰬ</mi>+      </mtd>+      <mtd>+        <mi>ﰼ</mi>+      </mtd>+      <mtd>+        <mi>ﱌ</mi>+      </mtd>+      <mtd>+        <mi>ﱜ</mi>+      </mtd>+      <mtd>+        <mi>ﱬ</mi>+      </mtd>+      <mtd>+        <mi>ﱼ</mi>+      </mtd>+      <mtd>+        <mi>ﲌ</mi>+      </mtd>+      <mtd>+        <mi>ﲜ</mi>+      </mtd>+      <mtd>+        <mi>ﲬ</mi>+      </mtd>+      <mtd>+        <mi>ﲼ</mi>+      </mtd>+      <mtd>+        <mi>ﳌ</mi>+      </mtd>+      <mtd>+        <mi>ﳜ</mi>+      </mtd>+      <mtd>+        <mi>ﳬ</mi>+      </mtd>+      <mtd>+        <mi>ﳼ</mi>+      </mtd>+      <mtd>+        <mi>ﴌ</mi>+      </mtd>+      <mtd>+        <mi>ﴜ</mi>+      </mtd>+      <mtd>+        <mi>ﴬ</mi>+      </mtd>+      <mtd>+        <mi>ﴼ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵜ</mi>+      </mtd>+      <mtd>+        <mi>ﵬ</mi>+      </mtd>+      <mtd>+        <mi>ﵼ</mi>+      </mtd>+      <mtd>+        <mi>ﶌ</mi>+      </mtd>+      <mtd>+        <mi>ﶜ</mi>+      </mtd>+      <mtd>+        <mi>ﶬ</mi>+      </mtd>+      <mtd>+        <mi>ﶼ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>﷼</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">D</mtext>+      </mtd>+      <mtd>+        <mi>ﭝ</mi>+      </mtd>+      <mtd>+        <mi>ﭭ</mi>+      </mtd>+      <mtd>+        <mi>ﭽ</mi>+      </mtd>+      <mtd>+        <mi>ﮍ</mi>+      </mtd>+      <mtd>+        <mi>ﮝ</mi>+      </mtd>+      <mtd>+        <mi>ﮭ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯝ</mi>+      </mtd>+      <mtd>+        <mi>ﯭ</mi>+      </mtd>+      <mtd>+        <mi>ﯽ</mi>+      </mtd>+      <mtd>+        <mi>ﰍ</mi>+      </mtd>+      <mtd>+        <mi>ﰝ</mi>+      </mtd>+      <mtd>+        <mi>ﰭ</mi>+      </mtd>+      <mtd>+        <mi>ﰽ</mi>+      </mtd>+      <mtd>+        <mi>ﱍ</mi>+      </mtd>+      <mtd>+        <mi>ﱝ</mi>+      </mtd>+      <mtd>+        <mi>ﱭ</mi>+      </mtd>+      <mtd>+        <mi>ﱽ</mi>+      </mtd>+      <mtd>+        <mi>ﲍ</mi>+      </mtd>+      <mtd>+        <mi>ﲝ</mi>+      </mtd>+      <mtd>+        <mi>ﲭ</mi>+      </mtd>+      <mtd>+        <mi>ﲽ</mi>+      </mtd>+      <mtd>+        <mi>ﳍ</mi>+      </mtd>+      <mtd>+        <mi>ﳝ</mi>+      </mtd>+      <mtd>+        <mi>ﳭ</mi>+      </mtd>+      <mtd>+        <mi>ﳽ</mi>+      </mtd>+      <mtd>+        <mi>ﴍ</mi>+      </mtd>+      <mtd>+        <mi>ﴝ</mi>+      </mtd>+      <mtd>+        <mi>ﴭ</mi>+      </mtd>+      <mtd>+        <mi>ﴽ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵝ</mi>+      </mtd>+      <mtd>+        <mi>ﵭ</mi>+      </mtd>+      <mtd>+        <mi>ﵽ</mi>+      </mtd>+      <mtd>+        <mi>ﶍ</mi>+      </mtd>+      <mtd>+        <mi>ﶝ</mi>+      </mtd>+      <mtd>+        <mi>ﶭ</mi>+      </mtd>+      <mtd>+        <mi>ﶽ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>﷽</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">E</mtext>+      </mtd>+      <mtd>+        <mi>ﭞ</mi>+      </mtd>+      <mtd>+        <mi>ﭮ</mi>+      </mtd>+      <mtd>+        <mi>ﭾ</mi>+      </mtd>+      <mtd>+        <mi>ﮎ</mi>+      </mtd>+      <mtd>+        <mi>ﮞ</mi>+      </mtd>+      <mtd>+        <mi>ﮮ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯞ</mi>+      </mtd>+      <mtd>+        <mi>ﯮ</mi>+      </mtd>+      <mtd>+        <mi>ﯾ</mi>+      </mtd>+      <mtd>+        <mi>ﰎ</mi>+      </mtd>+      <mtd>+        <mi>ﰞ</mi>+      </mtd>+      <mtd>+        <mi>ﰮ</mi>+      </mtd>+      <mtd>+        <mi>ﰾ</mi>+      </mtd>+      <mtd>+        <mi>ﱎ</mi>+      </mtd>+      <mtd>+        <mi>ﱞ</mi>+      </mtd>+      <mtd>+        <mi>ﱮ</mi>+      </mtd>+      <mtd>+        <mi>ﱾ</mi>+      </mtd>+      <mtd>+        <mi>ﲎ</mi>+      </mtd>+      <mtd>+        <mi>ﲞ</mi>+      </mtd>+      <mtd>+        <mi>ﲮ</mi>+      </mtd>+      <mtd>+        <mi>ﲾ</mi>+      </mtd>+      <mtd>+        <mi>ﳎ</mi>+      </mtd>+      <mtd>+        <mi>ﳞ</mi>+      </mtd>+      <mtd>+        <mi>ﳮ</mi>+      </mtd>+      <mtd>+        <mi>ﳾ</mi>+      </mtd>+      <mtd>+        <mi>ﴎ</mi>+      </mtd>+      <mtd>+        <mi>ﴞ</mi>+      </mtd>+      <mtd>+        <mi>ﴮ</mi>+      </mtd>+      <mtd>+        <mi>﴾</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵞ</mi>+      </mtd>+      <mtd>+        <mi>ﵮ</mi>+      </mtd>+      <mtd>+        <mi>ﵾ</mi>+      </mtd>+      <mtd>+        <mi>ﶎ</mi>+      </mtd>+      <mtd>+        <mi>ﶞ</mi>+      </mtd>+      <mtd>+        <mi>ﶮ</mi>+      </mtd>+      <mtd>+        <mi>ﶾ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">F</mtext>+      </mtd>+      <mtd>+        <mi>ﭟ</mi>+      </mtd>+      <mtd>+        <mi>ﭯ</mi>+      </mtd>+      <mtd>+        <mi>ﭿ</mi>+      </mtd>+      <mtd>+        <mi>ﮏ</mi>+      </mtd>+      <mtd>+        <mi>ﮟ</mi>+      </mtd>+      <mtd>+        <mi>ﮯ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﯟ</mi>+      </mtd>+      <mtd>+        <mi>ﯯ</mi>+      </mtd>+      <mtd>+        <mi>ﯿ</mi>+      </mtd>+      <mtd>+        <mi>ﰏ</mi>+      </mtd>+      <mtd>+        <mi>ﰟ</mi>+      </mtd>+      <mtd>+        <mi>ﰯ</mi>+      </mtd>+      <mtd>+        <mi>ﰿ</mi>+      </mtd>+      <mtd>+        <mi>ﱏ</mi>+      </mtd>+      <mtd>+        <mi>ﱟ</mi>+      </mtd>+      <mtd>+        <mi>ﱯ</mi>+      </mtd>+      <mtd>+        <mi>ﱿ</mi>+      </mtd>+      <mtd>+        <mi>ﲏ</mi>+      </mtd>+      <mtd>+        <mi>ﲟ</mi>+      </mtd>+      <mtd>+        <mi>ﲯ</mi>+      </mtd>+      <mtd>+        <mi>ﲿ</mi>+      </mtd>+      <mtd>+        <mi>ﳏ</mi>+      </mtd>+      <mtd>+        <mi>ﳟ</mi>+      </mtd>+      <mtd>+        <mi>ﳯ</mi>+      </mtd>+      <mtd>+        <mi>ﳿ</mi>+      </mtd>+      <mtd>+        <mi>ﴏ</mi>+      </mtd>+      <mtd>+        <mi>ﴟ</mi>+      </mtd>+      <mtd>+        <mi>ﴯ</mi>+      </mtd>+      <mtd>+        <mi>﴿</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>ﵟ</mi>+      </mtd>+      <mtd>+        <mi>ﵯ</mi>+      </mtd>+      <mtd>+        <mi>ﵿ</mi>+      </mtd>+      <mtd>+        <mi>ﶏ</mi>+      </mtd>+      <mtd>+        <mi>ﶟ</mi>+      </mtd>+      <mtd>+        <mi>ﶯ</mi>+      </mtd>+      <mtd>+        <mi>ﶿ</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>+      </mtd>+      <mtd>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/0FE00_Variation_Selectors.mml view
@@ -20,7 +20,7 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>︁</mo>+        <mi>︁</mi>       </mtd>     </mtr>     <mtr>@@ -28,7 +28,7 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>︂</mo>+        <mi>︂</mi>       </mtd>     </mtr>     <mtr>@@ -36,7 +36,7 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>︃</mo>+        <mi>︃</mi>       </mtd>     </mtr>     <mtr>@@ -44,7 +44,7 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>︄</mo>+        <mi>︄</mi>       </mtd>     </mtr>     <mtr>@@ -52,7 +52,7 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>︅</mo>+        <mi>︅</mi>       </mtd>     </mtr>     <mtr>@@ -60,7 +60,7 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>︆</mo>+        <mi>︆</mi>       </mtd>     </mtr>     <mtr>@@ -68,7 +68,7 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>︇</mo>+        <mi>︇</mi>       </mtd>     </mtr>     <mtr>@@ -76,7 +76,7 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>︈</mo>+        <mi>︈</mi>       </mtd>     </mtr>     <mtr>@@ -84,7 +84,7 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>︉</mo>+        <mi>︉</mi>       </mtd>     </mtr>     <mtr>@@ -92,7 +92,7 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>︊</mo>+        <mi>︊</mi>       </mtd>     </mtr>     <mtr>@@ -100,7 +100,7 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>︋</mo>+        <mi>︋</mi>       </mtd>     </mtr>     <mtr>@@ -108,7 +108,7 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>︌</mo>+        <mi>︌</mi>       </mtd>     </mtr>     <mtr>@@ -116,7 +116,7 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>︍</mo>+        <mi>︍</mi>       </mtd>     </mtr>     <mtr>@@ -124,7 +124,7 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>︎</mo>+        <mi>︎</mi>       </mtd>     </mtr>     <mtr>@@ -132,7 +132,7 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>️</mo>+        <mi>️</mi>       </mtd>     </mtr>   </mtable>
tests/writers/0FE10_Vertical_Forms.mml view
@@ -12,7 +12,7 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>︐</mo>+        <mi>︐</mi>       </mtd>     </mtr>     <mtr>@@ -20,7 +20,7 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>︑</mo>+        <mi>︑</mi>       </mtd>     </mtr>     <mtr>@@ -28,7 +28,7 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>︒</mo>+        <mi>︒</mi>       </mtd>     </mtr>     <mtr>@@ -36,7 +36,7 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>︓</mo>+        <mi>︓</mi>       </mtd>     </mtr>     <mtr>@@ -44,7 +44,7 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>︔</mo>+        <mi>︔</mi>       </mtd>     </mtr>     <mtr>@@ -52,7 +52,7 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>︕</mo>+        <mi>︕</mi>       </mtd>     </mtr>     <mtr>@@ -60,7 +60,7 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>︖</mo>+        <mi>︖</mi>       </mtd>     </mtr>     <mtr>@@ -68,7 +68,7 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>︗</mo>+        <mi>︗</mi>       </mtd>     </mtr>     <mtr>@@ -76,7 +76,7 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>︘</mo>+        <mi>︘</mi>       </mtd>     </mtr>     <mtr>@@ -84,7 +84,7 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>︙</mo>+        <mi>︙</mi>       </mtd>     </mtr>     <mtr>@@ -92,7 +92,7 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -100,7 +100,7 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -108,7 +108,7 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -116,7 +116,7 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -124,7 +124,7 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -132,7 +132,7 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/0FE20_Combining_Half_Marks.mml view
@@ -12,7 +12,7 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>︠</mo>+        <mi>︠</mi>       </mtd>     </mtr>     <mtr>@@ -20,7 +20,7 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>︡</mo>+        <mi>︡</mi>       </mtd>     </mtr>     <mtr>@@ -28,7 +28,7 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>︢</mo>+        <mi>︢</mi>       </mtd>     </mtr>     <mtr>@@ -36,7 +36,7 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>︣</mo>+        <mi>︣</mi>       </mtd>     </mtr>     <mtr>@@ -44,7 +44,7 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>︤</mo>+        <mi>︤</mi>       </mtd>     </mtr>     <mtr>@@ -52,7 +52,7 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>︥</mo>+        <mi>︥</mi>       </mtd>     </mtr>     <mtr>@@ -60,7 +60,7 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>︦</mo>+        <mi>︦</mi>       </mtd>     </mtr>     <mtr>@@ -68,7 +68,7 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -76,7 +76,7 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -84,7 +84,7 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -92,7 +92,7 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -100,7 +100,7 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -108,7 +108,7 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -116,7 +116,7 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -124,7 +124,7 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -132,7 +132,7 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/0FE30_CJK_Compatibility_Forms.mml view
@@ -15,10 +15,10 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>︰</mo>+        <mi>︰</mi>       </mtd>       <mtd>-        <mo>﹀</mo>+        <mi>﹀</mi>       </mtd>     </mtr>     <mtr>@@ -26,10 +26,10 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>︱</mo>+        <mi>︱</mi>       </mtd>       <mtd>-        <mo>﹁</mo>+        <mi>﹁</mi>       </mtd>     </mtr>     <mtr>@@ -37,10 +37,10 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>︲</mo>+        <mi>︲</mi>       </mtd>       <mtd>-        <mo>﹂</mo>+        <mi>﹂</mi>       </mtd>     </mtr>     <mtr>@@ -48,10 +48,10 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>︳</mo>+        <mi>︳</mi>       </mtd>       <mtd>-        <mo>﹃</mo>+        <mi>﹃</mi>       </mtd>     </mtr>     <mtr>@@ -59,10 +59,10 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>︴</mo>+        <mi>︴</mi>       </mtd>       <mtd>-        <mo>﹄</mo>+        <mi>﹄</mi>       </mtd>     </mtr>     <mtr>@@ -70,10 +70,10 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>︵</mo>+        <mi>︵</mi>       </mtd>       <mtd>-        <mo>﹅</mo>+        <mi>﹅</mi>       </mtd>     </mtr>     <mtr>@@ -81,10 +81,10 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>︶</mo>+        <mi>︶</mi>       </mtd>       <mtd>-        <mo>﹆</mo>+        <mi>﹆</mi>       </mtd>     </mtr>     <mtr>@@ -95,7 +95,7 @@         <mo accent="true">︷</mo>       </mtd>       <mtd>-        <mo>﹇</mo>+        <mi>﹇</mi>       </mtd>     </mtr>     <mtr>@@ -106,7 +106,7 @@         <mo accent="true">︸</mo>       </mtd>       <mtd>-        <mo>﹈</mo>+        <mi>﹈</mi>       </mtd>     </mtr>     <mtr>@@ -114,10 +114,10 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>︹</mo>+        <mi>︹</mi>       </mtd>       <mtd>-        <mo>﹉</mo>+        <mi>﹉</mi>       </mtd>     </mtr>     <mtr>@@ -125,10 +125,10 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>︺</mo>+        <mi>︺</mi>       </mtd>       <mtd>-        <mo>﹊</mo>+        <mi>﹊</mi>       </mtd>     </mtr>     <mtr>@@ -136,10 +136,10 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>︻</mo>+        <mi>︻</mi>       </mtd>       <mtd>-        <mo>﹋</mo>+        <mi>﹋</mi>       </mtd>     </mtr>     <mtr>@@ -147,10 +147,10 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>︼</mo>+        <mi>︼</mi>       </mtd>       <mtd>-        <mo>﹌</mo>+        <mi>﹌</mi>       </mtd>     </mtr>     <mtr>@@ -158,10 +158,10 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>︽</mo>+        <mi>︽</mi>       </mtd>       <mtd>-        <mo>﹍</mo>+        <mi>﹍</mi>       </mtd>     </mtr>     <mtr>@@ -169,10 +169,10 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>︾</mo>+        <mi>︾</mi>       </mtd>       <mtd>-        <mo>﹎</mo>+        <mi>﹎</mi>       </mtd>     </mtr>     <mtr>@@ -180,10 +180,10 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>︿</mo>+        <mi>︿</mi>       </mtd>       <mtd>-        <mo>﹏</mo>+        <mi>﹏</mi>       </mtd>     </mtr>   </mtable>
tests/writers/0FE50_Small_Form_Variants.mml view
@@ -15,10 +15,10 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>﹐</mo>+        <mi>﹐</mi>       </mtd>       <mtd>-        <mo>﹠</mo>+        <mi>﹠</mi>       </mtd>     </mtr>     <mtr>@@ -26,10 +26,10 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>﹑</mo>+        <mi>﹑</mi>       </mtd>       <mtd>-        <mo>﹡</mo>+        <mi>﹡</mi>       </mtd>     </mtr>     <mtr>@@ -37,10 +37,10 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>﹒</mo>+        <mi>﹒</mi>       </mtd>       <mtd>-        <mo>﹢</mo>+        <mi>﹢</mi>       </mtd>     </mtr>     <mtr>@@ -48,10 +48,10 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>﹣</mo>+        <mi>﹣</mi>       </mtd>     </mtr>     <mtr>@@ -59,10 +59,10 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>﹔</mo>+        <mi>﹔</mi>       </mtd>       <mtd>-        <mo>﹤</mo>+        <mi>﹤</mi>       </mtd>     </mtr>     <mtr>@@ -70,10 +70,10 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>﹕</mo>+        <mi>﹕</mi>       </mtd>       <mtd>-        <mo>﹥</mo>+        <mi>﹥</mi>       </mtd>     </mtr>     <mtr>@@ -81,10 +81,10 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>﹖</mo>+        <mi>﹖</mi>       </mtd>       <mtd>-        <mo>﹦</mo>+        <mi>﹦</mi>       </mtd>     </mtr>     <mtr>@@ -92,10 +92,10 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>﹗</mo>+        <mi>﹗</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -103,10 +103,10 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>﹘</mo>+        <mi>﹘</mi>       </mtd>       <mtd>-        <mo>﹨</mo>+        <mi>﹨</mi>       </mtd>     </mtr>     <mtr>@@ -114,10 +114,10 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>﹙</mo>+        <mi>﹙</mi>       </mtd>       <mtd>-        <mo>﹩</mo>+        <mi>﹩</mi>       </mtd>     </mtr>     <mtr>@@ -125,10 +125,10 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>﹚</mo>+        <mi>﹚</mi>       </mtd>       <mtd>-        <mo>﹪</mo>+        <mi>﹪</mi>       </mtd>     </mtr>     <mtr>@@ -136,10 +136,10 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>﹛</mo>+        <mi>﹛</mi>       </mtd>       <mtd>-        <mo>﹫</mo>+        <mi>﹫</mi>       </mtd>     </mtr>     <mtr>@@ -147,10 +147,10 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>﹜</mo>+        <mi>﹜</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -158,10 +158,10 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>﹝</mo>+        <mi>﹝</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -169,10 +169,10 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>﹞</mo>+        <mi>﹞</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -180,10 +180,10 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>﹟</mo>+        <mi>﹟</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>   </mtable>
tests/writers/0FE70_Arabic_Presentation_Forms-B.mml view
@@ -36,31 +36,31 @@         <mtext mathvariant="normal">0</mtext>       </mtd>       <mtd>-        <mo>ﹰ</mo>+        <mi>ﹰ</mi>       </mtd>       <mtd>-        <mo>ﺀ</mo>+        <mi>ﺀ</mi>       </mtd>       <mtd>-        <mo>ﺐ</mo>+        <mi>ﺐ</mi>       </mtd>       <mtd>-        <mo>ﺠ</mo>+        <mi>ﺠ</mi>       </mtd>       <mtd>-        <mo>ﺰ</mo>+        <mi>ﺰ</mi>       </mtd>       <mtd>-        <mo>ﻀ</mo>+        <mi>ﻀ</mi>       </mtd>       <mtd>-        <mo>ﻐ</mo>+        <mi>ﻐ</mi>       </mtd>       <mtd>-        <mo>ﻠ</mo>+        <mi>ﻠ</mi>       </mtd>       <mtd>-        <mo>ﻰ</mo>+        <mi>ﻰ</mi>       </mtd>     </mtr>     <mtr>@@ -68,31 +68,31 @@         <mtext mathvariant="normal">1</mtext>       </mtd>       <mtd>-        <mo>ﹱ</mo>+        <mi>ﹱ</mi>       </mtd>       <mtd>-        <mo>ﺁ</mo>+        <mi>ﺁ</mi>       </mtd>       <mtd>-        <mo>ﺑ</mo>+        <mi>ﺑ</mi>       </mtd>       <mtd>-        <mo>ﺡ</mo>+        <mi>ﺡ</mi>       </mtd>       <mtd>-        <mo>ﺱ</mo>+        <mi>ﺱ</mi>       </mtd>       <mtd>-        <mo>ﻁ</mo>+        <mi>ﻁ</mi>       </mtd>       <mtd>-        <mo>ﻑ</mo>+        <mi>ﻑ</mi>       </mtd>       <mtd>-        <mo>ﻡ</mo>+        <mi>ﻡ</mi>       </mtd>       <mtd>-        <mo>ﻱ</mo>+        <mi>ﻱ</mi>       </mtd>     </mtr>     <mtr>@@ -100,31 +100,31 @@         <mtext mathvariant="normal">2</mtext>       </mtd>       <mtd>-        <mo>ﹲ</mo>+        <mi>ﹲ</mi>       </mtd>       <mtd>-        <mo>ﺂ</mo>+        <mi>ﺂ</mi>       </mtd>       <mtd>-        <mo>ﺒ</mo>+        <mi>ﺒ</mi>       </mtd>       <mtd>-        <mo>ﺢ</mo>+        <mi>ﺢ</mi>       </mtd>       <mtd>-        <mo>ﺲ</mo>+        <mi>ﺲ</mi>       </mtd>       <mtd>-        <mo>ﻂ</mo>+        <mi>ﻂ</mi>       </mtd>       <mtd>-        <mo>ﻒ</mo>+        <mi>ﻒ</mi>       </mtd>       <mtd>-        <mo>ﻢ</mo>+        <mi>ﻢ</mi>       </mtd>       <mtd>-        <mo>ﻲ</mo>+        <mi>ﻲ</mi>       </mtd>     </mtr>     <mtr>@@ -132,31 +132,31 @@         <mtext mathvariant="normal">3</mtext>       </mtd>       <mtd>-        <mo>ﹳ</mo>+        <mi>ﹳ</mi>       </mtd>       <mtd>-        <mo>ﺃ</mo>+        <mi>ﺃ</mi>       </mtd>       <mtd>-        <mo>ﺓ</mo>+        <mi>ﺓ</mi>       </mtd>       <mtd>-        <mo>ﺣ</mo>+        <mi>ﺣ</mi>       </mtd>       <mtd>-        <mo>ﺳ</mo>+        <mi>ﺳ</mi>       </mtd>       <mtd>-        <mo>ﻃ</mo>+        <mi>ﻃ</mi>       </mtd>       <mtd>-        <mo>ﻓ</mo>+        <mi>ﻓ</mi>       </mtd>       <mtd>-        <mo>ﻣ</mo>+        <mi>ﻣ</mi>       </mtd>       <mtd>-        <mo>ﻳ</mo>+        <mi>ﻳ</mi>       </mtd>     </mtr>     <mtr>@@ -164,31 +164,31 @@         <mtext mathvariant="normal">4</mtext>       </mtd>       <mtd>-        <mo>ﹴ</mo>+        <mi>ﹴ</mi>       </mtd>       <mtd>-        <mo>ﺄ</mo>+        <mi>ﺄ</mi>       </mtd>       <mtd>-        <mo>ﺔ</mo>+        <mi>ﺔ</mi>       </mtd>       <mtd>-        <mo>ﺤ</mo>+        <mi>ﺤ</mi>       </mtd>       <mtd>-        <mo>ﺴ</mo>+        <mi>ﺴ</mi>       </mtd>       <mtd>-        <mo>ﻄ</mo>+        <mi>ﻄ</mi>       </mtd>       <mtd>-        <mo>ﻔ</mo>+        <mi>ﻔ</mi>       </mtd>       <mtd>-        <mo>ﻤ</mo>+        <mi>ﻤ</mi>       </mtd>       <mtd>-        <mo>ﻴ</mo>+        <mi>ﻴ</mi>       </mtd>     </mtr>     <mtr>@@ -196,31 +196,31 @@         <mtext mathvariant="normal">5</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>ﺅ</mo>+        <mi>ﺅ</mi>       </mtd>       <mtd>-        <mo>ﺕ</mo>+        <mi>ﺕ</mi>       </mtd>       <mtd>-        <mo>ﺥ</mo>+        <mi>ﺥ</mi>       </mtd>       <mtd>-        <mo>ﺵ</mo>+        <mi>ﺵ</mi>       </mtd>       <mtd>-        <mo>ﻅ</mo>+        <mi>ﻅ</mi>       </mtd>       <mtd>-        <mo>ﻕ</mo>+        <mi>ﻕ</mi>       </mtd>       <mtd>-        <mo>ﻥ</mo>+        <mi>ﻥ</mi>       </mtd>       <mtd>-        <mo>ﻵ</mo>+        <mi>ﻵ</mi>       </mtd>     </mtr>     <mtr>@@ -228,31 +228,31 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>ﹶ</mo>+        <mi>ﹶ</mi>       </mtd>       <mtd>-        <mo>ﺆ</mo>+        <mi>ﺆ</mi>       </mtd>       <mtd>-        <mo>ﺖ</mo>+        <mi>ﺖ</mi>       </mtd>       <mtd>-        <mo>ﺦ</mo>+        <mi>ﺦ</mi>       </mtd>       <mtd>-        <mo>ﺶ</mo>+        <mi>ﺶ</mi>       </mtd>       <mtd>-        <mo>ﻆ</mo>+        <mi>ﻆ</mi>       </mtd>       <mtd>-        <mo>ﻖ</mo>+        <mi>ﻖ</mi>       </mtd>       <mtd>-        <mo>ﻦ</mo>+        <mi>ﻦ</mi>       </mtd>       <mtd>-        <mo>ﻶ</mo>+        <mi>ﻶ</mi>       </mtd>     </mtr>     <mtr>@@ -260,31 +260,31 @@         <mtext mathvariant="normal">7</mtext>       </mtd>       <mtd>-        <mo>ﹷ</mo>+        <mi>ﹷ</mi>       </mtd>       <mtd>-        <mo>ﺇ</mo>+        <mi>ﺇ</mi>       </mtd>       <mtd>-        <mo>ﺗ</mo>+        <mi>ﺗ</mi>       </mtd>       <mtd>-        <mo>ﺧ</mo>+        <mi>ﺧ</mi>       </mtd>       <mtd>-        <mo>ﺷ</mo>+        <mi>ﺷ</mi>       </mtd>       <mtd>-        <mo>ﻇ</mo>+        <mi>ﻇ</mi>       </mtd>       <mtd>-        <mo>ﻗ</mo>+        <mi>ﻗ</mi>       </mtd>       <mtd>-        <mo>ﻧ</mo>+        <mi>ﻧ</mi>       </mtd>       <mtd>-        <mo>ﻷ</mo>+        <mi>ﻷ</mi>       </mtd>     </mtr>     <mtr>@@ -292,31 +292,31 @@         <mtext mathvariant="normal">8</mtext>       </mtd>       <mtd>-        <mo>ﹸ</mo>+        <mi>ﹸ</mi>       </mtd>       <mtd>-        <mo>ﺈ</mo>+        <mi>ﺈ</mi>       </mtd>       <mtd>-        <mo>ﺘ</mo>+        <mi>ﺘ</mi>       </mtd>       <mtd>-        <mo>ﺨ</mo>+        <mi>ﺨ</mi>       </mtd>       <mtd>-        <mo>ﺸ</mo>+        <mi>ﺸ</mi>       </mtd>       <mtd>-        <mo>ﻈ</mo>+        <mi>ﻈ</mi>       </mtd>       <mtd>-        <mo>ﻘ</mo>+        <mi>ﻘ</mi>       </mtd>       <mtd>-        <mo>ﻨ</mo>+        <mi>ﻨ</mi>       </mtd>       <mtd>-        <mo>ﻸ</mo>+        <mi>ﻸ</mi>       </mtd>     </mtr>     <mtr>@@ -324,31 +324,31 @@         <mtext mathvariant="normal">9</mtext>       </mtd>       <mtd>-        <mo>ﹹ</mo>+        <mi>ﹹ</mi>       </mtd>       <mtd>-        <mo>ﺉ</mo>+        <mi>ﺉ</mi>       </mtd>       <mtd>-        <mo>ﺙ</mo>+        <mi>ﺙ</mi>       </mtd>       <mtd>-        <mo>ﺩ</mo>+        <mi>ﺩ</mi>       </mtd>       <mtd>-        <mo>ﺹ</mo>+        <mi>ﺹ</mi>       </mtd>       <mtd>-        <mo>ﻉ</mo>+        <mi>ﻉ</mi>       </mtd>       <mtd>-        <mo>ﻙ</mo>+        <mi>ﻙ</mi>       </mtd>       <mtd>-        <mo>ﻩ</mo>+        <mi>ﻩ</mi>       </mtd>       <mtd>-        <mo>ﻹ</mo>+        <mi>ﻹ</mi>       </mtd>     </mtr>     <mtr>@@ -356,31 +356,31 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>ﹺ</mo>+        <mi>ﹺ</mi>       </mtd>       <mtd>-        <mo>ﺊ</mo>+        <mi>ﺊ</mi>       </mtd>       <mtd>-        <mo>ﺚ</mo>+        <mi>ﺚ</mi>       </mtd>       <mtd>-        <mo>ﺪ</mo>+        <mi>ﺪ</mi>       </mtd>       <mtd>-        <mo>ﺺ</mo>+        <mi>ﺺ</mi>       </mtd>       <mtd>-        <mo>ﻊ</mo>+        <mi>ﻊ</mi>       </mtd>       <mtd>-        <mo>ﻚ</mo>+        <mi>ﻚ</mi>       </mtd>       <mtd>-        <mo>ﻪ</mo>+        <mi>ﻪ</mi>       </mtd>       <mtd>-        <mo>ﻺ</mo>+        <mi>ﻺ</mi>       </mtd>     </mtr>     <mtr>@@ -388,31 +388,31 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>ﹻ</mo>+        <mi>ﹻ</mi>       </mtd>       <mtd>-        <mo>ﺋ</mo>+        <mi>ﺋ</mi>       </mtd>       <mtd>-        <mo>ﺛ</mo>+        <mi>ﺛ</mi>       </mtd>       <mtd>-        <mo>ﺫ</mo>+        <mi>ﺫ</mi>       </mtd>       <mtd>-        <mo>ﺻ</mo>+        <mi>ﺻ</mi>       </mtd>       <mtd>-        <mo>ﻋ</mo>+        <mi>ﻋ</mi>       </mtd>       <mtd>-        <mo>ﻛ</mo>+        <mi>ﻛ</mi>       </mtd>       <mtd>-        <mo>ﻫ</mo>+        <mi>ﻫ</mi>       </mtd>       <mtd>-        <mo>ﻻ</mo>+        <mi>ﻻ</mi>       </mtd>     </mtr>     <mtr>@@ -420,31 +420,31 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>ﹼ</mo>+        <mi>ﹼ</mi>       </mtd>       <mtd>-        <mo>ﺌ</mo>+        <mi>ﺌ</mi>       </mtd>       <mtd>-        <mo>ﺜ</mo>+        <mi>ﺜ</mi>       </mtd>       <mtd>-        <mo>ﺬ</mo>+        <mi>ﺬ</mi>       </mtd>       <mtd>-        <mo>ﺼ</mo>+        <mi>ﺼ</mi>       </mtd>       <mtd>-        <mo>ﻌ</mo>+        <mi>ﻌ</mi>       </mtd>       <mtd>-        <mo>ﻜ</mo>+        <mi>ﻜ</mi>       </mtd>       <mtd>-        <mo>ﻬ</mo>+        <mi>ﻬ</mi>       </mtd>       <mtd>-        <mo>ﻼ</mo>+        <mi>ﻼ</mi>       </mtd>     </mtr>     <mtr>@@ -452,31 +452,31 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>ﹽ</mo>+        <mi>ﹽ</mi>       </mtd>       <mtd>-        <mo>ﺍ</mo>+        <mi>ﺍ</mi>       </mtd>       <mtd>-        <mo>ﺝ</mo>+        <mi>ﺝ</mi>       </mtd>       <mtd>-        <mo>ﺭ</mo>+        <mi>ﺭ</mi>       </mtd>       <mtd>-        <mo>ﺽ</mo>+        <mi>ﺽ</mi>       </mtd>       <mtd>-        <mo>ﻍ</mo>+        <mi>ﻍ</mi>       </mtd>       <mtd>-        <mo>ﻝ</mo>+        <mi>ﻝ</mi>       </mtd>       <mtd>-        <mo>ﻭ</mo>+        <mi>ﻭ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -484,31 +484,31 @@         <mtext mathvariant="normal">E</mtext>       </mtd>       <mtd>-        <mo>ﹾ</mo>+        <mi>ﹾ</mi>       </mtd>       <mtd>-        <mo>ﺎ</mo>+        <mi>ﺎ</mi>       </mtd>       <mtd>-        <mo>ﺞ</mo>+        <mi>ﺞ</mi>       </mtd>       <mtd>-        <mo>ﺮ</mo>+        <mi>ﺮ</mi>       </mtd>       <mtd>-        <mo>ﺾ</mo>+        <mi>ﺾ</mi>       </mtd>       <mtd>-        <mo>ﻎ</mo>+        <mi>ﻎ</mi>       </mtd>       <mtd>-        <mo>ﻞ</mo>+        <mi>ﻞ</mi>       </mtd>       <mtd>-        <mo>ﻮ</mo>+        <mi>ﻮ</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -516,31 +516,31 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>ﹿ</mo>+        <mi>ﹿ</mi>       </mtd>       <mtd>-        <mo>ﺏ</mo>+        <mi>ﺏ</mi>       </mtd>       <mtd>-        <mo>ﺟ</mo>+        <mi>ﺟ</mi>       </mtd>       <mtd>-        <mo>ﺯ</mo>+        <mi>ﺯ</mi>       </mtd>       <mtd>-        <mo>ﺿ</mo>+        <mi>ﺿ</mi>       </mtd>       <mtd>-        <mo>ﻏ</mo>+        <mi>ﻏ</mi>       </mtd>       <mtd>-        <mo>ﻟ</mo>+        <mi>ﻟ</mi>       </mtd>       <mtd>-        <mo>ﻯ</mo>+        <mi>ﻯ</mi>       </mtd>       <mtd>-        <mo>&#65279;</mo>+        <mi>&#65279;</mi>       </mtd>     </mtr>   </mtable>
tests/writers/10.mml view
@@ -26,7 +26,7 @@     <msubsup>       <mo>∫</mo>       <mn>0</mn>-      <mo>∞</mo>+      <mi>∞</mi>     </msubsup>     <mfrac>       <mrow>@@ -42,9 +42,9 @@       </mrow>     </mfrac>     <mfrac>-      <mo>∂</mo>+      <mi>∂</mi>       <mrow>-        <mo>∂</mo>+        <mi>∂</mi>         <mi>R</mi>       </mrow>     </mfrac>@@ -56,7 +56,7 @@       </msup>       <mfrac>         <mrow>-          <mo>∂</mo>+          <mi>∂</mi>           <msub>             <mi>D</mi>             <mi>n</mi>@@ -66,7 +66,7 @@           <mo stretchy="false" form="postfix">)</mo>         </mrow>         <mrow>-          <mo>∂</mo>+          <mi>∂</mi>           <mi>R</mi>         </mrow>       </mfrac>
tests/writers/11.mml view
@@ -20,7 +20,7 @@       <mrow>         <mo>−</mo>         <mn>11</mn>-        <mo>/</mo>+        <mi>/</mi>         <mn>3</mn>       </mrow>     </msup>
tests/writers/13.mml view
@@ -15,7 +15,7 @@       <mn>1</mn>     </msub>     <mo>,</mo>-    <mo>…</mo>+    <mi>…</mi>     <mo>,</mo>     <msub>       <mi>a</mi>@@ -27,7 +27,7 @@       <mn>1</mn>     </msub>     <mo>,</mo>-    <mo>…</mo>+    <mi>…</mi>     <mo>,</mo>     <msub>       <mi>c</mi>@@ -44,7 +44,7 @@         <mo>=</mo>         <mn>0</mn>       </mrow>-      <mo>∞</mo>+      <mi>∞</mi>     </munderover>     <mfrac>       <mrow>@@ -57,7 +57,7 @@           <mo stretchy="false" form="postfix">)</mo>           <mi>n</mi>         </msub>-        <mo>⋯</mo>+        <mi>⋯</mi>         <mo stretchy="false" form="prefix">(</mo>         <msub>           <mi>a</mi>@@ -78,7 +78,7 @@           <mo stretchy="false" form="postfix">)</mo>           <mi>n</mi>         </msub>-        <mo>⋯</mo>+        <mi>⋯</mi>         <mo stretchy="false" form="prefix">(</mo>         <msub>           <mi>c</mi>@@ -97,7 +97,7 @@       </msup>       <mrow>         <mi>n</mi>-        <mo>!</mo>+        <mi>!</mi>       </mrow>     </mfrac>   </mrow>
tests/writers/19.mml view
@@ -9,14 +9,14 @@             <mstyle displaystyle="true">               <mfrac>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>x</mi>                     <mn>1</mn>                   </msub>                 </mrow>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>y</mi>                     <mn>1</mn>@@ -29,14 +29,14 @@             <mstyle displaystyle="true">               <mfrac>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>x</mi>                     <mn>2</mn>                   </msub>                 </mrow>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>y</mi>                     <mn>1</mn>@@ -56,14 +56,14 @@             <mstyle displaystyle="true">               <mfrac>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>x</mi>                     <mn>1</mn>                   </msub>                 </mrow>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>y</mi>                     <mn>2</mn>@@ -76,14 +76,14 @@             <mstyle displaystyle="true">               <mfrac>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>x</mi>                     <mn>2</mn>                   </msub>                 </mrow>                 <mrow>-                  <mo>∂</mo>+                  <mi>∂</mi>                   <msub>                     <mi>y</mi>                     <mn>2</mn>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.mml view
@@ -190,7 +190,7 @@         <mo>𝜥</mo>       </mtd>       <mtd>-        <mo>𝜵</mo>+        <mi>𝜵</mi>       </mtd>       <mtd>         <mo>𝝅</mo>@@ -471,7 +471,7 @@         <mo>𝜿</mo>       </mtd>       <mtd>-        <mo>𝝏</mo>+        <mi>𝝏</mi>       </mtd>       <mtd />     </mtr>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.mml view
@@ -60,7 +60,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟰</mo>+        <mi>𝟰</mi>       </mtd>     </mtr>     <mtr>@@ -89,7 +89,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟱</mo>+        <mi>𝟱</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟲</mo>+        <mi>𝟲</mi>       </mtd>     </mtr>     <mtr>@@ -147,7 +147,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟳</mo>+        <mi>𝟳</mi>       </mtd>     </mtr>     <mtr>@@ -178,7 +178,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟴</mo>+        <mi>𝟴</mi>       </mtd>     </mtr>     <mtr>@@ -209,7 +209,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟵</mo>+        <mi>𝟵</mi>       </mtd>     </mtr>     <mtr>@@ -327,7 +327,7 @@         <mo>𝝹</mo>       </mtd>       <mtd>-        <mo>𝞉</mo>+        <mi>𝞉</mi>       </mtd>       <mtd />       <mtd />@@ -417,7 +417,7 @@         <mo>𝞌</mo>       </mtd>       <mtd>-        <mo>𝟬</mo>+        <mi>𝟬</mi>       </mtd>       <mtd />     </mtr>@@ -448,7 +448,7 @@         <mo>𝞍</mo>       </mtd>       <mtd>-        <mo>𝟭</mo>+        <mi>𝟭</mi>       </mtd>       <mtd />     </mtr>@@ -479,7 +479,7 @@         <mo>𝞎</mo>       </mtd>       <mtd>-        <mo>𝟮</mo>+        <mi>𝟮</mi>       </mtd>       <mtd />     </mtr>@@ -501,7 +501,7 @@         <mo>𝝟</mo>       </mtd>       <mtd>-        <mo>𝝯</mo>+        <mi>𝝯</mi>       </mtd>       <mtd>         <mo>𝝿</mo>@@ -510,7 +510,7 @@         <mo>𝞏</mo>       </mtd>       <mtd>-        <mo>𝟯</mo>+        <mi>𝟯</mi>       </mtd>       <mtd />     </mtr>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_bold.mml view
@@ -68,7 +68,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟐</mo>+        <mi>𝟐</mi>       </mtd>     </mtr>     <mtr>@@ -92,7 +92,7 @@         <mo>𝚱</mo>       </mtd>       <mtd>-        <mo>𝛁</mo>+        <mi>𝛁</mi>       </mtd>       <mtd>         <mo>𝛑</mo>@@ -102,7 +102,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟑</mo>+        <mi>𝟑</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@       <mtd />       <mtd />       <mtd>-        <mo>𝟒</mo>+        <mi>𝟒</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@       <mtd />       <mtd />       <mtd>-        <mo>𝟓</mo>+        <mi>𝟓</mi>       </mtd>     </mtr>     <mtr>@@ -196,7 +196,7 @@       <mtd />       <mtd />       <mtd>-        <mo>𝟔</mo>+        <mi>𝟔</mi>       </mtd>     </mtr>     <mtr>@@ -226,7 +226,7 @@       <mtd />       <mtd />       <mtd>-        <mo>𝟕</mo>+        <mi>𝟕</mi>       </mtd>     </mtr>     <mtr>@@ -256,7 +256,7 @@       <mtd />       <mtd />       <mtd>-        <mo>𝟖</mo>+        <mi>𝟖</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@       <mtd />       <mtd />       <mtd>-        <mo>𝟗</mo>+        <mi>𝟗</mi>       </mtd>     </mtr>     <mtr>@@ -405,7 +405,7 @@         <mo>𝛋</mo>       </mtd>       <mtd>-        <mo>𝛛</mo>+        <mi>𝛛</mi>       </mtd>       <mtd />       <mtd>@@ -501,7 +501,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟎</mo>+        <mi>𝟎</mi>       </mtd>       <mtd />     </mtr>@@ -533,7 +533,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟏</mo>+        <mi>𝟏</mi>       </mtd>       <mtd />     </mtr>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_double-struck.mml view
@@ -38,7 +38,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟠</mo>+        <mi>𝟠</mi>       </mtd>     </mtr>     <mtr>@@ -50,14 +50,14 @@         <mo>𝕁</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝕡</mo>       </mtd>       <mtd />       <mtd>-        <mo>𝟡</mo>+        <mi>𝟡</mi>       </mtd>     </mtr>     <mtr>@@ -117,7 +117,7 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝕕</mo>@@ -151,7 +151,7 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝕗</mo>@@ -170,7 +170,7 @@         <mo>𝔸</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝕘</mo>@@ -179,7 +179,7 @@         <mo>𝕨</mo>       </mtd>       <mtd>-        <mo>𝟘</mo>+        <mi>𝟘</mi>       </mtd>       <mtd />     </mtr>@@ -191,7 +191,7 @@         <mo>𝔹</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝕙</mo>@@ -200,7 +200,7 @@         <mo>𝕩</mo>       </mtd>       <mtd>-        <mo>𝟙</mo>+        <mi>𝟙</mi>       </mtd>       <mtd />     </mtr>@@ -209,7 +209,7 @@         <mtext mathvariant="normal">A</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝕊</mo>@@ -221,7 +221,7 @@         <mo>𝕪</mo>       </mtd>       <mtd>-        <mo>𝟚</mo>+        <mi>𝟚</mi>       </mtd>       <mtd />     </mtr>@@ -242,7 +242,7 @@         <mo>𝕫</mo>       </mtd>       <mtd>-        <mo>𝟛</mo>+        <mi>𝟛</mi>       </mtd>       <mtd />     </mtr>@@ -261,7 +261,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟜</mo>+        <mi>𝟜</mi>       </mtd>       <mtd />     </mtr>@@ -280,7 +280,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟝</mo>+        <mi>𝟝</mi>       </mtd>       <mtd />     </mtr>@@ -299,7 +299,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟞</mo>+        <mi>𝟞</mi>       </mtd>       <mtd />     </mtr>@@ -308,7 +308,7 @@         <mtext mathvariant="normal">F</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝕏</mo>@@ -318,7 +318,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟟</mo>+        <mi>𝟟</mi>       </mtd>       <mtd />     </mtr>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_fraktur.mml view
@@ -101,7 +101,7 @@         <mo>𝔅</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝔥</mo>@@ -115,7 +115,7 @@         <mtext mathvariant="normal">6</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝔖</mo>@@ -194,7 +194,7 @@         <mtext mathvariant="normal">B</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝔛</mo>@@ -209,7 +209,7 @@         <mtext mathvariant="normal">C</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝔜</mo>@@ -227,7 +227,7 @@         <mo>𝔍</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝔭</mo>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_italic.mml view
@@ -182,7 +182,7 @@         <mo>𝑅</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝑥</mo>@@ -200,7 +200,7 @@         <mo>𝜅</mo>       </mtd>       <mtd>-        <mo>𝜕</mo>+        <mi>𝜕</mi>       </mtd>     </mtr>     <mtr>@@ -366,7 +366,7 @@         <mo>𝛫</mo>       </mtd>       <mtd>-        <mo>𝛻</mo>+        <mi>𝛻</mi>       </mtd>       <mtd>         <mo>𝜋</mo>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_monospace.mml view
@@ -138,7 +138,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟶</mo>+        <mi>𝟶</mi>       </mtd>     </mtr>     <mtr>@@ -156,7 +156,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟷</mo>+        <mi>𝟷</mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟸</mo>+        <mi>𝟸</mi>       </mtd>     </mtr>     <mtr>@@ -192,7 +192,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟹</mo>+        <mi>𝟹</mi>       </mtd>     </mtr>     <mtr>@@ -210,7 +210,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟺</mo>+        <mi>𝟺</mi>       </mtd>     </mtr>     <mtr>@@ -228,7 +228,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟻</mo>+        <mi>𝟻</mi>       </mtd>     </mtr>     <mtr>@@ -246,7 +246,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟼</mo>+        <mi>𝟼</mi>       </mtd>     </mtr>     <mtr>@@ -264,7 +264,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟽</mo>+        <mi>𝟽</mi>       </mtd>     </mtr>     <mtr>@@ -282,7 +282,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟾</mo>+        <mi>𝟾</mi>       </mtd>     </mtr>     <mtr>@@ -300,7 +300,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟿</mo>+        <mi>𝟿</mi>       </mtd>     </mtr>   </mtable>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.mml view
@@ -133,7 +133,7 @@         <mo>𝞳</mo>       </mtd>       <mtd>-        <mo>𝟃</mo>+        <mi>𝟃</mi>       </mtd>     </mtr>     <mtr>@@ -289,7 +289,7 @@         <mo>𝞙</mo>       </mtd>       <mtd>-        <mo>𝞩</mo>+        <mi>𝞩</mi>       </mtd>       <mtd>         <mo>𝞹</mo>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.mml view
@@ -72,7 +72,7 @@         <mo>𝗒</mo>       </mtd>       <mtd>-        <mo>𝟢</mo>+        <mi>𝟢</mi>       </mtd>     </mtr>     <mtr>@@ -92,7 +92,7 @@         <mo>𝗓</mo>       </mtd>       <mtd>-        <mo>𝟣</mo>+        <mi>𝟣</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟤</mo>+        <mi>𝟤</mi>       </mtd>     </mtr>     <mtr>@@ -128,7 +128,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟥</mo>+        <mi>𝟥</mi>       </mtd>     </mtr>     <mtr>@@ -146,7 +146,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟦</mo>+        <mi>𝟦</mi>       </mtd>     </mtr>     <mtr>@@ -164,7 +164,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟧</mo>+        <mi>𝟧</mi>       </mtd>     </mtr>     <mtr>@@ -182,7 +182,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟨</mo>+        <mi>𝟨</mi>       </mtd>     </mtr>     <mtr>@@ -200,7 +200,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟩</mo>+        <mi>𝟩</mi>       </mtd>     </mtr>     <mtr>@@ -218,7 +218,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟪</mo>+        <mi>𝟪</mi>       </mtd>     </mtr>     <mtr>@@ -236,7 +236,7 @@       </mtd>       <mtd />       <mtd>-        <mo>𝟫</mo>+        <mi>𝟫</mi>       </mtd>     </mtr>     <mtr>
tests/writers/1D400_Mathematical_Alphanumeric_Symbols_script.mml view
@@ -22,7 +22,7 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝒰</mo>@@ -37,7 +37,7 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝒱</mo>@@ -67,7 +67,7 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝒳</mo>@@ -82,13 +82,13 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝒴</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -127,7 +127,7 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝒷</mo>@@ -142,7 +142,7 @@       </mtd>       <mtd />       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝒸</mo>@@ -175,7 +175,7 @@         <mo>𝒪</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝓊</mo>@@ -207,7 +207,7 @@         <mo>𝒬</mo>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝓌</mo>@@ -218,10 +218,10 @@         <mtext mathvariant="normal">D</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>       <mtd>         <mo>𝒽</mo>
tests/writers/23.mml view
@@ -2,6 +2,6 @@ <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">   <mrow>     <mn>1</mn>-    <mo>.</mo>+    <mi>.</mi>   </mrow> </math>
tests/writers/a.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">aacute</mtext>       </mtd>       <mtd>-        <mo>á</mo>+        <mi>á</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Aacute</mtext>       </mtd>       <mtd>-        <mo>Á</mo>+        <mi>Á</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">abreve</mtext>       </mtd>       <mtd>-        <mo>ă</mo>+        <mi>ă</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">Abreve</mtext>       </mtd>       <mtd>-        <mo>Ă</mo>+        <mi>Ă</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">acd</mtext>       </mtd>       <mtd>-        <mo>∿</mo>+        <mi>∿</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">acirc</mtext>       </mtd>       <mtd>-        <mo>â</mo>+        <mi>â</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">Acirc</mtext>       </mtd>       <mtd>-        <mo>Â</mo>+        <mi>Â</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">acy</mtext>       </mtd>       <mtd>-        <mo>а</mo>+        <mi>а</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">Acy</mtext>       </mtd>       <mtd>-        <mo>А</mo>+        <mi>А</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">aelig</mtext>       </mtd>       <mtd>-        <mo>æ</mo>+        <mi>æ</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">AElig</mtext>       </mtd>       <mtd>-        <mo>Æ</mo>+        <mi>Æ</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">af</mtext>       </mtd>       <mtd>-        <mo>&#8289;</mo>+        <mi>&#8289;</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">agrave</mtext>       </mtd>       <mtd>-        <mo>à</mo>+        <mi>à</mi>       </mtd>     </mtr>     <mtr>@@ -150,7 +150,7 @@         <mtext mathvariant="normal">Agrave</mtext>       </mtd>       <mtd>-        <mo>À</mo>+        <mi>À</mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@         <mtext mathvariant="normal">amacr</mtext>       </mtd>       <mtd>-        <mo>ā</mo>+        <mi>ā</mi>       </mtd>     </mtr>     <mtr>@@ -182,7 +182,7 @@         <mtext mathvariant="normal">Amacr</mtext>       </mtd>       <mtd>-        <mo>Ā</mo>+        <mi>Ā</mi>       </mtd>     </mtr>     <mtr>@@ -198,7 +198,7 @@         <mtext mathvariant="normal">amp</mtext>       </mtd>       <mtd>-        <mo>&amp;</mo>+        <mi>&amp;</mi>       </mtd>     </mtr>     <mtr>@@ -254,7 +254,7 @@         <mtext mathvariant="normal">ang</mtext>       </mtd>       <mtd>-        <mo>∠</mo>+        <mi>∠</mi>       </mtd>     </mtr>     <mtr>@@ -262,7 +262,7 @@         <mtext mathvariant="normal">ange</mtext>       </mtd>       <mtd>-        <mo>⦤</mo>+        <mi>⦤</mi>       </mtd>     </mtr>     <mtr>@@ -270,7 +270,7 @@         <mtext mathvariant="normal">angle</mtext>       </mtd>       <mtd>-        <mo>∠</mo>+        <mi>∠</mi>       </mtd>     </mtr>     <mtr>@@ -278,7 +278,7 @@         <mtext mathvariant="normal">angmsd</mtext>       </mtd>       <mtd>-        <mo>∡</mo>+        <mi>∡</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">angmsdaa</mtext>       </mtd>       <mtd>-        <mo>⦨</mo>+        <mi>⦨</mi>       </mtd>     </mtr>     <mtr>@@ -294,7 +294,7 @@         <mtext mathvariant="normal">angmsdab</mtext>       </mtd>       <mtd>-        <mo>⦩</mo>+        <mi>⦩</mi>       </mtd>     </mtr>     <mtr>@@ -302,7 +302,7 @@         <mtext mathvariant="normal">angmsdac</mtext>       </mtd>       <mtd>-        <mo>⦪</mo>+        <mi>⦪</mi>       </mtd>     </mtr>     <mtr>@@ -310,7 +310,7 @@         <mtext mathvariant="normal">angmsdad</mtext>       </mtd>       <mtd>-        <mo>⦫</mo>+        <mi>⦫</mi>       </mtd>     </mtr>     <mtr>@@ -318,7 +318,7 @@         <mtext mathvariant="normal">angmsdae</mtext>       </mtd>       <mtd>-        <mo>⦬</mo>+        <mi>⦬</mi>       </mtd>     </mtr>     <mtr>@@ -326,7 +326,7 @@         <mtext mathvariant="normal">angmsdaf</mtext>       </mtd>       <mtd>-        <mo>⦭</mo>+        <mi>⦭</mi>       </mtd>     </mtr>     <mtr>@@ -334,7 +334,7 @@         <mtext mathvariant="normal">angmsdag</mtext>       </mtd>       <mtd>-        <mo>⦮</mo>+        <mi>⦮</mi>       </mtd>     </mtr>     <mtr>@@ -342,7 +342,7 @@         <mtext mathvariant="normal">angmsdah</mtext>       </mtd>       <mtd>-        <mo>⦯</mo>+        <mi>⦯</mi>       </mtd>     </mtr>     <mtr>@@ -350,7 +350,7 @@         <mtext mathvariant="normal">angrt</mtext>       </mtd>       <mtd>-        <mo>∟</mo>+        <mi>∟</mi>       </mtd>     </mtr>     <mtr>@@ -358,7 +358,7 @@         <mtext mathvariant="normal">angrtvb</mtext>       </mtd>       <mtd>-        <mo>⊾</mo>+        <mi>⊾</mi>       </mtd>     </mtr>     <mtr>@@ -366,7 +366,7 @@         <mtext mathvariant="normal">angrtvbd</mtext>       </mtd>       <mtd>-        <mo>⦝</mo>+        <mi>⦝</mi>       </mtd>     </mtr>     <mtr>@@ -374,7 +374,7 @@         <mtext mathvariant="normal">angsph</mtext>       </mtd>       <mtd>-        <mo>∢</mo>+        <mi>∢</mi>       </mtd>     </mtr>     <mtr>@@ -382,7 +382,7 @@         <mtext mathvariant="normal">angst</mtext>       </mtd>       <mtd>-        <mo>Å</mo>+        <mi>Å</mi>       </mtd>     </mtr>     <mtr>@@ -390,7 +390,7 @@         <mtext mathvariant="normal">angzarr</mtext>       </mtd>       <mtd>-        <mo>⍼</mo>+        <mi>⍼</mi>       </mtd>     </mtr>     <mtr>@@ -398,7 +398,7 @@         <mtext mathvariant="normal">aogon</mtext>       </mtd>       <mtd>-        <mo>ą</mo>+        <mi>ą</mi>       </mtd>     </mtr>     <mtr>@@ -406,7 +406,7 @@         <mtext mathvariant="normal">Aogon</mtext>       </mtd>       <mtd>-        <mo>Ą</mo>+        <mi>Ą</mi>       </mtd>     </mtr>     <mtr>@@ -478,7 +478,7 @@         <mtext mathvariant="normal">ApplyFunction</mtext>       </mtd>       <mtd>-        <mo>&#8289;</mo>+        <mi>&#8289;</mi>       </mtd>     </mtr>     <mtr>@@ -502,7 +502,7 @@         <mtext mathvariant="normal">aring</mtext>       </mtd>       <mtd>-        <mo>å</mo>+        <mi>å</mi>       </mtd>     </mtr>     <mtr>@@ -510,7 +510,7 @@         <mtext mathvariant="normal">Aring</mtext>       </mtd>       <mtd>-        <mo>Å</mo>+        <mi>Å</mi>       </mtd>     </mtr>     <mtr>@@ -542,7 +542,7 @@         <mtext mathvariant="normal">ast</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>     </mtr>     <mtr>@@ -566,7 +566,7 @@         <mtext mathvariant="normal">atilde</mtext>       </mtd>       <mtd>-        <mo>ã</mo>+        <mi>ã</mi>       </mtd>     </mtr>     <mtr>@@ -574,7 +574,7 @@         <mtext mathvariant="normal">Atilde</mtext>       </mtd>       <mtd>-        <mo>Ã</mo>+        <mi>Ã</mi>       </mtd>     </mtr>     <mtr>@@ -582,7 +582,7 @@         <mtext mathvariant="normal">auml</mtext>       </mtd>       <mtd>-        <mo>ä</mo>+        <mi>ä</mi>       </mtd>     </mtr>     <mtr>@@ -590,7 +590,7 @@         <mtext mathvariant="normal">Auml</mtext>       </mtd>       <mtd>-        <mo>Ä</mo>+        <mi>Ä</mi>       </mtd>     </mtr>     <mtr>
tests/writers/accents1.mml view
@@ -166,39 +166,39 @@         <mrow>           <mover>             <mi>H</mi>-            <mo accent="false">&#39;</mo>+            <mi>&#39;</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">^</mo>+            <mi>^</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">_</mo>+            <mi>_</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">`</mo>+            <mi>`</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">~</mo>+            <mi>~</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">¨</mo>+            <mi>¨</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">¯</mo>+            <mi>¯</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">´</mo>+            <mi>´</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">¸</mo>+            <mi>¸</mi>           </mover>           <mover>             <mi>H</mi>@@ -210,23 +210,23 @@           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">˘</mo>+            <mi>˘</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">˙</mo>+            <mi>˙</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">˚</mo>+            <mi>˚</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">˜</mo>+            <mi>˜</mi>           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">˝</mo>+            <mi>˝</mi>           </mover>           <mover>             <mi>H</mi>@@ -238,7 +238,7 @@           </mover>           <mover>             <mi>H</mi>-            <mo accent="false">‾</mo>+            <mi>‾</mi>           </mover>           <mover>             <mi>H</mi>
tests/writers/accents1.omml view
@@ -43,72 +43,84 @@       </m:mr>       <m:mr>         <m:e>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="&#39;" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="^" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="_" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="`" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="~" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="¨" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:bar>             <m:barPr>               <m:pos m:val="top" />@@ -120,127 +132,149 @@               </m:r>             </m:e>           </m:bar>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="´" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="¸" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="ˆ" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="ˇ" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˘" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˙" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˚" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˝" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̂" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̑" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:bar>             <m:barPr>               <m:pos m:val="top" />@@ -252,193 +286,227 @@               </m:r>             </m:e>           </m:bar>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃛" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="←" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="→" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="↔" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="↼" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="↽" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⇀" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⇁" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⎴" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⎵" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏝" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏞" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏟" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⥎" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⥐" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>         </m:e>       </m:mr>       <m:mr>@@ -677,28 +745,32 @@               </m:r>             </m:lim>           </m:limUpp>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̂" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̑" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:limUpp>             <m:e>               <m:r>@@ -713,28 +785,32 @@               </m:r>             </m:lim>           </m:limUpp>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃛" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>H</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:limUpp>             <m:e>               <m:r>
tests/writers/accents2.mml view
@@ -166,39 +166,39 @@         <mrow>           <mover>             <mi>x</mi>-            <mo accent="false">&#39;</mo>+            <mi>&#39;</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">^</mo>+            <mi>^</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">_</mo>+            <mi>_</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">`</mo>+            <mi>`</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">~</mo>+            <mi>~</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">¨</mo>+            <mi>¨</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">¯</mo>+            <mi>¯</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">´</mo>+            <mi>´</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">¸</mo>+            <mi>¸</mi>           </mover>           <mover>             <mi>x</mi>@@ -210,23 +210,23 @@           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">˘</mo>+            <mi>˘</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">˙</mo>+            <mi>˙</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">˚</mo>+            <mi>˚</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">˜</mo>+            <mi>˜</mi>           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">˝</mo>+            <mi>˝</mi>           </mover>           <mover>             <mi>x</mi>@@ -238,7 +238,7 @@           </mover>           <mover>             <mi>x</mi>-            <mo accent="false">‾</mo>+            <mi>‾</mi>           </mover>           <mover>             <mi>x</mi>
tests/writers/accents2.omml view
@@ -43,72 +43,84 @@       </m:mr>       <m:mr>         <m:e>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="&#39;" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="^" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="_" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="`" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="~" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="¨" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:bar>             <m:barPr>               <m:pos m:val="top" />@@ -120,127 +132,149 @@               </m:r>             </m:e>           </m:bar>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="´" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="¸" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="ˆ" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="ˇ" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˘" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˙" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˚" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˝" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̂" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̑" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:bar>             <m:barPr>               <m:pos m:val="top" />@@ -252,193 +286,227 @@               </m:r>             </m:e>           </m:bar>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃛" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="←" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="→" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="↔" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="↼" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="↽" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⇀" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⇁" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⎴" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⎵" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏝" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏞" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⏟" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⥎" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⥐" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>         </m:e>       </m:mr>       <m:mr>@@ -677,28 +745,32 @@               </m:r>             </m:lim>           </m:limUpp>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̂" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̑" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:limUpp>             <m:e>               <m:r>@@ -713,28 +785,32 @@               </m:r>             </m:lim>           </m:limUpp>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃛" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>-          <m:acc>-            <m:accPr>+          </m:groupChr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>x</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:limUpp>             <m:e>               <m:r>
tests/writers/accents3.mml view
@@ -166,39 +166,39 @@         <mrow>           <munder>             <mi>H</mi>-            <mo accent="false">&#39;</mo>+            <mi>&#39;</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">^</mo>+            <mi>^</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">_</mo>+            <mi>_</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">`</mo>+            <mi>`</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">~</mo>+            <mi>~</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">¨</mo>+            <mi>¨</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">¯</mo>+            <mi>¯</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">´</mo>+            <mi>´</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">¸</mo>+            <mi>¸</mi>           </munder>           <munder>             <mi>H</mi>@@ -210,23 +210,23 @@           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">˘</mo>+            <mi>˘</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">˙</mo>+            <mi>˙</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">˚</mo>+            <mi>˚</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">˜</mo>+            <mi>˜</mi>           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">˝</mo>+            <mi>˝</mi>           </munder>           <munder>             <mi>H</mi>@@ -238,7 +238,7 @@           </munder>           <munder>             <mi>H</mi>-            <mo accent="false">‾</mo>+            <mi>‾</mi>           </munder>           <munder>             <mi>H</mi>
tests/writers/accents4.mml view
@@ -166,39 +166,39 @@         <mrow>           <munder>             <mi>x</mi>-            <mo accent="false">&#39;</mo>+            <mi>&#39;</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">^</mo>+            <mi>^</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">_</mo>+            <mi>_</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">`</mo>+            <mi>`</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">~</mo>+            <mi>~</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">¨</mo>+            <mi>¨</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">¯</mo>+            <mi>¯</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">´</mo>+            <mi>´</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">¸</mo>+            <mi>¸</mi>           </munder>           <munder>             <mi>x</mi>@@ -210,23 +210,23 @@           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">˘</mo>+            <mi>˘</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">˙</mo>+            <mi>˙</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">˚</mo>+            <mi>˚</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">˜</mo>+            <mi>˜</mi>           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">˝</mo>+            <mi>˝</mi>           </munder>           <munder>             <mi>x</mi>@@ -238,7 +238,7 @@           </munder>           <munder>             <mi>x</mi>-            <mo accent="false">‾</mo>+            <mi>‾</mi>           </munder>           <munder>             <mi>x</mi>
tests/writers/accents5.mml view
@@ -202,48 +202,48 @@         <mrow>           <munderover>             <mi>H</mi>-            <mo accent="false">&#39;</mo>-            <mo accent="false">&#39;</mo>+            <mi>&#39;</mi>+            <mi>&#39;</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">^</mo>-            <mo accent="false">^</mo>+            <mi>^</mi>+            <mi>^</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">_</mo>-            <mo accent="false">_</mo>+            <mi>_</mi>+            <mi>_</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">`</mo>-            <mo accent="false">`</mo>+            <mi>`</mi>+            <mi>`</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">~</mo>-            <mo accent="false">~</mo>+            <mi>~</mi>+            <mi>~</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">¨</mo>-            <mo accent="false">¨</mo>+            <mi>¨</mi>+            <mi>¨</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">¯</mo>-            <mo accent="false">¯</mo>+            <mi>¯</mi>+            <mi>¯</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">´</mo>-            <mo accent="false">´</mo>+            <mi>´</mi>+            <mi>´</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">¸</mo>-            <mo accent="false">¸</mo>+            <mi>¸</mi>+            <mi>¸</mi>           </munderover>           <munderover>             <mi>H</mi>@@ -257,28 +257,28 @@           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">˘</mo>-            <mo accent="false">˘</mo>+            <mi>˘</mi>+            <mi>˘</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">˙</mo>-            <mo accent="false">˙</mo>+            <mi>˙</mi>+            <mi>˙</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">˚</mo>-            <mo accent="false">˚</mo>+            <mi>˚</mi>+            <mi>˚</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">˜</mo>-            <mo accent="false">˜</mo>+            <mi>˜</mi>+            <mi>˜</mi>           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">˝</mo>-            <mo accent="false">˝</mo>+            <mi>˝</mi>+            <mi>˝</mi>           </munderover>           <munderover>             <mi>H</mi>@@ -292,8 +292,8 @@           </munderover>           <munderover>             <mi>H</mi>-            <mo accent="false">‾</mo>-            <mo accent="false">‾</mo>+            <mi>‾</mi>+            <mi>‾</mi>           </munderover>           <munderover>             <mi>H</mi>
tests/writers/accents5.omml view
@@ -51,17 +51,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="&#39;" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>&#39;</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -72,17 +74,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="^" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>^</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -93,17 +97,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="_" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>_</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -114,17 +120,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="`" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>`</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -135,17 +143,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="~" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>~</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -156,17 +166,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="¨" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>¨</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -198,17 +210,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="´" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>´</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -219,17 +233,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="¸" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>¸</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -240,17 +256,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="ˆ" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>ˆ</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -261,17 +279,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="ˇ" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>ˇ</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -282,17 +302,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˘" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˘</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -303,17 +325,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˙" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˙</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -324,17 +348,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˚" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˚</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -345,17 +371,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -366,17 +394,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˝" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˝</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -387,17 +417,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̂" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̂</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -408,17 +440,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̑" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̑</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -450,17 +484,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃛" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃛</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -471,17 +507,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -492,17 +530,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="←" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>←</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -513,17 +553,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="→" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>→</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -534,17 +576,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="↔" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>↔</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -555,17 +599,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="↼" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>↼</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -576,17 +622,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="↽" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>↽</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -597,17 +645,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⇀" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⇀</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -618,17 +668,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⇁" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⇁</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -639,17 +691,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⎴" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⎴</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -660,17 +714,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⎵" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⎵</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -681,17 +737,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -702,17 +760,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏝" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏝</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -723,17 +783,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏞" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏞</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -744,17 +806,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏟" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏟</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -765,17 +829,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⥎" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⥎</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -786,17 +852,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⥐" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⥐</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>         </m:e>@@ -1205,17 +1273,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̂" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̂</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -1226,17 +1296,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̑" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̑</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -1271,17 +1343,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃛" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃛</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -1292,17 +1366,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>
tests/writers/accents6.mml view
@@ -202,48 +202,48 @@         <mrow>           <munderover>             <mi>x</mi>-            <mo accent="false">&#39;</mo>-            <mo accent="false">&#39;</mo>+            <mi>&#39;</mi>+            <mi>&#39;</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">^</mo>-            <mo accent="false">^</mo>+            <mi>^</mi>+            <mi>^</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">_</mo>-            <mo accent="false">_</mo>+            <mi>_</mi>+            <mi>_</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">`</mo>-            <mo accent="false">`</mo>+            <mi>`</mi>+            <mi>`</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">~</mo>-            <mo accent="false">~</mo>+            <mi>~</mi>+            <mi>~</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">¨</mo>-            <mo accent="false">¨</mo>+            <mi>¨</mi>+            <mi>¨</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">¯</mo>-            <mo accent="false">¯</mo>+            <mi>¯</mi>+            <mi>¯</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">´</mo>-            <mo accent="false">´</mo>+            <mi>´</mi>+            <mi>´</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">¸</mo>-            <mo accent="false">¸</mo>+            <mi>¸</mi>+            <mi>¸</mi>           </munderover>           <munderover>             <mi>x</mi>@@ -257,28 +257,28 @@           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">˘</mo>-            <mo accent="false">˘</mo>+            <mi>˘</mi>+            <mi>˘</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">˙</mo>-            <mo accent="false">˙</mo>+            <mi>˙</mi>+            <mi>˙</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">˚</mo>-            <mo accent="false">˚</mo>+            <mi>˚</mi>+            <mi>˚</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">˜</mo>-            <mo accent="false">˜</mo>+            <mi>˜</mi>+            <mi>˜</mi>           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">˝</mo>-            <mo accent="false">˝</mo>+            <mi>˝</mi>+            <mi>˝</mi>           </munderover>           <munderover>             <mi>x</mi>@@ -292,8 +292,8 @@           </munderover>           <munderover>             <mi>x</mi>-            <mo accent="false">‾</mo>-            <mo accent="false">‾</mo>+            <mi>‾</mi>+            <mi>‾</mi>           </munderover>           <munderover>             <mi>x</mi>
tests/writers/accents6.omml view
@@ -51,17 +51,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="&#39;" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>&#39;</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -72,17 +74,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="^" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>^</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -93,17 +97,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="_" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>_</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -114,17 +120,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="`" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>`</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -135,17 +143,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="~" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>~</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -156,17 +166,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="¨" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>¨</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -198,17 +210,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="´" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>´</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -219,17 +233,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="¸" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>¸</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -240,17 +256,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="ˆ" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>ˆ</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -261,17 +279,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="ˇ" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>ˇ</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -282,17 +302,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˘" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˘</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -303,17 +325,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˙" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˙</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -324,17 +348,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˚" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˚</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -345,17 +371,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -366,17 +394,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="˝" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>˝</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -387,17 +417,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̂" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̂</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -408,17 +440,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̑" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̑</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -450,17 +484,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃛" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃛</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -471,17 +507,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -492,17 +530,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="←" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>←</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -513,17 +553,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="→" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>→</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -534,17 +576,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="↔" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>↔</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -555,17 +599,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="↼" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>↼</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -576,17 +622,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="↽" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>↽</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -597,17 +645,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⇀" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⇀</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -618,17 +668,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⇁" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⇁</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -639,17 +691,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⎴" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⎴</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -660,17 +714,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⎵" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⎵</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -681,17 +737,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -702,17 +760,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏝" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏝</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -723,17 +783,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏞" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏞</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -744,17 +806,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⏟" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⏟</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -765,17 +829,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⥎" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⥎</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -786,17 +852,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⥐" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⥐</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>         </m:e>@@ -1205,17 +1273,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̂" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̂</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -1226,17 +1296,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="̑" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>̑</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -1271,17 +1343,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃛" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃛</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>@@ -1292,17 +1366,19 @@               </m:r>             </m:e>             <m:lim>-              <m:acc>-                <m:accPr>+              <m:groupChr>+                <m:groupChrPr>                   <m:chr m:val="⃜" />-                </m:accPr>+                  <m:pos m:val="top" />+                  <m:vertJc m:val="bot" />+                </m:groupChrPr>                 <m:e>                   <m:r>                     <m:rPr />                     <m:t>⃜</m:t>                   </m:r>                 </m:e>-              </m:acc>+              </m:groupChr>             </m:lim>           </m:limLow>           <m:limLow>
tests/writers/b.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">backepsilon</mtext>       </mtd>       <mtd>-        <mo>϶</mo>+        <mi>϶</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">bbrktbrk</mtext>       </mtd>       <mtd>-        <mo>⎶</mo>+        <mi>⎶</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">bcy</mtext>       </mtd>       <mtd>-        <mo>б</mo>+        <mi>б</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">Bcy</mtext>       </mtd>       <mtd>-        <mo>Б</mo>+        <mi>Б</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">becaus</mtext>       </mtd>       <mtd>-        <mo>∵</mo>+        <mi>∵</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">because</mtext>       </mtd>       <mtd>-        <mo>∵</mo>+        <mi>∵</mi>       </mtd>     </mtr>     <mtr>@@ -150,7 +150,7 @@         <mtext mathvariant="normal">Because</mtext>       </mtd>       <mtd>-        <mo>∵</mo>+        <mi>∵</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">bemptyv</mtext>       </mtd>       <mtd>-        <mo>⦰</mo>+        <mi>⦰</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">bepsi</mtext>       </mtd>       <mtd>-        <mo>϶</mo>+        <mi>϶</mi>       </mtd>     </mtr>     <mtr>@@ -238,7 +238,7 @@         <mtext mathvariant="normal">bigcirc</mtext>       </mtd>       <mtd>-        <mo>◯</mo>+        <mi>◯</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">bigstar</mtext>       </mtd>       <mtd>-        <mo>★</mo>+        <mi>★</mi>       </mtd>     </mtr>     <mtr>@@ -350,7 +350,7 @@         <mtext mathvariant="normal">blacksquare</mtext>       </mtd>       <mtd>-        <mo>▪</mo>+        <mi>▪</mi>       </mtd>     </mtr>     <mtr>@@ -390,7 +390,7 @@         <mtext mathvariant="normal">blank</mtext>       </mtd>       <mtd>-        <mo>␣</mo>+        <mi>␣</mi>       </mtd>     </mtr>     <mtr>@@ -398,7 +398,7 @@         <mtext mathvariant="normal">blk12</mtext>       </mtd>       <mtd>-        <mo>▒</mo>+        <mi>▒</mi>       </mtd>     </mtr>     <mtr>@@ -406,7 +406,7 @@         <mtext mathvariant="normal">blk14</mtext>       </mtd>       <mtd>-        <mo>░</mo>+        <mi>░</mi>       </mtd>     </mtr>     <mtr>@@ -414,7 +414,7 @@         <mtext mathvariant="normal">blk34</mtext>       </mtd>       <mtd>-        <mo>▓</mo>+        <mi>▓</mi>       </mtd>     </mtr>     <mtr>@@ -422,7 +422,7 @@         <mtext mathvariant="normal">block</mtext>       </mtd>       <mtd>-        <mo>█</mo>+        <mi>█</mi>       </mtd>     </mtr>     <mtr>@@ -446,7 +446,7 @@         <mtext mathvariant="normal">bnot</mtext>       </mtd>       <mtd>-        <mo>⌐</mo>+        <mi>⌐</mi>       </mtd>     </mtr>     <mtr>@@ -478,7 +478,7 @@         <mtext mathvariant="normal">bot</mtext>       </mtd>       <mtd>-        <mo>⊥</mo>+        <mi>⊥</mi>       </mtd>     </mtr>     <mtr>@@ -486,7 +486,7 @@         <mtext mathvariant="normal">bottom</mtext>       </mtd>       <mtd>-        <mo>⊥</mo>+        <mi>⊥</mi>       </mtd>     </mtr>     <mtr>@@ -502,7 +502,7 @@         <mtext mathvariant="normal">boxbox</mtext>       </mtd>       <mtd>-        <mo>⧉</mo>+        <mi>⧉</mi>       </mtd>     </mtr>     <mtr>@@ -510,7 +510,7 @@         <mtext mathvariant="normal">boxdl</mtext>       </mtd>       <mtd>-        <mo>┐</mo>+        <mi>┐</mi>       </mtd>     </mtr>     <mtr>@@ -518,7 +518,7 @@         <mtext mathvariant="normal">boxdL</mtext>       </mtd>       <mtd>-        <mo>╕</mo>+        <mi>╕</mi>       </mtd>     </mtr>     <mtr>@@ -526,7 +526,7 @@         <mtext mathvariant="normal">boxDl</mtext>       </mtd>       <mtd>-        <mo>╖</mo>+        <mi>╖</mi>       </mtd>     </mtr>     <mtr>@@ -534,7 +534,7 @@         <mtext mathvariant="normal">boxDL</mtext>       </mtd>       <mtd>-        <mo>╗</mo>+        <mi>╗</mi>       </mtd>     </mtr>     <mtr>@@ -542,7 +542,7 @@         <mtext mathvariant="normal">boxdr</mtext>       </mtd>       <mtd>-        <mo>┌</mo>+        <mi>┌</mi>       </mtd>     </mtr>     <mtr>@@ -550,7 +550,7 @@         <mtext mathvariant="normal">boxdR</mtext>       </mtd>       <mtd>-        <mo>╒</mo>+        <mi>╒</mi>       </mtd>     </mtr>     <mtr>@@ -558,7 +558,7 @@         <mtext mathvariant="normal">boxDr</mtext>       </mtd>       <mtd>-        <mo>╓</mo>+        <mi>╓</mi>       </mtd>     </mtr>     <mtr>@@ -566,7 +566,7 @@         <mtext mathvariant="normal">boxDR</mtext>       </mtd>       <mtd>-        <mo>╔</mo>+        <mi>╔</mi>       </mtd>     </mtr>     <mtr>@@ -574,7 +574,7 @@         <mtext mathvariant="normal">boxh</mtext>       </mtd>       <mtd>-        <mo>─</mo>+        <mi>─</mi>       </mtd>     </mtr>     <mtr>@@ -582,7 +582,7 @@         <mtext mathvariant="normal">boxH</mtext>       </mtd>       <mtd>-        <mo>═</mo>+        <mi>═</mi>       </mtd>     </mtr>     <mtr>@@ -590,7 +590,7 @@         <mtext mathvariant="normal">boxhd</mtext>       </mtd>       <mtd>-        <mo>┬</mo>+        <mi>┬</mi>       </mtd>     </mtr>     <mtr>@@ -598,7 +598,7 @@         <mtext mathvariant="normal">boxhD</mtext>       </mtd>       <mtd>-        <mo>╥</mo>+        <mi>╥</mi>       </mtd>     </mtr>     <mtr>@@ -606,7 +606,7 @@         <mtext mathvariant="normal">boxHd</mtext>       </mtd>       <mtd>-        <mo>╤</mo>+        <mi>╤</mi>       </mtd>     </mtr>     <mtr>@@ -614,7 +614,7 @@         <mtext mathvariant="normal">boxHD</mtext>       </mtd>       <mtd>-        <mo>╦</mo>+        <mi>╦</mi>       </mtd>     </mtr>     <mtr>@@ -622,7 +622,7 @@         <mtext mathvariant="normal">boxhu</mtext>       </mtd>       <mtd>-        <mo>┴</mo>+        <mi>┴</mi>       </mtd>     </mtr>     <mtr>@@ -630,7 +630,7 @@         <mtext mathvariant="normal">boxhU</mtext>       </mtd>       <mtd>-        <mo>╨</mo>+        <mi>╨</mi>       </mtd>     </mtr>     <mtr>@@ -638,7 +638,7 @@         <mtext mathvariant="normal">boxHu</mtext>       </mtd>       <mtd>-        <mo>╧</mo>+        <mi>╧</mi>       </mtd>     </mtr>     <mtr>@@ -646,7 +646,7 @@         <mtext mathvariant="normal">boxHU</mtext>       </mtd>       <mtd>-        <mo>╩</mo>+        <mi>╩</mi>       </mtd>     </mtr>     <mtr>@@ -678,7 +678,7 @@         <mtext mathvariant="normal">boxul</mtext>       </mtd>       <mtd>-        <mo>┘</mo>+        <mi>┘</mi>       </mtd>     </mtr>     <mtr>@@ -686,7 +686,7 @@         <mtext mathvariant="normal">boxuL</mtext>       </mtd>       <mtd>-        <mo>╛</mo>+        <mi>╛</mi>       </mtd>     </mtr>     <mtr>@@ -694,7 +694,7 @@         <mtext mathvariant="normal">boxUl</mtext>       </mtd>       <mtd>-        <mo>╜</mo>+        <mi>╜</mi>       </mtd>     </mtr>     <mtr>@@ -702,7 +702,7 @@         <mtext mathvariant="normal">boxUL</mtext>       </mtd>       <mtd>-        <mo>╝</mo>+        <mi>╝</mi>       </mtd>     </mtr>     <mtr>@@ -710,7 +710,7 @@         <mtext mathvariant="normal">boxur</mtext>       </mtd>       <mtd>-        <mo>└</mo>+        <mi>└</mi>       </mtd>     </mtr>     <mtr>@@ -718,7 +718,7 @@         <mtext mathvariant="normal">boxuR</mtext>       </mtd>       <mtd>-        <mo>╘</mo>+        <mi>╘</mi>       </mtd>     </mtr>     <mtr>@@ -726,7 +726,7 @@         <mtext mathvariant="normal">boxUr</mtext>       </mtd>       <mtd>-        <mo>╙</mo>+        <mi>╙</mi>       </mtd>     </mtr>     <mtr>@@ -734,7 +734,7 @@         <mtext mathvariant="normal">boxUR</mtext>       </mtd>       <mtd>-        <mo>╚</mo>+        <mi>╚</mi>       </mtd>     </mtr>     <mtr>@@ -742,7 +742,7 @@         <mtext mathvariant="normal">boxv</mtext>       </mtd>       <mtd>-        <mo>│</mo>+        <mi>│</mi>       </mtd>     </mtr>     <mtr>@@ -750,7 +750,7 @@         <mtext mathvariant="normal">boxV</mtext>       </mtd>       <mtd>-        <mo>║</mo>+        <mi>║</mi>       </mtd>     </mtr>     <mtr>@@ -758,7 +758,7 @@         <mtext mathvariant="normal">boxvh</mtext>       </mtd>       <mtd>-        <mo>┼</mo>+        <mi>┼</mi>       </mtd>     </mtr>     <mtr>@@ -766,7 +766,7 @@         <mtext mathvariant="normal">boxvH</mtext>       </mtd>       <mtd>-        <mo>╪</mo>+        <mi>╪</mi>       </mtd>     </mtr>     <mtr>@@ -774,7 +774,7 @@         <mtext mathvariant="normal">boxVh</mtext>       </mtd>       <mtd>-        <mo>╫</mo>+        <mi>╫</mi>       </mtd>     </mtr>     <mtr>@@ -782,7 +782,7 @@         <mtext mathvariant="normal">boxVH</mtext>       </mtd>       <mtd>-        <mo>╬</mo>+        <mi>╬</mi>       </mtd>     </mtr>     <mtr>@@ -790,7 +790,7 @@         <mtext mathvariant="normal">boxvl</mtext>       </mtd>       <mtd>-        <mo>┤</mo>+        <mi>┤</mi>       </mtd>     </mtr>     <mtr>@@ -798,7 +798,7 @@         <mtext mathvariant="normal">boxvL</mtext>       </mtd>       <mtd>-        <mo>╡</mo>+        <mi>╡</mi>       </mtd>     </mtr>     <mtr>@@ -806,7 +806,7 @@         <mtext mathvariant="normal">boxVl</mtext>       </mtd>       <mtd>-        <mo>╢</mo>+        <mi>╢</mi>       </mtd>     </mtr>     <mtr>@@ -814,7 +814,7 @@         <mtext mathvariant="normal">boxVL</mtext>       </mtd>       <mtd>-        <mo>╣</mo>+        <mi>╣</mi>       </mtd>     </mtr>     <mtr>@@ -822,7 +822,7 @@         <mtext mathvariant="normal">boxvr</mtext>       </mtd>       <mtd>-        <mo>├</mo>+        <mi>├</mi>       </mtd>     </mtr>     <mtr>@@ -830,7 +830,7 @@         <mtext mathvariant="normal">boxvR</mtext>       </mtd>       <mtd>-        <mo>╞</mo>+        <mi>╞</mi>       </mtd>     </mtr>     <mtr>@@ -838,7 +838,7 @@         <mtext mathvariant="normal">boxVr</mtext>       </mtd>       <mtd>-        <mo>╟</mo>+        <mi>╟</mi>       </mtd>     </mtr>     <mtr>@@ -846,7 +846,7 @@         <mtext mathvariant="normal">boxVR</mtext>       </mtd>       <mtd>-        <mo>╠</mo>+        <mi>╠</mi>       </mtd>     </mtr>     <mtr>@@ -878,7 +878,7 @@         <mtext mathvariant="normal">brvbar</mtext>       </mtd>       <mtd>-        <mo>¦</mo>+        <mi>¦</mi>       </mtd>     </mtr>     <mtr>@@ -902,7 +902,7 @@         <mtext mathvariant="normal">bsemi</mtext>       </mtd>       <mtd>-        <mo>⁏</mo>+        <mi>⁏</mi>       </mtd>     </mtr>     <mtr>@@ -926,7 +926,7 @@         <mtext mathvariant="normal">bsol</mtext>       </mtd>       <mtd>-        <mo>\</mo>+        <mi>\</mi>       </mtd>     </mtr>     <mtr>
tests/writers/binomial_coefficient.mml view
@@ -43,18 +43,18 @@     <mfrac>       <mrow>         <mi>n</mi>-        <mo>!</mo>+        <mi>!</mi>       </mrow>       <mrow>         <mi>k</mi>-        <mo>!</mo>+        <mi>!</mi>         <mspace width="0.167em" />         <mo stretchy="false" form="prefix">(</mo>         <mi>n</mi>         <mo>−</mo>         <mi>k</mi>         <mo stretchy="false" form="postfix">)</mo>-        <mo>!</mo>+        <mi>!</mi>       </mrow>     </mfrac>   </mrow>
tests/writers/c.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">cacute</mtext>       </mtd>       <mtd>-        <mo>ć</mo>+        <mi>ć</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Cacute</mtext>       </mtd>       <mtd>-        <mo>Ć</mo>+        <mi>Ć</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">CapitalDifferentialD</mtext>       </mtd>       <mtd>-        <mo>ⅅ</mo>+        <mi>ⅅ</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">caret</mtext>       </mtd>       <mtd>-        <mo>⁁</mo>+        <mi>⁁</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">ccaron</mtext>       </mtd>       <mtd>-        <mo>č</mo>+        <mi>č</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">Ccaron</mtext>       </mtd>       <mtd>-        <mo>Č</mo>+        <mi>Č</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">ccedil</mtext>       </mtd>       <mtd>-        <mo>ç</mo>+        <mi>ç</mi>       </mtd>     </mtr>     <mtr>@@ -150,7 +150,7 @@         <mtext mathvariant="normal">Ccedil</mtext>       </mtd>       <mtd>-        <mo>Ç</mo>+        <mi>Ç</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">ccirc</mtext>       </mtd>       <mtd>-        <mo>ĉ</mo>+        <mi>ĉ</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">Ccirc</mtext>       </mtd>       <mtd>-        <mo>Ĉ</mo>+        <mi>Ĉ</mi>       </mtd>     </mtr>     <mtr>@@ -198,7 +198,7 @@         <mtext mathvariant="normal">cdot</mtext>       </mtd>       <mtd>-        <mo>ċ</mo>+        <mi>ċ</mi>       </mtd>     </mtr>     <mtr>@@ -206,7 +206,7 @@         <mtext mathvariant="normal">Cdot</mtext>       </mtd>       <mtd>-        <mo>Ċ</mo>+        <mi>Ċ</mi>       </mtd>     </mtr>     <mtr>@@ -230,7 +230,7 @@         <mtext mathvariant="normal">cemptyv</mtext>       </mtd>       <mtd>-        <mo>⦲</mo>+        <mi>⦲</mi>       </mtd>     </mtr>     <mtr>@@ -238,7 +238,7 @@         <mtext mathvariant="normal">cent</mtext>       </mtd>       <mtd>-        <mo>¢</mo>+        <mi>¢</mi>       </mtd>     </mtr>     <mtr>@@ -278,7 +278,7 @@         <mtext mathvariant="normal">chcy</mtext>       </mtd>       <mtd>-        <mo>ч</mo>+        <mi>ч</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">CHcy</mtext>       </mtd>       <mtd>-        <mo>Ч</mo>+        <mi>Ч</mi>       </mtd>     </mtr>     <mtr>@@ -294,7 +294,7 @@         <mtext mathvariant="normal">check</mtext>       </mtd>       <mtd>-        <mo>✓</mo>+        <mi>✓</mi>       </mtd>     </mtr>     <mtr>@@ -302,7 +302,7 @@         <mtext mathvariant="normal">checkmark</mtext>       </mtd>       <mtd>-        <mo>✓</mo>+        <mi>✓</mi>       </mtd>     </mtr>     <mtr>@@ -342,7 +342,7 @@         <mtext mathvariant="normal">circlearrowleft</mtext>       </mtd>       <mtd>-        <mo>↺</mo>+        <mi>↺</mi>       </mtd>     </mtr>     <mtr>@@ -350,7 +350,7 @@         <mtext mathvariant="normal">circlearrowright</mtext>       </mtd>       <mtd>-        <mo>↻</mo>+        <mi>↻</mi>       </mtd>     </mtr>     <mtr>@@ -390,7 +390,7 @@         <mtext mathvariant="normal">circledR</mtext>       </mtd>       <mtd>-        <mo>®</mo>+        <mi>®</mi>       </mtd>     </mtr>     <mtr>@@ -398,7 +398,7 @@         <mtext mathvariant="normal">circledS</mtext>       </mtd>       <mtd>-        <mo>Ⓢ</mo>+        <mi>Ⓢ</mi>       </mtd>     </mtr>     <mtr>@@ -438,7 +438,7 @@         <mtext mathvariant="normal">cirE</mtext>       </mtd>       <mtd>-        <mo>⧃</mo>+        <mi>⧃</mi>       </mtd>     </mtr>     <mtr>@@ -462,7 +462,7 @@         <mtext mathvariant="normal">cirscir</mtext>       </mtd>       <mtd>-        <mo>⧂</mo>+        <mi>⧂</mi>       </mtd>     </mtr>     <mtr>@@ -494,7 +494,7 @@         <mtext mathvariant="normal">clubs</mtext>       </mtd>       <mtd>-        <mo>♣</mo>+        <mi>♣</mi>       </mtd>     </mtr>     <mtr>@@ -502,7 +502,7 @@         <mtext mathvariant="normal">clubsuit</mtext>       </mtd>       <mtd>-        <mo>♣</mo>+        <mi>♣</mi>       </mtd>     </mtr>     <mtr>@@ -558,7 +558,7 @@         <mtext mathvariant="normal">commat</mtext>       </mtd>       <mtd>-        <mo>@</mo>+        <mi>@</mi>       </mtd>     </mtr>     <mtr>@@ -566,7 +566,7 @@         <mtext mathvariant="normal">comp</mtext>       </mtd>       <mtd>-        <mo>∁</mo>+        <mi>∁</mi>       </mtd>     </mtr>     <mtr>@@ -582,7 +582,7 @@         <mtext mathvariant="normal">complement</mtext>       </mtd>       <mtd>-        <mo>∁</mo>+        <mi>∁</mi>       </mtd>     </mtr>     <mtr>@@ -678,7 +678,7 @@         <mtext mathvariant="normal">copy</mtext>       </mtd>       <mtd>-        <mo>©</mo>+        <mi>©</mi>       </mtd>     </mtr>     <mtr>@@ -686,7 +686,7 @@         <mtext mathvariant="normal">copysr</mtext>       </mtd>       <mtd>-        <mo>℗</mo>+        <mi>℗</mi>       </mtd>     </mtr>     <mtr>@@ -702,7 +702,7 @@         <mtext mathvariant="normal">cross</mtext>       </mtd>       <mtd>-        <mo>✗</mo>+        <mi>✗</mi>       </mtd>     </mtr>     <mtr>@@ -766,7 +766,7 @@         <mtext mathvariant="normal">ctdot</mtext>       </mtd>       <mtd>-        <mo>⋯</mo>+        <mi>⋯</mi>       </mtd>     </mtr>     <mtr>@@ -782,7 +782,7 @@         <mtext mathvariant="normal">cudarrr</mtext>       </mtd>       <mtd>-        <mo>⤵</mo>+        <mi>⤵</mi>       </mtd>     </mtr>     <mtr>@@ -942,7 +942,7 @@         <mtext mathvariant="normal">curren</mtext>       </mtd>       <mtd>-        <mo>¤</mo>+        <mi>¤</mi>       </mtd>     </mtr>     <mtr>@@ -998,7 +998,7 @@         <mtext mathvariant="normal">cylcty</mtext>       </mtd>       <mtd>-        <mo>⌭</mo>+        <mi>⌭</mi>       </mtd>     </mtr>   </mtable>
tests/writers/chain1.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>     <mo>=</mo>     <munderover>@@ -70,7 +70,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>     <mo>=</mo>     <msubsup>@@ -85,7 +85,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>     <mo>=</mo>     <msubsup>@@ -100,7 +100,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/chain2.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>     <mo>=</mo>     <munderover>@@ -70,7 +70,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>     <mo>=</mo>     <msubsup>@@ -85,7 +85,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>     <mo>=</mo>     <msubsup>@@ -100,7 +100,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/complex1.mml view
@@ -207,11 +207,11 @@                 <mtd>                   <mfrac>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>X</mi>                     </mrow>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>u</mi>                     </mrow>                   </mfrac>@@ -219,11 +219,11 @@                 <mtd>                   <mfrac>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>Y</mi>                     </mrow>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>u</mi>                     </mrow>                   </mfrac>@@ -236,11 +236,11 @@                 <mtd>                   <mfrac>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>X</mi>                     </mrow>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>v</mi>                     </mrow>                   </mfrac>@@ -248,11 +248,11 @@                 <mtd>                   <mfrac>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>Y</mi>                     </mrow>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mi>v</mi>                     </mrow>                   </mfrac>@@ -284,7 +284,7 @@                   <mn>1</mn>                 </mtd>                 <mtd>-                  <mo>⋯</mo>+                  <mi>⋯</mi>                 </mtd>                 <mtd>                   <mn>1</mn>@@ -306,7 +306,7 @@                   </msubsup>                 </mtd>                 <mtd>-                  <mo>⋯</mo>+                  <mi>⋯</mi>                 </mtd>                 <mtd>                   <msubsup>@@ -332,7 +332,7 @@                   </msubsup>                 </mtd>                 <mtd>-                  <mo>⋯</mo>+                  <mi>⋯</mi>                 </mtd>                 <mtd>                   <msubsup>@@ -380,7 +380,7 @@                   </msubsup>                 </mtd>                 <mtd>-                  <mo>⋯</mo>+                  <mi>⋯</mi>                 </mtd>                 <mtd>                   <msubsup>@@ -514,7 +514,7 @@             <mtr>               <mtd>                 <mrow>-                  <mo>∇</mo>+                  <mi>∇</mi>                   <mspace width="0.0em" />                   <mo>×</mo>                   <munderover>@@ -531,7 +531,7 @@                   <mspace width="0.167em" />                   <mfrac>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mspace width="0.0em" />                       <munderover>                         <mi>E</mi>@@ -540,7 +540,7 @@                       </munderover>                     </mrow>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mspace width="0.0em" />                       <mi>t</mi>                     </mrow>@@ -571,7 +571,7 @@             <mtr>               <mtd>                 <mrow>-                  <mo>∇</mo>+                  <mi>∇</mi>                   <mspace width="0.0em" />                   <mo>·</mo>                   <munderover>@@ -595,7 +595,7 @@             <mtr>               <mtd>                 <mrow>-                  <mo>∇</mo>+                  <mi>∇</mi>                   <mspace width="0.0em" />                   <mo>×</mo>                   <munderover>@@ -613,7 +613,7 @@                   <mspace width="0.167em" />                   <mfrac>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mspace width="0.0em" />                       <munderover>                         <mi>B</mi>@@ -622,7 +622,7 @@                       </munderover>                     </mrow>                     <mrow>-                      <mo>∂</mo>+                      <mi>∂</mi>                       <mspace width="0.0em" />                       <mi>t</mi>                     </mrow>@@ -643,7 +643,7 @@             <mtr>               <mtd>                 <mrow>-                  <mo>∇</mo>+                  <mi>∇</mi>                   <mspace width="0.0em" />                   <mo>·</mo>                   <munderover>@@ -805,7 +805,7 @@                         <mrow>                           <mn>1</mn>                           <mo>+</mo>-                          <mo>…</mo>+                          <mi>…</mi>                         </mrow>                       </mfrac>                     </mrow>@@ -866,7 +866,7 @@                     <mn>1</mn>                   </msubsup>                   <mo>+</mo>-                  <mo>⋯</mo>+                  <mi>⋯</mi>                 </mrow>               </mfrac>             </mrow>@@ -921,7 +921,7 @@                   <mn>2</mn>                 </msubsup>                 <mo stretchy="false" form="postfix">)</mo>-                <mo>⋯</mo>+                <mi>⋯</mi>                 <mo stretchy="false" form="prefix">(</mo>                 <mn>1</mn>                 <mo>-</mo>
tests/writers/complex1.omml view
@@ -1253,12 +1253,14 @@                     </m:r>                   </m:e>                   <m:lim>-                    <m:acc>-                      <m:accPr>+                    <m:groupChr>+                      <m:groupChrPr>                         <m:chr m:val="˙" />-                      </m:accPr>+                        <m:pos m:val="top" />+                        <m:vertJc m:val="bot" />+                      </m:groupChrPr>                       <m:e />-                    </m:acc>+                    </m:groupChr>                   </m:lim>                 </m:limLow>               </m:e>@@ -1305,12 +1307,14 @@                     </m:r>                   </m:e>                   <m:lim>-                    <m:acc>-                      <m:accPr>+                    <m:groupChr>+                      <m:groupChrPr>                         <m:chr m:val="˙" />-                      </m:accPr>+                        <m:pos m:val="top" />+                        <m:vertJc m:val="bot" />+                      </m:groupChrPr>                       <m:e />-                    </m:acc>+                    </m:groupChr>                   </m:lim>                 </m:limLow>               </m:e>@@ -1361,12 +1365,14 @@                     </m:r>                   </m:e>                   <m:lim>-                    <m:acc>-                      <m:accPr>+                    <m:groupChr>+                      <m:groupChrPr>                         <m:chr m:val="˙" />-                      </m:accPr>+                        <m:pos m:val="top" />+                        <m:vertJc m:val="bot" />+                      </m:groupChrPr>                       <m:e />-                    </m:acc>+                    </m:groupChr>                   </m:lim>                 </m:limLow>               </m:e>@@ -1468,12 +1474,14 @@                         </m:r>                       </m:e>                       <m:lim>-                        <m:acc>-                          <m:accPr>+                        <m:groupChr>+                          <m:groupChrPr>                             <m:chr m:val="↼" />-                          </m:accPr>+                            <m:pos m:val="top" />+                            <m:vertJc m:val="bot" />+                          </m:groupChrPr>                           <m:e />-                        </m:acc>+                        </m:groupChr>                       </m:lim>                     </m:limLow>                     <m:r>@@ -1522,12 +1530,14 @@                             </m:r>                           </m:e>                           <m:lim>-                            <m:acc>-                              <m:accPr>+                            <m:groupChr>+                              <m:groupChrPr>                                 <m:chr m:val="↼" />-                              </m:accPr>+                                <m:pos m:val="top" />+                                <m:vertJc m:val="bot" />+                              </m:groupChrPr>                               <m:e />-                            </m:acc>+                            </m:groupChr>                           </m:lim>                         </m:limLow>                       </m:num>@@ -1583,12 +1593,14 @@                         </m:r>                       </m:e>                       <m:lim>-                        <m:acc>-                          <m:accPr>+                        <m:groupChr>+                          <m:groupChrPr>                             <m:chr m:val="↼" />-                          </m:accPr>+                            <m:pos m:val="top" />+                            <m:vertJc m:val="bot" />+                          </m:groupChrPr>                           <m:e />-                        </m:acc>+                        </m:groupChr>                       </m:lim>                     </m:limLow>                   </m:e>@@ -1611,12 +1623,14 @@                         </m:r>                       </m:e>                       <m:lim>-                        <m:acc>-                          <m:accPr>+                        <m:groupChr>+                          <m:groupChrPr>                             <m:chr m:val="↼" />-                          </m:accPr>+                            <m:pos m:val="top" />+                            <m:vertJc m:val="bot" />+                          </m:groupChrPr>                           <m:e />-                        </m:acc>+                        </m:groupChr>                       </m:lim>                     </m:limLow>                   </m:e>@@ -1659,12 +1673,14 @@                         </m:r>                       </m:e>                       <m:lim>-                        <m:acc>-                          <m:accPr>+                        <m:groupChr>+                          <m:groupChrPr>                             <m:chr m:val="↼" />-                          </m:accPr>+                            <m:pos m:val="top" />+                            <m:vertJc m:val="bot" />+                          </m:groupChrPr>                           <m:e />-                        </m:acc>+                        </m:groupChr>                       </m:lim>                     </m:limLow>                     <m:r>@@ -1717,12 +1733,14 @@                             </m:r>                           </m:e>                           <m:lim>-                            <m:acc>-                              <m:accPr>+                            <m:groupChr>+                              <m:groupChrPr>                                 <m:chr m:val="↼" />-                              </m:accPr>+                                <m:pos m:val="top" />+                                <m:vertJc m:val="bot" />+                              </m:groupChrPr>                               <m:e />-                            </m:acc>+                            </m:groupChr>                           </m:lim>                         </m:limLow>                       </m:num>@@ -1753,12 +1771,14 @@                         </m:r>                       </m:e>                       <m:lim>-                        <m:acc>-                          <m:accPr>+                        <m:groupChr>+                          <m:groupChrPr>                             <m:chr m:val="↼" />-                          </m:accPr>+                            <m:pos m:val="top" />+                            <m:vertJc m:val="bot" />+                          </m:groupChrPr>                           <m:e />-                        </m:acc>+                        </m:groupChr>                       </m:lim>                     </m:limLow>                   </m:e>@@ -1781,12 +1801,14 @@                         </m:r>                       </m:e>                       <m:lim>-                        <m:acc>-                          <m:accPr>+                        <m:groupChr>+                          <m:groupChrPr>                             <m:chr m:val="↼" />-                          </m:accPr>+                            <m:pos m:val="top" />+                            <m:vertJc m:val="bot" />+                          </m:groupChrPr>                           <m:e />-                        </m:acc>+                        </m:groupChr>                       </m:lim>                     </m:limLow>                   </m:e>
tests/writers/complex3.mml view
@@ -5,12183 +5,12183 @@       <mtd>         <mrow>           <mn>2</mn>-          <mo>&#8290;</mo>-          <mrow>-            <mo>∑</mo>-            <mrow>-              <mi>a</mi>-              <mo>&#8290;</mo>-              <mi>b</mi>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <msup>-          <mi>x</mi>-          <mrow>-            <mo>′</mo>-            <mn>3</mn>-          </mrow>-        </msup>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <msup>-                <mi>f</mi>-                <mo>′</mo>-              </msup>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mi>x</mi>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>cos</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mn>1</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mi>f</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mi>z</mi>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>=</mo>-            <mrow>-              <munderover>-                <mo>∑</mo>-                <mrow>-                  <mi>n</mi>-                  <mo>=</mo>-                  <mn>0</mn>-                </mrow>-                <mi>∞</mi>-              </munderover>-              <mrow>-                <msub>-                  <mi>a</mi>-                  <mi>n</mi>-                </msub>-                <mo>&#8290;</mo>-                <msup>-                  <mi>z</mi>-                  <mi>n</mi>-                </msup>-              </mrow>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">, </mtext>-          <mrow>-            <mrow>-              <mrow>-                <mo stretchy="true" form="prefix">|</mo>-                <mi>z</mi>-                <mo stretchy="true" form="postfix">|</mo>-              </mrow>-              <mo>&lt;</mo>-              <mi>R</mi>-            </mrow>-            <mo>&#8203;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mi>R</mi>-                <mo>≠</mo>-                <mn>0</mn>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">∫</mo>-            <msub>-              <mrow />-              <mi>C</mi>-            </msub>-            <mrow>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <munderover>-                    <mo>∑</mo>-                    <mrow>-                      <mi>n</mi>-                      <mo>=</mo>-                      <mn>0</mn>-                    </mrow>-                    <mi>∞</mi>-                  </munderover>-                  <mrow>-                    <msub>-                      <mi>a</mi>-                      <mi>n</mi>-                    </msub>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>z</mi>-                      <mi>n</mi>-                    </msup>-                  </mrow>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>z</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <munderover>-              <mo>∑</mo>-              <mrow>-                <mi>n</mi>-                <mo>=</mo>-                <mn>0</mn>-              </mrow>-              <mi>∞</mi>-            </munderover>-            <mrow>-              <msub>-                <mi>a</mi>-                <mi>n</mi>-              </msub>-              <mo>&#8290;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">∫</mo>-                <msub>-                  <mrow />-                  <mi>C</mi>-                </msub>-                <mrow>-                  <msup>-                    <mi>z</mi>-                    <mi>n</mi>-                  </msup>-                  <mo>&#8290;</mo>-                  <mrow>-                    <mo>ⅆ</mo>-                    <mi>z</mi>-                  </mrow>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mi>n</mi>-                <mo accent="true">→</mo>-                <mi>∞</mi>-              </mrow>-            </munder>-            <mrow>-              <mo stretchy="true" form="prefix">|</mo>-              <mrow>-                <mo stretchy="true" form="prefix">∫</mo>-                <msub>-                  <mrow />-                  <mi>C</mi>-                </msub>-                <mrow>-                  <mrow>-                    <mo stretchy="true" form="prefix">[</mo>-                    <mrow>-                      <mrow>-                        <mi>f</mi>-                        <mo>&#8289;</mo>-                        <mrow>-                          <mo stretchy="false" form="prefix">(</mo>-                          <mi>z</mi>-                          <mo stretchy="false" form="postfix">)</mo>-                        </mrow>-                      </mrow>-                      <mo>−</mo>-                      <mrow>-                        <munderover>-                          <mo>∑</mo>-                          <mrow>-                            <mi>k</mi>-                            <mo>=</mo>-                            <mn>0</mn>-                          </mrow>-                          <mi>n</mi>-                        </munderover>-                        <mrow>-                          <msub>-                            <mi>a</mi>-                            <mi>k</mi>-                          </msub>-                          <mo>&#8290;</mo>-                          <msup>-                            <mi>z</mi>-                            <mi>k</mi>-                          </msup>-                        </mrow>-                      </mrow>-                    </mrow>-                    <mo stretchy="true" form="postfix">]</mo>-                  </mrow>-                  <mo>&#8290;</mo>-                  <mrow>-                    <mo>ⅆ</mo>-                    <mi>z</mi>-                  </mrow>-                </mrow>-              </mrow>-              <mo stretchy="true" form="postfix">|</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mn>0</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>n</mi>-            <mo>≥</mo>-            <mrow>-              <mi>N</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mi>ε</mi>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mrow>-          <mo stretchy="true" form="infix">⇒</mo>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">|</mo>-              <mrow>-                <mrow>-                  <mi>f</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mi>z</mi>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>−</mo>-                <mrow>-                  <munderover>-                    <mo>∑</mo>-                    <mrow>-                      <mi>k</mi>-                      <mo>=</mo>-                      <mn>0</mn>-                    </mrow>-                    <mi>n</mi>-                  </munderover>-                  <mrow>-                    <msub>-                      <mi>a</mi>-                      <mi>k</mi>-                    </msub>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>z</mi>-                      <mi>k</mi>-                    </msup>-                  </mrow>-                </mrow>-              </mrow>-              <mo stretchy="true" form="postfix">|</mo>-            </mrow>-            <mo>&lt;</mo>-            <mi>ε</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Bq</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Ci</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> amol</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Emol</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> fmol</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Gmol</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kmol</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Mmol</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μmol</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mmol</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mol</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nmol</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Pmol</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> pmol</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Tmol</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> acre</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> hectare</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <msup>-              <mtext mathvariant="normal"> ft</mtext>-              <mn>2</mn>-            </msup>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <msup>-              <mtext mathvariant="normal"> in</mtext>-              <mn>2</mn>-            </msup>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <msup>-              <mtext mathvariant="normal"> m</mtext>-              <mn>2</mn>-            </msup>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> A</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kA</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μA</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mA</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nA</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> F</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μF</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mF</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nF</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> pF</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> C</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>1.0</mn>-            <mtext mathvariant="normal"> m/s/s</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>0.1</mn>-            <mrow>-              <mtext mathvariant="normal"> m</mtext>-              <mo>/</mo>-              <msup>-                <mtext mathvariant="normal">s</mtext>-                <mn>2</mn>-              </msup>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kS</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μS</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mS</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> S</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kV</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MV</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μV</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mV</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nV</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> pV</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> V</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> GΩ</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kΩ</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MΩ</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mΩ</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Ω</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Btu</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> cal</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> eV</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> erg</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> GeV</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> GJ</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> J</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kcal</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kJ</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MeV</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MJ</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μJ</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mJ</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nJ</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> dyn</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kN</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MN</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μN</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mN</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> N</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> ozf</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> lbf</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> EHz</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> GHz</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Hz</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kHz</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MHz</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> PHz</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> THz</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> fc</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> lx</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> phot</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Å</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> am</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> cm</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> dm</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> fm</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> ft</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> in</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> km</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> m</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μm</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mi</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mm</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nm</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> pm</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mn>10</mn>-          <mtext mathvariant="normal"> sb</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mn>10</mn>-          <mtext mathvariant="normal"> lm</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mn>10</mn>-          <mtext mathvariant="normal"> cd</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Mx</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μWb</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mWb</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nWb</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Wb</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> G</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μT</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mT</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nT</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> pT</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> T</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> H</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μH</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mH</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> u</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> cg</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> dg</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> g</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kg</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μg</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mg</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> lb</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> slug</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> °</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μrad</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mrad</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <msup>-              <mspace width="0.0em" />-              <mtext mathvariant="normal">′</mtext>-            </msup>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> rad</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <msup>-              <mspace width="0.0em" />-              <mtext mathvariant="normal">′′</mtext>-            </msup>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> GW</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> hp</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kW</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MW</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μW</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mW</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> nW</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> W</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> atm</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> bar</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kbar</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> kPa</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> MPa</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μPa</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mbar</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> mmHg</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> Pa</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> torr</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mn>10</mn>-          <mtext mathvariant="normal"> sr</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> °C</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> °F</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> K</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> as</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> d</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> fs</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> h</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> μs</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> ms</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> min</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> ns</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> ps</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> s</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> y</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <msup>-              <mtext mathvariant="normal"> ft</mtext>-              <mn>3</mn>-            </msup>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <msup>-              <mtext mathvariant="normal"> in</mtext>-              <mn>3</mn>-            </msup>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <msup>-              <mtext mathvariant="normal"> m</mtext>-              <mn>3</mn>-            </msup>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> gal</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> l</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> ml</mtext>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> pint</mtext>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>10</mn>-            <mtext mathvariant="normal"> qt</mtext>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mfrac>-            <mn>1</mn>-            <mrow>-              <mi>x</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mi>y</mi>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mfrac>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mrow>-                  <mo>−</mo>-                  <mrow>-                    <mo>∫</mo>-                    <mrow>-                      <msup>-                        <mi>e</mi>-                        <mrow>-                          <mrow>-                            <mo>−</mo>-                            <mfrac>-                              <mn>1</mn>-                              <mn>2</mn>-                            </mfrac>-                          </mrow>-                          <mo>&#8290;</mo>-                          <msup>-                            <mi>y</mi>-                            <mn>2</mn>-                          </msup>-                        </mrow>-                      </msup>-                      <mo>&#8290;</mo>-                      <mrow>-                        <mi>sin</mi>-                        <mo>&#8289;</mo>-                        <mi>y</mi>-                      </mrow>-                      <mo>&#8290;</mo>-                      <mrow>-                        <mo>ⅆ</mo>-                        <mi>y</mi>-                      </mrow>-                    </mrow>-                  </mrow>-                </mrow>-                <mo>+</mo>-                <msub>-                  <mi>C</mi>-                  <mn>1</mn>-                </msub>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mo>&#8290;</mo>-            <msup>-              <mi>e</mi>-              <mrow>-                <mfrac>-                  <mn>1</mn>-                  <mn>2</mn>-                </mfrac>-                <mo>&#8290;</mo>-                <msup>-                  <mi>y</mi>-                  <mn>2</mn>-                </msup>-              </mrow>-            </msup>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <msub>-                <mo>ⅅ</mo>-                <mi>x</mi>-              </msub>-              <mi>y</mi>-            </mrow>-            <mo>−</mo>-            <mi>y</mi>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>x</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">[</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">]</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">}</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">〈</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">〉</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="prefix">⌊</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">⌋</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="prefix">⌈</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">⌉</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="infix">↑</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="infix">↑</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="infix">↓</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="infix">↓</mo>-          </mrow>-          <mo>&#8290;</mo>-          <mrow>-            <mo stretchy="true" form="infix">↕</mo>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mo stretchy="true" form="infix">↕</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-          <mo>&#8290;</mo>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-          <mo>&#8290;</mo>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-          <mo>&#8290;</mo>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-          <mo>&#8290;</mo>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-          <mo>&#8290;</mo>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-          <mo>&#8290;</mo>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo>−</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mi>a</mi>-                <mo>−</mo>-                <mi>b</mi>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>b</mi>-            <mo>−</mo>-            <mi>a</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mfrac>-              <mn>2</mn>-              <mn>5</mn>-            </mfrac>-            <mo>+</mo>-            <mfrac>-              <mn>3</mn>-              <mn>7</mn>-            </mfrac>-          </mrow>-          <mo>=</mo>-          <mfrac>-            <mrow>-              <mrow>-                <mn>2</mn>-                <mo>⋅</mo>-                <mn>7</mn>-              </mrow>-              <mo>+</mo>-              <mrow>-                <mn>3</mn>-                <mo>⋅</mo>-                <mn>5</mn>-              </mrow>-            </mrow>-            <mn>35</mn>-          </mfrac>-          <mo>=</mo>-          <mfrac>-            <mn>29</mn>-            <mn>35</mn>-          </mfrac>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">|</mo>-            <mi>a</mi>-            <mo stretchy="true" form="postfix">|</mo>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mi>a</mi>-                </mtd>-                <mtd>-                  <mtext mathvariant="normal">if</mtext>-                </mtd>-                <mtd>-                  <mrow>-                    <mi>a</mi>-                    <mo>≥</mo>-                    <mn>0</mn>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mrow>-                    <mo>−</mo>-                    <mi>a</mi>-                  </mrow>-                </mtd>-                <mtd>-                  <mtext mathvariant="normal">if</mtext>-                </mtd>-                <mtd>-                  <mrow>-                    <mi>a</mi>-                    <mo>&lt;</mo>-                    <mn>0</mn>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <msup>-            <mi>a</mi>-            <mi>n</mi>-          </msup>-          <mo>=</mo>-          <munder>-            <munder>-              <mrow>-                <mi>a</mi>-                <mo>⋅</mo>-                <mi>a</mi>-                <mo>⋅</mo>-                <mi>⋯</mi>-                <mo>⋅</mo>-                <mi>a</mi>-              </mrow>-              <mo accent="true">︸</mo>-            </munder>-            <mrow>-              <mi>n</mi>-              <mtext mathvariant="normal"> factors</mtext>-            </mrow>-          </munder>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <msup>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mfrac>-                <mi>a</mi>-                <mi>b</mi>-              </mfrac>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mrow>-              <mo>−</mo>-              <mi>n</mi>-            </mrow>-          </msup>-          <mo>=</mo>-          <msup>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mfrac>-                <mi>b</mi>-                <mi>a</mi>-              </mfrac>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mi>n</mi>-          </msup>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mroot>-              <mi>a</mi>-              <mi>n</mi>-            </mroot>-            <mo>=</mo>-            <mi>b</mi>-          </mrow>-          <mtext mathvariant="normal">  means </mtext>-          <mrow>-            <msup>-              <mi>b</mi>-              <mi>n</mi>-            </msup>-            <mo>=</mo>-            <mi>a</mi>-          </mrow>-          <mtext mathvariant="normal">.</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mroot>-            <mfrac>-              <mn>16</mn>-              <mn>81</mn>-            </mfrac>-            <mn>4</mn>-          </mroot>-          <mo>=</mo>-          <mfrac>-            <mroot>-              <mn>16</mn>-              <mn>4</mn>-            </mroot>-            <mroot>-              <mn>81</mn>-              <mn>4</mn>-            </mroot>-          </mfrac>-          <mo>=</mo>-          <mfrac>-            <mn>2</mn>-            <mn>3</mn>-          </mfrac>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">{</mo>-          <mrow>-            <mi>x</mi>-            <mo>∣</mo>-            <mrow>-              <mrow>-                <mi>x</mi>-                <mo>≠</mo>-                <mn>0</mn>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mi>x</mi>-                <mo>≠</mo>-                <mn>1</mn>-              </mrow>-            </mrow>-          </mrow>-          <mo stretchy="true" form="postfix">}</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msub>-              <mi>a</mi>-              <mi>n</mi>-            </msub>-            <mo>&#8290;</mo>-            <msup>-              <mi>x</mi>-              <mi>n</mi>-            </msup>-          </mrow>-          <mo>+</mo>-          <mrow>-            <msub>-              <mi>a</mi>-              <mrow>-                <mi>n</mi>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-            </msub>-            <mo>&#8290;</mo>-            <msup>-              <mi>x</mi>-              <mrow>-                <mi>n</mi>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-            </msup>-          </mrow>-          <mo>+</mo>-          <mi>⋯</mi>-          <mo>+</mo>-          <mrow>-            <msub>-              <mi>a</mi>-              <mn>1</mn>-            </msub>-            <mo>&#8290;</mo>-            <mi>x</mi>-          </mrow>-          <mo>+</mo>-          <msub>-            <mi>a</mi>-            <mn>0</mn>-          </msub>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msup>-              <mi>a</mi>-              <mn>3</mn>-            </msup>-            <mo>−</mo>-            <msup>-              <mi>b</mi>-              <mn>3</mn>-            </msup>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mi>a</mi>-                <mo>−</mo>-                <mi>b</mi>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <msup>-                  <mi>a</mi>-                  <mn>2</mn>-                </msup>-                <mo>+</mo>-                <mrow>-                  <mi>a</mi>-                  <mo>&#8290;</mo>-                  <mi>b</mi>-                </mrow>-                <mo>+</mo>-                <msup>-                  <mi>b</mi>-                  <mn>2</mn>-                </msup>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <msup>-          <mrow>-            <mo stretchy="false" form="prefix">(</mo>-            <mrow>-              <mi>x</mi>-              <mo>+</mo>-              <mi>y</mi>-            </mrow>-            <mo stretchy="false" form="postfix">)</mo>-          </mrow>-          <mn>2</mn>-        </msup>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>H</mi>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mrow>-              <mrow>-                <mrow>-                  <mo stretchy="true" form="prefix">(</mo>-                  <mtable>-                    <mtr>-                      <mtd>-                        <mi>a</mi>-                      </mtd>-                      <mtd>-                        <mi>b</mi>-                      </mtd>-                    </mtr>-                    <mtr>-                      <mtd>-                        <mi>c</mi>-                      </mtd>-                      <mtd>-                        <mi>d</mi>-                      </mtd>-                    </mtr>-                  </mtable>-                  <mo stretchy="true" form="postfix">)</mo>-                </mrow>-                <mo>∈</mo>-                <mi>G</mi>-              </mrow>-              <mo>∣</mo>-              <mrow>-                <mrow>-                  <mrow>-                    <mi>a</mi>-                    <mo>&#8290;</mo>-                    <mi>d</mi>-                  </mrow>-                  <mo>−</mo>-                  <mrow>-                    <mi>b</mi>-                    <mo>&#8290;</mo>-                    <mi>c</mi>-                  </mrow>-                </mrow>-                <mo>=</mo>-                <mn>1</mn>-              </mrow>-            </mrow>-            <mo stretchy="true" form="postfix">}</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mo stretchy="false" form="prefix">|</mo>-              <mi>x</mi>-              <mo stretchy="false" form="postfix">|</mo>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mo stretchy="false" form="prefix">||</mo>-              <mi>y</mi>-              <mo stretchy="false" form="postfix">||</mo>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mo stretchy="false" form="prefix">{</mo>-              <mi>z</mi>-              <mo stretchy="false" form="postfix">}</mo>-            </mrow>-            <mo>−</mo>-            <mrow>-              <mo stretchy="false" form="prefix">[</mo>-              <mrow>-                <mi>a</mi>-                <mo>&#8290;</mo>-                <mi>c</mi>-              </mrow>-              <mo stretchy="false" form="postfix">]</mo>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mi>b</mi>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="false" form="prefix">[</mo>-            <mrow>-              <mi>a</mi>-              <mo>,</mo>-              <mi>b</mi>-            </mrow>-            <mo stretchy="false" form="postfix">]</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mn>1</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mn>1</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mn>1</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mn>1</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">[</mo>-            <mrow>-              <mrow>-                <mo>−</mo>-                <mfrac>-                  <mn>10</mn>-                  <mn>3</mn>-                </mfrac>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mo>−</mo>-                <mfrac>-                  <mn>7</mn>-                  <mn>3</mn>-                </mfrac>-              </mrow>-            </mrow>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-          <mo>∪</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mrow>-              <mrow>-                <mo>−</mo>-                <mfrac>-                  <mn>7</mn>-                  <mn>3</mn>-                </mfrac>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mo>−</mo>-                <mfrac>-                  <mn>4</mn>-                  <mn>3</mn>-                </mfrac>-              </mrow>-            </mrow>-            <mo stretchy="true" form="postfix">]</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mi>A</mi>-              <mo>&#8290;</mo>-              <mfrac>-                <mrow>-                  <mo>∂</mo>-                  <mi>u</mi>-                </mrow>-                <mrow>-                  <mo>∂</mo>-                  <mi>x</mi>-                </mrow>-              </mfrac>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mi>B</mi>-              <mo>&#8290;</mo>-              <mfrac>-                <mrow>-                  <mo>∂</mo>-                  <mi>u</mi>-                </mrow>-                <mrow>-                  <mo>∂</mo>-                  <mi>y</mi>-                </mrow>-              </mfrac>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mi>C</mi>-              <mo>&#8290;</mo>-              <mi>u</mi>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mi>E</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <munderover>-            <mo>∑</mo>-            <mspace width="0.0em" />-            <mspace width="0.0em" />-          </munderover>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <munderover>-            <mo>∑</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mrow>-                    <mn>1</mn>-                    <mo>&lt;</mo>-                    <mi>i</mi>-                    <mo>&lt;</mo>-                    <mn>10</mn>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mrow>-                    <mn>1</mn>-                    <mo>&lt;</mo>-                    <mi>j</mi>-                    <mo>&lt;</mo>-                    <mn>10</mn>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-            <mspace width="0.0em" />-          </munderover>-          <msup>-            <mn>2</mn>-            <mrow>-              <mi>i</mi>-              <mo>+</mo>-              <mi>j</mi>-            </mrow>-          </msup>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <msubsup>-          <mi>Γ</mi>-          <msubsup>-            <mn>1</mn>-            <msup>-              <mspace width="0.056em" />-              <mtable>-                <mtr>-                  <mtd>-                    <msubsup>-                      <mn>2</mn>-                      <msup>-                        <mspace width="0.056em" />-                        <mtable>-                          <mtr>-                            <mtd>-                              <mn>3</mn>-                            </mtd>-                          </mtr>-                          <mtr>-                            <mtd>-                              <mn>4</mn>-                            </mtd>-                          </mtr>-                        </mtable>-                      </msup>-                      <mspace width="0.0em" />-                    </msubsup>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <msubsup>-                      <mn>5</mn>-                      <msup>-                        <mspace width="0.056em" />-                        <mtable>-                          <mtr>-                            <mtd>-                              <mn>6</mn>-                            </mtd>-                          </mtr>-                          <mtr>-                            <mtd>-                              <mn>7</mn>-                            </mtd>-                          </mtr>-                        </mtable>-                      </msup>-                      <mspace width="0.0em" />-                    </msubsup>-                  </mtd>-                </mtr>-              </mtable>-            </msup>-            <mspace width="0.0em" />-          </msubsup>-          <msup>-            <mn>1</mn>-            <mtable>-              <mtr>-                <mtd>-                  <msup>-                    <mn>5</mn>-                    <mtable>-                      <mtr>-                        <mtd>-                          <mn>7</mn>-                        </mtd>-                      </mtr>-                      <mtr>-                        <mtd>-                          <mn>6</mn>-                        </mtd>-                      </mtr>-                    </mtable>-                  </msup>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <msup>-                    <mn>2</mn>-                    <mtable>-                      <mtr>-                        <mtd>-                          <mn>4</mn>-                        </mtd>-                      </mtr>-                      <mtr>-                        <mtd>-                          <mn>3</mn>-                        </mtd>-                      </mtr>-                    </mtable>-                  </msup>-                </mtd>-              </mtr>-            </mtable>-          </msup>-        </msubsup>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>y</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mi>x</mi>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mfrac>-            <mrow>-              <mrow>-                <mi>x</mi>-                <mo>&#8290;</mo>-                <msup>-                  <mi>e</mi>-                  <mi>x</mi>-                </msup>-              </mrow>-              <mo>−</mo>-              <msup>-                <mi>e</mi>-                <mi>x</mi>-              </msup>-              <mo>+</mo>-              <mn>2</mn>-            </mrow>-            <msup>-              <mi>e</mi>-              <mi>x</mi>-            </msup>-          </mfrac>-          <mo>=</mo>-          <mrow>-            <mi>x</mi>-            <mo>−</mo>-            <mn>1</mn>-            <mo>+</mo>-            <mfrac>-              <mn>2</mn>-              <msup>-                <mi>e</mi>-                <mi>x</mi>-              </msup>-            </mfrac>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd columnalign="right">-              <mrow>-                <mrow>-                  <mrow>-                    <msub>-                      <mo>ⅅ</mo>-                      <mrow>-                        <mi>x</mi>-                        <mo>&#8203;</mo>-                        <mi>x</mi>-                      </mrow>-                    </msub>-                    <mi>y</mi>-                  </mrow>-                  <mo>−</mo>-                  <mi>y</mi>-                </mrow>-                <mo>=</mo>-                <mn>0</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd columnalign="right">-              <mrow>-                <mrow>-                  <mi>y</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mn>0</mn>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>=</mo>-                <mn>1</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd columnalign="right">-              <mrow>-                <mrow>-                  <msup>-                    <mi>y</mi>-                    <mo>′</mo>-                  </msup>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <mn>0</mn>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>=</mo>-                <mn>0</mn>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>y</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mi>x</mi>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mfrac>-                <mn>1</mn>-                <mn>3</mn>-              </mfrac>-              <mo>&#8290;</mo>-              <msup>-                <mi>e</mi>-                <mrow>-                  <mrow>-                    <mo>−</mo>-                    <mroot>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mo>−</mo>-                          <mn>1</mn>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                      <mn>3</mn>-                    </mroot>-                  </mrow>-                  <mo>&#8290;</mo>-                  <mi>x</mi>-                </mrow>-              </msup>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mfrac>-                <mn>2</mn>-                <mn>3</mn>-              </mfrac>-              <mo>&#8290;</mo>-              <msup>-                <mi>e</mi>-                <mrow>-                  <mfrac>-                    <mn>1</mn>-                    <mn>2</mn>-                  </mfrac>-                  <mo>&#8290;</mo>-                  <mroot>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mo>−</mo>-                        <mn>1</mn>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                    <mn>3</mn>-                  </mroot>-                  <mo>&#8290;</mo>-                  <mi>x</mi>-                </mrow>-              </msup>-              <mo>&#8290;</mo>-              <mrow>-                <mi>cos</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mfrac>-                    <mn>1</mn>-                    <mn>2</mn>-                  </mfrac>-                  <mo>&#8290;</mo>-                  <msqrt>-                    <mn>3</mn>-                  </msqrt>-                  <mo>&#8290;</mo>-                  <mroot>-                    <mrow>-                      <mo stretchy="true" form="prefix">(</mo>-                      <mrow>-                        <mo>−</mo>-                        <mn>1</mn>-                      </mrow>-                      <mo stretchy="true" form="postfix">)</mo>-                    </mrow>-                    <mn>3</mn>-                  </mroot>-                  <mo>&#8290;</mo>-                  <mi>x</mi>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>y</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mi>t</mi>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mn>2</mn>-            <mo>&#8290;</mo>-            <mrow>-              <mi>tan</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <mi>t</mi>-                  </mrow>-                  <mo>−</mo>-                  <mrow>-                    <mfrac>-                      <mn>1</mn>-                      <mn>4</mn>-                    </mfrac>-                    <mo>&#8290;</mo>-                    <mi>π</mi>-                  </mrow>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>ℱ</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mtable>-                  <mtr>-                    <mtd>-                      <msup>-                        <mi>e</mi>-                        <mrow>-                          <mn>2</mn>-                          <mo>&#8290;</mo>-                          <mi>π</mi>-                          <mo>&#8290;</mo>-                          <mi>i</mi>-                          <mo>&#8290;</mo>-                          <mi>x</mi>-                        </mrow>-                      </msup>-                    </mtd>-                  </mtr>-                  <mtr>-                    <mtd>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8290;</mo>-                        <mi>π</mi>-                        <mo>&#8290;</mo>-                        <mrow>-                          <mi>Dirac</mi>-                          <mo>&#8289;</mo>-                          <mrow>-                            <mo stretchy="true" form="prefix">(</mo>-                            <mrow>-                              <mi>x</mi>-                              <mo>−</mo>-                              <mrow>-                                <mn>2</mn>-                                <mo>&#8290;</mo>-                                <mi>π</mi>-                              </mrow>-                            </mrow>-                            <mo stretchy="true" form="postfix">)</mo>-                          </mrow>-                        </mrow>-                      </mrow>-                    </mtd>-                  </mtr>-                </mtable>-                <mo>,</mo>-                <mi>x</mi>-                <mo>,</mo>-                <mi>s</mi>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <mi>π</mi>-                    <mo>&#8290;</mo>-                    <mrow>-                      <mi>Dirac</mi>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <mi>s</mi>-                          <mo>−</mo>-                          <mrow>-                            <mn>2</mn>-                            <mo>&#8290;</mo>-                            <mi>π</mi>-                          </mrow>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <mi>π</mi>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>e</mi>-                      <mrow>-                        <mrow>-                          <mo>−</mo>-                          <mn>2</mn>-                        </mrow>-                        <mo>&#8290;</mo>-                        <mi>i</mi>-                        <mo>&#8290;</mo>-                        <mi>π</mi>-                        <mo>&#8290;</mo>-                        <mi>s</mi>-                      </mrow>-                    </msup>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>x</mi>-                <mo>=</mo>-                <mn>1</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mi>x</mi>-                  <mo>+</mo>-                  <mn>3</mn>-                </mrow>-                <mo>=</mo>-                <mn>123</mn>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mi>t</mi>-            </mtd>-            <mtd>-              <mi>x</mi>-            </mtd>-            <mtd>-              <mi>y</mi>-            </mtd>-            <mtd>-              <mi>z</mi>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>0</mn>-            </mtd>-            <mtd>-              <mn>1.0000</mn>-            </mtd>-            <mtd>-              <mn>1.0000</mn>-            </mtd>-            <mtd>-              <mn>1.0000</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.1</mn>-            </mtd>-            <mtd>-              <mn>1.1158</mn>-            </mtd>-            <mtd>-              <mn>1.0938</mn>-            </mtd>-            <mtd>-              <mn>.8842</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.2</mn>-            </mtd>-            <mtd>-              <mn>1.2668</mn>-            </mtd>-            <mtd>-              <mn>1.1695</mn>-            </mtd>-            <mtd>-              <mn>.7332</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.3</mn>-            </mtd>-            <mtd>-              <mn>1.4582</mn>-            </mtd>-            <mtd>-              <mn>1.2173</mn>-            </mtd>-            <mtd>-              <mn>.5418</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.4</mn>-            </mtd>-            <mtd>-              <mn>1.6953</mn>-            </mtd>-            <mtd>-              <mn>1.2253</mn>-            </mtd>-            <mtd>-              <mn>.3047</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.5</mn>-            </mtd>-            <mtd>-              <mn>1.9830</mn>-            </mtd>-            <mtd>-              <mn>1.1791</mn>-            </mtd>-            <mtd>-              <mn>.0170</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.6</mn>-            </mtd>-            <mtd>-              <mn>2.3256</mn>-            </mtd>-            <mtd>-              <mn>1.0619</mn>-            </mtd>-            <mtd>-              <mrow>-                <mo>−</mo>-                <mn>.3256</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.7</mn>-            </mtd>-            <mtd>-              <mn>2.7265</mn>-            </mtd>-            <mtd>-              <mn>.8542</mn>-            </mtd>-            <mtd>-              <mrow>-                <mo>−</mo>-                <mn>.7265</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.8</mn>-            </mtd>-            <mtd>-              <mn>3.1873</mn>-            </mtd>-            <mtd>-              <mn>.5344</mn>-            </mtd>-            <mtd>-              <mrow>-                <mo>−</mo>-                <mn>1.1873</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>.9</mn>-            </mtd>-            <mtd>-              <mn>3.7077</mn>-            </mtd>-            <mtd>-              <mn>.0777</mn>-            </mtd>-            <mtd>-              <mrow>-                <mo>−</mo>-                <mn>1.7077</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>1.0</mn>-            </mtd>-            <mtd>-              <mn>4.2842</mn>-            </mtd>-            <mtd>-              <mrow>-                <mo>−</mo>-                <mn>.5424</mn>-              </mrow>-            </mtd>-            <mtd>-              <mrow>-                <mo>−</mo>-                <mn>2.2842</mn>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msub>-              <mi>K</mi>-              <mi>v</mi>-            </msub>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mi>z</mi>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <msub>-              <mi>BesselK</mi>-              <mi>v</mi>-            </msub>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mi>z</mi>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <msup>-                <mi>z</mi>-                <mn>2</mn>-              </msup>-              <mo>&#8290;</mo>-              <mfrac>-                <mrow>-                  <msup>-                    <mo>ⅆ</mo>-                    <mn>2</mn>-                  </msup>-                  <mi>w</mi>-                </mrow>-                <mrow>-                  <mo>ⅆ</mo>-                  <msup>-                    <mi>z</mi>-                    <mn>2</mn>-                  </msup>-                </mrow>-              </mfrac>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mi>z</mi>-              <mo>&#8290;</mo>-              <mfrac>-                <mrow>-                  <mo>ⅆ</mo>-                  <mi>w</mi>-                </mrow>-                <mrow>-                  <mo>ⅆ</mo>-                  <mi>z</mi>-                </mrow>-              </mfrac>-            </mrow>-            <mo>−</mo>-            <mrow>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <msup>-                    <mi>z</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>+</mo>-                  <msup>-                    <mi>v</mi>-                    <mn>2</mn>-                  </msup>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mi>w</mi>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mn>0</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mfrac>-              <mrow>-                <msup>-                  <mo>∂</mo>-                  <mn>2</mn>-                </msup>-                <mrow>-                  <mi>u</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>x</mi>-                      <mo>,</mo>-                      <mi>y</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mrow>-              <mrow>-                <mo>∂</mo>-                <msup>-                  <mi>x</mi>-                  <mn>2</mn>-                </msup>-              </mrow>-            </mfrac>-            <mo>−</mo>-            <mfrac>-              <mrow>-                <msup>-                  <mo>∂</mo>-                  <mn>2</mn>-                </msup>-                <mrow>-                  <mi>u</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>x</mi>-                      <mo>,</mo>-                      <mi>y</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mrow>-              <mrow>-                <mo>∂</mo>-                <msup>-                  <mi>y</mi>-                  <mn>2</mn>-                </msup>-              </mrow>-            </mfrac>-          </mrow>-          <mo>=</mo>-          <mn>0</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>y</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mi>t</mi>-                <mo>,</mo>-                <mi>x</mi>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <msub>-                <mi>F</mi>-                <mn>1</mn>-              </msub>-              <mo>&#8290;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mrow>-                    <mo>−</mo>-                    <mi>x</mi>-                  </mrow>-                  <mo>−</mo>-                  <mrow>-                    <mi>a</mi>-                    <mo>&#8290;</mo>-                    <mi>t</mi>-                  </mrow>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>+</mo>-            <mrow>-              <msub>-                <mi>F</mi>-                <mn>2</mn>-              </msub>-              <mo>&#8290;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mi>x</mi>-                  <mo>−</mo>-                  <mrow>-                    <mi>a</mi>-                    <mo>&#8290;</mo>-                    <mi>t</mi>-                  </mrow>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mn>1</mn>-            </mtd>-            <mtd>-              <mn>2</mn>-            </mtd>-            <mtd>-              <mn>3</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>4</mn>-            </mtd>-            <mtd>-              <mn>5</mn>-            </mtd>-            <mtd>-              <mn>6</mn>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mn>2</mn>-              <mo>&#8290;</mo>-              <mi>x</mi>-            </mrow>-            <mo>+</mo>-            <mn>1</mn>-          </mrow>-          <mo>=</mo>-          <mn>5</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mn>1</mn>-                <mo>=</mo>-                <mn>3</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mn>9</mn>-                <mo>=</mo>-                <mn>7</mn>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>a</mi>-                <mo>&#8290;</mo>-                <mi>b</mi>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mi>c</mi>-                <mo>&#8290;</mo>-                <mi>d</mi>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mi>e</mi>-                <mo>&#8290;</mo>-                <mi>f</mi>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mi>x</mi>-                  <mo>+</mo>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <mi>y</mi>-                  </mrow>-                  <mo>−</mo>-                  <mn>3</mn>-                </mrow>-                <mo>=</mo>-                <mn>5</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mrow>-                    <mn>4</mn>-                    <mo>&#8290;</mo>-                    <mi>x</mi>-                  </mrow>-                  <mo>−</mo>-                  <mi>y</mi>-                  <mo>−</mo>-                  <mn>5</mn>-                </mrow>-                <mo>=</mo>-                <mn>98</mn>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>x</mi>-                <mo>=</mo>-                <mi>z</mi>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mn>1</mn>-                <mo>=</mo>-                <mn>3</mn>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msub>-                    <mi>A</mi>-                    <mn>1</mn>-                  </msub>-                  <mo>=</mo>-                  <mrow>-                    <mrow>-                      <msub>-                        <mi>N</mi>-                        <mn>0</mn>-                      </msub>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mi>λ</mi>-                          <mo>;</mo>-                          <msup>-                            <mi>Ω</mi>-                            <mo>′</mo>-                          </msup>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mo>−</mo>-                    <mrow>-                      <mi>φ</mi>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mi>λ</mi>-                          <mo>;</mo>-                          <msup>-                            <mi>Ω</mi>-                            <mo>′</mo>-                          </msup>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                  </mrow>-                </mrow>-                <mtext mathvariant="normal">,</mtext>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msub>-                    <mi>A</mi>-                    <mn>2</mn>-                  </msub>-                  <mo>=</mo>-                  <mrow>-                    <mrow>-                      <mi>φ</mi>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mi>λ</mi>-                          <mo>;</mo>-                          <msup>-                            <mi>Ω</mi>-                            <mo>′</mo>-                          </msup>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mo>−</mo>-                    <mrow>-                      <mi>φ</mi>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mi>λ</mi>-                          <mo>;</mo>-                          <mi>Ω</mi>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                  </mrow>-                </mrow>-                <mtext mathvariant="normal">,</mtext>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msub>-                    <mi>A</mi>-                    <mn>3</mn>-                  </msub>-                  <mo>=</mo>-                  <mrow>-                    <mstyle mathvariant="script">-                      <mi>𝒩</mi>-                    </mstyle>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mi>λ</mi>-                        <mo>;</mo>-                        <mi>ω</mi>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                </mrow>-                <mtext mathvariant="normal">.</mtext>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>sin</mi>-                <mo>&#8289;</mo>-                <mi>θ</mi>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mi>cos</mi>-                <mo>&#8289;</mo>-                <mi>γ</mi>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mtable>-              <mtr>-                <mtd columnalign="left">-                  <mi>x</mi>-                </mtd>-                <mtd columnalign="left">-                  <mrow>-                    <mtext mathvariant="normal">if </mtext>-                    <mrow>-                      <mi>x</mi>-                      <mo>&lt;</mo>-                      <mn>0</mn>-                    </mrow>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd columnalign="left">-                  <mrow>-                    <mo>−</mo>-                    <mi>x</mi>-                  </mrow>-                </mtd>-                <mtd columnalign="left">-                  <mrow>-                    <mtext mathvariant="normal">if </mtext>-                    <mrow>-                      <mi>x</mi>-                      <mo>≥</mo>-                      <mn>0</mn>-                    </mrow>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>L</mi>-                <mo>&#8290;</mo>-                <mi>M</mi>-                <mo>&#8290;</mo>-                <mi>R</mi>-                <mo>&#8290;</mo>-                <mi>M</mi>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mi>L</mi>-                <mo>&#8290;</mo>-                <mi>M</mi>-                <mo>&#8290;</mo>-                <mi>R</mi>-                <mo>&#8290;</mo>-                <mi>M</mi>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>M</mi>-                <mo>&#8290;</mo>-                <mi>A</mi>-                <mo>&#8290;</mo>-                <mi>T</mi>-                <mo>&#8290;</mo>-                <mi>H</mi>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mi>M</mi>-                <mo>&#8290;</mo>-                <mi>A</mi>-                <mo>&#8290;</mo>-                <mi>T</mi>-                <mo>&#8290;</mo>-                <mi>H</mi>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtext mathvariant="normal">⋮</mtext>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>∇×</mi>-            <mi>F</mi>-          </mrow>-          <mo>=</mo>-          <mn>0</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>∇·</mi>-          <mi>F</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>∇·∇</mi>-            <mi>F</mi>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <msup>-                <mo>∇</mo>-                <mn>2</mn>-              </msup>-              <mi>F</mi>-            </mrow>-            <mo>+</mo>-            <mn>7</mn>-          </mrow>-          <mo>=</mo>-          <mi>A</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>∇×</mi>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mrow>-                  <mi>x</mi>-                  <mo>&#8290;</mo>-                  <mi>y</mi>-                </mrow>-                <mo>,</mo>-                <mrow>-                  <mi>y</mi>-                  <mo>&#8290;</mo>-                  <mi>z</mi>-                </mrow>-                <mo>,</mo>-                <mrow>-                  <mi>z</mi>-                  <mo>&#8290;</mo>-                  <mi>x</mi>-                </mrow>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">[</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mrow>-                    <mo>−</mo>-                    <mi>y</mi>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mrow>-                    <mo>−</mo>-                    <mi>z</mi>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mrow>-                    <mo>−</mo>-                    <mi>x</mi>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-            <mo stretchy="true" form="postfix">]</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>∇×</mi>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mi>y</mi>-                <mo>,</mo>-                <mi>z</mi>-                <mo>,</mo>-                <mi>x</mi>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mrow>-              <mrow>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-            </mrow>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-          <mo>≠</mo>-          <mn>0</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>+</mo>-            <mi>y</mi>-            <mo>+</mo>-            <mi>α</mi>-          </mrow>-          <mo>=</mo>-          <mn>102</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mstyle mathvariant="bold">-              <mi>𝐚</mi>-            </mstyle>-            <mo>+</mo>-            <mstyle mathvariant="bold">-              <mi>𝐛</mi>-            </mstyle>-          </mrow>-          <mo>=</mo>-          <mstyle mathvariant="bold">-            <mi>𝐜</mi>-          </mstyle>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>+</mo>-          <mn>1</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>+</mo>-            <mrow>-              <mi>f</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mstyle mathvariant="bold">-                  <mi>𝐱</mi>-                </mstyle>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>−</mo>-            <mn>1</mn>-          </mrow>-          <mo>=</mo>-          <mn>123</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mstyle mathvariant="italic">-              <mi>𝑇</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="italic">-              <mi>h</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="italic">-              <mi>𝑒</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="italic">-              <mi>𝑞</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="italic">-              <mi>𝑢</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="italic">-              <mi>𝑖</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="italic">-              <mi>𝑐</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="italic">-              <mi>𝑘</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mi>b</mi>-            <mo>&#8290;</mo>-            <mi>r</mi>-            <mo>&#8290;</mo>-            <mi>o</mi>-            <mo>&#8290;</mo>-            <mi>w</mi>-            <mo>&#8290;</mo>-            <mi>n</mi>-            <mo>&#8290;</mo>-            <mi>f</mi>-            <mo>&#8290;</mo>-            <mi>o</mi>-            <mo>&#8290;</mo>-            <mi>x</mi>-            <mo>&#8290;</mo>-            <mi>j</mi>-            <mo>&#8290;</mo>-            <mi>u</mi>-            <mo>&#8290;</mo>-            <mi>m</mi>-            <mo>&#8290;</mo>-            <mi>p</mi>-            <mo>&#8290;</mo>-            <mi>s</mi>-            <mo>&#8290;</mo>-            <mstyle mathvariant="bold">-              <mi>𝐨</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="bold">-              <mi>𝐯</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="bold">-              <mi>𝐞</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="bold">-              <mi>𝐫</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mi>t</mi>-            <mo>&#8290;</mo>-            <mi>h</mi>-            <mo>&#8290;</mo>-            <mi>e</mi>-            <mo>&#8290;</mo>-            <mstyle mathvariant="sans-serif">-              <mi>𝗅</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="sans-serif">-              <mi>𝖺</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="sans-serif">-              <mi>𝗓</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="sans-serif">-              <mi>𝗒</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="monospace">-              <mi>𝚍</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="monospace">-              <mi>𝚘</mi>-            </mstyle>-            <mo>&#8290;</mo>-            <mstyle mathvariant="monospace">-              <mi>𝚐</mi>-            </mstyle>-          </mrow>-          <mtext mathvariant="normal">.</mtext>-          <mrow>-            <mi>T</mi>-            <mo>&#8290;</mo>-            <mi>h</mi>-            <mo>&#8290;</mo>-            <mi>e</mi>-            <mo>&#8290;</mo>-            <mi>e</mi>-            <mo>&#8290;</mo>-            <mi>n</mi>-            <mo>&#8290;</mo>-            <mi>d</mi>-          </mrow>-          <mtext mathvariant="normal">.</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mrow>-            <mrow>-              <mfrac>-                <mrow>-                  <mo>∂</mo>-                  <mi>f</mi>-                </mrow>-                <mrow>-                  <mo>∂</mo>-                  <msub>-                    <mi>x</mi>-                    <mn>1</mn>-                  </msub>-                </mrow>-              </mfrac>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <msub>-                    <mi>c</mi>-                    <mn>1</mn>-                  </msub>-                  <mo>,</mo>-                  <msub>-                    <mi>c</mi>-                    <mn>2</mn>-                  </msub>-                  <mo>,</mo>-                  <mi>…</mi>-                  <mo>,</mo>-                  <msub>-                    <mi>c</mi>-                    <mi>n</mi>-                  </msub>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>,</mo>-            <mrow>-              <mfrac>-                <mrow>-                  <mo>∂</mo>-                  <mi>f</mi>-                </mrow>-                <mrow>-                  <mo>∂</mo>-                  <msub>-                    <mi>x</mi>-                    <mn>2</mn>-                  </msub>-                </mrow>-              </mfrac>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <msub>-                    <mi>c</mi>-                    <mn>1</mn>-                  </msub>-                  <mo>,</mo>-                  <msub>-                    <mi>c</mi>-                    <mn>2</mn>-                  </msub>-                  <mo>,</mo>-                  <mi>…</mi>-                  <mo>,</mo>-                  <msub>-                    <mi>c</mi>-                    <mi>n</mi>-                  </msub>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>,</mo>-            <mi>…</mi>-            <mo>,</mo>-            <mrow>-              <mfrac>-                <mrow>-                  <mo>∂</mo>-                  <mi>f</mi>-                </mrow>-                <mrow>-                  <mo>∂</mo>-                  <msub>-                    <mi>x</mi>-                    <mrow>-                      <mi>n</mi>-                      <mo>&#8203;</mo>-                      <mn>1</mn>-                    </mrow>-                  </msub>-                </mrow>-              </mfrac>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <msub>-                    <mi>c</mi>-                    <mn>1</mn>-                  </msub>-                  <mo>,</mo>-                  <msub>-                    <mi>c</mi>-                    <mn>2</mn>-                  </msub>-                  <mo>,</mo>-                  <mi>…</mi>-                  <mo>,</mo>-                  <msub>-                    <mi>c</mi>-                    <mi>n</mi>-                  </msub>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mrow>-          <mo stretchy="true" form="postfix">)</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo>∇</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mrow>-                  <mi>c</mi>-                  <mo>&#8290;</mo>-                  <mi>u</mi>-                  <mo>&#8290;</mo>-                  <mi>v</mi>-                </mrow>-                <mo>+</mo>-                <mrow>-                  <msup>-                    <mi>v</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>&#8290;</mo>-                  <mi>w</mi>-                </mrow>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mrow>-              <mrow>-                <mi>u</mi>-                <mo>&#8290;</mo>-                <mi>v</mi>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mi>c</mi>-                <mo>&#8290;</mo>-                <mi>v</mi>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mrow>-                  <mi>c</mi>-                  <mo>&#8290;</mo>-                  <mi>u</mi>-                </mrow>-                <mo>+</mo>-                <mrow>-                  <mn>2</mn>-                  <mo>&#8290;</mo>-                  <mi>v</mi>-                  <mo>&#8290;</mo>-                  <mi>w</mi>-                </mrow>-              </mrow>-              <mo>,</mo>-              <msup>-                <mi>v</mi>-                <mn>2</mn>-              </msup>-            </mrow>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msub>-                    <mi>D</mi>-                    <mi>u</mi>-                  </msub>-                  <mo>&#8290;</mo>-                  <mrow>-                    <mi>f</mi>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mo stretchy="true" form="prefix">(</mo>-                      <mrow>-                        <mi>a</mi>-                        <mo>,</mo>-                        <mi>b</mi>-                        <mo>,</mo>-                        <mi>c</mi>-                      </mrow>-                      <mo stretchy="true" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                </mrow>-                <mo>=</mo>-                <mrow>-                  <mrow>-                    <mo>∇</mo>-                    <mrow>-                      <mi>f</mi>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <mi>a</mi>-                          <mo>,</mo>-                          <mi>b</mi>-                          <mo>,</mo>-                          <mi>c</mi>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                  </mrow>-                  <mo>⋅</mo>-                  <mstyle mathvariant="bold">-                    <mi>𝐮</mi>-                  </mstyle>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mo>=</mo>-                <mrow>-                  <mrow>-                    <mrow>-                      <mfrac>-                        <mrow>-                          <mo>∂</mo>-                          <mi>f</mi>-                        </mrow>-                        <mrow>-                          <mo>∂</mo>-                          <mi>x</mi>-                        </mrow>-                      </mfrac>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <mi>a</mi>-                          <mo>,</mo>-                          <mi>b</mi>-                          <mo>,</mo>-                          <mi>c</mi>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mo>&#8290;</mo>-                    <msub>-                      <mi>u</mi>-                      <mn>1</mn>-                    </msub>-                  </mrow>-                  <mo>+</mo>-                  <mrow>-                    <mrow>-                      <mfrac>-                        <mrow>-                          <mo>∂</mo>-                          <mi>f</mi>-                        </mrow>-                        <mrow>-                          <mo>∂</mo>-                          <mi>y</mi>-                        </mrow>-                      </mfrac>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <mi>a</mi>-                          <mo>,</mo>-                          <mi>b</mi>-                          <mo>,</mo>-                          <mi>c</mi>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mo>&#8290;</mo>-                    <msub>-                      <mi>u</mi>-                      <mn>2</mn>-                    </msub>-                  </mrow>-                  <mo>+</mo>-                  <mrow>-                    <mrow>-                      <mfrac>-                        <mrow>-                          <mo>∂</mo>-                          <mi>f</mi>-                        </mrow>-                        <mrow>-                          <mo>∂</mo>-                          <mi>z</mi>-                        </mrow>-                      </mfrac>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <mi>a</mi>-                          <mo>,</mo>-                          <mi>b</mi>-                          <mo>,</mo>-                          <mi>c</mi>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mo>&#8290;</mo>-                    <msub>-                      <mi>u</mi>-                      <mn>3</mn>-                    </msub>-                  </mrow>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>θ</mi>-            <mo>∈</mo>-            <mrow>-              <mo stretchy="true" form="prefix">{</mo>-              <mrow>-                <mi>π</mi>-                <mo>+</mo>-                <mrow>-                  <mn>2</mn>-                  <mo>&#8290;</mo>-                  <msub>-                    <mi>X</mi>-                    <mn>3</mn>-                  </msub>-                  <mo>&#8290;</mo>-                  <mi>π</mi>-                </mrow>-                <mo>−</mo>-                <mrow>-                  <mo stretchy="true" form="prefix">(</mo>-                  <mrow>-                    <mi>arccos</mi>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mfrac>-                        <mn>1</mn>-                        <mn>7</mn>-                      </mfrac>-                      <mo>&#8290;</mo>-                      <msqrt>-                        <mn>14</mn>-                      </msqrt>-                    </mrow>-                  </mrow>-                  <mo stretchy="true" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo stretchy="true" form="infix">|</mo>-              <mrow>-                <msub>-                  <mi>X</mi>-                  <mn>3</mn>-                </msub>-                <mo>∈</mo>-                <mi>ℤ</mi>-              </mrow>-              <mo stretchy="true" form="postfix">}</mo>-            </mrow>-          </mrow>-          <mo>,</mo>-          <mrow>-            <mi>θ</mi>-            <mo>∈</mo>-            <mrow>-              <mo stretchy="true" form="prefix">{</mo>-              <mrow>-                <mrow>-                  <mn>2</mn>-                  <mo>&#8290;</mo>-                  <msub>-                    <mi>X</mi>-                    <mn>4</mn>-                  </msub>-                  <mo>&#8290;</mo>-                  <mi>π</mi>-                </mrow>-                <mo>−</mo>-                <mi>π</mi>-                <mo>+</mo>-                <mrow>-                  <mo stretchy="true" form="prefix">(</mo>-                  <mrow>-                    <mi>arccos</mi>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mfrac>-                        <mn>1</mn>-                        <mn>7</mn>-                      </mfrac>-                      <mo>&#8290;</mo>-                      <msqrt>-                        <mn>14</mn>-                      </msqrt>-                    </mrow>-                  </mrow>-                  <mo stretchy="true" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo stretchy="true" form="infix">|</mo>-              <mrow>-                <msub>-                  <mi>X</mi>-                  <mn>4</mn>-                </msub>-                <mo>∈</mo>-                <mi>ℤ</mi>-              </mrow>-              <mo stretchy="true" form="postfix">}</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>P</mi>-          <mo>=</mo>-          <mrow>-            <mi>A</mi>-            <mo>&#8290;</mo>-            <msup>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <msup>-                    <mi>A</mi>-                    <mi>T</mi>-                  </msup>-                  <mo>&#8290;</mo>-                  <mi>A</mi>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-              <mrow>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-            </msup>-            <mo>&#8290;</mo>-            <msup>-              <mi>A</mi>-              <mi>T</mi>-            </msup>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>det</mi>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mtable>-                <mtr>-                  <mtd>-                    <mi>x</mi>-                  </mtd>-                  <mtd>-                    <mi>y</mi>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mi>a</mi>-                  </mtd>-                  <mtd>-                    <mi>b</mi>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mi>a</mi>-                  </mtd>-                  <mtd>-                    <mi>d</mi>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                </mtr>-              </mtable>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mi>x</mi>-              <mo>&#8290;</mo>-              <mi>b</mi>-            </mrow>-            <mo>−</mo>-            <mrow>-              <mi>x</mi>-              <mo>&#8290;</mo>-              <mi>d</mi>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mi>a</mi>-              <mo>&#8290;</mo>-              <mi>d</mi>-            </mrow>-            <mo>−</mo>-            <mrow>-              <mi>a</mi>-              <mo>&#8290;</mo>-              <mi>b</mi>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mn>0</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mi>A</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mi>θ</mi>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>&#8290;</mo>-            <mrow>-              <mi>A</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mo>−</mo>-                  <mi>θ</mi>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">[</mo>-              <mtable>-                <mtr>-                  <mtd>-                    <mrow>-                      <mi>cos</mi>-                      <mo>&#8289;</mo>-                      <mi>θ</mi>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mo>−</mo>-                      <mrow>-                        <mi>sin</mi>-                        <mo>&#8289;</mo>-                        <mi>θ</mi>-                      </mrow>-                    </mrow>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mrow>-                      <mi>sin</mi>-                      <mo>&#8289;</mo>-                      <mi>θ</mi>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mi>cos</mi>-                      <mo>&#8289;</mo>-                      <mi>θ</mi>-                    </mrow>-                  </mtd>-                </mtr>-              </mtable>-              <mo stretchy="true" form="postfix">]</mo>-            </mrow>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">[</mo>-              <mtable>-                <mtr>-                  <mtd>-                    <mrow>-                      <mi>cos</mi>-                      <mo>&#8289;</mo>-                      <mi>θ</mi>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mi>sin</mi>-                      <mo>&#8289;</mo>-                      <mi>θ</mi>-                    </mrow>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mrow>-                      <mo>−</mo>-                      <mrow>-                        <mi>sin</mi>-                        <mo>&#8289;</mo>-                        <mi>θ</mi>-                      </mrow>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mi>cos</mi>-                      <mo>&#8289;</mo>-                      <mi>θ</mi>-                    </mrow>-                  </mtd>-                </mtr>-              </mtable>-              <mo stretchy="true" form="postfix">]</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>J</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mi>A</mi>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">[</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mrow>-                    <msub>-                      <mi>J</mi>-                      <msub>-                        <mi>n</mi>-                        <mn>1</mn>-                      </msub>-                    </msub>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mo stretchy="true" form="prefix">(</mo>-                      <msub>-                        <mi>λ</mi>-                        <mn>1</mn>-                      </msub>-                      <mo stretchy="true" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                </mtd>-                <mtd>-                  <mn>0</mn>-                </mtd>-                <mtd>-                  <mi>⋯</mi>-                </mtd>-                <mtd>-                  <mn>0</mn>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mn>0</mn>-                </mtd>-                <mtd>-                  <mrow>-                    <msub>-                      <mi>J</mi>-                      <msub>-                        <mi>n</mi>-                        <mn>2</mn>-                      </msub>-                    </msub>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mo stretchy="true" form="prefix">(</mo>-                      <msub>-                        <mi>λ</mi>-                        <mn>2</mn>-                      </msub>-                      <mo stretchy="true" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                </mtd>-                <mtd>-                  <mi>⋯</mi>-                </mtd>-                <mtd>-                  <mn>0</mn>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mtext mathvariant="normal">⋮</mtext>-                </mtd>-                <mtd>-                  <mtext mathvariant="normal">⋮</mtext>-                </mtd>-                <mtd>-                  <mtext mathvariant="normal">⋱</mtext>-                </mtd>-                <mtd>-                  <mtext mathvariant="normal">⋮</mtext>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mn>0</mn>-                </mtd>-                <mtd>-                  <mn>0</mn>-                </mtd>-                <mtd>-                  <mi>⋯</mi>-                </mtd>-                <mtd>-                  <mrow>-                    <msub>-                      <mi>J</mi>-                      <msub>-                        <mi>n</mi>-                        <mi>k</mi>-                      </msub>-                    </msub>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mo stretchy="true" form="prefix">(</mo>-                      <msub>-                        <mi>λ</mi>-                        <mi>k</mi>-                      </msub>-                      <mo stretchy="true" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-            <mo stretchy="true" form="postfix">]</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>det</mi>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mtable>-                <mtr>-                  <mtd>-                    <mrow>-                      <mrow>-                        <mo>−</mo>-                        <mn>4</mn>-                      </mrow>-                      <mo>+</mo>-                      <mi>X</mi>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mo>−</mo>-                      <mn>1</mn>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mn>0</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>0</mn>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mrow>-                        <mo>−</mo>-                        <mn>4</mn>-                      </mrow>-                      <mo>+</mo>-                      <mi>X</mi>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mn>0</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>0</mn>-                  </mtd>-                  <mtd>-                    <mn>0</mn>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mrow>-                        <mo>−</mo>-                        <mn>4</mn>-                      </mrow>-                      <mo>+</mo>-                      <mi>X</mi>-                    </mrow>-                  </mtd>-                </mtr>-              </mtable>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <msup>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mi>X</mi>-                <mo>−</mo>-                <mn>4</mn>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mn>3</mn>-          </msup>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mtable>-                <mtr>-                  <mtd>-                    <mrow>-                      <mrow>-                        <mo>−</mo>-                        <mfrac>-                          <mn>1</mn>-                          <mn>2</mn>-                        </mfrac>-                      </mrow>-                      <mo>−</mo>-                      <mrow>-                        <mfrac>-                          <mn>1</mn>-                          <mn>6</mn>-                        </mfrac>-                        <mo>&#8290;</mo>-                        <msqrt>-                          <mn>33</mn>-                        </msqrt>-                      </mrow>-                    </mrow>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                </mtr>-              </mtable>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mo stretchy="true" form="postfix">}</mo>-          </mrow>-          <mo stretchy="true" form="infix">↔</mo>-          <mrow>-            <mfrac>-              <mn>5</mn>-              <mn>2</mn>-            </mfrac>-            <mo>−</mo>-            <mrow>-              <mfrac>-                <mn>1</mn>-                <mn>2</mn>-              </mfrac>-              <mo>&#8290;</mo>-              <msqrt>-                <mn>33</mn>-              </msqrt>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="infix">∥</mo>-            <mi>A</mi>-            <mo stretchy="true" form="infix">∥</mo>-          </mrow>-          <mo>=</mo>-          <mrow>-            <munder>-              <mi>max</mi>-              <mrow>-                <mi>x</mi>-                <mo>≠</mo>-                <mn>0</mn>-              </mrow>-            </munder>-            <mfrac>-              <mrow>-                <mo stretchy="true" form="infix">∥</mo>-                <mrow>-                  <mi>A</mi>-                  <mo>&#8290;</mo>-                  <mi>x</mi>-                </mrow>-                <mo stretchy="true" form="infix">∥</mo>-              </mrow>-              <mrow>-                <mo stretchy="true" form="infix">∥</mo>-                <mi>x</mi>-                <mo stretchy="true" form="infix">∥</mo>-              </mrow>-            </mfrac>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mtable>-                <mtr>-                  <mtd>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                  </mtd>-                  <mtd>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                  </mtd>-                  <mtd>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                  </mtd>-                </mtr>-              </mtable>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mtable>-                <mtr>-                  <mtd>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                  </mtd>-                  <mtd>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                  </mtd>-                  <mtd>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                  </mtd>-                </mtr>-              </mtable>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mrow>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                    <mo>+</mo>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                  </mrow>-                </mtd>-                <mtd>-                  <mrow>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                    <mo>+</mo>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>1</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mrow>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                    <mo>+</mo>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>1</mn>-                      </mrow>-                    </msub>-                  </mrow>-                </mtd>-                <mtd>-                  <mrow>-                    <msub>-                      <mi>a</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                    <mo>+</mo>-                    <msub>-                      <mi>b</mi>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8203;</mo>-                        <mn>2</mn>-                      </mrow>-                    </msub>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>f</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mo stretchy="true" form="prefix">[</mo>-                <mtable>-                  <mtr>-                    <mtd>-                      <mn>1</mn>-                    </mtd>-                    <mtd>-                      <mn>2</mn>-                    </mtd>-                  </mtr>-                  <mtr>-                    <mtd>-                      <mn>4</mn>-                    </mtd>-                    <mtd>-                      <mn>3</mn>-                    </mtd>-                  </mtr>-                </mtable>-                <mo stretchy="true" form="postfix">]</mo>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <msup>-              <mrow>-                <mo stretchy="true" form="prefix">[</mo>-                <mtable>-                  <mtr>-                    <mtd>-                      <mn>1</mn>-                    </mtd>-                    <mtd>-                      <mn>2</mn>-                    </mtd>-                  </mtr>-                  <mtr>-                    <mtd>-                      <mn>4</mn>-                    </mtd>-                    <mtd>-                      <mn>3</mn>-                    </mtd>-                  </mtr>-                </mtable>-                <mo stretchy="true" form="postfix">]</mo>-              </mrow>-              <mn>2</mn>-            </msup>-            <mo>−</mo>-            <mrow>-              <mn>5</mn>-              <mo>&#8290;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">[</mo>-                <mtable>-                  <mtr>-                    <mtd>-                      <mn>1</mn>-                    </mtd>-                    <mtd>-                      <mn>2</mn>-                    </mtd>-                  </mtr>-                  <mtr>-                    <mtd>-                      <mn>4</mn>-                    </mtd>-                    <mtd>-                      <mn>3</mn>-                    </mtd>-                  </mtr>-                </mtable>-                <mo stretchy="true" form="postfix">]</mo>-              </mrow>-            </mrow>-            <mo>−</mo>-            <mn>2</mn>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">[</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mn>2</mn>-                </mtd>-                <mtd>-                  <mrow>-                    <mo>−</mo>-                    <mn>2</mn>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mrow>-                    <mo>−</mo>-                    <mn>4</mn>-                  </mrow>-                </mtd>-                <mtd>-                  <mn>0</mn>-                </mtd>-              </mtr>-            </mtable>-            <mo stretchy="true" form="postfix">]</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mi>x</mi>-                <mo>=</mo>-                <mn>1</mn>-              </mrow>-            </munder>-            <mrow>-              <munderover>-                <mo>∑</mo>-                <mn>1</mn>-                <mn>2</mn>-              </munderover>-              <mi>a</mi>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msubsup>-              <mo>∫</mo>-              <mi>a</mi>-              <mi>b</mi>-            </msubsup>-            <mrow>-              <mrow>-                <mi>f</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mi>x</mi>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mrow>-                  <mo>∥</mo>-                  <mi>P</mi>-                  <mo>∥</mo>-                </mrow>-                <mo accent="true">→</mo>-                <mn>0</mn>-              </mrow>-            </munder>-            <mrow>-              <munderover>-                <mo>∑</mo>-                <mrow>-                  <mi>i</mi>-                  <mo>=</mo>-                  <mn>1</mn>-                </mrow>-                <mi>n</mi>-              </munderover>-              <mrow>-                <mrow>-                  <mi>f</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <msub>-                      <mover>-                        <mi>x</mi>-                        <mo accent="true">¯</mo>-                      </mover>-                      <mi>i</mi>-                    </msub>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>&#8290;</mo>-                <mrow>-                  <mo>Δ</mo>-                  <msub>-                    <mi>x</mi>-                    <mi>i</mi>-                  </msub>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msubsup>-              <mo>∫</mo>-              <mi>a</mi>-              <mi>b</mi>-            </msubsup>-            <mrow>-              <mrow>-                <mi>f</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mi>x</mi>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mi>n</mi>-                <mo accent="true">→</mo>-                <mi>∞</mi>-              </mrow>-            </munder>-            <mrow>-              <mfrac>-                <mrow>-                  <mi>b</mi>-                  <mo>−</mo>-                  <mi>a</mi>-                </mrow>-                <mi>n</mi>-              </mfrac>-              <mo>&#8290;</mo>-              <mrow>-                <munderover>-                  <mo>∑</mo>-                  <mrow>-                    <mi>i</mi>-                    <mo>=</mo>-                    <mn>1</mn>-                  </mrow>-                  <mi>n</mi>-                </munderover>-                <mrow>-                  <mi>f</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <mrow>-                      <mi>a</mi>-                      <mo>+</mo>-                      <mrow>-                        <mi>i</mi>-                        <mo>&#8290;</mo>-                        <mfrac>-                          <mrow>-                            <mi>b</mi>-                            <mo>−</mo>-                            <mi>a</mi>-                          </mrow>-                          <mi>n</mi>-                        </mfrac>-                      </mrow>-                    </mrow>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msubsup>-              <mo>∫</mo>-              <mn>0</mn>-              <mn>2</mn>-            </msubsup>-            <mrow>-              <msup>-                <mi>x</mi>-                <mn>5</mn>-              </msup>-              <mo>&#8290;</mo>-              <msqrt>-                <mrow>-                  <msup>-                    <mi>x</mi>-                    <mn>3</mn>-                  </msup>-                  <mo>+</mo>-                  <mn>1</mn>-                </mrow>-              </msqrt>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <msubsup>-              <mo>∫</mo>-              <mn>1</mn>-              <mn>3</mn>-            </msubsup>-            <mrow>-              <mfrac>-                <mn>2</mn>-                <mn>3</mn>-              </mfrac>-              <mo>&#8290;</mo>-              <mi>u</mi>-              <mo>&#8290;</mo>-              <mfrac>-                <msqrt>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <msup>-                      <mi>u</mi>-                      <mn>2</mn>-                    </msup>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </msqrt>-                <msup>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <mrow>-                      <msup>-                        <mi>u</mi>-                        <mn>2</mn>-                      </msup>-                      <mo>−</mo>-                      <mn>1</mn>-                    </mrow>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                  <mfrac>-                    <mn>2</mn>-                    <mn>3</mn>-                  </mfrac>-                </msup>-              </mfrac>-              <mo>&#8290;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mrow>-                    <msup>-                      <mi>u</mi>-                      <mn>2</mn>-                    </msup>-                    <mo>&#8290;</mo>-                    <msup>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <msup>-                            <mi>u</mi>-                            <mn>2</mn>-                          </msup>-                          <mo>−</mo>-                          <mn>1</mn>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                      <mfrac>-                        <mn>2</mn>-                        <mn>3</mn>-                      </mfrac>-                    </msup>-                  </mrow>-                  <mo>−</mo>-                  <msup>-                    <mrow>-                      <mo stretchy="true" form="prefix">(</mo>-                      <mrow>-                        <msup>-                          <mi>u</mi>-                          <mn>2</mn>-                        </msup>-                        <mo>−</mo>-                        <mn>1</mn>-                      </mrow>-                      <mo stretchy="true" form="postfix">)</mo>-                    </mrow>-                    <mfrac>-                      <mn>2</mn>-                      <mn>3</mn>-                    </mfrac>-                  </msup>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>u</mi>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">∫</mo>-            <mrow>-              <mrow>-                <mi>f</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mrow>-                    <mi>g</mi>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mi>x</mi>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <msup>-                  <mi>g</mi>-                  <mo>′</mo>-                </msup>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mi>x</mi>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">∫</mo>-            <mrow>-              <mrow>-                <mi>f</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mi>u</mi>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>u</mi>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mrow>-            <mn>2</mn>-            <mo>&#8290;</mo>-            <mrow>-              <munderover>-                <mo>∑</mo>-                <mrow>-                  <mi>n</mi>-                  <mo>=</mo>-                  <mn>1</mn>-                </mrow>-                <mn>100</mn>-              </munderover>-              <mrow>-                <mi>n</mi>-                <mo>&#8290;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mrow>-                    <mi>n</mi>-                    <mo>−</mo>-                    <mn>1</mn>-                  </mrow>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mi>x</mi>-                <mo accent="true">→</mo>-                <mn>0</mn>-              </mrow>-            </munder>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mfrac>-                  <mn>1</mn>-                  <mi>x</mi>-                </mfrac>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mo>−</mo>-              <mn>1</mn>-            </mrow>-            <mo>..</mo>-            <mn>1</mn>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>h</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mi>i</mi>-                <mo>,</mo>-                <mi>j</mi>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mrow>-                  <mn>2</mn>-                  <mo>−</mo>-                  <mi>j</mi>-                </mrow>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mi>g</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mi>i</mi>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mrow>-                  <mi>j</mi>-                  <mo>−</mo>-                  <mn>1</mn>-                </mrow>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mi>f</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mrow>-                    <mi>g</mi>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mi>i</mi>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>△</mi>-          <mo>:</mo>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">[</mo>-              <mrow>-                <mn>0</mn>-                <mo>,</mo>-                <mn>1</mn>-              </mrow>-              <mo stretchy="true" form="postfix">]</mo>-            </mrow>-            <mo stretchy="true" form="infix">→</mo>-            <mrow>-              <mo stretchy="true" form="prefix">[</mo>-              <mrow>-                <mn>0</mn>-                <mo>,</mo>-                <mn>1</mn>-              </mrow>-              <mo stretchy="true" form="postfix">]</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>0</mn>-            <mo>▽</mo>-            <mi>x</mi>-          </mrow>-          <mo>=</mo>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>△</mo>-            <mi>y</mi>-          </mrow>-          <mo>=</mo>-          <mrow>-            <msup>-              <mi>h</mi>-              <mrow>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-            </msup>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mrow>-                  <mi>h</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <mi>x</mi>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>&#8290;</mo>-                <mrow>-                  <mi>h</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <mi>y</mi>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>△</mo>-            <mi>y</mi>-          </mrow>-          <mo>=</mo>-          <mrow>-            <msup>-              <mi>f</mi>-              <mrow>-                <mo>−</mo>-                <mn>1</mn>-              </mrow>-            </msup>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mi>max</mi>-                <mrow>-                  <mo stretchy="true" form="prefix">{</mo>-                  <mrow>-                    <mrow>-                      <mrow>-                        <mi>f</mi>-                        <mo>&#8289;</mo>-                        <mrow>-                          <mo stretchy="true" form="prefix">(</mo>-                          <mi>x</mi>-                          <mo stretchy="true" form="postfix">)</mo>-                        </mrow>-                      </mrow>-                      <mo>+</mo>-                      <mrow>-                        <mi>f</mi>-                        <mo>&#8289;</mo>-                        <mrow>-                          <mo stretchy="true" form="prefix">(</mo>-                          <mi>y</mi>-                          <mo stretchy="true" form="postfix">)</mo>-                        </mrow>-                      </mrow>-                      <mo>−</mo>-                      <mn>1</mn>-                    </mrow>-                    <mo>,</mo>-                    <mn>0</mn>-                  </mrow>-                  <mo stretchy="true" form="postfix">}</mo>-                </mrow>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>▽</mo>-            <mi>y</mi>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>η</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mrow>-                  <mi>η</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <mi>x</mi>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>△</mo>-                <mrow>-                  <mi>η</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="true" form="prefix">(</mo>-                    <mi>y</mi>-                    <mo stretchy="true" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>&#8290;</mo>-            <mrow>-              <msub>-                <mo>△</mo>-                <mn>0</mn>-              </msub>-              <mi>y</mi>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mtable>-              <mtr>-                <mtd>-                  <mrow>-                    <mi>x</mi>-                    <mo>∧</mo>-                    <mi>y</mi>-                  </mrow>-                </mtd>-                <mtd>-                  <mtext mathvariant="normal">if</mtext>-                </mtd>-                <mtd>-                  <mrow>-                    <mi>x</mi>-                    <mo>∨</mo>-                    <mrow>-                      <mi>y</mi>-                      <mo>=</mo>-                      <mn>1</mn>-                    </mrow>-                  </mrow>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mn>0</mn>-                </mtd>-                <mtd>-                  <mtext mathvariant="normal">if</mtext>-                </mtd>-                <mtd>-                  <mrow>-                    <mi>x</mi>-                    <mo>∨</mo>-                    <mrow>-                      <mi>y</mi>-                      <mo>&lt;</mo>-                      <mn>1</mn>-                    </mrow>-                  </mrow>-                </mtd>-              </mtr>-            </mtable>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mi>a</mi>-                <mo accent="true">→</mo>-                <msup>-                  <mn>1</mn>-                  <mo>+</mo>-                </msup>-              </mrow>-            </munder>-            <mrow>-              <msub>-                <mi>log</mi>-                <mi>a</mi>-              </msub>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">[</mo>-                <mrow>-                  <mn>1</mn>-                  <mo>+</mo>-                  <mfrac>-                    <mrow>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <msup>-                            <mi>a</mi>-                            <mi>x</mi>-                          </msup>-                          <mo>−</mo>-                          <mn>1</mn>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                      <mo>&#8290;</mo>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <msup>-                            <mi>a</mi>-                            <mi>y</mi>-                          </msup>-                          <mo>−</mo>-                          <mn>1</mn>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mrow>-                      <mi>a</mi>-                      <mo>−</mo>-                      <mn>1</mn>-                    </mrow>-                  </mfrac>-                </mrow>-                <mo stretchy="true" form="postfix">]</mo>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mi>a</mi>-                <mo accent="true">→</mo>-                <msup>-                  <mn>1</mn>-                  <mo>−</mo>-                </msup>-              </mrow>-            </munder>-            <mrow>-              <msub>-                <mi>log</mi>-                <mi>a</mi>-              </msub>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="true" form="prefix">[</mo>-                <mrow>-                  <mn>1</mn>-                  <mo>+</mo>-                  <mfrac>-                    <mrow>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <msup>-                            <mi>a</mi>-                            <mi>x</mi>-                          </msup>-                          <mo>−</mo>-                          <mn>1</mn>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                      <mo>&#8290;</mo>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <msup>-                            <mi>a</mi>-                            <mi>y</mi>-                          </msup>-                          <mo>−</mo>-                          <mn>1</mn>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mrow>-                      <mi>a</mi>-                      <mo>−</mo>-                      <mn>1</mn>-                    </mrow>-                  </mfrac>-                </mrow>-                <mo stretchy="true" form="postfix">]</mo>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>x</mi>-            <mo>&#8290;</mo>-            <mi>y</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>g</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mi>x</mi>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>exp</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mo>−</mo>-                <mfrac>-                  <mrow>-                    <mn>1</mn>-                    <mo>−</mo>-                    <msup>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <mn>1</mn>-                          <mo>−</mo>-                          <mi>x</mi>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                      <mi>a</mi>-                    </msup>-                  </mrow>-                  <mrow>-                    <mrow>-                      <mo stretchy="true" form="prefix">(</mo>-                      <mrow>-                        <msup>-                          <mn>2</mn>-                          <mi>a</mi>-                        </msup>-                        <mo>−</mo>-                        <mn>1</mn>-                      </mrow>-                      <mo stretchy="true" form="postfix">)</mo>-                    </mrow>-                    <mo>&#8290;</mo>-                    <msup>-                      <mrow>-                        <mo stretchy="true" form="prefix">(</mo>-                        <mrow>-                          <mn>1</mn>-                          <mo>−</mo>-                          <mi>x</mi>-                        </mrow>-                        <mo stretchy="true" form="postfix">)</mo>-                      </mrow>-                      <mi>a</mi>-                    </msup>-                  </mrow>-                </mfrac>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>Aut</mi>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mstyle mathvariant="bold">-                <mi>𝐈</mi>-              </mstyle>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mrow>-              <mi>f</mi>-              <mo>:</mo>-              <mrow>-                <mrow>-                  <mo stretchy="true" form="prefix">[</mo>-                  <mrow>-                    <mn>0</mn>-                    <mo>,</mo>-                    <mn>1</mn>-                  </mrow>-                  <mo stretchy="true" form="postfix">]</mo>-                </mrow>-                <mo stretchy="true" form="infix">→</mo>-                <mrow>-                  <mo stretchy="true" form="prefix">[</mo>-                  <mrow>-                    <mn>0</mn>-                    <mo>,</mo>-                    <mn>1</mn>-                  </mrow>-                  <mo stretchy="true" form="postfix">]</mo>-                </mrow>-              </mrow>-            </mrow>-            <mspace width="0.278em" />-            <mrow>-              <mo stretchy="true" form="prefix">|</mo>-              <mtable>-                <mtr>-                  <mtd columnalign="left">-                    <mrow>-                      <mi>f</mi>-                      <mtext mathvariant="normal"> is one-to-one and onto, and</mtext>-                    </mrow>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd columnalign="left">-                    <mrow>-                      <mrow>-                        <mi>x</mi>-                        <mo>≤</mo>-                        <mi>y</mi>-                      </mrow>-                      <mtext mathvariant="normal"> implies </mtext>-                      <mrow>-                        <mrow>-                          <mi>f</mi>-                          <mo>&#8289;</mo>-                          <mrow>-                            <mo stretchy="true" form="prefix">(</mo>-                            <mi>x</mi>-                            <mo stretchy="true" form="postfix">)</mo>-                          </mrow>-                        </mrow>-                        <mo>≤</mo>-                        <mrow>-                          <mi>f</mi>-                          <mo>&#8289;</mo>-                          <mrow>-                            <mo stretchy="true" form="prefix">(</mo>-                            <mi>y</mi>-                            <mo stretchy="true" form="postfix">)</mo>-                          </mrow>-                        </mrow>-                      </mrow>-                    </mrow>-                  </mtd>-                </mtr>-              </mtable>-            </mrow>-            <mo stretchy="true" form="postfix">}</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-              <mo>+</mo>-              <msup>-                <mi>y</mi>-                <mn>2</mn>-              </msup>-            </mrow>-            <mo>=</mo>-            <msup>-              <mi>r</mi>-              <mn>2</mn>-            </msup>-          </mrow>-          <mo>,</mo>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <mrow>-              <mi>tan</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mo>=</mo>-            <mfrac>-              <mi>y</mi>-              <mi>x</mi>-            </mfrac>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <msqrt>-            <mn>2</mn>-          </msqrt>-          <mo>&#8290;</mo>-          <msqrt>-            <mrow>-              <mn>1</mn>-              <mo>−</mo>-              <msup>-                <mi>t</mi>-                <mn>2</mn>-              </msup>-            </mrow>-          </msqrt>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">[</mo>-          <mrow>-            <mrow>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mrow>-                  <mn>2</mn>-                  <mo>+</mo>-                  <mrow>-                    <mi>sin</mi>-                    <mo>&#8289;</mo>-                    <mi>t</mi>-                  </mrow>-                </mrow>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mn>10</mn>-              <mo>&#8290;</mo>-              <mrow>-                <mi>cos</mi>-                <mo>&#8289;</mo>-                <mi>t</mi>-              </mrow>-            </mrow>-            <mo>,</mo>-            <mrow>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mrow>-                  <mn>2</mn>-                  <mo>+</mo>-                  <mrow>-                    <mi>cos</mi>-                    <mo>&#8289;</mo>-                    <mi>t</mi>-                  </mrow>-                </mrow>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mn>10</mn>-              <mo>&#8290;</mo>-              <mrow>-                <mi>sin</mi>-                <mo>&#8289;</mo>-                <mi>t</mi>-              </mrow>-            </mrow>-            <mo>,</mo>-            <mrow>-              <mn>3</mn>-              <mo>&#8290;</mo>-              <mrow>-                <mi>sin</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mn>3</mn>-                  <mo>&#8290;</mo>-                  <mi>t</mi>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-          <mo stretchy="true" form="postfix">]</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mrow>-              <mrow>-                <mi>t</mi>-                <mo>=</mo>-                <mn>0</mn>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mi>s</mi>-                <mo>=</mo>-                <mn>0</mn>-              </mrow>-            </mrow>-            <mo stretchy="true" form="postfix">}</mo>-          </mrow>-          <mo>,</mo>-          <mrow>-            <mo stretchy="true" form="prefix">{</mo>-            <mrow>-              <mrow>-                <mi>t</mi>-                <mo>=</mo>-                <mi>π</mi>-              </mrow>-              <mo>,</mo>-              <mrow>-                <mi>s</mi>-                <mo>=</mo>-                <mi>π</mi>-              </mrow>-            </mrow>-            <mo stretchy="true" form="postfix">}</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mtable>-                <mtr>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mn>10</mn>-                  </mtd>-                  <mtd>-                    <mn>9</mn>-                  </mtd>-                  <mtd>-                    <mn>8</mn>-                  </mtd>-                  <mtd>-                    <mn>7</mn>-                  </mtd>-                  <mtd>-                    <mn>6</mn>-                  </mtd>-                  <mtd>-                    <mn>5</mn>-                  </mtd>-                  <mtd>-                    <mn>4</mn>-                  </mtd>-                  <mtd>-                    <mn>3</mn>-                  </mtd>-                  <mtd>-                    <mn>2</mn>-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                </mtr>-              </mtable>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mtext mathvariant="normal">testing </mtext>-                <msup>-                  <mi>x</mi>-                  <mn>2</mn>-                </msup>-                <mtext mathvariant="normal"> end.</mtext>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">x</mtext>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mi>x</mi>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">x</mtext>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mi>x</mi>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mfrac>-              <mrow>-                <mo>ⅆ</mo>-                <mi>f</mi>-              </mrow>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mfrac>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <msub>-                <mi>x</mi>-                <mn>1</mn>-              </msub>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mn>5</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo>∫</mo>-            <mrow>-              <mi>x</mi>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo>∬</mo>-            <mrow>-              <mi>x</mi>-              <mo>&#8290;</mo>-              <mi>y</mi>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>y</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo>∭</mo>-            <mrow>-              <mi>x</mi>-              <mo>&#8290;</mo>-              <mi>y</mi>-              <mo>&#8290;</mo>-              <mi>z</mi>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>y</mi>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>z</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo>⨌</mo>-            <mrow>-              <mi>x</mi>-              <mo>&#8290;</mo>-              <mi>y</mi>-              <mo>&#8290;</mo>-              <mi>z</mi>-              <mo>&#8290;</mo>-              <mi>t</mi>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>y</mi>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>z</mi>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>t</mi>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>mod</mi>-          <mi>a</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>5</mn>-            <mi>mod</mi>-            <mn>3</mn>-          </mrow>-          <mo>=</mo>-          <mn>2</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mi>f</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mn>0</mn>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mi>mod</mi>-            <mn>3</mn>-          </mrow>-          <mo>=</mo>-          <mn>1</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mrow>-                <mn>5</mn>-                <mo>&#8290;</mo>-                <mi>x</mi>-              </mrow>-              <mo>+</mo>-              <mn>4</mn>-            </mrow>-            <mo>≡</mo>-            <mn>8</mn>-          </mrow>-          <mo>&#8203;</mo>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mrow>-              <mi>mod</mi>-              <mn>13</mn>-            </mrow>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>a</mi>-          <mo>=</mo>-          <mrow>-            <mrow>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mrow>-                  <mn>5</mn>-                  <mo>−</mo>-                  <mn>3</mn>-                </mrow>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-              <mo>/</mo>-              <mn>5</mn>-            </mrow>-            <mi>mod</mi>-            <mn>7</mn>-          </mrow>-          <mo>=</mo>-          <mn>6</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>x</mi>-                      <mn>2</mn>-                    </msup>-                  </mrow>-                  <mo>+</mo>-                  <mi>x</mi>-                  <mo>+</mo>-                  <mn>2</mn>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-              <mo>+</mo>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <mi>x</mi>-                  </mrow>-                  <mo>+</mo>-                  <mn>1</mn>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mi>mod</mi>-            <mn>3</mn>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mn>2</mn>-            <mo>&#8290;</mo>-            <msup>-              <mi>x</mi>-              <mn>2</mn>-            </msup>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mo>+</mo>-            </mtd>-            <mtd>-              <mn>0</mn>-            </mtd>-            <mtd>-              <mn>1</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>000</mn>-            </mtd>-            <mtd>-              <mn>000</mn>-            </mtd>-            <mtd>-              <mn>111</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mn>1</mn>-            </mtd>-            <mtd>-              <mn>1</mn>-            </mtd>-            <mtd>-              <mn>0</mn>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mn>4. 974 9</mn>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mfrac>-            <mo>ⅆ</mo>-            <mrow>-              <mo>ⅆ</mo>-              <mi>x</mi>-            </mrow>-          </mfrac>-          <mrow>-            <mi>F</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mi>x</mi>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">[</mo>-          <mrow>-            <mn>86.333</mn>-            <mo>,</mo>-            <mn>146.33</mn>-            <mo>,</mo>-            <mn>129.33</mn>-          </mrow>-          <mo stretchy="true" form="postfix">]</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>BinomialDist</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mi>x</mi>-                <mo>;</mo>-                <mrow>-                  <mi>n</mi>-                  <mo>,</mo>-                  <mi>p</mi>-                </mrow>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <munderover>-              <mo>∑</mo>-              <mrow>-                <mi>k</mi>-                <mo>=</mo>-                <mn>0</mn>-              </mrow>-              <mi>x</mi>-            </munderover>-            <mrow>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mfrac>-                  <mi>n</mi>-                  <mi>k</mi>-                </mfrac>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <msup>-                <mi>p</mi>-                <mi>k</mi>-              </msup>-              <mo>&#8290;</mo>-              <msup>-                <mi>q</mi>-                <mrow>-                  <mi>n</mi>-                  <mo>−</mo>-                  <mi>k</mi>-                </mrow>-              </msup>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>Pr</mi>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mi>X</mi>-                <mo>≤</mo>-                <mn>54</mn>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>BinomialDist</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mn>54</mn>-                <mo>;</mo>-                <mrow>-                  <mn>100</mn>-                  <mo>,</mo>-                  <mn>.55</mn>-                </mrow>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mn>.45846</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>k</mi>-            <mo>=</mo>-            <mrow>-              <mi>max</mi>-              <mrow>-                <mo stretchy="true" form="prefix">{</mo>-                <mrow>-                  <mrow>-                    <mo stretchy="true" form="prefix">|</mo>-                    <mrow>-                      <mfrac>-                        <mrow>-                          <mo>∂</mo>-                          <mi>f</mi>-                        </mrow>-                        <mrow>-                          <mo>∂</mo>-                          <mi>y</mi>-                        </mrow>-                      </mfrac>-                      <mo>&#8289;</mo>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mi>x</mi>-                          <mo>,</mo>-                          <mi>y</mi>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                    </mrow>-                    <mo stretchy="true" form="postfix">|</mo>-                  </mrow>-                  <mo>:</mo>-                  <mrow>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mi>x</mi>-                        <mo>,</mo>-                        <mi>y</mi>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                    <mo>∈</mo>-                    <mi>D</mi>-                  </mrow>-                </mrow>-                <mo stretchy="true" form="postfix">}</mo>-              </mrow>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">.</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>m</mi>-          <mo>=</mo>-          <mrow>-            <munder>-              <mi>lim</mi>-              <mrow>-                <mi>x</mi>-                <mover>-                  <mo accent="true">→</mo>-                  <mrow />-                </mover>-                <mi>a</mi>-              </mrow>-            </munder>-            <mfrac>-              <mrow>-                <mrow>-                  <mi>f</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mi>x</mi>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>−</mo>-                <mrow>-                  <mi>f</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mi>a</mi>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mrow>-              <mrow>-                <mi>x</mi>-                <mo>−</mo>-                <mi>a</mi>-              </mrow>-            </mfrac>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">|</mo>-            <mi>A</mi>-            <mo stretchy="true" form="postfix">|</mo>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo stretchy="true" form="prefix">|</mo>-            <mtable>-              <mtr>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mn>1</mn>-                      <mo>&#8203;</mo>-                      <mn>1</mn>-                    </mrow>-                  </msub>-                </mtd>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mn>1</mn>-                      <mo>&#8203;</mo>-                      <mn>2</mn>-                    </mrow>-                  </msub>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mn>1</mn>-                      <mo>&#8203;</mo>-                      <mi>n</mi>-                    </mrow>-                  </msub>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mn>2</mn>-                      <mo>&#8203;</mo>-                      <mn>1</mn>-                    </mrow>-                  </msub>-                </mtd>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mn>2</mn>-                      <mo>&#8203;</mo>-                      <mn>2</mn>-                    </mrow>-                  </msub>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mn>2</mn>-                      <mo>&#8203;</mo>-                      <mi>n</mi>-                    </mrow>-                  </msub>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mspace width="0.056em" />-                </mtd>-                <mtd>-                  <mspace width="0.056em" />-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mspace width="0.056em" />-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mspace width="0.056em" />-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mspace width="0.056em" />-                </mtd>-                <mtd>-                  <mspace width="0.056em" />-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-              </mtr>-              <mtr>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mi>n</mi>-                      <mo>&#8203;</mo>-                      <mn>1</mn>-                    </mrow>-                  </msub>-                </mtd>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mi>n</mi>-                      <mo>&#8203;</mo>-                      <mn>2</mn>-                    </mrow>-                  </msub>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <mo>⋅</mo>-                </mtd>-                <mtd>-                  <msub>-                    <mi>a</mi>-                    <mrow>-                      <mi>n</mi>-                      <mo>&#8203;</mo>-                      <mi>n</mi>-                    </mrow>-                  </msub>-                </mtd>-              </mtr>-            </mtable>-            <mo stretchy="true" form="postfix">|</mo>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <msub>-                <mi>a</mi>-                <mrow>-                  <mn>1</mn>-                  <mo>&#8203;</mo>-                  <mn>1</mn>-                </mrow>-              </msub>-              <mo>&#8290;</mo>-              <msub>-                <mi>A</mi>-                <mrow>-                  <mn>1</mn>-                  <mo>&#8203;</mo>-                  <mn>1</mn>-                </mrow>-              </msub>-            </mrow>-            <mo>+</mo>-            <mrow>-              <msub>-                <mi>a</mi>-                <mrow>-                  <mn>1</mn>-                  <mo>&#8203;</mo>-                  <mn>2</mn>-                </mrow>-              </msub>-              <mo>&#8290;</mo>-              <msub>-                <mi>A</mi>-                <mrow>-                  <mn>1</mn>-                  <mo>&#8203;</mo>-                  <mn>2</mn>-                </mrow>-              </msub>-            </mrow>-            <mo>+</mo>-            <mi>⋯</mi>-            <mo>+</mo>-            <mrow>-              <msub>-                <mi>a</mi>-                <mrow>-                  <mn>1</mn>-                  <mo>&#8203;</mo>-                  <mi>n</mi>-                </mrow>-              </msub>-              <mo>&#8290;</mo>-              <msub>-                <mi>A</mi>-                <mrow>-                  <mn>1</mn>-                  <mo>&#8203;</mo>-                  <mi>n</mi>-                </mrow>-              </msub>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>=</mo>-            <mn>1</mn>-          </mrow>-          <mrow>-            <mo stretchy="false" form="prefix">(</mo>-            <mtext mathvariant="normal">hl text </mtext>-            <mi>x</mi>-            <mtext mathvariant="normal"> end.</mtext>-            <mo stretchy="false" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>=</mo>-            <mn>1</mn>-          </mrow>-          <mrow>-            <mo stretchy="false" form="prefix">(</mo>-            <mtext mathvariant="normal">hl to URI </mtext>-            <mi>x</mi>-            <mtext mathvariant="normal"> end</mtext>-            <mo stretchy="false" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>=</mo>-            <mn>1</mn>-          </mrow>-          <mrow>-            <mo stretchy="false" form="prefix">(</mo>-            <mtext mathvariant="normal">sex</mtext>-            <mo stretchy="false" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>=</mo>-            <mn>1</mn>-          </mrow>-          <mrow>-            <mo stretchy="false" form="prefix">(</mo>-            <mtext mathvariant="normal">jbm</mtext>-            <mo stretchy="false" form="postfix">)</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd />-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mi>f</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mi>x</mi>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mo>&#8290;</mo>-            <mi>g</mi>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">[</mo>-              <mi>y</mi>-              <mo stretchy="false" form="postfix">]</mo>-            </mrow>-            <mo>&#8290;</mo>-            <mi>h</mi>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">{</mo>-              <mi>z</mi>-              <mo stretchy="false" form="postfix">}</mo>-            </mrow>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mrow>-              <mo stretchy="false" form="prefix">⌊</mo>-              <mi>a</mi>-              <mo stretchy="false" form="postfix">⌋</mo>-            </mrow>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">⌈</mo>-              <mi>b</mi>-              <mo stretchy="false" form="postfix">⌉</mo>-            </mrow>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">〈</mo>-              <mi>c</mi>-              <mo stretchy="false" form="postfix">〉</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mfrac>-              <mn>123</mn>-              <mfrac>-                <mn>456</mn>-                <mi>A</mi>-              </mfrac>-            </mfrac>-            <mo stretchy="true" form="postfix">|</mo>-          </mrow>-          <mrow>-            <mo stretchy="true" form="infix">∥</mo>-            <mfrac>-              <mi>A</mi>-              <mfrac>-                <mi>B</mi>-                <mi>A</mi>-              </mfrac>-            </mfrac>-          </mrow>-          <mrow>-            <mrow>-              <mo stretchy="true" form="infix">/</mo>-              <mfrac>-                <mn>1</mn>-                <mfrac>-                  <mn>2</mn>-                  <mi>A</mi>-                </mfrac>-              </mfrac>-              <mo stretchy="true" form="infix">/</mo>-            </mrow>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mfrac>-                <mn>3</mn>-                <mfrac>-                  <mn>4</mn>-                  <mi>A</mi>-                </mfrac>-              </mfrac>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mrow>-            <mo stretchy="true" form="infix">↕</mo>-            <mfrac>-              <mn>5</mn>-              <mfrac>-                <mn>6</mn>-                <mi>A</mi>-              </mfrac>-            </mfrac>-            <mo stretchy="true" form="infix">↕</mo>-          </mrow>-          <mfrac>-            <mn>7</mn>-            <mfrac>-              <mn>8</mn>-              <mi>A</mi>-            </mfrac>-          </mfrac>-          <mrow>-            <mo stretchy="true" form="infix">⇕</mo>-            <mfrac>-              <mfrac>-                <mn>9</mn>-                <mn>20</mn>-              </mfrac>-              <mfrac>-                <mn>10</mn>-                <mi>A</mi>-              </mfrac>-            </mfrac>-            <mo stretchy="true" form="infix">⇕</mo>-          </mrow>-          <mrow>-            <mrow>-              <mo stretchy="true" form="infix">↑</mo>-              <mfrac>-                <mn>11</mn>-                <mfrac>-                  <mn>12</mn>-                  <mi>A</mi>-                </mfrac>-              </mfrac>-              <mo stretchy="true" form="infix">↑</mo>-            </mrow>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="true" form="infix">⇑</mo>-              <mfrac>-                <mn>13</mn>-                <mfrac>-                  <mn>14</mn>-                  <mi>A</mi>-                </mfrac>-              </mfrac>-              <mo stretchy="true" form="infix">⇑</mo>-            </mrow>-          </mrow>-          <mrow>-            <mo stretchy="true" form="infix">↓</mo>-            <mfrac>-              <mn>15</mn>-              <mfrac>-                <mn>16</mn>-                <mi>A</mi>-              </mfrac>-            </mfrac>-            <mo stretchy="true" form="infix">↓</mo>-          </mrow>-          <mrow>-            <mo stretchy="true" form="infix">⇓</mo>-            <mfrac>-              <mn>17</mn>-              <mfrac>-                <mn>18</mn>-                <mi>A</mi>-              </mfrac>-            </mfrac>-            <mo stretchy="true" form="infix">⇓</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>&#8290;</mo>-          <mtable>-            <mtr>-              <mtd>-                <mi>x</mi>-              </mtd>-              <mtd>-                <mi>x</mi>-              </mtd>-            </mtr>-            <mtr>-              <mtd>-                <mi>x</mi>-              </mtd>-              <mtd>-                <mi>x</mi>-              </mtd>-            </mtr>-          </mtable>-          <mo>&#8290;</mo>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <msub>-                  <mi>a</mi>-                  <mn>1</mn>-                </msub>-                <mo>,</mo>-                <msub>-                  <mi>a</mi>-                  <mn>2</mn>-                </msub>-                <mo>,</mo>-                <mi>…</mi>-                <mo>,</mo>-                <msub>-                  <mi>a</mi>-                  <mi>n</mi>-                </msub>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mo>⋅</mo>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <msub>-                  <mi>b</mi>-                  <mn>1</mn>-                </msub>-                <mo>,</mo>-                <msub>-                  <mi>b</mi>-                  <mn>2</mn>-                </msub>-                <mo>,</mo>-                <mi>…</mi>-                <mo>,</mo>-                <msub>-                  <mi>b</mi>-                  <mi>n</mi>-                </msub>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <msub>-                <mi>a</mi>-                <mn>1</mn>-              </msub>-              <mo>&#8290;</mo>-              <msubsup>-                <mi>b</mi>-                <mn>1</mn>-                <mo>*</mo>-              </msubsup>-            </mrow>-            <mo>+</mo>-            <mrow>-              <msub>-                <mi>a</mi>-                <mn>2</mn>-              </msub>-              <mo>&#8290;</mo>-              <msubsup>-                <mi>b</mi>-                <mn>2</mn>-                <mo>*</mo>-              </msubsup>-            </mrow>-            <mo>+</mo>-            <mi>⋯</mi>-            <mo>+</mo>-            <mrow>-              <msub>-                <mi>a</mi>-                <mi>n</mi>-              </msub>-              <mo>&#8290;</mo>-              <msubsup>-                <mi>b</mi>-                <mi>n</mi>-                <mo>*</mo>-              </msubsup>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">⌊</mo>-            <mfrac>-              <mi>n</mi>-              <mn>5</mn>-            </mfrac>-            <mo stretchy="true" form="postfix">⌋</mo>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mo stretchy="true" form="prefix">⌊</mo>-            <mfrac>-              <mi>n</mi>-              <msup>-                <mn>5</mn>-                <mn>2</mn>-              </msup>-            </mfrac>-            <mo stretchy="true" form="postfix">⌋</mo>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mo stretchy="true" form="prefix">⌊</mo>-            <mfrac>-              <mi>n</mi>-              <msup>-                <mn>5</mn>-                <mn>3</mn>-              </msup>-            </mfrac>-            <mo stretchy="true" form="postfix">⌋</mo>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mo stretchy="true" form="prefix">⌊</mo>-            <mfrac>-              <mi>n</mi>-              <msup>-                <mn>5</mn>-                <mn>4</mn>-              </msup>-            </mfrac>-            <mo stretchy="true" form="postfix">⌋</mo>-          </mrow>-          <mo>+</mo>-          <mi>⋯</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <msub>-            <mi>x</mi>-            <mn>1</mn>-          </msub>-          <mo>+</mo>-          <mi>⋯</mi>-          <mo>+</mo>-          <msub>-            <mi>x</mi>-            <mi>n</mi>-          </msub>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <munder>-          <munder>-            <mrow>-              <mi>x</mi>-              <mo>+</mo>-              <mi>⋯</mi>-              <mo>+</mo>-              <mi>x</mi>-            </mrow>-            <mo accent="true">︸</mo>-          </munder>-          <mrow>-            <mi>k</mi>-            <mtext mathvariant="normal"> times</mtext>-          </mrow>-        </munder>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mroot>-          <mrow>-            <msub>-              <mi>x</mi>-              <mn>1</mn>-            </msub>-            <mo>&#8290;</mo>-            <msub>-              <mi>x</mi>-              <mn>2</mn>-            </msub>-            <mo>&#8290;</mo>-            <mi>⋯</mi>-            <mo>&#8290;</mo>-            <msub>-              <mi>x</mi>-              <mi>n</mi>-            </msub>-          </mrow>-          <mi>n</mi>-        </mroot>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>n</mi>-            <mo>!</mo>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mn>1</mn>-            <mo>×</mo>-            <mn>2</mn>-            <mo>×</mo>-            <mn>3</mn>-            <mo>×</mo>-            <mn>4</mn>-            <mo>×</mo>-            <mi>⋯</mi>-            <mo>×</mo>-            <mi>n</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>P</mi>-          <mo>:</mo>-          <mrow>-            <mi>a</mi>-            <mo>=</mo>-            <msub>-              <mi>x</mi>-              <mn>0</mn>-            </msub>-            <mo>&lt;</mo>-            <msub>-              <mi>x</mi>-              <mn>1</mn>-            </msub>-            <mo>&lt;</mo>-            <msub>-              <mi>x</mi>-              <mn>2</mn>-            </msub>-            <mo>&lt;</mo>-            <mi>⋯</mi>-            <mo>&lt;</mo>-            <msub>-              <mi>x</mi>-              <mi>n</mi>-            </msub>-            <mo>=</mo>-            <mi>b</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>f</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mi>x</mi>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mfrac>-              <mn>30</mn>-              <mrow>-                <mn>13</mn>-                <mo>&#8290;</mo>-                <mrow>-                  <mi>cos</mi>-                  <mo>&#8289;</mo>-                  <mi>x</mi>-                </mrow>-              </mrow>-            </mfrac>-            <mo>+</mo>-            <mrow>-              <mfrac>-                <mn>10</mn>-                <mn>3</mn>-              </mfrac>-              <mo>&#8290;</mo>-              <msqrt>-                <mrow>-                  <mo stretchy="true" form="prefix">(</mo>-                  <mrow>-                    <mn>100</mn>-                    <mo>+</mo>-                    <mfrac>-                      <mn>9</mn>-                      <mrow>-                        <msup>-                          <mi>cos</mi>-                          <mn>2</mn>-                        </msup>-                        <mo>&#8289;</mo>-                        <mi>x</mi>-                      </mrow>-                    </mfrac>-                    <mo>−</mo>-                    <mrow>-                      <mfrac>-                        <mn>60</mn>-                        <mrow>-                          <mi>cos</mi>-                          <mo>&#8289;</mo>-                          <mi>x</mi>-                        </mrow>-                      </mfrac>-                      <mo>&#8290;</mo>-                      <mrow>-                        <mi>sin</mi>-                        <mo>&#8289;</mo>-                        <mrow>-                          <mo stretchy="true" form="prefix">(</mo>-                          <mrow>-                            <mi>x</mi>-                            <mo>+</mo>-                            <mrow>-                              <mfrac>-                                <mn>29</mn>-                                <mn>90</mn>-                              </mfrac>-                              <mo>&#8290;</mo>-                              <mi>π</mi>-                            </mrow>-                          </mrow>-                          <mo stretchy="true" form="postfix">)</mo>-                        </mrow>-                      </mrow>-                    </mrow>-                  </mrow>-                  <mo stretchy="true" form="postfix">)</mo>-                </mrow>-              </msqrt>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">∫</mo>-              <mrow>-                <mrow>-                  <mi>cos</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>A</mi>-                      <mo>&#8290;</mo>-                      <mi>x</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>&#8290;</mo>-                <mrow>-                  <mi>sin</mi>-                  <mo>&#8289;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>B</mi>-                      <mo>&#8290;</mo>-                      <mi>x</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>&#8290;</mo>-                <mrow>-                  <mo>ⅆ</mo>-                  <mi>x</mi>-                </mrow>-              </mrow>-            </mrow>-            <mo>=</mo>-            <mrow>-              <mfrac>-                <mrow>-                  <mo>−</mo>-                  <mrow>-                    <mi>cos</mi>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mi>B</mi>-                          <mo>−</mo>-                          <mi>A</mi>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                      <mo>&#8290;</mo>-                      <mi>x</mi>-                    </mrow>-                  </mrow>-                </mrow>-                <mrow>-                  <mn>2</mn>-                  <mo>&#8290;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>B</mi>-                      <mo>−</mo>-                      <mi>A</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mfrac>-              <mo>+</mo>-              <mfrac>-                <mrow>-                  <mo>−</mo>-                  <mrow>-                    <mi>cos</mi>-                    <mo>&#8289;</mo>-                    <mrow>-                      <mrow>-                        <mo stretchy="false" form="prefix">(</mo>-                        <mrow>-                          <mi>B</mi>-                          <mo>+</mo>-                          <mi>A</mi>-                        </mrow>-                        <mo stretchy="false" form="postfix">)</mo>-                      </mrow>-                      <mo>&#8290;</mo>-                      <mi>x</mi>-                    </mrow>-                  </mrow>-                </mrow>-                <mrow>-                  <mn>2</mn>-                  <mo>&#8290;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>B</mi>-                      <mo>+</mo>-                      <mi>A</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mfrac>-              <mo>+</mo>-              <mi>C</mi>-            </mrow>-          </mrow>-          <mtext mathvariant="normal"> .</mtext>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mn>235.3</mn>-            <mo>+</mo>-            <mn>813</mn>-          </mrow>-          <mo>=</mo>-          <mn>1048. 3</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <munder>-              <mi>max</mi>-              <mrow>-                <mrow>-                  <mo>−</mo>-                  <mn>2</mn>-                </mrow>-                <mo>≤</mo>-                <mi>x</mi>-                <mo>≤</mo>-                <mn>2</mn>-              </mrow>-            </munder>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <msup>-                  <mi>x</mi>-                  <mn>3</mn>-                </msup>-                <mo>−</mo>-                <mrow>-                  <mn>6</mn>-                  <mo>&#8290;</mo>-                  <mi>x</mi>-                </mrow>-                <mo>+</mo>-                <mn>3</mn>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mn>8.0</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>x</mi>-            <mo>&#8290;</mo>-            <mi>decade</mi>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mn>2</mn>-            <mo>&#8290;</mo>-            <mi>century</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mfrac>-            <mrow>-              <msup>-                <mo>ⅆ</mo>-                <mn>5</mn>-              </msup>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <msup>-                    <mi>x</mi>-                    <mn>7</mn>-                  </msup>-                  <mo>−</mo>-                  <mrow>-                    <mn>3</mn>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>x</mi>-                      <mn>6</mn>-                    </msup>-                  </mrow>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-            </mrow>-            <mrow>-              <mo>ⅆ</mo>-              <msup>-                <mi>x</mi>-                <mn>5</mn>-              </msup>-            </mrow>-          </mfrac>-          <mtext mathvariant="normal">  </mtext>-          <mfrac>-            <mrow>-              <msup>-                <mo>ⅆ</mo>-                <mi>n</mi>-              </msup>-              <mrow>-                <mi>sin</mi>-                <mo>&#8289;</mo>-                <mi>x</mi>-              </mrow>-            </mrow>-            <mrow>-              <mo>ⅆ</mo>-              <msup>-                <mi>x</mi>-                <mi>n</mi>-              </msup>-            </mrow>-          </mfrac>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <mfrac>-              <msup>-                <mo>ⅆ</mo>-                <mn>3</mn>-              </msup>-              <mrow>-                <mo>ⅆ</mo>-                <msup>-                  <mi>x</mi>-                  <mn>3</mn>-                </msup>-              </mrow>-            </mfrac>-            <mrow>-              <mi>f</mi>-              <mo>&#8289;</mo>-              <mrow>-                <mo stretchy="false" form="prefix">(</mo>-                <mi>x</mi>-                <mo stretchy="false" form="postfix">)</mo>-              </mrow>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <mfrac>-              <msup>-                <mo>ⅆ</mo>-                <mn>2</mn>-              </msup>-              <mrow>-                <mo>ⅆ</mo>-                <msup>-                  <mi>t</mi>-                  <mn>2</mn>-                </msup>-              </mrow>-            </mfrac>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mrow>-                  <mn>4</mn>-                  <mo>&#8290;</mo>-                  <msup>-                    <mi>t</mi>-                    <mn>5</mn>-                  </msup>-                </mrow>-                <mo>−</mo>-                <mrow>-                  <mn>3</mn>-                  <mo>&#8290;</mo>-                  <mi>t</mi>-                </mrow>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>f</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mi>x</mi>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mfrac>-              <mn>30</mn>-              <mrow>-                <mn>13</mn>-                <mo>&#8290;</mo>-                <mrow>-                  <mi>cos</mi>-                  <mo>&#8289;</mo>-                  <mi>x</mi>-                </mrow>-              </mrow>-            </mfrac>-            <mo>+</mo>-            <mrow>-              <mfrac>-                <mn>10</mn>-                <mn>3</mn>-              </mfrac>-              <mo>&#8290;</mo>-              <msqrt>-                <mrow>-                  <mo stretchy="true" form="prefix">(</mo>-                  <mrow>-                    <mn>100</mn>-                    <mo>+</mo>-                    <mfrac>-                      <mn>9</mn>-                      <mrow>-                        <msup>-                          <mi>cos</mi>-                          <mn>2</mn>-                        </msup>-                        <mo>&#8289;</mo>-                        <mi>x</mi>-                      </mrow>-                    </mfrac>-                    <mo>−</mo>-                    <mrow>-                      <mfrac>-                        <mn>60</mn>-                        <mrow>-                          <mi>cos</mi>-                          <mo>&#8289;</mo>-                          <mi>x</mi>-                        </mrow>-                      </mfrac>-                      <mo>&#8290;</mo>-                      <mrow>-                        <mi>sin</mi>-                        <mo>&#8289;</mo>-                        <mrow>-                          <mo stretchy="true" form="prefix">(</mo>-                          <mrow>-                            <mi>x</mi>-                            <mo>+</mo>-                            <mrow>-                              <mfrac>-                                <mn>29</mn>-                                <mn>90</mn>-                              </mfrac>-                              <mo>&#8290;</mo>-                              <mi>π</mi>-                            </mrow>-                          </mrow>-                          <mo stretchy="true" form="postfix">)</mo>-                        </mrow>-                      </mrow>-                    </mrow>-                  </mrow>-                  <mo stretchy="true" form="postfix">)</mo>-                </mrow>-              </msqrt>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">∫</mo>-            <msub>-              <mrow />-              <msup>-                <mstyle mathvariant="bold">-                  <mi>𝐑</mi>-                </mstyle>-                <mn>3</mn>-              </msup>-            </msub>-            <mrow>-              <mrow>-                <mo stretchy="true" form="prefix">(</mo>-                <mrow>-                  <mfrac>-                    <mrow>-                      <msup>-                        <mrow>-                          <mo stretchy="true" form="prefix">|</mo>-                          <msub>-                            <mi>u</mi>-                            <mn>1</mn>-                          </msub>-                          <mo stretchy="true" form="postfix">|</mo>-                        </mrow>-                        <mn>2</mn>-                      </msup>-                      <mo>+</mo>-                      <msup>-                        <mrow>-                          <mo stretchy="true" form="prefix">|</mo>-                          <mrow>-                            <mo>∇</mo>-                            <msub>-                              <mi>u</mi>-                              <mn>0</mn>-                            </msub>-                          </mrow>-                          <mo stretchy="true" form="postfix">|</mo>-                        </mrow>-                        <mn>2</mn>-                      </msup>-                    </mrow>-                    <mn>2</mn>-                  </mfrac>-                  <mo>+</mo>-                  <mfrac>-                    <msup>-                      <mrow>-                        <mo stretchy="true" form="prefix">|</mo>-                        <msub>-                          <mi>u</mi>-                          <mn>0</mn>-                        </msub>-                        <mo stretchy="true" form="postfix">|</mo>-                      </mrow>-                      <mn>6</mn>-                    </msup>-                    <mn>6</mn>-                  </mfrac>-                </mrow>-                <mo stretchy="true" form="postfix">)</mo>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mrow>-          </mrow>-          <mo>&lt;</mo>-          <mi>∞</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <mi>∇×</mi>-                <mstyle mathvariant="bold">-                  <mi>𝐅</mi>-                </mstyle>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-            <mo>⋅</mo>-            <mstyle mathvariant="bold">-              <mi>𝐤</mi>-            </mstyle>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>z</mi>-            <mo>+</mo>-            <mn>1</mn>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>M</mi>-          <mo>&#8290;</mo>-          <mfrac>-            <msup>-              <mi>M</mi>-              <mfrac>-                <mi>M</mi>-                <mi>M</mi>-              </mfrac>-            </msup>-            <mi>M</mi>-          </mfrac>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msub>-              <mo>ⅅ</mo>-              <mi>x</mi>-            </msub>-            <msup>-              <mi>x</mi>-              <mn>2</mn>-            </msup>-          </mrow>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <msub>-              <mo>ⅅ</mo>-              <mi>x</mi>-            </msub>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <msub>-              <mo>ⅅ</mo>-              <mrow>-                <mi>x</mi>-                <mo>&#8203;</mo>-                <mi>x</mi>-              </mrow>-            </msub>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <msub>-              <mo>ⅅ</mo>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-            </msub>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <msub>-              <mo>ⅅ</mo>-              <mrow>-                <mi>x</mi>-                <mo>&#8203;</mo>-                <mi>y</mi>-              </mrow>-            </msub>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <msup>-                  <mi>x</mi>-                  <mn>2</mn>-                </msup>-                <mo>&#8290;</mo>-                <msup>-                  <mi>y</mi>-                  <mn>3</mn>-                </msup>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <msub>-              <mo>ⅅ</mo>-              <mrow>-                <msup>-                  <mi>x</mi>-                  <mi>s</mi>-                </msup>-                <mo>&#8203;</mo>-                <msup>-                  <mi>y</mi>-                  <mi>t</mi>-                </msup>-              </mrow>-            </msub>-            <mrow>-              <mo stretchy="true" form="prefix">(</mo>-              <mrow>-                <msup>-                  <mi>x</mi>-                  <mn>2</mn>-                </msup>-                <mo>&#8290;</mo>-                <msup>-                  <mi>y</mi>-                  <mn>3</mn>-                </msup>-              </mrow>-              <mo stretchy="true" form="postfix">)</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mn>5</mn>-          <mspace width="0.07em" />-          <mrow>-            <mn>24</mn>-            <mo>!</mo>-          </mrow>-          <mspace width="0.07em" />-          <msup>-            <mi>x</mi>-            <mn>6</mn>-          </msup>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mtable>-                <mtr>-                  <mtd>-                    <mrow>-                      <mi>x</mi>-                      <mo>+</mo>-                      <mroot>-                        <mfrac>-                          <msup>-                            <mi>a</mi>-                            <mrow>-                              <mi>y</mi>-                              <mo>−</mo>-                              <mn>1</mn>-                            </mrow>-                          </msup>-                          <mn>12.34</mn>-                        </mfrac>-                        <mn>2</mn>-                      </mroot>-                    </mrow>-                  </mtd>-                  <mtd>-                    <mrow>-                      <mi>sin</mi>-                      <mo>&#8289;</mo>-                      <mi>θ</mi>-                    </mrow>-                  </mtd>-                </mtr>-                <mtr>-                  <mtd>-                    <mspace width="0.056em" />-                  </mtd>-                  <mtd>-                    <mn>1</mn>-                  </mtd>-                </mtr>-              </mtable>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd columnalign="center">-              <mn>0</mn>-            </mtd>-            <mtd columnalign="center">-              <mn>1</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd columnalign="center">-              <mn>1</mn>-            </mtd>-            <mtd columnalign="center">-              <mn>0</mn>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mtable>-            <mtr>-              <mtd columnalign="center">-                <mn>0</mn>-              </mtd>-              <mtd columnalign="center">-                <mrow>-                  <mo>−</mo>-                  <mi>i</mi>-                </mrow>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="center">-                <mi>i</mi>-              </mtd>-              <mtd columnalign="center">-                <mn>0</mn>-              </mtd>-            </mtr>-          </mtable>-          <mo stretchy="true" form="postfix">)</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">[</mo>-          <mtable>-            <mtr>-              <mtd columnalign="center">-                <mn>1</mn>-              </mtd>-              <mtd columnalign="center">-                <mn>0</mn>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="center">-                <mn>0</mn>-              </mtd>-              <mtd columnalign="center">-                <mrow>-                  <mo>−</mo>-                  <mn>1</mn>-                </mrow>-              </mtd>-            </mtr>-          </mtable>-          <mo stretchy="true" form="postfix">]</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">|</mo>-          <mtable>-            <mtr>-              <mtd columnalign="center">-                <mi>a</mi>-              </mtd>-              <mtd columnalign="center">-                <mi>b</mi>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="center">-                <mi>c</mi>-              </mtd>-              <mtd columnalign="center">-                <mi>d</mi>-              </mtd>-            </mtr>-          </mtable>-          <mo stretchy="true" form="postfix">|</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">∥</mo>-          <mtable>-            <mtr>-              <mtd columnalign="center">-                <mn>1</mn>-              </mtd>-              <mtd columnalign="center">-                <mn>0</mn>-              </mtd>-              <mtd columnalign="center">-                <mn>1</mn>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="center">-                <mn>0</mn>-              </mtd>-              <mtd columnalign="center">-                <mn>11</mn>-              </mtd>-              <mtd columnalign="center">-                <mspace width="0.056em" />-              </mtd>-            </mtr>-          </mtable>-          <mo stretchy="true" form="infix">∥</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd columnalign="center">-              <mn>1</mn>-            </mtd>-            <mtd columnalign="center">-              <mn>2</mn>-            </mtd>-            <mtd columnalign="center">-              <mn>3</mn>-            </mtd>-          </mtr>-          <mtr>-            <mtd columnalign="center">-              <mn>4</mn>-            </mtd>-            <mtd columnalign="center">-              <mn>5</mn>-            </mtd>-            <mtd columnalign="center">-              <mspace width="0.056em" />-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mtext mathvariant="normal">testing </mtext>-          <mtable>-            <mtr>-              <mtd>-                <mrow>-                  <mi>sin</mi>-                  <mo>&#8289;</mo>-                  <mi>θ</mi>-                </mrow>-              </mtd>-            </mtr>-          </mtable>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mover>-            <mi>a</mi>-            <mo accent="true">̂</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>b</mi>-            <mo accent="true">ˇ</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>c</mi>-            <mo accent="true">˜</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>d</mi>-            <mo accent="true">´</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>e</mi>-            <mo accent="true">`</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>f</mi>-            <mo accent="true">˘</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>g</mi>-            <mo accent="true">¯</mo>-          </mover>-          <mo>+</mo>-          <mi>h</mi>-          <mo>+</mo>-          <mover>-            <mi>i</mi>-            <mo accent="true">˚</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>j</mi>-            <mo accent="true">˙</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>k</mi>-            <mo accent="true">¨</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>l</mi>-            <mo accent="true">⃛</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>m</mi>-            <mo accent="true">⃜</mo>-          </mover>-          <mo>+</mo>-          <mover>-            <mi>n</mi>-            <mo accent="true">→</mo>-          </mover>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>f</mi>-            <mo>&#8289;</mo>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <mi>g</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mi>x</mi>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mrow>-              <msup>-                <mi>sin</mi>-                <mn>3</mn>-              </msup>-              <mo>&#8289;</mo>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mrow>-                <mi>sin</mi>-                <mo>&#8289;</mo>-                <msup>-                  <mi>x</mi>-                  <mn>2</mn>-                </msup>-              </mrow>-              <mo>&#8290;</mo>-              <mrow>-                <mi>sin</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="true" form="prefix">(</mo>-                  <mrow>-                    <mi>sin</mi>-                    <mo>&#8289;</mo>-                    <msup>-                      <mi>x</mi>-                      <mn>2</mn>-                    </msup>-                  </mrow>-                  <mo stretchy="true" form="postfix">)</mo>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo stretchy="true" form="prefix">(</mo>-            <mrow>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-              <mo>+</mo>-              <mn>12</mn>-            </mrow>-            <mo stretchy="true" form="postfix">)</mo>-          </mrow>-          <mo>+</mo>-          <mn>1234</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>x</mi>-                <mo>=</mo>-                <mn>1</mn>-              </mrow>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">not</mtext>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">here</mtext>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <msup>-                <mi>x</mi>-                <mn>2</mn>-              </msup>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">merged</mtext>-            </mtd>-            <mtd>-              <msub>-                <mi>y</mi>-                <mn>1</mn>-              </msub>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">jbm</mtext>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">lowlife</mtext>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">The end.</mtext>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <msup>-              <mi>x</mi>-              <mn>2</mn>-            </msup>-            <mo>+</mo>-            <msup>-              <mi>y</mi>-              <mn>2</mn>-            </msup>-          </mrow>-          <mo>=</mo>-          <mrow>-            <msup>-              <mi>z</mi>-              <mn>2</mn>-            </msup>-            <mo>−</mo>-            <mn>1</mn>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msup>-                    <mi>x</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>+</mo>-                  <msup>-                    <mi>y</mi>-                    <mn>2</mn>-                  </msup>-                </mrow>-                <mo>=</mo>-                <mrow>-                  <msup>-                    <mi>z</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>−</mo>-                  <mn>1</mn>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mi>x</mi>-                  <mo>+</mo>-                  <msup>-                    <mi>y</mi>-                    <mn>3</mn>-                  </msup>-                </mrow>-                <mo>=</mo>-                <msup>-                  <mi>z</mi>-                  <mn>3</mn>-                </msup>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msup>-                    <mi>x</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>+</mo>-                  <msup>-                    <mi>y</mi>-                    <mn>2</mn>-                  </msup>-                </mrow>-                <mo>=</mo>-                <mrow>-                  <msup>-                    <mi>z</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>−</mo>-                  <mn>1</mn>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mi>x</mi>-                  <mo>+</mo>-                  <msup>-                    <mi>y</mi>-                    <mn>3</mn>-                  </msup>-                </mrow>-                <mo>=</mo>-                <msup>-                  <mi>z</mi>-                  <mn>3</mn>-                </msup>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msup>-                    <mi>x</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>+</mo>-                  <msup>-                    <mi>y</mi>-                    <mn>2</mn>-                  </msup>-                </mrow>-                <mo>=</mo>-                <mn>1</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mi>x</mi>-                <mo>=</mo>-                <msqrt>-                  <mrow>-                    <mn>1</mn>-                    <mo>−</mo>-                    <msup>-                      <mi>y</mi>-                      <mn>2</mn>-                    </msup>-                  </mrow>-                </msqrt>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <msup>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>a</mi>-                      <mo>+</mo>-                      <mi>b</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                  <mn>2</mn>-                </msup>-                <mo>=</mo>-                <mrow>-                  <msup>-                    <mi>a</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>+</mo>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <mi>a</mi>-                    <mo>&#8290;</mo>-                    <mi>b</mi>-                  </mrow>-                  <mo>+</mo>-                  <msup>-                    <mi>b</mi>-                    <mn>2</mn>-                  </msup>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>a</mi>-                      <mo>+</mo>-                      <mi>b</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                  <mo>⋅</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>a</mi>-                      <mo>−</mo>-                      <mi>b</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-                <mo>=</mo>-                <mrow>-                  <msup>-                    <mi>a</mi>-                    <mn>2</mn>-                  </msup>-                  <mo>−</mo>-                  <msup>-                    <mi>b</mi>-                    <mn>2</mn>-                  </msup>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">First line of equation</mtext>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">Middle line of equation</mtext>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">Other middle line of equation</mtext>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">Last line of equation</mtext>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msub>-                    <mi>L</mi>-                    <mn>1</mn>-                  </msub>-                  <mo>=</mo>-                  <msub>-                    <mi>R</mi>-                    <mn>1</mn>-                  </msub>-                </mrow>-                <mtext mathvariant="normal">  </mtext>-                <mrow>-                  <msub>-                    <mi>L</mi>-                    <mn>2</mn>-                  </msub>-                  <mo>=</mo>-                  <msub>-                    <mi>R</mi>-                    <mn>2</mn>-                  </msub>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <msub>-                    <mi>L</mi>-                    <mn>3</mn>-                  </msub>-                  <mo>=</mo>-                  <msub>-                    <mi>R</mi>-                    <mn>3</mn>-                  </msub>-                </mrow>-                <mtext mathvariant="normal">  </mtext>-                <mrow>-                  <msub>-                    <mi>L</mi>-                    <mn>4</mn>-                  </msub>-                  <mo>=</mo>-                  <msub>-                    <mi>R</mi>-                    <mn>4</mn>-                  </msub>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <msup>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <mi>a</mi>-                      <mo>+</mo>-                      <mi>b</mi>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                  <mn>4</mn>-                </msup>-                <mo>=</mo>-                <mrow>-                  <msup>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mi>a</mi>-                        <mo>+</mo>-                        <mi>b</mi>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                    <mn>2</mn>-                  </msup>-                  <mo>&#8290;</mo>-                  <msup>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mi>a</mi>-                        <mo>+</mo>-                        <mi>b</mi>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                    <mn>2</mn>-                  </msup>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mo>=</mo>-                <mrow>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <msup>-                        <mi>a</mi>-                        <mn>2</mn>-                      </msup>-                      <mo>+</mo>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8290;</mo>-                        <mi>a</mi>-                        <mo>&#8290;</mo>-                        <mi>b</mi>-                      </mrow>-                      <mo>+</mo>-                      <msup>-                        <mi>b</mi>-                        <mn>2</mn>-                      </msup>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                  <mo>&#8290;</mo>-                  <mrow>-                    <mo stretchy="false" form="prefix">(</mo>-                    <mrow>-                      <msup>-                        <mi>a</mi>-                        <mn>2</mn>-                      </msup>-                      <mo>+</mo>-                      <mrow>-                        <mn>2</mn>-                        <mo>&#8290;</mo>-                        <mi>a</mi>-                        <mo>&#8290;</mo>-                        <mi>b</mi>-                      </mrow>-                      <mo>+</mo>-                      <msup>-                        <mi>b</mi>-                        <mn>2</mn>-                      </msup>-                    </mrow>-                    <mo stretchy="false" form="postfix">)</mo>-                  </mrow>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mo>=</mo>-                <mrow>-                  <msup>-                    <mi>a</mi>-                    <mn>4</mn>-                  </msup>-                  <mo>+</mo>-                  <mrow>-                    <mn>4</mn>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>a</mi>-                      <mn>3</mn>-                    </msup>-                    <mo>&#8290;</mo>-                    <mi>b</mi>-                  </mrow>-                  <mo>+</mo>-                  <mrow>-                    <mn>6</mn>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>a</mi>-                      <mn>2</mn>-                    </msup>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>b</mi>-                      <mn>2</mn>-                    </msup>-                  </mrow>-                  <mo>+</mo>-                  <mrow>-                    <mn>4</mn>-                    <mo>&#8290;</mo>-                    <mi>a</mi>-                    <mo>&#8290;</mo>-                    <msup>-                      <mi>b</mi>-                      <mn>3</mn>-                    </msup>-                  </mrow>-                  <mo>+</mo>-                  <msup>-                    <mi>b</mi>-                    <mn>4</mn>-                  </msup>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mtable>-            <mtr>-              <mtd>-                <mrow>-                  <mrow>-                    <msup>-                      <mi>x</mi>-                      <mn>2</mn>-                    </msup>-                    <mo>+</mo>-                    <msup>-                      <mi>y</mi>-                      <mn>2</mn>-                    </msup>-                  </mrow>-                  <mo>=</mo>-                  <mn>1</mn>-                </mrow>-              </mtd>-            </mtr>-            <mtr>-              <mtd>-                <mrow>-                  <mi>x</mi>-                  <mo>=</mo>-                  <msqrt>-                    <mrow>-                      <mn>1</mn>-                      <mo>−</mo>-                      <msup>-                        <mi>y</mi>-                        <mn>2</mn>-                      </msup>-                    </mrow>-                  </msqrt>-                </mrow>-              </mtd>-            </mtr>-          </mtable>-          <mtext mathvariant="normal">  </mtext>-          <mtable>-            <mtr>-              <mtd>-                <mrow>-                  <msup>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mi>a</mi>-                        <mo>+</mo>-                        <mi>b</mi>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                    <mn>2</mn>-                  </msup>-                  <mo>=</mo>-                  <mrow>-                    <msup>-                      <mi>a</mi>-                      <mn>2</mn>-                    </msup>-                    <mo>+</mo>-                    <mrow>-                      <mn>2</mn>-                      <mo>&#8290;</mo>-                      <mi>a</mi>-                      <mo>&#8290;</mo>-                      <mi>b</mi>-                    </mrow>-                    <mo>+</mo>-                    <msup>-                      <mi>b</mi>-                      <mn>2</mn>-                    </msup>-                  </mrow>-                </mrow>-              </mtd>-            </mtr>-            <mtr>-              <mtd>-                <mrow>-                  <mrow>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mi>a</mi>-                        <mo>+</mo>-                        <mi>b</mi>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                    <mo>⋅</mo>-                    <mrow>-                      <mo stretchy="false" form="prefix">(</mo>-                      <mrow>-                        <mi>a</mi>-                        <mo>−</mo>-                        <mi>b</mi>-                      </mrow>-                      <mo stretchy="false" form="postfix">)</mo>-                    </mrow>-                  </mrow>-                  <mo>=</mo>-                  <mrow>-                    <msup>-                      <mi>a</mi>-                      <mn>2</mn>-                    </msup>-                    <mo>−</mo>-                    <msup>-                      <mi>b</mi>-                      <mn>2</mn>-                    </msup>-                  </mrow>-                </mrow>-              </mtd>-            </mtr>-          </mtable>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">Vertex</mtext>-            </mtd>-            <mtd>-              <mrow>-                <mi>V</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mrow>-                    <mn>0</mn>-                    <mo>,</mo>-                    <mn>0</mn>-                  </mrow>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">Focus</mtext>-            </mtd>-            <mtd>-              <mrow>-                <mi>F</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="false" form="prefix">(</mo>-                  <mrow>-                    <mn>0</mn>-                    <mo>,</mo>-                    <mi>p</mi>-                  </mrow>-                  <mo stretchy="false" form="postfix">)</mo>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">Directrix</mtext>-            </mtd>-            <mtd>-              <mrow>-                <mi>y</mi>-                <mo>=</mo>-                <mrow>-                  <mo>−</mo>-                  <mi>p</mi>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mfrac>-              <mo>ⅆ</mo>-              <mrow>-                <mo>ⅆ</mo>-                <mi>x</mi>-              </mrow>-            </mfrac>-            <mtext mathvariant="normal">  </mtext>-            <mrow>-              <mo stretchy="false" form="prefix">(</mo>-              <mrow>-                <msup>-                  <mi>csc</mi>-                  <mrow>-                    <mo>−</mo>-                    <mn>1</mn>-                  </mrow>-                </msup>-                <mo>&#8289;</mo>-                <mi>x</mi>-              </mrow>-              <mo stretchy="false" form="postfix">)</mo>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mo>−</mo>-            <mfrac>-              <mn>1</mn>-              <mrow>-                <mrow>-                  <mo stretchy="true" form="prefix">|</mo>-                  <mi>x</mi>-                  <mo stretchy="true" form="postfix">|</mo>-                </mrow>-                <mo>&#8290;</mo>-                <msqrt>-                  <mrow>-                    <msup>-                      <mi>x</mi>-                      <mn>2</mn>-                    </msup>-                    <mo>−</mo>-                    <mn>1</mn>-                  </mrow>-                </msqrt>-              </mrow>-            </mfrac>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <msup>-                <mi>tanh</mi>-                <mrow>-                  <mo>−</mo>-                  <mn>1</mn>-                </mrow>-              </msup>-              <mo>&#8289;</mo>-              <mi>x</mi>-            </mrow>-            <mo>=</mo>-            <mrow>-              <mfrac>-                <mn>1</mn>-                <mn>2</mn>-              </mfrac>-              <mo>&#8290;</mo>-              <mrow>-                <mi>ln</mi>-                <mo>&#8289;</mo>-                <mrow>-                  <mo stretchy="true" form="prefix">(</mo>-                  <mfrac>-                    <mrow>-                      <mn>1</mn>-                      <mo>+</mo>-                      <mi>x</mi>-                    </mrow>-                    <mrow>-                      <mn>1</mn>-                      <mo>−</mo>-                      <mi>x</mi>-                    </mrow>-                  </mfrac>-                  <mo stretchy="true" form="postfix">)</mo>-                </mrow>-              </mrow>-            </mrow>-          </mrow>-          <mtext mathvariant="normal">  </mtext>-          <mrow>-            <mrow>-              <mo>−</mo>-              <mn>1</mn>-            </mrow>-            <mo>&lt;</mo>-            <mi>x</mi>-            <mo>&lt;</mo>-            <mn>1</mn>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mrow>-              <mi>∠</mi>-              <mi>α</mi>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mi>∠</mi>-              <mi>A</mi>-              <mi>B</mi>-              <mi>C</mi>-            </mrow>-            <mo>+</mo>-            <mrow>-              <mi>∠</mi>-              <mn>1</mn>-            </mrow>-          </mrow>-          <mo>=</mo>-          <mrow>-            <mi>▵</mi>-            <mi>a</mi>-            <mi>b</mi>-            <mi>c</mi>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>y</mi>-          <mo>=</mo>-          <mrow>-            <msup>-              <mi>e</mi>-              <mrow>-                <mo>−</mo>-                <mrow>-                  <mo>∫</mo>-                  <mrow>-                    <mi>P</mi>-                    <mo>&#8290;</mo>-                    <mrow>-                      <mo>ⅆ</mo>-                      <mi>x</mi>-                    </mrow>-                  </mrow>-                </mrow>-              </mrow>-            </msup>-            <mo>&#8290;</mo>-            <mrow>-              <mo stretchy="true" form="prefix">[</mo>-              <mrow>-                <mrow>-                  <mo>∫</mo>-                  <mrow>-                    <msup>-                      <mi>e</mi>-                      <mrow>-                        <mo>∫</mo>-                        <mrow>-                          <mi>P</mi>-                          <mo>&#8290;</mo>-                          <mrow>-                            <mo>ⅆ</mo>-                            <mi>x</mi>-                          </mrow>-                        </mrow>-                      </mrow>-                    </msup>-                    <mo>&#8290;</mo>-                    <mi>Q</mi>-                    <mo>&#8290;</mo>-                    <mrow>-                      <mo>ⅆ</mo>-                      <mi>x</mi>-                    </mrow>-                  </mrow>-                </mrow>-                <mo>+</mo>-                <mi>c</mi>-              </mrow>-              <mo stretchy="true" form="postfix">]</mo>-            </mrow>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mrow>-            <mn>1</mn>-            <mo>+</mo>-            <msup>-              <mi>y</mi>-              <mn>3</mn>-            </msup>-          </mrow>-        </mrow>-      </mtd>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mo>=</mo>-          <mrow>-            <mn>1</mn>-            <mo>+</mo>-            <mi>y</mi>-          </mrow>-        </mrow>-      </mtd>-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mo>$</mo>-            <mn>1.00</mn>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>25</mn>-            <mo>¢</mo>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>3</mn>-            <mo>£</mo>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>2.45</mn>-            <mo>¤</mo>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>0.7</mn>-            <mo>¥</mo>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mi>a</mi>-            <mo>₠</mo>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>20</mn>-            <mo>₣</mo>-          </mrow>-          <mo>+</mo>-          <mrow>-            <mn>30</mn>-            <mo>₤</mo>-          </mrow>-          <mo>−</mo>-          <mrow>-            <mn>4.56</mn>-            <mo>₧</mo>-          </mrow>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mrow>-                    <mn>2</mn>-                    <mo>&#8290;</mo>-                    <mi>x</mi>-                  </mrow>-                  <mo>+</mo>-                  <mi>y</mi>-                </mrow>-                <mo>=</mo>-                <mn>3</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mrow>-                    <mn>3</mn>-                    <mo>&#8290;</mo>-                    <mi>x</mi>-                  </mrow>-                  <mo>−</mo>-                  <mrow>-                    <mn>4</mn>-                    <mo>&#8290;</mo>-                    <mi>y</mi>-                  </mrow>-                </mrow>-                <mo>=</mo>-                <mn>5</mn>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mrow>-                  <mi>a</mi>-                  <mo>+</mo>-                  <mi>b</mi>-                </mrow>-                <mo>=</mo>-                <mrow>-                  <mi>c</mi>-                  <mo>+</mo>-                  <mn>12345</mn>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mtext mathvariant="normal">Unrestricted</mtext>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">   </mtext>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">Symmetric</mtext>-            </mtd>-            <mtd>-              <mspace width="1.0em" />-            </mtd>-            <mtd>-              <mtext mathvariant="normal">Antisymmetric</mtext>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">  </mtext>-            </mtd>-            <mtd>-              <mtext mathvariant="normal">Triangular</mtext>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>a</mi>-          <mo>≠</mo>-          <mi>b</mi>-          <mo>≠</mo>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>c</mi>-          <mo>≮</mo>-          <mi>d</mi>-          <mo>≮</mo>-          <mi>y</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>e</mi>-          <mo>≯</mo>-          <mi>f</mi>-          <mo>≯</mo>-          <mn>11</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>g</mi>-          <mo>∉</mo>-          <mi>h</mi>-          <mo>∉</mo>-          <mi>Z</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>k</mi>-          <mo>≁</mo>-          <mi>l</mi>-          <mo>≁</mo>-          <mn>3</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mrow>-            <mi>A</mi>-            <mo>⊄</mo>-            <mi>B</mi>-          </mrow>-          <mo>⊂</mo>-          <mi>C</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>A</mi>-          <mo>⊈</mo>-          <mi>B</mi>-          <mo>⊈</mo>-          <mi>C</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mn>10</mn>-          <mo>≢</mo>-          <mn>11</mn>-          <mo>≡</mo>-          <mn>12</mn>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>x</mi>-          <mi>≰⃥</mi>-          <mi>y</mi>-          <mi>≰⃥</mi>-          <mi>z</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mover>-            <mi>lim</mi>-            <mo accent="true">¯</mo>-          </mover>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <munder>-            <mi>lim</mi>-            <mo accent="true">̲</mo>-          </munder>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <munder>-            <mi>lim</mi>-            <mo accent="true">→</mo>-          </munder>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <munder>-            <mi>lim</mi>-            <mo accent="true">←</mo>-          </munder>-          <mi>x</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mtable>-          <mtr>-            <mtd>-              <mrow>-                <mi>x</mi>-                <mo>=</mo>-                <mrow>-                  <mi>y</mi>-                  <mo>+</mo>-                  <mi>z</mi>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-          <mtr>-            <mtd>-              <mrow>-                <mo>=</mo>-                <mrow>-                  <mi>k</mi>-                  <mo>+</mo>-                  <mi>m</mi>-                </mrow>-              </mrow>-            </mtd>-          </mtr>-        </mtable>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mtable>-            <mtr>-              <mtd columnalign="left">-                <mrow>-                  <mtext mathvariant="normal">College Algebra </mtext>-                  <mtext mathvariant="normal">Second Edition</mtext>-                </mrow>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="left">-                <mrow>-                  <mtext mathvariant="normal">James Stewart </mtext>-                  <mtext mathvariant="normal">McMaster Universitiy</mtext>-                </mrow>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="left">-                <mrow>-                  <mtext mathvariant="normal">Lothar Redlin</mtext>-                  <mtext mathvariant="normal"> Pennsylvania State University</mtext>-                </mrow>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="left">-                <mrow>-                  <mtext mathvariant="normal">Saleem Watson</mtext>-                  <mtext mathvariant="normal"> California State University, Long Beach</mtext>-                </mrow>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="left">-                <mtext mathvariant="normal">Copyright 1996, ISBN 0 534-33983-2</mtext>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="left">-                <mtext mathvariant="normal">Brooks/Cole Publishing Company</mtext>-              </mtd>-            </mtr>-            <mtr>-              <mtd columnalign="left">-                <mtext mathvariant="normal">An International Thomson Publishing Company</mtext>-              </mtd>-            </mtr>-          </mtable>-          <mspace width="0.278em" />-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">{</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">↑</mo>-          <munderover>-            <mo>∑</mo>-            <mn>1</mn>-            <mn>2</mn>-          </munderover>-          <mo stretchy="true" form="postfix">}</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">〈</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">|</mo>-          <munderover>-            <mo>∑</mo>-            <mn>1</mn>-            <mn>2</mn>-          </munderover>-          <mo stretchy="true" form="postfix">〉</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">⌈</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">|</mo>-          <munderover>-            <mo>∑</mo>-            <mn>1</mn>-            <mn>2</mn>-          </munderover>-          <mo stretchy="true" form="postfix">⌉</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">⇓</mo>-          <mrow>-            <mfrac>-              <mfrac>-                <mn>1</mn>-                <mn>2</mn>-              </mfrac>-              <mfrac>-                <mn>1</mn>-                <mn>2</mn>-              </mfrac>-            </mfrac>-            <mo stretchy="true" form="infix">↕</mo>-            <munderover>-              <mo>∑</mo>-              <mn>1</mn>-              <mn>2</mn>-            </munderover>-          </mrow>-          <mo stretchy="true" form="infix">⇓</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">[</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">]</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">)</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">{</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">}</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">〈</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">〉</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">⌊</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">⌈</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">⌉</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">↑</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">↑</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">↓</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">↓</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">↕</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">↕</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">⇑</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">⇑</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">⇓</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">⇓</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">⇕</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">⇕</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-          <mfrac>-            <mn>1</mn>-            <mn>2</mn>-          </mfrac>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">\arrowvert</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">\arrowvert</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">\Arrowvert</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">\Arrowvert</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">\bracevert</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">\bracevert</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">|</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">|</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">|</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">|</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">|</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">|</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">∥</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">∥</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">∥</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">∥</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">/</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">/</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="infix">\</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="infix">\</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">⎱</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">⎰</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">\lgroup</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">\rgroup</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">⌞</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">⌟</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">⌜</mo>-          <mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-            <mfrac>-              <mn>1</mn>-              <mn>2</mn>-            </mfrac>-          </mfrac>-          <mo stretchy="true" form="postfix">⌝</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mi>A</mi>-          <munderover>-            <mo accent="true">←</mo>-            <mspace width="0.056em" />-            <mrow>-              <mi>n</mi>-              <mo>+</mo>-              <mi>μ</mi>-              <mo>−</mo>-              <mn>1</mn>-            </mrow>-          </munderover>-          <mi>B</mi>-          <munderover>-            <mo accent="true">→</mo>-            <mi>T</mi>-            <mrow>-              <mi>n</mi>-              <mo>±</mo>-              <mi>i</mi>-              <mo>−</mo>-              <mn>1</mn>-            </mrow>-          </munderover>-          <mi>C</mi>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mn>1</mn>-          <mrow>-            <msqrt>-              <mn>2</mn>-            </msqrt>-            <mo>+</mo>-            <mfrac>-              <mn>1</mn>-              <mrow>-                <msqrt>-                  <mn>3</mn>-                </msqrt>-                <mo>+</mo>-                <mfrac>-                  <mn>1</mn>-                  <mrow>-                    <msqrt>-                      <mn>4</mn>-                    </msqrt>-                    <mo>+</mo>-                    <mfrac>-                      <mn>1</mn>-                      <mrow>-                        <msqrt>-                          <mn>5</mn>-                        </msqrt>-                        <mo>+</mo>-                        <mfrac>-                          <mn>1</mn>-                          <mrow>-                            <msqrt>-                              <mn>6</mn>-                            </msqrt>-                            <mo>+</mo>-                            <mi>…</mi>-                          </mrow>-                        </mfrac>-                      </mrow>-                    </mfrac>-                  </mrow>-                </mfrac>-              </mrow>-            </mfrac>-          </mrow>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mn>1</mn>-          <mrow>-            <msqrt>-              <mn>2</mn>-            </msqrt>-            <mo>+</mo>-            <mfrac>-              <mn>1</mn>-              <mrow>-                <msqrt>-                  <mn>3</mn>-                </msqrt>-                <mo>+</mo>-                <mfrac>-                  <mn>1</mn>-                  <mrow>-                    <msqrt>-                      <mn>4</mn>-                    </msqrt>-                    <mo>+</mo>-                    <mfrac>-                      <mn>1</mn>-                      <mrow>-                        <msqrt>-                          <mn>5</mn>-                        </msqrt>-                        <mo>+</mo>-                        <mfrac>-                          <mn>1</mn>-                          <mrow>-                            <msqrt>-                              <mn>6</mn>-                            </msqrt>-                            <mo>+</mo>-                            <mi>…</mi>-                          </mrow>-                        </mfrac>-                      </mrow>-                    </mfrac>-                  </mrow>-                </mfrac>-              </mrow>-            </mfrac>-          </mrow>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mrow>-          <mo stretchy="true" form="prefix">(</mo>-          <mfrac>-            <mrow>-              <mi>sin</mi>-              <mo>&#8289;</mo>-              <mi>θ</mi>-            </mrow>-            <mi>M</mi>-          </mfrac>-          <mo stretchy="true" form="postfix">⌋</mo>-        </mrow>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>-            <mi>θ</mi>-          </mrow>-          <mi>M</mi>-        </mfrac>-      </mtd>-      <mtd />-    </mtr>-    <mtr>-      <mtd>-        <mfrac>-          <mrow>-            <mi>sin</mi>-            <mo>&#8289;</mo>+          <mi>&#8290;</mi>+          <mrow>+            <mo>∑</mo>+            <mrow>+              <mi>a</mi>+              <mi>&#8290;</mi>+              <mi>b</mi>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <msup>+          <mi>x</mi>+          <mrow>+            <mi>′</mi>+            <mn>3</mn>+          </mrow>+        </msup>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <msup>+                <mi>f</mi>+                <mi>′</mi>+              </msup>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mi>x</mi>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>cos</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mn>1</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mi>f</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mi>z</mi>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mo>=</mo>+            <mrow>+              <munderover>+                <mo>∑</mo>+                <mrow>+                  <mi>n</mi>+                  <mo>=</mo>+                  <mn>0</mn>+                </mrow>+                <mi>∞</mi>+              </munderover>+              <mrow>+                <msub>+                  <mi>a</mi>+                  <mi>n</mi>+                </msub>+                <mi>&#8290;</mi>+                <msup>+                  <mi>z</mi>+                  <mi>n</mi>+                </msup>+              </mrow>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">, </mtext>+          <mrow>+            <mrow>+              <mrow>+                <mo stretchy="true" form="prefix">|</mo>+                <mi>z</mi>+                <mo stretchy="true" form="postfix">|</mo>+              </mrow>+              <mo>&lt;</mo>+              <mi>R</mi>+            </mrow>+            <mi>&#8203;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mi>R</mi>+                <mo>≠</mo>+                <mn>0</mn>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">∫</mo>+            <msub>+              <mrow />+              <mi>C</mi>+            </msub>+            <mrow>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <munderover>+                    <mo>∑</mo>+                    <mrow>+                      <mi>n</mi>+                      <mo>=</mo>+                      <mn>0</mn>+                    </mrow>+                    <mi>∞</mi>+                  </munderover>+                  <mrow>+                    <msub>+                      <mi>a</mi>+                      <mi>n</mi>+                    </msub>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>z</mi>+                      <mi>n</mi>+                    </msup>+                  </mrow>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>z</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <munderover>+              <mo>∑</mo>+              <mrow>+                <mi>n</mi>+                <mo>=</mo>+                <mn>0</mn>+              </mrow>+              <mi>∞</mi>+            </munderover>+            <mrow>+              <msub>+                <mi>a</mi>+                <mi>n</mi>+              </msub>+              <mi>&#8290;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">∫</mo>+                <msub>+                  <mrow />+                  <mi>C</mi>+                </msub>+                <mrow>+                  <msup>+                    <mi>z</mi>+                    <mi>n</mi>+                  </msup>+                  <mi>&#8290;</mi>+                  <mrow>+                    <mi>ⅆ</mi>+                    <mi>z</mi>+                  </mrow>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mi>n</mi>+                <mo accent="true">→</mo>+                <mi>∞</mi>+              </mrow>+            </munder>+            <mrow>+              <mo stretchy="true" form="prefix">|</mo>+              <mrow>+                <mo stretchy="true" form="prefix">∫</mo>+                <msub>+                  <mrow />+                  <mi>C</mi>+                </msub>+                <mrow>+                  <mrow>+                    <mo stretchy="true" form="prefix">[</mo>+                    <mrow>+                      <mrow>+                        <mi>f</mi>+                        <mi>&#8289;</mi>+                        <mrow>+                          <mo stretchy="false" form="prefix">(</mo>+                          <mi>z</mi>+                          <mo stretchy="false" form="postfix">)</mo>+                        </mrow>+                      </mrow>+                      <mo>−</mo>+                      <mrow>+                        <munderover>+                          <mo>∑</mo>+                          <mrow>+                            <mi>k</mi>+                            <mo>=</mo>+                            <mn>0</mn>+                          </mrow>+                          <mi>n</mi>+                        </munderover>+                        <mrow>+                          <msub>+                            <mi>a</mi>+                            <mi>k</mi>+                          </msub>+                          <mi>&#8290;</mi>+                          <msup>+                            <mi>z</mi>+                            <mi>k</mi>+                          </msup>+                        </mrow>+                      </mrow>+                    </mrow>+                    <mo stretchy="true" form="postfix">]</mo>+                  </mrow>+                  <mi>&#8290;</mi>+                  <mrow>+                    <mi>ⅆ</mi>+                    <mi>z</mi>+                  </mrow>+                </mrow>+              </mrow>+              <mo stretchy="true" form="postfix">|</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mn>0</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>n</mi>+            <mo>≥</mo>+            <mrow>+              <mi>N</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mi>ε</mi>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mrow>+          <mo stretchy="true" form="infix">⇒</mo>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">|</mo>+              <mrow>+                <mrow>+                  <mi>f</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mi>z</mi>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mo>−</mo>+                <mrow>+                  <munderover>+                    <mo>∑</mo>+                    <mrow>+                      <mi>k</mi>+                      <mo>=</mo>+                      <mn>0</mn>+                    </mrow>+                    <mi>n</mi>+                  </munderover>+                  <mrow>+                    <msub>+                      <mi>a</mi>+                      <mi>k</mi>+                    </msub>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>z</mi>+                      <mi>k</mi>+                    </msup>+                  </mrow>+                </mrow>+              </mrow>+              <mo stretchy="true" form="postfix">|</mo>+            </mrow>+            <mo>&lt;</mo>+            <mi>ε</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Bq</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Ci</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> amol</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Emol</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> fmol</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Gmol</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kmol</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Mmol</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μmol</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mmol</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mol</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nmol</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Pmol</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> pmol</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Tmol</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> acre</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> hectare</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <msup>+              <mtext mathvariant="normal"> ft</mtext>+              <mn>2</mn>+            </msup>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <msup>+              <mtext mathvariant="normal"> in</mtext>+              <mn>2</mn>+            </msup>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <msup>+              <mtext mathvariant="normal"> m</mtext>+              <mn>2</mn>+            </msup>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> A</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kA</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μA</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mA</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nA</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> F</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μF</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mF</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nF</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> pF</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> C</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>1.0</mn>+            <mtext mathvariant="normal"> m/s/s</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>0.1</mn>+            <mrow>+              <mtext mathvariant="normal"> m</mtext>+              <mi>/</mi>+              <msup>+                <mtext mathvariant="normal">s</mtext>+                <mn>2</mn>+              </msup>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kS</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μS</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mS</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> S</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kV</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MV</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μV</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mV</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nV</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> pV</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> V</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> GΩ</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kΩ</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MΩ</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mΩ</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Ω</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Btu</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> cal</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> eV</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> erg</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> GeV</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> GJ</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> J</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kcal</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kJ</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MeV</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MJ</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μJ</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mJ</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nJ</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> dyn</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kN</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MN</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μN</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mN</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> N</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> ozf</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> lbf</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> EHz</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> GHz</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Hz</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kHz</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MHz</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> PHz</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> THz</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> fc</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> lx</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> phot</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Å</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> am</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> cm</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> dm</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> fm</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> ft</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> in</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> km</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> m</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μm</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mi</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mm</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nm</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> pm</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mn>10</mn>+          <mtext mathvariant="normal"> sb</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mn>10</mn>+          <mtext mathvariant="normal"> lm</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mn>10</mn>+          <mtext mathvariant="normal"> cd</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Mx</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μWb</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mWb</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nWb</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Wb</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> G</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μT</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mT</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nT</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> pT</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> T</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> H</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μH</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mH</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> u</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> cg</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> dg</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> g</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kg</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μg</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mg</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> lb</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> slug</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> °</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μrad</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mrad</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <msup>+              <mspace width="0.0em" />+              <mtext mathvariant="normal">′</mtext>+            </msup>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> rad</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <msup>+              <mspace width="0.0em" />+              <mtext mathvariant="normal">′′</mtext>+            </msup>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> GW</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> hp</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kW</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MW</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μW</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mW</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> nW</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> W</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> atm</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> bar</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kbar</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> kPa</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> MPa</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μPa</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mbar</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> mmHg</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> Pa</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> torr</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mn>10</mn>+          <mtext mathvariant="normal"> sr</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> °C</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> °F</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> K</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> as</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> d</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> fs</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> h</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> μs</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> ms</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> min</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> ns</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> ps</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> s</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> y</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <msup>+              <mtext mathvariant="normal"> ft</mtext>+              <mn>3</mn>+            </msup>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <msup>+              <mtext mathvariant="normal"> in</mtext>+              <mn>3</mn>+            </msup>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <msup>+              <mtext mathvariant="normal"> m</mtext>+              <mn>3</mn>+            </msup>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> gal</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> l</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> ml</mtext>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> pint</mtext>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>10</mn>+            <mtext mathvariant="normal"> qt</mtext>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mfrac>+            <mn>1</mn>+            <mrow>+              <mi>x</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mi>y</mi>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mfrac>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mrow>+                  <mo>−</mo>+                  <mrow>+                    <mo>∫</mo>+                    <mrow>+                      <msup>+                        <mi>e</mi>+                        <mrow>+                          <mrow>+                            <mo>−</mo>+                            <mfrac>+                              <mn>1</mn>+                              <mn>2</mn>+                            </mfrac>+                          </mrow>+                          <mi>&#8290;</mi>+                          <msup>+                            <mi>y</mi>+                            <mn>2</mn>+                          </msup>+                        </mrow>+                      </msup>+                      <mi>&#8290;</mi>+                      <mrow>+                        <mi>sin</mi>+                        <mi>&#8289;</mi>+                        <mi>y</mi>+                      </mrow>+                      <mi>&#8290;</mi>+                      <mrow>+                        <mi>ⅆ</mi>+                        <mi>y</mi>+                      </mrow>+                    </mrow>+                  </mrow>+                </mrow>+                <mo>+</mo>+                <msub>+                  <mi>C</mi>+                  <mn>1</mn>+                </msub>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mi>&#8290;</mi>+            <msup>+              <mi>e</mi>+              <mrow>+                <mfrac>+                  <mn>1</mn>+                  <mn>2</mn>+                </mfrac>+                <mi>&#8290;</mi>+                <msup>+                  <mi>y</mi>+                  <mn>2</mn>+                </msup>+              </mrow>+            </msup>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <msub>+                <mi>ⅅ</mi>+                <mi>x</mi>+              </msub>+              <mi>y</mi>+            </mrow>+            <mo>−</mo>+            <mi>y</mi>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>x</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">[</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">]</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">}</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">〈</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">〉</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="prefix">⌊</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">⌋</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="prefix">⌈</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">⌉</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="infix">↑</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="infix">↑</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="infix">↓</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="infix">↓</mo>+          </mrow>+          <mi>&#8290;</mi>+          <mrow>+            <mo stretchy="true" form="infix">↕</mo>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mo stretchy="true" form="infix">↕</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+          <mi>&#8290;</mi>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+          <mi>&#8290;</mi>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+          <mi>&#8290;</mi>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+          <mi>&#8290;</mi>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+          <mi>&#8290;</mi>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+          <mi>&#8290;</mi>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo>−</mo>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mi>a</mi>+                <mo>−</mo>+                <mi>b</mi>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>b</mi>+            <mo>−</mo>+            <mi>a</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mfrac>+              <mn>2</mn>+              <mn>5</mn>+            </mfrac>+            <mo>+</mo>+            <mfrac>+              <mn>3</mn>+              <mn>7</mn>+            </mfrac>+          </mrow>+          <mo>=</mo>+          <mfrac>+            <mrow>+              <mrow>+                <mn>2</mn>+                <mo>⋅</mo>+                <mn>7</mn>+              </mrow>+              <mo>+</mo>+              <mrow>+                <mn>3</mn>+                <mo>⋅</mo>+                <mn>5</mn>+              </mrow>+            </mrow>+            <mn>35</mn>+          </mfrac>+          <mo>=</mo>+          <mfrac>+            <mn>29</mn>+            <mn>35</mn>+          </mfrac>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">|</mo>+            <mi>a</mi>+            <mo stretchy="true" form="postfix">|</mo>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mi>a</mi>+                </mtd>+                <mtd>+                  <mtext mathvariant="normal">if</mtext>+                </mtd>+                <mtd>+                  <mrow>+                    <mi>a</mi>+                    <mo>≥</mo>+                    <mn>0</mn>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mrow>+                    <mo>−</mo>+                    <mi>a</mi>+                  </mrow>+                </mtd>+                <mtd>+                  <mtext mathvariant="normal">if</mtext>+                </mtd>+                <mtd>+                  <mrow>+                    <mi>a</mi>+                    <mo>&lt;</mo>+                    <mn>0</mn>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <msup>+            <mi>a</mi>+            <mi>n</mi>+          </msup>+          <mo>=</mo>+          <munder>+            <munder>+              <mrow>+                <mi>a</mi>+                <mo>⋅</mo>+                <mi>a</mi>+                <mo>⋅</mo>+                <mi>⋯</mi>+                <mo>⋅</mo>+                <mi>a</mi>+              </mrow>+              <mo accent="true">︸</mo>+            </munder>+            <mrow>+              <mi>n</mi>+              <mtext mathvariant="normal"> factors</mtext>+            </mrow>+          </munder>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <msup>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mfrac>+                <mi>a</mi>+                <mi>b</mi>+              </mfrac>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mrow>+              <mo>−</mo>+              <mi>n</mi>+            </mrow>+          </msup>+          <mo>=</mo>+          <msup>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mfrac>+                <mi>b</mi>+                <mi>a</mi>+              </mfrac>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mi>n</mi>+          </msup>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mroot>+              <mi>a</mi>+              <mi>n</mi>+            </mroot>+            <mo>=</mo>+            <mi>b</mi>+          </mrow>+          <mtext mathvariant="normal">  means </mtext>+          <mrow>+            <msup>+              <mi>b</mi>+              <mi>n</mi>+            </msup>+            <mo>=</mo>+            <mi>a</mi>+          </mrow>+          <mtext mathvariant="normal">.</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mroot>+            <mfrac>+              <mn>16</mn>+              <mn>81</mn>+            </mfrac>+            <mn>4</mn>+          </mroot>+          <mo>=</mo>+          <mfrac>+            <mroot>+              <mn>16</mn>+              <mn>4</mn>+            </mroot>+            <mroot>+              <mn>81</mn>+              <mn>4</mn>+            </mroot>+          </mfrac>+          <mo>=</mo>+          <mfrac>+            <mn>2</mn>+            <mn>3</mn>+          </mfrac>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">{</mo>+          <mrow>+            <mi>x</mi>+            <mo>∣</mo>+            <mrow>+              <mrow>+                <mi>x</mi>+                <mo>≠</mo>+                <mn>0</mn>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mi>x</mi>+                <mo>≠</mo>+                <mn>1</mn>+              </mrow>+            </mrow>+          </mrow>+          <mo stretchy="true" form="postfix">}</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msub>+              <mi>a</mi>+              <mi>n</mi>+            </msub>+            <mi>&#8290;</mi>+            <msup>+              <mi>x</mi>+              <mi>n</mi>+            </msup>+          </mrow>+          <mo>+</mo>+          <mrow>+            <msub>+              <mi>a</mi>+              <mrow>+                <mi>n</mi>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+            </msub>+            <mi>&#8290;</mi>+            <msup>+              <mi>x</mi>+              <mrow>+                <mi>n</mi>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+            </msup>+          </mrow>+          <mo>+</mo>+          <mi>⋯</mi>+          <mo>+</mo>+          <mrow>+            <msub>+              <mi>a</mi>+              <mn>1</mn>+            </msub>+            <mi>&#8290;</mi>+            <mi>x</mi>+          </mrow>+          <mo>+</mo>+          <msub>+            <mi>a</mi>+            <mn>0</mn>+          </msub>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msup>+              <mi>a</mi>+              <mn>3</mn>+            </msup>+            <mo>−</mo>+            <msup>+              <mi>b</mi>+              <mn>3</mn>+            </msup>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mi>a</mi>+                <mo>−</mo>+                <mi>b</mi>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <msup>+                  <mi>a</mi>+                  <mn>2</mn>+                </msup>+                <mo>+</mo>+                <mrow>+                  <mi>a</mi>+                  <mi>&#8290;</mi>+                  <mi>b</mi>+                </mrow>+                <mo>+</mo>+                <msup>+                  <mi>b</mi>+                  <mn>2</mn>+                </msup>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <msup>+          <mrow>+            <mo stretchy="false" form="prefix">(</mo>+            <mrow>+              <mi>x</mi>+              <mo>+</mo>+              <mi>y</mi>+            </mrow>+            <mo stretchy="false" form="postfix">)</mo>+          </mrow>+          <mn>2</mn>+        </msup>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>H</mi>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mrow>+              <mrow>+                <mrow>+                  <mo stretchy="true" form="prefix">(</mo>+                  <mtable>+                    <mtr>+                      <mtd>+                        <mi>a</mi>+                      </mtd>+                      <mtd>+                        <mi>b</mi>+                      </mtd>+                    </mtr>+                    <mtr>+                      <mtd>+                        <mi>c</mi>+                      </mtd>+                      <mtd>+                        <mi>d</mi>+                      </mtd>+                    </mtr>+                  </mtable>+                  <mo stretchy="true" form="postfix">)</mo>+                </mrow>+                <mo>∈</mo>+                <mi>G</mi>+              </mrow>+              <mo>∣</mo>+              <mrow>+                <mrow>+                  <mrow>+                    <mi>a</mi>+                    <mi>&#8290;</mi>+                    <mi>d</mi>+                  </mrow>+                  <mo>−</mo>+                  <mrow>+                    <mi>b</mi>+                    <mi>&#8290;</mi>+                    <mi>c</mi>+                  </mrow>+                </mrow>+                <mo>=</mo>+                <mn>1</mn>+              </mrow>+            </mrow>+            <mo stretchy="true" form="postfix">}</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mo stretchy="false" form="prefix">|</mo>+              <mi>x</mi>+              <mo stretchy="false" form="postfix">|</mo>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mo stretchy="false" form="prefix">||</mo>+              <mi>y</mi>+              <mo stretchy="false" form="postfix">||</mo>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mo stretchy="false" form="prefix">{</mo>+              <mi>z</mi>+              <mo stretchy="false" form="postfix">}</mo>+            </mrow>+            <mo>−</mo>+            <mrow>+              <mo stretchy="false" form="prefix">[</mo>+              <mrow>+                <mi>a</mi>+                <mi>&#8290;</mi>+                <mi>c</mi>+              </mrow>+              <mo stretchy="false" form="postfix">]</mo>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mi>b</mi>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="false" form="prefix">[</mo>+            <mrow>+              <mi>a</mi>+              <mo>,</mo>+              <mi>b</mi>+            </mrow>+            <mo stretchy="false" form="postfix">]</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mn>1</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mn>1</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mn>1</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mn>1</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">[</mo>+            <mrow>+              <mrow>+                <mo>−</mo>+                <mfrac>+                  <mn>10</mn>+                  <mn>3</mn>+                </mfrac>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mo>−</mo>+                <mfrac>+                  <mn>7</mn>+                  <mn>3</mn>+                </mfrac>+              </mrow>+            </mrow>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+          <mo>∪</mo>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mrow>+              <mrow>+                <mo>−</mo>+                <mfrac>+                  <mn>7</mn>+                  <mn>3</mn>+                </mfrac>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mo>−</mo>+                <mfrac>+                  <mn>4</mn>+                  <mn>3</mn>+                </mfrac>+              </mrow>+            </mrow>+            <mo stretchy="true" form="postfix">]</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mi>A</mi>+              <mi>&#8290;</mi>+              <mfrac>+                <mrow>+                  <mi>∂</mi>+                  <mi>u</mi>+                </mrow>+                <mrow>+                  <mi>∂</mi>+                  <mi>x</mi>+                </mrow>+              </mfrac>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mi>B</mi>+              <mi>&#8290;</mi>+              <mfrac>+                <mrow>+                  <mi>∂</mi>+                  <mi>u</mi>+                </mrow>+                <mrow>+                  <mi>∂</mi>+                  <mi>y</mi>+                </mrow>+              </mfrac>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mi>C</mi>+              <mi>&#8290;</mi>+              <mi>u</mi>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mi>E</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <munderover>+            <mo>∑</mo>+            <mspace width="0.0em" />+            <mspace width="0.0em" />+          </munderover>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <munderover>+            <mo>∑</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mrow>+                    <mn>1</mn>+                    <mo>&lt;</mo>+                    <mi>i</mi>+                    <mo>&lt;</mo>+                    <mn>10</mn>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mrow>+                    <mn>1</mn>+                    <mo>&lt;</mo>+                    <mi>j</mi>+                    <mo>&lt;</mo>+                    <mn>10</mn>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+            <mspace width="0.0em" />+          </munderover>+          <msup>+            <mn>2</mn>+            <mrow>+              <mi>i</mi>+              <mo>+</mo>+              <mi>j</mi>+            </mrow>+          </msup>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <msubsup>+          <mi>Γ</mi>+          <msubsup>+            <mn>1</mn>+            <msup>+              <mspace width="0.056em" />+              <mtable>+                <mtr>+                  <mtd>+                    <msubsup>+                      <mn>2</mn>+                      <msup>+                        <mspace width="0.056em" />+                        <mtable>+                          <mtr>+                            <mtd>+                              <mn>3</mn>+                            </mtd>+                          </mtr>+                          <mtr>+                            <mtd>+                              <mn>4</mn>+                            </mtd>+                          </mtr>+                        </mtable>+                      </msup>+                      <mspace width="0.0em" />+                    </msubsup>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <msubsup>+                      <mn>5</mn>+                      <msup>+                        <mspace width="0.056em" />+                        <mtable>+                          <mtr>+                            <mtd>+                              <mn>6</mn>+                            </mtd>+                          </mtr>+                          <mtr>+                            <mtd>+                              <mn>7</mn>+                            </mtd>+                          </mtr>+                        </mtable>+                      </msup>+                      <mspace width="0.0em" />+                    </msubsup>+                  </mtd>+                </mtr>+              </mtable>+            </msup>+            <mspace width="0.0em" />+          </msubsup>+          <msup>+            <mn>1</mn>+            <mtable>+              <mtr>+                <mtd>+                  <msup>+                    <mn>5</mn>+                    <mtable>+                      <mtr>+                        <mtd>+                          <mn>7</mn>+                        </mtd>+                      </mtr>+                      <mtr>+                        <mtd>+                          <mn>6</mn>+                        </mtd>+                      </mtr>+                    </mtable>+                  </msup>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <msup>+                    <mn>2</mn>+                    <mtable>+                      <mtr>+                        <mtd>+                          <mn>4</mn>+                        </mtd>+                      </mtr>+                      <mtr>+                        <mtd>+                          <mn>3</mn>+                        </mtd>+                      </mtr>+                    </mtable>+                  </msup>+                </mtd>+              </mtr>+            </mtable>+          </msup>+        </msubsup>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>y</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mi>x</mi>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mfrac>+            <mrow>+              <mrow>+                <mi>x</mi>+                <mi>&#8290;</mi>+                <msup>+                  <mi>e</mi>+                  <mi>x</mi>+                </msup>+              </mrow>+              <mo>−</mo>+              <msup>+                <mi>e</mi>+                <mi>x</mi>+              </msup>+              <mo>+</mo>+              <mn>2</mn>+            </mrow>+            <msup>+              <mi>e</mi>+              <mi>x</mi>+            </msup>+          </mfrac>+          <mo>=</mo>+          <mrow>+            <mi>x</mi>+            <mo>−</mo>+            <mn>1</mn>+            <mo>+</mo>+            <mfrac>+              <mn>2</mn>+              <msup>+                <mi>e</mi>+                <mi>x</mi>+              </msup>+            </mfrac>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd columnalign="right">+              <mrow>+                <mrow>+                  <mrow>+                    <msub>+                      <mi>ⅅ</mi>+                      <mrow>+                        <mi>x</mi>+                        <mi>&#8203;</mi>+                        <mi>x</mi>+                      </mrow>+                    </msub>+                    <mi>y</mi>+                  </mrow>+                  <mo>−</mo>+                  <mi>y</mi>+                </mrow>+                <mo>=</mo>+                <mn>0</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd columnalign="right">+              <mrow>+                <mrow>+                  <mi>y</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mn>0</mn>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mo>=</mo>+                <mn>1</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd columnalign="right">+              <mrow>+                <mrow>+                  <msup>+                    <mi>y</mi>+                    <mi>′</mi>+                  </msup>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <mn>0</mn>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mo>=</mo>+                <mn>0</mn>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>y</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mi>x</mi>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mfrac>+                <mn>1</mn>+                <mn>3</mn>+              </mfrac>+              <mi>&#8290;</mi>+              <msup>+                <mi>e</mi>+                <mrow>+                  <mrow>+                    <mo>−</mo>+                    <mroot>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mo>−</mo>+                          <mn>1</mn>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                      <mn>3</mn>+                    </mroot>+                  </mrow>+                  <mi>&#8290;</mi>+                  <mi>x</mi>+                </mrow>+              </msup>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mfrac>+                <mn>2</mn>+                <mn>3</mn>+              </mfrac>+              <mi>&#8290;</mi>+              <msup>+                <mi>e</mi>+                <mrow>+                  <mfrac>+                    <mn>1</mn>+                    <mn>2</mn>+                  </mfrac>+                  <mi>&#8290;</mi>+                  <mroot>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mo>−</mo>+                        <mn>1</mn>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                    <mn>3</mn>+                  </mroot>+                  <mi>&#8290;</mi>+                  <mi>x</mi>+                </mrow>+              </msup>+              <mi>&#8290;</mi>+              <mrow>+                <mi>cos</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mfrac>+                    <mn>1</mn>+                    <mn>2</mn>+                  </mfrac>+                  <mi>&#8290;</mi>+                  <msqrt>+                    <mn>3</mn>+                  </msqrt>+                  <mi>&#8290;</mi>+                  <mroot>+                    <mrow>+                      <mo stretchy="true" form="prefix">(</mo>+                      <mrow>+                        <mo>−</mo>+                        <mn>1</mn>+                      </mrow>+                      <mo stretchy="true" form="postfix">)</mo>+                    </mrow>+                    <mn>3</mn>+                  </mroot>+                  <mi>&#8290;</mi>+                  <mi>x</mi>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>y</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mi>t</mi>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mn>2</mn>+            <mi>&#8290;</mi>+            <mrow>+              <mi>tan</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <mi>t</mi>+                  </mrow>+                  <mo>−</mo>+                  <mrow>+                    <mfrac>+                      <mn>1</mn>+                      <mn>4</mn>+                    </mfrac>+                    <mi>&#8290;</mi>+                    <mi>π</mi>+                  </mrow>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>ℱ</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mtable>+                  <mtr>+                    <mtd>+                      <msup>+                        <mi>e</mi>+                        <mrow>+                          <mn>2</mn>+                          <mi>&#8290;</mi>+                          <mi>π</mi>+                          <mi>&#8290;</mi>+                          <mi>i</mi>+                          <mi>&#8290;</mi>+                          <mi>x</mi>+                        </mrow>+                      </msup>+                    </mtd>+                  </mtr>+                  <mtr>+                    <mtd>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8290;</mi>+                        <mi>π</mi>+                        <mi>&#8290;</mi>+                        <mrow>+                          <mi>Dirac</mi>+                          <mi>&#8289;</mi>+                          <mrow>+                            <mo stretchy="true" form="prefix">(</mo>+                            <mrow>+                              <mi>x</mi>+                              <mo>−</mo>+                              <mrow>+                                <mn>2</mn>+                                <mi>&#8290;</mi>+                                <mi>π</mi>+                              </mrow>+                            </mrow>+                            <mo stretchy="true" form="postfix">)</mo>+                          </mrow>+                        </mrow>+                      </mrow>+                    </mtd>+                  </mtr>+                </mtable>+                <mo>,</mo>+                <mi>x</mi>+                <mo>,</mo>+                <mi>s</mi>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <mi>π</mi>+                    <mi>&#8290;</mi>+                    <mrow>+                      <mi>Dirac</mi>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <mi>s</mi>+                          <mo>−</mo>+                          <mrow>+                            <mn>2</mn>+                            <mi>&#8290;</mi>+                            <mi>π</mi>+                          </mrow>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <mi>π</mi>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>e</mi>+                      <mrow>+                        <mrow>+                          <mo>−</mo>+                          <mn>2</mn>+                        </mrow>+                        <mi>&#8290;</mi>+                        <mi>i</mi>+                        <mi>&#8290;</mi>+                        <mi>π</mi>+                        <mi>&#8290;</mi>+                        <mi>s</mi>+                      </mrow>+                    </msup>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>x</mi>+                <mo>=</mo>+                <mn>1</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mi>x</mi>+                  <mo>+</mo>+                  <mn>3</mn>+                </mrow>+                <mo>=</mo>+                <mn>123</mn>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mi>t</mi>+            </mtd>+            <mtd>+              <mi>x</mi>+            </mtd>+            <mtd>+              <mi>y</mi>+            </mtd>+            <mtd>+              <mi>z</mi>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>0</mn>+            </mtd>+            <mtd>+              <mn>1.0000</mn>+            </mtd>+            <mtd>+              <mn>1.0000</mn>+            </mtd>+            <mtd>+              <mn>1.0000</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.1</mn>+            </mtd>+            <mtd>+              <mn>1.1158</mn>+            </mtd>+            <mtd>+              <mn>1.0938</mn>+            </mtd>+            <mtd>+              <mn>.8842</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.2</mn>+            </mtd>+            <mtd>+              <mn>1.2668</mn>+            </mtd>+            <mtd>+              <mn>1.1695</mn>+            </mtd>+            <mtd>+              <mn>.7332</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.3</mn>+            </mtd>+            <mtd>+              <mn>1.4582</mn>+            </mtd>+            <mtd>+              <mn>1.2173</mn>+            </mtd>+            <mtd>+              <mn>.5418</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.4</mn>+            </mtd>+            <mtd>+              <mn>1.6953</mn>+            </mtd>+            <mtd>+              <mn>1.2253</mn>+            </mtd>+            <mtd>+              <mn>.3047</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.5</mn>+            </mtd>+            <mtd>+              <mn>1.9830</mn>+            </mtd>+            <mtd>+              <mn>1.1791</mn>+            </mtd>+            <mtd>+              <mn>.0170</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.6</mn>+            </mtd>+            <mtd>+              <mn>2.3256</mn>+            </mtd>+            <mtd>+              <mn>1.0619</mn>+            </mtd>+            <mtd>+              <mrow>+                <mo>−</mo>+                <mn>.3256</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.7</mn>+            </mtd>+            <mtd>+              <mn>2.7265</mn>+            </mtd>+            <mtd>+              <mn>.8542</mn>+            </mtd>+            <mtd>+              <mrow>+                <mo>−</mo>+                <mn>.7265</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.8</mn>+            </mtd>+            <mtd>+              <mn>3.1873</mn>+            </mtd>+            <mtd>+              <mn>.5344</mn>+            </mtd>+            <mtd>+              <mrow>+                <mo>−</mo>+                <mn>1.1873</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>.9</mn>+            </mtd>+            <mtd>+              <mn>3.7077</mn>+            </mtd>+            <mtd>+              <mn>.0777</mn>+            </mtd>+            <mtd>+              <mrow>+                <mo>−</mo>+                <mn>1.7077</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>1.0</mn>+            </mtd>+            <mtd>+              <mn>4.2842</mn>+            </mtd>+            <mtd>+              <mrow>+                <mo>−</mo>+                <mn>.5424</mn>+              </mrow>+            </mtd>+            <mtd>+              <mrow>+                <mo>−</mo>+                <mn>2.2842</mn>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msub>+              <mi>K</mi>+              <mi>v</mi>+            </msub>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mi>z</mi>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <msub>+              <mi>BesselK</mi>+              <mi>v</mi>+            </msub>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mi>z</mi>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <msup>+                <mi>z</mi>+                <mn>2</mn>+              </msup>+              <mi>&#8290;</mi>+              <mfrac>+                <mrow>+                  <msup>+                    <mi>ⅆ</mi>+                    <mn>2</mn>+                  </msup>+                  <mi>w</mi>+                </mrow>+                <mrow>+                  <mi>ⅆ</mi>+                  <msup>+                    <mi>z</mi>+                    <mn>2</mn>+                  </msup>+                </mrow>+              </mfrac>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mi>z</mi>+              <mi>&#8290;</mi>+              <mfrac>+                <mrow>+                  <mi>ⅆ</mi>+                  <mi>w</mi>+                </mrow>+                <mrow>+                  <mi>ⅆ</mi>+                  <mi>z</mi>+                </mrow>+              </mfrac>+            </mrow>+            <mo>−</mo>+            <mrow>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <msup>+                    <mi>z</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>+</mo>+                  <msup>+                    <mi>v</mi>+                    <mn>2</mn>+                  </msup>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mi>w</mi>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mn>0</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mfrac>+              <mrow>+                <msup>+                  <mi>∂</mi>+                  <mn>2</mn>+                </msup>+                <mrow>+                  <mi>u</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>x</mi>+                      <mo>,</mo>+                      <mi>y</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mrow>+              <mrow>+                <mi>∂</mi>+                <msup>+                  <mi>x</mi>+                  <mn>2</mn>+                </msup>+              </mrow>+            </mfrac>+            <mo>−</mo>+            <mfrac>+              <mrow>+                <msup>+                  <mi>∂</mi>+                  <mn>2</mn>+                </msup>+                <mrow>+                  <mi>u</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>x</mi>+                      <mo>,</mo>+                      <mi>y</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mrow>+              <mrow>+                <mi>∂</mi>+                <msup>+                  <mi>y</mi>+                  <mn>2</mn>+                </msup>+              </mrow>+            </mfrac>+          </mrow>+          <mo>=</mo>+          <mn>0</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>y</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mi>t</mi>+                <mo>,</mo>+                <mi>x</mi>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <msub>+                <mi>F</mi>+                <mn>1</mn>+              </msub>+              <mi>&#8290;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mrow>+                    <mo>−</mo>+                    <mi>x</mi>+                  </mrow>+                  <mo>−</mo>+                  <mrow>+                    <mi>a</mi>+                    <mi>&#8290;</mi>+                    <mi>t</mi>+                  </mrow>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mo>+</mo>+            <mrow>+              <msub>+                <mi>F</mi>+                <mn>2</mn>+              </msub>+              <mi>&#8290;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mi>x</mi>+                  <mo>−</mo>+                  <mrow>+                    <mi>a</mi>+                    <mi>&#8290;</mi>+                    <mi>t</mi>+                  </mrow>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mn>1</mn>+            </mtd>+            <mtd>+              <mn>2</mn>+            </mtd>+            <mtd>+              <mn>3</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>4</mn>+            </mtd>+            <mtd>+              <mn>5</mn>+            </mtd>+            <mtd>+              <mn>6</mn>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mn>2</mn>+              <mi>&#8290;</mi>+              <mi>x</mi>+            </mrow>+            <mo>+</mo>+            <mn>1</mn>+          </mrow>+          <mo>=</mo>+          <mn>5</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mn>1</mn>+                <mo>=</mo>+                <mn>3</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mn>9</mn>+                <mo>=</mo>+                <mn>7</mn>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>a</mi>+                <mi>&#8290;</mi>+                <mi>b</mi>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mi>c</mi>+                <mi>&#8290;</mi>+                <mi>d</mi>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mi>e</mi>+                <mi>&#8290;</mi>+                <mi>f</mi>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mi>x</mi>+                  <mo>+</mo>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <mi>y</mi>+                  </mrow>+                  <mo>−</mo>+                  <mn>3</mn>+                </mrow>+                <mo>=</mo>+                <mn>5</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mrow>+                    <mn>4</mn>+                    <mi>&#8290;</mi>+                    <mi>x</mi>+                  </mrow>+                  <mo>−</mo>+                  <mi>y</mi>+                  <mo>−</mo>+                  <mn>5</mn>+                </mrow>+                <mo>=</mo>+                <mn>98</mn>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>x</mi>+                <mo>=</mo>+                <mi>z</mi>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mn>1</mn>+                <mo>=</mo>+                <mn>3</mn>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msub>+                    <mi>A</mi>+                    <mn>1</mn>+                  </msub>+                  <mo>=</mo>+                  <mrow>+                    <mrow>+                      <msub>+                        <mi>N</mi>+                        <mn>0</mn>+                      </msub>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mi>λ</mi>+                          <mo>;</mo>+                          <msup>+                            <mi>Ω</mi>+                            <mi>′</mi>+                          </msup>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mo>−</mo>+                    <mrow>+                      <mi>φ</mi>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mi>λ</mi>+                          <mo>;</mo>+                          <msup>+                            <mi>Ω</mi>+                            <mi>′</mi>+                          </msup>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                  </mrow>+                </mrow>+                <mtext mathvariant="normal">,</mtext>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msub>+                    <mi>A</mi>+                    <mn>2</mn>+                  </msub>+                  <mo>=</mo>+                  <mrow>+                    <mrow>+                      <mi>φ</mi>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mi>λ</mi>+                          <mo>;</mo>+                          <msup>+                            <mi>Ω</mi>+                            <mi>′</mi>+                          </msup>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mo>−</mo>+                    <mrow>+                      <mi>φ</mi>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mi>λ</mi>+                          <mo>;</mo>+                          <mi>Ω</mi>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                  </mrow>+                </mrow>+                <mtext mathvariant="normal">,</mtext>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msub>+                    <mi>A</mi>+                    <mn>3</mn>+                  </msub>+                  <mo>=</mo>+                  <mrow>+                    <mstyle mathvariant="script">+                      <mi>𝒩</mi>+                    </mstyle>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mi>λ</mi>+                        <mo>;</mo>+                        <mi>ω</mi>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                </mrow>+                <mtext mathvariant="normal">.</mtext>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>sin</mi>+                <mi>&#8289;</mi>+                <mi>θ</mi>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mi>cos</mi>+                <mi>&#8289;</mi>+                <mi>γ</mi>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mtable>+              <mtr>+                <mtd columnalign="left">+                  <mi>x</mi>+                </mtd>+                <mtd columnalign="left">+                  <mrow>+                    <mtext mathvariant="normal">if </mtext>+                    <mrow>+                      <mi>x</mi>+                      <mo>&lt;</mo>+                      <mn>0</mn>+                    </mrow>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd columnalign="left">+                  <mrow>+                    <mo>−</mo>+                    <mi>x</mi>+                  </mrow>+                </mtd>+                <mtd columnalign="left">+                  <mrow>+                    <mtext mathvariant="normal">if </mtext>+                    <mrow>+                      <mi>x</mi>+                      <mo>≥</mo>+                      <mn>0</mn>+                    </mrow>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>L</mi>+                <mi>&#8290;</mi>+                <mi>M</mi>+                <mi>&#8290;</mi>+                <mi>R</mi>+                <mi>&#8290;</mi>+                <mi>M</mi>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mi>L</mi>+                <mi>&#8290;</mi>+                <mi>M</mi>+                <mi>&#8290;</mi>+                <mi>R</mi>+                <mi>&#8290;</mi>+                <mi>M</mi>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>M</mi>+                <mi>&#8290;</mi>+                <mi>A</mi>+                <mi>&#8290;</mi>+                <mi>T</mi>+                <mi>&#8290;</mi>+                <mi>H</mi>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mi>M</mi>+                <mi>&#8290;</mi>+                <mi>A</mi>+                <mi>&#8290;</mi>+                <mi>T</mi>+                <mi>&#8290;</mi>+                <mi>H</mi>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtext mathvariant="normal">⋮</mtext>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>∇×</mi>+            <mi>F</mi>+          </mrow>+          <mo>=</mo>+          <mn>0</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>∇·</mi>+          <mi>F</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>∇·∇</mi>+            <mi>F</mi>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <msup>+                <mi>∇</mi>+                <mn>2</mn>+              </msup>+              <mi>F</mi>+            </mrow>+            <mo>+</mo>+            <mn>7</mn>+          </mrow>+          <mo>=</mo>+          <mi>A</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>∇×</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mrow>+                  <mi>x</mi>+                  <mi>&#8290;</mi>+                  <mi>y</mi>+                </mrow>+                <mo>,</mo>+                <mrow>+                  <mi>y</mi>+                  <mi>&#8290;</mi>+                  <mi>z</mi>+                </mrow>+                <mo>,</mo>+                <mrow>+                  <mi>z</mi>+                  <mi>&#8290;</mi>+                  <mi>x</mi>+                </mrow>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">[</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mrow>+                    <mo>−</mo>+                    <mi>y</mi>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mrow>+                    <mo>−</mo>+                    <mi>z</mi>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mrow>+                    <mo>−</mo>+                    <mi>x</mi>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+            <mo stretchy="true" form="postfix">]</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>∇×</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mi>y</mi>+                <mo>,</mo>+                <mi>z</mi>+                <mo>,</mo>+                <mi>x</mi>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mrow>+              <mrow>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+            </mrow>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+          <mo>≠</mo>+          <mn>0</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>+</mo>+            <mi>y</mi>+            <mo>+</mo>+            <mi>α</mi>+          </mrow>+          <mo>=</mo>+          <mn>102</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mstyle mathvariant="bold">+              <mi>𝐚</mi>+            </mstyle>+            <mo>+</mo>+            <mstyle mathvariant="bold">+              <mi>𝐛</mi>+            </mstyle>+          </mrow>+          <mo>=</mo>+          <mstyle mathvariant="bold">+            <mi>𝐜</mi>+          </mstyle>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>+</mo>+          <mn>1</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>+</mo>+            <mrow>+              <mi>f</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mstyle mathvariant="bold">+                  <mi>𝐱</mi>+                </mstyle>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mo>−</mo>+            <mn>1</mn>+          </mrow>+          <mo>=</mo>+          <mn>123</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mstyle mathvariant="italic">+              <mi>𝑇</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="italic">+              <mi>h</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="italic">+              <mi>𝑒</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="italic">+              <mi>𝑞</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="italic">+              <mi>𝑢</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="italic">+              <mi>𝑖</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="italic">+              <mi>𝑐</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="italic">+              <mi>𝑘</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mi>b</mi>+            <mi>&#8290;</mi>+            <mi>r</mi>+            <mi>&#8290;</mi>+            <mi>o</mi>+            <mi>&#8290;</mi>+            <mi>w</mi>+            <mi>&#8290;</mi>+            <mi>n</mi>+            <mi>&#8290;</mi>+            <mi>f</mi>+            <mi>&#8290;</mi>+            <mi>o</mi>+            <mi>&#8290;</mi>+            <mi>x</mi>+            <mi>&#8290;</mi>+            <mi>j</mi>+            <mi>&#8290;</mi>+            <mi>u</mi>+            <mi>&#8290;</mi>+            <mi>m</mi>+            <mi>&#8290;</mi>+            <mi>p</mi>+            <mi>&#8290;</mi>+            <mi>s</mi>+            <mi>&#8290;</mi>+            <mstyle mathvariant="bold">+              <mi>𝐨</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="bold">+              <mi>𝐯</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="bold">+              <mi>𝐞</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="bold">+              <mi>𝐫</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mi>t</mi>+            <mi>&#8290;</mi>+            <mi>h</mi>+            <mi>&#8290;</mi>+            <mi>e</mi>+            <mi>&#8290;</mi>+            <mstyle mathvariant="sans-serif">+              <mi>𝗅</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="sans-serif">+              <mi>𝖺</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="sans-serif">+              <mi>𝗓</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="sans-serif">+              <mi>𝗒</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="monospace">+              <mi>𝚍</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="monospace">+              <mi>𝚘</mi>+            </mstyle>+            <mi>&#8290;</mi>+            <mstyle mathvariant="monospace">+              <mi>𝚐</mi>+            </mstyle>+          </mrow>+          <mtext mathvariant="normal">.</mtext>+          <mrow>+            <mi>T</mi>+            <mi>&#8290;</mi>+            <mi>h</mi>+            <mi>&#8290;</mi>+            <mi>e</mi>+            <mi>&#8290;</mi>+            <mi>e</mi>+            <mi>&#8290;</mi>+            <mi>n</mi>+            <mi>&#8290;</mi>+            <mi>d</mi>+          </mrow>+          <mtext mathvariant="normal">.</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mrow>+            <mrow>+              <mfrac>+                <mrow>+                  <mi>∂</mi>+                  <mi>f</mi>+                </mrow>+                <mrow>+                  <mi>∂</mi>+                  <msub>+                    <mi>x</mi>+                    <mn>1</mn>+                  </msub>+                </mrow>+              </mfrac>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <msub>+                    <mi>c</mi>+                    <mn>1</mn>+                  </msub>+                  <mo>,</mo>+                  <msub>+                    <mi>c</mi>+                    <mn>2</mn>+                  </msub>+                  <mo>,</mo>+                  <mi>…</mi>+                  <mo>,</mo>+                  <msub>+                    <mi>c</mi>+                    <mi>n</mi>+                  </msub>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mo>,</mo>+            <mrow>+              <mfrac>+                <mrow>+                  <mi>∂</mi>+                  <mi>f</mi>+                </mrow>+                <mrow>+                  <mi>∂</mi>+                  <msub>+                    <mi>x</mi>+                    <mn>2</mn>+                  </msub>+                </mrow>+              </mfrac>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <msub>+                    <mi>c</mi>+                    <mn>1</mn>+                  </msub>+                  <mo>,</mo>+                  <msub>+                    <mi>c</mi>+                    <mn>2</mn>+                  </msub>+                  <mo>,</mo>+                  <mi>…</mi>+                  <mo>,</mo>+                  <msub>+                    <mi>c</mi>+                    <mi>n</mi>+                  </msub>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mo>,</mo>+            <mi>…</mi>+            <mo>,</mo>+            <mrow>+              <mfrac>+                <mrow>+                  <mi>∂</mi>+                  <mi>f</mi>+                </mrow>+                <mrow>+                  <mi>∂</mi>+                  <msub>+                    <mi>x</mi>+                    <mrow>+                      <mi>n</mi>+                      <mi>&#8203;</mi>+                      <mn>1</mn>+                    </mrow>+                  </msub>+                </mrow>+              </mfrac>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <msub>+                    <mi>c</mi>+                    <mn>1</mn>+                  </msub>+                  <mo>,</mo>+                  <msub>+                    <mi>c</mi>+                    <mn>2</mn>+                  </msub>+                  <mo>,</mo>+                  <mi>…</mi>+                  <mo>,</mo>+                  <msub>+                    <mi>c</mi>+                    <mi>n</mi>+                  </msub>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mrow>+          <mo stretchy="true" form="postfix">)</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>∇</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mrow>+                  <mi>c</mi>+                  <mi>&#8290;</mi>+                  <mi>u</mi>+                  <mi>&#8290;</mi>+                  <mi>v</mi>+                </mrow>+                <mo>+</mo>+                <mrow>+                  <msup>+                    <mi>v</mi>+                    <mn>2</mn>+                  </msup>+                  <mi>&#8290;</mi>+                  <mi>w</mi>+                </mrow>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mrow>+              <mrow>+                <mi>u</mi>+                <mi>&#8290;</mi>+                <mi>v</mi>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mi>c</mi>+                <mi>&#8290;</mi>+                <mi>v</mi>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mrow>+                  <mi>c</mi>+                  <mi>&#8290;</mi>+                  <mi>u</mi>+                </mrow>+                <mo>+</mo>+                <mrow>+                  <mn>2</mn>+                  <mi>&#8290;</mi>+                  <mi>v</mi>+                  <mi>&#8290;</mi>+                  <mi>w</mi>+                </mrow>+              </mrow>+              <mo>,</mo>+              <msup>+                <mi>v</mi>+                <mn>2</mn>+              </msup>+            </mrow>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msub>+                    <mi>D</mi>+                    <mi>u</mi>+                  </msub>+                  <mi>&#8290;</mi>+                  <mrow>+                    <mi>f</mi>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mo stretchy="true" form="prefix">(</mo>+                      <mrow>+                        <mi>a</mi>+                        <mo>,</mo>+                        <mi>b</mi>+                        <mo>,</mo>+                        <mi>c</mi>+                      </mrow>+                      <mo stretchy="true" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                </mrow>+                <mo>=</mo>+                <mrow>+                  <mrow>+                    <mi>∇</mi>+                    <mrow>+                      <mi>f</mi>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <mi>a</mi>+                          <mo>,</mo>+                          <mi>b</mi>+                          <mo>,</mo>+                          <mi>c</mi>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                  </mrow>+                  <mo>⋅</mo>+                  <mstyle mathvariant="bold">+                    <mi>𝐮</mi>+                  </mstyle>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mo>=</mo>+                <mrow>+                  <mrow>+                    <mrow>+                      <mfrac>+                        <mrow>+                          <mi>∂</mi>+                          <mi>f</mi>+                        </mrow>+                        <mrow>+                          <mi>∂</mi>+                          <mi>x</mi>+                        </mrow>+                      </mfrac>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <mi>a</mi>+                          <mo>,</mo>+                          <mi>b</mi>+                          <mo>,</mo>+                          <mi>c</mi>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mi>&#8290;</mi>+                    <msub>+                      <mi>u</mi>+                      <mn>1</mn>+                    </msub>+                  </mrow>+                  <mo>+</mo>+                  <mrow>+                    <mrow>+                      <mfrac>+                        <mrow>+                          <mi>∂</mi>+                          <mi>f</mi>+                        </mrow>+                        <mrow>+                          <mi>∂</mi>+                          <mi>y</mi>+                        </mrow>+                      </mfrac>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <mi>a</mi>+                          <mo>,</mo>+                          <mi>b</mi>+                          <mo>,</mo>+                          <mi>c</mi>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mi>&#8290;</mi>+                    <msub>+                      <mi>u</mi>+                      <mn>2</mn>+                    </msub>+                  </mrow>+                  <mo>+</mo>+                  <mrow>+                    <mrow>+                      <mfrac>+                        <mrow>+                          <mi>∂</mi>+                          <mi>f</mi>+                        </mrow>+                        <mrow>+                          <mi>∂</mi>+                          <mi>z</mi>+                        </mrow>+                      </mfrac>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <mi>a</mi>+                          <mo>,</mo>+                          <mi>b</mi>+                          <mo>,</mo>+                          <mi>c</mi>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mi>&#8290;</mi>+                    <msub>+                      <mi>u</mi>+                      <mn>3</mn>+                    </msub>+                  </mrow>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>θ</mi>+            <mo>∈</mo>+            <mrow>+              <mo stretchy="true" form="prefix">{</mo>+              <mrow>+                <mi>π</mi>+                <mo>+</mo>+                <mrow>+                  <mn>2</mn>+                  <mi>&#8290;</mi>+                  <msub>+                    <mi>X</mi>+                    <mn>3</mn>+                  </msub>+                  <mi>&#8290;</mi>+                  <mi>π</mi>+                </mrow>+                <mo>−</mo>+                <mrow>+                  <mo stretchy="true" form="prefix">(</mo>+                  <mrow>+                    <mi>arccos</mi>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mfrac>+                        <mn>1</mn>+                        <mn>7</mn>+                      </mfrac>+                      <mi>&#8290;</mi>+                      <msqrt>+                        <mn>14</mn>+                      </msqrt>+                    </mrow>+                  </mrow>+                  <mo stretchy="true" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mo stretchy="true" form="infix">|</mo>+              <mrow>+                <msub>+                  <mi>X</mi>+                  <mn>3</mn>+                </msub>+                <mo>∈</mo>+                <mi>ℤ</mi>+              </mrow>+              <mo stretchy="true" form="postfix">}</mo>+            </mrow>+          </mrow>+          <mo>,</mo>+          <mrow>+            <mi>θ</mi>+            <mo>∈</mo>+            <mrow>+              <mo stretchy="true" form="prefix">{</mo>+              <mrow>+                <mrow>+                  <mn>2</mn>+                  <mi>&#8290;</mi>+                  <msub>+                    <mi>X</mi>+                    <mn>4</mn>+                  </msub>+                  <mi>&#8290;</mi>+                  <mi>π</mi>+                </mrow>+                <mo>−</mo>+                <mi>π</mi>+                <mo>+</mo>+                <mrow>+                  <mo stretchy="true" form="prefix">(</mo>+                  <mrow>+                    <mi>arccos</mi>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mfrac>+                        <mn>1</mn>+                        <mn>7</mn>+                      </mfrac>+                      <mi>&#8290;</mi>+                      <msqrt>+                        <mn>14</mn>+                      </msqrt>+                    </mrow>+                  </mrow>+                  <mo stretchy="true" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mo stretchy="true" form="infix">|</mo>+              <mrow>+                <msub>+                  <mi>X</mi>+                  <mn>4</mn>+                </msub>+                <mo>∈</mo>+                <mi>ℤ</mi>+              </mrow>+              <mo stretchy="true" form="postfix">}</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>P</mi>+          <mo>=</mo>+          <mrow>+            <mi>A</mi>+            <mi>&#8290;</mi>+            <msup>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <msup>+                    <mi>A</mi>+                    <mi>T</mi>+                  </msup>+                  <mi>&#8290;</mi>+                  <mi>A</mi>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+              <mrow>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+            </msup>+            <mi>&#8290;</mi>+            <msup>+              <mi>A</mi>+              <mi>T</mi>+            </msup>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>det</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mtable>+                <mtr>+                  <mtd>+                    <mi>x</mi>+                  </mtd>+                  <mtd>+                    <mi>y</mi>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mi>a</mi>+                  </mtd>+                  <mtd>+                    <mi>b</mi>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mi>a</mi>+                  </mtd>+                  <mtd>+                    <mi>d</mi>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                </mtr>+              </mtable>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mi>x</mi>+              <mi>&#8290;</mi>+              <mi>b</mi>+            </mrow>+            <mo>−</mo>+            <mrow>+              <mi>x</mi>+              <mi>&#8290;</mi>+              <mi>d</mi>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mi>a</mi>+              <mi>&#8290;</mi>+              <mi>d</mi>+            </mrow>+            <mo>−</mo>+            <mrow>+              <mi>a</mi>+              <mi>&#8290;</mi>+              <mi>b</mi>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mn>0</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mi>A</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mi>θ</mi>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mi>&#8290;</mi>+            <mrow>+              <mi>A</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mo>−</mo>+                  <mi>θ</mi>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">[</mo>+              <mtable>+                <mtr>+                  <mtd>+                    <mrow>+                      <mi>cos</mi>+                      <mi>&#8289;</mi>+                      <mi>θ</mi>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mo>−</mo>+                      <mrow>+                        <mi>sin</mi>+                        <mi>&#8289;</mi>+                        <mi>θ</mi>+                      </mrow>+                    </mrow>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mrow>+                      <mi>sin</mi>+                      <mi>&#8289;</mi>+                      <mi>θ</mi>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mi>cos</mi>+                      <mi>&#8289;</mi>+                      <mi>θ</mi>+                    </mrow>+                  </mtd>+                </mtr>+              </mtable>+              <mo stretchy="true" form="postfix">]</mo>+            </mrow>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">[</mo>+              <mtable>+                <mtr>+                  <mtd>+                    <mrow>+                      <mi>cos</mi>+                      <mi>&#8289;</mi>+                      <mi>θ</mi>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mi>sin</mi>+                      <mi>&#8289;</mi>+                      <mi>θ</mi>+                    </mrow>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mrow>+                      <mo>−</mo>+                      <mrow>+                        <mi>sin</mi>+                        <mi>&#8289;</mi>+                        <mi>θ</mi>+                      </mrow>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mi>cos</mi>+                      <mi>&#8289;</mi>+                      <mi>θ</mi>+                    </mrow>+                  </mtd>+                </mtr>+              </mtable>+              <mo stretchy="true" form="postfix">]</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>J</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mi>A</mi>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">[</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mrow>+                    <msub>+                      <mi>J</mi>+                      <msub>+                        <mi>n</mi>+                        <mn>1</mn>+                      </msub>+                    </msub>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mo stretchy="true" form="prefix">(</mo>+                      <msub>+                        <mi>λ</mi>+                        <mn>1</mn>+                      </msub>+                      <mo stretchy="true" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                </mtd>+                <mtd>+                  <mn>0</mn>+                </mtd>+                <mtd>+                  <mi>⋯</mi>+                </mtd>+                <mtd>+                  <mn>0</mn>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mn>0</mn>+                </mtd>+                <mtd>+                  <mrow>+                    <msub>+                      <mi>J</mi>+                      <msub>+                        <mi>n</mi>+                        <mn>2</mn>+                      </msub>+                    </msub>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mo stretchy="true" form="prefix">(</mo>+                      <msub>+                        <mi>λ</mi>+                        <mn>2</mn>+                      </msub>+                      <mo stretchy="true" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                </mtd>+                <mtd>+                  <mi>⋯</mi>+                </mtd>+                <mtd>+                  <mn>0</mn>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mtext mathvariant="normal">⋮</mtext>+                </mtd>+                <mtd>+                  <mtext mathvariant="normal">⋮</mtext>+                </mtd>+                <mtd>+                  <mtext mathvariant="normal">⋱</mtext>+                </mtd>+                <mtd>+                  <mtext mathvariant="normal">⋮</mtext>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mn>0</mn>+                </mtd>+                <mtd>+                  <mn>0</mn>+                </mtd>+                <mtd>+                  <mi>⋯</mi>+                </mtd>+                <mtd>+                  <mrow>+                    <msub>+                      <mi>J</mi>+                      <msub>+                        <mi>n</mi>+                        <mi>k</mi>+                      </msub>+                    </msub>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mo stretchy="true" form="prefix">(</mo>+                      <msub>+                        <mi>λ</mi>+                        <mi>k</mi>+                      </msub>+                      <mo stretchy="true" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+            <mo stretchy="true" form="postfix">]</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>det</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mtable>+                <mtr>+                  <mtd>+                    <mrow>+                      <mrow>+                        <mo>−</mo>+                        <mn>4</mn>+                      </mrow>+                      <mo>+</mo>+                      <mi>X</mi>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mo>−</mo>+                      <mn>1</mn>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mn>0</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>0</mn>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mrow>+                        <mo>−</mo>+                        <mn>4</mn>+                      </mrow>+                      <mo>+</mo>+                      <mi>X</mi>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mn>0</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>0</mn>+                  </mtd>+                  <mtd>+                    <mn>0</mn>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mrow>+                        <mo>−</mo>+                        <mn>4</mn>+                      </mrow>+                      <mo>+</mo>+                      <mi>X</mi>+                    </mrow>+                  </mtd>+                </mtr>+              </mtable>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <msup>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mi>X</mi>+                <mo>−</mo>+                <mn>4</mn>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mn>3</mn>+          </msup>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mtable>+                <mtr>+                  <mtd>+                    <mrow>+                      <mrow>+                        <mo>−</mo>+                        <mfrac>+                          <mn>1</mn>+                          <mn>2</mn>+                        </mfrac>+                      </mrow>+                      <mo>−</mo>+                      <mrow>+                        <mfrac>+                          <mn>1</mn>+                          <mn>6</mn>+                        </mfrac>+                        <mi>&#8290;</mi>+                        <msqrt>+                          <mn>33</mn>+                        </msqrt>+                      </mrow>+                    </mrow>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                </mtr>+              </mtable>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mo stretchy="true" form="postfix">}</mo>+          </mrow>+          <mo stretchy="true" form="infix">↔</mo>+          <mrow>+            <mfrac>+              <mn>5</mn>+              <mn>2</mn>+            </mfrac>+            <mo>−</mo>+            <mrow>+              <mfrac>+                <mn>1</mn>+                <mn>2</mn>+              </mfrac>+              <mi>&#8290;</mi>+              <msqrt>+                <mn>33</mn>+              </msqrt>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="infix">∥</mo>+            <mi>A</mi>+            <mo stretchy="true" form="infix">∥</mo>+          </mrow>+          <mo>=</mo>+          <mrow>+            <munder>+              <mi>max</mi>+              <mrow>+                <mi>x</mi>+                <mo>≠</mo>+                <mn>0</mn>+              </mrow>+            </munder>+            <mfrac>+              <mrow>+                <mo stretchy="true" form="infix">∥</mo>+                <mrow>+                  <mi>A</mi>+                  <mi>&#8290;</mi>+                  <mi>x</mi>+                </mrow>+                <mo stretchy="true" form="infix">∥</mo>+              </mrow>+              <mrow>+                <mo stretchy="true" form="infix">∥</mo>+                <mi>x</mi>+                <mo stretchy="true" form="infix">∥</mo>+              </mrow>+            </mfrac>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mtable>+                <mtr>+                  <mtd>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                  </mtd>+                  <mtd>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                  </mtd>+                  <mtd>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                  </mtd>+                </mtr>+              </mtable>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mtable>+                <mtr>+                  <mtd>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                  </mtd>+                  <mtd>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                  </mtd>+                  <mtd>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                  </mtd>+                </mtr>+              </mtable>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mrow>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                    <mo>+</mo>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                  </mrow>+                </mtd>+                <mtd>+                  <mrow>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                    <mo>+</mo>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>1</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mrow>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                    <mo>+</mo>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>1</mn>+                      </mrow>+                    </msub>+                  </mrow>+                </mtd>+                <mtd>+                  <mrow>+                    <msub>+                      <mi>a</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                    <mo>+</mo>+                    <msub>+                      <mi>b</mi>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8203;</mi>+                        <mn>2</mn>+                      </mrow>+                    </msub>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>f</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mo stretchy="true" form="prefix">[</mo>+                <mtable>+                  <mtr>+                    <mtd>+                      <mn>1</mn>+                    </mtd>+                    <mtd>+                      <mn>2</mn>+                    </mtd>+                  </mtr>+                  <mtr>+                    <mtd>+                      <mn>4</mn>+                    </mtd>+                    <mtd>+                      <mn>3</mn>+                    </mtd>+                  </mtr>+                </mtable>+                <mo stretchy="true" form="postfix">]</mo>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <msup>+              <mrow>+                <mo stretchy="true" form="prefix">[</mo>+                <mtable>+                  <mtr>+                    <mtd>+                      <mn>1</mn>+                    </mtd>+                    <mtd>+                      <mn>2</mn>+                    </mtd>+                  </mtr>+                  <mtr>+                    <mtd>+                      <mn>4</mn>+                    </mtd>+                    <mtd>+                      <mn>3</mn>+                    </mtd>+                  </mtr>+                </mtable>+                <mo stretchy="true" form="postfix">]</mo>+              </mrow>+              <mn>2</mn>+            </msup>+            <mo>−</mo>+            <mrow>+              <mn>5</mn>+              <mi>&#8290;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">[</mo>+                <mtable>+                  <mtr>+                    <mtd>+                      <mn>1</mn>+                    </mtd>+                    <mtd>+                      <mn>2</mn>+                    </mtd>+                  </mtr>+                  <mtr>+                    <mtd>+                      <mn>4</mn>+                    </mtd>+                    <mtd>+                      <mn>3</mn>+                    </mtd>+                  </mtr>+                </mtable>+                <mo stretchy="true" form="postfix">]</mo>+              </mrow>+            </mrow>+            <mo>−</mo>+            <mn>2</mn>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">[</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mn>2</mn>+                </mtd>+                <mtd>+                  <mrow>+                    <mo>−</mo>+                    <mn>2</mn>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mrow>+                    <mo>−</mo>+                    <mn>4</mn>+                  </mrow>+                </mtd>+                <mtd>+                  <mn>0</mn>+                </mtd>+              </mtr>+            </mtable>+            <mo stretchy="true" form="postfix">]</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mi>x</mi>+                <mo>=</mo>+                <mn>1</mn>+              </mrow>+            </munder>+            <mrow>+              <munderover>+                <mo>∑</mo>+                <mn>1</mn>+                <mn>2</mn>+              </munderover>+              <mi>a</mi>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msubsup>+              <mo>∫</mo>+              <mi>a</mi>+              <mi>b</mi>+            </msubsup>+            <mrow>+              <mrow>+                <mi>f</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mi>x</mi>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mrow>+                  <mo>∥</mo>+                  <mi>P</mi>+                  <mo>∥</mo>+                </mrow>+                <mo accent="true">→</mo>+                <mn>0</mn>+              </mrow>+            </munder>+            <mrow>+              <munderover>+                <mo>∑</mo>+                <mrow>+                  <mi>i</mi>+                  <mo>=</mo>+                  <mn>1</mn>+                </mrow>+                <mi>n</mi>+              </munderover>+              <mrow>+                <mrow>+                  <mi>f</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <msub>+                      <mover>+                        <mi>x</mi>+                        <mo accent="true">¯</mo>+                      </mover>+                      <mi>i</mi>+                    </msub>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mi>&#8290;</mi>+                <mrow>+                  <mo>Δ</mo>+                  <msub>+                    <mi>x</mi>+                    <mi>i</mi>+                  </msub>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msubsup>+              <mo>∫</mo>+              <mi>a</mi>+              <mi>b</mi>+            </msubsup>+            <mrow>+              <mrow>+                <mi>f</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mi>x</mi>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mi>n</mi>+                <mo accent="true">→</mo>+                <mi>∞</mi>+              </mrow>+            </munder>+            <mrow>+              <mfrac>+                <mrow>+                  <mi>b</mi>+                  <mo>−</mo>+                  <mi>a</mi>+                </mrow>+                <mi>n</mi>+              </mfrac>+              <mi>&#8290;</mi>+              <mrow>+                <munderover>+                  <mo>∑</mo>+                  <mrow>+                    <mi>i</mi>+                    <mo>=</mo>+                    <mn>1</mn>+                  </mrow>+                  <mi>n</mi>+                </munderover>+                <mrow>+                  <mi>f</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <mrow>+                      <mi>a</mi>+                      <mo>+</mo>+                      <mrow>+                        <mi>i</mi>+                        <mi>&#8290;</mi>+                        <mfrac>+                          <mrow>+                            <mi>b</mi>+                            <mo>−</mo>+                            <mi>a</mi>+                          </mrow>+                          <mi>n</mi>+                        </mfrac>+                      </mrow>+                    </mrow>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msubsup>+              <mo>∫</mo>+              <mn>0</mn>+              <mn>2</mn>+            </msubsup>+            <mrow>+              <msup>+                <mi>x</mi>+                <mn>5</mn>+              </msup>+              <mi>&#8290;</mi>+              <msqrt>+                <mrow>+                  <msup>+                    <mi>x</mi>+                    <mn>3</mn>+                  </msup>+                  <mo>+</mo>+                  <mn>1</mn>+                </mrow>+              </msqrt>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <msubsup>+              <mo>∫</mo>+              <mn>1</mn>+              <mn>3</mn>+            </msubsup>+            <mrow>+              <mfrac>+                <mn>2</mn>+                <mn>3</mn>+              </mfrac>+              <mi>&#8290;</mi>+              <mi>u</mi>+              <mi>&#8290;</mi>+              <mfrac>+                <msqrt>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <msup>+                      <mi>u</mi>+                      <mn>2</mn>+                    </msup>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </msqrt>+                <msup>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <mrow>+                      <msup>+                        <mi>u</mi>+                        <mn>2</mn>+                      </msup>+                      <mo>−</mo>+                      <mn>1</mn>+                    </mrow>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                  <mfrac>+                    <mn>2</mn>+                    <mn>3</mn>+                  </mfrac>+                </msup>+              </mfrac>+              <mi>&#8290;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mrow>+                    <msup>+                      <mi>u</mi>+                      <mn>2</mn>+                    </msup>+                    <mi>&#8290;</mi>+                    <msup>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <msup>+                            <mi>u</mi>+                            <mn>2</mn>+                          </msup>+                          <mo>−</mo>+                          <mn>1</mn>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                      <mfrac>+                        <mn>2</mn>+                        <mn>3</mn>+                      </mfrac>+                    </msup>+                  </mrow>+                  <mo>−</mo>+                  <msup>+                    <mrow>+                      <mo stretchy="true" form="prefix">(</mo>+                      <mrow>+                        <msup>+                          <mi>u</mi>+                          <mn>2</mn>+                        </msup>+                        <mo>−</mo>+                        <mn>1</mn>+                      </mrow>+                      <mo stretchy="true" form="postfix">)</mo>+                    </mrow>+                    <mfrac>+                      <mn>2</mn>+                      <mn>3</mn>+                    </mfrac>+                  </msup>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>u</mi>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">∫</mo>+            <mrow>+              <mrow>+                <mi>f</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mrow>+                    <mi>g</mi>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mi>x</mi>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <msup>+                  <mi>g</mi>+                  <mi>′</mi>+                </msup>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mi>x</mi>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">∫</mo>+            <mrow>+              <mrow>+                <mi>f</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mi>u</mi>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>u</mi>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mrow>+            <mn>2</mn>+            <mi>&#8290;</mi>+            <mrow>+              <munderover>+                <mo>∑</mo>+                <mrow>+                  <mi>n</mi>+                  <mo>=</mo>+                  <mn>1</mn>+                </mrow>+                <mn>100</mn>+              </munderover>+              <mrow>+                <mi>n</mi>+                <mi>&#8290;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mrow>+                    <mi>n</mi>+                    <mo>−</mo>+                    <mn>1</mn>+                  </mrow>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mi>x</mi>+                <mo accent="true">→</mo>+                <mn>0</mn>+              </mrow>+            </munder>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mfrac>+                  <mn>1</mn>+                  <mi>x</mi>+                </mfrac>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mo>−</mo>+              <mn>1</mn>+            </mrow>+            <mi>..</mi>+            <mn>1</mn>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>h</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mi>i</mi>+                <mo>,</mo>+                <mi>j</mi>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mrow>+                  <mn>2</mn>+                  <mo>−</mo>+                  <mi>j</mi>+                </mrow>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>g</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mi>i</mi>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mrow>+                  <mi>j</mi>+                  <mo>−</mo>+                  <mn>1</mn>+                </mrow>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>f</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mrow>+                    <mi>g</mi>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mi>i</mi>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>△</mi>+          <mo>:</mo>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">[</mo>+              <mrow>+                <mn>0</mn>+                <mo>,</mo>+                <mn>1</mn>+              </mrow>+              <mo stretchy="true" form="postfix">]</mo>+            </mrow>+            <mo stretchy="true" form="infix">→</mo>+            <mrow>+              <mo stretchy="true" form="prefix">[</mo>+              <mrow>+                <mn>0</mn>+                <mo>,</mo>+                <mn>1</mn>+              </mrow>+              <mo stretchy="true" form="postfix">]</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>0</mn>+            <mo>▽</mo>+            <mi>x</mi>+          </mrow>+          <mo>=</mo>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>△</mo>+            <mi>y</mi>+          </mrow>+          <mo>=</mo>+          <mrow>+            <msup>+              <mi>h</mi>+              <mrow>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+            </msup>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mrow>+                  <mi>h</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <mi>x</mi>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mi>&#8290;</mi>+                <mrow>+                  <mi>h</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <mi>y</mi>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>△</mo>+            <mi>y</mi>+          </mrow>+          <mo>=</mo>+          <mrow>+            <msup>+              <mi>f</mi>+              <mrow>+                <mo>−</mo>+                <mn>1</mn>+              </mrow>+            </msup>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mi>max</mi>+                <mrow>+                  <mo stretchy="true" form="prefix">{</mo>+                  <mrow>+                    <mrow>+                      <mrow>+                        <mi>f</mi>+                        <mi>&#8289;</mi>+                        <mrow>+                          <mo stretchy="true" form="prefix">(</mo>+                          <mi>x</mi>+                          <mo stretchy="true" form="postfix">)</mo>+                        </mrow>+                      </mrow>+                      <mo>+</mo>+                      <mrow>+                        <mi>f</mi>+                        <mi>&#8289;</mi>+                        <mrow>+                          <mo stretchy="true" form="prefix">(</mo>+                          <mi>y</mi>+                          <mo stretchy="true" form="postfix">)</mo>+                        </mrow>+                      </mrow>+                      <mo>−</mo>+                      <mn>1</mn>+                    </mrow>+                    <mo>,</mo>+                    <mn>0</mn>+                  </mrow>+                  <mo stretchy="true" form="postfix">}</mo>+                </mrow>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>▽</mo>+            <mi>y</mi>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>η</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mrow>+                  <mi>η</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <mi>x</mi>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mo>△</mo>+                <mrow>+                  <mi>η</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="true" form="prefix">(</mo>+                    <mi>y</mi>+                    <mo stretchy="true" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mi>&#8290;</mi>+            <mrow>+              <msub>+                <mo>△</mo>+                <mn>0</mn>+              </msub>+              <mi>y</mi>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mtable>+              <mtr>+                <mtd>+                  <mrow>+                    <mi>x</mi>+                    <mo>∧</mo>+                    <mi>y</mi>+                  </mrow>+                </mtd>+                <mtd>+                  <mtext mathvariant="normal">if</mtext>+                </mtd>+                <mtd>+                  <mrow>+                    <mi>x</mi>+                    <mo>∨</mo>+                    <mrow>+                      <mi>y</mi>+                      <mo>=</mo>+                      <mn>1</mn>+                    </mrow>+                  </mrow>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mn>0</mn>+                </mtd>+                <mtd>+                  <mtext mathvariant="normal">if</mtext>+                </mtd>+                <mtd>+                  <mrow>+                    <mi>x</mi>+                    <mo>∨</mo>+                    <mrow>+                      <mi>y</mi>+                      <mo>&lt;</mo>+                      <mn>1</mn>+                    </mrow>+                  </mrow>+                </mtd>+              </mtr>+            </mtable>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mi>a</mi>+                <mo accent="true">→</mo>+                <msup>+                  <mn>1</mn>+                  <mo>+</mo>+                </msup>+              </mrow>+            </munder>+            <mrow>+              <msub>+                <mi>log</mi>+                <mi>a</mi>+              </msub>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">[</mo>+                <mrow>+                  <mn>1</mn>+                  <mo>+</mo>+                  <mfrac>+                    <mrow>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <msup>+                            <mi>a</mi>+                            <mi>x</mi>+                          </msup>+                          <mo>−</mo>+                          <mn>1</mn>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                      <mi>&#8290;</mi>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <msup>+                            <mi>a</mi>+                            <mi>y</mi>+                          </msup>+                          <mo>−</mo>+                          <mn>1</mn>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mrow>+                      <mi>a</mi>+                      <mo>−</mo>+                      <mn>1</mn>+                    </mrow>+                  </mfrac>+                </mrow>+                <mo stretchy="true" form="postfix">]</mo>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mi>a</mi>+                <mo accent="true">→</mo>+                <msup>+                  <mn>1</mn>+                  <mo>−</mo>+                </msup>+              </mrow>+            </munder>+            <mrow>+              <msub>+                <mi>log</mi>+                <mi>a</mi>+              </msub>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="true" form="prefix">[</mo>+                <mrow>+                  <mn>1</mn>+                  <mo>+</mo>+                  <mfrac>+                    <mrow>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <msup>+                            <mi>a</mi>+                            <mi>x</mi>+                          </msup>+                          <mo>−</mo>+                          <mn>1</mn>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                      <mi>&#8290;</mi>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <msup>+                            <mi>a</mi>+                            <mi>y</mi>+                          </msup>+                          <mo>−</mo>+                          <mn>1</mn>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mrow>+                      <mi>a</mi>+                      <mo>−</mo>+                      <mn>1</mn>+                    </mrow>+                  </mfrac>+                </mrow>+                <mo stretchy="true" form="postfix">]</mo>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>x</mi>+            <mi>&#8290;</mi>+            <mi>y</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>g</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mi>x</mi>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>exp</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mo>−</mo>+                <mfrac>+                  <mrow>+                    <mn>1</mn>+                    <mo>−</mo>+                    <msup>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <mn>1</mn>+                          <mo>−</mo>+                          <mi>x</mi>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                      <mi>a</mi>+                    </msup>+                  </mrow>+                  <mrow>+                    <mrow>+                      <mo stretchy="true" form="prefix">(</mo>+                      <mrow>+                        <msup>+                          <mn>2</mn>+                          <mi>a</mi>+                        </msup>+                        <mo>−</mo>+                        <mn>1</mn>+                      </mrow>+                      <mo stretchy="true" form="postfix">)</mo>+                    </mrow>+                    <mi>&#8290;</mi>+                    <msup>+                      <mrow>+                        <mo stretchy="true" form="prefix">(</mo>+                        <mrow>+                          <mn>1</mn>+                          <mo>−</mo>+                          <mi>x</mi>+                        </mrow>+                        <mo stretchy="true" form="postfix">)</mo>+                      </mrow>+                      <mi>a</mi>+                    </msup>+                  </mrow>+                </mfrac>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>Aut</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mstyle mathvariant="bold">+                <mi>𝐈</mi>+              </mstyle>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mrow>+              <mi>f</mi>+              <mo>:</mo>+              <mrow>+                <mrow>+                  <mo stretchy="true" form="prefix">[</mo>+                  <mrow>+                    <mn>0</mn>+                    <mo>,</mo>+                    <mn>1</mn>+                  </mrow>+                  <mo stretchy="true" form="postfix">]</mo>+                </mrow>+                <mo stretchy="true" form="infix">→</mo>+                <mrow>+                  <mo stretchy="true" form="prefix">[</mo>+                  <mrow>+                    <mn>0</mn>+                    <mo>,</mo>+                    <mn>1</mn>+                  </mrow>+                  <mo stretchy="true" form="postfix">]</mo>+                </mrow>+              </mrow>+            </mrow>+            <mspace width="0.278em" />+            <mrow>+              <mo stretchy="true" form="prefix">|</mo>+              <mtable>+                <mtr>+                  <mtd columnalign="left">+                    <mrow>+                      <mi>f</mi>+                      <mtext mathvariant="normal"> is one-to-one and onto, and</mtext>+                    </mrow>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd columnalign="left">+                    <mrow>+                      <mrow>+                        <mi>x</mi>+                        <mo>≤</mo>+                        <mi>y</mi>+                      </mrow>+                      <mtext mathvariant="normal"> implies </mtext>+                      <mrow>+                        <mrow>+                          <mi>f</mi>+                          <mi>&#8289;</mi>+                          <mrow>+                            <mo stretchy="true" form="prefix">(</mo>+                            <mi>x</mi>+                            <mo stretchy="true" form="postfix">)</mo>+                          </mrow>+                        </mrow>+                        <mo>≤</mo>+                        <mrow>+                          <mi>f</mi>+                          <mi>&#8289;</mi>+                          <mrow>+                            <mo stretchy="true" form="prefix">(</mo>+                            <mi>y</mi>+                            <mo stretchy="true" form="postfix">)</mo>+                          </mrow>+                        </mrow>+                      </mrow>+                    </mrow>+                  </mtd>+                </mtr>+              </mtable>+            </mrow>+            <mo stretchy="true" form="postfix">}</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+              <mo>+</mo>+              <msup>+                <mi>y</mi>+                <mn>2</mn>+              </msup>+            </mrow>+            <mo>=</mo>+            <msup>+              <mi>r</mi>+              <mn>2</mn>+            </msup>+          </mrow>+          <mo>,</mo>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <mrow>+              <mi>tan</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mo>=</mo>+            <mfrac>+              <mi>y</mi>+              <mi>x</mi>+            </mfrac>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <msqrt>+            <mn>2</mn>+          </msqrt>+          <mi>&#8290;</mi>+          <msqrt>+            <mrow>+              <mn>1</mn>+              <mo>−</mo>+              <msup>+                <mi>t</mi>+                <mn>2</mn>+              </msup>+            </mrow>+          </msqrt>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">[</mo>+          <mrow>+            <mrow>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mrow>+                  <mn>2</mn>+                  <mo>+</mo>+                  <mrow>+                    <mi>sin</mi>+                    <mi>&#8289;</mi>+                    <mi>t</mi>+                  </mrow>+                </mrow>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mn>10</mn>+              <mi>&#8290;</mi>+              <mrow>+                <mi>cos</mi>+                <mi>&#8289;</mi>+                <mi>t</mi>+              </mrow>+            </mrow>+            <mo>,</mo>+            <mrow>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mrow>+                  <mn>2</mn>+                  <mo>+</mo>+                  <mrow>+                    <mi>cos</mi>+                    <mi>&#8289;</mi>+                    <mi>t</mi>+                  </mrow>+                </mrow>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mn>10</mn>+              <mi>&#8290;</mi>+              <mrow>+                <mi>sin</mi>+                <mi>&#8289;</mi>+                <mi>t</mi>+              </mrow>+            </mrow>+            <mo>,</mo>+            <mrow>+              <mn>3</mn>+              <mi>&#8290;</mi>+              <mrow>+                <mi>sin</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mn>3</mn>+                  <mi>&#8290;</mi>+                  <mi>t</mi>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+          <mo stretchy="true" form="postfix">]</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mrow>+              <mrow>+                <mi>t</mi>+                <mo>=</mo>+                <mn>0</mn>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mi>s</mi>+                <mo>=</mo>+                <mn>0</mn>+              </mrow>+            </mrow>+            <mo stretchy="true" form="postfix">}</mo>+          </mrow>+          <mo>,</mo>+          <mrow>+            <mo stretchy="true" form="prefix">{</mo>+            <mrow>+              <mrow>+                <mi>t</mi>+                <mo>=</mo>+                <mi>π</mi>+              </mrow>+              <mo>,</mo>+              <mrow>+                <mi>s</mi>+                <mo>=</mo>+                <mi>π</mi>+              </mrow>+            </mrow>+            <mo stretchy="true" form="postfix">}</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mtable>+                <mtr>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mn>10</mn>+                  </mtd>+                  <mtd>+                    <mn>9</mn>+                  </mtd>+                  <mtd>+                    <mn>8</mn>+                  </mtd>+                  <mtd>+                    <mn>7</mn>+                  </mtd>+                  <mtd>+                    <mn>6</mn>+                  </mtd>+                  <mtd>+                    <mn>5</mn>+                  </mtd>+                  <mtd>+                    <mn>4</mn>+                  </mtd>+                  <mtd>+                    <mn>3</mn>+                  </mtd>+                  <mtd>+                    <mn>2</mn>+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                </mtr>+              </mtable>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mtext mathvariant="normal">testing </mtext>+                <msup>+                  <mi>x</mi>+                  <mn>2</mn>+                </msup>+                <mtext mathvariant="normal"> end.</mtext>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">x</mtext>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mi>x</mi>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">x</mtext>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mi>x</mi>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mfrac>+              <mrow>+                <mi>ⅆ</mi>+                <mi>f</mi>+              </mrow>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mfrac>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <msub>+                <mi>x</mi>+                <mn>1</mn>+              </msub>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mn>5</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo>∫</mo>+            <mrow>+              <mi>x</mi>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo>∬</mo>+            <mrow>+              <mi>x</mi>+              <mi>&#8290;</mi>+              <mi>y</mi>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>y</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo>∭</mo>+            <mrow>+              <mi>x</mi>+              <mi>&#8290;</mi>+              <mi>y</mi>+              <mi>&#8290;</mi>+              <mi>z</mi>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>y</mi>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>z</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo>⨌</mo>+            <mrow>+              <mi>x</mi>+              <mi>&#8290;</mi>+              <mi>y</mi>+              <mi>&#8290;</mi>+              <mi>z</mi>+              <mi>&#8290;</mi>+              <mi>t</mi>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>y</mi>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>z</mi>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>t</mi>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>mod</mi>+          <mi>a</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>5</mn>+            <mi>mod</mi>+            <mn>3</mn>+          </mrow>+          <mo>=</mo>+          <mn>2</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mi>f</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mn>0</mn>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mi>mod</mi>+            <mn>3</mn>+          </mrow>+          <mo>=</mo>+          <mn>1</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mrow>+                <mn>5</mn>+                <mi>&#8290;</mi>+                <mi>x</mi>+              </mrow>+              <mo>+</mo>+              <mn>4</mn>+            </mrow>+            <mo>≡</mo>+            <mn>8</mn>+          </mrow>+          <mi>&#8203;</mi>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mrow>+              <mi>mod</mi>+              <mn>13</mn>+            </mrow>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>a</mi>+          <mo>=</mo>+          <mrow>+            <mrow>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mrow>+                  <mn>5</mn>+                  <mo>−</mo>+                  <mn>3</mn>+                </mrow>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+              <mi>/</mi>+              <mn>5</mn>+            </mrow>+            <mi>mod</mi>+            <mn>7</mn>+          </mrow>+          <mo>=</mo>+          <mn>6</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>x</mi>+                      <mn>2</mn>+                    </msup>+                  </mrow>+                  <mo>+</mo>+                  <mi>x</mi>+                  <mo>+</mo>+                  <mn>2</mn>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+              <mo>+</mo>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <mi>x</mi>+                  </mrow>+                  <mo>+</mo>+                  <mn>1</mn>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mi>mod</mi>+            <mn>3</mn>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mn>2</mn>+            <mi>&#8290;</mi>+            <msup>+              <mi>x</mi>+              <mn>2</mn>+            </msup>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mo>+</mo>+            </mtd>+            <mtd>+              <mn>0</mn>+            </mtd>+            <mtd>+              <mn>1</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>000</mn>+            </mtd>+            <mtd>+              <mn>000</mn>+            </mtd>+            <mtd>+              <mn>111</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mn>1</mn>+            </mtd>+            <mtd>+              <mn>1</mn>+            </mtd>+            <mtd>+              <mn>0</mn>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mn>4. 974 9</mn>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mfrac>+            <mi>ⅆ</mi>+            <mrow>+              <mi>ⅆ</mi>+              <mi>x</mi>+            </mrow>+          </mfrac>+          <mrow>+            <mi>F</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mi>x</mi>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">[</mo>+          <mrow>+            <mn>86.333</mn>+            <mo>,</mo>+            <mn>146.33</mn>+            <mo>,</mo>+            <mn>129.33</mn>+          </mrow>+          <mo stretchy="true" form="postfix">]</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>BinomialDist</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mi>x</mi>+                <mo>;</mo>+                <mrow>+                  <mi>n</mi>+                  <mo>,</mo>+                  <mi>p</mi>+                </mrow>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <munderover>+              <mo>∑</mo>+              <mrow>+                <mi>k</mi>+                <mo>=</mo>+                <mn>0</mn>+              </mrow>+              <mi>x</mi>+            </munderover>+            <mrow>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mfrac>+                  <mi>n</mi>+                  <mi>k</mi>+                </mfrac>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <msup>+                <mi>p</mi>+                <mi>k</mi>+              </msup>+              <mi>&#8290;</mi>+              <msup>+                <mi>q</mi>+                <mrow>+                  <mi>n</mi>+                  <mo>−</mo>+                  <mi>k</mi>+                </mrow>+              </msup>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>Pr</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mi>X</mi>+                <mo>≤</mo>+                <mn>54</mn>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>BinomialDist</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mn>54</mn>+                <mo>;</mo>+                <mrow>+                  <mn>100</mn>+                  <mo>,</mo>+                  <mn>.55</mn>+                </mrow>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mn>.45846</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>k</mi>+            <mo>=</mo>+            <mrow>+              <mi>max</mi>+              <mrow>+                <mo stretchy="true" form="prefix">{</mo>+                <mrow>+                  <mrow>+                    <mo stretchy="true" form="prefix">|</mo>+                    <mrow>+                      <mfrac>+                        <mrow>+                          <mi>∂</mi>+                          <mi>f</mi>+                        </mrow>+                        <mrow>+                          <mi>∂</mi>+                          <mi>y</mi>+                        </mrow>+                      </mfrac>+                      <mi>&#8289;</mi>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mi>x</mi>+                          <mo>,</mo>+                          <mi>y</mi>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                    </mrow>+                    <mo stretchy="true" form="postfix">|</mo>+                  </mrow>+                  <mo>:</mo>+                  <mrow>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mi>x</mi>+                        <mo>,</mo>+                        <mi>y</mi>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                    <mo>∈</mo>+                    <mi>D</mi>+                  </mrow>+                </mrow>+                <mo stretchy="true" form="postfix">}</mo>+              </mrow>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">.</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>m</mi>+          <mo>=</mo>+          <mrow>+            <munder>+              <mi>lim</mi>+              <mrow>+                <mi>x</mi>+                <mover>+                  <mo accent="true">→</mo>+                  <mrow />+                </mover>+                <mi>a</mi>+              </mrow>+            </munder>+            <mfrac>+              <mrow>+                <mrow>+                  <mi>f</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mi>x</mi>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mo>−</mo>+                <mrow>+                  <mi>f</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mi>a</mi>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mrow>+              <mrow>+                <mi>x</mi>+                <mo>−</mo>+                <mi>a</mi>+              </mrow>+            </mfrac>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">|</mo>+            <mi>A</mi>+            <mo stretchy="true" form="postfix">|</mo>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo stretchy="true" form="prefix">|</mo>+            <mtable>+              <mtr>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mn>1</mn>+                      <mi>&#8203;</mi>+                      <mn>1</mn>+                    </mrow>+                  </msub>+                </mtd>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mn>1</mn>+                      <mi>&#8203;</mi>+                      <mn>2</mn>+                    </mrow>+                  </msub>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mn>1</mn>+                      <mi>&#8203;</mi>+                      <mi>n</mi>+                    </mrow>+                  </msub>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mn>2</mn>+                      <mi>&#8203;</mi>+                      <mn>1</mn>+                    </mrow>+                  </msub>+                </mtd>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mn>2</mn>+                      <mi>&#8203;</mi>+                      <mn>2</mn>+                    </mrow>+                  </msub>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mn>2</mn>+                      <mi>&#8203;</mi>+                      <mi>n</mi>+                    </mrow>+                  </msub>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mspace width="0.056em" />+                </mtd>+                <mtd>+                  <mspace width="0.056em" />+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mspace width="0.056em" />+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mspace width="0.056em" />+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mspace width="0.056em" />+                </mtd>+                <mtd>+                  <mspace width="0.056em" />+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+              </mtr>+              <mtr>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mi>n</mi>+                      <mi>&#8203;</mi>+                      <mn>1</mn>+                    </mrow>+                  </msub>+                </mtd>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mi>n</mi>+                      <mi>&#8203;</mi>+                      <mn>2</mn>+                    </mrow>+                  </msub>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <mo>⋅</mo>+                </mtd>+                <mtd>+                  <msub>+                    <mi>a</mi>+                    <mrow>+                      <mi>n</mi>+                      <mi>&#8203;</mi>+                      <mi>n</mi>+                    </mrow>+                  </msub>+                </mtd>+              </mtr>+            </mtable>+            <mo stretchy="true" form="postfix">|</mo>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <msub>+                <mi>a</mi>+                <mrow>+                  <mn>1</mn>+                  <mi>&#8203;</mi>+                  <mn>1</mn>+                </mrow>+              </msub>+              <mi>&#8290;</mi>+              <msub>+                <mi>A</mi>+                <mrow>+                  <mn>1</mn>+                  <mi>&#8203;</mi>+                  <mn>1</mn>+                </mrow>+              </msub>+            </mrow>+            <mo>+</mo>+            <mrow>+              <msub>+                <mi>a</mi>+                <mrow>+                  <mn>1</mn>+                  <mi>&#8203;</mi>+                  <mn>2</mn>+                </mrow>+              </msub>+              <mi>&#8290;</mi>+              <msub>+                <mi>A</mi>+                <mrow>+                  <mn>1</mn>+                  <mi>&#8203;</mi>+                  <mn>2</mn>+                </mrow>+              </msub>+            </mrow>+            <mo>+</mo>+            <mi>⋯</mi>+            <mo>+</mo>+            <mrow>+              <msub>+                <mi>a</mi>+                <mrow>+                  <mn>1</mn>+                  <mi>&#8203;</mi>+                  <mi>n</mi>+                </mrow>+              </msub>+              <mi>&#8290;</mi>+              <msub>+                <mi>A</mi>+                <mrow>+                  <mn>1</mn>+                  <mi>&#8203;</mi>+                  <mi>n</mi>+                </mrow>+              </msub>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>=</mo>+            <mn>1</mn>+          </mrow>+          <mrow>+            <mo stretchy="false" form="prefix">(</mo>+            <mtext mathvariant="normal">hl text </mtext>+            <mi>x</mi>+            <mtext mathvariant="normal"> end.</mtext>+            <mo stretchy="false" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>=</mo>+            <mn>1</mn>+          </mrow>+          <mrow>+            <mo stretchy="false" form="prefix">(</mo>+            <mtext mathvariant="normal">hl to URI </mtext>+            <mi>x</mi>+            <mtext mathvariant="normal"> end</mtext>+            <mo stretchy="false" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>=</mo>+            <mn>1</mn>+          </mrow>+          <mrow>+            <mo stretchy="false" form="prefix">(</mo>+            <mtext mathvariant="normal">sex</mtext>+            <mo stretchy="false" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mo>=</mo>+            <mn>1</mn>+          </mrow>+          <mrow>+            <mo stretchy="false" form="prefix">(</mo>+            <mtext mathvariant="normal">jbm</mtext>+            <mo stretchy="false" form="postfix">)</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd />+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mi>f</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mi>x</mi>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mi>&#8290;</mi>+            <mi>g</mi>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">[</mo>+              <mi>y</mi>+              <mo stretchy="false" form="postfix">]</mo>+            </mrow>+            <mi>&#8290;</mi>+            <mi>h</mi>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">{</mo>+              <mi>z</mi>+              <mo stretchy="false" form="postfix">}</mo>+            </mrow>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mrow>+              <mo stretchy="false" form="prefix">⌊</mo>+              <mi>a</mi>+              <mo stretchy="false" form="postfix">⌋</mo>+            </mrow>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">⌈</mo>+              <mi>b</mi>+              <mo stretchy="false" form="postfix">⌉</mo>+            </mrow>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">〈</mo>+              <mi>c</mi>+              <mo stretchy="false" form="postfix">〉</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mfrac>+              <mn>123</mn>+              <mfrac>+                <mn>456</mn>+                <mi>A</mi>+              </mfrac>+            </mfrac>+            <mo stretchy="true" form="postfix">|</mo>+          </mrow>+          <mrow>+            <mo stretchy="true" form="infix">∥</mo>+            <mfrac>+              <mi>A</mi>+              <mfrac>+                <mi>B</mi>+                <mi>A</mi>+              </mfrac>+            </mfrac>+          </mrow>+          <mrow>+            <mrow>+              <mo stretchy="true" form="infix">/</mo>+              <mfrac>+                <mn>1</mn>+                <mfrac>+                  <mn>2</mn>+                  <mi>A</mi>+                </mfrac>+              </mfrac>+              <mo stretchy="true" form="infix">/</mo>+            </mrow>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mfrac>+                <mn>3</mn>+                <mfrac>+                  <mn>4</mn>+                  <mi>A</mi>+                </mfrac>+              </mfrac>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mrow>+            <mo stretchy="true" form="infix">↕</mo>+            <mfrac>+              <mn>5</mn>+              <mfrac>+                <mn>6</mn>+                <mi>A</mi>+              </mfrac>+            </mfrac>+            <mo stretchy="true" form="infix">↕</mo>+          </mrow>+          <mfrac>+            <mn>7</mn>+            <mfrac>+              <mn>8</mn>+              <mi>A</mi>+            </mfrac>+          </mfrac>+          <mrow>+            <mo stretchy="true" form="infix">⇕</mo>+            <mfrac>+              <mfrac>+                <mn>9</mn>+                <mn>20</mn>+              </mfrac>+              <mfrac>+                <mn>10</mn>+                <mi>A</mi>+              </mfrac>+            </mfrac>+            <mo stretchy="true" form="infix">⇕</mo>+          </mrow>+          <mrow>+            <mrow>+              <mo stretchy="true" form="infix">↑</mo>+              <mfrac>+                <mn>11</mn>+                <mfrac>+                  <mn>12</mn>+                  <mi>A</mi>+                </mfrac>+              </mfrac>+              <mo stretchy="true" form="infix">↑</mo>+            </mrow>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="true" form="infix">⇑</mo>+              <mfrac>+                <mn>13</mn>+                <mfrac>+                  <mn>14</mn>+                  <mi>A</mi>+                </mfrac>+              </mfrac>+              <mo stretchy="true" form="infix">⇑</mo>+            </mrow>+          </mrow>+          <mrow>+            <mo stretchy="true" form="infix">↓</mo>+            <mfrac>+              <mn>15</mn>+              <mfrac>+                <mn>16</mn>+                <mi>A</mi>+              </mfrac>+            </mfrac>+            <mo stretchy="true" form="infix">↓</mo>+          </mrow>+          <mrow>+            <mo stretchy="true" form="infix">⇓</mo>+            <mfrac>+              <mn>17</mn>+              <mfrac>+                <mn>18</mn>+                <mi>A</mi>+              </mfrac>+            </mfrac>+            <mo stretchy="true" form="infix">⇓</mo>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mi>&#8290;</mi>+          <mtable>+            <mtr>+              <mtd>+                <mi>x</mi>+              </mtd>+              <mtd>+                <mi>x</mi>+              </mtd>+            </mtr>+            <mtr>+              <mtd>+                <mi>x</mi>+              </mtd>+              <mtd>+                <mi>x</mi>+              </mtd>+            </mtr>+          </mtable>+          <mi>&#8290;</mi>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <msub>+                  <mi>a</mi>+                  <mn>1</mn>+                </msub>+                <mo>,</mo>+                <msub>+                  <mi>a</mi>+                  <mn>2</mn>+                </msub>+                <mo>,</mo>+                <mi>…</mi>+                <mo>,</mo>+                <msub>+                  <mi>a</mi>+                  <mi>n</mi>+                </msub>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mo>⋅</mo>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <msub>+                  <mi>b</mi>+                  <mn>1</mn>+                </msub>+                <mo>,</mo>+                <msub>+                  <mi>b</mi>+                  <mn>2</mn>+                </msub>+                <mo>,</mo>+                <mi>…</mi>+                <mo>,</mo>+                <msub>+                  <mi>b</mi>+                  <mi>n</mi>+                </msub>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <msub>+                <mi>a</mi>+                <mn>1</mn>+              </msub>+              <mi>&#8290;</mi>+              <msubsup>+                <mi>b</mi>+                <mn>1</mn>+                <mi>*</mi>+              </msubsup>+            </mrow>+            <mo>+</mo>+            <mrow>+              <msub>+                <mi>a</mi>+                <mn>2</mn>+              </msub>+              <mi>&#8290;</mi>+              <msubsup>+                <mi>b</mi>+                <mn>2</mn>+                <mi>*</mi>+              </msubsup>+            </mrow>+            <mo>+</mo>+            <mi>⋯</mi>+            <mo>+</mo>+            <mrow>+              <msub>+                <mi>a</mi>+                <mi>n</mi>+              </msub>+              <mi>&#8290;</mi>+              <msubsup>+                <mi>b</mi>+                <mi>n</mi>+                <mi>*</mi>+              </msubsup>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">⌊</mo>+            <mfrac>+              <mi>n</mi>+              <mn>5</mn>+            </mfrac>+            <mo stretchy="true" form="postfix">⌋</mo>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mo stretchy="true" form="prefix">⌊</mo>+            <mfrac>+              <mi>n</mi>+              <msup>+                <mn>5</mn>+                <mn>2</mn>+              </msup>+            </mfrac>+            <mo stretchy="true" form="postfix">⌋</mo>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mo stretchy="true" form="prefix">⌊</mo>+            <mfrac>+              <mi>n</mi>+              <msup>+                <mn>5</mn>+                <mn>3</mn>+              </msup>+            </mfrac>+            <mo stretchy="true" form="postfix">⌋</mo>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mo stretchy="true" form="prefix">⌊</mo>+            <mfrac>+              <mi>n</mi>+              <msup>+                <mn>5</mn>+                <mn>4</mn>+              </msup>+            </mfrac>+            <mo stretchy="true" form="postfix">⌋</mo>+          </mrow>+          <mo>+</mo>+          <mi>⋯</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <msub>+            <mi>x</mi>+            <mn>1</mn>+          </msub>+          <mo>+</mo>+          <mi>⋯</mi>+          <mo>+</mo>+          <msub>+            <mi>x</mi>+            <mi>n</mi>+          </msub>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <munder>+          <munder>+            <mrow>+              <mi>x</mi>+              <mo>+</mo>+              <mi>⋯</mi>+              <mo>+</mo>+              <mi>x</mi>+            </mrow>+            <mo accent="true">︸</mo>+          </munder>+          <mrow>+            <mi>k</mi>+            <mtext mathvariant="normal"> times</mtext>+          </mrow>+        </munder>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mroot>+          <mrow>+            <msub>+              <mi>x</mi>+              <mn>1</mn>+            </msub>+            <mi>&#8290;</mi>+            <msub>+              <mi>x</mi>+              <mn>2</mn>+            </msub>+            <mi>&#8290;</mi>+            <mi>⋯</mi>+            <mi>&#8290;</mi>+            <msub>+              <mi>x</mi>+              <mi>n</mi>+            </msub>+          </mrow>+          <mi>n</mi>+        </mroot>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>n</mi>+            <mo>!</mo>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mn>1</mn>+            <mo>×</mo>+            <mn>2</mn>+            <mo>×</mo>+            <mn>3</mn>+            <mo>×</mo>+            <mn>4</mn>+            <mo>×</mo>+            <mi>⋯</mi>+            <mo>×</mo>+            <mi>n</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>P</mi>+          <mo>:</mo>+          <mrow>+            <mi>a</mi>+            <mo>=</mo>+            <msub>+              <mi>x</mi>+              <mn>0</mn>+            </msub>+            <mo>&lt;</mo>+            <msub>+              <mi>x</mi>+              <mn>1</mn>+            </msub>+            <mo>&lt;</mo>+            <msub>+              <mi>x</mi>+              <mn>2</mn>+            </msub>+            <mo>&lt;</mo>+            <mi>⋯</mi>+            <mo>&lt;</mo>+            <msub>+              <mi>x</mi>+              <mi>n</mi>+            </msub>+            <mo>=</mo>+            <mi>b</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>f</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mi>x</mi>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mfrac>+              <mn>30</mn>+              <mrow>+                <mn>13</mn>+                <mi>&#8290;</mi>+                <mrow>+                  <mi>cos</mi>+                  <mi>&#8289;</mi>+                  <mi>x</mi>+                </mrow>+              </mrow>+            </mfrac>+            <mo>+</mo>+            <mrow>+              <mfrac>+                <mn>10</mn>+                <mn>3</mn>+              </mfrac>+              <mi>&#8290;</mi>+              <msqrt>+                <mrow>+                  <mo stretchy="true" form="prefix">(</mo>+                  <mrow>+                    <mn>100</mn>+                    <mo>+</mo>+                    <mfrac>+                      <mn>9</mn>+                      <mrow>+                        <msup>+                          <mi>cos</mi>+                          <mn>2</mn>+                        </msup>+                        <mi>&#8289;</mi>+                        <mi>x</mi>+                      </mrow>+                    </mfrac>+                    <mo>−</mo>+                    <mrow>+                      <mfrac>+                        <mn>60</mn>+                        <mrow>+                          <mi>cos</mi>+                          <mi>&#8289;</mi>+                          <mi>x</mi>+                        </mrow>+                      </mfrac>+                      <mi>&#8290;</mi>+                      <mrow>+                        <mi>sin</mi>+                        <mi>&#8289;</mi>+                        <mrow>+                          <mo stretchy="true" form="prefix">(</mo>+                          <mrow>+                            <mi>x</mi>+                            <mo>+</mo>+                            <mrow>+                              <mfrac>+                                <mn>29</mn>+                                <mn>90</mn>+                              </mfrac>+                              <mi>&#8290;</mi>+                              <mi>π</mi>+                            </mrow>+                          </mrow>+                          <mo stretchy="true" form="postfix">)</mo>+                        </mrow>+                      </mrow>+                    </mrow>+                  </mrow>+                  <mo stretchy="true" form="postfix">)</mo>+                </mrow>+              </msqrt>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">∫</mo>+              <mrow>+                <mrow>+                  <mi>cos</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>A</mi>+                      <mi>&#8290;</mi>+                      <mi>x</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mi>&#8290;</mi>+                <mrow>+                  <mi>sin</mi>+                  <mi>&#8289;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>B</mi>+                      <mi>&#8290;</mi>+                      <mi>x</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mi>&#8290;</mi>+                <mrow>+                  <mi>ⅆ</mi>+                  <mi>x</mi>+                </mrow>+              </mrow>+            </mrow>+            <mo>=</mo>+            <mrow>+              <mfrac>+                <mrow>+                  <mo>−</mo>+                  <mrow>+                    <mi>cos</mi>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mi>B</mi>+                          <mo>−</mo>+                          <mi>A</mi>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                      <mi>&#8290;</mi>+                      <mi>x</mi>+                    </mrow>+                  </mrow>+                </mrow>+                <mrow>+                  <mn>2</mn>+                  <mi>&#8290;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>B</mi>+                      <mo>−</mo>+                      <mi>A</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mfrac>+              <mo>+</mo>+              <mfrac>+                <mrow>+                  <mo>−</mo>+                  <mrow>+                    <mi>cos</mi>+                    <mi>&#8289;</mi>+                    <mrow>+                      <mrow>+                        <mo stretchy="false" form="prefix">(</mo>+                        <mrow>+                          <mi>B</mi>+                          <mo>+</mo>+                          <mi>A</mi>+                        </mrow>+                        <mo stretchy="false" form="postfix">)</mo>+                      </mrow>+                      <mi>&#8290;</mi>+                      <mi>x</mi>+                    </mrow>+                  </mrow>+                </mrow>+                <mrow>+                  <mn>2</mn>+                  <mi>&#8290;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>B</mi>+                      <mo>+</mo>+                      <mi>A</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mfrac>+              <mo>+</mo>+              <mi>C</mi>+            </mrow>+          </mrow>+          <mtext mathvariant="normal"> .</mtext>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mn>235.3</mn>+            <mo>+</mo>+            <mn>813</mn>+          </mrow>+          <mo>=</mo>+          <mn>1048. 3</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <munder>+              <mi>max</mi>+              <mrow>+                <mrow>+                  <mo>−</mo>+                  <mn>2</mn>+                </mrow>+                <mo>≤</mo>+                <mi>x</mi>+                <mo>≤</mo>+                <mn>2</mn>+              </mrow>+            </munder>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <msup>+                  <mi>x</mi>+                  <mn>3</mn>+                </msup>+                <mo>−</mo>+                <mrow>+                  <mn>6</mn>+                  <mi>&#8290;</mi>+                  <mi>x</mi>+                </mrow>+                <mo>+</mo>+                <mn>3</mn>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mn>8.0</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>x</mi>+            <mi>&#8290;</mi>+            <mi>decade</mi>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mn>2</mn>+            <mi>&#8290;</mi>+            <mi>century</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mfrac>+            <mrow>+              <msup>+                <mi>ⅆ</mi>+                <mn>5</mn>+              </msup>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <msup>+                    <mi>x</mi>+                    <mn>7</mn>+                  </msup>+                  <mo>−</mo>+                  <mrow>+                    <mn>3</mn>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>x</mi>+                      <mn>6</mn>+                    </msup>+                  </mrow>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+            </mrow>+            <mrow>+              <mi>ⅆ</mi>+              <msup>+                <mi>x</mi>+                <mn>5</mn>+              </msup>+            </mrow>+          </mfrac>+          <mtext mathvariant="normal">  </mtext>+          <mfrac>+            <mrow>+              <msup>+                <mi>ⅆ</mi>+                <mi>n</mi>+              </msup>+              <mrow>+                <mi>sin</mi>+                <mi>&#8289;</mi>+                <mi>x</mi>+              </mrow>+            </mrow>+            <mrow>+              <mi>ⅆ</mi>+              <msup>+                <mi>x</mi>+                <mi>n</mi>+              </msup>+            </mrow>+          </mfrac>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <mfrac>+              <msup>+                <mi>ⅆ</mi>+                <mn>3</mn>+              </msup>+              <mrow>+                <mi>ⅆ</mi>+                <msup>+                  <mi>x</mi>+                  <mn>3</mn>+                </msup>+              </mrow>+            </mfrac>+            <mrow>+              <mi>f</mi>+              <mi>&#8289;</mi>+              <mrow>+                <mo stretchy="false" form="prefix">(</mo>+                <mi>x</mi>+                <mo stretchy="false" form="postfix">)</mo>+              </mrow>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <mfrac>+              <msup>+                <mi>ⅆ</mi>+                <mn>2</mn>+              </msup>+              <mrow>+                <mi>ⅆ</mi>+                <msup>+                  <mi>t</mi>+                  <mn>2</mn>+                </msup>+              </mrow>+            </mfrac>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mrow>+                  <mn>4</mn>+                  <mi>&#8290;</mi>+                  <msup>+                    <mi>t</mi>+                    <mn>5</mn>+                  </msup>+                </mrow>+                <mo>−</mo>+                <mrow>+                  <mn>3</mn>+                  <mi>&#8290;</mi>+                  <mi>t</mi>+                </mrow>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>f</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mi>x</mi>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mfrac>+              <mn>30</mn>+              <mrow>+                <mn>13</mn>+                <mi>&#8290;</mi>+                <mrow>+                  <mi>cos</mi>+                  <mi>&#8289;</mi>+                  <mi>x</mi>+                </mrow>+              </mrow>+            </mfrac>+            <mo>+</mo>+            <mrow>+              <mfrac>+                <mn>10</mn>+                <mn>3</mn>+              </mfrac>+              <mi>&#8290;</mi>+              <msqrt>+                <mrow>+                  <mo stretchy="true" form="prefix">(</mo>+                  <mrow>+                    <mn>100</mn>+                    <mo>+</mo>+                    <mfrac>+                      <mn>9</mn>+                      <mrow>+                        <msup>+                          <mi>cos</mi>+                          <mn>2</mn>+                        </msup>+                        <mi>&#8289;</mi>+                        <mi>x</mi>+                      </mrow>+                    </mfrac>+                    <mo>−</mo>+                    <mrow>+                      <mfrac>+                        <mn>60</mn>+                        <mrow>+                          <mi>cos</mi>+                          <mi>&#8289;</mi>+                          <mi>x</mi>+                        </mrow>+                      </mfrac>+                      <mi>&#8290;</mi>+                      <mrow>+                        <mi>sin</mi>+                        <mi>&#8289;</mi>+                        <mrow>+                          <mo stretchy="true" form="prefix">(</mo>+                          <mrow>+                            <mi>x</mi>+                            <mo>+</mo>+                            <mrow>+                              <mfrac>+                                <mn>29</mn>+                                <mn>90</mn>+                              </mfrac>+                              <mi>&#8290;</mi>+                              <mi>π</mi>+                            </mrow>+                          </mrow>+                          <mo stretchy="true" form="postfix">)</mo>+                        </mrow>+                      </mrow>+                    </mrow>+                  </mrow>+                  <mo stretchy="true" form="postfix">)</mo>+                </mrow>+              </msqrt>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">∫</mo>+            <msub>+              <mrow />+              <msup>+                <mstyle mathvariant="bold">+                  <mi>𝐑</mi>+                </mstyle>+                <mn>3</mn>+              </msup>+            </msub>+            <mrow>+              <mrow>+                <mo stretchy="true" form="prefix">(</mo>+                <mrow>+                  <mfrac>+                    <mrow>+                      <msup>+                        <mrow>+                          <mo stretchy="true" form="prefix">|</mo>+                          <msub>+                            <mi>u</mi>+                            <mn>1</mn>+                          </msub>+                          <mo stretchy="true" form="postfix">|</mo>+                        </mrow>+                        <mn>2</mn>+                      </msup>+                      <mo>+</mo>+                      <msup>+                        <mrow>+                          <mo stretchy="true" form="prefix">|</mo>+                          <mrow>+                            <mi>∇</mi>+                            <msub>+                              <mi>u</mi>+                              <mn>0</mn>+                            </msub>+                          </mrow>+                          <mo stretchy="true" form="postfix">|</mo>+                        </mrow>+                        <mn>2</mn>+                      </msup>+                    </mrow>+                    <mn>2</mn>+                  </mfrac>+                  <mo>+</mo>+                  <mfrac>+                    <msup>+                      <mrow>+                        <mo stretchy="true" form="prefix">|</mo>+                        <msub>+                          <mi>u</mi>+                          <mn>0</mn>+                        </msub>+                        <mo stretchy="true" form="postfix">|</mo>+                      </mrow>+                      <mn>6</mn>+                    </msup>+                    <mn>6</mn>+                  </mfrac>+                </mrow>+                <mo stretchy="true" form="postfix">)</mo>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mrow>+          </mrow>+          <mo>&lt;</mo>+          <mi>∞</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <mi>∇×</mi>+                <mstyle mathvariant="bold">+                  <mi>𝐅</mi>+                </mstyle>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+            <mo>⋅</mo>+            <mstyle mathvariant="bold">+              <mi>𝐤</mi>+            </mstyle>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>z</mi>+            <mo>+</mo>+            <mn>1</mn>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>M</mi>+          <mi>&#8290;</mi>+          <mfrac>+            <msup>+              <mi>M</mi>+              <mfrac>+                <mi>M</mi>+                <mi>M</mi>+              </mfrac>+            </msup>+            <mi>M</mi>+          </mfrac>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msub>+              <mi>ⅅ</mi>+              <mi>x</mi>+            </msub>+            <msup>+              <mi>x</mi>+              <mn>2</mn>+            </msup>+          </mrow>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <msub>+              <mi>ⅅ</mi>+              <mi>x</mi>+            </msub>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <msub>+              <mi>ⅅ</mi>+              <mrow>+                <mi>x</mi>+                <mi>&#8203;</mi>+                <mi>x</mi>+              </mrow>+            </msub>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <msub>+              <mi>ⅅ</mi>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+            </msub>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <msub>+              <mi>ⅅ</mi>+              <mrow>+                <mi>x</mi>+                <mi>&#8203;</mi>+                <mi>y</mi>+              </mrow>+            </msub>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <msup>+                  <mi>x</mi>+                  <mn>2</mn>+                </msup>+                <mi>&#8290;</mi>+                <msup>+                  <mi>y</mi>+                  <mn>3</mn>+                </msup>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <msub>+              <mi>ⅅ</mi>+              <mrow>+                <msup>+                  <mi>x</mi>+                  <mi>s</mi>+                </msup>+                <mi>&#8203;</mi>+                <msup>+                  <mi>y</mi>+                  <mi>t</mi>+                </msup>+              </mrow>+            </msub>+            <mrow>+              <mo stretchy="true" form="prefix">(</mo>+              <mrow>+                <msup>+                  <mi>x</mi>+                  <mn>2</mn>+                </msup>+                <mi>&#8290;</mi>+                <msup>+                  <mi>y</mi>+                  <mn>3</mn>+                </msup>+              </mrow>+              <mo stretchy="true" form="postfix">)</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mn>5</mn>+          <mspace width="0.07em" />+          <mrow>+            <mn>24</mn>+            <mo>!</mo>+          </mrow>+          <mspace width="0.07em" />+          <msup>+            <mi>x</mi>+            <mn>6</mn>+          </msup>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mtable>+                <mtr>+                  <mtd>+                    <mrow>+                      <mi>x</mi>+                      <mo>+</mo>+                      <mroot>+                        <mfrac>+                          <msup>+                            <mi>a</mi>+                            <mrow>+                              <mi>y</mi>+                              <mo>−</mo>+                              <mn>1</mn>+                            </mrow>+                          </msup>+                          <mn>12.34</mn>+                        </mfrac>+                        <mn>2</mn>+                      </mroot>+                    </mrow>+                  </mtd>+                  <mtd>+                    <mrow>+                      <mi>sin</mi>+                      <mi>&#8289;</mi>+                      <mi>θ</mi>+                    </mrow>+                  </mtd>+                </mtr>+                <mtr>+                  <mtd>+                    <mspace width="0.056em" />+                  </mtd>+                  <mtd>+                    <mn>1</mn>+                  </mtd>+                </mtr>+              </mtable>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd columnalign="center">+              <mn>0</mn>+            </mtd>+            <mtd columnalign="center">+              <mn>1</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd columnalign="center">+              <mn>1</mn>+            </mtd>+            <mtd columnalign="center">+              <mn>0</mn>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mtable>+            <mtr>+              <mtd columnalign="center">+                <mn>0</mn>+              </mtd>+              <mtd columnalign="center">+                <mrow>+                  <mo>−</mo>+                  <mi>i</mi>+                </mrow>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="center">+                <mi>i</mi>+              </mtd>+              <mtd columnalign="center">+                <mn>0</mn>+              </mtd>+            </mtr>+          </mtable>+          <mo stretchy="true" form="postfix">)</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">[</mo>+          <mtable>+            <mtr>+              <mtd columnalign="center">+                <mn>1</mn>+              </mtd>+              <mtd columnalign="center">+                <mn>0</mn>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="center">+                <mn>0</mn>+              </mtd>+              <mtd columnalign="center">+                <mrow>+                  <mo>−</mo>+                  <mn>1</mn>+                </mrow>+              </mtd>+            </mtr>+          </mtable>+          <mo stretchy="true" form="postfix">]</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">|</mo>+          <mtable>+            <mtr>+              <mtd columnalign="center">+                <mi>a</mi>+              </mtd>+              <mtd columnalign="center">+                <mi>b</mi>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="center">+                <mi>c</mi>+              </mtd>+              <mtd columnalign="center">+                <mi>d</mi>+              </mtd>+            </mtr>+          </mtable>+          <mo stretchy="true" form="postfix">|</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">∥</mo>+          <mtable>+            <mtr>+              <mtd columnalign="center">+                <mn>1</mn>+              </mtd>+              <mtd columnalign="center">+                <mn>0</mn>+              </mtd>+              <mtd columnalign="center">+                <mn>1</mn>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="center">+                <mn>0</mn>+              </mtd>+              <mtd columnalign="center">+                <mn>11</mn>+              </mtd>+              <mtd columnalign="center">+                <mspace width="0.056em" />+              </mtd>+            </mtr>+          </mtable>+          <mo stretchy="true" form="infix">∥</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd columnalign="center">+              <mn>1</mn>+            </mtd>+            <mtd columnalign="center">+              <mn>2</mn>+            </mtd>+            <mtd columnalign="center">+              <mn>3</mn>+            </mtd>+          </mtr>+          <mtr>+            <mtd columnalign="center">+              <mn>4</mn>+            </mtd>+            <mtd columnalign="center">+              <mn>5</mn>+            </mtd>+            <mtd columnalign="center">+              <mspace width="0.056em" />+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mtext mathvariant="normal">testing </mtext>+          <mtable>+            <mtr>+              <mtd>+                <mrow>+                  <mi>sin</mi>+                  <mi>&#8289;</mi>+                  <mi>θ</mi>+                </mrow>+              </mtd>+            </mtr>+          </mtable>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mover>+            <mi>a</mi>+            <mo accent="true">̂</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>b</mi>+            <mo accent="true">ˇ</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>c</mi>+            <mo accent="true">˜</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>d</mi>+            <mo accent="true">´</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>e</mi>+            <mo accent="true">`</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>f</mi>+            <mo accent="true">˘</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>g</mi>+            <mo accent="true">¯</mo>+          </mover>+          <mo>+</mo>+          <mi>h</mi>+          <mo>+</mo>+          <mover>+            <mi>i</mi>+            <mo accent="true">˚</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>j</mi>+            <mo accent="true">˙</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>k</mi>+            <mo accent="true">¨</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>l</mi>+            <mo accent="true">⃛</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>m</mi>+            <mo accent="true">⃜</mo>+          </mover>+          <mo>+</mo>+          <mover>+            <mi>n</mi>+            <mo accent="true">→</mo>+          </mover>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>f</mi>+            <mi>&#8289;</mi>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <mi>g</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mi>x</mi>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mrow>+              <msup>+                <mi>sin</mi>+                <mn>3</mn>+              </msup>+              <mi>&#8289;</mi>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mrow>+                <mi>sin</mi>+                <mi>&#8289;</mi>+                <msup>+                  <mi>x</mi>+                  <mn>2</mn>+                </msup>+              </mrow>+              <mi>&#8290;</mi>+              <mrow>+                <mi>sin</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="true" form="prefix">(</mo>+                  <mrow>+                    <mi>sin</mi>+                    <mi>&#8289;</mi>+                    <msup>+                      <mi>x</mi>+                      <mn>2</mn>+                    </msup>+                  </mrow>+                  <mo stretchy="true" form="postfix">)</mo>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mo stretchy="true" form="prefix">(</mo>+            <mrow>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+              <mo>+</mo>+              <mn>12</mn>+            </mrow>+            <mo stretchy="true" form="postfix">)</mo>+          </mrow>+          <mo>+</mo>+          <mn>1234</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>x</mi>+                <mo>=</mo>+                <mn>1</mn>+              </mrow>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">not</mtext>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">here</mtext>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <msup>+                <mi>x</mi>+                <mn>2</mn>+              </msup>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">merged</mtext>+            </mtd>+            <mtd>+              <msub>+                <mi>y</mi>+                <mn>1</mn>+              </msub>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">jbm</mtext>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">lowlife</mtext>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">The end.</mtext>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <msup>+              <mi>x</mi>+              <mn>2</mn>+            </msup>+            <mo>+</mo>+            <msup>+              <mi>y</mi>+              <mn>2</mn>+            </msup>+          </mrow>+          <mo>=</mo>+          <mrow>+            <msup>+              <mi>z</mi>+              <mn>2</mn>+            </msup>+            <mo>−</mo>+            <mn>1</mn>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msup>+                    <mi>x</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>+</mo>+                  <msup>+                    <mi>y</mi>+                    <mn>2</mn>+                  </msup>+                </mrow>+                <mo>=</mo>+                <mrow>+                  <msup>+                    <mi>z</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>−</mo>+                  <mn>1</mn>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mi>x</mi>+                  <mo>+</mo>+                  <msup>+                    <mi>y</mi>+                    <mn>3</mn>+                  </msup>+                </mrow>+                <mo>=</mo>+                <msup>+                  <mi>z</mi>+                  <mn>3</mn>+                </msup>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msup>+                    <mi>x</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>+</mo>+                  <msup>+                    <mi>y</mi>+                    <mn>2</mn>+                  </msup>+                </mrow>+                <mo>=</mo>+                <mrow>+                  <msup>+                    <mi>z</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>−</mo>+                  <mn>1</mn>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mi>x</mi>+                  <mo>+</mo>+                  <msup>+                    <mi>y</mi>+                    <mn>3</mn>+                  </msup>+                </mrow>+                <mo>=</mo>+                <msup>+                  <mi>z</mi>+                  <mn>3</mn>+                </msup>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msup>+                    <mi>x</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>+</mo>+                  <msup>+                    <mi>y</mi>+                    <mn>2</mn>+                  </msup>+                </mrow>+                <mo>=</mo>+                <mn>1</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mi>x</mi>+                <mo>=</mo>+                <msqrt>+                  <mrow>+                    <mn>1</mn>+                    <mo>−</mo>+                    <msup>+                      <mi>y</mi>+                      <mn>2</mn>+                    </msup>+                  </mrow>+                </msqrt>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <msup>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>a</mi>+                      <mo>+</mo>+                      <mi>b</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                  <mn>2</mn>+                </msup>+                <mo>=</mo>+                <mrow>+                  <msup>+                    <mi>a</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>+</mo>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <mi>a</mi>+                    <mi>&#8290;</mi>+                    <mi>b</mi>+                  </mrow>+                  <mo>+</mo>+                  <msup>+                    <mi>b</mi>+                    <mn>2</mn>+                  </msup>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>a</mi>+                      <mo>+</mo>+                      <mi>b</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                  <mo>⋅</mo>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>a</mi>+                      <mo>−</mo>+                      <mi>b</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+                <mo>=</mo>+                <mrow>+                  <msup>+                    <mi>a</mi>+                    <mn>2</mn>+                  </msup>+                  <mo>−</mo>+                  <msup>+                    <mi>b</mi>+                    <mn>2</mn>+                  </msup>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">First line of equation</mtext>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">Middle line of equation</mtext>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">Other middle line of equation</mtext>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">Last line of equation</mtext>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msub>+                    <mi>L</mi>+                    <mn>1</mn>+                  </msub>+                  <mo>=</mo>+                  <msub>+                    <mi>R</mi>+                    <mn>1</mn>+                  </msub>+                </mrow>+                <mtext mathvariant="normal">  </mtext>+                <mrow>+                  <msub>+                    <mi>L</mi>+                    <mn>2</mn>+                  </msub>+                  <mo>=</mo>+                  <msub>+                    <mi>R</mi>+                    <mn>2</mn>+                  </msub>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <msub>+                    <mi>L</mi>+                    <mn>3</mn>+                  </msub>+                  <mo>=</mo>+                  <msub>+                    <mi>R</mi>+                    <mn>3</mn>+                  </msub>+                </mrow>+                <mtext mathvariant="normal">  </mtext>+                <mrow>+                  <msub>+                    <mi>L</mi>+                    <mn>4</mn>+                  </msub>+                  <mo>=</mo>+                  <msub>+                    <mi>R</mi>+                    <mn>4</mn>+                  </msub>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <msup>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <mi>a</mi>+                      <mo>+</mo>+                      <mi>b</mi>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                  <mn>4</mn>+                </msup>+                <mo>=</mo>+                <mrow>+                  <msup>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mi>a</mi>+                        <mo>+</mo>+                        <mi>b</mi>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                    <mn>2</mn>+                  </msup>+                  <mi>&#8290;</mi>+                  <msup>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mi>a</mi>+                        <mo>+</mo>+                        <mi>b</mi>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                    <mn>2</mn>+                  </msup>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mo>=</mo>+                <mrow>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <msup>+                        <mi>a</mi>+                        <mn>2</mn>+                      </msup>+                      <mo>+</mo>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8290;</mi>+                        <mi>a</mi>+                        <mi>&#8290;</mi>+                        <mi>b</mi>+                      </mrow>+                      <mo>+</mo>+                      <msup>+                        <mi>b</mi>+                        <mn>2</mn>+                      </msup>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                  <mi>&#8290;</mi>+                  <mrow>+                    <mo stretchy="false" form="prefix">(</mo>+                    <mrow>+                      <msup>+                        <mi>a</mi>+                        <mn>2</mn>+                      </msup>+                      <mo>+</mo>+                      <mrow>+                        <mn>2</mn>+                        <mi>&#8290;</mi>+                        <mi>a</mi>+                        <mi>&#8290;</mi>+                        <mi>b</mi>+                      </mrow>+                      <mo>+</mo>+                      <msup>+                        <mi>b</mi>+                        <mn>2</mn>+                      </msup>+                    </mrow>+                    <mo stretchy="false" form="postfix">)</mo>+                  </mrow>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mo>=</mo>+                <mrow>+                  <msup>+                    <mi>a</mi>+                    <mn>4</mn>+                  </msup>+                  <mo>+</mo>+                  <mrow>+                    <mn>4</mn>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>a</mi>+                      <mn>3</mn>+                    </msup>+                    <mi>&#8290;</mi>+                    <mi>b</mi>+                  </mrow>+                  <mo>+</mo>+                  <mrow>+                    <mn>6</mn>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>a</mi>+                      <mn>2</mn>+                    </msup>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>b</mi>+                      <mn>2</mn>+                    </msup>+                  </mrow>+                  <mo>+</mo>+                  <mrow>+                    <mn>4</mn>+                    <mi>&#8290;</mi>+                    <mi>a</mi>+                    <mi>&#8290;</mi>+                    <msup>+                      <mi>b</mi>+                      <mn>3</mn>+                    </msup>+                  </mrow>+                  <mo>+</mo>+                  <msup>+                    <mi>b</mi>+                    <mn>4</mn>+                  </msup>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mtable>+            <mtr>+              <mtd>+                <mrow>+                  <mrow>+                    <msup>+                      <mi>x</mi>+                      <mn>2</mn>+                    </msup>+                    <mo>+</mo>+                    <msup>+                      <mi>y</mi>+                      <mn>2</mn>+                    </msup>+                  </mrow>+                  <mo>=</mo>+                  <mn>1</mn>+                </mrow>+              </mtd>+            </mtr>+            <mtr>+              <mtd>+                <mrow>+                  <mi>x</mi>+                  <mo>=</mo>+                  <msqrt>+                    <mrow>+                      <mn>1</mn>+                      <mo>−</mo>+                      <msup>+                        <mi>y</mi>+                        <mn>2</mn>+                      </msup>+                    </mrow>+                  </msqrt>+                </mrow>+              </mtd>+            </mtr>+          </mtable>+          <mtext mathvariant="normal">  </mtext>+          <mtable>+            <mtr>+              <mtd>+                <mrow>+                  <msup>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mi>a</mi>+                        <mo>+</mo>+                        <mi>b</mi>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                    <mn>2</mn>+                  </msup>+                  <mo>=</mo>+                  <mrow>+                    <msup>+                      <mi>a</mi>+                      <mn>2</mn>+                    </msup>+                    <mo>+</mo>+                    <mrow>+                      <mn>2</mn>+                      <mi>&#8290;</mi>+                      <mi>a</mi>+                      <mi>&#8290;</mi>+                      <mi>b</mi>+                    </mrow>+                    <mo>+</mo>+                    <msup>+                      <mi>b</mi>+                      <mn>2</mn>+                    </msup>+                  </mrow>+                </mrow>+              </mtd>+            </mtr>+            <mtr>+              <mtd>+                <mrow>+                  <mrow>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mi>a</mi>+                        <mo>+</mo>+                        <mi>b</mi>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                    <mo>⋅</mo>+                    <mrow>+                      <mo stretchy="false" form="prefix">(</mo>+                      <mrow>+                        <mi>a</mi>+                        <mo>−</mo>+                        <mi>b</mi>+                      </mrow>+                      <mo stretchy="false" form="postfix">)</mo>+                    </mrow>+                  </mrow>+                  <mo>=</mo>+                  <mrow>+                    <msup>+                      <mi>a</mi>+                      <mn>2</mn>+                    </msup>+                    <mo>−</mo>+                    <msup>+                      <mi>b</mi>+                      <mn>2</mn>+                    </msup>+                  </mrow>+                </mrow>+              </mtd>+            </mtr>+          </mtable>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">Vertex</mtext>+            </mtd>+            <mtd>+              <mrow>+                <mi>V</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mrow>+                    <mn>0</mn>+                    <mo>,</mo>+                    <mn>0</mn>+                  </mrow>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">Focus</mtext>+            </mtd>+            <mtd>+              <mrow>+                <mi>F</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="false" form="prefix">(</mo>+                  <mrow>+                    <mn>0</mn>+                    <mo>,</mo>+                    <mi>p</mi>+                  </mrow>+                  <mo stretchy="false" form="postfix">)</mo>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">Directrix</mtext>+            </mtd>+            <mtd>+              <mrow>+                <mi>y</mi>+                <mo>=</mo>+                <mrow>+                  <mo>−</mo>+                  <mi>p</mi>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mfrac>+              <mi>ⅆ</mi>+              <mrow>+                <mi>ⅆ</mi>+                <mi>x</mi>+              </mrow>+            </mfrac>+            <mtext mathvariant="normal">  </mtext>+            <mrow>+              <mo stretchy="false" form="prefix">(</mo>+              <mrow>+                <msup>+                  <mi>csc</mi>+                  <mrow>+                    <mo>−</mo>+                    <mn>1</mn>+                  </mrow>+                </msup>+                <mi>&#8289;</mi>+                <mi>x</mi>+              </mrow>+              <mo stretchy="false" form="postfix">)</mo>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mo>−</mo>+            <mfrac>+              <mn>1</mn>+              <mrow>+                <mrow>+                  <mo stretchy="true" form="prefix">|</mo>+                  <mi>x</mi>+                  <mo stretchy="true" form="postfix">|</mo>+                </mrow>+                <mi>&#8290;</mi>+                <msqrt>+                  <mrow>+                    <msup>+                      <mi>x</mi>+                      <mn>2</mn>+                    </msup>+                    <mo>−</mo>+                    <mn>1</mn>+                  </mrow>+                </msqrt>+              </mrow>+            </mfrac>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <msup>+                <mi>tanh</mi>+                <mrow>+                  <mo>−</mo>+                  <mn>1</mn>+                </mrow>+              </msup>+              <mi>&#8289;</mi>+              <mi>x</mi>+            </mrow>+            <mo>=</mo>+            <mrow>+              <mfrac>+                <mn>1</mn>+                <mn>2</mn>+              </mfrac>+              <mi>&#8290;</mi>+              <mrow>+                <mi>ln</mi>+                <mi>&#8289;</mi>+                <mrow>+                  <mo stretchy="true" form="prefix">(</mo>+                  <mfrac>+                    <mrow>+                      <mn>1</mn>+                      <mo>+</mo>+                      <mi>x</mi>+                    </mrow>+                    <mrow>+                      <mn>1</mn>+                      <mo>−</mo>+                      <mi>x</mi>+                    </mrow>+                  </mfrac>+                  <mo stretchy="true" form="postfix">)</mo>+                </mrow>+              </mrow>+            </mrow>+          </mrow>+          <mtext mathvariant="normal">  </mtext>+          <mrow>+            <mrow>+              <mo>−</mo>+              <mn>1</mn>+            </mrow>+            <mo>&lt;</mo>+            <mi>x</mi>+            <mo>&lt;</mo>+            <mn>1</mn>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mrow>+              <mi>∠</mi>+              <mi>α</mi>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mi>∠</mi>+              <mi>A</mi>+              <mi>B</mi>+              <mi>C</mi>+            </mrow>+            <mo>+</mo>+            <mrow>+              <mi>∠</mi>+              <mn>1</mn>+            </mrow>+          </mrow>+          <mo>=</mo>+          <mrow>+            <mi>▵</mi>+            <mi>a</mi>+            <mi>b</mi>+            <mi>c</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>y</mi>+          <mo>=</mo>+          <mrow>+            <msup>+              <mi>e</mi>+              <mrow>+                <mo>−</mo>+                <mrow>+                  <mo>∫</mo>+                  <mrow>+                    <mi>P</mi>+                    <mi>&#8290;</mi>+                    <mrow>+                      <mi>ⅆ</mi>+                      <mi>x</mi>+                    </mrow>+                  </mrow>+                </mrow>+              </mrow>+            </msup>+            <mi>&#8290;</mi>+            <mrow>+              <mo stretchy="true" form="prefix">[</mo>+              <mrow>+                <mrow>+                  <mo>∫</mo>+                  <mrow>+                    <msup>+                      <mi>e</mi>+                      <mrow>+                        <mo>∫</mo>+                        <mrow>+                          <mi>P</mi>+                          <mi>&#8290;</mi>+                          <mrow>+                            <mi>ⅆ</mi>+                            <mi>x</mi>+                          </mrow>+                        </mrow>+                      </mrow>+                    </msup>+                    <mi>&#8290;</mi>+                    <mi>Q</mi>+                    <mi>&#8290;</mi>+                    <mrow>+                      <mi>ⅆ</mi>+                      <mi>x</mi>+                    </mrow>+                  </mrow>+                </mrow>+                <mo>+</mo>+                <mi>c</mi>+              </mrow>+              <mo stretchy="true" form="postfix">]</mo>+            </mrow>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mrow>+            <mn>1</mn>+            <mo>+</mo>+            <msup>+              <mi>y</mi>+              <mn>3</mn>+            </msup>+          </mrow>+        </mrow>+      </mtd>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mo>=</mo>+          <mrow>+            <mn>1</mn>+            <mo>+</mo>+            <mi>y</mi>+          </mrow>+        </mrow>+      </mtd>+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>$</mi>+            <mn>1.00</mn>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>25</mn>+            <mi>¢</mi>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>3</mn>+            <mi>£</mi>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>2.45</mn>+            <mi>¤</mi>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>0.7</mn>+            <mi>¥</mi>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mi>a</mi>+            <mi>₠</mi>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>20</mn>+            <mi>₣</mi>+          </mrow>+          <mo>+</mo>+          <mrow>+            <mn>30</mn>+            <mi>₤</mi>+          </mrow>+          <mo>−</mo>+          <mrow>+            <mn>4.56</mn>+            <mi>₧</mi>+          </mrow>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mrow>+                    <mn>2</mn>+                    <mi>&#8290;</mi>+                    <mi>x</mi>+                  </mrow>+                  <mo>+</mo>+                  <mi>y</mi>+                </mrow>+                <mo>=</mo>+                <mn>3</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mrow>+                    <mn>3</mn>+                    <mi>&#8290;</mi>+                    <mi>x</mi>+                  </mrow>+                  <mo>−</mo>+                  <mrow>+                    <mn>4</mn>+                    <mi>&#8290;</mi>+                    <mi>y</mi>+                  </mrow>+                </mrow>+                <mo>=</mo>+                <mn>5</mn>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mrow>+                  <mi>a</mi>+                  <mo>+</mo>+                  <mi>b</mi>+                </mrow>+                <mo>=</mo>+                <mrow>+                  <mi>c</mi>+                  <mo>+</mo>+                  <mn>12345</mn>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mtext mathvariant="normal">Unrestricted</mtext>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">   </mtext>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">Symmetric</mtext>+            </mtd>+            <mtd>+              <mspace width="1.0em" />+            </mtd>+            <mtd>+              <mtext mathvariant="normal">Antisymmetric</mtext>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">  </mtext>+            </mtd>+            <mtd>+              <mtext mathvariant="normal">Triangular</mtext>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>a</mi>+          <mo>≠</mo>+          <mi>b</mi>+          <mo>≠</mo>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>c</mi>+          <mo>≮</mo>+          <mi>d</mi>+          <mo>≮</mo>+          <mi>y</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>e</mi>+          <mo>≯</mo>+          <mi>f</mi>+          <mo>≯</mo>+          <mn>11</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>g</mi>+          <mo>∉</mo>+          <mi>h</mi>+          <mo>∉</mo>+          <mi>Z</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>k</mi>+          <mo>≁</mo>+          <mi>l</mi>+          <mo>≁</mo>+          <mn>3</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mrow>+            <mi>A</mi>+            <mo>⊄</mo>+            <mi>B</mi>+          </mrow>+          <mo>⊂</mo>+          <mi>C</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>A</mi>+          <mo>⊈</mo>+          <mi>B</mi>+          <mo>⊈</mo>+          <mi>C</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mn>10</mn>+          <mo>≢</mo>+          <mn>11</mn>+          <mo>≡</mo>+          <mn>12</mn>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>x</mi>+          <mi>≰⃥</mi>+          <mi>y</mi>+          <mi>≰⃥</mi>+          <mi>z</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mover>+            <mi>lim</mi>+            <mo accent="true">¯</mo>+          </mover>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <munder>+            <mi>lim</mi>+            <mo accent="true">̲</mo>+          </munder>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <munder>+            <mi>lim</mi>+            <mo accent="true">→</mo>+          </munder>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <munder>+            <mi>lim</mi>+            <mo accent="true">←</mo>+          </munder>+          <mi>x</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mtable>+          <mtr>+            <mtd>+              <mrow>+                <mi>x</mi>+                <mo>=</mo>+                <mrow>+                  <mi>y</mi>+                  <mo>+</mo>+                  <mi>z</mi>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+          <mtr>+            <mtd>+              <mrow>+                <mo>=</mo>+                <mrow>+                  <mi>k</mi>+                  <mo>+</mo>+                  <mi>m</mi>+                </mrow>+              </mrow>+            </mtd>+          </mtr>+        </mtable>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mtable>+            <mtr>+              <mtd columnalign="left">+                <mrow>+                  <mtext mathvariant="normal">College Algebra </mtext>+                  <mtext mathvariant="normal">Second Edition</mtext>+                </mrow>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="left">+                <mrow>+                  <mtext mathvariant="normal">James Stewart </mtext>+                  <mtext mathvariant="normal">McMaster Universitiy</mtext>+                </mrow>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="left">+                <mrow>+                  <mtext mathvariant="normal">Lothar Redlin</mtext>+                  <mtext mathvariant="normal"> Pennsylvania State University</mtext>+                </mrow>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="left">+                <mrow>+                  <mtext mathvariant="normal">Saleem Watson</mtext>+                  <mtext mathvariant="normal"> California State University, Long Beach</mtext>+                </mrow>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="left">+                <mtext mathvariant="normal">Copyright 1996, ISBN 0 534-33983-2</mtext>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="left">+                <mtext mathvariant="normal">Brooks/Cole Publishing Company</mtext>+              </mtd>+            </mtr>+            <mtr>+              <mtd columnalign="left">+                <mtext mathvariant="normal">An International Thomson Publishing Company</mtext>+              </mtd>+            </mtr>+          </mtable>+          <mspace width="0.278em" />+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">{</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">↑</mo>+          <munderover>+            <mo>∑</mo>+            <mn>1</mn>+            <mn>2</mn>+          </munderover>+          <mo stretchy="true" form="postfix">}</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">〈</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">|</mo>+          <munderover>+            <mo>∑</mo>+            <mn>1</mn>+            <mn>2</mn>+          </munderover>+          <mo stretchy="true" form="postfix">〉</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">⌈</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">|</mo>+          <munderover>+            <mo>∑</mo>+            <mn>1</mn>+            <mn>2</mn>+          </munderover>+          <mo stretchy="true" form="postfix">⌉</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">⇓</mo>+          <mrow>+            <mfrac>+              <mfrac>+                <mn>1</mn>+                <mn>2</mn>+              </mfrac>+              <mfrac>+                <mn>1</mn>+                <mn>2</mn>+              </mfrac>+            </mfrac>+            <mo stretchy="true" form="infix">↕</mo>+            <munderover>+              <mo>∑</mo>+              <mn>1</mn>+              <mn>2</mn>+            </munderover>+          </mrow>+          <mo stretchy="true" form="infix">⇓</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">[</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">]</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">)</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">{</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">}</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">〈</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">〉</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">⌊</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">⌈</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">⌉</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">↑</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">↑</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">↓</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">↓</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">↕</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">↕</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">⇑</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">⇑</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">⇓</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">⇓</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">⇕</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">⇕</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+          <mfrac>+            <mn>1</mn>+            <mn>2</mn>+          </mfrac>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">\arrowvert</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">\arrowvert</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">\Arrowvert</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">\Arrowvert</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">\bracevert</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">\bracevert</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">|</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">|</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">|</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">|</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">|</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">|</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">∥</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">∥</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">∥</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">∥</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">/</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">/</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="infix">\</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="infix">\</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">⎱</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">⎰</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">\lgroup</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">\rgroup</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">⌞</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">⌟</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">⌜</mo>+          <mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+            <mfrac>+              <mn>1</mn>+              <mn>2</mn>+            </mfrac>+          </mfrac>+          <mo stretchy="true" form="postfix">⌝</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mi>A</mi>+          <munderover>+            <mo accent="true">←</mo>+            <mspace width="0.056em" />+            <mrow>+              <mi>n</mi>+              <mo>+</mo>+              <mi>μ</mi>+              <mo>−</mo>+              <mn>1</mn>+            </mrow>+          </munderover>+          <mi>B</mi>+          <munderover>+            <mo accent="true">→</mo>+            <mi>T</mi>+            <mrow>+              <mi>n</mi>+              <mo>±</mo>+              <mi>i</mi>+              <mo>−</mo>+              <mn>1</mn>+            </mrow>+          </munderover>+          <mi>C</mi>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mn>1</mn>+          <mrow>+            <msqrt>+              <mn>2</mn>+            </msqrt>+            <mo>+</mo>+            <mfrac>+              <mn>1</mn>+              <mrow>+                <msqrt>+                  <mn>3</mn>+                </msqrt>+                <mo>+</mo>+                <mfrac>+                  <mn>1</mn>+                  <mrow>+                    <msqrt>+                      <mn>4</mn>+                    </msqrt>+                    <mo>+</mo>+                    <mfrac>+                      <mn>1</mn>+                      <mrow>+                        <msqrt>+                          <mn>5</mn>+                        </msqrt>+                        <mo>+</mo>+                        <mfrac>+                          <mn>1</mn>+                          <mrow>+                            <msqrt>+                              <mn>6</mn>+                            </msqrt>+                            <mo>+</mo>+                            <mi>…</mi>+                          </mrow>+                        </mfrac>+                      </mrow>+                    </mfrac>+                  </mrow>+                </mfrac>+              </mrow>+            </mfrac>+          </mrow>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mn>1</mn>+          <mrow>+            <msqrt>+              <mn>2</mn>+            </msqrt>+            <mo>+</mo>+            <mfrac>+              <mn>1</mn>+              <mrow>+                <msqrt>+                  <mn>3</mn>+                </msqrt>+                <mo>+</mo>+                <mfrac>+                  <mn>1</mn>+                  <mrow>+                    <msqrt>+                      <mn>4</mn>+                    </msqrt>+                    <mo>+</mo>+                    <mfrac>+                      <mn>1</mn>+                      <mrow>+                        <msqrt>+                          <mn>5</mn>+                        </msqrt>+                        <mo>+</mo>+                        <mfrac>+                          <mn>1</mn>+                          <mrow>+                            <msqrt>+                              <mn>6</mn>+                            </msqrt>+                            <mo>+</mo>+                            <mi>…</mi>+                          </mrow>+                        </mfrac>+                      </mrow>+                    </mfrac>+                  </mrow>+                </mfrac>+              </mrow>+            </mfrac>+          </mrow>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mrow>+          <mo stretchy="true" form="prefix">(</mo>+          <mfrac>+            <mrow>+              <mi>sin</mi>+              <mi>&#8289;</mi>+              <mi>θ</mi>+            </mrow>+            <mi>M</mi>+          </mfrac>+          <mo stretchy="true" form="postfix">⌋</mo>+        </mrow>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>+            <mi>θ</mi>+          </mrow>+          <mi>M</mi>+        </mfrac>+      </mtd>+      <mtd />+    </mtr>+    <mtr>+      <mtd>+        <mfrac>+          <mrow>+            <mi>sin</mi>+            <mi>&#8289;</mi>             <mi>θ</mi>           </mrow>           <mi>M</mi>
tests/writers/complex3.omml view
@@ -24296,92 +24296,104 @@       </m:mr>       <m:mr>         <m:e>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="̂" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>a</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="ˇ" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>b</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>c</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="´" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>d</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="`" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>e</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˘" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>f</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>@@ -24409,92 +24421,104 @@             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˚" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>i</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="˙" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>j</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="¨" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>k</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃛" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>l</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="⃜" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>m</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>           <m:r>             <m:rPr />             <m:t>+</m:t>           </m:r>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="→" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr />                 <m:t>n</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>         </m:e>         <m:e />       </m:mr>
tests/writers/complex3.tex view
@@ -53,7 +53,7 @@ a & \text{if} & {a \geq 0} \\ {- a} & \text{if} & {a < 0} \\ \end{array} \right.} & \\-{a^{n} = \underset{n\text{ factors}}{\underbrace{a \cdot a \cdot \cdots \cdot a}}} & \\+{a^{n} = \underset{n\text{ factors}}{\underset{\}\ }{a \cdot a \cdot \cdots \cdot a}}} & \\ {\left( \frac{a}{b} \right)^{- n} = \left( \frac{b}{a} \right)^{n}} & \\ {{\sqrt[n]{a} = b}\text{  means }{b^{n} = a}\text{.}} & \\ {\sqrt[4]{\frac{16}{81}} = \frac{\sqrt[4]{16}}{\sqrt[4]{81}} = \frac{2}{3}} & \\@@ -348,7 +348,7 @@ {{\left( {a_{1},a_{2},\ldots,a_{n}} \right) \cdot \left( {b_{1},b_{2},\ldots,b_{n}} \right)} = {{a_{1}b_{1}^{*}} + {a_{2}b_{2}^{*}} + \cdots + {a_{n}b_{n}^{*}}}} & \\ {\left\lfloor \frac{n}{5} \right\rfloor + \left\lfloor \frac{n}{5^{2}} \right\rfloor + \left\lfloor \frac{n}{5^{3}} \right\rfloor + \left\lfloor \frac{n}{5^{4}} \right\rfloor + \cdots} & \\ {x_{1} + \cdots + x_{n}} & \\-\underset{k\text{ times}}{\underbrace{x + \cdots + x}} & \\+\underset{k\text{ times}}{\underset{\}\ }{x + \cdots + x}} & \\ \sqrt[n]{x_{1}x_{2}\cdots x_{n}} & \\ {{n!} = {1 \times 2 \times 3 \times 4 \times \cdots \times n}} & \\ {P:{a = x_{0} < x_{1} < x_{2} < \cdots < x_{n} = b}} & \\
tests/writers/complex_number.mml view
@@ -9,7 +9,7 @@           <munder>             <munder>               <mi>a</mi>-              <mo accent="true">︸</mo>+              <mo accent="true">⏟</mo>             </munder>             <mtext mathvariant="normal">real</mtext>           </munder>@@ -22,12 +22,12 @@                   <mi>i</mi>                 </mstyle>               </mrow>-              <mo accent="true">︸</mo>+              <mo accent="true">⏟</mo>             </munder>             <mtext mathvariant="normal">imaginary</mtext>           </munder>         </mrow>-        <mo accent="true">︷</mo>+        <mo accent="true">⏞</mo>       </mover>       <mtext mathvariant="normal">complex number</mtext>     </mover>
tests/writers/complex_number.omml view
@@ -14,10 +14,12 @@     </m:r>     <m:limUpp>       <m:e>-        <m:acc>-          <m:accPr>-            <m:chr m:val="︷" />-          </m:accPr>+        <m:groupChr>+          <m:groupChrPr>+            <m:chr m:val="⏞" />+            <m:pos m:val="top" />+            <m:vertJc m:val="bot" />+          </m:groupChrPr>           <m:e>             <m:limLow>               <m:e>@@ -31,7 +33,7 @@                   <m:lim>                     <m:r>                       <m:rPr />-                      <m:t>︸</m:t>+                      <m:t>⏟</m:t>                     </m:r>                   </m:lim>                 </m:limLow>@@ -67,7 +69,7 @@                   <m:lim>                     <m:r>                       <m:rPr />-                      <m:t>︸</m:t>+                      <m:t>⏟</m:t>                     </m:r>                   </m:lim>                 </m:limLow>@@ -82,7 +84,7 @@               </m:lim>             </m:limLow>           </m:e>-        </m:acc>+        </m:groupChr>       </m:e>       <m:lim>         <m:r>
tests/writers/d.mml view
@@ -70,7 +70,7 @@         <mtext mathvariant="normal">dash</mtext>       </mtd>       <mtd>-        <mo>‐</mo>+        <mi>‐</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">dcaron</mtext>       </mtd>       <mtd>-        <mo>ď</mo>+        <mi>ď</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">Dcaron</mtext>       </mtd>       <mtd>-        <mo>Ď</mo>+        <mi>Ď</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">dcy</mtext>       </mtd>       <mtd>-        <mo>д</mo>+        <mi>д</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">Dcy</mtext>       </mtd>       <mtd>-        <mo>Д</mo>+        <mi>Д</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">dd</mtext>       </mtd>       <mtd>-        <mo>ⅆ</mo>+        <mi>ⅆ</mi>       </mtd>     </mtr>     <mtr>@@ -150,7 +150,7 @@         <mtext mathvariant="normal">DD</mtext>       </mtd>       <mtd>-        <mo>ⅅ</mo>+        <mi>ⅅ</mi>       </mtd>     </mtr>     <mtr>@@ -190,7 +190,7 @@         <mtext mathvariant="normal">deg</mtext>       </mtd>       <mtd>-        <mo>°</mo>+        <mi>°</mi>       </mtd>     </mtr>     <mtr>@@ -198,7 +198,7 @@         <mtext mathvariant="normal">Del</mtext>       </mtd>       <mtd>-        <mo>∇</mo>+        <mi>∇</mi>       </mtd>     </mtr>     <mtr>@@ -222,7 +222,7 @@         <mtext mathvariant="normal">demptyv</mtext>       </mtd>       <mtd>-        <mo>⦱</mo>+        <mi>⦱</mi>       </mtd>     </mtr>     <mtr>@@ -342,7 +342,7 @@         <mtext mathvariant="normal">diamondsuit</mtext>       </mtd>       <mtd>-        <mo>♦</mo>+        <mi>♦</mi>       </mtd>     </mtr>     <mtr>@@ -350,7 +350,7 @@         <mtext mathvariant="normal">diams</mtext>       </mtd>       <mtd>-        <mo>♦</mo>+        <mi>♦</mi>       </mtd>     </mtr>     <mtr>@@ -366,7 +366,7 @@         <mtext mathvariant="normal">DifferentialD</mtext>       </mtd>       <mtd>-        <mo>ⅆ</mo>+        <mi>ⅆ</mi>       </mtd>     </mtr>     <mtr>@@ -422,7 +422,7 @@         <mtext mathvariant="normal">djcy</mtext>       </mtd>       <mtd>-        <mo>ђ</mo>+        <mi>ђ</mi>       </mtd>     </mtr>     <mtr>@@ -430,7 +430,7 @@         <mtext mathvariant="normal">DJcy</mtext>       </mtd>       <mtd>-        <mo>Ђ</mo>+        <mi>Ђ</mi>       </mtd>     </mtr>     <mtr>@@ -446,7 +446,7 @@         <mtext mathvariant="normal">dlcrop</mtext>       </mtd>       <mtd>-        <mo>⌍</mo>+        <mi>⌍</mi>       </mtd>     </mtr>     <mtr>@@ -454,7 +454,7 @@         <mtext mathvariant="normal">dollar</mtext>       </mtd>       <mtd>-        <mo>$</mo>+        <mi>$</mi>       </mtd>     </mtr>     <mtr>@@ -798,7 +798,7 @@         <mtext mathvariant="normal">DownTee</mtext>       </mtd>       <mtd>-        <mo>⊤</mo>+        <mi>⊤</mi>       </mtd>     </mtr>     <mtr>@@ -830,7 +830,7 @@         <mtext mathvariant="normal">drcrop</mtext>       </mtd>       <mtd>-        <mo>⌌</mo>+        <mi>⌌</mi>       </mtd>     </mtr>     <mtr>@@ -854,7 +854,7 @@         <mtext mathvariant="normal">dscy</mtext>       </mtd>       <mtd>-        <mo>ѕ</mo>+        <mi>ѕ</mi>       </mtd>     </mtr>     <mtr>@@ -862,7 +862,7 @@         <mtext mathvariant="normal">DScy</mtext>       </mtd>       <mtd>-        <mo>Ѕ</mo>+        <mi>Ѕ</mi>       </mtd>     </mtr>     <mtr>@@ -878,7 +878,7 @@         <mtext mathvariant="normal">dstrok</mtext>       </mtd>       <mtd>-        <mo>đ</mo>+        <mi>đ</mi>       </mtd>     </mtr>     <mtr>@@ -886,7 +886,7 @@         <mtext mathvariant="normal">Dstrok</mtext>       </mtd>       <mtd>-        <mo>Đ</mo>+        <mi>Đ</mi>       </mtd>     </mtr>     <mtr>@@ -934,7 +934,7 @@         <mtext mathvariant="normal">dwangle</mtext>       </mtd>       <mtd>-        <mo>⦦</mo>+        <mi>⦦</mi>       </mtd>     </mtr>     <mtr>@@ -942,7 +942,7 @@         <mtext mathvariant="normal">dzcy</mtext>       </mtd>       <mtd>-        <mo>џ</mo>+        <mi>џ</mi>       </mtd>     </mtr>     <mtr>@@ -950,7 +950,7 @@         <mtext mathvariant="normal">DZcy</mtext>       </mtd>       <mtd>-        <mo>Џ</mo>+        <mi>Џ</mi>       </mtd>     </mtr>     <mtr>
tests/writers/divergence.mml view
@@ -1,7 +1,7 @@ <?xml version='1.0' ?> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">   <mrow>-    <mo>∇</mo>+    <mi>∇</mi>     <mo>⋅</mo>     <mover>       <mi>v</mi>@@ -10,42 +10,42 @@     <mo>=</mo>     <mfrac>       <mrow>-        <mo>∂</mo>+        <mi>∂</mi>         <msub>           <mi>v</mi>           <mi>x</mi>         </msub>       </mrow>       <mrow>-        <mo>∂</mo>+        <mi>∂</mi>         <mi>x</mi>       </mrow>     </mfrac>     <mo>+</mo>     <mfrac>       <mrow>-        <mo>∂</mo>+        <mi>∂</mi>         <msub>           <mi>v</mi>           <mi>y</mi>         </msub>       </mrow>       <mrow>-        <mo>∂</mo>+        <mi>∂</mi>         <mi>y</mi>       </mrow>     </mfrac>     <mo>+</mo>     <mfrac>       <mrow>-        <mo>∂</mo>+        <mi>∂</mi>         <msub>           <mi>v</mi>           <mi>z</mi>         </msub>       </mrow>       <mrow>-        <mo>∂</mo>+        <mi>∂</mi>         <mi>z</mi>       </mrow>     </mfrac>
tests/writers/divergence.omml view
@@ -12,17 +12,19 @@       <m:rPr />       <m:t>⋅</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃗" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>v</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>=</m:t>
tests/writers/doubleint1.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/doubleint2.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/e.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">eacute</mtext>       </mtd>       <mtd>-        <mo>é</mo>+        <mi>é</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Eacute</mtext>       </mtd>       <mtd>-        <mo>É</mo>+        <mi>É</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">ecaron</mtext>       </mtd>       <mtd>-        <mo>ě</mo>+        <mi>ě</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">Ecaron</mtext>       </mtd>       <mtd>-        <mo>Ě</mo>+        <mi>Ě</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">ecirc</mtext>       </mtd>       <mtd>-        <mo>ê</mo>+        <mi>ê</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Ecirc</mtext>       </mtd>       <mtd>-        <mo>Ê</mo>+        <mi>Ê</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">ecy</mtext>       </mtd>       <mtd>-        <mo>э</mo>+        <mi>э</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">Ecy</mtext>       </mtd>       <mtd>-        <mo>Э</mo>+        <mi>Э</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">edot</mtext>       </mtd>       <mtd>-        <mo>ė</mo>+        <mi>ė</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">Edot</mtext>       </mtd>       <mtd>-        <mo>Ė</mo>+        <mi>Ė</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">ee</mtext>       </mtd>       <mtd>-        <mo>ⅇ</mo>+        <mi>ⅇ</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">egrave</mtext>       </mtd>       <mtd>-        <mo>è</mo>+        <mi>è</mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@         <mtext mathvariant="normal">Egrave</mtext>       </mtd>       <mtd>-        <mo>È</mo>+        <mi>È</mi>       </mtd>     </mtr>     <mtr>@@ -214,7 +214,7 @@         <mtext mathvariant="normal">elinters</mtext>       </mtd>       <mtd>-        <mo>⏧</mo>+        <mi>⏧</mi>       </mtd>     </mtr>     <mtr>@@ -246,7 +246,7 @@         <mtext mathvariant="normal">emacr</mtext>       </mtd>       <mtd>-        <mo>ē</mo>+        <mi>ē</mi>       </mtd>     </mtr>     <mtr>@@ -254,7 +254,7 @@         <mtext mathvariant="normal">Emacr</mtext>       </mtd>       <mtd>-        <mo>Ē</mo>+        <mi>Ē</mi>       </mtd>     </mtr>     <mtr>@@ -262,7 +262,7 @@         <mtext mathvariant="normal">empty</mtext>       </mtd>       <mtd>-        <mo>∅</mo>+        <mi>∅</mi>       </mtd>     </mtr>     <mtr>@@ -270,7 +270,7 @@         <mtext mathvariant="normal">emptyset</mtext>       </mtd>       <mtd>-        <mo>∅</mo>+        <mi>∅</mi>       </mtd>     </mtr>     <mtr>@@ -278,7 +278,7 @@         <mtext mathvariant="normal">EmptySmallSquare</mtext>       </mtd>       <mtd>-        <mo>◻</mo>+        <mi>◻</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">emptyv</mtext>       </mtd>       <mtd>-        <mo>∅</mo>+        <mi>∅</mi>       </mtd>     </mtr>     <mtr>@@ -294,7 +294,7 @@         <mtext mathvariant="normal">EmptyVerySmallSquare</mtext>       </mtd>       <mtd>-        <mo>▫</mo>+        <mi>▫</mi>       </mtd>     </mtr>     <mtr>@@ -302,7 +302,7 @@         <mtext mathvariant="normal">emsp</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -310,7 +310,7 @@         <mtext mathvariant="normal">emsp13</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -318,7 +318,7 @@         <mtext mathvariant="normal">emsp14</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -326,7 +326,7 @@         <mtext mathvariant="normal">eng</mtext>       </mtd>       <mtd>-        <mo>ŋ</mo>+        <mi>ŋ</mi>       </mtd>     </mtr>     <mtr>@@ -334,7 +334,7 @@         <mtext mathvariant="normal">ENG</mtext>       </mtd>       <mtd>-        <mo>Ŋ</mo>+        <mi>Ŋ</mi>       </mtd>     </mtr>     <mtr>@@ -342,7 +342,7 @@         <mtext mathvariant="normal">ensp</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -350,7 +350,7 @@         <mtext mathvariant="normal">eogon</mtext>       </mtd>       <mtd>-        <mo>ę</mo>+        <mi>ę</mi>       </mtd>     </mtr>     <mtr>@@ -358,7 +358,7 @@         <mtext mathvariant="normal">Eogon</mtext>       </mtd>       <mtd>-        <mo>Ę</mo>+        <mi>Ę</mi>       </mtd>     </mtr>     <mtr>@@ -598,7 +598,7 @@         <mtext mathvariant="normal">ETH</mtext>       </mtd>       <mtd>-        <mo>Ð</mo>+        <mi>Ð</mi>       </mtd>     </mtr>     <mtr>@@ -606,7 +606,7 @@         <mtext mathvariant="normal">euml</mtext>       </mtd>       <mtd>-        <mo>ë</mo>+        <mi>ë</mi>       </mtd>     </mtr>     <mtr>@@ -614,7 +614,7 @@         <mtext mathvariant="normal">Euml</mtext>       </mtd>       <mtd>-        <mo>Ë</mo>+        <mi>Ë</mi>       </mtd>     </mtr>     <mtr>@@ -630,7 +630,7 @@         <mtext mathvariant="normal">exist</mtext>       </mtd>       <mtd>-        <mo>∃</mo>+        <mi>∃</mi>       </mtd>     </mtr>     <mtr>@@ -638,7 +638,7 @@         <mtext mathvariant="normal">Exists</mtext>       </mtd>       <mtd>-        <mo>∃</mo>+        <mi>∃</mi>       </mtd>     </mtr>     <mtr>@@ -654,7 +654,7 @@         <mtext mathvariant="normal">exponentiale</mtext>       </mtd>       <mtd>-        <mo>ⅇ</mo>+        <mi>ⅇ</mi>       </mtd>     </mtr>     <mtr>@@ -662,7 +662,7 @@         <mtext mathvariant="normal">ExponentialE</mtext>       </mtd>       <mtd>-        <mo>ⅇ</mo>+        <mi>ⅇ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/f.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">fcy</mtext>       </mtd>       <mtd>-        <mo>ф</mo>+        <mi>ф</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">Fcy</mtext>       </mtd>       <mtd>-        <mo>Ф</mo>+        <mi>Ф</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">female</mtext>       </mtd>       <mtd>-        <mo>♀</mo>+        <mi>♀</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">ffilig</mtext>       </mtd>       <mtd>-        <mo>ffi</mo>+        <mi>ffi</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">fflig</mtext>       </mtd>       <mtd>-        <mo>ff</mo>+        <mi>ff</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">ffllig</mtext>       </mtd>       <mtd>-        <mo>ffl</mo>+        <mi>ffl</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">filig</mtext>       </mtd>       <mtd>-        <mo>fi</mo>+        <mi>fi</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">FilledSmallSquare</mtext>       </mtd>       <mtd>-        <mo>◼</mo>+        <mi>◼</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">FilledVerySmallSquare</mtext>       </mtd>       <mtd>-        <mo>▪</mo>+        <mi>▪</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">flat</mtext>       </mtd>       <mtd>-        <mo>♭</mo>+        <mi>♭</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">fllig</mtext>       </mtd>       <mtd>-        <mo>fl</mo>+        <mi>fl</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">fltns</mtext>       </mtd>       <mtd>-        <mo>▱</mo>+        <mi>▱</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">fnof</mtext>       </mtd>       <mtd>-        <mo>ƒ</mo>+        <mi>ƒ</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">forall</mtext>       </mtd>       <mtd>-        <mo>∀</mo>+        <mi>∀</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">ForAll</mtext>       </mtd>       <mtd>-        <mo>∀</mo>+        <mi>∀</mi>       </mtd>     </mtr>     <mtr>@@ -206,7 +206,7 @@         <mtext mathvariant="normal">frac12</mtext>       </mtd>       <mtd>-        <mo>½</mo>+        <mi>½</mi>       </mtd>     </mtr>     <mtr>@@ -214,7 +214,7 @@         <mtext mathvariant="normal">frac13</mtext>       </mtd>       <mtd>-        <mo>⅓</mo>+        <mi>⅓</mi>       </mtd>     </mtr>     <mtr>@@ -222,7 +222,7 @@         <mtext mathvariant="normal">frac14</mtext>       </mtd>       <mtd>-        <mo>¼</mo>+        <mi>¼</mi>       </mtd>     </mtr>     <mtr>@@ -230,7 +230,7 @@         <mtext mathvariant="normal">frac15</mtext>       </mtd>       <mtd>-        <mo>⅕</mo>+        <mi>⅕</mi>       </mtd>     </mtr>     <mtr>@@ -238,7 +238,7 @@         <mtext mathvariant="normal">frac16</mtext>       </mtd>       <mtd>-        <mo>⅙</mo>+        <mi>⅙</mi>       </mtd>     </mtr>     <mtr>@@ -246,7 +246,7 @@         <mtext mathvariant="normal">frac18</mtext>       </mtd>       <mtd>-        <mo>⅛</mo>+        <mi>⅛</mi>       </mtd>     </mtr>     <mtr>@@ -254,7 +254,7 @@         <mtext mathvariant="normal">frac23</mtext>       </mtd>       <mtd>-        <mo>⅔</mo>+        <mi>⅔</mi>       </mtd>     </mtr>     <mtr>@@ -262,7 +262,7 @@         <mtext mathvariant="normal">frac25</mtext>       </mtd>       <mtd>-        <mo>⅖</mo>+        <mi>⅖</mi>       </mtd>     </mtr>     <mtr>@@ -270,7 +270,7 @@         <mtext mathvariant="normal">frac34</mtext>       </mtd>       <mtd>-        <mo>¾</mo>+        <mi>¾</mi>       </mtd>     </mtr>     <mtr>@@ -278,7 +278,7 @@         <mtext mathvariant="normal">frac35</mtext>       </mtd>       <mtd>-        <mo>⅗</mo>+        <mi>⅗</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">frac38</mtext>       </mtd>       <mtd>-        <mo>⅜</mo>+        <mi>⅜</mi>       </mtd>     </mtr>     <mtr>@@ -294,7 +294,7 @@         <mtext mathvariant="normal">frac45</mtext>       </mtd>       <mtd>-        <mo>⅘</mo>+        <mi>⅘</mi>       </mtd>     </mtr>     <mtr>@@ -302,7 +302,7 @@         <mtext mathvariant="normal">frac56</mtext>       </mtd>       <mtd>-        <mo>⅚</mo>+        <mi>⅚</mi>       </mtd>     </mtr>     <mtr>@@ -310,7 +310,7 @@         <mtext mathvariant="normal">frac58</mtext>       </mtd>       <mtd>-        <mo>⅝</mo>+        <mi>⅝</mi>       </mtd>     </mtr>     <mtr>@@ -318,7 +318,7 @@         <mtext mathvariant="normal">frac78</mtext>       </mtd>       <mtd>-        <mo>⅞</mo>+        <mi>⅞</mi>       </mtd>     </mtr>     <mtr>
tests/writers/g.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">gacute</mtext>       </mtd>       <mtd>-        <mo>ǵ</mo>+        <mi>ǵ</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">gbreve</mtext>       </mtd>       <mtd>-        <mo>ğ</mo>+        <mi>ğ</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Gbreve</mtext>       </mtd>       <mtd>-        <mo>Ğ</mo>+        <mi>Ğ</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">Gcedil</mtext>       </mtd>       <mtd>-        <mo>Ģ</mo>+        <mi>Ģ</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">gcirc</mtext>       </mtd>       <mtd>-        <mo>ĝ</mo>+        <mi>ĝ</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">Gcirc</mtext>       </mtd>       <mtd>-        <mo>Ĝ</mo>+        <mi>Ĝ</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">gcy</mtext>       </mtd>       <mtd>-        <mo>г</mo>+        <mi>г</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">Gcy</mtext>       </mtd>       <mtd>-        <mo>Г</mo>+        <mi>Г</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">gdot</mtext>       </mtd>       <mtd>-        <mo>ġ</mo>+        <mi>ġ</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">Gdot</mtext>       </mtd>       <mtd>-        <mo>Ġ</mo>+        <mi>Ġ</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">gjcy</mtext>       </mtd>       <mtd>-        <mo>ѓ</mo>+        <mi>ѓ</mi>       </mtd>     </mtr>     <mtr>@@ -294,7 +294,7 @@         <mtext mathvariant="normal">GJcy</mtext>       </mtd>       <mtd>-        <mo>Ѓ</mo>+        <mi>Ѓ</mi>       </mtd>     </mtr>     <mtr>
tests/writers/h.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">hairsp</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">half</mtext>       </mtd>       <mtd>-        <mo>½</mo>+        <mi>½</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">hardcy</mtext>       </mtd>       <mtd>-        <mo>ъ</mo>+        <mi>ъ</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">HARDcy</mtext>       </mtd>       <mtd>-        <mo>Ъ</mo>+        <mi>Ъ</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">Hat</mtext>       </mtd>       <mtd>-        <mo accent="false">^</mo>+        <mi>^</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">hcirc</mtext>       </mtd>       <mtd>-        <mo>ĥ</mo>+        <mi>ĥ</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">Hcirc</mtext>       </mtd>       <mtd>-        <mo>Ĥ</mo>+        <mi>Ĥ</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">hearts</mtext>       </mtd>       <mtd>-        <mo>♥</mo>+        <mi>♥</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">heartsuit</mtext>       </mtd>       <mtd>-        <mo>♥</mo>+        <mi>♥</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">hellip</mtext>       </mtd>       <mtd>-        <mo>…</mo>+        <mi>…</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">hercon</mtext>       </mtd>       <mtd>-        <mo>⊹</mo>+        <mi>⊹</mi>       </mtd>     </mtr>     <mtr>@@ -238,7 +238,7 @@         <mtext mathvariant="normal">horbar</mtext>       </mtd>       <mtd>-        <mo>―</mo>+        <mi>―</mi>       </mtd>     </mtr>     <mtr>@@ -246,7 +246,7 @@         <mtext mathvariant="normal">HorizontalLine</mtext>       </mtd>       <mtd>-        <mo>─</mo>+        <mi>─</mi>       </mtd>     </mtr>     <mtr>@@ -278,7 +278,7 @@         <mtext mathvariant="normal">hstrok</mtext>       </mtd>       <mtd>-        <mo>ħ</mo>+        <mi>ħ</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">Hstrok</mtext>       </mtd>       <mtd>-        <mo>Ħ</mo>+        <mi>Ħ</mi>       </mtd>     </mtr>     <mtr>@@ -310,7 +310,7 @@         <mtext mathvariant="normal">hybull</mtext>       </mtd>       <mtd>-        <mo>⁃</mo>+        <mi>⁃</mi>       </mtd>     </mtr>     <mtr>@@ -318,7 +318,7 @@         <mtext mathvariant="normal">hyphen</mtext>       </mtd>       <mtd>-        <mo>‐</mo>+        <mi>‐</mi>       </mtd>     </mtr>   </mtable>
tests/writers/i.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">iacute</mtext>       </mtd>       <mtd>-        <mo>í</mo>+        <mi>í</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Iacute</mtext>       </mtd>       <mtd>-        <mo>Í</mo>+        <mi>Í</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">ic</mtext>       </mtd>       <mtd>-        <mo>&#8291;</mo>+        <mi>&#8291;</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">icirc</mtext>       </mtd>       <mtd>-        <mo>î</mo>+        <mi>î</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">Icirc</mtext>       </mtd>       <mtd>-        <mo>Î</mo>+        <mi>Î</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">icy</mtext>       </mtd>       <mtd>-        <mo>и</mo>+        <mi>и</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">Icy</mtext>       </mtd>       <mtd>-        <mo>И</mo>+        <mi>И</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Idot</mtext>       </mtd>       <mtd>-        <mo>İ</mo>+        <mi>İ</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">iecy</mtext>       </mtd>       <mtd>-        <mo>е</mo>+        <mi>е</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">IEcy</mtext>       </mtd>       <mtd>-        <mo>Е</mo>+        <mi>Е</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">iexcl</mtext>       </mtd>       <mtd>-        <mo>¡</mo>+        <mi>¡</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">igrave</mtext>       </mtd>       <mtd>-        <mo>ì</mo>+        <mi>ì</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">Igrave</mtext>       </mtd>       <mtd>-        <mo>Ì</mo>+        <mi>Ì</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">ii</mtext>       </mtd>       <mtd>-        <mo>ⅈ</mo>+        <mi>ⅈ</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">iinfin</mtext>       </mtd>       <mtd>-        <mo>⧜</mo>+        <mi>⧜</mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@         <mtext mathvariant="normal">ijlig</mtext>       </mtd>       <mtd>-        <mo>ij</mo>+        <mi>ij</mi>       </mtd>     </mtr>     <mtr>@@ -182,7 +182,7 @@         <mtext mathvariant="normal">IJlig</mtext>       </mtd>       <mtd>-        <mo>IJ</mo>+        <mi>IJ</mi>       </mtd>     </mtr>     <mtr>@@ -198,7 +198,7 @@         <mtext mathvariant="normal">imacr</mtext>       </mtd>       <mtd>-        <mo>ī</mo>+        <mi>ī</mi>       </mtd>     </mtr>     <mtr>@@ -206,7 +206,7 @@         <mtext mathvariant="normal">Imacr</mtext>       </mtd>       <mtd>-        <mo>Ī</mo>+        <mi>Ī</mi>       </mtd>     </mtr>     <mtr>@@ -222,7 +222,7 @@         <mtext mathvariant="normal">ImaginaryI</mtext>       </mtd>       <mtd>-        <mo>ⅈ</mo>+        <mi>ⅈ</mi>       </mtd>     </mtr>     <mtr>@@ -262,7 +262,7 @@         <mtext mathvariant="normal">imped</mtext>       </mtd>       <mtd>-        <mo>Ƶ</mo>+        <mi>Ƶ</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">incare</mtext>       </mtd>       <mtd>-        <mo>℅</mo>+        <mi>℅</mi>       </mtd>     </mtr>     <mtr>@@ -294,7 +294,7 @@         <mtext mathvariant="normal">infin</mtext>       </mtd>       <mtd>-        <mo>∞</mo>+        <mi>∞</mi>       </mtd>     </mtr>     <mtr>@@ -302,7 +302,7 @@         <mtext mathvariant="normal">infintie</mtext>       </mtd>       <mtd>-        <mo>⧝</mo>+        <mi>⧝</mi>       </mtd>     </mtr>     <mtr>@@ -390,7 +390,7 @@         <mtext mathvariant="normal">InvisibleComma</mtext>       </mtd>       <mtd>-        <mo>&#8291;</mo>+        <mi>&#8291;</mi>       </mtd>     </mtr>     <mtr>@@ -398,7 +398,7 @@         <mtext mathvariant="normal">InvisibleTimes</mtext>       </mtd>       <mtd>-        <mo>&#8290;</mo>+        <mi>&#8290;</mi>       </mtd>     </mtr>     <mtr>@@ -406,7 +406,7 @@         <mtext mathvariant="normal">iocy</mtext>       </mtd>       <mtd>-        <mo>ё</mo>+        <mi>ё</mi>       </mtd>     </mtr>     <mtr>@@ -414,7 +414,7 @@         <mtext mathvariant="normal">IOcy</mtext>       </mtd>       <mtd>-        <mo>Ё</mo>+        <mi>Ё</mi>       </mtd>     </mtr>     <mtr>@@ -422,7 +422,7 @@         <mtext mathvariant="normal">iogon</mtext>       </mtd>       <mtd>-        <mo>į</mo>+        <mi>į</mi>       </mtd>     </mtr>     <mtr>@@ -430,7 +430,7 @@         <mtext mathvariant="normal">Iogon</mtext>       </mtd>       <mtd>-        <mo>Į</mo>+        <mi>Į</mi>       </mtd>     </mtr>     <mtr>@@ -470,7 +470,7 @@         <mtext mathvariant="normal">iquest</mtext>       </mtd>       <mtd>-        <mo>¿</mo>+        <mi>¿</mi>       </mtd>     </mtr>     <mtr>@@ -542,7 +542,7 @@         <mtext mathvariant="normal">it</mtext>       </mtd>       <mtd>-        <mo>&#8290;</mo>+        <mi>&#8290;</mi>       </mtd>     </mtr>     <mtr>@@ -550,7 +550,7 @@         <mtext mathvariant="normal">itilde</mtext>       </mtd>       <mtd>-        <mo>ĩ</mo>+        <mi>ĩ</mi>       </mtd>     </mtr>     <mtr>@@ -558,7 +558,7 @@         <mtext mathvariant="normal">Itilde</mtext>       </mtd>       <mtd>-        <mo>Ĩ</mo>+        <mi>Ĩ</mi>       </mtd>     </mtr>     <mtr>@@ -566,7 +566,7 @@         <mtext mathvariant="normal">iukcy</mtext>       </mtd>       <mtd>-        <mo>і</mo>+        <mi>і</mi>       </mtd>     </mtr>     <mtr>@@ -574,7 +574,7 @@         <mtext mathvariant="normal">Iukcy</mtext>       </mtd>       <mtd>-        <mo>І</mo>+        <mi>І</mi>       </mtd>     </mtr>     <mtr>@@ -582,7 +582,7 @@         <mtext mathvariant="normal">iuml</mtext>       </mtd>       <mtd>-        <mo>ï</mo>+        <mi>ï</mi>       </mtd>     </mtr>     <mtr>@@ -590,7 +590,7 @@         <mtext mathvariant="normal">Iuml</mtext>       </mtd>       <mtd>-        <mo>Ï</mo>+        <mi>Ï</mi>       </mtd>     </mtr>   </mtable>
tests/writers/int1.mml view
@@ -9,7 +9,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int10.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int2.mml view
@@ -12,7 +12,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int3.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int4.mml view
@@ -16,7 +16,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int5.mml view
@@ -9,7 +9,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int6.mml view
@@ -12,7 +12,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int7.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int8.mml view
@@ -16,7 +16,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/int9.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/invChars.mml view
@@ -4,9 +4,9 @@     <mn></mn>     <mi></mi>     <mi></mi>-    <mo>&#8290;</mo>+    <mi>&#8290;</mi>     <mn></mn>-    <mo>&#8289;</mo>+    <mi>&#8289;</mi>     <mspace width="0.0em" />   </mrow> </math>
tests/writers/j.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">jcirc</mtext>       </mtd>       <mtd>-        <mo>ĵ</mo>+        <mi>ĵ</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Jcirc</mtext>       </mtd>       <mtd>-        <mo>Ĵ</mo>+        <mi>Ĵ</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">jcy</mtext>       </mtd>       <mtd>-        <mo>й</mo>+        <mi>й</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">Jcy</mtext>       </mtd>       <mtd>-        <mo>Й</mo>+        <mi>Й</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">jsercy</mtext>       </mtd>       <mtd>-        <mo>ј</mo>+        <mi>ј</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">Jsercy</mtext>       </mtd>       <mtd>-        <mo>Ј</mo>+        <mi>Ј</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">jukcy</mtext>       </mtd>       <mtd>-        <mo>є</mo>+        <mi>є</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">Jukcy</mtext>       </mtd>       <mtd>-        <mo>Є</mo>+        <mi>Є</mi>       </mtd>     </mtr>   </mtable>
tests/writers/k.mml view
@@ -22,7 +22,7 @@         <mtext mathvariant="normal">kcedil</mtext>       </mtd>       <mtd>-        <mo>ķ</mo>+        <mi>ķ</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">Kcedil</mtext>       </mtd>       <mtd>-        <mo>Ķ</mo>+        <mi>Ķ</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">kcy</mtext>       </mtd>       <mtd>-        <mo>к</mo>+        <mi>к</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">Kcy</mtext>       </mtd>       <mtd>-        <mo>К</mo>+        <mi>К</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">kgreen</mtext>       </mtd>       <mtd>-        <mo>ĸ</mo>+        <mi>ĸ</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">khcy</mtext>       </mtd>       <mtd>-        <mo>х</mo>+        <mi>х</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">KHcy</mtext>       </mtd>       <mtd>-        <mo>Х</mo>+        <mi>Х</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">kjcy</mtext>       </mtd>       <mtd>-        <mo>ќ</mo>+        <mi>ќ</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">KJcy</mtext>       </mtd>       <mtd>-        <mo>Ќ</mo>+        <mi>Ќ</mi>       </mtd>     </mtr>     <mtr>
tests/writers/l.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">lacute</mtext>       </mtd>       <mtd>-        <mo>ĺ</mo>+        <mi>ĺ</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">Lacute</mtext>       </mtd>       <mtd>-        <mo>Ĺ</mo>+        <mi>Ĺ</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">laemptyv</mtext>       </mtd>       <mtd>-        <mo>⦴</mo>+        <mi>⦴</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">laquo</mtext>       </mtd>       <mtd>-        <mo>«</mo>+        <mi>«</mi>       </mtd>     </mtr>     <mtr>@@ -310,7 +310,7 @@         <mtext mathvariant="normal">lcaron</mtext>       </mtd>       <mtd>-        <mo>ľ</mo>+        <mi>ľ</mi>       </mtd>     </mtr>     <mtr>@@ -318,7 +318,7 @@         <mtext mathvariant="normal">Lcaron</mtext>       </mtd>       <mtd>-        <mo>Ľ</mo>+        <mi>Ľ</mi>       </mtd>     </mtr>     <mtr>@@ -326,7 +326,7 @@         <mtext mathvariant="normal">lcedil</mtext>       </mtd>       <mtd>-        <mo>ļ</mo>+        <mi>ļ</mi>       </mtd>     </mtr>     <mtr>@@ -334,7 +334,7 @@         <mtext mathvariant="normal">Lcedil</mtext>       </mtd>       <mtd>-        <mo>Ļ</mo>+        <mi>Ļ</mi>       </mtd>     </mtr>     <mtr>@@ -358,7 +358,7 @@         <mtext mathvariant="normal">lcy</mtext>       </mtd>       <mtd>-        <mo>л</mo>+        <mi>л</mi>       </mtd>     </mtr>     <mtr>@@ -366,7 +366,7 @@         <mtext mathvariant="normal">Lcy</mtext>       </mtd>       <mtd>-        <mo>Л</mo>+        <mi>Л</mi>       </mtd>     </mtr>     <mtr>@@ -998,7 +998,7 @@         <mtext mathvariant="normal">lhblk</mtext>       </mtd>       <mtd>-        <mo>▄</mo>+        <mi>▄</mi>       </mtd>     </mtr>     <mtr>@@ -1006,7 +1006,7 @@         <mtext mathvariant="normal">ljcy</mtext>       </mtd>       <mtd>-        <mo>љ</mo>+        <mi>љ</mi>       </mtd>     </mtr>     <mtr>@@ -1014,7 +1014,7 @@         <mtext mathvariant="normal">LJcy</mtext>       </mtd>       <mtd>-        <mo>Љ</mo>+        <mi>Љ</mi>       </mtd>     </mtr>     <mtr>@@ -1070,7 +1070,7 @@         <mtext mathvariant="normal">lltri</mtext>       </mtd>       <mtd>-        <mo>◺</mo>+        <mi>◺</mi>       </mtd>     </mtr>     <mtr>@@ -1078,7 +1078,7 @@         <mtext mathvariant="normal">lmidot</mtext>       </mtd>       <mtd>-        <mo>ŀ</mo>+        <mi>ŀ</mi>       </mtd>     </mtr>     <mtr>@@ -1086,7 +1086,7 @@         <mtext mathvariant="normal">Lmidot</mtext>       </mtd>       <mtd>-        <mo>Ŀ</mo>+        <mi>Ŀ</mi>       </mtd>     </mtr>     <mtr>@@ -1094,7 +1094,7 @@         <mtext mathvariant="normal">lmoust</mtext>       </mtd>       <mtd>-        <mo>⎰</mo>+        <mi>⎰</mi>       </mtd>     </mtr>     <mtr>@@ -1102,7 +1102,7 @@         <mtext mathvariant="normal">lmoustache</mtext>       </mtd>       <mtd>-        <mo>⎰</mo>+        <mi>⎰</mi>       </mtd>     </mtr>     <mtr>@@ -1334,7 +1334,7 @@         <mtext mathvariant="normal">lowbar</mtext>       </mtd>       <mtd>-        <mo accent="false">_</mo>+        <mi>_</mi>       </mtd>     </mtr>     <mtr>@@ -1358,7 +1358,7 @@         <mtext mathvariant="normal">loz</mtext>       </mtd>       <mtd>-        <mo>◊</mo>+        <mi>◊</mi>       </mtd>     </mtr>     <mtr>@@ -1366,7 +1366,7 @@         <mtext mathvariant="normal">lozenge</mtext>       </mtd>       <mtd>-        <mo>◊</mo>+        <mi>◊</mi>       </mtd>     </mtr>     <mtr>@@ -1430,7 +1430,7 @@         <mtext mathvariant="normal">lrtri</mtext>       </mtd>       <mtd>-        <mo>⊿</mo>+        <mi>⊿</mi>       </mtd>     </mtr>     <mtr>@@ -1518,7 +1518,7 @@         <mtext mathvariant="normal">lstrok</mtext>       </mtd>       <mtd>-        <mo>ł</mo>+        <mi>ł</mi>       </mtd>     </mtr>     <mtr>@@ -1526,7 +1526,7 @@         <mtext mathvariant="normal">Lstrok</mtext>       </mtd>       <mtd>-        <mo>Ł</mo>+        <mi>Ł</mi>       </mtd>     </mtr>     <mtr>
tests/writers/m.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">male</mtext>       </mtd>       <mtd>-        <mo>♂</mo>+        <mi>♂</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">malt</mtext>       </mtd>       <mtd>-        <mo>✠</mo>+        <mi>✠</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">maltese</mtext>       </mtd>       <mtd>-        <mo>✠</mo>+        <mi>✠</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">marker</mtext>       </mtd>       <mtd>-        <mo>▮</mo>+        <mi>▮</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">mcy</mtext>       </mtd>       <mtd>-        <mo>м</mo>+        <mi>м</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">Mcy</mtext>       </mtd>       <mtd>-        <mo>М</mo>+        <mi>М</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">mdash</mtext>       </mtd>       <mtd>-        <mo>—</mo>+        <mi>—</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">measuredangle</mtext>       </mtd>       <mtd>-        <mo>∡</mo>+        <mi>∡</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">MediumSpace</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@         <mtext mathvariant="normal">mho</mtext>       </mtd>       <mtd>-        <mo>℧</mo>+        <mi>℧</mi>       </mtd>     </mtr>     <mtr>@@ -198,7 +198,7 @@         <mtext mathvariant="normal">midast</mtext>       </mtd>       <mtd>-        <mo>*</mo>+        <mi>*</mi>       </mtd>     </mtr>     <mtr>@@ -270,7 +270,7 @@         <mtext mathvariant="normal">mldr</mtext>       </mtd>       <mtd>-        <mo>…</mo>+        <mi>…</mi>       </mtd>     </mtr>     <mtr>
tests/writers/maction-06.mml view
@@ -3,7 +3,7 @@   <mrow>     <mn>100</mn>     <mtext mathvariant="normal">m</mtext>-    <mo>/</mo>+    <mi>/</mi>     <mtext mathvariant="normal">s</mtext>   </mrow> </math>
tests/writers/maligngroup1.mml view
@@ -7,13 +7,13 @@           <mrow>             <mrow>               <mn>8.44</mn>-              <mo>&#8290;</mo>+              <mi>&#8290;</mi>               <mi>x</mi>             </mrow>             <mo>+</mo>             <mrow>               <mn>55</mn>-              <mo>&#8290;</mo>+              <mi>&#8290;</mi>               <mi>y</mi>             </mrow>           </mrow>@@ -28,13 +28,13 @@           <mrow>             <mrow>               <mn>3.1</mn>-              <mo>&#8290;</mo>+              <mi>&#8290;</mi>               <mi>x</mi>             </mrow>             <mo>-</mo>             <mrow>               <mn>0.7</mn>-              <mo>&#8290;</mo>+              <mi>&#8290;</mi>               <mi>y</mi>             </mrow>           </mrow>
tests/writers/mfrac2.mml view
@@ -1,9 +1,9 @@ <?xml version='1.0' ?> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">   <mfrac>-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mrow>-      <mo>ⅆ</mo>+      <mi>ⅆ</mi>       <mi>x</mi>     </mrow>   </mfrac>
tests/writers/mfracZcomp-01.mml view
@@ -5,7 +5,7 @@     <mfrac>       <mrow>         <mi>sin</mi>-        <mo>&#8289;</mo>+        <mi>&#8289;</mi>         <mi>θ</mi>       </mrow>       <mi>π</mi>
tests/writers/mfracZcomp-02.mml view
@@ -5,7 +5,7 @@     <mfrac>       <mrow>         <mi>ln</mi>-        <mo>&#8289;</mo>+        <mi>&#8289;</mi>         <mi>x</mi>       </mrow>       <mi>y</mi>
tests/writers/mfracZcomp-03.mml view
@@ -5,7 +5,7 @@     <mfrac>       <mrow>         <mi>tan</mi>-        <mo>&#8289;</mo>+        <mi>&#8289;</mi>         <mi>θ</mi>       </mrow>       <mn>67</mn>
tests/writers/mfracZcomp-12.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>log</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>x</mi>         </mrow>         <mi>y</mi>
tests/writers/mfracZcomp-13.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-14.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-15.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-16.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-17.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-18.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-19.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-20.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-21.mml view
@@ -7,7 +7,7 @@       <mfrac>         <mrow>           <mi>sin</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mi>θ</mi>         </mrow>         <mi>M</mi>
tests/writers/mfracZcomp-24.mml view
@@ -13,7 +13,7 @@                 <mrow>                   <mrow>                     <mi>sin</mi>-                    <mo>&#8289;</mo>+                    <mi>&#8289;</mi>                     <mi>θ</mi>                   </mrow>                   <mo>+</mo>
tests/writers/mfracZcomp-25.mml view
@@ -13,7 +13,7 @@                 <mrow>                   <mrow>                     <mi>sin</mi>-                    <mo>&#8289;</mo>+                    <mi>&#8289;</mi>                     <mi>θ</mi>                   </mrow>                   <mo>+</mo>
tests/writers/mfracZcomp-30.mml view
@@ -3,7 +3,7 @@   <mrow>     <mrow>       <mi>HypergeomDist</mi>-      <mo>&#8289;</mo>+      <mi>&#8289;</mi>       <mrow>         <mo stretchy="true" form="prefix">(</mo>         <mrow>@@ -41,7 +41,7 @@             </mfrac>             <mo stretchy="true" form="postfix">)</mo>           </mrow>-          <mo>&#8290;</mo>+          <mi>&#8290;</mi>           <mrow>             <mo stretchy="true" form="prefix">(</mo>             <mfrac>
tests/writers/mfracZcomp-31.mml view
@@ -5,7 +5,7 @@     <mrow>       <mrow>         <mi>F</mi>-        <mo>&#8289;</mo>+        <mi>&#8289;</mi>         <mrow>           <mo stretchy="true" form="prefix">(</mo>           <mrow>@@ -25,11 +25,11 @@             <mo>,</mo>             <mfrac>               <mrow>-                <mo>ⅆ</mo>+                <mi>ⅆ</mi>                 <mi>y</mi>               </mrow>               <mrow>-                <mo>ⅆ</mo>+                <mi>ⅆ</mi>                 <mi>t</mi>               </mrow>             </mfrac>@@ -45,11 +45,11 @@               <mo>,</mo>               <mfrac>                 <mrow>-                  <mo>ⅆ</mo>+                  <mi>ⅆ</mi>                   <mi>y</mi>                 </mrow>                 <mrow>-                  <mo>ⅆ</mo>+                  <mi>ⅆ</mi>                   <mi>t</mi>                 </mrow>               </mfrac>
tests/writers/mfracZcomp-33.mml view
@@ -18,7 +18,7 @@         <mrow>           <mn>2</mn>           <mi>i</mi>-          <mo> </mo>+          <mi> </mi>           <mi>cos</mi>           <mrow>             <mo stretchy="true" form="prefix">(</mo>@@ -69,7 +69,7 @@           </mrow>         </mfrac>       </mrow>-      <mo>ⅆ</mo>+      <mi>ⅆ</mi>       <mi>z</mi>     </mrow>   </mrow>
tests/writers/mi1.mml view
@@ -5,7 +5,7 @@     <mo>+</mo>     <mrow>       <mi>a</mi>-      <mo>/</mo>+      <mi>/</mi>       <mi>b</mi>     </mrow>   </mrow>
tests/writers/mi2.mml view
@@ -2,7 +2,7 @@ <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">   <mrow>     <mi>sin</mi>-    <mo>&#8289;</mo>+    <mi>&#8289;</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/mi4.mml view
@@ -2,7 +2,7 @@ <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">   <mrow>     <mi>f</mi>-    <mo>&#8289;</mo>+    <mi>&#8289;</mi>     <mrow>       <mo stretchy="true" form="prefix">(</mo>       <mi>x</mi>
tests/writers/mn3.mml view
@@ -5,7 +5,7 @@     <mo>+</mo>     <mrow>       <mn>3</mn>-      <mo>&#8290;</mo>+      <mi>&#8290;</mi>       <mi>ⅈ</mi>     </mrow>   </mrow>
tests/writers/mo6.mml view
@@ -12,7 +12,7 @@       <mrow>         <mrow>           <mi>f</mi>-          <mo>&#8289;</mo>+          <mi>&#8289;</mi>           <mrow>             <mo stretchy="true" form="prefix">(</mo>             <mi>x</mi>
tests/writers/moAaccent10.mml view
@@ -7,7 +7,7 @@         <mo>-</mo>         <mn>1</mn>       </mrow>-      <mo accent="false">‾</mo>+      <mi>‾</mi>     </mover>     <mo>+</mo>     <mover>@@ -16,7 +16,7 @@         <mo accent="true">-</mo>         <mn>1</mn>       </mrow>-      <mo accent="false">‾</mo>+      <mi>‾</mi>     </mover>     <mo accent="true">+</mo>     <mover>@@ -25,7 +25,7 @@         <mo>-</mo>         <mn>1</mn>       </mrow>-      <mo accent="false">‾</mo>+      <mi>‾</mi>     </mover>   </mrow> </math>
tests/writers/moAaccent9.mml view
@@ -25,7 +25,7 @@         <mo>-</mo>         <mn>1</mn>       </mrow>-      <mo accent="false">‾</mo>+      <mi>‾</mi>     </mover>   </mrow> </math>
tests/writers/moAprime16.mml view
@@ -13,7 +13,7 @@     <mo>=</mo>     <msup>       <mi>f</mi>-      <mo>′</mo>+      <mi>′</mi>     </msup>     <mrow>       <mo stretchy="true" form="prefix">(</mo>
tests/writers/moore_determinant.mml view
@@ -21,7 +21,7 @@             </msubsup>           </mtd>           <mtd columnalign="center">-            <mo>⋯</mo>+            <mi>⋯</mi>           </mtd>           <mtd columnalign="center">             <msubsup>@@ -53,7 +53,7 @@             </msubsup>           </mtd>           <mtd columnalign="center">-            <mo>⋯</mo>+            <mi>⋯</mi>           </mtd>           <mtd columnalign="center">             <msubsup>@@ -72,16 +72,16 @@         </mtr>         <mtr>           <mtd columnalign="center">-            <mo>⋮</mo>+            <mi>⋮</mi>           </mtd>           <mtd columnalign="center">-            <mo>⋮</mo>+            <mi>⋮</mi>           </mtd>           <mtd columnalign="center">-            <mo>⋱</mo>+            <mi>⋱</mi>           </mtd>           <mtd columnalign="center">-            <mo>⋮</mo>+            <mi>⋮</mi>           </mtd>         </mtr>         <mtr>@@ -99,7 +99,7 @@             </msubsup>           </mtd>           <mtd columnalign="center">-            <mo>⋯</mo>+            <mi>⋯</mi>           </mtd>           <mtd columnalign="center">             <msubsup>
tests/writers/mover1.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <mover>       <mi>x</mi>-      <mo accent="false">´</mo>+      <mi>´</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">´</mo>+      <mi>´</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">´</mo>+      <mi>´</mi>     </mover>   </mrow> </math>
tests/writers/mover1.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="´" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>
tests/writers/mover2.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <mover>       <mi>x</mi>-      <mo accent="false">`</mo>+      <mi>`</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">`</mo>+      <mi>`</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">`</mo>+      <mi>`</mi>     </mover>   </mrow> </math>
tests/writers/mover2.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="`" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>
tests/writers/mover3.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="ˆ" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>
tests/writers/mover4.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="ˇ" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>
tests/writers/mover5.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <mover>       <mi>x</mi>-      <mo accent="false">˜</mo>+      <mi>˜</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">˜</mo>+      <mi>˜</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">˜</mo>+      <mi>˜</mi>     </mover>   </mrow> </math>
tests/writers/mover5.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="˜" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>
tests/writers/mover6.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <mover>       <mi>x</mi>-      <mo accent="false">˙</mo>+      <mi>˙</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">˙</mo>+      <mi>˙</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">˙</mo>+      <mi>˙</mi>     </mover>   </mrow> </math>
tests/writers/mover6.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="˙" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>
tests/writers/mover7.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <mover>       <mi>x</mi>-      <mo accent="false">¨</mo>+      <mi>¨</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">¨</mo>+      <mi>¨</mi>     </mover>     <mo>=</mo>     <mover>       <mi>x</mi>-      <mo accent="false">¨</mo>+      <mi>¨</mi>     </mover>   </mrow> </math>
tests/writers/mover7.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="¨" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>
tests/writers/mover8.omml view
@@ -4,61 +4,69 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃛" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃛" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>=</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃛" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>=</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃛" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>   </m:oMath> </m:oMathPara>
tests/writers/mover9.omml view
@@ -4,61 +4,69 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃜" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>≠</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃜" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>=</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃜" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>=</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⃜" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>x</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>   </m:oMath> </m:oMathPara>
tests/writers/mstyleAscriptlevel1.mml view
@@ -3,27 +3,27 @@   <mrow>     <mfrac>       <mn>2</mn>-      <mo>4</mo>+      <mi>4</mi>     </mfrac>     <mfrac>       <mn>2</mn>-      <mo>4</mo>+      <mi>4</mi>     </mfrac>     <mfrac>       <mn>2</mn>-      <mo>4</mo>+      <mi>4</mi>     </mfrac>     <mfrac>       <mn>2</mn>-      <mo>4</mo>+      <mi>4</mi>     </mfrac>     <mfrac>       <mn>2</mn>-      <mo>4</mo>+      <mi>4</mi>     </mfrac>     <mfrac>       <mn>2</mn>-      <mo>4</mo>+      <mi>4</mi>     </mfrac>   </mrow> </math>
tests/writers/msub-11.mml view
@@ -3,13 +3,13 @@   <mrow>     <msub>       <mi>H</mi>-      <mo>2</mo>+      <mi>2</mi>     </msub>     <mo>=</mo>     <mover>       <msub>         <mi>H</mi>-        <mo>2</mo>+        <mi>2</mi>       </msub>       <mphantom>         <mi>x</mi>
tests/writers/msub1.mml view
@@ -4,7 +4,7 @@     <mi>m</mi>     <mrow>       <mn>1</mn>-      <mo>&#8291;</mo>+      <mi>&#8291;</mi>       <mn>2</mn>     </mrow>   </msub>
tests/writers/msubsup1.mml view
@@ -11,9 +11,9 @@         <mi>ⅇ</mi>         <mi>x</mi>       </msup>-      <mo>&#8290;</mo>+      <mi>&#8290;</mi>       <mrow>-        <mo>ⅆ</mo>+        <mi>ⅆ</mi>         <mi>x</mi>       </mrow>     </mrow>
tests/writers/mtable2.mml view
@@ -21,9 +21,9 @@           <mo>+</mo>           <mrow>             <mn>2</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -51,9 +51,9 @@           <mo>+</mo>           <mrow>             <mn>2</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -72,9 +72,9 @@           <mo>+</mo>           <mrow>             <mn>3</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>2</mn>@@ -83,12 +83,12 @@           <mo>+</mo>           <mrow>             <mn>3</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>2</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -109,9 +109,9 @@           <mo>+</mo>           <mrow>             <mn>2</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -130,9 +130,9 @@           <mo>+</mo>           <mrow>             <mn>3</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>2</mn>@@ -141,12 +141,12 @@           <mo>+</mo>           <mrow>             <mn>3</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>2</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -165,9 +165,9 @@           <mo>+</mo>           <mrow>             <mn>4</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>3</mn>@@ -176,12 +176,12 @@           <mo>+</mo>           <mrow>             <mn>6</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>2</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>2</mn>@@ -190,12 +190,12 @@           <mo>+</mo>           <mrow>             <mn>4</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>3</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -216,9 +216,9 @@           <mo>+</mo>           <mrow>             <mn>3</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>2</mn>@@ -227,12 +227,12 @@           <mo>+</mo>           <mrow>             <mn>3</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>2</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -251,9 +251,9 @@           <mo>+</mo>           <mrow>             <mn>4</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>3</mn>@@ -262,12 +262,12 @@           <mo>+</mo>           <mrow>             <mn>6</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>2</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>2</mn>@@ -276,12 +276,12 @@           <mo>+</mo>           <mrow>             <mn>4</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>3</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>@@ -300,9 +300,9 @@           <mo>+</mo>           <mrow>             <mn>5</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>y</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>4</mn>@@ -311,12 +311,12 @@           <mo>+</mo>           <mrow>             <mn>10</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>2</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>3</mn>@@ -325,12 +325,12 @@           <mo>+</mo>           <mrow>             <mn>10</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>3</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>x</mi>               <mn>2</mn>@@ -339,12 +339,12 @@           <mo>+</mo>           <mrow>             <mn>5</mn>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>y</mi>               <mn>4</mn>             </msup>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <mi>x</mi>           </mrow>           <mo>+</mo>
tests/writers/munder1.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <munder>       <mi>x</mi>-      <mo accent="false">´</mo>+      <mi>´</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">´</mo>+      <mi>´</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">´</mo>+      <mi>´</mi>     </munder>   </mrow> </math>
tests/writers/munder2.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <munder>       <mi>x</mi>-      <mo accent="false">`</mo>+      <mi>`</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">`</mo>+      <mi>`</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">`</mo>+      <mi>`</mi>     </munder>   </mrow> </math>
tests/writers/munder5.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <munder>       <mi>x</mi>-      <mo accent="false">˜</mo>+      <mi>˜</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">˜</mo>+      <mi>˜</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">˜</mo>+      <mi>˜</mi>     </munder>   </mrow> </math>
tests/writers/munder6.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <munder>       <mi>x</mi>-      <mo accent="false">˙</mo>+      <mi>˙</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">˙</mo>+      <mi>˙</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">˙</mo>+      <mi>˙</mi>     </munder>   </mrow> </math>
tests/writers/munder7.mml view
@@ -8,17 +8,17 @@     <mo>≠</mo>     <munder>       <mi>x</mi>-      <mo accent="false">¨</mo>+      <mi>¨</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">¨</mo>+      <mi>¨</mi>     </munder>     <mo>=</mo>     <munder>       <mi>x</mi>-      <mo accent="false">¨</mo>+      <mi>¨</mi>     </munder>   </mrow> </math>
tests/writers/n.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">nabla</mtext>       </mtd>       <mtd>-        <mo>∇</mo>+        <mi>∇</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">nacute</mtext>       </mtd>       <mtd>-        <mo>ń</mo>+        <mi>ń</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">Nacute</mtext>       </mtd>       <mtd>-        <mo>Ń</mo>+        <mi>Ń</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">napos</mtext>       </mtd>       <mtd>-        <mo>ʼn</mo>+        <mi>ʼn</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">natur</mtext>       </mtd>       <mtd>-        <mo>♮</mo>+        <mi>♮</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">natural</mtext>       </mtd>       <mtd>-        <mo>♮</mo>+        <mi>♮</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">nbsp</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">nbump</mtext>       </mtd>       <mtd>-        <mo>≎̸</mo>+        <mi>≎̸</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">nbumpe</mtext>       </mtd>       <mtd>-        <mo>≏̸</mo>+        <mi>≏̸</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">ncaron</mtext>       </mtd>       <mtd>-        <mo>ň</mo>+        <mi>ň</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">Ncaron</mtext>       </mtd>       <mtd>-        <mo>Ň</mo>+        <mi>Ň</mi>       </mtd>     </mtr>     <mtr>@@ -150,7 +150,7 @@         <mtext mathvariant="normal">ncedil</mtext>       </mtd>       <mtd>-        <mo>ņ</mo>+        <mi>ņ</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">Ncedil</mtext>       </mtd>       <mtd>-        <mo>Ņ</mo>+        <mi>Ņ</mi>       </mtd>     </mtr>     <mtr>@@ -190,7 +190,7 @@         <mtext mathvariant="normal">ncy</mtext>       </mtd>       <mtd>-        <mo>н</mo>+        <mi>н</mi>       </mtd>     </mtr>     <mtr>@@ -198,7 +198,7 @@         <mtext mathvariant="normal">Ncy</mtext>       </mtd>       <mtd>-        <mo>Н</mo>+        <mi>Н</mi>       </mtd>     </mtr>     <mtr>@@ -206,7 +206,7 @@         <mtext mathvariant="normal">ndash</mtext>       </mtd>       <mtd>-        <mo>–</mo>+        <mi>–</mi>       </mtd>     </mtr>     <mtr>@@ -262,7 +262,7 @@         <mtext mathvariant="normal">NegativeMediumSpace</mtext>       </mtd>       <mtd>-        <mo>&#8203;</mo>+        <mi>&#8203;</mi>       </mtd>     </mtr>     <mtr>@@ -270,7 +270,7 @@         <mtext mathvariant="normal">NegativeThickSpace</mtext>       </mtd>       <mtd>-        <mo>&#8203;</mo>+        <mi>&#8203;</mi>       </mtd>     </mtr>     <mtr>@@ -278,7 +278,7 @@         <mtext mathvariant="normal">NegativeThinSpace</mtext>       </mtd>       <mtd>-        <mo>&#8203;</mo>+        <mi>&#8203;</mi>       </mtd>     </mtr>     <mtr>@@ -286,7 +286,7 @@         <mtext mathvariant="normal">NegativeVeryThinSpace</mtext>       </mtd>       <mtd>-        <mo>&#8203;</mo>+        <mi>&#8203;</mi>       </mtd>     </mtr>     <mtr>@@ -310,7 +310,7 @@         <mtext mathvariant="normal">nesim</mtext>       </mtd>       <mtd>-        <mo>≂̸</mo>+        <mi>≂̸</mi>       </mtd>     </mtr>     <mtr>@@ -342,7 +342,7 @@         <mtext mathvariant="normal">nexist</mtext>       </mtd>       <mtd>-        <mo>∄</mo>+        <mi>∄</mi>       </mtd>     </mtr>     <mtr>@@ -350,7 +350,7 @@         <mtext mathvariant="normal">nexists</mtext>       </mtd>       <mtd>-        <mo>∄</mo>+        <mi>∄</mi>       </mtd>     </mtr>     <mtr>@@ -406,7 +406,7 @@         <mtext mathvariant="normal">ngeqslant</mtext>       </mtd>       <mtd>-        <mo>⩾̸</mo>+        <mi>⩾̸</mi>       </mtd>     </mtr>     <mtr>@@ -414,7 +414,7 @@         <mtext mathvariant="normal">nges</mtext>       </mtd>       <mtd>-        <mo>⩾̸</mo>+        <mi>⩾̸</mi>       </mtd>     </mtr>     <mtr>@@ -462,7 +462,7 @@         <mtext mathvariant="normal">nGtv</mtext>       </mtd>       <mtd>-        <mo>≫̸</mo>+        <mi>≫̸</mi>       </mtd>     </mtr>     <mtr>@@ -526,7 +526,7 @@         <mtext mathvariant="normal">njcy</mtext>       </mtd>       <mtd>-        <mo>њ</mo>+        <mi>њ</mi>       </mtd>     </mtr>     <mtr>@@ -534,7 +534,7 @@         <mtext mathvariant="normal">NJcy</mtext>       </mtd>       <mtd>-        <mo>Њ</mo>+        <mi>Њ</mi>       </mtd>     </mtr>     <mtr>@@ -558,7 +558,7 @@         <mtext mathvariant="normal">nldr</mtext>       </mtd>       <mtd>-        <mo>‥</mo>+        <mi>‥</mi>       </mtd>     </mtr>     <mtr>@@ -574,7 +574,7 @@         <mtext mathvariant="normal">nlE</mtext>       </mtd>       <mtd>-        <mo>≦̸</mo>+        <mi>≦̸</mi>       </mtd>     </mtr>     <mtr>@@ -622,7 +622,7 @@         <mtext mathvariant="normal">nleqq</mtext>       </mtd>       <mtd>-        <mo>≦̸</mo>+        <mi>≦̸</mi>       </mtd>     </mtr>     <mtr>@@ -630,7 +630,7 @@         <mtext mathvariant="normal">nleqslant</mtext>       </mtd>       <mtd>-        <mo>⩽̸</mo>+        <mi>⩽̸</mi>       </mtd>     </mtr>     <mtr>@@ -638,7 +638,7 @@         <mtext mathvariant="normal">nles</mtext>       </mtd>       <mtd>-        <mo>⩽̸</mo>+        <mi>⩽̸</mi>       </mtd>     </mtr>     <mtr>@@ -702,7 +702,7 @@         <mtext mathvariant="normal">nLtv</mtext>       </mtd>       <mtd>-        <mo>≪̸</mo>+        <mi>≪̸</mi>       </mtd>     </mtr>     <mtr>@@ -718,7 +718,7 @@         <mtext mathvariant="normal">NoBreak</mtext>       </mtd>       <mtd>-        <mo>&#8288;</mo>+        <mi>&#8288;</mi>       </mtd>     </mtr>     <mtr>@@ -726,7 +726,7 @@         <mtext mathvariant="normal">NonBreakingSpace</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -750,7 +750,7 @@         <mtext mathvariant="normal">not</mtext>       </mtd>       <mtd>-        <mo>¬</mo>+        <mi>¬</mi>       </mtd>     </mtr>     <mtr>@@ -806,7 +806,7 @@         <mtext mathvariant="normal">NotEqualTilde</mtext>       </mtd>       <mtd>-        <mo>≂̸</mo>+        <mi>≂̸</mi>       </mtd>     </mtr>     <mtr>@@ -814,7 +814,7 @@         <mtext mathvariant="normal">NotExists</mtext>       </mtd>       <mtd>-        <mo>∄</mo>+        <mi>∄</mi>       </mtd>     </mtr>     <mtr>@@ -846,7 +846,7 @@         <mtext mathvariant="normal">NotGreaterGreater</mtext>       </mtd>       <mtd>-        <mo>≫̸</mo>+        <mi>≫̸</mi>       </mtd>     </mtr>     <mtr>@@ -862,7 +862,7 @@         <mtext mathvariant="normal">NotGreaterSlantEqual</mtext>       </mtd>       <mtd>-        <mo>⩾̸</mo>+        <mi>⩾̸</mi>       </mtd>     </mtr>     <mtr>@@ -878,7 +878,7 @@         <mtext mathvariant="normal">NotHumpDownHump</mtext>       </mtd>       <mtd>-        <mo>≎̸</mo>+        <mi>≎̸</mi>       </mtd>     </mtr>     <mtr>@@ -886,7 +886,7 @@         <mtext mathvariant="normal">NotHumpEqual</mtext>       </mtd>       <mtd>-        <mo>≏̸</mo>+        <mi>≏̸</mi>       </mtd>     </mtr>     <mtr>@@ -950,7 +950,7 @@         <mtext mathvariant="normal">NotLeftTriangleBar</mtext>       </mtd>       <mtd>-        <mo>⧏̸</mo>+        <mi>⧏̸</mi>       </mtd>     </mtr>     <mtr>@@ -990,7 +990,7 @@         <mtext mathvariant="normal">NotLessLess</mtext>       </mtd>       <mtd>-        <mo>≪̸</mo>+        <mi>≪̸</mi>       </mtd>     </mtr>     <mtr>@@ -998,7 +998,7 @@         <mtext mathvariant="normal">NotLessSlantEqual</mtext>       </mtd>       <mtd>-        <mo>⩽̸</mo>+        <mi>⩽̸</mi>       </mtd>     </mtr>     <mtr>@@ -1014,7 +1014,7 @@         <mtext mathvariant="normal">NotNestedGreaterGreater</mtext>       </mtd>       <mtd>-        <mo>⪢̸</mo>+        <mi>⪢̸</mi>       </mtd>     </mtr>     <mtr>@@ -1022,7 +1022,7 @@         <mtext mathvariant="normal">NotNestedLessLess</mtext>       </mtd>       <mtd>-        <mo>⪡̸</mo>+        <mi>⪡̸</mi>       </mtd>     </mtr>     <mtr>@@ -1070,7 +1070,7 @@         <mtext mathvariant="normal">NotPrecedesEqual</mtext>       </mtd>       <mtd>-        <mo>⪯̸</mo>+        <mi>⪯̸</mi>       </mtd>     </mtr>     <mtr>@@ -1102,7 +1102,7 @@         <mtext mathvariant="normal">NotRightTriangleBar</mtext>       </mtd>       <mtd>-        <mo>⧐̸</mo>+        <mi>⧐̸</mi>       </mtd>     </mtr>     <mtr>@@ -1118,7 +1118,7 @@         <mtext mathvariant="normal">NotSquareSubset</mtext>       </mtd>       <mtd>-        <mo>⊏̸</mo>+        <mi>⊏̸</mi>       </mtd>     </mtr>     <mtr>@@ -1134,7 +1134,7 @@         <mtext mathvariant="normal">NotSquareSuperset</mtext>       </mtd>       <mtd>-        <mo>⊐̸</mo>+        <mi>⊐̸</mi>       </mtd>     </mtr>     <mtr>@@ -1150,7 +1150,7 @@         <mtext mathvariant="normal">NotSubset</mtext>       </mtd>       <mtd>-        <mo>⊂⃒</mo>+        <mi>⊂⃒</mi>       </mtd>     </mtr>     <mtr>@@ -1174,7 +1174,7 @@         <mtext mathvariant="normal">NotSucceedsEqual</mtext>       </mtd>       <mtd>-        <mo>⪰̸</mo>+        <mi>⪰̸</mi>       </mtd>     </mtr>     <mtr>@@ -1190,7 +1190,7 @@         <mtext mathvariant="normal">NotSucceedsTilde</mtext>       </mtd>       <mtd>-        <mo>≿̸</mo>+        <mi>≿̸</mi>       </mtd>     </mtr>     <mtr>@@ -1198,7 +1198,7 @@         <mtext mathvariant="normal">NotSuperset</mtext>       </mtd>       <mtd>-        <mo>⊃⃒</mo>+        <mi>⊃⃒</mi>       </mtd>     </mtr>     <mtr>@@ -1310,7 +1310,7 @@         <mtext mathvariant="normal">npre</mtext>       </mtd>       <mtd>-        <mo>⪯̸</mo>+        <mi>⪯̸</mi>       </mtd>     </mtr>     <mtr>@@ -1326,7 +1326,7 @@         <mtext mathvariant="normal">npreceq</mtext>       </mtd>       <mtd>-        <mo>⪯̸</mo>+        <mi>⪯̸</mi>       </mtd>     </mtr>     <mtr>@@ -1414,7 +1414,7 @@         <mtext mathvariant="normal">nsce</mtext>       </mtd>       <mtd>-        <mo>⪰̸</mo>+        <mi>⪰̸</mi>       </mtd>     </mtr>     <mtr>@@ -1534,7 +1534,7 @@         <mtext mathvariant="normal">nsubset</mtext>       </mtd>       <mtd>-        <mo>⊂⃒</mo>+        <mi>⊂⃒</mi>       </mtd>     </mtr>     <mtr>@@ -1566,7 +1566,7 @@         <mtext mathvariant="normal">nsucceq</mtext>       </mtd>       <mtd>-        <mo>⪰̸</mo>+        <mi>⪰̸</mi>       </mtd>     </mtr>     <mtr>@@ -1598,7 +1598,7 @@         <mtext mathvariant="normal">nsupset</mtext>       </mtd>       <mtd>-        <mo>⊃⃒</mo>+        <mi>⊃⃒</mi>       </mtd>     </mtr>     <mtr>@@ -1630,7 +1630,7 @@         <mtext mathvariant="normal">ntilde</mtext>       </mtd>       <mtd>-        <mo>ñ</mo>+        <mi>ñ</mi>       </mtd>     </mtr>     <mtr>@@ -1638,7 +1638,7 @@         <mtext mathvariant="normal">Ntilde</mtext>       </mtd>       <mtd>-        <mo>Ñ</mo>+        <mi>Ñ</mi>       </mtd>     </mtr>     <mtr>@@ -1694,7 +1694,7 @@         <mtext mathvariant="normal">num</mtext>       </mtd>       <mtd>-        <mo>#</mo>+        <mi>#</mi>       </mtd>     </mtr>     <mtr>@@ -1702,7 +1702,7 @@         <mtext mathvariant="normal">numero</mtext>       </mtd>       <mtd>-        <mo>№</mo>+        <mi>№</mi>       </mtd>     </mtr>     <mtr>@@ -1710,7 +1710,7 @@         <mtext mathvariant="normal">numsp</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -1782,7 +1782,7 @@         <mtext mathvariant="normal">nvinfin</mtext>       </mtd>       <mtd>-        <mo>⧞</mo>+        <mi>⧞</mi>       </mtd>     </mtr>     <mtr>
tests/writers/o.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">oacute</mtext>       </mtd>       <mtd>-        <mo>ó</mo>+        <mi>ó</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Oacute</mtext>       </mtd>       <mtd>-        <mo>Ó</mo>+        <mi>Ó</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">ocirc</mtext>       </mtd>       <mtd>-        <mo>ô</mo>+        <mi>ô</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">Ocirc</mtext>       </mtd>       <mtd>-        <mo>Ô</mo>+        <mi>Ô</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">ocy</mtext>       </mtd>       <mtd>-        <mo>о</mo>+        <mi>о</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Ocy</mtext>       </mtd>       <mtd>-        <mo>О</mo>+        <mi>О</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">odblac</mtext>       </mtd>       <mtd>-        <mo>ő</mo>+        <mi>ő</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">Odblac</mtext>       </mtd>       <mtd>-        <mo>Ő</mo>+        <mi>Ő</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">odsold</mtext>       </mtd>       <mtd>-        <mo>⦼</mo>+        <mi>⦼</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">oelig</mtext>       </mtd>       <mtd>-        <mo>œ</mo>+        <mi>œ</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">OElig</mtext>       </mtd>       <mtd>-        <mo>Œ</mo>+        <mi>Œ</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">ofcir</mtext>       </mtd>       <mtd>-        <mo>⦿</mo>+        <mi>⦿</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">ogon</mtext>       </mtd>       <mtd>-        <mo>˛</mo>+        <mi>˛</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">ograve</mtext>       </mtd>       <mtd>-        <mo>ò</mo>+        <mi>ò</mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@         <mtext mathvariant="normal">Ograve</mtext>       </mtd>       <mtd>-        <mo>Ò</mo>+        <mi>Ò</mi>       </mtd>     </mtr>     <mtr>@@ -214,7 +214,7 @@         <mtext mathvariant="normal">olarr</mtext>       </mtd>       <mtd>-        <mo>↺</mo>+        <mi>↺</mi>       </mtd>     </mtr>     <mtr>@@ -222,7 +222,7 @@         <mtext mathvariant="normal">olcir</mtext>       </mtd>       <mtd>-        <mo>⦾</mo>+        <mi>⦾</mi>       </mtd>     </mtr>     <mtr>@@ -230,7 +230,7 @@         <mtext mathvariant="normal">olcross</mtext>       </mtd>       <mtd>-        <mo>⦻</mo>+        <mi>⦻</mi>       </mtd>     </mtr>     <mtr>@@ -246,7 +246,7 @@         <mtext mathvariant="normal">omacr</mtext>       </mtd>       <mtd>-        <mo>ō</mo>+        <mi>ō</mi>       </mtd>     </mtr>     <mtr>@@ -254,7 +254,7 @@         <mtext mathvariant="normal">Omacr</mtext>       </mtd>       <mtd>-        <mo>Ō</mo>+        <mi>Ō</mi>       </mtd>     </mtr>     <mtr>@@ -366,7 +366,7 @@         <mtext mathvariant="normal">orarr</mtext>       </mtd>       <mtd>-        <mo>↻</mo>+        <mi>↻</mi>       </mtd>     </mtr>     <mtr>@@ -446,7 +446,7 @@         <mtext mathvariant="normal">oS</mtext>       </mtd>       <mtd>-        <mo>Ⓢ</mo>+        <mi>Ⓢ</mi>       </mtd>     </mtr>     <mtr>@@ -470,7 +470,7 @@         <mtext mathvariant="normal">oslash</mtext>       </mtd>       <mtd>-        <mo>ø</mo>+        <mi>ø</mi>       </mtd>     </mtr>     <mtr>@@ -478,7 +478,7 @@         <mtext mathvariant="normal">Oslash</mtext>       </mtd>       <mtd>-        <mo>Ø</mo>+        <mi>Ø</mi>       </mtd>     </mtr>     <mtr>@@ -494,7 +494,7 @@         <mtext mathvariant="normal">otilde</mtext>       </mtd>       <mtd>-        <mo>õ</mo>+        <mi>õ</mi>       </mtd>     </mtr>     <mtr>@@ -502,7 +502,7 @@         <mtext mathvariant="normal">Otilde</mtext>       </mtd>       <mtd>-        <mo>Õ</mo>+        <mi>Õ</mi>       </mtd>     </mtr>     <mtr>@@ -534,7 +534,7 @@         <mtext mathvariant="normal">ouml</mtext>       </mtd>       <mtd>-        <mo>ö</mo>+        <mi>ö</mi>       </mtd>     </mtr>     <mtr>@@ -542,7 +542,7 @@         <mtext mathvariant="normal">Ouml</mtext>       </mtd>       <mtd>-        <mo>Ö</mo>+        <mi>Ö</mi>       </mtd>     </mtr>     <mtr>
tests/writers/oint1.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/oint2.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/p.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">para</mtext>       </mtd>       <mtd>-        <mo>¶</mo>+        <mi>¶</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">part</mtext>       </mtd>       <mtd>-        <mo>∂</mo>+        <mi>∂</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">PartialD</mtext>       </mtd>       <mtd>-        <mo>∂</mo>+        <mi>∂</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">pcy</mtext>       </mtd>       <mtd>-        <mo>п</mo>+        <mi>п</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">Pcy</mtext>       </mtd>       <mtd>-        <mo>П</mo>+        <mi>П</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">percnt</mtext>       </mtd>       <mtd>-        <mo>%</mo>+        <mi>%</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">permil</mtext>       </mtd>       <mtd>-        <mo>‰</mo>+        <mi>‰</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">perp</mtext>       </mtd>       <mtd>-        <mo>⊥</mo>+        <mi>⊥</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">pertenk</mtext>       </mtd>       <mtd>-        <mo>‱</mo>+        <mi>‱</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">phone</mtext>       </mtd>       <mtd>-        <mo>☎</mo>+        <mi>☎</mi>       </mtd>     </mtr>     <mtr>@@ -214,7 +214,7 @@         <mtext mathvariant="normal">planckh</mtext>       </mtd>       <mtd>-        <mo>ℎ</mo>+        <mi>ℎ</mi>       </mtd>     </mtr>     <mtr>@@ -358,7 +358,7 @@         <mtext mathvariant="normal">pound</mtext>       </mtd>       <mtd>-        <mo>£</mo>+        <mi>£</mi>       </mtd>     </mtr>     <mtr>@@ -510,7 +510,7 @@         <mtext mathvariant="normal">prime</mtext>       </mtd>       <mtd>-        <mo>′</mo>+        <mi>′</mi>       </mtd>     </mtr>     <mtr>@@ -574,7 +574,7 @@         <mtext mathvariant="normal">profalar</mtext>       </mtd>       <mtd>-        <mo>⌮</mo>+        <mi>⌮</mi>       </mtd>     </mtr>     <mtr>@@ -582,7 +582,7 @@         <mtext mathvariant="normal">profline</mtext>       </mtd>       <mtd>-        <mo>⌒</mo>+        <mi>⌒</mi>       </mtd>     </mtr>     <mtr>@@ -590,7 +590,7 @@         <mtext mathvariant="normal">profsurf</mtext>       </mtd>       <mtd>-        <mo>⌓</mo>+        <mi>⌓</mi>       </mtd>     </mtr>     <mtr>@@ -678,7 +678,7 @@         <mtext mathvariant="normal">puncsp</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>   </mtable>
tests/writers/primes1.mml view
@@ -13,7 +13,7 @@     <mo>+</mo>     <msup>       <mi>x</mi>-      <mo>′</mo>+      <mi>′</mi>     </msup>     <mo>+</mo>     <msup>
tests/writers/primes2.mml view
@@ -11,7 +11,7 @@     </msup>     <msup>       <mi>H</mi>-      <mo>*</mo>+      <mi>*</mi>     </msup>     <msup>       <mi>H</mi>@@ -23,7 +23,7 @@     </msup>     <msup>       <mi>H</mi>-      <mo>°</mo>+      <mi>°</mi>     </msup>     <msup>       <mi>H</mi>@@ -79,7 +79,7 @@     </msup>     <msup>       <mi>H</mi>-      <mo>′</mo>+      <mi>′</mi>     </msup>     <msup>       <mi>H</mi>
tests/writers/q.mml view
@@ -86,7 +86,7 @@         <mtext mathvariant="normal">quest</mtext>       </mtd>       <mtd>-        <mo>?</mo>+        <mi>?</mi>       </mtd>     </mtr>     <mtr>
tests/writers/r.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">race</mtext>       </mtd>       <mtd>-        <mo>∽̱</mo>+        <mi>∽̱</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">racute</mtext>       </mtd>       <mtd>-        <mo>ŕ</mo>+        <mi>ŕ</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">Racute</mtext>       </mtd>       <mtd>-        <mo>Ŕ</mo>+        <mi>Ŕ</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">raemptyv</mtext>       </mtd>       <mtd>-        <mo>⦳</mo>+        <mi>⦳</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">range</mtext>       </mtd>       <mtd>-        <mo>⦥</mo>+        <mi>⦥</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">raquo</mtext>       </mtd>       <mtd>-        <mo>»</mo>+        <mi>»</mi>       </mtd>     </mtr>     <mtr>@@ -326,7 +326,7 @@         <mtext mathvariant="normal">rcaron</mtext>       </mtd>       <mtd>-        <mo>ř</mo>+        <mi>ř</mi>       </mtd>     </mtr>     <mtr>@@ -334,7 +334,7 @@         <mtext mathvariant="normal">Rcaron</mtext>       </mtd>       <mtd>-        <mo>Ř</mo>+        <mi>Ř</mi>       </mtd>     </mtr>     <mtr>@@ -342,7 +342,7 @@         <mtext mathvariant="normal">rcedil</mtext>       </mtd>       <mtd>-        <mo>ŗ</mo>+        <mi>ŗ</mi>       </mtd>     </mtr>     <mtr>@@ -350,7 +350,7 @@         <mtext mathvariant="normal">Rcedil</mtext>       </mtd>       <mtd>-        <mo>Ŗ</mo>+        <mi>Ŗ</mi>       </mtd>     </mtr>     <mtr>@@ -374,7 +374,7 @@         <mtext mathvariant="normal">rcy</mtext>       </mtd>       <mtd>-        <mo>р</mo>+        <mi>р</mi>       </mtd>     </mtr>     <mtr>@@ -382,7 +382,7 @@         <mtext mathvariant="normal">Rcy</mtext>       </mtd>       <mtd>-        <mo>Р</mo>+        <mi>Р</mi>       </mtd>     </mtr>     <mtr>@@ -470,7 +470,7 @@         <mtext mathvariant="normal">rect</mtext>       </mtd>       <mtd>-        <mo>▭</mo>+        <mi>▭</mi>       </mtd>     </mtr>     <mtr>@@ -478,7 +478,7 @@         <mtext mathvariant="normal">reg</mtext>       </mtd>       <mtd>-        <mo>®</mo>+        <mi>®</mi>       </mtd>     </mtr>     <mtr>@@ -878,7 +878,7 @@         <mtext mathvariant="normal">rmoust</mtext>       </mtd>       <mtd>-        <mo>⎱</mo>+        <mi>⎱</mi>       </mtd>     </mtr>     <mtr>@@ -886,7 +886,7 @@         <mtext mathvariant="normal">rmoustache</mtext>       </mtd>       <mtd>-        <mo>⎱</mo>+        <mi>⎱</mi>       </mtd>     </mtr>     <mtr>@@ -1134,7 +1134,7 @@         <mtext mathvariant="normal">rx</mtext>       </mtd>       <mtd>-        <mo>℞</mo>+        <mi>℞</mi>       </mtd>     </mtr>   </mtable>
tests/writers/rec-mlabeledtr.mml view
@@ -8,7 +8,7 @@           <mo>=</mo>           <mrow>             <mi>m</mi>-            <mo>&#8290;</mo>+            <mi>&#8290;</mi>             <msup>               <mi>c</mi>               <mn>2</mn>
tests/writers/s.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">sacute</mtext>       </mtd>       <mtd>-        <mo>ś</mo>+        <mi>ś</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Sacute</mtext>       </mtd>       <mtd>-        <mo>Ś</mo>+        <mi>Ś</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">scaron</mtext>       </mtd>       <mtd>-        <mo>š</mo>+        <mi>š</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">Scaron</mtext>       </mtd>       <mtd>-        <mo>Š</mo>+        <mi>Š</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">scedil</mtext>       </mtd>       <mtd>-        <mo>ş</mo>+        <mi>ş</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">Scedil</mtext>       </mtd>       <mtd>-        <mo>Ş</mo>+        <mi>Ş</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">scirc</mtext>       </mtd>       <mtd>-        <mo>ŝ</mo>+        <mi>ŝ</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">Scirc</mtext>       </mtd>       <mtd>-        <mo>Ŝ</mo>+        <mi>Ŝ</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">scy</mtext>       </mtd>       <mtd>-        <mo>с</mo>+        <mi>с</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">Scy</mtext>       </mtd>       <mtd>-        <mo>С</mo>+        <mi>С</mi>       </mtd>     </mtr>     <mtr>@@ -230,7 +230,7 @@         <mtext mathvariant="normal">sect</mtext>       </mtd>       <mtd>-        <mo>§</mo>+        <mi>§</mi>       </mtd>     </mtr>     <mtr>@@ -270,7 +270,7 @@         <mtext mathvariant="normal">sext</mtext>       </mtd>       <mtd>-        <mo>✶</mo>+        <mi>✶</mi>       </mtd>     </mtr>     <mtr>@@ -302,7 +302,7 @@         <mtext mathvariant="normal">sharp</mtext>       </mtd>       <mtd>-        <mo>♯</mo>+        <mi>♯</mi>       </mtd>     </mtr>     <mtr>@@ -310,7 +310,7 @@         <mtext mathvariant="normal">shchcy</mtext>       </mtd>       <mtd>-        <mo>щ</mo>+        <mi>щ</mi>       </mtd>     </mtr>     <mtr>@@ -318,7 +318,7 @@         <mtext mathvariant="normal">SHCHcy</mtext>       </mtd>       <mtd>-        <mo>Щ</mo>+        <mi>Щ</mi>       </mtd>     </mtr>     <mtr>@@ -326,7 +326,7 @@         <mtext mathvariant="normal">shcy</mtext>       </mtd>       <mtd>-        <mo>ш</mo>+        <mi>ш</mi>       </mtd>     </mtr>     <mtr>@@ -390,7 +390,7 @@         <mtext mathvariant="normal">shy</mtext>       </mtd>       <mtd>-        <mo>&#173;</mo>+        <mi>&#173;</mi>       </mtd>     </mtr>     <mtr>@@ -590,7 +590,7 @@         <mtext mathvariant="normal">softcy</mtext>       </mtd>       <mtd>-        <mo>ь</mo>+        <mi>ь</mi>       </mtd>     </mtr>     <mtr>@@ -598,7 +598,7 @@         <mtext mathvariant="normal">SOFTcy</mtext>       </mtd>       <mtd>-        <mo>Ь</mo>+        <mi>Ь</mi>       </mtd>     </mtr>     <mtr>@@ -606,7 +606,7 @@         <mtext mathvariant="normal">sol</mtext>       </mtd>       <mtd>-        <mo>/</mo>+        <mi>/</mi>       </mtd>     </mtr>     <mtr>@@ -646,7 +646,7 @@         <mtext mathvariant="normal">spades</mtext>       </mtd>       <mtd>-        <mo>♠</mo>+        <mi>♠</mi>       </mtd>     </mtr>     <mtr>@@ -654,7 +654,7 @@         <mtext mathvariant="normal">spadesuit</mtext>       </mtd>       <mtd>-        <mo>♠</mo>+        <mi>♠</mi>       </mtd>     </mtr>     <mtr>@@ -774,7 +774,7 @@         <mtext mathvariant="normal">squ</mtext>       </mtd>       <mtd>-        <mo>□</mo>+        <mi>□</mi>       </mtd>     </mtr>     <mtr>@@ -782,7 +782,7 @@         <mtext mathvariant="normal">square</mtext>       </mtd>       <mtd>-        <mo>□</mo>+        <mi>□</mi>       </mtd>     </mtr>     <mtr>@@ -790,7 +790,7 @@         <mtext mathvariant="normal">Square</mtext>       </mtd>       <mtd>-        <mo>□</mo>+        <mi>□</mi>       </mtd>     </mtr>     <mtr>@@ -846,7 +846,7 @@         <mtext mathvariant="normal">squarf</mtext>       </mtd>       <mtd>-        <mo>▪</mo>+        <mi>▪</mi>       </mtd>     </mtr>     <mtr>@@ -854,7 +854,7 @@         <mtext mathvariant="normal">squf</mtext>       </mtd>       <mtd>-        <mo>▪</mo>+        <mi>▪</mi>       </mtd>     </mtr>     <mtr>@@ -910,7 +910,7 @@         <mtext mathvariant="normal">star</mtext>       </mtd>       <mtd>-        <mo>☆</mo>+        <mi>☆</mi>       </mtd>     </mtr>     <mtr>@@ -926,7 +926,7 @@         <mtext mathvariant="normal">starf</mtext>       </mtd>       <mtd>-        <mo>★</mo>+        <mi>★</mi>       </mtd>     </mtr>     <mtr>@@ -1246,7 +1246,7 @@         <mtext mathvariant="normal">sung</mtext>       </mtd>       <mtd>-        <mo>♪</mo>+        <mi>♪</mi>       </mtd>     </mtr>     <mtr>@@ -1518,7 +1518,7 @@         <mtext mathvariant="normal">szlig</mtext>       </mtd>       <mtd>-        <mo>ß</mo>+        <mi>ß</mi>       </mtd>     </mtr>   </mtable>
tests/writers/simplePres.mml view
@@ -40,7 +40,7 @@         <mn>78</mn>       </mfrac>     </mfrac>-    <mo>*</mo>+    <mi>*</mi>     <msubsup>       <mi>x</mi>       <mn>2</mn>
tests/writers/sophomores_dream.mml view
@@ -23,7 +23,7 @@         <mo>=</mo>         <mn>1</mn>       </mrow>-      <mo>∞</mo>+      <mi>∞</mi>     </munderover>     <mrow>       <mo stretchy="false" form="prefix">(</mo>
tests/writers/stretchAccents1.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="ˆ" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>xxx</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>+</m:t>@@ -34,47 +36,53 @@       <m:rPr />       <m:t>+</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="ˇ" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>xxx</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>+</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="˜" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>xxx</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>+</m:t>     </m:r>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⏞" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>xxx</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:r>       <m:rPr />       <m:t>+</m:t>
tests/writers/stretchBrack1.omml view
@@ -4,10 +4,12 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="⏞" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />@@ -22,7 +24,7 @@           <m:t>G</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:limLow>       <m:e>         <m:r>
tests/writers/stretchHoriz1.omml view
@@ -83,10 +83,12 @@           </m:limUpp>         </m:e>         <m:e>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="→" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr>@@ -95,7 +97,7 @@                 <m:t>maps to</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>         </m:e>       </m:mr>       <m:mr>@@ -126,10 +128,12 @@           </m:limUpp>         </m:e>         <m:e>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="→" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr>@@ -138,7 +142,7 @@                 <m:t>maps to</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>         </m:e>       </m:mr>       <m:mr>@@ -169,10 +173,12 @@           </m:limUpp>         </m:e>         <m:e>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="→" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr>@@ -181,7 +187,7 @@                 <m:t>maps to</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>         </m:e>       </m:mr>       <m:mr>@@ -212,10 +218,12 @@           </m:limUpp>         </m:e>         <m:e>-          <m:acc>-            <m:accPr>+          <m:groupChr>+            <m:groupChrPr>               <m:chr m:val="→" />-            </m:accPr>+              <m:pos m:val="top" />+              <m:vertJc m:val="bot" />+            </m:groupChrPr>             <m:e>               <m:r>                 <m:rPr>@@ -224,7 +232,7 @@                 <m:t>maps to</m:t>               </m:r>             </m:e>-          </m:acc>+          </m:groupChr>         </m:e>       </m:mr>     </m:m>
tests/writers/stretchTilde1.omml view
@@ -4,16 +4,18 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="˜" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>caledonia</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>   </m:oMath> </m:oMathPara>
tests/writers/subsup.mml view
@@ -70,7 +70,7 @@           <mo>+</mo>           <mi>b</mi>         </mrow>-        <mo accent="true">︷</mo>+        <mo accent="true">⏞</mo>       </mover>       <mtext mathvariant="normal">term</mtext>     </mover>@@ -94,7 +94,7 @@           <mo>+</mo>           <mi>b</mi>         </mrow>-        <mo accent="true">︸</mo>+        <mo accent="true">⏟</mo>       </munder>       <mi>c</mi>     </munder>
tests/writers/subsup.omml view
@@ -154,17 +154,19 @@     </m:r>     <m:sSup>       <m:e>-        <m:acc>-          <m:accPr>+        <m:groupChr>+          <m:groupChrPr>             <m:chr m:val="̇" />-          </m:accPr>+            <m:pos m:val="top" />+            <m:vertJc m:val="bot" />+          </m:groupChrPr>           <m:e>             <m:r>               <m:rPr />               <m:t>u</m:t>             </m:r>           </m:e>-        </m:acc>+        </m:groupChr>       </m:e>       <m:sup>         <m:r>@@ -238,10 +240,12 @@     </m:r>     <m:limUpp>       <m:e>-        <m:acc>-          <m:accPr>-            <m:chr m:val="︷" />-          </m:accPr>+        <m:groupChr>+          <m:groupChrPr>+            <m:chr m:val="⏞" />+            <m:pos m:val="top" />+            <m:vertJc m:val="bot" />+          </m:groupChrPr>           <m:e>             <m:r>               <m:rPr />@@ -256,7 +260,7 @@               <m:t>b</m:t>             </m:r>           </m:e>-        </m:acc>+        </m:groupChr>       </m:e>       <m:lim>         <m:r>@@ -273,10 +277,12 @@     </m:r>     <m:limUpp>       <m:e>-        <m:acc>-          <m:accPr>+        <m:groupChr>+          <m:groupChrPr>             <m:chr m:val="⎴" />-          </m:accPr>+            <m:pos m:val="top" />+            <m:vertJc m:val="bot" />+          </m:groupChrPr>           <m:e>             <m:r>               <m:rPr />@@ -291,7 +297,7 @@               <m:t>b</m:t>             </m:r>           </m:e>-        </m:acc>+        </m:groupChr>       </m:e>       <m:lim>         <m:r>@@ -324,7 +330,7 @@           <m:lim>             <m:r>               <m:rPr />-              <m:t>︸</m:t>+              <m:t>⏟</m:t>             </m:r>           </m:lim>         </m:limLow>
tests/writers/t.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">target</mtext>       </mtd>       <mtd>-        <mo>⌖</mo>+        <mi>⌖</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">tcaron</mtext>       </mtd>       <mtd>-        <mo>ť</mo>+        <mi>ť</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">Tcaron</mtext>       </mtd>       <mtd>-        <mo>Ť</mo>+        <mi>Ť</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">tcedil</mtext>       </mtd>       <mtd>-        <mo>ţ</mo>+        <mi>ţ</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Tcedil</mtext>       </mtd>       <mtd>-        <mo>Ţ</mo>+        <mi>Ţ</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">tcy</mtext>       </mtd>       <mtd>-        <mo>т</mo>+        <mi>т</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">Tcy</mtext>       </mtd>       <mtd>-        <mo>Т</mo>+        <mi>Т</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">telrec</mtext>       </mtd>       <mtd>-        <mo>⌕</mo>+        <mi>⌕</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">there4</mtext>       </mtd>       <mtd>-        <mo>∴</mo>+        <mi>∴</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">therefore</mtext>       </mtd>       <mtd>-        <mo>∴</mo>+        <mi>∴</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">Therefore</mtext>       </mtd>       <mtd>-        <mo>∴</mo>+        <mi>∴</mi>       </mtd>     </mtr>     <mtr>@@ -190,7 +190,7 @@         <mtext mathvariant="normal">thinsp</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -198,7 +198,7 @@         <mtext mathvariant="normal">ThinSpace</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -222,7 +222,7 @@         <mtext mathvariant="normal">thorn</mtext>       </mtd>       <mtd>-        <mo>þ</mo>+        <mi>þ</mi>       </mtd>     </mtr>     <mtr>@@ -230,7 +230,7 @@         <mtext mathvariant="normal">THORN</mtext>       </mtd>       <mtd>-        <mo>Þ</mo>+        <mi>Þ</mi>       </mtd>     </mtr>     <mtr>@@ -326,7 +326,7 @@         <mtext mathvariant="normal">top</mtext>       </mtd>       <mtd>-        <mo>⊤</mo>+        <mi>⊤</mi>       </mtd>     </mtr>     <mtr>@@ -334,7 +334,7 @@         <mtext mathvariant="normal">topbot</mtext>       </mtd>       <mtd>-        <mo>⌶</mo>+        <mi>⌶</mi>       </mtd>     </mtr>     <mtr>@@ -342,7 +342,7 @@         <mtext mathvariant="normal">topcir</mtext>       </mtd>       <mtd>-        <mo>⫱</mo>+        <mi>⫱</mi>       </mtd>     </mtr>     <mtr>@@ -390,7 +390,7 @@         <mtext mathvariant="normal">trade</mtext>       </mtd>       <mtd>-        <mo>™</mo>+        <mi>™</mi>       </mtd>     </mtr>     <mtr>@@ -454,7 +454,7 @@         <mtext mathvariant="normal">tridot</mtext>       </mtd>       <mtd>-        <mo>◬</mo>+        <mi>◬</mi>       </mtd>     </mtr>     <mtr>@@ -510,7 +510,7 @@         <mtext mathvariant="normal">trpezium</mtext>       </mtd>       <mtd>-        <mo>⏢</mo>+        <mi>⏢</mi>       </mtd>     </mtr>     <mtr>@@ -534,7 +534,7 @@         <mtext mathvariant="normal">tscy</mtext>       </mtd>       <mtd>-        <mo>ц</mo>+        <mi>ц</mi>       </mtd>     </mtr>     <mtr>@@ -542,7 +542,7 @@         <mtext mathvariant="normal">TScy</mtext>       </mtd>       <mtd>-        <mo>Ц</mo>+        <mi>Ц</mi>       </mtd>     </mtr>     <mtr>@@ -550,7 +550,7 @@         <mtext mathvariant="normal">tshcy</mtext>       </mtd>       <mtd>-        <mo>ћ</mo>+        <mi>ћ</mi>       </mtd>     </mtr>     <mtr>@@ -558,7 +558,7 @@         <mtext mathvariant="normal">TSHcy</mtext>       </mtd>       <mtd>-        <mo>Ћ</mo>+        <mi>Ћ</mi>       </mtd>     </mtr>     <mtr>@@ -566,7 +566,7 @@         <mtext mathvariant="normal">tstrok</mtext>       </mtd>       <mtd>-        <mo>ŧ</mo>+        <mi>ŧ</mi>       </mtd>     </mtr>     <mtr>@@ -574,7 +574,7 @@         <mtext mathvariant="normal">Tstrok</mtext>       </mtd>       <mtd>-        <mo>Ŧ</mo>+        <mi>Ŧ</mi>       </mtd>     </mtr>     <mtr>
tests/writers/tokens.omml view
@@ -4,17 +4,19 @@     <m:jc m:val="center" />   </m:oMathParaPr>   <m:oMath>-    <m:acc>-      <m:accPr>+    <m:groupChr>+      <m:groupChrPr>         <m:chr m:val="̃" />-      </m:accPr>+        <m:pos m:val="top" />+        <m:vertJc m:val="bot" />+      </m:groupChrPr>       <m:e>         <m:r>           <m:rPr />           <m:t>ϕ</m:t>         </m:r>       </m:e>-    </m:acc>+    </m:groupChr>     <m:rad>       <m:radPr>         <m:degHide m:val="on" />
tests/writers/tripleint1.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/tripleint2.mml view
@@ -13,7 +13,7 @@       <mo stretchy="true" form="postfix">)</mo>     </mrow>     <mspace width="0.111em" />-    <mo>ⅆ</mo>+    <mi>ⅆ</mi>     <mi>x</mi>   </mrow> </math>
tests/writers/u.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">uacute</mtext>       </mtd>       <mtd>-        <mo>ú</mo>+        <mi>ú</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Uacute</mtext>       </mtd>       <mtd>-        <mo>Ú</mo>+        <mi>Ú</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">ubrcy</mtext>       </mtd>       <mtd>-        <mo>ў</mo>+        <mi>ў</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Ubrcy</mtext>       </mtd>       <mtd>-        <mo>Ў</mo>+        <mi>Ў</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">ubreve</mtext>       </mtd>       <mtd>-        <mo>ŭ</mo>+        <mi>ŭ</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">Ubreve</mtext>       </mtd>       <mtd>-        <mo>Ŭ</mo>+        <mi>Ŭ</mi>       </mtd>     </mtr>     <mtr>@@ -86,7 +86,7 @@         <mtext mathvariant="normal">ucirc</mtext>       </mtd>       <mtd>-        <mo>û</mo>+        <mi>û</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">Ucirc</mtext>       </mtd>       <mtd>-        <mo>Û</mo>+        <mi>Û</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">ucy</mtext>       </mtd>       <mtd>-        <mo>у</mo>+        <mi>у</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">Ucy</mtext>       </mtd>       <mtd>-        <mo>У</mo>+        <mi>У</mi>       </mtd>     </mtr>     <mtr>@@ -126,7 +126,7 @@         <mtext mathvariant="normal">udblac</mtext>       </mtd>       <mtd>-        <mo>ű</mo>+        <mi>ű</mi>       </mtd>     </mtr>     <mtr>@@ -134,7 +134,7 @@         <mtext mathvariant="normal">Udblac</mtext>       </mtd>       <mtd>-        <mo>Ű</mo>+        <mi>Ű</mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@         <mtext mathvariant="normal">ugrave</mtext>       </mtd>       <mtd>-        <mo>ù</mo>+        <mi>ù</mi>       </mtd>     </mtr>     <mtr>@@ -182,7 +182,7 @@         <mtext mathvariant="normal">Ugrave</mtext>       </mtd>       <mtd>-        <mo>Ù</mo>+        <mi>Ù</mi>       </mtd>     </mtr>     <mtr>@@ -214,7 +214,7 @@         <mtext mathvariant="normal">uhblk</mtext>       </mtd>       <mtd>-        <mo>▀</mo>+        <mi>▀</mi>       </mtd>     </mtr>     <mtr>@@ -238,7 +238,7 @@         <mtext mathvariant="normal">ulcrop</mtext>       </mtd>       <mtd>-        <mo>⌏</mo>+        <mi>⌏</mi>       </mtd>     </mtr>     <mtr>@@ -246,7 +246,7 @@         <mtext mathvariant="normal">ultri</mtext>       </mtd>       <mtd>-        <mo>◸</mo>+        <mi>◸</mi>       </mtd>     </mtr>     <mtr>@@ -254,7 +254,7 @@         <mtext mathvariant="normal">umacr</mtext>       </mtd>       <mtd>-        <mo>ū</mo>+        <mi>ū</mi>       </mtd>     </mtr>     <mtr>@@ -262,7 +262,7 @@         <mtext mathvariant="normal">Umacr</mtext>       </mtd>       <mtd>-        <mo>Ū</mo>+        <mi>Ū</mi>       </mtd>     </mtr>     <mtr>@@ -278,7 +278,7 @@         <mtext mathvariant="normal">UnderBar</mtext>       </mtd>       <mtd>-        <mo accent="false">_</mo>+        <mi>_</mi>       </mtd>     </mtr>     <mtr>@@ -326,7 +326,7 @@         <mtext mathvariant="normal">uogon</mtext>       </mtd>       <mtd>-        <mo>ų</mo>+        <mi>ų</mi>       </mtd>     </mtr>     <mtr>@@ -334,7 +334,7 @@         <mtext mathvariant="normal">Uogon</mtext>       </mtd>       <mtd>-        <mo>Ų</mo>+        <mi>Ų</mi>       </mtd>     </mtr>     <mtr>@@ -502,7 +502,7 @@         <mtext mathvariant="normal">UpTee</mtext>       </mtd>       <mtd>-        <mo>⊥</mo>+        <mi>⊥</mi>       </mtd>     </mtr>     <mtr>@@ -542,7 +542,7 @@         <mtext mathvariant="normal">urcrop</mtext>       </mtd>       <mtd>-        <mo>⌎</mo>+        <mi>⌎</mi>       </mtd>     </mtr>     <mtr>@@ -550,7 +550,7 @@         <mtext mathvariant="normal">uring</mtext>       </mtd>       <mtd>-        <mo>ů</mo>+        <mi>ů</mi>       </mtd>     </mtr>     <mtr>@@ -558,7 +558,7 @@         <mtext mathvariant="normal">Uring</mtext>       </mtd>       <mtd>-        <mo>Ů</mo>+        <mi>Ů</mi>       </mtd>     </mtr>     <mtr>@@ -566,7 +566,7 @@         <mtext mathvariant="normal">urtri</mtext>       </mtd>       <mtd>-        <mo>◹</mo>+        <mi>◹</mi>       </mtd>     </mtr>     <mtr>@@ -598,7 +598,7 @@         <mtext mathvariant="normal">utilde</mtext>       </mtd>       <mtd>-        <mo>ũ</mo>+        <mi>ũ</mi>       </mtd>     </mtr>     <mtr>@@ -606,7 +606,7 @@         <mtext mathvariant="normal">Utilde</mtext>       </mtd>       <mtd>-        <mo>Ũ</mo>+        <mi>Ũ</mi>       </mtd>     </mtr>     <mtr>@@ -638,7 +638,7 @@         <mtext mathvariant="normal">uuml</mtext>       </mtd>       <mtd>-        <mo>ü</mo>+        <mi>ü</mi>       </mtd>     </mtr>     <mtr>@@ -646,7 +646,7 @@         <mtext mathvariant="normal">Uuml</mtext>       </mtd>       <mtd>-        <mo>Ü</mo>+        <mi>Ü</mi>       </mtd>     </mtr>     <mtr>@@ -654,7 +654,7 @@         <mtext mathvariant="normal">uwangle</mtext>       </mtd>       <mtd>-        <mo>⦧</mo>+        <mi>⦧</mi>       </mtd>     </mtr>   </mtable>
tests/writers/v.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">vangrt</mtext>       </mtd>       <mtd>-        <mo>⦜</mo>+        <mi>⦜</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">varnothing</mtext>       </mtd>       <mtd>-        <mo>∅</mo>+        <mi>∅</mi>       </mtd>     </mtr>     <mtr>@@ -174,7 +174,7 @@         <mtext mathvariant="normal">vcy</mtext>       </mtd>       <mtd>-        <mo>в</mo>+        <mi>в</mi>       </mtd>     </mtr>     <mtr>@@ -182,7 +182,7 @@         <mtext mathvariant="normal">Vcy</mtext>       </mtd>       <mtd>-        <mo>В</mo>+        <mi>В</mi>       </mtd>     </mtr>     <mtr>@@ -318,7 +318,7 @@         <mtext mathvariant="normal">VerticalSeparator</mtext>       </mtd>       <mtd>-        <mo>❘</mo>+        <mi>❘</mi>       </mtd>     </mtr>     <mtr>@@ -334,7 +334,7 @@         <mtext mathvariant="normal">VeryThinSpace</mtext>       </mtd>       <mtd>-        <mo> </mo>+        <mi> </mi>       </mtd>     </mtr>     <mtr>@@ -366,7 +366,7 @@         <mtext mathvariant="normal">vnsub</mtext>       </mtd>       <mtd>-        <mo>⊂⃒</mo>+        <mi>⊂⃒</mi>       </mtd>     </mtr>     <mtr>@@ -374,7 +374,7 @@         <mtext mathvariant="normal">vnsup</mtext>       </mtd>       <mtd>-        <mo>⊃⃒</mo>+        <mi>⊃⃒</mi>       </mtd>     </mtr>     <mtr>@@ -470,7 +470,7 @@         <mtext mathvariant="normal">vzigzag</mtext>       </mtd>       <mtd>-        <mo>⦚</mo>+        <mi>⦚</mi>       </mtd>     </mtr>   </mtable>
tests/writers/w.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">wcirc</mtext>       </mtd>       <mtd>-        <mo>ŵ</mo>+        <mi>ŵ</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Wcirc</mtext>       </mtd>       <mtd>-        <mo>Ŵ</mo>+        <mi>Ŵ</mi>       </mtd>     </mtr>     <mtr>
tests/writers/white10.mml view
@@ -2,13 +2,13 @@ <math display="block" xmlns="http://www.w3.org/1998/Math/MathML">   <mrow>     <mi>H</mi>-    <mo> </mo>+    <mi> </mi>     <mi>H</mi>-    <mo> </mo>+    <mi> </mi>     <mi>H</mi>-    <mo> </mo>+    <mi> </mi>     <mi>H</mi>-    <mo> </mo>+    <mi> </mi>     <mi>H</mi>     <mi> ︀</mi>     <mi>H</mi>
tests/writers/x.mml view
@@ -14,7 +14,7 @@         <mtext mathvariant="normal">xcirc</mtext>       </mtd>       <mtd>-        <mo>◯</mo>+        <mi>◯</mi>       </mtd>     </mtr>     <mtr>
tests/writers/y.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">yacute</mtext>       </mtd>       <mtd>-        <mo>ý</mo>+        <mi>ý</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Yacute</mtext>       </mtd>       <mtd>-        <mo>Ý</mo>+        <mi>Ý</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">yacy</mtext>       </mtd>       <mtd>-        <mo>я</mo>+        <mi>я</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">YAcy</mtext>       </mtd>       <mtd>-        <mo>Я</mo>+        <mi>Я</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">ycirc</mtext>       </mtd>       <mtd>-        <mo>ŷ</mo>+        <mi>ŷ</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">Ycirc</mtext>       </mtd>       <mtd>-        <mo>Ŷ</mo>+        <mi>Ŷ</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">ycy</mtext>       </mtd>       <mtd>-        <mo>ы</mo>+        <mi>ы</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Ycy</mtext>       </mtd>       <mtd>-        <mo>Ы</mo>+        <mi>Ы</mi>       </mtd>     </mtr>     <mtr>@@ -70,7 +70,7 @@         <mtext mathvariant="normal">yen</mtext>       </mtd>       <mtd>-        <mo>¥</mo>+        <mi>¥</mi>       </mtd>     </mtr>     <mtr>@@ -94,7 +94,7 @@         <mtext mathvariant="normal">yicy</mtext>       </mtd>       <mtd>-        <mo>ї</mo>+        <mi>ї</mi>       </mtd>     </mtr>     <mtr>@@ -102,7 +102,7 @@         <mtext mathvariant="normal">YIcy</mtext>       </mtd>       <mtd>-        <mo>Ї</mo>+        <mi>Ї</mi>       </mtd>     </mtr>     <mtr>@@ -142,7 +142,7 @@         <mtext mathvariant="normal">yucy</mtext>       </mtd>       <mtd>-        <mo>ю</mo>+        <mi>ю</mi>       </mtd>     </mtr>     <mtr>@@ -150,7 +150,7 @@         <mtext mathvariant="normal">YUcy</mtext>       </mtd>       <mtd>-        <mo>Ю</mo>+        <mi>Ю</mi>       </mtd>     </mtr>     <mtr>@@ -158,7 +158,7 @@         <mtext mathvariant="normal">yuml</mtext>       </mtd>       <mtd>-        <mo>ÿ</mo>+        <mi>ÿ</mi>       </mtd>     </mtr>     <mtr>@@ -166,7 +166,7 @@         <mtext mathvariant="normal">Yuml</mtext>       </mtd>       <mtd>-        <mo>Ÿ</mo>+        <mi>Ÿ</mi>       </mtd>     </mtr>   </mtable>
tests/writers/z.mml view
@@ -6,7 +6,7 @@         <mtext mathvariant="normal">zacute</mtext>       </mtd>       <mtd>-        <mo>ź</mo>+        <mi>ź</mi>       </mtd>     </mtr>     <mtr>@@ -14,7 +14,7 @@         <mtext mathvariant="normal">Zacute</mtext>       </mtd>       <mtd>-        <mo>Ź</mo>+        <mi>Ź</mi>       </mtd>     </mtr>     <mtr>@@ -22,7 +22,7 @@         <mtext mathvariant="normal">zcaron</mtext>       </mtd>       <mtd>-        <mo>ž</mo>+        <mi>ž</mi>       </mtd>     </mtr>     <mtr>@@ -30,7 +30,7 @@         <mtext mathvariant="normal">Zcaron</mtext>       </mtd>       <mtd>-        <mo>Ž</mo>+        <mi>Ž</mi>       </mtd>     </mtr>     <mtr>@@ -38,7 +38,7 @@         <mtext mathvariant="normal">zcy</mtext>       </mtd>       <mtd>-        <mo>з</mo>+        <mi>з</mi>       </mtd>     </mtr>     <mtr>@@ -46,7 +46,7 @@         <mtext mathvariant="normal">Zcy</mtext>       </mtd>       <mtd>-        <mo>З</mo>+        <mi>З</mi>       </mtd>     </mtr>     <mtr>@@ -54,7 +54,7 @@         <mtext mathvariant="normal">zdot</mtext>       </mtd>       <mtd>-        <mo>ż</mo>+        <mi>ż</mi>       </mtd>     </mtr>     <mtr>@@ -62,7 +62,7 @@         <mtext mathvariant="normal">Zdot</mtext>       </mtd>       <mtd>-        <mo>Ż</mo>+        <mi>Ż</mi>       </mtd>     </mtr>     <mtr>@@ -78,7 +78,7 @@         <mtext mathvariant="normal">ZeroWidthSpace</mtext>       </mtd>       <mtd>-        <mo>&#8203;</mo>+        <mi>&#8203;</mi>       </mtd>     </mtr>     <mtr>@@ -110,7 +110,7 @@         <mtext mathvariant="normal">zhcy</mtext>       </mtd>       <mtd>-        <mo>ж</mo>+        <mi>ж</mi>       </mtd>     </mtr>     <mtr>@@ -118,7 +118,7 @@         <mtext mathvariant="normal">ZHcy</mtext>       </mtd>       <mtd>-        <mo>Ж</mo>+        <mi>Ж</mi>       </mtd>     </mtr>     <mtr>
texmath.cabal view
@@ -1,5 +1,5 @@ Name:                texmath-Version:             0.8.4.1+Version:             0.8.4.2 Cabal-Version:       >= 1.10 Build-type:          Simple Synopsis:            Conversion between formats used to represent mathematics.