summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2020-04-09 06:04:59 +0300
committerRasmus Andersson <rasmus@notion.se>2020-04-09 06:04:59 +0300
commit9890b2508d4e9e44cae991645461f2c7bdffeddc (patch)
tree2556f76c77449f7a1ceb0a41ccb9d50c566cd50e
parentf4116ac9acd9db21338bd0fb82bd8ec0c668da76 (diff)
downloadinter-9890b2508d4e9e44cae991645461f2c7bdffeddc.tar.xz
display: round all kerning values to integers
-rw-r--r--misc/tools/round-kerning-in-glyphs-file.py45
-rw-r--r--src/InterDisplay.glyphs10020
2 files changed, 5055 insertions, 5010 deletions
diff --git a/misc/tools/round-kerning-in-glyphs-file.py b/misc/tools/round-kerning-in-glyphs-file.py
new file mode 100644
index 000000000..e2a6d8dde
--- /dev/null
+++ b/misc/tools/round-kerning-in-glyphs-file.py
@@ -0,0 +1,45 @@
+#!/usr/bin/env python
+# encoding: utf8
+__doc__ = """
+Rounds all kerning values in a Glyphs file to integers
+"""
+import os, sys, re
+
+pat = re.compile(r'(.*=\s*)(\-?\d[\d\.]*);\n')
+file = sys.argv[1]
+outlines = []
+count = 0
+
+with open(file, "r") as f:
+ print(f)
+ level = 0
+ done = False
+ for lineno, line in enumerate(f):
+ if not done:
+ if level == 0:
+ if line == "kerning = {\n":
+ print("BEGIN at line", lineno)
+ level = 1
+ else:
+ if line.find("{") != -1:
+ level += 1
+ if line.find("}") != -1:
+ level -= 1
+ m = pat.match(line)
+ if m is not None:
+ val = m.group(2)
+ val2 = str(int(float(val)))
+ line = m.group(1) + val2 + ";\n"
+ if val != val2:
+ count += 1
+ if level == 0:
+ print("END at line", lineno)
+ done = True
+ outlines.append(line)
+
+if count == 0:
+ print("all kerning values in %s are integers (no change)" % file)
+else:
+ print("rounded %r kerning values in %s" % (count, file))
+ with open(file, "w") as f:
+ f.write("".join(outlines))
diff --git a/src/InterDisplay.glyphs b/src/InterDisplay.glyphs
index 910942c1e..44b2e7cd3 100644
--- a/src/InterDisplay.glyphs
+++ b/src/InterDisplay.glyphs
@@ -429298,24 +429298,24 @@ kerning = {
"B1F27B51-9973-4381-9301-4FE46FE1CA59" = {
"@MMK_L_A" = {
"@MMK_R_C" = -69;
-"@MMK_R_T" = -172.5;
+"@MMK_R_T" = -172;
"@MMK_R_V" = -138;
"@MMK_R_W" = -115;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_approxequal" = -103.5;
+"@MMK_R_Y" = -149;
+"@MMK_R_approxequal" = -103;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_eight.sups" = -184;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_idieresis" = 92;
-"@MMK_R_idotless" = 11.5;
-"@MMK_R_nine.1" = -20.125;
+"@MMK_R_idotless" = 11;
+"@MMK_R_nine.1" = -20;
"@MMK_R_one" = -69;
"@MMK_R_quotedbl" = -161;
-"@MMK_R_quotedblleft" = -264.5;
+"@MMK_R_quotedblleft" = -264;
"@MMK_R_quotedblright" = -207;
-"@MMK_R_registered" = -143.75;
+"@MMK_R_registered" = -143;
"@MMK_R_t" = -69;
"@MMK_R_v" = -138;
"@MMK_R_w" = -138;
@@ -429323,13 +429323,13 @@ Tbar = -115;
asterisk.case = -69;
llinebelow = 69;
periodcentered = -69;
-question = -126.5;
+question = -126;
rlinebelow.1 = 69;
};
"@MMK_L_Alphagreek" = {
"@MMK_R_Omicrongreek" = -69;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_deltagreek" = -69;
"@MMK_R_eight.sups" = -184;
"@MMK_R_gammagreek" = -138;
@@ -429337,41 +429337,41 @@ rlinebelow.1 = 69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_omegagreek" = -69;
"@MMK_R_one" = -69;
-"@MMK_R_quotedbl" = -195.5;
+"@MMK_R_quotedbl" = -195;
"@MMK_R_quotedblleft" = -276;
-"@MMK_R_quotedblright" = -195.5;
-Psi = -126.5;
+"@MMK_R_quotedblright" = -195;
+Psi = -126;
asterisk.case = -69;
-question = -126.5;
-tau = -103.5;
-theta = -80.5;
-zeta = -80.5;
+question = -126;
+tau = -103;
+theta = -80;
+zeta = -80;
};
"@MMK_L_B" = {
"@MMK_R_idieresis" = 69;
};
"@MMK_L_C" = {
"@MMK_R_idieresis" = 69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_D" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -60.375;
+"@MMK_R_T" = -60;
"@MMK_R_V" = -69;
"@MMK_R_Y" = -69;
"@MMK_R_comma" = -92;
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
"@MMK_R_quotedblleft" = -69;
-"@MMK_R_registered" = -11.5;
-slash = -80.5;
-underscore = -80.5;
+"@MMK_R_registered" = -11;
+slash = -80;
+underscore = -80;
};
"@MMK_L_Decyrillic" = {
afii10021 = 69;
-underscore = 126.5;
+underscore = 126;
};
"@MMK_L_E" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
idblgrave = 69;
};
"@MMK_L_Ecyrillic" = {
@@ -429380,21 +429380,21 @@ idblgrave = 69;
"@MMK_L_Ereversedcyrillic" = {
"@MMK_R_comma" = -92;
"@MMK_R_quotedblbase" = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_F" = {
"@MMK_R_A" = -184;
"@MMK_R_C" = 0;
"@MMK_R_J" = -138;
-"@MMK_R_c" = -80.5;
-"@MMK_R_comma" = -80.5;
-"@MMK_R_m" = -11.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_c" = -80;
+"@MMK_R_comma" = -80;
+"@MMK_R_m" = -11;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_u" = -69;
"@MMK_R_v" = -69;
"@MMK_R_z" = -69;
"@MMK_R_zero.subs" = -115;
-ellipsis = -172.5;
+ellipsis = -172;
idblgrave = 69;
period = -69;
underscore = -69;
@@ -429411,11 +429411,11 @@ iinvertedbreve = 69;
rdblgrave.1 = 69;
};
"@MMK_L_H" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
"@MMK_R_m" = 0;
Idieresis = 161;
Idieresisacute = 92;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
iogonek = 69;
lcircumflexbelow = 69;
@@ -429427,64 +429427,64 @@ underscore = 69;
"@MMK_R_m.sups" = 0;
};
"@MMK_L_Idieresis" = {
-"@MMK_R_parenright.case" = 57.5;
+"@MMK_R_parenright.case" = 57;
};
"@MMK_L_J" = {
"@MMK_R_comma" = -69;
"@MMK_R_quotedblbase" = -161;
idblgrave = 69;
slash = -115;
-underscore = -103.5;
+underscore = -103;
};
"@MMK_L_K" = {
-"@MMK_R_C" = -80.5;
+"@MMK_R_C" = -80;
"@MMK_R_approxequal" = -69;
-"@MMK_R_c" = -80.5;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_c" = -80;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+"@MMK_R_idieresis" = 172;
"@MMK_R_idotless" = 69;
-"@MMK_R_registered" = -30.1875;
+"@MMK_R_registered" = -30;
"@MMK_R_u" = -69;
-"@MMK_R_v" = -80.5;
-"@MMK_R_w" = -126.5;
+"@MMK_R_v" = -80;
+"@MMK_R_w" = -126;
asterisk.case = -69;
-idblgrave = 80.5;
+idblgrave = 80;
idieresisacute = 69;
infinity = -69;
less = -138;
-logicalnot = -103.5;
+logicalnot = -103;
periodcentered = -92;
};
"@MMK_L_L" = {
"@MMK_R_A" = 92;
-"@MMK_R_C" = -57.5;
-"@MMK_R_T" = -195.5;
+"@MMK_R_C" = -57;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -138;
"@MMK_R_Y" = -69;
-"@MMK_R_asciicircum" = -264.5;
-"@MMK_R_dagger" = -195.5;
-"@MMK_R_eight.sups" = -310.5;
-"@MMK_R_guillemetleft" = -126.5;
-"@MMK_R_hyphen" = -172.5;
+"@MMK_R_asciicircum" = -264;
+"@MMK_R_dagger" = -195;
+"@MMK_R_eight.sups" = -310;
+"@MMK_R_guillemetleft" = -126;
+"@MMK_R_hyphen" = -172;
"@MMK_R_one" = -92;
"@MMK_R_quotedbl" = -184;
-"@MMK_R_quotedblleft" = -172.5;
-"@MMK_R_quotedblright" = -80.5;
-"@MMK_R_registered" = -163.875;
+"@MMK_R_quotedblleft" = -172;
+"@MMK_R_quotedblright" = -80;
+"@MMK_R_registered" = -163;
"@MMK_R_t" = -46;
"@MMK_R_v" = -138;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
-asciitilde = -80.5;
-asterisk = -80.5;
+asciitilde = -80;
+asterisk = -80;
asterisk.case = -69;
degree = -92;
-hyphen = -103.5;
-logicalnot = -264.5;
-periodcentered = -126.5;
+hyphen = -103;
+logicalnot = -264;
+periodcentered = -126;
quotedblreversed = -92;
quotereversed = -92;
tripleprime = -138;
@@ -429493,256 +429493,256 @@ tripleprime = -138;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_comma" = -92;
"@MMK_R_quotedblleft" = -69;
-slash = -80.5;
-underscore = -80.5;
+slash = -80;
+underscore = -80;
};
"@MMK_L_P" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_J" = -195.5;
-"@MMK_R_c" = -11.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_A" = -149;
+"@MMK_R_J" = -195;
+"@MMK_R_c" = -11;
+"@MMK_R_comma" = -80;
"@MMK_R_hyphen" = -92;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_zero.subs" = -161;
ampersand = -69;
-ellipsis = -195.5;
+ellipsis = -195;
period = -69;
};
"@MMK_L_R" = {
"@MMK_R_V" = -23;
"@MMK_R_Y" = -60;
-"@MMK_R_c" = -11.5;
+"@MMK_R_c" = -11;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_S" = {
"@MMK_R_idieresis" = 92;
};
"@MMK_L_T" = {
-"@MMK_R_A" = -172.5;
-"@MMK_R_C" = -60.375;
+"@MMK_R_A" = -172;
+"@MMK_R_C" = -60;
"@MMK_R_J" = -184;
-"@MMK_R_T.sc" = -126.5;
-"@MMK_R_a" = -149.5;
+"@MMK_R_T.sc" = -126;
+"@MMK_R_a" = -149;
"@MMK_R_c" = -161;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_idblgrave" = 258.75;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_idblgrave" = 258;
"@MMK_R_idieresis" = 184;
"@MMK_R_m" = -115;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_s" = -149.5;
-"@MMK_R_u" = -149.5;
-"@MMK_R_v" = -126.5;
-"@MMK_R_w" = -126.5;
-"@MMK_R_x" = -126.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_s" = -149;
+"@MMK_R_u" = -149;
+"@MMK_R_v" = -126;
+"@MMK_R_w" = -126;
+"@MMK_R_x" = -126;
"@MMK_R_z" = -92;
"@MMK_R_zero.subs" = -253;
-adieresis = -80.5;
+adieresis = -80;
ampersand = -69;
asterisk.case = -69;
-atilde = -80.5;
-colon.case = -80.5;
-edieresis = -103.5;
-ellipsis = -172.5;
+atilde = -80;
+colon.case = -80;
+edieresis = -103;
+ellipsis = -172;
four = -138;
-hyphen = -149.5;
+hyphen = -149;
less = -161;
-odieresis = -103.5;
-otilde = -103.5;
+odieresis = -103;
+otilde = -103;
periodcentered = -161;
slash = -161;
-udieresis = -103.5;
+udieresis = -103;
underscore = -115;
-uni0240 = -80.5;
-utilde = -80.5;
-wdieresis = -103.5;
+uni0240 = -80;
+utilde = -80;
+wdieresis = -103;
ydieresis = -69;
-zbar = -80.5;
-zcurl = -80.5;
+zbar = -80;
+zcurl = -80;
zdotbelow = -69;
zlinebelow = -69;
-zrthook = -80.5;
+zrthook = -80;
};
"@MMK_L_T.sc" = {
-"@MMK_R_T" = -126.5;
-"@MMK_R_a" = -57.5;
-"@MMK_R_c" = -57.5;
+"@MMK_R_T" = -126;
+"@MMK_R_a" = -57;
+"@MMK_R_c" = -57;
"@MMK_R_comma" = -184;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -80;
integral = -115;
logicalnot = -69;
-underscore = -103.5;
-vturn = -86.25;
+underscore = -103;
+vturn = -86;
};
"@MMK_L_V" = {
-"@MMK_R_A" = -126.5;
+"@MMK_R_A" = -126;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -103.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -103;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -103;
+"@MMK_R_idieresis" = 172;
"@MMK_R_quotedblbase" = -230;
"@MMK_R_s" = -92;
-"@MMK_R_zero.subs" = -195.5;
-adieresis = -80.5;
-ampersand = -103.5;
+"@MMK_R_zero.subs" = -195;
+adieresis = -80;
+ampersand = -103;
at = -69;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
-logicalnot = -126.5;
-multiply = -80.5;
+idblgrave = 80;
+less = -149;
+logicalnot = -126;
+multiply = -80;
otilde = -92;
-periodcentered = -80.5;
-slash = -149.5;
+periodcentered = -80;
+slash = -149;
underscore = -161;
};
"@MMK_L_W" = {
"@MMK_R_A" = -115;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -103.5;
-"@MMK_R_colon" = -103.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -126;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -103;
+"@MMK_R_colon" = -103;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
"@MMK_R_m" = -69;
-"@MMK_R_quotedblbase" = -218.5;
+"@MMK_R_quotedblbase" = -218;
"@MMK_R_s" = -69;
"@MMK_R_zero.subs" = -184;
-ampersand = -103.5;
+ampersand = -103;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
+idblgrave = 80;
+less = -149;
periodcentered = -69;
};
"@MMK_L_X" = {
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_c" = -57.5;
-"@MMK_R_guillemetleft" = -80.5;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_c" = -57;
+"@MMK_R_guillemetleft" = -80;
"@MMK_R_hyphen" = -138;
-"@MMK_R_registered" = -14.375;
+"@MMK_R_registered" = -14;
asterisk.case = -92;
-idblgrave = 80.5;
+idblgrave = 80;
less = -115;
periodcentered = -92;
};
"@MMK_L_Y" = {
-"@MMK_R_A" = -149.5;
+"@MMK_R_A" = -149;
"@MMK_R_C" = -69;
"@MMK_R_J" = -69;
"@MMK_R_T" = 92;
-"@MMK_R_a" = -143.75;
-"@MMK_R_approxequal" = -195.5;
-"@MMK_R_c" = -155.25;
-"@MMK_R_colon" = -126.5;
+"@MMK_R_a" = -143;
+"@MMK_R_approxequal" = -195;
+"@MMK_R_c" = -155;
+"@MMK_R_colon" = -126;
"@MMK_R_comma" = -69;
"@MMK_R_guillemetleft" = -184;
-"@MMK_R_guillemetright" = -126.5;
+"@MMK_R_guillemetright" = -126;
"@MMK_R_hyphen" = -161;
"@MMK_R_idotless" = 0;
-"@MMK_R_m" = -80.5;
-"@MMK_R_quotedblbase" = -218.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_m" = -80;
+"@MMK_R_quotedblbase" = -218;
+"@MMK_R_registered" = -17;
"@MMK_R_s" = -138;
-"@MMK_R_u" = -80.5;
+"@MMK_R_u" = -80;
"@MMK_R_zero.subs" = -230;
alpha = -115;
-ampersand = -126.5;
-asterisk.case = -80.5;
+ampersand = -126;
+asterisk.case = -80;
ccurl = -115;
chook = -115;
drthook = -115;
dyogh = -115;
dz = -115;
dzcurl = -115;
-ellipsis = -195.5;
+ellipsis = -195;
eturn = -115;
four = -138;
-iacute = -57.5;
-idblgrave = 80.5;
+iacute = -57;
+idblgrave = 80;
infinity = -69;
less = -207;
-logicalnot = -103.5;
+logicalnot = -103;
multiply = -92;
omacron = -115;
-periodcentered = -103.5;
+periodcentered = -103;
qrthook = -115;
-questiongreek = -126.5;
+questiongreek = -126;
schwa = -115;
uni0221 = -115;
uni0247 = -115;
-uni0248 = -241.5;
+uni0248 = -241;
};
"@MMK_L_Z" = {
"@MMK_R_C" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_idieresis" = 172;
idblgrave = 69;
-less = -126.5;
+less = -126;
periodcentered = -69;
};
"@MMK_L_a" = {
"@MMK_R_T" = -92;
-"@MMK_R_T.sc" = -86.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_one" = -80.5;
+"@MMK_R_T.sc" = -86;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -149;
+"@MMK_R_one" = -80;
"@MMK_R_quotedblleft" = -92;
-"@MMK_R_registered" = -17.25;
-"@MMK_R_v" = -40.25;
+"@MMK_R_registered" = -17;
+"@MMK_R_v" = -40;
Gamma1 = -69;
-Trthook = -149.5;
-Yhook = -103.5;
-uni023E = -149.5;
+Trthook = -149;
+Yhook = -103;
+uni023E = -149;
};
"@MMK_L_a.sups" = {
-"@MMK_R_v.sups" = -26.59375;
+"@MMK_R_v.sups" = -26;
};
"@MMK_L_alphagreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
};
"@MMK_L_approxequal" = {
-"@MMK_R_A" = -103.5;
+"@MMK_R_A" = -103;
"@MMK_R_V" = -138;
-"@MMK_R_W" = -126.5;
-"@MMK_R_X" = -103.5;
-"@MMK_R_Y" = -195.5;
+"@MMK_R_W" = -126;
+"@MMK_R_X" = -103;
+"@MMK_R_Y" = -195;
"@MMK_R_quotedblleft" = -115;
-"@MMK_R_v" = -80.5;
+"@MMK_R_v" = -80;
"@MMK_R_x" = -69;
afii10044 = -92;
-tenge = -80.5;
+tenge = -80;
};
"@MMK_L_asciicircum" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Dcroat" = 69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_J" = -195.5;
+"@MMK_R_J" = -195;
"@MMK_R_comma" = -276;
ampersand = -69;
four = -92;
@@ -429750,80 +429750,80 @@ underscore = -138;
};
"@MMK_L_b" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -80.5;
-"@MMK_R_T.sc" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -57.5;
-"@MMK_R_Y" = -172.5;
+"@MMK_R_T" = -80;
+"@MMK_R_T.sc" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -57;
+"@MMK_R_Y" = -172;
"@MMK_R_dagger" = -69;
"@MMK_R_parenright" = -23;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_registered" = -23;
-"@MMK_R_v" = -40.25;
-"@MMK_R_w" = -37.375;
+"@MMK_R_v" = -40;
+"@MMK_R_w" = -37;
"@MMK_R_x" = -46;
Trthook = -161;
-Yhook = -103.5;
+Yhook = -103;
idblgrave = 69;
jcrosstail = -92;
uni023E = -161;
};
"@MMK_L_b.sups" = {
-"@MMK_R_parenright.sups" = -15.09375;
-"@MMK_R_w.sups" = -25.15625;
-"@MMK_R_x.sups" = -30.90625;
+"@MMK_R_parenright.sups" = -15;
+"@MMK_R_w.sups" = -25;
+"@MMK_R_x.sups" = -30;
};
"@MMK_L_becyrillic" = {
hardsigncyrillic = -69;
};
"@MMK_L_bsmcyrillic" = {
-"@MMK_R_T" = -201.25;
+"@MMK_R_T" = -201;
"@MMK_R_T.sc" = -115;
-"@MMK_R_V" = -201.25;
-"@MMK_R_X" = -57.5;
+"@MMK_R_V" = -201;
+"@MMK_R_X" = -57;
"@MMK_R_Y" = -345;
"@MMK_R_dagger" = -115;
-"@MMK_R_parenright" = -57.5;
-"@MMK_R_quotedblleft" = -143.75;
-"@MMK_R_v" = -57.5;
-"@MMK_R_w" = -57.5;
+"@MMK_R_parenright" = -57;
+"@MMK_R_quotedblleft" = -143;
+"@MMK_R_v" = -57;
+"@MMK_R_w" = -57;
"@MMK_R_x" = -46;
};
"@MMK_L_c" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_T.sc" = -23;
-"@MMK_R_Y" = -126.5;
-"@MMK_R_registered" = -11.5;
-"@MMK_R_x" = -11.5;
+"@MMK_R_Y" = -126;
+"@MMK_R_registered" = -11;
+"@MMK_R_x" = -11;
idblgrave = 69;
};
"@MMK_L_c.sups" = {
-"@MMK_R_x.sups" = -7.90625;
+"@MMK_R_x.sups" = -7;
};
"@MMK_L_colon" = {
"@MMK_R_T" = -69;
-"@MMK_R_V" = -126.5;
+"@MMK_R_V" = -126;
"@MMK_R_quotedblleft" = -92;
-Psi = -126.5;
+Psi = -126;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-afii10044 = -103.5;
-uni023E = -80.5;
+Trthook = -80;
+afii10044 = -103;
+uni023E = -80;
};
"@MMK_L_comma" = {
"@MMK_R_T" = -69;
"@MMK_R_T.sc" = -184;
"@MMK_R_Y" = -69;
-"@MMK_R_nine.1" = -103.5;
+"@MMK_R_nine.1" = -103;
"@MMK_R_one" = -161;
-"@MMK_R_quotedbl" = -201.25;
+"@MMK_R_quotedbl" = -201;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_six" = -80.5;
+"@MMK_R_six" = -80;
"@MMK_R_three" = -69;
Tbar = -69;
Tcircumflexbelow = -69;
@@ -429838,31 +429838,31 @@ Yhookabove = -69;
Ytilde = -69;
eight = -69;
grave = -276;
-question = -181.125;
+question = -181;
quotedblreversed = -276;
quotereversed = -276;
};
"@MMK_L_dagger" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_Alphagreek" = -149.5;
-"@MMK_R_J" = -149.5;
+"@MMK_R_A" = -149;
+"@MMK_R_Alphagreek" = -149;
+"@MMK_R_J" = -149;
"@MMK_R_c" = -69;
-Hbar = 80.5;
-ampersand = -80.5;
+Hbar = 80;
+ampersand = -80;
};
"@MMK_L_dcaron" = {
-"@MMK_R_T" = 80.5;
+"@MMK_R_T" = 80;
"@MMK_R_asciicircum" = 115;
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 138;
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_one" = 92;
"@MMK_R_quotedbl" = 69;
"@MMK_R_quotedblleft" = 69;
-"@MMK_R_registered" = 34.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_registered" = 34;
+"@MMK_R_zero.subs" = -80;
hbar = 69;
ibreve = 69;
icaron = 69;
@@ -429877,39 +429877,39 @@ seven = 92;
underscore = 92;
};
"@MMK_L_deltagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
tau = -69;
};
"@MMK_L_e" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_T.sc" = -40.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -172.5;
-"@MMK_R_registered" = -34.5;
-"@MMK_R_v" = -34.5;
-"@MMK_R_x" = -28.75;
-Gamma1 = -80.5;
+"@MMK_R_T" = -103;
+"@MMK_R_T.sc" = -40;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -172;
+"@MMK_R_registered" = -34;
+"@MMK_R_v" = -34;
+"@MMK_R_x" = -28;
+Gamma1 = -80;
Trthook = -161;
-Yhook = -80.5;
+Yhook = -80;
uni023E = -161;
};
"@MMK_L_e.sups" = {
-"@MMK_R_x.sups" = -19.40625;
+"@MMK_R_x.sups" = -19;
};
"@MMK_L_eight" = {
"@MMK_R_comma" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_quotedblbase" = -103;
};
"@MMK_L_eight.sups" = {
"@MMK_R_A" = -184;
"@MMK_R_Alphagreek" = -184;
"@MMK_R_J" = -230;
-"@MMK_R_comma" = -218.5;
+"@MMK_R_comma" = -218;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_t" = 69;
Hbar = 92;
four = -115;
@@ -429921,154 +429921,154 @@ Psi = -92;
};
"@MMK_L_f" = {
"@MMK_R_A" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_Y" = 20.125;
+"@MMK_R_J" = -126;
+"@MMK_R_Y" = 20;
"@MMK_R_a" = -23;
"@MMK_R_bullet" = -46;
"@MMK_R_c" = -46;
"@MMK_R_comma" = -115;
"@MMK_R_eight.sups" = 46;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
"@MMK_R_idieresis" = 207;
"@MMK_R_quotedblbase" = -184;
"@MMK_R_s" = -46;
-"@MMK_R_slash" = -57.5;
-"@MMK_R_zero.subs" = -80.5;
-four = -126.5;
-hturnhook2 = 80.5;
+"@MMK_R_slash" = -57;
+"@MMK_R_zero.subs" = -80;
+four = -126;
+hturnhook2 = 80;
idblgrave = 92;
-underscore = -28.75;
+underscore = -28;
};
"@MMK_L_f.sups" = {
-"@MMK_R_a.sups" = -30.90625;
-"@MMK_R_c.sups" = -30.90625;
-"@MMK_R_s.sups" = -30.90625;
+"@MMK_R_a.sups" = -30;
+"@MMK_R_c.sups" = -30;
+"@MMK_R_s.sups" = -30;
};
"@MMK_L_four" = {
-"@MMK_R_one" = -20.125;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_one" = -20;
+"@MMK_R_registered" = -11;
};
"@MMK_L_four.dnomf" = {
-"@MMK_R_one.dnomf" = -12.21875;
+"@MMK_R_one.dnomf" = -12;
};
"@MMK_L_four.sups" = {
-"@MMK_R_one.sups" = -13.65625;
+"@MMK_R_one.sups" = -13;
};
"@MMK_L_fraction" = {
-"@MMK_R_four.dnomf" = -158.125;
+"@MMK_R_four.dnomf" = -158;
};
"@MMK_L_g" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
underscore = 69;
};
"@MMK_L_gammagreek" = {
"@MMK_R_Alphagreek" = -138;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = 69;
Sigma = -69;
-lambda = -80.5;
-less = -80.5;
+lambda = -80;
+less = -80;
logicalnot = -69;
slash = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_guillemetleft" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -103.5;
-"@MMK_R_Y" = -126.5;
-Psi = -126.5;
+"@MMK_R_T" = -103;
+"@MMK_R_Y" = -126;
+Psi = -126;
afii10044 = -138;
};
"@MMK_L_guillemetright" = {
"@MMK_R_A" = -69;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_T" = -264.5;
-"@MMK_R_V" = -126.5;
+"@MMK_R_T" = -264;
+"@MMK_R_V" = -126;
"@MMK_R_W" = -115;
-"@MMK_R_X" = -80.5;
+"@MMK_R_X" = -80;
"@MMK_R_Y" = -184;
"@MMK_R_Z" = -69;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_one" = -80.5;
-"@MMK_R_quotedblleft" = -172.5;
+"@MMK_R_one" = -80;
+"@MMK_R_quotedblleft" = -172;
"@MMK_R_three" = -92;
-"@MMK_R_two" = -103.5;
+"@MMK_R_two" = -103;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
"@MMK_R_x" = -69;
Psi = -184;
-afii10024 = -103.5;
+afii10024 = -103;
afii10044 = -138;
eight = -69;
-seven = -103.5;
+seven = -103;
};
"@MMK_L_hyphen" = {
-"@MMK_R_T" = -149.5;
-"@MMK_R_T.sc" = -57.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -126.5;
+"@MMK_R_T" = -149;
+"@MMK_R_T.sc" = -57;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -126;
"@MMK_R_Y" = -161;
"@MMK_R_four" = -69;
-"@MMK_R_nine.1" = -34.5;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_nine.1" = -34;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_three" = -23;
"@MMK_R_two" = -69;
"@MMK_R_x" = -46;
Psi = -161;
Tcaron = -69;
Tcommaaccent = -69;
-afii10024 = -218.5;
-afii10025 = -103.5;
+afii10024 = -218;
+afii10025 = -103;
afii10044 = -138;
seven = -46;
};
"@MMK_L_idieresis" = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_T" = 184;
-"@MMK_R_V" = 172.5;
+"@MMK_R_V" = 172;
"@MMK_R_Z" = 184;
-"@MMK_R_f" = 80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_f" = 80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 184;
"@MMK_R_jdotless" = -115;
"@MMK_R_one" = 92;
-"@MMK_R_t" = 103.5;
+"@MMK_R_t" = 103;
Dhook = 69;
-Dzcaron_ = 149.5;
-Enhookcyrillic = 149.5;
-Nhook = 149.5;
-Rx = 149.5;
+Dzcaron_ = 149;
+Enhookcyrillic = 149;
+Nhook = 149;
+Rx = 149;
Thook = 69;
-afii10026 = 149.5;
-hbar = 80.5;
+afii10026 = 149;
+hbar = 80;
ibreve = 69;
icaron = 69;
icircumflex = 69;
-idblgrave = 103.5;
+idblgrave = 103;
igrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
+imacron = 80;
jcircumflex = 69;
jcrosstail = -115;
-numero = 149.5;
-rdblgrave.1 = 80.5;
+numero = 149;
+rdblgrave.1 = 80;
seven = 184;
-uni01F6 = 149.5;
-uni0246 = 149.5;
-uni0376 = 149.5;
-uni048A = 149.5;
+uni01F6 = 149;
+uni0246 = 149;
+uni0376 = 149;
+uni048A = 149;
};
"@MMK_L_idotless" = {
"@MMK_R_V" = 69;
"@MMK_R_W" = 69;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_m" = 0;
"@MMK_R_parenright" = 69;
Dhook = 69;
@@ -430079,21 +430079,21 @@ Vtilde = 69;
Wdotaccent = 69;
Wdotbelow = 69;
florin = 69;
-hbar = 80.5;
-ibreve = 80.5;
+hbar = 80;
+ibreve = 80;
idblgrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
-iogonek = 80.5;
+imacron = 80;
+iogonek = 80;
itilde = 69;
itildebelow = 92;
-jcircumflex = 80.5;
+jcircumflex = 80;
lcircumflexbelow = 69;
llinebelow = 92;
rdblgrave.1 = 69;
rlinebelow.1 = 92;
tlinebelow = 69;
-underscore = 80.5;
+underscore = 80;
won = 69;
yen = 69;
};
@@ -430102,13 +430102,13 @@ yen = 69;
"@MMK_R_parenright.sups" = 46;
};
"@MMK_L_iotadieresisgreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -430116,180 +430116,180 @@ underscore = -69;
"@MMK_L_k" = {
"@MMK_R_T" = -115;
"@MMK_R_c" = -46;
-"@MMK_R_guillemetleft" = -103.5;
+"@MMK_R_guillemetleft" = -103;
"@MMK_R_hyphen" = -92;
four = -92;
-less = -172.5;
+less = -172;
logicalnot = -138;
};
"@MMK_L_k.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_nine" = {
"@MMK_R_Y" = -69;
-"@MMK_R_comma" = -80.5;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_comma" = -80;
+"@MMK_R_quotedblbase" = -103;
"@MMK_R_quotedblleft" = -92;
Psi = -69;
-seven = -40.25;
+seven = -40;
underscore = -92;
};
"@MMK_L_nine.1" = {
-"@MMK_R_A" = -20.125;
-"@MMK_R_comma" = -201.25;
-seven = -80.5;
+"@MMK_R_A" = -20;
+"@MMK_R_comma" = -201;
+seven = -80;
};
"@MMK_L_nine.dnomf" = {
-seven.dnomf = -24.4375;
+seven.dnomf = -24;
};
"@MMK_L_nine.sups" = {
-seven.sups = -26.59375;
+seven.sups = -26;
};
"@MMK_L_ohorn" = {
"@MMK_R_comma" = -92;
};
"@MMK_L_omegagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
};
"@MMK_L_one" = {
-"@MMK_R_comma" = -86.25;
+"@MMK_R_comma" = -86;
"@MMK_R_quotedblbase" = -92;
};
"@MMK_L_parenleft" = {
"@MMK_R_c" = -23;
-"@MMK_R_jdotless" = 57.5;
+"@MMK_R_jdotless" = 57;
idblgrave = 92;
llinebelow = 69;
rlinebelow.1 = 69;
};
"@MMK_L_parenleft.case" = {
-"@MMK_R_Idieresis" = 57.5;
+"@MMK_R_Idieresis" = 57;
};
"@MMK_L_parenleft.sups" = {
-"@MMK_R_c.sups" = -15.09375;
-"@MMK_R_jdotless.sups" = 38.09375;
+"@MMK_R_c.sups" = -15;
+"@MMK_R_jdotless.sups" = 38;
};
"@MMK_L_parenright" = {
"@MMK_R_quotedblleft" = -69;
};
"@MMK_L_psigreek" = {
"@MMK_R_Alphagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
-lambda = -80.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
+lambda = -80;
seven = -69;
};
"@MMK_L_quotedbl" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Elcyrillic" = -92;
-"@MMK_R_J" = -333.5;
-"@MMK_R_comma" = -201.25;
+"@MMK_R_J" = -333;
+"@MMK_R_comma" = -201;
ampersand = -69;
-four = -126.5;
+four = -126;
};
"@MMK_L_quotedblbase" = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -184;
-"@MMK_R_W" = -126.5;
-"@MMK_R_Y" = -218.5;
-"@MMK_R_eight.sups" = -195.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_W" = -126;
+"@MMK_R_Y" = -218;
+"@MMK_R_eight.sups" = -195;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_one" = -138;
"@MMK_R_quotedblleft" = -253;
-"@MMK_R_quotedblright" = -195.5;
-"@MMK_R_v" = -103.5;
+"@MMK_R_quotedblright" = -195;
+"@MMK_R_v" = -103;
Psi = -207;
-Tbar = -195.5;
-afii10021 = 103.5;
-afii10041 = -126.5;
-afii10044 = -103.5;
+Tbar = -195;
+afii10021 = 103;
+afii10041 = -126;
+afii10044 = -103;
checyrillic = -69;
-decyrillic = 126.5;
-hardsigncyrillic = -80.5;
-tecyrillic = -103.5;
+decyrillic = 126;
+hardsigncyrillic = -80;
+tecyrillic = -103;
};
"@MMK_L_quotedblleft" = {
-"@MMK_R_A" = -195.5;
-"@MMK_R_Alphagreek" = -195.5;
-"@MMK_R_Elcyrillic" = -126.5;
+"@MMK_R_A" = -195;
+"@MMK_R_Alphagreek" = -195;
+"@MMK_R_Elcyrillic" = -126;
"@MMK_R_J" = -299;
-"@MMK_R_comma" = -201.25;
-"@MMK_R_elcyrillic" = -172.5;
+"@MMK_R_comma" = -201;
+"@MMK_R_elcyrillic" = -172;
"@MMK_R_quotedblbase" = -253;
-afii10021 = -103.5;
-ampersand = -126.5;
+afii10021 = -103;
+ampersand = -126;
decyrillic = -115;
-four = -126.5;
-questiondown = -126.5;
-slash = -195.5;
+four = -126;
+questiondown = -126;
+slash = -195;
};
"@MMK_L_quotedblright" = {
"@MMK_R_A" = -276;
-"@MMK_R_Alphagreek" = -264.5;
-"@MMK_R_Elcyrillic" = -103.5;
+"@MMK_R_Alphagreek" = -264;
+"@MMK_R_Elcyrillic" = -103;
"@MMK_R_J" = -253;
"@MMK_R_a" = -115;
"@MMK_R_approxequal" = -115;
-"@MMK_R_c" = -126.5;
+"@MMK_R_c" = -126;
"@MMK_R_colon" = -115;
"@MMK_R_comma" = -391;
-"@MMK_R_deltagreek" = -126.5;
-"@MMK_R_elcyrillic" = -126.5;
-"@MMK_R_epsilongreek" = -126.5;
-"@MMK_R_guillemetleft" = -172.5;
-"@MMK_R_hyphen" = -126.5;
-"@MMK_R_iotadieresisgreek" = -126.5;
-"@MMK_R_m" = -43.125;
+"@MMK_R_deltagreek" = -126;
+"@MMK_R_elcyrillic" = -126;
+"@MMK_R_epsilongreek" = -126;
+"@MMK_R_guillemetleft" = -172;
+"@MMK_R_hyphen" = -126;
+"@MMK_R_iotadieresisgreek" = -126;
+"@MMK_R_m" = -43;
"@MMK_R_nine.1" = -23;
-"@MMK_R_omegagreek" = -126.5;
-"@MMK_R_psigreek" = -80.5;
-"@MMK_R_quotedblbase" = -379.5;
-"@MMK_R_s" = -140.875;
+"@MMK_R_omegagreek" = -126;
+"@MMK_R_psigreek" = -80;
+"@MMK_R_quotedblbase" = -379;
+"@MMK_R_s" = -140;
"@MMK_R_six" = -92;
-"@MMK_R_t" = 28.75;
-"@MMK_R_u" = -80.5;
-"@MMK_R_v" = 28.75;
-afii10021 = -80.5;
+"@MMK_R_t" = 28;
+"@MMK_R_u" = -80;
+"@MMK_R_v" = 28;
+afii10021 = -80;
ampersand = -138;
asciitilde = -92;
at = -115;
decyrillic = -115;
-eight = -80.5;
-four = -195.5;
+eight = -80;
+four = -195;
iacyrillic = -69;
-less = -195.5;
+less = -195;
micro = -92;
numbersign = -253;
questiondown = -138;
-rho = -126.5;
-slash = -287.5;
+rho = -126;
+slash = -287;
theta = -138;
-underscore = -80.5;
+underscore = -80;
xi = -138;
-zeta = -126.5;
+zeta = -126;
};
"@MMK_L_r" = {
-"@MMK_R_A" = -80.5;
+"@MMK_R_A" = -80;
"@MMK_R_J" = -115;
"@MMK_R_T" = -115;
"@MMK_R_Z" = -69;
"@MMK_R_a.sups" = 69;
-"@MMK_R_c" = -34.5;
-"@MMK_R_comma" = -126.5;
+"@MMK_R_c" = -34;
+"@MMK_R_comma" = -126;
"@MMK_R_eight.sups" = 92;
"@MMK_R_f" = 69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 34.5;
+"@MMK_R_quotedblright" = 34;
"@MMK_R_t" = 69;
-"@MMK_R_v" = 17.25;
-"@MMK_R_w" = 17.25;
-"@MMK_R_x" = 17.25;
-"@MMK_R_zero.subs" = -103.5;
-idblgrave = 80.5;
-less = -80.5;
+"@MMK_R_v" = 17;
+"@MMK_R_w" = 17;
+"@MMK_R_x" = 17;
+"@MMK_R_zero.subs" = -103;
+idblgrave = 80;
+less = -80;
logicalnot = -69;
rdblgrave.1 = 69;
slash = -69;
@@ -430300,187 +430300,187 @@ slash = -69;
"@MMK_R_t.sups" = 46;
};
"@MMK_L_registered" = {
-"@MMK_R_A" = -143.75;
-"@MMK_R_C" = -11.5;
-"@MMK_R_J" = -143.75;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -17.25;
+"@MMK_R_A" = -143;
+"@MMK_R_C" = -11;
+"@MMK_R_J" = -143;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -17;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -57.5;
-"@MMK_R_four" = -100.625;
+"@MMK_R_c" = -57;
+"@MMK_R_four" = -100;
"@MMK_R_s" = -23;
-"@MMK_R_six.1" = -34.5;
+"@MMK_R_six.1" = -34;
ampersand = -69;
};
"@MMK_L_rthook" = {
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
};
"@MMK_L_s" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_V" = -92;
"@MMK_R_W" = -69;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_quotedblbase" = -103.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_Y" = -149;
+"@MMK_R_quotedblbase" = -103;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_registered" = -17;
idblgrave = 69;
};
"@MMK_L_seven" = {
-"@MMK_R_three" = -34.5;
-three.1 = 2.875;
+"@MMK_R_three" = -34;
+three.1 = 2;
};
"@MMK_L_seven.dnomf" = {
-"@MMK_R_three.dnomf" = -20.84375;
+"@MMK_R_three.dnomf" = -20;
};
"@MMK_L_seven.sups" = {
"@MMK_R_three.sups" = -23;
};
"@MMK_L_six.1" = {
-"@MMK_R_registered" = -34.5;
-seven = -80.5;
+"@MMK_R_registered" = -34;
+seven = -80;
underscore = -92;
};
"@MMK_L_t" = {
"@MMK_R_B" = 23;
"@MMK_R_T" = -69;
-"@MMK_R_V" = -20.125;
-"@MMK_R_W" = -20.125;
-"@MMK_R_Y" = -31.625;
+"@MMK_R_V" = -20;
+"@MMK_R_W" = -20;
+"@MMK_R_Y" = -31;
"@MMK_R_bullet" = -23;
-"@MMK_R_c" = -11.5;
-"@MMK_R_four" = -28.75;
-"@MMK_R_hyphen" = -40.25;
+"@MMK_R_c" = -11;
+"@MMK_R_four" = -28;
+"@MMK_R_hyphen" = -40;
"@MMK_R_jdotless" = 0;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-"@MMK_R_s" = -20.125;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+"@MMK_R_s" = -20;
"@MMK_R_zero.subs" = 69;
idblgrave = 92;
-less = -57.5;
+less = -57;
rdblgrave.1 = 69;
};
"@MMK_L_t.sups" = {
-"@MMK_R_B.sups" = 15.09375;
-"@MMK_R_c.sups" = -7.90625;
+"@MMK_R_B.sups" = 15;
+"@MMK_R_c.sups" = -7;
"@MMK_R_jdotless.sups" = 0;
-"@MMK_R_s.sups" = -13.65625;
+"@MMK_R_s.sups" = -13;
};
"@MMK_L_two" = {
-"@MMK_R_four" = -31.625;
+"@MMK_R_four" = -31;
};
"@MMK_L_two.dnomf" = {
-"@MMK_R_four.dnomf" = -18.6875;
+"@MMK_R_four.dnomf" = -18;
};
"@MMK_L_two.sups" = {
-"@MMK_R_four.sups" = -20.84375;
+"@MMK_R_four.sups" = -20;
};
"@MMK_L_u" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Y" = -115;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-Tcaron = -149.5;
-Trthook = -149.5;
-idblgrave = 80.5;
-uni023E = -149.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+Tcaron = -149;
+Trthook = -149;
+idblgrave = 80;
+uni023E = -149;
};
"@MMK_L_v" = {
"@MMK_R_A" = -138;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_T" = -69;
"@MMK_R_Y" = -69;
-"@MMK_R_a" = -34.5;
-"@MMK_R_approxequal" = -80.5;
-"@MMK_R_c" = -40.25;
+"@MMK_R_a" = -34;
+"@MMK_R_approxequal" = -80;
+"@MMK_R_c" = -40;
"@MMK_R_comma" = -69;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 57.5;
-"@MMK_R_zero.subs" = -103.5;
+"@MMK_R_quotedblright" = 57;
+"@MMK_R_zero.subs" = -103;
Dhook = 69;
-Tcaron = -126.5;
+Tcaron = -126;
Thook = 69;
-Trthook = -126.5;
-ellipsis = -149.5;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
+Trthook = -126;
+ellipsis = -149;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
imacron = 92;
less = -69;
-logicalnot = -80.5;
+logicalnot = -80;
slash = -115;
underscore = -161;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_v.sups" = {
-"@MMK_R_c.sups" = -26.59375;
+"@MMK_R_c.sups" = -26;
"@MMK_R_idotless.sups" = 46;
-"@MMK_R_jdotless.sups" = 53.90625;
+"@MMK_R_jdotless.sups" = 53;
};
"@MMK_L_vecyrillic" = {
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
};
"@MMK_L_w" = {
"@MMK_R_A" = -138;
"@MMK_R_J" = -115;
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Z" = -69;
-"@MMK_R_c" = -37.375;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_c" = -37;
+"@MMK_R_comma" = -149;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 57.5;
-Trthook = -126.5;
+"@MMK_R_quotedblright" = 57;
+Trthook = -126;
ampersand = -69;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_w.sups" = {
-"@MMK_R_c.sups" = -25.15625;
+"@MMK_R_c.sups" = -25;
};
"@MMK_L_x" = {
-"@MMK_R_T" = -126.5;
+"@MMK_R_T" = -126;
"@MMK_R_approxequal" = -69;
"@MMK_R_c" = -46;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_hyphen" = -46;
};
"@MMK_L_x.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_z" = {
"@MMK_R_T" = -69;
-"@MMK_R_c" = -31.625;
+"@MMK_R_c" = -31;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-uni023E = -80.5;
+Trthook = -80;
+uni023E = -80;
};
"@MMK_L_z.sups" = {
-"@MMK_R_c.sups" = -20.84375;
+"@MMK_R_c.sups" = -20;
};
"@MMK_L_zero.subs" = {
"@MMK_R_T" = -253;
-"@MMK_R_V" = -195.5;
+"@MMK_R_V" = -195;
"@MMK_R_W" = -184;
"@MMK_R_Y" = -230;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_jdotless" = 126.5;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_jdotless" = 126;
"@MMK_R_one" = -184;
-"@MMK_R_v" = -103.5;
+"@MMK_R_v" = -103;
Psi = -230;
-Tbar = -149.5;
-afii10041 = -80.5;
+Tbar = -149;
+afii10041 = -80;
afii10044 = -69;
};
D = {
-enclosingcirclecomb = -86.25;
-enclosingsquarecomb = -86.25;
+enclosingcirclecomb = -86;
+enclosingsquarecomb = -86;
};
DZ = {
idblgrave = 69;
@@ -430489,11 +430489,11 @@ Dtopbar = {
idblgrave = 69;
};
Dzcaron_ = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
E = {
-enclosingcirclecomb = -14.375;
-enclosingsquarecomb = -14.375;
+enclosingcirclecomb = -14;
+enclosingsquarecomb = -14;
};
Ecedillabreve = {
idblgrave = 69;
@@ -430541,32 +430541,32 @@ Etildebelow = {
idblgrave = 69;
};
F = {
-enclosingcirclecomb = -14.375;
-enclosingsquarecomb = -14.375;
+enclosingcirclecomb = -14;
+enclosingsquarecomb = -14;
};
Fdotaccent = {
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
Fhook = {
"@MMK_R_comma" = -92;
-period = -80.5;
+period = -80;
};
Gamma = {
"@MMK_R_Alphagreek" = -184;
-"@MMK_R_Omicrongreek" = -103.5;
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_deltagreek" = -120.75;
-"@MMK_R_epsilongreek" = -264.5;
+"@MMK_R_Omicrongreek" = -103;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_deltagreek" = -120;
+"@MMK_R_epsilongreek" = -264;
"@MMK_R_gammagreek" = -207;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_iotadieresisgreek" = -264.5;
-"@MMK_R_omegagreek" = -264.5;
-"@MMK_R_psigreek" = -264.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_iotadieresisgreek" = -264;
+"@MMK_R_omegagreek" = -264;
+"@MMK_R_psigreek" = -264;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -115;
Omega = -69;
@@ -430575,8 +430575,8 @@ lambda = -69;
less = -161;
micro = -207;
pi = -207;
-rho = -264.5;
-slash = -103.5;
+rho = -264;
+slash = -103;
tau = -207;
theta = -161;
underscore = -138;
@@ -430584,11 +430584,11 @@ xi = -115;
zeta = -161;
};
H = {
-enclosingcirclecomb = -155.25;
-enclosingsquarecomb = -155.25;
+enclosingcirclecomb = -155;
+enclosingsquarecomb = -155;
};
Hbar = {
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 92;
idblgrave = 69;
};
@@ -430603,20 +430603,20 @@ enclosingcirclecomb = 345;
enclosingsquarecomb = 345;
};
Icaron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Icircumflex = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idblgrave = {
"@MMK_R_B" = 69;
idblgrave = 69;
};
Idieresis = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idieresisacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idotbelow = {
idblgrave = 69;
@@ -430625,10 +430625,10 @@ Ihookabove = {
idblgrave = 69;
};
Iinvertedbreve = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Imacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Istroke = {
"@MMK_R_Dcroat" = 69;
@@ -430636,13 +430636,13 @@ Dcroat = 69;
Istroke = 69;
Lbar = 69;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
K = {
-enclosingcirclecomb = -71.875;
-enclosingsquarecomb = -71.875;
+enclosingcirclecomb = -71;
+enclosingsquarecomb = -71;
};
Kacute = {
idblgrave = 92;
@@ -430651,36 +430651,36 @@ Kcaron = {
idblgrave = 92;
};
Kdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Khook = {
idblgrave = 92;
};
Klinebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
L = {
-enclosingcirclecomb = 28.75;
-enclosingsquarecomb = 28.75;
+enclosingcirclecomb = 28;
+enclosingsquarecomb = 28;
};
Lacute = {
"@MMK_R_asciicircum" = -92;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
asciitilde = -92;
};
Lbar = {
"@MMK_R_asciicircum" = -69;
"@MMK_R_hyphen" = -69;
-degree = -80.5;
+degree = -80;
};
Lcaron = {
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asciitilde = -69;
};
Lcircumflexbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -430696,7 +430696,7 @@ Ytilde = -69;
Ldotbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -430705,7 +430705,7 @@ Ytilde = -69;
Ldotbelowmacron = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -430714,7 +430714,7 @@ Ytilde = -69;
Llinebelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -430730,8 +430730,8 @@ Yhookabove = -69;
Ytilde = -69;
};
M = {
-enclosingcirclecomb = -288.9375;
-enclosingsquarecomb = -288.9375;
+enclosingcirclecomb = -288;
+enclosingsquarecomb = -288;
};
Macute = {
idblgrave = 69;
@@ -430740,8 +430740,8 @@ Mdotaccent = {
idblgrave = 69;
};
N = {
-enclosingcirclecomb = -186.875;
-enclosingsquarecomb = -186.875;
+enclosingcirclecomb = -186;
+enclosingsquarecomb = -186;
};
Ndotaccent = {
idblgrave = 69;
@@ -430772,26 +430772,26 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
P = {
-enclosingcirclecomb = -28.75;
-enclosingsquarecomb = -28.75;
+enclosingcirclecomb = -28;
+enclosingsquarecomb = -28;
};
Pacute = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Pdotaccent = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Phook = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Psi = {
-"@MMK_R_Alphagreek" = -126.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
-"@MMK_R_guillemetleft" = -97.75;
-"@MMK_R_guillemetright" = -40.25;
+"@MMK_R_Alphagreek" = -126;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
+"@MMK_R_guillemetleft" = -97;
+"@MMK_R_guillemetright" = -40;
"@MMK_R_hyphen" = -161;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -230;
ampersand = -69;
@@ -430804,22 +430804,22 @@ underscore = -207;
xi = -69;
};
Sigma = {
-"@MMK_R_Omicrongreek" = -80.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_Omicrongreek" = -80;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asterisk.case = -69;
-less = -126.5;
+less = -126;
pi = -69;
tau = -138;
};
Tbar = {
"@MMK_R_A" = -115;
-"@MMK_R_J" = -241.5;
+"@MMK_R_J" = -241;
"@MMK_R_approxequal" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -149.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -149;
};
Tcaron = {
"@MMK_R_hyphen" = -69;
@@ -430849,11 +430849,11 @@ Tdotbelow = {
"@MMK_R_z" = -69;
};
Thorn = {
-"@MMK_R_A" = -80.5;
-"@MMK_R_J" = -80.5;
+"@MMK_R_A" = -80;
+"@MMK_R_J" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_V" = -103.5;
-"@MMK_R_Z" = -80.5;
+"@MMK_R_V" = -103;
+"@MMK_R_Z" = -80;
"@MMK_R_comma" = -207;
"@MMK_R_quotedblbase" = -253;
"@MMK_R_quotedblleft" = -115;
@@ -430865,9 +430865,9 @@ Tlinebelow = {
"@MMK_R_z" = -69;
};
Trthook = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
Udblgrave = {
idblgrave = 69;
@@ -430889,23 +430889,23 @@ idblgrave = 69;
};
Uhornacute = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorndotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorngrave = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhornhookabove = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorntilde = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uinvertedbreve = {
idblgrave = 69;
@@ -430918,7 +430918,7 @@ idblgrave = 69;
};
Vdotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Vtilde = {
"@MMK_R_comma" = -69;
@@ -430937,7 +430937,7 @@ Wdotaccent = {
idblgrave = 92;
};
Wdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Wgrave = {
idblgrave = 92;
@@ -430965,14 +430965,14 @@ idblgrave = 92;
Ydotbelow = {
"@MMK_R_J" = -69;
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Ygrave = {
idblgrave = 92;
};
Yhook = {
-"@MMK_R_J" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_J" = -80;
+"@MMK_R_comma" = -80;
idblgrave = 92;
};
Yhookabove = {
@@ -430995,7 +430995,7 @@ Zlinebelow = {
idblgrave = 69;
};
acircumflexacute = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_idotless" = 69;
acircumflexgrave = 69;
ecircumflexgrave = 69;
@@ -431011,46 +431011,46 @@ afii10018 = {
afii10044 = -115;
};
afii10024 = {
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-afii10038 = -103.5;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+afii10038 = -103;
afii10041 = -69;
-afii10044 = -80.5;
+afii10044 = -80;
asciitilde = -69;
checyrillic = -115;
-four = -80.5;
+four = -80;
hardsigncyrillic = -92;
hryvnia = -69;
-less = -103.5;
-logicalnot = -103.5;
+less = -103;
+logicalnot = -103;
multiply = -92;
-tecyrillic = -126.5;
+tecyrillic = -126;
zecyrillic = -69;
};
afii10038 = {
-"@MMK_R_quotedblbase" = -103.5;
-afii10024 = -103.5;
+"@MMK_R_quotedblbase" = -103;
+afii10024 = -103;
afii10044 = -69;
};
afii10051 = {
"@MMK_R_one" = -69;
};
amacron = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ampersand = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -126.5;
-"@MMK_R_W" = -80.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_dagger" = -80.5;
+"@MMK_R_V" = -126;
+"@MMK_R_W" = -80;
+"@MMK_R_Y" = -149;
+"@MMK_R_dagger" = -80;
"@MMK_R_eight.sups" = -92;
"@MMK_R_quotedbl" = -69;
"@MMK_R_quotedblleft" = -184;
"@MMK_R_registered" = -46;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
-Psi = -149.5;
+Psi = -149;
afii10044 = -115;
};
asciitilde = {
@@ -431062,32 +431062,32 @@ asterisk.case = {
"@MMK_R_T" = -69;
};
at = {
-enclosingcirclecomb = -373.75;
-enclosingsquarecomb = -373.75;
+enclosingcirclecomb = -373;
+enclosingsquarecomb = -373;
};
at.case = {
-enclosingcirclecomb = -373.75;
-enclosingsquarecomb = -373.75;
+enclosingcirclecomb = -373;
+enclosingsquarecomb = -373;
};
backslash = {
-"@MMK_R_T" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_comma" = 80.5;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_quotedblleft" = -86.25;
+"@MMK_R_T" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_comma" = 80;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_quotedblleft" = -86;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_v" = -103.5;
-Psi = -80.5;
-tenge = -103.5;
+"@MMK_R_v" = -103;
+Psi = -80;
+tenge = -103;
};
beta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
bhook = {
"@MMK_R_T" = -161;
};
bracketleft = {
-idblgrave = 80.5;
+idblgrave = 80;
};
bracketright = {
idblgrave = 69;
@@ -431099,16 +431099,16 @@ dcircumflexbelow = {
idblgrave = 69;
};
dcroat = {
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
Thook = 69;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+imacron = 80;
};
ddotaccent = {
idblgrave = 69;
@@ -431124,12 +431124,12 @@ dhook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
dlinebelow = {
idblgrave = 69;
@@ -431151,82 +431151,82 @@ ellipsis = {
quotedblreversed = -368;
};
enclosingcirclecomb = {
-"@MMK_R_A" = -14.375;
-"@MMK_R_B" = -57.5;
-"@MMK_R_C" = -149.5;
-"@MMK_R_J" = 57.5;
-"@MMK_R_S" = -14.375;
-"@MMK_R_T" = -14.375;
-"@MMK_R_U" = -173.9375;
-"@MMK_R_V" = -43.125;
-"@MMK_R_W" = -307.625;
-"@MMK_R_Y" = -50.3125;
-"@MMK_R_Z" = -28.75;
-"@MMK_R_approxequal" = -57.5;
-"@MMK_R_emdash" = -406.8125;
-"@MMK_R_endash" = 100.625;
-"@MMK_R_four" = -28.75;
-"@MMK_R_hyphen" = 172.5;
-"@MMK_R_one" = 172.5;
-"@MMK_R_six" = -14.375;
-"@MMK_R_three" = -14.375;
-D = -86.25;
-E = -14.375;
-F = -14.375;
-H = -155.25;
+"@MMK_R_A" = -14;
+"@MMK_R_B" = -57;
+"@MMK_R_C" = -149;
+"@MMK_R_J" = 57;
+"@MMK_R_S" = -14;
+"@MMK_R_T" = -14;
+"@MMK_R_U" = -173;
+"@MMK_R_V" = -43;
+"@MMK_R_W" = -307;
+"@MMK_R_Y" = -50;
+"@MMK_R_Z" = -28;
+"@MMK_R_approxequal" = -57;
+"@MMK_R_emdash" = -406;
+"@MMK_R_endash" = 100;
+"@MMK_R_four" = -28;
+"@MMK_R_hyphen" = 172;
+"@MMK_R_one" = 172;
+"@MMK_R_six" = -14;
+"@MMK_R_three" = -14;
+D = -86;
+E = -14;
+F = -14;
+H = -155;
I = 345;
-K = -71.875;
-L = 28.75;
-M = -288.9375;
-N = -186.875;
-P = -28.75;
-at = -373.75;
-at.case = -373.75;
+K = -71;
+L = 28;
+M = -288;
+N = -186;
+P = -28;
+at = -373;
+at.case = -373;
exclam = 345;
-nine = -14.375;
-numbersign = -43.125;
+nine = -14;
+numbersign = -43;
plus = -69;
-question = 152.375;
-seven = 71.875;
+question = 152;
+seven = 71;
};
enclosingsquarecomb = {
-"@MMK_R_A" = -14.375;
-"@MMK_R_B" = -57.5;
-"@MMK_R_C" = -149.5;
-"@MMK_R_J" = 57.5;
-"@MMK_R_S" = -14.375;
-"@MMK_R_T" = -14.375;
-"@MMK_R_U" = -173.9375;
-"@MMK_R_V" = -43.125;
-"@MMK_R_W" = -307.625;
-"@MMK_R_Y" = -50.3125;
-"@MMK_R_Z" = -28.75;
-"@MMK_R_approxequal" = -57.5;
-"@MMK_R_emdash" = -406.8125;
-"@MMK_R_endash" = 100.625;
-"@MMK_R_four" = -28.75;
-"@MMK_R_hyphen" = 172.5;
-"@MMK_R_one" = 172.5;
-"@MMK_R_six" = -14.375;
-"@MMK_R_three" = -14.375;
-D = -86.25;
-E = -14.375;
-F = -14.375;
-H = -155.25;
+"@MMK_R_A" = -14;
+"@MMK_R_B" = -57;
+"@MMK_R_C" = -149;
+"@MMK_R_J" = 57;
+"@MMK_R_S" = -14;
+"@MMK_R_T" = -14;
+"@MMK_R_U" = -173;
+"@MMK_R_V" = -43;
+"@MMK_R_W" = -307;
+"@MMK_R_Y" = -50;
+"@MMK_R_Z" = -28;
+"@MMK_R_approxequal" = -57;
+"@MMK_R_emdash" = -406;
+"@MMK_R_endash" = 100;
+"@MMK_R_four" = -28;
+"@MMK_R_hyphen" = 172;
+"@MMK_R_one" = 172;
+"@MMK_R_six" = -14;
+"@MMK_R_three" = -14;
+D = -86;
+E = -14;
+F = -14;
+H = -155;
I = 345;
-K = -71.875;
-L = 28.75;
-M = -288.9375;
-N = -186.875;
-P = -28.75;
-at = -373.75;
-at.case = -373.75;
+K = -71;
+L = 28;
+M = -288;
+N = -186;
+P = -28;
+at = -373;
+at.case = -373;
exclam = 345;
-nine = -14.375;
-numbersign = -43.125;
+nine = -14;
+numbersign = -43;
plus = -69;
-question = 152.375;
-seven = 71.875;
+question = 152;
+seven = 71;
};
eturn = {
"@MMK_R_T" = -161;
@@ -431247,11 +431247,11 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
feng = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
five = {
"@MMK_R_comma" = -69;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_registered" = -11;
};
florin = {
"@MMK_R_idotless" = 69;
@@ -431265,8 +431265,8 @@ four.ss01 = {
"@MMK_R_comma" = -69;
};
gamma1 = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
germandbls = {
"@MMK_R_quotedblleft" = -138;
@@ -431275,53 +431275,53 @@ ghook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
greater = {
"@MMK_R_Elcyrillic" = -69;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -149.5;
-"@MMK_R_W" = -149.5;
+"@MMK_R_V" = -149;
+"@MMK_R_W" = -149;
"@MMK_R_X" = -115;
"@MMK_R_Y" = -184;
-"@MMK_R_Z" = -126.5;
-"@MMK_R_quotedblleft" = -195.5;
+"@MMK_R_Z" = -126;
+"@MMK_R_quotedblleft" = -195;
Psi = -184;
-afii10024 = -103.5;
-afii10044 = -149.5;
-seven = -149.5;
-tenge = -149.5;
+afii10024 = -103;
+afii10044 = -149;
+seven = -149;
+tenge = -149;
};
henghook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hhook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
iacute = {
-idblgrave = 103.5;
+idblgrave = 103;
};
ibreve = {
-"@MMK_R_idotless" = 80.5;
-idblgrave = 103.5;
-rdblgrave.1 = 80.5;
+"@MMK_R_idotless" = 80;
+idblgrave = 103;
+rdblgrave.1 = 80;
};
icaron = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
idblgrave = 115;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
icircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-itilde = 80.5;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+itilde = 80;
};
idblgrave = {
"@MMK_R_idieresis" = 69;
@@ -431332,88 +431332,88 @@ idblgrave = 69;
iinvertedbreve = 69;
};
idieresisacute = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+iinvertedbreve = 80;
};
idotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
ihookabove = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-idblgrave = 103.5;
+idblgrave = 103;
rdblgrave.1 = 69;
};
iinvertedbreve = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
-hbar = 80.5;
+hbar = 80;
idblgrave = 92;
-idieresisacute = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
-itilde = 80.5;
+idieresisacute = 80;
+iinvertedbreve = 80;
+imacron = 80;
+itilde = 80;
rdblgrave.1 = 69;
};
ij = {
idblgrave = 69;
};
imacron = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 103.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 103;
+iinvertedbreve = 80;
imacron = 92;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
infinity = {
"@MMK_R_Y" = -69;
};
itilde = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
idblgrave = 115;
};
itildebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
jcircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-itilde = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+itilde = 80;
};
l.ss02 = {
"@MMK_R_A" = 46;
-"@MMK_R_B" = 28.75;
+"@MMK_R_B" = 28;
};
lacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lambda = {
-"@MMK_R_deltagreek" = -80.5;
+"@MMK_R_deltagreek" = -80;
"@MMK_R_epsilongreek" = -69;
"@MMK_R_gammagreek" = -115;
"@MMK_R_hyphen" = -69;
-"@MMK_R_omegagreek" = -80.5;
+"@MMK_R_omegagreek" = -80;
"@MMK_R_one" = -115;
"@MMK_R_psigreek" = -69;
pi = -138;
-tau = -195.5;
+tau = -195;
};
lbar = {
-"@MMK_R_Dcroat" = 80.5;
-Dcroat = 80.5;
-Istroke = 80.5;
-Lbar = 80.5;
+"@MMK_R_Dcroat" = 80;
+Dcroat = 80;
+Istroke = 80;
+Lbar = 80;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
@@ -431421,18 +431421,18 @@ lcircumflexbelow = {
"@MMK_R_B" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
-itildebelow = 80.5;
-lcircumflexbelow = 80.5;
-llinebelow = 80.5;
-rlinebelow.1 = 80.5;
+itildebelow = 80;
+lcircumflexbelow = 80;
+llinebelow = 80;
+rlinebelow.1 = 80;
};
lcommaaccent = {
idblgrave = 69;
};
lcurl = {
-"@MMK_R_jdotless" = 201.25;
+"@MMK_R_jdotless" = 201;
};
ldot = {
"@MMK_R_Dcroat" = 69;
@@ -431445,28 +431445,28 @@ ldotbelow = {
idblgrave = 69;
};
ldotbelowmacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lj = {
idblgrave = 69;
};
llinebelow = {
-"@MMK_R_B" = 80.5;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_B" = 80;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_parenright" = 69;
Iogonek = 69;
florin = 69;
idblgrave = 69;
itildebelow = 92;
-jcircumflex = 80.5;
-lcircumflexbelow = 80.5;
+jcircumflex = 80;
+lcircumflexbelow = 80;
llinebelow = 92;
rlinebelow.1 = 92;
underscore = 69;
};
logicalnot = {
-afii10044 = -103.5;
+afii10044 = -103;
};
lslash = {
"@MMK_R_Dcroat" = 69;
@@ -431477,12 +431477,12 @@ idblgrave = 69;
lbar = 69;
};
micro = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -431492,67 +431492,67 @@ mturn = {
};
multiply = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_Y" = -92;
afii10024 = -92;
-afii10044 = -149.5;
+afii10044 = -149;
afii10049 = -92;
tenge = -69;
};
nine = {
-enclosingcirclecomb = -14.375;
-enclosingsquarecomb = -14.375;
+enclosingcirclecomb = -14;
+enclosingsquarecomb = -14;
};
nj = {
idblgrave = 69;
};
nlfthook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ntilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
numbersign = {
-enclosingcirclecomb = -43.125;
-enclosingsquarecomb = -43.125;
+enclosingcirclecomb = -43;
+enclosingsquarecomb = -43;
};
ocircumflexacute = {
"@MMK_R_B" = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
ocircumflexhookabove = {
idblgrave = 92;
};
odieresis = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ohorntilde = {
idblgrave = 69;
};
onefraction = {
-seven.dnomf = 71.875;
+seven.dnomf = 71;
};
otilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
parenleft = {
-idblgrave = 195.5;
+idblgrave = 195;
};
percent = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -138;
};
periodcentered = {
"@MMK_R_A" = -69;
"@MMK_R_J" = -92;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_X" = -92;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_Y" = -103;
};
pi = {
"@MMK_R_deltagreek" = -69;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = 69;
};
plus = {
@@ -431560,21 +431560,21 @@ enclosingcirclecomb = -69;
enclosingsquarecomb = -69;
};
question = {
-"@MMK_R_A" = -126.5;
-"@MMK_R_Alphagreek" = -126.5;
-enclosingcirclecomb = 152.375;
-enclosingsquarecomb = 152.375;
+"@MMK_R_A" = -126;
+"@MMK_R_Alphagreek" = -126;
+enclosingcirclecomb = 152;
+enclosingsquarecomb = 152;
};
questiondown = {
"@MMK_R_gammagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -69;
Psi = -184;
Tbar = -138;
};
r = {
-"@MMK_R_v" = 34.5;
-"@MMK_R_x" = 34.5;
+"@MMK_R_v" = 34;
+"@MMK_R_x" = 34;
};
rcaron.1 = {
idblgrave = 92;
@@ -431584,14 +431584,14 @@ rdotbelowmacron.1 = {
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
rinvertedbreve.1 = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
sacutedotaccent = {
idblgrave = 69;
@@ -431603,70 +431603,70 @@ schwa = {
"@MMK_R_T" = -161;
};
seven = {
-"@MMK_R_A" = -218.5;
-"@MMK_R_Alphagreek" = -218.5;
-"@MMK_R_J" = -195.5;
+"@MMK_R_A" = -218;
+"@MMK_R_Alphagreek" = -218;
+"@MMK_R_J" = -195;
"@MMK_R_a" = -92;
-"@MMK_R_c" = -103.5;
+"@MMK_R_c" = -103;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -253;
-"@MMK_R_deltagreek" = -103.5;
-"@MMK_R_epsilongreek" = -103.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_deltagreek" = -103;
+"@MMK_R_epsilongreek" = -103;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_idieresis" = 184;
-"@MMK_R_iotadieresisgreek" = -103.5;
-"@MMK_R_omegagreek" = -103.5;
-"@MMK_R_quotedblbase" = -287.5;
-"@MMK_R_s" = -80.5;
-"@MMK_R_six" = -31.625;
+"@MMK_R_iotadieresisgreek" = -103;
+"@MMK_R_omegagreek" = -103;
+"@MMK_R_quotedblbase" = -287;
+"@MMK_R_s" = -80;
+"@MMK_R_six" = -31;
"@MMK_R_six.1" = -69;
"@MMK_R_zero.subs" = -184;
ampersand = -92;
-eight = -28.75;
-enclosingcirclecomb = 71.875;
-enclosingsquarecomb = 71.875;
-five = -20.125;
-four = -117.875;
-four.ss01 = -126.5;
+eight = -28;
+enclosingcirclecomb = 71;
+enclosingsquarecomb = 71;
+five = -20;
+four = -117;
+four.ss01 = -126;
less = -184;
-nine = -20.125;
+nine = -20;
numbersign = -115;
-rho = -103.5;
-seven = 40.25;
-theta = -103.5;
+rho = -103;
+seven = 40;
+theta = -103;
underscore = -322;
-zeta = -103.5;
+zeta = -103;
};
seven.dnomf = {
-"@MMK_R_six.dnomf" = -18.6875;
-eight.dnomf = -17.25;
-five.dnomf = -12.21875;
-four.dnomf = -70.4375;
-nine.dnomf = -12.21875;
-seven.dnomf = 24.4375;
+"@MMK_R_six.dnomf" = -18;
+eight.dnomf = -17;
+five.dnomf = -12;
+four.dnomf = -70;
+nine.dnomf = -12;
+seven.dnomf = 24;
};
seven.frac = {
-four.frac = -100.625;
-fraction = -172.5;
+four.frac = -100;
+fraction = -172;
};
seven.numr = {
"@MMK_R_eight.sups" = 0;
-four.numr = -100.625;
+four.numr = -100;
};
seven.sups = {
-"@MMK_R_six.sups" = -20.84375;
-eight.sups = -19.40625;
-five.sups = -13.65625;
-four.sups = -78.34375;
-nine.sups = -13.65625;
-seven.sups = 26.59375;
+"@MMK_R_six.sups" = -20;
+eight.sups = -19;
+five.sups = -13;
+four.sups = -78;
+nine.sups = -13;
+seven.sups = 26;
};
sigma = {
-"@MMK_R_Alphagreek" = -80.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_Alphagreek" = -80;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = -69;
lambda = -138;
logicalnot = -69;
@@ -431678,13 +431678,13 @@ six = {
underscore = -92;
};
slash = {
-"@MMK_R_J" = -126.5;
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_J" = -126;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
tau = {
-"@MMK_R_deltagreek" = -80.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_deltagreek" = -80;
+"@MMK_R_quotedblleft" = -80;
};
tccurl = {
"@MMK_R_T" = -161;
@@ -431697,22 +431697,22 @@ llinebelow = 69;
rlinebelow.1 = 69;
};
tecyrillic = {
-"@MMK_R_quotedblbase" = -149.5;
+"@MMK_R_quotedblbase" = -149;
};
theta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
thook = {
idblgrave = 92;
};
three.frac = {
-fraction = -28.75;
+fraction = -28;
};
tlinebelow = {
"@MMK_R_B" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
llinebelow = 69;
-rlinebelow.1 = 80.5;
+rlinebelow.1 = 80;
};
ubar = {
"@MMK_R_Dcroat" = 69;
@@ -431738,27 +431738,27 @@ uhorntilde = {
hbar = 69;
};
underscore = {
-"@MMK_R_C" = -80.5;
-"@MMK_R_Omicrongreek" = -80.5;
+"@MMK_R_C" = -80;
+"@MMK_R_Omicrongreek" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_U" = -80.5;
+"@MMK_R_U" = -80;
"@MMK_R_V" = -161;
"@MMK_R_asciicircum" = -138;
"@MMK_R_gammagreek" = -115;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 195.5;
+"@MMK_R_jdotless" = 195;
"@MMK_R_m" = 92;
"@MMK_R_nine.1" = -92;
-"@MMK_R_one" = -218.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_one" = -218;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_six" = -92;
"@MMK_R_three" = -92;
"@MMK_R_v" = -161;
-Psi = -195.5;
+Psi = -195;
afii10021 = 115;
-afii10041 = -218.5;
-afii10044 = -103.5;
-afii10047 = -80.5;
+afii10041 = -218;
+afii10044 = -103;
+afii10047 = -80;
decyrillic = 92;
eight = -92;
five = -92;
@@ -431766,36 +431766,36 @@ four = -115;
llinebelow = 69;
nine = -92;
rlinebelow.1 = 69;
-tenge = -103.5;
+tenge = -103;
};
uni01F6 = {
"@MMK_R_T" = -92;
};
uni023E = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
uni0240 = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
uni0247 = {
"@MMK_R_T" = -161;
};
uni024F = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
uni20BD = {
"@MMK_R_comma" = -138;
-slash = -80.5;
-underscore = -103.5;
+slash = -80;
+underscore = -103;
};
vturn = {
-"@MMK_R_T.sc" = -86.25;
+"@MMK_R_T.sc" = -86;
};
won = {
-idblgrave = 80.5;
+idblgrave = 80;
};
xi = {
Psi = -92;
@@ -431809,10 +431809,10 @@ ytilde = {
idblgrave = 69;
};
zbar = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
zcurl = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
};
zdotbelow = {
"@MMK_R_T" = -69;
@@ -431835,30 +431835,30 @@ Tdotaccent = -69;
Tdotbelow = -69;
};
zrthook = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
};
"200BE2C5-40F6-4CF4-AF4F-A33C0CC0964F" = {
"@MMK_L_A" = {
"@MMK_R_C" = -69;
-"@MMK_R_T" = -172.5;
+"@MMK_R_T" = -172;
"@MMK_R_V" = -138;
"@MMK_R_W" = -115;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_approxequal" = -103.5;
+"@MMK_R_Y" = -149;
+"@MMK_R_approxequal" = -103;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_eight.sups" = -184;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_idieresis" = 92;
-"@MMK_R_idotless" = 11.5;
-"@MMK_R_nine.1" = -20.125;
+"@MMK_R_idotless" = 11;
+"@MMK_R_nine.1" = -20;
"@MMK_R_one" = -69;
"@MMK_R_quotedbl" = -161;
-"@MMK_R_quotedblleft" = -264.5;
+"@MMK_R_quotedblleft" = -264;
"@MMK_R_quotedblright" = -207;
-"@MMK_R_registered" = -143.75;
+"@MMK_R_registered" = -143;
"@MMK_R_t" = -69;
"@MMK_R_v" = -138;
"@MMK_R_w" = -138;
@@ -431866,13 +431866,13 @@ Tbar = -115;
asterisk.case = -69;
llinebelow = 69;
periodcentered = -69;
-question = -126.5;
+question = -126;
rlinebelow.1 = 69;
};
"@MMK_L_Alphagreek" = {
"@MMK_R_Omicrongreek" = -69;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_deltagreek" = -69;
"@MMK_R_eight.sups" = -184;
"@MMK_R_gammagreek" = -138;
@@ -431880,41 +431880,41 @@ rlinebelow.1 = 69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_omegagreek" = -69;
"@MMK_R_one" = -69;
-"@MMK_R_quotedbl" = -195.5;
+"@MMK_R_quotedbl" = -195;
"@MMK_R_quotedblleft" = -276;
-"@MMK_R_quotedblright" = -195.5;
-Psi = -126.5;
+"@MMK_R_quotedblright" = -195;
+Psi = -126;
asterisk.case = -69;
-question = -126.5;
-tau = -103.5;
-theta = -80.5;
-zeta = -80.5;
+question = -126;
+tau = -103;
+theta = -80;
+zeta = -80;
};
"@MMK_L_B" = {
"@MMK_R_idieresis" = 69;
};
"@MMK_L_C" = {
"@MMK_R_idieresis" = 69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_D" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -60.375;
+"@MMK_R_T" = -60;
"@MMK_R_V" = -69;
"@MMK_R_Y" = -69;
"@MMK_R_comma" = -92;
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
"@MMK_R_quotedblleft" = -69;
-"@MMK_R_registered" = -11.5;
-slash = -80.5;
-underscore = -80.5;
+"@MMK_R_registered" = -11;
+slash = -80;
+underscore = -80;
};
"@MMK_L_Decyrillic" = {
afii10021 = 69;
-underscore = 126.5;
+underscore = 126;
};
"@MMK_L_E" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
idblgrave = 69;
};
"@MMK_L_Ecyrillic" = {
@@ -431923,21 +431923,21 @@ idblgrave = 69;
"@MMK_L_Ereversedcyrillic" = {
"@MMK_R_comma" = -92;
"@MMK_R_quotedblbase" = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_F" = {
"@MMK_R_A" = -184;
"@MMK_R_C" = 0;
"@MMK_R_J" = -138;
-"@MMK_R_c" = -80.5;
-"@MMK_R_comma" = -80.5;
-"@MMK_R_m" = -11.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_c" = -80;
+"@MMK_R_comma" = -80;
+"@MMK_R_m" = -11;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_u" = -69;
"@MMK_R_v" = -69;
"@MMK_R_z" = -69;
"@MMK_R_zero.subs" = -115;
-ellipsis = -172.5;
+ellipsis = -172;
idblgrave = 69;
period = -69;
underscore = -69;
@@ -431954,11 +431954,11 @@ iinvertedbreve = 69;
rdblgrave.1 = 69;
};
"@MMK_L_H" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
"@MMK_R_m" = 0;
Idieresis = 161;
Idieresisacute = 92;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
iogonek = 69;
lcircumflexbelow = 69;
@@ -431970,64 +431970,64 @@ underscore = 69;
"@MMK_R_m.sups" = 0;
};
"@MMK_L_Idieresis" = {
-"@MMK_R_parenright.case" = 57.5;
+"@MMK_R_parenright.case" = 57;
};
"@MMK_L_J" = {
"@MMK_R_comma" = -69;
"@MMK_R_quotedblbase" = -161;
idblgrave = 69;
slash = -115;
-underscore = -103.5;
+underscore = -103;
};
"@MMK_L_K" = {
-"@MMK_R_C" = -80.5;
+"@MMK_R_C" = -80;
"@MMK_R_approxequal" = -69;
-"@MMK_R_c" = -80.5;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_c" = -80;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+"@MMK_R_idieresis" = 172;
"@MMK_R_idotless" = 69;
-"@MMK_R_registered" = -30.1875;
+"@MMK_R_registered" = -30;
"@MMK_R_u" = -69;
-"@MMK_R_v" = -80.5;
-"@MMK_R_w" = -126.5;
+"@MMK_R_v" = -80;
+"@MMK_R_w" = -126;
asterisk.case = -69;
-idblgrave = 80.5;
+idblgrave = 80;
idieresisacute = 69;
infinity = -69;
less = -138;
-logicalnot = -103.5;
+logicalnot = -103;
periodcentered = -92;
};
"@MMK_L_L" = {
"@MMK_R_A" = 92;
-"@MMK_R_C" = -57.5;
-"@MMK_R_T" = -195.5;
+"@MMK_R_C" = -57;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -138;
"@MMK_R_Y" = -69;
-"@MMK_R_asciicircum" = -264.5;
-"@MMK_R_dagger" = -195.5;
-"@MMK_R_eight.sups" = -310.5;
-"@MMK_R_guillemetleft" = -126.5;
-"@MMK_R_hyphen" = -172.5;
+"@MMK_R_asciicircum" = -264;
+"@MMK_R_dagger" = -195;
+"@MMK_R_eight.sups" = -310;
+"@MMK_R_guillemetleft" = -126;
+"@MMK_R_hyphen" = -172;
"@MMK_R_one" = -92;
"@MMK_R_quotedbl" = -184;
-"@MMK_R_quotedblleft" = -172.5;
-"@MMK_R_quotedblright" = -80.5;
-"@MMK_R_registered" = -163.875;
+"@MMK_R_quotedblleft" = -172;
+"@MMK_R_quotedblright" = -80;
+"@MMK_R_registered" = -163;
"@MMK_R_t" = -46;
"@MMK_R_v" = -138;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
-asciitilde = -80.5;
-asterisk = -80.5;
+asciitilde = -80;
+asterisk = -80;
asterisk.case = -69;
degree = -92;
-hyphen = -103.5;
-logicalnot = -264.5;
-periodcentered = -126.5;
+hyphen = -103;
+logicalnot = -264;
+periodcentered = -126;
quotedblreversed = -92;
quotereversed = -92;
tripleprime = -138;
@@ -432036,256 +432036,256 @@ tripleprime = -138;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_comma" = -92;
"@MMK_R_quotedblleft" = -69;
-slash = -80.5;
-underscore = -80.5;
+slash = -80;
+underscore = -80;
};
"@MMK_L_P" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_J" = -195.5;
-"@MMK_R_c" = -11.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_A" = -149;
+"@MMK_R_J" = -195;
+"@MMK_R_c" = -11;
+"@MMK_R_comma" = -80;
"@MMK_R_hyphen" = -92;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_zero.subs" = -161;
ampersand = -69;
-ellipsis = -195.5;
+ellipsis = -195;
period = -69;
};
"@MMK_L_R" = {
"@MMK_R_V" = -23;
"@MMK_R_Y" = -60;
-"@MMK_R_c" = -11.5;
+"@MMK_R_c" = -11;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_S" = {
"@MMK_R_idieresis" = 92;
};
"@MMK_L_T" = {
-"@MMK_R_A" = -172.5;
-"@MMK_R_C" = -60.375;
+"@MMK_R_A" = -172;
+"@MMK_R_C" = -60;
"@MMK_R_J" = -184;
-"@MMK_R_T.sc" = -126.5;
-"@MMK_R_a" = -149.5;
+"@MMK_R_T.sc" = -126;
+"@MMK_R_a" = -149;
"@MMK_R_c" = -161;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_idblgrave" = 258.75;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_idblgrave" = 258;
"@MMK_R_idieresis" = 184;
"@MMK_R_m" = -115;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_s" = -149.5;
-"@MMK_R_u" = -149.5;
-"@MMK_R_v" = -126.5;
-"@MMK_R_w" = -126.5;
-"@MMK_R_x" = -126.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_s" = -149;
+"@MMK_R_u" = -149;
+"@MMK_R_v" = -126;
+"@MMK_R_w" = -126;
+"@MMK_R_x" = -126;
"@MMK_R_z" = -92;
"@MMK_R_zero.subs" = -253;
-adieresis = -80.5;
+adieresis = -80;
ampersand = -69;
asterisk.case = -69;
-atilde = -80.5;
-colon.case = -80.5;
-edieresis = -103.5;
-ellipsis = -172.5;
+atilde = -80;
+colon.case = -80;
+edieresis = -103;
+ellipsis = -172;
four = -138;
-hyphen = -149.5;
+hyphen = -149;
less = -161;
-odieresis = -103.5;
-otilde = -103.5;
+odieresis = -103;
+otilde = -103;
periodcentered = -161;
slash = -161;
-udieresis = -103.5;
+udieresis = -103;
underscore = -115;
-uni0240 = -80.5;
-utilde = -80.5;
-wdieresis = -103.5;
+uni0240 = -80;
+utilde = -80;
+wdieresis = -103;
ydieresis = -69;
-zbar = -80.5;
-zcurl = -80.5;
+zbar = -80;
+zcurl = -80;
zdotbelow = -69;
zlinebelow = -69;
-zrthook = -80.5;
+zrthook = -80;
};
"@MMK_L_T.sc" = {
-"@MMK_R_T" = -126.5;
-"@MMK_R_a" = -57.5;
-"@MMK_R_c" = -57.5;
+"@MMK_R_T" = -126;
+"@MMK_R_a" = -57;
+"@MMK_R_c" = -57;
"@MMK_R_comma" = -184;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -80;
integral = -115;
logicalnot = -69;
-underscore = -103.5;
-vturn = -86.25;
+underscore = -103;
+vturn = -86;
};
"@MMK_L_V" = {
-"@MMK_R_A" = -126.5;
+"@MMK_R_A" = -126;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -103.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -103;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -103;
+"@MMK_R_idieresis" = 172;
"@MMK_R_quotedblbase" = -230;
"@MMK_R_s" = -92;
-"@MMK_R_zero.subs" = -195.5;
-adieresis = -80.5;
-ampersand = -103.5;
+"@MMK_R_zero.subs" = -195;
+adieresis = -80;
+ampersand = -103;
at = -69;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
-logicalnot = -126.5;
-multiply = -80.5;
+idblgrave = 80;
+less = -149;
+logicalnot = -126;
+multiply = -80;
otilde = -92;
-periodcentered = -80.5;
-slash = -149.5;
+periodcentered = -80;
+slash = -149;
underscore = -161;
};
"@MMK_L_W" = {
"@MMK_R_A" = -115;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -103.5;
-"@MMK_R_colon" = -103.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -126;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -103;
+"@MMK_R_colon" = -103;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
"@MMK_R_m" = -69;
-"@MMK_R_quotedblbase" = -218.5;
+"@MMK_R_quotedblbase" = -218;
"@MMK_R_s" = -69;
"@MMK_R_zero.subs" = -184;
-ampersand = -103.5;
+ampersand = -103;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
+idblgrave = 80;
+less = -149;
periodcentered = -69;
};
"@MMK_L_X" = {
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_c" = -57.5;
-"@MMK_R_guillemetleft" = -80.5;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_c" = -57;
+"@MMK_R_guillemetleft" = -80;
"@MMK_R_hyphen" = -138;
-"@MMK_R_registered" = -14.375;
+"@MMK_R_registered" = -14;
asterisk.case = -92;
-idblgrave = 80.5;
+idblgrave = 80;
less = -115;
periodcentered = -92;
};
"@MMK_L_Y" = {
-"@MMK_R_A" = -149.5;
+"@MMK_R_A" = -149;
"@MMK_R_C" = -69;
"@MMK_R_J" = -69;
"@MMK_R_T" = 92;
-"@MMK_R_a" = -143.75;
-"@MMK_R_approxequal" = -195.5;
-"@MMK_R_c" = -155.25;
-"@MMK_R_colon" = -126.5;
+"@MMK_R_a" = -143;
+"@MMK_R_approxequal" = -195;
+"@MMK_R_c" = -155;
+"@MMK_R_colon" = -126;
"@MMK_R_comma" = -69;
"@MMK_R_guillemetleft" = -184;
-"@MMK_R_guillemetright" = -126.5;
+"@MMK_R_guillemetright" = -126;
"@MMK_R_hyphen" = -161;
"@MMK_R_idotless" = 0;
-"@MMK_R_m" = -80.5;
-"@MMK_R_quotedblbase" = -218.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_m" = -80;
+"@MMK_R_quotedblbase" = -218;
+"@MMK_R_registered" = -17;
"@MMK_R_s" = -138;
-"@MMK_R_u" = -80.5;
+"@MMK_R_u" = -80;
"@MMK_R_zero.subs" = -230;
alpha = -115;
-ampersand = -126.5;
-asterisk.case = -80.5;
+ampersand = -126;
+asterisk.case = -80;
ccurl = -115;
chook = -115;
drthook = -115;
dyogh = -115;
dz = -115;
dzcurl = -115;
-ellipsis = -195.5;
+ellipsis = -195;
eturn = -115;
four = -138;
-iacute = -57.5;
-idblgrave = 80.5;
+iacute = -57;
+idblgrave = 80;
infinity = -69;
less = -207;
-logicalnot = -103.5;
+logicalnot = -103;
multiply = -92;
omacron = -115;
-periodcentered = -103.5;
+periodcentered = -103;
qrthook = -115;
-questiongreek = -126.5;
+questiongreek = -126;
schwa = -115;
uni0221 = -115;
uni0247 = -115;
-uni0248 = -241.5;
+uni0248 = -241;
};
"@MMK_L_Z" = {
"@MMK_R_C" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_idieresis" = 172;
idblgrave = 69;
-less = -126.5;
+less = -126;
periodcentered = -69;
};
"@MMK_L_a" = {
"@MMK_R_T" = -92;
-"@MMK_R_T.sc" = -86.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_one" = -80.5;
+"@MMK_R_T.sc" = -86;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -149;
+"@MMK_R_one" = -80;
"@MMK_R_quotedblleft" = -92;
-"@MMK_R_registered" = -17.25;
-"@MMK_R_v" = -40.25;
+"@MMK_R_registered" = -17;
+"@MMK_R_v" = -40;
Gamma1 = -69;
-Trthook = -149.5;
-Yhook = -103.5;
-uni023E = -149.5;
+Trthook = -149;
+Yhook = -103;
+uni023E = -149;
};
"@MMK_L_a.sups" = {
-"@MMK_R_v.sups" = -26.59375;
+"@MMK_R_v.sups" = -26;
};
"@MMK_L_alphagreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
};
"@MMK_L_approxequal" = {
-"@MMK_R_A" = -103.5;
+"@MMK_R_A" = -103;
"@MMK_R_V" = -138;
-"@MMK_R_W" = -126.5;
-"@MMK_R_X" = -103.5;
-"@MMK_R_Y" = -195.5;
+"@MMK_R_W" = -126;
+"@MMK_R_X" = -103;
+"@MMK_R_Y" = -195;
"@MMK_R_quotedblleft" = -115;
-"@MMK_R_v" = -80.5;
+"@MMK_R_v" = -80;
"@MMK_R_x" = -69;
afii10044 = -92;
-tenge = -80.5;
+tenge = -80;
};
"@MMK_L_asciicircum" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Dcroat" = 69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_J" = -195.5;
+"@MMK_R_J" = -195;
"@MMK_R_comma" = -276;
ampersand = -69;
four = -92;
@@ -432293,80 +432293,80 @@ underscore = -138;
};
"@MMK_L_b" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -80.5;
-"@MMK_R_T.sc" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -57.5;
-"@MMK_R_Y" = -172.5;
+"@MMK_R_T" = -80;
+"@MMK_R_T.sc" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -57;
+"@MMK_R_Y" = -172;
"@MMK_R_dagger" = -69;
"@MMK_R_parenright" = -23;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_registered" = -23;
-"@MMK_R_v" = -40.25;
-"@MMK_R_w" = -37.375;
+"@MMK_R_v" = -40;
+"@MMK_R_w" = -37;
"@MMK_R_x" = -46;
Trthook = -161;
-Yhook = -103.5;
+Yhook = -103;
idblgrave = 69;
jcrosstail = -92;
uni023E = -161;
};
"@MMK_L_b.sups" = {
-"@MMK_R_parenright.sups" = -15.09375;
-"@MMK_R_w.sups" = -25.15625;
-"@MMK_R_x.sups" = -30.90625;
+"@MMK_R_parenright.sups" = -15;
+"@MMK_R_w.sups" = -25;
+"@MMK_R_x.sups" = -30;
};
"@MMK_L_becyrillic" = {
hardsigncyrillic = -69;
};
"@MMK_L_bsmcyrillic" = {
-"@MMK_R_T" = -201.25;
+"@MMK_R_T" = -201;
"@MMK_R_T.sc" = -115;
-"@MMK_R_V" = -201.25;
-"@MMK_R_X" = -57.5;
+"@MMK_R_V" = -201;
+"@MMK_R_X" = -57;
"@MMK_R_Y" = -345;
"@MMK_R_dagger" = -115;
-"@MMK_R_parenright" = -57.5;
-"@MMK_R_quotedblleft" = -143.75;
-"@MMK_R_v" = -57.5;
-"@MMK_R_w" = -57.5;
+"@MMK_R_parenright" = -57;
+"@MMK_R_quotedblleft" = -143;
+"@MMK_R_v" = -57;
+"@MMK_R_w" = -57;
"@MMK_R_x" = -46;
};
"@MMK_L_c" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_T.sc" = -23;
-"@MMK_R_Y" = -126.5;
-"@MMK_R_registered" = -11.5;
-"@MMK_R_x" = -11.5;
+"@MMK_R_Y" = -126;
+"@MMK_R_registered" = -11;
+"@MMK_R_x" = -11;
idblgrave = 69;
};
"@MMK_L_c.sups" = {
-"@MMK_R_x.sups" = -7.90625;
+"@MMK_R_x.sups" = -7;
};
"@MMK_L_colon" = {
"@MMK_R_T" = -69;
-"@MMK_R_V" = -126.5;
+"@MMK_R_V" = -126;
"@MMK_R_quotedblleft" = -92;
-Psi = -126.5;
+Psi = -126;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-afii10044 = -103.5;
-uni023E = -80.5;
+Trthook = -80;
+afii10044 = -103;
+uni023E = -80;
};
"@MMK_L_comma" = {
"@MMK_R_T" = -69;
"@MMK_R_T.sc" = -184;
"@MMK_R_Y" = -69;
-"@MMK_R_nine.1" = -103.5;
+"@MMK_R_nine.1" = -103;
"@MMK_R_one" = -161;
-"@MMK_R_quotedbl" = -201.25;
+"@MMK_R_quotedbl" = -201;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_six" = -80.5;
+"@MMK_R_six" = -80;
"@MMK_R_three" = -69;
Tbar = -69;
Tcircumflexbelow = -69;
@@ -432381,31 +432381,31 @@ Yhookabove = -69;
Ytilde = -69;
eight = -69;
grave = -276;
-question = -181.125;
+question = -181;
quotedblreversed = -276;
quotereversed = -276;
};
"@MMK_L_dagger" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_Alphagreek" = -149.5;
-"@MMK_R_J" = -149.5;
+"@MMK_R_A" = -149;
+"@MMK_R_Alphagreek" = -149;
+"@MMK_R_J" = -149;
"@MMK_R_c" = -69;
-Hbar = 80.5;
-ampersand = -80.5;
+Hbar = 80;
+ampersand = -80;
};
"@MMK_L_dcaron" = {
-"@MMK_R_T" = 80.5;
+"@MMK_R_T" = 80;
"@MMK_R_asciicircum" = 115;
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 138;
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_one" = 92;
"@MMK_R_quotedbl" = 69;
"@MMK_R_quotedblleft" = 69;
-"@MMK_R_registered" = 34.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_registered" = 34;
+"@MMK_R_zero.subs" = -80;
hbar = 69;
ibreve = 69;
icaron = 69;
@@ -432420,39 +432420,39 @@ seven = 92;
underscore = 92;
};
"@MMK_L_deltagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
tau = -69;
};
"@MMK_L_e" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_T.sc" = -40.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -172.5;
-"@MMK_R_registered" = -34.5;
-"@MMK_R_v" = -34.5;
-"@MMK_R_x" = -28.75;
-Gamma1 = -80.5;
+"@MMK_R_T" = -103;
+"@MMK_R_T.sc" = -40;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -172;
+"@MMK_R_registered" = -34;
+"@MMK_R_v" = -34;
+"@MMK_R_x" = -28;
+Gamma1 = -80;
Trthook = -161;
-Yhook = -80.5;
+Yhook = -80;
uni023E = -161;
};
"@MMK_L_e.sups" = {
-"@MMK_R_x.sups" = -19.40625;
+"@MMK_R_x.sups" = -19;
};
"@MMK_L_eight" = {
"@MMK_R_comma" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_quotedblbase" = -103;
};
"@MMK_L_eight.sups" = {
"@MMK_R_A" = -184;
"@MMK_R_Alphagreek" = -184;
"@MMK_R_J" = -230;
-"@MMK_R_comma" = -218.5;
+"@MMK_R_comma" = -218;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_t" = 69;
Hbar = 92;
four = -115;
@@ -432465,154 +432465,154 @@ Psi = -92;
};
"@MMK_L_f" = {
"@MMK_R_A" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_Y" = 20.125;
+"@MMK_R_J" = -126;
+"@MMK_R_Y" = 20;
"@MMK_R_a" = -23;
"@MMK_R_bullet" = -46;
"@MMK_R_c" = -46;
"@MMK_R_comma" = -115;
"@MMK_R_eight.sups" = 46;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
"@MMK_R_idieresis" = 207;
"@MMK_R_quotedblbase" = -184;
"@MMK_R_s" = -46;
-"@MMK_R_slash" = -57.5;
-"@MMK_R_zero.subs" = -80.5;
-four = -126.5;
-hturnhook2 = 80.5;
+"@MMK_R_slash" = -57;
+"@MMK_R_zero.subs" = -80;
+four = -126;
+hturnhook2 = 80;
idblgrave = 92;
-underscore = -28.75;
+underscore = -28;
};
"@MMK_L_f.sups" = {
-"@MMK_R_a.sups" = -30.90625;
-"@MMK_R_c.sups" = -30.90625;
-"@MMK_R_s.sups" = -30.90625;
+"@MMK_R_a.sups" = -30;
+"@MMK_R_c.sups" = -30;
+"@MMK_R_s.sups" = -30;
};
"@MMK_L_four" = {
-"@MMK_R_one" = -20.125;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_one" = -20;
+"@MMK_R_registered" = -11;
};
"@MMK_L_four.dnomf" = {
-"@MMK_R_one.dnomf" = -12.21875;
+"@MMK_R_one.dnomf" = -12;
};
"@MMK_L_four.sups" = {
-"@MMK_R_one.sups" = -13.65625;
+"@MMK_R_one.sups" = -13;
};
"@MMK_L_fraction" = {
-"@MMK_R_four.dnomf" = -143.75;
+"@MMK_R_four.dnomf" = -143;
};
"@MMK_L_g" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
underscore = 69;
};
"@MMK_L_gammagreek" = {
"@MMK_R_Alphagreek" = -138;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = 69;
Sigma = -69;
-lambda = -80.5;
-less = -80.5;
+lambda = -80;
+less = -80;
logicalnot = -69;
slash = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_guillemetleft" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -103.5;
-"@MMK_R_Y" = -126.5;
-Psi = -126.5;
+"@MMK_R_T" = -103;
+"@MMK_R_Y" = -126;
+Psi = -126;
afii10044 = -138;
};
"@MMK_L_guillemetright" = {
"@MMK_R_A" = -69;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_T" = -264.5;
-"@MMK_R_V" = -126.5;
+"@MMK_R_T" = -264;
+"@MMK_R_V" = -126;
"@MMK_R_W" = -115;
-"@MMK_R_X" = -80.5;
+"@MMK_R_X" = -80;
"@MMK_R_Y" = -184;
"@MMK_R_Z" = -69;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_one" = -80.5;
-"@MMK_R_quotedblleft" = -172.5;
+"@MMK_R_one" = -80;
+"@MMK_R_quotedblleft" = -172;
"@MMK_R_three" = -92;
-"@MMK_R_two" = -103.5;
+"@MMK_R_two" = -103;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
"@MMK_R_x" = -69;
Psi = -184;
-afii10024 = -103.5;
+afii10024 = -103;
afii10044 = -138;
eight = -69;
-seven = -103.5;
+seven = -103;
};
"@MMK_L_hyphen" = {
-"@MMK_R_T" = -149.5;
-"@MMK_R_T.sc" = -57.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -126.5;
+"@MMK_R_T" = -149;
+"@MMK_R_T.sc" = -57;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -126;
"@MMK_R_Y" = -161;
"@MMK_R_four" = -69;
-"@MMK_R_nine.1" = -34.5;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_nine.1" = -34;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_three" = -23;
"@MMK_R_two" = -69;
"@MMK_R_x" = -46;
Psi = -161;
Tcaron = -69;
Tcommaaccent = -69;
-afii10024 = -218.5;
-afii10025 = -103.5;
+afii10024 = -218;
+afii10025 = -103;
afii10044 = -138;
seven = -46;
};
"@MMK_L_idieresis" = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_T" = 184;
-"@MMK_R_V" = 172.5;
+"@MMK_R_V" = 172;
"@MMK_R_Z" = 184;
-"@MMK_R_f" = 80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_f" = 80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 184;
"@MMK_R_jdotless" = -115;
"@MMK_R_one" = 92;
-"@MMK_R_t" = 103.5;
+"@MMK_R_t" = 103;
Dhook = 69;
-Dzcaron_ = 149.5;
-Enhookcyrillic = 149.5;
-Nhook = 149.5;
-Rx = 149.5;
+Dzcaron_ = 149;
+Enhookcyrillic = 149;
+Nhook = 149;
+Rx = 149;
Thook = 69;
-afii10026 = 149.5;
-hbar = 80.5;
+afii10026 = 149;
+hbar = 80;
ibreve = 69;
icaron = 69;
icircumflex = 69;
-idblgrave = 103.5;
+idblgrave = 103;
igrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
+imacron = 80;
jcircumflex = 69;
jcrosstail = -115;
-numero = 149.5;
-rdblgrave.1 = 80.5;
+numero = 149;
+rdblgrave.1 = 80;
seven = 184;
-uni01F6 = 149.5;
-uni0246 = 149.5;
-uni0376 = 149.5;
-uni048A = 149.5;
+uni01F6 = 149;
+uni0246 = 149;
+uni0376 = 149;
+uni048A = 149;
};
"@MMK_L_idotless" = {
"@MMK_R_V" = 69;
"@MMK_R_W" = 69;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_m" = 0;
"@MMK_R_parenright" = 69;
Dhook = 69;
@@ -432623,21 +432623,21 @@ Vtilde = 69;
Wdotaccent = 69;
Wdotbelow = 69;
florin = 69;
-hbar = 80.5;
-ibreve = 80.5;
+hbar = 80;
+ibreve = 80;
idblgrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
-iogonek = 80.5;
+imacron = 80;
+iogonek = 80;
itilde = 69;
itildebelow = 92;
-jcircumflex = 80.5;
+jcircumflex = 80;
lcircumflexbelow = 69;
llinebelow = 92;
rdblgrave.1 = 69;
rlinebelow.1 = 92;
tlinebelow = 69;
-underscore = 80.5;
+underscore = 80;
won = 69;
yen = 69;
};
@@ -432646,13 +432646,13 @@ yen = 69;
"@MMK_R_parenright.sups" = 46;
};
"@MMK_L_iotadieresisgreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -432660,179 +432660,179 @@ underscore = -69;
"@MMK_L_k" = {
"@MMK_R_T" = -115;
"@MMK_R_c" = -46;
-"@MMK_R_guillemetleft" = -103.5;
+"@MMK_R_guillemetleft" = -103;
"@MMK_R_hyphen" = -92;
four = -92;
-less = -172.5;
+less = -172;
logicalnot = -138;
};
"@MMK_L_k.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_nine" = {
"@MMK_R_Y" = -69;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_quotedblbase" = -103;
"@MMK_R_quotedblleft" = -92;
Psi = -69;
-seven = -40.25;
+seven = -40;
underscore = -92;
};
"@MMK_L_nine.1" = {
-"@MMK_R_A" = -20.125;
-"@MMK_R_comma" = -201.25;
-seven = -80.5;
+"@MMK_R_A" = -20;
+"@MMK_R_comma" = -201;
+seven = -80;
};
"@MMK_L_nine.dnomf" = {
-seven.dnomf = -24.4375;
+seven.dnomf = -24;
};
"@MMK_L_nine.sups" = {
-seven.sups = -26.59375;
+seven.sups = -26;
};
"@MMK_L_ohorn" = {
"@MMK_R_comma" = -92;
};
"@MMK_L_omegagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
};
"@MMK_L_one" = {
-"@MMK_R_comma" = -86.25;
+"@MMK_R_comma" = -86;
"@MMK_R_quotedblbase" = -92;
};
"@MMK_L_parenleft" = {
"@MMK_R_c" = -23;
-"@MMK_R_jdotless" = 57.5;
+"@MMK_R_jdotless" = 57;
idblgrave = 92;
llinebelow = 69;
rlinebelow.1 = 69;
};
"@MMK_L_parenleft.case" = {
-"@MMK_R_Idieresis" = 57.5;
+"@MMK_R_Idieresis" = 57;
};
"@MMK_L_parenleft.sups" = {
-"@MMK_R_c.sups" = -15.09375;
-"@MMK_R_jdotless.sups" = 38.09375;
+"@MMK_R_c.sups" = -15;
+"@MMK_R_jdotless.sups" = 38;
};
"@MMK_L_parenright" = {
"@MMK_R_quotedblleft" = -69;
};
"@MMK_L_psigreek" = {
"@MMK_R_Alphagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
-lambda = -80.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
+lambda = -80;
seven = -69;
};
"@MMK_L_quotedbl" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Elcyrillic" = -92;
-"@MMK_R_J" = -333.5;
-"@MMK_R_comma" = -201.25;
+"@MMK_R_J" = -333;
+"@MMK_R_comma" = -201;
ampersand = -69;
-four = -126.5;
+four = -126;
};
"@MMK_L_quotedblbase" = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -184;
-"@MMK_R_W" = -126.5;
-"@MMK_R_Y" = -218.5;
-"@MMK_R_eight.sups" = -195.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_W" = -126;
+"@MMK_R_Y" = -218;
+"@MMK_R_eight.sups" = -195;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_one" = -138;
"@MMK_R_quotedblleft" = -253;
-"@MMK_R_quotedblright" = -195.5;
-"@MMK_R_v" = -103.5;
+"@MMK_R_quotedblright" = -195;
+"@MMK_R_v" = -103;
Psi = -207;
-Tbar = -195.5;
-afii10021 = 103.5;
-afii10041 = -126.5;
-afii10044 = -103.5;
+Tbar = -195;
+afii10021 = 103;
+afii10041 = -126;
+afii10044 = -103;
checyrillic = -69;
-decyrillic = 126.5;
-hardsigncyrillic = -80.5;
-tecyrillic = -103.5;
+decyrillic = 126;
+hardsigncyrillic = -80;
+tecyrillic = -103;
};
"@MMK_L_quotedblleft" = {
-"@MMK_R_A" = -195.5;
-"@MMK_R_Alphagreek" = -195.5;
-"@MMK_R_Elcyrillic" = -126.5;
+"@MMK_R_A" = -195;
+"@MMK_R_Alphagreek" = -195;
+"@MMK_R_Elcyrillic" = -126;
"@MMK_R_J" = -299;
-"@MMK_R_comma" = -201.25;
-"@MMK_R_elcyrillic" = -172.5;
+"@MMK_R_comma" = -201;
+"@MMK_R_elcyrillic" = -172;
"@MMK_R_quotedblbase" = -253;
-afii10021 = -103.5;
-ampersand = -126.5;
+afii10021 = -103;
+ampersand = -126;
decyrillic = -115;
-four = -126.5;
-questiondown = -126.5;
-slash = -195.5;
+four = -126;
+questiondown = -126;
+slash = -195;
};
"@MMK_L_quotedblright" = {
"@MMK_R_A" = -276;
-"@MMK_R_Alphagreek" = -264.5;
-"@MMK_R_Elcyrillic" = -103.5;
+"@MMK_R_Alphagreek" = -264;
+"@MMK_R_Elcyrillic" = -103;
"@MMK_R_J" = -253;
"@MMK_R_a" = -115;
"@MMK_R_approxequal" = -115;
-"@MMK_R_c" = -126.5;
+"@MMK_R_c" = -126;
"@MMK_R_colon" = -115;
"@MMK_R_comma" = -391;
-"@MMK_R_deltagreek" = -126.5;
-"@MMK_R_elcyrillic" = -126.5;
-"@MMK_R_epsilongreek" = -126.5;
-"@MMK_R_guillemetleft" = -172.5;
-"@MMK_R_hyphen" = -126.5;
-"@MMK_R_iotadieresisgreek" = -126.5;
-"@MMK_R_m" = -43.125;
+"@MMK_R_deltagreek" = -126;
+"@MMK_R_elcyrillic" = -126;
+"@MMK_R_epsilongreek" = -126;
+"@MMK_R_guillemetleft" = -172;
+"@MMK_R_hyphen" = -126;
+"@MMK_R_iotadieresisgreek" = -126;
+"@MMK_R_m" = -43;
"@MMK_R_nine.1" = -23;
-"@MMK_R_omegagreek" = -126.5;
-"@MMK_R_psigreek" = -80.5;
-"@MMK_R_quotedblbase" = -379.5;
-"@MMK_R_s" = -140.875;
+"@MMK_R_omegagreek" = -126;
+"@MMK_R_psigreek" = -80;
+"@MMK_R_quotedblbase" = -379;
+"@MMK_R_s" = -140;
"@MMK_R_six" = -92;
-"@MMK_R_t" = 28.75;
-"@MMK_R_u" = -80.5;
-"@MMK_R_v" = 28.75;
-afii10021 = -80.5;
+"@MMK_R_t" = 28;
+"@MMK_R_u" = -80;
+"@MMK_R_v" = 28;
+afii10021 = -80;
ampersand = -138;
asciitilde = -92;
at = -115;
decyrillic = -115;
-eight = -80.5;
-four = -195.5;
+eight = -80;
+four = -195;
iacyrillic = -69;
-less = -195.5;
+less = -195;
micro = -92;
numbersign = -253;
questiondown = -138;
-rho = -126.5;
-slash = -287.5;
+rho = -126;
+slash = -287;
theta = -138;
-underscore = -80.5;
+underscore = -80;
xi = -138;
-zeta = -126.5;
+zeta = -126;
};
"@MMK_L_r" = {
-"@MMK_R_A" = -80.5;
+"@MMK_R_A" = -80;
"@MMK_R_J" = -115;
"@MMK_R_T" = -115;
"@MMK_R_Z" = -69;
"@MMK_R_a.sups" = 69;
-"@MMK_R_c" = -34.5;
-"@MMK_R_comma" = -126.5;
+"@MMK_R_c" = -34;
+"@MMK_R_comma" = -126;
"@MMK_R_eight.sups" = 92;
"@MMK_R_f" = 69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 34.5;
+"@MMK_R_quotedblright" = 34;
"@MMK_R_t" = 69;
-"@MMK_R_v" = 17.25;
-"@MMK_R_w" = 17.25;
-"@MMK_R_x" = 17.25;
-"@MMK_R_zero.subs" = -103.5;
-idblgrave = 80.5;
-less = -80.5;
+"@MMK_R_v" = 17;
+"@MMK_R_w" = 17;
+"@MMK_R_x" = 17;
+"@MMK_R_zero.subs" = -103;
+idblgrave = 80;
+less = -80;
logicalnot = -69;
rdblgrave.1 = 69;
slash = -69;
@@ -432843,186 +432843,186 @@ slash = -69;
"@MMK_R_t.sups" = 46;
};
"@MMK_L_registered" = {
-"@MMK_R_A" = -143.75;
-"@MMK_R_C" = -11.5;
-"@MMK_R_J" = -143.75;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -17.25;
+"@MMK_R_A" = -143;
+"@MMK_R_C" = -11;
+"@MMK_R_J" = -143;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -17;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -57.5;
-"@MMK_R_four" = -100.625;
+"@MMK_R_c" = -57;
+"@MMK_R_four" = -100;
"@MMK_R_s" = -23;
-"@MMK_R_six.1" = -34.5;
+"@MMK_R_six.1" = -34;
ampersand = -69;
};
"@MMK_L_rthook" = {
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
};
"@MMK_L_s" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_V" = -92;
"@MMK_R_W" = -69;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_quotedblbase" = -103.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_Y" = -149;
+"@MMK_R_quotedblbase" = -103;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_registered" = -17;
idblgrave = 69;
};
"@MMK_L_seven" = {
-"@MMK_R_three" = -34.5;
-three.1 = 2.875;
+"@MMK_R_three" = -34;
+three.1 = 2;
};
"@MMK_L_seven.dnomf" = {
-"@MMK_R_three.dnomf" = -20.84375;
+"@MMK_R_three.dnomf" = -20;
};
"@MMK_L_seven.sups" = {
"@MMK_R_three.sups" = -23;
};
"@MMK_L_six.1" = {
-"@MMK_R_registered" = -34.5;
-seven = -80.5;
+"@MMK_R_registered" = -34;
+seven = -80;
underscore = -92;
};
"@MMK_L_t" = {
"@MMK_R_B" = 23;
"@MMK_R_T" = -69;
-"@MMK_R_V" = -20.125;
-"@MMK_R_W" = -20.125;
-"@MMK_R_Y" = -31.625;
+"@MMK_R_V" = -20;
+"@MMK_R_W" = -20;
+"@MMK_R_Y" = -31;
"@MMK_R_bullet" = -23;
-"@MMK_R_c" = -11.5;
-"@MMK_R_four" = -28.75;
-"@MMK_R_hyphen" = -40.25;
+"@MMK_R_c" = -11;
+"@MMK_R_four" = -28;
+"@MMK_R_hyphen" = -40;
"@MMK_R_jdotless" = 0;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-"@MMK_R_s" = -20.125;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+"@MMK_R_s" = -20;
"@MMK_R_zero.subs" = 69;
idblgrave = 92;
-less = -57.5;
+less = -57;
rdblgrave.1 = 69;
};
"@MMK_L_t.sups" = {
-"@MMK_R_B.sups" = 15.09375;
-"@MMK_R_c.sups" = -7.90625;
+"@MMK_R_B.sups" = 15;
+"@MMK_R_c.sups" = -7;
"@MMK_R_jdotless.sups" = 0;
-"@MMK_R_s.sups" = -13.65625;
+"@MMK_R_s.sups" = -13;
};
"@MMK_L_two" = {
-"@MMK_R_four" = -31.625;
+"@MMK_R_four" = -31;
};
"@MMK_L_two.dnomf" = {
-"@MMK_R_four.dnomf" = -18.6875;
+"@MMK_R_four.dnomf" = -18;
};
"@MMK_L_two.sups" = {
-"@MMK_R_four.sups" = -20.84375;
+"@MMK_R_four.sups" = -20;
};
"@MMK_L_u" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Y" = -115;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-Tcaron = -149.5;
-Trthook = -149.5;
-idblgrave = 80.5;
-uni023E = -149.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+Tcaron = -149;
+Trthook = -149;
+idblgrave = 80;
+uni023E = -149;
};
"@MMK_L_v" = {
"@MMK_R_A" = -138;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_T" = -69;
"@MMK_R_Y" = -69;
-"@MMK_R_a" = -34.5;
-"@MMK_R_approxequal" = -80.5;
-"@MMK_R_c" = -40.25;
+"@MMK_R_a" = -34;
+"@MMK_R_approxequal" = -80;
+"@MMK_R_c" = -40;
"@MMK_R_comma" = -69;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 57.5;
-"@MMK_R_zero.subs" = -103.5;
+"@MMK_R_quotedblright" = 57;
+"@MMK_R_zero.subs" = -103;
Dhook = 69;
-Tcaron = -126.5;
+Tcaron = -126;
Thook = 69;
-Trthook = -126.5;
-ellipsis = -149.5;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
+Trthook = -126;
+ellipsis = -149;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
imacron = 92;
less = -69;
-logicalnot = -80.5;
+logicalnot = -80;
slash = -115;
underscore = -161;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_v.sups" = {
-"@MMK_R_c.sups" = -26.59375;
+"@MMK_R_c.sups" = -26;
"@MMK_R_idotless.sups" = 46;
-"@MMK_R_jdotless.sups" = 53.90625;
+"@MMK_R_jdotless.sups" = 53;
};
"@MMK_L_vecyrillic" = {
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
};
"@MMK_L_w" = {
"@MMK_R_A" = -138;
"@MMK_R_J" = -115;
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Z" = -69;
-"@MMK_R_c" = -37.375;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_c" = -37;
+"@MMK_R_comma" = -149;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 57.5;
-Trthook = -126.5;
+"@MMK_R_quotedblright" = 57;
+Trthook = -126;
ampersand = -69;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_w.sups" = {
-"@MMK_R_c.sups" = -25.15625;
+"@MMK_R_c.sups" = -25;
};
"@MMK_L_x" = {
-"@MMK_R_T" = -126.5;
+"@MMK_R_T" = -126;
"@MMK_R_approxequal" = -69;
"@MMK_R_c" = -46;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_hyphen" = -46;
};
"@MMK_L_x.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_z" = {
"@MMK_R_T" = -69;
-"@MMK_R_c" = -31.625;
+"@MMK_R_c" = -31;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-uni023E = -80.5;
+Trthook = -80;
+uni023E = -80;
};
"@MMK_L_z.sups" = {
-"@MMK_R_c.sups" = -20.84375;
+"@MMK_R_c.sups" = -20;
};
"@MMK_L_zero.subs" = {
"@MMK_R_T" = -253;
-"@MMK_R_V" = -195.5;
+"@MMK_R_V" = -195;
"@MMK_R_W" = -184;
"@MMK_R_Y" = -230;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_jdotless" = 126.5;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_jdotless" = 126;
"@MMK_R_one" = -184;
-"@MMK_R_v" = -103.5;
+"@MMK_R_v" = -103;
Psi = -230;
-Tbar = -149.5;
-afii10041 = -80.5;
+Tbar = -149;
+afii10041 = -80;
afii10044 = -69;
};
D = {
-enclosingcirclecomb = -86.25;
+enclosingcirclecomb = -86;
};
DZ = {
idblgrave = 69;
@@ -433031,10 +433031,10 @@ Dtopbar = {
idblgrave = 69;
};
Dzcaron_ = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
E = {
-enclosingcirclecomb = -14.375;
+enclosingcirclecomb = -14;
};
Ecedillabreve = {
idblgrave = 69;
@@ -433082,31 +433082,31 @@ Etildebelow = {
idblgrave = 69;
};
F = {
-enclosingcirclecomb = -14.375;
+enclosingcirclecomb = -14;
};
Fdotaccent = {
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
Fhook = {
"@MMK_R_comma" = -92;
-period = -80.5;
+period = -80;
};
Gamma = {
"@MMK_R_Alphagreek" = -184;
-"@MMK_R_Omicrongreek" = -103.5;
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_deltagreek" = -120.75;
-"@MMK_R_epsilongreek" = -264.5;
+"@MMK_R_Omicrongreek" = -103;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_deltagreek" = -120;
+"@MMK_R_epsilongreek" = -264;
"@MMK_R_gammagreek" = -207;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_iotadieresisgreek" = -264.5;
-"@MMK_R_omegagreek" = -264.5;
-"@MMK_R_psigreek" = -264.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_iotadieresisgreek" = -264;
+"@MMK_R_omegagreek" = -264;
+"@MMK_R_psigreek" = -264;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -115;
Omega = -69;
@@ -433115,8 +433115,8 @@ lambda = -69;
less = -161;
micro = -207;
pi = -207;
-rho = -264.5;
-slash = -103.5;
+rho = -264;
+slash = -103;
tau = -207;
theta = -161;
underscore = -138;
@@ -433124,10 +433124,10 @@ xi = -115;
zeta = -161;
};
H = {
-enclosingcirclecomb = -155.25;
+enclosingcirclecomb = -155;
};
Hbar = {
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 92;
idblgrave = 69;
};
@@ -433141,20 +433141,20 @@ I = {
enclosingcirclecomb = 345;
};
Icaron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Icircumflex = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idblgrave = {
"@MMK_R_B" = 69;
idblgrave = 69;
};
Idieresis = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idieresisacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idotbelow = {
idblgrave = 69;
@@ -433163,10 +433163,10 @@ Ihookabove = {
idblgrave = 69;
};
Iinvertedbreve = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Imacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Istroke = {
"@MMK_R_Dcroat" = 69;
@@ -433174,12 +433174,12 @@ Dcroat = 69;
Istroke = 69;
Lbar = 69;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
K = {
-enclosingcirclecomb = -71.875;
+enclosingcirclecomb = -71;
};
Kacute = {
idblgrave = 92;
@@ -433188,35 +433188,35 @@ Kcaron = {
idblgrave = 92;
};
Kdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Khook = {
idblgrave = 92;
};
Klinebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
L = {
-enclosingcirclecomb = 28.75;
+enclosingcirclecomb = 28;
};
Lacute = {
"@MMK_R_asciicircum" = -92;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
asciitilde = -92;
};
Lbar = {
"@MMK_R_asciicircum" = -69;
"@MMK_R_hyphen" = -69;
-degree = -80.5;
+degree = -80;
};
Lcaron = {
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asciitilde = -69;
};
Lcircumflexbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -433232,7 +433232,7 @@ Ytilde = -69;
Ldotbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -433241,7 +433241,7 @@ Ytilde = -69;
Ldotbelowmacron = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -433250,7 +433250,7 @@ Ytilde = -69;
Llinebelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -433266,7 +433266,7 @@ Yhookabove = -69;
Ytilde = -69;
};
M = {
-enclosingcirclecomb = -288.9375;
+enclosingcirclecomb = -288;
};
Macute = {
idblgrave = 69;
@@ -433275,7 +433275,7 @@ Mdotaccent = {
idblgrave = 69;
};
N = {
-enclosingcirclecomb = -186.875;
+enclosingcirclecomb = -186;
};
Ndotaccent = {
idblgrave = 69;
@@ -433306,25 +433306,25 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
P = {
-enclosingcirclecomb = -28.75;
+enclosingcirclecomb = -28;
};
Pacute = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Pdotaccent = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Phook = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Psi = {
-"@MMK_R_Alphagreek" = -126.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
-"@MMK_R_guillemetleft" = -97.75;
-"@MMK_R_guillemetright" = -40.25;
+"@MMK_R_Alphagreek" = -126;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
+"@MMK_R_guillemetleft" = -97;
+"@MMK_R_guillemetright" = -40;
"@MMK_R_hyphen" = -161;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -230;
ampersand = -69;
@@ -433337,22 +433337,22 @@ underscore = -207;
xi = -69;
};
Sigma = {
-"@MMK_R_Omicrongreek" = -80.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_Omicrongreek" = -80;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asterisk.case = -69;
-less = -126.5;
+less = -126;
pi = -69;
tau = -138;
};
Tbar = {
"@MMK_R_A" = -115;
-"@MMK_R_J" = -241.5;
+"@MMK_R_J" = -241;
"@MMK_R_approxequal" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -149.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -149;
};
Tcaron = {
"@MMK_R_hyphen" = -69;
@@ -433382,11 +433382,11 @@ Tdotbelow = {
"@MMK_R_z" = -69;
};
Thorn = {
-"@MMK_R_A" = -80.5;
-"@MMK_R_J" = -80.5;
+"@MMK_R_A" = -80;
+"@MMK_R_J" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_V" = -103.5;
-"@MMK_R_Z" = -80.5;
+"@MMK_R_V" = -103;
+"@MMK_R_Z" = -80;
"@MMK_R_comma" = -207;
"@MMK_R_quotedblbase" = -253;
"@MMK_R_quotedblleft" = -115;
@@ -433398,9 +433398,9 @@ Tlinebelow = {
"@MMK_R_z" = -69;
};
Trthook = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
Udblgrave = {
idblgrave = 69;
@@ -433422,23 +433422,23 @@ idblgrave = 69;
};
Uhornacute = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorndotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorngrave = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhornhookabove = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorntilde = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uinvertedbreve = {
idblgrave = 69;
@@ -433451,7 +433451,7 @@ idblgrave = 69;
};
Vdotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Vtilde = {
"@MMK_R_comma" = -69;
@@ -433470,7 +433470,7 @@ Wdotaccent = {
idblgrave = 92;
};
Wdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Wgrave = {
idblgrave = 92;
@@ -433498,14 +433498,14 @@ idblgrave = 92;
Ydotbelow = {
"@MMK_R_J" = -69;
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Ygrave = {
idblgrave = 92;
};
Yhook = {
-"@MMK_R_J" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_J" = -80;
+"@MMK_R_comma" = -80;
idblgrave = 92;
};
Yhookabove = {
@@ -433528,7 +433528,7 @@ Zlinebelow = {
idblgrave = 69;
};
acircumflexacute = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_idotless" = 69;
acircumflexgrave = 69;
ecircumflexgrave = 69;
@@ -433544,46 +433544,46 @@ afii10018 = {
afii10044 = -115;
};
afii10024 = {
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-afii10038 = -103.5;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+afii10038 = -103;
afii10041 = -69;
-afii10044 = -80.5;
+afii10044 = -80;
asciitilde = -69;
checyrillic = -115;
-four = -80.5;
+four = -80;
hardsigncyrillic = -92;
hryvnia = -69;
-less = -103.5;
-logicalnot = -103.5;
+less = -103;
+logicalnot = -103;
multiply = -92;
-tecyrillic = -126.5;
+tecyrillic = -126;
zecyrillic = -69;
};
afii10038 = {
-"@MMK_R_quotedblbase" = -103.5;
-afii10024 = -103.5;
+"@MMK_R_quotedblbase" = -103;
+afii10024 = -103;
afii10044 = -69;
};
afii10051 = {
"@MMK_R_one" = -69;
};
amacron = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ampersand = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -126.5;
-"@MMK_R_W" = -80.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_dagger" = -80.5;
+"@MMK_R_V" = -126;
+"@MMK_R_W" = -80;
+"@MMK_R_Y" = -149;
+"@MMK_R_dagger" = -80;
"@MMK_R_eight.sups" = -92;
"@MMK_R_quotedbl" = -69;
"@MMK_R_quotedblleft" = -184;
"@MMK_R_registered" = -46;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
-Psi = -149.5;
+Psi = -149;
afii10044 = -115;
};
asciitilde = {
@@ -433595,30 +433595,30 @@ asterisk.case = {
"@MMK_R_T" = -69;
};
at = {
-enclosingcirclecomb = -373.75;
+enclosingcirclecomb = -373;
};
at.case = {
-enclosingcirclecomb = -373.75;
+enclosingcirclecomb = -373;
};
backslash = {
-"@MMK_R_T" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_comma" = 80.5;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_quotedblleft" = -86.25;
+"@MMK_R_T" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_comma" = 80;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_quotedblleft" = -86;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_v" = -103.5;
-Psi = -80.5;
-tenge = -103.5;
+"@MMK_R_v" = -103;
+Psi = -80;
+tenge = -103;
};
beta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
bhook = {
"@MMK_R_T" = -161;
};
bracketleft = {
-idblgrave = 80.5;
+idblgrave = 80;
};
bracketright = {
idblgrave = 69;
@@ -433630,16 +433630,16 @@ dcircumflexbelow = {
idblgrave = 69;
};
dcroat = {
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
Thook = 69;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+imacron = 80;
};
ddotaccent = {
idblgrave = 69;
@@ -433655,12 +433655,12 @@ dhook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
dlinebelow = {
idblgrave = 69;
@@ -433682,43 +433682,43 @@ ellipsis = {
quotedblreversed = -368;
};
enclosingcirclecomb = {
-"@MMK_R_A" = -14.375;
-"@MMK_R_B" = -57.5;
-"@MMK_R_C" = -149.5;
-"@MMK_R_J" = 57.5;
-"@MMK_R_S" = -14.375;
-"@MMK_R_T" = -14.375;
-"@MMK_R_U" = -173.9375;
-"@MMK_R_V" = -43.125;
-"@MMK_R_W" = -307.625;
-"@MMK_R_Y" = -50.3125;
-"@MMK_R_Z" = -28.75;
-"@MMK_R_approxequal" = -57.5;
-"@MMK_R_emdash" = -406.8125;
-"@MMK_R_endash" = 100.625;
-"@MMK_R_four" = -28.75;
-"@MMK_R_hyphen" = 172.5;
-"@MMK_R_one" = 172.5;
-"@MMK_R_six" = -14.375;
-"@MMK_R_three" = -14.375;
-D = -86.25;
-E = -14.375;
-F = -14.375;
-H = -155.25;
+"@MMK_R_A" = -14;
+"@MMK_R_B" = -57;
+"@MMK_R_C" = -149;
+"@MMK_R_J" = 57;
+"@MMK_R_S" = -14;
+"@MMK_R_T" = -14;
+"@MMK_R_U" = -173;
+"@MMK_R_V" = -43;
+"@MMK_R_W" = -307;
+"@MMK_R_Y" = -50;
+"@MMK_R_Z" = -28;
+"@MMK_R_approxequal" = -57;
+"@MMK_R_emdash" = -406;
+"@MMK_R_endash" = 100;
+"@MMK_R_four" = -28;
+"@MMK_R_hyphen" = 172;
+"@MMK_R_one" = 172;
+"@MMK_R_six" = -14;
+"@MMK_R_three" = -14;
+D = -86;
+E = -14;
+F = -14;
+H = -155;
I = 345;
-K = -71.875;
-L = 28.75;
-M = -288.9375;
-N = -186.875;
-P = -28.75;
-at = -373.75;
-at.case = -373.75;
+K = -71;
+L = 28;
+M = -288;
+N = -186;
+P = -28;
+at = -373;
+at.case = -373;
exclam = 345;
-nine = -14.375;
-numbersign = -43.125;
+nine = -14;
+numbersign = -43;
plus = -69;
-question = 152.375;
-seven = 71.875;
+question = 152;
+seven = 71;
};
eturn = {
"@MMK_R_T" = -161;
@@ -433738,11 +433738,11 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
feng = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
five = {
"@MMK_R_comma" = -69;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_registered" = -11;
};
florin = {
"@MMK_R_idotless" = 69;
@@ -433756,8 +433756,8 @@ four.ss01 = {
"@MMK_R_comma" = -69;
};
gamma1 = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
germandbls = {
"@MMK_R_quotedblleft" = -138;
@@ -433766,53 +433766,53 @@ ghook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
greater = {
"@MMK_R_Elcyrillic" = -69;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -149.5;
-"@MMK_R_W" = -149.5;
+"@MMK_R_V" = -149;
+"@MMK_R_W" = -149;
"@MMK_R_X" = -115;
"@MMK_R_Y" = -184;
-"@MMK_R_Z" = -126.5;
-"@MMK_R_quotedblleft" = -195.5;
+"@MMK_R_Z" = -126;
+"@MMK_R_quotedblleft" = -195;
Psi = -184;
-afii10024 = -103.5;
-afii10044 = -149.5;
-seven = -149.5;
-tenge = -149.5;
+afii10024 = -103;
+afii10044 = -149;
+seven = -149;
+tenge = -149;
};
henghook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hhook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
iacute = {
-idblgrave = 103.5;
+idblgrave = 103;
};
ibreve = {
-"@MMK_R_idotless" = 80.5;
-idblgrave = 103.5;
-rdblgrave.1 = 80.5;
+"@MMK_R_idotless" = 80;
+idblgrave = 103;
+rdblgrave.1 = 80;
};
icaron = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
idblgrave = 115;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
icircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-itilde = 80.5;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+itilde = 80;
};
idblgrave = {
"@MMK_R_idieresis" = 69;
@@ -433823,88 +433823,88 @@ idblgrave = 69;
iinvertedbreve = 69;
};
idieresisacute = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+iinvertedbreve = 80;
};
idotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
ihookabove = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-idblgrave = 103.5;
+idblgrave = 103;
rdblgrave.1 = 69;
};
iinvertedbreve = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
-hbar = 80.5;
+hbar = 80;
idblgrave = 92;
-idieresisacute = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
-itilde = 80.5;
+idieresisacute = 80;
+iinvertedbreve = 80;
+imacron = 80;
+itilde = 80;
rdblgrave.1 = 69;
};
ij = {
idblgrave = 69;
};
imacron = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 103.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 103;
+iinvertedbreve = 80;
imacron = 92;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
infinity = {
"@MMK_R_Y" = -69;
};
itilde = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
idblgrave = 115;
};
itildebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
jcircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-itilde = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+itilde = 80;
};
l.ss02 = {
"@MMK_R_A" = 46;
-"@MMK_R_B" = 28.75;
+"@MMK_R_B" = 28;
};
lacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lambda = {
-"@MMK_R_deltagreek" = -80.5;
+"@MMK_R_deltagreek" = -80;
"@MMK_R_epsilongreek" = -69;
"@MMK_R_gammagreek" = -115;
"@MMK_R_hyphen" = -69;
-"@MMK_R_omegagreek" = -80.5;
+"@MMK_R_omegagreek" = -80;
"@MMK_R_one" = -115;
"@MMK_R_psigreek" = -69;
pi = -138;
-tau = -195.5;
+tau = -195;
};
lbar = {
-"@MMK_R_Dcroat" = 80.5;
-Dcroat = 80.5;
-Istroke = 80.5;
-Lbar = 80.5;
+"@MMK_R_Dcroat" = 80;
+Dcroat = 80;
+Istroke = 80;
+Lbar = 80;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
@@ -433912,18 +433912,18 @@ lcircumflexbelow = {
"@MMK_R_B" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
-itildebelow = 80.5;
-lcircumflexbelow = 80.5;
-llinebelow = 80.5;
-rlinebelow.1 = 80.5;
+itildebelow = 80;
+lcircumflexbelow = 80;
+llinebelow = 80;
+rlinebelow.1 = 80;
};
lcommaaccent = {
idblgrave = 69;
};
lcurl = {
-"@MMK_R_jdotless" = 201.25;
+"@MMK_R_jdotless" = 201;
};
ldot = {
"@MMK_R_Dcroat" = 69;
@@ -433936,28 +433936,28 @@ ldotbelow = {
idblgrave = 69;
};
ldotbelowmacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lj = {
idblgrave = 69;
};
llinebelow = {
-"@MMK_R_B" = 80.5;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_B" = 80;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_parenright" = 69;
Iogonek = 69;
florin = 69;
idblgrave = 69;
itildebelow = 92;
-jcircumflex = 80.5;
-lcircumflexbelow = 80.5;
+jcircumflex = 80;
+lcircumflexbelow = 80;
llinebelow = 92;
rlinebelow.1 = 92;
underscore = 69;
};
logicalnot = {
-afii10044 = -103.5;
+afii10044 = -103;
};
lslash = {
"@MMK_R_Dcroat" = 69;
@@ -433968,12 +433968,12 @@ idblgrave = 69;
lbar = 69;
};
micro = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -433983,84 +433983,84 @@ mturn = {
};
multiply = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_Y" = -92;
afii10024 = -92;
-afii10044 = -149.5;
+afii10044 = -149;
afii10049 = -92;
tenge = -69;
};
nine = {
-enclosingcirclecomb = -14.375;
+enclosingcirclecomb = -14;
};
nj = {
idblgrave = 69;
};
nlfthook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ntilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
numbersign = {
-enclosingcirclecomb = -43.125;
+enclosingcirclecomb = -43;
};
ocircumflexacute = {
"@MMK_R_B" = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
ocircumflexhookabove = {
idblgrave = 92;
};
odieresis = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ohorntilde = {
idblgrave = 69;
};
onefraction = {
-seven.dnomf = 71.875;
+seven.dnomf = 71;
};
otilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
parenleft = {
-idblgrave = 195.5;
+idblgrave = 195;
};
percent = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -138;
};
periodcentered = {
"@MMK_R_A" = -69;
"@MMK_R_J" = -92;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_X" = -92;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_Y" = -103;
};
pi = {
"@MMK_R_deltagreek" = -69;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = 69;
};
plus = {
enclosingcirclecomb = -69;
};
question = {
-"@MMK_R_A" = -126.5;
-"@MMK_R_Alphagreek" = -126.5;
+"@MMK_R_A" = -126;
+"@MMK_R_Alphagreek" = -126;
};
questiondown = {
"@MMK_R_gammagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -69;
Psi = -184;
Tbar = -138;
};
r = {
-"@MMK_R_v" = 34.5;
-"@MMK_R_x" = 34.5;
+"@MMK_R_v" = 34;
+"@MMK_R_x" = 34;
};
rcaron.1 = {
idblgrave = 92;
@@ -434070,14 +434070,14 @@ rdotbelowmacron.1 = {
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
rinvertedbreve.1 = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
sacutedotaccent = {
idblgrave = 69;
@@ -434089,68 +434089,68 @@ schwa = {
"@MMK_R_T" = -161;
};
seven = {
-"@MMK_R_A" = -218.5;
-"@MMK_R_Alphagreek" = -218.5;
-"@MMK_R_J" = -195.5;
+"@MMK_R_A" = -218;
+"@MMK_R_Alphagreek" = -218;
+"@MMK_R_J" = -195;
"@MMK_R_a" = -92;
-"@MMK_R_c" = -103.5;
+"@MMK_R_c" = -103;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -253;
-"@MMK_R_deltagreek" = -103.5;
-"@MMK_R_epsilongreek" = -103.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_deltagreek" = -103;
+"@MMK_R_epsilongreek" = -103;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_idieresis" = 184;
-"@MMK_R_iotadieresisgreek" = -103.5;
-"@MMK_R_omegagreek" = -103.5;
-"@MMK_R_quotedblbase" = -287.5;
-"@MMK_R_s" = -80.5;
-"@MMK_R_six" = -31.625;
+"@MMK_R_iotadieresisgreek" = -103;
+"@MMK_R_omegagreek" = -103;
+"@MMK_R_quotedblbase" = -287;
+"@MMK_R_s" = -80;
+"@MMK_R_six" = -31;
"@MMK_R_six.1" = -69;
"@MMK_R_zero.subs" = -184;
ampersand = -92;
-eight = -28.75;
-enclosingcirclecomb = 71.875;
-five = -20.125;
-four = -117.875;
-four.ss01 = -126.5;
+eight = -28;
+enclosingcirclecomb = 71;
+five = -20;
+four = -117;
+four.ss01 = -126;
less = -184;
-nine = -20.125;
+nine = -20;
numbersign = -115;
-rho = -103.5;
-seven = 40.25;
-theta = -103.5;
+rho = -103;
+seven = 40;
+theta = -103;
underscore = -322;
-zeta = -103.5;
+zeta = -103;
};
seven.dnomf = {
-"@MMK_R_six.dnomf" = -18.6875;
-eight.dnomf = -17.25;
-five.dnomf = -12.21875;
-four.dnomf = -70.4375;
-nine.dnomf = -12.21875;
-seven.dnomf = 24.4375;
+"@MMK_R_six.dnomf" = -18;
+eight.dnomf = -17;
+five.dnomf = -12;
+four.dnomf = -70;
+nine.dnomf = -12;
+seven.dnomf = 24;
};
seven.frac = {
-four.frac = -100.625;
-fraction = -158.125;
+four.frac = -100;
+fraction = -158;
};
seven.numr = {
-four.numr = -100.625;
+four.numr = -100;
};
seven.sups = {
-"@MMK_R_six.sups" = -20.84375;
-eight.sups = -19.40625;
-five.sups = -13.65625;
-four.sups = -78.34375;
-nine.sups = -13.65625;
-seven.sups = 26.59375;
+"@MMK_R_six.sups" = -20;
+eight.sups = -19;
+five.sups = -13;
+four.sups = -78;
+nine.sups = -13;
+seven.sups = 26;
};
sigma = {
-"@MMK_R_Alphagreek" = -80.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_Alphagreek" = -80;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = -69;
lambda = -138;
logicalnot = -69;
@@ -434162,13 +434162,13 @@ six = {
underscore = -92;
};
slash = {
-"@MMK_R_J" = -126.5;
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_J" = -126;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
tau = {
-"@MMK_R_deltagreek" = -80.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_deltagreek" = -80;
+"@MMK_R_quotedblleft" = -80;
};
tccurl = {
"@MMK_R_T" = -161;
@@ -434181,22 +434181,22 @@ llinebelow = 69;
rlinebelow.1 = 69;
};
tecyrillic = {
-"@MMK_R_quotedblbase" = -149.5;
+"@MMK_R_quotedblbase" = -149;
};
theta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
thook = {
idblgrave = 92;
};
three.frac = {
-fraction = -28.75;
+fraction = -28;
};
tlinebelow = {
"@MMK_R_B" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
llinebelow = 69;
-rlinebelow.1 = 80.5;
+rlinebelow.1 = 80;
};
ubar = {
"@MMK_R_Dcroat" = 69;
@@ -434222,27 +434222,27 @@ uhorntilde = {
hbar = 69;
};
underscore = {
-"@MMK_R_C" = -80.5;
-"@MMK_R_Omicrongreek" = -80.5;
+"@MMK_R_C" = -80;
+"@MMK_R_Omicrongreek" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_U" = -80.5;
+"@MMK_R_U" = -80;
"@MMK_R_V" = -161;
"@MMK_R_asciicircum" = -138;
"@MMK_R_gammagreek" = -115;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 195.5;
+"@MMK_R_jdotless" = 195;
"@MMK_R_m" = 92;
"@MMK_R_nine.1" = -92;
-"@MMK_R_one" = -218.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_one" = -218;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_six" = -92;
"@MMK_R_three" = -92;
"@MMK_R_v" = -161;
-Psi = -195.5;
+Psi = -195;
afii10021 = 115;
-afii10041 = -218.5;
-afii10044 = -103.5;
-afii10047 = -80.5;
+afii10041 = -218;
+afii10044 = -103;
+afii10047 = -80;
decyrillic = 92;
eight = -92;
five = -92;
@@ -434250,36 +434250,36 @@ four = -115;
llinebelow = 69;
nine = -92;
rlinebelow.1 = 69;
-tenge = -103.5;
+tenge = -103;
};
uni01F6 = {
"@MMK_R_T" = -92;
};
uni023E = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
uni0240 = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
uni0247 = {
"@MMK_R_T" = -161;
};
uni024F = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
uni20BD = {
"@MMK_R_comma" = -138;
-slash = -80.5;
-underscore = -103.5;
+slash = -80;
+underscore = -103;
};
vturn = {
-"@MMK_R_T.sc" = -86.25;
+"@MMK_R_T.sc" = -86;
};
won = {
-idblgrave = 80.5;
+idblgrave = 80;
};
xi = {
Psi = -92;
@@ -434293,10 +434293,10 @@ ytilde = {
idblgrave = 69;
};
zbar = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
zcurl = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
};
zdotbelow = {
"@MMK_R_T" = -69;
@@ -434319,31 +434319,31 @@ Tdotaccent = -69;
Tdotbelow = -69;
};
zrthook = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
};
"C698F293-3EC0-4A5A-A3A0-0FDB1F5CF265" = {
"@MMK_L_A" = {
"@MMK_R_C" = -69;
-"@MMK_R_T" = -172.5;
+"@MMK_R_T" = -172;
"@MMK_R_V" = -138;
"@MMK_R_W" = -115;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_approxequal" = -103.5;
+"@MMK_R_Y" = -149;
+"@MMK_R_approxequal" = -103;
"@MMK_R_asciicircum" = -161;
"@MMK_R_c" = -64;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_eight.sups" = -184;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_idieresis" = 92;
-"@MMK_R_idotless" = 11.5;
-"@MMK_R_nine.1" = -20.125;
+"@MMK_R_idotless" = 11;
+"@MMK_R_nine.1" = -20;
"@MMK_R_one" = -69;
"@MMK_R_quotedbl" = -161;
-"@MMK_R_quotedblleft" = -264.5;
+"@MMK_R_quotedblleft" = -264;
"@MMK_R_quotedblright" = -207;
-"@MMK_R_registered" = -143.75;
+"@MMK_R_registered" = -143;
"@MMK_R_t" = -69;
"@MMK_R_v" = -138;
"@MMK_R_w" = -138;
@@ -434351,13 +434351,13 @@ Tbar = -115;
asterisk.case = -69;
llinebelow = 69;
periodcentered = -69;
-question = -126.5;
+question = -126;
rlinebelow.1 = 69;
};
"@MMK_L_Alphagreek" = {
"@MMK_R_Omicrongreek" = -69;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_deltagreek" = -69;
"@MMK_R_eight.sups" = -184;
"@MMK_R_gammagreek" = -138;
@@ -434365,43 +434365,43 @@ rlinebelow.1 = 69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_omegagreek" = -69;
"@MMK_R_one" = -69;
-"@MMK_R_quotedbl" = -195.5;
+"@MMK_R_quotedbl" = -195;
"@MMK_R_quotedblleft" = -276;
-"@MMK_R_quotedblright" = -195.5;
-Psi = -126.5;
+"@MMK_R_quotedblright" = -195;
+Psi = -126;
asterisk.case = -69;
-question = -126.5;
-tau = -103.5;
-theta = -80.5;
-zeta = -80.5;
+question = -126;
+tau = -103;
+theta = -80;
+zeta = -80;
};
"@MMK_L_B" = {
"@MMK_R_idieresis" = 69;
};
"@MMK_L_C" = {
-"@MMK_R_X" = -11.5;
+"@MMK_R_X" = -11;
"@MMK_R_idieresis" = 69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_D" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -60.375;
+"@MMK_R_T" = -60;
"@MMK_R_V" = -69;
"@MMK_R_X" = -23;
"@MMK_R_Y" = -69;
"@MMK_R_comma" = -92;
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
"@MMK_R_quotedblleft" = -69;
-"@MMK_R_registered" = -11.5;
-slash = -80.5;
-underscore = -80.5;
+"@MMK_R_registered" = -11;
+slash = -80;
+underscore = -80;
};
"@MMK_L_Decyrillic" = {
afii10021 = 69;
-underscore = 126.5;
+underscore = 126;
};
"@MMK_L_E" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
idblgrave = 69;
};
"@MMK_L_Ecyrillic" = {
@@ -434410,21 +434410,21 @@ idblgrave = 69;
"@MMK_L_Ereversedcyrillic" = {
"@MMK_R_comma" = -92;
"@MMK_R_quotedblbase" = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_F" = {
"@MMK_R_A" = -184;
"@MMK_R_C" = 0;
"@MMK_R_J" = -138;
-"@MMK_R_c" = -80.5;
-"@MMK_R_comma" = -80.5;
-"@MMK_R_m" = -11.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_c" = -80;
+"@MMK_R_comma" = -80;
+"@MMK_R_m" = -11;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_u" = -69;
"@MMK_R_v" = -69;
"@MMK_R_z" = -69;
"@MMK_R_zero.subs" = -115;
-ellipsis = -172.5;
+ellipsis = -172;
idblgrave = 69;
period = -69;
underscore = -69;
@@ -434433,7 +434433,7 @@ underscore = -69;
"@MMK_R_A" = -46;
"@MMK_R_T" = 69;
"@MMK_R_V" = -46;
-"@MMK_R_X" = -11.5;
+"@MMK_R_X" = -11;
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
@@ -434444,11 +434444,11 @@ rdblgrave.1 = 69;
};
"@MMK_L_H" = {
"@MMK_R_B" = 0;
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
"@MMK_R_m" = 0;
Idieresis = 161;
Idieresisacute = 92;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
iogonek = 69;
lcircumflexbelow = 69;
@@ -434460,64 +434460,64 @@ underscore = 69;
"@MMK_R_m.sups" = 0;
};
"@MMK_L_Idieresis" = {
-"@MMK_R_parenright.case" = 57.5;
+"@MMK_R_parenright.case" = 57;
};
"@MMK_L_J" = {
"@MMK_R_comma" = -69;
"@MMK_R_quotedblbase" = -161;
idblgrave = 69;
slash = -115;
-underscore = -103.5;
+underscore = -103;
};
"@MMK_L_K" = {
"@MMK_R_C" = -69;
"@MMK_R_approxequal" = -69;
-"@MMK_R_c" = -80.5;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_c" = -80;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+"@MMK_R_idieresis" = 172;
"@MMK_R_idotless" = 69;
-"@MMK_R_registered" = -30.1875;
+"@MMK_R_registered" = -30;
"@MMK_R_u" = -69;
-"@MMK_R_v" = -80.5;
-"@MMK_R_w" = -126.5;
+"@MMK_R_v" = -80;
+"@MMK_R_w" = -126;
asterisk.case = -69;
-idblgrave = 80.5;
+idblgrave = 80;
idieresisacute = 69;
infinity = -69;
less = -138;
-logicalnot = -103.5;
+logicalnot = -103;
periodcentered = -92;
};
"@MMK_L_L" = {
"@MMK_R_A" = 92;
-"@MMK_R_C" = -57.5;
-"@MMK_R_T" = -195.5;
+"@MMK_R_C" = -57;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -138;
"@MMK_R_Y" = -69;
-"@MMK_R_asciicircum" = -264.5;
-"@MMK_R_dagger" = -195.5;
-"@MMK_R_eight.sups" = -310.5;
-"@MMK_R_guillemetleft" = -126.5;
-"@MMK_R_hyphen" = -172.5;
+"@MMK_R_asciicircum" = -264;
+"@MMK_R_dagger" = -195;
+"@MMK_R_eight.sups" = -310;
+"@MMK_R_guillemetleft" = -126;
+"@MMK_R_hyphen" = -172;
"@MMK_R_one" = -92;
"@MMK_R_quotedbl" = -184;
-"@MMK_R_quotedblleft" = -172.5;
-"@MMK_R_quotedblright" = -80.5;
-"@MMK_R_registered" = -163.875;
+"@MMK_R_quotedblleft" = -172;
+"@MMK_R_quotedblright" = -80;
+"@MMK_R_registered" = -163;
"@MMK_R_t" = -46;
"@MMK_R_v" = -138;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
-asciitilde = -80.5;
-asterisk = -80.5;
+asciitilde = -80;
+asterisk = -80;
asterisk.case = -69;
degree = -92;
-hyphen = -103.5;
-logicalnot = -264.5;
-periodcentered = -126.5;
+hyphen = -103;
+logicalnot = -264;
+periodcentered = -126;
quotedblreversed = -92;
quotereversed = -92;
tripleprime = -138;
@@ -434526,25 +434526,25 @@ tripleprime = -138;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_comma" = -92;
"@MMK_R_quotedblleft" = -69;
-slash = -80.5;
-underscore = -80.5;
+slash = -80;
+underscore = -80;
};
"@MMK_L_P" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_J" = -195.5;
-"@MMK_R_c" = -11.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_A" = -149;
+"@MMK_R_J" = -195;
+"@MMK_R_c" = -11;
+"@MMK_R_comma" = -80;
"@MMK_R_hyphen" = -92;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_zero.subs" = -161;
ampersand = -69;
-ellipsis = -195.5;
+ellipsis = -195;
period = -69;
};
"@MMK_L_R" = {
-"@MMK_R_V" = -34.5;
+"@MMK_R_V" = -34;
"@MMK_R_Y" = -80;
-"@MMK_R_c" = -11.5;
+"@MMK_R_c" = -11;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_S" = {
@@ -434552,233 +434552,233 @@ period = -69;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_T" = {
-"@MMK_R_A" = -172.5;
-"@MMK_R_C" = -60.375;
+"@MMK_R_A" = -172;
+"@MMK_R_C" = -60;
"@MMK_R_J" = -184;
-"@MMK_R_T.sc" = -126.5;
-"@MMK_R_a" = -149.5;
+"@MMK_R_T.sc" = -126;
+"@MMK_R_a" = -149;
"@MMK_R_c" = -161;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_idblgrave" = 258.75;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_idblgrave" = 258;
"@MMK_R_idieresis" = 184;
"@MMK_R_m" = -115;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_s" = -149.5;
-"@MMK_R_u" = -149.5;
-"@MMK_R_v" = -126.5;
-"@MMK_R_w" = -126.5;
-"@MMK_R_x" = -126.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_s" = -149;
+"@MMK_R_u" = -149;
+"@MMK_R_v" = -126;
+"@MMK_R_w" = -126;
+"@MMK_R_x" = -126;
"@MMK_R_z" = -92;
"@MMK_R_zero.subs" = -253;
-adieresis = -80.5;
+adieresis = -80;
ampersand = -69;
asterisk.case = -69;
-atilde = -80.5;
-colon.case = -80.5;
-edieresis = -103.5;
-ellipsis = -172.5;
+atilde = -80;
+colon.case = -80;
+edieresis = -103;
+ellipsis = -172;
four = -138;
-hyphen = -149.5;
+hyphen = -149;
less = -161;
-odieresis = -103.5;
-otilde = -103.5;
+odieresis = -103;
+otilde = -103;
periodcentered = -161;
slash = -161;
-udieresis = -103.5;
+udieresis = -103;
underscore = -115;
-uni0240 = -80.5;
-utilde = -80.5;
-wdieresis = -103.5;
+uni0240 = -80;
+utilde = -80;
+wdieresis = -103;
ydieresis = -69;
-zbar = -80.5;
-zcurl = -80.5;
+zbar = -80;
+zcurl = -80;
zdotbelow = -69;
zlinebelow = -69;
-zrthook = -80.5;
+zrthook = -80;
};
"@MMK_L_T.sc" = {
-"@MMK_R_T" = -126.5;
-"@MMK_R_a" = -57.5;
-"@MMK_R_c" = -57.5;
+"@MMK_R_T" = -126;
+"@MMK_R_a" = -57;
+"@MMK_R_c" = -57;
"@MMK_R_comma" = -184;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -80;
integral = -115;
logicalnot = -69;
-underscore = -103.5;
-vturn = -86.25;
+underscore = -103;
+vturn = -86;
};
"@MMK_L_V" = {
-"@MMK_R_A" = -126.5;
+"@MMK_R_A" = -126;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -103.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -103;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -103;
+"@MMK_R_idieresis" = 172;
"@MMK_R_quotedblbase" = -230;
"@MMK_R_s" = -92;
-"@MMK_R_zero.subs" = -195.5;
-adieresis = -80.5;
-ampersand = -103.5;
+"@MMK_R_zero.subs" = -195;
+adieresis = -80;
+ampersand = -103;
at = -69;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
-logicalnot = -126.5;
-multiply = -80.5;
+idblgrave = 80;
+less = -149;
+logicalnot = -126;
+multiply = -80;
otilde = -92;
-periodcentered = -80.5;
-slash = -149.5;
+periodcentered = -80;
+slash = -149;
underscore = -161;
};
"@MMK_L_W" = {
"@MMK_R_A" = -115;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
+"@MMK_R_J" = -126;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
"@MMK_R_c" = -128;
-"@MMK_R_colon" = -103.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_colon" = -103;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
"@MMK_R_m" = -69;
-"@MMK_R_quotedblbase" = -218.5;
+"@MMK_R_quotedblbase" = -218;
"@MMK_R_s" = -69;
"@MMK_R_zero.subs" = -184;
-ampersand = -103.5;
+ampersand = -103;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
+idblgrave = 80;
+less = -149;
periodcentered = -69;
};
"@MMK_L_X" = {
"@MMK_R_C" = -23;
"@MMK_R_S" = -48;
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_c" = -57.5;
-"@MMK_R_guillemetleft" = -80.5;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_c" = -57;
+"@MMK_R_guillemetleft" = -80;
"@MMK_R_hyphen" = -138;
-"@MMK_R_registered" = -14.375;
+"@MMK_R_registered" = -14;
asterisk.case = -92;
-idblgrave = 80.5;
+idblgrave = 80;
less = -115;
periodcentered = -92;
};
"@MMK_L_Y" = {
-"@MMK_R_A" = -149.5;
+"@MMK_R_A" = -149;
"@MMK_R_C" = -69;
"@MMK_R_J" = -69;
"@MMK_R_T" = 92;
-"@MMK_R_a" = -143.75;
-"@MMK_R_approxequal" = -195.5;
-"@MMK_R_c" = -155.25;
-"@MMK_R_colon" = -126.5;
+"@MMK_R_a" = -143;
+"@MMK_R_approxequal" = -195;
+"@MMK_R_c" = -155;
+"@MMK_R_colon" = -126;
"@MMK_R_comma" = -69;
"@MMK_R_guillemetleft" = -184;
-"@MMK_R_guillemetright" = -126.5;
+"@MMK_R_guillemetright" = -126;
"@MMK_R_hyphen" = -161;
"@MMK_R_idotless" = 0;
-"@MMK_R_m" = -80.5;
-"@MMK_R_quotedblbase" = -218.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_m" = -80;
+"@MMK_R_quotedblbase" = -218;
+"@MMK_R_registered" = -17;
"@MMK_R_s" = -138;
-"@MMK_R_u" = -80.5;
+"@MMK_R_u" = -80;
"@MMK_R_zero.subs" = -230;
alpha = -115;
-ampersand = -126.5;
-asterisk.case = -80.5;
+ampersand = -126;
+asterisk.case = -80;
ccurl = -115;
chook = -115;
drthook = -115;
dyogh = -115;
dz = -115;
dzcurl = -115;
-ellipsis = -195.5;
+ellipsis = -195;
eturn = -115;
four = -138;
-iacute = -57.5;
-idblgrave = 80.5;
+iacute = -57;
+idblgrave = 80;
infinity = -69;
less = -207;
-logicalnot = -103.5;
+logicalnot = -103;
multiply = -92;
omacron = -115;
-periodcentered = -103.5;
+periodcentered = -103;
qrthook = -115;
-questiongreek = -126.5;
+questiongreek = -126;
schwa = -115;
uni0221 = -115;
uni0247 = -115;
-uni0248 = -241.5;
+uni0248 = -241;
};
"@MMK_L_Z" = {
"@MMK_R_C" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_idieresis" = 172;
idblgrave = 69;
-less = -126.5;
+less = -126;
periodcentered = -69;
};
"@MMK_L_a" = {
"@MMK_R_T" = -92;
-"@MMK_R_T.sc" = -86.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_one" = -80.5;
+"@MMK_R_T.sc" = -86;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -149;
+"@MMK_R_one" = -80;
"@MMK_R_quotedblleft" = -92;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_registered" = -17;
"@MMK_R_v" = -40;
Gamma1 = -69;
-Trthook = -149.5;
-Yhook = -103.5;
-uni023E = -149.5;
+Trthook = -149;
+Yhook = -103;
+uni023E = -149;
};
"@MMK_L_a.sups" = {
-"@MMK_R_v.sups" = -26.59375;
+"@MMK_R_v.sups" = -26;
};
"@MMK_L_alphagreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
};
"@MMK_L_approxequal" = {
-"@MMK_R_A" = -103.5;
+"@MMK_R_A" = -103;
"@MMK_R_V" = -138;
-"@MMK_R_W" = -126.5;
-"@MMK_R_X" = -103.5;
-"@MMK_R_Y" = -195.5;
+"@MMK_R_W" = -126;
+"@MMK_R_X" = -103;
+"@MMK_R_Y" = -195;
"@MMK_R_quotedblleft" = -115;
-"@MMK_R_v" = -80.5;
+"@MMK_R_v" = -80;
"@MMK_R_x" = -69;
afii10044 = -92;
-tenge = -80.5;
+tenge = -80;
};
"@MMK_L_asciicircum" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Dcroat" = 69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_J" = -195.5;
+"@MMK_R_J" = -195;
"@MMK_R_comma" = -276;
ampersand = -69;
four = -92;
@@ -434786,83 +434786,83 @@ underscore = -138;
};
"@MMK_L_b" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -80.5;
-"@MMK_R_T.sc" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -57.5;
-"@MMK_R_Y" = -172.5;
+"@MMK_R_T" = -80;
+"@MMK_R_T.sc" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -57;
+"@MMK_R_Y" = -172;
"@MMK_R_c" = 16;
"@MMK_R_dagger" = -69;
"@MMK_R_parenright" = -23;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_registered" = -23;
"@MMK_R_t" = -32;
"@MMK_R_v" = -40;
"@MMK_R_w" = -32;
"@MMK_R_x" = -46;
Trthook = -161;
-Yhook = -103.5;
+Yhook = -103;
idblgrave = 69;
jcrosstail = -92;
uni023E = -161;
};
"@MMK_L_b.sups" = {
-"@MMK_R_parenright.sups" = -15.09375;
-"@MMK_R_w.sups" = -25.15625;
-"@MMK_R_x.sups" = -30.90625;
+"@MMK_R_parenright.sups" = -15;
+"@MMK_R_w.sups" = -25;
+"@MMK_R_x.sups" = -30;
};
"@MMK_L_becyrillic" = {
hardsigncyrillic = -69;
};
"@MMK_L_bsmcyrillic" = {
-"@MMK_R_T" = -201.25;
+"@MMK_R_T" = -201;
"@MMK_R_T.sc" = -115;
-"@MMK_R_V" = -201.25;
-"@MMK_R_X" = -57.5;
+"@MMK_R_V" = -201;
+"@MMK_R_X" = -57;
"@MMK_R_Y" = -345;
"@MMK_R_dagger" = -115;
-"@MMK_R_parenright" = -57.5;
-"@MMK_R_quotedblleft" = -143.75;
-"@MMK_R_v" = -57.5;
-"@MMK_R_w" = -57.5;
+"@MMK_R_parenright" = -57;
+"@MMK_R_quotedblleft" = -143;
+"@MMK_R_v" = -57;
+"@MMK_R_w" = -57;
"@MMK_R_x" = -46;
};
"@MMK_L_c" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_T.sc" = -23;
-"@MMK_R_Y" = -126.5;
-"@MMK_R_registered" = -11.5;
-"@MMK_R_x" = -11.5;
+"@MMK_R_Y" = -126;
+"@MMK_R_registered" = -11;
+"@MMK_R_x" = -11;
idblgrave = 69;
};
"@MMK_L_c.sups" = {
-"@MMK_R_x.sups" = -7.90625;
+"@MMK_R_x.sups" = -7;
};
"@MMK_L_colon" = {
"@MMK_R_T" = -69;
-"@MMK_R_V" = -126.5;
+"@MMK_R_V" = -126;
"@MMK_R_quotedblleft" = -92;
-Psi = -126.5;
+Psi = -126;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-afii10044 = -103.5;
-uni023E = -80.5;
+Trthook = -80;
+afii10044 = -103;
+uni023E = -80;
};
"@MMK_L_comma" = {
"@MMK_R_T" = -69;
"@MMK_R_T.sc" = -184;
"@MMK_R_Y" = -69;
-"@MMK_R_nine.1" = -103.5;
-"@MMK_R_one" = -175.375;
-"@MMK_R_quotedbl" = -166.75;
+"@MMK_R_nine.1" = -103;
+"@MMK_R_one" = -175;
+"@MMK_R_quotedbl" = -166;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_six" = -51.75;
-"@MMK_R_three" = -54.625;
+"@MMK_R_six" = -51;
+"@MMK_R_three" = -54;
Tbar = -69;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
@@ -434875,35 +434875,35 @@ Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
eight = -46;
-five = -28.75;
+five = -28;
grave = -276;
-nine = -14.375;
-question = -181.125;
+nine = -14;
+question = -181;
quotedblreversed = -276;
quotereversed = -276;
-seven = -28.75;
+seven = -28;
};
"@MMK_L_dagger" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_Alphagreek" = -149.5;
-"@MMK_R_J" = -149.5;
+"@MMK_R_A" = -149;
+"@MMK_R_Alphagreek" = -149;
+"@MMK_R_J" = -149;
"@MMK_R_c" = -69;
-Hbar = 80.5;
-ampersand = -80.5;
+Hbar = 80;
+ampersand = -80;
};
"@MMK_L_dcaron" = {
-"@MMK_R_T" = 80.5;
+"@MMK_R_T" = 80;
"@MMK_R_asciicircum" = 115;
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 138;
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_one" = 92;
"@MMK_R_quotedbl" = 69;
"@MMK_R_quotedblleft" = 69;
-"@MMK_R_registered" = 34.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_registered" = 34;
+"@MMK_R_zero.subs" = -80;
hbar = 69;
ibreve = 69;
icaron = 69;
@@ -434918,40 +434918,40 @@ seven = 92;
underscore = 92;
};
"@MMK_L_deltagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
tau = -69;
};
"@MMK_L_e" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_T.sc" = -40.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -172.5;
-"@MMK_R_registered" = -34.5;
-"@MMK_R_v" = -34.5;
-"@MMK_R_x" = -28.75;
-Gamma1 = -80.5;
+"@MMK_R_T" = -103;
+"@MMK_R_T.sc" = -40;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -172;
+"@MMK_R_registered" = -34;
+"@MMK_R_v" = -34;
+"@MMK_R_x" = -28;
+Gamma1 = -80;
Trthook = -161;
-Yhook = -80.5;
+Yhook = -80;
uni023E = -161;
};
"@MMK_L_e.sups" = {
-"@MMK_R_x.sups" = -19.40625;
+"@MMK_R_x.sups" = -19;
};
"@MMK_L_eight" = {
"@MMK_R_comma" = -46;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_quotedblbase" = -103;
};
"@MMK_L_eight.sups" = {
"@MMK_R_A" = -184;
"@MMK_R_Alphagreek" = -184;
"@MMK_R_J" = -230;
-"@MMK_R_comma" = -218.5;
+"@MMK_R_comma" = -218;
"@MMK_R_eight.sups" = 0;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_t" = 69;
Hbar = 92;
four = -115;
@@ -434964,153 +434964,153 @@ Psi = -92;
};
"@MMK_L_f" = {
"@MMK_R_A" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_Y" = 20.125;
-"@MMK_R_a" = -31.625;
+"@MMK_R_J" = -126;
+"@MMK_R_Y" = 20;
+"@MMK_R_a" = -31;
"@MMK_R_bullet" = -46;
"@MMK_R_c" = -48;
"@MMK_R_comma" = -115;
"@MMK_R_eight.sups" = 46;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
"@MMK_R_idieresis" = 207;
"@MMK_R_quotedblbase" = -184;
"@MMK_R_s" = -46;
-"@MMK_R_slash" = -57.5;
-"@MMK_R_zero.subs" = -80.5;
-four = -126.5;
-hturnhook2 = 80.5;
+"@MMK_R_slash" = -57;
+"@MMK_R_zero.subs" = -80;
+four = -126;
+hturnhook2 = 80;
idblgrave = 92;
-underscore = -28.75;
+underscore = -28;
};
"@MMK_L_f.sups" = {
-"@MMK_R_a.sups" = -30.90625;
-"@MMK_R_c.sups" = -30.90625;
-"@MMK_R_s.sups" = -30.90625;
+"@MMK_R_a.sups" = -30;
+"@MMK_R_c.sups" = -30;
+"@MMK_R_s.sups" = -30;
};
"@MMK_L_four" = {
-"@MMK_R_one" = -20.125;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_one" = -20;
+"@MMK_R_registered" = -11;
};
"@MMK_L_four.dnomf" = {
-"@MMK_R_one.dnomf" = -12.21875;
+"@MMK_R_one.dnomf" = -12;
};
"@MMK_L_four.sups" = {
-"@MMK_R_one.sups" = -13.65625;
+"@MMK_R_one.sups" = -13;
};
"@MMK_L_fraction" = {
-"@MMK_R_four.dnomf" = -143.75;
+"@MMK_R_four.dnomf" = -143;
};
"@MMK_L_g" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
underscore = 69;
};
"@MMK_L_gammagreek" = {
"@MMK_R_Alphagreek" = -138;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = 69;
Sigma = -69;
-lambda = -80.5;
-less = -80.5;
+lambda = -80;
+less = -80;
logicalnot = -69;
slash = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_guillemetleft" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -103.5;
-"@MMK_R_Y" = -126.5;
-Psi = -126.5;
+"@MMK_R_T" = -103;
+"@MMK_R_Y" = -126;
+Psi = -126;
afii10044 = -138;
};
"@MMK_L_guillemetright" = {
"@MMK_R_A" = -69;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_T" = -264.5;
-"@MMK_R_V" = -126.5;
+"@MMK_R_T" = -264;
+"@MMK_R_V" = -126;
"@MMK_R_W" = -115;
-"@MMK_R_X" = -80.5;
+"@MMK_R_X" = -80;
"@MMK_R_Y" = -184;
"@MMK_R_Z" = -69;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_one" = -80.5;
-"@MMK_R_quotedblleft" = -172.5;
+"@MMK_R_one" = -80;
+"@MMK_R_quotedblleft" = -172;
"@MMK_R_three" = -92;
-"@MMK_R_two" = -103.5;
+"@MMK_R_two" = -103;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
"@MMK_R_x" = -69;
Psi = -184;
-afii10024 = -103.5;
+afii10024 = -103;
afii10044 = -138;
eight = -69;
-seven = -103.5;
+seven = -103;
};
"@MMK_L_hyphen" = {
-"@MMK_R_T" = -149.5;
-"@MMK_R_T.sc" = -57.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -126.5;
+"@MMK_R_T" = -149;
+"@MMK_R_T.sc" = -57;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -126;
"@MMK_R_Y" = -161;
-"@MMK_R_nine.1" = -34.5;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_nine.1" = -34;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_three" = -23;
"@MMK_R_two" = -69;
"@MMK_R_x" = -46;
Psi = -161;
Tcaron = -69;
Tcommaaccent = -69;
-afii10024 = -218.5;
-afii10025 = -103.5;
+afii10024 = -218;
+afii10025 = -103;
afii10044 = -138;
seven = -46;
};
"@MMK_L_idieresis" = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_T" = 184;
-"@MMK_R_V" = 172.5;
+"@MMK_R_V" = 172;
"@MMK_R_Z" = 184;
-"@MMK_R_f" = 80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_f" = 80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 184;
"@MMK_R_jdotless" = -115;
"@MMK_R_one" = 92;
-"@MMK_R_t" = 103.5;
+"@MMK_R_t" = 103;
Dhook = 69;
-Dzcaron_ = 149.5;
-Enhookcyrillic = 149.5;
-Nhook = 149.5;
-Rx = 149.5;
+Dzcaron_ = 149;
+Enhookcyrillic = 149;
+Nhook = 149;
+Rx = 149;
Thook = 69;
-afii10026 = 149.5;
-hbar = 80.5;
+afii10026 = 149;
+hbar = 80;
ibreve = 69;
icaron = 69;
icircumflex = 69;
-idblgrave = 103.5;
+idblgrave = 103;
igrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
+imacron = 80;
jcircumflex = 69;
jcrosstail = -115;
-numero = 149.5;
-rdblgrave.1 = 80.5;
+numero = 149;
+rdblgrave.1 = 80;
seven = 184;
-uni01F6 = 149.5;
-uni0246 = 149.5;
-uni0376 = 149.5;
-uni048A = 149.5;
+uni01F6 = 149;
+uni0246 = 149;
+uni0376 = 149;
+uni048A = 149;
};
"@MMK_L_idotless" = {
"@MMK_R_V" = 69;
"@MMK_R_W" = 69;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_m" = 0;
"@MMK_R_parenright" = 69;
Dhook = 69;
@@ -435121,21 +435121,21 @@ Vtilde = 69;
Wdotaccent = 69;
Wdotbelow = 69;
florin = 69;
-hbar = 80.5;
-ibreve = 80.5;
+hbar = 80;
+ibreve = 80;
idblgrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
-iogonek = 80.5;
+imacron = 80;
+iogonek = 80;
itilde = 69;
itildebelow = 92;
-jcircumflex = 80.5;
+jcircumflex = 80;
lcircumflexbelow = 69;
llinebelow = 92;
rdblgrave.1 = 69;
rlinebelow.1 = 92;
tlinebelow = 69;
-underscore = 80.5;
+underscore = 80;
won = 69;
yen = 69;
};
@@ -435144,13 +435144,13 @@ yen = 69;
"@MMK_R_parenright.sups" = 46;
};
"@MMK_L_iotadieresisgreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -435158,180 +435158,180 @@ underscore = -69;
"@MMK_L_k" = {
"@MMK_R_T" = -115;
"@MMK_R_c" = -46;
-"@MMK_R_guillemetleft" = -103.5;
+"@MMK_R_guillemetleft" = -103;
"@MMK_R_hyphen" = -92;
four = -92;
-less = -172.5;
+less = -172;
logicalnot = -138;
};
"@MMK_L_k.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_nine" = {
"@MMK_R_Y" = -69;
-"@MMK_R_comma" = -51.75;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_comma" = -51;
+"@MMK_R_quotedblbase" = -103;
"@MMK_R_quotedblleft" = -92;
Psi = -69;
-seven = -40.25;
+seven = -40;
underscore = -92;
};
"@MMK_L_nine.1" = {
-"@MMK_R_A" = -20.125;
-"@MMK_R_comma" = -201.25;
-seven = -80.5;
+"@MMK_R_A" = -20;
+"@MMK_R_comma" = -201;
+seven = -80;
};
"@MMK_L_nine.dnomf" = {
-seven.dnomf = -24.4375;
+seven.dnomf = -24;
};
"@MMK_L_nine.sups" = {
-seven.sups = -26.59375;
+seven.sups = -26;
};
"@MMK_L_ohorn" = {
"@MMK_R_comma" = -92;
};
"@MMK_L_omegagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
};
"@MMK_L_one" = {
-"@MMK_R_comma" = -86.25;
+"@MMK_R_comma" = -86;
"@MMK_R_quotedblbase" = -92;
};
"@MMK_L_parenleft" = {
"@MMK_R_c" = -23;
-"@MMK_R_jdotless" = 57.5;
+"@MMK_R_jdotless" = 57;
idblgrave = 92;
llinebelow = 69;
rlinebelow.1 = 69;
};
"@MMK_L_parenleft.case" = {
-"@MMK_R_Idieresis" = 57.5;
+"@MMK_R_Idieresis" = 57;
};
"@MMK_L_parenleft.sups" = {
-"@MMK_R_c.sups" = -15.09375;
-"@MMK_R_jdotless.sups" = 38.09375;
+"@MMK_R_c.sups" = -15;
+"@MMK_R_jdotless.sups" = 38;
};
"@MMK_L_parenright" = {
"@MMK_R_quotedblleft" = -69;
};
"@MMK_L_psigreek" = {
"@MMK_R_Alphagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
-lambda = -80.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
+lambda = -80;
seven = -69;
};
"@MMK_L_quotedbl" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Elcyrillic" = -92;
-"@MMK_R_J" = -333.5;
-"@MMK_R_comma" = -166.75;
+"@MMK_R_J" = -333;
+"@MMK_R_comma" = -166;
ampersand = -69;
-four = -126.5;
+four = -126;
};
"@MMK_L_quotedblbase" = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -184;
-"@MMK_R_W" = -126.5;
-"@MMK_R_Y" = -218.5;
-"@MMK_R_eight.sups" = -195.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_W" = -126;
+"@MMK_R_Y" = -218;
+"@MMK_R_eight.sups" = -195;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_one" = -138;
"@MMK_R_quotedblleft" = -253;
-"@MMK_R_quotedblright" = -195.5;
-"@MMK_R_v" = -103.5;
+"@MMK_R_quotedblright" = -195;
+"@MMK_R_v" = -103;
Psi = -207;
-Tbar = -195.5;
-afii10021 = 103.5;
-afii10041 = -126.5;
-afii10044 = -103.5;
+Tbar = -195;
+afii10021 = 103;
+afii10041 = -126;
+afii10044 = -103;
checyrillic = -69;
-decyrillic = 126.5;
-hardsigncyrillic = -80.5;
-tecyrillic = -103.5;
+decyrillic = 126;
+hardsigncyrillic = -80;
+tecyrillic = -103;
};
"@MMK_L_quotedblleft" = {
-"@MMK_R_A" = -195.5;
-"@MMK_R_Alphagreek" = -195.5;
-"@MMK_R_Elcyrillic" = -126.5;
+"@MMK_R_A" = -195;
+"@MMK_R_Alphagreek" = -195;
+"@MMK_R_Elcyrillic" = -126;
"@MMK_R_J" = -299;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_elcyrillic" = -172.5;
+"@MMK_R_comma" = -172;
+"@MMK_R_elcyrillic" = -172;
"@MMK_R_quotedblbase" = -253;
-afii10021 = -103.5;
-ampersand = -126.5;
+afii10021 = -103;
+ampersand = -126;
decyrillic = -115;
-four = -126.5;
-questiondown = -126.5;
-slash = -195.5;
+four = -126;
+questiondown = -126;
+slash = -195;
};
"@MMK_L_quotedblright" = {
"@MMK_R_A" = -276;
-"@MMK_R_Alphagreek" = -264.5;
-"@MMK_R_Elcyrillic" = -103.5;
+"@MMK_R_Alphagreek" = -264;
+"@MMK_R_Elcyrillic" = -103;
"@MMK_R_J" = -253;
"@MMK_R_a" = -115;
"@MMK_R_approxequal" = -115;
-"@MMK_R_c" = -126.5;
+"@MMK_R_c" = -126;
"@MMK_R_colon" = -115;
"@MMK_R_comma" = -391;
-"@MMK_R_deltagreek" = -126.5;
-"@MMK_R_elcyrillic" = -126.5;
-"@MMK_R_epsilongreek" = -126.5;
-"@MMK_R_guillemetleft" = -172.5;
-"@MMK_R_hyphen" = -126.5;
-"@MMK_R_iotadieresisgreek" = -126.5;
-"@MMK_R_m" = -43.125;
+"@MMK_R_deltagreek" = -126;
+"@MMK_R_elcyrillic" = -126;
+"@MMK_R_epsilongreek" = -126;
+"@MMK_R_guillemetleft" = -172;
+"@MMK_R_hyphen" = -126;
+"@MMK_R_iotadieresisgreek" = -126;
+"@MMK_R_m" = -43;
"@MMK_R_nine.1" = -23;
-"@MMK_R_omegagreek" = -126.5;
-"@MMK_R_psigreek" = -80.5;
-"@MMK_R_quotedblbase" = -379.5;
-"@MMK_R_s" = -155.25;
+"@MMK_R_omegagreek" = -126;
+"@MMK_R_psigreek" = -80;
+"@MMK_R_quotedblbase" = -379;
+"@MMK_R_s" = -155;
"@MMK_R_six" = -92;
-"@MMK_R_t" = 28.75;
-"@MMK_R_u" = -80.5;
-"@MMK_R_v" = 28.75;
-afii10021 = -80.5;
+"@MMK_R_t" = 28;
+"@MMK_R_u" = -80;
+"@MMK_R_v" = 28;
+afii10021 = -80;
ampersand = -138;
asciitilde = -92;
at = -115;
decyrillic = -115;
-eight = -80.5;
-four = -195.5;
+eight = -80;
+four = -195;
iacyrillic = -69;
-less = -195.5;
+less = -195;
micro = -92;
numbersign = -253;
questiondown = -138;
-rho = -126.5;
-slash = -287.5;
+rho = -126;
+slash = -287;
theta = -138;
-underscore = -80.5;
+underscore = -80;
xi = -138;
-zeta = -126.5;
+zeta = -126;
};
"@MMK_L_r" = {
-"@MMK_R_A" = -80.5;
+"@MMK_R_A" = -80;
"@MMK_R_J" = -115;
"@MMK_R_T" = -115;
"@MMK_R_Z" = -69;
"@MMK_R_a.sups" = 69;
"@MMK_R_c" = -40;
-"@MMK_R_comma" = -126.5;
+"@MMK_R_comma" = -126;
"@MMK_R_eight.sups" = 92;
"@MMK_R_f" = 69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 34.5;
+"@MMK_R_quotedblright" = 34;
"@MMK_R_t" = 69;
-"@MMK_R_v" = 17.25;
-"@MMK_R_w" = 17.25;
-"@MMK_R_x" = 17.25;
-"@MMK_R_zero.subs" = -103.5;
-idblgrave = 80.5;
-less = -80.5;
+"@MMK_R_v" = 17;
+"@MMK_R_w" = 17;
+"@MMK_R_x" = 17;
+"@MMK_R_zero.subs" = -103;
+idblgrave = 80;
+less = -80;
logicalnot = -69;
rdblgrave.1 = 69;
slash = -69;
@@ -435342,183 +435342,183 @@ slash = -69;
"@MMK_R_t.sups" = 46;
};
"@MMK_L_registered" = {
-"@MMK_R_A" = -143.75;
-"@MMK_R_C" = -11.5;
-"@MMK_R_J" = -143.75;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -17.25;
+"@MMK_R_A" = -143;
+"@MMK_R_C" = -11;
+"@MMK_R_J" = -143;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -17;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -57.5;
-"@MMK_R_four" = -100.625;
+"@MMK_R_c" = -57;
+"@MMK_R_four" = -100;
"@MMK_R_s" = -23;
-"@MMK_R_six.1" = -34.5;
+"@MMK_R_six.1" = -34;
ampersand = -69;
};
"@MMK_L_rthook" = {
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
};
"@MMK_L_s" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_V" = -92;
"@MMK_R_W" = -69;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_quotedblbase" = -103.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_Y" = -149;
+"@MMK_R_quotedblbase" = -103;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_registered" = -17;
"@MMK_R_w" = -8;
idblgrave = 69;
};
"@MMK_L_seven" = {
-"@MMK_R_three" = -34.5;
-three.1 = 2.875;
+"@MMK_R_three" = -34;
+three.1 = 2;
};
"@MMK_L_seven.dnomf" = {
-"@MMK_R_three.dnomf" = -20.84375;
+"@MMK_R_three.dnomf" = -20;
};
"@MMK_L_seven.sups" = {
"@MMK_R_three.sups" = -23;
};
"@MMK_L_six.1" = {
-"@MMK_R_registered" = -34.5;
-seven = -80.5;
+"@MMK_R_registered" = -34;
+seven = -80;
underscore = -92;
};
"@MMK_L_t" = {
"@MMK_R_T" = -69;
-"@MMK_R_V" = -20.125;
-"@MMK_R_W" = -20.125;
-"@MMK_R_Y" = -31.625;
+"@MMK_R_V" = -20;
+"@MMK_R_W" = -20;
+"@MMK_R_Y" = -31;
"@MMK_R_bullet" = -23;
"@MMK_R_c" = -48;
-"@MMK_R_four" = -28.75;
-"@MMK_R_hyphen" = -40.25;
+"@MMK_R_four" = -28;
+"@MMK_R_hyphen" = -40;
"@MMK_R_jdotless" = 0;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 57.5;
-"@MMK_R_s" = -20.125;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 57;
+"@MMK_R_s" = -20;
"@MMK_R_zero.subs" = 69;
idblgrave = 92;
-less = -57.5;
+less = -57;
rdblgrave.1 = 69;
};
"@MMK_L_t.sups" = {
-"@MMK_R_B.sups" = 15.09375;
-"@MMK_R_c.sups" = -7.90625;
+"@MMK_R_B.sups" = 15;
+"@MMK_R_c.sups" = -7;
"@MMK_R_jdotless.sups" = 0;
-"@MMK_R_s.sups" = -13.65625;
+"@MMK_R_s.sups" = -13;
};
"@MMK_L_two" = {
-"@MMK_R_four" = -31.625;
+"@MMK_R_four" = -31;
};
"@MMK_L_two.dnomf" = {
-"@MMK_R_four.dnomf" = -18.6875;
+"@MMK_R_four.dnomf" = -18;
};
"@MMK_L_two.sups" = {
-"@MMK_R_four.sups" = -20.84375;
+"@MMK_R_four.sups" = -20;
};
"@MMK_L_u" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Y" = -115;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-Tcaron = -149.5;
-Trthook = -149.5;
-idblgrave = 80.5;
-uni023E = -149.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+Tcaron = -149;
+Trthook = -149;
+idblgrave = 80;
+uni023E = -149;
};
"@MMK_L_v" = {
"@MMK_R_A" = -138;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_T" = -69;
"@MMK_R_Y" = -69;
"@MMK_R_a" = -32;
-"@MMK_R_approxequal" = -80.5;
+"@MMK_R_approxequal" = -80;
"@MMK_R_c" = -40;
"@MMK_R_comma" = -69;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 71.875;
-"@MMK_R_zero.subs" = -103.5;
+"@MMK_R_quotedblright" = 71;
+"@MMK_R_zero.subs" = -103;
Dhook = 69;
-Tcaron = -126.5;
+Tcaron = -126;
Thook = 69;
-Trthook = -126.5;
-ellipsis = -149.5;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
+Trthook = -126;
+ellipsis = -149;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
imacron = 92;
less = -69;
-logicalnot = -80.5;
+logicalnot = -80;
slash = -115;
underscore = -161;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_v.sups" = {
-"@MMK_R_c.sups" = -26.59375;
+"@MMK_R_c.sups" = -26;
"@MMK_R_idotless.sups" = 46;
-"@MMK_R_jdotless.sups" = 53.90625;
+"@MMK_R_jdotless.sups" = 53;
};
"@MMK_L_vecyrillic" = {
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
};
"@MMK_L_w" = {
"@MMK_R_A" = -138;
"@MMK_R_J" = -115;
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Z" = -69;
"@MMK_R_a" = -16;
"@MMK_R_c" = -32;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_comma" = -149;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 86.25;
-Trthook = -126.5;
+"@MMK_R_quotedblright" = 86;
+Trthook = -126;
ampersand = -69;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_w.sups" = {
-"@MMK_R_c.sups" = -25.15625;
+"@MMK_R_c.sups" = -25;
};
"@MMK_L_x" = {
-"@MMK_R_T" = -126.5;
+"@MMK_R_T" = -126;
"@MMK_R_approxequal" = -69;
"@MMK_R_c" = -46;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_hyphen" = -46;
};
"@MMK_L_x.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_z" = {
"@MMK_R_T" = -69;
-"@MMK_R_c" = -31.625;
+"@MMK_R_c" = -31;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-uni023E = -80.5;
+Trthook = -80;
+uni023E = -80;
};
"@MMK_L_z.sups" = {
-"@MMK_R_c.sups" = -20.84375;
+"@MMK_R_c.sups" = -20;
};
"@MMK_L_zero.subs" = {
"@MMK_R_T" = -253;
-"@MMK_R_V" = -195.5;
+"@MMK_R_V" = -195;
"@MMK_R_W" = -184;
"@MMK_R_Y" = -230;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_jdotless" = 126.5;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_jdotless" = 126;
"@MMK_R_one" = -184;
-"@MMK_R_v" = -103.5;
+"@MMK_R_v" = -103;
Psi = -230;
-Tbar = -149.5;
-afii10041 = -80.5;
+Tbar = -149;
+afii10041 = -80;
afii10044 = -69;
};
DZ = {
@@ -435528,7 +435528,7 @@ Dtopbar = {
idblgrave = 69;
};
Dzcaron_ = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
Ecedillabreve = {
idblgrave = 69;
@@ -435576,28 +435576,28 @@ Etildebelow = {
idblgrave = 69;
};
Fdotaccent = {
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
Fhook = {
"@MMK_R_comma" = -92;
-period = -80.5;
+period = -80;
};
Gamma = {
"@MMK_R_Alphagreek" = -184;
-"@MMK_R_Omicrongreek" = -103.5;
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_deltagreek" = -120.75;
-"@MMK_R_epsilongreek" = -264.5;
+"@MMK_R_Omicrongreek" = -103;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_deltagreek" = -120;
+"@MMK_R_epsilongreek" = -264;
"@MMK_R_gammagreek" = -207;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_iotadieresisgreek" = -264.5;
-"@MMK_R_omegagreek" = -264.5;
-"@MMK_R_psigreek" = -264.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_iotadieresisgreek" = -264;
+"@MMK_R_omegagreek" = -264;
+"@MMK_R_psigreek" = -264;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -115;
Omega = -69;
@@ -435606,8 +435606,8 @@ lambda = -69;
less = -161;
micro = -207;
pi = -207;
-rho = -264.5;
-slash = -103.5;
+rho = -264;
+slash = -103;
tau = -207;
theta = -161;
underscore = -138;
@@ -435615,11 +435615,11 @@ xi = -115;
zeta = -161;
};
H = {
-enclosingcirclecomb = -100.625;
-enclosingsquarecomb = -100.625;
+enclosingcirclecomb = -100;
+enclosingsquarecomb = -100;
};
Hbar = {
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 92;
idblgrave = 69;
};
@@ -435630,24 +435630,24 @@ Hdotaccent = {
idblgrave = 69;
};
I = {
-enclosingcirclecomb = 373.75;
-enclosingsquarecomb = 373.75;
+enclosingcirclecomb = 373;
+enclosingsquarecomb = 373;
};
Icaron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Icircumflex = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idblgrave = {
"@MMK_R_B" = 69;
idblgrave = 69;
};
Idieresis = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idieresisacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idotbelow = {
idblgrave = 69;
@@ -435656,10 +435656,10 @@ Ihookabove = {
idblgrave = 69;
};
Iinvertedbreve = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Imacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Istroke = {
"@MMK_R_Dcroat" = 69;
@@ -435667,13 +435667,13 @@ Dcroat = 69;
Istroke = 69;
Lbar = 69;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
K = {
-enclosingcirclecomb = -28.75;
-enclosingsquarecomb = -28.75;
+enclosingcirclecomb = -28;
+enclosingsquarecomb = -28;
};
Kacute = {
idblgrave = 92;
@@ -435682,36 +435682,36 @@ Kcaron = {
idblgrave = 92;
};
Kdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Khook = {
idblgrave = 92;
};
Klinebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
L = {
-enclosingcirclecomb = 71.875;
-enclosingsquarecomb = 71.875;
+enclosingcirclecomb = 71;
+enclosingsquarecomb = 71;
};
Lacute = {
"@MMK_R_asciicircum" = -92;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
asciitilde = -92;
};
Lbar = {
"@MMK_R_asciicircum" = -69;
"@MMK_R_hyphen" = -69;
-degree = -80.5;
+degree = -80;
};
Lcaron = {
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asciitilde = -69;
};
Lcircumflexbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -435727,7 +435727,7 @@ Ytilde = -69;
Ldotbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -435736,7 +435736,7 @@ Ytilde = -69;
Ldotbelowmacron = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -435745,7 +435745,7 @@ Ytilde = -69;
Llinebelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -435761,8 +435761,8 @@ Yhookabove = -69;
Ytilde = -69;
};
M = {
-enclosingcirclecomb = -255.875;
-enclosingsquarecomb = -255.875;
+enclosingcirclecomb = -255;
+enclosingsquarecomb = -255;
};
Macute = {
idblgrave = 69;
@@ -435771,8 +435771,8 @@ Mdotaccent = {
idblgrave = 69;
};
N = {
-enclosingcirclecomb = -125.0625;
-enclosingsquarecomb = -125.0625;
+enclosingcirclecomb = -125;
+enclosingsquarecomb = -125;
};
Ndotaccent = {
idblgrave = 69;
@@ -435803,22 +435803,22 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
Pacute = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Pdotaccent = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Phook = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Psi = {
-"@MMK_R_Alphagreek" = -126.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
-"@MMK_R_guillemetleft" = -97.75;
-"@MMK_R_guillemetright" = -40.25;
+"@MMK_R_Alphagreek" = -126;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
+"@MMK_R_guillemetleft" = -97;
+"@MMK_R_guillemetright" = -40;
"@MMK_R_hyphen" = -161;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -230;
ampersand = -69;
@@ -435831,22 +435831,22 @@ underscore = -207;
xi = -69;
};
Sigma = {
-"@MMK_R_Omicrongreek" = -80.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_Omicrongreek" = -80;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asterisk.case = -69;
-less = -126.5;
+less = -126;
pi = -69;
tau = -138;
};
Tbar = {
"@MMK_R_A" = -115;
-"@MMK_R_J" = -241.5;
+"@MMK_R_J" = -241;
"@MMK_R_approxequal" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -149.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -149;
};
Tcaron = {
"@MMK_R_hyphen" = -69;
@@ -435876,11 +435876,11 @@ Tdotbelow = {
"@MMK_R_z" = -69;
};
Thorn = {
-"@MMK_R_A" = -80.5;
-"@MMK_R_J" = -80.5;
+"@MMK_R_A" = -80;
+"@MMK_R_J" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_V" = -103.5;
-"@MMK_R_Z" = -80.5;
+"@MMK_R_V" = -103;
+"@MMK_R_Z" = -80;
"@MMK_R_comma" = -207;
"@MMK_R_quotedblbase" = -253;
"@MMK_R_quotedblleft" = -115;
@@ -435892,9 +435892,9 @@ Tlinebelow = {
"@MMK_R_z" = -69;
};
Trthook = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
Udblgrave = {
idblgrave = 69;
@@ -435916,23 +435916,23 @@ idblgrave = 69;
};
Uhornacute = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorndotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorngrave = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhornhookabove = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorntilde = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uinvertedbreve = {
idblgrave = 69;
@@ -435945,7 +435945,7 @@ idblgrave = 69;
};
Vdotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Vtilde = {
"@MMK_R_comma" = -69;
@@ -435964,7 +435964,7 @@ Wdotaccent = {
idblgrave = 92;
};
Wdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Wgrave = {
idblgrave = 92;
@@ -435992,14 +435992,14 @@ idblgrave = 92;
Ydotbelow = {
"@MMK_R_J" = -69;
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Ygrave = {
idblgrave = 92;
};
Yhook = {
-"@MMK_R_J" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_J" = -80;
+"@MMK_R_comma" = -80;
idblgrave = 92;
};
Yhookabove = {
@@ -436022,7 +436022,7 @@ Zlinebelow = {
idblgrave = 69;
};
acircumflexacute = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_idotless" = 69;
acircumflexgrave = 69;
ecircumflexgrave = 69;
@@ -436038,46 +436038,46 @@ afii10018 = {
afii10044 = -115;
};
afii10024 = {
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-afii10038 = -103.5;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+afii10038 = -103;
afii10041 = -69;
-afii10044 = -80.5;
+afii10044 = -80;
asciitilde = -69;
checyrillic = -115;
-four = -80.5;
+four = -80;
hardsigncyrillic = -92;
hryvnia = -69;
-less = -103.5;
-logicalnot = -103.5;
+less = -103;
+logicalnot = -103;
multiply = -92;
-tecyrillic = -126.5;
+tecyrillic = -126;
zecyrillic = -69;
};
afii10038 = {
-"@MMK_R_quotedblbase" = -103.5;
-afii10024 = -103.5;
+"@MMK_R_quotedblbase" = -103;
+afii10024 = -103;
afii10044 = -69;
};
afii10051 = {
"@MMK_R_one" = -69;
};
amacron = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ampersand = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -126.5;
-"@MMK_R_W" = -80.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_dagger" = -80.5;
+"@MMK_R_V" = -126;
+"@MMK_R_W" = -80;
+"@MMK_R_Y" = -149;
+"@MMK_R_dagger" = -80;
"@MMK_R_eight.sups" = -92;
"@MMK_R_quotedbl" = -69;
"@MMK_R_quotedblleft" = -184;
"@MMK_R_registered" = -46;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
-Psi = -149.5;
+Psi = -149;
afii10044 = -115;
};
asciitilde = {
@@ -436089,32 +436089,32 @@ asterisk.case = {
"@MMK_R_T" = -69;
};
at = {
-enclosingcirclecomb = -301.875;
-enclosingsquarecomb = -301.875;
+enclosingcirclecomb = -301;
+enclosingsquarecomb = -301;
};
at.case = {
-enclosingcirclecomb = -303.3125;
-enclosingsquarecomb = -303.3125;
+enclosingcirclecomb = -303;
+enclosingsquarecomb = -303;
};
backslash = {
-"@MMK_R_T" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_comma" = 80.5;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_quotedblleft" = -86.25;
+"@MMK_R_T" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_comma" = 80;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_quotedblleft" = -86;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_v" = -103.5;
-Psi = -80.5;
-tenge = -103.5;
+"@MMK_R_v" = -103;
+Psi = -80;
+tenge = -103;
};
beta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
bhook = {
"@MMK_R_T" = -161;
};
bracketleft = {
-idblgrave = 80.5;
+idblgrave = 80;
};
bracketright = {
idblgrave = 69;
@@ -436126,16 +436126,16 @@ dcircumflexbelow = {
idblgrave = 69;
};
dcroat = {
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
Thook = 69;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+imacron = 80;
};
ddotaccent = {
idblgrave = 69;
@@ -436151,12 +436151,12 @@ dhook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
dlinebelow = {
idblgrave = 69;
@@ -436178,79 +436178,79 @@ ellipsis = {
quotedblreversed = -368;
};
enclosingcirclecomb = {
-"@MMK_R_A" = -43.125;
+"@MMK_R_A" = -43;
"@MMK_R_C" = -115;
-"@MMK_R_J" = 71.875;
-"@MMK_R_U" = -110.6875;
-"@MMK_R_V" = -35.9375;
-"@MMK_R_W" = -303.3125;
-"@MMK_R_Y" = -57.5;
-"@MMK_R_Z" = 14.375;
-"@MMK_R_approxequal" = -14.375;
-"@MMK_R_emdash" = -362.25;
-"@MMK_R_endash" = 172.5;
-"@MMK_R_four" = -14.375;
-"@MMK_R_hyphen" = 215.625;
-"@MMK_R_one" = 158.125;
-"@MMK_R_six" = 14.375;
-"@MMK_R_two" = 43.125;
-H = -100.625;
-I = 373.75;
-K = -28.75;
-L = 71.875;
-M = -255.875;
-N = -125.0625;
-at = -301.875;
-at.case = -303.3125;
-exclam = 359.375;
-five = 24.4375;
-greater = 43.125;
-less = -57.5;
-nine = 14.375;
+"@MMK_R_J" = 71;
+"@MMK_R_U" = -110;
+"@MMK_R_V" = -35;
+"@MMK_R_W" = -303;
+"@MMK_R_Y" = -57;
+"@MMK_R_Z" = 14;
+"@MMK_R_approxequal" = -14;
+"@MMK_R_emdash" = -362;
+"@MMK_R_endash" = 172;
+"@MMK_R_four" = -14;
+"@MMK_R_hyphen" = 215;
+"@MMK_R_one" = 158;
+"@MMK_R_six" = 14;
+"@MMK_R_two" = 43;
+H = -100;
+I = 373;
+K = -28;
+L = 71;
+M = -255;
+N = -125;
+at = -301;
+at.case = -303;
+exclam = 359;
+five = 24;
+greater = 43;
+less = -57;
+nine = 14;
plus = 0;
-question = 159.5625;
-seven = 100.625;
+question = 159;
+seven = 100;
};
enclosingsquarecomb = {
-"@MMK_R_A" = -43.125;
+"@MMK_R_A" = -43;
"@MMK_R_C" = -115;
-"@MMK_R_J" = 71.875;
-"@MMK_R_U" = -110.6875;
-"@MMK_R_V" = -35.9375;
-"@MMK_R_W" = -303.3125;
-"@MMK_R_Y" = -57.5;
-"@MMK_R_Z" = 14.375;
-"@MMK_R_approxequal" = -14.375;
-"@MMK_R_emdash" = -362.25;
-"@MMK_R_endash" = 172.5;
-"@MMK_R_four" = -14.375;
-"@MMK_R_hyphen" = 215.625;
-"@MMK_R_one" = 158.125;
-"@MMK_R_six" = 14.375;
-"@MMK_R_two" = 43.125;
-H = -100.625;
-I = 373.75;
-K = -28.75;
-L = 71.875;
-M = -255.875;
-N = -125.0625;
-at = -301.875;
-at.case = -303.3125;
-exclam = 359.375;
-five = 24.4375;
-greater = 43.125;
-less = -57.5;
-nine = 14.375;
+"@MMK_R_J" = 71;
+"@MMK_R_U" = -110;
+"@MMK_R_V" = -35;
+"@MMK_R_W" = -303;
+"@MMK_R_Y" = -57;
+"@MMK_R_Z" = 14;
+"@MMK_R_approxequal" = -14;
+"@MMK_R_emdash" = -362;
+"@MMK_R_endash" = 172;
+"@MMK_R_four" = -14;
+"@MMK_R_hyphen" = 215;
+"@MMK_R_one" = 158;
+"@MMK_R_six" = 14;
+"@MMK_R_two" = 43;
+H = -100;
+I = 373;
+K = -28;
+L = 71;
+M = -255;
+N = -125;
+at = -301;
+at.case = -303;
+exclam = 359;
+five = 24;
+greater = 43;
+less = -57;
+nine = 14;
plus = 0;
-question = 159.5625;
-seven = 100.625;
+question = 159;
+seven = 100;
};
eturn = {
"@MMK_R_T" = -161;
};
exclam = {
-enclosingcirclecomb = 359.375;
-enclosingsquarecomb = 359.375;
+enclosingcirclecomb = 359;
+enclosingsquarecomb = 359;
};
exclamdown = {
"@MMK_R_T" = -138;
@@ -436264,13 +436264,13 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
feng = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
five = {
-"@MMK_R_comma" = -54.625;
-"@MMK_R_registered" = -11.5;
-enclosingcirclecomb = 24.4375;
-enclosingsquarecomb = 24.4375;
+"@MMK_R_comma" = -54;
+"@MMK_R_registered" = -11;
+enclosingcirclecomb = 24;
+enclosingsquarecomb = 24;
};
florin = {
"@MMK_R_idotless" = 69;
@@ -436284,8 +436284,8 @@ four.ss01 = {
"@MMK_R_comma" = -69;
};
gamma1 = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
germandbls = {
"@MMK_R_quotedblleft" = -138;
@@ -436294,55 +436294,55 @@ ghook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
greater = {
"@MMK_R_Elcyrillic" = -69;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -149.5;
-"@MMK_R_W" = -149.5;
+"@MMK_R_V" = -149;
+"@MMK_R_W" = -149;
"@MMK_R_X" = -115;
"@MMK_R_Y" = -184;
-"@MMK_R_Z" = -126.5;
-"@MMK_R_quotedblleft" = -195.5;
+"@MMK_R_Z" = -126;
+"@MMK_R_quotedblleft" = -195;
Psi = -184;
-afii10024 = -103.5;
-afii10044 = -149.5;
-enclosingcirclecomb = 43.125;
-enclosingsquarecomb = 43.125;
-seven = -149.5;
-tenge = -149.5;
+afii10024 = -103;
+afii10044 = -149;
+enclosingcirclecomb = 43;
+enclosingsquarecomb = 43;
+seven = -149;
+tenge = -149;
};
henghook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hhook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
iacute = {
-idblgrave = 103.5;
+idblgrave = 103;
};
ibreve = {
-"@MMK_R_idotless" = 80.5;
-idblgrave = 103.5;
-rdblgrave.1 = 80.5;
+"@MMK_R_idotless" = 80;
+idblgrave = 103;
+rdblgrave.1 = 80;
};
icaron = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
idblgrave = 115;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
icircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-itilde = 80.5;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+itilde = 80;
};
idblgrave = {
"@MMK_R_idieresis" = 69;
@@ -436353,88 +436353,88 @@ idblgrave = 69;
iinvertedbreve = 69;
};
idieresisacute = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+iinvertedbreve = 80;
};
idotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
ihookabove = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-idblgrave = 103.5;
+idblgrave = 103;
rdblgrave.1 = 69;
};
iinvertedbreve = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
-hbar = 80.5;
+hbar = 80;
idblgrave = 92;
-idieresisacute = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
-itilde = 80.5;
+idieresisacute = 80;
+iinvertedbreve = 80;
+imacron = 80;
+itilde = 80;
rdblgrave.1 = 69;
};
ij = {
idblgrave = 69;
};
imacron = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 103.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 103;
+iinvertedbreve = 80;
imacron = 92;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
infinity = {
"@MMK_R_Y" = -69;
};
itilde = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
idblgrave = 115;
};
itildebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
jcircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-itilde = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+itilde = 80;
};
l.ss02 = {
"@MMK_R_A" = 46;
-"@MMK_R_B" = 28.75;
+"@MMK_R_B" = 28;
};
lacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lambda = {
-"@MMK_R_deltagreek" = -80.5;
+"@MMK_R_deltagreek" = -80;
"@MMK_R_epsilongreek" = -69;
"@MMK_R_gammagreek" = -115;
"@MMK_R_hyphen" = -69;
-"@MMK_R_omegagreek" = -80.5;
+"@MMK_R_omegagreek" = -80;
"@MMK_R_one" = -115;
"@MMK_R_psigreek" = -69;
pi = -138;
-tau = -195.5;
+tau = -195;
};
lbar = {
-"@MMK_R_Dcroat" = 80.5;
-Dcroat = 80.5;
-Istroke = 80.5;
-Lbar = 80.5;
+"@MMK_R_Dcroat" = 80;
+Dcroat = 80;
+Istroke = 80;
+Lbar = 80;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
@@ -436442,18 +436442,18 @@ lcircumflexbelow = {
"@MMK_R_B" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
-itildebelow = 80.5;
-lcircumflexbelow = 80.5;
-llinebelow = 80.5;
-rlinebelow.1 = 80.5;
+itildebelow = 80;
+lcircumflexbelow = 80;
+llinebelow = 80;
+rlinebelow.1 = 80;
};
lcommaaccent = {
idblgrave = 69;
};
lcurl = {
-"@MMK_R_jdotless" = 201.25;
+"@MMK_R_jdotless" = 201;
};
ldot = {
"@MMK_R_Dcroat" = 69;
@@ -436466,32 +436466,32 @@ ldotbelow = {
idblgrave = 69;
};
ldotbelowmacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
less = {
-enclosingcirclecomb = -57.5;
-enclosingsquarecomb = -57.5;
+enclosingcirclecomb = -57;
+enclosingsquarecomb = -57;
};
lj = {
idblgrave = 69;
};
llinebelow = {
-"@MMK_R_B" = 80.5;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_B" = 80;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_parenright" = 69;
Iogonek = 69;
florin = 69;
idblgrave = 69;
itildebelow = 92;
-jcircumflex = 80.5;
-lcircumflexbelow = 80.5;
+jcircumflex = 80;
+lcircumflexbelow = 80;
llinebelow = 92;
rlinebelow.1 = 92;
underscore = 69;
};
logicalnot = {
-afii10044 = -103.5;
+afii10044 = -103;
};
lslash = {
"@MMK_R_Dcroat" = 69;
@@ -436502,12 +436502,12 @@ idblgrave = 69;
lbar = 69;
};
micro = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -436517,63 +436517,63 @@ mturn = {
};
multiply = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_Y" = -92;
afii10024 = -92;
-afii10044 = -149.5;
+afii10044 = -149;
afii10049 = -92;
tenge = -69;
};
nine = {
-enclosingcirclecomb = 14.375;
-enclosingsquarecomb = 14.375;
+enclosingcirclecomb = 14;
+enclosingsquarecomb = 14;
};
nj = {
idblgrave = 69;
};
nlfthook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ntilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ocircumflexacute = {
"@MMK_R_B" = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
ocircumflexhookabove = {
idblgrave = 92;
};
odieresis = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ohorntilde = {
idblgrave = 69;
};
onefraction = {
-seven.dnomf = 43.125;
+seven.dnomf = 43;
};
otilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
parenleft = {
-idblgrave = 195.5;
+idblgrave = 195;
};
percent = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -138;
};
periodcentered = {
"@MMK_R_A" = -69;
"@MMK_R_J" = -92;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_X" = -92;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_Y" = -103;
};
pi = {
"@MMK_R_deltagreek" = -69;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = 69;
};
plus = {
@@ -436581,21 +436581,21 @@ enclosingcirclecomb = 0;
enclosingsquarecomb = 0;
};
question = {
-"@MMK_R_A" = -126.5;
-"@MMK_R_Alphagreek" = -126.5;
-enclosingcirclecomb = 159.5625;
-enclosingsquarecomb = 159.5625;
+"@MMK_R_A" = -126;
+"@MMK_R_Alphagreek" = -126;
+enclosingcirclecomb = 159;
+enclosingsquarecomb = 159;
};
questiondown = {
"@MMK_R_gammagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -69;
Psi = -184;
Tbar = -138;
};
r = {
-"@MMK_R_v" = 34.5;
-"@MMK_R_x" = 34.5;
+"@MMK_R_v" = 34;
+"@MMK_R_x" = 34;
};
rcaron.1 = {
idblgrave = 92;
@@ -436605,14 +436605,14 @@ rdotbelowmacron.1 = {
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
rinvertedbreve.1 = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
sacutedotaccent = {
idblgrave = 69;
@@ -436624,69 +436624,69 @@ schwa = {
"@MMK_R_T" = -161;
};
seven = {
-"@MMK_R_A" = -218.5;
-"@MMK_R_Alphagreek" = -218.5;
-"@MMK_R_J" = -195.5;
+"@MMK_R_A" = -218;
+"@MMK_R_Alphagreek" = -218;
+"@MMK_R_J" = -195;
"@MMK_R_a" = -92;
-"@MMK_R_c" = -103.5;
+"@MMK_R_c" = -103;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -253;
-"@MMK_R_deltagreek" = -103.5;
-"@MMK_R_epsilongreek" = -103.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_deltagreek" = -103;
+"@MMK_R_epsilongreek" = -103;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_idieresis" = 184;
-"@MMK_R_iotadieresisgreek" = -103.5;
-"@MMK_R_omegagreek" = -103.5;
-"@MMK_R_quotedblbase" = -287.5;
-"@MMK_R_s" = -80.5;
-"@MMK_R_six" = -31.625;
+"@MMK_R_iotadieresisgreek" = -103;
+"@MMK_R_omegagreek" = -103;
+"@MMK_R_quotedblbase" = -287;
+"@MMK_R_s" = -80;
+"@MMK_R_six" = -31;
"@MMK_R_six.1" = -69;
"@MMK_R_zero.subs" = -184;
ampersand = -92;
-eight = -28.75;
-enclosingcirclecomb = 100.625;
-enclosingsquarecomb = 100.625;
-five = -20.125;
-four = -117.875;
-four.ss01 = -126.5;
+eight = -28;
+enclosingcirclecomb = 100;
+enclosingsquarecomb = 100;
+five = -20;
+four = -117;
+four.ss01 = -126;
less = -184;
-nine = -20.125;
+nine = -20;
numbersign = -115;
-rho = -103.5;
-seven = 40.25;
-theta = -103.5;
+rho = -103;
+seven = 40;
+theta = -103;
underscore = -322;
-zeta = -103.5;
+zeta = -103;
};
seven.dnomf = {
-"@MMK_R_six.dnomf" = -18.6875;
-eight.dnomf = -17.25;
-five.dnomf = -12.21875;
-four.dnomf = -70.4375;
-nine.dnomf = -12.21875;
-seven.dnomf = 24.4375;
+"@MMK_R_six.dnomf" = -18;
+eight.dnomf = -17;
+five.dnomf = -12;
+four.dnomf = -70;
+nine.dnomf = -12;
+seven.dnomf = 24;
};
seven.frac = {
-four.frac = -71.875;
-fraction = -143.75;
+four.frac = -71;
+fraction = -143;
};
seven.numr = {
-four.numr = -71.875;
+four.numr = -71;
};
seven.sups = {
-"@MMK_R_six.sups" = -20.84375;
-eight.sups = -19.40625;
-five.sups = -13.65625;
-four.sups = -78.34375;
-nine.sups = -13.65625;
-seven.sups = 26.59375;
+"@MMK_R_six.sups" = -20;
+eight.sups = -19;
+five.sups = -13;
+four.sups = -78;
+nine.sups = -13;
+seven.sups = 26;
};
sigma = {
-"@MMK_R_Alphagreek" = -80.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_Alphagreek" = -80;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = -69;
lambda = -138;
logicalnot = -69;
@@ -436698,13 +436698,13 @@ six = {
underscore = -92;
};
slash = {
-"@MMK_R_J" = -126.5;
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_J" = -126;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
tau = {
-"@MMK_R_deltagreek" = -80.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_deltagreek" = -80;
+"@MMK_R_quotedblleft" = -80;
};
tccurl = {
"@MMK_R_T" = -161;
@@ -436717,22 +436717,22 @@ llinebelow = 69;
rlinebelow.1 = 69;
};
tecyrillic = {
-"@MMK_R_quotedblbase" = -149.5;
+"@MMK_R_quotedblbase" = -149;
};
theta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
thook = {
idblgrave = 92;
};
three.frac = {
-fraction = -28.75;
+fraction = -28;
};
tlinebelow = {
"@MMK_R_B" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
llinebelow = 69;
-rlinebelow.1 = 80.5;
+rlinebelow.1 = 80;
};
ubar = {
"@MMK_R_Dcroat" = 69;
@@ -436758,27 +436758,27 @@ uhorntilde = {
hbar = 69;
};
underscore = {
-"@MMK_R_C" = -80.5;
-"@MMK_R_Omicrongreek" = -80.5;
+"@MMK_R_C" = -80;
+"@MMK_R_Omicrongreek" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_U" = -80.5;
+"@MMK_R_U" = -80;
"@MMK_R_V" = -161;
"@MMK_R_asciicircum" = -138;
"@MMK_R_gammagreek" = -115;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 195.5;
+"@MMK_R_jdotless" = 195;
"@MMK_R_m" = 92;
"@MMK_R_nine.1" = -92;
-"@MMK_R_one" = -218.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_one" = -218;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_six" = -92;
"@MMK_R_three" = -92;
"@MMK_R_v" = -161;
-Psi = -195.5;
+Psi = -195;
afii10021 = 115;
-afii10041 = -218.5;
-afii10044 = -103.5;
-afii10047 = -80.5;
+afii10041 = -218;
+afii10044 = -103;
+afii10047 = -80;
decyrillic = 92;
eight = -92;
five = -92;
@@ -436786,36 +436786,36 @@ four = -115;
llinebelow = 69;
nine = -92;
rlinebelow.1 = 69;
-tenge = -103.5;
+tenge = -103;
};
uni01F6 = {
"@MMK_R_T" = -92;
};
uni023E = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
uni0240 = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
uni0247 = {
"@MMK_R_T" = -161;
};
uni024F = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
uni20BD = {
"@MMK_R_comma" = -138;
-slash = -80.5;
-underscore = -103.5;
+slash = -80;
+underscore = -103;
};
vturn = {
-"@MMK_R_T.sc" = -86.25;
+"@MMK_R_T.sc" = -86;
};
won = {
-idblgrave = 80.5;
+idblgrave = 80;
};
xi = {
Psi = -92;
@@ -436829,10 +436829,10 @@ ytilde = {
idblgrave = 69;
};
zbar = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
zcurl = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
};
zdotbelow = {
"@MMK_R_T" = -69;
@@ -436855,31 +436855,31 @@ Tdotaccent = -69;
Tdotbelow = -69;
};
zrthook = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
};
"11F4534A-B963-4AB5-820F-DAF9A20CD933" = {
"@MMK_L_A" = {
"@MMK_R_C" = -69;
-"@MMK_R_T" = -172.5;
+"@MMK_R_T" = -172;
"@MMK_R_V" = -138;
"@MMK_R_W" = -115;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_approxequal" = -103.5;
+"@MMK_R_Y" = -149;
+"@MMK_R_approxequal" = -103;
"@MMK_R_asciicircum" = -161;
"@MMK_R_c" = -64;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_eight.sups" = -184;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_idieresis" = 92;
-"@MMK_R_idotless" = 11.5;
-"@MMK_R_nine.1" = -20.125;
+"@MMK_R_idotless" = 11;
+"@MMK_R_nine.1" = -20;
"@MMK_R_one" = -69;
"@MMK_R_quotedbl" = -161;
-"@MMK_R_quotedblleft" = -264.5;
+"@MMK_R_quotedblleft" = -264;
"@MMK_R_quotedblright" = -207;
-"@MMK_R_registered" = -143.75;
+"@MMK_R_registered" = -143;
"@MMK_R_t" = -69;
"@MMK_R_v" = -138;
"@MMK_R_w" = -138;
@@ -436887,13 +436887,13 @@ Tbar = -115;
asterisk.case = -69;
llinebelow = 69;
periodcentered = -69;
-question = -126.5;
+question = -126;
rlinebelow.1 = 69;
};
"@MMK_L_Alphagreek" = {
"@MMK_R_Omicrongreek" = -69;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_deltagreek" = -69;
"@MMK_R_eight.sups" = -184;
"@MMK_R_gammagreek" = -138;
@@ -436901,43 +436901,43 @@ rlinebelow.1 = 69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_omegagreek" = -69;
"@MMK_R_one" = -69;
-"@MMK_R_quotedbl" = -195.5;
+"@MMK_R_quotedbl" = -195;
"@MMK_R_quotedblleft" = -276;
-"@MMK_R_quotedblright" = -195.5;
-Psi = -126.5;
+"@MMK_R_quotedblright" = -195;
+Psi = -126;
asterisk.case = -69;
-question = -126.5;
-tau = -103.5;
-theta = -80.5;
-zeta = -80.5;
+question = -126;
+tau = -103;
+theta = -80;
+zeta = -80;
};
"@MMK_L_B" = {
"@MMK_R_idieresis" = 69;
};
"@MMK_L_C" = {
-"@MMK_R_X" = -11.5;
+"@MMK_R_X" = -11;
"@MMK_R_idieresis" = 69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_D" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -60.375;
+"@MMK_R_T" = -60;
"@MMK_R_V" = -69;
"@MMK_R_X" = -23;
"@MMK_R_Y" = -69;
"@MMK_R_comma" = -92;
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
"@MMK_R_quotedblleft" = -69;
-"@MMK_R_registered" = -11.5;
-slash = -80.5;
-underscore = -80.5;
+"@MMK_R_registered" = -11;
+slash = -80;
+underscore = -80;
};
"@MMK_L_Decyrillic" = {
afii10021 = 69;
-underscore = 126.5;
+underscore = 126;
};
"@MMK_L_E" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
idblgrave = 69;
};
"@MMK_L_Ecyrillic" = {
@@ -436946,21 +436946,21 @@ idblgrave = 69;
"@MMK_L_Ereversedcyrillic" = {
"@MMK_R_comma" = -92;
"@MMK_R_quotedblbase" = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_F" = {
"@MMK_R_A" = -184;
"@MMK_R_C" = 0;
"@MMK_R_J" = -138;
-"@MMK_R_c" = -80.5;
-"@MMK_R_comma" = -80.5;
-"@MMK_R_m" = -11.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_c" = -80;
+"@MMK_R_comma" = -80;
+"@MMK_R_m" = -11;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_u" = -69;
"@MMK_R_v" = -69;
"@MMK_R_z" = -69;
"@MMK_R_zero.subs" = -115;
-ellipsis = -172.5;
+ellipsis = -172;
idblgrave = 69;
period = -69;
underscore = -69;
@@ -436969,7 +436969,7 @@ underscore = -69;
"@MMK_R_A" = -46;
"@MMK_R_T" = 69;
"@MMK_R_V" = -46;
-"@MMK_R_X" = -11.5;
+"@MMK_R_X" = -11;
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
@@ -436979,11 +436979,11 @@ iinvertedbreve = 69;
rdblgrave.1 = 69;
};
"@MMK_L_H" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
"@MMK_R_m" = 0;
Idieresis = 161;
Idieresisacute = 92;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
iogonek = 69;
lcircumflexbelow = 69;
@@ -436995,64 +436995,64 @@ underscore = 69;
"@MMK_R_m.sups" = 0;
};
"@MMK_L_Idieresis" = {
-"@MMK_R_parenright.case" = 57.5;
+"@MMK_R_parenright.case" = 57;
};
"@MMK_L_J" = {
"@MMK_R_comma" = -69;
"@MMK_R_quotedblbase" = -161;
idblgrave = 69;
slash = -115;
-underscore = -103.5;
+underscore = -103;
};
"@MMK_L_K" = {
"@MMK_R_C" = -69;
"@MMK_R_approxequal" = -69;
-"@MMK_R_c" = -80.5;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_c" = -80;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+"@MMK_R_idieresis" = 172;
"@MMK_R_idotless" = 69;
-"@MMK_R_registered" = -30.1875;
+"@MMK_R_registered" = -30;
"@MMK_R_u" = -69;
-"@MMK_R_v" = -80.5;
-"@MMK_R_w" = -126.5;
+"@MMK_R_v" = -80;
+"@MMK_R_w" = -126;
asterisk.case = -69;
-idblgrave = 80.5;
+idblgrave = 80;
idieresisacute = 69;
infinity = -69;
less = -138;
-logicalnot = -103.5;
+logicalnot = -103;
periodcentered = -92;
};
"@MMK_L_L" = {
"@MMK_R_A" = 92;
-"@MMK_R_C" = -57.5;
-"@MMK_R_T" = -195.5;
+"@MMK_R_C" = -57;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -138;
"@MMK_R_Y" = -69;
-"@MMK_R_asciicircum" = -264.5;
-"@MMK_R_dagger" = -195.5;
-"@MMK_R_eight.sups" = -310.5;
-"@MMK_R_guillemetleft" = -126.5;
-"@MMK_R_hyphen" = -172.5;
+"@MMK_R_asciicircum" = -264;
+"@MMK_R_dagger" = -195;
+"@MMK_R_eight.sups" = -310;
+"@MMK_R_guillemetleft" = -126;
+"@MMK_R_hyphen" = -172;
"@MMK_R_one" = -92;
"@MMK_R_quotedbl" = -184;
-"@MMK_R_quotedblleft" = -172.5;
-"@MMK_R_quotedblright" = -80.5;
-"@MMK_R_registered" = -163.875;
+"@MMK_R_quotedblleft" = -172;
+"@MMK_R_quotedblright" = -80;
+"@MMK_R_registered" = -163;
"@MMK_R_t" = -46;
"@MMK_R_v" = -138;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
-asciitilde = -80.5;
-asterisk = -80.5;
+asciitilde = -80;
+asterisk = -80;
asterisk.case = -69;
degree = -92;
-hyphen = -103.5;
-logicalnot = -264.5;
-periodcentered = -126.5;
+hyphen = -103;
+logicalnot = -264;
+periodcentered = -126;
quotedblreversed = -92;
quotereversed = -92;
tripleprime = -138;
@@ -437061,25 +437061,25 @@ tripleprime = -138;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_comma" = -92;
"@MMK_R_quotedblleft" = -69;
-slash = -80.5;
-underscore = -80.5;
+slash = -80;
+underscore = -80;
};
"@MMK_L_P" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_J" = -195.5;
-"@MMK_R_c" = -11.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_A" = -149;
+"@MMK_R_J" = -195;
+"@MMK_R_c" = -11;
+"@MMK_R_comma" = -80;
"@MMK_R_hyphen" = -92;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_zero.subs" = -161;
ampersand = -69;
-ellipsis = -195.5;
+ellipsis = -195;
period = -69;
};
"@MMK_L_R" = {
-"@MMK_R_V" = -34.5;
+"@MMK_R_V" = -34;
"@MMK_R_Y" = -80;
-"@MMK_R_c" = -11.5;
+"@MMK_R_c" = -11;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_S" = {
@@ -437087,233 +437087,233 @@ period = -69;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_T" = {
-"@MMK_R_A" = -172.5;
-"@MMK_R_C" = -60.375;
+"@MMK_R_A" = -172;
+"@MMK_R_C" = -60;
"@MMK_R_J" = -184;
-"@MMK_R_T.sc" = -126.5;
-"@MMK_R_a" = -149.5;
+"@MMK_R_T.sc" = -126;
+"@MMK_R_a" = -149;
"@MMK_R_c" = -161;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_idblgrave" = 258.75;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_idblgrave" = 258;
"@MMK_R_idieresis" = 184;
"@MMK_R_m" = -115;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_s" = -149.5;
-"@MMK_R_u" = -149.5;
-"@MMK_R_v" = -126.5;
-"@MMK_R_w" = -126.5;
-"@MMK_R_x" = -126.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_s" = -149;
+"@MMK_R_u" = -149;
+"@MMK_R_v" = -126;
+"@MMK_R_w" = -126;
+"@MMK_R_x" = -126;
"@MMK_R_z" = -92;
"@MMK_R_zero.subs" = -253;
-adieresis = -80.5;
+adieresis = -80;
ampersand = -69;
asterisk.case = -69;
-atilde = -80.5;
-colon.case = -80.5;
-edieresis = -103.5;
-ellipsis = -172.5;
+atilde = -80;
+colon.case = -80;
+edieresis = -103;
+ellipsis = -172;
four = -138;
-hyphen = -149.5;
+hyphen = -149;
less = -161;
-odieresis = -103.5;
-otilde = -103.5;
+odieresis = -103;
+otilde = -103;
periodcentered = -161;
slash = -161;
-udieresis = -103.5;
+udieresis = -103;
underscore = -115;
-uni0240 = -80.5;
-utilde = -80.5;
-wdieresis = -103.5;
+uni0240 = -80;
+utilde = -80;
+wdieresis = -103;
ydieresis = -69;
-zbar = -80.5;
-zcurl = -80.5;
+zbar = -80;
+zcurl = -80;
zdotbelow = -69;
zlinebelow = -69;
-zrthook = -80.5;
+zrthook = -80;
};
"@MMK_L_T.sc" = {
-"@MMK_R_T" = -126.5;
-"@MMK_R_a" = -57.5;
-"@MMK_R_c" = -57.5;
+"@MMK_R_T" = -126;
+"@MMK_R_a" = -57;
+"@MMK_R_c" = -57;
"@MMK_R_comma" = -184;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -80;
integral = -115;
logicalnot = -69;
-underscore = -103.5;
-vturn = -86.25;
+underscore = -103;
+vturn = -86;
};
"@MMK_L_V" = {
-"@MMK_R_A" = -126.5;
+"@MMK_R_A" = -126;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -103.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -103;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -103;
+"@MMK_R_idieresis" = 172;
"@MMK_R_quotedblbase" = -230;
"@MMK_R_s" = -92;
-"@MMK_R_zero.subs" = -195.5;
-adieresis = -80.5;
-ampersand = -103.5;
+"@MMK_R_zero.subs" = -195;
+adieresis = -80;
+ampersand = -103;
at = -69;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
-logicalnot = -126.5;
-multiply = -80.5;
+idblgrave = 80;
+less = -149;
+logicalnot = -126;
+multiply = -80;
otilde = -92;
-periodcentered = -80.5;
-slash = -149.5;
+periodcentered = -80;
+slash = -149;
underscore = -161;
};
"@MMK_L_W" = {
"@MMK_R_A" = -115;
"@MMK_R_C" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_a" = -103.5;
-"@MMK_R_approxequal" = -126.5;
+"@MMK_R_J" = -126;
+"@MMK_R_a" = -103;
+"@MMK_R_approxequal" = -126;
"@MMK_R_c" = -128;
-"@MMK_R_colon" = -103.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_colon" = -103;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
"@MMK_R_m" = -69;
-"@MMK_R_quotedblbase" = -218.5;
+"@MMK_R_quotedblbase" = -218;
"@MMK_R_s" = -69;
"@MMK_R_zero.subs" = -184;
-ampersand = -103.5;
+ampersand = -103;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
+idblgrave = 80;
+less = -149;
periodcentered = -69;
};
"@MMK_L_X" = {
"@MMK_R_C" = -23;
"@MMK_R_S" = -48;
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_c" = -57.5;
-"@MMK_R_guillemetleft" = -80.5;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_c" = -57;
+"@MMK_R_guillemetleft" = -80;
"@MMK_R_hyphen" = -138;
-"@MMK_R_registered" = -14.375;
+"@MMK_R_registered" = -14;
asterisk.case = -92;
-idblgrave = 80.5;
+idblgrave = 80;
less = -115;
periodcentered = -92;
};
"@MMK_L_Y" = {
-"@MMK_R_A" = -149.5;
+"@MMK_R_A" = -149;
"@MMK_R_C" = -69;
"@MMK_R_J" = -69;
"@MMK_R_T" = 92;
-"@MMK_R_a" = -143.75;
-"@MMK_R_approxequal" = -195.5;
-"@MMK_R_c" = -155.25;
-"@MMK_R_colon" = -126.5;
+"@MMK_R_a" = -143;
+"@MMK_R_approxequal" = -195;
+"@MMK_R_c" = -155;
+"@MMK_R_colon" = -126;
"@MMK_R_comma" = -69;
"@MMK_R_guillemetleft" = -184;
-"@MMK_R_guillemetright" = -126.5;
+"@MMK_R_guillemetright" = -126;
"@MMK_R_hyphen" = -161;
"@MMK_R_idotless" = 0;
-"@MMK_R_m" = -80.5;
-"@MMK_R_quotedblbase" = -218.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_m" = -80;
+"@MMK_R_quotedblbase" = -218;
+"@MMK_R_registered" = -17;
"@MMK_R_s" = -138;
-"@MMK_R_u" = -80.5;
+"@MMK_R_u" = -80;
"@MMK_R_zero.subs" = -230;
alpha = -115;
-ampersand = -126.5;
-asterisk.case = -80.5;
+ampersand = -126;
+asterisk.case = -80;
ccurl = -115;
chook = -115;
drthook = -115;
dyogh = -115;
dz = -115;
dzcurl = -115;
-ellipsis = -195.5;
+ellipsis = -195;
eturn = -115;
four = -138;
-iacute = -57.5;
-idblgrave = 80.5;
+iacute = -57;
+idblgrave = 80;
infinity = -69;
less = -207;
-logicalnot = -103.5;
+logicalnot = -103;
multiply = -92;
omacron = -115;
-periodcentered = -103.5;
+periodcentered = -103;
qrthook = -115;
-questiongreek = -126.5;
+questiongreek = -126;
schwa = -115;
uni0221 = -115;
uni0247 = -115;
-uni0248 = -241.5;
+uni0248 = -241;
};
"@MMK_L_Z" = {
"@MMK_R_C" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_idieresis" = 172;
idblgrave = 69;
-less = -126.5;
+less = -126;
periodcentered = -69;
};
"@MMK_L_a" = {
"@MMK_R_T" = -92;
-"@MMK_R_T.sc" = -86.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_one" = -80.5;
+"@MMK_R_T.sc" = -86;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -149;
+"@MMK_R_one" = -80;
"@MMK_R_quotedblleft" = -92;
-"@MMK_R_registered" = -17.25;
-"@MMK_R_v" = -40.25;
+"@MMK_R_registered" = -17;
+"@MMK_R_v" = -40;
Gamma1 = -69;
-Trthook = -149.5;
-Yhook = -103.5;
-uni023E = -149.5;
+Trthook = -149;
+Yhook = -103;
+uni023E = -149;
};
"@MMK_L_a.sups" = {
-"@MMK_R_v.sups" = -26.59375;
+"@MMK_R_v.sups" = -26;
};
"@MMK_L_alphagreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
};
"@MMK_L_approxequal" = {
-"@MMK_R_A" = -103.5;
+"@MMK_R_A" = -103;
"@MMK_R_V" = -138;
-"@MMK_R_W" = -126.5;
-"@MMK_R_X" = -103.5;
-"@MMK_R_Y" = -195.5;
+"@MMK_R_W" = -126;
+"@MMK_R_X" = -103;
+"@MMK_R_Y" = -195;
"@MMK_R_quotedblleft" = -115;
-"@MMK_R_v" = -80.5;
+"@MMK_R_v" = -80;
"@MMK_R_x" = -69;
afii10044 = -92;
-tenge = -80.5;
+tenge = -80;
};
"@MMK_L_asciicircum" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Dcroat" = 69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_J" = -195.5;
+"@MMK_R_J" = -195;
"@MMK_R_comma" = -276;
ampersand = -69;
four = -92;
@@ -437321,82 +437321,82 @@ underscore = -138;
};
"@MMK_L_b" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -80.5;
-"@MMK_R_T.sc" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -57.5;
-"@MMK_R_Y" = -172.5;
+"@MMK_R_T" = -80;
+"@MMK_R_T.sc" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -57;
+"@MMK_R_Y" = -172;
"@MMK_R_c" = 16;
"@MMK_R_dagger" = -69;
"@MMK_R_parenright" = -23;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_registered" = -23;
-"@MMK_R_v" = -40.25;
-"@MMK_R_w" = -37.375;
+"@MMK_R_v" = -40;
+"@MMK_R_w" = -37;
"@MMK_R_x" = -46;
Trthook = -161;
-Yhook = -103.5;
+Yhook = -103;
idblgrave = 69;
jcrosstail = -92;
uni023E = -161;
};
"@MMK_L_b.sups" = {
-"@MMK_R_parenright.sups" = -15.09375;
-"@MMK_R_w.sups" = -25.15625;
-"@MMK_R_x.sups" = -30.90625;
+"@MMK_R_parenright.sups" = -15;
+"@MMK_R_w.sups" = -25;
+"@MMK_R_x.sups" = -30;
};
"@MMK_L_becyrillic" = {
hardsigncyrillic = -69;
};
"@MMK_L_bsmcyrillic" = {
-"@MMK_R_T" = -201.25;
+"@MMK_R_T" = -201;
"@MMK_R_T.sc" = -115;
-"@MMK_R_V" = -201.25;
-"@MMK_R_X" = -57.5;
+"@MMK_R_V" = -201;
+"@MMK_R_X" = -57;
"@MMK_R_Y" = -345;
"@MMK_R_dagger" = -115;
-"@MMK_R_parenright" = -57.5;
-"@MMK_R_quotedblleft" = -143.75;
-"@MMK_R_v" = -57.5;
-"@MMK_R_w" = -57.5;
+"@MMK_R_parenright" = -57;
+"@MMK_R_quotedblleft" = -143;
+"@MMK_R_v" = -57;
+"@MMK_R_w" = -57;
"@MMK_R_x" = -46;
};
"@MMK_L_c" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_T.sc" = -23;
-"@MMK_R_Y" = -126.5;
-"@MMK_R_registered" = -11.5;
-"@MMK_R_x" = -11.5;
+"@MMK_R_Y" = -126;
+"@MMK_R_registered" = -11;
+"@MMK_R_x" = -11;
idblgrave = 69;
};
"@MMK_L_c.sups" = {
-"@MMK_R_x.sups" = -7.90625;
+"@MMK_R_x.sups" = -7;
};
"@MMK_L_colon" = {
"@MMK_R_T" = -69;
-"@MMK_R_V" = -126.5;
+"@MMK_R_V" = -126;
"@MMK_R_quotedblleft" = -92;
-Psi = -126.5;
+Psi = -126;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-afii10044 = -103.5;
-uni023E = -80.5;
+Trthook = -80;
+afii10044 = -103;
+uni023E = -80;
};
"@MMK_L_comma" = {
"@MMK_R_T" = -69;
"@MMK_R_T.sc" = -184;
"@MMK_R_Y" = -69;
-"@MMK_R_nine.1" = -103.5;
-"@MMK_R_one" = -175.375;
-"@MMK_R_quotedbl" = -166.75;
+"@MMK_R_nine.1" = -103;
+"@MMK_R_one" = -175;
+"@MMK_R_quotedbl" = -166;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_six" = -51.75;
-"@MMK_R_three" = -54.625;
+"@MMK_R_six" = -51;
+"@MMK_R_three" = -54;
Tbar = -69;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
@@ -437409,35 +437409,35 @@ Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
eight = -46;
-five = -28.75;
+five = -28;
grave = -276;
-nine = -14.375;
-question = -181.125;
+nine = -14;
+question = -181;
quotedblreversed = -276;
quotereversed = -276;
-seven = -28.75;
+seven = -28;
};
"@MMK_L_dagger" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_Alphagreek" = -149.5;
-"@MMK_R_J" = -149.5;
+"@MMK_R_A" = -149;
+"@MMK_R_Alphagreek" = -149;
+"@MMK_R_J" = -149;
"@MMK_R_c" = -69;
-Hbar = 80.5;
-ampersand = -80.5;
+Hbar = 80;
+ampersand = -80;
};
"@MMK_L_dcaron" = {
-"@MMK_R_T" = 80.5;
+"@MMK_R_T" = 80;
"@MMK_R_asciicircum" = 115;
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 138;
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_one" = 92;
"@MMK_R_quotedbl" = 69;
"@MMK_R_quotedblleft" = 69;
-"@MMK_R_registered" = 34.5;
-"@MMK_R_zero.subs" = -80.5;
+"@MMK_R_registered" = 34;
+"@MMK_R_zero.subs" = -80;
hbar = 69;
ibreve = 69;
icaron = 69;
@@ -437452,40 +437452,40 @@ seven = 92;
underscore = 92;
};
"@MMK_L_deltagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
tau = -69;
};
"@MMK_L_e" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_T.sc" = -40.25;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -172.5;
-"@MMK_R_registered" = -34.5;
-"@MMK_R_v" = -34.5;
-"@MMK_R_x" = -28.75;
-Gamma1 = -80.5;
+"@MMK_R_T" = -103;
+"@MMK_R_T.sc" = -40;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -172;
+"@MMK_R_registered" = -34;
+"@MMK_R_v" = -34;
+"@MMK_R_x" = -28;
+Gamma1 = -80;
Trthook = -161;
-Yhook = -80.5;
+Yhook = -80;
uni023E = -161;
};
"@MMK_L_e.sups" = {
-"@MMK_R_x.sups" = -19.40625;
+"@MMK_R_x.sups" = -19;
};
"@MMK_L_eight" = {
"@MMK_R_comma" = -46;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_quotedblbase" = -103;
};
"@MMK_L_eight.sups" = {
"@MMK_R_A" = -184;
"@MMK_R_Alphagreek" = -184;
"@MMK_R_J" = -230;
-"@MMK_R_comma" = -218.5;
+"@MMK_R_comma" = -218;
"@MMK_R_eight.sups" = 0;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_t" = 69;
Hbar = 92;
four = -115;
@@ -437498,153 +437498,153 @@ Psi = -92;
};
"@MMK_L_f" = {
"@MMK_R_A" = -69;
-"@MMK_R_J" = -126.5;
-"@MMK_R_Y" = 20.125;
-"@MMK_R_a" = -31.625;
+"@MMK_R_J" = -126;
+"@MMK_R_Y" = 20;
+"@MMK_R_a" = -31;
"@MMK_R_bullet" = -46;
"@MMK_R_c" = -48;
"@MMK_R_comma" = -115;
"@MMK_R_eight.sups" = 46;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -57.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -57;
"@MMK_R_idieresis" = 207;
"@MMK_R_quotedblbase" = -184;
"@MMK_R_s" = -46;
-"@MMK_R_slash" = -57.5;
-"@MMK_R_zero.subs" = -80.5;
-four = -126.5;
-hturnhook2 = 80.5;
+"@MMK_R_slash" = -57;
+"@MMK_R_zero.subs" = -80;
+four = -126;
+hturnhook2 = 80;
idblgrave = 92;
-underscore = -28.75;
+underscore = -28;
};
"@MMK_L_f.sups" = {
-"@MMK_R_a.sups" = -30.90625;
-"@MMK_R_c.sups" = -30.90625;
-"@MMK_R_s.sups" = -30.90625;
+"@MMK_R_a.sups" = -30;
+"@MMK_R_c.sups" = -30;
+"@MMK_R_s.sups" = -30;
};
"@MMK_L_four" = {
-"@MMK_R_one" = -20.125;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_one" = -20;
+"@MMK_R_registered" = -11;
};
"@MMK_L_four.dnomf" = {
-"@MMK_R_one.dnomf" = -12.21875;
+"@MMK_R_one.dnomf" = -12;
};
"@MMK_L_four.sups" = {
-"@MMK_R_one.sups" = -13.65625;
+"@MMK_R_one.sups" = -13;
};
"@MMK_L_fraction" = {
-"@MMK_R_four.dnomf" = -129.375;
+"@MMK_R_four.dnomf" = -129;
};
"@MMK_L_g" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
underscore = 69;
};
"@MMK_L_gammagreek" = {
"@MMK_R_Alphagreek" = -138;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = 69;
Sigma = -69;
-lambda = -80.5;
-less = -80.5;
+lambda = -80;
+less = -80;
logicalnot = -69;
slash = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_guillemetleft" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -103.5;
-"@MMK_R_Y" = -126.5;
-Psi = -126.5;
+"@MMK_R_T" = -103;
+"@MMK_R_Y" = -126;
+Psi = -126;
afii10044 = -138;
};
"@MMK_L_guillemetright" = {
"@MMK_R_A" = -69;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_T" = -264.5;
-"@MMK_R_V" = -126.5;
+"@MMK_R_T" = -264;
+"@MMK_R_V" = -126;
"@MMK_R_W" = -115;
-"@MMK_R_X" = -80.5;
+"@MMK_R_X" = -80;
"@MMK_R_Y" = -184;
"@MMK_R_Z" = -69;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_one" = -80.5;
-"@MMK_R_quotedblleft" = -172.5;
+"@MMK_R_one" = -80;
+"@MMK_R_quotedblleft" = -172;
"@MMK_R_three" = -92;
-"@MMK_R_two" = -103.5;
+"@MMK_R_two" = -103;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
"@MMK_R_x" = -69;
Psi = -184;
-afii10024 = -103.5;
+afii10024 = -103;
afii10044 = -138;
eight = -69;
-seven = -103.5;
+seven = -103;
};
"@MMK_L_hyphen" = {
-"@MMK_R_T" = -149.5;
-"@MMK_R_T.sc" = -57.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -126.5;
+"@MMK_R_T" = -149;
+"@MMK_R_T.sc" = -57;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -126;
"@MMK_R_Y" = -161;
-"@MMK_R_nine.1" = -34.5;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_nine.1" = -34;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_three" = -23;
"@MMK_R_two" = -69;
"@MMK_R_x" = -46;
Psi = -161;
Tcaron = -69;
Tcommaaccent = -69;
-afii10024 = -218.5;
-afii10025 = -103.5;
+afii10024 = -218;
+afii10025 = -103;
afii10044 = -138;
seven = -46;
};
"@MMK_L_idieresis" = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_T" = 184;
-"@MMK_R_V" = 172.5;
+"@MMK_R_V" = 172;
"@MMK_R_Z" = 184;
-"@MMK_R_f" = 80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_f" = 80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 184;
"@MMK_R_jdotless" = -115;
"@MMK_R_one" = 92;
-"@MMK_R_t" = 103.5;
+"@MMK_R_t" = 103;
Dhook = 69;
-Dzcaron_ = 149.5;
-Enhookcyrillic = 149.5;
-Nhook = 149.5;
-Rx = 149.5;
+Dzcaron_ = 149;
+Enhookcyrillic = 149;
+Nhook = 149;
+Rx = 149;
Thook = 69;
-afii10026 = 149.5;
-hbar = 80.5;
+afii10026 = 149;
+hbar = 80;
ibreve = 69;
icaron = 69;
icircumflex = 69;
-idblgrave = 103.5;
+idblgrave = 103;
igrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
+imacron = 80;
jcircumflex = 69;
jcrosstail = -115;
-numero = 149.5;
-rdblgrave.1 = 80.5;
+numero = 149;
+rdblgrave.1 = 80;
seven = 184;
-uni01F6 = 149.5;
-uni0246 = 149.5;
-uni0376 = 149.5;
-uni048A = 149.5;
+uni01F6 = 149;
+uni0246 = 149;
+uni0376 = 149;
+uni048A = 149;
};
"@MMK_L_idotless" = {
"@MMK_R_V" = 69;
"@MMK_R_W" = 69;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_m" = 0;
"@MMK_R_parenright" = 69;
Dhook = 69;
@@ -437655,21 +437655,21 @@ Vtilde = 69;
Wdotaccent = 69;
Wdotbelow = 69;
florin = 69;
-hbar = 80.5;
-ibreve = 80.5;
+hbar = 80;
+ibreve = 80;
idblgrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
-iogonek = 80.5;
+imacron = 80;
+iogonek = 80;
itilde = 69;
itildebelow = 92;
-jcircumflex = 80.5;
+jcircumflex = 80;
lcircumflexbelow = 69;
llinebelow = 92;
rdblgrave.1 = 69;
rlinebelow.1 = 92;
tlinebelow = 69;
-underscore = 80.5;
+underscore = 80;
won = 69;
yen = 69;
};
@@ -437678,13 +437678,13 @@ yen = 69;
"@MMK_R_parenright.sups" = 46;
};
"@MMK_L_iotadieresisgreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -437692,180 +437692,180 @@ underscore = -69;
"@MMK_L_k" = {
"@MMK_R_T" = -115;
"@MMK_R_c" = -46;
-"@MMK_R_guillemetleft" = -103.5;
+"@MMK_R_guillemetleft" = -103;
"@MMK_R_hyphen" = -92;
four = -92;
-less = -172.5;
+less = -172;
logicalnot = -138;
};
"@MMK_L_k.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_nine" = {
"@MMK_R_Y" = -69;
-"@MMK_R_comma" = -51.75;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_comma" = -51;
+"@MMK_R_quotedblbase" = -103;
"@MMK_R_quotedblleft" = -92;
Psi = -69;
-seven = -40.25;
+seven = -40;
underscore = -92;
};
"@MMK_L_nine.1" = {
-"@MMK_R_A" = -20.125;
-"@MMK_R_comma" = -201.25;
-seven = -80.5;
+"@MMK_R_A" = -20;
+"@MMK_R_comma" = -201;
+seven = -80;
};
"@MMK_L_nine.dnomf" = {
-seven.dnomf = -24.4375;
+seven.dnomf = -24;
};
"@MMK_L_nine.sups" = {
-seven.sups = -26.59375;
+seven.sups = -26;
};
"@MMK_L_ohorn" = {
"@MMK_R_comma" = -92;
};
"@MMK_L_omegagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
};
"@MMK_L_one" = {
-"@MMK_R_comma" = -86.25;
+"@MMK_R_comma" = -86;
"@MMK_R_quotedblbase" = -92;
};
"@MMK_L_parenleft" = {
"@MMK_R_c" = -23;
-"@MMK_R_jdotless" = 57.5;
+"@MMK_R_jdotless" = 57;
idblgrave = 92;
llinebelow = 69;
rlinebelow.1 = 69;
};
"@MMK_L_parenleft.case" = {
-"@MMK_R_Idieresis" = 57.5;
+"@MMK_R_Idieresis" = 57;
};
"@MMK_L_parenleft.sups" = {
-"@MMK_R_c.sups" = -15.09375;
-"@MMK_R_jdotless.sups" = 38.09375;
+"@MMK_R_c.sups" = -15;
+"@MMK_R_jdotless.sups" = 38;
};
"@MMK_L_parenright" = {
"@MMK_R_quotedblleft" = -69;
};
"@MMK_L_psigreek" = {
"@MMK_R_Alphagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
-lambda = -80.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
+lambda = -80;
seven = -69;
};
"@MMK_L_quotedbl" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Elcyrillic" = -92;
-"@MMK_R_J" = -333.5;
-"@MMK_R_comma" = -166.75;
+"@MMK_R_J" = -333;
+"@MMK_R_comma" = -166;
ampersand = -69;
-four = -126.5;
+four = -126;
};
"@MMK_L_quotedblbase" = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -184;
-"@MMK_R_W" = -126.5;
-"@MMK_R_Y" = -218.5;
-"@MMK_R_eight.sups" = -195.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_W" = -126;
+"@MMK_R_Y" = -218;
+"@MMK_R_eight.sups" = -195;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_one" = -138;
"@MMK_R_quotedblleft" = -253;
-"@MMK_R_quotedblright" = -195.5;
-"@MMK_R_v" = -103.5;
+"@MMK_R_quotedblright" = -195;
+"@MMK_R_v" = -103;
Psi = -207;
-Tbar = -195.5;
-afii10021 = 103.5;
-afii10041 = -126.5;
-afii10044 = -103.5;
+Tbar = -195;
+afii10021 = 103;
+afii10041 = -126;
+afii10044 = -103;
checyrillic = -69;
-decyrillic = 126.5;
-hardsigncyrillic = -80.5;
-tecyrillic = -103.5;
+decyrillic = 126;
+hardsigncyrillic = -80;
+tecyrillic = -103;
};
"@MMK_L_quotedblleft" = {
-"@MMK_R_A" = -195.5;
-"@MMK_R_Alphagreek" = -195.5;
-"@MMK_R_Elcyrillic" = -126.5;
+"@MMK_R_A" = -195;
+"@MMK_R_Alphagreek" = -195;
+"@MMK_R_Elcyrillic" = -126;
"@MMK_R_J" = -299;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_elcyrillic" = -172.5;
+"@MMK_R_comma" = -172;
+"@MMK_R_elcyrillic" = -172;
"@MMK_R_quotedblbase" = -253;
-afii10021 = -103.5;
-ampersand = -126.5;
+afii10021 = -103;
+ampersand = -126;
decyrillic = -115;
-four = -126.5;
-questiondown = -126.5;
-slash = -195.5;
+four = -126;
+questiondown = -126;
+slash = -195;
};
"@MMK_L_quotedblright" = {
"@MMK_R_A" = -276;
-"@MMK_R_Alphagreek" = -264.5;
-"@MMK_R_Elcyrillic" = -103.5;
+"@MMK_R_Alphagreek" = -264;
+"@MMK_R_Elcyrillic" = -103;
"@MMK_R_J" = -253;
"@MMK_R_a" = -115;
"@MMK_R_approxequal" = -115;
-"@MMK_R_c" = -126.5;
+"@MMK_R_c" = -126;
"@MMK_R_colon" = -115;
"@MMK_R_comma" = -391;
-"@MMK_R_deltagreek" = -126.5;
-"@MMK_R_elcyrillic" = -126.5;
-"@MMK_R_epsilongreek" = -126.5;
-"@MMK_R_guillemetleft" = -172.5;
-"@MMK_R_hyphen" = -126.5;
-"@MMK_R_iotadieresisgreek" = -126.5;
-"@MMK_R_m" = -43.125;
+"@MMK_R_deltagreek" = -126;
+"@MMK_R_elcyrillic" = -126;
+"@MMK_R_epsilongreek" = -126;
+"@MMK_R_guillemetleft" = -172;
+"@MMK_R_hyphen" = -126;
+"@MMK_R_iotadieresisgreek" = -126;
+"@MMK_R_m" = -43;
"@MMK_R_nine.1" = -23;
-"@MMK_R_omegagreek" = -126.5;
-"@MMK_R_psigreek" = -80.5;
-"@MMK_R_quotedblbase" = -379.5;
-"@MMK_R_s" = -155.25;
+"@MMK_R_omegagreek" = -126;
+"@MMK_R_psigreek" = -80;
+"@MMK_R_quotedblbase" = -379;
+"@MMK_R_s" = -155;
"@MMK_R_six" = -92;
-"@MMK_R_t" = 28.75;
-"@MMK_R_u" = -80.5;
-"@MMK_R_v" = 28.75;
-afii10021 = -80.5;
+"@MMK_R_t" = 28;
+"@MMK_R_u" = -80;
+"@MMK_R_v" = 28;
+afii10021 = -80;
ampersand = -138;
asciitilde = -92;
at = -115;
decyrillic = -115;
-eight = -80.5;
-four = -195.5;
+eight = -80;
+four = -195;
iacyrillic = -69;
-less = -195.5;
+less = -195;
micro = -92;
numbersign = -253;
questiondown = -138;
-rho = -126.5;
-slash = -287.5;
+rho = -126;
+slash = -287;
theta = -138;
-underscore = -80.5;
+underscore = -80;
xi = -138;
-zeta = -126.5;
+zeta = -126;
};
"@MMK_L_r" = {
-"@MMK_R_A" = -80.5;
+"@MMK_R_A" = -80;
"@MMK_R_J" = -115;
"@MMK_R_T" = -115;
"@MMK_R_Z" = -69;
"@MMK_R_a.sups" = 69;
-"@MMK_R_c" = -34.5;
-"@MMK_R_comma" = -126.5;
+"@MMK_R_c" = -34;
+"@MMK_R_comma" = -126;
"@MMK_R_eight.sups" = 92;
"@MMK_R_f" = 69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 34.5;
+"@MMK_R_quotedblright" = 34;
"@MMK_R_t" = 69;
-"@MMK_R_v" = 17.25;
-"@MMK_R_w" = 17.25;
-"@MMK_R_x" = 17.25;
-"@MMK_R_zero.subs" = -103.5;
-idblgrave = 80.5;
-less = -80.5;
+"@MMK_R_v" = 17;
+"@MMK_R_w" = 17;
+"@MMK_R_x" = 17;
+"@MMK_R_zero.subs" = -103;
+idblgrave = 80;
+less = -80;
logicalnot = -69;
rdblgrave.1 = 69;
slash = -69;
@@ -437876,182 +437876,182 @@ slash = -69;
"@MMK_R_t.sups" = 46;
};
"@MMK_L_registered" = {
-"@MMK_R_A" = -143.75;
-"@MMK_R_C" = -11.5;
-"@MMK_R_J" = -143.75;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -17.25;
+"@MMK_R_A" = -143;
+"@MMK_R_C" = -11;
+"@MMK_R_J" = -143;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -17;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -57.5;
-"@MMK_R_four" = -100.625;
+"@MMK_R_c" = -57;
+"@MMK_R_four" = -100;
"@MMK_R_s" = -23;
-"@MMK_R_six.1" = -34.5;
+"@MMK_R_six.1" = -34;
ampersand = -69;
};
"@MMK_L_rthook" = {
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
};
"@MMK_L_s" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_V" = -92;
"@MMK_R_W" = -69;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_quotedblbase" = -103.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_Y" = -149;
+"@MMK_R_quotedblbase" = -103;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_registered" = -17;
idblgrave = 69;
};
"@MMK_L_seven" = {
-"@MMK_R_three" = -34.5;
-three.1 = 2.875;
+"@MMK_R_three" = -34;
+three.1 = 2;
};
"@MMK_L_seven.dnomf" = {
-"@MMK_R_three.dnomf" = -20.84375;
+"@MMK_R_three.dnomf" = -20;
};
"@MMK_L_seven.sups" = {
"@MMK_R_three.sups" = -23;
};
"@MMK_L_six.1" = {
-"@MMK_R_registered" = -34.5;
-seven = -80.5;
+"@MMK_R_registered" = -34;
+seven = -80;
underscore = -92;
};
"@MMK_L_t" = {
"@MMK_R_B" = 23;
"@MMK_R_T" = -69;
-"@MMK_R_V" = -20.125;
-"@MMK_R_W" = -20.125;
-"@MMK_R_Y" = -31.625;
+"@MMK_R_V" = -20;
+"@MMK_R_W" = -20;
+"@MMK_R_Y" = -31;
"@MMK_R_bullet" = -23;
-"@MMK_R_c" = -11.5;
-"@MMK_R_four" = -28.75;
-"@MMK_R_hyphen" = -40.25;
+"@MMK_R_c" = -11;
+"@MMK_R_four" = -28;
+"@MMK_R_hyphen" = -40;
"@MMK_R_jdotless" = 0;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 57.5;
-"@MMK_R_s" = -20.125;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 57;
+"@MMK_R_s" = -20;
"@MMK_R_zero.subs" = 69;
idblgrave = 92;
-less = -57.5;
+less = -57;
rdblgrave.1 = 69;
};
"@MMK_L_t.sups" = {
-"@MMK_R_B.sups" = 15.09375;
-"@MMK_R_c.sups" = -7.90625;
+"@MMK_R_B.sups" = 15;
+"@MMK_R_c.sups" = -7;
"@MMK_R_jdotless.sups" = 0;
-"@MMK_R_s.sups" = -13.65625;
+"@MMK_R_s.sups" = -13;
};
"@MMK_L_two" = {
-"@MMK_R_four" = -31.625;
+"@MMK_R_four" = -31;
};
"@MMK_L_two.dnomf" = {
-"@MMK_R_four.dnomf" = -18.6875;
+"@MMK_R_four.dnomf" = -18;
};
"@MMK_L_two.sups" = {
-"@MMK_R_four.sups" = -20.84375;
+"@MMK_R_four.sups" = -20;
};
"@MMK_L_u" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Y" = -115;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-Tcaron = -149.5;
-Trthook = -149.5;
-idblgrave = 80.5;
-uni023E = -149.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+Tcaron = -149;
+Trthook = -149;
+idblgrave = 80;
+uni023E = -149;
};
"@MMK_L_v" = {
"@MMK_R_A" = -138;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_T" = -69;
"@MMK_R_Y" = -69;
-"@MMK_R_a" = -34.5;
-"@MMK_R_approxequal" = -80.5;
-"@MMK_R_c" = -40.25;
+"@MMK_R_a" = -34;
+"@MMK_R_approxequal" = -80;
+"@MMK_R_c" = -40;
"@MMK_R_comma" = -69;
"@MMK_R_elcyrillic" = -92;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 71.875;
-"@MMK_R_zero.subs" = -103.5;
+"@MMK_R_quotedblright" = 71;
+"@MMK_R_zero.subs" = -103;
Dhook = 69;
-Tcaron = -126.5;
+Tcaron = -126;
Thook = 69;
-Trthook = -126.5;
-ellipsis = -149.5;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
+Trthook = -126;
+ellipsis = -149;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
imacron = 92;
less = -69;
-logicalnot = -80.5;
+logicalnot = -80;
slash = -115;
underscore = -161;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_v.sups" = {
-"@MMK_R_c.sups" = -26.59375;
+"@MMK_R_c.sups" = -26;
"@MMK_R_idotless.sups" = 46;
-"@MMK_R_jdotless.sups" = 53.90625;
+"@MMK_R_jdotless.sups" = 53;
};
"@MMK_L_vecyrillic" = {
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
};
"@MMK_L_w" = {
"@MMK_R_A" = -138;
"@MMK_R_J" = -115;
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Z" = -69;
-"@MMK_R_c" = -37.375;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_c" = -37;
+"@MMK_R_comma" = -149;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 86.25;
-Trthook = -126.5;
+"@MMK_R_quotedblright" = 86;
+Trthook = -126;
ampersand = -69;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_w.sups" = {
-"@MMK_R_c.sups" = -25.15625;
+"@MMK_R_c.sups" = -25;
};
"@MMK_L_x" = {
-"@MMK_R_T" = -126.5;
+"@MMK_R_T" = -126;
"@MMK_R_approxequal" = -69;
"@MMK_R_c" = -46;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_hyphen" = -46;
};
"@MMK_L_x.sups" = {
-"@MMK_R_c.sups" = -30.90625;
+"@MMK_R_c.sups" = -30;
};
"@MMK_L_z" = {
"@MMK_R_T" = -69;
-"@MMK_R_c" = -31.625;
+"@MMK_R_c" = -31;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-uni023E = -80.5;
+Trthook = -80;
+uni023E = -80;
};
"@MMK_L_z.sups" = {
-"@MMK_R_c.sups" = -20.84375;
+"@MMK_R_c.sups" = -20;
};
"@MMK_L_zero.subs" = {
"@MMK_R_T" = -253;
-"@MMK_R_V" = -195.5;
+"@MMK_R_V" = -195;
"@MMK_R_W" = -184;
"@MMK_R_Y" = -230;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_jdotless" = 126.5;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_jdotless" = 126;
"@MMK_R_one" = -184;
-"@MMK_R_v" = -103.5;
+"@MMK_R_v" = -103;
Psi = -230;
-Tbar = -149.5;
-afii10041 = -80.5;
+Tbar = -149;
+afii10041 = -80;
afii10044 = -69;
};
DZ = {
@@ -438061,7 +438061,7 @@ Dtopbar = {
idblgrave = 69;
};
Dzcaron_ = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
Ecedillabreve = {
idblgrave = 69;
@@ -438109,28 +438109,28 @@ Etildebelow = {
idblgrave = 69;
};
Fdotaccent = {
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
Fhook = {
"@MMK_R_comma" = -92;
-period = -80.5;
+period = -80;
};
Gamma = {
"@MMK_R_Alphagreek" = -184;
-"@MMK_R_Omicrongreek" = -103.5;
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_deltagreek" = -120.75;
-"@MMK_R_epsilongreek" = -264.5;
+"@MMK_R_Omicrongreek" = -103;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_deltagreek" = -120;
+"@MMK_R_epsilongreek" = -264;
"@MMK_R_gammagreek" = -207;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_hyphen" = -149.5;
-"@MMK_R_iotadieresisgreek" = -264.5;
-"@MMK_R_omegagreek" = -264.5;
-"@MMK_R_psigreek" = -264.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_hyphen" = -149;
+"@MMK_R_iotadieresisgreek" = -264;
+"@MMK_R_omegagreek" = -264;
+"@MMK_R_psigreek" = -264;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -115;
Omega = -69;
@@ -438139,8 +438139,8 @@ lambda = -69;
less = -161;
micro = -207;
pi = -207;
-rho = -264.5;
-slash = -103.5;
+rho = -264;
+slash = -103;
tau = -207;
theta = -161;
underscore = -138;
@@ -438148,10 +438148,10 @@ xi = -115;
zeta = -161;
};
H = {
-enclosingcirclecomb = -100.625;
+enclosingcirclecomb = -100;
};
Hbar = {
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 92;
idblgrave = 69;
};
@@ -438162,23 +438162,23 @@ Hdotaccent = {
idblgrave = 69;
};
I = {
-enclosingcirclecomb = 373.75;
+enclosingcirclecomb = 373;
};
Icaron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Icircumflex = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idblgrave = {
"@MMK_R_B" = 69;
idblgrave = 69;
};
Idieresis = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idieresisacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idotbelow = {
idblgrave = 69;
@@ -438187,10 +438187,10 @@ Ihookabove = {
idblgrave = 69;
};
Iinvertedbreve = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Imacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Istroke = {
"@MMK_R_Dcroat" = 69;
@@ -438198,12 +438198,12 @@ Dcroat = 69;
Istroke = 69;
Lbar = 69;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
K = {
-enclosingcirclecomb = -28.75;
+enclosingcirclecomb = -28;
};
Kacute = {
idblgrave = 92;
@@ -438212,35 +438212,35 @@ Kcaron = {
idblgrave = 92;
};
Kdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Khook = {
idblgrave = 92;
};
Klinebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
L = {
-enclosingcirclecomb = 71.875;
+enclosingcirclecomb = 71;
};
Lacute = {
"@MMK_R_asciicircum" = -92;
-"@MMK_R_hyphen" = -103.5;
+"@MMK_R_hyphen" = -103;
asciitilde = -92;
};
Lbar = {
"@MMK_R_asciicircum" = -69;
"@MMK_R_hyphen" = -69;
-degree = -80.5;
+degree = -80;
};
Lcaron = {
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asciitilde = -69;
};
Lcircumflexbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -438256,7 +438256,7 @@ Ytilde = -69;
Ldotbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -438265,7 +438265,7 @@ Ytilde = -69;
Ldotbelowmacron = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -438274,7 +438274,7 @@ Ytilde = -69;
Llinebelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -438290,7 +438290,7 @@ Yhookabove = -69;
Ytilde = -69;
};
M = {
-enclosingcirclecomb = -255.875;
+enclosingcirclecomb = -255;
};
Macute = {
idblgrave = 69;
@@ -438299,7 +438299,7 @@ Mdotaccent = {
idblgrave = 69;
};
N = {
-enclosingcirclecomb = -125.0625;
+enclosingcirclecomb = -125;
};
Ndotaccent = {
idblgrave = 69;
@@ -438330,22 +438330,22 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
Pacute = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Pdotaccent = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Phook = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Psi = {
-"@MMK_R_Alphagreek" = -126.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
-"@MMK_R_guillemetleft" = -97.75;
-"@MMK_R_guillemetright" = -40.25;
+"@MMK_R_Alphagreek" = -126;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
+"@MMK_R_guillemetleft" = -97;
+"@MMK_R_guillemetright" = -40;
"@MMK_R_hyphen" = -161;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
"@MMK_R_zero.subs" = -230;
ampersand = -69;
@@ -438358,22 +438358,22 @@ underscore = -207;
xi = -69;
};
Sigma = {
-"@MMK_R_Omicrongreek" = -80.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_Omicrongreek" = -80;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_hyphen" = -80.5;
+"@MMK_R_hyphen" = -80;
asterisk.case = -69;
-less = -126.5;
+less = -126;
pi = -69;
tau = -138;
};
Tbar = {
"@MMK_R_A" = -115;
-"@MMK_R_J" = -241.5;
+"@MMK_R_J" = -241;
"@MMK_R_approxequal" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_zero.subs" = -149.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_zero.subs" = -149;
};
Tcaron = {
"@MMK_R_hyphen" = -69;
@@ -438403,11 +438403,11 @@ Tdotbelow = {
"@MMK_R_z" = -69;
};
Thorn = {
-"@MMK_R_A" = -80.5;
-"@MMK_R_J" = -80.5;
+"@MMK_R_A" = -80;
+"@MMK_R_J" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_V" = -103.5;
-"@MMK_R_Z" = -80.5;
+"@MMK_R_V" = -103;
+"@MMK_R_Z" = -80;
"@MMK_R_comma" = -207;
"@MMK_R_quotedblbase" = -253;
"@MMK_R_quotedblleft" = -115;
@@ -438419,9 +438419,9 @@ Tlinebelow = {
"@MMK_R_z" = -69;
};
Trthook = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
Udblgrave = {
idblgrave = 69;
@@ -438443,23 +438443,23 @@ idblgrave = 69;
};
Uhornacute = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorndotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorngrave = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhornhookabove = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorntilde = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uinvertedbreve = {
idblgrave = 69;
@@ -438472,7 +438472,7 @@ idblgrave = 69;
};
Vdotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Vtilde = {
"@MMK_R_comma" = -69;
@@ -438491,7 +438491,7 @@ Wdotaccent = {
idblgrave = 92;
};
Wdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Wgrave = {
idblgrave = 92;
@@ -438519,14 +438519,14 @@ idblgrave = 92;
Ydotbelow = {
"@MMK_R_J" = -69;
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Ygrave = {
idblgrave = 92;
};
Yhook = {
-"@MMK_R_J" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_J" = -80;
+"@MMK_R_comma" = -80;
idblgrave = 92;
};
Yhookabove = {
@@ -438549,7 +438549,7 @@ Zlinebelow = {
idblgrave = 69;
};
acircumflexacute = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_idotless" = 69;
acircumflexgrave = 69;
ecircumflexgrave = 69;
@@ -438565,46 +438565,46 @@ afii10018 = {
afii10044 = -115;
};
afii10024 = {
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_hyphen" = -218.5;
-afii10038 = -103.5;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_hyphen" = -218;
+afii10038 = -103;
afii10041 = -69;
-afii10044 = -80.5;
+afii10044 = -80;
asciitilde = -69;
checyrillic = -115;
-four = -80.5;
+four = -80;
hardsigncyrillic = -92;
hryvnia = -69;
-less = -103.5;
-logicalnot = -103.5;
+less = -103;
+logicalnot = -103;
multiply = -92;
-tecyrillic = -126.5;
+tecyrillic = -126;
zecyrillic = -69;
};
afii10038 = {
-"@MMK_R_quotedblbase" = -103.5;
-afii10024 = -103.5;
+"@MMK_R_quotedblbase" = -103;
+afii10024 = -103;
afii10044 = -69;
};
afii10051 = {
"@MMK_R_one" = -69;
};
amacron = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ampersand = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -126.5;
-"@MMK_R_W" = -80.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_dagger" = -80.5;
+"@MMK_R_V" = -126;
+"@MMK_R_W" = -80;
+"@MMK_R_Y" = -149;
+"@MMK_R_dagger" = -80;
"@MMK_R_eight.sups" = -92;
"@MMK_R_quotedbl" = -69;
"@MMK_R_quotedblleft" = -184;
"@MMK_R_registered" = -46;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
-Psi = -149.5;
+Psi = -149;
afii10044 = -115;
};
asciitilde = {
@@ -438616,30 +438616,30 @@ asterisk.case = {
"@MMK_R_T" = -69;
};
at = {
-enclosingcirclecomb = -301.875;
+enclosingcirclecomb = -301;
};
at.case = {
-enclosingcirclecomb = -303.3125;
+enclosingcirclecomb = -303;
};
backslash = {
-"@MMK_R_T" = -80.5;
-"@MMK_R_V" = -103.5;
-"@MMK_R_comma" = 80.5;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_quotedblleft" = -86.25;
+"@MMK_R_T" = -80;
+"@MMK_R_V" = -103;
+"@MMK_R_comma" = 80;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_quotedblleft" = -86;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_v" = -103.5;
-Psi = -80.5;
-tenge = -103.5;
+"@MMK_R_v" = -103;
+Psi = -80;
+tenge = -103;
};
beta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
bhook = {
"@MMK_R_T" = -161;
};
bracketleft = {
-idblgrave = 80.5;
+idblgrave = 80;
};
bracketright = {
idblgrave = 69;
@@ -438651,16 +438651,16 @@ dcircumflexbelow = {
idblgrave = 69;
};
dcroat = {
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
Thook = 69;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+imacron = 80;
};
ddotaccent = {
idblgrave = 69;
@@ -438676,12 +438676,12 @@ dhook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
dlinebelow = {
idblgrave = 69;
@@ -438703,44 +438703,44 @@ ellipsis = {
quotedblreversed = -368;
};
enclosingcirclecomb = {
-"@MMK_R_A" = -43.125;
+"@MMK_R_A" = -43;
"@MMK_R_C" = -115;
-"@MMK_R_J" = 71.875;
-"@MMK_R_U" = -110.6875;
-"@MMK_R_V" = -35.9375;
-"@MMK_R_W" = -303.3125;
-"@MMK_R_Y" = -57.5;
-"@MMK_R_Z" = 14.375;
-"@MMK_R_approxequal" = -14.375;
-"@MMK_R_emdash" = -362.25;
-"@MMK_R_endash" = 172.5;
-"@MMK_R_four" = -14.375;
-"@MMK_R_hyphen" = 215.625;
-"@MMK_R_one" = 158.125;
-"@MMK_R_six" = 14.375;
-"@MMK_R_two" = 43.125;
-H = -100.625;
-I = 373.75;
-K = -28.75;
-L = 71.875;
-M = -255.875;
-N = -125.0625;
-at = -301.875;
-at.case = -303.3125;
-exclam = 359.375;
-five = 24.4375;
-greater = 43.125;
-less = -57.5;
-nine = 14.375;
+"@MMK_R_J" = 71;
+"@MMK_R_U" = -110;
+"@MMK_R_V" = -35;
+"@MMK_R_W" = -303;
+"@MMK_R_Y" = -57;
+"@MMK_R_Z" = 14;
+"@MMK_R_approxequal" = -14;
+"@MMK_R_emdash" = -362;
+"@MMK_R_endash" = 172;
+"@MMK_R_four" = -14;
+"@MMK_R_hyphen" = 215;
+"@MMK_R_one" = 158;
+"@MMK_R_six" = 14;
+"@MMK_R_two" = 43;
+H = -100;
+I = 373;
+K = -28;
+L = 71;
+M = -255;
+N = -125;
+at = -301;
+at.case = -303;
+exclam = 359;
+five = 24;
+greater = 43;
+less = -57;
+nine = 14;
plus = 0;
-question = 159.5625;
-seven = 100.625;
+question = 159;
+seven = 100;
};
eturn = {
"@MMK_R_T" = -161;
};
exclam = {
-enclosingcirclecomb = 359.375;
+enclosingcirclecomb = 359;
};
exclamdown = {
"@MMK_R_T" = -138;
@@ -438754,12 +438754,12 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
feng = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
five = {
-"@MMK_R_comma" = -54.625;
-"@MMK_R_registered" = -11.5;
-enclosingcirclecomb = 24.4375;
+"@MMK_R_comma" = -54;
+"@MMK_R_registered" = -11;
+enclosingcirclecomb = 24;
};
florin = {
"@MMK_R_idotless" = 69;
@@ -438773,8 +438773,8 @@ four.ss01 = {
"@MMK_R_comma" = -69;
};
gamma1 = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
germandbls = {
"@MMK_R_quotedblleft" = -138;
@@ -438783,54 +438783,54 @@ ghook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
greater = {
"@MMK_R_Elcyrillic" = -69;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -149.5;
-"@MMK_R_W" = -149.5;
+"@MMK_R_V" = -149;
+"@MMK_R_W" = -149;
"@MMK_R_X" = -115;
"@MMK_R_Y" = -184;
-"@MMK_R_Z" = -126.5;
-"@MMK_R_quotedblleft" = -195.5;
+"@MMK_R_Z" = -126;
+"@MMK_R_quotedblleft" = -195;
Psi = -184;
-afii10024 = -103.5;
-afii10044 = -149.5;
-enclosingcirclecomb = 43.125;
-seven = -149.5;
-tenge = -149.5;
+afii10024 = -103;
+afii10044 = -149;
+enclosingcirclecomb = 43;
+seven = -149;
+tenge = -149;
};
henghook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hhook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
iacute = {
-idblgrave = 103.5;
+idblgrave = 103;
};
ibreve = {
-"@MMK_R_idotless" = 80.5;
-idblgrave = 103.5;
-rdblgrave.1 = 80.5;
+"@MMK_R_idotless" = 80;
+idblgrave = 103;
+rdblgrave.1 = 80;
};
icaron = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
idblgrave = 115;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
icircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-itilde = 80.5;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+itilde = 80;
};
idblgrave = {
"@MMK_R_idieresis" = 69;
@@ -438841,88 +438841,88 @@ idblgrave = 69;
iinvertedbreve = 69;
};
idieresisacute = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+iinvertedbreve = 80;
};
idotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
ihookabove = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-idblgrave = 103.5;
+idblgrave = 103;
rdblgrave.1 = 69;
};
iinvertedbreve = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
-hbar = 80.5;
+hbar = 80;
idblgrave = 92;
-idieresisacute = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
-itilde = 80.5;
+idieresisacute = 80;
+iinvertedbreve = 80;
+imacron = 80;
+itilde = 80;
rdblgrave.1 = 69;
};
ij = {
idblgrave = 69;
};
imacron = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 103.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 103;
+iinvertedbreve = 80;
imacron = 92;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
infinity = {
"@MMK_R_Y" = -69;
};
itilde = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
idblgrave = 115;
};
itildebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
jcircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-itilde = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+itilde = 80;
};
l.ss02 = {
"@MMK_R_A" = 46;
-"@MMK_R_B" = 28.75;
+"@MMK_R_B" = 28;
};
lacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lambda = {
-"@MMK_R_deltagreek" = -80.5;
+"@MMK_R_deltagreek" = -80;
"@MMK_R_epsilongreek" = -69;
"@MMK_R_gammagreek" = -115;
"@MMK_R_hyphen" = -69;
-"@MMK_R_omegagreek" = -80.5;
+"@MMK_R_omegagreek" = -80;
"@MMK_R_one" = -115;
"@MMK_R_psigreek" = -69;
pi = -138;
-tau = -195.5;
+tau = -195;
};
lbar = {
-"@MMK_R_Dcroat" = 80.5;
-Dcroat = 80.5;
-Istroke = 80.5;
-Lbar = 80.5;
+"@MMK_R_Dcroat" = 80;
+Dcroat = 80;
+Istroke = 80;
+Lbar = 80;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
@@ -438930,18 +438930,18 @@ lcircumflexbelow = {
"@MMK_R_B" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
-itildebelow = 80.5;
-lcircumflexbelow = 80.5;
-llinebelow = 80.5;
-rlinebelow.1 = 80.5;
+itildebelow = 80;
+lcircumflexbelow = 80;
+llinebelow = 80;
+rlinebelow.1 = 80;
};
lcommaaccent = {
idblgrave = 69;
};
lcurl = {
-"@MMK_R_jdotless" = 201.25;
+"@MMK_R_jdotless" = 201;
};
ldot = {
"@MMK_R_Dcroat" = 69;
@@ -438954,31 +438954,31 @@ ldotbelow = {
idblgrave = 69;
};
ldotbelowmacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
less = {
-enclosingcirclecomb = -57.5;
+enclosingcirclecomb = -57;
};
lj = {
idblgrave = 69;
};
llinebelow = {
-"@MMK_R_B" = 80.5;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_B" = 80;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_parenright" = 69;
Iogonek = 69;
florin = 69;
idblgrave = 69;
itildebelow = 92;
-jcircumflex = 80.5;
-lcircumflexbelow = 80.5;
+jcircumflex = 80;
+lcircumflexbelow = 80;
llinebelow = 92;
rlinebelow.1 = 92;
underscore = 69;
};
logicalnot = {
-afii10044 = -103.5;
+afii10044 = -103;
};
lslash = {
"@MMK_R_Dcroat" = 69;
@@ -438989,12 +438989,12 @@ idblgrave = 69;
lbar = 69;
};
micro = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_hyphen" = -80.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_zero.subs" = -126.5;
-less = -80.5;
+"@MMK_R_hyphen" = -80;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_zero.subs" = -126;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -439004,82 +439004,82 @@ mturn = {
};
multiply = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_Y" = -92;
afii10024 = -92;
-afii10044 = -149.5;
+afii10044 = -149;
afii10049 = -92;
tenge = -69;
};
nine = {
-enclosingcirclecomb = 14.375;
+enclosingcirclecomb = 14;
};
nj = {
idblgrave = 69;
};
nlfthook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ntilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ocircumflexacute = {
"@MMK_R_B" = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
ocircumflexhookabove = {
idblgrave = 92;
};
odieresis = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ohorntilde = {
idblgrave = 69;
};
onefraction = {
-seven.dnomf = 43.125;
+seven.dnomf = 43;
};
otilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
parenleft = {
-idblgrave = 195.5;
+idblgrave = 195;
};
percent = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -138;
};
periodcentered = {
"@MMK_R_A" = -69;
"@MMK_R_J" = -92;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_X" = -92;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_Y" = -103;
};
pi = {
"@MMK_R_deltagreek" = -69;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = 69;
};
plus = {
enclosingcirclecomb = 0;
};
question = {
-"@MMK_R_A" = -126.5;
-"@MMK_R_Alphagreek" = -126.5;
-enclosingcirclecomb = 159.5625;
+"@MMK_R_A" = -126;
+"@MMK_R_Alphagreek" = -126;
+enclosingcirclecomb = 159;
};
questiondown = {
"@MMK_R_gammagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -69;
Psi = -184;
Tbar = -138;
};
r = {
-"@MMK_R_v" = 34.5;
-"@MMK_R_x" = 34.5;
+"@MMK_R_v" = 34;
+"@MMK_R_x" = 34;
};
rcaron.1 = {
idblgrave = 92;
@@ -439089,14 +439089,14 @@ rdotbelowmacron.1 = {
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
rinvertedbreve.1 = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
sacutedotaccent = {
idblgrave = 69;
@@ -439108,68 +439108,68 @@ schwa = {
"@MMK_R_T" = -161;
};
seven = {
-"@MMK_R_A" = -218.5;
-"@MMK_R_Alphagreek" = -218.5;
-"@MMK_R_J" = -195.5;
+"@MMK_R_A" = -218;
+"@MMK_R_Alphagreek" = -218;
+"@MMK_R_J" = -195;
"@MMK_R_a" = -92;
-"@MMK_R_c" = -103.5;
+"@MMK_R_c" = -103;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -253;
-"@MMK_R_deltagreek" = -103.5;
-"@MMK_R_epsilongreek" = -103.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_deltagreek" = -103;
+"@MMK_R_epsilongreek" = -103;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_idieresis" = 184;
-"@MMK_R_iotadieresisgreek" = -103.5;
-"@MMK_R_omegagreek" = -103.5;
-"@MMK_R_quotedblbase" = -287.5;
-"@MMK_R_s" = -80.5;
-"@MMK_R_six" = -31.625;
+"@MMK_R_iotadieresisgreek" = -103;
+"@MMK_R_omegagreek" = -103;
+"@MMK_R_quotedblbase" = -287;
+"@MMK_R_s" = -80;
+"@MMK_R_six" = -31;
"@MMK_R_six.1" = -69;
"@MMK_R_zero.subs" = -184;
ampersand = -92;
-eight = -28.75;
-enclosingcirclecomb = 100.625;
-five = -20.125;
-four = -117.875;
-four.ss01 = -126.5;
+eight = -28;
+enclosingcirclecomb = 100;
+five = -20;
+four = -117;
+four.ss01 = -126;
less = -184;
-nine = -20.125;
+nine = -20;
numbersign = -115;
-rho = -103.5;
-seven = 40.25;
-theta = -103.5;
+rho = -103;
+seven = 40;
+theta = -103;
underscore = -322;
-zeta = -103.5;
+zeta = -103;
};
seven.dnomf = {
-"@MMK_R_six.dnomf" = -18.6875;
-eight.dnomf = -17.25;
-five.dnomf = -12.21875;
-four.dnomf = -70.4375;
-nine.dnomf = -12.21875;
-seven.dnomf = 24.4375;
+"@MMK_R_six.dnomf" = -18;
+eight.dnomf = -17;
+five.dnomf = -12;
+four.dnomf = -70;
+nine.dnomf = -12;
+seven.dnomf = 24;
};
seven.frac = {
-four.frac = -71.875;
-fraction = -143.75;
+four.frac = -71;
+fraction = -143;
};
seven.numr = {
-four.numr = -71.875;
+four.numr = -71;
};
seven.sups = {
-"@MMK_R_six.sups" = -20.84375;
-eight.sups = -19.40625;
-five.sups = -13.65625;
-four.sups = -78.34375;
-nine.sups = -13.65625;
-seven.sups = 26.59375;
+"@MMK_R_six.sups" = -20;
+eight.sups = -19;
+five.sups = -13;
+four.sups = -78;
+nine.sups = -13;
+seven.sups = 26;
};
sigma = {
-"@MMK_R_Alphagreek" = -80.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_Alphagreek" = -80;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_zero.subs" = -69;
lambda = -138;
logicalnot = -69;
@@ -439181,13 +439181,13 @@ six = {
underscore = -92;
};
slash = {
-"@MMK_R_J" = -126.5;
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_J" = -126;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
tau = {
-"@MMK_R_deltagreek" = -80.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_deltagreek" = -80;
+"@MMK_R_quotedblleft" = -80;
};
tccurl = {
"@MMK_R_T" = -161;
@@ -439200,22 +439200,22 @@ llinebelow = 69;
rlinebelow.1 = 69;
};
tecyrillic = {
-"@MMK_R_quotedblbase" = -149.5;
+"@MMK_R_quotedblbase" = -149;
};
theta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
thook = {
idblgrave = 92;
};
three.frac = {
-fraction = -28.75;
+fraction = -28;
};
tlinebelow = {
"@MMK_R_B" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
llinebelow = 69;
-rlinebelow.1 = 80.5;
+rlinebelow.1 = 80;
};
ubar = {
"@MMK_R_Dcroat" = 69;
@@ -439241,27 +439241,27 @@ uhorntilde = {
hbar = 69;
};
underscore = {
-"@MMK_R_C" = -80.5;
-"@MMK_R_Omicrongreek" = -80.5;
+"@MMK_R_C" = -80;
+"@MMK_R_Omicrongreek" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_U" = -80.5;
+"@MMK_R_U" = -80;
"@MMK_R_V" = -161;
"@MMK_R_asciicircum" = -138;
"@MMK_R_gammagreek" = -115;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 195.5;
+"@MMK_R_jdotless" = 195;
"@MMK_R_m" = 92;
"@MMK_R_nine.1" = -92;
-"@MMK_R_one" = -218.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_one" = -218;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_six" = -92;
"@MMK_R_three" = -92;
"@MMK_R_v" = -161;
-Psi = -195.5;
+Psi = -195;
afii10021 = 115;
-afii10041 = -218.5;
-afii10044 = -103.5;
-afii10047 = -80.5;
+afii10041 = -218;
+afii10044 = -103;
+afii10047 = -80;
decyrillic = 92;
eight = -92;
five = -92;
@@ -439269,36 +439269,36 @@ four = -115;
llinebelow = 69;
nine = -92;
rlinebelow.1 = 69;
-tenge = -103.5;
+tenge = -103;
};
uni01F6 = {
"@MMK_R_T" = -92;
};
uni023E = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
uni0240 = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
uni0247 = {
"@MMK_R_T" = -161;
};
uni024F = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
uni20BD = {
"@MMK_R_comma" = -138;
-slash = -80.5;
-underscore = -103.5;
+slash = -80;
+underscore = -103;
};
vturn = {
-"@MMK_R_T.sc" = -86.25;
+"@MMK_R_T.sc" = -86;
};
won = {
-idblgrave = 80.5;
+idblgrave = 80;
};
xi = {
Psi = -92;
@@ -439312,10 +439312,10 @@ ytilde = {
idblgrave = 69;
};
zbar = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
zcurl = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
};
zdotbelow = {
"@MMK_R_T" = -69;
@@ -439338,49 +439338,49 @@ Tdotaccent = -69;
Tdotbelow = -69;
};
zrthook = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
};
"5C20EF92-B63D-42A8-8878-93C2863E0093" = {
"@MMK_L_A" = {
"@MMK_R_C" = -69;
-"@MMK_R_S" = -57.5;
-"@MMK_R_T" = -186.875;
-"@MMK_R_V" = -212.75;
-"@MMK_R_W" = -172.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_asciicircum" = -218.5;
-"@MMK_R_c" = -86.25;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_S" = -57;
+"@MMK_R_T" = -186;
+"@MMK_R_V" = -212;
+"@MMK_R_W" = -172;
+"@MMK_R_Y" = -149;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_asciicircum" = -218;
+"@MMK_R_c" = -86;
+"@MMK_R_dagger" = -149;
"@MMK_R_eight.sups" = -184;
-"@MMK_R_f" = -34.5;
+"@MMK_R_f" = -34;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_idieresis" = 92;
"@MMK_R_idotless" = 0;
-"@MMK_R_nine.1" = -20.125;
+"@MMK_R_nine.1" = -20;
"@MMK_R_one" = -69;
"@MMK_R_quotedbl" = -161;
-"@MMK_R_quotedblleft" = -264.5;
+"@MMK_R_quotedblleft" = -264;
"@MMK_R_quotedblright" = -207;
-"@MMK_R_registered" = -143.75;
-"@MMK_R_s" = -43.125;
+"@MMK_R_registered" = -143;
+"@MMK_R_s" = -43;
"@MMK_R_t" = -69;
"@MMK_R_v" = -138;
"@MMK_R_w" = -138;
Tbar = -115;
asterisk.case = -69;
-less = -143.75;
+less = -143;
llinebelow = 69;
periodcentered = -69;
-question = -126.5;
+question = -126;
rlinebelow.1 = 69;
};
"@MMK_L_Alphagreek" = {
"@MMK_R_Omicrongreek" = -69;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_deltagreek" = -69;
"@MMK_R_eight.sups" = -184;
"@MMK_R_gammagreek" = -138;
@@ -439388,15 +439388,15 @@ rlinebelow.1 = 69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_omegagreek" = -69;
"@MMK_R_one" = -69;
-"@MMK_R_quotedbl" = -195.5;
+"@MMK_R_quotedbl" = -195;
"@MMK_R_quotedblleft" = -276;
-"@MMK_R_quotedblright" = -195.5;
-Psi = -126.5;
+"@MMK_R_quotedblright" = -195;
+Psi = -126;
asterisk.case = -69;
-question = -126.5;
-tau = -103.5;
-theta = -80.5;
-zeta = -80.5;
+question = -126;
+tau = -103;
+theta = -80;
+zeta = -80;
};
"@MMK_L_B" = {
"@MMK_R_idieresis" = 69;
@@ -439406,29 +439406,29 @@ zeta = -80.5;
"@MMK_R_X" = -46;
"@MMK_R_idieresis" = 69;
"@MMK_R_v" = 23;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_D" = {
"@MMK_R_A" = -92;
"@MMK_R_T" = -69;
"@MMK_R_V" = -92;
"@MMK_R_W" = -92;
-"@MMK_R_X" = -97.75;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_X" = -97;
+"@MMK_R_Y" = -103;
"@MMK_R_comma" = -92;
"@MMK_R_jdotless" = 0;
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
"@MMK_R_quotedblleft" = -69;
-"@MMK_R_registered" = -11.5;
-slash = -80.5;
-underscore = -80.5;
+"@MMK_R_registered" = -11;
+slash = -80;
+underscore = -80;
};
"@MMK_L_Decyrillic" = {
afii10021 = 69;
-underscore = 126.5;
+underscore = 126;
};
"@MMK_L_E" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
idblgrave = 69;
};
"@MMK_L_Ecyrillic" = {
@@ -439437,20 +439437,20 @@ idblgrave = 69;
"@MMK_L_Ereversedcyrillic" = {
"@MMK_R_comma" = -92;
"@MMK_R_quotedblbase" = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_F" = {
"@MMK_R_A" = -184;
"@MMK_R_J" = -138;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_c" = -80;
+"@MMK_R_comma" = -80;
"@MMK_R_m" = -23;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_u" = -69;
"@MMK_R_v" = -69;
"@MMK_R_z" = -69;
-ellipsis = -172.5;
+ellipsis = -172;
idblgrave = 69;
period = -69;
underscore = -69;
@@ -439470,9 +439470,9 @@ rdblgrave.1 = 69;
};
"@MMK_L_H" = {
"@MMK_R_Idieresis" = 161;
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
Idieresisacute = 92;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
iogonek = 69;
lcircumflexbelow = 69;
@@ -439484,64 +439484,64 @@ underscore = 69;
"@MMK_R_B.sups" = 0;
};
"@MMK_L_Idieresis" = {
-"@MMK_R_parenright.case" = 143.75;
+"@MMK_R_parenright.case" = 143;
};
"@MMK_L_J" = {
"@MMK_R_comma" = -69;
"@MMK_R_quotedblbase" = -161;
idblgrave = 69;
slash = -115;
-underscore = -103.5;
+underscore = -103;
};
"@MMK_L_K" = {
"@MMK_R_C" = -92;
"@MMK_R_S" = -48;
"@MMK_R_approxequal" = -69;
-"@MMK_R_c" = -80.5;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_c" = -80;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_idieresis" = 172;
"@MMK_R_idotless" = 69;
-"@MMK_R_registered" = -30.1875;
+"@MMK_R_registered" = -30;
"@MMK_R_u" = -69;
-"@MMK_R_v" = -80.5;
-"@MMK_R_w" = -126.5;
+"@MMK_R_v" = -80;
+"@MMK_R_w" = -126;
asterisk.case = -69;
-idblgrave = 80.5;
+idblgrave = 80;
idieresisacute = 69;
infinity = -69;
less = -138;
-logicalnot = -103.5;
+logicalnot = -103;
periodcentered = -92;
};
"@MMK_L_L" = {
"@MMK_R_A" = 0;
-"@MMK_R_C" = -57.5;
-"@MMK_R_T" = -175.375;
-"@MMK_R_V" = -172.5;
+"@MMK_R_C" = -57;
+"@MMK_R_T" = -175;
+"@MMK_R_V" = -172;
"@MMK_R_W" = -138;
-"@MMK_R_Y" = -267.375;
-"@MMK_R_asciicircum" = -264.5;
-"@MMK_R_dagger" = -195.5;
-"@MMK_R_eight.sups" = -310.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_Y" = -267;
+"@MMK_R_asciicircum" = -264;
+"@MMK_R_dagger" = -195;
+"@MMK_R_eight.sups" = -310;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_one" = -92;
"@MMK_R_quotedbl" = -184;
-"@MMK_R_quotedblleft" = -172.5;
-"@MMK_R_quotedblright" = -80.5;
-"@MMK_R_registered" = -163.875;
+"@MMK_R_quotedblleft" = -172;
+"@MMK_R_quotedblright" = -80;
+"@MMK_R_registered" = -163;
"@MMK_R_t" = -46;
"@MMK_R_v" = -138;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
-asciitilde = -80.5;
-asterisk = -80.5;
+asciitilde = -80;
+asterisk = -80;
asterisk.case = -69;
degree = -92;
-hyphen = -103.5;
-logicalnot = -264.5;
-periodcentered = -126.5;
+hyphen = -103;
+logicalnot = -264;
+periodcentered = -126;
quotedblreversed = -92;
quotereversed = -92;
tripleprime = -138;
@@ -439550,18 +439550,18 @@ tripleprime = -138;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_comma" = -92;
"@MMK_R_quotedblleft" = -69;
-slash = -80.5;
-underscore = -80.5;
+slash = -80;
+underscore = -80;
};
"@MMK_L_P" = {
"@MMK_R_A" = -184;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -48.875;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -48;
"@MMK_R_c" = -23;
-"@MMK_R_comma" = -80.5;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_comma" = -80;
+"@MMK_R_quotedblbase" = -287;
ampersand = -69;
-ellipsis = -195.5;
+ellipsis = -195;
period = -69;
};
"@MMK_L_R" = {
@@ -439571,229 +439571,229 @@ period = -69;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_S" = {
-"@MMK_R_A" = -57.5;
+"@MMK_R_A" = -57;
"@MMK_R_X" = -48;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_T" = {
-"@MMK_R_A" = -186.875;
+"@MMK_R_A" = -186;
"@MMK_R_C" = -69;
"@MMK_R_J" = -184;
-"@MMK_R_a" = -149.5;
+"@MMK_R_a" = -149;
"@MMK_R_c" = -161;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_idblgrave" = 310.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_idblgrave" = 310;
"@MMK_R_idieresis" = 184;
"@MMK_R_m" = -115;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_s" = -149.5;
-"@MMK_R_u" = -149.5;
-"@MMK_R_v" = -126.5;
-"@MMK_R_w" = -126.5;
-"@MMK_R_x" = -11.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_s" = -149;
+"@MMK_R_u" = -149;
+"@MMK_R_v" = -126;
+"@MMK_R_w" = -126;
+"@MMK_R_x" = -11;
"@MMK_R_z" = -92;
-adieresis = -80.5;
+adieresis = -80;
ampersand = -69;
asterisk.case = -69;
-atilde = -80.5;
-colon.case = -80.5;
-edieresis = -103.5;
-ellipsis = -172.5;
+atilde = -80;
+colon.case = -80;
+edieresis = -103;
+ellipsis = -172;
four = -138;
hyphen = -69;
less = -161;
-odieresis = -103.5;
-otilde = -103.5;
+odieresis = -103;
+otilde = -103;
periodcentered = -161;
slash = -161;
-udieresis = -103.5;
+udieresis = -103;
underscore = -115;
-uni0240 = -80.5;
-utilde = -80.5;
-wdieresis = -103.5;
+uni0240 = -80;
+utilde = -80;
+wdieresis = -103;
ydieresis = -69;
-zbar = -80.5;
-zcurl = -80.5;
-zrthook = -80.5;
+zbar = -80;
+zcurl = -80;
+zrthook = -80;
};
"@MMK_L_T.sc" = {
-"@MMK_R_a" = -28.75;
-"@MMK_R_c" = -28.75;
+"@MMK_R_a" = -28;
+"@MMK_R_c" = -28;
"@MMK_R_comma" = -184;
-"@MMK_R_elcyrillic" = -86.25;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_elcyrillic" = -86;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_quotedblbase" = -241;
integral = -115;
logicalnot = -69;
-underscore = -103.5;
-vturn = -86.25;
+underscore = -103;
+vturn = -86;
};
"@MMK_L_V" = {
-"@MMK_R_A" = -241.5;
+"@MMK_R_A" = -241;
"@MMK_R_C" = -92;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -135.125;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -140.875;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -135;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -140;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_idieresis" = 172;
"@MMK_R_quotedblbase" = -230;
"@MMK_R_s" = -92;
-adieresis = -80.5;
-ampersand = -103.5;
+adieresis = -80;
+ampersand = -103;
at = -69;
-backslash = 28.75;
+backslash = 28;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
-logicalnot = -126.5;
-multiply = -80.5;
+idblgrave = 80;
+less = -149;
+logicalnot = -126;
+multiply = -80;
otilde = -92;
-periodcentered = -80.5;
+periodcentered = -80;
questiondown = -115;
-slash = -117.875;
+slash = -117;
underscore = -161;
};
"@MMK_L_W" = {
-"@MMK_R_A" = -172.5;
+"@MMK_R_A" = -172;
"@MMK_R_C" = -92;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_S" = -23;
-"@MMK_R_a" = -129.375;
-"@MMK_R_approxequal" = -126.5;
+"@MMK_R_a" = -129;
+"@MMK_R_approxequal" = -126;
"@MMK_R_c" = -200;
-"@MMK_R_colon" = -103.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_colon" = -103;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
"@MMK_R_m" = -69;
-"@MMK_R_quotedblbase" = -218.5;
+"@MMK_R_quotedblbase" = -218;
"@MMK_R_s" = -69;
-ampersand = -103.5;
-backslash = 28.75;
+ampersand = -103;
+backslash = 28;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
+idblgrave = 80;
+less = -149;
periodcentered = -69;
questiondown = -115;
-slash = -117.875;
+slash = -117;
};
"@MMK_L_X" = {
-"@MMK_R_C" = -97.75;
+"@MMK_R_C" = -97;
"@MMK_R_S" = -48;
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_c" = -57.5;
-"@MMK_R_guillemetleft" = -80.5;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_c" = -57;
+"@MMK_R_guillemetleft" = -80;
"@MMK_R_hyphen" = -92;
-"@MMK_R_registered" = -14.375;
+"@MMK_R_registered" = -14;
asterisk.case = -92;
-idblgrave = 80.5;
+idblgrave = 80;
less = -115;
periodcentered = -92;
};
"@MMK_L_Y" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_C" = -103.5;
+"@MMK_R_A" = -149;
+"@MMK_R_C" = -103;
"@MMK_R_J" = -69;
"@MMK_R_T" = 92;
-"@MMK_R_a" = -258.75;
-"@MMK_R_approxequal" = -195.5;
-"@MMK_R_c" = -278.875;
-"@MMK_R_colon" = -126.5;
+"@MMK_R_a" = -258;
+"@MMK_R_approxequal" = -195;
+"@MMK_R_c" = -278;
+"@MMK_R_colon" = -126;
"@MMK_R_comma" = -184;
"@MMK_R_guillemetleft" = -184;
-"@MMK_R_guillemetright" = -126.5;
-"@MMK_R_idotless" = -28.75;
-"@MMK_R_m" = -80.5;
-"@MMK_R_quotedblbase" = -218.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_guillemetright" = -126;
+"@MMK_R_idotless" = -28;
+"@MMK_R_m" = -80;
+"@MMK_R_quotedblbase" = -218;
+"@MMK_R_registered" = -17;
"@MMK_R_s" = -138;
-"@MMK_R_u" = -80.5;
+"@MMK_R_u" = -80;
alpha = -115;
-ampersand = -126.5;
-asterisk.case = -80.5;
+ampersand = -126;
+asterisk.case = -80;
ccurl = -115;
chook = -115;
drthook = -115;
dyogh = -115;
dz = -115;
dzcurl = -115;
-ellipsis = -195.5;
+ellipsis = -195;
eturn = -115;
four = -138;
-iacute = -86.25;
-idblgrave = 80.5;
+iacute = -86;
+idblgrave = 80;
infinity = -69;
less = -207;
-logicalnot = -103.5;
+logicalnot = -103;
multiply = -92;
omacron = -115;
-periodcentered = -103.5;
+periodcentered = -103;
qrthook = -115;
-questiongreek = -126.5;
+questiongreek = -126;
schwa = -115;
uni0221 = -115;
uni0247 = -115;
-uni0248 = -241.5;
+uni0248 = -241;
};
"@MMK_L_Z" = {
"@MMK_R_C" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_idieresis" = 172;
idblgrave = 69;
-less = -126.5;
+less = -126;
periodcentered = -69;
};
"@MMK_L_a" = {
"@MMK_R_T" = -92;
-"@MMK_R_T.sc" = -28.75;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -235.75;
-"@MMK_R_one" = -80.5;
+"@MMK_R_T.sc" = -28;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -235;
+"@MMK_R_one" = -80;
"@MMK_R_quotedblleft" = -92;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_registered" = -17;
"@MMK_R_t" = -16;
-"@MMK_R_v" = -40.25;
+"@MMK_R_v" = -40;
Gamma1 = -69;
-Trthook = -149.5;
-Yhook = -103.5;
-uni023E = -149.5;
+Trthook = -149;
+Yhook = -103;
+uni023E = -149;
};
"@MMK_L_a.sups" = {
-"@MMK_R_v.sups" = -26.59375;
+"@MMK_R_v.sups" = -26;
};
"@MMK_L_alphagreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
};
"@MMK_L_approxequal" = {
-"@MMK_R_A" = -103.5;
+"@MMK_R_A" = -103;
"@MMK_R_V" = -138;
-"@MMK_R_W" = -126.5;
-"@MMK_R_X" = -103.5;
-"@MMK_R_Y" = -195.5;
+"@MMK_R_W" = -126;
+"@MMK_R_X" = -103;
+"@MMK_R_Y" = -195;
"@MMK_R_quotedblleft" = -115;
-"@MMK_R_v" = -80.5;
+"@MMK_R_v" = -80;
"@MMK_R_x" = -69;
afii10044 = -92;
-tenge = -80.5;
+tenge = -80;
};
"@MMK_L_asciicircum" = {
-"@MMK_R_A" = -218.5;
+"@MMK_R_A" = -218;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Dcroat" = 69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_J" = -195.5;
+"@MMK_R_J" = -195;
"@MMK_R_comma" = -276;
ampersand = -69;
four = -92;
@@ -439801,30 +439801,30 @@ underscore = -138;
};
"@MMK_L_b" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -80.5;
-"@MMK_R_T.sc" = -28.75;
-"@MMK_R_V" = -140.875;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -57.5;
-"@MMK_R_Y" = -278.875;
+"@MMK_R_T" = -80;
+"@MMK_R_T.sc" = -28;
+"@MMK_R_V" = -140;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -57;
+"@MMK_R_Y" = -278;
"@MMK_R_dagger" = -69;
-"@MMK_R_parenright" = -28.75;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_parenright" = -28;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_registered" = -23;
-"@MMK_R_v" = -34.5;
-"@MMK_R_w" = -20.125;
-"@MMK_R_x" = -37.375;
+"@MMK_R_v" = -34;
+"@MMK_R_w" = -20;
+"@MMK_R_x" = -37;
Trthook = -161;
-Yhook = -103.5;
+Yhook = -103;
idblgrave = 69;
jcrosstail = -92;
uni023E = -161;
};
"@MMK_L_b.sups" = {
-"@MMK_R_parenright.sups" = -19.40625;
+"@MMK_R_parenright.sups" = -19;
"@MMK_R_v.sups" = -23;
-"@MMK_R_w.sups" = -13.65625;
-"@MMK_R_x.sups" = -25.15625;
+"@MMK_R_w.sups" = -13;
+"@MMK_R_x.sups" = -25;
};
"@MMK_L_becyrillic" = {
hardsigncyrillic = -69;
@@ -439833,47 +439833,47 @@ hardsigncyrillic = -69;
"@MMK_R_T" = -230;
"@MMK_R_T.sc" = -115;
"@MMK_R_V" = -230;
-"@MMK_R_X" = -57.5;
+"@MMK_R_X" = -57;
"@MMK_R_Y" = -345;
-"@MMK_R_dagger" = -86.25;
-"@MMK_R_parenright" = -57.5;
-"@MMK_R_quotedblleft" = -143.75;
-"@MMK_R_v" = -86.25;
-"@MMK_R_w" = -57.5;
-"@MMK_R_x" = -28.75;
+"@MMK_R_dagger" = -86;
+"@MMK_R_parenright" = -57;
+"@MMK_R_quotedblleft" = -143;
+"@MMK_R_v" = -86;
+"@MMK_R_w" = -57;
+"@MMK_R_x" = -28;
};
"@MMK_L_c" = {
-"@MMK_R_T" = -149.5;
-"@MMK_R_T.sc" = -11.5;
-"@MMK_R_W" = -97.75;
-"@MMK_R_Y" = -126.5;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_T" = -149;
+"@MMK_R_T.sc" = -11;
+"@MMK_R_W" = -97;
+"@MMK_R_Y" = -126;
+"@MMK_R_registered" = -11;
idblgrave = 69;
};
"@MMK_L_colon" = {
"@MMK_R_T" = -69;
-"@MMK_R_V" = -126.5;
+"@MMK_R_V" = -126;
"@MMK_R_quotedblleft" = -92;
-Psi = -126.5;
+Psi = -126;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-afii10044 = -103.5;
-uni023E = -80.5;
+Trthook = -80;
+afii10044 = -103;
+uni023E = -80;
};
"@MMK_L_comma" = {
"@MMK_R_T" = -69;
-"@MMK_R_T.sc" = -129.375;
+"@MMK_R_T.sc" = -129;
"@MMK_R_Y" = -184;
-"@MMK_R_nine.1" = -103.5;
-"@MMK_R_one" = -189.75;
+"@MMK_R_nine.1" = -103;
+"@MMK_R_one" = -189;
"@MMK_R_quotedbl" = -230;
-"@MMK_R_quotedblright" = -258.75;
-"@MMK_R_six" = -66.125;
-"@MMK_R_three" = -40.25;
+"@MMK_R_quotedblright" = -258;
+"@MMK_R_six" = -66;
+"@MMK_R_three" = -40;
Tbar = -69;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
@@ -439888,36 +439888,36 @@ Ytilde = -69;
eight = -69;
exclam = -46;
grave = -276;
-nine = -35.9375;
-question = -232.875;
+nine = -35;
+question = -232;
quotedblreversed = -276;
quotereversed = -276;
-seven = -71.875;
+seven = -71;
space = -115;
};
"@MMK_L_dagger" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_Alphagreek" = -149.5;
-"@MMK_R_J" = -149.5;
+"@MMK_R_A" = -149;
+"@MMK_R_Alphagreek" = -149;
+"@MMK_R_J" = -149;
"@MMK_R_c" = -69;
-Hbar = 80.5;
-ampersand = -80.5;
+Hbar = 80;
+ampersand = -80;
};
"@MMK_L_dcaron" = {
-"@MMK_R_T" = 80.5;
+"@MMK_R_T" = 80;
"@MMK_R_asciicircum" = 115;
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 138;
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_one" = 92;
-"@MMK_R_parenleft" = 28.75;
-"@MMK_R_parenright" = 143.75;
+"@MMK_R_parenleft" = 28;
+"@MMK_R_parenright" = 143;
"@MMK_R_parenright.case" = 115;
"@MMK_R_quotedbl" = 69;
"@MMK_R_quotedblleft" = 69;
-"@MMK_R_registered" = 34.5;
+"@MMK_R_registered" = 34;
hbar = 69;
ibreve = 69;
icaron = 69;
@@ -439932,42 +439932,42 @@ seven = 92;
underscore = 92;
};
"@MMK_L_deltagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
tau = -69;
};
"@MMK_L_e" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_T.sc" = -20.125;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -258.75;
-"@MMK_R_registered" = -34.5;
-"@MMK_R_v" = -28.75;
-"@MMK_R_w" = -14.375;
-"@MMK_R_x" = -11.5;
-Gamma1 = -80.5;
+"@MMK_R_T" = -103;
+"@MMK_R_T.sc" = -20;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -258;
+"@MMK_R_registered" = -34;
+"@MMK_R_v" = -28;
+"@MMK_R_w" = -14;
+"@MMK_R_x" = -11;
+Gamma1 = -80;
Trthook = -161;
-Yhook = -80.5;
+Yhook = -80;
uni023E = -161;
};
"@MMK_L_e.sups" = {
-"@MMK_R_v.sups" = -19.40625;
-"@MMK_R_w.sups" = -9.34375;
-"@MMK_R_x.sups" = -7.90625;
+"@MMK_R_v.sups" = -19;
+"@MMK_R_w.sups" = -9;
+"@MMK_R_x.sups" = -7;
};
"@MMK_L_eight" = {
-"@MMK_R_comma" = -40.25;
+"@MMK_R_comma" = -40;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_quotedblbase" = -103;
};
"@MMK_L_eight.sups" = {
"@MMK_R_A" = -184;
"@MMK_R_Alphagreek" = -184;
"@MMK_R_J" = -230;
-"@MMK_R_comma" = -218.5;
+"@MMK_R_comma" = -218;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_t" = 69;
Hbar = 92;
four = -115;
@@ -439980,42 +439980,42 @@ Psi = -92;
};
"@MMK_L_f" = {
"@MMK_R_A" = -69;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_a" = -46;
-"@MMK_R_bullet" = -28.75;
+"@MMK_R_bullet" = -28;
"@MMK_R_c" = -34;
"@MMK_R_comma" = -115;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -28.75;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -28;
"@MMK_R_idieresis" = 207;
"@MMK_R_quotedblbase" = -184;
-"@MMK_R_s" = -28.75;
-four = -126.5;
-hturnhook2 = 80.5;
+"@MMK_R_s" = -28;
+four = -126;
+hturnhook2 = 80;
idblgrave = 92;
-underscore = -28.75;
+underscore = -28;
};
"@MMK_L_f.sups" = {
-"@MMK_R_a.sups" = -30.90625;
+"@MMK_R_a.sups" = -30;
"@MMK_R_c.sups" = -23;
-"@MMK_R_s.sups" = -19.40625;
+"@MMK_R_s.sups" = -19;
};
"@MMK_L_four" = {
-"@MMK_R_one" = -20.125;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_one" = -20;
+"@MMK_R_registered" = -11;
};
"@MMK_L_four.dnomf" = {
-"@MMK_R_one.dnomf" = -12.21875;
+"@MMK_R_one.dnomf" = -12;
};
"@MMK_L_four.sups" = {
-"@MMK_R_one.sups" = -13.65625;
+"@MMK_R_one.sups" = -13;
};
"@MMK_L_fraction" = {
-"@MMK_R_four.dnomf" = -143.75;
+"@MMK_R_four.dnomf" = -143;
};
"@MMK_L_g" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_jdotless" = 34.5;
+"@MMK_R_T" = -103;
+"@MMK_R_jdotless" = 34;
underscore = 69;
};
"@MMK_L_g.sups" = {
@@ -440023,48 +440023,48 @@ underscore = 69;
};
"@MMK_L_gammagreek" = {
"@MMK_R_Alphagreek" = -138;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = 69;
Sigma = -69;
-lambda = -80.5;
-less = -80.5;
+lambda = -80;
+less = -80;
logicalnot = -69;
slash = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_guillemetleft" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -103.5;
-"@MMK_R_Y" = -126.5;
-Psi = -126.5;
+"@MMK_R_T" = -103;
+"@MMK_R_Y" = -126;
+Psi = -126;
afii10044 = -138;
};
"@MMK_L_guillemetright" = {
"@MMK_R_A" = -69;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_T" = -264.5;
-"@MMK_R_V" = -126.5;
+"@MMK_R_T" = -264;
+"@MMK_R_V" = -126;
"@MMK_R_W" = -115;
-"@MMK_R_X" = -80.5;
+"@MMK_R_X" = -80;
"@MMK_R_Y" = -184;
"@MMK_R_Z" = -69;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_one" = -80.5;
-"@MMK_R_quotedblleft" = -172.5;
+"@MMK_R_one" = -80;
+"@MMK_R_quotedblleft" = -172;
"@MMK_R_three" = -92;
-"@MMK_R_two" = -103.5;
+"@MMK_R_two" = -103;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
"@MMK_R_x" = -69;
Psi = -184;
-afii10024 = -103.5;
+afii10024 = -103;
afii10044 = -138;
eight = -69;
-seven = -103.5;
+seven = -103;
};
"@MMK_L_hyphen" = {
"@MMK_R_X" = -92;
@@ -440073,46 +440073,46 @@ seven = -103.5;
seven = -69;
};
"@MMK_L_idieresis" = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_T" = 184;
-"@MMK_R_V" = 172.5;
+"@MMK_R_V" = 172;
"@MMK_R_Z" = 184;
-"@MMK_R_f" = 80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_f" = 80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 184;
"@MMK_R_jdotless" = -115;
"@MMK_R_one" = 92;
-"@MMK_R_t" = 103.5;
+"@MMK_R_t" = 103;
Dhook = 69;
-Dzcaron_ = 149.5;
-Enhookcyrillic = 149.5;
-Nhook = 149.5;
-Rx = 149.5;
+Dzcaron_ = 149;
+Enhookcyrillic = 149;
+Nhook = 149;
+Rx = 149;
Thook = 69;
-afii10026 = 149.5;
-hbar = 80.5;
+afii10026 = 149;
+hbar = 80;
ibreve = 69;
icaron = 69;
icircumflex = 69;
-idblgrave = 103.5;
+idblgrave = 103;
igrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
+imacron = 80;
jcircumflex = 69;
jcrosstail = -115;
-numero = 149.5;
-rdblgrave.1 = 80.5;
+numero = 149;
+rdblgrave.1 = 80;
seven = 184;
-uni01F6 = 149.5;
-uni0246 = 149.5;
-uni0376 = 149.5;
-uni048A = 149.5;
+uni01F6 = 149;
+uni0246 = 149;
+uni0376 = 149;
+uni048A = 149;
};
"@MMK_L_idotless" = {
"@MMK_R_B" = 0;
"@MMK_R_V" = 69;
"@MMK_R_W" = 69;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_parenright" = 69;
"@MMK_R_parenright.case" = 115;
Dhook = 69;
@@ -440123,21 +440123,21 @@ Vtilde = 69;
Wdotaccent = 69;
Wdotbelow = 69;
florin = 69;
-hbar = 80.5;
-ibreve = 80.5;
+hbar = 80;
+ibreve = 80;
idblgrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
-iogonek = 80.5;
+imacron = 80;
+iogonek = 80;
itilde = 69;
itildebelow = 92;
-jcircumflex = 80.5;
+jcircumflex = 80;
lcircumflexbelow = 69;
llinebelow = 92;
rdblgrave.1 = 69;
rlinebelow.1 = 92;
tlinebelow = 69;
-underscore = 80.5;
+underscore = 80;
won = 69;
yen = 69;
};
@@ -440146,11 +440146,11 @@ yen = 69;
"@MMK_R_parenright.sups" = 46;
};
"@MMK_L_iotadieresisgreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -440158,47 +440158,47 @@ underscore = -69;
"@MMK_L_k" = {
"@MMK_R_T" = -115;
"@MMK_R_c" = -46;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_v" = 28.75;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_v" = 28;
four = -92;
-less = -172.5;
+less = -172;
logicalnot = -138;
};
"@MMK_L_k.sups" = {
-"@MMK_R_c.sups" = -30.90625;
-"@MMK_R_v.sups" = 19.40625;
+"@MMK_R_c.sups" = -30;
+"@MMK_R_v.sups" = 19;
};
"@MMK_L_nine" = {
"@MMK_R_Y" = -69;
-"@MMK_R_comma" = -66.125;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_comma" = -66;
+"@MMK_R_quotedblbase" = -103;
"@MMK_R_quotedblleft" = -92;
Psi = -69;
-seven = -40.25;
+seven = -40;
underscore = -92;
};
"@MMK_L_nine.1" = {
-"@MMK_R_A" = -20.125;
-"@MMK_R_comma" = -201.25;
-seven = -80.5;
+"@MMK_R_A" = -20;
+"@MMK_R_comma" = -201;
+seven = -80;
};
"@MMK_L_nine.dnomf" = {
-seven.dnomf = -24.4375;
+seven.dnomf = -24;
};
"@MMK_L_nine.sups" = {
-seven.sups = -26.59375;
+seven.sups = -26;
};
"@MMK_L_ohorn" = {
"@MMK_R_comma" = -92;
-"@MMK_R_parenleft" = 28.75;
-"@MMK_R_parenright" = 86.25;
+"@MMK_R_parenleft" = 28;
+"@MMK_R_parenright" = 86;
};
"@MMK_L_omegagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
};
"@MMK_L_one" = {
-"@MMK_R_comma" = -71.875;
+"@MMK_R_comma" = -71;
"@MMK_R_quotedblbase" = -92;
};
"@MMK_L_parenleft" = {
@@ -440208,294 +440208,294 @@ rlinebelow.1 = 69;
};
"@MMK_L_parenleft.case" = {
"@MMK_R_B" = 0;
-"@MMK_R_Idieresis" = 143.75;
+"@MMK_R_Idieresis" = 143;
"@MMK_R_idotless" = 115;
-Fhook = 201.25;
-jcaron = 143.75;
+Fhook = 201;
+jcaron = 143;
};
"@MMK_L_parenright" = {
"@MMK_R_quotedblleft" = -69;
};
"@MMK_L_psigreek" = {
"@MMK_R_Alphagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
-lambda = -80.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
+lambda = -80;
seven = -69;
};
"@MMK_L_quotedbl" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Elcyrillic" = -92;
-"@MMK_R_J" = -333.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -333;
+"@MMK_R_comma" = -195;
ampersand = -69;
-four = -126.5;
+four = -126;
};
"@MMK_L_quotedblbase" = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -184;
-"@MMK_R_W" = -126.5;
-"@MMK_R_Y" = -218.5;
-"@MMK_R_eight.sups" = -195.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_W" = -126;
+"@MMK_R_Y" = -218;
+"@MMK_R_eight.sups" = -195;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_one" = -138;
"@MMK_R_quotedblleft" = -253;
-"@MMK_R_quotedblright" = -195.5;
-"@MMK_R_v" = -103.5;
+"@MMK_R_quotedblright" = -195;
+"@MMK_R_v" = -103;
Psi = -207;
-Tbar = -195.5;
-afii10021 = 103.5;
-afii10041 = -126.5;
-afii10044 = -103.5;
+Tbar = -195;
+afii10021 = 103;
+afii10041 = -126;
+afii10044 = -103;
checyrillic = -69;
-decyrillic = 126.5;
-hardsigncyrillic = -80.5;
-tecyrillic = -103.5;
+decyrillic = 126;
+hardsigncyrillic = -80;
+tecyrillic = -103;
};
"@MMK_L_quotedblleft" = {
-"@MMK_R_A" = -195.5;
-"@MMK_R_Alphagreek" = -195.5;
-"@MMK_R_Elcyrillic" = -126.5;
+"@MMK_R_A" = -195;
+"@MMK_R_Alphagreek" = -195;
+"@MMK_R_Elcyrillic" = -126;
"@MMK_R_J" = -299;
"@MMK_R_comma" = -253;
-"@MMK_R_elcyrillic" = -172.5;
+"@MMK_R_elcyrillic" = -172;
"@MMK_R_quotedblbase" = -253;
-afii10021 = -103.5;
-ampersand = -126.5;
+afii10021 = -103;
+ampersand = -126;
decyrillic = -115;
-four = -126.5;
-questiondown = -126.5;
-slash = -195.5;
+four = -126;
+questiondown = -126;
+slash = -195;
};
"@MMK_L_quotedblright" = {
"@MMK_R_A" = -276;
-"@MMK_R_Alphagreek" = -264.5;
-"@MMK_R_Elcyrillic" = -103.5;
+"@MMK_R_Alphagreek" = -264;
+"@MMK_R_Elcyrillic" = -103;
"@MMK_R_J" = -253;
"@MMK_R_a" = -115;
"@MMK_R_approxequal" = -115;
-"@MMK_R_c" = -126.5;
+"@MMK_R_c" = -126;
"@MMK_R_colon" = -115;
"@MMK_R_comma" = -391;
-"@MMK_R_deltagreek" = -126.5;
-"@MMK_R_elcyrillic" = -126.5;
-"@MMK_R_epsilongreek" = -126.5;
-"@MMK_R_guillemetleft" = -172.5;
-"@MMK_R_iotadieresisgreek" = -126.5;
-"@MMK_R_m" = -43.125;
+"@MMK_R_deltagreek" = -126;
+"@MMK_R_elcyrillic" = -126;
+"@MMK_R_epsilongreek" = -126;
+"@MMK_R_guillemetleft" = -172;
+"@MMK_R_iotadieresisgreek" = -126;
+"@MMK_R_m" = -43;
"@MMK_R_nine.1" = -23;
-"@MMK_R_omegagreek" = -126.5;
-"@MMK_R_psigreek" = -80.5;
-"@MMK_R_quotedblbase" = -379.5;
-"@MMK_R_s" = -126.5;
+"@MMK_R_omegagreek" = -126;
+"@MMK_R_psigreek" = -80;
+"@MMK_R_quotedblbase" = -379;
+"@MMK_R_s" = -126;
"@MMK_R_six" = -92;
-"@MMK_R_t" = 43.125;
-"@MMK_R_u" = -80.5;
-"@MMK_R_v" = 57.5;
-afii10021 = -80.5;
+"@MMK_R_t" = 43;
+"@MMK_R_u" = -80;
+"@MMK_R_v" = 57;
+afii10021 = -80;
ampersand = -138;
asciitilde = -92;
at = -115;
decyrillic = -115;
-eight = -80.5;
-four = -195.5;
+eight = -80;
+four = -195;
iacyrillic = -69;
-less = -195.5;
+less = -195;
micro = -92;
numbersign = -253;
questiondown = -138;
-rho = -126.5;
-slash = -287.5;
+rho = -126;
+slash = -287;
theta = -138;
-underscore = -80.5;
+underscore = -80;
xi = -138;
-zeta = -126.5;
+zeta = -126;
};
"@MMK_L_r" = {
-"@MMK_R_A" = -80.5;
+"@MMK_R_A" = -80;
"@MMK_R_J" = -115;
"@MMK_R_T" = -115;
"@MMK_R_Z" = -69;
-"@MMK_R_a" = -51.75;
+"@MMK_R_a" = -51;
"@MMK_R_a.sups" = 69;
-"@MMK_R_c" = -63.25;
-"@MMK_R_comma" = -126.5;
-"@MMK_R_eight.sups" = 34.5;
+"@MMK_R_c" = -63;
+"@MMK_R_comma" = -126;
+"@MMK_R_eight.sups" = 34;
"@MMK_R_f" = 46;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 34.5;
-"@MMK_R_slash" = -57.5;
+"@MMK_R_quotedblright" = 34;
+"@MMK_R_slash" = -57;
"@MMK_R_t" = 46;
-"@MMK_R_v" = 17.25;
-"@MMK_R_w" = 17.25;
-"@MMK_R_x" = 17.25;
-a = -51.75;
-idblgrave = 80.5;
-less = -80.5;
+"@MMK_R_v" = 17;
+"@MMK_R_w" = 17;
+"@MMK_R_x" = 17;
+a = -51;
+idblgrave = 80;
+less = -80;
logicalnot = -69;
rdblgrave.1 = 69;
};
"@MMK_L_r.sups" = {
-"@MMK_R_a.sups" = -34.5;
-"@MMK_R_c.sups" = -42.40625;
-"@MMK_R_f.sups" = 7.90625;
+"@MMK_R_a.sups" = -34;
+"@MMK_R_c.sups" = -42;
+"@MMK_R_f.sups" = 7;
"@MMK_R_t.sups" = 46;
-a.sups = -34.5;
+a.sups = -34;
};
"@MMK_L_registered" = {
-"@MMK_R_A" = -143.75;
-"@MMK_R_C" = -11.5;
-"@MMK_R_J" = -143.75;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -17.25;
+"@MMK_R_A" = -143;
+"@MMK_R_C" = -11;
+"@MMK_R_J" = -143;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -17;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -57.5;
-"@MMK_R_four" = -100.625;
+"@MMK_R_c" = -57;
+"@MMK_R_four" = -100;
"@MMK_R_s" = -23;
-"@MMK_R_six.1" = -34.5;
+"@MMK_R_six.1" = -34;
ampersand = -69;
};
"@MMK_L_rthook" = {
"@MMK_R_jdotless" = 92;
};
"@MMK_L_s" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_V" = -92;
"@MMK_R_W" = -69;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_quotedblbase" = -103.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_Y" = -149;
+"@MMK_R_quotedblbase" = -103;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_registered" = -17;
idblgrave = 69;
};
"@MMK_L_six.1" = {
-"@MMK_R_registered" = -34.5;
-seven = -80.5;
+"@MMK_R_registered" = -34;
+seven = -80;
underscore = -92;
};
"@MMK_L_t" = {
"@MMK_R_T" = -69;
-"@MMK_R_c" = -11.5;
-"@MMK_R_hyphen" = -28.75;
+"@MMK_R_c" = -11;
+"@MMK_R_hyphen" = -28;
"@MMK_R_idotless" = 0;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 43.125;
-"@MMK_R_s" = -11.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 43;
+"@MMK_R_s" = -11;
idblgrave = 92;
-less = -57.5;
+less = -57;
rdblgrave.1 = 69;
};
"@MMK_L_t.sups" = {
-"@MMK_R_B.sups" = 15.09375;
-"@MMK_R_c.sups" = -7.90625;
+"@MMK_R_B.sups" = 15;
+"@MMK_R_c.sups" = -7;
"@MMK_R_idotless.sups" = 0;
-"@MMK_R_s.sups" = -7.90625;
+"@MMK_R_s.sups" = -7;
};
"@MMK_L_two" = {
-"@MMK_R_four" = -31.625;
+"@MMK_R_four" = -31;
};
"@MMK_L_two.dnomf" = {
-"@MMK_R_four.dnomf" = -18.6875;
+"@MMK_R_four.dnomf" = -18;
};
"@MMK_L_two.sups" = {
-"@MMK_R_four.sups" = -20.84375;
+"@MMK_R_four.sups" = -20;
};
"@MMK_L_u" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Y" = -115;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-Tcaron = -149.5;
-Trthook = -149.5;
-idblgrave = 80.5;
-uni023E = -149.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+Tcaron = -149;
+Trthook = -149;
+idblgrave = 80;
+uni023E = -149;
};
"@MMK_L_v" = {
"@MMK_R_A" = -138;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_T" = -69;
"@MMK_R_Y" = -69;
-"@MMK_R_a" = -28.75;
-"@MMK_R_approxequal" = -80.5;
-"@MMK_R_c" = -34.5;
+"@MMK_R_a" = -28;
+"@MMK_R_approxequal" = -80;
+"@MMK_R_c" = -34;
"@MMK_R_comma" = -69;
-"@MMK_R_elcyrillic" = -86.25;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_elcyrillic" = -86;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 57.5;
+"@MMK_R_quotedblright" = 57;
Dhook = 69;
-Tcaron = -126.5;
+Tcaron = -126;
Thook = 69;
-Trthook = -126.5;
-ellipsis = -149.5;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
+Trthook = -126;
+ellipsis = -149;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
imacron = 92;
less = -69;
-logicalnot = -80.5;
+logicalnot = -80;
slash = -115;
underscore = -161;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_v.sups" = {
-"@MMK_R_a.sups" = -19.40625;
+"@MMK_R_a.sups" = -19;
"@MMK_R_c.sups" = -23;
-"@MMK_R_idotless.sups" = 7.90625;
-"@MMK_R_jdotless.sups" = 53.90625;
+"@MMK_R_idotless.sups" = 7;
+"@MMK_R_jdotless.sups" = 53;
};
"@MMK_L_vecyrillic" = {
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
};
"@MMK_L_w" = {
"@MMK_R_A" = -138;
"@MMK_R_J" = -115;
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Z" = -69;
-"@MMK_R_c" = -20.125;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_c" = -20;
+"@MMK_R_comma" = -149;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 86.25;
-Trthook = -126.5;
+"@MMK_R_quotedblright" = 86;
+Trthook = -126;
ampersand = -69;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_w.sups" = {
-"@MMK_R_c.sups" = -13.65625;
+"@MMK_R_c.sups" = -13;
};
"@MMK_L_x" = {
-"@MMK_R_T" = -11.5;
-"@MMK_R_a" = -8.625;
+"@MMK_R_T" = -11;
+"@MMK_R_a" = -8;
"@MMK_R_approxequal" = -69;
"@MMK_R_c" = -64;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_hyphen" = -46;
};
"@MMK_L_x.sups" = {
-"@MMK_R_a.sups" = -5.75;
-"@MMK_R_c.sups" = -25.15625;
+"@MMK_R_a.sups" = -5;
+"@MMK_R_c.sups" = -25;
};
"@MMK_L_z" = {
"@MMK_R_T" = -69;
-"@MMK_R_c" = -31.625;
+"@MMK_R_c" = -31;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-uni023E = -80.5;
+Trthook = -80;
+uni023E = -80;
};
"@MMK_L_z.sups" = {
-"@MMK_R_c.sups" = -20.84375;
+"@MMK_R_c.sups" = -20;
};
D = {
-enclosingcirclecomb = 57.5;
-enclosingsquarecomb = 57.5;
+enclosingcirclecomb = 57;
+enclosingsquarecomb = 57;
};
DZ = {
idblgrave = 69;
@@ -440504,7 +440504,7 @@ Dtopbar = {
idblgrave = 69;
};
Dzcaron_ = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
Ecedillabreve = {
idblgrave = 69;
@@ -440552,31 +440552,31 @@ Etildebelow = {
idblgrave = 69;
};
F = {
-enclosingcirclecomb = 129.375;
-enclosingsquarecomb = 129.375;
+enclosingcirclecomb = 129;
+enclosingsquarecomb = 129;
};
Fdotaccent = {
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
Fhook = {
"@MMK_R_comma" = -92;
-period = -80.5;
+period = -80;
};
Gamma = {
"@MMK_R_Alphagreek" = -184;
-"@MMK_R_Omicrongreek" = -103.5;
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_deltagreek" = -120.75;
-"@MMK_R_epsilongreek" = -264.5;
+"@MMK_R_Omicrongreek" = -103;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_deltagreek" = -120;
+"@MMK_R_epsilongreek" = -264;
"@MMK_R_gammagreek" = -207;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_iotadieresisgreek" = -264.5;
-"@MMK_R_omegagreek" = -264.5;
-"@MMK_R_psigreek" = -264.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_iotadieresisgreek" = -264;
+"@MMK_R_omegagreek" = -264;
+"@MMK_R_psigreek" = -264;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
Omega = -69;
four = -138;
@@ -440584,8 +440584,8 @@ lambda = -69;
less = -161;
micro = -207;
pi = -207;
-rho = -264.5;
-slash = -103.5;
+rho = -264;
+slash = -103;
tau = -207;
theta = -161;
underscore = -138;
@@ -440594,10 +440594,10 @@ zeta = -161;
};
H = {
enclosingcirclecomb = 0;
-enclosingsquarecomb = -14.375;
+enclosingsquarecomb = -14;
};
Hbar = {
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 92;
idblgrave = 69;
};
@@ -440608,24 +440608,24 @@ Hdotaccent = {
idblgrave = 69;
};
I = {
-enclosingcirclecomb = 455.6875;
-enclosingsquarecomb = 455.6875;
+enclosingcirclecomb = 455;
+enclosingsquarecomb = 455;
};
Icaron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Icircumflex = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idblgrave = {
"@MMK_R_B" = 69;
idblgrave = 69;
};
Idieresis = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idieresisacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idotbelow = {
idblgrave = 69;
@@ -440634,10 +440634,10 @@ Ihookabove = {
idblgrave = 69;
};
Iinvertedbreve = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Imacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Iogonek = {
"@MMK_R_jdotless" = 69;
@@ -440648,12 +440648,12 @@ Dcroat = 69;
Istroke = 69;
Lbar = 69;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
Itildebelow = {
-"@MMK_R_jdotless" = 270.25;
+"@MMK_R_jdotless" = 270;
};
K = {
enclosingcirclecomb = 0;
@@ -440666,17 +440666,17 @@ Kcaron = {
idblgrave = 92;
};
Kdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Khook = {
idblgrave = 92;
};
Klinebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
L = {
-enclosingcirclecomb = 172.5;
-enclosingsquarecomb = 172.5;
+enclosingcirclecomb = 172;
+enclosingsquarecomb = 172;
};
Lacute = {
"@MMK_R_asciicircum" = -92;
@@ -440684,7 +440684,7 @@ asciitilde = -92;
};
Lbar = {
"@MMK_R_asciicircum" = -69;
-degree = -80.5;
+degree = -80;
};
Lcaron = {
asciitilde = -69;
@@ -440692,7 +440692,7 @@ asciitilde = -69;
Lcircumflexbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -440708,7 +440708,7 @@ Ytilde = -69;
Ldotbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -440717,7 +440717,7 @@ Ytilde = -69;
Ldotbelowmacron = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -440726,7 +440726,7 @@ Ytilde = -69;
Llinebelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -440742,8 +440742,8 @@ Yhookabove = -69;
Ytilde = -69;
};
M = {
-enclosingcirclecomb = -172.5;
-enclosingsquarecomb = -172.5;
+enclosingcirclecomb = -172;
+enclosingsquarecomb = -172;
};
Macute = {
idblgrave = 69;
@@ -440752,8 +440752,8 @@ Mdotaccent = {
idblgrave = 69;
};
N = {
-enclosingcirclecomb = 31.625;
-enclosingsquarecomb = 31.625;
+enclosingcirclecomb = 31;
+enclosingsquarecomb = 31;
};
Ndotaccent = {
idblgrave = 69;
@@ -440784,21 +440784,21 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
Pacute = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Pdotaccent = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Phook = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Psi = {
-"@MMK_R_Alphagreek" = -126.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
-"@MMK_R_guillemetleft" = -97.75;
-"@MMK_R_guillemetright" = -40.25;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_Alphagreek" = -126;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
+"@MMK_R_guillemetleft" = -97;
+"@MMK_R_guillemetright" = -40;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
ampersand = -69;
four = -138;
@@ -440810,20 +440810,20 @@ underscore = -207;
xi = -69;
};
Sigma = {
-"@MMK_R_Omicrongreek" = -80.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_Omicrongreek" = -80;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_guillemetleft" = -69;
asterisk.case = -69;
-less = -126.5;
+less = -126;
pi = -69;
tau = -138;
};
Tbar = {
"@MMK_R_A" = -115;
-"@MMK_R_J" = -241.5;
+"@MMK_R_J" = -241;
"@MMK_R_approxequal" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
};
Tcircumflexbelow = {
"@MMK_R_colon" = -69;
@@ -440848,11 +440848,11 @@ Tdotbelow = {
"@MMK_R_z" = -69;
};
Thorn = {
-"@MMK_R_A" = -80.5;
-"@MMK_R_J" = -80.5;
+"@MMK_R_A" = -80;
+"@MMK_R_J" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_V" = -103.5;
-"@MMK_R_Z" = -80.5;
+"@MMK_R_V" = -103;
+"@MMK_R_Z" = -80;
"@MMK_R_comma" = -207;
"@MMK_R_quotedblbase" = -253;
"@MMK_R_quotedblleft" = -115;
@@ -440865,10 +440865,10 @@ Tlinebelow = {
"@MMK_R_z" = -69;
};
Trthook = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_x" = -126.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_x" = -126;
+"@MMK_R_z" = -80;
};
Udblgrave = {
idblgrave = 69;
@@ -440890,23 +440890,23 @@ idblgrave = 69;
};
Uhornacute = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorndotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorngrave = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhornhookabove = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorntilde = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uinvertedbreve = {
idblgrave = 69;
@@ -440919,7 +440919,7 @@ idblgrave = 69;
};
Vdotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Vtilde = {
"@MMK_R_comma" = -69;
@@ -440938,7 +440938,7 @@ Wdotaccent = {
idblgrave = 92;
};
Wdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Wgrave = {
idblgrave = 92;
@@ -440966,14 +440966,14 @@ idblgrave = 92;
Ydotbelow = {
"@MMK_R_J" = -69;
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Ygrave = {
idblgrave = 92;
};
Yhook = {
-"@MMK_R_J" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_J" = -80;
+"@MMK_R_comma" = -80;
idblgrave = 92;
};
Yhookabove = {
@@ -440996,7 +440996,7 @@ Zlinebelow = {
idblgrave = 69;
};
acircumflexacute = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_idotless" = 69;
acircumflexgrave = 69;
ecircumflexgrave = 69;
@@ -441012,45 +441012,45 @@ afii10018 = {
afii10044 = -115;
};
afii10024 = {
-"@MMK_R_guillemetleft" = -103.5;
-afii10038 = -103.5;
+"@MMK_R_guillemetleft" = -103;
+afii10038 = -103;
afii10041 = -69;
-afii10044 = -80.5;
+afii10044 = -80;
asciitilde = -69;
checyrillic = -115;
-four = -80.5;
+four = -80;
hardsigncyrillic = -92;
hryvnia = -69;
-less = -103.5;
-logicalnot = -103.5;
+less = -103;
+logicalnot = -103;
multiply = -92;
-tecyrillic = -126.5;
+tecyrillic = -126;
zecyrillic = -69;
};
afii10038 = {
-"@MMK_R_quotedblbase" = -103.5;
-afii10024 = -103.5;
+"@MMK_R_quotedblbase" = -103;
+afii10024 = -103;
afii10044 = -69;
};
afii10051 = {
"@MMK_R_one" = -69;
};
amacron = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ampersand = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -126.5;
-"@MMK_R_W" = -80.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_dagger" = -80.5;
+"@MMK_R_V" = -126;
+"@MMK_R_W" = -80;
+"@MMK_R_Y" = -149;
+"@MMK_R_dagger" = -80;
"@MMK_R_eight.sups" = -92;
"@MMK_R_quotedbl" = -69;
"@MMK_R_quotedblleft" = -184;
"@MMK_R_registered" = -46;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
-Psi = -149.5;
+Psi = -149;
afii10044 = -115;
};
asciitilde = {
@@ -441062,33 +441062,33 @@ asterisk.case = {
"@MMK_R_T" = -69;
};
at = {
-enclosingcirclecomb = -373.75;
-enclosingsquarecomb = -373.75;
+enclosingcirclecomb = -373;
+enclosingsquarecomb = -373;
};
at.case = {
-enclosingcirclecomb = -340.6875;
-enclosingsquarecomb = -340.6875;
+enclosingcirclecomb = -340;
+enclosingsquarecomb = -340;
};
backslash = {
-"@MMK_R_T" = -80.5;
-"@MMK_R_V" = -117.875;
-"@MMK_R_W" = -117.875;
-"@MMK_R_comma" = 80.5;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_quotedblleft" = -86.25;
+"@MMK_R_T" = -80;
+"@MMK_R_V" = -117;
+"@MMK_R_W" = -117;
+"@MMK_R_comma" = 80;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_quotedblleft" = -86;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_v" = -103.5;
-Psi = -80.5;
-tenge = -103.5;
+"@MMK_R_v" = -103;
+Psi = -80;
+tenge = -103;
};
beta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
bhook = {
"@MMK_R_T" = -161;
};
bracketleft = {
-idblgrave = 80.5;
+idblgrave = 80;
};
bracketright = {
idblgrave = 69;
@@ -441100,16 +441100,16 @@ dcircumflexbelow = {
idblgrave = 69;
};
dcroat = {
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
Thook = 69;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+imacron = 80;
};
ddotaccent = {
idblgrave = 69;
@@ -441125,12 +441125,12 @@ dhook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
dlinebelow = {
idblgrave = 69;
@@ -441156,93 +441156,93 @@ ellipsis = {
quotedblreversed = -368;
};
enclosingcirclecomb = {
-"@MMK_R_A" = -43.125;
-"@MMK_R_B" = 86.25;
-"@MMK_R_C" = -40.25;
-"@MMK_R_J" = 171.0625;
-"@MMK_R_S" = 86.25;
-"@MMK_R_T" = 71.875;
-"@MMK_R_U" = 43.125;
-"@MMK_R_V" = -57.5;
-"@MMK_R_W" = -339.25;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -5.75;
-"@MMK_R_Z" = 60.375;
-"@MMK_R_approxequal" = 57.5;
-"@MMK_R_emdash" = -241.5;
-"@MMK_R_endash" = 258.75;
-"@MMK_R_four" = 28.75;
-"@MMK_R_hyphen" = 288.9375;
-"@MMK_R_one" = 215.625;
-"@MMK_R_six" = 28.75;
-"@MMK_R_three" = 90.5625;
-"@MMK_R_two" = 109.25;
-D = 57.5;
-F = 129.375;
+"@MMK_R_A" = -43;
+"@MMK_R_B" = 86;
+"@MMK_R_C" = -40;
+"@MMK_R_J" = 171;
+"@MMK_R_S" = 86;
+"@MMK_R_T" = 71;
+"@MMK_R_U" = 43;
+"@MMK_R_V" = -57;
+"@MMK_R_W" = -339;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -5;
+"@MMK_R_Z" = 60;
+"@MMK_R_approxequal" = 57;
+"@MMK_R_emdash" = -241;
+"@MMK_R_endash" = 258;
+"@MMK_R_four" = 28;
+"@MMK_R_hyphen" = 288;
+"@MMK_R_one" = 215;
+"@MMK_R_six" = 28;
+"@MMK_R_three" = 90;
+"@MMK_R_two" = 109;
+D = 57;
+F = 129;
H = 0;
-I = 455.6875;
+I = 455;
K = 0;
-L = 172.5;
-M = -172.5;
-N = 31.625;
-at = -373.75;
-at.case = -340.6875;
+L = 172;
+M = -172;
+N = 31;
+at = -373;
+at.case = -340;
eight = 69;
-exclam = 392.4375;
-five = 66.125;
+exclam = 392;
+five = 66;
nine = 92;
-numbersign = 109.25;
-plus = 71.875;
-question = 182.5625;
+numbersign = 109;
+plus = 71;
+question = 182;
seven = 161;
};
enclosingsquarecomb = {
-"@MMK_R_A" = -43.125;
-"@MMK_R_B" = 86.25;
-"@MMK_R_C" = -40.25;
-"@MMK_R_J" = 171.0625;
-"@MMK_R_S" = 86.25;
-"@MMK_R_T" = 71.875;
-"@MMK_R_U" = 43.125;
-"@MMK_R_V" = -57.5;
-"@MMK_R_W" = -339.25;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -5.75;
-"@MMK_R_Z" = 60.375;
-"@MMK_R_approxequal" = 57.5;
-"@MMK_R_emdash" = -241.5;
-"@MMK_R_endash" = 258.75;
-"@MMK_R_four" = 28.75;
-"@MMK_R_hyphen" = 288.9375;
-"@MMK_R_one" = 215.625;
-"@MMK_R_six" = 28.75;
-"@MMK_R_three" = 90.5625;
-"@MMK_R_two" = 109.25;
-D = 57.5;
-F = 129.375;
-H = -14.375;
-I = 455.6875;
+"@MMK_R_A" = -43;
+"@MMK_R_B" = 86;
+"@MMK_R_C" = -40;
+"@MMK_R_J" = 171;
+"@MMK_R_S" = 86;
+"@MMK_R_T" = 71;
+"@MMK_R_U" = 43;
+"@MMK_R_V" = -57;
+"@MMK_R_W" = -339;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -5;
+"@MMK_R_Z" = 60;
+"@MMK_R_approxequal" = 57;
+"@MMK_R_emdash" = -241;
+"@MMK_R_endash" = 258;
+"@MMK_R_four" = 28;
+"@MMK_R_hyphen" = 288;
+"@MMK_R_one" = 215;
+"@MMK_R_six" = 28;
+"@MMK_R_three" = 90;
+"@MMK_R_two" = 109;
+D = 57;
+F = 129;
+H = -14;
+I = 455;
K = 0;
-L = 172.5;
-M = -172.5;
-N = 31.625;
-at = -373.75;
-at.case = -340.6875;
+L = 172;
+M = -172;
+N = 31;
+at = -373;
+at.case = -340;
eight = 69;
-exclam = 392.4375;
-five = 66.125;
+exclam = 392;
+five = 66;
nine = 92;
-numbersign = 109.25;
-plus = 71.875;
-question = 182.5625;
+numbersign = 109;
+plus = 71;
+question = 182;
seven = 161;
};
eturn = {
"@MMK_R_T" = -161;
};
exclam = {
-enclosingcirclecomb = 392.4375;
-enclosingsquarecomb = 392.4375;
+enclosingcirclecomb = 392;
+enclosingsquarecomb = 392;
};
exclamdown = {
"@MMK_R_T" = -138;
@@ -441256,13 +441256,13 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
feng = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
five = {
-"@MMK_R_comma" = -40.25;
-"@MMK_R_registered" = -11.5;
-enclosingcirclecomb = 66.125;
-enclosingsquarecomb = 66.125;
+"@MMK_R_comma" = -40;
+"@MMK_R_registered" = -11;
+enclosingcirclecomb = 66;
+enclosingsquarecomb = 66;
};
florin = {
"@MMK_R_idotless" = 69;
@@ -441273,8 +441273,8 @@ four.ss01 = {
"@MMK_R_comma" = -69;
};
gamma1 = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
germandbls = {
"@MMK_R_quotedblleft" = -138;
@@ -441283,57 +441283,57 @@ ghook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
greater = {
-"@MMK_R_A" = -143.75;
+"@MMK_R_A" = -143;
"@MMK_R_Elcyrillic" = -69;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -149.5;
-"@MMK_R_W" = -149.5;
+"@MMK_R_V" = -149;
+"@MMK_R_W" = -149;
"@MMK_R_X" = -115;
"@MMK_R_Y" = -184;
-"@MMK_R_Z" = -126.5;
-"@MMK_R_quotedblleft" = -195.5;
+"@MMK_R_Z" = -126;
+"@MMK_R_quotedblleft" = -195;
Psi = -184;
-afii10024 = -103.5;
-afii10044 = -149.5;
-seven = -149.5;
-tenge = -149.5;
+afii10024 = -103;
+afii10044 = -149;
+seven = -149;
+tenge = -149;
};
henghook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hhook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hturn = {
-"@MMK_R_jdotless" = 143.75;
+"@MMK_R_jdotless" = 143;
};
iacute = {
-idblgrave = 103.5;
+idblgrave = 103;
};
ibreve = {
-"@MMK_R_idotless" = 80.5;
-idblgrave = 103.5;
-rdblgrave.1 = 80.5;
+"@MMK_R_idotless" = 80;
+idblgrave = 103;
+rdblgrave.1 = 80;
};
icaron = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
idblgrave = 115;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
icircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-itilde = 80.5;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+itilde = 80;
};
idblgrave = {
"@MMK_R_idieresis" = 69;
@@ -441344,89 +441344,89 @@ idblgrave = 69;
iinvertedbreve = 69;
};
idieresisacute = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+iinvertedbreve = 80;
};
idotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
ihookabove = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-idblgrave = 103.5;
+idblgrave = 103;
rdblgrave.1 = 69;
};
iinvertedbreve = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
-hbar = 80.5;
+hbar = 80;
idblgrave = 92;
-idieresisacute = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
-itilde = 80.5;
+idieresisacute = 80;
+iinvertedbreve = 80;
+imacron = 80;
+itilde = 80;
rdblgrave.1 = 69;
};
ij = {
idblgrave = 69;
};
imacron = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 103.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 103;
+iinvertedbreve = 80;
imacron = 92;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
infinity = {
"@MMK_R_Y" = -69;
};
itilde = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
idblgrave = 115;
};
itildebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
jcaron = {
-"@MMK_R_parenright.case" = 143.75;
+"@MMK_R_parenright.case" = 143;
};
jcircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-itilde = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+itilde = 80;
};
l.ss02 = {
"@MMK_R_A" = 46;
-"@MMK_R_B" = 28.75;
+"@MMK_R_B" = 28;
};
lacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lambda = {
-"@MMK_R_deltagreek" = -80.5;
+"@MMK_R_deltagreek" = -80;
"@MMK_R_gammagreek" = -115;
-"@MMK_R_omegagreek" = -80.5;
+"@MMK_R_omegagreek" = -80;
"@MMK_R_one" = -115;
"@MMK_R_psigreek" = -69;
pi = -138;
-tau = -195.5;
+tau = -195;
};
lbar = {
-"@MMK_R_Dcroat" = 80.5;
-Dcroat = 80.5;
-Istroke = 80.5;
-Lbar = 80.5;
+"@MMK_R_Dcroat" = 80;
+Dcroat = 80;
+Istroke = 80;
+Lbar = 80;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
@@ -441434,18 +441434,18 @@ lcircumflexbelow = {
"@MMK_R_B" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
-itildebelow = 80.5;
-lcircumflexbelow = 80.5;
-llinebelow = 80.5;
-rlinebelow.1 = 80.5;
+itildebelow = 80;
+lcircumflexbelow = 80;
+llinebelow = 80;
+rlinebelow.1 = 80;
};
lcommaaccent = {
idblgrave = 69;
};
lcurl = {
-"@MMK_R_jdotless" = 86.25;
+"@MMK_R_jdotless" = 86;
};
ldot = {
"@MMK_R_Dcroat" = 69;
@@ -441458,28 +441458,28 @@ ldotbelow = {
idblgrave = 69;
};
ldotbelowmacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lj = {
idblgrave = 69;
};
llinebelow = {
-"@MMK_R_B" = 80.5;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_B" = 80;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_parenright" = 69;
Iogonek = 69;
florin = 69;
idblgrave = 69;
itildebelow = 92;
-jcircumflex = 80.5;
-lcircumflexbelow = 80.5;
+jcircumflex = 80;
+lcircumflexbelow = 80;
llinebelow = 92;
rlinebelow.1 = 92;
underscore = 69;
};
logicalnot = {
-afii10044 = -103.5;
+afii10044 = -103;
};
lslash = {
"@MMK_R_Dcroat" = 69;
@@ -441490,10 +441490,10 @@ idblgrave = 69;
lbar = 69;
};
micro = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_quotedblleft" = -103.5;
-less = -80.5;
+"@MMK_R_quotedblleft" = -103;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -441503,10 +441503,10 @@ mturn = {
};
multiply = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_Y" = -92;
afii10024 = -92;
-afii10044 = -149.5;
+afii10044 = -149;
afii10049 = -92;
tenge = -69;
};
@@ -441518,68 +441518,68 @@ nj = {
idblgrave = 69;
};
nlfthook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ntilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
numbersign = {
-enclosingcirclecomb = 109.25;
-enclosingsquarecomb = 109.25;
+enclosingcirclecomb = 109;
+enclosingsquarecomb = 109;
};
ocircumflexacute = {
"@MMK_R_B" = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
ocircumflexhookabove = {
idblgrave = 92;
};
odieresis = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ohorntilde = {
idblgrave = 69;
};
otilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
percent = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -138;
};
periodcentered = {
"@MMK_R_A" = -69;
"@MMK_R_J" = -92;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -80.5;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_V" = -80;
+"@MMK_R_Y" = -103;
};
pi = {
"@MMK_R_deltagreek" = -69;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
};
plus = {
-enclosingcirclecomb = 71.875;
-enclosingsquarecomb = 71.875;
+enclosingcirclecomb = 71;
+enclosingsquarecomb = 71;
};
question = {
-"@MMK_R_A" = -126.5;
-"@MMK_R_Alphagreek" = -126.5;
-enclosingcirclecomb = 182.5625;
-enclosingsquarecomb = 182.5625;
+"@MMK_R_A" = -126;
+"@MMK_R_Alphagreek" = -126;
+enclosingcirclecomb = 182;
+enclosingsquarecomb = 182;
};
questiondown = {
"@MMK_R_V" = -115;
"@MMK_R_W" = -115;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -69;
Psi = -184;
Tbar = -138;
};
r = {
-"@MMK_R_v" = 34.5;
-"@MMK_R_x" = 34.5;
+"@MMK_R_v" = 34;
+"@MMK_R_x" = 34;
};
rcaron.1 = {
idblgrave = 92;
@@ -441589,14 +441589,14 @@ rdotbelowmacron.1 = {
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
rinvertedbreve.1 = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
sacutedotaccent = {
idblgrave = 69;
@@ -441608,91 +441608,91 @@ schwa = {
"@MMK_R_T" = -161;
};
seven = {
-"@MMK_R_A" = -218.5;
-"@MMK_R_Alphagreek" = -218.5;
-"@MMK_R_J" = -195.5;
+"@MMK_R_A" = -218;
+"@MMK_R_Alphagreek" = -218;
+"@MMK_R_J" = -195;
"@MMK_R_a" = -92;
-"@MMK_R_c" = -103.5;
+"@MMK_R_c" = -103;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -253;
-"@MMK_R_deltagreek" = -103.5;
-"@MMK_R_epsilongreek" = -103.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_deltagreek" = -103;
+"@MMK_R_epsilongreek" = -103;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_idieresis" = 184;
-"@MMK_R_iotadieresisgreek" = -103.5;
-"@MMK_R_omegagreek" = -103.5;
-"@MMK_R_quotedblbase" = -287.5;
-"@MMK_R_s" = -80.5;
-"@MMK_R_six" = -31.625;
+"@MMK_R_iotadieresisgreek" = -103;
+"@MMK_R_omegagreek" = -103;
+"@MMK_R_quotedblbase" = -287;
+"@MMK_R_s" = -80;
+"@MMK_R_six" = -31;
"@MMK_R_six.1" = -69;
-"@MMK_R_three" = -34.5;
+"@MMK_R_three" = -34;
ampersand = -92;
-eight = -28.75;
+eight = -28;
enclosingcirclecomb = 161;
enclosingsquarecomb = 161;
-five = -20.125;
-four = -117.875;
-four.ss01 = -126.5;
+five = -20;
+four = -117;
+four.ss01 = -126;
less = -184;
-nine = -20.125;
+nine = -20;
numbersign = -115;
-rho = -103.5;
-seven = 40.25;
-theta = -103.5;
-three.1 = 2.875;
+rho = -103;
+seven = 40;
+theta = -103;
+three.1 = 2;
underscore = -322;
-zeta = -103.5;
+zeta = -103;
};
seven.dnomf = {
-"@MMK_R_six.dnomf" = -18.6875;
-"@MMK_R_three.dnomf" = -20.84375;
-eight.dnomf = -17.25;
-five.dnomf = -12.21875;
-four.dnomf = -70.4375;
-nine.dnomf = -12.21875;
-seven.dnomf = 24.4375;
+"@MMK_R_six.dnomf" = -18;
+"@MMK_R_three.dnomf" = -20;
+eight.dnomf = -17;
+five.dnomf = -12;
+four.dnomf = -70;
+nine.dnomf = -12;
+seven.dnomf = 24;
};
seven.frac = {
-four.frac = -34.5;
-fraction = -186.875;
+four.frac = -34;
+fraction = -186;
};
seven.numr = {
-four.numr = -34.5;
+four.numr = -34;
};
seven.sups = {
-"@MMK_R_six.sups" = -20.84375;
+"@MMK_R_six.sups" = -20;
"@MMK_R_three.sups" = -23;
-eight.sups = -19.40625;
-five.sups = -13.65625;
-four.sups = -78.34375;
-nine.sups = -13.65625;
-seven.sups = 26.59375;
+eight.sups = -19;
+five.sups = -13;
+four.sups = -78;
+nine.sups = -13;
+seven.sups = 26;
};
sigma = {
-"@MMK_R_Alphagreek" = -80.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_Alphagreek" = -80;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
lambda = -138;
logicalnot = -69;
slash = -69;
};
six = {
-"@MMK_R_comma" = -54.625;
+"@MMK_R_comma" = -54;
"@MMK_R_quotedblbase" = -92;
underscore = -92;
};
slash = {
-"@MMK_R_J" = -126.5;
-"@MMK_R_V" = 28.75;
-"@MMK_R_W" = 28.75;
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_J" = -126;
+"@MMK_R_V" = 28;
+"@MMK_R_W" = 28;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
tau = {
-"@MMK_R_deltagreek" = -80.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_deltagreek" = -80;
+"@MMK_R_quotedblleft" = -80;
};
tccurl = {
"@MMK_R_T" = -161;
@@ -441705,23 +441705,23 @@ llinebelow = 69;
rlinebelow.1 = 69;
};
tecyrillic = {
-"@MMK_R_comma" = -129.375;
-"@MMK_R_quotedblbase" = -149.5;
+"@MMK_R_comma" = -129;
+"@MMK_R_quotedblbase" = -149;
};
theta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
thook = {
idblgrave = 92;
};
three.frac = {
-fraction = -28.75;
+fraction = -28;
};
tlinebelow = {
"@MMK_R_B" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
llinebelow = 69;
-rlinebelow.1 = 80.5;
+rlinebelow.1 = 80;
};
ubar = {
"@MMK_R_Dcroat" = 69;
@@ -441747,27 +441747,27 @@ uhorntilde = {
hbar = 69;
};
underscore = {
-"@MMK_R_C" = -80.5;
-"@MMK_R_Omicrongreek" = -80.5;
+"@MMK_R_C" = -80;
+"@MMK_R_Omicrongreek" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_U" = -80.5;
+"@MMK_R_U" = -80;
"@MMK_R_V" = -161;
"@MMK_R_asciicircum" = -138;
"@MMK_R_gammagreek" = -115;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 195.5;
+"@MMK_R_jdotless" = 195;
"@MMK_R_m" = 92;
"@MMK_R_nine.1" = -92;
-"@MMK_R_one" = -218.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_one" = -218;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_six" = -92;
"@MMK_R_three" = -92;
"@MMK_R_v" = -161;
-Psi = -195.5;
+Psi = -195;
afii10021 = 115;
-afii10041 = -218.5;
-afii10044 = -103.5;
-afii10047 = -80.5;
+afii10041 = -218;
+afii10044 = -103;
+afii10047 = -80;
decyrillic = 92;
eight = -92;
five = -92;
@@ -441775,36 +441775,36 @@ four = -115;
llinebelow = 69;
nine = -92;
rlinebelow.1 = 69;
-tenge = -103.5;
+tenge = -103;
};
uni01F6 = {
"@MMK_R_T" = -92;
};
uni023E = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
uni0240 = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
uni0247 = {
"@MMK_R_T" = -161;
};
uni024F = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
uni20BD = {
"@MMK_R_comma" = -138;
-slash = -80.5;
-underscore = -103.5;
+slash = -80;
+underscore = -103;
};
vturn = {
-"@MMK_R_T.sc" = -86.25;
+"@MMK_R_T.sc" = -86;
};
won = {
-idblgrave = 80.5;
+idblgrave = 80;
};
xi = {
Psi = -92;
@@ -441818,10 +441818,10 @@ ytilde = {
idblgrave = 69;
};
zbar = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
zcurl = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
};
zdotbelow = {
"@MMK_R_T" = -69;
@@ -441844,49 +441844,49 @@ Tdotaccent = -69;
Tdotbelow = -69;
};
zrthook = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
};
"D0EC06BF-13F9-4C88-A6F5-B8203AF6C77E" = {
"@MMK_L_A" = {
"@MMK_R_C" = -69;
-"@MMK_R_S" = -57.5;
-"@MMK_R_T" = -186.875;
-"@MMK_R_V" = -212.75;
-"@MMK_R_W" = -172.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_asciicircum" = -218.5;
-"@MMK_R_c" = -86.25;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_S" = -57;
+"@MMK_R_T" = -186;
+"@MMK_R_V" = -212;
+"@MMK_R_W" = -172;
+"@MMK_R_Y" = -149;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_asciicircum" = -218;
+"@MMK_R_c" = -86;
+"@MMK_R_dagger" = -149;
"@MMK_R_eight.sups" = -184;
-"@MMK_R_f" = -34.5;
+"@MMK_R_f" = -34;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_idieresis" = 92;
"@MMK_R_idotless" = 0;
-"@MMK_R_nine.1" = -20.125;
+"@MMK_R_nine.1" = -20;
"@MMK_R_one" = -69;
"@MMK_R_quotedbl" = -161;
-"@MMK_R_quotedblleft" = -264.5;
+"@MMK_R_quotedblleft" = -264;
"@MMK_R_quotedblright" = -207;
-"@MMK_R_registered" = -143.75;
-"@MMK_R_s" = -43.125;
+"@MMK_R_registered" = -143;
+"@MMK_R_s" = -43;
"@MMK_R_t" = -69;
"@MMK_R_v" = -138;
"@MMK_R_w" = -138;
Tbar = -115;
asterisk.case = -69;
-less = -143.75;
+less = -143;
llinebelow = 69;
periodcentered = -69;
-question = -126.5;
+question = -126;
rlinebelow.1 = 69;
};
"@MMK_L_Alphagreek" = {
"@MMK_R_Omicrongreek" = -69;
"@MMK_R_asciicircum" = -161;
-"@MMK_R_dagger" = -149.5;
+"@MMK_R_dagger" = -149;
"@MMK_R_deltagreek" = -69;
"@MMK_R_eight.sups" = -184;
"@MMK_R_gammagreek" = -138;
@@ -441894,15 +441894,15 @@ rlinebelow.1 = 69;
"@MMK_R_guillemetright" = -69;
"@MMK_R_omegagreek" = -69;
"@MMK_R_one" = -69;
-"@MMK_R_quotedbl" = -195.5;
+"@MMK_R_quotedbl" = -195;
"@MMK_R_quotedblleft" = -276;
-"@MMK_R_quotedblright" = -195.5;
-Psi = -126.5;
+"@MMK_R_quotedblright" = -195;
+Psi = -126;
asterisk.case = -69;
-question = -126.5;
-tau = -103.5;
-theta = -80.5;
-zeta = -80.5;
+question = -126;
+tau = -103;
+theta = -80;
+zeta = -80;
};
"@MMK_L_B" = {
"@MMK_R_idieresis" = 69;
@@ -441912,29 +441912,29 @@ zeta = -80.5;
"@MMK_R_X" = -46;
"@MMK_R_idieresis" = 69;
"@MMK_R_v" = 23;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_D" = {
"@MMK_R_A" = -92;
"@MMK_R_T" = -69;
"@MMK_R_V" = -92;
"@MMK_R_W" = -92;
-"@MMK_R_X" = -97.75;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_X" = -97;
+"@MMK_R_Y" = -103;
"@MMK_R_comma" = -92;
"@MMK_R_jdotless" = 0;
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
"@MMK_R_quotedblleft" = -69;
-"@MMK_R_registered" = -11.5;
-slash = -80.5;
-underscore = -80.5;
+"@MMK_R_registered" = -11;
+slash = -80;
+underscore = -80;
};
"@MMK_L_Decyrillic" = {
afii10021 = 69;
-underscore = 126.5;
+underscore = 126;
};
"@MMK_L_E" = {
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
idblgrave = 69;
};
"@MMK_L_Ecyrillic" = {
@@ -441943,20 +441943,20 @@ idblgrave = 69;
"@MMK_L_Ereversedcyrillic" = {
"@MMK_R_comma" = -92;
"@MMK_R_quotedblbase" = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_F" = {
"@MMK_R_A" = -184;
"@MMK_R_J" = -138;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_c" = -80;
+"@MMK_R_comma" = -80;
"@MMK_R_m" = -23;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_u" = -69;
"@MMK_R_v" = -69;
"@MMK_R_z" = -69;
-ellipsis = -172.5;
+ellipsis = -172;
idblgrave = 69;
period = -69;
underscore = -69;
@@ -441977,9 +441977,9 @@ rdblgrave.1 = 69;
"@MMK_L_H" = {
"@MMK_R_B" = 0;
"@MMK_R_Idieresis" = 161;
-"@MMK_R_idieresis" = 149.5;
+"@MMK_R_idieresis" = 149;
Idieresisacute = 92;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
iogonek = 69;
lcircumflexbelow = 69;
@@ -441991,64 +441991,64 @@ underscore = 69;
"@MMK_R_B.sups" = 0;
};
"@MMK_L_Idieresis" = {
-"@MMK_R_parenright.case" = 143.75;
+"@MMK_R_parenright.case" = 143;
};
"@MMK_L_J" = {
"@MMK_R_comma" = -69;
"@MMK_R_quotedblbase" = -161;
idblgrave = 69;
slash = -115;
-underscore = -103.5;
+underscore = -103;
};
"@MMK_L_K" = {
"@MMK_R_C" = -92;
-"@MMK_R_S" = -20.125;
+"@MMK_R_S" = -20;
"@MMK_R_approxequal" = -69;
-"@MMK_R_c" = -80.5;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_c" = -80;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_idieresis" = 172;
"@MMK_R_idotless" = 69;
-"@MMK_R_registered" = -30.1875;
+"@MMK_R_registered" = -30;
"@MMK_R_u" = -69;
-"@MMK_R_v" = -80.5;
-"@MMK_R_w" = -126.5;
+"@MMK_R_v" = -80;
+"@MMK_R_w" = -126;
asterisk.case = -69;
-idblgrave = 80.5;
+idblgrave = 80;
idieresisacute = 69;
infinity = -69;
less = -138;
-logicalnot = -103.5;
+logicalnot = -103;
periodcentered = -92;
};
"@MMK_L_L" = {
"@MMK_R_A" = 0;
-"@MMK_R_C" = -57.5;
-"@MMK_R_T" = -175.375;
-"@MMK_R_V" = -172.5;
+"@MMK_R_C" = -57;
+"@MMK_R_T" = -175;
+"@MMK_R_V" = -172;
"@MMK_R_W" = -138;
-"@MMK_R_Y" = -267.375;
-"@MMK_R_asciicircum" = -264.5;
-"@MMK_R_dagger" = -195.5;
-"@MMK_R_eight.sups" = -310.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_Y" = -267;
+"@MMK_R_asciicircum" = -264;
+"@MMK_R_dagger" = -195;
+"@MMK_R_eight.sups" = -310;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_one" = -92;
"@MMK_R_quotedbl" = -184;
-"@MMK_R_quotedblleft" = -172.5;
-"@MMK_R_quotedblright" = -80.5;
-"@MMK_R_registered" = -163.875;
+"@MMK_R_quotedblleft" = -172;
+"@MMK_R_quotedblright" = -80;
+"@MMK_R_registered" = -163;
"@MMK_R_t" = -46;
"@MMK_R_v" = -138;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
Ytilde = -69;
-asciitilde = -80.5;
-asterisk = -80.5;
+asciitilde = -80;
+asterisk = -80;
asterisk.case = -69;
degree = -92;
-hyphen = -103.5;
-logicalnot = -264.5;
-periodcentered = -126.5;
+hyphen = -103;
+logicalnot = -264;
+periodcentered = -126;
quotedblreversed = -92;
quotereversed = -92;
tripleprime = -138;
@@ -442057,18 +442057,18 @@ tripleprime = -138;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_comma" = -92;
"@MMK_R_quotedblleft" = -69;
-slash = -80.5;
-underscore = -80.5;
+slash = -80;
+underscore = -80;
};
"@MMK_L_P" = {
"@MMK_R_A" = -184;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -48.875;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -48;
"@MMK_R_c" = -23;
-"@MMK_R_comma" = -80.5;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_comma" = -80;
+"@MMK_R_quotedblbase" = -287;
ampersand = -69;
-ellipsis = -195.5;
+ellipsis = -195;
period = -69;
};
"@MMK_L_R" = {
@@ -442078,229 +442078,229 @@ period = -69;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_S" = {
-"@MMK_R_A" = -57.5;
+"@MMK_R_A" = -57;
"@MMK_R_X" = -48;
"@MMK_R_idieresis" = 92;
};
"@MMK_L_T" = {
-"@MMK_R_A" = -186.875;
+"@MMK_R_A" = -186;
"@MMK_R_C" = -69;
"@MMK_R_J" = -184;
-"@MMK_R_a" = -149.5;
+"@MMK_R_a" = -149;
"@MMK_R_c" = -161;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_idblgrave" = 310.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_idblgrave" = 310;
"@MMK_R_idieresis" = 184;
"@MMK_R_m" = -115;
-"@MMK_R_quotedblbase" = -241.5;
-"@MMK_R_s" = -149.5;
-"@MMK_R_u" = -149.5;
-"@MMK_R_v" = -126.5;
-"@MMK_R_w" = -126.5;
-"@MMK_R_x" = -11.5;
+"@MMK_R_quotedblbase" = -241;
+"@MMK_R_s" = -149;
+"@MMK_R_u" = -149;
+"@MMK_R_v" = -126;
+"@MMK_R_w" = -126;
+"@MMK_R_x" = -11;
"@MMK_R_z" = -92;
-adieresis = -80.5;
+adieresis = -80;
ampersand = -69;
asterisk.case = -69;
-atilde = -80.5;
-colon.case = -80.5;
-edieresis = -103.5;
-ellipsis = -172.5;
+atilde = -80;
+colon.case = -80;
+edieresis = -103;
+ellipsis = -172;
four = -138;
hyphen = -69;
less = -161;
-odieresis = -103.5;
-otilde = -103.5;
+odieresis = -103;
+otilde = -103;
periodcentered = -161;
slash = -161;
-udieresis = -103.5;
+udieresis = -103;
underscore = -115;
-uni0240 = -80.5;
-utilde = -80.5;
-wdieresis = -103.5;
+uni0240 = -80;
+utilde = -80;
+wdieresis = -103;
ydieresis = -69;
-zbar = -80.5;
-zcurl = -80.5;
-zrthook = -80.5;
+zbar = -80;
+zcurl = -80;
+zrthook = -80;
};
"@MMK_L_T.sc" = {
-"@MMK_R_a" = -28.75;
-"@MMK_R_c" = -28.75;
+"@MMK_R_a" = -28;
+"@MMK_R_c" = -28;
"@MMK_R_comma" = -184;
-"@MMK_R_elcyrillic" = -86.25;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_elcyrillic" = -86;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_quotedblbase" = -241;
integral = -115;
logicalnot = -69;
-underscore = -103.5;
-vturn = -86.25;
+underscore = -103;
+vturn = -86;
};
"@MMK_L_V" = {
-"@MMK_R_A" = -241.5;
+"@MMK_R_A" = -241;
"@MMK_R_C" = -92;
-"@MMK_R_J" = -195.5;
-"@MMK_R_a" = -135.125;
-"@MMK_R_approxequal" = -126.5;
-"@MMK_R_c" = -140.875;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -195;
+"@MMK_R_a" = -135;
+"@MMK_R_approxequal" = -126;
+"@MMK_R_c" = -140;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_idieresis" = 172;
"@MMK_R_quotedblbase" = -230;
"@MMK_R_s" = -92;
-adieresis = -80.5;
-ampersand = -103.5;
+adieresis = -80;
+ampersand = -103;
at = -69;
-backslash = 28.75;
+backslash = 28;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
-logicalnot = -126.5;
-multiply = -80.5;
+idblgrave = 80;
+less = -149;
+logicalnot = -126;
+multiply = -80;
otilde = -92;
-periodcentered = -80.5;
+periodcentered = -80;
questiondown = -115;
-slash = -117.875;
+slash = -117;
underscore = -161;
};
"@MMK_L_W" = {
-"@MMK_R_A" = -172.5;
+"@MMK_R_A" = -172;
"@MMK_R_C" = -92;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_S" = -23;
-"@MMK_R_a" = -129.375;
-"@MMK_R_approxequal" = -126.5;
+"@MMK_R_a" = -129;
+"@MMK_R_approxequal" = -126;
"@MMK_R_c" = -200;
-"@MMK_R_colon" = -103.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_colon" = -103;
+"@MMK_R_comma" = -195;
"@MMK_R_guillemetleft" = -115;
"@MMK_R_m" = -69;
-"@MMK_R_quotedblbase" = -218.5;
+"@MMK_R_quotedblbase" = -218;
"@MMK_R_s" = -69;
-ampersand = -103.5;
-backslash = 28.75;
+ampersand = -103;
+backslash = 28;
four = -69;
-idblgrave = 80.5;
-less = -149.5;
+idblgrave = 80;
+less = -149;
periodcentered = -69;
questiondown = -115;
-slash = -117.875;
+slash = -117;
};
"@MMK_L_X" = {
-"@MMK_R_C" = -97.75;
+"@MMK_R_C" = -97;
"@MMK_R_S" = -48;
-"@MMK_R_approxequal" = -103.5;
-"@MMK_R_c" = -57.5;
-"@MMK_R_guillemetleft" = -80.5;
+"@MMK_R_approxequal" = -103;
+"@MMK_R_c" = -57;
+"@MMK_R_guillemetleft" = -80;
"@MMK_R_hyphen" = -92;
-"@MMK_R_registered" = -14.375;
+"@MMK_R_registered" = -14;
asterisk.case = -92;
-idblgrave = 80.5;
+idblgrave = 80;
less = -115;
periodcentered = -92;
};
"@MMK_L_Y" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_C" = -103.5;
+"@MMK_R_A" = -149;
+"@MMK_R_C" = -103;
"@MMK_R_J" = -69;
"@MMK_R_T" = 92;
-"@MMK_R_a" = -258.75;
-"@MMK_R_approxequal" = -195.5;
-"@MMK_R_c" = -278.875;
-"@MMK_R_colon" = -126.5;
+"@MMK_R_a" = -258;
+"@MMK_R_approxequal" = -195;
+"@MMK_R_c" = -278;
+"@MMK_R_colon" = -126;
"@MMK_R_comma" = -184;
"@MMK_R_guillemetleft" = -184;
-"@MMK_R_guillemetright" = -126.5;
-"@MMK_R_idotless" = -28.75;
-"@MMK_R_m" = -80.5;
-"@MMK_R_quotedblbase" = -218.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_guillemetright" = -126;
+"@MMK_R_idotless" = -28;
+"@MMK_R_m" = -80;
+"@MMK_R_quotedblbase" = -218;
+"@MMK_R_registered" = -17;
"@MMK_R_s" = -138;
-"@MMK_R_u" = -80.5;
+"@MMK_R_u" = -80;
alpha = -115;
-ampersand = -126.5;
-asterisk.case = -80.5;
+ampersand = -126;
+asterisk.case = -80;
ccurl = -115;
chook = -115;
drthook = -115;
dyogh = -115;
dz = -115;
dzcurl = -115;
-ellipsis = -195.5;
+ellipsis = -195;
eturn = -115;
four = -138;
-iacute = -86.25;
-idblgrave = 80.5;
+iacute = -86;
+idblgrave = 80;
infinity = -69;
less = -207;
-logicalnot = -103.5;
+logicalnot = -103;
multiply = -92;
omacron = -115;
-periodcentered = -103.5;
+periodcentered = -103;
qrthook = -115;
-questiongreek = -126.5;
+questiongreek = -126;
schwa = -115;
uni0221 = -115;
uni0247 = -115;
-uni0248 = -241.5;
+uni0248 = -241;
};
"@MMK_L_Z" = {
"@MMK_R_C" = -69;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_idieresis" = 172.5;
+"@MMK_R_idieresis" = 172;
idblgrave = 69;
-less = -126.5;
+less = -126;
periodcentered = -69;
};
"@MMK_L_a" = {
"@MMK_R_T" = -92;
-"@MMK_R_T.sc" = -28.75;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -235.75;
-"@MMK_R_one" = -80.5;
+"@MMK_R_T.sc" = -28;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -235;
+"@MMK_R_one" = -80;
"@MMK_R_quotedblleft" = -92;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_registered" = -17;
"@MMK_R_t" = -16;
-"@MMK_R_v" = -40.25;
+"@MMK_R_v" = -40;
Gamma1 = -69;
-Trthook = -149.5;
-Yhook = -103.5;
-uni023E = -149.5;
+Trthook = -149;
+Yhook = -103;
+uni023E = -149;
};
"@MMK_L_a.sups" = {
-"@MMK_R_v.sups" = -26.59375;
+"@MMK_R_v.sups" = -26;
};
"@MMK_L_alphagreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
};
"@MMK_L_approxequal" = {
-"@MMK_R_A" = -103.5;
+"@MMK_R_A" = -103;
"@MMK_R_V" = -138;
-"@MMK_R_W" = -126.5;
-"@MMK_R_X" = -103.5;
-"@MMK_R_Y" = -195.5;
+"@MMK_R_W" = -126;
+"@MMK_R_X" = -103;
+"@MMK_R_Y" = -195;
"@MMK_R_quotedblleft" = -115;
-"@MMK_R_v" = -80.5;
+"@MMK_R_v" = -80;
"@MMK_R_x" = -69;
afii10044 = -92;
-tenge = -80.5;
+tenge = -80;
};
"@MMK_L_asciicircum" = {
-"@MMK_R_A" = -218.5;
+"@MMK_R_A" = -218;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Dcroat" = 69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_J" = -195.5;
+"@MMK_R_J" = -195;
"@MMK_R_comma" = -276;
ampersand = -69;
four = -92;
@@ -442308,30 +442308,30 @@ underscore = -138;
};
"@MMK_L_b" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -80.5;
-"@MMK_R_T.sc" = -28.75;
-"@MMK_R_V" = -140.875;
-"@MMK_R_W" = -103.5;
-"@MMK_R_X" = -57.5;
-"@MMK_R_Y" = -278.875;
+"@MMK_R_T" = -80;
+"@MMK_R_T.sc" = -28;
+"@MMK_R_V" = -140;
+"@MMK_R_W" = -103;
+"@MMK_R_X" = -57;
+"@MMK_R_Y" = -278;
"@MMK_R_dagger" = -69;
-"@MMK_R_parenright" = -28.75;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_parenright" = -28;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_registered" = -23;
-"@MMK_R_v" = -34.5;
-"@MMK_R_w" = -20.125;
-"@MMK_R_x" = -37.375;
+"@MMK_R_v" = -34;
+"@MMK_R_w" = -20;
+"@MMK_R_x" = -37;
Trthook = -161;
-Yhook = -103.5;
+Yhook = -103;
idblgrave = 69;
jcrosstail = -92;
uni023E = -161;
};
"@MMK_L_b.sups" = {
-"@MMK_R_parenright.sups" = -19.40625;
+"@MMK_R_parenright.sups" = -19;
"@MMK_R_v.sups" = -23;
-"@MMK_R_w.sups" = -13.65625;
-"@MMK_R_x.sups" = -25.15625;
+"@MMK_R_w.sups" = -13;
+"@MMK_R_x.sups" = -25;
};
"@MMK_L_becyrillic" = {
hardsigncyrillic = -69;
@@ -442340,47 +442340,47 @@ hardsigncyrillic = -69;
"@MMK_R_T" = -230;
"@MMK_R_T.sc" = -115;
"@MMK_R_V" = -230;
-"@MMK_R_X" = -57.5;
+"@MMK_R_X" = -57;
"@MMK_R_Y" = -345;
-"@MMK_R_dagger" = -86.25;
-"@MMK_R_parenright" = -57.5;
-"@MMK_R_quotedblleft" = -143.75;
-"@MMK_R_v" = -86.25;
-"@MMK_R_w" = -57.5;
-"@MMK_R_x" = -28.75;
+"@MMK_R_dagger" = -86;
+"@MMK_R_parenright" = -57;
+"@MMK_R_quotedblleft" = -143;
+"@MMK_R_v" = -86;
+"@MMK_R_w" = -57;
+"@MMK_R_x" = -28;
};
"@MMK_L_c" = {
-"@MMK_R_T" = -149.5;
-"@MMK_R_T.sc" = -11.5;
-"@MMK_R_W" = -97.75;
-"@MMK_R_Y" = -126.5;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_T" = -149;
+"@MMK_R_T.sc" = -11;
+"@MMK_R_W" = -97;
+"@MMK_R_Y" = -126;
+"@MMK_R_registered" = -11;
idblgrave = 69;
};
"@MMK_L_colon" = {
"@MMK_R_T" = -69;
-"@MMK_R_V" = -126.5;
+"@MMK_R_V" = -126;
"@MMK_R_quotedblleft" = -92;
-Psi = -126.5;
+Psi = -126;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-afii10044 = -103.5;
-uni023E = -80.5;
+Trthook = -80;
+afii10044 = -103;
+uni023E = -80;
};
"@MMK_L_comma" = {
"@MMK_R_T" = -69;
-"@MMK_R_T.sc" = -129.375;
+"@MMK_R_T.sc" = -129;
"@MMK_R_Y" = -184;
-"@MMK_R_nine.1" = -103.5;
-"@MMK_R_one" = -189.75;
+"@MMK_R_nine.1" = -103;
+"@MMK_R_one" = -189;
"@MMK_R_quotedbl" = -230;
-"@MMK_R_quotedblright" = -258.75;
-"@MMK_R_six" = -66.125;
-"@MMK_R_three" = -40.25;
+"@MMK_R_quotedblright" = -258;
+"@MMK_R_six" = -66;
+"@MMK_R_three" = -40;
Tbar = -69;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
@@ -442395,36 +442395,36 @@ Ytilde = -69;
eight = -69;
exclam = -46;
grave = -276;
-nine = -35.9375;
-question = -232.875;
+nine = -35;
+question = -232;
quotedblreversed = -276;
quotereversed = -276;
-seven = -71.875;
+seven = -71;
space = -115;
};
"@MMK_L_dagger" = {
-"@MMK_R_A" = -149.5;
-"@MMK_R_Alphagreek" = -149.5;
-"@MMK_R_J" = -149.5;
+"@MMK_R_A" = -149;
+"@MMK_R_Alphagreek" = -149;
+"@MMK_R_J" = -149;
"@MMK_R_c" = -69;
-Hbar = 80.5;
-ampersand = -80.5;
+Hbar = 80;
+ampersand = -80;
};
"@MMK_L_dcaron" = {
-"@MMK_R_T" = 80.5;
+"@MMK_R_T" = 80;
"@MMK_R_asciicircum" = 115;
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 138;
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_one" = 92;
-"@MMK_R_parenleft" = 28.75;
-"@MMK_R_parenright" = 143.75;
+"@MMK_R_parenleft" = 28;
+"@MMK_R_parenright" = 143;
"@MMK_R_parenright.case" = 115;
"@MMK_R_quotedbl" = 69;
"@MMK_R_quotedblleft" = 69;
-"@MMK_R_registered" = 34.5;
+"@MMK_R_registered" = 34;
hbar = 69;
ibreve = 69;
icaron = 69;
@@ -442439,42 +442439,42 @@ seven = 92;
underscore = 92;
};
"@MMK_L_deltagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
tau = -69;
};
"@MMK_L_e" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_T.sc" = -20.125;
-"@MMK_R_V" = -103.5;
-"@MMK_R_W" = -103.5;
-"@MMK_R_Y" = -258.75;
-"@MMK_R_registered" = -34.5;
-"@MMK_R_v" = -28.75;
-"@MMK_R_w" = -14.375;
-"@MMK_R_x" = -11.5;
-Gamma1 = -80.5;
+"@MMK_R_T" = -103;
+"@MMK_R_T.sc" = -20;
+"@MMK_R_V" = -103;
+"@MMK_R_W" = -103;
+"@MMK_R_Y" = -258;
+"@MMK_R_registered" = -34;
+"@MMK_R_v" = -28;
+"@MMK_R_w" = -14;
+"@MMK_R_x" = -11;
+Gamma1 = -80;
Trthook = -161;
-Yhook = -80.5;
+Yhook = -80;
uni023E = -161;
};
"@MMK_L_e.sups" = {
-"@MMK_R_v.sups" = -19.40625;
-"@MMK_R_w.sups" = -9.34375;
-"@MMK_R_x.sups" = -7.90625;
+"@MMK_R_v.sups" = -19;
+"@MMK_R_w.sups" = -9;
+"@MMK_R_x.sups" = -7;
};
"@MMK_L_eight" = {
-"@MMK_R_comma" = -40.25;
+"@MMK_R_comma" = -40;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_quotedblbase" = -103;
};
"@MMK_L_eight.sups" = {
"@MMK_R_A" = -184;
"@MMK_R_Alphagreek" = -184;
"@MMK_R_J" = -230;
-"@MMK_R_comma" = -218.5;
+"@MMK_R_comma" = -218;
"@MMK_R_guillemetleft" = -69;
-"@MMK_R_quotedblbase" = -287.5;
+"@MMK_R_quotedblbase" = -287;
"@MMK_R_t" = 69;
Hbar = 92;
four = -115;
@@ -442487,42 +442487,42 @@ Psi = -92;
};
"@MMK_L_f" = {
"@MMK_R_A" = -69;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_a" = -46;
-"@MMK_R_bullet" = -28.75;
+"@MMK_R_bullet" = -28;
"@MMK_R_c" = -34;
"@MMK_R_comma" = -115;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_hyphen" = -28.75;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_hyphen" = -28;
"@MMK_R_idieresis" = 207;
"@MMK_R_quotedblbase" = -184;
-"@MMK_R_s" = -28.75;
-four = -126.5;
-hturnhook2 = 80.5;
+"@MMK_R_s" = -28;
+four = -126;
+hturnhook2 = 80;
idblgrave = 92;
-underscore = -28.75;
+underscore = -28;
};
"@MMK_L_f.sups" = {
-"@MMK_R_a.sups" = -30.90625;
+"@MMK_R_a.sups" = -30;
"@MMK_R_c.sups" = -23;
-"@MMK_R_s.sups" = -19.40625;
+"@MMK_R_s.sups" = -19;
};
"@MMK_L_four" = {
-"@MMK_R_one" = -20.125;
-"@MMK_R_registered" = -11.5;
+"@MMK_R_one" = -20;
+"@MMK_R_registered" = -11;
};
"@MMK_L_four.dnomf" = {
-"@MMK_R_one.dnomf" = -12.21875;
+"@MMK_R_one.dnomf" = -12;
};
"@MMK_L_four.sups" = {
-"@MMK_R_one.sups" = -13.65625;
+"@MMK_R_one.sups" = -13;
};
"@MMK_L_fraction" = {
-"@MMK_R_four.dnomf" = -143.75;
+"@MMK_R_four.dnomf" = -143;
};
"@MMK_L_g" = {
-"@MMK_R_T" = -103.5;
-"@MMK_R_jdotless" = 34.5;
+"@MMK_R_T" = -103;
+"@MMK_R_jdotless" = 34;
underscore = 69;
};
"@MMK_L_g.sups" = {
@@ -442530,48 +442530,48 @@ underscore = 69;
};
"@MMK_L_gammagreek" = {
"@MMK_R_Alphagreek" = -138;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = 69;
Sigma = -69;
-lambda = -80.5;
-less = -80.5;
+lambda = -80;
+less = -80;
logicalnot = -69;
slash = -69;
-underscore = -80.5;
+underscore = -80;
};
"@MMK_L_guillemetleft" = {
"@MMK_R_A" = -69;
-"@MMK_R_T" = -103.5;
-"@MMK_R_Y" = -126.5;
-Psi = -126.5;
+"@MMK_R_T" = -103;
+"@MMK_R_Y" = -126;
+Psi = -126;
afii10044 = -138;
};
"@MMK_L_guillemetright" = {
"@MMK_R_A" = -69;
"@MMK_R_Alphagreek" = -69;
"@MMK_R_Elcyrillic" = -69;
-"@MMK_R_T" = -264.5;
-"@MMK_R_V" = -126.5;
+"@MMK_R_T" = -264;
+"@MMK_R_V" = -126;
"@MMK_R_W" = -115;
-"@MMK_R_X" = -80.5;
+"@MMK_R_X" = -80;
"@MMK_R_Y" = -184;
"@MMK_R_Z" = -69;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_one" = -80.5;
-"@MMK_R_quotedblleft" = -172.5;
+"@MMK_R_one" = -80;
+"@MMK_R_quotedblleft" = -172;
"@MMK_R_three" = -92;
-"@MMK_R_two" = -103.5;
+"@MMK_R_two" = -103;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
"@MMK_R_x" = -69;
Psi = -184;
-afii10024 = -103.5;
+afii10024 = -103;
afii10044 = -138;
eight = -69;
-seven = -103.5;
+seven = -103;
};
"@MMK_L_hyphen" = {
"@MMK_R_X" = -92;
@@ -442580,46 +442580,46 @@ seven = -103.5;
seven = -69;
};
"@MMK_L_idieresis" = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_T" = 184;
-"@MMK_R_V" = 172.5;
+"@MMK_R_V" = 172;
"@MMK_R_Z" = 184;
-"@MMK_R_f" = 80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_f" = 80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 184;
"@MMK_R_jdotless" = -115;
"@MMK_R_one" = 92;
-"@MMK_R_t" = 103.5;
+"@MMK_R_t" = 103;
Dhook = 69;
-Dzcaron_ = 149.5;
-Enhookcyrillic = 149.5;
-Nhook = 149.5;
-Rx = 149.5;
+Dzcaron_ = 149;
+Enhookcyrillic = 149;
+Nhook = 149;
+Rx = 149;
Thook = 69;
-afii10026 = 149.5;
-hbar = 80.5;
+afii10026 = 149;
+hbar = 80;
ibreve = 69;
icaron = 69;
icircumflex = 69;
-idblgrave = 103.5;
+idblgrave = 103;
igrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
+imacron = 80;
jcircumflex = 69;
jcrosstail = -115;
-numero = 149.5;
-rdblgrave.1 = 80.5;
+numero = 149;
+rdblgrave.1 = 80;
seven = 184;
-uni01F6 = 149.5;
-uni0246 = 149.5;
-uni0376 = 149.5;
-uni048A = 149.5;
+uni01F6 = 149;
+uni0246 = 149;
+uni0376 = 149;
+uni048A = 149;
};
"@MMK_L_idotless" = {
"@MMK_R_B" = 0;
"@MMK_R_V" = 69;
"@MMK_R_W" = 69;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_parenright" = 69;
"@MMK_R_parenright.case" = 115;
Dhook = 69;
@@ -442630,21 +442630,21 @@ Vtilde = 69;
Wdotaccent = 69;
Wdotbelow = 69;
florin = 69;
-hbar = 80.5;
-ibreve = 80.5;
+hbar = 80;
+ibreve = 80;
idblgrave = 69;
iinvertedbreve = 69;
-imacron = 80.5;
-iogonek = 80.5;
+imacron = 80;
+iogonek = 80;
itilde = 69;
itildebelow = 92;
-jcircumflex = 80.5;
+jcircumflex = 80;
lcircumflexbelow = 69;
llinebelow = 92;
rdblgrave.1 = 69;
rlinebelow.1 = 92;
tlinebelow = 69;
-underscore = 80.5;
+underscore = 80;
won = 69;
yen = 69;
};
@@ -442653,11 +442653,11 @@ yen = 69;
"@MMK_R_parenright.sups" = 46;
};
"@MMK_L_iotadieresisgreek" = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_quotedblleft" = -103.5;
+"@MMK_R_quotedblleft" = -103;
"@MMK_R_quotedblright" = 69;
-less = -80.5;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -442665,47 +442665,47 @@ underscore = -69;
"@MMK_L_k" = {
"@MMK_R_T" = -115;
"@MMK_R_c" = -46;
-"@MMK_R_guillemetleft" = -103.5;
-"@MMK_R_v" = 28.75;
+"@MMK_R_guillemetleft" = -103;
+"@MMK_R_v" = 28;
four = -92;
-less = -172.5;
+less = -172;
logicalnot = -138;
};
"@MMK_L_k.sups" = {
-"@MMK_R_c.sups" = -30.90625;
-"@MMK_R_v.sups" = 19.40625;
+"@MMK_R_c.sups" = -30;
+"@MMK_R_v.sups" = 19;
};
"@MMK_L_nine" = {
"@MMK_R_Y" = -69;
-"@MMK_R_comma" = -66.125;
-"@MMK_R_quotedblbase" = -103.5;
+"@MMK_R_comma" = -66;
+"@MMK_R_quotedblbase" = -103;
"@MMK_R_quotedblleft" = -92;
Psi = -69;
-seven = -40.25;
+seven = -40;
underscore = -92;
};
"@MMK_L_nine.1" = {
-"@MMK_R_A" = -20.125;
-"@MMK_R_comma" = -201.25;
-seven = -80.5;
+"@MMK_R_A" = -20;
+"@MMK_R_comma" = -201;
+seven = -80;
};
"@MMK_L_nine.dnomf" = {
-seven.dnomf = -24.4375;
+seven.dnomf = -24;
};
"@MMK_L_nine.sups" = {
-seven.sups = -26.59375;
+seven.sups = -26;
};
"@MMK_L_ohorn" = {
"@MMK_R_comma" = -92;
-"@MMK_R_parenleft" = 28.75;
-"@MMK_R_parenright" = 86.25;
+"@MMK_R_parenleft" = 28;
+"@MMK_R_parenright" = 86;
};
"@MMK_L_omegagreek" = {
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
};
"@MMK_L_one" = {
-"@MMK_R_comma" = -71.875;
+"@MMK_R_comma" = -71;
"@MMK_R_quotedblbase" = -92;
};
"@MMK_L_parenleft" = {
@@ -442715,294 +442715,294 @@ rlinebelow.1 = 69;
};
"@MMK_L_parenleft.case" = {
"@MMK_R_B" = 0;
-"@MMK_R_Idieresis" = 143.75;
+"@MMK_R_Idieresis" = 143;
"@MMK_R_idotless" = 115;
-Fhook = 201.25;
-jcaron = 143.75;
+Fhook = 201;
+jcaron = 143;
};
"@MMK_L_parenright" = {
"@MMK_R_quotedblleft" = -69;
};
"@MMK_L_psigreek" = {
"@MMK_R_Alphagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
-Psi = -172.5;
-lambda = -80.5;
+"@MMK_R_quotedblleft" = -126;
+Psi = -172;
+lambda = -80;
seven = -69;
};
"@MMK_L_quotedbl" = {
"@MMK_R_A" = -161;
"@MMK_R_Alphagreek" = -161;
"@MMK_R_Elcyrillic" = -92;
-"@MMK_R_J" = -333.5;
-"@MMK_R_comma" = -195.5;
+"@MMK_R_J" = -333;
+"@MMK_R_comma" = -195;
ampersand = -69;
-four = -126.5;
+four = -126;
};
"@MMK_L_quotedblbase" = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
"@MMK_R_V" = -184;
-"@MMK_R_W" = -126.5;
-"@MMK_R_Y" = -218.5;
-"@MMK_R_eight.sups" = -195.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_W" = -126;
+"@MMK_R_Y" = -218;
+"@MMK_R_eight.sups" = -195;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_one" = -138;
"@MMK_R_quotedblleft" = -253;
-"@MMK_R_quotedblright" = -195.5;
-"@MMK_R_v" = -103.5;
+"@MMK_R_quotedblright" = -195;
+"@MMK_R_v" = -103;
Psi = -207;
-Tbar = -195.5;
-afii10021 = 103.5;
-afii10041 = -126.5;
-afii10044 = -103.5;
+Tbar = -195;
+afii10021 = 103;
+afii10041 = -126;
+afii10044 = -103;
checyrillic = -69;
-decyrillic = 126.5;
-hardsigncyrillic = -80.5;
-tecyrillic = -103.5;
+decyrillic = 126;
+hardsigncyrillic = -80;
+tecyrillic = -103;
};
"@MMK_L_quotedblleft" = {
-"@MMK_R_A" = -195.5;
-"@MMK_R_Alphagreek" = -195.5;
-"@MMK_R_Elcyrillic" = -126.5;
+"@MMK_R_A" = -195;
+"@MMK_R_Alphagreek" = -195;
+"@MMK_R_Elcyrillic" = -126;
"@MMK_R_J" = -299;
"@MMK_R_comma" = -253;
-"@MMK_R_elcyrillic" = -172.5;
+"@MMK_R_elcyrillic" = -172;
"@MMK_R_quotedblbase" = -253;
-afii10021 = -103.5;
-ampersand = -126.5;
+afii10021 = -103;
+ampersand = -126;
decyrillic = -115;
-four = -126.5;
-questiondown = -126.5;
-slash = -195.5;
+four = -126;
+questiondown = -126;
+slash = -195;
};
"@MMK_L_quotedblright" = {
"@MMK_R_A" = -276;
-"@MMK_R_Alphagreek" = -264.5;
-"@MMK_R_Elcyrillic" = -103.5;
+"@MMK_R_Alphagreek" = -264;
+"@MMK_R_Elcyrillic" = -103;
"@MMK_R_J" = -253;
"@MMK_R_a" = -115;
"@MMK_R_approxequal" = -115;
-"@MMK_R_c" = -126.5;
+"@MMK_R_c" = -126;
"@MMK_R_colon" = -115;
"@MMK_R_comma" = -391;
-"@MMK_R_deltagreek" = -126.5;
-"@MMK_R_elcyrillic" = -126.5;
-"@MMK_R_epsilongreek" = -126.5;
-"@MMK_R_guillemetleft" = -172.5;
-"@MMK_R_iotadieresisgreek" = -126.5;
-"@MMK_R_m" = -43.125;
+"@MMK_R_deltagreek" = -126;
+"@MMK_R_elcyrillic" = -126;
+"@MMK_R_epsilongreek" = -126;
+"@MMK_R_guillemetleft" = -172;
+"@MMK_R_iotadieresisgreek" = -126;
+"@MMK_R_m" = -43;
"@MMK_R_nine.1" = -23;
-"@MMK_R_omegagreek" = -126.5;
-"@MMK_R_psigreek" = -80.5;
-"@MMK_R_quotedblbase" = -379.5;
-"@MMK_R_s" = -126.5;
+"@MMK_R_omegagreek" = -126;
+"@MMK_R_psigreek" = -80;
+"@MMK_R_quotedblbase" = -379;
+"@MMK_R_s" = -126;
"@MMK_R_six" = -92;
-"@MMK_R_t" = 43.125;
-"@MMK_R_u" = -80.5;
-"@MMK_R_v" = 57.5;
-afii10021 = -80.5;
+"@MMK_R_t" = 43;
+"@MMK_R_u" = -80;
+"@MMK_R_v" = 57;
+afii10021 = -80;
ampersand = -138;
asciitilde = -92;
at = -115;
decyrillic = -115;
-eight = -80.5;
-four = -195.5;
+eight = -80;
+four = -195;
iacyrillic = -69;
-less = -195.5;
+less = -195;
micro = -92;
numbersign = -253;
questiondown = -138;
-rho = -126.5;
-slash = -287.5;
+rho = -126;
+slash = -287;
theta = -138;
-underscore = -80.5;
+underscore = -80;
xi = -138;
-zeta = -126.5;
+zeta = -126;
};
"@MMK_L_r" = {
-"@MMK_R_A" = -80.5;
+"@MMK_R_A" = -80;
"@MMK_R_J" = -115;
"@MMK_R_T" = -115;
"@MMK_R_Z" = -69;
-"@MMK_R_a" = -51.75;
+"@MMK_R_a" = -51;
"@MMK_R_a.sups" = 69;
-"@MMK_R_c" = -63.25;
-"@MMK_R_comma" = -126.5;
-"@MMK_R_eight.sups" = 34.5;
+"@MMK_R_c" = -63;
+"@MMK_R_comma" = -126;
+"@MMK_R_eight.sups" = 34;
"@MMK_R_f" = 46;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 34.5;
-"@MMK_R_slash" = -57.5;
+"@MMK_R_quotedblright" = 34;
+"@MMK_R_slash" = -57;
"@MMK_R_t" = 46;
-"@MMK_R_v" = 17.25;
-"@MMK_R_w" = 17.25;
-"@MMK_R_x" = 17.25;
-a = -51.75;
-idblgrave = 80.5;
-less = -80.5;
+"@MMK_R_v" = 17;
+"@MMK_R_w" = 17;
+"@MMK_R_x" = 17;
+a = -51;
+idblgrave = 80;
+less = -80;
logicalnot = -69;
rdblgrave.1 = 69;
};
"@MMK_L_r.sups" = {
-"@MMK_R_a.sups" = -34.5;
-"@MMK_R_c.sups" = -42.40625;
-"@MMK_R_f.sups" = 7.90625;
+"@MMK_R_a.sups" = -34;
+"@MMK_R_c.sups" = -42;
+"@MMK_R_f.sups" = 7;
"@MMK_R_t.sups" = 46;
-a.sups = -34.5;
+a.sups = -34;
};
"@MMK_L_registered" = {
-"@MMK_R_A" = -143.75;
-"@MMK_R_C" = -11.5;
-"@MMK_R_J" = -143.75;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -17.25;
+"@MMK_R_A" = -143;
+"@MMK_R_C" = -11;
+"@MMK_R_J" = -143;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -17;
"@MMK_R_a" = -23;
-"@MMK_R_c" = -57.5;
-"@MMK_R_four" = -100.625;
+"@MMK_R_c" = -57;
+"@MMK_R_four" = -100;
"@MMK_R_s" = -23;
-"@MMK_R_six.1" = -34.5;
+"@MMK_R_six.1" = -34;
ampersand = -69;
};
"@MMK_L_rthook" = {
"@MMK_R_jdotless" = 92;
};
"@MMK_L_s" = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
"@MMK_R_V" = -92;
"@MMK_R_W" = -69;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_quotedblbase" = -103.5;
-"@MMK_R_quotedblleft" = -103.5;
-"@MMK_R_registered" = -17.25;
+"@MMK_R_Y" = -149;
+"@MMK_R_quotedblbase" = -103;
+"@MMK_R_quotedblleft" = -103;
+"@MMK_R_registered" = -17;
idblgrave = 69;
};
"@MMK_L_six.1" = {
-"@MMK_R_registered" = -34.5;
-seven = -80.5;
+"@MMK_R_registered" = -34;
+seven = -80;
underscore = -92;
};
"@MMK_L_t" = {
"@MMK_R_B" = 23;
"@MMK_R_T" = -69;
-"@MMK_R_c" = -11.5;
-"@MMK_R_hyphen" = -28.75;
+"@MMK_R_c" = -11;
+"@MMK_R_hyphen" = -28;
"@MMK_R_idotless" = 0;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 43.125;
-"@MMK_R_s" = -11.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 43;
+"@MMK_R_s" = -11;
idblgrave = 92;
-less = -57.5;
+less = -57;
rdblgrave.1 = 69;
};
"@MMK_L_t.sups" = {
-"@MMK_R_B.sups" = 15.09375;
-"@MMK_R_c.sups" = -7.90625;
+"@MMK_R_B.sups" = 15;
+"@MMK_R_c.sups" = -7;
"@MMK_R_idotless.sups" = 0;
-"@MMK_R_s.sups" = -7.90625;
+"@MMK_R_s.sups" = -7;
};
"@MMK_L_two" = {
-"@MMK_R_four" = -31.625;
+"@MMK_R_four" = -31;
};
"@MMK_L_two.dnomf" = {
-"@MMK_R_four.dnomf" = -18.6875;
+"@MMK_R_four.dnomf" = -18;
};
"@MMK_L_two.sups" = {
-"@MMK_R_four.sups" = -20.84375;
+"@MMK_R_four.sups" = -20;
};
"@MMK_L_u" = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Y" = -115;
-"@MMK_R_quotedblleft" = -80.5;
-"@MMK_R_quotedblright" = 28.75;
-Tcaron = -149.5;
-Trthook = -149.5;
-idblgrave = 80.5;
-uni023E = -149.5;
+"@MMK_R_quotedblleft" = -80;
+"@MMK_R_quotedblright" = 28;
+Tcaron = -149;
+Trthook = -149;
+idblgrave = 80;
+uni023E = -149;
};
"@MMK_L_v" = {
"@MMK_R_A" = -138;
-"@MMK_R_J" = -126.5;
+"@MMK_R_J" = -126;
"@MMK_R_T" = -69;
"@MMK_R_Y" = -69;
-"@MMK_R_a" = -28.75;
-"@MMK_R_approxequal" = -80.5;
-"@MMK_R_c" = -34.5;
+"@MMK_R_a" = -28;
+"@MMK_R_approxequal" = -80;
+"@MMK_R_c" = -34;
"@MMK_R_comma" = -69;
-"@MMK_R_elcyrillic" = -86.25;
-"@MMK_R_guillemetleft" = -80.5;
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_elcyrillic" = -86;
+"@MMK_R_guillemetleft" = -80;
+"@MMK_R_idieresis" = 80;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 57.5;
+"@MMK_R_quotedblright" = 57;
Dhook = 69;
-Tcaron = -126.5;
+Tcaron = -126;
Thook = 69;
-Trthook = -126.5;
-ellipsis = -149.5;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
+Trthook = -126;
+ellipsis = -149;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
imacron = 92;
less = -69;
-logicalnot = -80.5;
+logicalnot = -80;
slash = -115;
underscore = -161;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_v.sups" = {
-"@MMK_R_a.sups" = -19.40625;
+"@MMK_R_a.sups" = -19;
"@MMK_R_c.sups" = -23;
-"@MMK_R_idotless.sups" = 7.90625;
-"@MMK_R_jdotless.sups" = 53.90625;
+"@MMK_R_idotless.sups" = 7;
+"@MMK_R_jdotless.sups" = 53;
};
"@MMK_L_vecyrillic" = {
-"@MMK_R_quotedblbase" = -80.5;
+"@MMK_R_quotedblbase" = -80;
};
"@MMK_L_w" = {
"@MMK_R_A" = -138;
"@MMK_R_J" = -115;
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
"@MMK_R_Z" = -69;
-"@MMK_R_c" = -20.125;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_c" = -20;
+"@MMK_R_comma" = -149;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblright" = 86.25;
-Trthook = -126.5;
+"@MMK_R_quotedblright" = 86;
+Trthook = -126;
ampersand = -69;
-uni023E = -126.5;
+uni023E = -126;
};
"@MMK_L_w.sups" = {
-"@MMK_R_c.sups" = -13.65625;
+"@MMK_R_c.sups" = -13;
};
"@MMK_L_x" = {
-"@MMK_R_T" = -11.5;
-"@MMK_R_a" = -8.625;
+"@MMK_R_T" = -11;
+"@MMK_R_a" = -8;
"@MMK_R_approxequal" = -69;
"@MMK_R_c" = -64;
"@MMK_R_guillemetleft" = -69;
"@MMK_R_hyphen" = -46;
};
"@MMK_L_x.sups" = {
-"@MMK_R_a.sups" = -5.75;
-"@MMK_R_c.sups" = -25.15625;
+"@MMK_R_a.sups" = -5;
+"@MMK_R_c.sups" = -25;
};
"@MMK_L_z" = {
"@MMK_R_T" = -69;
-"@MMK_R_c" = -31.625;
+"@MMK_R_c" = -31;
Tcircumflexbelow = -69;
Tcommaaccent = -69;
Tdotaccent = -69;
Tdotbelow = -69;
Tlinebelow = -69;
-Trthook = -80.5;
-uni023E = -80.5;
+Trthook = -80;
+uni023E = -80;
};
"@MMK_L_z.sups" = {
-"@MMK_R_c.sups" = -20.84375;
+"@MMK_R_c.sups" = -20;
};
D = {
-enclosingcirclecomb = 57.5;
+enclosingcirclecomb = 57;
};
DZ = {
idblgrave = 69;
@@ -443011,7 +443011,7 @@ Dtopbar = {
idblgrave = 69;
};
Dzcaron_ = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
Ecedillabreve = {
idblgrave = 69;
@@ -443059,30 +443059,30 @@ Etildebelow = {
idblgrave = 69;
};
F = {
-enclosingcirclecomb = 129.375;
+enclosingcirclecomb = 129;
};
Fdotaccent = {
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
Fhook = {
"@MMK_R_comma" = -92;
-period = -80.5;
+period = -80;
};
Gamma = {
"@MMK_R_Alphagreek" = -184;
-"@MMK_R_Omicrongreek" = -103.5;
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_deltagreek" = -120.75;
-"@MMK_R_epsilongreek" = -264.5;
+"@MMK_R_Omicrongreek" = -103;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_deltagreek" = -120;
+"@MMK_R_epsilongreek" = -264;
"@MMK_R_gammagreek" = -207;
-"@MMK_R_guillemetleft" = -264.5;
-"@MMK_R_guillemetright" = -103.5;
-"@MMK_R_iotadieresisgreek" = -264.5;
-"@MMK_R_omegagreek" = -264.5;
-"@MMK_R_psigreek" = -264.5;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_guillemetleft" = -264;
+"@MMK_R_guillemetright" = -103;
+"@MMK_R_iotadieresisgreek" = -264;
+"@MMK_R_omegagreek" = -264;
+"@MMK_R_psigreek" = -264;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
Omega = -69;
four = -138;
@@ -443090,8 +443090,8 @@ lambda = -69;
less = -161;
micro = -207;
pi = -207;
-rho = -264.5;
-slash = -103.5;
+rho = -264;
+slash = -103;
tau = -207;
theta = -161;
underscore = -138;
@@ -443102,7 +443102,7 @@ H = {
enclosingcirclecomb = 0;
};
Hbar = {
-"@MMK_R_dagger" = 80.5;
+"@MMK_R_dagger" = 80;
"@MMK_R_eight.sups" = 92;
idblgrave = 69;
};
@@ -443113,23 +443113,23 @@ Hdotaccent = {
idblgrave = 69;
};
I = {
-enclosingcirclecomb = 455.6875;
+enclosingcirclecomb = 455;
};
Icaron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Icircumflex = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idblgrave = {
"@MMK_R_B" = 69;
idblgrave = 69;
};
Idieresis = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idieresisacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Idotbelow = {
idblgrave = 69;
@@ -443138,10 +443138,10 @@ Ihookabove = {
idblgrave = 69;
};
Iinvertedbreve = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Imacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Iogonek = {
"@MMK_R_jdotless" = 69;
@@ -443152,12 +443152,12 @@ Dcroat = 69;
Istroke = 69;
Lbar = 69;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
Itildebelow = {
-"@MMK_R_jdotless" = 270.25;
+"@MMK_R_jdotless" = 270;
};
K = {
enclosingcirclecomb = 0;
@@ -443169,16 +443169,16 @@ Kcaron = {
idblgrave = 92;
};
Kdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Khook = {
idblgrave = 92;
};
Klinebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
L = {
-enclosingcirclecomb = 172.5;
+enclosingcirclecomb = 172;
};
Lacute = {
"@MMK_R_asciicircum" = -92;
@@ -443186,7 +443186,7 @@ asciitilde = -92;
};
Lbar = {
"@MMK_R_asciicircum" = -69;
-degree = -80.5;
+degree = -80;
};
Lcaron = {
asciitilde = -69;
@@ -443194,7 +443194,7 @@ asciitilde = -69;
Lcircumflexbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -443210,7 +443210,7 @@ Ytilde = -69;
Ldotbelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -443219,7 +443219,7 @@ Ytilde = -69;
Ldotbelowmacron = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -443228,7 +443228,7 @@ Ytilde = -69;
Llinebelow = {
"@MMK_R_Y" = -69;
"@MMK_R_asciicircum" = -92;
-"@MMK_R_quotedblright" = -80.5;
+"@MMK_R_quotedblright" = -80;
Ydotaccent = -69;
Ydotbelow = -69;
Yhookabove = -69;
@@ -443244,7 +443244,7 @@ Yhookabove = -69;
Ytilde = -69;
};
M = {
-enclosingcirclecomb = -172.5;
+enclosingcirclecomb = -172;
};
Macute = {
idblgrave = 69;
@@ -443253,7 +443253,7 @@ Mdotaccent = {
idblgrave = 69;
};
N = {
-enclosingcirclecomb = 31.625;
+enclosingcirclecomb = 31;
};
Ndotaccent = {
idblgrave = 69;
@@ -443284,21 +443284,21 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
Pacute = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Pdotaccent = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Phook = {
-"@MMK_R_comma" = -80.5;
+"@MMK_R_comma" = -80;
};
Psi = {
-"@MMK_R_Alphagreek" = -126.5;
-"@MMK_R_colon" = -126.5;
-"@MMK_R_comma" = -195.5;
-"@MMK_R_guillemetleft" = -97.75;
-"@MMK_R_guillemetright" = -40.25;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_Alphagreek" = -126;
+"@MMK_R_colon" = -126;
+"@MMK_R_comma" = -195;
+"@MMK_R_guillemetleft" = -97;
+"@MMK_R_guillemetright" = -40;
+"@MMK_R_quotedblbase" = -241;
"@MMK_R_six" = -69;
ampersand = -69;
four = -138;
@@ -443310,20 +443310,20 @@ underscore = -207;
xi = -69;
};
Sigma = {
-"@MMK_R_Omicrongreek" = -80.5;
-"@MMK_R_gammagreek" = -103.5;
+"@MMK_R_Omicrongreek" = -80;
+"@MMK_R_gammagreek" = -103;
"@MMK_R_guillemetleft" = -69;
asterisk.case = -69;
-less = -126.5;
+less = -126;
pi = -69;
tau = -138;
};
Tbar = {
"@MMK_R_A" = -115;
-"@MMK_R_J" = -241.5;
+"@MMK_R_J" = -241;
"@MMK_R_approxequal" = -69;
"@MMK_R_comma" = -69;
-"@MMK_R_quotedblbase" = -241.5;
+"@MMK_R_quotedblbase" = -241;
};
Tcircumflexbelow = {
"@MMK_R_colon" = -69;
@@ -443348,11 +443348,11 @@ Tdotbelow = {
"@MMK_R_z" = -69;
};
Thorn = {
-"@MMK_R_A" = -80.5;
-"@MMK_R_J" = -80.5;
+"@MMK_R_A" = -80;
+"@MMK_R_J" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_V" = -103.5;
-"@MMK_R_Z" = -80.5;
+"@MMK_R_V" = -103;
+"@MMK_R_Z" = -80;
"@MMK_R_comma" = -207;
"@MMK_R_quotedblbase" = -253;
"@MMK_R_quotedblleft" = -115;
@@ -443365,10 +443365,10 @@ Tlinebelow = {
"@MMK_R_z" = -69;
};
Trthook = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_x" = -126.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_x" = -126;
+"@MMK_R_z" = -80;
};
Udblgrave = {
idblgrave = 69;
@@ -443390,23 +443390,23 @@ idblgrave = 69;
};
Uhornacute = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorndotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorngrave = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhornhookabove = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uhorntilde = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Uinvertedbreve = {
idblgrave = 69;
@@ -443419,7 +443419,7 @@ idblgrave = 69;
};
Vdotbelow = {
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Vtilde = {
"@MMK_R_comma" = -69;
@@ -443438,7 +443438,7 @@ Wdotaccent = {
idblgrave = 92;
};
Wdotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
Wgrave = {
idblgrave = 92;
@@ -443466,14 +443466,14 @@ idblgrave = 92;
Ydotbelow = {
"@MMK_R_J" = -69;
"@MMK_R_comma" = -69;
-idblgrave = 80.5;
+idblgrave = 80;
};
Ygrave = {
idblgrave = 92;
};
Yhook = {
-"@MMK_R_J" = -80.5;
-"@MMK_R_comma" = -80.5;
+"@MMK_R_J" = -80;
+"@MMK_R_comma" = -80;
idblgrave = 92;
};
Yhookabove = {
@@ -443496,7 +443496,7 @@ Zlinebelow = {
idblgrave = 69;
};
acircumflexacute = {
-"@MMK_R_B" = 80.5;
+"@MMK_R_B" = 80;
"@MMK_R_idotless" = 69;
acircumflexgrave = 69;
ecircumflexgrave = 69;
@@ -443512,45 +443512,45 @@ afii10018 = {
afii10044 = -115;
};
afii10024 = {
-"@MMK_R_guillemetleft" = -103.5;
-afii10038 = -103.5;
+"@MMK_R_guillemetleft" = -103;
+afii10038 = -103;
afii10041 = -69;
-afii10044 = -80.5;
+afii10044 = -80;
asciitilde = -69;
checyrillic = -115;
-four = -80.5;
+four = -80;
hardsigncyrillic = -92;
hryvnia = -69;
-less = -103.5;
-logicalnot = -103.5;
+less = -103;
+logicalnot = -103;
multiply = -92;
-tecyrillic = -126.5;
+tecyrillic = -126;
zecyrillic = -69;
};
afii10038 = {
-"@MMK_R_quotedblbase" = -103.5;
-afii10024 = -103.5;
+"@MMK_R_quotedblbase" = -103;
+afii10024 = -103;
afii10044 = -69;
};
afii10051 = {
"@MMK_R_one" = -69;
};
amacron = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ampersand = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -126.5;
-"@MMK_R_W" = -80.5;
-"@MMK_R_Y" = -149.5;
-"@MMK_R_dagger" = -80.5;
+"@MMK_R_V" = -126;
+"@MMK_R_W" = -80;
+"@MMK_R_Y" = -149;
+"@MMK_R_dagger" = -80;
"@MMK_R_eight.sups" = -92;
"@MMK_R_quotedbl" = -69;
"@MMK_R_quotedblleft" = -184;
"@MMK_R_registered" = -46;
"@MMK_R_v" = -69;
"@MMK_R_w" = -69;
-Psi = -149.5;
+Psi = -149;
afii10044 = -115;
};
asciitilde = {
@@ -443562,31 +443562,31 @@ asterisk.case = {
"@MMK_R_T" = -69;
};
at = {
-enclosingcirclecomb = -373.75;
+enclosingcirclecomb = -373;
};
at.case = {
-enclosingcirclecomb = -340.6875;
+enclosingcirclecomb = -340;
};
backslash = {
-"@MMK_R_T" = -80.5;
-"@MMK_R_V" = -117.875;
-"@MMK_R_W" = -117.875;
-"@MMK_R_comma" = 80.5;
-"@MMK_R_gammagreek" = -103.5;
-"@MMK_R_quotedblleft" = -86.25;
+"@MMK_R_T" = -80;
+"@MMK_R_V" = -117;
+"@MMK_R_W" = -117;
+"@MMK_R_comma" = 80;
+"@MMK_R_gammagreek" = -103;
+"@MMK_R_quotedblleft" = -86;
"@MMK_R_quotedblright" = -115;
-"@MMK_R_v" = -103.5;
-Psi = -80.5;
-tenge = -103.5;
+"@MMK_R_v" = -103;
+Psi = -80;
+tenge = -103;
};
beta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
bhook = {
"@MMK_R_T" = -161;
};
bracketleft = {
-idblgrave = 80.5;
+idblgrave = 80;
};
bracketright = {
idblgrave = 69;
@@ -443598,16 +443598,16 @@ dcircumflexbelow = {
idblgrave = 69;
};
dcroat = {
-"@MMK_R_idieresis" = 80.5;
+"@MMK_R_idieresis" = 80;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
Thook = 69;
-hbar = 80.5;
-icircumflex = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
+hbar = 80;
+icircumflex = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+imacron = 80;
};
ddotaccent = {
idblgrave = 69;
@@ -443623,12 +443623,12 @@ dhook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
dlinebelow = {
idblgrave = 69;
@@ -443653,51 +443653,51 @@ ellipsis = {
quotedblreversed = -368;
};
enclosingcirclecomb = {
-"@MMK_R_A" = -43.125;
-"@MMK_R_B" = 86.25;
-"@MMK_R_C" = -40.25;
-"@MMK_R_J" = 171.0625;
-"@MMK_R_S" = 86.25;
-"@MMK_R_T" = 71.875;
-"@MMK_R_U" = 43.125;
-"@MMK_R_V" = -57.5;
-"@MMK_R_W" = -339.25;
-"@MMK_R_X" = -14.375;
-"@MMK_R_Y" = -5.75;
-"@MMK_R_Z" = 60.375;
-"@MMK_R_approxequal" = 57.5;
-"@MMK_R_emdash" = -241.5;
-"@MMK_R_endash" = 258.75;
-"@MMK_R_four" = 28.75;
-"@MMK_R_hyphen" = 288.9375;
-"@MMK_R_one" = 215.625;
-"@MMK_R_six" = 28.75;
-"@MMK_R_three" = 90.5625;
-"@MMK_R_two" = 109.25;
-D = 57.5;
-F = 129.375;
+"@MMK_R_A" = -43;
+"@MMK_R_B" = 86;
+"@MMK_R_C" = -40;
+"@MMK_R_J" = 171;
+"@MMK_R_S" = 86;
+"@MMK_R_T" = 71;
+"@MMK_R_U" = 43;
+"@MMK_R_V" = -57;
+"@MMK_R_W" = -339;
+"@MMK_R_X" = -14;
+"@MMK_R_Y" = -5;
+"@MMK_R_Z" = 60;
+"@MMK_R_approxequal" = 57;
+"@MMK_R_emdash" = -241;
+"@MMK_R_endash" = 258;
+"@MMK_R_four" = 28;
+"@MMK_R_hyphen" = 288;
+"@MMK_R_one" = 215;
+"@MMK_R_six" = 28;
+"@MMK_R_three" = 90;
+"@MMK_R_two" = 109;
+D = 57;
+F = 129;
H = 0;
-I = 455.6875;
+I = 455;
K = 0;
-L = 172.5;
-M = -172.5;
-N = 31.625;
-at = -373.75;
-at.case = -340.6875;
+L = 172;
+M = -172;
+N = 31;
+at = -373;
+at.case = -340;
eight = 69;
-exclam = 392.4375;
-five = 66.125;
+exclam = 392;
+five = 66;
nine = 92;
-numbersign = 109.25;
-plus = 71.875;
-question = 182.5625;
+numbersign = 109;
+plus = 71;
+question = 182;
seven = 161;
};
eturn = {
"@MMK_R_T" = -161;
};
exclam = {
-enclosingcirclecomb = 392.4375;
+enclosingcirclecomb = 392;
};
exclamdown = {
"@MMK_R_T" = -138;
@@ -443711,12 +443711,12 @@ idblgrave = 92;
rdblgrave.1 = 69;
};
feng = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
five = {
-"@MMK_R_comma" = -40.25;
-"@MMK_R_registered" = -11.5;
-enclosingcirclecomb = 66.125;
+"@MMK_R_comma" = -40;
+"@MMK_R_registered" = -11;
+enclosingcirclecomb = 66;
};
florin = {
"@MMK_R_idotless" = 69;
@@ -443727,8 +443727,8 @@ four.ss01 = {
"@MMK_R_comma" = -69;
};
gamma1 = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
germandbls = {
"@MMK_R_quotedblleft" = -138;
@@ -443737,57 +443737,57 @@ ghook = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-hbar = 80.5;
-idblgrave = 103.5;
-idieresisacute = 80.5;
+hbar = 80;
+idblgrave = 103;
+idieresisacute = 80;
iinvertedbreve = 69;
-imacron = 80.5;
-rdblgrave.1 = 80.5;
+imacron = 80;
+rdblgrave.1 = 80;
};
greater = {
-"@MMK_R_A" = -143.75;
+"@MMK_R_A" = -143;
"@MMK_R_Elcyrillic" = -69;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -149.5;
-"@MMK_R_W" = -149.5;
+"@MMK_R_V" = -149;
+"@MMK_R_W" = -149;
"@MMK_R_X" = -115;
"@MMK_R_Y" = -184;
-"@MMK_R_Z" = -126.5;
-"@MMK_R_quotedblleft" = -195.5;
+"@MMK_R_Z" = -126;
+"@MMK_R_quotedblleft" = -195;
Psi = -184;
-afii10024 = -103.5;
-afii10044 = -149.5;
-seven = -149.5;
-tenge = -149.5;
+afii10024 = -103;
+afii10044 = -149;
+seven = -149;
+tenge = -149;
};
henghook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hhook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
hturn = {
-"@MMK_R_jdotless" = 143.75;
+"@MMK_R_jdotless" = 143;
};
iacute = {
-idblgrave = 103.5;
+idblgrave = 103;
};
ibreve = {
-"@MMK_R_idotless" = 80.5;
-idblgrave = 103.5;
-rdblgrave.1 = 80.5;
+"@MMK_R_idotless" = 80;
+idblgrave = 103;
+rdblgrave.1 = 80;
};
icaron = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
idblgrave = 115;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
icircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-itilde = 80.5;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+itilde = 80;
};
idblgrave = {
"@MMK_R_idieresis" = 69;
@@ -443798,89 +443798,89 @@ idblgrave = 69;
iinvertedbreve = 69;
};
idieresisacute = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+iinvertedbreve = 80;
};
idotbelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
ihookabove = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-idblgrave = 103.5;
+idblgrave = 103;
rdblgrave.1 = 69;
};
iinvertedbreve = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 80.5;
+"@MMK_R_jdotless" = 80;
Dhook = 69;
-hbar = 80.5;
+hbar = 80;
idblgrave = 92;
-idieresisacute = 80.5;
-iinvertedbreve = 80.5;
-imacron = 80.5;
-itilde = 80.5;
+idieresisacute = 80;
+iinvertedbreve = 80;
+imacron = 80;
+itilde = 80;
rdblgrave.1 = 69;
};
ij = {
idblgrave = 69;
};
imacron = {
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 103.5;
-iinvertedbreve = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 103;
+iinvertedbreve = 80;
imacron = 92;
-rdblgrave.1 = 80.5;
+rdblgrave.1 = 80;
};
infinity = {
"@MMK_R_Y" = -69;
};
itilde = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
idblgrave = 115;
};
itildebelow = {
-idblgrave = 80.5;
+idblgrave = 80;
};
jcaron = {
-"@MMK_R_parenright.case" = 143.75;
+"@MMK_R_parenright.case" = 143;
};
jcircumflex = {
"@MMK_R_idieresis" = 69;
-"@MMK_R_idotless" = 80.5;
-"@MMK_R_jdotless" = 80.5;
-idblgrave = 80.5;
-iinvertedbreve = 80.5;
-itilde = 80.5;
+"@MMK_R_idotless" = 80;
+"@MMK_R_jdotless" = 80;
+idblgrave = 80;
+iinvertedbreve = 80;
+itilde = 80;
};
l.ss02 = {
"@MMK_R_A" = 46;
-"@MMK_R_B" = 28.75;
+"@MMK_R_B" = 28;
};
lacute = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lambda = {
-"@MMK_R_deltagreek" = -80.5;
+"@MMK_R_deltagreek" = -80;
"@MMK_R_gammagreek" = -115;
-"@MMK_R_omegagreek" = -80.5;
+"@MMK_R_omegagreek" = -80;
"@MMK_R_one" = -115;
"@MMK_R_psigreek" = -69;
pi = -138;
-tau = -195.5;
+tau = -195;
};
lbar = {
-"@MMK_R_Dcroat" = 80.5;
-Dcroat = 80.5;
-Istroke = 80.5;
-Lbar = 80.5;
+"@MMK_R_Dcroat" = 80;
+Dcroat = 80;
+Istroke = 80;
+Lbar = 80;
idblgrave = 69;
-lbar = 80.5;
+lbar = 80;
lslash = 69;
ubar = 69;
};
@@ -443888,18 +443888,18 @@ lcircumflexbelow = {
"@MMK_R_B" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
-Itildebelow = 80.5;
+Itildebelow = 80;
idblgrave = 69;
-itildebelow = 80.5;
-lcircumflexbelow = 80.5;
-llinebelow = 80.5;
-rlinebelow.1 = 80.5;
+itildebelow = 80;
+lcircumflexbelow = 80;
+llinebelow = 80;
+rlinebelow.1 = 80;
};
lcommaaccent = {
idblgrave = 69;
};
lcurl = {
-"@MMK_R_jdotless" = 86.25;
+"@MMK_R_jdotless" = 86;
};
ldot = {
"@MMK_R_Dcroat" = 69;
@@ -443912,28 +443912,28 @@ ldotbelow = {
idblgrave = 69;
};
ldotbelowmacron = {
-idblgrave = 80.5;
+idblgrave = 80;
};
lj = {
idblgrave = 69;
};
llinebelow = {
-"@MMK_R_B" = 80.5;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_B" = 80;
+"@MMK_R_idotless" = 80;
"@MMK_R_jdotless" = 69;
"@MMK_R_parenright" = 69;
Iogonek = 69;
florin = 69;
idblgrave = 69;
itildebelow = 92;
-jcircumflex = 80.5;
-lcircumflexbelow = 80.5;
+jcircumflex = 80;
+lcircumflexbelow = 80;
llinebelow = 92;
rlinebelow.1 = 92;
underscore = 69;
};
logicalnot = {
-afii10044 = -103.5;
+afii10044 = -103;
};
lslash = {
"@MMK_R_Dcroat" = 69;
@@ -443944,10 +443944,10 @@ idblgrave = 69;
lbar = 69;
};
micro = {
-"@MMK_R_Alphagreek" = -80.5;
+"@MMK_R_Alphagreek" = -80;
"@MMK_R_eight.sups" = 92;
-"@MMK_R_quotedblleft" = -103.5;
-less = -80.5;
+"@MMK_R_quotedblleft" = -103;
+less = -80;
logicalnot = -69;
slash = -69;
underscore = -69;
@@ -443957,10 +443957,10 @@ mturn = {
};
multiply = {
"@MMK_R_T" = -115;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_Y" = -92;
afii10024 = -92;
-afii10044 = -149.5;
+afii10044 = -149;
afii10049 = -92;
tenge = -69;
};
@@ -443971,66 +443971,66 @@ nj = {
idblgrave = 69;
};
nlfthook = {
-"@MMK_R_T" = -149.5;
+"@MMK_R_T" = -149;
};
ntilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
numbersign = {
-enclosingcirclecomb = 109.25;
+enclosingcirclecomb = 109;
};
ocircumflexacute = {
"@MMK_R_B" = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
ocircumflexhookabove = {
idblgrave = 92;
};
odieresis = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
ohorntilde = {
idblgrave = 69;
};
otilde = {
-"@MMK_R_T" = -103.5;
+"@MMK_R_T" = -103;
};
percent = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -138;
};
periodcentered = {
"@MMK_R_A" = -69;
"@MMK_R_J" = -92;
"@MMK_R_T" = -161;
-"@MMK_R_V" = -80.5;
+"@MMK_R_V" = -80;
"@MMK_R_X" = -92;
-"@MMK_R_Y" = -103.5;
+"@MMK_R_Y" = -103;
};
pi = {
"@MMK_R_deltagreek" = -69;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
};
plus = {
-enclosingcirclecomb = 71.875;
+enclosingcirclecomb = 71;
};
question = {
-"@MMK_R_A" = -126.5;
-"@MMK_R_Alphagreek" = -126.5;
-enclosingcirclecomb = 182.5625;
+"@MMK_R_A" = -126;
+"@MMK_R_Alphagreek" = -126;
+enclosingcirclecomb = 182;
};
questiondown = {
"@MMK_R_V" = -115;
"@MMK_R_W" = -115;
"@MMK_R_gammagreek" = -69;
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
"@MMK_R_quotedblright" = -69;
Psi = -184;
Tbar = -138;
};
r = {
-"@MMK_R_v" = 34.5;
-"@MMK_R_x" = 34.5;
+"@MMK_R_v" = 34;
+"@MMK_R_x" = 34;
};
rcaron.1 = {
idblgrave = 92;
@@ -444040,14 +444040,14 @@ rdotbelowmacron.1 = {
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
rinvertedbreve.1 = {
"@MMK_R_idieresis" = 69;
"@MMK_R_idotless" = 69;
"@MMK_R_jdotless" = 69;
hbar = 69;
-idblgrave = 80.5;
+idblgrave = 80;
};
sacutedotaccent = {
idblgrave = 69;
@@ -444059,90 +444059,90 @@ schwa = {
"@MMK_R_T" = -161;
};
seven = {
-"@MMK_R_A" = -218.5;
-"@MMK_R_Alphagreek" = -218.5;
-"@MMK_R_J" = -195.5;
+"@MMK_R_A" = -218;
+"@MMK_R_Alphagreek" = -218;
+"@MMK_R_J" = -195;
"@MMK_R_a" = -92;
-"@MMK_R_c" = -103.5;
+"@MMK_R_c" = -103;
"@MMK_R_colon" = -69;
"@MMK_R_comma" = -253;
-"@MMK_R_deltagreek" = -103.5;
-"@MMK_R_epsilongreek" = -103.5;
-"@MMK_R_guillemetleft" = -126.5;
+"@MMK_R_deltagreek" = -103;
+"@MMK_R_epsilongreek" = -103;
+"@MMK_R_guillemetleft" = -126;
"@MMK_R_idieresis" = 184;
-"@MMK_R_iotadieresisgreek" = -103.5;
-"@MMK_R_omegagreek" = -103.5;
-"@MMK_R_quotedblbase" = -287.5;
-"@MMK_R_s" = -80.5;
-"@MMK_R_six" = -31.625;
+"@MMK_R_iotadieresisgreek" = -103;
+"@MMK_R_omegagreek" = -103;
+"@MMK_R_quotedblbase" = -287;
+"@MMK_R_s" = -80;
+"@MMK_R_six" = -31;
"@MMK_R_six.1" = -69;
-"@MMK_R_three" = -34.5;
+"@MMK_R_three" = -34;
ampersand = -92;
-eight = -28.75;
+eight = -28;
enclosingcirclecomb = 161;
-five = -20.125;
-four = -117.875;
-four.ss01 = -126.5;
+five = -20;
+four = -117;
+four.ss01 = -126;
less = -184;
-nine = -20.125;
+nine = -20;
numbersign = -115;
-rho = -103.5;
-seven = 40.25;
-theta = -103.5;
-three.1 = 2.875;
+rho = -103;
+seven = 40;
+theta = -103;
+three.1 = 2;
underscore = -322;
-zeta = -103.5;
+zeta = -103;
};
seven.dnomf = {
-"@MMK_R_six.dnomf" = -18.6875;
-"@MMK_R_three.dnomf" = -20.84375;
-eight.dnomf = -17.25;
-five.dnomf = -12.21875;
-four.dnomf = -70.4375;
-nine.dnomf = -12.21875;
-seven.dnomf = 24.4375;
+"@MMK_R_six.dnomf" = -18;
+"@MMK_R_three.dnomf" = -20;
+eight.dnomf = -17;
+five.dnomf = -12;
+four.dnomf = -70;
+nine.dnomf = -12;
+seven.dnomf = 24;
};
seven.frac = {
-four.frac = -34.5;
-fraction = -172.5;
+four.frac = -34;
+fraction = -172;
};
seven.numr = {
-four.numr = -34.5;
+four.numr = -34;
};
seven.sups = {
-"@MMK_R_six.sups" = -20.84375;
+"@MMK_R_six.sups" = -20;
"@MMK_R_three.sups" = -23;
-eight.sups = -19.40625;
-five.sups = -13.65625;
-four.sups = -78.34375;
-nine.sups = -13.65625;
-seven.sups = 26.59375;
+eight.sups = -19;
+five.sups = -13;
+four.sups = -78;
+nine.sups = -13;
+seven.sups = 26;
};
sigma = {
-"@MMK_R_Alphagreek" = -80.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_Alphagreek" = -80;
+"@MMK_R_comma" = -149;
"@MMK_R_eight.sups" = 92;
"@MMK_R_quotedblbase" = -161;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_quotedblleft" = -80;
lambda = -138;
logicalnot = -69;
slash = -69;
};
six = {
-"@MMK_R_comma" = -54.625;
+"@MMK_R_comma" = -54;
"@MMK_R_quotedblbase" = -92;
underscore = -92;
};
slash = {
-"@MMK_R_J" = -126.5;
-"@MMK_R_V" = 28.75;
-"@MMK_R_W" = 28.75;
-"@MMK_R_comma" = -80.5;
-idblgrave = 80.5;
+"@MMK_R_J" = -126;
+"@MMK_R_V" = 28;
+"@MMK_R_W" = 28;
+"@MMK_R_comma" = -80;
+idblgrave = 80;
};
tau = {
-"@MMK_R_deltagreek" = -80.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_deltagreek" = -80;
+"@MMK_R_quotedblleft" = -80;
};
tccurl = {
"@MMK_R_T" = -161;
@@ -444155,23 +444155,23 @@ llinebelow = 69;
rlinebelow.1 = 69;
};
tecyrillic = {
-"@MMK_R_comma" = -129.375;
-"@MMK_R_quotedblbase" = -149.5;
+"@MMK_R_comma" = -129;
+"@MMK_R_quotedblbase" = -149;
};
theta = {
-"@MMK_R_quotedblleft" = -126.5;
+"@MMK_R_quotedblleft" = -126;
};
thook = {
idblgrave = 92;
};
three.frac = {
-fraction = -28.75;
+fraction = -28;
};
tlinebelow = {
"@MMK_R_B" = 69;
-"@MMK_R_idotless" = 80.5;
+"@MMK_R_idotless" = 80;
llinebelow = 69;
-rlinebelow.1 = 80.5;
+rlinebelow.1 = 80;
};
ubar = {
"@MMK_R_Dcroat" = 69;
@@ -444197,27 +444197,27 @@ uhorntilde = {
hbar = 69;
};
underscore = {
-"@MMK_R_C" = -80.5;
-"@MMK_R_Omicrongreek" = -80.5;
+"@MMK_R_C" = -80;
+"@MMK_R_Omicrongreek" = -80;
"@MMK_R_T" = -115;
-"@MMK_R_U" = -80.5;
+"@MMK_R_U" = -80;
"@MMK_R_V" = -161;
"@MMK_R_asciicircum" = -138;
"@MMK_R_gammagreek" = -115;
"@MMK_R_idotless" = 69;
-"@MMK_R_jdotless" = 195.5;
+"@MMK_R_jdotless" = 195;
"@MMK_R_m" = 92;
"@MMK_R_nine.1" = -92;
-"@MMK_R_one" = -218.5;
-"@MMK_R_quotedblleft" = -80.5;
+"@MMK_R_one" = -218;
+"@MMK_R_quotedblleft" = -80;
"@MMK_R_six" = -92;
"@MMK_R_three" = -92;
"@MMK_R_v" = -161;
-Psi = -195.5;
+Psi = -195;
afii10021 = 115;
-afii10041 = -218.5;
-afii10044 = -103.5;
-afii10047 = -80.5;
+afii10041 = -218;
+afii10044 = -103;
+afii10047 = -80;
decyrillic = 92;
eight = -92;
five = -92;
@@ -444225,36 +444225,36 @@ four = -115;
llinebelow = 69;
nine = -92;
rlinebelow.1 = 69;
-tenge = -103.5;
+tenge = -103;
};
uni01F6 = {
"@MMK_R_T" = -92;
};
uni023E = {
-"@MMK_R_colon" = -80.5;
-"@MMK_R_comma" = -172.5;
-"@MMK_R_z" = -80.5;
+"@MMK_R_colon" = -80;
+"@MMK_R_comma" = -172;
+"@MMK_R_z" = -80;
};
uni0240 = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
uni0247 = {
"@MMK_R_T" = -161;
};
uni024F = {
-"@MMK_R_T" = 149.5;
-"@MMK_R_comma" = -149.5;
+"@MMK_R_T" = 149;
+"@MMK_R_comma" = -149;
};
uni20BD = {
"@MMK_R_comma" = -138;
-slash = -80.5;
-underscore = -103.5;
+slash = -80;
+underscore = -103;
};
vturn = {
-"@MMK_R_T.sc" = -86.25;
+"@MMK_R_T.sc" = -86;
};
won = {
-idblgrave = 80.5;
+idblgrave = 80;
};
xi = {
Psi = -92;
@@ -444268,10 +444268,10 @@ ytilde = {
idblgrave = 69;
};
zbar = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
zcurl = {
-"@MMK_R_T" = -195.5;
+"@MMK_R_T" = -195;
};
zdotbelow = {
"@MMK_R_T" = -69;
@@ -444294,7 +444294,7 @@ Tdotaccent = -69;
Tdotbelow = -69;
};
zrthook = {
-"@MMK_R_T" = -80.5;
+"@MMK_R_T" = -80;
};
};
};