From cd8f1b23022595fd7b1cbb88942895e90c7ea07b Mon Sep 17 00:00:00 2001 From: Belleve Invis Date: Tue, 21 Jul 2015 01:20:47 +0800 Subject: [PATCH] Added metadata generation procedure. --- buildglyphs-final.patel | 3 + font.patel => buildglyphs-intro.patel | 79 +- buildglyphs.js | 2416 ++++++++++++++++++++++++ empty.json | 9 +- font.js | 2450 ------------------------- generate.js | 8 +- makefile | 25 +- parameters.js | 64 + parameters.patel | 67 + 9 files changed, 2603 insertions(+), 2518 deletions(-) create mode 100644 buildglyphs-final.patel rename font.patel => buildglyphs-intro.patel (84%) create mode 100644 buildglyphs.js delete mode 100644 font.js create mode 100644 parameters.js create mode 100644 parameters.patel diff --git a/buildglyphs-final.patel b/buildglyphs-final.patel new file mode 100644 index 0000000..ffc1a9f --- /dev/null +++ b/buildglyphs-final.patel @@ -0,0 +1,3 @@ + +return font +} \ No newline at end of file diff --git a/font.patel b/buildglyphs-intro.patel similarity index 84% rename from font.patel rename to buildglyphs-intro.patel index 4972f2a..481c1e6 100644 --- a/font.patel +++ b/buildglyphs-intro.patel @@ -1,69 +1,14 @@ -define font [require './empty.json'] -exports.font = font - -define glyphList font.glyf -define glyphs (.'.notdef' glyphList.0) - - define Glyph [require './support/glyph'].Glyph define Stroke [require './support/stroke'].Stroke -define para_regular ( - .width 500 - .stroke 80 - .dotsize 125 - .sb 60 - .cap 771 - .xheight 560 - .hook 145 - .ahook 135 - .shook 100 - .rhook 75 - .smooth 192 - .smallsmooth 242 - .smoothadjust 100 - .o [-8] - .oxhook 0 - .descender [-178] - .kappa 0.515 - .italicangle 0 - .barpos 0.45 - .gbarpos 0.37 - .longserif 175 - .accent 175 - .tbalance 70 - .tbalance2 30 - .rbalance 25 -) +define [exports.build para] : begin { -define para_bold : Object.create para_regular -para_bold.sb = 50 -para_bold.stroke = 120 -para_bold.dotsize = 160 -para_bold.barpos = 0.42 -para_bold.hook = 150 -para_bold.ahook = 100 -para_bold.oxhook = 0 -para_bold.kappa_hook = 0.7 -para_bold.kappa_ahook = 0.60 -para_bold.jbalance = 60 -para_bold.tbalance = 60 -para_bold.rbalance = 18 +define variantSelector para.variantSelector -define para_italic : Object.create para_regular -para_italic.italicangle = 10 -para_italic.tbalance = 70 -para_italic.rbalance = 30 +define font [require './empty.json'] -define para_bolditalic : Object.create para_bold -para_bolditalic.italicangle = 10 -para_bolditalic.tbalance = 90 - -para = para_italic - -define variantSelector ( - .zero 'slashed' -) +define glyphList font.glyf +define glyphs (.'.notdef' glyphList.0) define globalTransform ( .xx 1 @@ -162,6 +107,20 @@ define ifMarks (.anchors (.above markAboveCap.anchors.above .below markBe Stroke.bindParameters para +set font.name.fontFamily para.family +set font.name.fontSubFamily para.style +set font.name.preferredFamily para.family +set font.name.preferredSubFamily para.style +set font.name.uniqueSubFamily : para.family + ' ' + para.style + ' ' + para.version +set font.name.version para.version +set font.name.fullName : para.family + ' ' + para.style +set font.name.postScriptName : font.name.fullName.replace [regex ' ' 'g'] '-' +set font.name.copyright para.copyright +set font.'OS/2'.usWeightClass para.weight +set font.'OS/2'.bProportion 9 # Monospaced + +### Font names + ### Useful shapes define [Ring u d l r] : begin { local my [[u + d] / 2] diff --git a/buildglyphs.js b/buildglyphs.js new file mode 100644 index 0000000..55fa321 --- /dev/null +++ b/buildglyphs.js @@ -0,0 +1,2416 @@ +{ + var r0_Glyph, r0_Stroke, _r0_t0; + r0_Glyph = require('./support/glyph')['Glyph']; + r0_Stroke = require('./support/stroke')['Stroke']; + exports['build'] = function _r0_t0(r1_para) { + var r1_para, r1_variantSelector, r1_font, r1_glyphList, r1_glyphs, r1_globalTransform, r1_ITALICCOR, r1_UPWARD, r1_DOWNWARD, r1_RIGHTWARD, r1_LEFTWARD, r1_DESCENDER, r1_WIDTH, r1_CAP, r1_XH, r1_O, r1_OXHOOK, r1_SB, r1_HOOK, r1_AHOOK, r1_SHOOK, r1_RHOOK, r1_SMOOTH, r1_SMALLSMOOTH, r1_STROKE, r1_DOTSIZE, r1_BARPOS, r1_GBARPOS, r1_LONGSERIF, r1_ACCENT, r1_XO, r1_CAPO, r1_HALFSTROKE, r1_RIGHTSB, r1_MIDDLE, r1_CAPMIDDLE, r1_CAP_SMOOTH, r1_DOTRADIUS, r1_SMOOTHA, r1_SMOOTHB, r1_SMALLSMOOTHA, r1_SMALLSMOOTHB, r1_ITALICCORS, r1_KAPPA, r1_COKAPPA, r1_BKAPPA, r1_COBKAPPA, r1_KAPPA_HOOK, r1_KAPPA_AHOOK, r1_TAILADJX, r1_TAILADJY, r1_TAILADJKAPPA, r1_TAILADJSX, r1_TAILADJSY, r1_TAILADJSKAPPA, r1_ILBALANCE, r1_JBALANCE, r1_TBALANCE, r1_TBALANCE2, r1_RBALANCE, r1_BASE, r1_MARK, r1_MARKBASE, r1_tm, r1_markAboveLower, r1_markAboveCap, r1_markBelowLower, r1_markBelowZero, r1_capitalMarks, r1_bMarks, r1_eMarks, r1_pMarks, r1_ifMarks, r1_Ring, r1_ORing, r1_leftwardTopSerif, r1_leftwardBottomSerif, r1_rightwardTopSerif, r1_rightwardBottomSerif, r1_xn$createglyph$7Hrq, _r1_t0, _r1_t1, _r1_t2, _r1_t3, _r1_t4, _r1_t5, _r1_t6, _r1_t7, _r1_t8, _r1_t9, _r1_t10, _r1_t11, _r1_t12, _r1_t13, _r1_t14, _r1_t15, _r1_t16, _r1_t17, _r1_t18, _r1_t19, _r1_t20, _r1_t21, _r1_t22, _r1_t23, _r1_t24, _r1_t25, _r1_t26, _r1_t27, _r1_t28, _r1_t29, _r1_t30, _r1_t31, _r1_t32, _r1_t33, _r1_t34, _r1_t35, _r1_t36, _r1_t37, _r1_t38, _r1_t39, _r1_t40, _r1_t41, _r1_t42, _r1_t43, _r1_t44, _r1_t45, _r1_t46, _r1_t47, _r1_t48, _r1_t49, _r1_t50, _r1_t51, _r1_t52, _r1_t53, _r1_t54, _r1_t55, _r1_t56, _r1_t57, _r1_t58, _r1_t59, _r1_t60, _r1_t61, _r1_t62, _r1_t63, _r1_t64, _r1_t65, _r1_t66, _r1_t67, _r1_t68, _r1_t69, _r1_t70, _r1_t71, _r1_t72, _r1_t73, _r1_t74, _r1_t75, _r1_t76, _r1_t77, _r1_t78, _r1_t79, _r1_t80, _r1_t81, _r1_t82, _r1_t83, _r1_t84, _r1_t85, _r1_t86, _r1_t87, _r1_t88, _r1_t89, _r1_t90, _r1_t91, _r1_t92, _r1_t93, _r1_t94; + r1_variantSelector = r1_para['variantSelector']; + r1_font = require('./empty.json'); + r1_glyphList = r1_font['glyf']; + r1_glyphs = { '.notdef': r1_glyphList[0] }; + r1_globalTransform = { + 'xx': 1, + 'yx': Math['tan'](r1_para['italicangle'] / 180 * Math['PI']), + 'xy': 0, + 'yy': 1, + 'x': 0, + 'y': 0 + }; + r1_ITALICCOR = 1 / Math['sqrt'](1 - r1_globalTransform['yx'] * r1_globalTransform['yx']); + r1_UPWARD = { + 'x': -r1_ITALICCOR, + 'y': 0 + }; + r1_DOWNWARD = { + 'x': r1_ITALICCOR, + 'y': 0 + }; + r1_RIGHTWARD = { + 'x': r1_globalTransform['yx'], + 'y': 1 + }; + r1_LEFTWARD = { + 'x': -r1_globalTransform['yx'], + 'y': -1 + }; + r1_DESCENDER = r1_para['descender']; + r1_WIDTH = r1_para['width']; + r1_CAP = r1_para['cap']; + r1_XH = r1_para['xheight']; + r1_O = r1_para['o']; + r1_OXHOOK = r1_para['oxhook']; + r1_SB = r1_para['sb']; + r1_HOOK = r1_para['hook']; + r1_AHOOK = r1_para['ahook']; + r1_SHOOK = r1_para['shook']; + r1_RHOOK = r1_para['rhook']; + r1_SMOOTH = r1_para['smooth']; + r1_SMALLSMOOTH = r1_para['smallsmooth']; + r1_STROKE = r1_para['stroke']; + r1_DOTSIZE = r1_para['dotsize']; + r1_BARPOS = r1_para['barpos']; + r1_GBARPOS = r1_para['gbarpos']; + r1_LONGSERIF = r1_para['longserif']; + r1_ACCENT = r1_para['accent']; + r1_XO = r1_XH - r1_O; + r1_CAPO = r1_CAP - r1_O; + r1_HALFSTROKE = r1_STROKE / 2; + r1_RIGHTSB = r1_WIDTH - r1_SB; + r1_MIDDLE = r1_WIDTH / 2; + r1_CAPMIDDLE = r1_CAP / 2; + r1_CAP_SMOOTH = r1_CAP - r1_SMOOTH; + r1_DOTRADIUS = r1_para['dotsize'] / 2; + r1_SMOOTHA = r1_SMOOTH - r1_globalTransform['yx'] * r1_para['smoothadjust']; + r1_SMOOTHB = r1_SMOOTH + r1_globalTransform['yx'] * r1_para['smoothadjust']; + r1_SMALLSMOOTHA = r1_SMALLSMOOTH - r1_globalTransform['yx'] * r1_para['smoothadjust']; + r1_SMALLSMOOTHB = r1_SMALLSMOOTH + r1_globalTransform['yx'] * r1_para['smoothadjust']; + r1_ITALICCORS = r1_STROKE * r1_globalTransform['yx']; + r1_KAPPA = r1_para['kappa']; + r1_COKAPPA = 1 - r1_KAPPA; + r1_BKAPPA = r1_KAPPA + 0.1; + r1_COBKAPPA = 1 - r1_BKAPPA; + r1_KAPPA_HOOK = r1_para['kappa_hook'] || 0.7; + r1_KAPPA_AHOOK = r1_para['kappa_ahook'] || r1_KAPPA_HOOK; + r1_TAILADJX = r1_WIDTH * 0.2; + r1_TAILADJY = r1_XH * 0.25; + r1_TAILADJKAPPA = 0.75; + r1_TAILADJSX = r1_WIDTH * 0.2; + r1_TAILADJSY = 0; + r1_TAILADJSKAPPA = 0.75; + r1_ILBALANCE = r1_LONGSERIF * 0.04; + r1_JBALANCE = r1_para['jbalance'] || r1_HALFSTROKE + r1_ILBALANCE; + r1_TBALANCE = r1_para['tbalance'] || r1_JBALANCE; + r1_TBALANCE2 = r1_para['tbalance2'] || r1_TBALANCE; + r1_RBALANCE = r1_para['rbalance'] || r1_JBALANCE * 0.3; + r1_BASE = 'base'; + r1_MARK = 'mark'; + r1_MARKBASE = 'markbase'; + r1_tm = function _r1_t0(r2_anchor) { + var r2_anchor; + return { + 'x': r2_anchor['x'] * r1_globalTransform['xx'] + r2_anchor['y'] * r1_globalTransform['yx'] + r1_globalTransform['x'], + 'y': r2_anchor['x'] * r1_globalTransform['xy'] + r2_anchor['y'] * r1_globalTransform['yy'] + r1_globalTransform['y'], + 'type': r2_anchor['type'] + }; + }; + r1_markAboveLower = { + 'anchors': { + 'above': r1_tm({ + 'x': r1_MIDDLE, + 'y': r1_XH, + 'type': r1_BASE + }) + } + }; + r1_markAboveCap = { + 'anchors': { + 'above': r1_tm({ + 'x': r1_MIDDLE, + 'y': r1_CAP, + 'type': r1_BASE + }) + } + }; + r1_markBelowLower = { + 'anchors': { + 'below': r1_tm({ + 'x': r1_MIDDLE, + 'y': r1_DESCENDER, + 'type': r1_BASE + }) + } + }; + r1_markBelowZero = { + 'anchors': { + 'below': r1_tm({ + 'x': r1_MIDDLE, + 'y': 0, + 'type': r1_BASE + }) + } + }; + r1_capitalMarks = { + 'anchors': { + 'above': r1_markAboveCap['anchors']['above'], + 'below': r1_markBelowZero['anchors']['below'] + } + }; + r1_bMarks = { + 'anchors': { + 'above': r1_markAboveCap['anchors']['above'], + 'below': r1_markBelowZero['anchors']['below'] + } + }; + r1_eMarks = { + 'anchors': { + 'above': r1_markAboveLower['anchors']['above'], + 'below': r1_markBelowZero['anchors']['below'] + } + }; + r1_pMarks = { + 'anchors': { + 'above': r1_markAboveLower['anchors']['above'], + 'below': r1_markBelowLower['anchors']['below'] + } + }; + r1_ifMarks = { + 'anchors': { + 'above': r1_markAboveCap['anchors']['above'], + 'below': r1_markBelowLower['anchors']['below'] + } + }; + r0_Stroke['bindParameters'](r1_para); + r1_font['name']['fontFamily'] = r1_para['family']; + r1_font['name']['fontSubFamily'] = r1_para['style']; + r1_font['name']['preferredFamily'] = r1_para['family']; + r1_font['name']['preferredSubFamily'] = r1_para['style']; + r1_font['name']['uniqueSubFamily'] = r1_para['family'] + ' ' + r1_para['style'] + ' ' + r1_para['version']; + r1_font['name']['version'] = r1_para['version']; + r1_font['name']['fullName'] = r1_para['family'] + ' ' + r1_para['style']; + r1_font['name']['postScriptName'] = r1_font['name']['fullName']['replace'](/ /g, '-'); + r1_font['name']['copyright'] = r1_para['copyright']; + r1_font['OS/2']['usWeightClass'] = r1_para['weight']; + r1_font['OS/2']['bProportion'] = 9; + r1_Ring = function _r1_t1(r3_u, r3_d, r3_l, r3_r) { + var r3_u, r3_d, r3_l, r3_r, r3_my, r3_mx, r3_s; + r3_my = (r3_u + r3_d) / 2; + r3_mx = (r3_l + r3_r) / 2; + r3_s = new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r3_mx, r3_d)['cubic-to'](r3_mx + (r3_l - r3_mx) * r1_BKAPPA, r3_d, r3_l, r3_my + (r3_d - r3_my) * r1_BKAPPA, r3_l, r3_my)['cubic-to'](r3_l, r3_my + (r3_u - r3_my) * r1_BKAPPA, r3_mx + (r3_l - r3_mx) * r1_BKAPPA, r3_u, r3_mx, r3_u)['cubic-to'](r3_mx + (r3_r - r3_mx) * r1_BKAPPA, r3_u, r3_r, r3_my + (r3_u - r3_my) * r1_BKAPPA, r3_r, r3_my)['cubic-to'](r3_r, r3_my + (r3_d - r3_my) * r1_BKAPPA, r3_mx + (r3_r - r3_mx) * r1_BKAPPA, r3_d, r3_mx, r3_d); + return r3_s['points']; + }; + r1_ORing = function _r1_t2(r4_u, r4_d, r4_l, r4_r, r4_smooth) { + var r4_u, r4_d, r4_l, r4_r, r4_smooth, r4_myu, r4_myd, r4_mx, r4_s; + r4_myu = r4_u - r4_smooth; + r4_myd = r4_d + r4_smooth; + r4_mx = (r4_l + r4_r) / 2; + r4_s = new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r4_mx, r4_d)['cubic-to'](r4_mx + (r4_l - r4_mx) * r1_BKAPPA, r4_d, r4_l, r4_myd + (r4_d - r4_myd) * r1_BKAPPA, r4_l, r4_myd)['line-to'](r4_l, r4_myu)['cubic-to'](r4_l, r4_myu + (r4_u - r4_myu) * r1_BKAPPA, r4_mx + (r4_l - r4_mx) * r1_BKAPPA, r4_u, r4_mx, r4_u)['cubic-to'](r4_mx + (r4_r - r4_mx) * r1_BKAPPA, r4_u, r4_r, r4_myu + (r4_u - r4_myu) * r1_BKAPPA, r4_r, r4_myu)['line-to'](r4_r, r4_myd)['cubic-to'](r4_r, r4_myd + (r4_d - r4_myd) * r1_BKAPPA, r4_mx + (r4_r - r4_mx) * r1_BKAPPA, r4_d, r4_mx, r4_d); + return r4_s['points']; + }; + r1_leftwardTopSerif = function _r1_t3(r5_x, r5_y, r5_length) { + var r5_x, r5_y, r5_length; + return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r5_x + r1_HALFSTROKE, r5_y)['heads-to'](r1_LEFTWARD)['set-width'](r1_STROKE, 0)['line-to'](r5_x - r5_length - r1_globalTransform['yx'] * r1_STROKE, r5_y)['to-outline'](); + }; + r1_leftwardBottomSerif = function _r1_t4(r6_x, r6_y, r6_length) { + var r6_x, r6_y, r6_length; + return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r6_x + r1_HALFSTROKE, r6_y)['heads-to'](r1_LEFTWARD)['set-width'](0, r1_STROKE)['line-to'](r6_x - r6_length + r1_globalTransform['yx'] * r1_STROKE, r6_y)['to-outline'](); + }; + r1_rightwardTopSerif = function _r1_t5(r7_x, r7_y, r7_length) { + var r7_x, r7_y, r7_length; + return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r7_x - r1_HALFSTROKE, r7_y)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r7_x + r7_length - r1_globalTransform['yx'] * r1_STROKE, r7_y)['to-outline'](); + }; + r1_rightwardBottomSerif = function _r1_t6(r8_x, r8_y, r8_length) { + var r8_x, r8_y, r8_length; + return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r8_x - r1_HALFSTROKE, r8_y)['heads-to'](r1_RIGHTWARD)['set-width'](r1_STROKE, 0)['line-to'](r8_x + r8_length + r1_globalTransform['yx'] * r1_STROKE, r8_y)['to-outline'](); + }; + r1_xn$createglyph$7Hrq = function _r1_t7(r13_name, r13_actions) { + var r13_name, r13_actions, r13_glyphObject; + r13_glyphObject = new r0_Glyph(r13_name); + r1_glyphList['push'](r13_glyphObject); + r1_glyphs[r13_name] = r13_glyphObject; + r13_actions['call'](r13_glyphObject); + return r13_glyphObject; + }; + r1_xn$createglyph$7Hrq('space', function _r1_t8() { + var r15_xn$setwidth$9Jrj, r15_xn$assignunicode$7Hrq, r15_xn$startfrom$1aao, r15_xn$lineto$5sIl, r15_xn$curveto$1aao, r15_xn$cubicto$1aao, r15_xn$putshapes$9Jrj, r15_xn$reverselast$3qIs, r15_include, r15_xn$createstroke$7Hrq, r15_xn$setanchor$9Jrj, _r15_t0; + _r15_t0 = this; + r15_xn$setwidth$9Jrj = _r15_t0['set-width']['bind'](_r15_t0); + r15_xn$assignunicode$7Hrq = _r15_t0['assign-unicode']['bind'](_r15_t0); + r15_xn$startfrom$1aao = _r15_t0['start-from']['bind'](_r15_t0); + r15_xn$lineto$5sIl = _r15_t0['line-to']['bind'](_r15_t0); + r15_xn$curveto$1aao = _r15_t0['curve-to']['bind'](_r15_t0); + r15_xn$cubicto$1aao = _r15_t0['cubic-to']['bind'](_r15_t0); + r15_xn$putshapes$9Jrj = _r15_t0['put-shapes']['bind'](_r15_t0); + r15_xn$reverselast$3qIs = _r15_t0['reverse-last']['bind'](_r15_t0); + r15_include = _r15_t0['include']['bind'](_r15_t0); + r15_xn$createstroke$7Hrq = _r15_t0['create-stroke']['bind'](_r15_t0); + r15_xn$setanchor$9Jrj = _r15_t0['set-anchor']['bind'](_r15_t0); + _r15_t0['gizmo'] = r1_globalTransform; + _r15_t0['set-width'](r1_WIDTH); + r15_xn$setwidth$9Jrj(r1_WIDTH); + r15_xn$assignunicode$7Hrq(' '); + return void 0; + }); + r1_xn$createglyph$7Hrq('bar', function _r1_t9() { + var r17_xn$setwidth$9Jrj, r17_xn$assignunicode$7Hrq, r17_xn$startfrom$1aao, r17_xn$lineto$5sIl, r17_xn$curveto$1aao, r17_xn$cubicto$1aao, r17_xn$putshapes$9Jrj, r17_xn$reverselast$3qIs, r17_include, r17_xn$createstroke$7Hrq, r17_xn$setanchor$9Jrj, _r17_t0; + _r17_t0 = this; + r17_xn$setwidth$9Jrj = _r17_t0['set-width']['bind'](_r17_t0); + r17_xn$assignunicode$7Hrq = _r17_t0['assign-unicode']['bind'](_r17_t0); + r17_xn$startfrom$1aao = _r17_t0['start-from']['bind'](_r17_t0); + r17_xn$lineto$5sIl = _r17_t0['line-to']['bind'](_r17_t0); + r17_xn$curveto$1aao = _r17_t0['curve-to']['bind'](_r17_t0); + r17_xn$cubicto$1aao = _r17_t0['cubic-to']['bind'](_r17_t0); + r17_xn$putshapes$9Jrj = _r17_t0['put-shapes']['bind'](_r17_t0); + r17_xn$reverselast$3qIs = _r17_t0['reverse-last']['bind'](_r17_t0); + r17_include = _r17_t0['include']['bind'](_r17_t0); + r17_xn$createstroke$7Hrq = _r17_t0['create-stroke']['bind'](_r17_t0); + r17_xn$setanchor$9Jrj = _r17_t0['set-anchor']['bind'](_r17_t0); + _r17_t0['gizmo'] = r1_globalTransform; + _r17_t0['set-width'](r1_WIDTH); + r17_xn$setwidth$9Jrj(r1_WIDTH); + r17_xn$assignunicode$7Hrq('|'); + r17_xn$putshapes$9Jrj(r17_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_DESCENDER / 2)['set-width'](r1_STROKE / 2, r1_STROKE / 2)['line-to'](r1_MIDDLE, r1_CAP - r1_DESCENDER / 2)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('A', function _r1_t10() { + var r19_xn$setwidth$9Jrj, r19_xn$assignunicode$7Hrq, r19_xn$startfrom$1aao, r19_xn$lineto$5sIl, r19_xn$curveto$1aao, r19_xn$cubicto$1aao, r19_xn$putshapes$9Jrj, r19_xn$reverselast$3qIs, r19_include, r19_xn$createstroke$7Hrq, r19_xn$setanchor$9Jrj, r19_TURN, r19_leftbar, r19_rightbar, r19_hbar, _r19_t0; + _r19_t0 = this; + r19_xn$setwidth$9Jrj = _r19_t0['set-width']['bind'](_r19_t0); + r19_xn$assignunicode$7Hrq = _r19_t0['assign-unicode']['bind'](_r19_t0); + r19_xn$startfrom$1aao = _r19_t0['start-from']['bind'](_r19_t0); + r19_xn$lineto$5sIl = _r19_t0['line-to']['bind'](_r19_t0); + r19_xn$curveto$1aao = _r19_t0['curve-to']['bind'](_r19_t0); + r19_xn$cubicto$1aao = _r19_t0['cubic-to']['bind'](_r19_t0); + r19_xn$putshapes$9Jrj = _r19_t0['put-shapes']['bind'](_r19_t0); + r19_xn$reverselast$3qIs = _r19_t0['reverse-last']['bind'](_r19_t0); + r19_include = _r19_t0['include']['bind'](_r19_t0); + r19_xn$createstroke$7Hrq = _r19_t0['create-stroke']['bind'](_r19_t0); + r19_xn$setanchor$9Jrj = _r19_t0['set-anchor']['bind'](_r19_t0); + _r19_t0['gizmo'] = r1_globalTransform; + _r19_t0['set-width'](r1_WIDTH); + r19_xn$setwidth$9Jrj(r1_WIDTH); + r19_xn$assignunicode$7Hrq('A'); + r19_include(r1_capitalMarks); + r19_TURN = r1_XH * 0.1; + r19_leftbar = r19_xn$createstroke$7Hrq(); + r19_leftbar['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r19_TURN)['heads-to'](r1_UPWARD)['curve-to'](r1_SB, r19_TURN + 0.27 * (r1_CAP - r19_TURN), r1_MIDDLE - r1_STROKE / 2, r1_CAP)['set-width'](0, r1_STROKE * 0.8); + r19_rightbar = r19_xn$createstroke$7Hrq(); + r19_rightbar['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r19_TURN)['heads-to'](r1_UPWARD)['curve-to'](r1_RIGHTSB, r19_TURN + 0.27 * (r1_CAP - r19_TURN), r1_MIDDLE + r1_STROKE / 2, r1_CAP)['set-width'](r1_STROKE * 0.8, 0); + r19_hbar = r19_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_STROKE, r1_XH / 2)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB - r1_STROKE, r1_XH / 2)['heads-to'](r1_RIGHTWARD); + r19_xn$putshapes$9Jrj(r19_leftbar['to-outline']()); + r19_xn$putshapes$9Jrj(r19_hbar['to-outline']()); + r19_xn$putshapes$9Jrj(r19_rightbar['to-outline']()); + r19_xn$startfrom$1aao(r1_MIDDLE - r1_STROKE / 2, r1_CAP); + r19_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE / 2, r1_CAP); + r19_xn$lineto$5sIl(r1_MIDDLE, r1_CAP - r1_STROKE); + return void 0; + }); + r1_xn$createglyph$7Hrq('V', function _r1_t11() { + var r21_xn$setwidth$9Jrj, r21_xn$assignunicode$7Hrq, r21_xn$startfrom$1aao, r21_xn$lineto$5sIl, r21_xn$curveto$1aao, r21_xn$cubicto$1aao, r21_xn$putshapes$9Jrj, r21_xn$reverselast$3qIs, r21_include, r21_xn$createstroke$7Hrq, r21_xn$setanchor$9Jrj, r21_TURN, r21_leftbar, r21_rightbar, _r21_t0; + _r21_t0 = this; + r21_xn$setwidth$9Jrj = _r21_t0['set-width']['bind'](_r21_t0); + r21_xn$assignunicode$7Hrq = _r21_t0['assign-unicode']['bind'](_r21_t0); + r21_xn$startfrom$1aao = _r21_t0['start-from']['bind'](_r21_t0); + r21_xn$lineto$5sIl = _r21_t0['line-to']['bind'](_r21_t0); + r21_xn$curveto$1aao = _r21_t0['curve-to']['bind'](_r21_t0); + r21_xn$cubicto$1aao = _r21_t0['cubic-to']['bind'](_r21_t0); + r21_xn$putshapes$9Jrj = _r21_t0['put-shapes']['bind'](_r21_t0); + r21_xn$reverselast$3qIs = _r21_t0['reverse-last']['bind'](_r21_t0); + r21_include = _r21_t0['include']['bind'](_r21_t0); + r21_xn$createstroke$7Hrq = _r21_t0['create-stroke']['bind'](_r21_t0); + r21_xn$setanchor$9Jrj = _r21_t0['set-anchor']['bind'](_r21_t0); + _r21_t0['gizmo'] = r1_globalTransform; + _r21_t0['set-width'](r1_WIDTH); + r21_xn$setwidth$9Jrj(r1_WIDTH); + r21_xn$assignunicode$7Hrq('V'); + r21_include(r1_capitalMarks); + r21_TURN = r1_CAP * 0.9; + r21_leftbar = r21_xn$createstroke$7Hrq(); + r21_leftbar['start-from'](r1_SB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r21_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r21_TURN, r1_MIDDLE - r1_STROKE / 2, 0)['set-width'](r1_STROKE * 0.8, 0); + r21_rightbar = r21_xn$createstroke$7Hrq(); + r21_rightbar['start-from'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r21_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r21_TURN, r1_MIDDLE + r1_STROKE / 2, 0)['set-width'](0, r1_STROKE * 0.8); + r21_xn$putshapes$9Jrj(r21_leftbar['to-outline']()); + r21_xn$putshapes$9Jrj(r21_rightbar['to-outline']()); + r21_xn$startfrom$1aao(r1_MIDDLE + r1_STROKE / 2, 0); + r21_xn$lineto$5sIl(r1_MIDDLE - r1_STROKE / 2, 0); + r21_xn$lineto$5sIl(r1_MIDDLE, r1_STROKE); + return void 0; + }); + r1_xn$createglyph$7Hrq('W', function _r1_t12() { + var r23_xn$setwidth$9Jrj, r23_xn$assignunicode$7Hrq, r23_xn$startfrom$1aao, r23_xn$lineto$5sIl, r23_xn$curveto$1aao, r23_xn$cubicto$1aao, r23_xn$putshapes$9Jrj, r23_xn$reverselast$3qIs, r23_include, r23_xn$createstroke$7Hrq, r23_xn$setanchor$9Jrj, r23_TURN, r23_turn2, r23_wheight, r23_bottomStroke, r23_m1, r23_m2, _r23_t0; + _r23_t0 = this; + r23_xn$setwidth$9Jrj = _r23_t0['set-width']['bind'](_r23_t0); + r23_xn$assignunicode$7Hrq = _r23_t0['assign-unicode']['bind'](_r23_t0); + r23_xn$startfrom$1aao = _r23_t0['start-from']['bind'](_r23_t0); + r23_xn$lineto$5sIl = _r23_t0['line-to']['bind'](_r23_t0); + r23_xn$curveto$1aao = _r23_t0['curve-to']['bind'](_r23_t0); + r23_xn$cubicto$1aao = _r23_t0['cubic-to']['bind'](_r23_t0); + r23_xn$putshapes$9Jrj = _r23_t0['put-shapes']['bind'](_r23_t0); + r23_xn$reverselast$3qIs = _r23_t0['reverse-last']['bind'](_r23_t0); + r23_include = _r23_t0['include']['bind'](_r23_t0); + r23_xn$createstroke$7Hrq = _r23_t0['create-stroke']['bind'](_r23_t0); + r23_xn$setanchor$9Jrj = _r23_t0['set-anchor']['bind'](_r23_t0); + _r23_t0['gizmo'] = r1_globalTransform; + _r23_t0['set-width'](r1_WIDTH); + r23_xn$setwidth$9Jrj(r1_WIDTH); + r23_xn$assignunicode$7Hrq('W'); + r23_include(r1_capitalMarks); + r23_TURN = r1_CAP * 0.75; + r23_turn2 = r1_CAP * 0.59; + r23_wheight = r1_CAP * 0.6; + r23_bottomStroke = Math['min'](r1_STROKE * 0.8, (r1_WIDTH - r1_SB * 2) * 0.175); + r23_m1 = r1_WIDTH * 0.3; + r23_m2 = r1_WIDTH * 0.7; + r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r23_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r23_TURN, r23_m1 - r23_bottomStroke / 2, 0)['set-width'](r23_bottomStroke, 0)['to-outline']()); + r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r23_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r23_TURN, r23_m2 + r23_bottomStroke / 2, 0)['set-width'](0, r23_bottomStroke)['to-outline']()); + r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r23_bottomStroke / 2, r23_wheight)['heads-to'](r1_DOWNWARD)['set-width'](0, r23_bottomStroke)['line-to'](r1_MIDDLE + r23_bottomStroke / 2, r23_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE + r23_bottomStroke / 2, (1 - 0.1) * r23_turn2, r23_m1 + r23_bottomStroke / 2, 0)['set-width'](0, r23_bottomStroke)['to-outline']()); + r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r23_bottomStroke / 2, r23_wheight)['heads-to'](r1_DOWNWARD)['set-width'](r23_bottomStroke, 0)['line-to'](r1_MIDDLE - r23_bottomStroke / 2, r23_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE - r23_bottomStroke / 2, (1 - 0.1) * r23_turn2, r23_m2 - r23_bottomStroke / 2, 0)['set-width'](r23_bottomStroke, 0)['to-outline']()); + r23_xn$startfrom$1aao(r23_m1 + r23_bottomStroke / 2, 0); + r23_xn$lineto$5sIl(r23_m1 - r23_bottomStroke / 2, 0); + r23_xn$lineto$5sIl(r23_m1, r23_bottomStroke); + r23_xn$startfrom$1aao(r23_m2 + r23_bottomStroke / 2, 0); + r23_xn$lineto$5sIl(r23_m2 - r23_bottomStroke / 2, 0); + r23_xn$lineto$5sIl(r23_m2, r23_bottomStroke); + return void 0; + }); + r1_xn$createglyph$7Hrq('X', function _r1_t13() { + var r25_xn$setwidth$9Jrj, r25_xn$assignunicode$7Hrq, r25_xn$startfrom$1aao, r25_xn$lineto$5sIl, r25_xn$curveto$1aao, r25_xn$cubicto$1aao, r25_xn$putshapes$9Jrj, r25_xn$reverselast$3qIs, r25_include, r25_xn$createstroke$7Hrq, r25_xn$setanchor$9Jrj, r25_TURN, r25_straight, r25_strench, r25_barone, r25_bartwo, _r25_t0; + _r25_t0 = this; + r25_xn$setwidth$9Jrj = _r25_t0['set-width']['bind'](_r25_t0); + r25_xn$assignunicode$7Hrq = _r25_t0['assign-unicode']['bind'](_r25_t0); + r25_xn$startfrom$1aao = _r25_t0['start-from']['bind'](_r25_t0); + r25_xn$lineto$5sIl = _r25_t0['line-to']['bind'](_r25_t0); + r25_xn$curveto$1aao = _r25_t0['curve-to']['bind'](_r25_t0); + r25_xn$cubicto$1aao = _r25_t0['cubic-to']['bind'](_r25_t0); + r25_xn$putshapes$9Jrj = _r25_t0['put-shapes']['bind'](_r25_t0); + r25_xn$reverselast$3qIs = _r25_t0['reverse-last']['bind'](_r25_t0); + r25_include = _r25_t0['include']['bind'](_r25_t0); + r25_xn$createstroke$7Hrq = _r25_t0['create-stroke']['bind'](_r25_t0); + r25_xn$setanchor$9Jrj = _r25_t0['set-anchor']['bind'](_r25_t0); + _r25_t0['gizmo'] = r1_globalTransform; + _r25_t0['set-width'](r1_WIDTH); + r25_xn$setwidth$9Jrj(r1_WIDTH); + r25_xn$assignunicode$7Hrq('X'); + r25_include(r1_capitalMarks); + r25_TURN = r1_XH * 0.05; + r25_straight = 0.6; + r25_strench = 0.125; + r25_barone = r25_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_HALFSTROKE, 0)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_UPWARD)['line-to'](r1_SB + r1_HALFSTROKE, r25_TURN)['curve-to'](r1_SB + r1_HALFSTROKE, r25_TURN + r25_strench * (r1_CAP - r25_TURN), r1_MIDDLE + r25_straight * (r1_SB + r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r25_TURN + r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['line-to'](r1_MIDDLE + r25_straight * (r1_RIGHTSB - r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['curve-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN), r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r25_TURN)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD); + r25_bartwo = r25_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_HALFSTROKE, 0)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_UPWARD)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r25_TURN)['curve-to'](r1_RIGHTSB - r1_HALFSTROKE, r25_TURN + r25_strench * (r1_CAP - r25_TURN), r1_MIDDLE + r25_straight * (r1_RIGHTSB - r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r25_TURN + r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['line-to'](r1_MIDDLE + r25_straight * (r1_SB + r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['curve-to'](r1_SB + r1_HALFSTROKE, r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN), r1_SB + r1_HALFSTROKE, r1_CAP - r25_TURN)['line-to'](r1_SB + r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD); + r25_xn$putshapes$9Jrj(r25_barone['to-outline']()); + r25_xn$putshapes$9Jrj(r25_bartwo['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('Y', function _r1_t14() { + var r27_xn$setwidth$9Jrj, r27_xn$assignunicode$7Hrq, r27_xn$startfrom$1aao, r27_xn$lineto$5sIl, r27_xn$curveto$1aao, r27_xn$cubicto$1aao, r27_xn$putshapes$9Jrj, r27_xn$reverselast$3qIs, r27_include, r27_xn$createstroke$7Hrq, r27_xn$setanchor$9Jrj, r27_TURN, r27_straight, r27_strench, r27_cross, r27_barone, r27_bartwo, _r27_t0; + _r27_t0 = this; + r27_xn$setwidth$9Jrj = _r27_t0['set-width']['bind'](_r27_t0); + r27_xn$assignunicode$7Hrq = _r27_t0['assign-unicode']['bind'](_r27_t0); + r27_xn$startfrom$1aao = _r27_t0['start-from']['bind'](_r27_t0); + r27_xn$lineto$5sIl = _r27_t0['line-to']['bind'](_r27_t0); + r27_xn$curveto$1aao = _r27_t0['curve-to']['bind'](_r27_t0); + r27_xn$cubicto$1aao = _r27_t0['cubic-to']['bind'](_r27_t0); + r27_xn$putshapes$9Jrj = _r27_t0['put-shapes']['bind'](_r27_t0); + r27_xn$reverselast$3qIs = _r27_t0['reverse-last']['bind'](_r27_t0); + r27_include = _r27_t0['include']['bind'](_r27_t0); + r27_xn$createstroke$7Hrq = _r27_t0['create-stroke']['bind'](_r27_t0); + r27_xn$setanchor$9Jrj = _r27_t0['set-anchor']['bind'](_r27_t0); + _r27_t0['gizmo'] = r1_globalTransform; + _r27_t0['set-width'](r1_WIDTH); + r27_xn$setwidth$9Jrj(r1_WIDTH); + r27_xn$assignunicode$7Hrq('Y'); + r27_include(r1_capitalMarks); + r27_TURN = r1_XH * 0.05; + r27_straight = 0.6; + r27_strench = 0.15; + r27_cross = r1_CAP * 0.4; + r27_barone = r27_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r27_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r27_straight * (r1_RIGHTSB - r1_HALFSTROKE - r1_MIDDLE), r27_cross + r27_straight * (r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN) - r27_cross))['curve-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN), r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r27_TURN)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD); + r27_bartwo = r27_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r27_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r27_straight * (r1_SB + r1_HALFSTROKE - r1_MIDDLE), r27_cross + r27_straight * (r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN) - r27_cross))['curve-to'](r1_SB + r1_HALFSTROKE, r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN), r1_SB + r1_HALFSTROKE, r1_CAP - r27_TURN)['line-to'](r1_SB + r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD); + r27_xn$putshapes$9Jrj(r27_barone['to-outline']()); + r27_xn$putshapes$9Jrj(r27_bartwo['to-outline']()); + r27_xn$putshapes$9Jrj(r27_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_UPWARD)['line-to'](r1_MIDDLE, r27_cross + r1_HALFSTROKE)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('K', function _r1_t15() { + var r29_xn$setwidth$9Jrj, r29_xn$assignunicode$7Hrq, r29_xn$startfrom$1aao, r29_xn$lineto$5sIl, r29_xn$curveto$1aao, r29_xn$cubicto$1aao, r29_xn$putshapes$9Jrj, r29_xn$reverselast$3qIs, r29_include, r29_xn$createstroke$7Hrq, r29_xn$setanchor$9Jrj, r29_TURN, r29_rturn, r29_right, r29_fine, _r29_t0; + _r29_t0 = this; + r29_xn$setwidth$9Jrj = _r29_t0['set-width']['bind'](_r29_t0); + r29_xn$assignunicode$7Hrq = _r29_t0['assign-unicode']['bind'](_r29_t0); + r29_xn$startfrom$1aao = _r29_t0['start-from']['bind'](_r29_t0); + r29_xn$lineto$5sIl = _r29_t0['line-to']['bind'](_r29_t0); + r29_xn$curveto$1aao = _r29_t0['curve-to']['bind'](_r29_t0); + r29_xn$cubicto$1aao = _r29_t0['cubic-to']['bind'](_r29_t0); + r29_xn$putshapes$9Jrj = _r29_t0['put-shapes']['bind'](_r29_t0); + r29_xn$reverselast$3qIs = _r29_t0['reverse-last']['bind'](_r29_t0); + r29_include = _r29_t0['include']['bind'](_r29_t0); + r29_xn$createstroke$7Hrq = _r29_t0['create-stroke']['bind'](_r29_t0); + r29_xn$setanchor$9Jrj = _r29_t0['set-anchor']['bind'](_r29_t0); + _r29_t0['gizmo'] = r1_globalTransform; + _r29_t0['set-width'](r1_WIDTH); + r29_xn$setwidth$9Jrj(r1_WIDTH); + r29_xn$assignunicode$7Hrq('K'); + r29_include(r1_capitalMarks); + r29_TURN = r1_CAP * 0.95; + r29_rturn = r1_XH * 0.1; + r29_right = r1_RIGHTSB - r1_O; + r29_fine = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.25); + r29_xn$putshapes$9Jrj(r29_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['set-width'](0, r1_STROKE)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r29_xn$putshapes$9Jrj(r29_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r29_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.18) * r29_TURN, r1_SB + r1_STROKE, r1_CAP * 0.35)['set-width'](0, r29_fine)['to-outline']()); + r29_xn$putshapes$9Jrj(r29_xn$createstroke$7Hrq()['start-from'](r29_right - r1_HALFSTROKE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r29_right - r1_HALFSTROKE, r29_rturn + 0.2 * (r1_XH - r29_rturn), r1_MIDDLE, r1_CAPMIDDLE + r1_HALFSTROKE)['set-width'](r29_fine / 2, r29_fine / 2)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('B', function _r1_t16() { + var r31_xn$setwidth$9Jrj, r31_xn$assignunicode$7Hrq, r31_xn$startfrom$1aao, r31_xn$lineto$5sIl, r31_xn$curveto$1aao, r31_xn$cubicto$1aao, r31_xn$putshapes$9Jrj, r31_xn$reverselast$3qIs, r31_include, r31_xn$createstroke$7Hrq, r31_xn$setanchor$9Jrj, r31_bowl, r31_tkappa, r31_bkappa, r31_turntop, r31_turnbottom, r31_topbowl, r31_bottombowl, r31_leftbar, _r31_t0; + _r31_t0 = this; + r31_xn$setwidth$9Jrj = _r31_t0['set-width']['bind'](_r31_t0); + r31_xn$assignunicode$7Hrq = _r31_t0['assign-unicode']['bind'](_r31_t0); + r31_xn$startfrom$1aao = _r31_t0['start-from']['bind'](_r31_t0); + r31_xn$lineto$5sIl = _r31_t0['line-to']['bind'](_r31_t0); + r31_xn$curveto$1aao = _r31_t0['curve-to']['bind'](_r31_t0); + r31_xn$cubicto$1aao = _r31_t0['cubic-to']['bind'](_r31_t0); + r31_xn$putshapes$9Jrj = _r31_t0['put-shapes']['bind'](_r31_t0); + r31_xn$reverselast$3qIs = _r31_t0['reverse-last']['bind'](_r31_t0); + r31_include = _r31_t0['include']['bind'](_r31_t0); + r31_xn$createstroke$7Hrq = _r31_t0['create-stroke']['bind'](_r31_t0); + r31_xn$setanchor$9Jrj = _r31_t0['set-anchor']['bind'](_r31_t0); + _r31_t0['gizmo'] = r1_globalTransform; + _r31_t0['set-width'](r1_WIDTH); + r31_xn$setwidth$9Jrj(r1_WIDTH); + r31_xn$assignunicode$7Hrq('B'); + r31_include(r1_capitalMarks); + r31_bowl = 451; + r31_tkappa = r1_COKAPPA - 0.22; + r31_bkappa = r1_COKAPPA - 0.2; + r31_turntop = (r1_CAP + (r31_bowl - r1_STROKE)) / 2; + r31_turnbottom = r31_bowl / 2; + r31_topbowl = r31_xn$createstroke$7Hrq(); + r31_topbowl['start-from'](r1_SB, r1_CAP)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r1_SB * 0.5 - r31_turnbottom, r1_CAP)['cubic-to'](r1_RIGHTSB - r1_SB * 0.5 - r31_tkappa * r31_turnbottom, r1_CAP, r1_RIGHTSB - r1_SB * 0.5, r31_turntop + (r1_CAP - r31_turntop) * r1_KAPPA, r1_RIGHTSB - r1_SB * 0.5, r31_turntop)['cubic-to'](r1_RIGHTSB - r1_SB * 0.5, r31_turntop + r1_KAPPA * (r31_bowl - r1_STROKE - r31_turntop), r1_RIGHTSB - r1_SB * 0.5 - r31_tkappa * r31_turnbottom, r31_bowl - r1_STROKE, r1_RIGHTSB - r1_SB * 0.5 - r31_turnbottom, r31_bowl - r1_STROKE)['line-to'](r1_SB, r31_bowl - r1_STROKE)['heads-to'](r1_LEFTWARD); + r31_bottombowl = r31_xn$createstroke$7Hrq(); + r31_bottombowl['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r31_turnbottom, 0)['cubic-to'](r1_RIGHTSB - r31_bkappa * r31_turnbottom, 0, r1_RIGHTSB, r31_turnbottom * r1_KAPPA, r1_RIGHTSB, r31_turnbottom)['cubic-to'](r1_RIGHTSB, r31_turnbottom + r1_KAPPA * (r31_bowl - r31_turnbottom), r1_RIGHTSB - r31_bkappa * r31_turnbottom, r31_bowl, r1_RIGHTSB - r31_turnbottom, r31_bowl)['line-to'](r1_SB, r31_bowl)['heads-to'](r1_LEFTWARD); + r31_leftbar = r31_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD); + r31_xn$putshapes$9Jrj(r31_topbowl['to-outline'](0, r1_STROKE)); + r31_xn$putshapes$9Jrj(r31_bottombowl['to-outline'](r1_STROKE, 0)); + r31_xn$putshapes$9Jrj(r31_leftbar['to-outline'](0, r1_STROKE)); + return void 0; + }); + r1_xn$createglyph$7Hrq('D', function _r1_t17() { + var r33_xn$setwidth$9Jrj, r33_xn$assignunicode$7Hrq, r33_xn$startfrom$1aao, r33_xn$lineto$5sIl, r33_xn$curveto$1aao, r33_xn$cubicto$1aao, r33_xn$putshapes$9Jrj, r33_xn$reverselast$3qIs, r33_include, r33_xn$createstroke$7Hrq, r33_xn$setanchor$9Jrj, r33_dsmooth, r33_bsmooth, r33_bkappa, r33_leftbar, r33_bowl, _r33_t0; + _r33_t0 = this; + r33_xn$setwidth$9Jrj = _r33_t0['set-width']['bind'](_r33_t0); + r33_xn$assignunicode$7Hrq = _r33_t0['assign-unicode']['bind'](_r33_t0); + r33_xn$startfrom$1aao = _r33_t0['start-from']['bind'](_r33_t0); + r33_xn$lineto$5sIl = _r33_t0['line-to']['bind'](_r33_t0); + r33_xn$curveto$1aao = _r33_t0['curve-to']['bind'](_r33_t0); + r33_xn$cubicto$1aao = _r33_t0['cubic-to']['bind'](_r33_t0); + r33_xn$putshapes$9Jrj = _r33_t0['put-shapes']['bind'](_r33_t0); + r33_xn$reverselast$3qIs = _r33_t0['reverse-last']['bind'](_r33_t0); + r33_include = _r33_t0['include']['bind'](_r33_t0); + r33_xn$createstroke$7Hrq = _r33_t0['create-stroke']['bind'](_r33_t0); + r33_xn$setanchor$9Jrj = _r33_t0['set-anchor']['bind'](_r33_t0); + _r33_t0['gizmo'] = r1_globalTransform; + _r33_t0['set-width'](r1_WIDTH); + r33_xn$setwidth$9Jrj(r1_WIDTH); + r33_xn$assignunicode$7Hrq('D'); + r33_include(r1_capitalMarks); + r33_dsmooth = r1_SMOOTH * 1.55; + r33_bsmooth = r1_SMOOTH * 1.3; + r33_bkappa = r1_COKAPPA - 0.2; + r33_leftbar = r33_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD); + r33_bowl = r33_xn$createstroke$7Hrq(); + r33_bowl['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r33_bsmooth, 0)['cubic-to'](r1_RIGHTSB - r33_bkappa * r33_bsmooth, 0, r1_RIGHTSB, r1_COBKAPPA * r33_dsmooth, r1_RIGHTSB, r33_dsmooth)['line-to'](r1_RIGHTSB, r1_CAP - r33_dsmooth)['cubic-to'](r1_RIGHTSB, r1_CAP - r1_COBKAPPA * r33_dsmooth, r1_RIGHTSB - r33_bkappa * r33_bsmooth, r1_CAP, r1_RIGHTSB - r33_bsmooth, r1_CAP)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_LEFTWARD); + r33_xn$putshapes$9Jrj(r33_bowl['to-outline'](r1_STROKE, 0)); + r33_xn$putshapes$9Jrj(r33_leftbar['to-outline'](0, r1_STROKE)); + return void 0; + }); + r1_xn$createglyph$7Hrq('P', function _r1_t18() { + var r35_xn$setwidth$9Jrj, r35_xn$assignunicode$7Hrq, r35_xn$startfrom$1aao, r35_xn$lineto$5sIl, r35_xn$curveto$1aao, r35_xn$cubicto$1aao, r35_xn$putshapes$9Jrj, r35_xn$reverselast$3qIs, r35_include, r35_xn$createstroke$7Hrq, r35_xn$setanchor$9Jrj, r35_bowl, r35_bkappa, r35_turntop, r35_turnbottom, r35_topbowl, r35_leftbar, _r35_t0; + _r35_t0 = this; + r35_xn$setwidth$9Jrj = _r35_t0['set-width']['bind'](_r35_t0); + r35_xn$assignunicode$7Hrq = _r35_t0['assign-unicode']['bind'](_r35_t0); + r35_xn$startfrom$1aao = _r35_t0['start-from']['bind'](_r35_t0); + r35_xn$lineto$5sIl = _r35_t0['line-to']['bind'](_r35_t0); + r35_xn$curveto$1aao = _r35_t0['curve-to']['bind'](_r35_t0); + r35_xn$cubicto$1aao = _r35_t0['cubic-to']['bind'](_r35_t0); + r35_xn$putshapes$9Jrj = _r35_t0['put-shapes']['bind'](_r35_t0); + r35_xn$reverselast$3qIs = _r35_t0['reverse-last']['bind'](_r35_t0); + r35_include = _r35_t0['include']['bind'](_r35_t0); + r35_xn$createstroke$7Hrq = _r35_t0['create-stroke']['bind'](_r35_t0); + r35_xn$setanchor$9Jrj = _r35_t0['set-anchor']['bind'](_r35_t0); + _r35_t0['gizmo'] = r1_globalTransform; + _r35_t0['set-width'](r1_WIDTH); + r35_xn$setwidth$9Jrj(r1_WIDTH); + r35_xn$assignunicode$7Hrq('P'); + r35_include(r1_capitalMarks); + r35_bowl = r1_CAPMIDDLE; + r35_bkappa = r1_COKAPPA - 0.2; + r35_turntop = (r1_CAP + (r35_bowl - r1_HALFSTROKE)) / 2; + r35_turnbottom = r35_bowl / 2; + r35_topbowl = r35_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.25, r1_CAP)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r35_turnbottom, r1_CAP)['arc-hv-to'](r1_RIGHTSB - r1_O, r35_turntop)['arc-vh-to'](r1_RIGHTSB - r35_turnbottom, r35_bowl - r1_HALFSTROKE)['line-to'](r1_SB * 1.25, r35_bowl - r1_HALFSTROKE)['heads-to'](r1_LEFTWARD); + r35_leftbar = r35_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.25, 0)['heads-to'](r1_UPWARD)['line-to'](r1_SB * 1.25, r1_CAP)['heads-to'](r1_UPWARD); + r35_xn$putshapes$9Jrj(r35_topbowl['to-outline'](0, r1_STROKE)); + r35_xn$putshapes$9Jrj(r35_leftbar['to-outline'](0, r1_STROKE)); + return void 0; + }); + r1_xn$createglyph$7Hrq('R', function _r1_t19() { + var r37_xn$setwidth$9Jrj, r37_xn$assignunicode$7Hrq, r37_xn$startfrom$1aao, r37_xn$lineto$5sIl, r37_xn$curveto$1aao, r37_xn$cubicto$1aao, r37_xn$putshapes$9Jrj, r37_xn$reverselast$3qIs, r37_include, r37_xn$createstroke$7Hrq, r37_xn$setanchor$9Jrj, r37_TURN, r37_right, _r37_t0; + _r37_t0 = this; + r37_xn$setwidth$9Jrj = _r37_t0['set-width']['bind'](_r37_t0); + r37_xn$assignunicode$7Hrq = _r37_t0['assign-unicode']['bind'](_r37_t0); + r37_xn$startfrom$1aao = _r37_t0['start-from']['bind'](_r37_t0); + r37_xn$lineto$5sIl = _r37_t0['line-to']['bind'](_r37_t0); + r37_xn$curveto$1aao = _r37_t0['curve-to']['bind'](_r37_t0); + r37_xn$cubicto$1aao = _r37_t0['cubic-to']['bind'](_r37_t0); + r37_xn$putshapes$9Jrj = _r37_t0['put-shapes']['bind'](_r37_t0); + r37_xn$reverselast$3qIs = _r37_t0['reverse-last']['bind'](_r37_t0); + r37_include = _r37_t0['include']['bind'](_r37_t0); + r37_xn$createstroke$7Hrq = _r37_t0['create-stroke']['bind'](_r37_t0); + r37_xn$setanchor$9Jrj = _r37_t0['set-anchor']['bind'](_r37_t0); + _r37_t0['gizmo'] = r1_globalTransform; + _r37_t0['set-width'](r1_WIDTH); + r37_xn$setwidth$9Jrj(r1_WIDTH); + r37_xn$assignunicode$7Hrq('R'); + r37_include(r1_glyphs['P'], true); + r37_TURN = r1_XH * 0.1; + r37_right = r1_RIGHTSB - r1_O; + r37_xn$putshapes$9Jrj(r37_xn$createstroke$7Hrq()['start-from'](r37_right - r1_HALFSTROKE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r37_right - r1_HALFSTROKE, r37_TURN + 0.2 * (r1_XH - r37_TURN), r1_MIDDLE, r1_CAPMIDDLE)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('C', function _r1_t20() { + var r39_xn$setwidth$9Jrj, r39_xn$assignunicode$7Hrq, r39_xn$startfrom$1aao, r39_xn$lineto$5sIl, r39_xn$curveto$1aao, r39_xn$cubicto$1aao, r39_xn$putshapes$9Jrj, r39_xn$reverselast$3qIs, r39_include, r39_xn$createstroke$7Hrq, r39_xn$setanchor$9Jrj, r39_outline, _r39_t0; + _r39_t0 = this; + r39_xn$setwidth$9Jrj = _r39_t0['set-width']['bind'](_r39_t0); + r39_xn$assignunicode$7Hrq = _r39_t0['assign-unicode']['bind'](_r39_t0); + r39_xn$startfrom$1aao = _r39_t0['start-from']['bind'](_r39_t0); + r39_xn$lineto$5sIl = _r39_t0['line-to']['bind'](_r39_t0); + r39_xn$curveto$1aao = _r39_t0['curve-to']['bind'](_r39_t0); + r39_xn$cubicto$1aao = _r39_t0['cubic-to']['bind'](_r39_t0); + r39_xn$putshapes$9Jrj = _r39_t0['put-shapes']['bind'](_r39_t0); + r39_xn$reverselast$3qIs = _r39_t0['reverse-last']['bind'](_r39_t0); + r39_include = _r39_t0['include']['bind'](_r39_t0); + r39_xn$createstroke$7Hrq = _r39_t0['create-stroke']['bind'](_r39_t0); + r39_xn$setanchor$9Jrj = _r39_t0['set-anchor']['bind'](_r39_t0); + _r39_t0['gizmo'] = r1_globalTransform; + _r39_t0['set-width'](r1_WIDTH); + r39_xn$setwidth$9Jrj(r1_WIDTH); + r39_xn$assignunicode$7Hrq('C'); + r39_include(r1_capitalMarks); + r39_outline = r39_xn$createstroke$7Hrq(); + r39_outline['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_CAP - r1_HOOK)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_CAPO, r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r1_SMOOTHA)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + r1_ITALICCORS + r1_KAPPA_HOOK * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK, r1_HOOK); + r39_xn$putshapes$9Jrj(r39_outline['to-outline'](r1_STROKE, 0)); + return void 0; + }); + r1_xn$createglyph$7Hrq('G', function _r1_t21() { + var r41_xn$setwidth$9Jrj, r41_xn$assignunicode$7Hrq, r41_xn$startfrom$1aao, r41_xn$lineto$5sIl, r41_xn$curveto$1aao, r41_xn$cubicto$1aao, r41_xn$putshapes$9Jrj, r41_xn$reverselast$3qIs, r41_include, r41_xn$createstroke$7Hrq, r41_xn$setanchor$9Jrj, r41_outline, r41_bar, _r41_t0; + _r41_t0 = this; + r41_xn$setwidth$9Jrj = _r41_t0['set-width']['bind'](_r41_t0); + r41_xn$assignunicode$7Hrq = _r41_t0['assign-unicode']['bind'](_r41_t0); + r41_xn$startfrom$1aao = _r41_t0['start-from']['bind'](_r41_t0); + r41_xn$lineto$5sIl = _r41_t0['line-to']['bind'](_r41_t0); + r41_xn$curveto$1aao = _r41_t0['curve-to']['bind'](_r41_t0); + r41_xn$cubicto$1aao = _r41_t0['cubic-to']['bind'](_r41_t0); + r41_xn$putshapes$9Jrj = _r41_t0['put-shapes']['bind'](_r41_t0); + r41_xn$reverselast$3qIs = _r41_t0['reverse-last']['bind'](_r41_t0); + r41_include = _r41_t0['include']['bind'](_r41_t0); + r41_xn$createstroke$7Hrq = _r41_t0['create-stroke']['bind'](_r41_t0); + r41_xn$setanchor$9Jrj = _r41_t0['set-anchor']['bind'](_r41_t0); + _r41_t0['gizmo'] = r1_globalTransform; + _r41_t0['set-width'](r1_WIDTH); + r41_xn$setwidth$9Jrj(r1_WIDTH); + r41_xn$assignunicode$7Hrq('G'); + r41_include(r1_capitalMarks); + r41_outline = r41_xn$createstroke$7Hrq(); + r41_outline['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_CAP - r1_HOOK)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_CAPO, r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r1_SMOOTHA)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB, r1_SMOOTHA)['line-to'](r1_RIGHTSB, r1_CAP / 2 + r1_STROKE / 2)['heads-to'](r1_UPWARD); + r41_xn$putshapes$9Jrj(r41_outline['to-outline'](r1_STROKE, 0)); + r41_bar = r41_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_CAP / 2 + r1_STROKE / 2)['line-to'](r1_RIGHTSB, r1_CAP / 2 + r1_STROKE / 2)['heads-to'](r1_RIGHTWARD); + r41_xn$putshapes$9Jrj(r41_bar['to-outline'](0, r1_STROKE)); + return void 0; + }); + r1_xn$createglyph$7Hrq('O', function _r1_t22() { + var r43_xn$setwidth$9Jrj, r43_xn$assignunicode$7Hrq, r43_xn$startfrom$1aao, r43_xn$lineto$5sIl, r43_xn$curveto$1aao, r43_xn$cubicto$1aao, r43_xn$putshapes$9Jrj, r43_xn$reverselast$3qIs, r43_include, r43_xn$createstroke$7Hrq, r43_xn$setanchor$9Jrj, r43_outline, _r43_t0; + _r43_t0 = this; + r43_xn$setwidth$9Jrj = _r43_t0['set-width']['bind'](_r43_t0); + r43_xn$assignunicode$7Hrq = _r43_t0['assign-unicode']['bind'](_r43_t0); + r43_xn$startfrom$1aao = _r43_t0['start-from']['bind'](_r43_t0); + r43_xn$lineto$5sIl = _r43_t0['line-to']['bind'](_r43_t0); + r43_xn$curveto$1aao = _r43_t0['curve-to']['bind'](_r43_t0); + r43_xn$cubicto$1aao = _r43_t0['cubic-to']['bind'](_r43_t0); + r43_xn$putshapes$9Jrj = _r43_t0['put-shapes']['bind'](_r43_t0); + r43_xn$reverselast$3qIs = _r43_t0['reverse-last']['bind'](_r43_t0); + r43_include = _r43_t0['include']['bind'](_r43_t0); + r43_xn$createstroke$7Hrq = _r43_t0['create-stroke']['bind'](_r43_t0); + r43_xn$setanchor$9Jrj = _r43_t0['set-anchor']['bind'](_r43_t0); + _r43_t0['gizmo'] = r1_globalTransform; + _r43_t0['set-width'](r1_WIDTH); + r43_xn$setwidth$9Jrj(r1_WIDTH); + r43_xn$assignunicode$7Hrq('O'); + r43_include(r1_capitalMarks); + r43_outline = r43_xn$createstroke$7Hrq(); + r43_outline['start-from'](r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r1_SMOOTHA)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB, r1_SMOOTHA)['line-to'](r1_RIGHTSB, r1_CAP - r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD); + r43_xn$putshapes$9Jrj(r43_outline['to-outline'](r1_STROKE, 0)); + return void 0; + }); + r1_xn$createglyph$7Hrq('zero.slashed', function _r1_t23() { + var r45_xn$setwidth$9Jrj, r45_xn$assignunicode$7Hrq, r45_xn$startfrom$1aao, r45_xn$lineto$5sIl, r45_xn$curveto$1aao, r45_xn$cubicto$1aao, r45_xn$putshapes$9Jrj, r45_xn$reverselast$3qIs, r45_include, r45_xn$createstroke$7Hrq, r45_xn$setanchor$9Jrj, r45_bar, _r45_t0; + _r45_t0 = this; + r45_xn$setwidth$9Jrj = _r45_t0['set-width']['bind'](_r45_t0); + r45_xn$assignunicode$7Hrq = _r45_t0['assign-unicode']['bind'](_r45_t0); + r45_xn$startfrom$1aao = _r45_t0['start-from']['bind'](_r45_t0); + r45_xn$lineto$5sIl = _r45_t0['line-to']['bind'](_r45_t0); + r45_xn$curveto$1aao = _r45_t0['curve-to']['bind'](_r45_t0); + r45_xn$cubicto$1aao = _r45_t0['cubic-to']['bind'](_r45_t0); + r45_xn$putshapes$9Jrj = _r45_t0['put-shapes']['bind'](_r45_t0); + r45_xn$reverselast$3qIs = _r45_t0['reverse-last']['bind'](_r45_t0); + r45_include = _r45_t0['include']['bind'](_r45_t0); + r45_xn$createstroke$7Hrq = _r45_t0['create-stroke']['bind'](_r45_t0); + r45_xn$setanchor$9Jrj = _r45_t0['set-anchor']['bind'](_r45_t0); + _r45_t0['gizmo'] = r1_globalTransform; + _r45_t0['set-width'](r1_WIDTH); + r45_xn$setwidth$9Jrj(r1_WIDTH); + r45_xn$putshapes$9Jrj(r1_glyphs['O']['contours']); + r45_bar = r45_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_STROKE / 2, r1_CAP * (1 - 0.65))['line-to'](r1_RIGHTSB - r1_STROKE / 2, r1_CAP * 0.65); + r45_xn$putshapes$9Jrj(r45_bar['to-outline'](r1_STROKE / 2, r1_STROKE / 2)); + return void 0; + }); + r1_xn$createglyph$7Hrq('zero.unslashed', function _r1_t24() { + var r47_xn$setwidth$9Jrj, r47_xn$assignunicode$7Hrq, r47_xn$startfrom$1aao, r47_xn$lineto$5sIl, r47_xn$curveto$1aao, r47_xn$cubicto$1aao, r47_xn$putshapes$9Jrj, r47_xn$reverselast$3qIs, r47_include, r47_xn$createstroke$7Hrq, r47_xn$setanchor$9Jrj, _r47_t0; + _r47_t0 = this; + r47_xn$setwidth$9Jrj = _r47_t0['set-width']['bind'](_r47_t0); + r47_xn$assignunicode$7Hrq = _r47_t0['assign-unicode']['bind'](_r47_t0); + r47_xn$startfrom$1aao = _r47_t0['start-from']['bind'](_r47_t0); + r47_xn$lineto$5sIl = _r47_t0['line-to']['bind'](_r47_t0); + r47_xn$curveto$1aao = _r47_t0['curve-to']['bind'](_r47_t0); + r47_xn$cubicto$1aao = _r47_t0['cubic-to']['bind'](_r47_t0); + r47_xn$putshapes$9Jrj = _r47_t0['put-shapes']['bind'](_r47_t0); + r47_xn$reverselast$3qIs = _r47_t0['reverse-last']['bind'](_r47_t0); + r47_include = _r47_t0['include']['bind'](_r47_t0); + r47_xn$createstroke$7Hrq = _r47_t0['create-stroke']['bind'](_r47_t0); + r47_xn$setanchor$9Jrj = _r47_t0['set-anchor']['bind'](_r47_t0); + _r47_t0['gizmo'] = r1_globalTransform; + _r47_t0['set-width'](r1_WIDTH); + r47_include(r1_glyphs['O']); + return void 0; + }); + r1_xn$createglyph$7Hrq('zero.dotted', function _r1_t25() { + var r49_xn$setwidth$9Jrj, r49_xn$assignunicode$7Hrq, r49_xn$startfrom$1aao, r49_xn$lineto$5sIl, r49_xn$curveto$1aao, r49_xn$cubicto$1aao, r49_xn$putshapes$9Jrj, r49_xn$reverselast$3qIs, r49_include, r49_xn$createstroke$7Hrq, r49_xn$setanchor$9Jrj, _r49_t0; + _r49_t0 = this; + r49_xn$setwidth$9Jrj = _r49_t0['set-width']['bind'](_r49_t0); + r49_xn$assignunicode$7Hrq = _r49_t0['assign-unicode']['bind'](_r49_t0); + r49_xn$startfrom$1aao = _r49_t0['start-from']['bind'](_r49_t0); + r49_xn$lineto$5sIl = _r49_t0['line-to']['bind'](_r49_t0); + r49_xn$curveto$1aao = _r49_t0['curve-to']['bind'](_r49_t0); + r49_xn$cubicto$1aao = _r49_t0['cubic-to']['bind'](_r49_t0); + r49_xn$putshapes$9Jrj = _r49_t0['put-shapes']['bind'](_r49_t0); + r49_xn$reverselast$3qIs = _r49_t0['reverse-last']['bind'](_r49_t0); + r49_include = _r49_t0['include']['bind'](_r49_t0); + r49_xn$createstroke$7Hrq = _r49_t0['create-stroke']['bind'](_r49_t0); + r49_xn$setanchor$9Jrj = _r49_t0['set-anchor']['bind'](_r49_t0); + _r49_t0['gizmo'] = r1_globalTransform; + _r49_t0['set-width'](r1_WIDTH); + r49_include(r1_glyphs['O']); + r49_xn$putshapes$9Jrj([r1_Ring(r1_CAPMIDDLE + r1_DOTRADIUS, r1_CAPMIDDLE - r1_DOTRADIUS, r1_MIDDLE + r1_DOTRADIUS, r1_MIDDLE - r1_DOTRADIUS)]); + return void 0; + }); + r1_xn$createglyph$7Hrq('zero', function _r1_t26() { + var r51_xn$setwidth$9Jrj, r51_xn$assignunicode$7Hrq, r51_xn$startfrom$1aao, r51_xn$lineto$5sIl, r51_xn$curveto$1aao, r51_xn$cubicto$1aao, r51_xn$putshapes$9Jrj, r51_xn$reverselast$3qIs, r51_include, r51_xn$createstroke$7Hrq, r51_xn$setanchor$9Jrj, r51_otherwise, _r51_t0, _r51_t1, _r51_t2, _r51_t3, _r51_t4, _r51_t5, _r51_t6, _r51_t7; + _r51_t1 = this; + r51_xn$setwidth$9Jrj = _r51_t1['set-width']['bind'](_r51_t1); + r51_xn$assignunicode$7Hrq = _r51_t1['assign-unicode']['bind'](_r51_t1); + r51_xn$startfrom$1aao = _r51_t1['start-from']['bind'](_r51_t1); + r51_xn$lineto$5sIl = _r51_t1['line-to']['bind'](_r51_t1); + r51_xn$curveto$1aao = _r51_t1['curve-to']['bind'](_r51_t1); + r51_xn$cubicto$1aao = _r51_t1['cubic-to']['bind'](_r51_t1); + r51_xn$putshapes$9Jrj = _r51_t1['put-shapes']['bind'](_r51_t1); + r51_xn$reverselast$3qIs = _r51_t1['reverse-last']['bind'](_r51_t1); + r51_include = _r51_t1['include']['bind'](_r51_t1); + r51_xn$createstroke$7Hrq = _r51_t1['create-stroke']['bind'](_r51_t1); + r51_xn$setanchor$9Jrj = _r51_t1['set-anchor']['bind'](_r51_t1); + _r51_t1['gizmo'] = r1_globalTransform; + _r51_t1['set-width'](r1_WIDTH); + r51_xn$setwidth$9Jrj(r1_WIDTH); + r51_xn$assignunicode$7Hrq('0'); + _r51_t2 = r51_include; + _r51_t3 = r1_glyphs; + _r51_t0 = r1_variantSelector['zero']; + if ('slashed' === _r51_t0) { + _r51_t4 = 'zero.slashed'; + } else { + if ('dotted' === _r51_t0) { + _r51_t5 = 'zero.dotted'; + } else { + if ('unslahsed' === _r51_t0) { + _r51_t6 = 'zero.unslashed'; + } else { + r51_otherwise = _r51_t0; + _r51_t6 = 'zero.slashed'; + } + _r51_t5 = _r51_t6; + } + _r51_t4 = _r51_t5; + } + _r51_t7 = _r51_t3[_r51_t4]; + _r51_t2(_r51_t7); + return void 0; + }); + r1_xn$createglyph$7Hrq('Q', function _r1_t27() { + var r53_xn$setwidth$9Jrj, r53_xn$assignunicode$7Hrq, r53_xn$startfrom$1aao, r53_xn$lineto$5sIl, r53_xn$curveto$1aao, r53_xn$cubicto$1aao, r53_xn$putshapes$9Jrj, r53_xn$reverselast$3qIs, r53_include, r53_xn$createstroke$7Hrq, r53_xn$setanchor$9Jrj, _r53_t0; + _r53_t0 = this; + r53_xn$setwidth$9Jrj = _r53_t0['set-width']['bind'](_r53_t0); + r53_xn$assignunicode$7Hrq = _r53_t0['assign-unicode']['bind'](_r53_t0); + r53_xn$startfrom$1aao = _r53_t0['start-from']['bind'](_r53_t0); + r53_xn$lineto$5sIl = _r53_t0['line-to']['bind'](_r53_t0); + r53_xn$curveto$1aao = _r53_t0['curve-to']['bind'](_r53_t0); + r53_xn$cubicto$1aao = _r53_t0['cubic-to']['bind'](_r53_t0); + r53_xn$putshapes$9Jrj = _r53_t0['put-shapes']['bind'](_r53_t0); + r53_xn$reverselast$3qIs = _r53_t0['reverse-last']['bind'](_r53_t0); + r53_include = _r53_t0['include']['bind'](_r53_t0); + r53_xn$createstroke$7Hrq = _r53_t0['create-stroke']['bind'](_r53_t0); + r53_xn$setanchor$9Jrj = _r53_t0['set-anchor']['bind'](_r53_t0); + _r53_t0['gizmo'] = r1_globalTransform; + _r53_t0['set-width'](r1_WIDTH); + r53_xn$setwidth$9Jrj(r1_WIDTH); + r53_xn$assignunicode$7Hrq('Q'); + r53_include(r1_glyphs['O'], true); + r53_xn$startfrom$1aao(r1_MIDDLE, 0); + r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE / 2, -r1_CAP * 0.2); + r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE / 2 + r1_STROKE, -r1_CAP * 0.2); + r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE, 0); + r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE * (1 - 0.5 / 3), r1_STROKE * 0.5); + r53_xn$reverselast$3qIs(); + return void 0; + }); + r1_xn$createglyph$7Hrq('U', function _r1_t28() { + var r55_xn$setwidth$9Jrj, r55_xn$assignunicode$7Hrq, r55_xn$startfrom$1aao, r55_xn$lineto$5sIl, r55_xn$curveto$1aao, r55_xn$cubicto$1aao, r55_xn$putshapes$9Jrj, r55_xn$reverselast$3qIs, r55_include, r55_xn$createstroke$7Hrq, r55_xn$setanchor$9Jrj, r55_outline, _r55_t0; + _r55_t0 = this; + r55_xn$setwidth$9Jrj = _r55_t0['set-width']['bind'](_r55_t0); + r55_xn$assignunicode$7Hrq = _r55_t0['assign-unicode']['bind'](_r55_t0); + r55_xn$startfrom$1aao = _r55_t0['start-from']['bind'](_r55_t0); + r55_xn$lineto$5sIl = _r55_t0['line-to']['bind'](_r55_t0); + r55_xn$curveto$1aao = _r55_t0['curve-to']['bind'](_r55_t0); + r55_xn$cubicto$1aao = _r55_t0['cubic-to']['bind'](_r55_t0); + r55_xn$putshapes$9Jrj = _r55_t0['put-shapes']['bind'](_r55_t0); + r55_xn$reverselast$3qIs = _r55_t0['reverse-last']['bind'](_r55_t0); + r55_include = _r55_t0['include']['bind'](_r55_t0); + r55_xn$createstroke$7Hrq = _r55_t0['create-stroke']['bind'](_r55_t0); + r55_xn$setanchor$9Jrj = _r55_t0['set-anchor']['bind'](_r55_t0); + _r55_t0['gizmo'] = r1_globalTransform; + _r55_t0['set-width'](r1_WIDTH); + r55_xn$setwidth$9Jrj(r1_WIDTH); + r55_xn$assignunicode$7Hrq('U'); + r55_include(r1_capitalMarks); + r55_outline = r55_xn$createstroke$7Hrq(); + r55_outline['start-from'](r1_SB, r1_CAP)['heads-to'](r1_DOWNWARD)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB, r1_SMOOTHA)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD); + r55_xn$putshapes$9Jrj(r55_outline['to-outline'](r1_STROKE, 0)); + return void 0; + }); + r1_xn$createglyph$7Hrq('F', function _r1_t29() { + var r57_xn$setwidth$9Jrj, r57_xn$assignunicode$7Hrq, r57_xn$startfrom$1aao, r57_xn$lineto$5sIl, r57_xn$curveto$1aao, r57_xn$cubicto$1aao, r57_xn$putshapes$9Jrj, r57_xn$reverselast$3qIs, r57_include, r57_xn$createstroke$7Hrq, r57_xn$setanchor$9Jrj, _r57_t0; + _r57_t0 = this; + r57_xn$setwidth$9Jrj = _r57_t0['set-width']['bind'](_r57_t0); + r57_xn$assignunicode$7Hrq = _r57_t0['assign-unicode']['bind'](_r57_t0); + r57_xn$startfrom$1aao = _r57_t0['start-from']['bind'](_r57_t0); + r57_xn$lineto$5sIl = _r57_t0['line-to']['bind'](_r57_t0); + r57_xn$curveto$1aao = _r57_t0['curve-to']['bind'](_r57_t0); + r57_xn$cubicto$1aao = _r57_t0['cubic-to']['bind'](_r57_t0); + r57_xn$putshapes$9Jrj = _r57_t0['put-shapes']['bind'](_r57_t0); + r57_xn$reverselast$3qIs = _r57_t0['reverse-last']['bind'](_r57_t0); + r57_include = _r57_t0['include']['bind'](_r57_t0); + r57_xn$createstroke$7Hrq = _r57_t0['create-stroke']['bind'](_r57_t0); + r57_xn$setanchor$9Jrj = _r57_t0['set-anchor']['bind'](_r57_t0); + _r57_t0['gizmo'] = r1_globalTransform; + _r57_t0['set-width'](r1_WIDTH); + r57_xn$setwidth$9Jrj(r1_WIDTH); + r57_xn$assignunicode$7Hrq('F'); + r57_include(r1_capitalMarks); + r57_xn$putshapes$9Jrj(r57_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB * 1.5, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r57_xn$putshapes$9Jrj(r57_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, r1_CAP)['set-width'](0, r1_STROKE)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r57_xn$putshapes$9Jrj(r57_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, r1_CAPMIDDLE)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAPMIDDLE)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('E', function _r1_t30() { + var r59_xn$setwidth$9Jrj, r59_xn$assignunicode$7Hrq, r59_xn$startfrom$1aao, r59_xn$lineto$5sIl, r59_xn$curveto$1aao, r59_xn$cubicto$1aao, r59_xn$putshapes$9Jrj, r59_xn$reverselast$3qIs, r59_include, r59_xn$createstroke$7Hrq, r59_xn$setanchor$9Jrj, _r59_t0; + _r59_t0 = this; + r59_xn$setwidth$9Jrj = _r59_t0['set-width']['bind'](_r59_t0); + r59_xn$assignunicode$7Hrq = _r59_t0['assign-unicode']['bind'](_r59_t0); + r59_xn$startfrom$1aao = _r59_t0['start-from']['bind'](_r59_t0); + r59_xn$lineto$5sIl = _r59_t0['line-to']['bind'](_r59_t0); + r59_xn$curveto$1aao = _r59_t0['curve-to']['bind'](_r59_t0); + r59_xn$cubicto$1aao = _r59_t0['cubic-to']['bind'](_r59_t0); + r59_xn$putshapes$9Jrj = _r59_t0['put-shapes']['bind'](_r59_t0); + r59_xn$reverselast$3qIs = _r59_t0['reverse-last']['bind'](_r59_t0); + r59_include = _r59_t0['include']['bind'](_r59_t0); + r59_xn$createstroke$7Hrq = _r59_t0['create-stroke']['bind'](_r59_t0); + r59_xn$setanchor$9Jrj = _r59_t0['set-anchor']['bind'](_r59_t0); + _r59_t0['gizmo'] = r1_globalTransform; + _r59_t0['set-width'](r1_WIDTH); + r59_xn$setwidth$9Jrj(r1_WIDTH); + r59_xn$assignunicode$7Hrq('E'); + r59_include(r1_glyphs['F'], true); + r59_xn$putshapes$9Jrj(r59_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, 0)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('H', function _r1_t31() { + var r61_xn$setwidth$9Jrj, r61_xn$assignunicode$7Hrq, r61_xn$startfrom$1aao, r61_xn$lineto$5sIl, r61_xn$curveto$1aao, r61_xn$cubicto$1aao, r61_xn$putshapes$9Jrj, r61_xn$reverselast$3qIs, r61_include, r61_xn$createstroke$7Hrq, r61_xn$setanchor$9Jrj, _r61_t0; + _r61_t0 = this; + r61_xn$setwidth$9Jrj = _r61_t0['set-width']['bind'](_r61_t0); + r61_xn$assignunicode$7Hrq = _r61_t0['assign-unicode']['bind'](_r61_t0); + r61_xn$startfrom$1aao = _r61_t0['start-from']['bind'](_r61_t0); + r61_xn$lineto$5sIl = _r61_t0['line-to']['bind'](_r61_t0); + r61_xn$curveto$1aao = _r61_t0['curve-to']['bind'](_r61_t0); + r61_xn$cubicto$1aao = _r61_t0['cubic-to']['bind'](_r61_t0); + r61_xn$putshapes$9Jrj = _r61_t0['put-shapes']['bind'](_r61_t0); + r61_xn$reverselast$3qIs = _r61_t0['reverse-last']['bind'](_r61_t0); + r61_include = _r61_t0['include']['bind'](_r61_t0); + r61_xn$createstroke$7Hrq = _r61_t0['create-stroke']['bind'](_r61_t0); + r61_xn$setanchor$9Jrj = _r61_t0['set-anchor']['bind'](_r61_t0); + _r61_t0['gizmo'] = r1_globalTransform; + _r61_t0['set-width'](r1_WIDTH); + r61_xn$setwidth$9Jrj(r1_WIDTH); + r61_xn$assignunicode$7Hrq('H'); + r61_include(r1_capitalMarks); + r61_xn$putshapes$9Jrj(r61_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r61_xn$putshapes$9Jrj(r61_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r61_xn$putshapes$9Jrj(r61_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP / 2)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, r1_CAP / 2)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('L', function _r1_t32() { + var r63_xn$setwidth$9Jrj, r63_xn$assignunicode$7Hrq, r63_xn$startfrom$1aao, r63_xn$lineto$5sIl, r63_xn$curveto$1aao, r63_xn$cubicto$1aao, r63_xn$putshapes$9Jrj, r63_xn$reverselast$3qIs, r63_include, r63_xn$createstroke$7Hrq, r63_xn$setanchor$9Jrj, _r63_t0; + _r63_t0 = this; + r63_xn$setwidth$9Jrj = _r63_t0['set-width']['bind'](_r63_t0); + r63_xn$assignunicode$7Hrq = _r63_t0['assign-unicode']['bind'](_r63_t0); + r63_xn$startfrom$1aao = _r63_t0['start-from']['bind'](_r63_t0); + r63_xn$lineto$5sIl = _r63_t0['line-to']['bind'](_r63_t0); + r63_xn$curveto$1aao = _r63_t0['curve-to']['bind'](_r63_t0); + r63_xn$cubicto$1aao = _r63_t0['cubic-to']['bind'](_r63_t0); + r63_xn$putshapes$9Jrj = _r63_t0['put-shapes']['bind'](_r63_t0); + r63_xn$reverselast$3qIs = _r63_t0['reverse-last']['bind'](_r63_t0); + r63_include = _r63_t0['include']['bind'](_r63_t0); + r63_xn$createstroke$7Hrq = _r63_t0['create-stroke']['bind'](_r63_t0); + r63_xn$setanchor$9Jrj = _r63_t0['set-anchor']['bind'](_r63_t0); + _r63_t0['gizmo'] = r1_globalTransform; + _r63_t0['set-width'](r1_WIDTH); + r63_xn$setwidth$9Jrj(r1_WIDTH); + r63_xn$assignunicode$7Hrq('L'); + r63_include(r1_capitalMarks); + r63_xn$putshapes$9Jrj(r63_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, r1_CAP)['set-width'](r1_STROKE, 0)['heads-to'](r1_DOWNWARD)['line-to'](r1_SB * 1.5, 0)['heads-to'](r1_DOWNWARD)['to-outline']()); + r63_xn$putshapes$9Jrj(r63_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, 0)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessI.straight', function _r1_t33() { + var r65_xn$setwidth$9Jrj, r65_xn$assignunicode$7Hrq, r65_xn$startfrom$1aao, r65_xn$lineto$5sIl, r65_xn$curveto$1aao, r65_xn$cubicto$1aao, r65_xn$putshapes$9Jrj, r65_xn$reverselast$3qIs, r65_include, r65_xn$createstroke$7Hrq, r65_xn$setanchor$9Jrj, _r65_t0; + _r65_t0 = this; + r65_xn$setwidth$9Jrj = _r65_t0['set-width']['bind'](_r65_t0); + r65_xn$assignunicode$7Hrq = _r65_t0['assign-unicode']['bind'](_r65_t0); + r65_xn$startfrom$1aao = _r65_t0['start-from']['bind'](_r65_t0); + r65_xn$lineto$5sIl = _r65_t0['line-to']['bind'](_r65_t0); + r65_xn$curveto$1aao = _r65_t0['curve-to']['bind'](_r65_t0); + r65_xn$cubicto$1aao = _r65_t0['cubic-to']['bind'](_r65_t0); + r65_xn$putshapes$9Jrj = _r65_t0['put-shapes']['bind'](_r65_t0); + r65_xn$reverselast$3qIs = _r65_t0['reverse-last']['bind'](_r65_t0); + r65_include = _r65_t0['include']['bind'](_r65_t0); + r65_xn$createstroke$7Hrq = _r65_t0['create-stroke']['bind'](_r65_t0); + r65_xn$setanchor$9Jrj = _r65_t0['set-anchor']['bind'](_r65_t0); + _r65_t0['gizmo'] = r1_globalTransform; + _r65_t0['set-width'](r1_WIDTH); + r65_xn$putshapes$9Jrj(r65_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessI.symmetric', function _r1_t34() { + var r67_xn$setwidth$9Jrj, r67_xn$assignunicode$7Hrq, r67_xn$startfrom$1aao, r67_xn$lineto$5sIl, r67_xn$curveto$1aao, r67_xn$cubicto$1aao, r67_xn$putshapes$9Jrj, r67_xn$reverselast$3qIs, r67_include, r67_xn$createstroke$7Hrq, r67_xn$setanchor$9Jrj, _r67_t0; + _r67_t0 = this; + r67_xn$setwidth$9Jrj = _r67_t0['set-width']['bind'](_r67_t0); + r67_xn$assignunicode$7Hrq = _r67_t0['assign-unicode']['bind'](_r67_t0); + r67_xn$startfrom$1aao = _r67_t0['start-from']['bind'](_r67_t0); + r67_xn$lineto$5sIl = _r67_t0['line-to']['bind'](_r67_t0); + r67_xn$curveto$1aao = _r67_t0['curve-to']['bind'](_r67_t0); + r67_xn$cubicto$1aao = _r67_t0['cubic-to']['bind'](_r67_t0); + r67_xn$putshapes$9Jrj = _r67_t0['put-shapes']['bind'](_r67_t0); + r67_xn$reverselast$3qIs = _r67_t0['reverse-last']['bind'](_r67_t0); + r67_include = _r67_t0['include']['bind'](_r67_t0); + r67_xn$createstroke$7Hrq = _r67_t0['create-stroke']['bind'](_r67_t0); + r67_xn$setanchor$9Jrj = _r67_t0['set-anchor']['bind'](_r67_t0); + _r67_t0['gizmo'] = r1_globalTransform; + _r67_t0['set-width'](r1_WIDTH); + r67_include(r1_glyphs['dotlessI.straight']); + r67_xn$putshapes$9Jrj(r67_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_WIDTH * 0.26 - r1_STROKE * r1_globalTransform['yx'], r1_CAP)['set-width'](0, r1_STROKE)['line-to'](r1_MIDDLE + r1_WIDTH * 0.26 - r1_STROKE * r1_globalTransform['yx'], r1_CAP)['to-outline']()); + r67_xn$putshapes$9Jrj(r67_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_WIDTH * 0.26 + r1_STROKE * r1_globalTransform['yx'], 0)['set-width'](r1_STROKE, 0)['line-to'](r1_MIDDLE + r1_WIDTH * 0.26 + r1_STROKE * r1_globalTransform['yx'], 0)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('I', function _r1_t35() { + var r69_xn$setwidth$9Jrj, r69_xn$assignunicode$7Hrq, r69_xn$startfrom$1aao, r69_xn$lineto$5sIl, r69_xn$curveto$1aao, r69_xn$cubicto$1aao, r69_xn$putshapes$9Jrj, r69_xn$reverselast$3qIs, r69_include, r69_xn$createstroke$7Hrq, r69_xn$setanchor$9Jrj, _r69_t0; + _r69_t0 = this; + r69_xn$setwidth$9Jrj = _r69_t0['set-width']['bind'](_r69_t0); + r69_xn$assignunicode$7Hrq = _r69_t0['assign-unicode']['bind'](_r69_t0); + r69_xn$startfrom$1aao = _r69_t0['start-from']['bind'](_r69_t0); + r69_xn$lineto$5sIl = _r69_t0['line-to']['bind'](_r69_t0); + r69_xn$curveto$1aao = _r69_t0['curve-to']['bind'](_r69_t0); + r69_xn$cubicto$1aao = _r69_t0['cubic-to']['bind'](_r69_t0); + r69_xn$putshapes$9Jrj = _r69_t0['put-shapes']['bind'](_r69_t0); + r69_xn$reverselast$3qIs = _r69_t0['reverse-last']['bind'](_r69_t0); + r69_include = _r69_t0['include']['bind'](_r69_t0); + r69_xn$createstroke$7Hrq = _r69_t0['create-stroke']['bind'](_r69_t0); + r69_xn$setanchor$9Jrj = _r69_t0['set-anchor']['bind'](_r69_t0); + _r69_t0['gizmo'] = r1_globalTransform; + _r69_t0['set-width'](r1_WIDTH); + r69_xn$setwidth$9Jrj(r1_WIDTH); + r69_xn$assignunicode$7Hrq('I'); + r69_include(r1_capitalMarks); + r69_include(r1_glyphs['dotlessI.symmetric']); + return void 0; + }); + r1_xn$createglyph$7Hrq('T', function _r1_t36() { + var r71_xn$setwidth$9Jrj, r71_xn$assignunicode$7Hrq, r71_xn$startfrom$1aao, r71_xn$lineto$5sIl, r71_xn$curveto$1aao, r71_xn$cubicto$1aao, r71_xn$putshapes$9Jrj, r71_xn$reverselast$3qIs, r71_include, r71_xn$createstroke$7Hrq, r71_xn$setanchor$9Jrj, _r71_t0; + _r71_t0 = this; + r71_xn$setwidth$9Jrj = _r71_t0['set-width']['bind'](_r71_t0); + r71_xn$assignunicode$7Hrq = _r71_t0['assign-unicode']['bind'](_r71_t0); + r71_xn$startfrom$1aao = _r71_t0['start-from']['bind'](_r71_t0); + r71_xn$lineto$5sIl = _r71_t0['line-to']['bind'](_r71_t0); + r71_xn$curveto$1aao = _r71_t0['curve-to']['bind'](_r71_t0); + r71_xn$cubicto$1aao = _r71_t0['cubic-to']['bind'](_r71_t0); + r71_xn$putshapes$9Jrj = _r71_t0['put-shapes']['bind'](_r71_t0); + r71_xn$reverselast$3qIs = _r71_t0['reverse-last']['bind'](_r71_t0); + r71_include = _r71_t0['include']['bind'](_r71_t0); + r71_xn$createstroke$7Hrq = _r71_t0['create-stroke']['bind'](_r71_t0); + r71_xn$setanchor$9Jrj = _r71_t0['set-anchor']['bind'](_r71_t0); + _r71_t0['gizmo'] = r1_globalTransform; + _r71_t0['set-width'](r1_WIDTH); + r71_xn$setwidth$9Jrj(r1_WIDTH); + r71_xn$assignunicode$7Hrq('T'); + r71_include(r1_capitalMarks); + r71_xn$putshapes$9Jrj(r71_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r71_xn$putshapes$9Jrj(r71_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('Z', function _r1_t37() { + var r73_xn$setwidth$9Jrj, r73_xn$assignunicode$7Hrq, r73_xn$startfrom$1aao, r73_xn$lineto$5sIl, r73_xn$curveto$1aao, r73_xn$cubicto$1aao, r73_xn$putshapes$9Jrj, r73_xn$reverselast$3qIs, r73_include, r73_xn$createstroke$7Hrq, r73_xn$setanchor$9Jrj, r73_cor, _r73_t0; + _r73_t0 = this; + r73_xn$setwidth$9Jrj = _r73_t0['set-width']['bind'](_r73_t0); + r73_xn$assignunicode$7Hrq = _r73_t0['assign-unicode']['bind'](_r73_t0); + r73_xn$startfrom$1aao = _r73_t0['start-from']['bind'](_r73_t0); + r73_xn$lineto$5sIl = _r73_t0['line-to']['bind'](_r73_t0); + r73_xn$curveto$1aao = _r73_t0['curve-to']['bind'](_r73_t0); + r73_xn$cubicto$1aao = _r73_t0['cubic-to']['bind'](_r73_t0); + r73_xn$putshapes$9Jrj = _r73_t0['put-shapes']['bind'](_r73_t0); + r73_xn$reverselast$3qIs = _r73_t0['reverse-last']['bind'](_r73_t0); + r73_include = _r73_t0['include']['bind'](_r73_t0); + r73_xn$createstroke$7Hrq = _r73_t0['create-stroke']['bind'](_r73_t0); + r73_xn$setanchor$9Jrj = _r73_t0['set-anchor']['bind'](_r73_t0); + _r73_t0['gizmo'] = r1_globalTransform; + _r73_t0['set-width'](r1_WIDTH); + r73_xn$setwidth$9Jrj(r1_WIDTH); + r73_xn$assignunicode$7Hrq('Z'); + r73_include(r1_capitalMarks); + r73_cor = 1.15; + r73_xn$putshapes$9Jrj(r73_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r73_xn$putshapes$9Jrj(r73_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r73_xn$startfrom$1aao(r1_SB, r1_STROKE); + r73_xn$lineto$5sIl(r1_SB + r1_STROKE * r73_cor, r1_STROKE); + r73_xn$lineto$5sIl(r1_RIGHTSB, r1_CAP - r1_STROKE); + r73_xn$lineto$5sIl(r1_RIGHTSB - r1_STROKE * r73_cor, r1_CAP - r1_STROKE); + r73_xn$reverselast$3qIs(); + return void 0; + }); + r1_xn$createglyph$7Hrq('J.straight', function _r1_t38() { + var r75_xn$setwidth$9Jrj, r75_xn$assignunicode$7Hrq, r75_xn$startfrom$1aao, r75_xn$lineto$5sIl, r75_xn$curveto$1aao, r75_xn$cubicto$1aao, r75_xn$putshapes$9Jrj, r75_xn$reverselast$3qIs, r75_include, r75_xn$createstroke$7Hrq, r75_xn$setanchor$9Jrj, r75_slope, r75_expand, r75_coexpand, r75_kappa, r75_smooth, _r75_t0; + _r75_t0 = this; + r75_xn$setwidth$9Jrj = _r75_t0['set-width']['bind'](_r75_t0); + r75_xn$assignunicode$7Hrq = _r75_t0['assign-unicode']['bind'](_r75_t0); + r75_xn$startfrom$1aao = _r75_t0['start-from']['bind'](_r75_t0); + r75_xn$lineto$5sIl = _r75_t0['line-to']['bind'](_r75_t0); + r75_xn$curveto$1aao = _r75_t0['curve-to']['bind'](_r75_t0); + r75_xn$cubicto$1aao = _r75_t0['cubic-to']['bind'](_r75_t0); + r75_xn$putshapes$9Jrj = _r75_t0['put-shapes']['bind'](_r75_t0); + r75_xn$reverselast$3qIs = _r75_t0['reverse-last']['bind'](_r75_t0); + r75_include = _r75_t0['include']['bind'](_r75_t0); + r75_xn$createstroke$7Hrq = _r75_t0['create-stroke']['bind'](_r75_t0); + r75_xn$setanchor$9Jrj = _r75_t0['set-anchor']['bind'](_r75_t0); + _r75_t0['gizmo'] = r1_globalTransform; + _r75_t0['set-width'](r1_WIDTH); + r75_xn$setwidth$9Jrj(r1_WIDTH); + r75_include(r1_capitalMarks); + r75_slope = r1_STROKE * 0.00092; + r75_expand = 0.35; + r75_coexpand = (1 - r75_expand) / 2; + r75_kappa = r1_KAPPA_HOOK; + r75_smooth = r1_HOOK + 0.75 * r1_STROKE; + r75_xn$putshapes$9Jrj(r75_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_CAP)['set-width'](0, r1_STROKE)['heads-to'](r1_DOWNWARD)['line-to'](r1_RIGHTSB, r75_smooth)['arc-vh-to'](r1_MIDDLE - r1_SB * 0.25, r1_O)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - r75_kappa * (r1_MIDDLE - r1_SB) - r1_SB * 0.5, r1_O, 0.5 * r1_SB + r1_OXHOOK, r1_HOOK)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('J.serifed', function _r1_t39() { + var r77_xn$setwidth$9Jrj, r77_xn$assignunicode$7Hrq, r77_xn$startfrom$1aao, r77_xn$lineto$5sIl, r77_xn$curveto$1aao, r77_xn$cubicto$1aao, r77_xn$putshapes$9Jrj, r77_xn$reverselast$3qIs, r77_include, r77_xn$createstroke$7Hrq, r77_xn$setanchor$9Jrj, _r77_t0; + _r77_t0 = this; + r77_xn$setwidth$9Jrj = _r77_t0['set-width']['bind'](_r77_t0); + r77_xn$assignunicode$7Hrq = _r77_t0['assign-unicode']['bind'](_r77_t0); + r77_xn$startfrom$1aao = _r77_t0['start-from']['bind'](_r77_t0); + r77_xn$lineto$5sIl = _r77_t0['line-to']['bind'](_r77_t0); + r77_xn$curveto$1aao = _r77_t0['curve-to']['bind'](_r77_t0); + r77_xn$cubicto$1aao = _r77_t0['cubic-to']['bind'](_r77_t0); + r77_xn$putshapes$9Jrj = _r77_t0['put-shapes']['bind'](_r77_t0); + r77_xn$reverselast$3qIs = _r77_t0['reverse-last']['bind'](_r77_t0); + r77_include = _r77_t0['include']['bind'](_r77_t0); + r77_xn$createstroke$7Hrq = _r77_t0['create-stroke']['bind'](_r77_t0); + r77_xn$setanchor$9Jrj = _r77_t0['set-anchor']['bind'](_r77_t0); + _r77_t0['gizmo'] = r1_globalTransform; + _r77_t0['set-width'](r1_WIDTH); + r77_xn$setwidth$9Jrj(r1_WIDTH); + r77_xn$assignunicode$7Hrq('J'); + r77_include(r1_glyphs['J.straight'], true); + r77_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_RIGHTSB - r1_HALFSTROKE, r1_CAP, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('N', function _r1_t40() { + var r79_xn$setwidth$9Jrj, r79_xn$assignunicode$7Hrq, r79_xn$startfrom$1aao, r79_xn$lineto$5sIl, r79_xn$curveto$1aao, r79_xn$cubicto$1aao, r79_xn$putshapes$9Jrj, r79_xn$reverselast$3qIs, r79_include, r79_xn$createstroke$7Hrq, r79_xn$setanchor$9Jrj, r79_topstroke, r79_halftopstroke, _r79_t0; + _r79_t0 = this; + r79_xn$setwidth$9Jrj = _r79_t0['set-width']['bind'](_r79_t0); + r79_xn$assignunicode$7Hrq = _r79_t0['assign-unicode']['bind'](_r79_t0); + r79_xn$startfrom$1aao = _r79_t0['start-from']['bind'](_r79_t0); + r79_xn$lineto$5sIl = _r79_t0['line-to']['bind'](_r79_t0); + r79_xn$curveto$1aao = _r79_t0['curve-to']['bind'](_r79_t0); + r79_xn$cubicto$1aao = _r79_t0['cubic-to']['bind'](_r79_t0); + r79_xn$putshapes$9Jrj = _r79_t0['put-shapes']['bind'](_r79_t0); + r79_xn$reverselast$3qIs = _r79_t0['reverse-last']['bind'](_r79_t0); + r79_include = _r79_t0['include']['bind'](_r79_t0); + r79_xn$createstroke$7Hrq = _r79_t0['create-stroke']['bind'](_r79_t0); + r79_xn$setanchor$9Jrj = _r79_t0['set-anchor']['bind'](_r79_t0); + _r79_t0['gizmo'] = r1_globalTransform; + _r79_t0['set-width'](r1_WIDTH); + r79_xn$setwidth$9Jrj(r1_WIDTH); + r79_xn$assignunicode$7Hrq('N'); + r79_include(r1_capitalMarks); + r79_topstroke = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.24); + r79_halftopstroke = r79_topstroke / 2; + r79_xn$putshapes$9Jrj(r79_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP * 0.4)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['set-width'](0, r79_topstroke)['to-outline']()); + r79_xn$putshapes$9Jrj(r79_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r79_topstroke, 0)['line-to'](r1_RIGHTSB, r1_CAP * 0.6)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r79_xn$putshapes$9Jrj(r79_xn$createstroke$7Hrq()['start-from'](r1_SB + r79_halftopstroke, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r79_topstroke, 0)['line-to'](r1_RIGHTSB - r79_topstroke - r79_halftopstroke, 0)['heads-to'](r1_DOWNWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('M', function _r1_t41() { + var r81_xn$setwidth$9Jrj, r81_xn$assignunicode$7Hrq, r81_xn$startfrom$1aao, r81_xn$lineto$5sIl, r81_xn$curveto$1aao, r81_xn$cubicto$1aao, r81_xn$putshapes$9Jrj, r81_xn$reverselast$3qIs, r81_include, r81_xn$createstroke$7Hrq, r81_xn$setanchor$9Jrj, r81_topstroke, r81_halftopstroke, _r81_t0; + _r81_t0 = this; + r81_xn$setwidth$9Jrj = _r81_t0['set-width']['bind'](_r81_t0); + r81_xn$assignunicode$7Hrq = _r81_t0['assign-unicode']['bind'](_r81_t0); + r81_xn$startfrom$1aao = _r81_t0['start-from']['bind'](_r81_t0); + r81_xn$lineto$5sIl = _r81_t0['line-to']['bind'](_r81_t0); + r81_xn$curveto$1aao = _r81_t0['curve-to']['bind'](_r81_t0); + r81_xn$cubicto$1aao = _r81_t0['cubic-to']['bind'](_r81_t0); + r81_xn$putshapes$9Jrj = _r81_t0['put-shapes']['bind'](_r81_t0); + r81_xn$reverselast$3qIs = _r81_t0['reverse-last']['bind'](_r81_t0); + r81_include = _r81_t0['include']['bind'](_r81_t0); + r81_xn$createstroke$7Hrq = _r81_t0['create-stroke']['bind'](_r81_t0); + r81_xn$setanchor$9Jrj = _r81_t0['set-anchor']['bind'](_r81_t0); + _r81_t0['gizmo'] = r1_globalTransform; + _r81_t0['set-width'](r1_WIDTH); + r81_xn$setwidth$9Jrj(r1_WIDTH); + r81_xn$assignunicode$7Hrq('M'); + r81_include(r1_capitalMarks); + r81_topstroke = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.175); + r81_halftopstroke = r81_topstroke / 2; + r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP * 0.2)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['set-width'](0, r81_topstroke)['to-outline']()); + r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP * 0.2)['heads-to'](r1_UPWARD)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['set-width'](r81_topstroke, 0)['to-outline']()); + r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_SB + r81_halftopstroke, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r81_topstroke, 0)['line-to'](r1_MIDDLE - r81_halftopstroke, r1_CAP * 0.3)['heads-to'](r1_DOWNWARD)['to-outline']()); + r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r81_halftopstroke, r1_CAP * 0.3)['heads-to'](r1_UPWARD)['set-width'](r81_topstroke, 0)['line-to'](r1_RIGHTSB - r81_halftopstroke, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('S', function _r1_t42() { + var r83_xn$setwidth$9Jrj, r83_xn$assignunicode$7Hrq, r83_xn$startfrom$1aao, r83_xn$lineto$5sIl, r83_xn$curveto$1aao, r83_xn$cubicto$1aao, r83_xn$putshapes$9Jrj, r83_xn$reverselast$3qIs, r83_include, r83_xn$createstroke$7Hrq, r83_xn$setanchor$9Jrj, r83_slope, r83_expand, r83_coexpand, r83_ssmootha, r83_bowltop, r83_strokemiddle, r83_bowlbottom, _r83_t0; + _r83_t0 = this; + r83_xn$setwidth$9Jrj = _r83_t0['set-width']['bind'](_r83_t0); + r83_xn$assignunicode$7Hrq = _r83_t0['assign-unicode']['bind'](_r83_t0); + r83_xn$startfrom$1aao = _r83_t0['start-from']['bind'](_r83_t0); + r83_xn$lineto$5sIl = _r83_t0['line-to']['bind'](_r83_t0); + r83_xn$curveto$1aao = _r83_t0['curve-to']['bind'](_r83_t0); + r83_xn$cubicto$1aao = _r83_t0['cubic-to']['bind'](_r83_t0); + r83_xn$putshapes$9Jrj = _r83_t0['put-shapes']['bind'](_r83_t0); + r83_xn$reverselast$3qIs = _r83_t0['reverse-last']['bind'](_r83_t0); + r83_include = _r83_t0['include']['bind'](_r83_t0); + r83_xn$createstroke$7Hrq = _r83_t0['create-stroke']['bind'](_r83_t0); + r83_xn$setanchor$9Jrj = _r83_t0['set-anchor']['bind'](_r83_t0); + _r83_t0['gizmo'] = r1_globalTransform; + _r83_t0['set-width'](r1_WIDTH); + r83_xn$setwidth$9Jrj(r1_WIDTH); + r83_xn$assignunicode$7Hrq('S'); + r83_include(r1_capitalMarks); + r83_slope = r1_STROKE * 0.00092; + r83_expand = 0.35; + r83_coexpand = (1 - r83_expand) / 2; + r83_ssmootha = r1_SMOOTHA; + r83_bowltop = r83_xn$createstroke$7Hrq(); + r83_bowltop['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_CAP - r1_HOOK)['set-width'](r1_STROKE, 0)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_CAPO, r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r83_ssmootha); + r83_strokemiddle = r83_xn$createstroke$7Hrq(); + r83_strokemiddle['start-from'](r1_SB + r1_STROKE / 2, r1_CAP - r83_ssmootha)['set-width'](r1_STROKE / 2, r1_STROKE / 2)['curve-to'](r1_SB + r1_STROKE / 2, (0.5 + r83_slope) * r1_CAP + 2 * r83_slope * r1_CAP / (r83_expand * r1_WIDTH) * (r83_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r83_coexpand * r1_WIDTH, (0.5 + r83_slope) * r1_CAP)['line-to']((1 - r83_coexpand) * r1_WIDTH, (0.5 - r83_slope) * r1_CAP)['curve-to'](r1_RIGHTSB - r1_STROKE / 2, (0.5 - r83_slope) * r1_CAP - 2 * r83_slope * r1_CAP / (r83_expand * r1_WIDTH) * (r83_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r1_RIGHTSB - r1_STROKE / 2, r83_ssmootha); + r83_bowlbottom = r83_xn$createstroke$7Hrq(); + r83_bowlbottom['start-from'](r1_RIGHTSB, r83_ssmootha)['set-width'](0, r1_STROKE)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_O, r1_SB + r1_OXHOOK, r1_HOOK); + r83_xn$putshapes$9Jrj(r83_bowltop['to-outline']()); + r83_xn$putshapes$9Jrj(r83_strokemiddle['to-outline']()); + r83_xn$putshapes$9Jrj(r83_bowlbottom['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('dollar', function _r1_t43() { + var r85_xn$setwidth$9Jrj, r85_xn$assignunicode$7Hrq, r85_xn$startfrom$1aao, r85_xn$lineto$5sIl, r85_xn$curveto$1aao, r85_xn$cubicto$1aao, r85_xn$putshapes$9Jrj, r85_xn$reverselast$3qIs, r85_include, r85_xn$createstroke$7Hrq, r85_xn$setanchor$9Jrj, _r85_t0; + _r85_t0 = this; + r85_xn$setwidth$9Jrj = _r85_t0['set-width']['bind'](_r85_t0); + r85_xn$assignunicode$7Hrq = _r85_t0['assign-unicode']['bind'](_r85_t0); + r85_xn$startfrom$1aao = _r85_t0['start-from']['bind'](_r85_t0); + r85_xn$lineto$5sIl = _r85_t0['line-to']['bind'](_r85_t0); + r85_xn$curveto$1aao = _r85_t0['curve-to']['bind'](_r85_t0); + r85_xn$cubicto$1aao = _r85_t0['cubic-to']['bind'](_r85_t0); + r85_xn$putshapes$9Jrj = _r85_t0['put-shapes']['bind'](_r85_t0); + r85_xn$reverselast$3qIs = _r85_t0['reverse-last']['bind'](_r85_t0); + r85_include = _r85_t0['include']['bind'](_r85_t0); + r85_xn$createstroke$7Hrq = _r85_t0['create-stroke']['bind'](_r85_t0); + r85_xn$setanchor$9Jrj = _r85_t0['set-anchor']['bind'](_r85_t0); + _r85_t0['gizmo'] = r1_globalTransform; + _r85_t0['set-width'](r1_WIDTH); + r85_xn$setwidth$9Jrj(r1_WIDTH); + r85_xn$assignunicode$7Hrq('$'); + r85_xn$putshapes$9Jrj(r1_glyphs['S']['contours']); + r85_xn$putshapes$9Jrj(r85_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_CAP - r1_HALFSTROKE)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP - r1_DESCENDER / 2)['to-outline']()); + r85_xn$putshapes$9Jrj(r85_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_DESCENDER / 2)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_HALFSTROKE)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('fbar', function _r1_t44() { + var r87_xn$setwidth$9Jrj, r87_xn$assignunicode$7Hrq, r87_xn$startfrom$1aao, r87_xn$lineto$5sIl, r87_xn$curveto$1aao, r87_xn$cubicto$1aao, r87_xn$putshapes$9Jrj, r87_xn$reverselast$3qIs, r87_include, r87_xn$createstroke$7Hrq, r87_xn$setanchor$9Jrj, _r87_t0; + _r87_t0 = this; + r87_xn$setwidth$9Jrj = _r87_t0['set-width']['bind'](_r87_t0); + r87_xn$assignunicode$7Hrq = _r87_t0['assign-unicode']['bind'](_r87_t0); + r87_xn$startfrom$1aao = _r87_t0['start-from']['bind'](_r87_t0); + r87_xn$lineto$5sIl = _r87_t0['line-to']['bind'](_r87_t0); + r87_xn$curveto$1aao = _r87_t0['curve-to']['bind'](_r87_t0); + r87_xn$cubicto$1aao = _r87_t0['cubic-to']['bind'](_r87_t0); + r87_xn$putshapes$9Jrj = _r87_t0['put-shapes']['bind'](_r87_t0); + r87_xn$reverselast$3qIs = _r87_t0['reverse-last']['bind'](_r87_t0); + r87_include = _r87_t0['include']['bind'](_r87_t0); + r87_xn$createstroke$7Hrq = _r87_t0['create-stroke']['bind'](_r87_t0); + r87_xn$setanchor$9Jrj = _r87_t0['set-anchor']['bind'](_r87_t0); + _r87_t0['gizmo'] = r1_globalTransform; + _r87_t0['set-width'](r1_WIDTH); + r87_xn$putshapes$9Jrj(r87_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_LONGSERIF, r1_XH)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_MIDDLE + r1_LONGSERIF, r1_XH)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('o', function _r1_t45() { + var r89_xn$setwidth$9Jrj, r89_xn$assignunicode$7Hrq, r89_xn$startfrom$1aao, r89_xn$lineto$5sIl, r89_xn$curveto$1aao, r89_xn$cubicto$1aao, r89_xn$putshapes$9Jrj, r89_xn$reverselast$3qIs, r89_include, r89_xn$createstroke$7Hrq, r89_xn$setanchor$9Jrj, r89_outline, _r89_t0; + _r89_t0 = this; + r89_xn$setwidth$9Jrj = _r89_t0['set-width']['bind'](_r89_t0); + r89_xn$assignunicode$7Hrq = _r89_t0['assign-unicode']['bind'](_r89_t0); + r89_xn$startfrom$1aao = _r89_t0['start-from']['bind'](_r89_t0); + r89_xn$lineto$5sIl = _r89_t0['line-to']['bind'](_r89_t0); + r89_xn$curveto$1aao = _r89_t0['curve-to']['bind'](_r89_t0); + r89_xn$cubicto$1aao = _r89_t0['cubic-to']['bind'](_r89_t0); + r89_xn$putshapes$9Jrj = _r89_t0['put-shapes']['bind'](_r89_t0); + r89_xn$reverselast$3qIs = _r89_t0['reverse-last']['bind'](_r89_t0); + r89_include = _r89_t0['include']['bind'](_r89_t0); + r89_xn$createstroke$7Hrq = _r89_t0['create-stroke']['bind'](_r89_t0); + r89_xn$setanchor$9Jrj = _r89_t0['set-anchor']['bind'](_r89_t0); + _r89_t0['gizmo'] = r1_globalTransform; + _r89_t0['set-width'](r1_WIDTH); + r89_xn$setwidth$9Jrj(r1_WIDTH); + r89_xn$assignunicode$7Hrq('o'); + r89_include(r1_eMarks); + r89_outline = r89_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO)['set-width'](r1_STROKE, 0)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB - r1_O, r1_SMALLSMOOTHA)['line-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD); + r89_xn$putshapes$9Jrj(r89_outline['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('o.left', function _r1_t46() { + var r91_xn$setwidth$9Jrj, r91_xn$assignunicode$7Hrq, r91_xn$startfrom$1aao, r91_xn$lineto$5sIl, r91_xn$curveto$1aao, r91_xn$cubicto$1aao, r91_xn$putshapes$9Jrj, r91_xn$reverselast$3qIs, r91_include, r91_xn$createstroke$7Hrq, r91_xn$setanchor$9Jrj, _r91_t0; + _r91_t0 = this; + r91_xn$setwidth$9Jrj = _r91_t0['set-width']['bind'](_r91_t0); + r91_xn$assignunicode$7Hrq = _r91_t0['assign-unicode']['bind'](_r91_t0); + r91_xn$startfrom$1aao = _r91_t0['start-from']['bind'](_r91_t0); + r91_xn$lineto$5sIl = _r91_t0['line-to']['bind'](_r91_t0); + r91_xn$curveto$1aao = _r91_t0['curve-to']['bind'](_r91_t0); + r91_xn$cubicto$1aao = _r91_t0['cubic-to']['bind'](_r91_t0); + r91_xn$putshapes$9Jrj = _r91_t0['put-shapes']['bind'](_r91_t0); + r91_xn$reverselast$3qIs = _r91_t0['reverse-last']['bind'](_r91_t0); + r91_include = _r91_t0['include']['bind'](_r91_t0); + r91_xn$createstroke$7Hrq = _r91_t0['create-stroke']['bind'](_r91_t0); + r91_xn$setanchor$9Jrj = _r91_t0['set-anchor']['bind'](_r91_t0); + _r91_t0['gizmo'] = r1_globalTransform; + _r91_t0['set-width'](r1_WIDTH); + r91_xn$setwidth$9Jrj(r1_WIDTH); + r91_xn$putshapes$9Jrj(r91_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['arc-hv-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB)['line-to'](r1_RIGHTSB - r1_O, r1_SMALLSMOOTHA)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_LEFTWARD)['to-outline']()); + r91_xn$putshapes$9Jrj(r91_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_O + r1_STROKE)['heads-to'](r1_LEFTWARD)['set-width'](r1_STROKE, 0)['arc-hv-to'](r1_SB + r1_STROKE, r1_SMALLSMOOTHB - r1_STROKE * 0.05)['set-width'](r1_HALFSTROKE, 0)['line-to'](r1_SB + r1_STROKE, r1_XH - r1_SMALLSMOOTHA + r1_STROKE * 0.05)['set-width'](r1_HALFSTROKE, 0)['arc-vh-to'](r1_MIDDLE, r1_XO - r1_STROKE)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('o.right', function _r1_t47() { + var r93_xn$setwidth$9Jrj, r93_xn$assignunicode$7Hrq, r93_xn$startfrom$1aao, r93_xn$lineto$5sIl, r93_xn$curveto$1aao, r93_xn$cubicto$1aao, r93_xn$putshapes$9Jrj, r93_xn$reverselast$3qIs, r93_include, r93_xn$createstroke$7Hrq, r93_xn$setanchor$9Jrj, _r93_t0; + _r93_t0 = this; + r93_xn$setwidth$9Jrj = _r93_t0['set-width']['bind'](_r93_t0); + r93_xn$assignunicode$7Hrq = _r93_t0['assign-unicode']['bind'](_r93_t0); + r93_xn$startfrom$1aao = _r93_t0['start-from']['bind'](_r93_t0); + r93_xn$lineto$5sIl = _r93_t0['line-to']['bind'](_r93_t0); + r93_xn$curveto$1aao = _r93_t0['curve-to']['bind'](_r93_t0); + r93_xn$cubicto$1aao = _r93_t0['cubic-to']['bind'](_r93_t0); + r93_xn$putshapes$9Jrj = _r93_t0['put-shapes']['bind'](_r93_t0); + r93_xn$reverselast$3qIs = _r93_t0['reverse-last']['bind'](_r93_t0); + r93_include = _r93_t0['include']['bind'](_r93_t0); + r93_xn$createstroke$7Hrq = _r93_t0['create-stroke']['bind'](_r93_t0); + r93_xn$setanchor$9Jrj = _r93_t0['set-anchor']['bind'](_r93_t0); + _r93_t0['gizmo'] = r1_globalTransform; + _r93_t0['set-width'](r1_WIDTH); + r93_xn$setwidth$9Jrj(r1_WIDTH); + r93_xn$putshapes$9Jrj(r93_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['set-width'](r1_STROKE, 0)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r93_xn$putshapes$9Jrj(r93_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_O + r1_STROKE)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['arc-hv-to'](r1_RIGHTSB - r1_STROKE, r1_SMALLSMOOTHA - r1_STROKE * 0.05)['set-width'](0, r1_HALFSTROKE)['line-to'](r1_RIGHTSB - r1_STROKE, r1_XH - r1_SMALLSMOOTHB + r1_STROKE * 0.05)['set-width'](0, r1_HALFSTROKE)['arc-vh-to'](r1_MIDDLE, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('p', function _r1_t48() { + var r95_xn$setwidth$9Jrj, r95_xn$assignunicode$7Hrq, r95_xn$startfrom$1aao, r95_xn$lineto$5sIl, r95_xn$curveto$1aao, r95_xn$cubicto$1aao, r95_xn$putshapes$9Jrj, r95_xn$reverselast$3qIs, r95_include, r95_xn$createstroke$7Hrq, r95_xn$setanchor$9Jrj, _r95_t0; + _r95_t0 = this; + r95_xn$setwidth$9Jrj = _r95_t0['set-width']['bind'](_r95_t0); + r95_xn$assignunicode$7Hrq = _r95_t0['assign-unicode']['bind'](_r95_t0); + r95_xn$startfrom$1aao = _r95_t0['start-from']['bind'](_r95_t0); + r95_xn$lineto$5sIl = _r95_t0['line-to']['bind'](_r95_t0); + r95_xn$curveto$1aao = _r95_t0['curve-to']['bind'](_r95_t0); + r95_xn$cubicto$1aao = _r95_t0['cubic-to']['bind'](_r95_t0); + r95_xn$putshapes$9Jrj = _r95_t0['put-shapes']['bind'](_r95_t0); + r95_xn$reverselast$3qIs = _r95_t0['reverse-last']['bind'](_r95_t0); + r95_include = _r95_t0['include']['bind'](_r95_t0); + r95_xn$createstroke$7Hrq = _r95_t0['create-stroke']['bind'](_r95_t0); + r95_xn$setanchor$9Jrj = _r95_t0['set-anchor']['bind'](_r95_t0); + _r95_t0['gizmo'] = r1_globalTransform; + _r95_t0['set-width'](r1_WIDTH); + r95_xn$setwidth$9Jrj(r1_WIDTH); + r95_xn$assignunicode$7Hrq('p'); + r95_include(r1_eMarks); + r95_include(r1_glyphs['o.left']); + r95_xn$putshapes$9Jrj(r95_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r1_DESCENDER)['heads-to'](r1_DOWNWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('b', function _r1_t49() { + var r97_xn$setwidth$9Jrj, r97_xn$assignunicode$7Hrq, r97_xn$startfrom$1aao, r97_xn$lineto$5sIl, r97_xn$curveto$1aao, r97_xn$cubicto$1aao, r97_xn$putshapes$9Jrj, r97_xn$reverselast$3qIs, r97_include, r97_xn$createstroke$7Hrq, r97_xn$setanchor$9Jrj, _r97_t0; + _r97_t0 = this; + r97_xn$setwidth$9Jrj = _r97_t0['set-width']['bind'](_r97_t0); + r97_xn$assignunicode$7Hrq = _r97_t0['assign-unicode']['bind'](_r97_t0); + r97_xn$startfrom$1aao = _r97_t0['start-from']['bind'](_r97_t0); + r97_xn$lineto$5sIl = _r97_t0['line-to']['bind'](_r97_t0); + r97_xn$curveto$1aao = _r97_t0['curve-to']['bind'](_r97_t0); + r97_xn$cubicto$1aao = _r97_t0['cubic-to']['bind'](_r97_t0); + r97_xn$putshapes$9Jrj = _r97_t0['put-shapes']['bind'](_r97_t0); + r97_xn$reverselast$3qIs = _r97_t0['reverse-last']['bind'](_r97_t0); + r97_include = _r97_t0['include']['bind'](_r97_t0); + r97_xn$createstroke$7Hrq = _r97_t0['create-stroke']['bind'](_r97_t0); + r97_xn$setanchor$9Jrj = _r97_t0['set-anchor']['bind'](_r97_t0); + _r97_t0['gizmo'] = r1_globalTransform; + _r97_t0['set-width'](r1_WIDTH); + r97_xn$setwidth$9Jrj(r1_WIDTH); + r97_xn$assignunicode$7Hrq('b'); + r97_include(r1_bMarks); + r97_xn$putshapes$9Jrj(r1_glyphs['o.left']['contours']); + r97_xn$putshapes$9Jrj(r97_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('q', function _r1_t50() { + var r99_xn$setwidth$9Jrj, r99_xn$assignunicode$7Hrq, r99_xn$startfrom$1aao, r99_xn$lineto$5sIl, r99_xn$curveto$1aao, r99_xn$cubicto$1aao, r99_xn$putshapes$9Jrj, r99_xn$reverselast$3qIs, r99_include, r99_xn$createstroke$7Hrq, r99_xn$setanchor$9Jrj, _r99_t0; + _r99_t0 = this; + r99_xn$setwidth$9Jrj = _r99_t0['set-width']['bind'](_r99_t0); + r99_xn$assignunicode$7Hrq = _r99_t0['assign-unicode']['bind'](_r99_t0); + r99_xn$startfrom$1aao = _r99_t0['start-from']['bind'](_r99_t0); + r99_xn$lineto$5sIl = _r99_t0['line-to']['bind'](_r99_t0); + r99_xn$curveto$1aao = _r99_t0['curve-to']['bind'](_r99_t0); + r99_xn$cubicto$1aao = _r99_t0['cubic-to']['bind'](_r99_t0); + r99_xn$putshapes$9Jrj = _r99_t0['put-shapes']['bind'](_r99_t0); + r99_xn$reverselast$3qIs = _r99_t0['reverse-last']['bind'](_r99_t0); + r99_include = _r99_t0['include']['bind'](_r99_t0); + r99_xn$createstroke$7Hrq = _r99_t0['create-stroke']['bind'](_r99_t0); + r99_xn$setanchor$9Jrj = _r99_t0['set-anchor']['bind'](_r99_t0); + _r99_t0['gizmo'] = r1_globalTransform; + _r99_t0['set-width'](r1_WIDTH); + r99_xn$setwidth$9Jrj(r1_WIDTH); + r99_xn$assignunicode$7Hrq('q'); + r99_include(r1_eMarks); + r99_xn$putshapes$9Jrj(r1_glyphs['o.right']['contours']); + r99_xn$putshapes$9Jrj(r99_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_DESCENDER)['heads-to'](r1_DOWNWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('d', function _r1_t51() { + var r101_xn$setwidth$9Jrj, r101_xn$assignunicode$7Hrq, r101_xn$startfrom$1aao, r101_xn$lineto$5sIl, r101_xn$curveto$1aao, r101_xn$cubicto$1aao, r101_xn$putshapes$9Jrj, r101_xn$reverselast$3qIs, r101_include, r101_xn$createstroke$7Hrq, r101_xn$setanchor$9Jrj, _r101_t0; + _r101_t0 = this; + r101_xn$setwidth$9Jrj = _r101_t0['set-width']['bind'](_r101_t0); + r101_xn$assignunicode$7Hrq = _r101_t0['assign-unicode']['bind'](_r101_t0); + r101_xn$startfrom$1aao = _r101_t0['start-from']['bind'](_r101_t0); + r101_xn$lineto$5sIl = _r101_t0['line-to']['bind'](_r101_t0); + r101_xn$curveto$1aao = _r101_t0['curve-to']['bind'](_r101_t0); + r101_xn$cubicto$1aao = _r101_t0['cubic-to']['bind'](_r101_t0); + r101_xn$putshapes$9Jrj = _r101_t0['put-shapes']['bind'](_r101_t0); + r101_xn$reverselast$3qIs = _r101_t0['reverse-last']['bind'](_r101_t0); + r101_include = _r101_t0['include']['bind'](_r101_t0); + r101_xn$createstroke$7Hrq = _r101_t0['create-stroke']['bind'](_r101_t0); + r101_xn$setanchor$9Jrj = _r101_t0['set-anchor']['bind'](_r101_t0); + _r101_t0['gizmo'] = r1_globalTransform; + _r101_t0['set-width'](r1_WIDTH); + r101_xn$setwidth$9Jrj(r1_WIDTH); + r101_xn$assignunicode$7Hrq('d'); + r101_include(r1_bMarks); + r101_xn$putshapes$9Jrj(r1_glyphs['o.right']['contours']); + r101_xn$putshapes$9Jrj(r101_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('g', function _r1_t52() { + var r103_xn$setwidth$9Jrj, r103_xn$assignunicode$7Hrq, r103_xn$startfrom$1aao, r103_xn$lineto$5sIl, r103_xn$curveto$1aao, r103_xn$cubicto$1aao, r103_xn$putshapes$9Jrj, r103_xn$reverselast$3qIs, r103_include, r103_xn$createstroke$7Hrq, r103_xn$setanchor$9Jrj, _r103_t0; + _r103_t0 = this; + r103_xn$setwidth$9Jrj = _r103_t0['set-width']['bind'](_r103_t0); + r103_xn$assignunicode$7Hrq = _r103_t0['assign-unicode']['bind'](_r103_t0); + r103_xn$startfrom$1aao = _r103_t0['start-from']['bind'](_r103_t0); + r103_xn$lineto$5sIl = _r103_t0['line-to']['bind'](_r103_t0); + r103_xn$curveto$1aao = _r103_t0['curve-to']['bind'](_r103_t0); + r103_xn$cubicto$1aao = _r103_t0['cubic-to']['bind'](_r103_t0); + r103_xn$putshapes$9Jrj = _r103_t0['put-shapes']['bind'](_r103_t0); + r103_xn$reverselast$3qIs = _r103_t0['reverse-last']['bind'](_r103_t0); + r103_include = _r103_t0['include']['bind'](_r103_t0); + r103_xn$createstroke$7Hrq = _r103_t0['create-stroke']['bind'](_r103_t0); + r103_xn$setanchor$9Jrj = _r103_t0['set-anchor']['bind'](_r103_t0); + _r103_t0['gizmo'] = r1_globalTransform; + _r103_t0['set-width'](r1_WIDTH); + r103_xn$setwidth$9Jrj(r1_WIDTH); + r103_xn$assignunicode$7Hrq('g'); + r103_include(r1_pMarks); + r103_xn$putshapes$9Jrj([ + r1_Ring(r1_XO, r1_XH * r1_GBARPOS, r1_SB * 1.25, r1_RIGHTSB - 0.25 * r1_SB, r1_SMALLSMOOTH), + r1_Ring(r1_XO - r1_STROKE, r1_XH * r1_GBARPOS + r1_STROKE, r1_SB * 1.25 + r1_STROKE, r1_RIGHTSB - 0.25 * r1_SB - r1_STROKE, r1_SMALLSMOOTH - r1_STROKE) + ]); + r103_xn$reverselast$3qIs(); + r103_xn$putshapes$9Jrj(r103_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XH * r1_GBARPOS)['set-width'](0, r1_STROKE * 0.75)['arc-hv-to'](r1_SB * 1.5 + r1_STROKE, (r1_O - r1_DESCENDER * 0.85 + r1_XH * r1_GBARPOS) * 0.47)['set-width'](0, r1_STROKE)['arc-vh-to'](r1_MIDDLE + r1_DESCENDER * 0.15, r1_O - r1_DESCENDER * 0.85)['line-to'](r1_MIDDLE - r1_DESCENDER * 0.15, r1_O - r1_DESCENDER * 0.85)['arc-hv-to'](r1_RIGHTSB - r1_O * 2, -r1_STROKE * r1_globalTransform['yx'] * 2)['arc-vh-to'](r1_MIDDLE, r1_DESCENDER + r1_O)['arc-hv-to'](r1_SB, r1_DESCENDER * 0.1)['arc-vh-to'](r1_MIDDLE + r1_DESCENDER * 0.15, r1_O - r1_DESCENDER * 0.85)['to-outline']()); + r103_xn$startfrom$1aao(r1_RIGHTSB + 0.5 * r1_SB, r1_XH); + r103_xn$lineto$5sIl(r1_RIGHTSB + 0.5 * r1_SB, r1_XH - r1_STROKE); + r103_xn$lineto$5sIl(r1_MIDDLE, r1_XH - r1_STROKE - r1_O); + r103_xn$lineto$5sIl(r1_MIDDLE, r1_XH); + return void 0; + }); + r1_xn$createglyph$7Hrq('c', function _r1_t53() { + var r105_xn$setwidth$9Jrj, r105_xn$assignunicode$7Hrq, r105_xn$startfrom$1aao, r105_xn$lineto$5sIl, r105_xn$curveto$1aao, r105_xn$cubicto$1aao, r105_xn$putshapes$9Jrj, r105_xn$reverselast$3qIs, r105_include, r105_xn$createstroke$7Hrq, r105_xn$setanchor$9Jrj, r105_outline, _r105_t0; + _r105_t0 = this; + r105_xn$setwidth$9Jrj = _r105_t0['set-width']['bind'](_r105_t0); + r105_xn$assignunicode$7Hrq = _r105_t0['assign-unicode']['bind'](_r105_t0); + r105_xn$startfrom$1aao = _r105_t0['start-from']['bind'](_r105_t0); + r105_xn$lineto$5sIl = _r105_t0['line-to']['bind'](_r105_t0); + r105_xn$curveto$1aao = _r105_t0['curve-to']['bind'](_r105_t0); + r105_xn$cubicto$1aao = _r105_t0['cubic-to']['bind'](_r105_t0); + r105_xn$putshapes$9Jrj = _r105_t0['put-shapes']['bind'](_r105_t0); + r105_xn$reverselast$3qIs = _r105_t0['reverse-last']['bind'](_r105_t0); + r105_include = _r105_t0['include']['bind'](_r105_t0); + r105_xn$createstroke$7Hrq = _r105_t0['create-stroke']['bind'](_r105_t0); + r105_xn$setanchor$9Jrj = _r105_t0['set-anchor']['bind'](_r105_t0); + _r105_t0['gizmo'] = r1_globalTransform; + _r105_t0['set-width'](r1_WIDTH); + r105_xn$setwidth$9Jrj(r1_WIDTH); + r105_xn$assignunicode$7Hrq('c'); + r105_include(r1_eMarks); + r105_outline = r105_xn$createstroke$7Hrq(); + r105_outline['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_XH - r1_HOOK)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_XO, r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx'], r1_HOOK - r1_TAILADJY * r1_globalTransform['yx']); + r105_xn$putshapes$9Jrj(r105_outline['to-outline'](r1_STROKE, 0)); + return void 0; + }); + r1_xn$createglyph$7Hrq('e.upright', function _r1_t54() { + var r107_xn$setwidth$9Jrj, r107_xn$assignunicode$7Hrq, r107_xn$startfrom$1aao, r107_xn$lineto$5sIl, r107_xn$curveto$1aao, r107_xn$cubicto$1aao, r107_xn$putshapes$9Jrj, r107_xn$reverselast$3qIs, r107_include, r107_xn$createstroke$7Hrq, r107_xn$setanchor$9Jrj, r107_barbottom, r107_outline, r107_bar, _r107_t0; + _r107_t0 = this; + r107_xn$setwidth$9Jrj = _r107_t0['set-width']['bind'](_r107_t0); + r107_xn$assignunicode$7Hrq = _r107_t0['assign-unicode']['bind'](_r107_t0); + r107_xn$startfrom$1aao = _r107_t0['start-from']['bind'](_r107_t0); + r107_xn$lineto$5sIl = _r107_t0['line-to']['bind'](_r107_t0); + r107_xn$curveto$1aao = _r107_t0['curve-to']['bind'](_r107_t0); + r107_xn$cubicto$1aao = _r107_t0['cubic-to']['bind'](_r107_t0); + r107_xn$putshapes$9Jrj = _r107_t0['put-shapes']['bind'](_r107_t0); + r107_xn$reverselast$3qIs = _r107_t0['reverse-last']['bind'](_r107_t0); + r107_include = _r107_t0['include']['bind'](_r107_t0); + r107_xn$createstroke$7Hrq = _r107_t0['create-stroke']['bind'](_r107_t0); + r107_xn$setanchor$9Jrj = _r107_t0['set-anchor']['bind'](_r107_t0); + _r107_t0['gizmo'] = r1_globalTransform; + _r107_t0['set-width'](r1_WIDTH); + r107_xn$setwidth$9Jrj(r1_WIDTH); + r107_barbottom = r1_XH * r1_BARPOS; + r107_outline = r107_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_O, r107_barbottom)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx'], r1_HOOK - r1_TAILADJY * r1_globalTransform['yx']); + r107_bar = r107_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_HALFSTROKE, r107_barbottom)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r107_barbottom)['heads-to'](r1_RIGHTWARD); + r107_xn$putshapes$9Jrj(r107_outline['to-outline']()); + r107_xn$putshapes$9Jrj(r107_bar['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('e.italic', function _r1_t55() { + var r109_xn$setwidth$9Jrj, r109_xn$assignunicode$7Hrq, r109_xn$startfrom$1aao, r109_xn$lineto$5sIl, r109_xn$curveto$1aao, r109_xn$cubicto$1aao, r109_xn$putshapes$9Jrj, r109_xn$reverselast$3qIs, r109_include, r109_xn$createstroke$7Hrq, r109_xn$setanchor$9Jrj, r109_barbottom, _r109_t0; + _r109_t0 = this; + r109_xn$setwidth$9Jrj = _r109_t0['set-width']['bind'](_r109_t0); + r109_xn$assignunicode$7Hrq = _r109_t0['assign-unicode']['bind'](_r109_t0); + r109_xn$startfrom$1aao = _r109_t0['start-from']['bind'](_r109_t0); + r109_xn$lineto$5sIl = _r109_t0['line-to']['bind'](_r109_t0); + r109_xn$curveto$1aao = _r109_t0['curve-to']['bind'](_r109_t0); + r109_xn$cubicto$1aao = _r109_t0['cubic-to']['bind'](_r109_t0); + r109_xn$putshapes$9Jrj = _r109_t0['put-shapes']['bind'](_r109_t0); + r109_xn$reverselast$3qIs = _r109_t0['reverse-last']['bind'](_r109_t0); + r109_include = _r109_t0['include']['bind'](_r109_t0); + r109_xn$createstroke$7Hrq = _r109_t0['create-stroke']['bind'](_r109_t0); + r109_xn$setanchor$9Jrj = _r109_t0['set-anchor']['bind'](_r109_t0); + _r109_t0['gizmo'] = r1_globalTransform; + _r109_t0['set-width'](r1_WIDTH); + r109_xn$setwidth$9Jrj(r1_WIDTH); + r109_barbottom = r1_XH * (r1_BARPOS - 0.04); + r109_xn$putshapes$9Jrj(r109_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_O + r1_STROKE, r109_barbottom)['set-width'](r1_STROKE, 0)['arc-hv-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB * 0.95)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx'], r1_HOOK - r1_TAILADJY * r1_globalTransform['yx'])['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('e', function _r1_t56() { + var r111_xn$setwidth$9Jrj, r111_xn$assignunicode$7Hrq, r111_xn$startfrom$1aao, r111_xn$lineto$5sIl, r111_xn$curveto$1aao, r111_xn$cubicto$1aao, r111_xn$putshapes$9Jrj, r111_xn$reverselast$3qIs, r111_include, r111_xn$createstroke$7Hrq, r111_xn$setanchor$9Jrj, _r111_t0; + _r111_t0 = this; + r111_xn$setwidth$9Jrj = _r111_t0['set-width']['bind'](_r111_t0); + r111_xn$assignunicode$7Hrq = _r111_t0['assign-unicode']['bind'](_r111_t0); + r111_xn$startfrom$1aao = _r111_t0['start-from']['bind'](_r111_t0); + r111_xn$lineto$5sIl = _r111_t0['line-to']['bind'](_r111_t0); + r111_xn$curveto$1aao = _r111_t0['curve-to']['bind'](_r111_t0); + r111_xn$cubicto$1aao = _r111_t0['cubic-to']['bind'](_r111_t0); + r111_xn$putshapes$9Jrj = _r111_t0['put-shapes']['bind'](_r111_t0); + r111_xn$reverselast$3qIs = _r111_t0['reverse-last']['bind'](_r111_t0); + r111_include = _r111_t0['include']['bind'](_r111_t0); + r111_xn$createstroke$7Hrq = _r111_t0['create-stroke']['bind'](_r111_t0); + r111_xn$setanchor$9Jrj = _r111_t0['set-anchor']['bind'](_r111_t0); + _r111_t0['gizmo'] = r1_globalTransform; + _r111_t0['set-width'](r1_WIDTH); + r111_xn$setwidth$9Jrj(r1_WIDTH); + r111_xn$assignunicode$7Hrq('e'); + r111_include(r1_eMarks); + if (r1_para['italicangle'] > 0) { + r111_include(r1_glyphs['e.italic']); + } else { + r111_include(r1_glyphs['e.upright']); + } + return void 0; + }); + r1_xn$createglyph$7Hrq('t', function _r1_t57() { + var r113_xn$setwidth$9Jrj, r113_xn$assignunicode$7Hrq, r113_xn$startfrom$1aao, r113_xn$lineto$5sIl, r113_xn$curveto$1aao, r113_xn$cubicto$1aao, r113_xn$putshapes$9Jrj, r113_xn$reverselast$3qIs, r113_include, r113_xn$createstroke$7Hrq, r113_xn$setanchor$9Jrj, r113_center, r113_hookx, r113_turn, _r113_t0; + _r113_t0 = this; + r113_xn$setwidth$9Jrj = _r113_t0['set-width']['bind'](_r113_t0); + r113_xn$assignunicode$7Hrq = _r113_t0['assign-unicode']['bind'](_r113_t0); + r113_xn$startfrom$1aao = _r113_t0['start-from']['bind'](_r113_t0); + r113_xn$lineto$5sIl = _r113_t0['line-to']['bind'](_r113_t0); + r113_xn$curveto$1aao = _r113_t0['curve-to']['bind'](_r113_t0); + r113_xn$cubicto$1aao = _r113_t0['cubic-to']['bind'](_r113_t0); + r113_xn$putshapes$9Jrj = _r113_t0['put-shapes']['bind'](_r113_t0); + r113_xn$reverselast$3qIs = _r113_t0['reverse-last']['bind'](_r113_t0); + r113_include = _r113_t0['include']['bind'](_r113_t0); + r113_xn$createstroke$7Hrq = _r113_t0['create-stroke']['bind'](_r113_t0); + r113_xn$setanchor$9Jrj = _r113_t0['set-anchor']['bind'](_r113_t0); + _r113_t0['gizmo'] = r1_globalTransform; + _r113_t0['set-width'](r1_WIDTH); + r113_xn$setwidth$9Jrj(r1_WIDTH); + r113_xn$assignunicode$7Hrq('t'); + r113_include(r1_bMarks); + r113_center = r1_MIDDLE - r1_TBALANCE - r1_HALFSTROKE; + r113_hookx = r113_center + (r1_WIDTH - r1_SB * 2) * 0.82 - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx']; + r113_turn = r113_center + (r113_hookx - r113_center) * (0.5 + r1_globalTransform['yx'] * 0.5); + r113_xn$putshapes$9Jrj(r113_xn$createstroke$7Hrq()['start-from'](r113_center, r1_CAP)['set-width'](r1_STROKE, 0)['heads-to'](r1_DOWNWARD)['line-to'](r113_center, r1_SMOOTHB)['arc-vh-to'](r113_turn, r1_O)['curve-to'](r113_turn + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx'] + 0.1) * (r113_hookx - r113_turn), r1_O, r113_hookx, r1_HOOK - r1_TAILADJY * r1_globalTransform['yx'])['to-outline']()); + r113_xn$putshapes$9Jrj(r113_xn$createstroke$7Hrq()['start-from'](r113_center + r1_HALFSTROKE - r1_LONGSERIF + r1_TBALANCE2, r1_XH)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r113_center + r1_HALFSTROKE + r1_LONGSERIF + r1_TBALANCE2, r1_XH)['heads-to'](r1_RIGHTWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('a.upright', function _r1_t58() { + var r115_xn$setwidth$9Jrj, r115_xn$assignunicode$7Hrq, r115_xn$startfrom$1aao, r115_xn$lineto$5sIl, r115_xn$curveto$1aao, r115_xn$cubicto$1aao, r115_xn$putshapes$9Jrj, r115_xn$reverselast$3qIs, r115_include, r115_xn$createstroke$7Hrq, r115_xn$setanchor$9Jrj, r115_bartop, _r115_t0; + _r115_t0 = this; + r115_xn$setwidth$9Jrj = _r115_t0['set-width']['bind'](_r115_t0); + r115_xn$assignunicode$7Hrq = _r115_t0['assign-unicode']['bind'](_r115_t0); + r115_xn$startfrom$1aao = _r115_t0['start-from']['bind'](_r115_t0); + r115_xn$lineto$5sIl = _r115_t0['line-to']['bind'](_r115_t0); + r115_xn$curveto$1aao = _r115_t0['curve-to']['bind'](_r115_t0); + r115_xn$cubicto$1aao = _r115_t0['cubic-to']['bind'](_r115_t0); + r115_xn$putshapes$9Jrj = _r115_t0['put-shapes']['bind'](_r115_t0); + r115_xn$reverselast$3qIs = _r115_t0['reverse-last']['bind'](_r115_t0); + r115_include = _r115_t0['include']['bind'](_r115_t0); + r115_xn$createstroke$7Hrq = _r115_t0['create-stroke']['bind'](_r115_t0); + r115_xn$setanchor$9Jrj = _r115_t0['set-anchor']['bind'](_r115_t0); + _r115_t0['gizmo'] = r1_globalTransform; + _r115_t0['set-width'](r1_WIDTH); + r115_xn$setwidth$9Jrj(r1_WIDTH); + r115_bartop = r1_XH * r1_BARPOS + r1_STROKE; + r115_xn$putshapes$9Jrj(r115_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH - r1_SMOOTHA)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - r1_KAPPA_AHOOK * (r1_MIDDLE - r1_SB), r1_XO, r1_SB + r1_OXHOOK, r1_XH - r1_AHOOK)['to-outline']()); + r115_xn$putshapes$9Jrj(r115_xn$createstroke$7Hrq()['start-from'](r1_WIDTH * 0.47, r1_O)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r115_bartop * 0.45)['arc-vh-to'](r1_WIDTH * 0.6, r115_bartop)['line-to'](r1_RIGHTSB, r115_bartop)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r115_xn$putshapes$9Jrj(r115_xn$createstroke$7Hrq()['start-from'](r1_WIDTH * 0.47, r1_O + r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB - r1_STROKE, r1_SMALLSMOOTHA * 0.65)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('a.italic', function _r1_t59() { + var r117_xn$setwidth$9Jrj, r117_xn$assignunicode$7Hrq, r117_xn$startfrom$1aao, r117_xn$lineto$5sIl, r117_xn$curveto$1aao, r117_xn$cubicto$1aao, r117_xn$putshapes$9Jrj, r117_xn$reverselast$3qIs, r117_include, r117_xn$createstroke$7Hrq, r117_xn$setanchor$9Jrj, _r117_t0; + _r117_t0 = this; + r117_xn$setwidth$9Jrj = _r117_t0['set-width']['bind'](_r117_t0); + r117_xn$assignunicode$7Hrq = _r117_t0['assign-unicode']['bind'](_r117_t0); + r117_xn$startfrom$1aao = _r117_t0['start-from']['bind'](_r117_t0); + r117_xn$lineto$5sIl = _r117_t0['line-to']['bind'](_r117_t0); + r117_xn$curveto$1aao = _r117_t0['curve-to']['bind'](_r117_t0); + r117_xn$cubicto$1aao = _r117_t0['cubic-to']['bind'](_r117_t0); + r117_xn$putshapes$9Jrj = _r117_t0['put-shapes']['bind'](_r117_t0); + r117_xn$reverselast$3qIs = _r117_t0['reverse-last']['bind'](_r117_t0); + r117_include = _r117_t0['include']['bind'](_r117_t0); + r117_xn$createstroke$7Hrq = _r117_t0['create-stroke']['bind'](_r117_t0); + r117_xn$setanchor$9Jrj = _r117_t0['set-anchor']['bind'](_r117_t0); + _r117_t0['gizmo'] = r1_globalTransform; + _r117_t0['set-width'](r1_WIDTH); + r117_xn$setwidth$9Jrj(r1_WIDTH); + r117_include(r1_glyphs['o.right']); + r117_xn$putshapes$9Jrj(r117_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('a', function _r1_t60() { + var r119_xn$setwidth$9Jrj, r119_xn$assignunicode$7Hrq, r119_xn$startfrom$1aao, r119_xn$lineto$5sIl, r119_xn$curveto$1aao, r119_xn$cubicto$1aao, r119_xn$putshapes$9Jrj, r119_xn$reverselast$3qIs, r119_include, r119_xn$createstroke$7Hrq, r119_xn$setanchor$9Jrj, _r119_t0; + _r119_t0 = this; + r119_xn$setwidth$9Jrj = _r119_t0['set-width']['bind'](_r119_t0); + r119_xn$assignunicode$7Hrq = _r119_t0['assign-unicode']['bind'](_r119_t0); + r119_xn$startfrom$1aao = _r119_t0['start-from']['bind'](_r119_t0); + r119_xn$lineto$5sIl = _r119_t0['line-to']['bind'](_r119_t0); + r119_xn$curveto$1aao = _r119_t0['curve-to']['bind'](_r119_t0); + r119_xn$cubicto$1aao = _r119_t0['cubic-to']['bind'](_r119_t0); + r119_xn$putshapes$9Jrj = _r119_t0['put-shapes']['bind'](_r119_t0); + r119_xn$reverselast$3qIs = _r119_t0['reverse-last']['bind'](_r119_t0); + r119_include = _r119_t0['include']['bind'](_r119_t0); + r119_xn$createstroke$7Hrq = _r119_t0['create-stroke']['bind'](_r119_t0); + r119_xn$setanchor$9Jrj = _r119_t0['set-anchor']['bind'](_r119_t0); + _r119_t0['gizmo'] = r1_globalTransform; + _r119_t0['set-width'](r1_WIDTH); + r119_xn$setwidth$9Jrj(r1_WIDTH); + r119_xn$assignunicode$7Hrq('a'); + r119_include(r1_eMarks); + if (r1_para['italicangle'] > 0) { + r119_include(r1_glyphs['a.italic']); + } else { + r119_include(r1_glyphs['a.upright']); + } + return void 0; + }); + r1_xn$createglyph$7Hrq('u', function _r1_t61() { + var r121_xn$setwidth$9Jrj, r121_xn$assignunicode$7Hrq, r121_xn$startfrom$1aao, r121_xn$lineto$5sIl, r121_xn$curveto$1aao, r121_xn$cubicto$1aao, r121_xn$putshapes$9Jrj, r121_xn$reverselast$3qIs, r121_include, r121_xn$createstroke$7Hrq, r121_xn$setanchor$9Jrj, _r121_t0; + _r121_t0 = this; + r121_xn$setwidth$9Jrj = _r121_t0['set-width']['bind'](_r121_t0); + r121_xn$assignunicode$7Hrq = _r121_t0['assign-unicode']['bind'](_r121_t0); + r121_xn$startfrom$1aao = _r121_t0['start-from']['bind'](_r121_t0); + r121_xn$lineto$5sIl = _r121_t0['line-to']['bind'](_r121_t0); + r121_xn$curveto$1aao = _r121_t0['curve-to']['bind'](_r121_t0); + r121_xn$cubicto$1aao = _r121_t0['cubic-to']['bind'](_r121_t0); + r121_xn$putshapes$9Jrj = _r121_t0['put-shapes']['bind'](_r121_t0); + r121_xn$reverselast$3qIs = _r121_t0['reverse-last']['bind'](_r121_t0); + r121_include = _r121_t0['include']['bind'](_r121_t0); + r121_xn$createstroke$7Hrq = _r121_t0['create-stroke']['bind'](_r121_t0); + r121_xn$setanchor$9Jrj = _r121_t0['set-anchor']['bind'](_r121_t0); + _r121_t0['gizmo'] = r1_globalTransform; + _r121_t0['set-width'](r1_WIDTH); + r121_xn$setwidth$9Jrj(r1_WIDTH); + r121_xn$assignunicode$7Hrq('u'); + r121_include(r1_eMarks); + r121_xn$putshapes$9Jrj(r121_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r1_SMALLSMOOTHA)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r121_xn$putshapes$9Jrj(r121_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_O + r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB - r1_STROKE * r1_ITALICCOR, r1_SMALLSMOOTHA)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']()); + r121_xn$putshapes$9Jrj(r121_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('nbowl', function _r1_t62() { + var r123_xn$setwidth$9Jrj, r123_xn$assignunicode$7Hrq, r123_xn$startfrom$1aao, r123_xn$lineto$5sIl, r123_xn$curveto$1aao, r123_xn$cubicto$1aao, r123_xn$putshapes$9Jrj, r123_xn$reverselast$3qIs, r123_include, r123_xn$createstroke$7Hrq, r123_xn$setanchor$9Jrj, _r123_t0; + _r123_t0 = this; + r123_xn$setwidth$9Jrj = _r123_t0['set-width']['bind'](_r123_t0); + r123_xn$assignunicode$7Hrq = _r123_t0['assign-unicode']['bind'](_r123_t0); + r123_xn$startfrom$1aao = _r123_t0['start-from']['bind'](_r123_t0); + r123_xn$lineto$5sIl = _r123_t0['line-to']['bind'](_r123_t0); + r123_xn$curveto$1aao = _r123_t0['curve-to']['bind'](_r123_t0); + r123_xn$cubicto$1aao = _r123_t0['cubic-to']['bind'](_r123_t0); + r123_xn$putshapes$9Jrj = _r123_t0['put-shapes']['bind'](_r123_t0); + r123_xn$reverselast$3qIs = _r123_t0['reverse-last']['bind'](_r123_t0); + r123_include = _r123_t0['include']['bind'](_r123_t0); + r123_xn$createstroke$7Hrq = _r123_t0['create-stroke']['bind'](_r123_t0); + r123_xn$setanchor$9Jrj = _r123_t0['set-anchor']['bind'](_r123_t0); + _r123_t0['gizmo'] = r1_globalTransform; + _r123_t0['set-width'](r1_WIDTH); + r123_xn$putshapes$9Jrj(r123_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH - r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['to-outline']()); + r123_xn$putshapes$9Jrj(r123_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_STROKE * r1_ITALICCOR, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('n', function _r1_t63() { + var r125_xn$setwidth$9Jrj, r125_xn$assignunicode$7Hrq, r125_xn$startfrom$1aao, r125_xn$lineto$5sIl, r125_xn$curveto$1aao, r125_xn$cubicto$1aao, r125_xn$putshapes$9Jrj, r125_xn$reverselast$3qIs, r125_include, r125_xn$createstroke$7Hrq, r125_xn$setanchor$9Jrj, _r125_t0; + _r125_t0 = this; + r125_xn$setwidth$9Jrj = _r125_t0['set-width']['bind'](_r125_t0); + r125_xn$assignunicode$7Hrq = _r125_t0['assign-unicode']['bind'](_r125_t0); + r125_xn$startfrom$1aao = _r125_t0['start-from']['bind'](_r125_t0); + r125_xn$lineto$5sIl = _r125_t0['line-to']['bind'](_r125_t0); + r125_xn$curveto$1aao = _r125_t0['curve-to']['bind'](_r125_t0); + r125_xn$cubicto$1aao = _r125_t0['cubic-to']['bind'](_r125_t0); + r125_xn$putshapes$9Jrj = _r125_t0['put-shapes']['bind'](_r125_t0); + r125_xn$reverselast$3qIs = _r125_t0['reverse-last']['bind'](_r125_t0); + r125_include = _r125_t0['include']['bind'](_r125_t0); + r125_xn$createstroke$7Hrq = _r125_t0['create-stroke']['bind'](_r125_t0); + r125_xn$setanchor$9Jrj = _r125_t0['set-anchor']['bind'](_r125_t0); + _r125_t0['gizmo'] = r1_globalTransform; + _r125_t0['set-width'](r1_WIDTH); + r125_xn$setwidth$9Jrj(r1_WIDTH); + r125_xn$assignunicode$7Hrq('n'); + r125_include(r1_eMarks); + r125_include(r1_glyphs['nbowl']); + r125_xn$putshapes$9Jrj(r125_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_XH)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('h', function _r1_t64() { + var r127_xn$setwidth$9Jrj, r127_xn$assignunicode$7Hrq, r127_xn$startfrom$1aao, r127_xn$lineto$5sIl, r127_xn$curveto$1aao, r127_xn$cubicto$1aao, r127_xn$putshapes$9Jrj, r127_xn$reverselast$3qIs, r127_include, r127_xn$createstroke$7Hrq, r127_xn$setanchor$9Jrj, _r127_t0; + _r127_t0 = this; + r127_xn$setwidth$9Jrj = _r127_t0['set-width']['bind'](_r127_t0); + r127_xn$assignunicode$7Hrq = _r127_t0['assign-unicode']['bind'](_r127_t0); + r127_xn$startfrom$1aao = _r127_t0['start-from']['bind'](_r127_t0); + r127_xn$lineto$5sIl = _r127_t0['line-to']['bind'](_r127_t0); + r127_xn$curveto$1aao = _r127_t0['curve-to']['bind'](_r127_t0); + r127_xn$cubicto$1aao = _r127_t0['cubic-to']['bind'](_r127_t0); + r127_xn$putshapes$9Jrj = _r127_t0['put-shapes']['bind'](_r127_t0); + r127_xn$reverselast$3qIs = _r127_t0['reverse-last']['bind'](_r127_t0); + r127_include = _r127_t0['include']['bind'](_r127_t0); + r127_xn$createstroke$7Hrq = _r127_t0['create-stroke']['bind'](_r127_t0); + r127_xn$setanchor$9Jrj = _r127_t0['set-anchor']['bind'](_r127_t0); + _r127_t0['gizmo'] = r1_globalTransform; + _r127_t0['set-width'](r1_WIDTH); + r127_xn$setwidth$9Jrj(r1_WIDTH); + r127_xn$assignunicode$7Hrq('h'); + r127_include(r1_bMarks); + r127_include(r1_glyphs['nbowl']); + r127_xn$putshapes$9Jrj(r127_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('m', function _r1_t65() { + var r129_xn$setwidth$9Jrj, r129_xn$assignunicode$7Hrq, r129_xn$startfrom$1aao, r129_xn$lineto$5sIl, r129_xn$curveto$1aao, r129_xn$cubicto$1aao, r129_xn$putshapes$9Jrj, r129_xn$reverselast$3qIs, r129_include, r129_xn$createstroke$7Hrq, r129_xn$setanchor$9Jrj, r129_sw, r129_m1, r129_m2, _r129_t0; + _r129_t0 = this; + r129_xn$setwidth$9Jrj = _r129_t0['set-width']['bind'](_r129_t0); + r129_xn$assignunicode$7Hrq = _r129_t0['assign-unicode']['bind'](_r129_t0); + r129_xn$startfrom$1aao = _r129_t0['start-from']['bind'](_r129_t0); + r129_xn$lineto$5sIl = _r129_t0['line-to']['bind'](_r129_t0); + r129_xn$curveto$1aao = _r129_t0['curve-to']['bind'](_r129_t0); + r129_xn$cubicto$1aao = _r129_t0['cubic-to']['bind'](_r129_t0); + r129_xn$putshapes$9Jrj = _r129_t0['put-shapes']['bind'](_r129_t0); + r129_xn$reverselast$3qIs = _r129_t0['reverse-last']['bind'](_r129_t0); + r129_include = _r129_t0['include']['bind'](_r129_t0); + r129_xn$createstroke$7Hrq = _r129_t0['create-stroke']['bind'](_r129_t0); + r129_xn$setanchor$9Jrj = _r129_t0['set-anchor']['bind'](_r129_t0); + _r129_t0['gizmo'] = r1_globalTransform; + _r129_t0['set-width'](r1_WIDTH); + r129_xn$setwidth$9Jrj(r1_WIDTH); + r129_xn$assignunicode$7Hrq('m'); + r129_include(r1_eMarks); + r129_sw = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.26); + r129_m1 = (r1_MIDDLE + r1_SB + r129_sw * 0.25) / 2; + r129_m2 = r129_m1 + (r1_MIDDLE - r129_sw / 2 - r1_SB); + r129_xn$putshapes$9Jrj(r129_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r129_sw / 2, 0)['set-width'](0, r129_sw)['heads-to'](r1_UPWARD)['line-to'](r1_MIDDLE - r129_sw / 2, r1_XH - r1_SMALLSMOOTHA)['arc-vh-to'](r129_m1, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r129_sw * 0.75, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r129_sw * 0.4)['to-outline']()); + r129_xn$putshapes$9Jrj(r129_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r129_sw - r1_O, 0)['set-width'](0, r129_sw)['heads-to'](r1_UPWARD)['line-to'](r1_RIGHTSB - r129_sw - r1_O, r1_XH - r1_SMALLSMOOTHA)['arc-vh-to'](r129_m2, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_MIDDLE + r129_sw * 0.25, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r129_sw * 0.4)['to-outline']()); + r129_xn$putshapes$9Jrj(r129_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_O, 0)['heads-to'](r1_UPWARD)['set-width'](0, r129_sw)['line-to'](r1_SB + r1_O, r1_XH)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessi.straight', function _r1_t66() { + var r131_xn$setwidth$9Jrj, r131_xn$assignunicode$7Hrq, r131_xn$startfrom$1aao, r131_xn$lineto$5sIl, r131_xn$curveto$1aao, r131_xn$cubicto$1aao, r131_xn$putshapes$9Jrj, r131_xn$reverselast$3qIs, r131_include, r131_xn$createstroke$7Hrq, r131_xn$setanchor$9Jrj, _r131_t0; + _r131_t0 = this; + r131_xn$setwidth$9Jrj = _r131_t0['set-width']['bind'](_r131_t0); + r131_xn$assignunicode$7Hrq = _r131_t0['assign-unicode']['bind'](_r131_t0); + r131_xn$startfrom$1aao = _r131_t0['start-from']['bind'](_r131_t0); + r131_xn$lineto$5sIl = _r131_t0['line-to']['bind'](_r131_t0); + r131_xn$curveto$1aao = _r131_t0['curve-to']['bind'](_r131_t0); + r131_xn$cubicto$1aao = _r131_t0['cubic-to']['bind'](_r131_t0); + r131_xn$putshapes$9Jrj = _r131_t0['put-shapes']['bind'](_r131_t0); + r131_xn$reverselast$3qIs = _r131_t0['reverse-last']['bind'](_r131_t0); + r131_include = _r131_t0['include']['bind'](_r131_t0); + r131_xn$createstroke$7Hrq = _r131_t0['create-stroke']['bind'](_r131_t0); + r131_xn$setanchor$9Jrj = _r131_t0['set-anchor']['bind'](_r131_t0); + _r131_t0['gizmo'] = r1_globalTransform; + _r131_t0['set-width'](r1_WIDTH); + r131_include(r1_eMarks); + r131_xn$putshapes$9Jrj(r131_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_XH)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessi.hooky', function _r1_t67() { + var r133_xn$setwidth$9Jrj, r133_xn$assignunicode$7Hrq, r133_xn$startfrom$1aao, r133_xn$lineto$5sIl, r133_xn$curveto$1aao, r133_xn$cubicto$1aao, r133_xn$putshapes$9Jrj, r133_xn$reverselast$3qIs, r133_include, r133_xn$createstroke$7Hrq, r133_xn$setanchor$9Jrj, _r133_t0; + _r133_t0 = this; + r133_xn$setwidth$9Jrj = _r133_t0['set-width']['bind'](_r133_t0); + r133_xn$assignunicode$7Hrq = _r133_t0['assign-unicode']['bind'](_r133_t0); + r133_xn$startfrom$1aao = _r133_t0['start-from']['bind'](_r133_t0); + r133_xn$lineto$5sIl = _r133_t0['line-to']['bind'](_r133_t0); + r133_xn$curveto$1aao = _r133_t0['curve-to']['bind'](_r133_t0); + r133_xn$cubicto$1aao = _r133_t0['cubic-to']['bind'](_r133_t0); + r133_xn$putshapes$9Jrj = _r133_t0['put-shapes']['bind'](_r133_t0); + r133_xn$reverselast$3qIs = _r133_t0['reverse-last']['bind'](_r133_t0); + r133_include = _r133_t0['include']['bind'](_r133_t0); + r133_xn$createstroke$7Hrq = _r133_t0['create-stroke']['bind'](_r133_t0); + r133_xn$setanchor$9Jrj = _r133_t0['set-anchor']['bind'](_r133_t0); + _r133_t0['gizmo'] = r1_globalTransform; + _r133_t0['set-width'](r1_WIDTH); + r133_include(r1_glyphs['dotlessi.straight'], true); + r133_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE, r1_XH, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessi.zshaped', function _r1_t68() { + var r135_xn$setwidth$9Jrj, r135_xn$assignunicode$7Hrq, r135_xn$startfrom$1aao, r135_xn$lineto$5sIl, r135_xn$curveto$1aao, r135_xn$cubicto$1aao, r135_xn$putshapes$9Jrj, r135_xn$reverselast$3qIs, r135_include, r135_xn$createstroke$7Hrq, r135_xn$setanchor$9Jrj, _r135_t0; + _r135_t0 = this; + r135_xn$setwidth$9Jrj = _r135_t0['set-width']['bind'](_r135_t0); + r135_xn$assignunicode$7Hrq = _r135_t0['assign-unicode']['bind'](_r135_t0); + r135_xn$startfrom$1aao = _r135_t0['start-from']['bind'](_r135_t0); + r135_xn$lineto$5sIl = _r135_t0['line-to']['bind'](_r135_t0); + r135_xn$curveto$1aao = _r135_t0['curve-to']['bind'](_r135_t0); + r135_xn$cubicto$1aao = _r135_t0['cubic-to']['bind'](_r135_t0); + r135_xn$putshapes$9Jrj = _r135_t0['put-shapes']['bind'](_r135_t0); + r135_xn$reverselast$3qIs = _r135_t0['reverse-last']['bind'](_r135_t0); + r135_include = _r135_t0['include']['bind'](_r135_t0); + r135_xn$createstroke$7Hrq = _r135_t0['create-stroke']['bind'](_r135_t0); + r135_xn$setanchor$9Jrj = _r135_t0['set-anchor']['bind'](_r135_t0); + _r135_t0['gizmo'] = r1_globalTransform; + _r135_t0['set-width'](r1_WIDTH); + r135_include(r1_glyphs['dotlessi.hooky'], true); + r135_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessi.serifed', function _r1_t69() { + var r137_xn$setwidth$9Jrj, r137_xn$assignunicode$7Hrq, r137_xn$startfrom$1aao, r137_xn$lineto$5sIl, r137_xn$curveto$1aao, r137_xn$cubicto$1aao, r137_xn$putshapes$9Jrj, r137_xn$reverselast$3qIs, r137_include, r137_xn$createstroke$7Hrq, r137_xn$setanchor$9Jrj, r137_balance, _r137_t0; + _r137_t0 = this; + r137_xn$setwidth$9Jrj = _r137_t0['set-width']['bind'](_r137_t0); + r137_xn$assignunicode$7Hrq = _r137_t0['assign-unicode']['bind'](_r137_t0); + r137_xn$startfrom$1aao = _r137_t0['start-from']['bind'](_r137_t0); + r137_xn$lineto$5sIl = _r137_t0['line-to']['bind'](_r137_t0); + r137_xn$curveto$1aao = _r137_t0['curve-to']['bind'](_r137_t0); + r137_xn$cubicto$1aao = _r137_t0['cubic-to']['bind'](_r137_t0); + r137_xn$putshapes$9Jrj = _r137_t0['put-shapes']['bind'](_r137_t0); + r137_xn$reverselast$3qIs = _r137_t0['reverse-last']['bind'](_r137_t0); + r137_include = _r137_t0['include']['bind'](_r137_t0); + r137_xn$createstroke$7Hrq = _r137_t0['create-stroke']['bind'](_r137_t0); + r137_xn$setanchor$9Jrj = _r137_t0['set-anchor']['bind'](_r137_t0); + _r137_t0['gizmo'] = r1_globalTransform; + _r137_t0['set-width'](r1_WIDTH); + r137_include(r1_eMarks); + r137_balance = r1_ILBALANCE; + r137_xn$putshapes$9Jrj(r137_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r137_balance, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r137_balance, r1_XH)['heads-to'](r1_UPWARD)['to-outline']()); + r137_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE + r137_balance, r1_XH, r1_LONGSERIF - r137_balance)); + r137_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF)); + r137_xn$putshapes$9Jrj(r1_leftwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessi', function _r1_t70() { + var r139_xn$setwidth$9Jrj, r139_xn$assignunicode$7Hrq, r139_xn$startfrom$1aao, r139_xn$lineto$5sIl, r139_xn$curveto$1aao, r139_xn$cubicto$1aao, r139_xn$putshapes$9Jrj, r139_xn$reverselast$3qIs, r139_include, r139_xn$createstroke$7Hrq, r139_xn$setanchor$9Jrj, r139_otherwise, _r139_t0, _r139_t1, _r139_t2, _r139_t3, _r139_t4, _r139_t5, _r139_t6, _r139_t7, _r139_t8, _r139_t9; + _r139_t1 = this; + r139_xn$setwidth$9Jrj = _r139_t1['set-width']['bind'](_r139_t1); + r139_xn$assignunicode$7Hrq = _r139_t1['assign-unicode']['bind'](_r139_t1); + r139_xn$startfrom$1aao = _r139_t1['start-from']['bind'](_r139_t1); + r139_xn$lineto$5sIl = _r139_t1['line-to']['bind'](_r139_t1); + r139_xn$curveto$1aao = _r139_t1['curve-to']['bind'](_r139_t1); + r139_xn$cubicto$1aao = _r139_t1['cubic-to']['bind'](_r139_t1); + r139_xn$putshapes$9Jrj = _r139_t1['put-shapes']['bind'](_r139_t1); + r139_xn$reverselast$3qIs = _r139_t1['reverse-last']['bind'](_r139_t1); + r139_include = _r139_t1['include']['bind'](_r139_t1); + r139_xn$createstroke$7Hrq = _r139_t1['create-stroke']['bind'](_r139_t1); + r139_xn$setanchor$9Jrj = _r139_t1['set-anchor']['bind'](_r139_t1); + _r139_t1['gizmo'] = r1_globalTransform; + _r139_t1['set-width'](r1_WIDTH); + r139_xn$setwidth$9Jrj(r1_WIDTH); + r139_xn$assignunicode$7Hrq(305); + _r139_t2 = r139_include; + _r139_t3 = r1_glyphs; + _r139_t0 = r1_variantSelector['zero']; + if ('straight' === _r139_t0) { + _r139_t4 = 'dotlessi.straight'; + } else { + if ('hooky' === _r139_t0) { + _r139_t5 = 'dotlessi.hooky'; + } else { + if ('zshaped' === _r139_t0) { + _r139_t6 = 'dotlessi.zshaped'; + } else { + if ('serifed' === _r139_t0) { + _r139_t7 = 'dotlessi.serifed'; + } else { + r139_otherwise = _r139_t0; + _r139_t7 = 'dotlessi.serifed'; + } + _r139_t6 = _r139_t7; + } + _r139_t5 = _r139_t6; + } + _r139_t4 = _r139_t5; + } + _r139_t8 = _r139_t3[_r139_t4]; + _r139_t9 = true; + _r139_t2(_r139_t8, _r139_t9); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotaccent', function _r1_t71() { + var r141_xn$setwidth$9Jrj, r141_xn$assignunicode$7Hrq, r141_xn$startfrom$1aao, r141_xn$lineto$5sIl, r141_xn$curveto$1aao, r141_xn$cubicto$1aao, r141_xn$putshapes$9Jrj, r141_xn$reverselast$3qIs, r141_include, r141_xn$createstroke$7Hrq, r141_xn$setanchor$9Jrj, _r141_t0; + _r141_t0 = this; + r141_xn$setwidth$9Jrj = _r141_t0['set-width']['bind'](_r141_t0); + r141_xn$assignunicode$7Hrq = _r141_t0['assign-unicode']['bind'](_r141_t0); + r141_xn$startfrom$1aao = _r141_t0['start-from']['bind'](_r141_t0); + r141_xn$lineto$5sIl = _r141_t0['line-to']['bind'](_r141_t0); + r141_xn$curveto$1aao = _r141_t0['curve-to']['bind'](_r141_t0); + r141_xn$cubicto$1aao = _r141_t0['cubic-to']['bind'](_r141_t0); + r141_xn$putshapes$9Jrj = _r141_t0['put-shapes']['bind'](_r141_t0); + r141_xn$reverselast$3qIs = _r141_t0['reverse-last']['bind'](_r141_t0); + r141_include = _r141_t0['include']['bind'](_r141_t0); + r141_xn$createstroke$7Hrq = _r141_t0['create-stroke']['bind'](_r141_t0); + r141_xn$setanchor$9Jrj = _r141_t0['set-anchor']['bind'](_r141_t0); + _r141_t0['gizmo'] = r1_globalTransform; + _r141_t0['set-width'](r1_WIDTH); + r141_xn$setwidth$9Jrj(r1_WIDTH); + r141_xn$setanchor$9Jrj('above', r1_MARK, r1_MIDDLE, r1_XH, r1_MIDDLE, r1_XH + r1_ACCENT); + r141_xn$putshapes$9Jrj([r1_Ring(r1_XH + r1_ACCENT + r1_DOTRADIUS, r1_XH + r1_ACCENT - r1_DOTRADIUS, r1_MIDDLE - r1_DOTRADIUS, r1_MIDDLE + r1_DOTRADIUS)]); + return void 0; + }); + r1_xn$createglyph$7Hrq('i', function _r1_t72() { + var r143_xn$setwidth$9Jrj, r143_xn$assignunicode$7Hrq, r143_xn$startfrom$1aao, r143_xn$lineto$5sIl, r143_xn$curveto$1aao, r143_xn$cubicto$1aao, r143_xn$putshapes$9Jrj, r143_xn$reverselast$3qIs, r143_include, r143_xn$createstroke$7Hrq, r143_xn$setanchor$9Jrj, _r143_t0; + _r143_t0 = this; + r143_xn$setwidth$9Jrj = _r143_t0['set-width']['bind'](_r143_t0); + r143_xn$assignunicode$7Hrq = _r143_t0['assign-unicode']['bind'](_r143_t0); + r143_xn$startfrom$1aao = _r143_t0['start-from']['bind'](_r143_t0); + r143_xn$lineto$5sIl = _r143_t0['line-to']['bind'](_r143_t0); + r143_xn$curveto$1aao = _r143_t0['curve-to']['bind'](_r143_t0); + r143_xn$cubicto$1aao = _r143_t0['cubic-to']['bind'](_r143_t0); + r143_xn$putshapes$9Jrj = _r143_t0['put-shapes']['bind'](_r143_t0); + r143_xn$reverselast$3qIs = _r143_t0['reverse-last']['bind'](_r143_t0); + r143_include = _r143_t0['include']['bind'](_r143_t0); + r143_xn$createstroke$7Hrq = _r143_t0['create-stroke']['bind'](_r143_t0); + r143_xn$setanchor$9Jrj = _r143_t0['set-anchor']['bind'](_r143_t0); + _r143_t0['gizmo'] = r1_globalTransform; + _r143_t0['set-width'](r1_WIDTH); + r143_xn$setwidth$9Jrj(r1_WIDTH); + r143_xn$assignunicode$7Hrq('i'); + r143_include(r1_glyphs['dotlessi'], r1_BASE); + r143_include(r1_glyphs['dotaccent']); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessj.straight', function _r1_t73() { + var r145_xn$setwidth$9Jrj, r145_xn$assignunicode$7Hrq, r145_xn$startfrom$1aao, r145_xn$lineto$5sIl, r145_xn$curveto$1aao, r145_xn$cubicto$1aao, r145_xn$putshapes$9Jrj, r145_xn$reverselast$3qIs, r145_include, r145_xn$createstroke$7Hrq, r145_xn$setanchor$9Jrj, _r145_t0; + _r145_t0 = this; + r145_xn$setwidth$9Jrj = _r145_t0['set-width']['bind'](_r145_t0); + r145_xn$assignunicode$7Hrq = _r145_t0['assign-unicode']['bind'](_r145_t0); + r145_xn$startfrom$1aao = _r145_t0['start-from']['bind'](_r145_t0); + r145_xn$lineto$5sIl = _r145_t0['line-to']['bind'](_r145_t0); + r145_xn$curveto$1aao = _r145_t0['curve-to']['bind'](_r145_t0); + r145_xn$cubicto$1aao = _r145_t0['cubic-to']['bind'](_r145_t0); + r145_xn$putshapes$9Jrj = _r145_t0['put-shapes']['bind'](_r145_t0); + r145_xn$reverselast$3qIs = _r145_t0['reverse-last']['bind'](_r145_t0); + r145_include = _r145_t0['include']['bind'](_r145_t0); + r145_xn$createstroke$7Hrq = _r145_t0['create-stroke']['bind'](_r145_t0); + r145_xn$setanchor$9Jrj = _r145_t0['set-anchor']['bind'](_r145_t0); + _r145_t0['gizmo'] = r1_globalTransform; + _r145_t0['set-width'](r1_WIDTH); + r145_xn$putshapes$9Jrj(r145_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r1_JBALANCE, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r1_JBALANCE, 0)['arc-vh-to'](r1_MIDDLE + r1_DESCENDER, r1_DESCENDER + r1_HALFSTROKE)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessj.serifed', function _r1_t74() { + var r147_xn$setwidth$9Jrj, r147_xn$assignunicode$7Hrq, r147_xn$startfrom$1aao, r147_xn$lineto$5sIl, r147_xn$curveto$1aao, r147_xn$cubicto$1aao, r147_xn$putshapes$9Jrj, r147_xn$reverselast$3qIs, r147_include, r147_xn$createstroke$7Hrq, r147_xn$setanchor$9Jrj, _r147_t0; + _r147_t0 = this; + r147_xn$setwidth$9Jrj = _r147_t0['set-width']['bind'](_r147_t0); + r147_xn$assignunicode$7Hrq = _r147_t0['assign-unicode']['bind'](_r147_t0); + r147_xn$startfrom$1aao = _r147_t0['start-from']['bind'](_r147_t0); + r147_xn$lineto$5sIl = _r147_t0['line-to']['bind'](_r147_t0); + r147_xn$curveto$1aao = _r147_t0['curve-to']['bind'](_r147_t0); + r147_xn$cubicto$1aao = _r147_t0['cubic-to']['bind'](_r147_t0); + r147_xn$putshapes$9Jrj = _r147_t0['put-shapes']['bind'](_r147_t0); + r147_xn$reverselast$3qIs = _r147_t0['reverse-last']['bind'](_r147_t0); + r147_include = _r147_t0['include']['bind'](_r147_t0); + r147_xn$createstroke$7Hrq = _r147_t0['create-stroke']['bind'](_r147_t0); + r147_xn$setanchor$9Jrj = _r147_t0['set-anchor']['bind'](_r147_t0); + _r147_t0['gizmo'] = r1_globalTransform; + _r147_t0['set-width'](r1_WIDTH); + r147_include(r1_glyphs['dotlessj.straight']); + r147_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE + r1_JBALANCE, r1_XH, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('dotlessj', function _r1_t75() { + var r149_xn$setwidth$9Jrj, r149_xn$assignunicode$7Hrq, r149_xn$startfrom$1aao, r149_xn$lineto$5sIl, r149_xn$curveto$1aao, r149_xn$cubicto$1aao, r149_xn$putshapes$9Jrj, r149_xn$reverselast$3qIs, r149_include, r149_xn$createstroke$7Hrq, r149_xn$setanchor$9Jrj, _r149_t0; + _r149_t0 = this; + r149_xn$setwidth$9Jrj = _r149_t0['set-width']['bind'](_r149_t0); + r149_xn$assignunicode$7Hrq = _r149_t0['assign-unicode']['bind'](_r149_t0); + r149_xn$startfrom$1aao = _r149_t0['start-from']['bind'](_r149_t0); + r149_xn$lineto$5sIl = _r149_t0['line-to']['bind'](_r149_t0); + r149_xn$curveto$1aao = _r149_t0['curve-to']['bind'](_r149_t0); + r149_xn$cubicto$1aao = _r149_t0['cubic-to']['bind'](_r149_t0); + r149_xn$putshapes$9Jrj = _r149_t0['put-shapes']['bind'](_r149_t0); + r149_xn$reverselast$3qIs = _r149_t0['reverse-last']['bind'](_r149_t0); + r149_include = _r149_t0['include']['bind'](_r149_t0); + r149_xn$createstroke$7Hrq = _r149_t0['create-stroke']['bind'](_r149_t0); + r149_xn$setanchor$9Jrj = _r149_t0['set-anchor']['bind'](_r149_t0); + _r149_t0['gizmo'] = r1_globalTransform; + _r149_t0['set-width'](r1_WIDTH); + r149_xn$setwidth$9Jrj(r1_WIDTH); + r149_xn$setanchor$9Jrj('above', r1_BASE, r1_MIDDLE + r1_JBALANCE, r1_XH); + r149_xn$assignunicode$7Hrq(567); + r149_include(r1_glyphs['dotlessj.serifed']); + return void 0; + }); + r1_xn$createglyph$7Hrq('j', function _r1_t76() { + var r151_xn$setwidth$9Jrj, r151_xn$assignunicode$7Hrq, r151_xn$startfrom$1aao, r151_xn$lineto$5sIl, r151_xn$curveto$1aao, r151_xn$cubicto$1aao, r151_xn$putshapes$9Jrj, r151_xn$reverselast$3qIs, r151_include, r151_xn$createstroke$7Hrq, r151_xn$setanchor$9Jrj, _r151_t0; + _r151_t0 = this; + r151_xn$setwidth$9Jrj = _r151_t0['set-width']['bind'](_r151_t0); + r151_xn$assignunicode$7Hrq = _r151_t0['assign-unicode']['bind'](_r151_t0); + r151_xn$startfrom$1aao = _r151_t0['start-from']['bind'](_r151_t0); + r151_xn$lineto$5sIl = _r151_t0['line-to']['bind'](_r151_t0); + r151_xn$curveto$1aao = _r151_t0['curve-to']['bind'](_r151_t0); + r151_xn$cubicto$1aao = _r151_t0['cubic-to']['bind'](_r151_t0); + r151_xn$putshapes$9Jrj = _r151_t0['put-shapes']['bind'](_r151_t0); + r151_xn$reverselast$3qIs = _r151_t0['reverse-last']['bind'](_r151_t0); + r151_include = _r151_t0['include']['bind'](_r151_t0); + r151_xn$createstroke$7Hrq = _r151_t0['create-stroke']['bind'](_r151_t0); + r151_xn$setanchor$9Jrj = _r151_t0['set-anchor']['bind'](_r151_t0); + _r151_t0['gizmo'] = r1_globalTransform; + _r151_t0['set-width'](r1_WIDTH); + r151_xn$setwidth$9Jrj(r1_WIDTH); + r151_xn$assignunicode$7Hrq('j'); + r151_include(r1_glyphs['dotlessj'], r1_BASE); + r151_include(r1_glyphs['dotaccent']); + return void 0; + }); + r1_xn$createglyph$7Hrq('l.straight', function _r1_t77() { + var r153_xn$setwidth$9Jrj, r153_xn$assignunicode$7Hrq, r153_xn$startfrom$1aao, r153_xn$lineto$5sIl, r153_xn$curveto$1aao, r153_xn$cubicto$1aao, r153_xn$putshapes$9Jrj, r153_xn$reverselast$3qIs, r153_include, r153_xn$createstroke$7Hrq, r153_xn$setanchor$9Jrj, _r153_t0; + _r153_t0 = this; + r153_xn$setwidth$9Jrj = _r153_t0['set-width']['bind'](_r153_t0); + r153_xn$assignunicode$7Hrq = _r153_t0['assign-unicode']['bind'](_r153_t0); + r153_xn$startfrom$1aao = _r153_t0['start-from']['bind'](_r153_t0); + r153_xn$lineto$5sIl = _r153_t0['line-to']['bind'](_r153_t0); + r153_xn$curveto$1aao = _r153_t0['curve-to']['bind'](_r153_t0); + r153_xn$cubicto$1aao = _r153_t0['cubic-to']['bind'](_r153_t0); + r153_xn$putshapes$9Jrj = _r153_t0['put-shapes']['bind'](_r153_t0); + r153_xn$reverselast$3qIs = _r153_t0['reverse-last']['bind'](_r153_t0); + r153_include = _r153_t0['include']['bind'](_r153_t0); + r153_xn$createstroke$7Hrq = _r153_t0['create-stroke']['bind'](_r153_t0); + r153_xn$setanchor$9Jrj = _r153_t0['set-anchor']['bind'](_r153_t0); + _r153_t0['gizmo'] = r1_globalTransform; + _r153_t0['set-width'](r1_WIDTH); + r153_xn$putshapes$9Jrj(r153_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('l.hooky', function _r1_t78() { + var r155_xn$setwidth$9Jrj, r155_xn$assignunicode$7Hrq, r155_xn$startfrom$1aao, r155_xn$lineto$5sIl, r155_xn$curveto$1aao, r155_xn$cubicto$1aao, r155_xn$putshapes$9Jrj, r155_xn$reverselast$3qIs, r155_include, r155_xn$createstroke$7Hrq, r155_xn$setanchor$9Jrj, _r155_t0; + _r155_t0 = this; + r155_xn$setwidth$9Jrj = _r155_t0['set-width']['bind'](_r155_t0); + r155_xn$assignunicode$7Hrq = _r155_t0['assign-unicode']['bind'](_r155_t0); + r155_xn$startfrom$1aao = _r155_t0['start-from']['bind'](_r155_t0); + r155_xn$lineto$5sIl = _r155_t0['line-to']['bind'](_r155_t0); + r155_xn$curveto$1aao = _r155_t0['curve-to']['bind'](_r155_t0); + r155_xn$cubicto$1aao = _r155_t0['cubic-to']['bind'](_r155_t0); + r155_xn$putshapes$9Jrj = _r155_t0['put-shapes']['bind'](_r155_t0); + r155_xn$reverselast$3qIs = _r155_t0['reverse-last']['bind'](_r155_t0); + r155_include = _r155_t0['include']['bind'](_r155_t0); + r155_xn$createstroke$7Hrq = _r155_t0['create-stroke']['bind'](_r155_t0); + r155_xn$setanchor$9Jrj = _r155_t0['set-anchor']['bind'](_r155_t0); + _r155_t0['gizmo'] = r1_globalTransform; + _r155_t0['set-width'](r1_WIDTH); + r155_include(r1_glyphs['l.straight']); + r155_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE, r1_CAP, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('l.zshaped', function _r1_t79() { + var r157_xn$setwidth$9Jrj, r157_xn$assignunicode$7Hrq, r157_xn$startfrom$1aao, r157_xn$lineto$5sIl, r157_xn$curveto$1aao, r157_xn$cubicto$1aao, r157_xn$putshapes$9Jrj, r157_xn$reverselast$3qIs, r157_include, r157_xn$createstroke$7Hrq, r157_xn$setanchor$9Jrj, _r157_t0; + _r157_t0 = this; + r157_xn$setwidth$9Jrj = _r157_t0['set-width']['bind'](_r157_t0); + r157_xn$assignunicode$7Hrq = _r157_t0['assign-unicode']['bind'](_r157_t0); + r157_xn$startfrom$1aao = _r157_t0['start-from']['bind'](_r157_t0); + r157_xn$lineto$5sIl = _r157_t0['line-to']['bind'](_r157_t0); + r157_xn$curveto$1aao = _r157_t0['curve-to']['bind'](_r157_t0); + r157_xn$cubicto$1aao = _r157_t0['cubic-to']['bind'](_r157_t0); + r157_xn$putshapes$9Jrj = _r157_t0['put-shapes']['bind'](_r157_t0); + r157_xn$reverselast$3qIs = _r157_t0['reverse-last']['bind'](_r157_t0); + r157_include = _r157_t0['include']['bind'](_r157_t0); + r157_xn$createstroke$7Hrq = _r157_t0['create-stroke']['bind'](_r157_t0); + r157_xn$setanchor$9Jrj = _r157_t0['set-anchor']['bind'](_r157_t0); + _r157_t0['gizmo'] = r1_globalTransform; + _r157_t0['set-width'](r1_WIDTH); + r157_include(r1_glyphs['l.hooky']); + r157_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('l.serifed', function _r1_t80() { + var r159_xn$setwidth$9Jrj, r159_xn$assignunicode$7Hrq, r159_xn$startfrom$1aao, r159_xn$lineto$5sIl, r159_xn$curveto$1aao, r159_xn$cubicto$1aao, r159_xn$putshapes$9Jrj, r159_xn$reverselast$3qIs, r159_include, r159_xn$createstroke$7Hrq, r159_xn$setanchor$9Jrj, r159_balance, _r159_t0; + _r159_t0 = this; + r159_xn$setwidth$9Jrj = _r159_t0['set-width']['bind'](_r159_t0); + r159_xn$assignunicode$7Hrq = _r159_t0['assign-unicode']['bind'](_r159_t0); + r159_xn$startfrom$1aao = _r159_t0['start-from']['bind'](_r159_t0); + r159_xn$lineto$5sIl = _r159_t0['line-to']['bind'](_r159_t0); + r159_xn$curveto$1aao = _r159_t0['curve-to']['bind'](_r159_t0); + r159_xn$cubicto$1aao = _r159_t0['cubic-to']['bind'](_r159_t0); + r159_xn$putshapes$9Jrj = _r159_t0['put-shapes']['bind'](_r159_t0); + r159_xn$reverselast$3qIs = _r159_t0['reverse-last']['bind'](_r159_t0); + r159_include = _r159_t0['include']['bind'](_r159_t0); + r159_xn$createstroke$7Hrq = _r159_t0['create-stroke']['bind'](_r159_t0); + r159_xn$setanchor$9Jrj = _r159_t0['set-anchor']['bind'](_r159_t0); + _r159_t0['gizmo'] = r1_globalTransform; + _r159_t0['set-width'](r1_WIDTH); + r159_balance = r1_ILBALANCE; + r159_xn$putshapes$9Jrj(r159_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r159_balance, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r159_balance, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r159_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE + r159_balance, r1_CAP, r1_LONGSERIF - r159_balance)); + r159_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF)); + r159_xn$putshapes$9Jrj(r1_leftwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF)); + return void 0; + }); + r1_xn$createglyph$7Hrq('l', function _r1_t81() { + var r161_xn$setwidth$9Jrj, r161_xn$assignunicode$7Hrq, r161_xn$startfrom$1aao, r161_xn$lineto$5sIl, r161_xn$curveto$1aao, r161_xn$cubicto$1aao, r161_xn$putshapes$9Jrj, r161_xn$reverselast$3qIs, r161_include, r161_xn$createstroke$7Hrq, r161_xn$setanchor$9Jrj, r161_otherwise, _r161_t0, _r161_t1, _r161_t2, _r161_t3, _r161_t4, _r161_t5, _r161_t6, _r161_t7, _r161_t8; + _r161_t1 = this; + r161_xn$setwidth$9Jrj = _r161_t1['set-width']['bind'](_r161_t1); + r161_xn$assignunicode$7Hrq = _r161_t1['assign-unicode']['bind'](_r161_t1); + r161_xn$startfrom$1aao = _r161_t1['start-from']['bind'](_r161_t1); + r161_xn$lineto$5sIl = _r161_t1['line-to']['bind'](_r161_t1); + r161_xn$curveto$1aao = _r161_t1['curve-to']['bind'](_r161_t1); + r161_xn$cubicto$1aao = _r161_t1['cubic-to']['bind'](_r161_t1); + r161_xn$putshapes$9Jrj = _r161_t1['put-shapes']['bind'](_r161_t1); + r161_xn$reverselast$3qIs = _r161_t1['reverse-last']['bind'](_r161_t1); + r161_include = _r161_t1['include']['bind'](_r161_t1); + r161_xn$createstroke$7Hrq = _r161_t1['create-stroke']['bind'](_r161_t1); + r161_xn$setanchor$9Jrj = _r161_t1['set-anchor']['bind'](_r161_t1); + _r161_t1['gizmo'] = r1_globalTransform; + _r161_t1['set-width'](r1_WIDTH); + r161_xn$setwidth$9Jrj(r1_WIDTH); + r161_xn$assignunicode$7Hrq('l'); + r161_include(r1_bMarks); + _r161_t2 = r161_include; + _r161_t3 = r1_glyphs; + _r161_t0 = r1_variantSelector['zero']; + if ('straight' === _r161_t0) { + _r161_t4 = 'l.straight'; + } else { + if ('hooky' === _r161_t0) { + _r161_t5 = 'l.hooky'; + } else { + if ('zshaped' === _r161_t0) { + _r161_t6 = 'l.zshaped'; + } else { + if ('serifed' === _r161_t0) { + _r161_t7 = 'l.serifed'; + } else { + r161_otherwise = _r161_t0; + _r161_t7 = 'l.serifed'; + } + _r161_t6 = _r161_t7; + } + _r161_t5 = _r161_t6; + } + _r161_t4 = _r161_t5; + } + _r161_t8 = _r161_t3[_r161_t4]; + _r161_t2(_r161_t8); + return void 0; + }); + r1_xn$createglyph$7Hrq('x', function _r1_t82() { + var r163_xn$setwidth$9Jrj, r163_xn$assignunicode$7Hrq, r163_xn$startfrom$1aao, r163_xn$lineto$5sIl, r163_xn$curveto$1aao, r163_xn$cubicto$1aao, r163_xn$putshapes$9Jrj, r163_xn$reverselast$3qIs, r163_include, r163_xn$createstroke$7Hrq, r163_xn$setanchor$9Jrj, r163_TURN, r163_barone, r163_bartwo, _r163_t0; + _r163_t0 = this; + r163_xn$setwidth$9Jrj = _r163_t0['set-width']['bind'](_r163_t0); + r163_xn$assignunicode$7Hrq = _r163_t0['assign-unicode']['bind'](_r163_t0); + r163_xn$startfrom$1aao = _r163_t0['start-from']['bind'](_r163_t0); + r163_xn$lineto$5sIl = _r163_t0['line-to']['bind'](_r163_t0); + r163_xn$curveto$1aao = _r163_t0['curve-to']['bind'](_r163_t0); + r163_xn$cubicto$1aao = _r163_t0['cubic-to']['bind'](_r163_t0); + r163_xn$putshapes$9Jrj = _r163_t0['put-shapes']['bind'](_r163_t0); + r163_xn$reverselast$3qIs = _r163_t0['reverse-last']['bind'](_r163_t0); + r163_include = _r163_t0['include']['bind'](_r163_t0); + r163_xn$createstroke$7Hrq = _r163_t0['create-stroke']['bind'](_r163_t0); + r163_xn$setanchor$9Jrj = _r163_t0['set-anchor']['bind'](_r163_t0); + _r163_t0['gizmo'] = r1_globalTransform; + _r163_t0['set-width'](r1_WIDTH); + r163_xn$setwidth$9Jrj(r1_WIDTH); + r163_xn$assignunicode$7Hrq('x'); + r163_include(r1_eMarks); + r163_TURN = r1_XH * 0.1; + r163_barone = r163_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_HALFSTROKE + r1_O, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r1_SB + r1_HALFSTROKE + r1_O, r163_TURN + 0.17 * (r1_XH - r163_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH - r163_TURN - 0.17 * (r1_XH - r163_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH)['heads-to'](r1_UPWARD); + r163_bartwo = r163_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_HALFSTROKE - r1_O, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r1_RIGHTSB - r1_HALFSTROKE - r1_O, r163_TURN + 0.17 * (r1_XH - r163_TURN), r1_SB + r1_HALFSTROKE + r1_O, r1_XH - r163_TURN - 0.17 * (r1_XH - r163_TURN), r1_SB + r1_HALFSTROKE + r1_O, r1_XH)['heads-to'](r1_UPWARD); + r163_xn$putshapes$9Jrj(r163_barone['to-outline']()); + r163_xn$putshapes$9Jrj(r163_bartwo['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('v', function _r1_t83() { + var r165_xn$setwidth$9Jrj, r165_xn$assignunicode$7Hrq, r165_xn$startfrom$1aao, r165_xn$lineto$5sIl, r165_xn$curveto$1aao, r165_xn$cubicto$1aao, r165_xn$putshapes$9Jrj, r165_xn$reverselast$3qIs, r165_include, r165_xn$createstroke$7Hrq, r165_xn$setanchor$9Jrj, r165_TURN, r165_leftbar, r165_rightbar, _r165_t0; + _r165_t0 = this; + r165_xn$setwidth$9Jrj = _r165_t0['set-width']['bind'](_r165_t0); + r165_xn$assignunicode$7Hrq = _r165_t0['assign-unicode']['bind'](_r165_t0); + r165_xn$startfrom$1aao = _r165_t0['start-from']['bind'](_r165_t0); + r165_xn$lineto$5sIl = _r165_t0['line-to']['bind'](_r165_t0); + r165_xn$curveto$1aao = _r165_t0['curve-to']['bind'](_r165_t0); + r165_xn$cubicto$1aao = _r165_t0['cubic-to']['bind'](_r165_t0); + r165_xn$putshapes$9Jrj = _r165_t0['put-shapes']['bind'](_r165_t0); + r165_xn$reverselast$3qIs = _r165_t0['reverse-last']['bind'](_r165_t0); + r165_include = _r165_t0['include']['bind'](_r165_t0); + r165_xn$createstroke$7Hrq = _r165_t0['create-stroke']['bind'](_r165_t0); + r165_xn$setanchor$9Jrj = _r165_t0['set-anchor']['bind'](_r165_t0); + _r165_t0['gizmo'] = r1_globalTransform; + _r165_t0['set-width'](r1_WIDTH); + r165_xn$setwidth$9Jrj(r1_WIDTH); + r165_xn$assignunicode$7Hrq('v'); + r165_include(r1_eMarks); + r165_TURN = r1_XH * 0.9; + r165_leftbar = r165_xn$createstroke$7Hrq(); + r165_leftbar['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r165_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r165_TURN, r1_MIDDLE - r1_STROKE / 2, 0)['set-width'](r1_STROKE * 0.8, 0); + r165_rightbar = r165_xn$createstroke$7Hrq(); + r165_rightbar['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r165_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r165_TURN, r1_MIDDLE + r1_STROKE / 2, 0)['set-width'](0, r1_STROKE * 0.8); + r165_xn$putshapes$9Jrj(r165_leftbar['to-outline']()); + r165_xn$putshapes$9Jrj(r165_rightbar['to-outline']()); + r165_xn$startfrom$1aao(r1_MIDDLE + r1_STROKE / 2, 0); + r165_xn$lineto$5sIl(r1_MIDDLE - r1_STROKE / 2, 0); + r165_xn$lineto$5sIl(r1_MIDDLE, r1_STROKE); + return void 0; + }); + r1_xn$createglyph$7Hrq('w', function _r1_t84() { + var r167_xn$setwidth$9Jrj, r167_xn$assignunicode$7Hrq, r167_xn$startfrom$1aao, r167_xn$lineto$5sIl, r167_xn$curveto$1aao, r167_xn$cubicto$1aao, r167_xn$putshapes$9Jrj, r167_xn$reverselast$3qIs, r167_include, r167_xn$createstroke$7Hrq, r167_xn$setanchor$9Jrj, r167_TURN, r167_turn2, r167_wheight, r167_bottomStroke, r167_m1, r167_m2, _r167_t0; + _r167_t0 = this; + r167_xn$setwidth$9Jrj = _r167_t0['set-width']['bind'](_r167_t0); + r167_xn$assignunicode$7Hrq = _r167_t0['assign-unicode']['bind'](_r167_t0); + r167_xn$startfrom$1aao = _r167_t0['start-from']['bind'](_r167_t0); + r167_xn$lineto$5sIl = _r167_t0['line-to']['bind'](_r167_t0); + r167_xn$curveto$1aao = _r167_t0['curve-to']['bind'](_r167_t0); + r167_xn$cubicto$1aao = _r167_t0['cubic-to']['bind'](_r167_t0); + r167_xn$putshapes$9Jrj = _r167_t0['put-shapes']['bind'](_r167_t0); + r167_xn$reverselast$3qIs = _r167_t0['reverse-last']['bind'](_r167_t0); + r167_include = _r167_t0['include']['bind'](_r167_t0); + r167_xn$createstroke$7Hrq = _r167_t0['create-stroke']['bind'](_r167_t0); + r167_xn$setanchor$9Jrj = _r167_t0['set-anchor']['bind'](_r167_t0); + _r167_t0['gizmo'] = r1_globalTransform; + _r167_t0['set-width'](r1_WIDTH); + r167_xn$setwidth$9Jrj(r1_WIDTH); + r167_xn$assignunicode$7Hrq('w'); + r167_include(r1_eMarks); + r167_TURN = r1_XH * 0.75; + r167_turn2 = r1_XH * 0.59; + r167_wheight = r1_XH * 0.6; + r167_bottomStroke = Math['min'](r1_STROKE * 0.8, (r1_WIDTH - r1_SB * 2) * 0.175); + r167_m1 = r1_WIDTH * 0.325; + r167_m2 = r1_WIDTH * 0.675; + r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r167_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r167_TURN, r167_m1 - r167_bottomStroke / 2, 0)['set-width'](r167_bottomStroke, 0)['to-outline']()); + r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r167_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r167_TURN, r167_m2 + r167_bottomStroke / 2, 0)['set-width'](0, r167_bottomStroke)['to-outline']()); + r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r167_bottomStroke / 2, r167_wheight)['heads-to'](r1_DOWNWARD)['set-width'](0, r167_bottomStroke)['line-to'](r1_MIDDLE + r167_bottomStroke / 2, r167_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE + r167_bottomStroke / 2, (1 - 0.1) * r167_turn2, r167_m1 + r167_bottomStroke / 2, 0)['set-width'](0, r167_bottomStroke)['to-outline']()); + r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r167_bottomStroke / 2, r167_wheight)['heads-to'](r1_DOWNWARD)['set-width'](r167_bottomStroke, 0)['line-to'](r1_MIDDLE - r167_bottomStroke / 2, r167_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE - r167_bottomStroke / 2, (1 - 0.1) * r167_turn2, r167_m2 - r167_bottomStroke / 2, 0)['set-width'](r167_bottomStroke, 0)['to-outline']()); + r167_xn$startfrom$1aao(r167_m1 + r167_bottomStroke / 2, 0); + r167_xn$lineto$5sIl(r167_m1 - r167_bottomStroke / 2, 0); + r167_xn$lineto$5sIl(r167_m1, r167_bottomStroke); + r167_xn$startfrom$1aao(r167_m2 + r167_bottomStroke / 2, 0); + r167_xn$lineto$5sIl(r167_m2 - r167_bottomStroke / 2, 0); + r167_xn$lineto$5sIl(r167_m2, r167_bottomStroke); + return void 0; + }); + r1_xn$createglyph$7Hrq('y.upright', function _r1_t85() { + var r169_xn$setwidth$9Jrj, r169_xn$assignunicode$7Hrq, r169_xn$startfrom$1aao, r169_xn$lineto$5sIl, r169_xn$curveto$1aao, r169_xn$cubicto$1aao, r169_xn$putshapes$9Jrj, r169_xn$reverselast$3qIs, r169_include, r169_xn$createstroke$7Hrq, r169_xn$setanchor$9Jrj, r169_turn1, r169_turn2, r169_cross, r169_xbottom, r169_barone, r169_bartwo, _r169_t0; + _r169_t0 = this; + r169_xn$setwidth$9Jrj = _r169_t0['set-width']['bind'](_r169_t0); + r169_xn$assignunicode$7Hrq = _r169_t0['assign-unicode']['bind'](_r169_t0); + r169_xn$startfrom$1aao = _r169_t0['start-from']['bind'](_r169_t0); + r169_xn$lineto$5sIl = _r169_t0['line-to']['bind'](_r169_t0); + r169_xn$curveto$1aao = _r169_t0['curve-to']['bind'](_r169_t0); + r169_xn$cubicto$1aao = _r169_t0['cubic-to']['bind'](_r169_t0); + r169_xn$putshapes$9Jrj = _r169_t0['put-shapes']['bind'](_r169_t0); + r169_xn$reverselast$3qIs = _r169_t0['reverse-last']['bind'](_r169_t0); + r169_include = _r169_t0['include']['bind'](_r169_t0); + r169_xn$createstroke$7Hrq = _r169_t0['create-stroke']['bind'](_r169_t0); + r169_xn$setanchor$9Jrj = _r169_t0['set-anchor']['bind'](_r169_t0); + _r169_t0['gizmo'] = r1_globalTransform; + _r169_t0['set-width'](r1_WIDTH); + r169_xn$setwidth$9Jrj(r1_WIDTH); + r169_include(r1_pMarks); + r169_turn1 = r1_DESCENDER + (r1_XH - r1_DESCENDER) * 0.1; + r169_turn2 = r1_XH * 0.1; + r169_cross = r1_XH * 0.15; + r169_xbottom = r1_WIDTH * 0.4; + r169_barone = r169_xn$createstroke$7Hrq()['start-from'](r169_xbottom, r1_DESCENDER)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r169_xbottom, r169_turn1 + 0.3 * (r1_XH - r169_turn1), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH - r169_turn1 - 0.65 * (r1_XH - r169_turn1), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH)['heads-to'](r1_UPWARD); + r169_bartwo = r169_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r169_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r1_SB + r1_HALFSTROKE + r1_O, r1_XH - r169_turn2 - 0.35 * (r1_XH - r169_turn2), r1_SB + r1_HALFSTROKE + r1_O, r1_XH)['heads-to'](r1_UPWARD); + r169_xn$putshapes$9Jrj(r169_barone['to-outline']()); + r169_xn$putshapes$9Jrj(r169_bartwo['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('y.italic', function _r1_t86() { + var r171_xn$setwidth$9Jrj, r171_xn$assignunicode$7Hrq, r171_xn$startfrom$1aao, r171_xn$lineto$5sIl, r171_xn$curveto$1aao, r171_xn$cubicto$1aao, r171_xn$putshapes$9Jrj, r171_xn$reverselast$3qIs, r171_include, r171_xn$createstroke$7Hrq, r171_xn$setanchor$9Jrj, r171_TURN, r171_cross, r171_xbottom, r171_barone, r171_bartwo, _r171_t0; + _r171_t0 = this; + r171_xn$setwidth$9Jrj = _r171_t0['set-width']['bind'](_r171_t0); + r171_xn$assignunicode$7Hrq = _r171_t0['assign-unicode']['bind'](_r171_t0); + r171_xn$startfrom$1aao = _r171_t0['start-from']['bind'](_r171_t0); + r171_xn$lineto$5sIl = _r171_t0['line-to']['bind'](_r171_t0); + r171_xn$curveto$1aao = _r171_t0['curve-to']['bind'](_r171_t0); + r171_xn$cubicto$1aao = _r171_t0['cubic-to']['bind'](_r171_t0); + r171_xn$putshapes$9Jrj = _r171_t0['put-shapes']['bind'](_r171_t0); + r171_xn$reverselast$3qIs = _r171_t0['reverse-last']['bind'](_r171_t0); + r171_include = _r171_t0['include']['bind'](_r171_t0); + r171_xn$createstroke$7Hrq = _r171_t0['create-stroke']['bind'](_r171_t0); + r171_xn$setanchor$9Jrj = _r171_t0['set-anchor']['bind'](_r171_t0); + _r171_t0['gizmo'] = r1_globalTransform; + _r171_t0['set-width'](r1_WIDTH); + r171_xn$setwidth$9Jrj(r1_WIDTH); + r171_include(r1_pMarks); + r171_TURN = r1_XH * 0.1; + r171_cross = r1_XH * 0.15; + r171_xbottom = r1_WIDTH * 0.4; + r171_barone = r171_xn$createstroke$7Hrq()['start-from'](r171_xbottom, r1_DESCENDER)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r171_xbottom, r171_TURN + 0.17 * (r1_XH - r171_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH - r171_TURN - 0.17 * (r1_XH - r171_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH)['heads-to'](r1_UPWARD); + r171_bartwo = r171_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r171_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r1_SB + r1_HALFSTROKE + r1_O, r1_XH - r171_TURN - 0.17 * (r1_XH - r171_TURN), r1_SB + r1_HALFSTROKE + r1_O, r1_XH)['heads-to'](r1_UPWARD); + r171_xn$putshapes$9Jrj(r171_barone['to-outline']()); + r171_xn$putshapes$9Jrj(r171_bartwo['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('y', function _r1_t87() { + var r173_xn$setwidth$9Jrj, r173_xn$assignunicode$7Hrq, r173_xn$startfrom$1aao, r173_xn$lineto$5sIl, r173_xn$curveto$1aao, r173_xn$cubicto$1aao, r173_xn$putshapes$9Jrj, r173_xn$reverselast$3qIs, r173_include, r173_xn$createstroke$7Hrq, r173_xn$setanchor$9Jrj, _r173_t0; + _r173_t0 = this; + r173_xn$setwidth$9Jrj = _r173_t0['set-width']['bind'](_r173_t0); + r173_xn$assignunicode$7Hrq = _r173_t0['assign-unicode']['bind'](_r173_t0); + r173_xn$startfrom$1aao = _r173_t0['start-from']['bind'](_r173_t0); + r173_xn$lineto$5sIl = _r173_t0['line-to']['bind'](_r173_t0); + r173_xn$curveto$1aao = _r173_t0['curve-to']['bind'](_r173_t0); + r173_xn$cubicto$1aao = _r173_t0['cubic-to']['bind'](_r173_t0); + r173_xn$putshapes$9Jrj = _r173_t0['put-shapes']['bind'](_r173_t0); + r173_xn$reverselast$3qIs = _r173_t0['reverse-last']['bind'](_r173_t0); + r173_include = _r173_t0['include']['bind'](_r173_t0); + r173_xn$createstroke$7Hrq = _r173_t0['create-stroke']['bind'](_r173_t0); + r173_xn$setanchor$9Jrj = _r173_t0['set-anchor']['bind'](_r173_t0); + _r173_t0['gizmo'] = r1_globalTransform; + _r173_t0['set-width'](r1_WIDTH); + r173_xn$setwidth$9Jrj(r1_WIDTH); + r173_xn$assignunicode$7Hrq('y'); + if (r1_para['italicangle'] > 0) { + r173_include(r1_glyphs['y.italic'], true); + } else { + r173_include(r1_glyphs['y.upright'], true); + } + return void 0; + }); + r1_xn$createglyph$7Hrq('z', function _r1_t88() { + var r175_xn$setwidth$9Jrj, r175_xn$assignunicode$7Hrq, r175_xn$startfrom$1aao, r175_xn$lineto$5sIl, r175_xn$curveto$1aao, r175_xn$cubicto$1aao, r175_xn$putshapes$9Jrj, r175_xn$reverselast$3qIs, r175_include, r175_xn$createstroke$7Hrq, r175_xn$setanchor$9Jrj, r175_cor, _r175_t0; + _r175_t0 = this; + r175_xn$setwidth$9Jrj = _r175_t0['set-width']['bind'](_r175_t0); + r175_xn$assignunicode$7Hrq = _r175_t0['assign-unicode']['bind'](_r175_t0); + r175_xn$startfrom$1aao = _r175_t0['start-from']['bind'](_r175_t0); + r175_xn$lineto$5sIl = _r175_t0['line-to']['bind'](_r175_t0); + r175_xn$curveto$1aao = _r175_t0['curve-to']['bind'](_r175_t0); + r175_xn$cubicto$1aao = _r175_t0['cubic-to']['bind'](_r175_t0); + r175_xn$putshapes$9Jrj = _r175_t0['put-shapes']['bind'](_r175_t0); + r175_xn$reverselast$3qIs = _r175_t0['reverse-last']['bind'](_r175_t0); + r175_include = _r175_t0['include']['bind'](_r175_t0); + r175_xn$createstroke$7Hrq = _r175_t0['create-stroke']['bind'](_r175_t0); + r175_xn$setanchor$9Jrj = _r175_t0['set-anchor']['bind'](_r175_t0); + _r175_t0['gizmo'] = r1_globalTransform; + _r175_t0['set-width'](r1_WIDTH); + r175_xn$setwidth$9Jrj(r1_WIDTH); + r175_xn$assignunicode$7Hrq('z'); + r175_include(r1_eMarks); + r175_cor = 1.2; + r175_xn$putshapes$9Jrj(r175_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_XH)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r175_xn$putshapes$9Jrj(r175_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r175_xn$startfrom$1aao(r1_SB, r1_STROKE); + r175_xn$lineto$5sIl(r1_SB + r1_STROKE * r175_cor, r1_STROKE); + r175_xn$lineto$5sIl(r1_RIGHTSB, r1_XH - r1_STROKE); + r175_xn$lineto$5sIl(r1_RIGHTSB - r1_STROKE * r175_cor, r1_XH - r1_STROKE); + r175_xn$reverselast$3qIs(); + return void 0; + }); + r1_xn$createglyph$7Hrq('k', function _r1_t89() { + var r177_xn$setwidth$9Jrj, r177_xn$assignunicode$7Hrq, r177_xn$startfrom$1aao, r177_xn$lineto$5sIl, r177_xn$curveto$1aao, r177_xn$cubicto$1aao, r177_xn$putshapes$9Jrj, r177_xn$reverselast$3qIs, r177_include, r177_xn$createstroke$7Hrq, r177_xn$setanchor$9Jrj, r177_TURN, r177_rturn, r177_right, r177_attach, r177_attach2, r177_fine, _r177_t0; + _r177_t0 = this; + r177_xn$setwidth$9Jrj = _r177_t0['set-width']['bind'](_r177_t0); + r177_xn$assignunicode$7Hrq = _r177_t0['assign-unicode']['bind'](_r177_t0); + r177_xn$startfrom$1aao = _r177_t0['start-from']['bind'](_r177_t0); + r177_xn$lineto$5sIl = _r177_t0['line-to']['bind'](_r177_t0); + r177_xn$curveto$1aao = _r177_t0['curve-to']['bind'](_r177_t0); + r177_xn$cubicto$1aao = _r177_t0['cubic-to']['bind'](_r177_t0); + r177_xn$putshapes$9Jrj = _r177_t0['put-shapes']['bind'](_r177_t0); + r177_xn$reverselast$3qIs = _r177_t0['reverse-last']['bind'](_r177_t0); + r177_include = _r177_t0['include']['bind'](_r177_t0); + r177_xn$createstroke$7Hrq = _r177_t0['create-stroke']['bind'](_r177_t0); + r177_xn$setanchor$9Jrj = _r177_t0['set-anchor']['bind'](_r177_t0); + _r177_t0['gizmo'] = r1_globalTransform; + _r177_t0['set-width'](r1_WIDTH); + r177_xn$setwidth$9Jrj(r1_WIDTH); + r177_xn$assignunicode$7Hrq('k'); + r177_include(r1_bMarks); + r177_TURN = r1_XH * 0.99; + r177_rturn = r1_XH * 0.1; + r177_right = r1_RIGHTSB - r1_O; + r177_attach = r1_XH * 0.4; + r177_attach2 = r1_MIDDLE - r1_WIDTH * 0.1; + r177_fine = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.25); + r177_xn$putshapes$9Jrj(r177_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['set-width'](0, r1_STROKE)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']()); + r177_xn$putshapes$9Jrj(r177_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r177_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.18) * r177_TURN, r1_SB + r1_STROKE, r177_attach)['set-width'](0, r177_fine)['to-outline']()); + r177_xn$putshapes$9Jrj(r177_xn$createstroke$7Hrq()['start-from'](r177_right - r1_HALFSTROKE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r177_right - r1_HALFSTROKE, r177_rturn + 0.05 * (r1_XH - r177_rturn), r177_attach2, r1_XH * 0.5 + r1_HALFSTROKE)['set-width'](r177_fine / 2, r177_fine / 2)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('s', function _r1_t90() { + var r179_xn$setwidth$9Jrj, r179_xn$assignunicode$7Hrq, r179_xn$startfrom$1aao, r179_xn$lineto$5sIl, r179_xn$curveto$1aao, r179_xn$cubicto$1aao, r179_xn$putshapes$9Jrj, r179_xn$reverselast$3qIs, r179_include, r179_xn$createstroke$7Hrq, r179_xn$setanchor$9Jrj, r179_slope, r179_expand, r179_coexpand, r179_ssmootha, r179_bowltop, r179_strokemiddle, r179_bowlbottom, _r179_t0; + _r179_t0 = this; + r179_xn$setwidth$9Jrj = _r179_t0['set-width']['bind'](_r179_t0); + r179_xn$assignunicode$7Hrq = _r179_t0['assign-unicode']['bind'](_r179_t0); + r179_xn$startfrom$1aao = _r179_t0['start-from']['bind'](_r179_t0); + r179_xn$lineto$5sIl = _r179_t0['line-to']['bind'](_r179_t0); + r179_xn$curveto$1aao = _r179_t0['curve-to']['bind'](_r179_t0); + r179_xn$cubicto$1aao = _r179_t0['cubic-to']['bind'](_r179_t0); + r179_xn$putshapes$9Jrj = _r179_t0['put-shapes']['bind'](_r179_t0); + r179_xn$reverselast$3qIs = _r179_t0['reverse-last']['bind'](_r179_t0); + r179_include = _r179_t0['include']['bind'](_r179_t0); + r179_xn$createstroke$7Hrq = _r179_t0['create-stroke']['bind'](_r179_t0); + r179_xn$setanchor$9Jrj = _r179_t0['set-anchor']['bind'](_r179_t0); + _r179_t0['gizmo'] = r1_globalTransform; + _r179_t0['set-width'](r1_WIDTH); + r179_xn$setwidth$9Jrj(r1_WIDTH); + r179_xn$assignunicode$7Hrq('s'); + r179_include(r1_eMarks); + r179_slope = 0.015; + r179_expand = 0.175; + r179_coexpand = (1 - r179_expand) / 2; + r179_ssmootha = r1_SMOOTHA * 0.87; + r179_bowltop = r179_xn$createstroke$7Hrq(); + r179_bowltop['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_XH - r1_SHOOK)['set-width'](r1_STROKE, 0)['curve-to'](r1_MIDDLE + r1_KAPPA_AHOOK * (r1_MIDDLE - r1_para['sb']), r1_XO, r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_XH - r179_ssmootha); + r179_strokemiddle = r179_xn$createstroke$7Hrq(); + r179_strokemiddle['start-from'](r1_SB + r1_STROKE / 2, r1_XH - r179_ssmootha)['set-width'](r1_STROKE / 2, r1_STROKE / 2)['curve-to'](r1_SB + r1_STROKE / 2, (0.5 + r179_slope) * r1_XH + 2 * r179_slope * r1_XH / (r179_expand * r1_WIDTH) * (r179_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r179_coexpand * r1_WIDTH, (0.5 + r179_slope) * r1_XH)['line-to']((1 - r179_coexpand) * r1_WIDTH, (0.5 - r179_slope) * r1_XH)['curve-to'](r1_RIGHTSB - r1_STROKE / 2, (0.5 - r179_slope) * r1_XH - 2 * r179_slope * r1_XH / (r179_expand * r1_WIDTH) * (r179_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r1_RIGHTSB - r1_STROKE / 2, r179_ssmootha); + r179_bowlbottom = r179_xn$createstroke$7Hrq(); + r179_bowlbottom['start-from'](r1_RIGHTSB, r179_ssmootha)['set-width'](0, r1_STROKE)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - (r1_KAPPA_AHOOK + r1_TAILADJSKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_para['sb']), r1_O, r1_SB + r1_OXHOOK - +r1_TAILADJSX * r1_globalTransform['yx'], r1_SHOOK - r1_TAILADJSY * r1_globalTransform['yx']); + r179_xn$putshapes$9Jrj(r179_bowltop['to-outline']()); + r179_xn$putshapes$9Jrj(r179_strokemiddle['to-outline']()); + r179_xn$putshapes$9Jrj(r179_bowlbottom['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('r', function _r1_t91() { + var r181_xn$setwidth$9Jrj, r181_xn$assignunicode$7Hrq, r181_xn$startfrom$1aao, r181_xn$lineto$5sIl, r181_xn$curveto$1aao, r181_xn$cubicto$1aao, r181_xn$putshapes$9Jrj, r181_xn$reverselast$3qIs, r181_include, r181_xn$createstroke$7Hrq, r181_xn$setanchor$9Jrj, r181_slope, r181_expand, r181_coexpand, r181_ssmootha, _r181_t0; + _r181_t0 = this; + r181_xn$setwidth$9Jrj = _r181_t0['set-width']['bind'](_r181_t0); + r181_xn$assignunicode$7Hrq = _r181_t0['assign-unicode']['bind'](_r181_t0); + r181_xn$startfrom$1aao = _r181_t0['start-from']['bind'](_r181_t0); + r181_xn$lineto$5sIl = _r181_t0['line-to']['bind'](_r181_t0); + r181_xn$curveto$1aao = _r181_t0['curve-to']['bind'](_r181_t0); + r181_xn$cubicto$1aao = _r181_t0['cubic-to']['bind'](_r181_t0); + r181_xn$putshapes$9Jrj = _r181_t0['put-shapes']['bind'](_r181_t0); + r181_xn$reverselast$3qIs = _r181_t0['reverse-last']['bind'](_r181_t0); + r181_include = _r181_t0['include']['bind'](_r181_t0); + r181_xn$createstroke$7Hrq = _r181_t0['create-stroke']['bind'](_r181_t0); + r181_xn$setanchor$9Jrj = _r181_t0['set-anchor']['bind'](_r181_t0); + _r181_t0['gizmo'] = r1_globalTransform; + _r181_t0['set-width'](r1_WIDTH); + r181_xn$setwidth$9Jrj(r1_WIDTH); + r181_xn$assignunicode$7Hrq('r'); + r181_include(r1_eMarks); + r181_slope = 0.015; + r181_expand = 0.175; + r181_coexpand = (1 - r181_expand) / 2; + r181_ssmootha = r1_SMOOTHA * 0.87; + r181_xn$putshapes$9Jrj(r181_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_OXHOOK + r1_JBALANCE / 2, r1_XH - r1_RHOOK)['set-width'](r1_STROKE, 0)['curve-to'](r1_MIDDLE + r1_BKAPPA * (r1_MIDDLE - r1_para['sb']) + r1_JBALANCE / 2, r1_XO, r1_MIDDLE + r1_JBALANCE * 0.75, r1_XO)['heads-to'](r1_LEFTWARD)['to-outline']()); + r181_xn$putshapes$9Jrj(r181_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r1_JBALANCE * 0.75, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_STROKE * r1_ITALICCOR + r1_RBALANCE, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']()); + r181_xn$putshapes$9Jrj(r181_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_RBALANCE, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB + r1_RBALANCE, r1_XH)['heads-to'](r1_UPWARD)['to-outline']()); + return void 0; + }); + r1_xn$createglyph$7Hrq('f.upright', function _r1_t92() { + var r183_xn$setwidth$9Jrj, r183_xn$assignunicode$7Hrq, r183_xn$startfrom$1aao, r183_xn$lineto$5sIl, r183_xn$curveto$1aao, r183_xn$cubicto$1aao, r183_xn$putshapes$9Jrj, r183_xn$reverselast$3qIs, r183_include, r183_xn$createstroke$7Hrq, r183_xn$setanchor$9Jrj, _r183_t0; + _r183_t0 = this; + r183_xn$setwidth$9Jrj = _r183_t0['set-width']['bind'](_r183_t0); + r183_xn$assignunicode$7Hrq = _r183_t0['assign-unicode']['bind'](_r183_t0); + r183_xn$startfrom$1aao = _r183_t0['start-from']['bind'](_r183_t0); + r183_xn$lineto$5sIl = _r183_t0['line-to']['bind'](_r183_t0); + r183_xn$curveto$1aao = _r183_t0['curve-to']['bind'](_r183_t0); + r183_xn$cubicto$1aao = _r183_t0['cubic-to']['bind'](_r183_t0); + r183_xn$putshapes$9Jrj = _r183_t0['put-shapes']['bind'](_r183_t0); + r183_xn$reverselast$3qIs = _r183_t0['reverse-last']['bind'](_r183_t0); + r183_include = _r183_t0['include']['bind'](_r183_t0); + r183_xn$createstroke$7Hrq = _r183_t0['create-stroke']['bind'](_r183_t0); + r183_xn$setanchor$9Jrj = _r183_t0['set-anchor']['bind'](_r183_t0); + _r183_t0['gizmo'] = r1_globalTransform; + _r183_t0['set-width'](r1_WIDTH); + r183_xn$setwidth$9Jrj(r1_WIDTH); + r183_include(r1_bMarks); + r183_xn$putshapes$9Jrj(r183_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP - r1_SHOOK * 1.4)['arc-vh-to'](r1_MIDDLE + r1_SHOOK * 2, r1_CAP - r1_HALFSTROKE - r1_O * 6)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r183_include(r1_glyphs['fbar']); + return void 0; + }); + r1_xn$createglyph$7Hrq('f.italic', function _r1_t93() { + var r185_xn$setwidth$9Jrj, r185_xn$assignunicode$7Hrq, r185_xn$startfrom$1aao, r185_xn$lineto$5sIl, r185_xn$curveto$1aao, r185_xn$cubicto$1aao, r185_xn$putshapes$9Jrj, r185_xn$reverselast$3qIs, r185_include, r185_xn$createstroke$7Hrq, r185_xn$setanchor$9Jrj, _r185_t0; + _r185_t0 = this; + r185_xn$setwidth$9Jrj = _r185_t0['set-width']['bind'](_r185_t0); + r185_xn$assignunicode$7Hrq = _r185_t0['assign-unicode']['bind'](_r185_t0); + r185_xn$startfrom$1aao = _r185_t0['start-from']['bind'](_r185_t0); + r185_xn$lineto$5sIl = _r185_t0['line-to']['bind'](_r185_t0); + r185_xn$curveto$1aao = _r185_t0['curve-to']['bind'](_r185_t0); + r185_xn$cubicto$1aao = _r185_t0['cubic-to']['bind'](_r185_t0); + r185_xn$putshapes$9Jrj = _r185_t0['put-shapes']['bind'](_r185_t0); + r185_xn$reverselast$3qIs = _r185_t0['reverse-last']['bind'](_r185_t0); + r185_include = _r185_t0['include']['bind'](_r185_t0); + r185_xn$createstroke$7Hrq = _r185_t0['create-stroke']['bind'](_r185_t0); + r185_xn$setanchor$9Jrj = _r185_t0['set-anchor']['bind'](_r185_t0); + _r185_t0['gizmo'] = r1_globalTransform; + _r185_t0['set-width'](r1_WIDTH); + r185_xn$setwidth$9Jrj(r1_WIDTH); + r185_include(r1_ifMarks); + r185_xn$putshapes$9Jrj(r185_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_SHOOK * 2, r1_HALFSTROKE + r1_O * 6 - r1_SHOOK)['heads-to'](r1_RIGHTWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['arc-hv-to'](r1_MIDDLE, 0)['line-to'](r1_MIDDLE, r1_CAP - r1_SHOOK)['arc-vh-to'](r1_MIDDLE + r1_SHOOK * 2, r1_CAP - r1_HALFSTROKE - r1_O * 6)['heads-to'](r1_RIGHTWARD)['to-outline']()); + r185_include(r1_glyphs['fbar']); + return void 0; + }); + r1_xn$createglyph$7Hrq('f', function _r1_t94() { + var r187_xn$setwidth$9Jrj, r187_xn$assignunicode$7Hrq, r187_xn$startfrom$1aao, r187_xn$lineto$5sIl, r187_xn$curveto$1aao, r187_xn$cubicto$1aao, r187_xn$putshapes$9Jrj, r187_xn$reverselast$3qIs, r187_include, r187_xn$createstroke$7Hrq, r187_xn$setanchor$9Jrj, _r187_t0; + _r187_t0 = this; + r187_xn$setwidth$9Jrj = _r187_t0['set-width']['bind'](_r187_t0); + r187_xn$assignunicode$7Hrq = _r187_t0['assign-unicode']['bind'](_r187_t0); + r187_xn$startfrom$1aao = _r187_t0['start-from']['bind'](_r187_t0); + r187_xn$lineto$5sIl = _r187_t0['line-to']['bind'](_r187_t0); + r187_xn$curveto$1aao = _r187_t0['curve-to']['bind'](_r187_t0); + r187_xn$cubicto$1aao = _r187_t0['cubic-to']['bind'](_r187_t0); + r187_xn$putshapes$9Jrj = _r187_t0['put-shapes']['bind'](_r187_t0); + r187_xn$reverselast$3qIs = _r187_t0['reverse-last']['bind'](_r187_t0); + r187_include = _r187_t0['include']['bind'](_r187_t0); + r187_xn$createstroke$7Hrq = _r187_t0['create-stroke']['bind'](_r187_t0); + r187_xn$setanchor$9Jrj = _r187_t0['set-anchor']['bind'](_r187_t0); + _r187_t0['gizmo'] = r1_globalTransform; + _r187_t0['set-width'](r1_WIDTH); + r187_xn$setwidth$9Jrj(r1_WIDTH); + r187_xn$assignunicode$7Hrq('f'); + if (r1_para['italicangle'] > 0) { + r187_include(r1_glyphs['f.italic'], true); + } else { + r187_include(r1_glyphs['f.upright'], true); + } + return void 0; + }); + return r1_font; + }; +} diff --git a/empty.json b/empty.json index 7f453c5..a998314 100644 --- a/empty.json +++ b/empty.json @@ -9,7 +9,14 @@ {"contours":[[{"x":34,"y":0,"onCurve":true},{"x":34,"y":682,"onCurve":true},{"x":306,"y":682,"onCurve":true},{"x":306,"y":0,"onCurve":true}],[{"x":68,"y":34,"onCurve":true},{"x":272,"y":34,"onCurve":true},{"x":272,"y":648,"onCurve":true},{"x":68,"y":648,"onCurve":true}]],"advanceWidth":500,"name":".notdef"} ], "cmap":{}, - "name":{"fontFamily":"fonteditor","fontSubFamily":"Medium","uniqueSubFamily":"FontEditor 1.0 : fonteditor : 6-10-2014","fullName":"fonteditor","version":"Version 1.0","postScriptName":"fonteditor"}, + "name":{ + "fontFamily": "node-sfnt", + "fontSubFamily": "regular", + "uniqueSubFamily": "node-sfnt blank font", + "fullName": "node-sfnt", + "version": "Version 1.0", + "postScriptName": "node-sfnt" + }, "hhea":{"version":1,"ascent":812,"descent":-212,"lineGap":92,"advanceWidthMax":374,"minLeftSideBearing":34,"minRightSideBearing":68,"xMaxExtent":306,"caretSlopeRise":1,"caretSlopeRun":0,"caretOffset":0,"reserved0":0,"reserved1":0,"reserved2":0,"reserved3":0,"metricDataFormat":0,"numOfLongHorMetrics":1}, "post":{"italicAngle":0,"postoints":65411,"underlinePosition":50,"underlineThickness":0,"isFixedPitch":0,"minMemType42":0,"maxMemType42":0,"minMemType1":0,"maxMemType1":1,"format":2}, "OS/2":{"version":4,"xAvgCharWidth":1031,"usWeightClass":400,"usWidthClass":5,"fsType":0,"ySubscriptXSize":665,"ySubscriptYSize":716,"ySubscriptXOffset":0,"ySubscriptYOffset":143,"ySuperscriptXSize":665,"ySuperscriptYSize":716,"ySuperscriptXOffset":0,"ySuperscriptYOffset":491,"yStrikeoutSize":51,"yStrikeoutPosition":265,"sFamilyClass":0,"bFamilyType":2,"bSerifStyle":0,"bWeight":6,"bProportion":3,"bContrast":0,"bStrokeVariation":0,"bArmStyle":0,"bLetterform":0,"bMidline":0,"bXHeight":0,"ulUnicodeRange1":1,"ulUnicodeRange2":268435456,"ulUnicodeRange3":0,"ulUnicodeRange4":0,"achVendID":"PfEd","fsSelection":192,"usFirstCharIndex":0,"usLastCharIndex":0,"sTypoAscender":812,"sTypoDescender":-212,"sTypoLineGap":92,"usWinAscent":812,"usWinDescent":212,"ulCodePageRange1":1,"ulCodePageRange2":0,"sxHeight":792,"sCapHeight":0,"usDefaultChar":0,"usBreakChar":32,"usMaxContext":1} diff --git a/font.js b/font.js deleted file mode 100644 index efd2ccd..0000000 --- a/font.js +++ /dev/null @@ -1,2450 +0,0 @@ -{ - var r0_font, r0_glyphList, r0_glyphs, r0_Glyph, r0_Stroke, r0_para_regular, r0_para_bold, r0_para_italic, r0_para_bolditalic, r0_variantSelector, r0_globalTransform, r0_ITALICCOR, r0_UPWARD, r0_DOWNWARD, r0_RIGHTWARD, r0_LEFTWARD, r0_DESCENDER, r0_WIDTH, r0_CAP, r0_XH, r0_O, r0_OXHOOK, r0_SB, r0_HOOK, r0_AHOOK, r0_SHOOK, r0_RHOOK, r0_SMOOTH, r0_SMALLSMOOTH, r0_STROKE, r0_DOTSIZE, r0_BARPOS, r0_GBARPOS, r0_LONGSERIF, r0_ACCENT, r0_XO, r0_CAPO, r0_HALFSTROKE, r0_RIGHTSB, r0_MIDDLE, r0_CAPMIDDLE, r0_CAP_SMOOTH, r0_DOTRADIUS, r0_SMOOTHA, r0_SMOOTHB, r0_SMALLSMOOTHA, r0_SMALLSMOOTHB, r0_ITALICCORS, r0_KAPPA, r0_COKAPPA, r0_BKAPPA, r0_COBKAPPA, r0_KAPPA_HOOK, r0_KAPPA_AHOOK, r0_TAILADJX, r0_TAILADJY, r0_TAILADJKAPPA, r0_TAILADJSX, r0_TAILADJSY, r0_TAILADJSKAPPA, r0_ILBALANCE, r0_JBALANCE, r0_TBALANCE, r0_TBALANCE2, r0_RBALANCE, r0_BASE, r0_MARK, r0_MARKBASE, r0_tm, r0_markAboveLower, r0_markAboveCap, r0_markBelowLower, r0_markBelowZero, r0_capitalMarks, r0_bMarks, r0_eMarks, r0_pMarks, r0_ifMarks, r0_Ring, r0_ORing, r0_leftwardTopSerif, r0_leftwardBottomSerif, r0_rightwardTopSerif, r0_rightwardBottomSerif, r0_xn$createglyph$7Hrq, r0_para, _r0_t0, _r0_t1, _r0_t2, _r0_t3, _r0_t4, _r0_t5, _r0_t6, _r0_t7, _r0_t8, _r0_t9, _r0_t10, _r0_t11, _r0_t12, _r0_t13, _r0_t14, _r0_t15, _r0_t16, _r0_t17, _r0_t18, _r0_t19, _r0_t20, _r0_t21, _r0_t22, _r0_t23, _r0_t24, _r0_t25, _r0_t26, _r0_t27, _r0_t28, _r0_t29, _r0_t30, _r0_t31, _r0_t32, _r0_t33, _r0_t34, _r0_t35, _r0_t36, _r0_t37, _r0_t38, _r0_t39, _r0_t40, _r0_t41, _r0_t42, _r0_t43, _r0_t44, _r0_t45, _r0_t46, _r0_t47, _r0_t48, _r0_t49, _r0_t50, _r0_t51, _r0_t52, _r0_t53, _r0_t54, _r0_t55, _r0_t56, _r0_t57, _r0_t58, _r0_t59, _r0_t60, _r0_t61, _r0_t62, _r0_t63, _r0_t64, _r0_t65, _r0_t66, _r0_t67, _r0_t68, _r0_t69, _r0_t70, _r0_t71, _r0_t72, _r0_t73, _r0_t74, _r0_t75, _r0_t76, _r0_t77, _r0_t78, _r0_t79, _r0_t80, _r0_t81, _r0_t82, _r0_t83, _r0_t84, _r0_t85, _r0_t86, _r0_t87, _r0_t88, _r0_t89, _r0_t90, _r0_t91, _r0_t92, _r0_t93, _r0_t94; - r0_font = require('./empty.json'); - exports['font'] = r0_font; - r0_glyphList = r0_font['glyf']; - r0_glyphs = { '.notdef': r0_glyphList[0] }; - r0_Glyph = require('./support/glyph')['Glyph']; - r0_Stroke = require('./support/stroke')['Stroke']; - r0_para_regular = { - 'width': 500, - 'stroke': 80, - 'dotsize': 125, - 'sb': 60, - 'cap': 771, - 'xheight': 560, - 'hook': 145, - 'ahook': 135, - 'shook': 100, - 'rhook': 75, - 'smooth': 192, - 'smallsmooth': 242, - 'smoothadjust': 100, - 'o': -8, - 'oxhook': 0, - 'descender': -178, - 'kappa': 0.515, - 'italicangle': 0, - 'barpos': 0.45, - 'gbarpos': 0.37, - 'longserif': 175, - 'accent': 175, - 'tbalance': 70, - 'tbalance2': 30, - 'rbalance': 25 - }; - r0_para_bold = Object['create'](r0_para_regular); - r0_para_bold['sb'] = 50; - r0_para_bold['stroke'] = 120; - r0_para_bold['dotsize'] = 160; - r0_para_bold['barpos'] = 0.42; - r0_para_bold['hook'] = 150; - r0_para_bold['ahook'] = 100; - r0_para_bold['oxhook'] = 0; - r0_para_bold['kappa_hook'] = 0.7; - r0_para_bold['kappa_ahook'] = 0.6; - r0_para_bold['jbalance'] = 60; - r0_para_bold['tbalance'] = 60; - r0_para_bold['rbalance'] = 18; - r0_para_italic = Object['create'](r0_para_regular); - r0_para_italic['italicangle'] = 10; - r0_para_italic['tbalance'] = 70; - r0_para_italic['rbalance'] = 30; - r0_para_bolditalic = Object['create'](r0_para_bold); - r0_para_bolditalic['italicangle'] = 10; - r0_para_bolditalic['tbalance'] = 90; - r0_para = r0_para_italic; - r0_variantSelector = { 'zero': 'slashed' }; - r0_globalTransform = { - 'xx': 1, - 'yx': Math['tan'](r0_para['italicangle'] / 180 * Math['PI']), - 'xy': 0, - 'yy': 1, - 'x': 0, - 'y': 0 - }; - r0_ITALICCOR = 1 / Math['sqrt'](1 - r0_globalTransform['yx'] * r0_globalTransform['yx']); - r0_UPWARD = { - 'x': -r0_ITALICCOR, - 'y': 0 - }; - r0_DOWNWARD = { - 'x': r0_ITALICCOR, - 'y': 0 - }; - r0_RIGHTWARD = { - 'x': r0_globalTransform['yx'], - 'y': 1 - }; - r0_LEFTWARD = { - 'x': -r0_globalTransform['yx'], - 'y': -1 - }; - r0_DESCENDER = r0_para['descender']; - r0_WIDTH = r0_para['width']; - r0_CAP = r0_para['cap']; - r0_XH = r0_para['xheight']; - r0_O = r0_para['o']; - r0_OXHOOK = r0_para['oxhook']; - r0_SB = r0_para['sb']; - r0_HOOK = r0_para['hook']; - r0_AHOOK = r0_para['ahook']; - r0_SHOOK = r0_para['shook']; - r0_RHOOK = r0_para['rhook']; - r0_SMOOTH = r0_para['smooth']; - r0_SMALLSMOOTH = r0_para['smallsmooth']; - r0_STROKE = r0_para['stroke']; - r0_DOTSIZE = r0_para['dotsize']; - r0_BARPOS = r0_para['barpos']; - r0_GBARPOS = r0_para['gbarpos']; - r0_LONGSERIF = r0_para['longserif']; - r0_ACCENT = r0_para['accent']; - r0_XO = r0_XH - r0_O; - r0_CAPO = r0_CAP - r0_O; - r0_HALFSTROKE = r0_STROKE / 2; - r0_RIGHTSB = r0_WIDTH - r0_SB; - r0_MIDDLE = r0_WIDTH / 2; - r0_CAPMIDDLE = r0_CAP / 2; - r0_CAP_SMOOTH = r0_CAP - r0_SMOOTH; - r0_DOTRADIUS = r0_para['dotsize'] / 2; - r0_SMOOTHA = r0_SMOOTH - r0_globalTransform['yx'] * r0_para['smoothadjust']; - r0_SMOOTHB = r0_SMOOTH + r0_globalTransform['yx'] * r0_para['smoothadjust']; - r0_SMALLSMOOTHA = r0_SMALLSMOOTH - r0_globalTransform['yx'] * r0_para['smoothadjust']; - r0_SMALLSMOOTHB = r0_SMALLSMOOTH + r0_globalTransform['yx'] * r0_para['smoothadjust']; - r0_ITALICCORS = r0_STROKE * r0_globalTransform['yx']; - r0_KAPPA = r0_para['kappa']; - r0_COKAPPA = 1 - r0_KAPPA; - r0_BKAPPA = r0_KAPPA + 0.1; - r0_COBKAPPA = 1 - r0_BKAPPA; - r0_KAPPA_HOOK = r0_para['kappa_hook'] || 0.7; - r0_KAPPA_AHOOK = r0_para['kappa_ahook'] || r0_KAPPA_HOOK; - r0_TAILADJX = r0_WIDTH * 0.2; - r0_TAILADJY = r0_XH * 0.25; - r0_TAILADJKAPPA = 0.75; - r0_TAILADJSX = r0_WIDTH * 0.2; - r0_TAILADJSY = 0; - r0_TAILADJSKAPPA = 0.75; - r0_ILBALANCE = r0_LONGSERIF * 0.04; - r0_JBALANCE = r0_para['jbalance'] || r0_HALFSTROKE + r0_ILBALANCE; - r0_TBALANCE = r0_para['tbalance'] || r0_JBALANCE; - r0_TBALANCE2 = r0_para['tbalance2'] || r0_TBALANCE; - r0_RBALANCE = r0_para['rbalance'] || r0_JBALANCE * 0.3; - r0_BASE = 'base'; - r0_MARK = 'mark'; - r0_MARKBASE = 'markbase'; - r0_tm = function _r0_t0(r1_anchor) { - var r1_anchor; - return { - 'x': r1_anchor['x'] * r0_globalTransform['xx'] + r1_anchor['y'] * r0_globalTransform['yx'] + r0_globalTransform['x'], - 'y': r1_anchor['x'] * r0_globalTransform['xy'] + r1_anchor['y'] * r0_globalTransform['yy'] + r0_globalTransform['y'], - 'type': r1_anchor['type'] - }; - }; - r0_markAboveLower = { - 'anchors': { - 'above': r0_tm({ - 'x': r0_MIDDLE, - 'y': r0_XH, - 'type': r0_BASE - }) - } - }; - r0_markAboveCap = { - 'anchors': { - 'above': r0_tm({ - 'x': r0_MIDDLE, - 'y': r0_CAP, - 'type': r0_BASE - }) - } - }; - r0_markBelowLower = { - 'anchors': { - 'below': r0_tm({ - 'x': r0_MIDDLE, - 'y': r0_DESCENDER, - 'type': r0_BASE - }) - } - }; - r0_markBelowZero = { - 'anchors': { - 'below': r0_tm({ - 'x': r0_MIDDLE, - 'y': 0, - 'type': r0_BASE - }) - } - }; - r0_capitalMarks = { - 'anchors': { - 'above': r0_markAboveCap['anchors']['above'], - 'below': r0_markBelowZero['anchors']['below'] - } - }; - r0_bMarks = { - 'anchors': { - 'above': r0_markAboveCap['anchors']['above'], - 'below': r0_markBelowZero['anchors']['below'] - } - }; - r0_eMarks = { - 'anchors': { - 'above': r0_markAboveLower['anchors']['above'], - 'below': r0_markBelowZero['anchors']['below'] - } - }; - r0_pMarks = { - 'anchors': { - 'above': r0_markAboveLower['anchors']['above'], - 'below': r0_markBelowLower['anchors']['below'] - } - }; - r0_ifMarks = { - 'anchors': { - 'above': r0_markAboveCap['anchors']['above'], - 'below': r0_markBelowLower['anchors']['below'] - } - }; - r0_Stroke['bindParameters'](r0_para); - r0_Ring = function _r0_t1(r2_u, r2_d, r2_l, r2_r) { - var r2_u, r2_d, r2_l, r2_r, r2_my, r2_mx, r2_s; - r2_my = (r2_u + r2_d) / 2; - r2_mx = (r2_l + r2_r) / 2; - r2_s = new r0_Stroke()['set-transform'](r0_globalTransform)['start-from'](r2_mx, r2_d)['cubic-to'](r2_mx + (r2_l - r2_mx) * r0_BKAPPA, r2_d, r2_l, r2_my + (r2_d - r2_my) * r0_BKAPPA, r2_l, r2_my)['cubic-to'](r2_l, r2_my + (r2_u - r2_my) * r0_BKAPPA, r2_mx + (r2_l - r2_mx) * r0_BKAPPA, r2_u, r2_mx, r2_u)['cubic-to'](r2_mx + (r2_r - r2_mx) * r0_BKAPPA, r2_u, r2_r, r2_my + (r2_u - r2_my) * r0_BKAPPA, r2_r, r2_my)['cubic-to'](r2_r, r2_my + (r2_d - r2_my) * r0_BKAPPA, r2_mx + (r2_r - r2_mx) * r0_BKAPPA, r2_d, r2_mx, r2_d); - return r2_s['points']; - }; - r0_ORing = function _r0_t2(r3_u, r3_d, r3_l, r3_r, r3_smooth) { - var r3_u, r3_d, r3_l, r3_r, r3_smooth, r3_myu, r3_myd, r3_mx, r3_s; - r3_myu = r3_u - r3_smooth; - r3_myd = r3_d + r3_smooth; - r3_mx = (r3_l + r3_r) / 2; - r3_s = new r0_Stroke()['set-transform'](r0_globalTransform)['start-from'](r3_mx, r3_d)['cubic-to'](r3_mx + (r3_l - r3_mx) * r0_BKAPPA, r3_d, r3_l, r3_myd + (r3_d - r3_myd) * r0_BKAPPA, r3_l, r3_myd)['line-to'](r3_l, r3_myu)['cubic-to'](r3_l, r3_myu + (r3_u - r3_myu) * r0_BKAPPA, r3_mx + (r3_l - r3_mx) * r0_BKAPPA, r3_u, r3_mx, r3_u)['cubic-to'](r3_mx + (r3_r - r3_mx) * r0_BKAPPA, r3_u, r3_r, r3_myu + (r3_u - r3_myu) * r0_BKAPPA, r3_r, r3_myu)['line-to'](r3_r, r3_myd)['cubic-to'](r3_r, r3_myd + (r3_d - r3_myd) * r0_BKAPPA, r3_mx + (r3_r - r3_mx) * r0_BKAPPA, r3_d, r3_mx, r3_d); - return r3_s['points']; - }; - r0_leftwardTopSerif = function _r0_t3(r4_x, r4_y, r4_length) { - var r4_x, r4_y, r4_length; - return new r0_Stroke()['set-transform'](r0_globalTransform)['start-from'](r4_x + r0_HALFSTROKE, r4_y)['heads-to'](r0_LEFTWARD)['set-width'](r0_STROKE, 0)['line-to'](r4_x - r4_length - r0_globalTransform['yx'] * r0_STROKE, r4_y)['to-outline'](); - }; - r0_leftwardBottomSerif = function _r0_t4(r5_x, r5_y, r5_length) { - var r5_x, r5_y, r5_length; - return new r0_Stroke()['set-transform'](r0_globalTransform)['start-from'](r5_x + r0_HALFSTROKE, r5_y)['heads-to'](r0_LEFTWARD)['set-width'](0, r0_STROKE)['line-to'](r5_x - r5_length + r0_globalTransform['yx'] * r0_STROKE, r5_y)['to-outline'](); - }; - r0_rightwardTopSerif = function _r0_t5(r6_x, r6_y, r6_length) { - var r6_x, r6_y, r6_length; - return new r0_Stroke()['set-transform'](r0_globalTransform)['start-from'](r6_x - r0_HALFSTROKE, r6_y)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['line-to'](r6_x + r6_length - r0_globalTransform['yx'] * r0_STROKE, r6_y)['to-outline'](); - }; - r0_rightwardBottomSerif = function _r0_t6(r7_x, r7_y, r7_length) { - var r7_x, r7_y, r7_length; - return new r0_Stroke()['set-transform'](r0_globalTransform)['start-from'](r7_x - r0_HALFSTROKE, r7_y)['heads-to'](r0_RIGHTWARD)['set-width'](r0_STROKE, 0)['line-to'](r7_x + r7_length + r0_globalTransform['yx'] * r0_STROKE, r7_y)['to-outline'](); - }; - r0_xn$createglyph$7Hrq = function _r0_t7(r12_name, r12_actions) { - var r12_name, r12_actions, r12_glyphObject; - r12_glyphObject = new r0_Glyph(r12_name); - r0_glyphList['push'](r12_glyphObject); - r0_glyphs[r12_name] = r12_glyphObject; - r12_actions['call'](r12_glyphObject); - return r12_glyphObject; - }; - r0_xn$createglyph$7Hrq('space', function _r0_t8() { - var r14_xn$setwidth$9Jrj, r14_xn$assignunicode$7Hrq, r14_xn$startfrom$1aao, r14_xn$lineto$5sIl, r14_xn$curveto$1aao, r14_xn$cubicto$1aao, r14_xn$putshapes$9Jrj, r14_xn$reverselast$3qIs, r14_include, r14_xn$createstroke$7Hrq, r14_xn$setanchor$9Jrj, _r14_t0; - _r14_t0 = this; - r14_xn$setwidth$9Jrj = _r14_t0['set-width']['bind'](_r14_t0); - r14_xn$assignunicode$7Hrq = _r14_t0['assign-unicode']['bind'](_r14_t0); - r14_xn$startfrom$1aao = _r14_t0['start-from']['bind'](_r14_t0); - r14_xn$lineto$5sIl = _r14_t0['line-to']['bind'](_r14_t0); - r14_xn$curveto$1aao = _r14_t0['curve-to']['bind'](_r14_t0); - r14_xn$cubicto$1aao = _r14_t0['cubic-to']['bind'](_r14_t0); - r14_xn$putshapes$9Jrj = _r14_t0['put-shapes']['bind'](_r14_t0); - r14_xn$reverselast$3qIs = _r14_t0['reverse-last']['bind'](_r14_t0); - r14_include = _r14_t0['include']['bind'](_r14_t0); - r14_xn$createstroke$7Hrq = _r14_t0['create-stroke']['bind'](_r14_t0); - r14_xn$setanchor$9Jrj = _r14_t0['set-anchor']['bind'](_r14_t0); - _r14_t0['gizmo'] = r0_globalTransform; - _r14_t0['set-width'](r0_WIDTH); - r14_xn$setwidth$9Jrj(r0_WIDTH); - r14_xn$assignunicode$7Hrq(' '); - return void 0; - }); - r0_xn$createglyph$7Hrq('bar', function _r0_t9() { - var r16_xn$setwidth$9Jrj, r16_xn$assignunicode$7Hrq, r16_xn$startfrom$1aao, r16_xn$lineto$5sIl, r16_xn$curveto$1aao, r16_xn$cubicto$1aao, r16_xn$putshapes$9Jrj, r16_xn$reverselast$3qIs, r16_include, r16_xn$createstroke$7Hrq, r16_xn$setanchor$9Jrj, _r16_t0; - _r16_t0 = this; - r16_xn$setwidth$9Jrj = _r16_t0['set-width']['bind'](_r16_t0); - r16_xn$assignunicode$7Hrq = _r16_t0['assign-unicode']['bind'](_r16_t0); - r16_xn$startfrom$1aao = _r16_t0['start-from']['bind'](_r16_t0); - r16_xn$lineto$5sIl = _r16_t0['line-to']['bind'](_r16_t0); - r16_xn$curveto$1aao = _r16_t0['curve-to']['bind'](_r16_t0); - r16_xn$cubicto$1aao = _r16_t0['cubic-to']['bind'](_r16_t0); - r16_xn$putshapes$9Jrj = _r16_t0['put-shapes']['bind'](_r16_t0); - r16_xn$reverselast$3qIs = _r16_t0['reverse-last']['bind'](_r16_t0); - r16_include = _r16_t0['include']['bind'](_r16_t0); - r16_xn$createstroke$7Hrq = _r16_t0['create-stroke']['bind'](_r16_t0); - r16_xn$setanchor$9Jrj = _r16_t0['set-anchor']['bind'](_r16_t0); - _r16_t0['gizmo'] = r0_globalTransform; - _r16_t0['set-width'](r0_WIDTH); - r16_xn$setwidth$9Jrj(r0_WIDTH); - r16_xn$assignunicode$7Hrq('|'); - r16_xn$putshapes$9Jrj(r16_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_DESCENDER / 2)['set-width'](r0_STROKE / 2, r0_STROKE / 2)['line-to'](r0_MIDDLE, r0_CAP - r0_DESCENDER / 2)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('A', function _r0_t10() { - var r18_xn$setwidth$9Jrj, r18_xn$assignunicode$7Hrq, r18_xn$startfrom$1aao, r18_xn$lineto$5sIl, r18_xn$curveto$1aao, r18_xn$cubicto$1aao, r18_xn$putshapes$9Jrj, r18_xn$reverselast$3qIs, r18_include, r18_xn$createstroke$7Hrq, r18_xn$setanchor$9Jrj, r18_TURN, r18_leftbar, r18_rightbar, r18_hbar, _r18_t0; - _r18_t0 = this; - r18_xn$setwidth$9Jrj = _r18_t0['set-width']['bind'](_r18_t0); - r18_xn$assignunicode$7Hrq = _r18_t0['assign-unicode']['bind'](_r18_t0); - r18_xn$startfrom$1aao = _r18_t0['start-from']['bind'](_r18_t0); - r18_xn$lineto$5sIl = _r18_t0['line-to']['bind'](_r18_t0); - r18_xn$curveto$1aao = _r18_t0['curve-to']['bind'](_r18_t0); - r18_xn$cubicto$1aao = _r18_t0['cubic-to']['bind'](_r18_t0); - r18_xn$putshapes$9Jrj = _r18_t0['put-shapes']['bind'](_r18_t0); - r18_xn$reverselast$3qIs = _r18_t0['reverse-last']['bind'](_r18_t0); - r18_include = _r18_t0['include']['bind'](_r18_t0); - r18_xn$createstroke$7Hrq = _r18_t0['create-stroke']['bind'](_r18_t0); - r18_xn$setanchor$9Jrj = _r18_t0['set-anchor']['bind'](_r18_t0); - _r18_t0['gizmo'] = r0_globalTransform; - _r18_t0['set-width'](r0_WIDTH); - r18_xn$setwidth$9Jrj(r0_WIDTH); - r18_xn$assignunicode$7Hrq('A'); - r18_include(r0_capitalMarks); - r18_TURN = r0_XH * 0.1; - r18_leftbar = r18_xn$createstroke$7Hrq(); - r18_leftbar['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB, r18_TURN)['heads-to'](r0_UPWARD)['curve-to'](r0_SB, r18_TURN + 0.27 * (r0_CAP - r18_TURN), r0_MIDDLE - r0_STROKE / 2, r0_CAP)['set-width'](0, r0_STROKE * 0.8); - r18_rightbar = r18_xn$createstroke$7Hrq(); - r18_rightbar['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r18_TURN)['heads-to'](r0_UPWARD)['curve-to'](r0_RIGHTSB, r18_TURN + 0.27 * (r0_CAP - r18_TURN), r0_MIDDLE + r0_STROKE / 2, r0_CAP)['set-width'](r0_STROKE * 0.8, 0); - r18_hbar = r18_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_STROKE, r0_XH / 2)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB - r0_STROKE, r0_XH / 2)['heads-to'](r0_RIGHTWARD); - r18_xn$putshapes$9Jrj(r18_leftbar['to-outline']()); - r18_xn$putshapes$9Jrj(r18_hbar['to-outline']()); - r18_xn$putshapes$9Jrj(r18_rightbar['to-outline']()); - r18_xn$startfrom$1aao(r0_MIDDLE - r0_STROKE / 2, r0_CAP); - r18_xn$lineto$5sIl(r0_MIDDLE + r0_STROKE / 2, r0_CAP); - r18_xn$lineto$5sIl(r0_MIDDLE, r0_CAP - r0_STROKE); - return void 0; - }); - r0_xn$createglyph$7Hrq('V', function _r0_t11() { - var r20_xn$setwidth$9Jrj, r20_xn$assignunicode$7Hrq, r20_xn$startfrom$1aao, r20_xn$lineto$5sIl, r20_xn$curveto$1aao, r20_xn$cubicto$1aao, r20_xn$putshapes$9Jrj, r20_xn$reverselast$3qIs, r20_include, r20_xn$createstroke$7Hrq, r20_xn$setanchor$9Jrj, r20_TURN, r20_leftbar, r20_rightbar, _r20_t0; - _r20_t0 = this; - r20_xn$setwidth$9Jrj = _r20_t0['set-width']['bind'](_r20_t0); - r20_xn$assignunicode$7Hrq = _r20_t0['assign-unicode']['bind'](_r20_t0); - r20_xn$startfrom$1aao = _r20_t0['start-from']['bind'](_r20_t0); - r20_xn$lineto$5sIl = _r20_t0['line-to']['bind'](_r20_t0); - r20_xn$curveto$1aao = _r20_t0['curve-to']['bind'](_r20_t0); - r20_xn$cubicto$1aao = _r20_t0['cubic-to']['bind'](_r20_t0); - r20_xn$putshapes$9Jrj = _r20_t0['put-shapes']['bind'](_r20_t0); - r20_xn$reverselast$3qIs = _r20_t0['reverse-last']['bind'](_r20_t0); - r20_include = _r20_t0['include']['bind'](_r20_t0); - r20_xn$createstroke$7Hrq = _r20_t0['create-stroke']['bind'](_r20_t0); - r20_xn$setanchor$9Jrj = _r20_t0['set-anchor']['bind'](_r20_t0); - _r20_t0['gizmo'] = r0_globalTransform; - _r20_t0['set-width'](r0_WIDTH); - r20_xn$setwidth$9Jrj(r0_WIDTH); - r20_xn$assignunicode$7Hrq('V'); - r20_include(r0_capitalMarks); - r20_TURN = r0_CAP * 0.9; - r20_leftbar = r20_xn$createstroke$7Hrq(); - r20_leftbar['start-from'](r0_SB, r0_CAP)['heads-to'](r0_DOWNWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_SB, r20_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_SB, (1 - 0.27) * r20_TURN, r0_MIDDLE - r0_STROKE / 2, 0)['set-width'](r0_STROKE * 0.8, 0); - r20_rightbar = r20_xn$createstroke$7Hrq(); - r20_rightbar['start-from'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r20_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_RIGHTSB, (1 - 0.27) * r20_TURN, r0_MIDDLE + r0_STROKE / 2, 0)['set-width'](0, r0_STROKE * 0.8); - r20_xn$putshapes$9Jrj(r20_leftbar['to-outline']()); - r20_xn$putshapes$9Jrj(r20_rightbar['to-outline']()); - r20_xn$startfrom$1aao(r0_MIDDLE + r0_STROKE / 2, 0); - r20_xn$lineto$5sIl(r0_MIDDLE - r0_STROKE / 2, 0); - r20_xn$lineto$5sIl(r0_MIDDLE, r0_STROKE); - return void 0; - }); - r0_xn$createglyph$7Hrq('W', function _r0_t12() { - var r22_xn$setwidth$9Jrj, r22_xn$assignunicode$7Hrq, r22_xn$startfrom$1aao, r22_xn$lineto$5sIl, r22_xn$curveto$1aao, r22_xn$cubicto$1aao, r22_xn$putshapes$9Jrj, r22_xn$reverselast$3qIs, r22_include, r22_xn$createstroke$7Hrq, r22_xn$setanchor$9Jrj, r22_TURN, r22_turn2, r22_wheight, r22_bottomStroke, r22_m1, r22_m2, _r22_t0; - _r22_t0 = this; - r22_xn$setwidth$9Jrj = _r22_t0['set-width']['bind'](_r22_t0); - r22_xn$assignunicode$7Hrq = _r22_t0['assign-unicode']['bind'](_r22_t0); - r22_xn$startfrom$1aao = _r22_t0['start-from']['bind'](_r22_t0); - r22_xn$lineto$5sIl = _r22_t0['line-to']['bind'](_r22_t0); - r22_xn$curveto$1aao = _r22_t0['curve-to']['bind'](_r22_t0); - r22_xn$cubicto$1aao = _r22_t0['cubic-to']['bind'](_r22_t0); - r22_xn$putshapes$9Jrj = _r22_t0['put-shapes']['bind'](_r22_t0); - r22_xn$reverselast$3qIs = _r22_t0['reverse-last']['bind'](_r22_t0); - r22_include = _r22_t0['include']['bind'](_r22_t0); - r22_xn$createstroke$7Hrq = _r22_t0['create-stroke']['bind'](_r22_t0); - r22_xn$setanchor$9Jrj = _r22_t0['set-anchor']['bind'](_r22_t0); - _r22_t0['gizmo'] = r0_globalTransform; - _r22_t0['set-width'](r0_WIDTH); - r22_xn$setwidth$9Jrj(r0_WIDTH); - r22_xn$assignunicode$7Hrq('W'); - r22_include(r0_capitalMarks); - r22_TURN = r0_CAP * 0.75; - r22_turn2 = r0_CAP * 0.59; - r22_wheight = r0_CAP * 0.6; - r22_bottomStroke = Math['min'](r0_STROKE * 0.8, (r0_WIDTH - r0_SB * 2) * 0.175); - r22_m1 = r0_WIDTH * 0.3; - r22_m2 = r0_WIDTH * 0.7; - r22_xn$putshapes$9Jrj(r22_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_CAP)['heads-to'](r0_DOWNWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_SB, r22_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_SB, (1 - 0.27) * r22_TURN, r22_m1 - r22_bottomStroke / 2, 0)['set-width'](r22_bottomStroke, 0)['to-outline']()); - r22_xn$putshapes$9Jrj(r22_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r22_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_RIGHTSB, (1 - 0.27) * r22_TURN, r22_m2 + r22_bottomStroke / 2, 0)['set-width'](0, r22_bottomStroke)['to-outline']()); - r22_xn$putshapes$9Jrj(r22_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE + r22_bottomStroke / 2, r22_wheight)['heads-to'](r0_DOWNWARD)['set-width'](0, r22_bottomStroke)['line-to'](r0_MIDDLE + r22_bottomStroke / 2, r22_turn2)['heads-to'](r0_DOWNWARD)['curve-to'](r0_MIDDLE + r22_bottomStroke / 2, (1 - 0.1) * r22_turn2, r22_m1 + r22_bottomStroke / 2, 0)['set-width'](0, r22_bottomStroke)['to-outline']()); - r22_xn$putshapes$9Jrj(r22_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE - r22_bottomStroke / 2, r22_wheight)['heads-to'](r0_DOWNWARD)['set-width'](r22_bottomStroke, 0)['line-to'](r0_MIDDLE - r22_bottomStroke / 2, r22_turn2)['heads-to'](r0_DOWNWARD)['curve-to'](r0_MIDDLE - r22_bottomStroke / 2, (1 - 0.1) * r22_turn2, r22_m2 - r22_bottomStroke / 2, 0)['set-width'](r22_bottomStroke, 0)['to-outline']()); - r22_xn$startfrom$1aao(r22_m1 + r22_bottomStroke / 2, 0); - r22_xn$lineto$5sIl(r22_m1 - r22_bottomStroke / 2, 0); - r22_xn$lineto$5sIl(r22_m1, r22_bottomStroke); - r22_xn$startfrom$1aao(r22_m2 + r22_bottomStroke / 2, 0); - r22_xn$lineto$5sIl(r22_m2 - r22_bottomStroke / 2, 0); - r22_xn$lineto$5sIl(r22_m2, r22_bottomStroke); - return void 0; - }); - r0_xn$createglyph$7Hrq('X', function _r0_t13() { - var r24_xn$setwidth$9Jrj, r24_xn$assignunicode$7Hrq, r24_xn$startfrom$1aao, r24_xn$lineto$5sIl, r24_xn$curveto$1aao, r24_xn$cubicto$1aao, r24_xn$putshapes$9Jrj, r24_xn$reverselast$3qIs, r24_include, r24_xn$createstroke$7Hrq, r24_xn$setanchor$9Jrj, r24_TURN, r24_straight, r24_strench, r24_barone, r24_bartwo, _r24_t0; - _r24_t0 = this; - r24_xn$setwidth$9Jrj = _r24_t0['set-width']['bind'](_r24_t0); - r24_xn$assignunicode$7Hrq = _r24_t0['assign-unicode']['bind'](_r24_t0); - r24_xn$startfrom$1aao = _r24_t0['start-from']['bind'](_r24_t0); - r24_xn$lineto$5sIl = _r24_t0['line-to']['bind'](_r24_t0); - r24_xn$curveto$1aao = _r24_t0['curve-to']['bind'](_r24_t0); - r24_xn$cubicto$1aao = _r24_t0['cubic-to']['bind'](_r24_t0); - r24_xn$putshapes$9Jrj = _r24_t0['put-shapes']['bind'](_r24_t0); - r24_xn$reverselast$3qIs = _r24_t0['reverse-last']['bind'](_r24_t0); - r24_include = _r24_t0['include']['bind'](_r24_t0); - r24_xn$createstroke$7Hrq = _r24_t0['create-stroke']['bind'](_r24_t0); - r24_xn$setanchor$9Jrj = _r24_t0['set-anchor']['bind'](_r24_t0); - _r24_t0['gizmo'] = r0_globalTransform; - _r24_t0['set-width'](r0_WIDTH); - r24_xn$setwidth$9Jrj(r0_WIDTH); - r24_xn$assignunicode$7Hrq('X'); - r24_include(r0_capitalMarks); - r24_TURN = r0_XH * 0.05; - r24_straight = 0.6; - r24_strench = 0.125; - r24_barone = r24_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_HALFSTROKE, 0)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['heads-to'](r0_UPWARD)['line-to'](r0_SB + r0_HALFSTROKE, r24_TURN)['curve-to'](r0_SB + r0_HALFSTROKE, r24_TURN + r24_strench * (r0_CAP - r24_TURN), r0_MIDDLE + r24_straight * (r0_SB + r0_HALFSTROKE - r0_MIDDLE), r0_CAPMIDDLE + r24_straight * (r24_TURN + r24_strench * (r0_CAP - r24_TURN) - r0_CAPMIDDLE))['line-to'](r0_MIDDLE + r24_straight * (r0_RIGHTSB - r0_HALFSTROKE - r0_MIDDLE), r0_CAPMIDDLE + r24_straight * (r0_CAP - r24_TURN - r24_strench * (r0_CAP - r24_TURN) - r0_CAPMIDDLE))['curve-to'](r0_RIGHTSB - r0_HALFSTROKE, r0_CAP - r24_TURN - r24_strench * (r0_CAP - r24_TURN), r0_RIGHTSB - r0_HALFSTROKE, r0_CAP - r24_TURN)['line-to'](r0_RIGHTSB - r0_HALFSTROKE, r0_CAP)['heads-to'](r0_UPWARD); - r24_bartwo = r24_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB - r0_HALFSTROKE, 0)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['heads-to'](r0_UPWARD)['line-to'](r0_RIGHTSB - r0_HALFSTROKE, r24_TURN)['curve-to'](r0_RIGHTSB - r0_HALFSTROKE, r24_TURN + r24_strench * (r0_CAP - r24_TURN), r0_MIDDLE + r24_straight * (r0_RIGHTSB - r0_HALFSTROKE - r0_MIDDLE), r0_CAPMIDDLE + r24_straight * (r24_TURN + r24_strench * (r0_CAP - r24_TURN) - r0_CAPMIDDLE))['line-to'](r0_MIDDLE + r24_straight * (r0_SB + r0_HALFSTROKE - r0_MIDDLE), r0_CAPMIDDLE + r24_straight * (r0_CAP - r24_TURN - r24_strench * (r0_CAP - r24_TURN) - r0_CAPMIDDLE))['curve-to'](r0_SB + r0_HALFSTROKE, r0_CAP - r24_TURN - r24_strench * (r0_CAP - r24_TURN), r0_SB + r0_HALFSTROKE, r0_CAP - r24_TURN)['line-to'](r0_SB + r0_HALFSTROKE, r0_CAP)['heads-to'](r0_UPWARD); - r24_xn$putshapes$9Jrj(r24_barone['to-outline']()); - r24_xn$putshapes$9Jrj(r24_bartwo['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('Y', function _r0_t14() { - var r26_xn$setwidth$9Jrj, r26_xn$assignunicode$7Hrq, r26_xn$startfrom$1aao, r26_xn$lineto$5sIl, r26_xn$curveto$1aao, r26_xn$cubicto$1aao, r26_xn$putshapes$9Jrj, r26_xn$reverselast$3qIs, r26_include, r26_xn$createstroke$7Hrq, r26_xn$setanchor$9Jrj, r26_TURN, r26_straight, r26_strench, r26_cross, r26_barone, r26_bartwo, _r26_t0; - _r26_t0 = this; - r26_xn$setwidth$9Jrj = _r26_t0['set-width']['bind'](_r26_t0); - r26_xn$assignunicode$7Hrq = _r26_t0['assign-unicode']['bind'](_r26_t0); - r26_xn$startfrom$1aao = _r26_t0['start-from']['bind'](_r26_t0); - r26_xn$lineto$5sIl = _r26_t0['line-to']['bind'](_r26_t0); - r26_xn$curveto$1aao = _r26_t0['curve-to']['bind'](_r26_t0); - r26_xn$cubicto$1aao = _r26_t0['cubic-to']['bind'](_r26_t0); - r26_xn$putshapes$9Jrj = _r26_t0['put-shapes']['bind'](_r26_t0); - r26_xn$reverselast$3qIs = _r26_t0['reverse-last']['bind'](_r26_t0); - r26_include = _r26_t0['include']['bind'](_r26_t0); - r26_xn$createstroke$7Hrq = _r26_t0['create-stroke']['bind'](_r26_t0); - r26_xn$setanchor$9Jrj = _r26_t0['set-anchor']['bind'](_r26_t0); - _r26_t0['gizmo'] = r0_globalTransform; - _r26_t0['set-width'](r0_WIDTH); - r26_xn$setwidth$9Jrj(r0_WIDTH); - r26_xn$assignunicode$7Hrq('Y'); - r26_include(r0_capitalMarks); - r26_TURN = r0_XH * 0.05; - r26_straight = 0.6; - r26_strench = 0.15; - r26_cross = r0_CAP * 0.4; - r26_barone = r26_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r26_cross)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE + r26_straight * (r0_RIGHTSB - r0_HALFSTROKE - r0_MIDDLE), r26_cross + r26_straight * (r0_CAP - r26_TURN - r26_strench * (r0_CAP - r26_TURN) - r26_cross))['curve-to'](r0_RIGHTSB - r0_HALFSTROKE, r0_CAP - r26_TURN - r26_strench * (r0_CAP - r26_TURN), r0_RIGHTSB - r0_HALFSTROKE, r0_CAP - r26_TURN)['line-to'](r0_RIGHTSB - r0_HALFSTROKE, r0_CAP)['heads-to'](r0_UPWARD); - r26_bartwo = r26_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r26_cross)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE + r26_straight * (r0_SB + r0_HALFSTROKE - r0_MIDDLE), r26_cross + r26_straight * (r0_CAP - r26_TURN - r26_strench * (r0_CAP - r26_TURN) - r26_cross))['curve-to'](r0_SB + r0_HALFSTROKE, r0_CAP - r26_TURN - r26_strench * (r0_CAP - r26_TURN), r0_SB + r0_HALFSTROKE, r0_CAP - r26_TURN)['line-to'](r0_SB + r0_HALFSTROKE, r0_CAP)['heads-to'](r0_UPWARD); - r26_xn$putshapes$9Jrj(r26_barone['to-outline']()); - r26_xn$putshapes$9Jrj(r26_bartwo['to-outline']()); - r26_xn$putshapes$9Jrj(r26_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, 0)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['heads-to'](r0_UPWARD)['line-to'](r0_MIDDLE, r26_cross + r0_HALFSTROKE)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('K', function _r0_t15() { - var r28_xn$setwidth$9Jrj, r28_xn$assignunicode$7Hrq, r28_xn$startfrom$1aao, r28_xn$lineto$5sIl, r28_xn$curveto$1aao, r28_xn$cubicto$1aao, r28_xn$putshapes$9Jrj, r28_xn$reverselast$3qIs, r28_include, r28_xn$createstroke$7Hrq, r28_xn$setanchor$9Jrj, r28_TURN, r28_rturn, r28_right, r28_fine, _r28_t0; - _r28_t0 = this; - r28_xn$setwidth$9Jrj = _r28_t0['set-width']['bind'](_r28_t0); - r28_xn$assignunicode$7Hrq = _r28_t0['assign-unicode']['bind'](_r28_t0); - r28_xn$startfrom$1aao = _r28_t0['start-from']['bind'](_r28_t0); - r28_xn$lineto$5sIl = _r28_t0['line-to']['bind'](_r28_t0); - r28_xn$curveto$1aao = _r28_t0['curve-to']['bind'](_r28_t0); - r28_xn$cubicto$1aao = _r28_t0['cubic-to']['bind'](_r28_t0); - r28_xn$putshapes$9Jrj = _r28_t0['put-shapes']['bind'](_r28_t0); - r28_xn$reverselast$3qIs = _r28_t0['reverse-last']['bind'](_r28_t0); - r28_include = _r28_t0['include']['bind'](_r28_t0); - r28_xn$createstroke$7Hrq = _r28_t0['create-stroke']['bind'](_r28_t0); - r28_xn$setanchor$9Jrj = _r28_t0['set-anchor']['bind'](_r28_t0); - _r28_t0['gizmo'] = r0_globalTransform; - _r28_t0['set-width'](r0_WIDTH); - r28_xn$setwidth$9Jrj(r0_WIDTH); - r28_xn$assignunicode$7Hrq('K'); - r28_include(r0_capitalMarks); - r28_TURN = r0_CAP * 0.95; - r28_rturn = r0_XH * 0.1; - r28_right = r0_RIGHTSB - r0_O; - r28_fine = Math['min'](r0_STROKE, (r0_WIDTH - r0_SB * 2) * 0.25); - r28_xn$putshapes$9Jrj(r28_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['set-width'](0, r0_STROKE)['heads-to'](r0_UPWARD)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r28_xn$putshapes$9Jrj(r28_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r28_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_RIGHTSB, (1 - 0.18) * r28_TURN, r0_SB + r0_STROKE, r0_CAP * 0.35)['set-width'](0, r28_fine)['to-outline']()); - r28_xn$putshapes$9Jrj(r28_xn$createstroke$7Hrq()['start-from'](r28_right - r0_HALFSTROKE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['curve-to'](r28_right - r0_HALFSTROKE, r28_rturn + 0.2 * (r0_XH - r28_rturn), r0_MIDDLE, r0_CAPMIDDLE + r0_HALFSTROKE)['set-width'](r28_fine / 2, r28_fine / 2)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('B', function _r0_t16() { - var r30_xn$setwidth$9Jrj, r30_xn$assignunicode$7Hrq, r30_xn$startfrom$1aao, r30_xn$lineto$5sIl, r30_xn$curveto$1aao, r30_xn$cubicto$1aao, r30_xn$putshapes$9Jrj, r30_xn$reverselast$3qIs, r30_include, r30_xn$createstroke$7Hrq, r30_xn$setanchor$9Jrj, r30_bowl, r30_tkappa, r30_bkappa, r30_turntop, r30_turnbottom, r30_topbowl, r30_bottombowl, r30_leftbar, _r30_t0; - _r30_t0 = this; - r30_xn$setwidth$9Jrj = _r30_t0['set-width']['bind'](_r30_t0); - r30_xn$assignunicode$7Hrq = _r30_t0['assign-unicode']['bind'](_r30_t0); - r30_xn$startfrom$1aao = _r30_t0['start-from']['bind'](_r30_t0); - r30_xn$lineto$5sIl = _r30_t0['line-to']['bind'](_r30_t0); - r30_xn$curveto$1aao = _r30_t0['curve-to']['bind'](_r30_t0); - r30_xn$cubicto$1aao = _r30_t0['cubic-to']['bind'](_r30_t0); - r30_xn$putshapes$9Jrj = _r30_t0['put-shapes']['bind'](_r30_t0); - r30_xn$reverselast$3qIs = _r30_t0['reverse-last']['bind'](_r30_t0); - r30_include = _r30_t0['include']['bind'](_r30_t0); - r30_xn$createstroke$7Hrq = _r30_t0['create-stroke']['bind'](_r30_t0); - r30_xn$setanchor$9Jrj = _r30_t0['set-anchor']['bind'](_r30_t0); - _r30_t0['gizmo'] = r0_globalTransform; - _r30_t0['set-width'](r0_WIDTH); - r30_xn$setwidth$9Jrj(r0_WIDTH); - r30_xn$assignunicode$7Hrq('B'); - r30_include(r0_capitalMarks); - r30_bowl = 451; - r30_tkappa = r0_COKAPPA - 0.22; - r30_bkappa = r0_COKAPPA - 0.2; - r30_turntop = (r0_CAP + (r30_bowl - r0_STROKE)) / 2; - r30_turnbottom = r30_bowl / 2; - r30_topbowl = r30_xn$createstroke$7Hrq(); - r30_topbowl['start-from'](r0_SB, r0_CAP)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB - r0_SB * 0.5 - r30_turnbottom, r0_CAP)['cubic-to'](r0_RIGHTSB - r0_SB * 0.5 - r30_tkappa * r30_turnbottom, r0_CAP, r0_RIGHTSB - r0_SB * 0.5, r30_turntop + (r0_CAP - r30_turntop) * r0_KAPPA, r0_RIGHTSB - r0_SB * 0.5, r30_turntop)['cubic-to'](r0_RIGHTSB - r0_SB * 0.5, r30_turntop + r0_KAPPA * (r30_bowl - r0_STROKE - r30_turntop), r0_RIGHTSB - r0_SB * 0.5 - r30_tkappa * r30_turnbottom, r30_bowl - r0_STROKE, r0_RIGHTSB - r0_SB * 0.5 - r30_turnbottom, r30_bowl - r0_STROKE)['line-to'](r0_SB, r30_bowl - r0_STROKE)['heads-to'](r0_LEFTWARD); - r30_bottombowl = r30_xn$createstroke$7Hrq(); - r30_bottombowl['start-from'](r0_SB, 0)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB - r30_turnbottom, 0)['cubic-to'](r0_RIGHTSB - r30_bkappa * r30_turnbottom, 0, r0_RIGHTSB, r30_turnbottom * r0_KAPPA, r0_RIGHTSB, r30_turnbottom)['cubic-to'](r0_RIGHTSB, r30_turnbottom + r0_KAPPA * (r30_bowl - r30_turnbottom), r0_RIGHTSB - r30_bkappa * r30_turnbottom, r30_bowl, r0_RIGHTSB - r30_turnbottom, r30_bowl)['line-to'](r0_SB, r30_bowl)['heads-to'](r0_LEFTWARD); - r30_leftbar = r30_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD); - r30_xn$putshapes$9Jrj(r30_topbowl['to-outline'](0, r0_STROKE)); - r30_xn$putshapes$9Jrj(r30_bottombowl['to-outline'](r0_STROKE, 0)); - r30_xn$putshapes$9Jrj(r30_leftbar['to-outline'](0, r0_STROKE)); - return void 0; - }); - r0_xn$createglyph$7Hrq('D', function _r0_t17() { - var r32_xn$setwidth$9Jrj, r32_xn$assignunicode$7Hrq, r32_xn$startfrom$1aao, r32_xn$lineto$5sIl, r32_xn$curveto$1aao, r32_xn$cubicto$1aao, r32_xn$putshapes$9Jrj, r32_xn$reverselast$3qIs, r32_include, r32_xn$createstroke$7Hrq, r32_xn$setanchor$9Jrj, r32_dsmooth, r32_bsmooth, r32_bkappa, r32_leftbar, r32_bowl, _r32_t0; - _r32_t0 = this; - r32_xn$setwidth$9Jrj = _r32_t0['set-width']['bind'](_r32_t0); - r32_xn$assignunicode$7Hrq = _r32_t0['assign-unicode']['bind'](_r32_t0); - r32_xn$startfrom$1aao = _r32_t0['start-from']['bind'](_r32_t0); - r32_xn$lineto$5sIl = _r32_t0['line-to']['bind'](_r32_t0); - r32_xn$curveto$1aao = _r32_t0['curve-to']['bind'](_r32_t0); - r32_xn$cubicto$1aao = _r32_t0['cubic-to']['bind'](_r32_t0); - r32_xn$putshapes$9Jrj = _r32_t0['put-shapes']['bind'](_r32_t0); - r32_xn$reverselast$3qIs = _r32_t0['reverse-last']['bind'](_r32_t0); - r32_include = _r32_t0['include']['bind'](_r32_t0); - r32_xn$createstroke$7Hrq = _r32_t0['create-stroke']['bind'](_r32_t0); - r32_xn$setanchor$9Jrj = _r32_t0['set-anchor']['bind'](_r32_t0); - _r32_t0['gizmo'] = r0_globalTransform; - _r32_t0['set-width'](r0_WIDTH); - r32_xn$setwidth$9Jrj(r0_WIDTH); - r32_xn$assignunicode$7Hrq('D'); - r32_include(r0_capitalMarks); - r32_dsmooth = r0_SMOOTH * 1.55; - r32_bsmooth = r0_SMOOTH * 1.3; - r32_bkappa = r0_COKAPPA - 0.2; - r32_leftbar = r32_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD); - r32_bowl = r32_xn$createstroke$7Hrq(); - r32_bowl['start-from'](r0_SB, 0)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB - r32_bsmooth, 0)['cubic-to'](r0_RIGHTSB - r32_bkappa * r32_bsmooth, 0, r0_RIGHTSB, r0_COBKAPPA * r32_dsmooth, r0_RIGHTSB, r32_dsmooth)['line-to'](r0_RIGHTSB, r0_CAP - r32_dsmooth)['cubic-to'](r0_RIGHTSB, r0_CAP - r0_COBKAPPA * r32_dsmooth, r0_RIGHTSB - r32_bkappa * r32_bsmooth, r0_CAP, r0_RIGHTSB - r32_bsmooth, r0_CAP)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_LEFTWARD); - r32_xn$putshapes$9Jrj(r32_bowl['to-outline'](r0_STROKE, 0)); - r32_xn$putshapes$9Jrj(r32_leftbar['to-outline'](0, r0_STROKE)); - return void 0; - }); - r0_xn$createglyph$7Hrq('P', function _r0_t18() { - var r34_xn$setwidth$9Jrj, r34_xn$assignunicode$7Hrq, r34_xn$startfrom$1aao, r34_xn$lineto$5sIl, r34_xn$curveto$1aao, r34_xn$cubicto$1aao, r34_xn$putshapes$9Jrj, r34_xn$reverselast$3qIs, r34_include, r34_xn$createstroke$7Hrq, r34_xn$setanchor$9Jrj, r34_bowl, r34_bkappa, r34_turntop, r34_turnbottom, r34_topbowl, r34_leftbar, _r34_t0; - _r34_t0 = this; - r34_xn$setwidth$9Jrj = _r34_t0['set-width']['bind'](_r34_t0); - r34_xn$assignunicode$7Hrq = _r34_t0['assign-unicode']['bind'](_r34_t0); - r34_xn$startfrom$1aao = _r34_t0['start-from']['bind'](_r34_t0); - r34_xn$lineto$5sIl = _r34_t0['line-to']['bind'](_r34_t0); - r34_xn$curveto$1aao = _r34_t0['curve-to']['bind'](_r34_t0); - r34_xn$cubicto$1aao = _r34_t0['cubic-to']['bind'](_r34_t0); - r34_xn$putshapes$9Jrj = _r34_t0['put-shapes']['bind'](_r34_t0); - r34_xn$reverselast$3qIs = _r34_t0['reverse-last']['bind'](_r34_t0); - r34_include = _r34_t0['include']['bind'](_r34_t0); - r34_xn$createstroke$7Hrq = _r34_t0['create-stroke']['bind'](_r34_t0); - r34_xn$setanchor$9Jrj = _r34_t0['set-anchor']['bind'](_r34_t0); - _r34_t0['gizmo'] = r0_globalTransform; - _r34_t0['set-width'](r0_WIDTH); - r34_xn$setwidth$9Jrj(r0_WIDTH); - r34_xn$assignunicode$7Hrq('P'); - r34_include(r0_capitalMarks); - r34_bowl = r0_CAPMIDDLE; - r34_bkappa = r0_COKAPPA - 0.2; - r34_turntop = (r0_CAP + (r34_bowl - r0_HALFSTROKE)) / 2; - r34_turnbottom = r34_bowl / 2; - r34_topbowl = r34_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.25, r0_CAP)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB - r34_turnbottom, r0_CAP)['arc-hv-to'](r0_RIGHTSB - r0_O, r34_turntop)['arc-vh-to'](r0_RIGHTSB - r34_turnbottom, r34_bowl - r0_HALFSTROKE)['line-to'](r0_SB * 1.25, r34_bowl - r0_HALFSTROKE)['heads-to'](r0_LEFTWARD); - r34_leftbar = r34_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.25, 0)['heads-to'](r0_UPWARD)['line-to'](r0_SB * 1.25, r0_CAP)['heads-to'](r0_UPWARD); - r34_xn$putshapes$9Jrj(r34_topbowl['to-outline'](0, r0_STROKE)); - r34_xn$putshapes$9Jrj(r34_leftbar['to-outline'](0, r0_STROKE)); - return void 0; - }); - r0_xn$createglyph$7Hrq('R', function _r0_t19() { - var r36_xn$setwidth$9Jrj, r36_xn$assignunicode$7Hrq, r36_xn$startfrom$1aao, r36_xn$lineto$5sIl, r36_xn$curveto$1aao, r36_xn$cubicto$1aao, r36_xn$putshapes$9Jrj, r36_xn$reverselast$3qIs, r36_include, r36_xn$createstroke$7Hrq, r36_xn$setanchor$9Jrj, r36_TURN, r36_right, _r36_t0; - _r36_t0 = this; - r36_xn$setwidth$9Jrj = _r36_t0['set-width']['bind'](_r36_t0); - r36_xn$assignunicode$7Hrq = _r36_t0['assign-unicode']['bind'](_r36_t0); - r36_xn$startfrom$1aao = _r36_t0['start-from']['bind'](_r36_t0); - r36_xn$lineto$5sIl = _r36_t0['line-to']['bind'](_r36_t0); - r36_xn$curveto$1aao = _r36_t0['curve-to']['bind'](_r36_t0); - r36_xn$cubicto$1aao = _r36_t0['cubic-to']['bind'](_r36_t0); - r36_xn$putshapes$9Jrj = _r36_t0['put-shapes']['bind'](_r36_t0); - r36_xn$reverselast$3qIs = _r36_t0['reverse-last']['bind'](_r36_t0); - r36_include = _r36_t0['include']['bind'](_r36_t0); - r36_xn$createstroke$7Hrq = _r36_t0['create-stroke']['bind'](_r36_t0); - r36_xn$setanchor$9Jrj = _r36_t0['set-anchor']['bind'](_r36_t0); - _r36_t0['gizmo'] = r0_globalTransform; - _r36_t0['set-width'](r0_WIDTH); - r36_xn$setwidth$9Jrj(r0_WIDTH); - r36_xn$assignunicode$7Hrq('R'); - r36_include(r0_glyphs['P'], true); - r36_TURN = r0_XH * 0.1; - r36_right = r0_RIGHTSB - r0_O; - r36_xn$putshapes$9Jrj(r36_xn$createstroke$7Hrq()['start-from'](r36_right - r0_HALFSTROKE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['curve-to'](r36_right - r0_HALFSTROKE, r36_TURN + 0.2 * (r0_XH - r36_TURN), r0_MIDDLE, r0_CAPMIDDLE)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('C', function _r0_t20() { - var r38_xn$setwidth$9Jrj, r38_xn$assignunicode$7Hrq, r38_xn$startfrom$1aao, r38_xn$lineto$5sIl, r38_xn$curveto$1aao, r38_xn$cubicto$1aao, r38_xn$putshapes$9Jrj, r38_xn$reverselast$3qIs, r38_include, r38_xn$createstroke$7Hrq, r38_xn$setanchor$9Jrj, r38_outline, _r38_t0; - _r38_t0 = this; - r38_xn$setwidth$9Jrj = _r38_t0['set-width']['bind'](_r38_t0); - r38_xn$assignunicode$7Hrq = _r38_t0['assign-unicode']['bind'](_r38_t0); - r38_xn$startfrom$1aao = _r38_t0['start-from']['bind'](_r38_t0); - r38_xn$lineto$5sIl = _r38_t0['line-to']['bind'](_r38_t0); - r38_xn$curveto$1aao = _r38_t0['curve-to']['bind'](_r38_t0); - r38_xn$cubicto$1aao = _r38_t0['cubic-to']['bind'](_r38_t0); - r38_xn$putshapes$9Jrj = _r38_t0['put-shapes']['bind'](_r38_t0); - r38_xn$reverselast$3qIs = _r38_t0['reverse-last']['bind'](_r38_t0); - r38_include = _r38_t0['include']['bind'](_r38_t0); - r38_xn$createstroke$7Hrq = _r38_t0['create-stroke']['bind'](_r38_t0); - r38_xn$setanchor$9Jrj = _r38_t0['set-anchor']['bind'](_r38_t0); - _r38_t0['gizmo'] = r0_globalTransform; - _r38_t0['set-width'](r0_WIDTH); - r38_xn$setwidth$9Jrj(r0_WIDTH); - r38_xn$assignunicode$7Hrq('C'); - r38_include(r0_capitalMarks); - r38_outline = r38_xn$createstroke$7Hrq(); - r38_outline['start-from'](r0_RIGHTSB - r0_OXHOOK, r0_CAP - r0_HOOK)['curve-to'](r0_MIDDLE + r0_KAPPA_HOOK * (r0_MIDDLE - r0_para['sb']), r0_CAPO, r0_MIDDLE, r0_CAPO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB, r0_CAP - r0_SMOOTHA)['line-to'](r0_SB, r0_SMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['curve-to'](r0_MIDDLE + r0_ITALICCORS + r0_KAPPA_HOOK * (r0_MIDDLE - r0_SB), r0_O, r0_RIGHTSB - r0_OXHOOK, r0_HOOK); - r38_xn$putshapes$9Jrj(r38_outline['to-outline'](r0_STROKE, 0)); - return void 0; - }); - r0_xn$createglyph$7Hrq('G', function _r0_t21() { - var r40_xn$setwidth$9Jrj, r40_xn$assignunicode$7Hrq, r40_xn$startfrom$1aao, r40_xn$lineto$5sIl, r40_xn$curveto$1aao, r40_xn$cubicto$1aao, r40_xn$putshapes$9Jrj, r40_xn$reverselast$3qIs, r40_include, r40_xn$createstroke$7Hrq, r40_xn$setanchor$9Jrj, r40_outline, r40_bar, _r40_t0; - _r40_t0 = this; - r40_xn$setwidth$9Jrj = _r40_t0['set-width']['bind'](_r40_t0); - r40_xn$assignunicode$7Hrq = _r40_t0['assign-unicode']['bind'](_r40_t0); - r40_xn$startfrom$1aao = _r40_t0['start-from']['bind'](_r40_t0); - r40_xn$lineto$5sIl = _r40_t0['line-to']['bind'](_r40_t0); - r40_xn$curveto$1aao = _r40_t0['curve-to']['bind'](_r40_t0); - r40_xn$cubicto$1aao = _r40_t0['cubic-to']['bind'](_r40_t0); - r40_xn$putshapes$9Jrj = _r40_t0['put-shapes']['bind'](_r40_t0); - r40_xn$reverselast$3qIs = _r40_t0['reverse-last']['bind'](_r40_t0); - r40_include = _r40_t0['include']['bind'](_r40_t0); - r40_xn$createstroke$7Hrq = _r40_t0['create-stroke']['bind'](_r40_t0); - r40_xn$setanchor$9Jrj = _r40_t0['set-anchor']['bind'](_r40_t0); - _r40_t0['gizmo'] = r0_globalTransform; - _r40_t0['set-width'](r0_WIDTH); - r40_xn$setwidth$9Jrj(r0_WIDTH); - r40_xn$assignunicode$7Hrq('G'); - r40_include(r0_capitalMarks); - r40_outline = r40_xn$createstroke$7Hrq(); - r40_outline['start-from'](r0_RIGHTSB - r0_OXHOOK, r0_CAP - r0_HOOK)['curve-to'](r0_MIDDLE + r0_KAPPA_HOOK * (r0_MIDDLE - r0_para['sb']), r0_CAPO, r0_MIDDLE, r0_CAPO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB, r0_CAP - r0_SMOOTHA)['line-to'](r0_SB, r0_SMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['arc-hv-to'](r0_RIGHTSB, r0_SMOOTHA)['line-to'](r0_RIGHTSB, r0_CAP / 2 + r0_STROKE / 2)['heads-to'](r0_UPWARD); - r40_xn$putshapes$9Jrj(r40_outline['to-outline'](r0_STROKE, 0)); - r40_bar = r40_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_CAP / 2 + r0_STROKE / 2)['line-to'](r0_RIGHTSB, r0_CAP / 2 + r0_STROKE / 2)['heads-to'](r0_RIGHTWARD); - r40_xn$putshapes$9Jrj(r40_bar['to-outline'](0, r0_STROKE)); - return void 0; - }); - r0_xn$createglyph$7Hrq('O', function _r0_t22() { - var r42_xn$setwidth$9Jrj, r42_xn$assignunicode$7Hrq, r42_xn$startfrom$1aao, r42_xn$lineto$5sIl, r42_xn$curveto$1aao, r42_xn$cubicto$1aao, r42_xn$putshapes$9Jrj, r42_xn$reverselast$3qIs, r42_include, r42_xn$createstroke$7Hrq, r42_xn$setanchor$9Jrj, r42_outline, _r42_t0; - _r42_t0 = this; - r42_xn$setwidth$9Jrj = _r42_t0['set-width']['bind'](_r42_t0); - r42_xn$assignunicode$7Hrq = _r42_t0['assign-unicode']['bind'](_r42_t0); - r42_xn$startfrom$1aao = _r42_t0['start-from']['bind'](_r42_t0); - r42_xn$lineto$5sIl = _r42_t0['line-to']['bind'](_r42_t0); - r42_xn$curveto$1aao = _r42_t0['curve-to']['bind'](_r42_t0); - r42_xn$cubicto$1aao = _r42_t0['cubic-to']['bind'](_r42_t0); - r42_xn$putshapes$9Jrj = _r42_t0['put-shapes']['bind'](_r42_t0); - r42_xn$reverselast$3qIs = _r42_t0['reverse-last']['bind'](_r42_t0); - r42_include = _r42_t0['include']['bind'](_r42_t0); - r42_xn$createstroke$7Hrq = _r42_t0['create-stroke']['bind'](_r42_t0); - r42_xn$setanchor$9Jrj = _r42_t0['set-anchor']['bind'](_r42_t0); - _r42_t0['gizmo'] = r0_globalTransform; - _r42_t0['set-width'](r0_WIDTH); - r42_xn$setwidth$9Jrj(r0_WIDTH); - r42_xn$assignunicode$7Hrq('O'); - r42_include(r0_capitalMarks); - r42_outline = r42_xn$createstroke$7Hrq(); - r42_outline['start-from'](r0_MIDDLE, r0_CAPO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB, r0_CAP - r0_SMOOTHA)['line-to'](r0_SB, r0_SMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['arc-hv-to'](r0_RIGHTSB, r0_SMOOTHA)['line-to'](r0_RIGHTSB, r0_CAP - r0_SMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_CAPO)['heads-to'](r0_LEFTWARD); - r42_xn$putshapes$9Jrj(r42_outline['to-outline'](r0_STROKE, 0)); - return void 0; - }); - r0_xn$createglyph$7Hrq('zero.slashed', function _r0_t23() { - var r44_xn$setwidth$9Jrj, r44_xn$assignunicode$7Hrq, r44_xn$startfrom$1aao, r44_xn$lineto$5sIl, r44_xn$curveto$1aao, r44_xn$cubicto$1aao, r44_xn$putshapes$9Jrj, r44_xn$reverselast$3qIs, r44_include, r44_xn$createstroke$7Hrq, r44_xn$setanchor$9Jrj, r44_bar, _r44_t0; - _r44_t0 = this; - r44_xn$setwidth$9Jrj = _r44_t0['set-width']['bind'](_r44_t0); - r44_xn$assignunicode$7Hrq = _r44_t0['assign-unicode']['bind'](_r44_t0); - r44_xn$startfrom$1aao = _r44_t0['start-from']['bind'](_r44_t0); - r44_xn$lineto$5sIl = _r44_t0['line-to']['bind'](_r44_t0); - r44_xn$curveto$1aao = _r44_t0['curve-to']['bind'](_r44_t0); - r44_xn$cubicto$1aao = _r44_t0['cubic-to']['bind'](_r44_t0); - r44_xn$putshapes$9Jrj = _r44_t0['put-shapes']['bind'](_r44_t0); - r44_xn$reverselast$3qIs = _r44_t0['reverse-last']['bind'](_r44_t0); - r44_include = _r44_t0['include']['bind'](_r44_t0); - r44_xn$createstroke$7Hrq = _r44_t0['create-stroke']['bind'](_r44_t0); - r44_xn$setanchor$9Jrj = _r44_t0['set-anchor']['bind'](_r44_t0); - _r44_t0['gizmo'] = r0_globalTransform; - _r44_t0['set-width'](r0_WIDTH); - r44_xn$setwidth$9Jrj(r0_WIDTH); - r44_xn$putshapes$9Jrj(r0_glyphs['O']['contours']); - r44_bar = r44_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_STROKE / 2, r0_CAP * (1 - 0.65))['line-to'](r0_RIGHTSB - r0_STROKE / 2, r0_CAP * 0.65); - r44_xn$putshapes$9Jrj(r44_bar['to-outline'](r0_STROKE / 2, r0_STROKE / 2)); - return void 0; - }); - r0_xn$createglyph$7Hrq('zero.unslashed', function _r0_t24() { - var r46_xn$setwidth$9Jrj, r46_xn$assignunicode$7Hrq, r46_xn$startfrom$1aao, r46_xn$lineto$5sIl, r46_xn$curveto$1aao, r46_xn$cubicto$1aao, r46_xn$putshapes$9Jrj, r46_xn$reverselast$3qIs, r46_include, r46_xn$createstroke$7Hrq, r46_xn$setanchor$9Jrj, _r46_t0; - _r46_t0 = this; - r46_xn$setwidth$9Jrj = _r46_t0['set-width']['bind'](_r46_t0); - r46_xn$assignunicode$7Hrq = _r46_t0['assign-unicode']['bind'](_r46_t0); - r46_xn$startfrom$1aao = _r46_t0['start-from']['bind'](_r46_t0); - r46_xn$lineto$5sIl = _r46_t0['line-to']['bind'](_r46_t0); - r46_xn$curveto$1aao = _r46_t0['curve-to']['bind'](_r46_t0); - r46_xn$cubicto$1aao = _r46_t0['cubic-to']['bind'](_r46_t0); - r46_xn$putshapes$9Jrj = _r46_t0['put-shapes']['bind'](_r46_t0); - r46_xn$reverselast$3qIs = _r46_t0['reverse-last']['bind'](_r46_t0); - r46_include = _r46_t0['include']['bind'](_r46_t0); - r46_xn$createstroke$7Hrq = _r46_t0['create-stroke']['bind'](_r46_t0); - r46_xn$setanchor$9Jrj = _r46_t0['set-anchor']['bind'](_r46_t0); - _r46_t0['gizmo'] = r0_globalTransform; - _r46_t0['set-width'](r0_WIDTH); - r46_include(r0_glyphs['O']); - return void 0; - }); - r0_xn$createglyph$7Hrq('zero.dotted', function _r0_t25() { - var r48_xn$setwidth$9Jrj, r48_xn$assignunicode$7Hrq, r48_xn$startfrom$1aao, r48_xn$lineto$5sIl, r48_xn$curveto$1aao, r48_xn$cubicto$1aao, r48_xn$putshapes$9Jrj, r48_xn$reverselast$3qIs, r48_include, r48_xn$createstroke$7Hrq, r48_xn$setanchor$9Jrj, _r48_t0; - _r48_t0 = this; - r48_xn$setwidth$9Jrj = _r48_t0['set-width']['bind'](_r48_t0); - r48_xn$assignunicode$7Hrq = _r48_t0['assign-unicode']['bind'](_r48_t0); - r48_xn$startfrom$1aao = _r48_t0['start-from']['bind'](_r48_t0); - r48_xn$lineto$5sIl = _r48_t0['line-to']['bind'](_r48_t0); - r48_xn$curveto$1aao = _r48_t0['curve-to']['bind'](_r48_t0); - r48_xn$cubicto$1aao = _r48_t0['cubic-to']['bind'](_r48_t0); - r48_xn$putshapes$9Jrj = _r48_t0['put-shapes']['bind'](_r48_t0); - r48_xn$reverselast$3qIs = _r48_t0['reverse-last']['bind'](_r48_t0); - r48_include = _r48_t0['include']['bind'](_r48_t0); - r48_xn$createstroke$7Hrq = _r48_t0['create-stroke']['bind'](_r48_t0); - r48_xn$setanchor$9Jrj = _r48_t0['set-anchor']['bind'](_r48_t0); - _r48_t0['gizmo'] = r0_globalTransform; - _r48_t0['set-width'](r0_WIDTH); - r48_include(r0_glyphs['O']); - r48_xn$putshapes$9Jrj([r0_Ring(r0_CAPMIDDLE + r0_DOTRADIUS, r0_CAPMIDDLE - r0_DOTRADIUS, r0_MIDDLE + r0_DOTRADIUS, r0_MIDDLE - r0_DOTRADIUS)]); - return void 0; - }); - r0_xn$createglyph$7Hrq('zero', function _r0_t26() { - var r50_xn$setwidth$9Jrj, r50_xn$assignunicode$7Hrq, r50_xn$startfrom$1aao, r50_xn$lineto$5sIl, r50_xn$curveto$1aao, r50_xn$cubicto$1aao, r50_xn$putshapes$9Jrj, r50_xn$reverselast$3qIs, r50_include, r50_xn$createstroke$7Hrq, r50_xn$setanchor$9Jrj, r50_otherwise, _r50_t0, _r50_t1, _r50_t2, _r50_t3, _r50_t4, _r50_t5, _r50_t6, _r50_t7; - _r50_t1 = this; - r50_xn$setwidth$9Jrj = _r50_t1['set-width']['bind'](_r50_t1); - r50_xn$assignunicode$7Hrq = _r50_t1['assign-unicode']['bind'](_r50_t1); - r50_xn$startfrom$1aao = _r50_t1['start-from']['bind'](_r50_t1); - r50_xn$lineto$5sIl = _r50_t1['line-to']['bind'](_r50_t1); - r50_xn$curveto$1aao = _r50_t1['curve-to']['bind'](_r50_t1); - r50_xn$cubicto$1aao = _r50_t1['cubic-to']['bind'](_r50_t1); - r50_xn$putshapes$9Jrj = _r50_t1['put-shapes']['bind'](_r50_t1); - r50_xn$reverselast$3qIs = _r50_t1['reverse-last']['bind'](_r50_t1); - r50_include = _r50_t1['include']['bind'](_r50_t1); - r50_xn$createstroke$7Hrq = _r50_t1['create-stroke']['bind'](_r50_t1); - r50_xn$setanchor$9Jrj = _r50_t1['set-anchor']['bind'](_r50_t1); - _r50_t1['gizmo'] = r0_globalTransform; - _r50_t1['set-width'](r0_WIDTH); - r50_xn$setwidth$9Jrj(r0_WIDTH); - r50_xn$assignunicode$7Hrq('0'); - _r50_t2 = r50_include; - _r50_t3 = r0_glyphs; - _r50_t0 = r0_variantSelector['zero']; - if ('slashed' === _r50_t0) { - _r50_t4 = 'zero.slashed'; - } else { - if ('dotted' === _r50_t0) { - _r50_t5 = 'zero.dotted'; - } else { - if ('unslahsed' === _r50_t0) { - _r50_t6 = 'zero.unslashed'; - } else { - r50_otherwise = _r50_t0; - _r50_t6 = 'zero.slashed'; - } - _r50_t5 = _r50_t6; - } - _r50_t4 = _r50_t5; - } - _r50_t7 = _r50_t3[_r50_t4]; - _r50_t2(_r50_t7); - return void 0; - }); - r0_xn$createglyph$7Hrq('Q', function _r0_t27() { - var r52_xn$setwidth$9Jrj, r52_xn$assignunicode$7Hrq, r52_xn$startfrom$1aao, r52_xn$lineto$5sIl, r52_xn$curveto$1aao, r52_xn$cubicto$1aao, r52_xn$putshapes$9Jrj, r52_xn$reverselast$3qIs, r52_include, r52_xn$createstroke$7Hrq, r52_xn$setanchor$9Jrj, _r52_t0; - _r52_t0 = this; - r52_xn$setwidth$9Jrj = _r52_t0['set-width']['bind'](_r52_t0); - r52_xn$assignunicode$7Hrq = _r52_t0['assign-unicode']['bind'](_r52_t0); - r52_xn$startfrom$1aao = _r52_t0['start-from']['bind'](_r52_t0); - r52_xn$lineto$5sIl = _r52_t0['line-to']['bind'](_r52_t0); - r52_xn$curveto$1aao = _r52_t0['curve-to']['bind'](_r52_t0); - r52_xn$cubicto$1aao = _r52_t0['cubic-to']['bind'](_r52_t0); - r52_xn$putshapes$9Jrj = _r52_t0['put-shapes']['bind'](_r52_t0); - r52_xn$reverselast$3qIs = _r52_t0['reverse-last']['bind'](_r52_t0); - r52_include = _r52_t0['include']['bind'](_r52_t0); - r52_xn$createstroke$7Hrq = _r52_t0['create-stroke']['bind'](_r52_t0); - r52_xn$setanchor$9Jrj = _r52_t0['set-anchor']['bind'](_r52_t0); - _r52_t0['gizmo'] = r0_globalTransform; - _r52_t0['set-width'](r0_WIDTH); - r52_xn$setwidth$9Jrj(r0_WIDTH); - r52_xn$assignunicode$7Hrq('Q'); - r52_include(r0_glyphs['O'], true); - r52_xn$startfrom$1aao(r0_MIDDLE, 0); - r52_xn$lineto$5sIl(r0_MIDDLE + r0_STROKE / 2, -r0_CAP * 0.2); - r52_xn$lineto$5sIl(r0_MIDDLE + r0_STROKE / 2 + r0_STROKE, -r0_CAP * 0.2); - r52_xn$lineto$5sIl(r0_MIDDLE + r0_STROKE, 0); - r52_xn$lineto$5sIl(r0_MIDDLE + r0_STROKE * (1 - 0.5 / 3), r0_STROKE * 0.5); - r52_xn$reverselast$3qIs(); - return void 0; - }); - r0_xn$createglyph$7Hrq('U', function _r0_t28() { - var r54_xn$setwidth$9Jrj, r54_xn$assignunicode$7Hrq, r54_xn$startfrom$1aao, r54_xn$lineto$5sIl, r54_xn$curveto$1aao, r54_xn$cubicto$1aao, r54_xn$putshapes$9Jrj, r54_xn$reverselast$3qIs, r54_include, r54_xn$createstroke$7Hrq, r54_xn$setanchor$9Jrj, r54_outline, _r54_t0; - _r54_t0 = this; - r54_xn$setwidth$9Jrj = _r54_t0['set-width']['bind'](_r54_t0); - r54_xn$assignunicode$7Hrq = _r54_t0['assign-unicode']['bind'](_r54_t0); - r54_xn$startfrom$1aao = _r54_t0['start-from']['bind'](_r54_t0); - r54_xn$lineto$5sIl = _r54_t0['line-to']['bind'](_r54_t0); - r54_xn$curveto$1aao = _r54_t0['curve-to']['bind'](_r54_t0); - r54_xn$cubicto$1aao = _r54_t0['cubic-to']['bind'](_r54_t0); - r54_xn$putshapes$9Jrj = _r54_t0['put-shapes']['bind'](_r54_t0); - r54_xn$reverselast$3qIs = _r54_t0['reverse-last']['bind'](_r54_t0); - r54_include = _r54_t0['include']['bind'](_r54_t0); - r54_xn$createstroke$7Hrq = _r54_t0['create-stroke']['bind'](_r54_t0); - r54_xn$setanchor$9Jrj = _r54_t0['set-anchor']['bind'](_r54_t0); - _r54_t0['gizmo'] = r0_globalTransform; - _r54_t0['set-width'](r0_WIDTH); - r54_xn$setwidth$9Jrj(r0_WIDTH); - r54_xn$assignunicode$7Hrq('U'); - r54_include(r0_capitalMarks); - r54_outline = r54_xn$createstroke$7Hrq(); - r54_outline['start-from'](r0_SB, r0_CAP)['heads-to'](r0_DOWNWARD)['line-to'](r0_SB, r0_SMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['arc-hv-to'](r0_RIGHTSB, r0_SMOOTHA)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_UPWARD); - r54_xn$putshapes$9Jrj(r54_outline['to-outline'](r0_STROKE, 0)); - return void 0; - }); - r0_xn$createglyph$7Hrq('F', function _r0_t29() { - var r56_xn$setwidth$9Jrj, r56_xn$assignunicode$7Hrq, r56_xn$startfrom$1aao, r56_xn$lineto$5sIl, r56_xn$curveto$1aao, r56_xn$cubicto$1aao, r56_xn$putshapes$9Jrj, r56_xn$reverselast$3qIs, r56_include, r56_xn$createstroke$7Hrq, r56_xn$setanchor$9Jrj, _r56_t0; - _r56_t0 = this; - r56_xn$setwidth$9Jrj = _r56_t0['set-width']['bind'](_r56_t0); - r56_xn$assignunicode$7Hrq = _r56_t0['assign-unicode']['bind'](_r56_t0); - r56_xn$startfrom$1aao = _r56_t0['start-from']['bind'](_r56_t0); - r56_xn$lineto$5sIl = _r56_t0['line-to']['bind'](_r56_t0); - r56_xn$curveto$1aao = _r56_t0['curve-to']['bind'](_r56_t0); - r56_xn$cubicto$1aao = _r56_t0['cubic-to']['bind'](_r56_t0); - r56_xn$putshapes$9Jrj = _r56_t0['put-shapes']['bind'](_r56_t0); - r56_xn$reverselast$3qIs = _r56_t0['reverse-last']['bind'](_r56_t0); - r56_include = _r56_t0['include']['bind'](_r56_t0); - r56_xn$createstroke$7Hrq = _r56_t0['create-stroke']['bind'](_r56_t0); - r56_xn$setanchor$9Jrj = _r56_t0['set-anchor']['bind'](_r56_t0); - _r56_t0['gizmo'] = r0_globalTransform; - _r56_t0['set-width'](r0_WIDTH); - r56_xn$setwidth$9Jrj(r0_WIDTH); - r56_xn$assignunicode$7Hrq('F'); - r56_include(r0_capitalMarks); - r56_xn$putshapes$9Jrj(r56_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.5, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB * 1.5, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r56_xn$putshapes$9Jrj(r56_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.5, r0_CAP)['set-width'](0, r0_STROKE)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r56_xn$putshapes$9Jrj(r56_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.5, r0_CAPMIDDLE)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB - r0_HALFSTROKE, r0_CAPMIDDLE)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('E', function _r0_t30() { - var r58_xn$setwidth$9Jrj, r58_xn$assignunicode$7Hrq, r58_xn$startfrom$1aao, r58_xn$lineto$5sIl, r58_xn$curveto$1aao, r58_xn$cubicto$1aao, r58_xn$putshapes$9Jrj, r58_xn$reverselast$3qIs, r58_include, r58_xn$createstroke$7Hrq, r58_xn$setanchor$9Jrj, _r58_t0; - _r58_t0 = this; - r58_xn$setwidth$9Jrj = _r58_t0['set-width']['bind'](_r58_t0); - r58_xn$assignunicode$7Hrq = _r58_t0['assign-unicode']['bind'](_r58_t0); - r58_xn$startfrom$1aao = _r58_t0['start-from']['bind'](_r58_t0); - r58_xn$lineto$5sIl = _r58_t0['line-to']['bind'](_r58_t0); - r58_xn$curveto$1aao = _r58_t0['curve-to']['bind'](_r58_t0); - r58_xn$cubicto$1aao = _r58_t0['cubic-to']['bind'](_r58_t0); - r58_xn$putshapes$9Jrj = _r58_t0['put-shapes']['bind'](_r58_t0); - r58_xn$reverselast$3qIs = _r58_t0['reverse-last']['bind'](_r58_t0); - r58_include = _r58_t0['include']['bind'](_r58_t0); - r58_xn$createstroke$7Hrq = _r58_t0['create-stroke']['bind'](_r58_t0); - r58_xn$setanchor$9Jrj = _r58_t0['set-anchor']['bind'](_r58_t0); - _r58_t0['gizmo'] = r0_globalTransform; - _r58_t0['set-width'](r0_WIDTH); - r58_xn$setwidth$9Jrj(r0_WIDTH); - r58_xn$assignunicode$7Hrq('E'); - r58_include(r0_glyphs['F'], true); - r58_xn$putshapes$9Jrj(r58_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.5, 0)['set-width'](r0_STROKE, 0)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB, 0)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('H', function _r0_t31() { - var r60_xn$setwidth$9Jrj, r60_xn$assignunicode$7Hrq, r60_xn$startfrom$1aao, r60_xn$lineto$5sIl, r60_xn$curveto$1aao, r60_xn$cubicto$1aao, r60_xn$putshapes$9Jrj, r60_xn$reverselast$3qIs, r60_include, r60_xn$createstroke$7Hrq, r60_xn$setanchor$9Jrj, _r60_t0; - _r60_t0 = this; - r60_xn$setwidth$9Jrj = _r60_t0['set-width']['bind'](_r60_t0); - r60_xn$assignunicode$7Hrq = _r60_t0['assign-unicode']['bind'](_r60_t0); - r60_xn$startfrom$1aao = _r60_t0['start-from']['bind'](_r60_t0); - r60_xn$lineto$5sIl = _r60_t0['line-to']['bind'](_r60_t0); - r60_xn$curveto$1aao = _r60_t0['curve-to']['bind'](_r60_t0); - r60_xn$cubicto$1aao = _r60_t0['cubic-to']['bind'](_r60_t0); - r60_xn$putshapes$9Jrj = _r60_t0['put-shapes']['bind'](_r60_t0); - r60_xn$reverselast$3qIs = _r60_t0['reverse-last']['bind'](_r60_t0); - r60_include = _r60_t0['include']['bind'](_r60_t0); - r60_xn$createstroke$7Hrq = _r60_t0['create-stroke']['bind'](_r60_t0); - r60_xn$setanchor$9Jrj = _r60_t0['set-anchor']['bind'](_r60_t0); - _r60_t0['gizmo'] = r0_globalTransform; - _r60_t0['set-width'](r0_WIDTH); - r60_xn$setwidth$9Jrj(r0_WIDTH); - r60_xn$assignunicode$7Hrq('H'); - r60_include(r0_capitalMarks); - r60_xn$putshapes$9Jrj(r60_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r60_xn$putshapes$9Jrj(r60_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r60_xn$putshapes$9Jrj(r60_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_CAP / 2)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB, r0_CAP / 2)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('L', function _r0_t32() { - var r62_xn$setwidth$9Jrj, r62_xn$assignunicode$7Hrq, r62_xn$startfrom$1aao, r62_xn$lineto$5sIl, r62_xn$curveto$1aao, r62_xn$cubicto$1aao, r62_xn$putshapes$9Jrj, r62_xn$reverselast$3qIs, r62_include, r62_xn$createstroke$7Hrq, r62_xn$setanchor$9Jrj, _r62_t0; - _r62_t0 = this; - r62_xn$setwidth$9Jrj = _r62_t0['set-width']['bind'](_r62_t0); - r62_xn$assignunicode$7Hrq = _r62_t0['assign-unicode']['bind'](_r62_t0); - r62_xn$startfrom$1aao = _r62_t0['start-from']['bind'](_r62_t0); - r62_xn$lineto$5sIl = _r62_t0['line-to']['bind'](_r62_t0); - r62_xn$curveto$1aao = _r62_t0['curve-to']['bind'](_r62_t0); - r62_xn$cubicto$1aao = _r62_t0['cubic-to']['bind'](_r62_t0); - r62_xn$putshapes$9Jrj = _r62_t0['put-shapes']['bind'](_r62_t0); - r62_xn$reverselast$3qIs = _r62_t0['reverse-last']['bind'](_r62_t0); - r62_include = _r62_t0['include']['bind'](_r62_t0); - r62_xn$createstroke$7Hrq = _r62_t0['create-stroke']['bind'](_r62_t0); - r62_xn$setanchor$9Jrj = _r62_t0['set-anchor']['bind'](_r62_t0); - _r62_t0['gizmo'] = r0_globalTransform; - _r62_t0['set-width'](r0_WIDTH); - r62_xn$setwidth$9Jrj(r0_WIDTH); - r62_xn$assignunicode$7Hrq('L'); - r62_include(r0_capitalMarks); - r62_xn$putshapes$9Jrj(r62_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.5, r0_CAP)['set-width'](r0_STROKE, 0)['heads-to'](r0_DOWNWARD)['line-to'](r0_SB * 1.5, 0)['heads-to'](r0_DOWNWARD)['to-outline']()); - r62_xn$putshapes$9Jrj(r62_xn$createstroke$7Hrq()['start-from'](r0_SB * 1.5, 0)['set-width'](r0_STROKE, 0)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB, 0)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessI.straight', function _r0_t33() { - var r64_xn$setwidth$9Jrj, r64_xn$assignunicode$7Hrq, r64_xn$startfrom$1aao, r64_xn$lineto$5sIl, r64_xn$curveto$1aao, r64_xn$cubicto$1aao, r64_xn$putshapes$9Jrj, r64_xn$reverselast$3qIs, r64_include, r64_xn$createstroke$7Hrq, r64_xn$setanchor$9Jrj, _r64_t0; - _r64_t0 = this; - r64_xn$setwidth$9Jrj = _r64_t0['set-width']['bind'](_r64_t0); - r64_xn$assignunicode$7Hrq = _r64_t0['assign-unicode']['bind'](_r64_t0); - r64_xn$startfrom$1aao = _r64_t0['start-from']['bind'](_r64_t0); - r64_xn$lineto$5sIl = _r64_t0['line-to']['bind'](_r64_t0); - r64_xn$curveto$1aao = _r64_t0['curve-to']['bind'](_r64_t0); - r64_xn$cubicto$1aao = _r64_t0['cubic-to']['bind'](_r64_t0); - r64_xn$putshapes$9Jrj = _r64_t0['put-shapes']['bind'](_r64_t0); - r64_xn$reverselast$3qIs = _r64_t0['reverse-last']['bind'](_r64_t0); - r64_include = _r64_t0['include']['bind'](_r64_t0); - r64_xn$createstroke$7Hrq = _r64_t0['create-stroke']['bind'](_r64_t0); - r64_xn$setanchor$9Jrj = _r64_t0['set-anchor']['bind'](_r64_t0); - _r64_t0['gizmo'] = r0_globalTransform; - _r64_t0['set-width'](r0_WIDTH); - r64_xn$putshapes$9Jrj(r64_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessI.symmetric', function _r0_t34() { - var r66_xn$setwidth$9Jrj, r66_xn$assignunicode$7Hrq, r66_xn$startfrom$1aao, r66_xn$lineto$5sIl, r66_xn$curveto$1aao, r66_xn$cubicto$1aao, r66_xn$putshapes$9Jrj, r66_xn$reverselast$3qIs, r66_include, r66_xn$createstroke$7Hrq, r66_xn$setanchor$9Jrj, _r66_t0; - _r66_t0 = this; - r66_xn$setwidth$9Jrj = _r66_t0['set-width']['bind'](_r66_t0); - r66_xn$assignunicode$7Hrq = _r66_t0['assign-unicode']['bind'](_r66_t0); - r66_xn$startfrom$1aao = _r66_t0['start-from']['bind'](_r66_t0); - r66_xn$lineto$5sIl = _r66_t0['line-to']['bind'](_r66_t0); - r66_xn$curveto$1aao = _r66_t0['curve-to']['bind'](_r66_t0); - r66_xn$cubicto$1aao = _r66_t0['cubic-to']['bind'](_r66_t0); - r66_xn$putshapes$9Jrj = _r66_t0['put-shapes']['bind'](_r66_t0); - r66_xn$reverselast$3qIs = _r66_t0['reverse-last']['bind'](_r66_t0); - r66_include = _r66_t0['include']['bind'](_r66_t0); - r66_xn$createstroke$7Hrq = _r66_t0['create-stroke']['bind'](_r66_t0); - r66_xn$setanchor$9Jrj = _r66_t0['set-anchor']['bind'](_r66_t0); - _r66_t0['gizmo'] = r0_globalTransform; - _r66_t0['set-width'](r0_WIDTH); - r66_include(r0_glyphs['dotlessI.straight']); - r66_xn$putshapes$9Jrj(r66_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE - r0_WIDTH * 0.26 - r0_STROKE * r0_globalTransform['yx'], r0_CAP)['set-width'](0, r0_STROKE)['line-to'](r0_MIDDLE + r0_WIDTH * 0.26 - r0_STROKE * r0_globalTransform['yx'], r0_CAP)['to-outline']()); - r66_xn$putshapes$9Jrj(r66_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE - r0_WIDTH * 0.26 + r0_STROKE * r0_globalTransform['yx'], 0)['set-width'](r0_STROKE, 0)['line-to'](r0_MIDDLE + r0_WIDTH * 0.26 + r0_STROKE * r0_globalTransform['yx'], 0)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('I', function _r0_t35() { - var r68_xn$setwidth$9Jrj, r68_xn$assignunicode$7Hrq, r68_xn$startfrom$1aao, r68_xn$lineto$5sIl, r68_xn$curveto$1aao, r68_xn$cubicto$1aao, r68_xn$putshapes$9Jrj, r68_xn$reverselast$3qIs, r68_include, r68_xn$createstroke$7Hrq, r68_xn$setanchor$9Jrj, _r68_t0; - _r68_t0 = this; - r68_xn$setwidth$9Jrj = _r68_t0['set-width']['bind'](_r68_t0); - r68_xn$assignunicode$7Hrq = _r68_t0['assign-unicode']['bind'](_r68_t0); - r68_xn$startfrom$1aao = _r68_t0['start-from']['bind'](_r68_t0); - r68_xn$lineto$5sIl = _r68_t0['line-to']['bind'](_r68_t0); - r68_xn$curveto$1aao = _r68_t0['curve-to']['bind'](_r68_t0); - r68_xn$cubicto$1aao = _r68_t0['cubic-to']['bind'](_r68_t0); - r68_xn$putshapes$9Jrj = _r68_t0['put-shapes']['bind'](_r68_t0); - r68_xn$reverselast$3qIs = _r68_t0['reverse-last']['bind'](_r68_t0); - r68_include = _r68_t0['include']['bind'](_r68_t0); - r68_xn$createstroke$7Hrq = _r68_t0['create-stroke']['bind'](_r68_t0); - r68_xn$setanchor$9Jrj = _r68_t0['set-anchor']['bind'](_r68_t0); - _r68_t0['gizmo'] = r0_globalTransform; - _r68_t0['set-width'](r0_WIDTH); - r68_xn$setwidth$9Jrj(r0_WIDTH); - r68_xn$assignunicode$7Hrq('I'); - r68_include(r0_capitalMarks); - r68_include(r0_glyphs['dotlessI.symmetric']); - return void 0; - }); - r0_xn$createglyph$7Hrq('T', function _r0_t36() { - var r70_xn$setwidth$9Jrj, r70_xn$assignunicode$7Hrq, r70_xn$startfrom$1aao, r70_xn$lineto$5sIl, r70_xn$curveto$1aao, r70_xn$cubicto$1aao, r70_xn$putshapes$9Jrj, r70_xn$reverselast$3qIs, r70_include, r70_xn$createstroke$7Hrq, r70_xn$setanchor$9Jrj, _r70_t0; - _r70_t0 = this; - r70_xn$setwidth$9Jrj = _r70_t0['set-width']['bind'](_r70_t0); - r70_xn$assignunicode$7Hrq = _r70_t0['assign-unicode']['bind'](_r70_t0); - r70_xn$startfrom$1aao = _r70_t0['start-from']['bind'](_r70_t0); - r70_xn$lineto$5sIl = _r70_t0['line-to']['bind'](_r70_t0); - r70_xn$curveto$1aao = _r70_t0['curve-to']['bind'](_r70_t0); - r70_xn$cubicto$1aao = _r70_t0['cubic-to']['bind'](_r70_t0); - r70_xn$putshapes$9Jrj = _r70_t0['put-shapes']['bind'](_r70_t0); - r70_xn$reverselast$3qIs = _r70_t0['reverse-last']['bind'](_r70_t0); - r70_include = _r70_t0['include']['bind'](_r70_t0); - r70_xn$createstroke$7Hrq = _r70_t0['create-stroke']['bind'](_r70_t0); - r70_xn$setanchor$9Jrj = _r70_t0['set-anchor']['bind'](_r70_t0); - _r70_t0['gizmo'] = r0_globalTransform; - _r70_t0['set-width'](r0_WIDTH); - r70_xn$setwidth$9Jrj(r0_WIDTH); - r70_xn$assignunicode$7Hrq('T'); - r70_include(r0_capitalMarks); - r70_xn$putshapes$9Jrj(r70_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r70_xn$putshapes$9Jrj(r70_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_CAP)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('Z', function _r0_t37() { - var r72_xn$setwidth$9Jrj, r72_xn$assignunicode$7Hrq, r72_xn$startfrom$1aao, r72_xn$lineto$5sIl, r72_xn$curveto$1aao, r72_xn$cubicto$1aao, r72_xn$putshapes$9Jrj, r72_xn$reverselast$3qIs, r72_include, r72_xn$createstroke$7Hrq, r72_xn$setanchor$9Jrj, r72_cor, _r72_t0; - _r72_t0 = this; - r72_xn$setwidth$9Jrj = _r72_t0['set-width']['bind'](_r72_t0); - r72_xn$assignunicode$7Hrq = _r72_t0['assign-unicode']['bind'](_r72_t0); - r72_xn$startfrom$1aao = _r72_t0['start-from']['bind'](_r72_t0); - r72_xn$lineto$5sIl = _r72_t0['line-to']['bind'](_r72_t0); - r72_xn$curveto$1aao = _r72_t0['curve-to']['bind'](_r72_t0); - r72_xn$cubicto$1aao = _r72_t0['cubic-to']['bind'](_r72_t0); - r72_xn$putshapes$9Jrj = _r72_t0['put-shapes']['bind'](_r72_t0); - r72_xn$reverselast$3qIs = _r72_t0['reverse-last']['bind'](_r72_t0); - r72_include = _r72_t0['include']['bind'](_r72_t0); - r72_xn$createstroke$7Hrq = _r72_t0['create-stroke']['bind'](_r72_t0); - r72_xn$setanchor$9Jrj = _r72_t0['set-anchor']['bind'](_r72_t0); - _r72_t0['gizmo'] = r0_globalTransform; - _r72_t0['set-width'](r0_WIDTH); - r72_xn$setwidth$9Jrj(r0_WIDTH); - r72_xn$assignunicode$7Hrq('Z'); - r72_include(r0_capitalMarks); - r72_cor = 1.15; - r72_xn$putshapes$9Jrj(r72_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_CAP)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r72_xn$putshapes$9Jrj(r72_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_RIGHTWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, 0)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r72_xn$startfrom$1aao(r0_SB, r0_STROKE); - r72_xn$lineto$5sIl(r0_SB + r0_STROKE * r72_cor, r0_STROKE); - r72_xn$lineto$5sIl(r0_RIGHTSB, r0_CAP - r0_STROKE); - r72_xn$lineto$5sIl(r0_RIGHTSB - r0_STROKE * r72_cor, r0_CAP - r0_STROKE); - r72_xn$reverselast$3qIs(); - return void 0; - }); - r0_xn$createglyph$7Hrq('J.straight', function _r0_t38() { - var r74_xn$setwidth$9Jrj, r74_xn$assignunicode$7Hrq, r74_xn$startfrom$1aao, r74_xn$lineto$5sIl, r74_xn$curveto$1aao, r74_xn$cubicto$1aao, r74_xn$putshapes$9Jrj, r74_xn$reverselast$3qIs, r74_include, r74_xn$createstroke$7Hrq, r74_xn$setanchor$9Jrj, r74_slope, r74_expand, r74_coexpand, r74_kappa, r74_smooth, _r74_t0; - _r74_t0 = this; - r74_xn$setwidth$9Jrj = _r74_t0['set-width']['bind'](_r74_t0); - r74_xn$assignunicode$7Hrq = _r74_t0['assign-unicode']['bind'](_r74_t0); - r74_xn$startfrom$1aao = _r74_t0['start-from']['bind'](_r74_t0); - r74_xn$lineto$5sIl = _r74_t0['line-to']['bind'](_r74_t0); - r74_xn$curveto$1aao = _r74_t0['curve-to']['bind'](_r74_t0); - r74_xn$cubicto$1aao = _r74_t0['cubic-to']['bind'](_r74_t0); - r74_xn$putshapes$9Jrj = _r74_t0['put-shapes']['bind'](_r74_t0); - r74_xn$reverselast$3qIs = _r74_t0['reverse-last']['bind'](_r74_t0); - r74_include = _r74_t0['include']['bind'](_r74_t0); - r74_xn$createstroke$7Hrq = _r74_t0['create-stroke']['bind'](_r74_t0); - r74_xn$setanchor$9Jrj = _r74_t0['set-anchor']['bind'](_r74_t0); - _r74_t0['gizmo'] = r0_globalTransform; - _r74_t0['set-width'](r0_WIDTH); - r74_xn$setwidth$9Jrj(r0_WIDTH); - r74_include(r0_capitalMarks); - r74_slope = r0_STROKE * 0.00092; - r74_expand = 0.35; - r74_coexpand = (1 - r74_expand) / 2; - r74_kappa = r0_KAPPA_HOOK; - r74_smooth = r0_HOOK + 0.75 * r0_STROKE; - r74_xn$putshapes$9Jrj(r74_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, r0_CAP)['set-width'](0, r0_STROKE)['heads-to'](r0_DOWNWARD)['line-to'](r0_RIGHTSB, r74_smooth)['arc-vh-to'](r0_MIDDLE - r0_SB * 0.25, r0_O)['heads-to'](r0_LEFTWARD)['curve-to'](r0_MIDDLE - r74_kappa * (r0_MIDDLE - r0_SB) - r0_SB * 0.5, r0_O, 0.5 * r0_SB + r0_OXHOOK, r0_HOOK)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('J.serifed', function _r0_t39() { - var r76_xn$setwidth$9Jrj, r76_xn$assignunicode$7Hrq, r76_xn$startfrom$1aao, r76_xn$lineto$5sIl, r76_xn$curveto$1aao, r76_xn$cubicto$1aao, r76_xn$putshapes$9Jrj, r76_xn$reverselast$3qIs, r76_include, r76_xn$createstroke$7Hrq, r76_xn$setanchor$9Jrj, _r76_t0; - _r76_t0 = this; - r76_xn$setwidth$9Jrj = _r76_t0['set-width']['bind'](_r76_t0); - r76_xn$assignunicode$7Hrq = _r76_t0['assign-unicode']['bind'](_r76_t0); - r76_xn$startfrom$1aao = _r76_t0['start-from']['bind'](_r76_t0); - r76_xn$lineto$5sIl = _r76_t0['line-to']['bind'](_r76_t0); - r76_xn$curveto$1aao = _r76_t0['curve-to']['bind'](_r76_t0); - r76_xn$cubicto$1aao = _r76_t0['cubic-to']['bind'](_r76_t0); - r76_xn$putshapes$9Jrj = _r76_t0['put-shapes']['bind'](_r76_t0); - r76_xn$reverselast$3qIs = _r76_t0['reverse-last']['bind'](_r76_t0); - r76_include = _r76_t0['include']['bind'](_r76_t0); - r76_xn$createstroke$7Hrq = _r76_t0['create-stroke']['bind'](_r76_t0); - r76_xn$setanchor$9Jrj = _r76_t0['set-anchor']['bind'](_r76_t0); - _r76_t0['gizmo'] = r0_globalTransform; - _r76_t0['set-width'](r0_WIDTH); - r76_xn$setwidth$9Jrj(r0_WIDTH); - r76_xn$assignunicode$7Hrq('J'); - r76_include(r0_glyphs['J.straight'], true); - r76_xn$putshapes$9Jrj(r0_leftwardTopSerif(r0_RIGHTSB - r0_HALFSTROKE, r0_CAP, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('N', function _r0_t40() { - var r78_xn$setwidth$9Jrj, r78_xn$assignunicode$7Hrq, r78_xn$startfrom$1aao, r78_xn$lineto$5sIl, r78_xn$curveto$1aao, r78_xn$cubicto$1aao, r78_xn$putshapes$9Jrj, r78_xn$reverselast$3qIs, r78_include, r78_xn$createstroke$7Hrq, r78_xn$setanchor$9Jrj, r78_topstroke, r78_halftopstroke, _r78_t0; - _r78_t0 = this; - r78_xn$setwidth$9Jrj = _r78_t0['set-width']['bind'](_r78_t0); - r78_xn$assignunicode$7Hrq = _r78_t0['assign-unicode']['bind'](_r78_t0); - r78_xn$startfrom$1aao = _r78_t0['start-from']['bind'](_r78_t0); - r78_xn$lineto$5sIl = _r78_t0['line-to']['bind'](_r78_t0); - r78_xn$curveto$1aao = _r78_t0['curve-to']['bind'](_r78_t0); - r78_xn$cubicto$1aao = _r78_t0['cubic-to']['bind'](_r78_t0); - r78_xn$putshapes$9Jrj = _r78_t0['put-shapes']['bind'](_r78_t0); - r78_xn$reverselast$3qIs = _r78_t0['reverse-last']['bind'](_r78_t0); - r78_include = _r78_t0['include']['bind'](_r78_t0); - r78_xn$createstroke$7Hrq = _r78_t0['create-stroke']['bind'](_r78_t0); - r78_xn$setanchor$9Jrj = _r78_t0['set-anchor']['bind'](_r78_t0); - _r78_t0['gizmo'] = r0_globalTransform; - _r78_t0['set-width'](r0_WIDTH); - r78_xn$setwidth$9Jrj(r0_WIDTH); - r78_xn$assignunicode$7Hrq('N'); - r78_include(r0_capitalMarks); - r78_topstroke = Math['min'](r0_STROKE, (r0_WIDTH - r0_SB * 2) * 0.24); - r78_halftopstroke = r78_topstroke / 2; - r78_xn$putshapes$9Jrj(r78_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB, r0_CAP * 0.4)['heads-to'](r0_UPWARD)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD)['set-width'](0, r78_topstroke)['to-outline']()); - r78_xn$putshapes$9Jrj(r78_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r78_topstroke, 0)['line-to'](r0_RIGHTSB, r0_CAP * 0.6)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r78_xn$putshapes$9Jrj(r78_xn$createstroke$7Hrq()['start-from'](r0_SB + r78_halftopstroke, r0_CAP)['heads-to'](r0_DOWNWARD)['set-width'](r78_topstroke, 0)['line-to'](r0_RIGHTSB - r78_topstroke - r78_halftopstroke, 0)['heads-to'](r0_DOWNWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('M', function _r0_t41() { - var r80_xn$setwidth$9Jrj, r80_xn$assignunicode$7Hrq, r80_xn$startfrom$1aao, r80_xn$lineto$5sIl, r80_xn$curveto$1aao, r80_xn$cubicto$1aao, r80_xn$putshapes$9Jrj, r80_xn$reverselast$3qIs, r80_include, r80_xn$createstroke$7Hrq, r80_xn$setanchor$9Jrj, r80_topstroke, r80_halftopstroke, _r80_t0; - _r80_t0 = this; - r80_xn$setwidth$9Jrj = _r80_t0['set-width']['bind'](_r80_t0); - r80_xn$assignunicode$7Hrq = _r80_t0['assign-unicode']['bind'](_r80_t0); - r80_xn$startfrom$1aao = _r80_t0['start-from']['bind'](_r80_t0); - r80_xn$lineto$5sIl = _r80_t0['line-to']['bind'](_r80_t0); - r80_xn$curveto$1aao = _r80_t0['curve-to']['bind'](_r80_t0); - r80_xn$cubicto$1aao = _r80_t0['cubic-to']['bind'](_r80_t0); - r80_xn$putshapes$9Jrj = _r80_t0['put-shapes']['bind'](_r80_t0); - r80_xn$reverselast$3qIs = _r80_t0['reverse-last']['bind'](_r80_t0); - r80_include = _r80_t0['include']['bind'](_r80_t0); - r80_xn$createstroke$7Hrq = _r80_t0['create-stroke']['bind'](_r80_t0); - r80_xn$setanchor$9Jrj = _r80_t0['set-anchor']['bind'](_r80_t0); - _r80_t0['gizmo'] = r0_globalTransform; - _r80_t0['set-width'](r0_WIDTH); - r80_xn$setwidth$9Jrj(r0_WIDTH); - r80_xn$assignunicode$7Hrq('M'); - r80_include(r0_capitalMarks); - r80_topstroke = Math['min'](r0_STROKE, (r0_WIDTH - r0_SB * 2) * 0.175); - r80_halftopstroke = r80_topstroke / 2; - r80_xn$putshapes$9Jrj(r80_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB, r0_CAP * 0.2)['heads-to'](r0_UPWARD)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD)['set-width'](0, r80_topstroke)['to-outline']()); - r80_xn$putshapes$9Jrj(r80_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_CAP * 0.2)['heads-to'](r0_UPWARD)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_UPWARD)['set-width'](r80_topstroke, 0)['to-outline']()); - r80_xn$putshapes$9Jrj(r80_xn$createstroke$7Hrq()['start-from'](r0_SB + r80_halftopstroke, r0_CAP)['heads-to'](r0_DOWNWARD)['set-width'](r80_topstroke, 0)['line-to'](r0_MIDDLE - r80_halftopstroke, r0_CAP * 0.3)['heads-to'](r0_DOWNWARD)['to-outline']()); - r80_xn$putshapes$9Jrj(r80_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE + r80_halftopstroke, r0_CAP * 0.3)['heads-to'](r0_UPWARD)['set-width'](r80_topstroke, 0)['line-to'](r0_RIGHTSB - r80_halftopstroke, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('S', function _r0_t42() { - var r82_xn$setwidth$9Jrj, r82_xn$assignunicode$7Hrq, r82_xn$startfrom$1aao, r82_xn$lineto$5sIl, r82_xn$curveto$1aao, r82_xn$cubicto$1aao, r82_xn$putshapes$9Jrj, r82_xn$reverselast$3qIs, r82_include, r82_xn$createstroke$7Hrq, r82_xn$setanchor$9Jrj, r82_slope, r82_expand, r82_coexpand, r82_ssmootha, r82_bowltop, r82_strokemiddle, r82_bowlbottom, _r82_t0; - _r82_t0 = this; - r82_xn$setwidth$9Jrj = _r82_t0['set-width']['bind'](_r82_t0); - r82_xn$assignunicode$7Hrq = _r82_t0['assign-unicode']['bind'](_r82_t0); - r82_xn$startfrom$1aao = _r82_t0['start-from']['bind'](_r82_t0); - r82_xn$lineto$5sIl = _r82_t0['line-to']['bind'](_r82_t0); - r82_xn$curveto$1aao = _r82_t0['curve-to']['bind'](_r82_t0); - r82_xn$cubicto$1aao = _r82_t0['cubic-to']['bind'](_r82_t0); - r82_xn$putshapes$9Jrj = _r82_t0['put-shapes']['bind'](_r82_t0); - r82_xn$reverselast$3qIs = _r82_t0['reverse-last']['bind'](_r82_t0); - r82_include = _r82_t0['include']['bind'](_r82_t0); - r82_xn$createstroke$7Hrq = _r82_t0['create-stroke']['bind'](_r82_t0); - r82_xn$setanchor$9Jrj = _r82_t0['set-anchor']['bind'](_r82_t0); - _r82_t0['gizmo'] = r0_globalTransform; - _r82_t0['set-width'](r0_WIDTH); - r82_xn$setwidth$9Jrj(r0_WIDTH); - r82_xn$assignunicode$7Hrq('S'); - r82_include(r0_capitalMarks); - r82_slope = r0_STROKE * 0.00092; - r82_expand = 0.35; - r82_coexpand = (1 - r82_expand) / 2; - r82_ssmootha = r0_SMOOTHA; - r82_bowltop = r82_xn$createstroke$7Hrq(); - r82_bowltop['start-from'](r0_RIGHTSB - r0_OXHOOK, r0_CAP - r0_HOOK)['set-width'](r0_STROKE, 0)['curve-to'](r0_MIDDLE + r0_KAPPA_HOOK * (r0_MIDDLE - r0_para['sb']), r0_CAPO, r0_MIDDLE, r0_CAPO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB, r0_CAP - r82_ssmootha); - r82_strokemiddle = r82_xn$createstroke$7Hrq(); - r82_strokemiddle['start-from'](r0_SB + r0_STROKE / 2, r0_CAP - r82_ssmootha)['set-width'](r0_STROKE / 2, r0_STROKE / 2)['curve-to'](r0_SB + r0_STROKE / 2, (0.5 + r82_slope) * r0_CAP + 2 * r82_slope * r0_CAP / (r82_expand * r0_WIDTH) * (r82_coexpand * r0_WIDTH - r0_SB - r0_STROKE / 2), r82_coexpand * r0_WIDTH, (0.5 + r82_slope) * r0_CAP)['line-to']((1 - r82_coexpand) * r0_WIDTH, (0.5 - r82_slope) * r0_CAP)['curve-to'](r0_RIGHTSB - r0_STROKE / 2, (0.5 - r82_slope) * r0_CAP - 2 * r82_slope * r0_CAP / (r82_expand * r0_WIDTH) * (r82_coexpand * r0_WIDTH - r0_SB - r0_STROKE / 2), r0_RIGHTSB - r0_STROKE / 2, r82_ssmootha); - r82_bowlbottom = r82_xn$createstroke$7Hrq(); - r82_bowlbottom['start-from'](r0_RIGHTSB, r82_ssmootha)['set-width'](0, r0_STROKE)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_LEFTWARD)['curve-to'](r0_MIDDLE - r0_KAPPA_HOOK * (r0_MIDDLE - r0_para['sb']), r0_O, r0_SB + r0_OXHOOK, r0_HOOK); - r82_xn$putshapes$9Jrj(r82_bowltop['to-outline']()); - r82_xn$putshapes$9Jrj(r82_strokemiddle['to-outline']()); - r82_xn$putshapes$9Jrj(r82_bowlbottom['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('dollar', function _r0_t43() { - var r84_xn$setwidth$9Jrj, r84_xn$assignunicode$7Hrq, r84_xn$startfrom$1aao, r84_xn$lineto$5sIl, r84_xn$curveto$1aao, r84_xn$cubicto$1aao, r84_xn$putshapes$9Jrj, r84_xn$reverselast$3qIs, r84_include, r84_xn$createstroke$7Hrq, r84_xn$setanchor$9Jrj, _r84_t0; - _r84_t0 = this; - r84_xn$setwidth$9Jrj = _r84_t0['set-width']['bind'](_r84_t0); - r84_xn$assignunicode$7Hrq = _r84_t0['assign-unicode']['bind'](_r84_t0); - r84_xn$startfrom$1aao = _r84_t0['start-from']['bind'](_r84_t0); - r84_xn$lineto$5sIl = _r84_t0['line-to']['bind'](_r84_t0); - r84_xn$curveto$1aao = _r84_t0['curve-to']['bind'](_r84_t0); - r84_xn$cubicto$1aao = _r84_t0['cubic-to']['bind'](_r84_t0); - r84_xn$putshapes$9Jrj = _r84_t0['put-shapes']['bind'](_r84_t0); - r84_xn$reverselast$3qIs = _r84_t0['reverse-last']['bind'](_r84_t0); - r84_include = _r84_t0['include']['bind'](_r84_t0); - r84_xn$createstroke$7Hrq = _r84_t0['create-stroke']['bind'](_r84_t0); - r84_xn$setanchor$9Jrj = _r84_t0['set-anchor']['bind'](_r84_t0); - _r84_t0['gizmo'] = r0_globalTransform; - _r84_t0['set-width'](r0_WIDTH); - r84_xn$setwidth$9Jrj(r0_WIDTH); - r84_xn$assignunicode$7Hrq('$'); - r84_xn$putshapes$9Jrj(r0_glyphs['S']['contours']); - r84_xn$putshapes$9Jrj(r84_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_CAP - r0_HALFSTROKE)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE, r0_CAP - r0_DESCENDER / 2)['to-outline']()); - r84_xn$putshapes$9Jrj(r84_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_DESCENDER / 2)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE, r0_HALFSTROKE)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('fbar', function _r0_t44() { - var r86_xn$setwidth$9Jrj, r86_xn$assignunicode$7Hrq, r86_xn$startfrom$1aao, r86_xn$lineto$5sIl, r86_xn$curveto$1aao, r86_xn$cubicto$1aao, r86_xn$putshapes$9Jrj, r86_xn$reverselast$3qIs, r86_include, r86_xn$createstroke$7Hrq, r86_xn$setanchor$9Jrj, _r86_t0; - _r86_t0 = this; - r86_xn$setwidth$9Jrj = _r86_t0['set-width']['bind'](_r86_t0); - r86_xn$assignunicode$7Hrq = _r86_t0['assign-unicode']['bind'](_r86_t0); - r86_xn$startfrom$1aao = _r86_t0['start-from']['bind'](_r86_t0); - r86_xn$lineto$5sIl = _r86_t0['line-to']['bind'](_r86_t0); - r86_xn$curveto$1aao = _r86_t0['curve-to']['bind'](_r86_t0); - r86_xn$cubicto$1aao = _r86_t0['cubic-to']['bind'](_r86_t0); - r86_xn$putshapes$9Jrj = _r86_t0['put-shapes']['bind'](_r86_t0); - r86_xn$reverselast$3qIs = _r86_t0['reverse-last']['bind'](_r86_t0); - r86_include = _r86_t0['include']['bind'](_r86_t0); - r86_xn$createstroke$7Hrq = _r86_t0['create-stroke']['bind'](_r86_t0); - r86_xn$setanchor$9Jrj = _r86_t0['set-anchor']['bind'](_r86_t0); - _r86_t0['gizmo'] = r0_globalTransform; - _r86_t0['set-width'](r0_WIDTH); - r86_xn$putshapes$9Jrj(r86_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE - r0_LONGSERIF, r0_XH)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['line-to'](r0_MIDDLE + r0_LONGSERIF, r0_XH)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('o', function _r0_t45() { - var r88_xn$setwidth$9Jrj, r88_xn$assignunicode$7Hrq, r88_xn$startfrom$1aao, r88_xn$lineto$5sIl, r88_xn$curveto$1aao, r88_xn$cubicto$1aao, r88_xn$putshapes$9Jrj, r88_xn$reverselast$3qIs, r88_include, r88_xn$createstroke$7Hrq, r88_xn$setanchor$9Jrj, r88_outline, _r88_t0; - _r88_t0 = this; - r88_xn$setwidth$9Jrj = _r88_t0['set-width']['bind'](_r88_t0); - r88_xn$assignunicode$7Hrq = _r88_t0['assign-unicode']['bind'](_r88_t0); - r88_xn$startfrom$1aao = _r88_t0['start-from']['bind'](_r88_t0); - r88_xn$lineto$5sIl = _r88_t0['line-to']['bind'](_r88_t0); - r88_xn$curveto$1aao = _r88_t0['curve-to']['bind'](_r88_t0); - r88_xn$cubicto$1aao = _r88_t0['cubic-to']['bind'](_r88_t0); - r88_xn$putshapes$9Jrj = _r88_t0['put-shapes']['bind'](_r88_t0); - r88_xn$reverselast$3qIs = _r88_t0['reverse-last']['bind'](_r88_t0); - r88_include = _r88_t0['include']['bind'](_r88_t0); - r88_xn$createstroke$7Hrq = _r88_t0['create-stroke']['bind'](_r88_t0); - r88_xn$setanchor$9Jrj = _r88_t0['set-anchor']['bind'](_r88_t0); - _r88_t0['gizmo'] = r0_globalTransform; - _r88_t0['set-width'](r0_WIDTH); - r88_xn$setwidth$9Jrj(r0_WIDTH); - r88_xn$assignunicode$7Hrq('o'); - r88_include(r0_eMarks); - r88_outline = r88_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_XO)['set-width'](r0_STROKE, 0)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r0_O, r0_XH - r0_SMALLSMOOTHA)['line-to'](r0_SB + r0_O, r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['arc-hv-to'](r0_RIGHTSB - r0_O, r0_SMALLSMOOTHA)['line-to'](r0_RIGHTSB - r0_O, r0_XH - r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD); - r88_xn$putshapes$9Jrj(r88_outline['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('o.left', function _r0_t46() { - var r90_xn$setwidth$9Jrj, r90_xn$assignunicode$7Hrq, r90_xn$startfrom$1aao, r90_xn$lineto$5sIl, r90_xn$curveto$1aao, r90_xn$cubicto$1aao, r90_xn$putshapes$9Jrj, r90_xn$reverselast$3qIs, r90_include, r90_xn$createstroke$7Hrq, r90_xn$setanchor$9Jrj, _r90_t0; - _r90_t0 = this; - r90_xn$setwidth$9Jrj = _r90_t0['set-width']['bind'](_r90_t0); - r90_xn$assignunicode$7Hrq = _r90_t0['assign-unicode']['bind'](_r90_t0); - r90_xn$startfrom$1aao = _r90_t0['start-from']['bind'](_r90_t0); - r90_xn$lineto$5sIl = _r90_t0['line-to']['bind'](_r90_t0); - r90_xn$curveto$1aao = _r90_t0['curve-to']['bind'](_r90_t0); - r90_xn$cubicto$1aao = _r90_t0['cubic-to']['bind'](_r90_t0); - r90_xn$putshapes$9Jrj = _r90_t0['put-shapes']['bind'](_r90_t0); - r90_xn$reverselast$3qIs = _r90_t0['reverse-last']['bind'](_r90_t0); - r90_include = _r90_t0['include']['bind'](_r90_t0); - r90_xn$createstroke$7Hrq = _r90_t0['create-stroke']['bind'](_r90_t0); - r90_xn$setanchor$9Jrj = _r90_t0['set-anchor']['bind'](_r90_t0); - _r90_t0['gizmo'] = r0_globalTransform; - _r90_t0['set-width'](r0_WIDTH); - r90_xn$setwidth$9Jrj(r0_WIDTH); - r90_xn$putshapes$9Jrj(r90_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_XO)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['arc-hv-to'](r0_RIGHTSB - r0_O, r0_XH - r0_SMALLSMOOTHB)['line-to'](r0_RIGHTSB - r0_O, r0_SMALLSMOOTHA)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_LEFTWARD)['to-outline']()); - r90_xn$putshapes$9Jrj(r90_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_O + r0_STROKE)['heads-to'](r0_LEFTWARD)['set-width'](r0_STROKE, 0)['arc-hv-to'](r0_SB + r0_STROKE, r0_SMALLSMOOTHB - r0_STROKE * 0.05)['set-width'](r0_HALFSTROKE, 0)['line-to'](r0_SB + r0_STROKE, r0_XH - r0_SMALLSMOOTHA + r0_STROKE * 0.05)['set-width'](r0_HALFSTROKE, 0)['arc-vh-to'](r0_MIDDLE, r0_XO - r0_STROKE)['set-width'](r0_STROKE, 0)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('o.right', function _r0_t47() { - var r92_xn$setwidth$9Jrj, r92_xn$assignunicode$7Hrq, r92_xn$startfrom$1aao, r92_xn$lineto$5sIl, r92_xn$curveto$1aao, r92_xn$cubicto$1aao, r92_xn$putshapes$9Jrj, r92_xn$reverselast$3qIs, r92_include, r92_xn$createstroke$7Hrq, r92_xn$setanchor$9Jrj, _r92_t0; - _r92_t0 = this; - r92_xn$setwidth$9Jrj = _r92_t0['set-width']['bind'](_r92_t0); - r92_xn$assignunicode$7Hrq = _r92_t0['assign-unicode']['bind'](_r92_t0); - r92_xn$startfrom$1aao = _r92_t0['start-from']['bind'](_r92_t0); - r92_xn$lineto$5sIl = _r92_t0['line-to']['bind'](_r92_t0); - r92_xn$curveto$1aao = _r92_t0['curve-to']['bind'](_r92_t0); - r92_xn$cubicto$1aao = _r92_t0['cubic-to']['bind'](_r92_t0); - r92_xn$putshapes$9Jrj = _r92_t0['put-shapes']['bind'](_r92_t0); - r92_xn$reverselast$3qIs = _r92_t0['reverse-last']['bind'](_r92_t0); - r92_include = _r92_t0['include']['bind'](_r92_t0); - r92_xn$createstroke$7Hrq = _r92_t0['create-stroke']['bind'](_r92_t0); - r92_xn$setanchor$9Jrj = _r92_t0['set-anchor']['bind'](_r92_t0); - _r92_t0['gizmo'] = r0_globalTransform; - _r92_t0['set-width'](r0_WIDTH); - r92_xn$setwidth$9Jrj(r0_WIDTH); - r92_xn$putshapes$9Jrj(r92_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD)['set-width'](r0_STROKE, 0)['arc-hv-to'](r0_SB + r0_O, r0_XH - r0_SMALLSMOOTHA)['line-to'](r0_SB + r0_O, r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r92_xn$putshapes$9Jrj(r92_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_O + r0_STROKE)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['arc-hv-to'](r0_RIGHTSB - r0_STROKE, r0_SMALLSMOOTHA - r0_STROKE * 0.05)['set-width'](0, r0_HALFSTROKE)['line-to'](r0_RIGHTSB - r0_STROKE, r0_XH - r0_SMALLSMOOTHB + r0_STROKE * 0.05)['set-width'](0, r0_HALFSTROKE)['arc-vh-to'](r0_MIDDLE, r0_XO - r0_STROKE)['set-width'](0, r0_STROKE)['heads-to'](r0_LEFTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('p', function _r0_t48() { - var r94_xn$setwidth$9Jrj, r94_xn$assignunicode$7Hrq, r94_xn$startfrom$1aao, r94_xn$lineto$5sIl, r94_xn$curveto$1aao, r94_xn$cubicto$1aao, r94_xn$putshapes$9Jrj, r94_xn$reverselast$3qIs, r94_include, r94_xn$createstroke$7Hrq, r94_xn$setanchor$9Jrj, _r94_t0; - _r94_t0 = this; - r94_xn$setwidth$9Jrj = _r94_t0['set-width']['bind'](_r94_t0); - r94_xn$assignunicode$7Hrq = _r94_t0['assign-unicode']['bind'](_r94_t0); - r94_xn$startfrom$1aao = _r94_t0['start-from']['bind'](_r94_t0); - r94_xn$lineto$5sIl = _r94_t0['line-to']['bind'](_r94_t0); - r94_xn$curveto$1aao = _r94_t0['curve-to']['bind'](_r94_t0); - r94_xn$cubicto$1aao = _r94_t0['cubic-to']['bind'](_r94_t0); - r94_xn$putshapes$9Jrj = _r94_t0['put-shapes']['bind'](_r94_t0); - r94_xn$reverselast$3qIs = _r94_t0['reverse-last']['bind'](_r94_t0); - r94_include = _r94_t0['include']['bind'](_r94_t0); - r94_xn$createstroke$7Hrq = _r94_t0['create-stroke']['bind'](_r94_t0); - r94_xn$setanchor$9Jrj = _r94_t0['set-anchor']['bind'](_r94_t0); - _r94_t0['gizmo'] = r0_globalTransform; - _r94_t0['set-width'](r0_WIDTH); - r94_xn$setwidth$9Jrj(r0_WIDTH); - r94_xn$assignunicode$7Hrq('p'); - r94_include(r0_eMarks); - r94_include(r0_glyphs['o.left']); - r94_xn$putshapes$9Jrj(r94_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_SB, r0_DESCENDER)['heads-to'](r0_DOWNWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('b', function _r0_t49() { - var r96_xn$setwidth$9Jrj, r96_xn$assignunicode$7Hrq, r96_xn$startfrom$1aao, r96_xn$lineto$5sIl, r96_xn$curveto$1aao, r96_xn$cubicto$1aao, r96_xn$putshapes$9Jrj, r96_xn$reverselast$3qIs, r96_include, r96_xn$createstroke$7Hrq, r96_xn$setanchor$9Jrj, _r96_t0; - _r96_t0 = this; - r96_xn$setwidth$9Jrj = _r96_t0['set-width']['bind'](_r96_t0); - r96_xn$assignunicode$7Hrq = _r96_t0['assign-unicode']['bind'](_r96_t0); - r96_xn$startfrom$1aao = _r96_t0['start-from']['bind'](_r96_t0); - r96_xn$lineto$5sIl = _r96_t0['line-to']['bind'](_r96_t0); - r96_xn$curveto$1aao = _r96_t0['curve-to']['bind'](_r96_t0); - r96_xn$cubicto$1aao = _r96_t0['cubic-to']['bind'](_r96_t0); - r96_xn$putshapes$9Jrj = _r96_t0['put-shapes']['bind'](_r96_t0); - r96_xn$reverselast$3qIs = _r96_t0['reverse-last']['bind'](_r96_t0); - r96_include = _r96_t0['include']['bind'](_r96_t0); - r96_xn$createstroke$7Hrq = _r96_t0['create-stroke']['bind'](_r96_t0); - r96_xn$setanchor$9Jrj = _r96_t0['set-anchor']['bind'](_r96_t0); - _r96_t0['gizmo'] = r0_globalTransform; - _r96_t0['set-width'](r0_WIDTH); - r96_xn$setwidth$9Jrj(r0_WIDTH); - r96_xn$assignunicode$7Hrq('b'); - r96_include(r0_bMarks); - r96_xn$putshapes$9Jrj(r0_glyphs['o.left']['contours']); - r96_xn$putshapes$9Jrj(r96_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('q', function _r0_t50() { - var r98_xn$setwidth$9Jrj, r98_xn$assignunicode$7Hrq, r98_xn$startfrom$1aao, r98_xn$lineto$5sIl, r98_xn$curveto$1aao, r98_xn$cubicto$1aao, r98_xn$putshapes$9Jrj, r98_xn$reverselast$3qIs, r98_include, r98_xn$createstroke$7Hrq, r98_xn$setanchor$9Jrj, _r98_t0; - _r98_t0 = this; - r98_xn$setwidth$9Jrj = _r98_t0['set-width']['bind'](_r98_t0); - r98_xn$assignunicode$7Hrq = _r98_t0['assign-unicode']['bind'](_r98_t0); - r98_xn$startfrom$1aao = _r98_t0['start-from']['bind'](_r98_t0); - r98_xn$lineto$5sIl = _r98_t0['line-to']['bind'](_r98_t0); - r98_xn$curveto$1aao = _r98_t0['curve-to']['bind'](_r98_t0); - r98_xn$cubicto$1aao = _r98_t0['cubic-to']['bind'](_r98_t0); - r98_xn$putshapes$9Jrj = _r98_t0['put-shapes']['bind'](_r98_t0); - r98_xn$reverselast$3qIs = _r98_t0['reverse-last']['bind'](_r98_t0); - r98_include = _r98_t0['include']['bind'](_r98_t0); - r98_xn$createstroke$7Hrq = _r98_t0['create-stroke']['bind'](_r98_t0); - r98_xn$setanchor$9Jrj = _r98_t0['set-anchor']['bind'](_r98_t0); - _r98_t0['gizmo'] = r0_globalTransform; - _r98_t0['set-width'](r0_WIDTH); - r98_xn$setwidth$9Jrj(r0_WIDTH); - r98_xn$assignunicode$7Hrq('q'); - r98_include(r0_eMarks); - r98_xn$putshapes$9Jrj(r0_glyphs['o.right']['contours']); - r98_xn$putshapes$9Jrj(r98_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r0_DESCENDER)['heads-to'](r0_DOWNWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('d', function _r0_t51() { - var r100_xn$setwidth$9Jrj, r100_xn$assignunicode$7Hrq, r100_xn$startfrom$1aao, r100_xn$lineto$5sIl, r100_xn$curveto$1aao, r100_xn$cubicto$1aao, r100_xn$putshapes$9Jrj, r100_xn$reverselast$3qIs, r100_include, r100_xn$createstroke$7Hrq, r100_xn$setanchor$9Jrj, _r100_t0; - _r100_t0 = this; - r100_xn$setwidth$9Jrj = _r100_t0['set-width']['bind'](_r100_t0); - r100_xn$assignunicode$7Hrq = _r100_t0['assign-unicode']['bind'](_r100_t0); - r100_xn$startfrom$1aao = _r100_t0['start-from']['bind'](_r100_t0); - r100_xn$lineto$5sIl = _r100_t0['line-to']['bind'](_r100_t0); - r100_xn$curveto$1aao = _r100_t0['curve-to']['bind'](_r100_t0); - r100_xn$cubicto$1aao = _r100_t0['cubic-to']['bind'](_r100_t0); - r100_xn$putshapes$9Jrj = _r100_t0['put-shapes']['bind'](_r100_t0); - r100_xn$reverselast$3qIs = _r100_t0['reverse-last']['bind'](_r100_t0); - r100_include = _r100_t0['include']['bind'](_r100_t0); - r100_xn$createstroke$7Hrq = _r100_t0['create-stroke']['bind'](_r100_t0); - r100_xn$setanchor$9Jrj = _r100_t0['set-anchor']['bind'](_r100_t0); - _r100_t0['gizmo'] = r0_globalTransform; - _r100_t0['set-width'](r0_WIDTH); - r100_xn$setwidth$9Jrj(r0_WIDTH); - r100_xn$assignunicode$7Hrq('d'); - r100_include(r0_bMarks); - r100_xn$putshapes$9Jrj(r0_glyphs['o.right']['contours']); - r100_xn$putshapes$9Jrj(r100_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('g', function _r0_t52() { - var r102_xn$setwidth$9Jrj, r102_xn$assignunicode$7Hrq, r102_xn$startfrom$1aao, r102_xn$lineto$5sIl, r102_xn$curveto$1aao, r102_xn$cubicto$1aao, r102_xn$putshapes$9Jrj, r102_xn$reverselast$3qIs, r102_include, r102_xn$createstroke$7Hrq, r102_xn$setanchor$9Jrj, _r102_t0; - _r102_t0 = this; - r102_xn$setwidth$9Jrj = _r102_t0['set-width']['bind'](_r102_t0); - r102_xn$assignunicode$7Hrq = _r102_t0['assign-unicode']['bind'](_r102_t0); - r102_xn$startfrom$1aao = _r102_t0['start-from']['bind'](_r102_t0); - r102_xn$lineto$5sIl = _r102_t0['line-to']['bind'](_r102_t0); - r102_xn$curveto$1aao = _r102_t0['curve-to']['bind'](_r102_t0); - r102_xn$cubicto$1aao = _r102_t0['cubic-to']['bind'](_r102_t0); - r102_xn$putshapes$9Jrj = _r102_t0['put-shapes']['bind'](_r102_t0); - r102_xn$reverselast$3qIs = _r102_t0['reverse-last']['bind'](_r102_t0); - r102_include = _r102_t0['include']['bind'](_r102_t0); - r102_xn$createstroke$7Hrq = _r102_t0['create-stroke']['bind'](_r102_t0); - r102_xn$setanchor$9Jrj = _r102_t0['set-anchor']['bind'](_r102_t0); - _r102_t0['gizmo'] = r0_globalTransform; - _r102_t0['set-width'](r0_WIDTH); - r102_xn$setwidth$9Jrj(r0_WIDTH); - r102_xn$assignunicode$7Hrq('g'); - r102_include(r0_pMarks); - r102_xn$putshapes$9Jrj([ - r0_Ring(r0_XO, r0_XH * r0_GBARPOS, r0_SB * 1.25, r0_RIGHTSB - 0.25 * r0_SB, r0_SMALLSMOOTH), - r0_Ring(r0_XO - r0_STROKE, r0_XH * r0_GBARPOS + r0_STROKE, r0_SB * 1.25 + r0_STROKE, r0_RIGHTSB - 0.25 * r0_SB - r0_STROKE, r0_SMALLSMOOTH - r0_STROKE) - ]); - r102_xn$reverselast$3qIs(); - r102_xn$putshapes$9Jrj(r102_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_XH * r0_GBARPOS)['set-width'](0, r0_STROKE * 0.75)['arc-hv-to'](r0_SB * 1.5 + r0_STROKE, (r0_O - r0_DESCENDER * 0.85 + r0_XH * r0_GBARPOS) * 0.47)['set-width'](0, r0_STROKE)['arc-vh-to'](r0_MIDDLE + r0_DESCENDER * 0.15, r0_O - r0_DESCENDER * 0.85)['line-to'](r0_MIDDLE - r0_DESCENDER * 0.15, r0_O - r0_DESCENDER * 0.85)['arc-hv-to'](r0_RIGHTSB - r0_O * 2, -r0_STROKE * r0_globalTransform['yx'] * 2)['arc-vh-to'](r0_MIDDLE, r0_DESCENDER + r0_O)['arc-hv-to'](r0_SB, r0_DESCENDER * 0.1)['arc-vh-to'](r0_MIDDLE + r0_DESCENDER * 0.15, r0_O - r0_DESCENDER * 0.85)['to-outline']()); - r102_xn$startfrom$1aao(r0_RIGHTSB + 0.5 * r0_SB, r0_XH); - r102_xn$lineto$5sIl(r0_RIGHTSB + 0.5 * r0_SB, r0_XH - r0_STROKE); - r102_xn$lineto$5sIl(r0_MIDDLE, r0_XH - r0_STROKE - r0_O); - r102_xn$lineto$5sIl(r0_MIDDLE, r0_XH); - return void 0; - }); - r0_xn$createglyph$7Hrq('c', function _r0_t53() { - var r104_xn$setwidth$9Jrj, r104_xn$assignunicode$7Hrq, r104_xn$startfrom$1aao, r104_xn$lineto$5sIl, r104_xn$curveto$1aao, r104_xn$cubicto$1aao, r104_xn$putshapes$9Jrj, r104_xn$reverselast$3qIs, r104_include, r104_xn$createstroke$7Hrq, r104_xn$setanchor$9Jrj, r104_outline, _r104_t0; - _r104_t0 = this; - r104_xn$setwidth$9Jrj = _r104_t0['set-width']['bind'](_r104_t0); - r104_xn$assignunicode$7Hrq = _r104_t0['assign-unicode']['bind'](_r104_t0); - r104_xn$startfrom$1aao = _r104_t0['start-from']['bind'](_r104_t0); - r104_xn$lineto$5sIl = _r104_t0['line-to']['bind'](_r104_t0); - r104_xn$curveto$1aao = _r104_t0['curve-to']['bind'](_r104_t0); - r104_xn$cubicto$1aao = _r104_t0['cubic-to']['bind'](_r104_t0); - r104_xn$putshapes$9Jrj = _r104_t0['put-shapes']['bind'](_r104_t0); - r104_xn$reverselast$3qIs = _r104_t0['reverse-last']['bind'](_r104_t0); - r104_include = _r104_t0['include']['bind'](_r104_t0); - r104_xn$createstroke$7Hrq = _r104_t0['create-stroke']['bind'](_r104_t0); - r104_xn$setanchor$9Jrj = _r104_t0['set-anchor']['bind'](_r104_t0); - _r104_t0['gizmo'] = r0_globalTransform; - _r104_t0['set-width'](r0_WIDTH); - r104_xn$setwidth$9Jrj(r0_WIDTH); - r104_xn$assignunicode$7Hrq('c'); - r104_include(r0_eMarks); - r104_outline = r104_xn$createstroke$7Hrq(); - r104_outline['start-from'](r0_RIGHTSB - r0_OXHOOK, r0_XH - r0_HOOK)['curve-to'](r0_MIDDLE + r0_KAPPA_HOOK * (r0_MIDDLE - r0_para['sb']), r0_XO, r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r0_O, r0_XH - r0_SMALLSMOOTHA)['line-to'](r0_SB + r0_O, r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['curve-to'](r0_MIDDLE + (r0_KAPPA_HOOK + r0_TAILADJKAPPA * r0_globalTransform['yx']) * (r0_MIDDLE - r0_SB), r0_O, r0_RIGHTSB - r0_OXHOOK + r0_TAILADJX * r0_globalTransform['yx'], r0_HOOK - r0_TAILADJY * r0_globalTransform['yx']); - r104_xn$putshapes$9Jrj(r104_outline['to-outline'](r0_STROKE, 0)); - return void 0; - }); - r0_xn$createglyph$7Hrq('e.upright', function _r0_t54() { - var r106_xn$setwidth$9Jrj, r106_xn$assignunicode$7Hrq, r106_xn$startfrom$1aao, r106_xn$lineto$5sIl, r106_xn$curveto$1aao, r106_xn$cubicto$1aao, r106_xn$putshapes$9Jrj, r106_xn$reverselast$3qIs, r106_include, r106_xn$createstroke$7Hrq, r106_xn$setanchor$9Jrj, r106_barbottom, r106_outline, r106_bar, _r106_t0; - _r106_t0 = this; - r106_xn$setwidth$9Jrj = _r106_t0['set-width']['bind'](_r106_t0); - r106_xn$assignunicode$7Hrq = _r106_t0['assign-unicode']['bind'](_r106_t0); - r106_xn$startfrom$1aao = _r106_t0['start-from']['bind'](_r106_t0); - r106_xn$lineto$5sIl = _r106_t0['line-to']['bind'](_r106_t0); - r106_xn$curveto$1aao = _r106_t0['curve-to']['bind'](_r106_t0); - r106_xn$cubicto$1aao = _r106_t0['cubic-to']['bind'](_r106_t0); - r106_xn$putshapes$9Jrj = _r106_t0['put-shapes']['bind'](_r106_t0); - r106_xn$reverselast$3qIs = _r106_t0['reverse-last']['bind'](_r106_t0); - r106_include = _r106_t0['include']['bind'](_r106_t0); - r106_xn$createstroke$7Hrq = _r106_t0['create-stroke']['bind'](_r106_t0); - r106_xn$setanchor$9Jrj = _r106_t0['set-anchor']['bind'](_r106_t0); - _r106_t0['gizmo'] = r0_globalTransform; - _r106_t0['set-width'](r0_WIDTH); - r106_xn$setwidth$9Jrj(r0_WIDTH); - r106_barbottom = r0_XH * r0_BARPOS; - r106_outline = r106_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB - r0_O, r106_barbottom)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB - r0_O, r0_XH - r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r0_O, r0_XH - r0_SMALLSMOOTHA)['line-to'](r0_SB + r0_O, r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['curve-to'](r0_MIDDLE + (r0_KAPPA_HOOK + r0_TAILADJKAPPA * r0_globalTransform['yx']) * (r0_MIDDLE - r0_SB), r0_O, r0_RIGHTSB - r0_OXHOOK + r0_TAILADJX * r0_globalTransform['yx'], r0_HOOK - r0_TAILADJY * r0_globalTransform['yx']); - r106_bar = r106_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_HALFSTROKE, r106_barbottom)['set-width'](r0_STROKE, 0)['heads-to'](r0_RIGHTWARD)['line-to'](r0_RIGHTSB - r0_HALFSTROKE, r106_barbottom)['heads-to'](r0_RIGHTWARD); - r106_xn$putshapes$9Jrj(r106_outline['to-outline']()); - r106_xn$putshapes$9Jrj(r106_bar['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('e.italic', function _r0_t55() { - var r108_xn$setwidth$9Jrj, r108_xn$assignunicode$7Hrq, r108_xn$startfrom$1aao, r108_xn$lineto$5sIl, r108_xn$curveto$1aao, r108_xn$cubicto$1aao, r108_xn$putshapes$9Jrj, r108_xn$reverselast$3qIs, r108_include, r108_xn$createstroke$7Hrq, r108_xn$setanchor$9Jrj, r108_barbottom, _r108_t0; - _r108_t0 = this; - r108_xn$setwidth$9Jrj = _r108_t0['set-width']['bind'](_r108_t0); - r108_xn$assignunicode$7Hrq = _r108_t0['assign-unicode']['bind'](_r108_t0); - r108_xn$startfrom$1aao = _r108_t0['start-from']['bind'](_r108_t0); - r108_xn$lineto$5sIl = _r108_t0['line-to']['bind'](_r108_t0); - r108_xn$curveto$1aao = _r108_t0['curve-to']['bind'](_r108_t0); - r108_xn$cubicto$1aao = _r108_t0['cubic-to']['bind'](_r108_t0); - r108_xn$putshapes$9Jrj = _r108_t0['put-shapes']['bind'](_r108_t0); - r108_xn$reverselast$3qIs = _r108_t0['reverse-last']['bind'](_r108_t0); - r108_include = _r108_t0['include']['bind'](_r108_t0); - r108_xn$createstroke$7Hrq = _r108_t0['create-stroke']['bind'](_r108_t0); - r108_xn$setanchor$9Jrj = _r108_t0['set-anchor']['bind'](_r108_t0); - _r108_t0['gizmo'] = r0_globalTransform; - _r108_t0['set-width'](r0_WIDTH); - r108_xn$setwidth$9Jrj(r0_WIDTH); - r108_barbottom = r0_XH * (r0_BARPOS - 0.04); - r108_xn$putshapes$9Jrj(r108_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_O + r0_STROKE, r108_barbottom)['set-width'](r0_STROKE, 0)['arc-hv-to'](r0_RIGHTSB - r0_O, r0_XH - r0_SMALLSMOOTHB * 0.95)['arc-vh-to'](r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r0_O, r0_XH - r0_SMALLSMOOTHA)['line-to'](r0_SB + r0_O, r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['curve-to'](r0_MIDDLE + (r0_KAPPA_HOOK + r0_TAILADJKAPPA * r0_globalTransform['yx']) * (r0_MIDDLE - r0_SB), r0_O, r0_RIGHTSB - r0_OXHOOK + r0_TAILADJX * r0_globalTransform['yx'], r0_HOOK - r0_TAILADJY * r0_globalTransform['yx'])['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('e', function _r0_t56() { - var r110_xn$setwidth$9Jrj, r110_xn$assignunicode$7Hrq, r110_xn$startfrom$1aao, r110_xn$lineto$5sIl, r110_xn$curveto$1aao, r110_xn$cubicto$1aao, r110_xn$putshapes$9Jrj, r110_xn$reverselast$3qIs, r110_include, r110_xn$createstroke$7Hrq, r110_xn$setanchor$9Jrj, _r110_t0; - _r110_t0 = this; - r110_xn$setwidth$9Jrj = _r110_t0['set-width']['bind'](_r110_t0); - r110_xn$assignunicode$7Hrq = _r110_t0['assign-unicode']['bind'](_r110_t0); - r110_xn$startfrom$1aao = _r110_t0['start-from']['bind'](_r110_t0); - r110_xn$lineto$5sIl = _r110_t0['line-to']['bind'](_r110_t0); - r110_xn$curveto$1aao = _r110_t0['curve-to']['bind'](_r110_t0); - r110_xn$cubicto$1aao = _r110_t0['cubic-to']['bind'](_r110_t0); - r110_xn$putshapes$9Jrj = _r110_t0['put-shapes']['bind'](_r110_t0); - r110_xn$reverselast$3qIs = _r110_t0['reverse-last']['bind'](_r110_t0); - r110_include = _r110_t0['include']['bind'](_r110_t0); - r110_xn$createstroke$7Hrq = _r110_t0['create-stroke']['bind'](_r110_t0); - r110_xn$setanchor$9Jrj = _r110_t0['set-anchor']['bind'](_r110_t0); - _r110_t0['gizmo'] = r0_globalTransform; - _r110_t0['set-width'](r0_WIDTH); - r110_xn$setwidth$9Jrj(r0_WIDTH); - r110_xn$assignunicode$7Hrq('e'); - r110_include(r0_eMarks); - if (r0_para['italicangle'] > 0) { - r110_include(r0_glyphs['e.italic']); - } else { - r110_include(r0_glyphs['e.upright']); - } - return void 0; - }); - r0_xn$createglyph$7Hrq('t', function _r0_t57() { - var r112_xn$setwidth$9Jrj, r112_xn$assignunicode$7Hrq, r112_xn$startfrom$1aao, r112_xn$lineto$5sIl, r112_xn$curveto$1aao, r112_xn$cubicto$1aao, r112_xn$putshapes$9Jrj, r112_xn$reverselast$3qIs, r112_include, r112_xn$createstroke$7Hrq, r112_xn$setanchor$9Jrj, r112_center, r112_hookx, r112_turn, _r112_t0; - _r112_t0 = this; - r112_xn$setwidth$9Jrj = _r112_t0['set-width']['bind'](_r112_t0); - r112_xn$assignunicode$7Hrq = _r112_t0['assign-unicode']['bind'](_r112_t0); - r112_xn$startfrom$1aao = _r112_t0['start-from']['bind'](_r112_t0); - r112_xn$lineto$5sIl = _r112_t0['line-to']['bind'](_r112_t0); - r112_xn$curveto$1aao = _r112_t0['curve-to']['bind'](_r112_t0); - r112_xn$cubicto$1aao = _r112_t0['cubic-to']['bind'](_r112_t0); - r112_xn$putshapes$9Jrj = _r112_t0['put-shapes']['bind'](_r112_t0); - r112_xn$reverselast$3qIs = _r112_t0['reverse-last']['bind'](_r112_t0); - r112_include = _r112_t0['include']['bind'](_r112_t0); - r112_xn$createstroke$7Hrq = _r112_t0['create-stroke']['bind'](_r112_t0); - r112_xn$setanchor$9Jrj = _r112_t0['set-anchor']['bind'](_r112_t0); - _r112_t0['gizmo'] = r0_globalTransform; - _r112_t0['set-width'](r0_WIDTH); - r112_xn$setwidth$9Jrj(r0_WIDTH); - r112_xn$assignunicode$7Hrq('t'); - r112_include(r0_bMarks); - r112_center = r0_MIDDLE - r0_TBALANCE - r0_HALFSTROKE; - r112_hookx = r112_center + (r0_WIDTH - r0_SB * 2) * 0.82 - r0_OXHOOK + r0_TAILADJX * r0_globalTransform['yx']; - r112_turn = r112_center + (r112_hookx - r112_center) * (0.5 + r0_globalTransform['yx'] * 0.5); - r112_xn$putshapes$9Jrj(r112_xn$createstroke$7Hrq()['start-from'](r112_center, r0_CAP)['set-width'](r0_STROKE, 0)['heads-to'](r0_DOWNWARD)['line-to'](r112_center, r0_SMOOTHB)['arc-vh-to'](r112_turn, r0_O)['curve-to'](r112_turn + (r0_KAPPA_HOOK + r0_TAILADJKAPPA * r0_globalTransform['yx'] + 0.1) * (r112_hookx - r112_turn), r0_O, r112_hookx, r0_HOOK - r0_TAILADJY * r0_globalTransform['yx'])['to-outline']()); - r112_xn$putshapes$9Jrj(r112_xn$createstroke$7Hrq()['start-from'](r112_center + r0_HALFSTROKE - r0_LONGSERIF + r0_TBALANCE2, r0_XH)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['line-to'](r112_center + r0_HALFSTROKE + r0_LONGSERIF + r0_TBALANCE2, r0_XH)['heads-to'](r0_RIGHTWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('a.upright', function _r0_t58() { - var r114_xn$setwidth$9Jrj, r114_xn$assignunicode$7Hrq, r114_xn$startfrom$1aao, r114_xn$lineto$5sIl, r114_xn$curveto$1aao, r114_xn$cubicto$1aao, r114_xn$putshapes$9Jrj, r114_xn$reverselast$3qIs, r114_include, r114_xn$createstroke$7Hrq, r114_xn$setanchor$9Jrj, r114_bartop, _r114_t0; - _r114_t0 = this; - r114_xn$setwidth$9Jrj = _r114_t0['set-width']['bind'](_r114_t0); - r114_xn$assignunicode$7Hrq = _r114_t0['assign-unicode']['bind'](_r114_t0); - r114_xn$startfrom$1aao = _r114_t0['start-from']['bind'](_r114_t0); - r114_xn$lineto$5sIl = _r114_t0['line-to']['bind'](_r114_t0); - r114_xn$curveto$1aao = _r114_t0['curve-to']['bind'](_r114_t0); - r114_xn$cubicto$1aao = _r114_t0['cubic-to']['bind'](_r114_t0); - r114_xn$putshapes$9Jrj = _r114_t0['put-shapes']['bind'](_r114_t0); - r114_xn$reverselast$3qIs = _r114_t0['reverse-last']['bind'](_r114_t0); - r114_include = _r114_t0['include']['bind'](_r114_t0); - r114_xn$createstroke$7Hrq = _r114_t0['create-stroke']['bind'](_r114_t0); - r114_xn$setanchor$9Jrj = _r114_t0['set-anchor']['bind'](_r114_t0); - _r114_t0['gizmo'] = r0_globalTransform; - _r114_t0['set-width'](r0_WIDTH); - r114_xn$setwidth$9Jrj(r0_WIDTH); - r114_bartop = r0_XH * r0_BARPOS + r0_STROKE; - r114_xn$putshapes$9Jrj(r114_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_XH - r0_SMOOTHA)['arc-vh-to'](r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD)['curve-to'](r0_MIDDLE - r0_KAPPA_AHOOK * (r0_MIDDLE - r0_SB), r0_XO, r0_SB + r0_OXHOOK, r0_XH - r0_AHOOK)['to-outline']()); - r114_xn$putshapes$9Jrj(r114_xn$createstroke$7Hrq()['start-from'](r0_WIDTH * 0.47, r0_O)['set-width'](0, r0_STROKE)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r0_O, r114_bartop * 0.45)['arc-vh-to'](r0_WIDTH * 0.6, r114_bartop)['line-to'](r0_RIGHTSB, r114_bartop)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r114_xn$putshapes$9Jrj(r114_xn$createstroke$7Hrq()['start-from'](r0_WIDTH * 0.47, r0_O + r0_STROKE)['set-width'](0, r0_STROKE)['heads-to'](r0_RIGHTWARD)['arc-hv-to'](r0_RIGHTSB - r0_STROKE, r0_SMALLSMOOTHA * 0.65)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE * 0.4)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('a.italic', function _r0_t59() { - var r116_xn$setwidth$9Jrj, r116_xn$assignunicode$7Hrq, r116_xn$startfrom$1aao, r116_xn$lineto$5sIl, r116_xn$curveto$1aao, r116_xn$cubicto$1aao, r116_xn$putshapes$9Jrj, r116_xn$reverselast$3qIs, r116_include, r116_xn$createstroke$7Hrq, r116_xn$setanchor$9Jrj, _r116_t0; - _r116_t0 = this; - r116_xn$setwidth$9Jrj = _r116_t0['set-width']['bind'](_r116_t0); - r116_xn$assignunicode$7Hrq = _r116_t0['assign-unicode']['bind'](_r116_t0); - r116_xn$startfrom$1aao = _r116_t0['start-from']['bind'](_r116_t0); - r116_xn$lineto$5sIl = _r116_t0['line-to']['bind'](_r116_t0); - r116_xn$curveto$1aao = _r116_t0['curve-to']['bind'](_r116_t0); - r116_xn$cubicto$1aao = _r116_t0['cubic-to']['bind'](_r116_t0); - r116_xn$putshapes$9Jrj = _r116_t0['put-shapes']['bind'](_r116_t0); - r116_xn$reverselast$3qIs = _r116_t0['reverse-last']['bind'](_r116_t0); - r116_include = _r116_t0['include']['bind'](_r116_t0); - r116_xn$createstroke$7Hrq = _r116_t0['create-stroke']['bind'](_r116_t0); - r116_xn$setanchor$9Jrj = _r116_t0['set-anchor']['bind'](_r116_t0); - _r116_t0['gizmo'] = r0_globalTransform; - _r116_t0['set-width'](r0_WIDTH); - r116_xn$setwidth$9Jrj(r0_WIDTH); - r116_include(r0_glyphs['o.right']); - r116_xn$putshapes$9Jrj(r116_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_XH)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('a', function _r0_t60() { - var r118_xn$setwidth$9Jrj, r118_xn$assignunicode$7Hrq, r118_xn$startfrom$1aao, r118_xn$lineto$5sIl, r118_xn$curveto$1aao, r118_xn$cubicto$1aao, r118_xn$putshapes$9Jrj, r118_xn$reverselast$3qIs, r118_include, r118_xn$createstroke$7Hrq, r118_xn$setanchor$9Jrj, _r118_t0; - _r118_t0 = this; - r118_xn$setwidth$9Jrj = _r118_t0['set-width']['bind'](_r118_t0); - r118_xn$assignunicode$7Hrq = _r118_t0['assign-unicode']['bind'](_r118_t0); - r118_xn$startfrom$1aao = _r118_t0['start-from']['bind'](_r118_t0); - r118_xn$lineto$5sIl = _r118_t0['line-to']['bind'](_r118_t0); - r118_xn$curveto$1aao = _r118_t0['curve-to']['bind'](_r118_t0); - r118_xn$cubicto$1aao = _r118_t0['cubic-to']['bind'](_r118_t0); - r118_xn$putshapes$9Jrj = _r118_t0['put-shapes']['bind'](_r118_t0); - r118_xn$reverselast$3qIs = _r118_t0['reverse-last']['bind'](_r118_t0); - r118_include = _r118_t0['include']['bind'](_r118_t0); - r118_xn$createstroke$7Hrq = _r118_t0['create-stroke']['bind'](_r118_t0); - r118_xn$setanchor$9Jrj = _r118_t0['set-anchor']['bind'](_r118_t0); - _r118_t0['gizmo'] = r0_globalTransform; - _r118_t0['set-width'](r0_WIDTH); - r118_xn$setwidth$9Jrj(r0_WIDTH); - r118_xn$assignunicode$7Hrq('a'); - r118_include(r0_eMarks); - if (r0_para['italicangle'] > 0) { - r118_include(r0_glyphs['a.italic']); - } else { - r118_include(r0_glyphs['a.upright']); - } - return void 0; - }); - r0_xn$createglyph$7Hrq('u', function _r0_t61() { - var r120_xn$setwidth$9Jrj, r120_xn$assignunicode$7Hrq, r120_xn$startfrom$1aao, r120_xn$lineto$5sIl, r120_xn$curveto$1aao, r120_xn$cubicto$1aao, r120_xn$putshapes$9Jrj, r120_xn$reverselast$3qIs, r120_include, r120_xn$createstroke$7Hrq, r120_xn$setanchor$9Jrj, _r120_t0; - _r120_t0 = this; - r120_xn$setwidth$9Jrj = _r120_t0['set-width']['bind'](_r120_t0); - r120_xn$assignunicode$7Hrq = _r120_t0['assign-unicode']['bind'](_r120_t0); - r120_xn$startfrom$1aao = _r120_t0['start-from']['bind'](_r120_t0); - r120_xn$lineto$5sIl = _r120_t0['line-to']['bind'](_r120_t0); - r120_xn$curveto$1aao = _r120_t0['curve-to']['bind'](_r120_t0); - r120_xn$cubicto$1aao = _r120_t0['cubic-to']['bind'](_r120_t0); - r120_xn$putshapes$9Jrj = _r120_t0['put-shapes']['bind'](_r120_t0); - r120_xn$reverselast$3qIs = _r120_t0['reverse-last']['bind'](_r120_t0); - r120_include = _r120_t0['include']['bind'](_r120_t0); - r120_xn$createstroke$7Hrq = _r120_t0['create-stroke']['bind'](_r120_t0); - r120_xn$setanchor$9Jrj = _r120_t0['set-anchor']['bind'](_r120_t0); - _r120_t0['gizmo'] = r0_globalTransform; - _r120_t0['set-width'](r0_WIDTH); - r120_xn$setwidth$9Jrj(r0_WIDTH); - r120_xn$assignunicode$7Hrq('u'); - r120_include(r0_eMarks); - r120_xn$putshapes$9Jrj(r120_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_SB, r0_SMALLSMOOTHA)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r120_xn$putshapes$9Jrj(r120_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_O + r0_STROKE)['set-width'](0, r0_STROKE)['heads-to'](r0_RIGHTWARD)['arc-hv-to'](r0_RIGHTSB - r0_STROKE * r0_ITALICCOR, r0_SMALLSMOOTHA)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE * 0.4)['to-outline']()); - r120_xn$putshapes$9Jrj(r120_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_XH)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('nbowl', function _r0_t62() { - var r122_xn$setwidth$9Jrj, r122_xn$assignunicode$7Hrq, r122_xn$startfrom$1aao, r122_xn$lineto$5sIl, r122_xn$curveto$1aao, r122_xn$cubicto$1aao, r122_xn$putshapes$9Jrj, r122_xn$reverselast$3qIs, r122_include, r122_xn$createstroke$7Hrq, r122_xn$setanchor$9Jrj, _r122_t0; - _r122_t0 = this; - r122_xn$setwidth$9Jrj = _r122_t0['set-width']['bind'](_r122_t0); - r122_xn$assignunicode$7Hrq = _r122_t0['assign-unicode']['bind'](_r122_t0); - r122_xn$startfrom$1aao = _r122_t0['start-from']['bind'](_r122_t0); - r122_xn$lineto$5sIl = _r122_t0['line-to']['bind'](_r122_t0); - r122_xn$curveto$1aao = _r122_t0['curve-to']['bind'](_r122_t0); - r122_xn$cubicto$1aao = _r122_t0['cubic-to']['bind'](_r122_t0); - r122_xn$putshapes$9Jrj = _r122_t0['put-shapes']['bind'](_r122_t0); - r122_xn$reverselast$3qIs = _r122_t0['reverse-last']['bind'](_r122_t0); - r122_include = _r122_t0['include']['bind'](_r122_t0); - r122_xn$createstroke$7Hrq = _r122_t0['create-stroke']['bind'](_r122_t0); - r122_xn$setanchor$9Jrj = _r122_t0['set-anchor']['bind'](_r122_t0); - _r122_t0['gizmo'] = r0_globalTransform; - _r122_t0['set-width'](r0_WIDTH); - r122_xn$putshapes$9Jrj(r122_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, 0)['heads-to'](r0_UPWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, r0_XH - r0_SMALLSMOOTHB)['arc-vh-to'](r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD)['to-outline']()); - r122_xn$putshapes$9Jrj(r122_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r0_XO - r0_STROKE)['set-width'](0, r0_STROKE)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r0_STROKE * r0_ITALICCOR, r0_XH - r0_SMALLSMOOTHA)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE * 0.4)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('n', function _r0_t63() { - var r124_xn$setwidth$9Jrj, r124_xn$assignunicode$7Hrq, r124_xn$startfrom$1aao, r124_xn$lineto$5sIl, r124_xn$curveto$1aao, r124_xn$cubicto$1aao, r124_xn$putshapes$9Jrj, r124_xn$reverselast$3qIs, r124_include, r124_xn$createstroke$7Hrq, r124_xn$setanchor$9Jrj, _r124_t0; - _r124_t0 = this; - r124_xn$setwidth$9Jrj = _r124_t0['set-width']['bind'](_r124_t0); - r124_xn$assignunicode$7Hrq = _r124_t0['assign-unicode']['bind'](_r124_t0); - r124_xn$startfrom$1aao = _r124_t0['start-from']['bind'](_r124_t0); - r124_xn$lineto$5sIl = _r124_t0['line-to']['bind'](_r124_t0); - r124_xn$curveto$1aao = _r124_t0['curve-to']['bind'](_r124_t0); - r124_xn$cubicto$1aao = _r124_t0['cubic-to']['bind'](_r124_t0); - r124_xn$putshapes$9Jrj = _r124_t0['put-shapes']['bind'](_r124_t0); - r124_xn$reverselast$3qIs = _r124_t0['reverse-last']['bind'](_r124_t0); - r124_include = _r124_t0['include']['bind'](_r124_t0); - r124_xn$createstroke$7Hrq = _r124_t0['create-stroke']['bind'](_r124_t0); - r124_xn$setanchor$9Jrj = _r124_t0['set-anchor']['bind'](_r124_t0); - _r124_t0['gizmo'] = r0_globalTransform; - _r124_t0['set-width'](r0_WIDTH); - r124_xn$setwidth$9Jrj(r0_WIDTH); - r124_xn$assignunicode$7Hrq('n'); - r124_include(r0_eMarks); - r124_include(r0_glyphs['nbowl']); - r124_xn$putshapes$9Jrj(r124_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB, r0_XH)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('h', function _r0_t64() { - var r126_xn$setwidth$9Jrj, r126_xn$assignunicode$7Hrq, r126_xn$startfrom$1aao, r126_xn$lineto$5sIl, r126_xn$curveto$1aao, r126_xn$cubicto$1aao, r126_xn$putshapes$9Jrj, r126_xn$reverselast$3qIs, r126_include, r126_xn$createstroke$7Hrq, r126_xn$setanchor$9Jrj, _r126_t0; - _r126_t0 = this; - r126_xn$setwidth$9Jrj = _r126_t0['set-width']['bind'](_r126_t0); - r126_xn$assignunicode$7Hrq = _r126_t0['assign-unicode']['bind'](_r126_t0); - r126_xn$startfrom$1aao = _r126_t0['start-from']['bind'](_r126_t0); - r126_xn$lineto$5sIl = _r126_t0['line-to']['bind'](_r126_t0); - r126_xn$curveto$1aao = _r126_t0['curve-to']['bind'](_r126_t0); - r126_xn$cubicto$1aao = _r126_t0['cubic-to']['bind'](_r126_t0); - r126_xn$putshapes$9Jrj = _r126_t0['put-shapes']['bind'](_r126_t0); - r126_xn$reverselast$3qIs = _r126_t0['reverse-last']['bind'](_r126_t0); - r126_include = _r126_t0['include']['bind'](_r126_t0); - r126_xn$createstroke$7Hrq = _r126_t0['create-stroke']['bind'](_r126_t0); - r126_xn$setanchor$9Jrj = _r126_t0['set-anchor']['bind'](_r126_t0); - _r126_t0['gizmo'] = r0_globalTransform; - _r126_t0['set-width'](r0_WIDTH); - r126_xn$setwidth$9Jrj(r0_WIDTH); - r126_xn$assignunicode$7Hrq('h'); - r126_include(r0_bMarks); - r126_include(r0_glyphs['nbowl']); - r126_xn$putshapes$9Jrj(r126_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('m', function _r0_t65() { - var r128_xn$setwidth$9Jrj, r128_xn$assignunicode$7Hrq, r128_xn$startfrom$1aao, r128_xn$lineto$5sIl, r128_xn$curveto$1aao, r128_xn$cubicto$1aao, r128_xn$putshapes$9Jrj, r128_xn$reverselast$3qIs, r128_include, r128_xn$createstroke$7Hrq, r128_xn$setanchor$9Jrj, r128_sw, r128_m1, r128_m2, _r128_t0; - _r128_t0 = this; - r128_xn$setwidth$9Jrj = _r128_t0['set-width']['bind'](_r128_t0); - r128_xn$assignunicode$7Hrq = _r128_t0['assign-unicode']['bind'](_r128_t0); - r128_xn$startfrom$1aao = _r128_t0['start-from']['bind'](_r128_t0); - r128_xn$lineto$5sIl = _r128_t0['line-to']['bind'](_r128_t0); - r128_xn$curveto$1aao = _r128_t0['curve-to']['bind'](_r128_t0); - r128_xn$cubicto$1aao = _r128_t0['cubic-to']['bind'](_r128_t0); - r128_xn$putshapes$9Jrj = _r128_t0['put-shapes']['bind'](_r128_t0); - r128_xn$reverselast$3qIs = _r128_t0['reverse-last']['bind'](_r128_t0); - r128_include = _r128_t0['include']['bind'](_r128_t0); - r128_xn$createstroke$7Hrq = _r128_t0['create-stroke']['bind'](_r128_t0); - r128_xn$setanchor$9Jrj = _r128_t0['set-anchor']['bind'](_r128_t0); - _r128_t0['gizmo'] = r0_globalTransform; - _r128_t0['set-width'](r0_WIDTH); - r128_xn$setwidth$9Jrj(r0_WIDTH); - r128_xn$assignunicode$7Hrq('m'); - r128_include(r0_eMarks); - r128_sw = Math['min'](r0_STROKE, (r0_WIDTH - r0_SB * 2) * 0.26); - r128_m1 = (r0_MIDDLE + r0_SB + r128_sw * 0.25) / 2; - r128_m2 = r128_m1 + (r0_MIDDLE - r128_sw / 2 - r0_SB); - r128_xn$putshapes$9Jrj(r128_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE - r128_sw / 2, 0)['set-width'](0, r128_sw)['heads-to'](r0_UPWARD)['line-to'](r0_MIDDLE - r128_sw / 2, r0_XH - r0_SMALLSMOOTHA)['arc-vh-to'](r128_m1, r0_XO - r0_STROKE)['set-width'](0, r0_STROKE)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r128_sw * 0.75, r0_XH - r0_SMALLSMOOTHA)['heads-to'](r0_DOWNWARD)['set-width'](0, r128_sw * 0.4)['to-outline']()); - r128_xn$putshapes$9Jrj(r128_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB - r128_sw - r0_O, 0)['set-width'](0, r128_sw)['heads-to'](r0_UPWARD)['line-to'](r0_RIGHTSB - r128_sw - r0_O, r0_XH - r0_SMALLSMOOTHA)['arc-vh-to'](r128_m2, r0_XO - r0_STROKE)['set-width'](0, r0_STROKE)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_MIDDLE + r128_sw * 0.25, r0_XH - r0_SMALLSMOOTHA)['heads-to'](r0_DOWNWARD)['set-width'](0, r128_sw * 0.4)['to-outline']()); - r128_xn$putshapes$9Jrj(r128_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_O, 0)['heads-to'](r0_UPWARD)['set-width'](0, r128_sw)['line-to'](r0_SB + r0_O, r0_XH)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessi.straight', function _r0_t66() { - var r130_xn$setwidth$9Jrj, r130_xn$assignunicode$7Hrq, r130_xn$startfrom$1aao, r130_xn$lineto$5sIl, r130_xn$curveto$1aao, r130_xn$cubicto$1aao, r130_xn$putshapes$9Jrj, r130_xn$reverselast$3qIs, r130_include, r130_xn$createstroke$7Hrq, r130_xn$setanchor$9Jrj, _r130_t0; - _r130_t0 = this; - r130_xn$setwidth$9Jrj = _r130_t0['set-width']['bind'](_r130_t0); - r130_xn$assignunicode$7Hrq = _r130_t0['assign-unicode']['bind'](_r130_t0); - r130_xn$startfrom$1aao = _r130_t0['start-from']['bind'](_r130_t0); - r130_xn$lineto$5sIl = _r130_t0['line-to']['bind'](_r130_t0); - r130_xn$curveto$1aao = _r130_t0['curve-to']['bind'](_r130_t0); - r130_xn$cubicto$1aao = _r130_t0['cubic-to']['bind'](_r130_t0); - r130_xn$putshapes$9Jrj = _r130_t0['put-shapes']['bind'](_r130_t0); - r130_xn$reverselast$3qIs = _r130_t0['reverse-last']['bind'](_r130_t0); - r130_include = _r130_t0['include']['bind'](_r130_t0); - r130_xn$createstroke$7Hrq = _r130_t0['create-stroke']['bind'](_r130_t0); - r130_xn$setanchor$9Jrj = _r130_t0['set-anchor']['bind'](_r130_t0); - _r130_t0['gizmo'] = r0_globalTransform; - _r130_t0['set-width'](r0_WIDTH); - r130_include(r0_eMarks); - r130_xn$putshapes$9Jrj(r130_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE, r0_XH)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessi.hooky', function _r0_t67() { - var r132_xn$setwidth$9Jrj, r132_xn$assignunicode$7Hrq, r132_xn$startfrom$1aao, r132_xn$lineto$5sIl, r132_xn$curveto$1aao, r132_xn$cubicto$1aao, r132_xn$putshapes$9Jrj, r132_xn$reverselast$3qIs, r132_include, r132_xn$createstroke$7Hrq, r132_xn$setanchor$9Jrj, _r132_t0; - _r132_t0 = this; - r132_xn$setwidth$9Jrj = _r132_t0['set-width']['bind'](_r132_t0); - r132_xn$assignunicode$7Hrq = _r132_t0['assign-unicode']['bind'](_r132_t0); - r132_xn$startfrom$1aao = _r132_t0['start-from']['bind'](_r132_t0); - r132_xn$lineto$5sIl = _r132_t0['line-to']['bind'](_r132_t0); - r132_xn$curveto$1aao = _r132_t0['curve-to']['bind'](_r132_t0); - r132_xn$cubicto$1aao = _r132_t0['cubic-to']['bind'](_r132_t0); - r132_xn$putshapes$9Jrj = _r132_t0['put-shapes']['bind'](_r132_t0); - r132_xn$reverselast$3qIs = _r132_t0['reverse-last']['bind'](_r132_t0); - r132_include = _r132_t0['include']['bind'](_r132_t0); - r132_xn$createstroke$7Hrq = _r132_t0['create-stroke']['bind'](_r132_t0); - r132_xn$setanchor$9Jrj = _r132_t0['set-anchor']['bind'](_r132_t0); - _r132_t0['gizmo'] = r0_globalTransform; - _r132_t0['set-width'](r0_WIDTH); - r132_include(r0_glyphs['dotlessi.straight'], true); - r132_xn$putshapes$9Jrj(r0_leftwardTopSerif(r0_MIDDLE, r0_XH, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessi.zshaped', function _r0_t68() { - var r134_xn$setwidth$9Jrj, r134_xn$assignunicode$7Hrq, r134_xn$startfrom$1aao, r134_xn$lineto$5sIl, r134_xn$curveto$1aao, r134_xn$cubicto$1aao, r134_xn$putshapes$9Jrj, r134_xn$reverselast$3qIs, r134_include, r134_xn$createstroke$7Hrq, r134_xn$setanchor$9Jrj, _r134_t0; - _r134_t0 = this; - r134_xn$setwidth$9Jrj = _r134_t0['set-width']['bind'](_r134_t0); - r134_xn$assignunicode$7Hrq = _r134_t0['assign-unicode']['bind'](_r134_t0); - r134_xn$startfrom$1aao = _r134_t0['start-from']['bind'](_r134_t0); - r134_xn$lineto$5sIl = _r134_t0['line-to']['bind'](_r134_t0); - r134_xn$curveto$1aao = _r134_t0['curve-to']['bind'](_r134_t0); - r134_xn$cubicto$1aao = _r134_t0['cubic-to']['bind'](_r134_t0); - r134_xn$putshapes$9Jrj = _r134_t0['put-shapes']['bind'](_r134_t0); - r134_xn$reverselast$3qIs = _r134_t0['reverse-last']['bind'](_r134_t0); - r134_include = _r134_t0['include']['bind'](_r134_t0); - r134_xn$createstroke$7Hrq = _r134_t0['create-stroke']['bind'](_r134_t0); - r134_xn$setanchor$9Jrj = _r134_t0['set-anchor']['bind'](_r134_t0); - _r134_t0['gizmo'] = r0_globalTransform; - _r134_t0['set-width'](r0_WIDTH); - r134_include(r0_glyphs['dotlessi.hooky'], true); - r134_xn$putshapes$9Jrj(r0_rightwardBottomSerif(r0_MIDDLE, 0, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessi.serifed', function _r0_t69() { - var r136_xn$setwidth$9Jrj, r136_xn$assignunicode$7Hrq, r136_xn$startfrom$1aao, r136_xn$lineto$5sIl, r136_xn$curveto$1aao, r136_xn$cubicto$1aao, r136_xn$putshapes$9Jrj, r136_xn$reverselast$3qIs, r136_include, r136_xn$createstroke$7Hrq, r136_xn$setanchor$9Jrj, r136_balance, _r136_t0; - _r136_t0 = this; - r136_xn$setwidth$9Jrj = _r136_t0['set-width']['bind'](_r136_t0); - r136_xn$assignunicode$7Hrq = _r136_t0['assign-unicode']['bind'](_r136_t0); - r136_xn$startfrom$1aao = _r136_t0['start-from']['bind'](_r136_t0); - r136_xn$lineto$5sIl = _r136_t0['line-to']['bind'](_r136_t0); - r136_xn$curveto$1aao = _r136_t0['curve-to']['bind'](_r136_t0); - r136_xn$cubicto$1aao = _r136_t0['cubic-to']['bind'](_r136_t0); - r136_xn$putshapes$9Jrj = _r136_t0['put-shapes']['bind'](_r136_t0); - r136_xn$reverselast$3qIs = _r136_t0['reverse-last']['bind'](_r136_t0); - r136_include = _r136_t0['include']['bind'](_r136_t0); - r136_xn$createstroke$7Hrq = _r136_t0['create-stroke']['bind'](_r136_t0); - r136_xn$setanchor$9Jrj = _r136_t0['set-anchor']['bind'](_r136_t0); - _r136_t0['gizmo'] = r0_globalTransform; - _r136_t0['set-width'](r0_WIDTH); - r136_include(r0_eMarks); - r136_balance = r0_ILBALANCE; - r136_xn$putshapes$9Jrj(r136_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE + r136_balance, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE + r136_balance, r0_XH)['heads-to'](r0_UPWARD)['to-outline']()); - r136_xn$putshapes$9Jrj(r0_leftwardTopSerif(r0_MIDDLE + r136_balance, r0_XH, r0_LONGSERIF - r136_balance)); - r136_xn$putshapes$9Jrj(r0_rightwardBottomSerif(r0_MIDDLE, 0, r0_LONGSERIF)); - r136_xn$putshapes$9Jrj(r0_leftwardBottomSerif(r0_MIDDLE, 0, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessi', function _r0_t70() { - var r138_xn$setwidth$9Jrj, r138_xn$assignunicode$7Hrq, r138_xn$startfrom$1aao, r138_xn$lineto$5sIl, r138_xn$curveto$1aao, r138_xn$cubicto$1aao, r138_xn$putshapes$9Jrj, r138_xn$reverselast$3qIs, r138_include, r138_xn$createstroke$7Hrq, r138_xn$setanchor$9Jrj, r138_otherwise, _r138_t0, _r138_t1, _r138_t2, _r138_t3, _r138_t4, _r138_t5, _r138_t6, _r138_t7, _r138_t8, _r138_t9; - _r138_t1 = this; - r138_xn$setwidth$9Jrj = _r138_t1['set-width']['bind'](_r138_t1); - r138_xn$assignunicode$7Hrq = _r138_t1['assign-unicode']['bind'](_r138_t1); - r138_xn$startfrom$1aao = _r138_t1['start-from']['bind'](_r138_t1); - r138_xn$lineto$5sIl = _r138_t1['line-to']['bind'](_r138_t1); - r138_xn$curveto$1aao = _r138_t1['curve-to']['bind'](_r138_t1); - r138_xn$cubicto$1aao = _r138_t1['cubic-to']['bind'](_r138_t1); - r138_xn$putshapes$9Jrj = _r138_t1['put-shapes']['bind'](_r138_t1); - r138_xn$reverselast$3qIs = _r138_t1['reverse-last']['bind'](_r138_t1); - r138_include = _r138_t1['include']['bind'](_r138_t1); - r138_xn$createstroke$7Hrq = _r138_t1['create-stroke']['bind'](_r138_t1); - r138_xn$setanchor$9Jrj = _r138_t1['set-anchor']['bind'](_r138_t1); - _r138_t1['gizmo'] = r0_globalTransform; - _r138_t1['set-width'](r0_WIDTH); - r138_xn$setwidth$9Jrj(r0_WIDTH); - r138_xn$assignunicode$7Hrq(305); - _r138_t2 = r138_include; - _r138_t3 = r0_glyphs; - _r138_t0 = r0_variantSelector['zero']; - if ('straight' === _r138_t0) { - _r138_t4 = 'dotlessi.straight'; - } else { - if ('hooky' === _r138_t0) { - _r138_t5 = 'dotlessi.hooky'; - } else { - if ('zshaped' === _r138_t0) { - _r138_t6 = 'dotlessi.zshaped'; - } else { - if ('serifed' === _r138_t0) { - _r138_t7 = 'dotlessi.serifed'; - } else { - r138_otherwise = _r138_t0; - _r138_t7 = 'dotlessi.serifed'; - } - _r138_t6 = _r138_t7; - } - _r138_t5 = _r138_t6; - } - _r138_t4 = _r138_t5; - } - _r138_t8 = _r138_t3[_r138_t4]; - _r138_t9 = true; - _r138_t2(_r138_t8, _r138_t9); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotaccent', function _r0_t71() { - var r140_xn$setwidth$9Jrj, r140_xn$assignunicode$7Hrq, r140_xn$startfrom$1aao, r140_xn$lineto$5sIl, r140_xn$curveto$1aao, r140_xn$cubicto$1aao, r140_xn$putshapes$9Jrj, r140_xn$reverselast$3qIs, r140_include, r140_xn$createstroke$7Hrq, r140_xn$setanchor$9Jrj, _r140_t0; - _r140_t0 = this; - r140_xn$setwidth$9Jrj = _r140_t0['set-width']['bind'](_r140_t0); - r140_xn$assignunicode$7Hrq = _r140_t0['assign-unicode']['bind'](_r140_t0); - r140_xn$startfrom$1aao = _r140_t0['start-from']['bind'](_r140_t0); - r140_xn$lineto$5sIl = _r140_t0['line-to']['bind'](_r140_t0); - r140_xn$curveto$1aao = _r140_t0['curve-to']['bind'](_r140_t0); - r140_xn$cubicto$1aao = _r140_t0['cubic-to']['bind'](_r140_t0); - r140_xn$putshapes$9Jrj = _r140_t0['put-shapes']['bind'](_r140_t0); - r140_xn$reverselast$3qIs = _r140_t0['reverse-last']['bind'](_r140_t0); - r140_include = _r140_t0['include']['bind'](_r140_t0); - r140_xn$createstroke$7Hrq = _r140_t0['create-stroke']['bind'](_r140_t0); - r140_xn$setanchor$9Jrj = _r140_t0['set-anchor']['bind'](_r140_t0); - _r140_t0['gizmo'] = r0_globalTransform; - _r140_t0['set-width'](r0_WIDTH); - r140_xn$setwidth$9Jrj(r0_WIDTH); - r140_xn$setanchor$9Jrj('above', r0_MARK, r0_MIDDLE, r0_XH, r0_MIDDLE, r0_XH + r0_ACCENT); - r140_xn$putshapes$9Jrj([r0_Ring(r0_XH + r0_ACCENT + r0_DOTRADIUS, r0_XH + r0_ACCENT - r0_DOTRADIUS, r0_MIDDLE - r0_DOTRADIUS, r0_MIDDLE + r0_DOTRADIUS)]); - return void 0; - }); - r0_xn$createglyph$7Hrq('i', function _r0_t72() { - var r142_xn$setwidth$9Jrj, r142_xn$assignunicode$7Hrq, r142_xn$startfrom$1aao, r142_xn$lineto$5sIl, r142_xn$curveto$1aao, r142_xn$cubicto$1aao, r142_xn$putshapes$9Jrj, r142_xn$reverselast$3qIs, r142_include, r142_xn$createstroke$7Hrq, r142_xn$setanchor$9Jrj, _r142_t0; - _r142_t0 = this; - r142_xn$setwidth$9Jrj = _r142_t0['set-width']['bind'](_r142_t0); - r142_xn$assignunicode$7Hrq = _r142_t0['assign-unicode']['bind'](_r142_t0); - r142_xn$startfrom$1aao = _r142_t0['start-from']['bind'](_r142_t0); - r142_xn$lineto$5sIl = _r142_t0['line-to']['bind'](_r142_t0); - r142_xn$curveto$1aao = _r142_t0['curve-to']['bind'](_r142_t0); - r142_xn$cubicto$1aao = _r142_t0['cubic-to']['bind'](_r142_t0); - r142_xn$putshapes$9Jrj = _r142_t0['put-shapes']['bind'](_r142_t0); - r142_xn$reverselast$3qIs = _r142_t0['reverse-last']['bind'](_r142_t0); - r142_include = _r142_t0['include']['bind'](_r142_t0); - r142_xn$createstroke$7Hrq = _r142_t0['create-stroke']['bind'](_r142_t0); - r142_xn$setanchor$9Jrj = _r142_t0['set-anchor']['bind'](_r142_t0); - _r142_t0['gizmo'] = r0_globalTransform; - _r142_t0['set-width'](r0_WIDTH); - r142_xn$setwidth$9Jrj(r0_WIDTH); - r142_xn$assignunicode$7Hrq('i'); - r142_include(r0_glyphs['dotlessi'], r0_BASE); - r142_include(r0_glyphs['dotaccent']); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessj.straight', function _r0_t73() { - var r144_xn$setwidth$9Jrj, r144_xn$assignunicode$7Hrq, r144_xn$startfrom$1aao, r144_xn$lineto$5sIl, r144_xn$curveto$1aao, r144_xn$cubicto$1aao, r144_xn$putshapes$9Jrj, r144_xn$reverselast$3qIs, r144_include, r144_xn$createstroke$7Hrq, r144_xn$setanchor$9Jrj, _r144_t0; - _r144_t0 = this; - r144_xn$setwidth$9Jrj = _r144_t0['set-width']['bind'](_r144_t0); - r144_xn$assignunicode$7Hrq = _r144_t0['assign-unicode']['bind'](_r144_t0); - r144_xn$startfrom$1aao = _r144_t0['start-from']['bind'](_r144_t0); - r144_xn$lineto$5sIl = _r144_t0['line-to']['bind'](_r144_t0); - r144_xn$curveto$1aao = _r144_t0['curve-to']['bind'](_r144_t0); - r144_xn$cubicto$1aao = _r144_t0['cubic-to']['bind'](_r144_t0); - r144_xn$putshapes$9Jrj = _r144_t0['put-shapes']['bind'](_r144_t0); - r144_xn$reverselast$3qIs = _r144_t0['reverse-last']['bind'](_r144_t0); - r144_include = _r144_t0['include']['bind'](_r144_t0); - r144_xn$createstroke$7Hrq = _r144_t0['create-stroke']['bind'](_r144_t0); - r144_xn$setanchor$9Jrj = _r144_t0['set-anchor']['bind'](_r144_t0); - _r144_t0['gizmo'] = r0_globalTransform; - _r144_t0['set-width'](r0_WIDTH); - r144_xn$putshapes$9Jrj(r144_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE + r0_JBALANCE, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE + r0_JBALANCE, 0)['arc-vh-to'](r0_MIDDLE + r0_DESCENDER, r0_DESCENDER + r0_HALFSTROKE)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessj.serifed', function _r0_t74() { - var r146_xn$setwidth$9Jrj, r146_xn$assignunicode$7Hrq, r146_xn$startfrom$1aao, r146_xn$lineto$5sIl, r146_xn$curveto$1aao, r146_xn$cubicto$1aao, r146_xn$putshapes$9Jrj, r146_xn$reverselast$3qIs, r146_include, r146_xn$createstroke$7Hrq, r146_xn$setanchor$9Jrj, _r146_t0; - _r146_t0 = this; - r146_xn$setwidth$9Jrj = _r146_t0['set-width']['bind'](_r146_t0); - r146_xn$assignunicode$7Hrq = _r146_t0['assign-unicode']['bind'](_r146_t0); - r146_xn$startfrom$1aao = _r146_t0['start-from']['bind'](_r146_t0); - r146_xn$lineto$5sIl = _r146_t0['line-to']['bind'](_r146_t0); - r146_xn$curveto$1aao = _r146_t0['curve-to']['bind'](_r146_t0); - r146_xn$cubicto$1aao = _r146_t0['cubic-to']['bind'](_r146_t0); - r146_xn$putshapes$9Jrj = _r146_t0['put-shapes']['bind'](_r146_t0); - r146_xn$reverselast$3qIs = _r146_t0['reverse-last']['bind'](_r146_t0); - r146_include = _r146_t0['include']['bind'](_r146_t0); - r146_xn$createstroke$7Hrq = _r146_t0['create-stroke']['bind'](_r146_t0); - r146_xn$setanchor$9Jrj = _r146_t0['set-anchor']['bind'](_r146_t0); - _r146_t0['gizmo'] = r0_globalTransform; - _r146_t0['set-width'](r0_WIDTH); - r146_include(r0_glyphs['dotlessj.straight']); - r146_xn$putshapes$9Jrj(r0_leftwardTopSerif(r0_MIDDLE + r0_JBALANCE, r0_XH, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('dotlessj', function _r0_t75() { - var r148_xn$setwidth$9Jrj, r148_xn$assignunicode$7Hrq, r148_xn$startfrom$1aao, r148_xn$lineto$5sIl, r148_xn$curveto$1aao, r148_xn$cubicto$1aao, r148_xn$putshapes$9Jrj, r148_xn$reverselast$3qIs, r148_include, r148_xn$createstroke$7Hrq, r148_xn$setanchor$9Jrj, _r148_t0; - _r148_t0 = this; - r148_xn$setwidth$9Jrj = _r148_t0['set-width']['bind'](_r148_t0); - r148_xn$assignunicode$7Hrq = _r148_t0['assign-unicode']['bind'](_r148_t0); - r148_xn$startfrom$1aao = _r148_t0['start-from']['bind'](_r148_t0); - r148_xn$lineto$5sIl = _r148_t0['line-to']['bind'](_r148_t0); - r148_xn$curveto$1aao = _r148_t0['curve-to']['bind'](_r148_t0); - r148_xn$cubicto$1aao = _r148_t0['cubic-to']['bind'](_r148_t0); - r148_xn$putshapes$9Jrj = _r148_t0['put-shapes']['bind'](_r148_t0); - r148_xn$reverselast$3qIs = _r148_t0['reverse-last']['bind'](_r148_t0); - r148_include = _r148_t0['include']['bind'](_r148_t0); - r148_xn$createstroke$7Hrq = _r148_t0['create-stroke']['bind'](_r148_t0); - r148_xn$setanchor$9Jrj = _r148_t0['set-anchor']['bind'](_r148_t0); - _r148_t0['gizmo'] = r0_globalTransform; - _r148_t0['set-width'](r0_WIDTH); - r148_xn$setwidth$9Jrj(r0_WIDTH); - r148_xn$setanchor$9Jrj('above', r0_BASE, r0_MIDDLE + r0_JBALANCE, r0_XH); - r148_xn$assignunicode$7Hrq(567); - r148_include(r0_glyphs['dotlessj.serifed']); - return void 0; - }); - r0_xn$createglyph$7Hrq('j', function _r0_t76() { - var r150_xn$setwidth$9Jrj, r150_xn$assignunicode$7Hrq, r150_xn$startfrom$1aao, r150_xn$lineto$5sIl, r150_xn$curveto$1aao, r150_xn$cubicto$1aao, r150_xn$putshapes$9Jrj, r150_xn$reverselast$3qIs, r150_include, r150_xn$createstroke$7Hrq, r150_xn$setanchor$9Jrj, _r150_t0; - _r150_t0 = this; - r150_xn$setwidth$9Jrj = _r150_t0['set-width']['bind'](_r150_t0); - r150_xn$assignunicode$7Hrq = _r150_t0['assign-unicode']['bind'](_r150_t0); - r150_xn$startfrom$1aao = _r150_t0['start-from']['bind'](_r150_t0); - r150_xn$lineto$5sIl = _r150_t0['line-to']['bind'](_r150_t0); - r150_xn$curveto$1aao = _r150_t0['curve-to']['bind'](_r150_t0); - r150_xn$cubicto$1aao = _r150_t0['cubic-to']['bind'](_r150_t0); - r150_xn$putshapes$9Jrj = _r150_t0['put-shapes']['bind'](_r150_t0); - r150_xn$reverselast$3qIs = _r150_t0['reverse-last']['bind'](_r150_t0); - r150_include = _r150_t0['include']['bind'](_r150_t0); - r150_xn$createstroke$7Hrq = _r150_t0['create-stroke']['bind'](_r150_t0); - r150_xn$setanchor$9Jrj = _r150_t0['set-anchor']['bind'](_r150_t0); - _r150_t0['gizmo'] = r0_globalTransform; - _r150_t0['set-width'](r0_WIDTH); - r150_xn$setwidth$9Jrj(r0_WIDTH); - r150_xn$assignunicode$7Hrq('j'); - r150_include(r0_glyphs['dotlessj'], r0_BASE); - r150_include(r0_glyphs['dotaccent']); - return void 0; - }); - r0_xn$createglyph$7Hrq('l.straight', function _r0_t77() { - var r152_xn$setwidth$9Jrj, r152_xn$assignunicode$7Hrq, r152_xn$startfrom$1aao, r152_xn$lineto$5sIl, r152_xn$curveto$1aao, r152_xn$cubicto$1aao, r152_xn$putshapes$9Jrj, r152_xn$reverselast$3qIs, r152_include, r152_xn$createstroke$7Hrq, r152_xn$setanchor$9Jrj, _r152_t0; - _r152_t0 = this; - r152_xn$setwidth$9Jrj = _r152_t0['set-width']['bind'](_r152_t0); - r152_xn$assignunicode$7Hrq = _r152_t0['assign-unicode']['bind'](_r152_t0); - r152_xn$startfrom$1aao = _r152_t0['start-from']['bind'](_r152_t0); - r152_xn$lineto$5sIl = _r152_t0['line-to']['bind'](_r152_t0); - r152_xn$curveto$1aao = _r152_t0['curve-to']['bind'](_r152_t0); - r152_xn$cubicto$1aao = _r152_t0['cubic-to']['bind'](_r152_t0); - r152_xn$putshapes$9Jrj = _r152_t0['put-shapes']['bind'](_r152_t0); - r152_xn$reverselast$3qIs = _r152_t0['reverse-last']['bind'](_r152_t0); - r152_include = _r152_t0['include']['bind'](_r152_t0); - r152_xn$createstroke$7Hrq = _r152_t0['create-stroke']['bind'](_r152_t0); - r152_xn$setanchor$9Jrj = _r152_t0['set-anchor']['bind'](_r152_t0); - _r152_t0['gizmo'] = r0_globalTransform; - _r152_t0['set-width'](r0_WIDTH); - r152_xn$putshapes$9Jrj(r152_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('l.hooky', function _r0_t78() { - var r154_xn$setwidth$9Jrj, r154_xn$assignunicode$7Hrq, r154_xn$startfrom$1aao, r154_xn$lineto$5sIl, r154_xn$curveto$1aao, r154_xn$cubicto$1aao, r154_xn$putshapes$9Jrj, r154_xn$reverselast$3qIs, r154_include, r154_xn$createstroke$7Hrq, r154_xn$setanchor$9Jrj, _r154_t0; - _r154_t0 = this; - r154_xn$setwidth$9Jrj = _r154_t0['set-width']['bind'](_r154_t0); - r154_xn$assignunicode$7Hrq = _r154_t0['assign-unicode']['bind'](_r154_t0); - r154_xn$startfrom$1aao = _r154_t0['start-from']['bind'](_r154_t0); - r154_xn$lineto$5sIl = _r154_t0['line-to']['bind'](_r154_t0); - r154_xn$curveto$1aao = _r154_t0['curve-to']['bind'](_r154_t0); - r154_xn$cubicto$1aao = _r154_t0['cubic-to']['bind'](_r154_t0); - r154_xn$putshapes$9Jrj = _r154_t0['put-shapes']['bind'](_r154_t0); - r154_xn$reverselast$3qIs = _r154_t0['reverse-last']['bind'](_r154_t0); - r154_include = _r154_t0['include']['bind'](_r154_t0); - r154_xn$createstroke$7Hrq = _r154_t0['create-stroke']['bind'](_r154_t0); - r154_xn$setanchor$9Jrj = _r154_t0['set-anchor']['bind'](_r154_t0); - _r154_t0['gizmo'] = r0_globalTransform; - _r154_t0['set-width'](r0_WIDTH); - r154_include(r0_glyphs['l.straight']); - r154_xn$putshapes$9Jrj(r0_leftwardTopSerif(r0_MIDDLE, r0_CAP, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('l.zshaped', function _r0_t79() { - var r156_xn$setwidth$9Jrj, r156_xn$assignunicode$7Hrq, r156_xn$startfrom$1aao, r156_xn$lineto$5sIl, r156_xn$curveto$1aao, r156_xn$cubicto$1aao, r156_xn$putshapes$9Jrj, r156_xn$reverselast$3qIs, r156_include, r156_xn$createstroke$7Hrq, r156_xn$setanchor$9Jrj, _r156_t0; - _r156_t0 = this; - r156_xn$setwidth$9Jrj = _r156_t0['set-width']['bind'](_r156_t0); - r156_xn$assignunicode$7Hrq = _r156_t0['assign-unicode']['bind'](_r156_t0); - r156_xn$startfrom$1aao = _r156_t0['start-from']['bind'](_r156_t0); - r156_xn$lineto$5sIl = _r156_t0['line-to']['bind'](_r156_t0); - r156_xn$curveto$1aao = _r156_t0['curve-to']['bind'](_r156_t0); - r156_xn$cubicto$1aao = _r156_t0['cubic-to']['bind'](_r156_t0); - r156_xn$putshapes$9Jrj = _r156_t0['put-shapes']['bind'](_r156_t0); - r156_xn$reverselast$3qIs = _r156_t0['reverse-last']['bind'](_r156_t0); - r156_include = _r156_t0['include']['bind'](_r156_t0); - r156_xn$createstroke$7Hrq = _r156_t0['create-stroke']['bind'](_r156_t0); - r156_xn$setanchor$9Jrj = _r156_t0['set-anchor']['bind'](_r156_t0); - _r156_t0['gizmo'] = r0_globalTransform; - _r156_t0['set-width'](r0_WIDTH); - r156_include(r0_glyphs['l.hooky']); - r156_xn$putshapes$9Jrj(r0_rightwardBottomSerif(r0_MIDDLE, 0, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('l.serifed', function _r0_t80() { - var r158_xn$setwidth$9Jrj, r158_xn$assignunicode$7Hrq, r158_xn$startfrom$1aao, r158_xn$lineto$5sIl, r158_xn$curveto$1aao, r158_xn$cubicto$1aao, r158_xn$putshapes$9Jrj, r158_xn$reverselast$3qIs, r158_include, r158_xn$createstroke$7Hrq, r158_xn$setanchor$9Jrj, r158_balance, _r158_t0; - _r158_t0 = this; - r158_xn$setwidth$9Jrj = _r158_t0['set-width']['bind'](_r158_t0); - r158_xn$assignunicode$7Hrq = _r158_t0['assign-unicode']['bind'](_r158_t0); - r158_xn$startfrom$1aao = _r158_t0['start-from']['bind'](_r158_t0); - r158_xn$lineto$5sIl = _r158_t0['line-to']['bind'](_r158_t0); - r158_xn$curveto$1aao = _r158_t0['curve-to']['bind'](_r158_t0); - r158_xn$cubicto$1aao = _r158_t0['cubic-to']['bind'](_r158_t0); - r158_xn$putshapes$9Jrj = _r158_t0['put-shapes']['bind'](_r158_t0); - r158_xn$reverselast$3qIs = _r158_t0['reverse-last']['bind'](_r158_t0); - r158_include = _r158_t0['include']['bind'](_r158_t0); - r158_xn$createstroke$7Hrq = _r158_t0['create-stroke']['bind'](_r158_t0); - r158_xn$setanchor$9Jrj = _r158_t0['set-anchor']['bind'](_r158_t0); - _r158_t0['gizmo'] = r0_globalTransform; - _r158_t0['set-width'](r0_WIDTH); - r158_balance = r0_ILBALANCE; - r158_xn$putshapes$9Jrj(r158_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE + r158_balance, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE + r158_balance, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r158_xn$putshapes$9Jrj(r0_leftwardTopSerif(r0_MIDDLE + r158_balance, r0_CAP, r0_LONGSERIF - r158_balance)); - r158_xn$putshapes$9Jrj(r0_rightwardBottomSerif(r0_MIDDLE, 0, r0_LONGSERIF)); - r158_xn$putshapes$9Jrj(r0_leftwardBottomSerif(r0_MIDDLE, 0, r0_LONGSERIF)); - return void 0; - }); - r0_xn$createglyph$7Hrq('l', function _r0_t81() { - var r160_xn$setwidth$9Jrj, r160_xn$assignunicode$7Hrq, r160_xn$startfrom$1aao, r160_xn$lineto$5sIl, r160_xn$curveto$1aao, r160_xn$cubicto$1aao, r160_xn$putshapes$9Jrj, r160_xn$reverselast$3qIs, r160_include, r160_xn$createstroke$7Hrq, r160_xn$setanchor$9Jrj, r160_otherwise, _r160_t0, _r160_t1, _r160_t2, _r160_t3, _r160_t4, _r160_t5, _r160_t6, _r160_t7, _r160_t8; - _r160_t1 = this; - r160_xn$setwidth$9Jrj = _r160_t1['set-width']['bind'](_r160_t1); - r160_xn$assignunicode$7Hrq = _r160_t1['assign-unicode']['bind'](_r160_t1); - r160_xn$startfrom$1aao = _r160_t1['start-from']['bind'](_r160_t1); - r160_xn$lineto$5sIl = _r160_t1['line-to']['bind'](_r160_t1); - r160_xn$curveto$1aao = _r160_t1['curve-to']['bind'](_r160_t1); - r160_xn$cubicto$1aao = _r160_t1['cubic-to']['bind'](_r160_t1); - r160_xn$putshapes$9Jrj = _r160_t1['put-shapes']['bind'](_r160_t1); - r160_xn$reverselast$3qIs = _r160_t1['reverse-last']['bind'](_r160_t1); - r160_include = _r160_t1['include']['bind'](_r160_t1); - r160_xn$createstroke$7Hrq = _r160_t1['create-stroke']['bind'](_r160_t1); - r160_xn$setanchor$9Jrj = _r160_t1['set-anchor']['bind'](_r160_t1); - _r160_t1['gizmo'] = r0_globalTransform; - _r160_t1['set-width'](r0_WIDTH); - r160_xn$setwidth$9Jrj(r0_WIDTH); - r160_xn$assignunicode$7Hrq('l'); - r160_include(r0_bMarks); - _r160_t2 = r160_include; - _r160_t3 = r0_glyphs; - _r160_t0 = r0_variantSelector['zero']; - if ('straight' === _r160_t0) { - _r160_t4 = 'l.straight'; - } else { - if ('hooky' === _r160_t0) { - _r160_t5 = 'l.hooky'; - } else { - if ('zshaped' === _r160_t0) { - _r160_t6 = 'l.zshaped'; - } else { - if ('serifed' === _r160_t0) { - _r160_t7 = 'l.serifed'; - } else { - r160_otherwise = _r160_t0; - _r160_t7 = 'l.serifed'; - } - _r160_t6 = _r160_t7; - } - _r160_t5 = _r160_t6; - } - _r160_t4 = _r160_t5; - } - _r160_t8 = _r160_t3[_r160_t4]; - _r160_t2(_r160_t8); - return void 0; - }); - r0_xn$createglyph$7Hrq('x', function _r0_t82() { - var r162_xn$setwidth$9Jrj, r162_xn$assignunicode$7Hrq, r162_xn$startfrom$1aao, r162_xn$lineto$5sIl, r162_xn$curveto$1aao, r162_xn$cubicto$1aao, r162_xn$putshapes$9Jrj, r162_xn$reverselast$3qIs, r162_include, r162_xn$createstroke$7Hrq, r162_xn$setanchor$9Jrj, r162_TURN, r162_barone, r162_bartwo, _r162_t0; - _r162_t0 = this; - r162_xn$setwidth$9Jrj = _r162_t0['set-width']['bind'](_r162_t0); - r162_xn$assignunicode$7Hrq = _r162_t0['assign-unicode']['bind'](_r162_t0); - r162_xn$startfrom$1aao = _r162_t0['start-from']['bind'](_r162_t0); - r162_xn$lineto$5sIl = _r162_t0['line-to']['bind'](_r162_t0); - r162_xn$curveto$1aao = _r162_t0['curve-to']['bind'](_r162_t0); - r162_xn$cubicto$1aao = _r162_t0['cubic-to']['bind'](_r162_t0); - r162_xn$putshapes$9Jrj = _r162_t0['put-shapes']['bind'](_r162_t0); - r162_xn$reverselast$3qIs = _r162_t0['reverse-last']['bind'](_r162_t0); - r162_include = _r162_t0['include']['bind'](_r162_t0); - r162_xn$createstroke$7Hrq = _r162_t0['create-stroke']['bind'](_r162_t0); - r162_xn$setanchor$9Jrj = _r162_t0['set-anchor']['bind'](_r162_t0); - _r162_t0['gizmo'] = r0_globalTransform; - _r162_t0['set-width'](r0_WIDTH); - r162_xn$setwidth$9Jrj(r0_WIDTH); - r162_xn$assignunicode$7Hrq('x'); - r162_include(r0_eMarks); - r162_TURN = r0_XH * 0.1; - r162_barone = r162_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_HALFSTROKE + r0_O, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['cubic-to'](r0_SB + r0_HALFSTROKE + r0_O, r162_TURN + 0.17 * (r0_XH - r162_TURN), r0_RIGHTSB - r0_HALFSTROKE - r0_O, r0_XH - r162_TURN - 0.17 * (r0_XH - r162_TURN), r0_RIGHTSB - r0_HALFSTROKE - r0_O, r0_XH)['heads-to'](r0_UPWARD); - r162_bartwo = r162_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB - r0_HALFSTROKE - r0_O, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['cubic-to'](r0_RIGHTSB - r0_HALFSTROKE - r0_O, r162_TURN + 0.17 * (r0_XH - r162_TURN), r0_SB + r0_HALFSTROKE + r0_O, r0_XH - r162_TURN - 0.17 * (r0_XH - r162_TURN), r0_SB + r0_HALFSTROKE + r0_O, r0_XH)['heads-to'](r0_UPWARD); - r162_xn$putshapes$9Jrj(r162_barone['to-outline']()); - r162_xn$putshapes$9Jrj(r162_bartwo['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('v', function _r0_t83() { - var r164_xn$setwidth$9Jrj, r164_xn$assignunicode$7Hrq, r164_xn$startfrom$1aao, r164_xn$lineto$5sIl, r164_xn$curveto$1aao, r164_xn$cubicto$1aao, r164_xn$putshapes$9Jrj, r164_xn$reverselast$3qIs, r164_include, r164_xn$createstroke$7Hrq, r164_xn$setanchor$9Jrj, r164_TURN, r164_leftbar, r164_rightbar, _r164_t0; - _r164_t0 = this; - r164_xn$setwidth$9Jrj = _r164_t0['set-width']['bind'](_r164_t0); - r164_xn$assignunicode$7Hrq = _r164_t0['assign-unicode']['bind'](_r164_t0); - r164_xn$startfrom$1aao = _r164_t0['start-from']['bind'](_r164_t0); - r164_xn$lineto$5sIl = _r164_t0['line-to']['bind'](_r164_t0); - r164_xn$curveto$1aao = _r164_t0['curve-to']['bind'](_r164_t0); - r164_xn$cubicto$1aao = _r164_t0['cubic-to']['bind'](_r164_t0); - r164_xn$putshapes$9Jrj = _r164_t0['put-shapes']['bind'](_r164_t0); - r164_xn$reverselast$3qIs = _r164_t0['reverse-last']['bind'](_r164_t0); - r164_include = _r164_t0['include']['bind'](_r164_t0); - r164_xn$createstroke$7Hrq = _r164_t0['create-stroke']['bind'](_r164_t0); - r164_xn$setanchor$9Jrj = _r164_t0['set-anchor']['bind'](_r164_t0); - _r164_t0['gizmo'] = r0_globalTransform; - _r164_t0['set-width'](r0_WIDTH); - r164_xn$setwidth$9Jrj(r0_WIDTH); - r164_xn$assignunicode$7Hrq('v'); - r164_include(r0_eMarks); - r164_TURN = r0_XH * 0.9; - r164_leftbar = r164_xn$createstroke$7Hrq(); - r164_leftbar['start-from'](r0_SB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_SB, r164_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_SB, (1 - 0.27) * r164_TURN, r0_MIDDLE - r0_STROKE / 2, 0)['set-width'](r0_STROKE * 0.8, 0); - r164_rightbar = r164_xn$createstroke$7Hrq(); - r164_rightbar['start-from'](r0_RIGHTSB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r164_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_RIGHTSB, (1 - 0.27) * r164_TURN, r0_MIDDLE + r0_STROKE / 2, 0)['set-width'](0, r0_STROKE * 0.8); - r164_xn$putshapes$9Jrj(r164_leftbar['to-outline']()); - r164_xn$putshapes$9Jrj(r164_rightbar['to-outline']()); - r164_xn$startfrom$1aao(r0_MIDDLE + r0_STROKE / 2, 0); - r164_xn$lineto$5sIl(r0_MIDDLE - r0_STROKE / 2, 0); - r164_xn$lineto$5sIl(r0_MIDDLE, r0_STROKE); - return void 0; - }); - r0_xn$createglyph$7Hrq('w', function _r0_t84() { - var r166_xn$setwidth$9Jrj, r166_xn$assignunicode$7Hrq, r166_xn$startfrom$1aao, r166_xn$lineto$5sIl, r166_xn$curveto$1aao, r166_xn$cubicto$1aao, r166_xn$putshapes$9Jrj, r166_xn$reverselast$3qIs, r166_include, r166_xn$createstroke$7Hrq, r166_xn$setanchor$9Jrj, r166_TURN, r166_turn2, r166_wheight, r166_bottomStroke, r166_m1, r166_m2, _r166_t0; - _r166_t0 = this; - r166_xn$setwidth$9Jrj = _r166_t0['set-width']['bind'](_r166_t0); - r166_xn$assignunicode$7Hrq = _r166_t0['assign-unicode']['bind'](_r166_t0); - r166_xn$startfrom$1aao = _r166_t0['start-from']['bind'](_r166_t0); - r166_xn$lineto$5sIl = _r166_t0['line-to']['bind'](_r166_t0); - r166_xn$curveto$1aao = _r166_t0['curve-to']['bind'](_r166_t0); - r166_xn$cubicto$1aao = _r166_t0['cubic-to']['bind'](_r166_t0); - r166_xn$putshapes$9Jrj = _r166_t0['put-shapes']['bind'](_r166_t0); - r166_xn$reverselast$3qIs = _r166_t0['reverse-last']['bind'](_r166_t0); - r166_include = _r166_t0['include']['bind'](_r166_t0); - r166_xn$createstroke$7Hrq = _r166_t0['create-stroke']['bind'](_r166_t0); - r166_xn$setanchor$9Jrj = _r166_t0['set-anchor']['bind'](_r166_t0); - _r166_t0['gizmo'] = r0_globalTransform; - _r166_t0['set-width'](r0_WIDTH); - r166_xn$setwidth$9Jrj(r0_WIDTH); - r166_xn$assignunicode$7Hrq('w'); - r166_include(r0_eMarks); - r166_TURN = r0_XH * 0.75; - r166_turn2 = r0_XH * 0.59; - r166_wheight = r0_XH * 0.6; - r166_bottomStroke = Math['min'](r0_STROKE * 0.8, (r0_WIDTH - r0_SB * 2) * 0.175); - r166_m1 = r0_WIDTH * 0.325; - r166_m2 = r0_WIDTH * 0.675; - r166_xn$putshapes$9Jrj(r166_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_SB, r166_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_SB, (1 - 0.27) * r166_TURN, r166_m1 - r166_bottomStroke / 2, 0)['set-width'](r166_bottomStroke, 0)['to-outline']()); - r166_xn$putshapes$9Jrj(r166_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r166_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_RIGHTSB, (1 - 0.27) * r166_TURN, r166_m2 + r166_bottomStroke / 2, 0)['set-width'](0, r166_bottomStroke)['to-outline']()); - r166_xn$putshapes$9Jrj(r166_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE + r166_bottomStroke / 2, r166_wheight)['heads-to'](r0_DOWNWARD)['set-width'](0, r166_bottomStroke)['line-to'](r0_MIDDLE + r166_bottomStroke / 2, r166_turn2)['heads-to'](r0_DOWNWARD)['curve-to'](r0_MIDDLE + r166_bottomStroke / 2, (1 - 0.1) * r166_turn2, r166_m1 + r166_bottomStroke / 2, 0)['set-width'](0, r166_bottomStroke)['to-outline']()); - r166_xn$putshapes$9Jrj(r166_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE - r166_bottomStroke / 2, r166_wheight)['heads-to'](r0_DOWNWARD)['set-width'](r166_bottomStroke, 0)['line-to'](r0_MIDDLE - r166_bottomStroke / 2, r166_turn2)['heads-to'](r0_DOWNWARD)['curve-to'](r0_MIDDLE - r166_bottomStroke / 2, (1 - 0.1) * r166_turn2, r166_m2 - r166_bottomStroke / 2, 0)['set-width'](r166_bottomStroke, 0)['to-outline']()); - r166_xn$startfrom$1aao(r166_m1 + r166_bottomStroke / 2, 0); - r166_xn$lineto$5sIl(r166_m1 - r166_bottomStroke / 2, 0); - r166_xn$lineto$5sIl(r166_m1, r166_bottomStroke); - r166_xn$startfrom$1aao(r166_m2 + r166_bottomStroke / 2, 0); - r166_xn$lineto$5sIl(r166_m2 - r166_bottomStroke / 2, 0); - r166_xn$lineto$5sIl(r166_m2, r166_bottomStroke); - return void 0; - }); - r0_xn$createglyph$7Hrq('y.upright', function _r0_t85() { - var r168_xn$setwidth$9Jrj, r168_xn$assignunicode$7Hrq, r168_xn$startfrom$1aao, r168_xn$lineto$5sIl, r168_xn$curveto$1aao, r168_xn$cubicto$1aao, r168_xn$putshapes$9Jrj, r168_xn$reverselast$3qIs, r168_include, r168_xn$createstroke$7Hrq, r168_xn$setanchor$9Jrj, r168_turn1, r168_turn2, r168_cross, r168_xbottom, r168_barone, r168_bartwo, _r168_t0; - _r168_t0 = this; - r168_xn$setwidth$9Jrj = _r168_t0['set-width']['bind'](_r168_t0); - r168_xn$assignunicode$7Hrq = _r168_t0['assign-unicode']['bind'](_r168_t0); - r168_xn$startfrom$1aao = _r168_t0['start-from']['bind'](_r168_t0); - r168_xn$lineto$5sIl = _r168_t0['line-to']['bind'](_r168_t0); - r168_xn$curveto$1aao = _r168_t0['curve-to']['bind'](_r168_t0); - r168_xn$cubicto$1aao = _r168_t0['cubic-to']['bind'](_r168_t0); - r168_xn$putshapes$9Jrj = _r168_t0['put-shapes']['bind'](_r168_t0); - r168_xn$reverselast$3qIs = _r168_t0['reverse-last']['bind'](_r168_t0); - r168_include = _r168_t0['include']['bind'](_r168_t0); - r168_xn$createstroke$7Hrq = _r168_t0['create-stroke']['bind'](_r168_t0); - r168_xn$setanchor$9Jrj = _r168_t0['set-anchor']['bind'](_r168_t0); - _r168_t0['gizmo'] = r0_globalTransform; - _r168_t0['set-width'](r0_WIDTH); - r168_xn$setwidth$9Jrj(r0_WIDTH); - r168_include(r0_pMarks); - r168_turn1 = r0_DESCENDER + (r0_XH - r0_DESCENDER) * 0.1; - r168_turn2 = r0_XH * 0.1; - r168_cross = r0_XH * 0.15; - r168_xbottom = r0_WIDTH * 0.4; - r168_barone = r168_xn$createstroke$7Hrq()['start-from'](r168_xbottom, r0_DESCENDER)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['cubic-to'](r168_xbottom, r168_turn1 + 0.3 * (r0_XH - r168_turn1), r0_RIGHTSB - r0_HALFSTROKE - r0_O, r0_XH - r168_turn1 - 0.65 * (r0_XH - r168_turn1), r0_RIGHTSB - r0_HALFSTROKE - r0_O, r0_XH)['heads-to'](r0_UPWARD); - r168_bartwo = r168_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r168_cross)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['curve-to'](r0_SB + r0_HALFSTROKE + r0_O, r0_XH - r168_turn2 - 0.35 * (r0_XH - r168_turn2), r0_SB + r0_HALFSTROKE + r0_O, r0_XH)['heads-to'](r0_UPWARD); - r168_xn$putshapes$9Jrj(r168_barone['to-outline']()); - r168_xn$putshapes$9Jrj(r168_bartwo['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('y.italic', function _r0_t86() { - var r170_xn$setwidth$9Jrj, r170_xn$assignunicode$7Hrq, r170_xn$startfrom$1aao, r170_xn$lineto$5sIl, r170_xn$curveto$1aao, r170_xn$cubicto$1aao, r170_xn$putshapes$9Jrj, r170_xn$reverselast$3qIs, r170_include, r170_xn$createstroke$7Hrq, r170_xn$setanchor$9Jrj, r170_TURN, r170_cross, r170_xbottom, r170_barone, r170_bartwo, _r170_t0; - _r170_t0 = this; - r170_xn$setwidth$9Jrj = _r170_t0['set-width']['bind'](_r170_t0); - r170_xn$assignunicode$7Hrq = _r170_t0['assign-unicode']['bind'](_r170_t0); - r170_xn$startfrom$1aao = _r170_t0['start-from']['bind'](_r170_t0); - r170_xn$lineto$5sIl = _r170_t0['line-to']['bind'](_r170_t0); - r170_xn$curveto$1aao = _r170_t0['curve-to']['bind'](_r170_t0); - r170_xn$cubicto$1aao = _r170_t0['cubic-to']['bind'](_r170_t0); - r170_xn$putshapes$9Jrj = _r170_t0['put-shapes']['bind'](_r170_t0); - r170_xn$reverselast$3qIs = _r170_t0['reverse-last']['bind'](_r170_t0); - r170_include = _r170_t0['include']['bind'](_r170_t0); - r170_xn$createstroke$7Hrq = _r170_t0['create-stroke']['bind'](_r170_t0); - r170_xn$setanchor$9Jrj = _r170_t0['set-anchor']['bind'](_r170_t0); - _r170_t0['gizmo'] = r0_globalTransform; - _r170_t0['set-width'](r0_WIDTH); - r170_xn$setwidth$9Jrj(r0_WIDTH); - r170_include(r0_pMarks); - r170_TURN = r0_XH * 0.1; - r170_cross = r0_XH * 0.15; - r170_xbottom = r0_WIDTH * 0.4; - r170_barone = r170_xn$createstroke$7Hrq()['start-from'](r170_xbottom, r0_DESCENDER)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['cubic-to'](r170_xbottom, r170_TURN + 0.17 * (r0_XH - r170_TURN), r0_RIGHTSB - r0_HALFSTROKE - r0_O, r0_XH - r170_TURN - 0.17 * (r0_XH - r170_TURN), r0_RIGHTSB - r0_HALFSTROKE - r0_O, r0_XH)['heads-to'](r0_UPWARD); - r170_bartwo = r170_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, r170_cross)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['curve-to'](r0_SB + r0_HALFSTROKE + r0_O, r0_XH - r170_TURN - 0.17 * (r0_XH - r170_TURN), r0_SB + r0_HALFSTROKE + r0_O, r0_XH)['heads-to'](r0_UPWARD); - r170_xn$putshapes$9Jrj(r170_barone['to-outline']()); - r170_xn$putshapes$9Jrj(r170_bartwo['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('y', function _r0_t87() { - var r172_xn$setwidth$9Jrj, r172_xn$assignunicode$7Hrq, r172_xn$startfrom$1aao, r172_xn$lineto$5sIl, r172_xn$curveto$1aao, r172_xn$cubicto$1aao, r172_xn$putshapes$9Jrj, r172_xn$reverselast$3qIs, r172_include, r172_xn$createstroke$7Hrq, r172_xn$setanchor$9Jrj, _r172_t0; - _r172_t0 = this; - r172_xn$setwidth$9Jrj = _r172_t0['set-width']['bind'](_r172_t0); - r172_xn$assignunicode$7Hrq = _r172_t0['assign-unicode']['bind'](_r172_t0); - r172_xn$startfrom$1aao = _r172_t0['start-from']['bind'](_r172_t0); - r172_xn$lineto$5sIl = _r172_t0['line-to']['bind'](_r172_t0); - r172_xn$curveto$1aao = _r172_t0['curve-to']['bind'](_r172_t0); - r172_xn$cubicto$1aao = _r172_t0['cubic-to']['bind'](_r172_t0); - r172_xn$putshapes$9Jrj = _r172_t0['put-shapes']['bind'](_r172_t0); - r172_xn$reverselast$3qIs = _r172_t0['reverse-last']['bind'](_r172_t0); - r172_include = _r172_t0['include']['bind'](_r172_t0); - r172_xn$createstroke$7Hrq = _r172_t0['create-stroke']['bind'](_r172_t0); - r172_xn$setanchor$9Jrj = _r172_t0['set-anchor']['bind'](_r172_t0); - _r172_t0['gizmo'] = r0_globalTransform; - _r172_t0['set-width'](r0_WIDTH); - r172_xn$setwidth$9Jrj(r0_WIDTH); - r172_xn$assignunicode$7Hrq('y'); - if (r0_para['italicangle'] > 0) { - r172_include(r0_glyphs['y.italic'], true); - } else { - r172_include(r0_glyphs['y.upright'], true); - } - return void 0; - }); - r0_xn$createglyph$7Hrq('z', function _r0_t88() { - var r174_xn$setwidth$9Jrj, r174_xn$assignunicode$7Hrq, r174_xn$startfrom$1aao, r174_xn$lineto$5sIl, r174_xn$curveto$1aao, r174_xn$cubicto$1aao, r174_xn$putshapes$9Jrj, r174_xn$reverselast$3qIs, r174_include, r174_xn$createstroke$7Hrq, r174_xn$setanchor$9Jrj, r174_cor, _r174_t0; - _r174_t0 = this; - r174_xn$setwidth$9Jrj = _r174_t0['set-width']['bind'](_r174_t0); - r174_xn$assignunicode$7Hrq = _r174_t0['assign-unicode']['bind'](_r174_t0); - r174_xn$startfrom$1aao = _r174_t0['start-from']['bind'](_r174_t0); - r174_xn$lineto$5sIl = _r174_t0['line-to']['bind'](_r174_t0); - r174_xn$curveto$1aao = _r174_t0['curve-to']['bind'](_r174_t0); - r174_xn$cubicto$1aao = _r174_t0['cubic-to']['bind'](_r174_t0); - r174_xn$putshapes$9Jrj = _r174_t0['put-shapes']['bind'](_r174_t0); - r174_xn$reverselast$3qIs = _r174_t0['reverse-last']['bind'](_r174_t0); - r174_include = _r174_t0['include']['bind'](_r174_t0); - r174_xn$createstroke$7Hrq = _r174_t0['create-stroke']['bind'](_r174_t0); - r174_xn$setanchor$9Jrj = _r174_t0['set-anchor']['bind'](_r174_t0); - _r174_t0['gizmo'] = r0_globalTransform; - _r174_t0['set-width'](r0_WIDTH); - r174_xn$setwidth$9Jrj(r0_WIDTH); - r174_xn$assignunicode$7Hrq('z'); - r174_include(r0_eMarks); - r174_cor = 1.2; - r174_xn$putshapes$9Jrj(r174_xn$createstroke$7Hrq()['start-from'](r0_SB, r0_XH)['heads-to'](r0_RIGHTWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r0_XH)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r174_xn$putshapes$9Jrj(r174_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['heads-to'](r0_RIGHTWARD)['set-width'](r0_STROKE, 0)['line-to'](r0_RIGHTSB, 0)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r174_xn$startfrom$1aao(r0_SB, r0_STROKE); - r174_xn$lineto$5sIl(r0_SB + r0_STROKE * r174_cor, r0_STROKE); - r174_xn$lineto$5sIl(r0_RIGHTSB, r0_XH - r0_STROKE); - r174_xn$lineto$5sIl(r0_RIGHTSB - r0_STROKE * r174_cor, r0_XH - r0_STROKE); - r174_xn$reverselast$3qIs(); - return void 0; - }); - r0_xn$createglyph$7Hrq('k', function _r0_t89() { - var r176_xn$setwidth$9Jrj, r176_xn$assignunicode$7Hrq, r176_xn$startfrom$1aao, r176_xn$lineto$5sIl, r176_xn$curveto$1aao, r176_xn$cubicto$1aao, r176_xn$putshapes$9Jrj, r176_xn$reverselast$3qIs, r176_include, r176_xn$createstroke$7Hrq, r176_xn$setanchor$9Jrj, r176_TURN, r176_rturn, r176_right, r176_attach, r176_attach2, r176_fine, _r176_t0; - _r176_t0 = this; - r176_xn$setwidth$9Jrj = _r176_t0['set-width']['bind'](_r176_t0); - r176_xn$assignunicode$7Hrq = _r176_t0['assign-unicode']['bind'](_r176_t0); - r176_xn$startfrom$1aao = _r176_t0['start-from']['bind'](_r176_t0); - r176_xn$lineto$5sIl = _r176_t0['line-to']['bind'](_r176_t0); - r176_xn$curveto$1aao = _r176_t0['curve-to']['bind'](_r176_t0); - r176_xn$cubicto$1aao = _r176_t0['cubic-to']['bind'](_r176_t0); - r176_xn$putshapes$9Jrj = _r176_t0['put-shapes']['bind'](_r176_t0); - r176_xn$reverselast$3qIs = _r176_t0['reverse-last']['bind'](_r176_t0); - r176_include = _r176_t0['include']['bind'](_r176_t0); - r176_xn$createstroke$7Hrq = _r176_t0['create-stroke']['bind'](_r176_t0); - r176_xn$setanchor$9Jrj = _r176_t0['set-anchor']['bind'](_r176_t0); - _r176_t0['gizmo'] = r0_globalTransform; - _r176_t0['set-width'](r0_WIDTH); - r176_xn$setwidth$9Jrj(r0_WIDTH); - r176_xn$assignunicode$7Hrq('k'); - r176_include(r0_bMarks); - r176_TURN = r0_XH * 0.99; - r176_rturn = r0_XH * 0.1; - r176_right = r0_RIGHTSB - r0_O; - r176_attach = r0_XH * 0.4; - r176_attach2 = r0_MIDDLE - r0_WIDTH * 0.1; - r176_fine = Math['min'](r0_STROKE, (r0_WIDTH - r0_SB * 2) * 0.25); - r176_xn$putshapes$9Jrj(r176_xn$createstroke$7Hrq()['start-from'](r0_SB, 0)['set-width'](0, r0_STROKE)['heads-to'](r0_UPWARD)['line-to'](r0_SB, r0_CAP)['heads-to'](r0_UPWARD)['to-outline']()); - r176_xn$putshapes$9Jrj(r176_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB, r0_XH)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE)['line-to'](r0_RIGHTSB, r176_TURN)['heads-to'](r0_DOWNWARD)['curve-to'](r0_RIGHTSB, (1 - 0.18) * r176_TURN, r0_SB + r0_STROKE, r176_attach)['set-width'](0, r176_fine)['to-outline']()); - r176_xn$putshapes$9Jrj(r176_xn$createstroke$7Hrq()['start-from'](r176_right - r0_HALFSTROKE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['curve-to'](r176_right - r0_HALFSTROKE, r176_rturn + 0.05 * (r0_XH - r176_rturn), r176_attach2, r0_XH * 0.5 + r0_HALFSTROKE)['set-width'](r176_fine / 2, r176_fine / 2)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('s', function _r0_t90() { - var r178_xn$setwidth$9Jrj, r178_xn$assignunicode$7Hrq, r178_xn$startfrom$1aao, r178_xn$lineto$5sIl, r178_xn$curveto$1aao, r178_xn$cubicto$1aao, r178_xn$putshapes$9Jrj, r178_xn$reverselast$3qIs, r178_include, r178_xn$createstroke$7Hrq, r178_xn$setanchor$9Jrj, r178_slope, r178_expand, r178_coexpand, r178_ssmootha, r178_bowltop, r178_strokemiddle, r178_bowlbottom, _r178_t0; - _r178_t0 = this; - r178_xn$setwidth$9Jrj = _r178_t0['set-width']['bind'](_r178_t0); - r178_xn$assignunicode$7Hrq = _r178_t0['assign-unicode']['bind'](_r178_t0); - r178_xn$startfrom$1aao = _r178_t0['start-from']['bind'](_r178_t0); - r178_xn$lineto$5sIl = _r178_t0['line-to']['bind'](_r178_t0); - r178_xn$curveto$1aao = _r178_t0['curve-to']['bind'](_r178_t0); - r178_xn$cubicto$1aao = _r178_t0['cubic-to']['bind'](_r178_t0); - r178_xn$putshapes$9Jrj = _r178_t0['put-shapes']['bind'](_r178_t0); - r178_xn$reverselast$3qIs = _r178_t0['reverse-last']['bind'](_r178_t0); - r178_include = _r178_t0['include']['bind'](_r178_t0); - r178_xn$createstroke$7Hrq = _r178_t0['create-stroke']['bind'](_r178_t0); - r178_xn$setanchor$9Jrj = _r178_t0['set-anchor']['bind'](_r178_t0); - _r178_t0['gizmo'] = r0_globalTransform; - _r178_t0['set-width'](r0_WIDTH); - r178_xn$setwidth$9Jrj(r0_WIDTH); - r178_xn$assignunicode$7Hrq('s'); - r178_include(r0_eMarks); - r178_slope = 0.015; - r178_expand = 0.175; - r178_coexpand = (1 - r178_expand) / 2; - r178_ssmootha = r0_SMOOTHA * 0.87; - r178_bowltop = r178_xn$createstroke$7Hrq(); - r178_bowltop['start-from'](r0_RIGHTSB - r0_OXHOOK, r0_XH - r0_SHOOK)['set-width'](r0_STROKE, 0)['curve-to'](r0_MIDDLE + r0_KAPPA_AHOOK * (r0_MIDDLE - r0_para['sb']), r0_XO, r0_MIDDLE, r0_XO)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB, r0_XH - r178_ssmootha); - r178_strokemiddle = r178_xn$createstroke$7Hrq(); - r178_strokemiddle['start-from'](r0_SB + r0_STROKE / 2, r0_XH - r178_ssmootha)['set-width'](r0_STROKE / 2, r0_STROKE / 2)['curve-to'](r0_SB + r0_STROKE / 2, (0.5 + r178_slope) * r0_XH + 2 * r178_slope * r0_XH / (r178_expand * r0_WIDTH) * (r178_coexpand * r0_WIDTH - r0_SB - r0_STROKE / 2), r178_coexpand * r0_WIDTH, (0.5 + r178_slope) * r0_XH)['line-to']((1 - r178_coexpand) * r0_WIDTH, (0.5 - r178_slope) * r0_XH)['curve-to'](r0_RIGHTSB - r0_STROKE / 2, (0.5 - r178_slope) * r0_XH - 2 * r178_slope * r0_XH / (r178_expand * r0_WIDTH) * (r178_coexpand * r0_WIDTH - r0_SB - r0_STROKE / 2), r0_RIGHTSB - r0_STROKE / 2, r178_ssmootha); - r178_bowlbottom = r178_xn$createstroke$7Hrq(); - r178_bowlbottom['start-from'](r0_RIGHTSB, r178_ssmootha)['set-width'](0, r0_STROKE)['arc-vh-to'](r0_MIDDLE, r0_O)['heads-to'](r0_LEFTWARD)['curve-to'](r0_MIDDLE - (r0_KAPPA_AHOOK + r0_TAILADJSKAPPA * r0_globalTransform['yx']) * (r0_MIDDLE - r0_para['sb']), r0_O, r0_SB + r0_OXHOOK - +r0_TAILADJSX * r0_globalTransform['yx'], r0_SHOOK - r0_TAILADJSY * r0_globalTransform['yx']); - r178_xn$putshapes$9Jrj(r178_bowltop['to-outline']()); - r178_xn$putshapes$9Jrj(r178_strokemiddle['to-outline']()); - r178_xn$putshapes$9Jrj(r178_bowlbottom['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('r', function _r0_t91() { - var r180_xn$setwidth$9Jrj, r180_xn$assignunicode$7Hrq, r180_xn$startfrom$1aao, r180_xn$lineto$5sIl, r180_xn$curveto$1aao, r180_xn$cubicto$1aao, r180_xn$putshapes$9Jrj, r180_xn$reverselast$3qIs, r180_include, r180_xn$createstroke$7Hrq, r180_xn$setanchor$9Jrj, r180_slope, r180_expand, r180_coexpand, r180_ssmootha, _r180_t0; - _r180_t0 = this; - r180_xn$setwidth$9Jrj = _r180_t0['set-width']['bind'](_r180_t0); - r180_xn$assignunicode$7Hrq = _r180_t0['assign-unicode']['bind'](_r180_t0); - r180_xn$startfrom$1aao = _r180_t0['start-from']['bind'](_r180_t0); - r180_xn$lineto$5sIl = _r180_t0['line-to']['bind'](_r180_t0); - r180_xn$curveto$1aao = _r180_t0['curve-to']['bind'](_r180_t0); - r180_xn$cubicto$1aao = _r180_t0['cubic-to']['bind'](_r180_t0); - r180_xn$putshapes$9Jrj = _r180_t0['put-shapes']['bind'](_r180_t0); - r180_xn$reverselast$3qIs = _r180_t0['reverse-last']['bind'](_r180_t0); - r180_include = _r180_t0['include']['bind'](_r180_t0); - r180_xn$createstroke$7Hrq = _r180_t0['create-stroke']['bind'](_r180_t0); - r180_xn$setanchor$9Jrj = _r180_t0['set-anchor']['bind'](_r180_t0); - _r180_t0['gizmo'] = r0_globalTransform; - _r180_t0['set-width'](r0_WIDTH); - r180_xn$setwidth$9Jrj(r0_WIDTH); - r180_xn$assignunicode$7Hrq('r'); - r180_include(r0_eMarks); - r180_slope = 0.015; - r180_expand = 0.175; - r180_coexpand = (1 - r180_expand) / 2; - r180_ssmootha = r0_SMOOTHA * 0.87; - r180_xn$putshapes$9Jrj(r180_xn$createstroke$7Hrq()['start-from'](r0_RIGHTSB - r0_OXHOOK + r0_JBALANCE / 2, r0_XH - r0_RHOOK)['set-width'](r0_STROKE, 0)['curve-to'](r0_MIDDLE + r0_BKAPPA * (r0_MIDDLE - r0_para['sb']) + r0_JBALANCE / 2, r0_XO, r0_MIDDLE + r0_JBALANCE * 0.75, r0_XO)['heads-to'](r0_LEFTWARD)['to-outline']()); - r180_xn$putshapes$9Jrj(r180_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE + r0_JBALANCE * 0.75, r0_XO - r0_STROKE)['set-width'](0, r0_STROKE)['heads-to'](r0_LEFTWARD)['arc-hv-to'](r0_SB + r0_STROKE * r0_ITALICCOR + r0_RBALANCE, r0_XH - r0_SMALLSMOOTHA)['heads-to'](r0_DOWNWARD)['set-width'](0, r0_STROKE * 0.4)['to-outline']()); - r180_xn$putshapes$9Jrj(r180_xn$createstroke$7Hrq()['start-from'](r0_SB + r0_RBALANCE, 0)['heads-to'](r0_UPWARD)['set-width'](0, r0_STROKE)['line-to'](r0_SB + r0_RBALANCE, r0_XH)['heads-to'](r0_UPWARD)['to-outline']()); - return void 0; - }); - r0_xn$createglyph$7Hrq('f.upright', function _r0_t92() { - var r182_xn$setwidth$9Jrj, r182_xn$assignunicode$7Hrq, r182_xn$startfrom$1aao, r182_xn$lineto$5sIl, r182_xn$curveto$1aao, r182_xn$cubicto$1aao, r182_xn$putshapes$9Jrj, r182_xn$reverselast$3qIs, r182_include, r182_xn$createstroke$7Hrq, r182_xn$setanchor$9Jrj, _r182_t0; - _r182_t0 = this; - r182_xn$setwidth$9Jrj = _r182_t0['set-width']['bind'](_r182_t0); - r182_xn$assignunicode$7Hrq = _r182_t0['assign-unicode']['bind'](_r182_t0); - r182_xn$startfrom$1aao = _r182_t0['start-from']['bind'](_r182_t0); - r182_xn$lineto$5sIl = _r182_t0['line-to']['bind'](_r182_t0); - r182_xn$curveto$1aao = _r182_t0['curve-to']['bind'](_r182_t0); - r182_xn$cubicto$1aao = _r182_t0['cubic-to']['bind'](_r182_t0); - r182_xn$putshapes$9Jrj = _r182_t0['put-shapes']['bind'](_r182_t0); - r182_xn$reverselast$3qIs = _r182_t0['reverse-last']['bind'](_r182_t0); - r182_include = _r182_t0['include']['bind'](_r182_t0); - r182_xn$createstroke$7Hrq = _r182_t0['create-stroke']['bind'](_r182_t0); - r182_xn$setanchor$9Jrj = _r182_t0['set-anchor']['bind'](_r182_t0); - _r182_t0['gizmo'] = r0_globalTransform; - _r182_t0['set-width'](r0_WIDTH); - r182_xn$setwidth$9Jrj(r0_WIDTH); - r182_include(r0_bMarks); - r182_xn$putshapes$9Jrj(r182_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE, 0)['heads-to'](r0_UPWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['line-to'](r0_MIDDLE, r0_CAP - r0_SHOOK * 1.4)['arc-vh-to'](r0_MIDDLE + r0_SHOOK * 2, r0_CAP - r0_HALFSTROKE - r0_O * 6)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r182_include(r0_glyphs['fbar']); - return void 0; - }); - r0_xn$createglyph$7Hrq('f.italic', function _r0_t93() { - var r184_xn$setwidth$9Jrj, r184_xn$assignunicode$7Hrq, r184_xn$startfrom$1aao, r184_xn$lineto$5sIl, r184_xn$curveto$1aao, r184_xn$cubicto$1aao, r184_xn$putshapes$9Jrj, r184_xn$reverselast$3qIs, r184_include, r184_xn$createstroke$7Hrq, r184_xn$setanchor$9Jrj, _r184_t0; - _r184_t0 = this; - r184_xn$setwidth$9Jrj = _r184_t0['set-width']['bind'](_r184_t0); - r184_xn$assignunicode$7Hrq = _r184_t0['assign-unicode']['bind'](_r184_t0); - r184_xn$startfrom$1aao = _r184_t0['start-from']['bind'](_r184_t0); - r184_xn$lineto$5sIl = _r184_t0['line-to']['bind'](_r184_t0); - r184_xn$curveto$1aao = _r184_t0['curve-to']['bind'](_r184_t0); - r184_xn$cubicto$1aao = _r184_t0['cubic-to']['bind'](_r184_t0); - r184_xn$putshapes$9Jrj = _r184_t0['put-shapes']['bind'](_r184_t0); - r184_xn$reverselast$3qIs = _r184_t0['reverse-last']['bind'](_r184_t0); - r184_include = _r184_t0['include']['bind'](_r184_t0); - r184_xn$createstroke$7Hrq = _r184_t0['create-stroke']['bind'](_r184_t0); - r184_xn$setanchor$9Jrj = _r184_t0['set-anchor']['bind'](_r184_t0); - _r184_t0['gizmo'] = r0_globalTransform; - _r184_t0['set-width'](r0_WIDTH); - r184_xn$setwidth$9Jrj(r0_WIDTH); - r184_include(r0_ifMarks); - r184_xn$putshapes$9Jrj(r184_xn$createstroke$7Hrq()['start-from'](r0_MIDDLE - r0_SHOOK * 2, r0_HALFSTROKE + r0_O * 6 - r0_SHOOK)['heads-to'](r0_RIGHTWARD)['set-width'](r0_HALFSTROKE, r0_HALFSTROKE)['arc-hv-to'](r0_MIDDLE, 0)['line-to'](r0_MIDDLE, r0_CAP - r0_SHOOK)['arc-vh-to'](r0_MIDDLE + r0_SHOOK * 2, r0_CAP - r0_HALFSTROKE - r0_O * 6)['heads-to'](r0_RIGHTWARD)['to-outline']()); - r184_include(r0_glyphs['fbar']); - return void 0; - }); - r0_xn$createglyph$7Hrq('f', function _r0_t94() { - var r186_xn$setwidth$9Jrj, r186_xn$assignunicode$7Hrq, r186_xn$startfrom$1aao, r186_xn$lineto$5sIl, r186_xn$curveto$1aao, r186_xn$cubicto$1aao, r186_xn$putshapes$9Jrj, r186_xn$reverselast$3qIs, r186_include, r186_xn$createstroke$7Hrq, r186_xn$setanchor$9Jrj, _r186_t0; - _r186_t0 = this; - r186_xn$setwidth$9Jrj = _r186_t0['set-width']['bind'](_r186_t0); - r186_xn$assignunicode$7Hrq = _r186_t0['assign-unicode']['bind'](_r186_t0); - r186_xn$startfrom$1aao = _r186_t0['start-from']['bind'](_r186_t0); - r186_xn$lineto$5sIl = _r186_t0['line-to']['bind'](_r186_t0); - r186_xn$curveto$1aao = _r186_t0['curve-to']['bind'](_r186_t0); - r186_xn$cubicto$1aao = _r186_t0['cubic-to']['bind'](_r186_t0); - r186_xn$putshapes$9Jrj = _r186_t0['put-shapes']['bind'](_r186_t0); - r186_xn$reverselast$3qIs = _r186_t0['reverse-last']['bind'](_r186_t0); - r186_include = _r186_t0['include']['bind'](_r186_t0); - r186_xn$createstroke$7Hrq = _r186_t0['create-stroke']['bind'](_r186_t0); - r186_xn$setanchor$9Jrj = _r186_t0['set-anchor']['bind'](_r186_t0); - _r186_t0['gizmo'] = r0_globalTransform; - _r186_t0['set-width'](r0_WIDTH); - r186_xn$setwidth$9Jrj(r0_WIDTH); - r186_xn$assignunicode$7Hrq('f'); - if (r0_para['italicangle'] > 0) { - r186_include(r0_glyphs['f.italic'], true); - } else { - r186_include(r0_glyphs['f.upright'], true); - } - return void 0; - }); -} diff --git a/generate.js b/generate.js index 484c1c1..e02faab 100644 --- a/generate.js +++ b/generate.js @@ -1,5 +1,6 @@ var fs = require('fs'); -var font = require('./font.js'); +var buildGlyphs = require('./buildglyphs.js'); +var parameters = require('./parameters'); var TTFWriter = require('node-sfnt').TTFWriter; var TTF = require('node-sfnt').TTF; @@ -48,4 +49,7 @@ function writettf(ttf, file){ fs.writeFileSync(file, toBuffer(buffer)); } -fs.writeFileSync(process.argv[2], toBuffer(new TTFWriter(options).write(font.font))); \ No newline at end of file +var variant = process.argv[2] +var outputPath = process.argv[3] + +fs.writeFileSync(outputPath, toBuffer(new TTFWriter(options).write(buildGlyphs.build(parameters[variant])))); \ No newline at end of file diff --git a/makefile b/makefile index 4da85fa..d2b5e9c 100644 --- a/makefile +++ b/makefile @@ -1,11 +1,26 @@ -JSFILES = support/glyph.js support/stroke.js +SUPPORT_FILES = support/glyph.js support/stroke.js parameters.js +GLYPH_SEGMENTS = glyphs/latin-capital.patel glyphs/latin-lower.patel -all : $(JSFILES) font.js +FILES = $(SUPPORT_FILES) buildglyphs.js -$(JSFILES) : +fonts : update codex-regular.ttf codex-bold.ttf codex-italic.ttf codex-bolditalic.ttf + +codex-regular.ttf : $(FILES) + node generate regular $@ +codex-bold.ttf : $(FILES) + node generate bold $@ +codex-italic.ttf : $(FILES) + node generate italic $@ +codex-bolditalic.ttf : $(FILES) + node generate bolditalic $@ + +update : $(FILES) + +$(SUPPORT_FILES) : patel-c $< -o $@ -font.js : font.patel glyphs/latin-capital.patel glyphs/latin-lower.patel +buildglyphs.js : buildglyphs-intro.patel $(GLYPH_SEGMENTS) buildglyphs-final.patel cat $^ | patel-c -o $@ support/glyph.js : support/glyph.patel -support/stroke.js : support/stroke.patel \ No newline at end of file +support/stroke.js : support/stroke.patel +parameters.js : parameters.patel \ No newline at end of file diff --git a/parameters.js b/parameters.js new file mode 100644 index 0000000..2b4c0f4 --- /dev/null +++ b/parameters.js @@ -0,0 +1,64 @@ +{ + var r0_regular, r0_bold, r0_italic, r0_bolditalic; + r0_regular = { + 'width': 500, + 'stroke': 80, + 'dotsize': 125, + 'sb': 60, + 'cap': 771, + 'xheight': 560, + 'hook': 145, + 'ahook': 135, + 'shook': 100, + 'rhook': 75, + 'smooth': 192, + 'smallsmooth': 242, + 'smoothadjust': 100, + 'o': -8, + 'oxhook': 0, + 'descender': -178, + 'kappa': 0.515, + 'italicangle': 0, + 'barpos': 0.45, + 'gbarpos': 0.37, + 'longserif': 175, + 'accent': 175, + 'tbalance': 70, + 'tbalance2': 30, + 'rbalance': 25, + 'family': 'Codex HW', + 'style': 'Regular', + 'weight': 400, + 'version': 'r0.0.1', + 'variantSelector': {}, + 'copyright': 'Copyright (c) 2015 Belleve Invis.' + }; + r0_bold = Object['create'](r0_regular); + r0_bold['sb'] = 50; + r0_bold['stroke'] = 120; + r0_bold['dotsize'] = 160; + r0_bold['barpos'] = 0.42; + r0_bold['hook'] = 150; + r0_bold['ahook'] = 100; + r0_bold['oxhook'] = 0; + r0_bold['kappa_hook'] = 0.7; + r0_bold['kappa_ahook'] = 0.6; + r0_bold['jbalance'] = 60; + r0_bold['tbalance'] = 60; + r0_bold['rbalance'] = 18; + r0_bold['style'] = 'Bold'; + r0_bold['weight'] = 600; + r0_italic = Object['create'](r0_regular); + r0_italic['italicangle'] = 10; + r0_italic['tbalance'] = 70; + r0_italic['rbalance'] = 30; + r0_italic['style'] = 'Italic'; + r0_bolditalic = Object['create'](r0_bold); + r0_bolditalic['italicangle'] = 10; + r0_bolditalic['tbalance'] = 90; + r0_bolditalic['style'] = 'BoldItalic'; + exports['regular'] = r0_regular; + exports['bold'] = r0_bold; + exports['italic'] = r0_italic; + exports['bolditalic'] = r0_bolditalic; +} diff --git a/parameters.patel b/parameters.patel new file mode 100644 index 0000000..8c4d7e8 --- /dev/null +++ b/parameters.patel @@ -0,0 +1,67 @@ +define regular ( + .width 500 + .stroke 80 + .dotsize 125 + .sb 60 + .cap 771 + .xheight 560 + .hook 145 + .ahook 135 + .shook 100 + .rhook 75 + .smooth 192 + .smallsmooth 242 + .smoothadjust 100 + .o [-8] + .oxhook 0 + .descender [-178] + .kappa 0.515 + .italicangle 0 + .barpos 0.45 + .gbarpos 0.37 + .longserif 175 + .accent 175 + .tbalance 70 + .tbalance2 30 + .rbalance 25 + + .family 'Codex HW' + .style 'Regular' + .weight 400 + .version 'r0.0.1' + .variantSelector (.) + .copyright 'Copyright (c) 2015 Belleve Invis.' +) + +define bold : Object.create regular +bold.sb = 50 +bold.stroke = 120 +bold.dotsize = 160 +bold.barpos = 0.42 +bold.hook = 150 +bold.ahook = 100 +bold.oxhook = 0 +bold.kappa_hook = 0.7 +bold.kappa_ahook = 0.60 +bold.jbalance = 60 +bold.tbalance = 60 +bold.rbalance = 18 +bold.style = 'Bold' +bold.weight = 600 + +define italic : Object.create regular +italic.italicangle = 10 +italic.tbalance = 70 +italic.rbalance = 30 +italic.style = 'Italic' + +define bolditalic : Object.create bold +bolditalic.italicangle = 10 +bolditalic.tbalance = 90 +bolditalic.style = 'BoldItalic' + + +exports.regular = regular +exports.bold = bold +exports.italic = italic +exports.bolditalic = bolditalic \ No newline at end of file