removed obsolete Ink/Stich, Globe, Hershey Text; added more meta data
This commit is contained in:
parent
67636343c1
commit
360bbc74e4
@ -1,28 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
||||
<name>Bouwkamp Code</name>
|
||||
<id>fablabchemnitz.de.bouwkamp</id>
|
||||
<param name="tab" type="notebook">
|
||||
<page name="settings" gui-text="Settings">
|
||||
<param name="bouwkamp_code" type="string" gui-text="Bouwkamp code:">21, 112, 112, [50, 35, 27], [8, 19], [15, 17, 11], [6, 24], [29, 25, 9, 2], [7, 18], [16], [42], [4, 37], [33]</param>
|
||||
<param name="wrap_in_group" type="bool" gui-text="Wrap in group">true</param>
|
||||
</page>
|
||||
<page name="help" gui-text="Help">
|
||||
<label xml:space="preserve">This Inkscape extension allows you to generate squared squares and squared rectangles from Bouwkamp codes and table codes.
|
||||
|
||||
You can paste Bouwkamp codes with or without various formatting characters (like brackets) and convert them to the corresponding squares.
|
||||
</label>
|
||||
</page>
|
||||
</param>
|
||||
<effect>
|
||||
<object-type>all</object-type>
|
||||
<effects-menu>
|
||||
<submenu name="FabLab Chemnitz">
|
||||
<submenu name="Shape/Pattern from Generator"/>
|
||||
</submenu>
|
||||
</effects-menu>
|
||||
</effect>
|
||||
<script>
|
||||
<command location="inx" interpreter="python">bouwkamp_code.py</command>
|
||||
</script>
|
||||
</inkscape-extension>
|
@ -1,163 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
'''
|
||||
BSD 3-Clause License
|
||||
|
||||
Copyright (c) 2019, Pascal Wagler
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the copyright holder nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
This Inkscape extension allows you to generate squared squares and squared rectangles from
|
||||
Bouwkamp codes and table codes.
|
||||
'''
|
||||
|
||||
import re
|
||||
import inkex
|
||||
from lxml import etree
|
||||
|
||||
class BouwkampCode(inkex.EffectExtension):
|
||||
"""
|
||||
This Inkscape extension allows you to generate squared squares and squared rectangles from
|
||||
Bouwkamp codes and table codes.
|
||||
"""
|
||||
|
||||
def add_arguments(self, pars):
|
||||
pars.add_argument('--tab')
|
||||
pars.add_argument('--bouwkamp_code', default='21, 112, 112, [50, 35, 27], [8, 19], [15, 17, 11], [6, 24], [29, 25, 9, 2], [7, 18], [16], [42], [4, 37], [33]', help='The Bouwkamp code.'
|
||||
)
|
||||
pars.add_argument('--wrap_in_group', type=inkex.Boolean, default=True, help='Should the generated items be wrapped inside a group.'
|
||||
)
|
||||
|
||||
def effect(self):
|
||||
# compute center of the view
|
||||
center = self.svg.namedview.center
|
||||
|
||||
# create the group that holds all the elements
|
||||
container = self.svg.get_current_layer()
|
||||
if self.options.wrap_in_group:
|
||||
group_attributes = {
|
||||
inkex.addNS('label', 'inkscape'): 'BouwkampSquares',
|
||||
'transform': 'translate' + str(center)
|
||||
}
|
||||
group = etree.SubElement(self.svg.get_current_layer(), 'g', group_attributes)
|
||||
container = group
|
||||
|
||||
# parse the bouwkamp code string as a list
|
||||
bouwkamp_code = self.parse_bouwkamp_code_from_string(self.options.bouwkamp_code)
|
||||
|
||||
# show an error message and exit if the bouwkamp code is invalid
|
||||
try:
|
||||
self.exception_on_invalid_bouwkamp_code(bouwkamp_code)
|
||||
except ValueError as exception:
|
||||
inkex.errormsg(str(exception))
|
||||
return
|
||||
|
||||
# draw the bouwkamp code
|
||||
self.draw_bouwkamp_code(container, center, bouwkamp_code)
|
||||
|
||||
@staticmethod
|
||||
def exception_on_invalid_bouwkamp_code(bouwkamp_code):
|
||||
"""
|
||||
Raises a ValueError if the passed list is not a valid Bouwkamp code.
|
||||
"""
|
||||
|
||||
if not bouwkamp_code: #len(bouwkamp_code) == 0
|
||||
raise ValueError('Error: Invalid Bouwkamp code.\n\nThe Bouwkamp code is emtpy. ' +
|
||||
'Please specify a valid Bouwkamp code.')
|
||||
|
||||
if len(bouwkamp_code) - 3 != bouwkamp_code[0]:
|
||||
raise ValueError('Error: Invalid Bouwkamp code.\n\nThe Bouwkamp code has the wrong ' +
|
||||
'length. The first number needs to specify how many squares ' +
|
||||
'should be drawn.')
|
||||
|
||||
@staticmethod
|
||||
def parse_bouwkamp_code_from_string(bouwkamp_code_string):
|
||||
"""
|
||||
Converts a Bouwkamp code string into a list of integers. Any parentheses, commas and
|
||||
spaces are stripped. Extended Bouwkamp codes are not supported.
|
||||
"""
|
||||
|
||||
# replace every character (except numbers) with a space
|
||||
text = re.sub('[^0-9]', ' ', bouwkamp_code_string)
|
||||
# collapse all spaces to just one space
|
||||
text = re.sub(' {1,}', ' ', text).strip()
|
||||
# split the string into small strings and convert them to integers
|
||||
numbers = [int(x) for x in text.split(" ")]
|
||||
|
||||
return numbers
|
||||
|
||||
def draw_bouwkamp_code(self, parent, center, bouwkamp_code):
|
||||
"""
|
||||
Draws the passed Bouwkamp code (a list of integers) with rectangles.
|
||||
"""
|
||||
|
||||
order = bouwkamp_code[0]
|
||||
width = bouwkamp_code[1]
|
||||
# height = bouwkamp_code[2]
|
||||
code = bouwkamp_code[3:] # cut the first three elements away
|
||||
|
||||
i = 0
|
||||
helper = [0] * 900
|
||||
|
||||
for rectangle in range(0, order):
|
||||
i = 0
|
||||
for j in range(1, width):
|
||||
if helper[j] < helper[i]:
|
||||
i = j
|
||||
|
||||
position = (i, helper[i])
|
||||
dimension = (code[rectangle], code[rectangle])
|
||||
self.draw_rectangle(position, dimension, parent, center)
|
||||
|
||||
for j in range(0, code[rectangle]):
|
||||
helper[i+j] += code[rectangle]
|
||||
|
||||
def draw_rectangle(self, position, dimension, parent, center):
|
||||
rectangle_style = {
|
||||
'opacity': '1',
|
||||
'stroke': '#000000',
|
||||
'stroke-width': str(self.svg.unittouu('2px')),
|
||||
'fill': '#FFFFFF'
|
||||
}
|
||||
|
||||
transform = ""
|
||||
if not self.options.wrap_in_group:
|
||||
transform = 'translate' + str(center)
|
||||
|
||||
rectangle_attributes = {
|
||||
'transform': transform,
|
||||
'style': str(inkex.Style(rectangle_style)),
|
||||
inkex.addNS('label', 'inkscape'): "Rectangle "+str(dimension[0]),
|
||||
'x': str(position[0]),
|
||||
'y': str(position[1]),
|
||||
'width': str(dimension[0]),
|
||||
'height': str(dimension[1])
|
||||
}
|
||||
|
||||
etree.SubElement(parent, inkex.addNS('rect', 'svg'), rectangle_attributes)
|
||||
|
||||
if __name__ == '__main__':
|
||||
BouwkampCode().run()
|
@ -1,20 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "Bouwkamp Code",
|
||||
"id": "fablabchemnitz.de.bouwkamp_code",
|
||||
"path": "boukamp_code",
|
||||
"original_name": "Bouwkamp code",
|
||||
"original_id": "de.pascalwagler.inkscape.bouwkamp",
|
||||
"license": "BSD 3-Clause License",
|
||||
"license_url": "https://github.com/Wandmalfarbe/bouwkamp-code-generator/blob/master/LICENSE",
|
||||
"comment": "ported to Inkscape v1 by Mario Voigt",
|
||||
"source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/boukamp_code",
|
||||
"fork_url": "https://github.com/Wandmalfarbe/bouwkamp-code-generator",
|
||||
"documentation_url": "https://stadtfabrikanten.org/display/IFM/Bouwkamp+Code",
|
||||
"inkscape_gallery_url": null,
|
||||
"main_authors": [
|
||||
"github.com/Wandmalfarbe",
|
||||
"github.com/vmario89"
|
||||
]
|
||||
}
|
||||
]
|
20
extensions/fablabchemnitz/estucheria/meta.json
Normal file
20
extensions/fablabchemnitz/estucheria/meta.json
Normal file
@ -0,0 +1,20 @@
|
||||
[
|
||||
{
|
||||
"name": "Estucheria - <various>",
|
||||
"id": "fablabchemnitz.de.estucheria.<various>",
|
||||
"path": "estucheria",
|
||||
"original_name": "<various>",
|
||||
"original_id": "org.inkscape.estucheria.<various>",
|
||||
"license": "GNU GPL v3",
|
||||
"license_url": "https://gitlab.com/aljurado/packaging-inkscape-extensions/-/blob/master/LICENSE",
|
||||
"comment": "",
|
||||
"source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/estucheria",
|
||||
"fork_url": "https://gitlab.com/aljurado/packaging-inkscape-extensions",
|
||||
"documentation_url": "https://stadtfabrikanten.org/display/IFM/Estucheria",
|
||||
"inkscape_gallery_url": null,
|
||||
"main_authors": [
|
||||
"gitlab.com/aljurado",
|
||||
"github.com/vmario89"
|
||||
]
|
||||
}
|
||||
]
|
23
extensions/fablabchemnitz/gears/meta.json
Normal file
23
extensions/fablabchemnitz/gears/meta.json
Normal file
@ -0,0 +1,23 @@
|
||||
[
|
||||
{
|
||||
"name": "Gears",
|
||||
"id": "fablabchemnitz.de.gears",
|
||||
"path": "gears",
|
||||
"original_name": "Gear-dev",
|
||||
"original_id": "com.gihub.jnweiger.inkscape-gears-dev",
|
||||
"license": "GNU GPL v2",
|
||||
"license_url": "https://github.com/ssentinel/inkscape-gears-dev/blob/master/gears-dev.py",
|
||||
"comment": "fork of https://github.com/jnweiger/inkscape-gears-dev",
|
||||
"source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/gears",
|
||||
"fork_url": "https://github.com/ssentinel/inkscape-gears-dev",
|
||||
"documentation_url": "https://stadtfabrikanten.org/display/IFM/Gears",
|
||||
"inkscape_gallery_url": null,
|
||||
"main_authors": [
|
||||
"github.com/ssentinel",
|
||||
"github.com/Neon22",
|
||||
"github.com/jnweiger",
|
||||
"github.com/eggsactly",
|
||||
"github.com/vmario89"
|
||||
]
|
||||
}
|
||||
]
|
20
extensions/fablabchemnitz/gears2/meta.json
Normal file
20
extensions/fablabchemnitz/gears2/meta.json
Normal file
@ -0,0 +1,20 @@
|
||||
[
|
||||
{
|
||||
"name": "Gears2",
|
||||
"id": "fablabchemnitz.de.gears2",
|
||||
"path": "gears2",
|
||||
"original_name": "Gears2",
|
||||
"original_id": "com.attoparsec.filter.gears",
|
||||
"license": "GNU GPL v2",
|
||||
"license_url": "https://gitlab.com/inkscape/extensions/-/blob/master/render_gears.py",
|
||||
"comment": "",
|
||||
"source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/gears2",
|
||||
"fork_url": "https://github.com/attoparsec/inkscape-extensions",
|
||||
"documentation_url": "https://stadtfabrikanten.org/display/IFM/Gears2",
|
||||
"inkscape_gallery_url": null,
|
||||
"main_authors": [
|
||||
"github.com/attoparsec",
|
||||
"github.com/vmario89"
|
||||
]
|
||||
}
|
||||
]
|
@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
||||
<name>Globe</name>
|
||||
<id>fablabchemnitz.de.globe</id>
|
||||
<param name="longitudeLineCount" type="int" min="0" max="16" gui-text="Longitude line count" gui-description="Number of longitude rings to draw">8</param>
|
||||
<param name="latitudeLineCount" type="int" min="0" max="17" gui-text="Latitude line count" gui-description="Number of latitude rings to draw">5</param>
|
||||
<param name="rotationYDegrees" type="float" min="-180" max="180" gui-text="Rotation angle (around Y axis) (degrees)" gui-description="Degrees to rotate the globe around its axis">0</param>
|
||||
<param name="rotationXDegrees" type="float" min="-180" max="180" gui-text="Tilt forward angle (around X axis) (degrees)" gui-description="Degrees to tilt the globe forward">0</param>
|
||||
<param name="isSeeThrough" type="bool" gui-text="Make lines on back side of globe visible" gui-description="Select this option to draw a see-through globe (makes the lines on the back side of the globe visible)">false</param>
|
||||
<effect>
|
||||
<object-type>path</object-type>
|
||||
<effects-menu>
|
||||
<submenu name="FabLab Chemnitz">
|
||||
<submenu name="Legacy Tools"/>
|
||||
</submenu>
|
||||
</effects-menu>
|
||||
</effect>
|
||||
<script>
|
||||
<command location="inx" interpreter="python">globe.py</command>
|
||||
</script>
|
||||
</inkscape-extension>
|
@ -1,266 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
'''
|
||||
Globe rendering extension for Inkscape
|
||||
Copyright (C) 2009 Gerrit Karius
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
as published by the Free Software Foundation; either version 2
|
||||
of the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
|
||||
About the Globe rendering extension:
|
||||
|
||||
|
||||
|
||||
'''
|
||||
from __future__ import division
|
||||
import inkex
|
||||
from math import *
|
||||
from lxml import etree
|
||||
|
||||
#TODO: put the globe in the center of the view canvas
|
||||
|
||||
def draw_ellipse_rotated(cx,cy,rx,ry, width, fill, name, parent, rotationAngle):
|
||||
a = cos(rotationAngle)
|
||||
b = sin(rotationAngle)
|
||||
c = -sin(rotationAngle)
|
||||
d = cos(rotationAngle)
|
||||
e = -(a*cx + c*cy) + cx
|
||||
f = -(b*cx + d*cy) + cy
|
||||
style = { 'stroke': '#000000', 'stroke-width':str(width), 'fill':fill}
|
||||
if rx == 0:
|
||||
x1 = cx
|
||||
x2 = cx
|
||||
y1 = cy - ry
|
||||
y2 = cy + ry
|
||||
circle_attribs = {'style':str(inkex.Style(style)),
|
||||
inkex.addNS('label','inkscape'):name,
|
||||
'd':'M '+str(x1)+','+str(y1)+' L '+str(x2)+','+str(y2),
|
||||
'transform':'matrix('+str(a)+','+str(b)+','+str(c)+','+str(d)+','+str(e)+','+str(f)+')'}
|
||||
elif ry == 0:
|
||||
x1 = cx - rx
|
||||
x2 = cx + rx
|
||||
y1 = cy
|
||||
y2 = cy
|
||||
circle_attribs = {'style':str(inkex.Style(style)),
|
||||
inkex.addNS('label','inkscape'):name,
|
||||
'd':'M '+str(x1)+','+str(y1)+' L '+str(x2)+','+str(y2),
|
||||
'transform':'matrix('+str(a)+','+str(b)+','+str(c)+','+str(d)+','+str(e)+','+str(f)+')'}
|
||||
else:
|
||||
circle_attribs = {'style':str(inkex.Style(style)),
|
||||
inkex.addNS('label','inkscape'):name,
|
||||
inkex.addNS('cx','sodipodi'):str(cx),
|
||||
inkex.addNS('cy','sodipodi'):str(cy),
|
||||
inkex.addNS('rx','sodipodi'):str(rx),
|
||||
inkex.addNS('ry','sodipodi'):str(ry),
|
||||
inkex.addNS('type','sodipodi'):'arc',
|
||||
'transform':'matrix('+str(a)+','+str(b)+','+str(c)+','+str(d)+','+str(e)+','+str(f)+')'}
|
||||
etree.SubElement(parent, inkex.addNS('path','svg'), circle_attribs)
|
||||
|
||||
def draw_ellipse_segment_rotated(cx,cy,rx,ry, width, fill, name, parent, rotationAngle, segmentAngleStart, segmentAngleEnd):
|
||||
a = cos(rotationAngle)
|
||||
b = sin(rotationAngle)
|
||||
c = -sin(rotationAngle)
|
||||
d = cos(rotationAngle)
|
||||
e = -(a*cx + c*cy) + cx
|
||||
f = -(b*cx + d*cy) + cy
|
||||
style = { 'stroke': '#000000', 'stroke-width':str(width), 'fill':fill}
|
||||
if rx == 0:
|
||||
x1 = cx
|
||||
x2 = cx
|
||||
y1 = cy - ry
|
||||
y2 = cy + ry
|
||||
circle_attribs = {'style':str(inkex.Style(style)),
|
||||
inkex.addNS('label','inkscape'):name,
|
||||
'd':'M '+str(x1)+','+str(y1)+' L '+str(x2)+','+str(y2),
|
||||
'transform':'matrix('+str(a)+','+str(b)+','+str(c)+','+str(d)+','+str(e)+','+str(f)+')'}
|
||||
elif ry == 0:
|
||||
x1 = cx - rx
|
||||
x2 = cx + rx
|
||||
y1 = cy
|
||||
y2 = cy
|
||||
circle_attribs = {'style':str(inkex.Style(style)),
|
||||
inkex.addNS('label','inkscape'):name,
|
||||
'd':'M '+str(x1)+','+str(y1)+' L '+str(x2)+','+str(y2),
|
||||
'transform':'matrix('+str(a)+','+str(b)+','+str(c)+','+str(d)+','+str(e)+','+str(f)+')'}
|
||||
else:
|
||||
circle_attribs = {'style':str(inkex.Style(style)),
|
||||
inkex.addNS('label','inkscape'):name,
|
||||
inkex.addNS('cx','sodipodi'):str(cx),
|
||||
inkex.addNS('cy','sodipodi'):str(cy),
|
||||
inkex.addNS('rx','sodipodi'):str(rx),
|
||||
inkex.addNS('ry','sodipodi'):str(ry),
|
||||
inkex.addNS('start','sodipodi'):str(segmentAngleStart),
|
||||
inkex.addNS('end','sodipodi'):str(segmentAngleEnd),
|
||||
inkex.addNS('open','sodipodi'):'true',
|
||||
inkex.addNS('type','sodipodi'):'arc',
|
||||
'transform':'matrix('+str(a)+','+str(b)+','+str(c)+','+str(d)+','+str(e)+','+str(f)+')'}
|
||||
etree.SubElement(parent, inkex.addNS('path','svg'), circle_attribs)
|
||||
|
||||
|
||||
class Globe(inkex.EffectExtension):
|
||||
|
||||
def add_arguments(self, pars):
|
||||
pars.add_argument("--longitudeLineCount", type=int, default=15, help="Number of longitude lines")
|
||||
pars.add_argument("--latitudeLineCount", type=int, default=15, help="Number of latitude lines")
|
||||
pars.add_argument("--rotationXDegrees", type=float, default=45, help="Rotation around X axis (degrees)")
|
||||
pars.add_argument("--rotationYDegrees", type=float, default=-45, help="Rotation around Y axis (degrees)")
|
||||
pars.add_argument("--isSeeThrough", type=inkex.Boolean, default=False, help="Is the globe see-through")
|
||||
|
||||
def effect(self):
|
||||
|
||||
name = 'globe'
|
||||
|
||||
# globe fill and stroke style
|
||||
fill = 'none'
|
||||
width = 1
|
||||
|
||||
#input parameters - globe center and radius
|
||||
cyb = 500.0
|
||||
cxb = 500.0
|
||||
rb = 100.0
|
||||
|
||||
longitudeRotationAngleDegrees = float(self.options.rotationYDegrees)
|
||||
tiltForwardAngleDegrees = float(self.options.rotationXDegrees)
|
||||
|
||||
# inputs range fixing
|
||||
# tiltForwardAngle is adjusted to vary from 0 <= angle < pi
|
||||
if tiltForwardAngleDegrees >= 180.0:
|
||||
tiltForwardAngleDegrees -= 180.0
|
||||
elif tiltForwardAngleDegrees < 180.0:
|
||||
tiltForwardAngleDegrees += 180.0
|
||||
|
||||
if self.options.longitudeLineCount > 0:
|
||||
angleSpacingLongitudeLinesDegrees = 180.0 / float(self.options.longitudeLineCount);
|
||||
# longitudeAngle is wrapped to vary from 0 <= angle < angleSpacingLongitudeLines.
|
||||
while longitudeRotationAngleDegrees < 0:
|
||||
longitudeRotationAngleDegrees += angleSpacingLongitudeLinesDegrees
|
||||
while longitudeRotationAngleDegrees >= angleSpacingLongitudeLinesDegrees:
|
||||
longitudeRotationAngleDegrees -= angleSpacingLongitudeLinesDegrees
|
||||
|
||||
# units conversion from degrees to radians
|
||||
tiltForwardAngle = tiltForwardAngleDegrees * pi / 180.0;
|
||||
initialAngleLongitudeLines = longitudeRotationAngleDegrees * pi / 180.0
|
||||
|
||||
# derived parameters
|
||||
rxb = rb
|
||||
ryb = rb
|
||||
|
||||
#
|
||||
# start drawing
|
||||
#
|
||||
|
||||
# create the group to put the globe in
|
||||
group_attribs = {inkex.addNS('label','inkscape'):name}
|
||||
parent = etree.SubElement(self.svg.get_current_layer(), 'g', group_attribs)
|
||||
|
||||
# draw the outside border
|
||||
draw_ellipse_rotated(cxb,cyb,rxb,ryb, width, fill, 'border', parent, 0)
|
||||
|
||||
# draw the longitude lines
|
||||
# elipse #0 corresponds to ring on the front (visible only as a straight vertical line)
|
||||
# elipse #n-1 corresponds to the ring that is almost 180 degrees away
|
||||
# elipse #n/2 corresponds to ring around the side (overlaps with globe boundary) (only if n is even)
|
||||
if self.options.longitudeLineCount > 0:
|
||||
angleSpacingLongitudeLines = pi / float(self.options.longitudeLineCount);
|
||||
yOfPole = ryb * cos(tiltForwardAngle)
|
||||
for i in range(0, self.options.longitudeLineCount):
|
||||
lineName = 'longitude' + str(i)
|
||||
# longitudeAngle is always from 0 to pi.
|
||||
# rotation angle is always from 0 to pi.
|
||||
# rx is never negative.
|
||||
longitudeAngle = ((float(i)) * angleSpacingLongitudeLines) + initialAngleLongitudeLines
|
||||
if tiltForwardAngleDegrees == 0 or tiltForwardAngleDegrees == 180.0:
|
||||
if longitudeAngle < pi/2:
|
||||
rotationAngle = 0.0
|
||||
else:
|
||||
rotationAngle = pi
|
||||
rx = rxb * sin(longitudeAngle)
|
||||
|
||||
arcStart = pi/2
|
||||
arcEnd = -pi/2
|
||||
|
||||
else:
|
||||
rotationAngle = acos(cos(longitudeAngle) / sqrt(1 - pow(sin(longitudeAngle)*cos(tiltForwardAngle), 2)))
|
||||
rx = rxb * sin(longitudeAngle) * cos(tiltForwardAngle)
|
||||
if rx < 0:
|
||||
rx = -rx
|
||||
arcStart = -pi/2
|
||||
arcEnd = pi/2
|
||||
else:
|
||||
arcStart = pi/2
|
||||
arcEnd = -pi/2
|
||||
ry = ryb
|
||||
cx = cxb
|
||||
cy = cyb
|
||||
if self.options.isSeeThrough:
|
||||
draw_ellipse_rotated(cx,cy,rx,ry, width, fill, lineName, parent, rotationAngle)
|
||||
else:
|
||||
draw_ellipse_segment_rotated(cx,cy,rx,ry, width, fill, lineName, parent, rotationAngle, arcStart, arcEnd)
|
||||
|
||||
# draw the latitude lines
|
||||
# elipse #0 corresponds to ring closest to north pole.
|
||||
# elipse #n-1 corresponds to ring closest to south pole.
|
||||
# equator is ring #(n-1)/2 (only if n is odd).
|
||||
if self.options.latitudeLineCount > 0:
|
||||
angleSpacingLatitudeLines = pi / (1.0 + float(self.options.latitudeLineCount));
|
||||
yOfPole = ryb * cos(tiltForwardAngle)
|
||||
for i in range(0, self.options.latitudeLineCount):
|
||||
lineName = 'latitude' + str(i)
|
||||
# angleOfCurrentLatitudeLine is always from 0 to pi.
|
||||
# tiltForwardAngle is always from 0 to pi.
|
||||
# ry is never negative.
|
||||
angleOfCurrentLatitudeLine = float(i + 1) * angleSpacingLatitudeLines
|
||||
rx = rxb * sin(angleOfCurrentLatitudeLine)
|
||||
ry = rx * sin(tiltForwardAngle)
|
||||
cx = cxb
|
||||
cy = cyb - yOfPole*cos(angleOfCurrentLatitudeLine)
|
||||
if self.options.isSeeThrough:
|
||||
#inkex.utils.debug(cx)
|
||||
#inkex.utils.debug(cy)
|
||||
#inkex.utils.debug(rx)
|
||||
#inkex.utils.debug(ry)
|
||||
#inkex.utils.debug(width)
|
||||
#inkex.utils.debug(fill)
|
||||
#inkex.utils.debug(lineName)
|
||||
#inkex.utils.debug(parent)
|
||||
draw_ellipse_rotated(cx,cy,rx,ry, width, fill, lineName, parent, 0)
|
||||
else:
|
||||
if tiltForwardAngle > pi/2:
|
||||
# tilt away from viewaer
|
||||
if rxb * cos(angleOfCurrentLatitudeLine) / cos(tiltForwardAngle) > rxb:
|
||||
# elipse is not visible
|
||||
pass
|
||||
else:
|
||||
if rxb * cos(angleOfCurrentLatitudeLine) / cos(tiltForwardAngle) < -rxb:
|
||||
# elipse is all visible
|
||||
segmentAngle = pi
|
||||
else:
|
||||
# elipse is only partially visible
|
||||
segmentAngle = acos(max(-1,min(1, -tan(tiltForwardAngle) / tan(angleOfCurrentLatitudeLine))))
|
||||
draw_ellipse_segment_rotated(cx,cy,rx,ry, width, fill, lineName, parent, 0, pi/2+segmentAngle, pi/2-segmentAngle)
|
||||
else:
|
||||
# tilt towards viewer
|
||||
if rxb * cos(angleOfCurrentLatitudeLine) / cos(tiltForwardAngle) < -rxb:
|
||||
# elipse is not visible
|
||||
pass
|
||||
else:
|
||||
if rxb * cos(angleOfCurrentLatitudeLine) / cos(tiltForwardAngle) > rxb:
|
||||
# elipse is all visible
|
||||
segmentAngle = pi
|
||||
else:
|
||||
# elipse is only partially visible
|
||||
segmentAngle = acos(max(-1,min(1, tan(tiltForwardAngle) / tan(angleOfCurrentLatitudeLine))))
|
||||
draw_ellipse_segment_rotated(cx,cy,rx,ry, width, fill, lineName, parent, 0, -pi/2+segmentAngle, -pi/2-segmentAngle)
|
||||
if __name__ == '__main__':
|
||||
Globe().run()
|
@ -1,20 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "Globe",
|
||||
"id": "fablabchemnitz.de.globe",
|
||||
"path": "globe",
|
||||
"original_name": "Globe",
|
||||
"original_id": "org.ekips.filter.globe",
|
||||
"license": "GNU GPL v2",
|
||||
"license_url": "https://github.com/hoday/InkscapeRenderGlobeExtension/blob/master/globe.py",
|
||||
"comment": "Render → Wireframe Sphere",
|
||||
"source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/globe",
|
||||
"fork_url": "https://github.com/hoday/InkscapeRenderGlobeExtension",
|
||||
"documentation_url": "https://stadtfabrikanten.org/display/IFM/Globe",
|
||||
"inkscape_gallery_url": null,
|
||||
"main_authors": [
|
||||
"github.com/hoday",
|
||||
"github.com/vmario89"
|
||||
]
|
||||
}
|
||||
]
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
||||
<name>Guilloche Contour</name>
|
||||
<id>fablabchemnitz.de.guilloche_contour</id>
|
||||
<id>fablabchemnitz.de.guilloche_creations.guilloche_contour</id>
|
||||
<param name="contourFunction" type="optiongroup" appearance="combo" gui-text="Function">
|
||||
<option value="line">Line</option>
|
||||
<option value="sin">Sin</option>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
||||
<name>Guilloche Pattern</name>
|
||||
<id>fablabchemnitz.de.guilloche_pattern</id>
|
||||
<id>fablabchemnitz.de.guilloche_creations.guilloche_pattern</id>
|
||||
<param name="patternFunction" type="optiongroup" appearance="combo" gui-text="Function">
|
||||
<option value="line">Line</option>
|
||||
<option value="sin">Sin</option>
|
||||
|
21
extensions/fablabchemnitz/guilloche_creations/meta.json
Normal file
21
extensions/fablabchemnitz/guilloche_creations/meta.json
Normal file
@ -0,0 +1,21 @@
|
||||
[
|
||||
{
|
||||
"name": "Guilloche <various>",
|
||||
"id": "fablabchemnitz.de.guilloche_creations.guilloche_contour",
|
||||
"path": "guilloche_contour",
|
||||
"original_name": "Guilloche <various>",
|
||||
"original_id": "org.inkscape.effect.guilloche_<various>",
|
||||
"license": "GNU GPL v3",
|
||||
"license_url": "https://inkscape.org/de/~DrWiggly/%E2%98%85guillocheextensions-for-v1x",
|
||||
"comment": "fork of https://inkscape.org/de/~fluent_user/%E2%98%85guilloche-pattern-extension",
|
||||
"source_url": "https://gitea.fablabchemnitz.de/FabLab_Chemnitz/mightyscape-1.X/src/branch/master/extensions/fablabchemnitz/guilloche_creations",
|
||||
"fork_url": "https://inkscape.org/de/~DrWiggly/%E2%98%85guillocheextensions-for-v1x",
|
||||
"documentation_url": "https://stadtfabrikanten.org/display/IFM/Guilloche+Pattern",
|
||||
"inkscape_gallery_url": null,
|
||||
"main_authors": [
|
||||
"inkscape.org/fluent_user",
|
||||
"inkscape.org/DrWiggly",
|
||||
"github.com/vmario89"
|
||||
]
|
||||
}
|
||||
]
|
@ -1,97 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
||||
<name>Hershey Text Alternative</name>
|
||||
<id>fablabchemnitz.de.hershey_text_alternative</id>
|
||||
<param name="tab" type="notebook">
|
||||
<page name="render" gui-text="Render">
|
||||
<label appearance="header">Hershey Text</label>
|
||||
<label xml:space="preserve">A tool to replace text with stroke fonts
|
||||
|
||||
Version 3.0, 2019-06-16
|
||||
</label>
|
||||
<param name="fontface" type="optiongroup" appearance="combo" gui-text="Font face:">
|
||||
<option value="HersheySans1">Hershey Sans 1-stroke</option>
|
||||
<option value="HersheySansMed">Hershey Sans medium</option>
|
||||
<option value="HersheySerifMed">Hershey Serif medium</option>
|
||||
<option value="HersheySerifMedItalic">Hershey Serif medium italic</option>
|
||||
<option value="HersheySerifBold">Hershey Serif bold</option>
|
||||
<option value="HersheySerifBoldItalic">Hershey Serif bold italic</option>
|
||||
<option value="HersheyScript1">Hershey Script 1-stroke</option>
|
||||
<option value="HersheyScriptMed">Hershey Script medium</option>
|
||||
<option value="HersheyGothEnglish">Hershey Gothic English</option>
|
||||
<!-- Block below this are derived from fonts licensed under SIL Open Font License -->
|
||||
<option value="EMSAllure">EMS Allure</option>
|
||||
<option value="EMSElfin">EMS Elfin</option>
|
||||
<option value="EMSFelix">EMS Felix</option>
|
||||
<option value="EMSNixish">EMS Nixish</option>
|
||||
<option value="EMSNixishItalic">EMS Nixish Italic</option>
|
||||
<option value="EMSOsmotron">EMS Osmotron</option>
|
||||
<option value="EMSReadability">EMS Readability</option>
|
||||
<option value="EMSReadabilityItalic">EMS Readability Italic</option>
|
||||
<option value="EMSTech">EMS Tech</option>
|
||||
<!-- Block above this are derived from fonts licensed under SIL Open Font License -->
|
||||
<option value="other">Other (given below)</option>
|
||||
</param>
|
||||
<label>Other SVG font name or path (if "Other" selected above):</label>
|
||||
<param name="otherfont" type="string" indent="2" gui-text="Name/Path:">HersheySans1</param>
|
||||
<param name="preserve" indent="4" type="bool" gui-text="Preserve original text">false</param>
|
||||
</page>
|
||||
<page name="utilities" gui-text="Utilities">
|
||||
<label appearance="header">Hershey Text Utility Functions</label>
|
||||
<param name="action" type="optiongroup" appearance="combo" gui-text="Action: ">
|
||||
<option value="sample">Generate font table</option>
|
||||
<option value="table">Generate glyph table in selected font</option>
|
||||
</param>
|
||||
<label xml:space="preserve">
|
||||
|
||||
Sample text to use when generating font table:</label>
|
||||
<param name="text" type="string" gui-text="Text:">
|
||||
The Quick Brown Fox Jumps Over a Lazy Dog</param>
|
||||
</page>
|
||||
<page name="help" gui-text="About">
|
||||
<label xml:space="preserve">This extension renders all text (or all selected text)
|
||||
in your document into using specialized "stroke" or
|
||||
"engraving" fonts designed for plotters.
|
||||
|
||||
Whereas regular "outline" fonts (e.g., TrueType) work
|
||||
by filling in the region inside an invisible outline,
|
||||
engraving fonts are composed only of individual lines
|
||||
or strokes; much like human handwriting.
|
||||
|
||||
Engraving fonts are used for creating text paths that
|
||||
computer controlled drawing and cutting machines (from
|
||||
pen plotters to CNC routers) can efficiently follow.
|
||||
|
||||
A complete user guide is available to download at:
|
||||
http://wiki.evilmadscientist.com/hershey
|
||||
|
||||
For extended help, click "Apply" with this tab selected.
|
||||
|
||||
</label>
|
||||
</page>
|
||||
<page name="info3" gui-text="Credits">
|
||||
<label xml:space="preserve">The classic Hershey fonts included are derived from
|
||||
work by Dr. A. V. Hershey.
|
||||
|
||||
Additional modern "EMS" fonts in this distribution are
|
||||
derivatives created from fonts licensed under the SIL
|
||||
Open Font License.
|
||||
|
||||
For full credits and license information, please read the
|
||||
credits embedded within the SVG fonts included with this
|
||||
distribution.
|
||||
</label>
|
||||
</page>
|
||||
</param>
|
||||
<effect needs-live-preview="true">
|
||||
<object-type>all</object-type>
|
||||
<effects-menu>
|
||||
<submenu name="FabLab Chemnitz">
|
||||
<submenu name="Text" />
|
||||
</submenu>
|
||||
</effects-menu>
|
||||
</effect>
|
||||
<script>
|
||||
<command location="inx" interpreter="python">hershey_text_alternative.py</command>
|
||||
</script>
|
||||
</inkscape-extension>
|
File diff suppressed because it is too large
Load Diff
@ -1,235 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||
|
||||
<metadata>
|
||||
Font name: EMS Allure
|
||||
License: SIL Open Font License http://scripts.sil.org/OFL
|
||||
Created by: Sheldon B. Michaels
|
||||
SVG font conversion by: Windell H. Oskay
|
||||
A derivative of: Allura
|
||||
Designer: Rob Leuschke, TypeSETit
|
||||
Link: http://www.typesetit.com
|
||||
Google font page: https://fonts.google.com/specimen/Allura
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="EMSAllure" horiz-adv-x="378" >
|
||||
<font-face
|
||||
font-family="EMS Allure"
|
||||
units-per-em="1000"
|
||||
ascent="800"
|
||||
descent="-200"
|
||||
cap-height="500"
|
||||
x-height="300"
|
||||
/>
|
||||
<missing-glyph horiz-adv-x="378" />
|
||||
<glyph unicode=" " glyph-name="space" horiz-adv-x="378" />
|
||||
<glyph unicode="!" glyph-name="exclam" horiz-adv-x="359" d="M 444 665 L 403 592 L 295 362 L 232 214 M 204 63 L 182 40.9" />
|
||||
<glyph unicode=""" glyph-name="quotedbl" horiz-adv-x="302" d="M 94.5 548 L 78.8 403 M 233 548 L 211 400" />
|
||||
<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="926" d="M 410 743 L 167 40.9 M 693 737 L 460 37.8 M 94.5 469 L 825 472 M 12.6 192 L 753 192" />
|
||||
<glyph unicode="$" glyph-name="dollar" horiz-adv-x="592" d="M 372 403 L 447 463 L 479 532 L 463 586 L 419 608 L 328 608 L 205 576 L 126 513 L 97.6 457 L 91.4 422 L 97.6 375 L 246 198 L 274 151 L 249 117 L 192 101 L 142 107 L 88.2 117 L 63 129 M 432 658 L 403 633 L 239 359 L 63 12.6" />
|
||||
<glyph unicode="%" glyph-name="percent" horiz-adv-x="548" d="M 189 649 L 120 621 L 66.1 558 L 66.1 479 L 104 444 L 164 450 L 211 495 L 243 545 L 246 602 L 233 633 L 205 646 L 271 624 L 413 630 L 476 662 L 410 573 L 211 280 L 56.7 18.9 M 306 202 L 261 132 L 255 59.9 L 296 22 L 340 22 L 400 66.1 L 432 113 L 441 202 L 410 233 L 353 236 L 306 202" />
|
||||
<glyph unicode="&" glyph-name="ampersand" horiz-adv-x="828" d="M 602 658 L 573 646 L 542 595 L 526 561 L 526 520 M 548 621 L 510 662 L 457 690 L 359 680 L 280 652 L 249 567 L 274 488 L 321 410 L 387 340 L 274 328 L 164 315 L 66.1 239 L 25.2 145 L 56.7 59.9 L 120 3.15 L 224 -15.8 L 343 -3.15 L 450 25.2 L 539 72.4 L 598 142 L 636 214 L 646 280 L 639 321 L 621 375 M 728 491 L 728 463 L 696 428 L 570 350 L 472 309 L 384 265 L 340 192 L 343 154 L 372 110" />
|
||||
<glyph unicode="'" glyph-name="quotesingle" horiz-adv-x="173" d="M 97.6 551 L 78.8 400" />
|
||||
<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="447" d="M 501 684 L 293 573 L 148 444 L 72.5 315 L 25.2 154 L 18.9 18.9 L 37.8 -97.6 L 66.1 -161" />
|
||||
<glyph unicode=")" glyph-name="parenright" horiz-adv-x="617" d="M 372 684 L 428 554 L 425 362 L 356 158 L 246 9.45 L 139 -75.6 L 41 -123 L -50.4 -158" />
|
||||
<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="762" d="M 236 602 L 243 598 L 400 261 M 457 617 L 186 271 M 554 438 L 117 428" />
|
||||
<glyph unicode="+" glyph-name="plus" horiz-adv-x="731" d="M 101 243 L 586 243 M 435 432 L 249 15.8" />
|
||||
<glyph unicode="," glyph-name="comma" horiz-adv-x="211" d="M 104 56.7 L 123 22 L 101 -9.45 L 28.4 -117" />
|
||||
<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="444" d="M 161 236 L 387 243" />
|
||||
<glyph unicode="." glyph-name="period" horiz-adv-x="224" d="M 145 63 L 129 37.8" />
|
||||
<glyph unicode="/" glyph-name="slash" horiz-adv-x="564" d="M 482 655 L 252 356 L 126 183 L 25.2 22" />
|
||||
<glyph unicode="0" glyph-name="zero" horiz-adv-x="662" d="M 466 583 L 432 608 L 343 611 L 293 589 L 189 520 L 132 463 L 85 387 L 47.2 265 L 41 164 L 81.9 63 L 151 15.8 L 230 -6.3 L 318 9.45 L 422 63 L 520 161 L 576 268 L 608 384 L 608 479 L 583 558 L 532 608 L 479 649 L 425 665 L 350 668" />
|
||||
<glyph unicode="1" glyph-name="one" horiz-adv-x="378" d="M 170 450 L 261 523 L 315 589 L 356 646 L 384 646 L 287 428 L 192 211 L 154 101 L 145 37.8 M 6.3 9.45 L 69.3 31.5 L 132 31.5 L 205 37.8 L 284 34.6" />
|
||||
<glyph unicode="2" glyph-name="two" horiz-adv-x="702" d="M 198 491 L 195 501 L 195 536 L 287 602 L 372 630 L 472 643 L 573 621 L 621 586 L 649 510 L 617 432 L 539 346 L 435 265 L 350 205 L 261 148 L 198 113 L 170 97.6 L 123 66.1 L 104 47.2 L 56.7 15.8 L 56.7 47.2 L 81.9 81.9 L 120 94.5 L 186 91.4 L 255 66.1 L 299 37.8 L 403 -3.15 L 513 -6.3 L 570 18.9 L 617 56.7 L 630 85.1" />
|
||||
<glyph unicode="3" glyph-name="three" horiz-adv-x="665" d="M 239 498 L 255 567 L 321 617 L 406 639 L 479 643 L 558 624 L 605 564 L 608 498 L 589 460 L 545 422 L 510 394 L 438 378 L 362 365 L 312 346 L 299 356 L 293 384 L 369 378 L 482 356 L 536 337 L 567 290 L 576 208 L 554 145 L 495 78.8 L 428 31.5 L 353 0 L 220 -18.9 L 148 -9.45 L 104 18.9 L 75.6 72.4 L 85 110 L 101 132" />
|
||||
<glyph unicode="4" glyph-name="four" horiz-adv-x="558" d="M 243 -6.3 L 268 94.5 L 321 249 L 419 463 L 504 636 L 372 526 L 239 422 L 104 340 L 37.8 284 L -3.15 224 L 50.4 252 L 88.2 268 L 183 268 L 261 265 L 334 249 L 410 249 L 491 280 L 529 306 L 554 337" />
|
||||
<glyph unicode="5" glyph-name="five" horiz-adv-x="643" d="M 318 608 L 220 460 L 164 362 L 220 397 L 312 428 L 387 432 L 460 416 L 523 378 L 548 321 L 548 255 L 523 183 L 457 101 L 378 50.4 L 284 12.6 L 192 -3.15 L 117 -3.15 L 50.4 9.45 L 3.15 31.5 L -25.2 78.8 L -34.6 129 L -15.8 154 M 280 614 L 422 624 L 570 630 L 652 624" />
|
||||
<glyph unicode="6" glyph-name="six" horiz-adv-x="602" d="M 551 507 L 554 576 L 523 624 L 450 636 L 337 614 L 214 520 L 145 432 L 88.2 312 L 59.9 186 L 69.3 97.6 L 120 31.5 L 195 6.3 L 274 6.3 L 334 34.6 L 406 91.4 L 454 154 L 479 252 L 463 324 L 406 365 L 337 372 L 271 359 L 227 321" />
|
||||
<glyph unicode="7" glyph-name="seven" horiz-adv-x="501" d="M 110 507 L 148 592 L 208 630 L 318 636 L 447 621 L 523 617 L 576 611 L 617 633 L 435 438 L 293 261 L 189 139 L 126 31.5 L 113 25.2" />
|
||||
<glyph unicode="8" glyph-name="eight" horiz-adv-x="592" d="M 384 662 L 268 611 L 195 536 L 202 460 L 227 406 L 293 375 L 359 375 L 435 350 L 482 280 L 479 195 L 444 145 L 343 75.6 L 255 25.2 L 173 15.8 L 94.5 22 L 37.8 53.6 L 25.2 132 L 69.3 214 L 170 290 L 422 428 L 501 469 L 554 513 L 573 589 L 548 643 L 491 668 L 384 662" />
|
||||
<glyph unicode="9" glyph-name="nine" horiz-adv-x="605" d="M 369 328 L 318 293 L 243 284 L 164 309 L 126 359 L 126 454 L 170 551 L 239 611 L 299 643 L 403 658 L 485 630 L 539 558 L 551 482 L 529 369 L 498 284 L 435 183 L 359 110 L 284 50.4 L 227 22 L 158 9.45 L 104 9.45 L 47.2 53.6 L 34.6 88.2 L 37.8 158" />
|
||||
<glyph unicode=":" glyph-name="colon" horiz-adv-x="246" d="M 195 252 L 183 230 M 139 63 L 126 40.9" />
|
||||
<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="224" d="M 189 252 L 173 230 M 101 59.9 L 120 40.9 L 117 18.9 L 101 -9.45 L 31.5 -101" />
|
||||
<glyph unicode="<" glyph-name="less" horiz-adv-x="450" d="M 391 561 L 101 277 L 167 186 L 208 132 L 252 59.9" />
|
||||
<glyph unicode="=" glyph-name="equal" horiz-adv-x="646" d="M 189 318 L 573 328 M 145 139 L 189 154 L 548 151" />
|
||||
<glyph unicode=">" glyph-name="greater" horiz-adv-x="472" d="M 252 554 L 328 438 L 391 375 L 293 280 L 173 164 L 85 78.8" />
|
||||
<glyph unicode="?" glyph-name="question" horiz-adv-x="564" d="M 139 561 L 151 602 L 173 624 L 246 665 L 309 696 L 413 693 L 469 652 L 498 561 L 466 476 L 422 413 L 362 365 L 315 337 L 246 280 L 214 236 L 202 205 M 129 56.7 L 107 31.5" />
|
||||
<glyph unicode="@" glyph-name="at" horiz-adv-x="895" d="M 602 517 L 510 551 L 381 501 L 284 428 L 220 356 L 186 293 L 183 236 L 208 202 L 249 186 L 309 202 L 362 252 L 450 340 L 554 463 L 576 463 L 529 369 L 507 299 L 501 214 L 529 183 L 598 189 L 680 255 L 750 359 L 788 447 L 797 554 L 759 649 L 658 712 L 539 724 L 406 709 L 265 646 L 132 542 L 53.5 438 L -3.15 284 L 6.3 170 L 41 97.6 L 132 18.9 L 258 -15.8 L 410 -12.6 L 570 28.4 L 580 34.6 L 715 123 L 788 202 L 816 258 L 822 312 L 816 378" />
|
||||
<glyph unicode="A" glyph-name="A" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293" />
|
||||
<glyph unicode="B" glyph-name="B" horiz-adv-x="860" d="M 94.5 328 L 22 369 L 3.15 419 L 25.2 510 L 117 583 L 328 680 L 548 712 L 696 709 L 781 677 L 819 627 L 816 561 L 788 520 L 737 479 L 598 435 L 529 425 L 469 416 L 428 410 L 542 324 L 633 246 L 668 158 L 652 72.4 L 605 12.6 L 532 -37.8 L 438 -44.1 L 375 -44.1 L 318 -25.2 L 290 31.5 L 277 81.9 L 208 31.5 L 161 0 L 148 25.2 L 186 148 L 324 406 L 372 510 L 419 561 L 479 573 L 517 570" />
|
||||
<glyph unicode="C" glyph-name="C" horiz-adv-x="690" d="M 296 362 L 403 372 L 526 441 L 617 526 L 658 608 L 639 680 L 564 712 L 375 662 L 249 576 L 110 419 L 41 280 L 12.6 132 L 59.9 25.2 L 189 -31.5 L 346 -15.8 L 476 34.6 L 595 113 L 668 189" />
|
||||
<glyph unicode="D" glyph-name="D" horiz-adv-x="1033.2" d="M 652 554 L 545 507 L 472 403 L 454 334 L 387 186 L 350 107 L 302 9.45 L 265 -44.1 L 236 -37.8 L 205 31.5 L 202 113 L 214 208 L 233 145 L 375 34.6 L 510 -9.45 L 728 25.2 L 863 113 L 976 220 L 1033.2 372 L 1020.6 532 L 951 627 L 828 680 L 608 706 L 413 671 L 261 614 L 154 548 L 94.5 460 L 85 384 L 126 321 L 189 293" />
|
||||
<glyph unicode="E" glyph-name="E" horiz-adv-x="850" d="M 662 580 L 668 504 L 589 662 L 501 718 L 400 706 L 324 621 L 328 526 L 365 428 L 406 372 L 444 321 L 504 306 L 507 337 L 466 350 L 359 346 L 180 321 L 41 217 L -3.15 107 L 44.1 9.45 L 170 -50.4 L 318 -47.2 L 498 -22 L 643 37.8 L 756 113 L 803 180 L 810 205 L 806 252" />
|
||||
<glyph unicode="F" glyph-name="F" horiz-adv-x="624" d="M 517 576 L 435 551 L 369 479 L 331 384 L 277 296 L 217 170 L 164 75.6 L 158 25.2 L 176 0 L 224 9.45 L 252 47.2 L 268 66.1 M 72.5 372 L 25.2 403 L -6.3 476 L 44.1 589 L 145 652 L 346 690 L 513 674 L 630 658 L 709 658 L 791 655 L 828 677 L 813 680 L 740 605 L 718 554 L 721 507 M 230 309 L 195 287 L 570 331" />
|
||||
<glyph unicode="G" glyph-name="G" horiz-adv-x="951" d="M 825 639 L 781 696 L 731 718 L 621 718 L 454 677 L 328 608 L 208 517 L 135 419 L 88.2 337 L 66.1 246 L 78.8 161 L 126 94.5 L 214 44.1 L 324 31.5 L 472 72.4 L 580 142 L 699 233 L 753 284 L 775 312 L 835 353 L 854 372 L 822 362 L 769 271 L 677 -41 L 573 -208 L 466 -353 L 365 -406 L 271 -413 L 227 -375 L 227 -302 L 265 -220 L 365 -117 L 495 -31.5 L 608 28.4 L 731 69.3 L 762 75.6 L 847 91.4" />
|
||||
<glyph unicode="H" glyph-name="H" horiz-adv-x="939" d="M 290 539 L 302 539 L 400 592 L 447 652 L 482 699 L 444 589 M 444 589 L 324 255 L 211 56.7 L 110 -72.5 L 6.3 -126 L -50.4 -126 L -123 -94.5 L -129 -72.5 M 939 680 L 854 643 L 810 567 L 759 447 L 712 337 L 665 211 L 633 107 L 643 40.9 L 671 9.45 L 728 6.3 L 794 56.7 L 869 132 L 907 183 M 41 198 L 31.5 293 L 81.9 353 L 236 372 L 315 359 L 441 343 L 614 306 L 759 290 L 832 306 L 850 321" />
|
||||
<glyph unicode="I" glyph-name="I" horiz-adv-x="548" d="M 501 693 L 410 413 L 334 224 L 280 126 L 220 50.4 L 167 28.4 L 97.6 18.9 L 9.45 25.2 L -6.3 50.4 L 22 72.4 L 66.1 40.9 L 117 31.5 L 447 37.8 M 233 450 L 176 523 L 202 602 L 277 665 L 394 684 L 523 677 L 598 674 L 665 649" />
|
||||
<glyph unicode="J" glyph-name="J" horiz-adv-x="687" d="M 643 715 L 614 687 L 567 586 L 501 400 L 428 202 L 328 40.9 L 258 -34.6 L 145 -94.5 L 53.5 -72.5 L 28.4 9.45 L 81.9 110 L 214 243 L 309 302 L 428 356 L 529 384 L 624 403 M 268 438 L 217 476 L 211 567 L 265 633 L 397 674 L 523 684 L 636 668 L 684 646" />
|
||||
<glyph unicode="K" glyph-name="K" horiz-adv-x="759" d="M 132 532 L 255 592 L 334 699 L 208 359 L 154 208 L 110 132 L 41 31.5 L -25.2 -50.4 L -126 -120 L -211 -129 L -258 -113 L -293 -56.7 M 756 699 L 564 583 L 381 435 L 236 293 L 145 180 M 296 403 L 350 189 L 435 40.9 L 529 -9.45 L 595 3.15 L 624 50.4 L 611 72.4 L 595 97.6" />
|
||||
<glyph unicode="L" glyph-name="L" horiz-adv-x="617" d="M 230 126 L 239 126 L 425 202 L 589 337 L 687 510 L 702 624 M 709 624 L 671 702 L 605 721 L 498 680 L 410 567 L 346 369 L 249 88.2 L 214 -6.3 L 176 -69.3 L 145 -107 L 126 -120 M 123 81.9 L 6.3 50.4 L 18.9 81.9 L 135 40.9 L 302 -75.6 L 435 -151 L 583 -211 L 750 -202 L 819 -151 L 838 -120 L 841 -56.7" />
|
||||
<glyph unicode="M" glyph-name="M" horiz-adv-x="1351.3" d="M 224 536 L 302 570 L 343 605 L 378 646 L 406 693 L 428 699 L 365 529 L 287 315 L 205 148 L 129 18.9 L 63 -41 L 0 -59.9 L -37.8 -15.8 L -18.9 47.2 L 94.5 186 L 249 356 L 447 542 L 570 614 L 649 633 L 721 605 L 756 513 L 740 315 L 721 189 L 687 75.6 L 712 81.9 L 784 198 L 961 463 L 1036.3 570 L 1105.7 621 L 1156.1 614 L 1174.9 589 L 1187.6 539 L 1149.8 428 L 1111.9 350 L 1067.8 255 L 1045.8 180 L 1045.8 101 L 1083.6 22 L 1181.2 37.8 L 1285.2 129 L 1319.8 183" />
|
||||
<glyph unicode="N" glyph-name="N" horiz-adv-x="932" d="M -230 -37.8 L -211 -91.4 L -154 -126 L -66.1 -107 L 37.8 -34.6 L 129 107 L 214 271 L 274 432 L 321 561 L 350 658 L 359 328 L 381 189 L 447 34.6 L 507 -18.9 L 573 -34.6 L 643 0 L 731 129 L 788 274 L 825 472 L 832 589 L 819 646 L 797 709 L 844 643 L 873 605 L 898 586 L 926 570 M 158 513 L 170 517 L 258 558 L 293 595 L 328 658 M 158 513 L 170 517 L 258 558 L 293 595 L 328 658" />
|
||||
<glyph unicode="O" glyph-name="O" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570" />
|
||||
<glyph unicode="P" glyph-name="P" horiz-adv-x="639" d="M 504 576 L 441 561 L 387 526 L 346 479 L 331 416 L 306 362 L 246 265 L 198 173 L 170 97.6 L 161 63 L 154 31.5 L 170 0 L 205 12.6 L 243 56.7 M 101 359 L 41 394 L 22 463 L 44.1 545 L 132 611 L 230 658 L 324 687 L 450 702 L 624 693 L 740 649 L 803 595 L 810 523 L 775 441 L 718 378 L 639 340 L 504 296 L 375 274 L 299 261 L 214 271" />
|
||||
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="800" d="M 699 715 L 775 680 L 816 608 L 813 463 L 759 287 L 646 123 L 532 34.6 L 447 -3.15 L 337 -25.2 L 211 -3.15 L 113 53.6 L 53.5 167 L 50.4 353 L 117 513 L 214 614 L 296 668 L 384 715 L 479 740 L 573 724 L 646 677 L 684 595 L 687 469 L 668 356 L 598 239 L 513 151 L 438 104 L 384 85.1 L 274 47.2 L 230 63 L 236 85.1 L 296 78.8 L 397 31.5 L 498 -37.8 L 605 -107 L 734 -183 L 898 -214 M 895 -214 L 1036.3 -189 L 1080.4 -132 L 1083.6 -104 L 1080.4 -37.8" />
|
||||
<glyph unicode="R" glyph-name="R" horiz-adv-x="639" d="M 498 573 L 419 564 L 356 501 L 340 438 L 293 334 L 208 198 L 154 85.1 L 142 34.6 L 161 3.15 L 198 18.9 L 220 37.8 L 227 44.1 M 81.9 369 L 28.4 419 L 22 495 L 53.5 561 L 161 636 L 274 671 L 406 696 L 558 693 L 671 680 L 772 617 L 813 536 L 788 447 L 677 365 L 554 321 L 432 284 L 334 280 L 202 293 L 198 315 L 312 230 L 381 117 L 498 -22 L 627 -117 L 762 -176 L 882 -176 L 945 -139 L 970 -101 L 976 -66.1" />
|
||||
<glyph unicode="S" glyph-name="S" horiz-adv-x="706" d="M 693 580 L 721 621 L 721 668 L 665 709 L 520 690 L 350 636 L 268 558 L 265 485 L 362 438 L 517 391 L 617 337 L 658 277 L 652 224 L 617 170 L 523 97.6 L 372 34.6 L 167 -6.3 L 63 9.45 L 28.4 47.2 L 18.9 129 L 53.5 202 L 117 255 L 189 293 L 293 324" />
|
||||
<glyph unicode="T" glyph-name="T" horiz-adv-x="554" d="M 56.7 378 L 9.45 425 L -3.15 501 L 37.8 592 L 113 646 L 198 677 L 287 690 L 466 687 L 639 665 L 806 662 L 860 674 L 825 690 L 743 580 L 734 539 L 728 485 L 743 463 M 529 570 L 450 539 L 391 476 L 324 353 L 239 205 L 180 66.1 L 180 25.2 L 198 0 L 230 22 L 268 63" />
|
||||
<glyph unicode="U" glyph-name="U" horiz-adv-x="671" d="M 9.45 476 L 18.9 482 L 104 520 L 167 570 L 233 630 L 249 662 L 280 662 L 208 558 L 104 331 L 53.5 220 L 34.6 117 L 56.7 31.5 L 129 9.45 L 224 40.9 L 343 123 L 504 277 L 621 419 L 702 548 L 743 646 L 737 709 L 696 731 L 646 712 L 595 684 L 548 602 L 513 498 L 479 359 L 444 186 L 422 47.2 L 425 -56.7 L 441 -139 L 463 -180 L 498 -195 L 529 -198 L 558 -183" />
|
||||
<glyph unicode="V" glyph-name="V" horiz-adv-x="737" d="M 53.5 454 L 0 529 L 25.2 611 L 72.5 646 L 189 668 L 302 677 L 391 677 L 447 655 L 469 649 M 331 718 L 337 586 L 299 482 L 258 410 L 211 290 L 164 167 L 142 81.9 L 145 -9.45 L 186 -37.8 L 277 -37.8 L 400 31.5 L 532 154 L 677 343 L 784 507 L 844 598 L 895 662 L 939 696 L 983 724 L 1001.7 724" />
|
||||
<glyph unicode="W" glyph-name="W" horiz-adv-x="1206.4" d="M 69.3 444 L 34.6 476 L 9.45 545 L 47.2 614 L 145 662 L 265 680 L 391 677 L 460 665 L 488 652 M 416 709 L 387 592 L 328 501 L 220 353 L 135 217 L 91.4 145 L 53.5 66.1 L 41 6.3 L 47.2 -37.8 L 63 -56.7 L 97.6 -66.1 L 148 -59.9 L 233 -28.4 L 328 28.4 L 394 85.1 L 495 167 L 586 268 L 684 394 L 712 469 L 721 529 L 712 586 L 677 570 L 665 507 L 668 416 L 662 299 L 687 176 L 731 91.4 L 788 40.9 L 876 3.15 L 939 12.6 L 986 31.5 L 1052.1 126 L 1096.2 224 L 1118.2 324 L 1127.7 387 L 1115.1 517 L 1083.6 598 L 1017.4 649 L 945 668 L 898 662 L 876 643" />
|
||||
<glyph unicode="X" glyph-name="X" horiz-adv-x="806" d="M 66.1 457 L 15.8 491 L 3.15 554 L 25.2 621 L 104 665 L 195 687 L 268 696 L 378 684 L 441 674 L 469 665 L 485 662 M 419 699 L 397 561 L 410 410 L 432 284 L 488 148 L 558 53.6 L 621 15.8 L 702 50.4 L 775 113 L 816 158 M 778 696 L 696 583 L 570 419 L 469 287 L 350 173 L 243 63 L 135 -15.8 L 31.5 -88.2 L -101 -132 L -192 -120 L -246 -101 L -268 -59.9 L -271 -41" />
|
||||
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="627" d="M 28.4 482 L 34.6 485 L 120 523 L 195 583 L 252 646 L 277 665 L 287 668 L 230 554 L 142 394 L 69.3 230 L 56.7 154 L 50.4 75.6 L 85 15.8 L 158 15.8 L 233 53.6 L 334 145 L 403 220 L 463 306 L 542 416 L 595 510 L 621 586 L 662 649 L 715 674 L 759 680 L 684 633 L 633 576 L 583 400 L 526 205 L 457 -6.3 L 406 -113 L 346 -211 L 296 -284 L 233 -346 L 148 -400 L 69.3 -413 L 31.5 -400 L 3.15 -350 L 6.3 -296 L 37.8 -233 L 107 -151 L 205 -59.9 L 331 9.45 L 416 40.9 L 570 91.4 L 598 91.4" />
|
||||
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="627" d="M 145 554 L 135 611 L 180 662 L 255 693 L 381 699 L 501 690 L 595 674 L 674 649 L 734 633 L 788 649 L 822 668 L 835 702 L 803 709 L 759 684 L 721 646 L 595 539 L 457 400 L 362 290 L 302 224 L 227 148 L 164 104 L 107 63 L 56.7 37.8 L 18.9 28.4 L 0 53.6 L 15.8 72.4 L 63 53.6 L 145 22 L 243 -50.4 L 378 -135 L 513 -205 L 671 -205 L 747 -167 L 781 -97.6 L 775 -69.3 L 769 -41 M 239 340 L 236 321 L 621 340" />
|
||||
<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="526" d="M 570 652 L 444 652 L 318 469 L 180 236 L 94.5 75.6 L 69.3 12.6 L 202 12.6" />
|
||||
<glyph unicode="\" glyph-name="backslash" horiz-adv-x="381" d="M 44.1 652 L 148 447 L 214 277 L 258 161 L 309 28.4" />
|
||||
<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="510" d="M 428 655 L 554 649 L 479 476 L 362 277 L 280 148 L 186 12.6 L 53.5 18.9" />
|
||||
<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="791" d="M 186 662 L 378 765 L 485 658" />
|
||||
<glyph unicode="_" glyph-name="underscore" horiz-adv-x="709" d="M -28.4 -34.6 L 674 -34.6" />
|
||||
<glyph unicode="`" glyph-name="grave" horiz-adv-x="406" d="M 72.5 523 L 202 444" />
|
||||
<glyph unicode="a" glyph-name="a" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343" />
|
||||
<glyph unicode="b" glyph-name="b" horiz-adv-x="416" d="M -31.5 183 L 47.2 252 L 132 328 L 233 406 L 312 476 L 394 583 L 416 674 L 372 721 L 284 680 L 195 564 L 97.6 359 L 37.8 202 L 28.4 72.4 L 37.8 53.6 L 50.4 145 L 132 243 L 249 315 L 334 334 L 365 296 L 369 252 L 328 183 L 287 120 L 189 40.9 L 135 18.9 L -12.6 -9.45" />
|
||||
<glyph unicode="c" glyph-name="c" horiz-adv-x="346" d="M 243 306 L 239 350 L 198 365 L 101 328 L -15.8 208 L -47.2 170 L -72.4 110 L -66.1 66.1 L -47.2 25.2 L 56.7 15.8 L 186 56.7 L 268 123 L 315 183" />
|
||||
<glyph unicode="d" glyph-name="d" horiz-adv-x="381" d="M 328 312 L 302 356 L 258 369 L 151 334 L 47.2 265 L -37.8 176 L -63 107 L -56.7 50.4 L 12.6 15.8 L 78.8 63 L 176 148 L 277 252 L 387 334 L 532 457 L 668 592 L 693 668 L 690 709 L 639 721 L 561 684 L 510 633 L 441 523 L 387 425 L 293 217 L 246 66.1 L 233 -44.1 L 258 -97.6 L 302 -113 L 340 -101" />
|
||||
<glyph unicode="e" glyph-name="e" horiz-adv-x="346" d="M 66.1 170 L 148 211 L 217 249 L 252 306 L 239 350 L 180 356 L 63 287 L 15.8 252 L -34.6 192 L -66.1 139 L -72.4 88.2 L -50.4 44.1 L 31.5 9.45 L 170 44.1 L 214 81.9 L 277 135 L 315 183" />
|
||||
<glyph unicode="f" glyph-name="f" horiz-adv-x="334" d="M -110 -365 L -59.9 -321 L 9.45 -94.5 L 104 154 L 198 369 L 277 517 L 328 617 L 419 696 L 466 718 L 523 696 L 507 598 L 406 444 L 290 321 L 220 261 L 173 220 L 117 192 L 25.2 183 L 28.4 208 L 208 205 L 306 217" />
|
||||
<glyph unicode="g" glyph-name="g" horiz-adv-x="469" d="M 306 350 L 195 353 L 69.3 287 L -15.8 205 L -56.7 164 L -78.8 110 L -59.9 56.7 L -18.9 18.9 L 91.4 69.3 L 176 158 L 265 252 L 287 274 L 318 274 L 164 -85 L 34.6 -331 L -22 -381 L -72.4 -410 L -117 -416 L -167 -381 L -148 -280 L -78.8 -220 L 22 -132 L 85 -88.2 L 258 22 L 369 110 L 438 183" />
|
||||
<glyph unicode="h" glyph-name="h" horiz-adv-x="561" d="M -31.5 183 L 113 315 L 343 482 L 447 605 L 469 702 L 394 718 L 324 662 L 255 586 L 180 457 L 101 309 L 12.6 31.5 L 110 148 L 192 252 L 287 315 L 328 334 L 350 312 L 340 261 L 290 183 L 261 75.6 L 284 18.9 L 350 18.9 L 413 63 L 482 129 L 529 183" />
|
||||
<glyph unicode="i" glyph-name="i" horiz-adv-x="249" d="M -31.5 183 L 37.8 236 L 59.9 328 L -37.8 85.1 L -18.9 22 L 53.5 6.3 L 132 69.3 L 183 129 L 217 183 M 123 476 L 94.5 438" />
|
||||
<glyph unicode="j" glyph-name="j" horiz-adv-x="258" d="M -31.5 183 L 66.1 287 L 104 312 L 113 299 L -81.9 -145 L -173 -309 L -243 -391 L -306 -416 L -365 -406 L -387 -353 L -359 -287 L -252 -183 L -69.3 -59.9 L 56.7 31.5 L 151 107 L 227 183 M 205 482 L 167 444 L 186 428" />
|
||||
<glyph unicode="k" glyph-name="k" horiz-adv-x="356" d="M -31.5 183 L 31.5 252 L 97.6 337 M 72.5 356 L 158 356 L 271 428 L 381 542 L 438 627 L 450 696 L 406 728 L 318 696 L 249 617 L 183 498 L 126 394 L 18.9 139 L -18.9 12.6 L 25.2 53.6 L 113 173 L 214 284 L 290 343 L 340 346 M 139 249 L 186 44.1 L 258 -85 L 362 -148 L 428 -148 L 457 -120 L 460 -101 L 457 -66.1" />
|
||||
<glyph unicode="l" glyph-name="l" horiz-adv-x="261" d="M -25.2 176 L 91.4 265 L 239 428 L 346 589 L 394 662 L 381 709 L 312 718 L 243 674 L 148 532 L 41 340 L -28.4 198 L -50.4 85.1 L -22 25.2 L 44.1 18.9 L 120 53.6 L 195 132 L 230 183" />
|
||||
<glyph unicode="m" glyph-name="m" horiz-adv-x="687" d="M -31.5 183 L 47.2 255 L 75.6 321 L -34.6 28.4 L 37.8 104 L 167 252 L 233 309 L 280 337 L 302 340 L 309 312 L 296 274 L 208 107 L 318 195 L 403 261 L 491 293 L 447 230 L 400 94.5 L 413 37.8 L 472 18.9 L 561 69.3 L 655 183" />
|
||||
<glyph unicode="n" glyph-name="n" horiz-adv-x="580" d="M 148 328 L 41 25.2 L 183 186 L 271 280 L 334 318 L 381 337 L 394 312 L 331 195 L 290 101 L 293 47.2 L 328 15.8 L 387 25.2 L 450 69.3 L 513 132 L 548 183" />
|
||||
<glyph unicode="o" glyph-name="o" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183" />
|
||||
<glyph unicode="p" glyph-name="p" horiz-adv-x="356" d="M 25.2 359 L -72.4 56.7 L -176 -192 L -227 -350 L -255 -369 L -91.4 37.8 L -44.1 12.6 L 85 63 L 208 135 L 258 227 L 268 299 L 227 346 L 139 321 L 72.5 274 L 15.8 198 L -25.2 148 L -91.4 31.5" />
|
||||
<glyph unicode="q" glyph-name="q" horiz-adv-x="542" d="M 324 334 L 224 359 L 88.2 293 L -34.6 180 L -59.9 120 L -53.6 69.3 L -31.5 28.4 L 34.6 25.2 L 120 75.6 L 186 154 L 315 284 L 422 416 L 372 406 L 255 91.4 L 139 -205 L 129 -350 L 161 -403 L 246 -403 L 280 -356 L 293 -249 L 280 -110 L 246 34.6 L 321 28.4 L 413 78.8 L 476 135 L 507 183" />
|
||||
<glyph unicode="r" glyph-name="r" horiz-adv-x="369" d="M -31.5 183 L 34.6 287 L 154 463 L 47.2 391 L 47.2 365 L 59.9 356 L 258 353 L 145 214 L 81.9 101 L 97.6 22 L 186 28.4 L 296 132 L 337 183" />
|
||||
<glyph unicode="s" glyph-name="s" horiz-adv-x="302" d="M -31.5 183 L 9.45 217 L 34.6 261 L 66.1 328 L 117 394 L 249 447 L 293 454 L 343 444 L 350 413 L 343 381 L 328 365 M 53.5 274 L 72.5 233 L 161 183 L 198 135 L 195 88.2 L 151 34.6 L 78.8 -6.3 L 31.5 -28.4 L -25.2 -31.5 L -34.6 -18.9 L -34.6 15.8 L -15.8 34.6" />
|
||||
<glyph unicode="t" glyph-name="t" horiz-adv-x="290" d="M -31.5 183 L 18.9 224 L 53.5 261 L 110 337 L 183 457 L 217 510 L 183 517 L 9.45 151 L -6.3 66.1 L 18.9 22 L 97.6 28.4 L 192 110 L 258 183 M 53.5 346 L 258 356" />
|
||||
<glyph unicode="u" glyph-name="u" horiz-adv-x="495" d="M 47.2 309 L -18.9 217 L -53.6 123 L -56.7 56.7 L -9.45 28.4 L 78.8 53.6 L 145 139 L 227 239 L 293 353 L 324 343 L 214 164 L 205 97.6 L 202 53.6 L 255 22 L 321 40.9 L 413 120 L 463 183" />
|
||||
<glyph unicode="v" glyph-name="v" horiz-adv-x="321" d="M -31.5 183 L 56.7 274 L 72.5 312 L 69.3 337 L 34.6 356 L 0 356 M 41 334 L 28.4 170 L 0 85.1 L 0 9.45 L 126 186 L 224 299 L 318 381 L 403 432 L 447 419" />
|
||||
<glyph unicode="w" glyph-name="w" horiz-adv-x="554" d="M 69.3 346 L -12.6 227 L -56.7 120 L -63 69.3 L -50.4 31.5 L -3.15 18.9 L 56.7 40.9 L 120 113 L 195 227 L 236 290 L 265 287 L 205 176 L 195 85.1 L 224 31.5 L 280 15.8 L 391 81.9 L 501 205 L 551 312 L 551 369 L 529 422 L 476 435" />
|
||||
<glyph unicode="x" glyph-name="x" horiz-adv-x="488" d="M -31.5 183 L 59.9 306 L 126 321 L 142 277 L 158 202 L 180 117 L 202 40.9 L 271 12.6 L 340 40.9 L 397 101 L 457 183 M 400 346 L 362 343 L 227 236 L 110 135 L -3.15 6.3 L -81.9 -101 L -97.6 -132 L -117 -183" />
|
||||
<glyph unicode="y" glyph-name="y" horiz-adv-x="488" d="M 88.2 312 L 3.15 233 L -31.5 186 L -47.2 132 L -53.6 85.1 L -37.8 47.2 L 12.6 31.5 L 69.3 47.2 L 176 151 L 280 277 L 334 334 L 369 331 L 274 139 L 183 -97.6 L 107 -230 L 28.4 -346 L -28.4 -397 L -135 -394 L -167 -346 L -123 -252 L -15.8 -167 L 123 -66.1 L 265 9.45 L 406 123 L 457 183" />
|
||||
<glyph unicode="z" glyph-name="z" horiz-adv-x="551" d="M 34.6 202 L 85 277 L 145 331 L 214 340 L 302 315 L 384 296 L 447 318 L 457 340 L 432 356 L 397 334 L 340 280 L 126 85.1 L 59.9 22 L 3.15 9.45 L -12.6 37.8 L 18.9 66.1 L 66.1 66.1 L 117 40.9 L 220 -15.8 L 315 -18.9 L 384 28.4 L 469 117 L 520 183" />
|
||||
<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="488" d="M 432 668 L 299 643 L 233 545 L 227 444 L 189 384 L 132 369 L 63 362 L 126 328 L 154 274 L 123 208 L 75.6 158 L 34.6 72.4 L 72.5 -3.15 L 113 -18.9 L 158 -28.4" />
|
||||
<glyph unicode="|" glyph-name="bar" horiz-adv-x="296" d="M 132 684 L 126 -28.4" />
|
||||
<glyph unicode="}" glyph-name="braceright" horiz-adv-x="558" d="M 372 674 L 447 665 L 482 627 L 472 567 L 432 510 L 397 444 L 369 384 L 419 362 L 482 356 L 375 315 L 324 274 L 302 227 L 293 145 L 255 75.6 L 161 -18.9 L 120 -28.4 L 28.4 -31.5" />
|
||||
<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="491" d="M 161 463 L 195 498 L 246 498 L 321 472 L 384 447 L 406 469 L 422 482" />
|
||||
<glyph unicode=" " glyph-name="nbspace" horiz-adv-x="378" />
|
||||
<glyph unicode="¡" glyph-name="exclamdown" horiz-adv-x="359" d="M 110 40.9 L 151 113 L 258 343 L 321 491 M 350 643 L 372 665" />
|
||||
<glyph unicode="¢" glyph-name="cent" horiz-adv-x="266" d="M 243 306 L 239 350 L 198 365 L 101 328 L -15.8 208 L -47.2 170 L -72.4 110 L -66.1 66.1 L -47.2 25.2 L 56.7 15.8 L 186 56.7 L 268 123 L 315 183 M 119 530 L 113 -111" />
|
||||
<glyph unicode="£" glyph-name="sterling" horiz-adv-x="942" d="M 449 411 L 784 435 M 1001.7 709 L 1017.4 806 L 995 863 L 920 895 L 841 869 L 753 819 L 671 712 L 608 580 L 561 422 L 491 217 L 432 139 L 340 40.9 L 186 9.45 L 101 31.5 L 66.1 63 L 78.8 129 L 161 173 L 243 176 L 343 139 L 463 75.6 L 583 25.2 L 690 12.6 L 806 40.9 L 873 81.9 L 914 145" />
|
||||
<glyph unicode="¥" glyph-name="yen" horiz-adv-x="510" d="M 53.5 662 L 110 469 L 164 378 L 224 321 L 280 312 L 340 334 L 413 413 L 469 504 L 491 589 L 498 639 L 463 665 L 419 655 L 384 611 L 343 510 L 328 391 L 306 268 L 306 94.5 L 315 -53.5 M 186 135 L 416 135 M 186 261 L 416 261" />
|
||||
<glyph unicode="¦" glyph-name="brokenbar" horiz-adv-x="90.7" d="M 290 220 L 293 142 L 285 68 L 279 15.1 L 273 -15.1 L 267 -37.8 M 290 693 L 293 614 L 285 541 L 279 488 L 273 457 L 267 435" />
|
||||
<glyph unicode="¨" glyph-name="dieresis" horiz-adv-x="567" d=" M 249 491 L 234 466 M 499 531 L 484 505" />
|
||||
<glyph unicode="©" glyph-name="copyright" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 369 339 L 422 343 L 484 378 L 529 421 L 550 461 L 540 498 L 502 513 L 408 488 L 345 446 L 276 367 L 241 298 L 227 224 L 250 170 L 315 142 L 394 150 L 458 175 L 518 214 L 554 252" />
|
||||
<glyph unicode="ª" glyph-name="ordfeminine" horiz-adv-x="263" d="M 405 721 L 386 696 L 361 669 L 323 646 L 293 639 L 279 662 L 285 701 L 306 767 L 296 751 L 246 702 L 192 658 L 148 639 L 126 663 L 129 707 L 175 761 L 232 795 L 272 808 L 313 808 L 320 802" />
|
||||
<glyph unicode="«" glyph-name="guillemotleft" horiz-adv-x="270" d="M 156 449 L 40.3 222 L 66.8 149 L 83.2 106 L 101 47.9 M 282 449 L 166 222 L 193 149 L 209 106 L 227 47.9" />
|
||||
<glyph unicode="®" glyph-name="registered" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 438 444 L 398 439 L 367 408 L 359 376 L 335 324 L 293 257 L 266 200 L 260 175 L 269 159 L 288 167 L 299 176 L 302 180 M 230 342 L 203 367 L 200 405 L 216 438 L 269 476 L 326 493 L 392 506 L 468 504 L 524 498 L 575 466 L 595 425 L 583 381 L 528 340 L 466 318 L 405 299 L 356 298 L 290 304 L 288 315 L 345 272 L 380 216 L 438 146 L 502 99.2 L 570 69.3 L 630 69.3 L 662 88.2 L 674 107 L 677 124" />
|
||||
<glyph unicode="°" glyph-name="degree" horiz-adv-x="306" d="M 153 665 L 153 667 L 168 714 L 198 747 L 242 771 L 275 782 L 307 781 L 337 776 L 363 755 L 375 725 L 379 703 L 374 664 L 360 627 L 333 591 L 304 567 L 276 554 L 229 551 L 196 567 L 177 606 L 180 656 L 197 687 L 222 717 L 248 730 L 267 740 L 280 740 L 293 738" />
|
||||
<glyph unicode="±" glyph-name="plusminus" horiz-adv-x="585" d="M 582 0 L 764 5.04 M 534 383 L 922 383 M 801 534 L 653 202" />
|
||||
<glyph unicode="²" glyph-name="twosuperior" horiz-adv-x="351" d="M 257 876 L 255 880 L 255 898 L 301 931 L 343 945 L 394 951 L 444 940 L 468 923 L 482 885 L 466 846 L 427 803 L 375 762 L 332 732 L 288 704 L 257 687 L 243 679 L 219 663 L 209 654 L 186 638 L 186 654 L 198 671 L 217 677 L 250 676 L 285 663 L 307 649 L 359 628 L 414 627 L 443 639 L 466 658 L 472 673" />
|
||||
<glyph unicode="³" glyph-name="threesuperior" horiz-adv-x="332" d="M 277 879 L 285 914 L 318 939 L 361 950 L 397 951 L 436 942 L 460 912 L 461 879 L 452 860 L 430 841 L 413 827 L 376 819 L 339 813 L 313 803 L 307 808 L 304 822 L 342 819 L 398 808 L 425 799 L 441 775 L 446 734 L 435 702 L 405 669 L 372 646 L 334 630 L 268 621 L 232 625 L 209 639 L 195 666 L 200 685 L 208 696" />
|
||||
<glyph unicode="´" glyph-name="acute" horiz-adv-x="378" d=" M 293 568 L 163 489" />
|
||||
<glyph unicode="·" glyph-name="middot" horiz-adv-x="268" d="M 249 340 L 231 310" />
|
||||
<glyph unicode="¹" glyph-name="onesuperior" horiz-adv-x="189" d="M 243 855 L 288 891 L 315 925 L 335 953 L 350 953 L 301 844 L 254 736 L 235 680 L 230 649 M 161 635 L 192 646 L 224 646 L 260 649 L 299 647" />
|
||||
<glyph unicode="º" glyph-name="ordmasculine" horiz-adv-x="306" d="M 153 665 L 153 667 L 168 714 L 198 747 L 242 771 L 275 782 L 307 781 L 337 776 L 363 755 L 375 725 L 379 703 L 374 664 L 360 627 L 333 591 L 304 567 L 276 554 L 229 551 L 196 567 L 177 606 L 180 656 L 197 687 L 222 717 L 248 730 L 267 740 L 280 740 L 293 738" />
|
||||
<glyph unicode="»" glyph-name="guillemotright" horiz-adv-x="284" d="M 101 444 L 131 350 L 156 300 L 117 224 L 69.3 131 L 34 63 M 227 444 L 257 350 L 282 300 L 243 224 L 195 131 L 160 63" />
|
||||
<glyph unicode="¼" glyph-name="onequarter" horiz-adv-x="505" d="M 102 648 L 157 692 L 189 731 L 214 765 L 231 765 L 172 635 L 115 505 L 92.6 438 L 86.9 401 M 3.78 384 L 41.6 397 L 79.4 397 L 123 401 L 170 399 M 639 655 L 410 356 L 284 183 L 183 22 M 618 -3.78 L 633 56.7 L 665 149 L 724 278 L 775 382 L 696 316 L 616 253 L 535 204 L 495 170 L 471 134 L 503 151 L 525 161 L 582 161 L 629 159 L 673 149 L 718 149 L 767 168 L 790 183 L 805 202" />
|
||||
<glyph unicode="½" glyph-name="onehalf" horiz-adv-x="583" d="M 102 648 L 157 692 L 189 731 L 214 765 L 231 765 L 172 635 L 115 505 L 92.6 438 L 86.9 401 M 3.78 384 L 41.6 397 L 79.4 397 L 123 401 L 170 399 M 639 655 L 410 356 L 284 183 L 183 22 M 592 295 L 590 301 L 590 321 L 644 361 L 696 378 L 756 386 L 816 372 L 845 352 L 862 306 L 843 259 L 796 208 L 733 159 L 682 123 L 629 88.8 L 592 68 L 575 58.6 L 546 39.7 L 535 28.3 L 507 9.45 L 507 28.3 L 522 49.1 L 544 56.7 L 584 54.8 L 626 39.7 L 652 22.7 L 714 -1.89 L 781 -3.78 L 815 11.3 L 843 34 L 850 51" />
|
||||
<glyph unicode="¾" glyph-name="threequarters" horiz-adv-x="660" d="M 144 677 L 153 718 L 193 748 L 244 762 L 287 764 L 335 752 L 363 716 L 365 677 L 353 654 L 327 631 L 306 614 L 263 605 L 217 597 L 187 586 L 180 592 L 176 609 L 221 605 L 289 592 L 321 580 L 340 552 L 346 503 L 333 465 L 297 425 L 257 397 L 212 378 L 132 367 L 88.8 372 L 62.4 389 L 45.4 421 L 51 444 L 60.5 457 M 639 655 L 410 356 L 284 183 L 183 22 M 618 -3.78 L 633 56.7 L 665 149 L 724 278 L 775 382 L 696 316 L 616 253 L 535 204 L 495 170 L 471 134 L 503 151 L 525 161 L 582 161 L 629 159 L 673 149 L 718 149 L 767 168 L 790 183 L 805 202" />
|
||||
<glyph unicode="¿" glyph-name="questiondown" horiz-adv-x="564" d="M 466 167 L 454 126 L 432 104 L 359 63 L 296 31.5 L 192 34.6 L 135 75.6 L 107 167 L 139 252 L 183 315 L 243 362 L 290 391 L 359 447 L 391 491 L 403 523 M 476 671 L 498 696" />
|
||||
<glyph unicode="À" glyph-name="Agrave" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293 M 723 919 L 852 840" />
|
||||
<glyph unicode="Á" glyph-name="Aacute" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293 M 1060.5 961 L 931 882" />
|
||||
<glyph unicode="Â" glyph-name="Acircumflex" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293 M 838 914 L 962 981 L 1030.7 912" />
|
||||
<glyph unicode="Ã" glyph-name="Atilde" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293 M 851 800 L 878 826 L 916 826 L 974 807 L 1021.7 788 L 1038.5 804 L 1050.5 814" />
|
||||
<glyph unicode="Ä" glyph-name="Adieresis" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293 M 715 899 L 700 874 M 997 931 L 981 906" />
|
||||
<glyph unicode="Å" glyph-name="Aring" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293 M 897 949 L 897 951 L 912 998 L 941 1030.0 L 986 1054.6 L 1018.7 1065.0 L 1050.8 1064.1 L 1081.1 1059.3 L 1106.6 1038.6 L 1118.9 1008.3 L 1122.7 987 L 1117.9 948 L 1103.8 910 L 1076.4 874 L 1048.0 850 L 1019.7 837 L 972 834 L 939 850 L 920 889 L 924 939 L 940 971 L 966 1000.8 L 991 1014.0 L 1011.1 1023.4 L 1023.4 1023.4 L 1036.7 1021.5" />
|
||||
<glyph unicode="È" glyph-name="Egrave" horiz-adv-x="850" d="M 662 580 L 668 504 L 589 662 L 501 718 L 400 706 L 324 621 L 328 526 L 365 428 L 406 372 L 444 321 L 504 306 L 507 337 L 466 350 L 359 346 L 180 321 L 41 217 L -3.15 107 L 44.1 9.45 L 170 -50.4 L 318 -47.2 L 498 -22 L 643 37.8 L 756 113 L 803 180 L 810 205 L 806 252 M 437 918 L 567 839" />
|
||||
<glyph unicode="É" glyph-name="Eacute" horiz-adv-x="850" d="M 662 580 L 668 504 L 589 662 L 501 718 L 400 706 L 324 621 L 328 526 L 365 428 L 406 372 L 444 321 L 504 306 L 507 337 L 466 350 L 359 346 L 180 321 L 41 217 L -3.15 107 L 44.1 9.45 L 170 -50.4 L 318 -47.2 L 498 -22 L 643 37.8 L 756 113 L 803 180 L 810 205 L 806 252 M 761 986 L 632 908" />
|
||||
<glyph unicode="Ê" glyph-name="Ecircumflex" horiz-adv-x="850" d="M 662 580 L 668 504 L 589 662 L 501 718 L 400 706 L 324 621 L 328 526 L 365 428 L 406 372 L 444 321 L 504 306 L 507 337 L 466 350 L 359 346 L 180 321 L 41 217 L -3.15 107 L 44.1 9.45 L 170 -50.4 L 318 -47.2 L 498 -22 L 643 37.8 L 756 113 L 803 180 L 810 205 L 806 252 M 434 871 L 552 935 L 617 869" />
|
||||
<glyph unicode="Ë" glyph-name="Edieresis" horiz-adv-x="850" d="M 662 580 L 668 504 L 589 662 L 501 718 L 400 706 L 324 621 L 328 526 L 365 428 L 406 372 L 444 321 L 504 306 L 507 337 L 466 350 L 359 346 L 180 321 L 41 217 L -3.15 107 L 44.1 9.45 L 170 -50.4 L 318 -47.2 L 498 -22 L 643 37.8 L 756 113 L 803 180 L 810 205 L 806 252 M 557 897 L 542 872 M 821 907 L 805 882" />
|
||||
<glyph unicode="Ì" glyph-name="Igrave" horiz-adv-x="548" d="M 501 693 L 410 413 L 334 224 L 280 126 L 220 50.4 L 167 28.4 L 97.6 18.9 L 9.45 25.2 L -6.3 50.4 L 22 72.4 L 66.1 40.9 L 117 31.5 L 447 37.8 M 233 450 L 176 523 L 202 602 L 277 665 L 394 684 L 523 677 L 598 674 L 665 649 M 296 920 L 425 841" />
|
||||
<glyph unicode="Í" glyph-name="Iacute" horiz-adv-x="548" d="M 501 693 L 410 413 L 334 224 L 280 126 L 220 50.4 L 167 28.4 L 97.6 18.9 L 9.45 25.2 L -6.3 50.4 L 22 72.4 L 66.1 40.9 L 117 31.5 L 447 37.8 M 233 450 L 176 523 L 202 602 L 277 665 L 394 684 L 523 677 L 598 674 L 665 649 M 599 952 L 470 873" />
|
||||
<glyph unicode="Î" glyph-name="Icircumflex" horiz-adv-x="548" d="M 501 693 L 410 413 L 334 224 L 280 126 L 220 50.4 L 167 28.4 L 97.6 18.9 L 9.45 25.2 L -6.3 50.4 L 22 72.4 L 66.1 40.9 L 117 31.5 L 447 37.8 M 233 450 L 176 523 L 202 602 L 277 665 L 394 684 L 523 677 L 598 674 L 665 649 M 354 894 L 474 959 L 541 892" />
|
||||
<glyph unicode="Ï" glyph-name="Idieresis" horiz-adv-x="548" d="M 501 693 L 410 413 L 334 224 L 280 126 L 220 50.4 L 167 28.4 L 97.6 18.9 L 9.45 25.2 L -6.3 50.4 L 22 72.4 L 66.1 40.9 L 117 31.5 L 447 37.8 M 233 450 L 176 523 L 202 602 L 277 665 L 394 684 L 523 677 L 598 674 L 665 649 M 384 907 L 368 881 M 615 938 L 600 913" />
|
||||
<glyph unicode="Ð" glyph-name="Eth" horiz-adv-x="1033.2" d="M 306 284 L 578 291 M 652 554 L 545 507 L 472 403 L 454 334 L 387 186 L 350 107 L 302 9.45 L 265 -44.1 L 236 -37.8 L 205 31.5 L 202 113 L 214 208 L 233 145 L 375 34.6 L 510 -9.45 L 728 25.2 L 863 113 L 976 220 L 1033.2 372 L 1020.6 532 L 951 627 L 828 680 L 608 706 L 413 671 L 261 614 L 154 548 L 94.5 460 L 85 384 L 126 321 L 189 293" />
|
||||
<glyph unicode="Ñ" glyph-name="Ntilde" horiz-adv-x="932" d="M -230 -37.8 L -211 -91.4 L -154 -126 L -66.1 -107 L 37.8 -34.6 L 129 107 L 214 271 L 274 432 L 321 561 L 350 658 L 359 328 L 381 189 L 447 34.6 L 507 -18.9 L 573 -34.6 L 643 0 L 731 129 L 788 274 L 825 472 L 832 589 L 819 646 L 797 709 L 844 643 L 873 605 L 898 586 L 926 570 M 158 513 L 170 517 L 258 558 L 293 595 L 328 658 M 158 513 L 170 517 L 258 558 L 293 595 L 328 658 M 503 864 L 532 893 L 573 893 L 636 872 L 687 852 L 706 870 L 719 880" />
|
||||
<glyph unicode="Ò" glyph-name="Ograve" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 474 930 L 603 851" />
|
||||
<glyph unicode="Ó" glyph-name="Oacute" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 765 959 L 636 880" />
|
||||
<glyph unicode="Ô" glyph-name="Ocircumflex" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 441 881 L 561 946 L 627 879" />
|
||||
<glyph unicode="Õ" glyph-name="Otilde" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 425 889 L 454 919 L 497 919 L 561 897 L 614 876 L 633 895 L 646 905" />
|
||||
<glyph unicode="Ö" glyph-name="Odieresis" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 559 919 L 543 893 M 774 932 L 759 907" />
|
||||
<glyph unicode="×" glyph-name="multiply" horiz-adv-x="324" d="M 88.2 369 L 132 381 L 158 397 L 180 343 L 220 214 L 246 85.1 L 265 31.5 L 261 12.6 M 365 397 L 362 406 L 287 334 L 170 208 L 81.9 101 L 18.9 25.2 L -18.9 -25.2 L -37.8 -66.1" />
|
||||
<glyph unicode="Ø" glyph-name="Oslash" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M 778 757 L 468 353 L 298 119 L 162 -97.8" />
|
||||
<glyph unicode="Ù" glyph-name="Ugrave" horiz-adv-x="671" d="M 9.45 476 L 18.9 482 L 104 520 L 167 570 L 233 630 L 249 662 L 280 662 L 208 558 L 104 331 L 53.5 220 L 34.6 117 L 56.7 31.5 L 129 9.45 L 224 40.9 L 343 123 L 504 277 L 621 419 L 702 548 L 743 646 L 737 709 L 696 731 L 646 712 L 595 684 L 548 602 L 513 498 L 479 359 L 444 186 L 422 47.2 L 425 -56.7 L 441 -139 L 463 -180 L 498 -195 L 529 -198 L 558 -183 M 431 933 L 560 854" />
|
||||
<glyph unicode="Ú" glyph-name="Uacute" horiz-adv-x="671" d="M 9.45 476 L 18.9 482 L 104 520 L 167 570 L 233 630 L 249 662 L 280 662 L 208 558 L 104 331 L 53.5 220 L 34.6 117 L 56.7 31.5 L 129 9.45 L 224 40.9 L 343 123 L 504 277 L 621 419 L 702 548 L 743 646 L 737 709 L 696 731 L 646 712 L 595 684 L 548 602 L 513 498 L 479 359 L 444 186 L 422 47.2 L 425 -56.7 L 441 -139 L 463 -180 L 498 -195 L 529 -198 L 558 -183 M 674 992 L 545 914" />
|
||||
<glyph unicode="Û" glyph-name="Ucircumflex" horiz-adv-x="671" d="M 9.45 476 L 18.9 482 L 104 520 L 167 570 L 233 630 L 249 662 L 280 662 L 208 558 L 104 331 L 53.5 220 L 34.6 117 L 56.7 31.5 L 129 9.45 L 224 40.9 L 343 123 L 504 277 L 621 419 L 702 548 L 743 646 L 737 709 L 696 731 L 646 712 L 595 684 L 548 602 L 513 498 L 479 359 L 444 186 L 422 47.2 L 425 -56.7 L 441 -139 L 463 -180 L 498 -195 L 529 -198 L 558 -183 M 364 833 L 478 895 L 541 832" />
|
||||
<glyph unicode="Ü" glyph-name="Udieresis" horiz-adv-x="671" d="M 9.45 476 L 18.9 482 L 104 520 L 167 570 L 233 630 L 249 662 L 280 662 L 208 558 L 104 331 L 53.5 220 L 34.6 117 L 56.7 31.5 L 129 9.45 L 224 40.9 L 343 123 L 504 277 L 621 419 L 702 548 L 743 646 L 737 709 L 696 731 L 646 712 L 595 684 L 548 602 L 513 498 L 479 359 L 444 186 L 422 47.2 L 425 -56.7 L 441 -139 L 463 -180 L 498 -195 L 529 -198 L 558 -183 M 421 930 L 406 905 M 737 899 L 721 874" />
|
||||
<glyph unicode="Ý" glyph-name="Yacute" horiz-adv-x="627" d="M 28.4 482 L 34.6 485 L 120 523 L 195 583 L 252 646 L 277 665 L 287 668 L 230 554 L 142 394 L 69.3 230 L 56.7 154 L 50.4 75.6 L 85 15.8 L 158 15.8 L 233 53.6 L 334 145 L 403 220 L 463 306 L 542 416 L 595 510 L 621 586 L 662 649 L 715 674 L 759 680 L 684 633 L 633 576 L 583 400 L 526 205 L 457 -6.3 L 406 -113 L 346 -211 L 296 -284 L 233 -346 L 148 -400 L 69.3 -413 L 31.5 -400 L 3.15 -350 L 6.3 -296 L 37.8 -233 L 107 -151 L 205 -59.9 L 331 9.45 L 416 40.9 L 570 91.4 L 598 91.4 M 649 938 L 520 860" />
|
||||
<glyph unicode="à" glyph-name="agrave" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343 M 93.1 595 L 222 516" />
|
||||
<glyph unicode="á" glyph-name="aacute" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343 M 371 592 L 242 513" />
|
||||
<glyph unicode="â" glyph-name="acircumflex" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343 M 130 517 L 252 583 L 320 515" />
|
||||
<glyph unicode="ã" glyph-name="atilde" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343 M 128 489 L 155 516 L 195 516 L 254 497 L 303 477 L 320 494 L 333 504" />
|
||||
<glyph unicode="ä" glyph-name="adieresis" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343 M 279 519 L 263 494 M 478 480 L 463 454" />
|
||||
<glyph unicode="å" glyph-name="aring" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343 M 200 665 L 200 667 L 215 714 L 245 747 L 289 771 L 322 782 L 354 781 L 385 776 L 410 755 L 422 725 L 426 703 L 421 664 L 407 627 L 380 591 L 352 567 L 323 554 L 276 551 L 243 567 L 224 606 L 228 656 L 244 687 L 269 717 L 295 730 L 315 740 L 327 740 L 340 738" />
|
||||
<glyph unicode="è" glyph-name="egrave" horiz-adv-x="346" d="M 66.1 170 L 148 211 L 217 249 L 252 306 L 239 350 L 180 356 L 63 287 L 15.8 252 L -34.6 192 L -66.1 139 L -72.4 88.2 L -50.4 44.1 L 31.5 9.45 L 170 44.1 L 214 81.9 L 277 135 L 315 183 M -16.9 574 L 112 495" />
|
||||
<glyph unicode="é" glyph-name="eacute" horiz-adv-x="346" d="M 66.1 170 L 148 211 L 217 249 L 252 306 L 239 350 L 180 356 L 63 287 L 15.8 252 L -34.6 192 L -66.1 139 L -72.4 88.2 L -50.4 44.1 L 31.5 9.45 L 170 44.1 L 214 81.9 L 277 135 L 315 183 M 276 615 L 147 536" />
|
||||
<glyph unicode="ê" glyph-name="ecircumflex" horiz-adv-x="346" d="M 66.1 170 L 148 211 L 217 249 L 252 306 L 239 350 L 180 356 L 63 287 L 15.8 252 L -34.6 192 L -66.1 139 L -72.4 88.2 L -50.4 44.1 L 31.5 9.45 L 170 44.1 L 214 81.9 L 277 135 L 315 183 M 71.6 502 L 190 566 L 255 500" />
|
||||
<glyph unicode="ë" glyph-name="edieresis" horiz-adv-x="346" d="M 66.1 170 L 148 211 L 217 249 L 252 306 L 239 350 L 180 356 L 63 287 L 15.8 252 L -34.6 192 L -66.1 139 L -72.4 88.2 L -50.4 44.1 L 31.5 9.45 L 170 44.1 L 214 81.9 L 277 135 L 315 183 M 182 473 L 167 448 M 437 504 L 421 479" />
|
||||
<glyph unicode="ì" glyph-name="igrave" horiz-adv-x="249" d="M -31.5 183 L 37.8 236 L 59.9 328 L -37.8 85.1 L -18.9 22 L 53.5 6.3 L 132 69.3 L 183 129 L 217 183 M -40.8 598 L 88.3 520" />
|
||||
<glyph unicode="í" glyph-name="iacute" horiz-adv-x="249" d="M -31.5 183 L 37.8 236 L 59.9 328 L -37.8 85.1 L -18.9 22 L 53.5 6.3 L 132 69.3 L 183 129 L 217 183 M 236 591 L 107 513" />
|
||||
<glyph unicode="î" glyph-name="icircumflex" horiz-adv-x="249" d="M -31.5 183 L 37.8 236 L 59.9 328 L -37.8 85.1 L -18.9 22 L 53.5 6.3 L 132 69.3 L 183 129 L 217 183 M 36.1 501 L 152 564 L 217 499" />
|
||||
<glyph unicode="ï" glyph-name="idieresis" horiz-adv-x="249" d="M -31.5 183 L 37.8 236 L 59.9 328 L -37.8 85.1 L -18.9 22 L 53.5 6.3 L 132 69.3 L 183 129 L 217 183 M 112 480 L 95.8 454 M 331 526 L 315 500" />
|
||||
<glyph unicode="ñ" glyph-name="ntilde" horiz-adv-x="580" d="M 148 328 L 41 25.2 L 183 186 L 271 280 L 334 318 L 381 337 L 394 312 L 331 195 L 290 101 L 293 47.2 L 328 15.8 L 387 25.2 L 450 69.3 L 513 132 L 548 183 M 165 486 L 192 514 L 232 514 L 292 494 L 342 474 L 360 491 L 372 501" />
|
||||
<glyph unicode="ò" glyph-name="ograve" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183 M 13.9 584 L 143 505" />
|
||||
<glyph unicode="ó" glyph-name="oacute" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183 M 316 608 L 187 529" />
|
||||
<glyph unicode="ô" glyph-name="ocircumflex" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183 M 85 509 L 205 574 L 272 507" />
|
||||
<glyph unicode="õ" glyph-name="otilde" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183 M 50.2 509 L 78.5 537 L 120 537 L 181 517 L 233 496 L 251 514 L 263 524" />
|
||||
<glyph unicode="ö" glyph-name="odieresis" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183 M 212 510 L 196 485 M 435 522 L 419 496" />
|
||||
<glyph unicode="÷" glyph-name="divide" horiz-adv-x="666" d="M 431 472 L 415 447 M 439 220 L 423 195 M 241 331 L 581 337" />
|
||||
<glyph unicode="ø" glyph-name="oslash" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183 M 293 437 L 132 227 L 44.1 106 L -26.5 -6.62" />
|
||||
<glyph unicode="ù" glyph-name="ugrave" horiz-adv-x="495" d="M 47.2 309 L -18.9 217 L -53.6 123 L -56.7 56.7 L -9.45 28.4 L 78.8 53.6 L 145 139 L 227 239 L 293 353 L 324 343 L 214 164 L 205 97.6 L 202 53.6 L 255 22 L 321 40.9 L 413 120 L 463 183 M 52.7 571 L 182 492" />
|
||||
<glyph unicode="ú" glyph-name="uacute" horiz-adv-x="495" d="M 47.2 309 L -18.9 217 L -53.6 123 L -56.7 56.7 L -9.45 28.4 L 78.8 53.6 L 145 139 L 227 239 L 293 353 L 324 343 L 214 164 L 205 97.6 L 202 53.6 L 255 22 L 321 40.9 L 413 120 L 463 183 M 341 556 L 212 477" />
|
||||
<glyph unicode="û" glyph-name="ucircumflex" horiz-adv-x="495" d="M 47.2 309 L -18.9 217 L -53.6 123 L -56.7 56.7 L -9.45 28.4 L 78.8 53.6 L 145 139 L 227 239 L 293 353 L 324 343 L 214 164 L 205 97.6 L 202 53.6 L 255 22 L 321 40.9 L 413 120 L 463 183 M 103 503 L 222 568 L 288 502" />
|
||||
<glyph unicode="ü" glyph-name="udieresis" horiz-adv-x="495" d="M 47.2 309 L -18.9 217 L -53.6 123 L -56.7 56.7 L -9.45 28.4 L 78.8 53.6 L 145 139 L 227 239 L 293 353 L 324 343 L 214 164 L 205 97.6 L 202 53.6 L 255 22 L 321 40.9 L 413 120 L 463 183 M 225 498 L 209 473 M 484 532 L 468 507" />
|
||||
<glyph unicode="ý" glyph-name="yacute" horiz-adv-x="488" d="M 88.2 312 L 3.15 233 L -31.5 186 L -47.2 132 L -53.6 85.1 L -37.8 47.2 L 12.6 31.5 L 69.3 47.2 L 176 151 L 280 277 L 334 334 L 369 331 L 274 139 L 183 -97.6 L 107 -230 L 28.4 -346 L -28.4 -397 L -135 -394 L -167 -346 L -123 -252 L -15.8 -167 L 123 -66.1 L 265 9.45 L 406 123 L 457 183 M 360 590 L 231 511" />
|
||||
<glyph unicode="ÿ" glyph-name="ydieresis" horiz-adv-x="488" d="M 88.2 312 L 3.15 233 L -31.5 186 L -47.2 132 L -53.6 85.1 L -37.8 47.2 L 12.6 31.5 L 69.3 47.2 L 176 151 L 280 277 L 334 334 L 369 331 L 274 139 L 183 -97.6 L 107 -230 L 28.4 -346 L -28.4 -397 L -135 -394 L -167 -346 L -123 -252 L -15.8 -167 L 123 -66.1 L 265 9.45 L 406 123 L 457 183 M 220 480 L 204 455 M 515 487 L 499 462" />
|
||||
<glyph unicode="–" glyph-name="endash" horiz-adv-x="666" d="M 241 236 L 581 243" />
|
||||
<glyph unicode="—" glyph-name="emdash" horiz-adv-x="888" d="M 321 236 L 775 243" />
|
||||
<glyph unicode="“" glyph-name="quotedblleft" horiz-adv-x="366" d="M 103 669 L 162 598 M 245 669 L 303 598" />
|
||||
<glyph unicode="”" glyph-name="quotedblright" horiz-adv-x="366" d="M 147 612 L 89.3 541 M 289 612 L 231 541" />
|
||||
<glyph unicode="‹" glyph-name="guilsinglleft" horiz-adv-x="180" d="M 156 449 L 40.3 222 L 66.8 149 L 83.2 106 L 101 47.9" />
|
||||
<glyph unicode="›" glyph-name="guilsinglright" horiz-adv-x="189" d="M 101 444 L 131 350 L 156 300 L 117 224 L 69.3 131 L 34 63" />
|
||||
<glyph unicode="€" glyph-name="Euro" horiz-adv-x="706" d="M 595 554 L 602 558 L 617 586 L 608 652 L 545 702 L 460 715 L 328 702 L 217 639 L 135 554 L 75.6 416 L 63 293 L 91.4 154 L 161 85.1 L 255 34.6 L 362 22 L 479 40.9 L 580 88.2 L 627 120 L 662 164 L 662 180 M 80.3 354 L 52 321 L 340 331 M 80.3 543 L 52 510 L 340 520" />
|
||||
<glyph unicode="Ÿ" glyph-name="Ydieresis" horiz-adv-x="627" d="M 28.4 482 L 34.6 485 L 120 523 L 195 583 L 252 646 L 277 665 L 287 668 L 230 554 L 142 394 L 69.3 230 L 56.7 154 L 50.4 75.6 L 85 15.8 L 158 15.8 L 233 53.6 L 334 145 L 403 220 L 463 306 L 542 416 L 595 510 L 621 586 L 662 649 L 715 674 L 759 680 L 684 633 L 633 576 L 583 400 L 526 205 L 457 -6.3 L 406 -113 L 346 -211 L 296 -284 L 233 -346 L 148 -400 L 69.3 -413 L 31.5 -400 L 3.15 -350 L 6.3 -296 L 37.8 -233 L 107 -151 L 205 -59.9 L 331 9.45 L 416 40.9 L 570 91.4 L 598 91.4 M 362 922 L 347 897 M 647 916 L 631 891" />
|
||||
<glyph unicode="Ă" glyph-name="Abreve" horiz-adv-x="1061.6" d="M -9.45 40.9 L 9.45 -15.8 L 66.1 -56.7 L 154 -66.1 L 274 -25.2 L 406 78.8 L 529 205 L 662 359 L 737 463 L 813 558 L 882 636 L 939 699 L 958 706 L 876 570 L 797 346 L 753 189 L 750 97.6 L 775 18.9 L 819 3.15 L 910 53.6 L 986 126 L 1030.1 180 M 129 161 L 132 246 L 167 302 L 249 331 L 324 334 L 441 312 L 513 296 L 652 280 L 813 261 L 901 261 L 929 274 L 958 293 M1022 1056.6C1022 1056.6 975.873 959.085 855.921 958.422C735.97 957.76 723 1060.6 723 1060.6" />
|
||||
<glyph unicode="Ĕ" glyph-name="Ebreve" horiz-adv-x="850" d="M 662 580 L 668 504 L 589 662 L 501 718 L 400 706 L 324 621 L 328 526 L 365 428 L 406 372 L 444 321 L 504 306 L 507 337 L 466 350 L 359 346 L 180 321 L 41 217 L -3.15 107 L 44.1 9.45 L 170 -50.4 L 318 -47.2 L 498 -22 L 643 37.8 L 756 113 L 803 180 L 810 205 L 806 252 M755 1052.61C755 1052.61 708.873 955.093 588.921 954.43C468.97 953.768 456 1056.61 456 1056.61" />
|
||||
<glyph unicode="Ğ" glyph-name="Gbreve" horiz-adv-x="951" d="M 825 639 L 781 696 L 731 718 L 621 718 L 454 677 L 328 608 L 208 517 L 135 419 L 88.2 337 L 66.1 246 L 78.8 161 L 126 94.5 L 214 44.1 L 324 31.5 L 472 72.4 L 580 142 L 699 233 L 753 284 L 775 312 L 835 353 L 854 372 L 822 362 L 769 271 L 677 -41 L 573 -208 L 466 -353 L 365 -406 L 271 -413 L 227 -375 L 227 -302 L 265 -220 L 365 -117 L 495 -31.5 L 608 28.4 L 731 69.3 L 762 75.6 L 847 91.4 M787 1017.01C787 1017.01 740.873 919.498 620.921 918.836C500.97 918.173 488 1021.01 488 1021.01" />
|
||||
<glyph unicode="Ĭ" glyph-name="Ibreve" horiz-adv-x="548" d="M 501 693 L 410 413 L 334 224 L 280 126 L 220 50.4 L 167 28.4 L 97.6 18.9 L 9.45 25.2 L -6.3 50.4 L 22 72.4 L 66.1 40.9 L 117 31.5 L 447 37.8 M 233 450 L 176 523 L 202 602 L 277 665 L 394 684 L 523 677 L 598 674 L 665 649 M659 1044.19C659 1044.19 612.873 946.68 492.921 946.017C372.97 945.355 360 1048.19 360 1048.19" />
|
||||
<glyph unicode="Ŏ" glyph-name="Obreve" horiz-adv-x="850" d="M 37.8 328 L 37.8 334 L 88.2 491 L 186 598 L 334 680 L 444 715 L 551 712 L 652 696 L 737 627 L 778 526 L 791 454 L 775 324 L 728 198 L 636 78.8 L 542 0 L 447 -44.1 L 290 -53.5 L 180 0 L 117 129 L 129 296 L 183 400 L 268 501 L 353 545 L 419 576 L 460 576 L 504 570 M755 1033.92C755 1033.92 708.873 936.401 588.921 935.738C468.97 935.076 456 1037.92 456 1037.92" />
|
||||
<glyph unicode="Ŭ" glyph-name="Ubreve" horiz-adv-x="671" d="M 9.45 476 L 18.9 482 L 104 520 L 167 570 L 233 630 L 249 662 L 280 662 L 208 558 L 104 331 L 53.5 220 L 34.6 117 L 56.7 31.5 L 129 9.45 L 224 40.9 L 343 123 L 504 277 L 621 419 L 702 548 L 743 646 L 737 709 L 696 731 L 646 712 L 595 684 L 548 602 L 513 498 L 479 359 L 444 186 L 422 47.2 L 425 -56.7 L 441 -139 L 463 -180 L 498 -195 L 529 -198 L 558 -183 M698 1015.26C698 1015.26 651.873 917.743 531.921 917.08C411.97 916.418 399 1019.26 399 1019.26" />
|
||||
<glyph unicode="ă" glyph-name="abreve" horiz-adv-x="526" d="M 495 183 L 457 132 L 406 78.8 L 331 31.5 L 271 18.9 L 243 63 L 255 142 L 296 274 L 277 243 L 176 145 L 69.3 56.7 L -18.9 18.9 L -63 66.1 L -56.7 154 L 34.6 261 L 148 331 L 230 356 L 312 356 L 324 343 M452 658.396C452 658.396 405.873 560.881 285.921 560.219C165.97 559.557 153 662.396 153 662.396" />
|
||||
<glyph unicode="ĕ" glyph-name="ebreve" horiz-adv-x="346" d="M 66.1 170 L 148 211 L 217 249 L 252 306 L 239 350 L 180 356 L 63 287 L 15.8 252 L -34.6 192 L -66.1 139 L -72.4 88.2 L -50.4 44.1 L 31.5 9.45 L 170 44.1 L 214 81.9 L 277 135 L 315 183 M395 664.15C395 664.15 348.873 566.635 228.921 565.973C108.97 565.31 96 668.15 96 668.15" />
|
||||
<glyph unicode="ğ" glyph-name="gbreve" horiz-adv-x="469" d="M 306 350 L 195 353 L 69.3 287 L -15.8 205 L -56.7 164 L -78.8 110 L -59.9 56.7 L -18.9 18.9 L 91.4 69.3 L 176 158 L 265 252 L 287 274 L 318 274 L 164 -85 L 34.6 -331 L -22 -381 L -72.4 -410 L -117 -416 L -167 -381 L -148 -280 L -78.8 -220 L 22 -132 L 85 -88.2 L 258 22 L 369 110 L 438 183 M434 670.146C434 670.146 387.873 572.631 267.921 571.968C147.97 571.306 135 674.146 135 674.146" />
|
||||
<glyph unicode="ĭ" glyph-name="ibreve" horiz-adv-x="249" d="M -31.5 183 L 37.8 236 L 59.9 328 L -37.8 85.1 L -18.9 22 L 53.5 6.3 L 132 69.3 L 183 129 L 217 183 M364 660.332C364 660.332 317.873 562.817 197.921 562.154C77.97 561.492 65 664.332 65 664.332" />
|
||||
<glyph unicode="ŏ" glyph-name="obreve" horiz-adv-x="391" d="M 195 337 L 142 365 L 66.1 315 L -6.3 233 L -40.9 161 L -56.7 75.6 L 12.6 9.45 L 101 40.9 L 183 110 L 230 208 L 239 246 L 239 284 L 220 284 M 167 158 L 183 101 L 214 72.4 L 255 75.6 L 296 110 L 359 183 M409 674.618C409 674.618 362.873 577.103 242.921 576.44C122.97 575.778 110 678.618 110 678.618" />
|
||||
<glyph unicode="ŭ" glyph-name="ubreve" horiz-adv-x="495" d="M 47.2 309 L -18.9 217 L -53.6 123 L -56.7 56.7 L -9.45 28.4 L 78.8 53.6 L 145 139 L 227 239 L 293 353 L 324 343 L 214 164 L 205 97.6 L 202 53.6 L 255 22 L 321 40.9 L 413 120 L 463 183 M442 668.434C442 668.434 395.873 570.919 275.921 570.256C155.97 569.594 143 672.434 143 672.434" />
|
||||
<glyph unicode="ß" glyph-name="germandbls" horiz-adv-x="440" d="M76.22 199.809C76.22 199.809 -35.4103 -59.1633 -5.44559 -12.9284C45.2074 65.2281 44.0011 199.441 111.573 379.319C157.207 500.798 230.103 614.31 257.893 677.762C308.6 793.541 402.687 681.342 381.453 566.731C360.219 452.12 58.0293 304.394 197.334 357.666C336.638 410.937 519.472 318.804 305.709 84.1833C91.9448 -150.438 -26.9057 175.16 -26.9057 175.16" />
|
||||
<glyph unicode="ş" glyph-name="scedilla" horiz-adv-x="302" d="M54.3511 -16.9044C54.9885 -30.4041 58.7482 -45.6094 58.1342 -57.7531C57.4551 -69.1516 46.3699 -102.461 38.8904 -112.034C29.7507 -123.731 -0.496327 -140.507 -19.5287 -137.752M-31.5 183C1.03371 203 16.3374 229.049 34.6 261C54.2606 315.559 65.9302 351.884 117 394C168.07 436.116 249 447 249 447C249 447 277.079 454.315 293 454C308.921 453.685 333.126 453.633 343 444C352.874 434.367 350 413 350 413C345.048 384.741 346.025 384.226 328 365M53.5 274C69.0508 221.383 121.453 212.68 161 183C200.547 153.32 209.363 129.772 195 88.2C180.125 13.8006 -74.1476 -87.5789 -34.6 15.8C-30.6911 25.237 -15.8 34.6 -15.8 34.6" />
|
||||
<glyph unicode="Ç" glyph-name="Ccedilla" horiz-adv-x="690" d="M233.668 -25.3894L233.668 -55.4866C233.668 -66.7466 234.603 -78.2505 232.62 -89.4425C229.506 -107.024 205.604 -156.871 191.751 -170.474C174.823 -187.095 122.668 -208.051 92.1976 -200.571M296 362L403 372L526 441L617 526L658 608L639 680L564 712L375 662L249 576L110 419L41 280L12.6 132L59.9 25.2L189 -31.5L346 -15.8L476 34.6L595 113L668 189" />
|
||||
<glyph unicode="æ" glyph-name="ae" horiz-adv-x="660" d="M366.1 170C443.971 211.242 579.323 290.755 539.959 341.37C500.594 391.986 208.65 220.011 232.941 81.4689C257.232 -57.0736 523.026 44.7685 615 183M242.178 145.736C257.101 186.268 282.953 231.996 296 274C214.62 163.858 46.7444 6.62304 -34.8515 30.1598C-116.447 53.6967 -32.6897 203.491 34.6 261C101.89 318.509 260.309 398.396 324 343" />
|
||||
<glyph unicode="Ş" glyph-name="Scedilla" horiz-adv-x="706" d="M229.531 7.70727L226.75 -22.2612C225.71 -33.473 225.577 -45.014 222.569 -55.9751C217.844 -73.1938 189.439 -120.619 174.388 -132.883C155.997 -147.87 102.129 -163.917 72.4798 -153.654M693 580L721 621L721 668L665 709L520 690L350 636L268 558L265 485L362 438L517 391L617 337L658 277L652 224L617 170L523 97.6L372 34.6L167 -6.3L63 9.45L28.4 47.2L18.9 129L53.5 202L117 255L189 293L293 324" />
|
||||
<glyph unicode="İ" glyph-name="Idotaccent" horiz-adv-x="548" d="M543 816L514.5 778M501 693L410 413L334 224L280 126L220 50.4L167 28.4L97.6 18.9L9.45 25.2L-6.3 50.4L22 72.4L66.1 40.9L117 31.5L447 37.8M233 450L176 523L202 602L277 665L394 684L523 677L598 674L665 649" />
|
||||
<glyph unicode="˘" glyph-name="breve" horiz-adv-x="791" d="M485 761C485 761 438.873 663.485 318.921 662.823C198.97 662.16 186 765 186 765" />
|
||||
<glyph unicode="Æ" glyph-name="AE" horiz-adv-x="1330.0" d="M89.2783 316.097C400.408 348.062 712.222 329.315 1024.04 321.159M1096.6 543.884C1082.96 623.613 1099.42 642.388 1172.53 710.927C1001.15 691.624 719.415 750.709 646.089 638.373M-44.0188 -100.667C-44.0188 -100.667 102.6 292.235 198.953 419.023C295.306 545.811 398.471 665.784 479.046 709.239C586.956 762.684 641.433 740.563 646.089 692.366C638.726 495.905 445.602 252.633 504.355 74.8129C532.714 -1.50505 568.017 -23.3497 654.525 -55.1095C741.033 -86.8694 902.328 -79.7905 1008.86 -51.7349C1115.39 -23.6793 1277.14 96.7478 1277.14 96.7478" />
|
||||
<glyph unicode="ı" glyph-name="dotlessi" horiz-adv-x="249" d="M-31.5 183L37.8 236L59.9 328L-37.8 85.1L-18.9 22L53.5 6.3L132 69.3L183 129L217 183" />
|
||||
<glyph unicode="ç" glyph-name="ccedilla" horiz-adv-x="346" d="M98.535 27.7113L98.535 5.26892C98.535 -3.12719 99.163 -11.7052 97.8307 -20.0507C95.738 -33.1606 79.6745 -70.3298 70.3646 -80.4725C58.9882 -92.8666 23.9377 -108.492 3.45987 -102.915M243 306L239 350L198 365L101 328L-15.8 208L-47.2 170L-72.4 110L-66.1 66.1L-47.2 25.2L56.7 15.8L186 56.7L268 123L315 183" />
|
||||
<glyph unicode="¸" glyph-name="cedilla" horiz-adv-x="690" d="M233.668 -25.3894L233.668 -55.4866C233.668 -66.7466 234.603 -78.2505 232.62 -89.4425C229.506 -107.024 205.604 -156.871 191.751 -170.474C174.823 -187.095 122.668 -208.051 92.1976 -200.571" />
|
||||
</font>
|
||||
</defs>
|
||||
</svg>
|
Before Width: | Height: | Size: 63 KiB |
@ -1,236 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
|
||||
|
||||
<metadata>
|
||||
Font name: EMS Elfin
|
||||
License: SIL Open Font License http://scripts.sil.org/OFL
|
||||
Created by: Sheldon B. Michaels
|
||||
SVG font conversion by: Windell H. Oskay
|
||||
A derivative of: Mountains of Christmas
|
||||
Designer: Crystal Kluge, Tart Workshop
|
||||
Link: http://www.tartworkshop.com
|
||||
Google font page: https://fonts.google.com/specimen/Mountains+of+Christmas
|
||||
Note: SIL OFL per metadata; Google cites Apache License, version 2.0
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="EMSElfin" horiz-adv-x="378" >
|
||||
<font-face
|
||||
font-family="EMS Elfin"
|
||||
units-per-em="1000"
|
||||
ascent="800"
|
||||
descent="-200"
|
||||
cap-height="500"
|
||||
x-height="300"
|
||||
/>
|
||||
<missing-glyph horiz-adv-x="378" />
|
||||
<glyph unicode=" " glyph-name="space" horiz-adv-x="378" />
|
||||
<glyph unicode="!" glyph-name="exclam" horiz-adv-x="236" d="M 192 649 L 208 583 L 198 236 M 183 50.4 L 176 3.15 L 217 3.15 L 227 50.4 L 183 50.4" />
|
||||
<glyph unicode=""" glyph-name="quotedbl" horiz-adv-x="302" d="M 126 665 L 135 639 L 135 501 M 265 665 L 265 545 L 249 501" />
|
||||
<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="627" d="M 189 101 L 249 315 L 315 554 L 328 643 M 539 652 L 513 583 L 378 78.8 M 592 261 L 432 252 L 255 252 L 97.6 230 M 117 447 L 321 463 L 498 457 L 589 466 L 614 466" />
|
||||
<glyph unicode="$" glyph-name="dollar" horiz-adv-x="410" d="M 261 -15.8 L 258 491 L 249 551 L 233 621 L 233 684 M 356 501 L 353 532 L 261 605 L 214 608 L 170 586 L 135 548 L 126 498 L 148 441 L 227 359 L 321 280 L 369 214 L 369 154 L 321 101 L 280 78.8 L 233 72.4 L 183 75.6 L 132 126 L 107 170 L 110 202" />
|
||||
<glyph unicode="%" glyph-name="percent" horiz-adv-x="564" d="M 205 59.9 L 387 504 L 441 608 L 321 580 L 233 558 L 176 558 L 151 567 L 110 532 L 94.5 450 L 101 387 L 135 346 L 173 353 L 214 400 L 217 476 L 211 520 L 192 551 M 482 331 L 438 306 L 410 243 L 397 189 L 403 126 L 422 91.4 L 466 81.9 L 501 97.7 L 536 161 L 548 230 L 539 287 L 526 312 L 482 331" />
|
||||
<glyph unicode="&" glyph-name="ampersand" horiz-adv-x="728" d="M 387 592 L 375 542 L 365 507 L 378 491 L 346 536 L 306 548 L 271 539 L 239 520 L 233 479 L 239 450 L 265 422 L 315 413 L 287 425 L 208 394 L 142 340 L 123 287 L 113 183 L 151 94.5 L 220 44.1 L 293 25.2 L 375 28.4 L 447 59.9 L 498 123 L 507 173 L 488 224 L 438 290 M 274 211 L 287 249 L 324 274 L 384 290 L 469 302 L 539 318 L 630 343 L 693 384 L 724 435 L 712 482 L 690 504 L 655 517 L 611 504" />
|
||||
<glyph unicode="'" glyph-name="quotesingle" horiz-adv-x="164" d="M 117 709 L 117 495" />
|
||||
<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="296" d="M 284 -94.5 L 205 12.6 L 148 139 L 123 268 L 117 400 L 132 526 L 180 636 L 239 699 L 299 737" />
|
||||
<glyph unicode=")" glyph-name="parenright" horiz-adv-x="284" d="M 110 -69.3 L 173 15.8 L 220 120 L 246 217 L 249 318 L 249 438 L 220 545 L 176 630 L 110 721 L 75.6 765" />
|
||||
<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="428" d="M 265 296 L 271 702 M 107 350 L 400 621 M 104 621 L 343 406 L 387 350" />
|
||||
<glyph unicode="+" glyph-name="plus" horiz-adv-x="542" d="M 324 81.9 L 331 81.9 L 306 517 M 101 280 L 217 280 L 372 290 L 457 302 L 529 312" />
|
||||
<glyph unicode="," glyph-name="comma" horiz-adv-x="211" d="M 158 25.2 L 120 25.2 L 126 72.4 L 170 69.3 L 173 -18.9 L 126 -94.5" />
|
||||
<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="413" d="M 132 227 L 139 227 L 230 246 L 293 239 L 356 255" />
|
||||
<glyph unicode="." glyph-name="period" horiz-adv-x="202" d="M 126 66.1 L 120 18.9 L 164 18.9 L 170 63 L 126 66.1" />
|
||||
<glyph unicode="/" glyph-name="slash" horiz-adv-x="309" d="M 117 53.6 L 227 428 L 271 630" />
|
||||
<glyph unicode="0" glyph-name="zero" horiz-adv-x="394" d="M 236 224 L 284 224 L 343 261 L 381 343 L 381 397 L 328 472 L 261 510 L 192 510 L 148 469 L 129 416 L 126 346 L 148 284 L 173 246 L 239 220" />
|
||||
<glyph unicode="1" glyph-name="one" horiz-adv-x="359" d="M 280 34.6 L 290 586 L 299 542 L 239 501 L 186 466 L 132 447 L 72.5 444" />
|
||||
<glyph unicode="2" glyph-name="two" horiz-adv-x="422" d="M 192 498 L 208 463 L 189 419 L 148 403 L 113 419 L 97.6 476 L 101 554 L 158 639 L 230 665 L 296 643 L 337 576 L 343 504 L 331 406 L 290 274 L 236 164 L 189 85.1 L 158 28.4 L 425 56.7" />
|
||||
<glyph unicode="3" glyph-name="three" horiz-adv-x="406" d="M 224 158 L 208 198 L 145 195 L 107 173 L 91.4 113 L 104 59.9 L 151 15.8 L 217 9.45 L 296 59.9 L 334 139 L 340 224 L 318 318 L 284 369 L 236 397 L 192 394 L 173 384 L 151 359 L 214 419 L 318 542 L 387 617 L 271 614 L 173 621" />
|
||||
<glyph unicode="4" glyph-name="four" horiz-adv-x="413" d="M 406 132 L 85 69.3 L 224 416 L 287 627 M 312 463 L 312 161 L 315 6.3 L 312 -97.6" />
|
||||
<glyph unicode="5" glyph-name="five" horiz-adv-x="387" d="M 198 94.5 L 189 120 L 158 120 L 123 94.5 L 123 34.6 L 158 -15.8 L 233 -18.9 L 315 34.6 L 346 107 L 356 176 L 324 239 L 274 306 L 236 315 L 189 296 L 158 271 L 135 239 L 126 205 L 135 406 L 139 454 L 129 576 L 220 564 L 328 576" />
|
||||
<glyph unicode="6" glyph-name="six" horiz-adv-x="457" d="M 208 18.9 L 217 104 L 261 170 L 315 186 L 375 135 L 391 69.3 L 365 15.8 L 324 -12.6 L 252 -12.6 L 189 44.1 L 135 148 L 126 280 L 161 406 L 233 495 L 299 548 L 356 554 L 410 539 L 463 504" />
|
||||
<glyph unicode="7" glyph-name="seven" horiz-adv-x="413" d="M 148 -34.6 L 315 419 L 362 517 L 394 554 L 419 573 L 284 561 L 158 551 L 85 567 M 176 359 L 391 321" />
|
||||
<glyph unicode="8" glyph-name="eight" horiz-adv-x="441" d="M 249 15.8 L 346 47.2 L 378 78.8 L 387 107 L 416 126 L 416 167 L 435 214 L 406 315 L 359 384 L 324 422 L 284 425 L 230 425 L 202 466 L 202 532 L 249 586 L 302 586 L 356 561 L 384 517 L 387 460 L 362 432 L 321 416 L 227 416 L 176 378 L 132 306 L 123 236 L 126 158 L 145 97.7 L 180 44.1 L 249 15.8" />
|
||||
<glyph unicode="9" glyph-name="nine" horiz-adv-x="438" d="M 113 101 L 120 101 L 139 50.4 L 198 25.2 L 284 56.7 L 356 129 L 391 246 L 381 397 L 315 517 L 284 554 L 243 570 L 183 551 L 148 504 L 129 450 L 142 384 L 176 346 L 227 337 L 280 359 L 315 394 L 343 469" />
|
||||
<glyph unicode=":" glyph-name="colon" horiz-adv-x="246" d="M 139 403 L 132 356 L 176 356 L 183 400 L 139 403 M 145 66.1 L 139 18.9 L 183 18.9 L 189 66.1 L 145 66.1" />
|
||||
<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="255" d="M 158 387 L 151 343 L 192 343 L 202 387 L 158 387 M 4006.8 -3.15 L 4003.6 -50.4 L 4044.6 -50.4 L 4050.9 -3.15 L 4006.8 -3.15 M 173 22.1 L 135 22.1 L 142 66.1 L 186 66.1 L 189 -25.2 L 142 -97.6" />
|
||||
<glyph unicode="<" glyph-name="less" horiz-adv-x="542" d="M 482 50.4 L 107 183 L 501 422" />
|
||||
<glyph unicode="=" glyph-name="equal" horiz-adv-x="589" d="M 132 139 L 403 132 L 523 139 M 513 321 L 400 309 L 255 315 L 145 321" />
|
||||
<glyph unicode=">" glyph-name="greater" horiz-adv-x="567" d="M 129 375 L 315 299 L 463 252 L 548 217 L 400 148 L 233 78.8 L 145 47.2" />
|
||||
<glyph unicode="?" glyph-name="question" horiz-adv-x="387" d="M 176 239 L 192 482 L 198 435 L 233 428 L 315 485 L 353 605 L 337 706 L 293 772 L 230 800 L 158 765 L 129 737 L 117 709 L 113 649 L 101 611 L 123 580 L 161 602 L 167 643" />
|
||||
<glyph unicode="@" glyph-name="at" horiz-adv-x="690" d="M 548 37.8 L 397 12.6 L 271 40.9 L 161 170 L 139 353 L 217 517 L 321 608 L 432 633 L 536 605 L 614 539 L 674 454 L 684 378 L 636 284 L 586 227 L 523 198 L 495 220 L 469 268 L 469 340 L 476 397 L 454 435 L 419 447 L 378 419 L 350 356 L 334 312 L 334 258 L 340 220 L 359 202 L 384 214 L 410 255 L 472 350" />
|
||||
<glyph unicode="A" glyph-name="A" horiz-adv-x="595" d="M 41 -88.2 L 120 -85 L 183 -101 L 117 -85 L 265 517 L 321 658 L 328 684 L 428 387 L 523 123 L 539 56.7 L 151 56.7 L 536 59.9 L 586 -104 L 510 -120 L 649 -97.6" />
|
||||
<glyph unicode="B" glyph-name="B" horiz-adv-x="491" d="M 142 -31.5 L 284 22.1 L 384 91.4 L 410 145 L 403 198 L 369 249 L 337 280 L 290 293 L 189 274 L 293 296 L 400 365 L 454 447 L 469 532 L 460 617 L 428 684 L 356 743 L 274 772 L 173 765 L 37.8 756 L 151 756 L 198 -18.9" />
|
||||
<glyph unicode="C" glyph-name="C" horiz-adv-x="699" d="M 696 142 L 633 69.3 L 545 18.9 L 457 9.45 L 353 22.1 L 246 81.9 L 180 161 L 126 280 L 123 410 L 176 564 L 265 671 L 365 712 L 466 731 L 564 718 L 668 652 L 680 715 L 662 652 L 671 586" />
|
||||
<glyph unicode="D" glyph-name="D" horiz-adv-x="617" d="M 53.5 775 L 170 781 L 324 765 L 444 715 L 526 617 L 567 510 L 583 400 L 551 293 L 472 192 L 378 126 L 287 78.8 L 154 56.7 L 246 66.1 L 205 630 L 192 778" />
|
||||
<glyph unicode="E" glyph-name="E" horiz-adv-x="507" d="M 498 40.9 L 495 -50.4 L 498 -12.6 L 161 -18.9 L 107 -31.5 L 173 -18.9 L 167 211 L 271 217 L 381 211 L 400 268 L 387 170 L 381 208 L 243 220 L 167 217 L 173 479 L 164 709 L 107 715 L 180 702 L 340 702 L 501 702 L 498 639 L 507 775" />
|
||||
<glyph unicode="F" glyph-name="F" horiz-adv-x="495" d="M 170 -47.2 L 246 -25.2 L 271 -25.2 L 233 -22.1 L 217 192 L 425 211 L 432 158 L 425 239 L 425 211 L 217 192 L 176 680 L 176 662 L 63 665 L 296 668 L 479 671 L 479 724 L 482 598 L 488 576" />
|
||||
<glyph unicode="G" glyph-name="G" horiz-adv-x="532" d="M 479 740 L 472 646 L 476 674 L 491 668 L 457 684 L 413 715 L 328 724 L 255 693 L 183 614 L 139 482 L 135 350 L 142 217 L 202 126 L 280 91.4 L 384 120 L 444 186 L 476 280 L 482 457 L 526 450 L 365 457" />
|
||||
<glyph unicode="H" glyph-name="H" horiz-adv-x="605" d="M 129 -22.1 L 214 9.45 L 176 -6.3 L 164 258 L 123 693 L 75.6 684 L 123 690 L 161 702 M 536 -47.2 L 510 -53.5 L 425 -63 L 472 -56.7 L 517 441 L 532 595 L 561 728 L 605 728 L 513 734 M 495 202 L 170 208" />
|
||||
<glyph unicode="I" glyph-name="I" horiz-adv-x="290" d="M 139 -9.45 L 230 18.9 L 299 22.1 L 227 25.2 L 180 340 L 164 655 L 217 665 L 243 658 L 211 665 L 72.5 636" />
|
||||
<glyph unicode="J" glyph-name="J" horiz-adv-x="425" d="M 139 25.2 L 97.6 37.8 L 44.1 3.15 L 25.2 -56.7 L 69.3 -135 L 158 -154 L 258 -129 L 334 -56.7 L 372 37.8 L 372 142 L 340 328 L 271 687 L 192 662 L 365 709" />
|
||||
<glyph unicode="K" glyph-name="K" horiz-adv-x="665" d="M 139 -78.8 L 243 -50.4 L 198 -63 L 183 296 L 167 416 L 158 690 L 217 699 L 75.6 680 M 649 662 L 529 674 L 586 665 L 466 532 L 346 384 L 239 284 L 195 271 L 274 296 L 350 299 L 403 271 L 444 208 L 485 139 L 564 25.2 L 624 -18.9 L 684 -6.3 L 721 34.6 L 728 59.9 L 709 107 L 680 132 L 652 113" />
|
||||
<glyph unicode="L" glyph-name="L" horiz-adv-x="410" d="M 416 40.9 L 394 -81.9 L 403 -31.5 L 274 -18.9 L 148 -18.9 L 81.9 -31.5 L 151 -18.9 L 151 419 L 148 573 L 154 743 L 110 743 L 202 747" />
|
||||
<glyph unicode="M" glyph-name="M" horiz-adv-x="920" d="M 41 12.6 L 192 28.4 L 145 25.2 L 205 551 L 224 803 L 413 198 L 583 432 L 671 567 L 728 677 L 778 781 L 784 822 L 769 677 L 794 466 L 816 258 L 841 25.2 L 954 47.2 L 759 9.45" />
|
||||
<glyph unicode="N" glyph-name="N" horiz-adv-x="564" d="M 88.2 -37.8 L 246 -12.6 L 176 -18.9 L 167 315 L 154 428 L 154 677 L 302 387 L 482 107 L 491 447 L 504 617 L 532 750 L 598 743 L 469 756" />
|
||||
<glyph unicode="O" glyph-name="O" horiz-adv-x="649" d="M 441 674 L 391 696 L 252 652 L 164 551 L 123 406 L 132 265 L 195 158 L 312 101 L 432 107 L 551 195 L 595 265 L 627 350 L 624 450 L 589 564 L 548 633 L 498 671 L 444 674" />
|
||||
<glyph unicode="P" glyph-name="P" horiz-adv-x="469" d="M 132 -9.45 L 249 6.3 L 189 -3.15 L 202 539 L 189 608 L 176 687 L 139 737 L 53.5 737 L 280 731 L 362 702 L 425 633 L 457 551 L 454 466 L 432 394 L 353 328 L 265 309 L 202 309" />
|
||||
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="665" d="M 510 53.6 L 595 158 L 602 192 L 624 230 L 633 309 L 605 438 L 580 507 L 510 567 L 472 570 L 413 595 L 255 551 L 167 444 L 135 343 L 126 214 L 161 107 L 214 50.4 L 293 3.15 L 391 -3.15 L 450 15.8 L 504 59.9 L 425 154 L 668 -104 L 737 -117 L 772 -85 L 778 -53.5 L 769 -18.9 L 743 6.3 L 712 9.45 L 709 -9.45" />
|
||||
<glyph unicode="R" glyph-name="R" horiz-adv-x="630" d="M 145 -113 L 271 -85 L 211 -101 L 202 274 L 189 450 L 211 690 L 66.1 662 L 284 696 L 419 693 L 482 655 L 529 586 L 536 510 L 523 438 L 466 378 L 391 340 L 324 318 L 205 312 L 372 318 L 419 287 L 463 205 L 507 81.9 L 545 -47.2 L 598 -142 L 658 -170 L 724 -151 L 759 -120 L 759 -72.5 L 747 -34.6 L 709 0 L 680 -12.6 L 671 -34.6" />
|
||||
<glyph unicode="S" glyph-name="S" horiz-adv-x="425" d="M 217 123 L 208 170 L 151 195 L 94.5 173 L 72.5 107 L 88.2 50.4 L 132 -9.45 L 205 -37.8 L 296 3.15 L 362 81.9 L 381 151 L 375 214 L 312 337 L 208 498 L 173 580 L 173 665 L 217 731 L 246 753 L 293 759 L 337 737 L 400 677 L 425 718 L 365 602" />
|
||||
<glyph unicode="T" glyph-name="T" horiz-adv-x="561" d="M 284 -50.4 L 432 -34.6 L 365 -41 L 331 643 L 551 649 L 554 614 L 551 649 L 567 715 L 551 649 L 88.2 627 L 94.5 702 L 91.4 621 L 81.9 558" />
|
||||
<glyph unicode="U" glyph-name="U" horiz-adv-x="580" d="M 69.3 756 L 202 775 L 132 762 L 158 447 L 189 198 L 233 107 L 309 81.9 L 381 101 L 444 145 L 501 258 L 520 362 L 517 740 L 463 743 L 576 750" />
|
||||
<glyph unicode="V" glyph-name="V" horiz-adv-x="558" d="M 88.2 668 L 161 684 L 120 677 L 217 406 L 277 154 L 306 34.6 L 343 142 L 369 198 L 425 413 L 457 517 L 495 624 L 551 737 L 491 747 L 548 734 L 624 737" />
|
||||
<glyph unicode="W" glyph-name="W" horiz-adv-x="791" d="M 75.6 655 L 158 665 L 217 684 L 139 662 L 189 438 L 205 328 L 249 148 L 255 69.3 L 293 202 L 331 287 L 378 495 L 387 551 L 410 589 L 419 630 L 438 523 L 488 328 L 580 -3.15 L 614 186 L 652 350 L 652 406 L 677 463 L 709 532 L 715 630 L 747 747 L 687 743 L 832 740" />
|
||||
<glyph unicode="X" glyph-name="X" horiz-adv-x="608" d="M 59.9 -28.4 L 180 -18.9 L 123 -22.1 L 435 472 L 469 548 L 592 728 L 643 724 L 520 737 M 69.3 712 L 230 740 L 161 728 L 192 586 L 268 413 L 359 224 L 428 78.8 L 447 25.2 L 517 -44.1 L 558 -63 L 617 -56.7 L 649 -28.4 L 655 25.2 L 630 56.7 L 602 53.6" />
|
||||
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="592" d="M 85 747 L 180 769 L 129 756 L 217 548 L 255 463 L 331 356 L 315 -59.9 L 265 -63 L 220 -69.3 L 315 -59.9 L 387 -63 M 328 359 L 466 561 L 510 643 L 595 788 L 529 803 L 652 772 L 662 765" />
|
||||
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="517" d="M 72.5 554 L 85 674 L 85 652 L 290 665 L 517 674 L 491 674 L 432 598 L 312 365 L 233 384 L 315 365 L 394 362 L 312 362 L 186 72.4 L 126 -31.5 L 479 12.6 L 482 69.3 L 479 -34.6" />
|
||||
<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="315" d="M 318 -56.7 L 198 -66.1 L 198 120 L 161 328 L 148 495 L 148 718 L 290 721" />
|
||||
<glyph unicode="\" glyph-name="backslash" horiz-adv-x="350" d="M 331 69.3 L 214 315 L 180 438 L 113 592" />
|
||||
<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="252" d="M 94.5 -110 L 161 -107 L 173 -94.5 L 176 387 L 186 690 L 101 687" />
|
||||
<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="384" d="M 97.6 249 L 227 665 L 290 482 L 343 274" />
|
||||
<glyph unicode="_" glyph-name="underscore" horiz-adv-x="491" d="M 94.5 -15.8 L 479 -18.9" />
|
||||
<glyph unicode="`" glyph-name="grave" horiz-adv-x="211" d="M 81.9 794 L 214 693" />
|
||||
<glyph unicode="a" glyph-name="a" horiz-adv-x="387" d="M 126 350 L 110 413 L 139 460 L 202 501 L 284 482 L 328 413 L 340 328 L 343 198 L 328 148 L 265 104 L 198 69.3 L 139 59.9 L 91.4 88.2 L 88.2 158 L 113 202 L 183 220 L 271 220 L 296 214 L 334 173 L 346 132 L 350 69.3 L 350 0 L 353 -25.2 L 387 -31.5 L 406 -31.5 L 428 -31.5 L 454 -18.9" />
|
||||
<glyph unicode="b" glyph-name="b" horiz-adv-x="472" d="M 44.1 810 L 195 822 L 123 813 L 158 -9.45 L 249 -37.8 L 343 -18.9 L 422 56.7 L 450 132 L 441 214 L 410 274 L 353 312 L 261 293 L 208 249 L 173 195 L 151 139 L 164 -37.8 L 117 -50.4 L 94.5 -63" />
|
||||
<glyph unicode="c" glyph-name="c" horiz-adv-x="394" d="M 340 312 L 365 457 L 356 403 L 299 444 L 243 454 L 170 416 L 126 318 L 113 224 L 139 148 L 205 78.8 L 287 69.3 L 337 94.5 L 356 117" />
|
||||
<glyph unicode="d" glyph-name="d" horiz-adv-x="454" d="M 466 -3.15 L 391 -9.45 L 350 -22.1 L 391 -6.3 L 391 239 L 378 346 L 350 381 L 290 387 L 214 365 L 161 309 L 123 224 L 117 139 L 135 75.6 L 183 31.5 L 230 31.5 L 296 81.9 L 334 135 L 365 214 L 384 318 L 406 825 L 290 816" />
|
||||
<glyph unicode="e" glyph-name="e" horiz-adv-x="346" d="M 331 44.1 L 293 -9.45 L 224 -31.5 L 151 15.8 L 120 139 L 129 280 L 176 403 L 211 425 L 258 419 L 293 384 L 337 274 L 236 268 L 132 265" />
|
||||
<glyph unicode="f" glyph-name="f" horiz-adv-x="290" d="M 110 -211 L 299 -176 L 208 -189 L 180 173 L 173 400 L 274 403 L 302 416 L 249 403 L 110 400 L 97.6 403 L 180 400 L 186 605 L 202 715 L 236 775 L 302 806 L 372 810 L 432 769 L 457 734 L 460 709" />
|
||||
<glyph unicode="g" glyph-name="g" horiz-adv-x="422" d="M 274 217 L 328 265 L 359 346 L 372 359 L 447 387 L 362 359 L 315 422 L 255 466 L 217 469 L 135 416 L 104 321 L 126 249 L 170 214 L 214 208 L 249 214 L 287 224 L 299 113 L 299 15.8 L 365 -44.1 L 406 -97.6 L 425 -189 L 422 -249 L 346 -324 L 233 -372 L 120 -362 L 37.8 -306 L -3.15 -220 L 12.6 -104 L 53.5 -31.5 L 97.6 15.8 L 186 44.1 L 239 40.9 L 299 15.8" />
|
||||
<glyph unicode="h" glyph-name="h" horiz-adv-x="447" d="M 88.2 -53.5 L 230 -12.6 L 161 -34.6 L 135 491 L 123 828 L 145 835 L 123 822 L 63 822 M 145 315 L 202 387 L 280 425 L 334 413 L 369 365 L 387 271 L 394 189 L 397 -18.9 L 337 -34.6 L 466 -6.3" />
|
||||
<glyph unicode="i" glyph-name="i" horiz-adv-x="258" d="M 78.8 50.4 L 81.9 50.4 L 243 69.3 L 167 63 L 180 435 L 110 435 M 132 696 L 132 658 L 173 652 L 173 696 L 132 696" />
|
||||
<glyph unicode="j" glyph-name="j" horiz-adv-x="265" d="M 53.5 -220 L 12.6 -217 L -15.8 -258 L -3.15 -318 L 56.7 -356 L 139 -337 L 217 -249 L 230 -154 L 208 211 L 214 435 L 148 413 L 72.5 397 M 167 696 L 139 677 L 180 652 L 227 677 L 167 696" />
|
||||
<glyph unicode="k" glyph-name="k" horiz-adv-x="460" d="M 85 -28.4 L 227 0 L 158 -12.6 L 139 536 L 142 891 L 208 907 L 72.5 885 M 469 482 L 372 488 L 406 463 L 334 394 L 161 274 L 261 334 L 359 145 L 419 15.8 L 488 -91.4 L 539 -107 L 592 -85 L 621 -41 L 611 12.6 L 580 31.5 L 558 28.4 L 548 9.45" />
|
||||
<glyph unicode="l" glyph-name="l" horiz-adv-x="224" d="M 91.4 -129 L 101 -129 L 227 -78.8 L 161 -107 L 139 457 L 151 759 L 205 775 L 142 750 L 85 750" />
|
||||
<glyph unicode="m" glyph-name="m" horiz-adv-x="740" d="M 123 -41 L 183 -18.9 L 261 -6.3 L 180 -18.9 L 176 268 L 154 447 L 198 460 L 78.8 435 L 158 447 L 186 230 L 243 343 L 340 416 L 387 422 L 413 387 L 425 258 L 425 154 L 457 293 L 523 403 L 592 460 L 646 466 L 671 400 L 680 265 L 674 34.6 L 605 9.45 L 759 44.1" />
|
||||
<glyph unicode="n" glyph-name="n" horiz-adv-x="510" d="M 91.4 -50.4 L 224 -31.5 L 167 -37.8 L 164 161 L 180 318 L 186 495 L 158 513 L 78.8 507 M 180 299 L 277 410 L 356 450 L 410 413 L 447 353 L 457 280 L 460 110 L 419 101 L 517 120" />
|
||||
<glyph unicode="o" glyph-name="o" horiz-adv-x="435" d="M 302 472 L 243 485 L 161 457 L 126 391 L 129 299 L 164 239 L 246 198 L 353 233 L 397 312 L 400 406 L 362 457 L 312 457" />
|
||||
<glyph unicode="p" glyph-name="p" horiz-adv-x="498" d="M 132 -350 L 239 -334 L 277 -321 L 220 -334 L 205 -113 L 158 202 L 154 369 L 214 476 L 331 536 L 428 501 L 466 400 L 450 293 L 403 217 L 312 186 L 243 205 L 180 261 L 154 356 L 142 504 L 142 605 L 183 621 L 75.6 586" />
|
||||
<glyph unicode="q" glyph-name="q" horiz-adv-x="482" d="M 450 576 L 416 362 L 372 293 L 312 246 L 230 233 L 158 274 L 123 343 L 129 444 L 208 507 L 287 517 L 365 466 L 403 419 L 406 302 L 403 129 L 365 -268 L 387 -192 L 466 -117 L 501 -50.4" />
|
||||
<glyph unicode="r" glyph-name="r" horiz-adv-x="413" d="M 123 -25.2 L 195 -3.15 L 252 12.6 L 176 -9.45 L 158 176 L 158 340 L 145 491 L 78.8 479 L 145 488 L 170 321 L 224 422 L 309 491 L 369 507 L 400 479 L 419 444 L 410 400 L 391 381 L 362 381" />
|
||||
<glyph unicode="s" glyph-name="s" horiz-adv-x="340" d="M 129 -25.2 L 104 9.45 L 69.3 9.45 L 41 -31.5 L 56.7 -104 L 97.6 -148 L 173 -158 L 243 -120 L 284 -63 L 290 37.8 L 239 176 L 167 331 L 148 450 L 192 536 L 258 554 L 306 539 L 331 507 L 362 542 L 296 438" />
|
||||
<glyph unicode="t" glyph-name="t" horiz-adv-x="350" d="M 296 81.9 L 331 113 L 369 94.5 L 375 50.4 L 356 -3.15 L 290 -34.6 L 233 -25.2 L 183 37.8 L 176 164 L 164 463 L 88.2 450 L 258 472 L 164 463 L 158 655" />
|
||||
<glyph unicode="u" glyph-name="u" horiz-adv-x="507" d="M 81.9 513 L 186 513 L 151 504 L 139 296 L 139 173 L 167 117 L 195 81.9 L 217 78.8 L 258 132 L 296 176 L 306 230 L 378 340 L 416 416 L 428 491 L 432 214 L 444 40.9 L 400 25.2 L 447 40.9 L 520 50.4" />
|
||||
<glyph unicode="v" glyph-name="v" horiz-adv-x="485" d="M 63 501 L 142 526 L 117 513 L 271 50.4 L 369 239 L 406 359 L 466 510 L 410 507 L 536 507" />
|
||||
<glyph unicode="w" glyph-name="w" horiz-adv-x="677" d="M 44.1 507 L 120 520 L 167 539 L 107 517 L 205 167 L 217 50.4 L 246 161 L 265 255 L 331 413 L 343 447 L 359 362 L 428 148 L 457 50.4 L 472 15.8 L 498 25.2 L 536 158 L 589 318 L 608 369 L 627 472 L 583 498 L 630 472 L 693 479 L 715 491" />
|
||||
<glyph unicode="x" glyph-name="x" horiz-adv-x="498" d="M 59.9 450 L 63 457 L 158 472 L 120 463 L 299 132 L 406 -22.1 L 460 -78.8 L 507 -88.2 L 539 -69.3 L 548 -44.1 L 554 -15.8 L 536 22.1 L 507 12.6 M 44.1 -94.5 L 53.5 -94.5 L 167 -88.2 L 110 -88.2 L 271 189 L 460 507 L 406 526 L 513 495" />
|
||||
<glyph unicode="y" glyph-name="y" horiz-adv-x="457" d="M 56.7 -198 L 28.4 -164 L -28.4 -164 L -63 -214 L -72.4 -280 L -25.2 -337 L 53.5 -337 L 158 -287 L 249 -129 L 337 85.1 L 391 265 L 450 400 M 318 47.2 L 117 381 L 151 387 L 53.5 372" />
|
||||
<glyph unicode="z" glyph-name="z" horiz-adv-x="425" d="M 101 359 L 101 466 L 104 428 L 394 472 L 318 340 L 243 180 L 170 189 L 243 180 L 337 189 L 243 176 L 123 -53.5 L 406 -72.5 L 422 -9.45 L 403 -75.6 L 410 -142" />
|
||||
<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="340" d="M 331 -88.2 L 268 -104 L 205 -78.8 L 180 6.3 L 186 202 L 148 284 L 117 315 L 78.8 328 L 66.1 315 L 117 315 L 189 340 L 227 425 L 224 570 L 249 724 L 271 769 L 318 784 L 359 778" />
|
||||
<glyph unicode="|" glyph-name="bar" horiz-adv-x="227" d="M 158 34.6 L 158 356 L 148 595 L 142 617" />
|
||||
<glyph unicode="}" glyph-name="braceright" horiz-adv-x="324" d="M 113 -107 L 129 -110 L 173 -94.5 L 227 -37.8 L 227 75.6 L 239 224 L 258 284 L 302 306 L 337 315 L 261 299 L 220 340 L 205 397 L 217 586 L 195 696 L 167 747 L 145 765 L 101 775 L 69.3 756" />
|
||||
<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="617" d="M 113 227 L 167 287 L 224 315 L 299 293 L 381 255 L 466 230 L 526 255 L 580 296" />
|
||||
<glyph unicode=" " glyph-name="nbspace" horiz-adv-x="378" />
|
||||
<glyph unicode="¡" glyph-name="exclamdown" horiz-adv-x="236" d="M 164 3.15 L 148 69.3 L 157 416 M 173 602 L 180 649 L 139 649 L 129 602 L 173 602" />
|
||||
<glyph unicode="¢" glyph-name="cent" horiz-adv-x="309" d="M 340 312 L 365 457 L 356 403 L 299 444 L 243 454 L 170 416 L 126 318 L 113 224 L 139 148 L 205 78.8 L 287 69.3 L 337 94.5 L 356 117 M 117 -9.45 L 227 365 L 271 567" />
|
||||
<glyph unicode="¥" glyph-name="yen" horiz-adv-x="592" d="M 85 747 L 180 769 L 129 756 L 217 548 L 255 463 L 331 356 L 315 -59.9 L 265 -63 L 220 -69.3 L 315 -59.9 L 387 -63 M 328 359 L 466 561 L 510 643 L 595 788 L 529 803 L 652 772 L 662 765 M 195 164 L 202 164 L 293 183 L 356 176 L 419 192 M 195 290 L 202 290 L 293 309 L 356 302 L 419 318" />
|
||||
<glyph unicode="¦" glyph-name="brokenbar" horiz-adv-x="68" d="M 217 10.4 L 217 107 L 215 179 L 213 185 M 217 483 L 217 579 L 215 651 L 213 658" />
|
||||
<glyph unicode="¨" glyph-name="dieresis" horiz-adv-x="567" d=" M 210 688 L 203 641 L 248 641 L 254 685 L 210 688 M 481 706 L 475 659 L 519 659 L 526 703 L 481 706" />
|
||||
<glyph unicode="©" glyph-name="copyright" horiz-adv-x="687" d="M 104 450 L 85 343 L 97.6 243 L 142 139 L 230 50.4 L 346 9.45 L 472 22.1 L 558 72.4 L 630 173 L 655 287 L 655 400 L 627 507 L 586 589 L 532 636 L 450 665 L 356 674 L 258 649 L 176 580 L 104 450 M 472 202 L 449 180 L 421 165 L 375 159 L 320 175 L 276 209 L 249 255 L 239 304 L 243 356 L 252 402 L 285 454 L 329 484 L 370 491 L 402 493 L 430 485 L 450 472 L 465 461" />
|
||||
<glyph unicode="ª" glyph-name="ordfeminine" horiz-adv-x="194" d="M 189 805 L 181 836 L 195 860 L 227 880 L 268 871 L 290 836 L 296 794 L 298 729 L 290 704 L 258 682 L 225 665 L 195 660 L 172 674 L 170 709 L 183 731 L 217 740 L 261 740 L 274 737 L 293 717 L 299 696 L 301 665 L 301 630 L 302 617 L 320 614 L 329 614 L 340 614 L 353 621" />
|
||||
<glyph unicode="«" glyph-name="guillemotleft" horiz-adv-x="325" d="M 193 40.3 L 42.8 146 L 200 338 M 319 40.3 L 169 146 L 326 338" />
|
||||
<glyph unicode="®" glyph-name="registered" horiz-adv-x="687" d="M 104 450 L 85 343 L 97.6 243 L 142 139 L 230 50.4 L 346 9.45 L 472 22.1 L 558 72.4 L 630 173 L 655 287 L 655 400 L 627 507 L 586 589 L 532 636 L 450 665 L 356 674 L 258 649 L 176 580 L 104 450 M 263 162 L 266 484 L 238 471 L 280 488 L 320 495 L 370 495 L 413 469 L 436 433 L 443 392 L 422 350 L 395 324 L 373 315 L 324 324 L 269 315 L 313 307 L 369 313 L 384 266 L 414 213 L 441 173 L 452 165 L 469 167" />
|
||||
<glyph unicode="°" glyph-name="degree" horiz-adv-x="234" d="M 255 769 L 240 776 L 198 763 L 172 732 L 160 689 L 163 646 L 181 614 L 216 597 L 252 599 L 288 626 L 301 646 L 311 672 L 310 702 L 300 736 L 287 757 L 272 768 L 256 769" />
|
||||
<glyph unicode="±" glyph-name="plusminus" horiz-adv-x="433" d="M 559 -7.56 L 564 -7.56 L 638 7.56 L 688 2.52 L 738 15.1 M 713 255 L 718 255 L 698 602 M 534 413 L 627 413 L 751 421 L 819 431 L 877 438" />
|
||||
<glyph unicode="²" glyph-name="twosuperior" horiz-adv-x="211" d="M 222 879 L 230 862 L 220 839 L 200 832 L 183 839 L 175 868 L 176 907 L 205 950 L 241 962 L 274 951 L 295 918 L 298 882 L 291 833 L 271 767 L 244 712 L 220 673 L 205 644 L 339 658" />
|
||||
<glyph unicode="³" glyph-name="threesuperior" horiz-adv-x="203" d="M 238 709 L 230 729 L 198 728 L 180 717 L 172 687 L 178 660 L 202 638 L 235 635 L 274 660 L 293 699 L 296 742 L 285 789 L 268 814 L 244 828 L 222 827 L 213 822 L 202 810 L 233 839 L 285 901 L 320 939 L 261 937 L 213 940" />
|
||||
<glyph unicode="´" glyph-name="acute" horiz-adv-x="378" d=" M 332 775 L 325 737 L 306 690 L 284 655 L 262 627" />
|
||||
<glyph unicode="·" glyph-name="middot" horiz-adv-x="242" d="M 227 382 L 219 325 L 272 325 L 280 378 L 227 382" />
|
||||
<glyph unicode="¹" glyph-name="onesuperior" horiz-adv-x="180" d="M 266 647 L 271 923 L 276 901 L 246 880 L 219 863 L 192 854 L 162 852" />
|
||||
<glyph unicode="º" glyph-name="ordmasculine" horiz-adv-x="234" d="M 255 769 L 240 776 L 198 763 L 172 732 L 160 689 L 163 646 L 181 614 L 216 597 L 252 599 L 288 626 L 301 646 L 311 672 L 310 702 L 300 736 L 287 757 L 272 768 L 256 769" />
|
||||
<glyph unicode="»" glyph-name="guillemotright" horiz-adv-x="340" d="M 51.7 300 L 126 239 L 185 202 L 219 174 L 160 118 L 93.2 63 L 58 37.8 M 178 300 L 252 239 L 311 202 L 345 174 L 286 118 L 219 63 L 184 37.8" />
|
||||
<glyph unicode="¼" glyph-name="onequarter" horiz-adv-x="417" d="M 168 399 L 174 730 L 180 703 L 144 679 L 112 658 L 79.4 646 L 43.5 644 M 274 53.6 L 384 428 L 428 630 M 716 79.4 L 524 41.6 L 607 249 L 644 376 M 660 278 L 660 96.4 L 662 3.78 L 660 -58.6" />
|
||||
<glyph unicode="½" glyph-name="onehalf" horiz-adv-x="422" d="M 168 399 L 174 730 L 180 703 L 144 679 L 112 658 L 79.4 646 L 43.5 644 M 274 53.6 L 384 428 L 428 630 M 588 299 L 597 278 L 586 251 L 561 242 L 541 251 L 531 285 L 533 333 L 567 384 L 610 399 L 650 386 L 675 346 L 679 302 L 671 244 L 646 164 L 614 98.3 L 586 51 L 567 17 L 728 34" />
|
||||
<glyph unicode="¾" glyph-name="threequarters" horiz-adv-x="442" d="M 134 472 L 125 497 L 86.9 495 L 64.3 482 L 54.8 446 L 62.4 414 L 90.7 387 L 130 384 L 178 414 L 200 461 L 204 512 L 191 569 L 170 599 L 142 616 L 115 614 L 104 609 L 90.7 593 L 129 629 L 191 703 L 232 748 L 163 747 L 104 750 M 274 53.6 L 384 428 L 428 630 M 716 79.4 L 524 41.6 L 607 249 L 644 376 M 660 278 L 660 96.4 L 662 3.78 L 660 -58.6" />
|
||||
<glyph unicode="¿" glyph-name="questiondown" horiz-adv-x="387" d="M 277 781 L 261 539 L 255 586 L 220 592 L 139 535 L 101 416 L 117 315 L 161 249 L 224 220 L 296 255 L 324 283 L 337 312 L 340 372 L 353 409 L 331 441 L 293 419 L 287 378" />
|
||||
<glyph unicode="À" glyph-name="Agrave" horiz-adv-x="595" d="M 41 -88.2 L 120 -85 L 183 -101 L 117 -85 L 265 517 L 321 658 L 328 684 L 428 387 L 523 123 L 539 56.7 L 151 56.7 L 536 59.9 L 586 -104 L 510 -120 L 649 -97.6 M 204 1021.5 L 336 921" />
|
||||
<glyph unicode="Á" glyph-name="Aacute" horiz-adv-x="595" d="M 41 -88.2 L 120 -85 L 183 -101 L 117 -85 L 265 517 L 321 658 L 328 684 L 428 387 L 523 123 L 539 56.7 L 151 56.7 L 536 59.9 L 586 -104 L 510 -120 L 649 -97.6 M 442 1051.5 L 435 1013.7 L 417 966 L 395 932 L 372 903" />
|
||||
<glyph unicode="Â" glyph-name="Acircumflex" horiz-adv-x="595" d="M 41 -88.2 L 120 -85 L 183 -101 L 117 -85 L 265 517 L 321 658 L 328 684 L 428 387 L 523 123 L 539 56.7 L 151 56.7 L 536 59.9 L 586 -104 L 510 -120 L 649 -97.6 M 217 838 L 306 1124.5 L 349 999 L 386 856" />
|
||||
<glyph unicode="Ã" glyph-name="Atilde" horiz-adv-x="595" d="M 41 -88.2 L 120 -85 L 183 -101 L 117 -85 L 265 517 L 321 658 L 328 684 L 428 387 L 523 123 L 539 56.7 L 151 56.7 L 536 59.9 L 586 -104 L 510 -120 L 649 -97.6 M 165 794 L 201 834 L 238 853 L 288 838 L 343 813 L 399 796 L 439 813 L 474 840" />
|
||||
<glyph unicode="Ä" glyph-name="Adieresis" horiz-adv-x="595" d="M 41 -88.2 L 120 -85 L 183 -101 L 117 -85 L 265 517 L 321 658 L 328 684 L 428 387 L 523 123 L 539 56.7 L 151 56.7 L 536 59.9 L 586 -104 L 510 -120 L 649 -97.6 M 256 942 L 249 895 L 293 895 L 300 939 L 256 942 M 485 946 L 479 898 L 523 898 L 530 942 L 485 946" />
|
||||
<glyph unicode="Å" glyph-name="Aring" horiz-adv-x="595" d="M 41 -88.2 L 120 -85 L 183 -101 L 117 -85 L 265 517 L 321 658 L 328 684 L 428 387 L 523 123 L 539 56.7 L 151 56.7 L 536 59.9 L 586 -104 L 510 -120 L 649 -97.6 M 358 1052.7 L 343 1059.3 L 301 1046.1 L 275 1015.9 L 263 972 L 266 930 L 284 898 L 319 881 L 355 883 L 391 909 L 404 930 L 414 955 L 413 986 L 403 1019.7 L 390 1040.4 L 375 1051.8 L 359 1052.7" />
|
||||
<glyph unicode="È" glyph-name="Egrave" horiz-adv-x="507" d="M 498 40.9 L 495 -50.4 L 498 -12.6 L 161 -18.9 L 107 -31.5 L 173 -18.9 L 167 211 L 271 217 L 381 211 L 400 268 L 387 170 L 381 208 L 243 220 L 167 217 L 173 479 L 164 709 L 107 715 L 180 702 L 340 702 L 501 702 L 498 639 L 507 775 M 135 1017.9 L 268 917" />
|
||||
<glyph unicode="É" glyph-name="Eacute" horiz-adv-x="507" d="M 498 40.9 L 495 -50.4 L 498 -12.6 L 161 -18.9 L 107 -31.5 L 173 -18.9 L 167 211 L 271 217 L 381 211 L 400 268 L 387 170 L 381 208 L 243 220 L 167 217 L 173 479 L 164 709 L 107 715 L 180 702 L 340 702 L 501 702 L 498 639 L 507 775 M 393 1044.3 L 387 1006.5 L 368 959 L 346 925 L 324 896" />
|
||||
<glyph unicode="Ê" glyph-name="Ecircumflex" horiz-adv-x="507" d="M 498 40.9 L 495 -50.4 L 498 -12.6 L 161 -18.9 L 107 -31.5 L 173 -18.9 L 167 211 L 271 217 L 381 211 L 400 268 L 387 170 L 381 208 L 243 220 L 167 217 L 173 479 L 164 709 L 107 715 L 180 702 L 340 702 L 501 702 L 498 639 L 507 775 M 167 853 L 256 1139.8 L 299 1013.6 L 336 870" />
|
||||
<glyph unicode="Ë" glyph-name="Edieresis" horiz-adv-x="507" d="M 498 40.9 L 495 -50.4 L 498 -12.6 L 161 -18.9 L 107 -31.5 L 173 -18.9 L 167 211 L 271 217 L 381 211 L 400 268 L 387 170 L 381 208 L 243 220 L 167 217 L 173 479 L 164 709 L 107 715 L 180 702 L 340 702 L 501 702 L 498 639 L 507 775 M 227 923 L 221 876 L 265 876 L 272 920 L 227 923 M 451 960 L 445 913 L 489 913 L 495 957 L 451 960" />
|
||||
<glyph unicode="Ì" glyph-name="Igrave" horiz-adv-x="290" d="M 139 -9.45 L 230 18.9 L 299 22.1 L 227 25.2 L 180 340 L 164 655 L 217 665 L 243 658 L 211 665 L 72.5 636 M 28 1024.0 L 160 923" />
|
||||
<glyph unicode="Í" glyph-name="Iacute" horiz-adv-x="290" d="M 139 -9.45 L 230 18.9 L 299 22.1 L 227 25.2 L 180 340 L 164 655 L 217 665 L 243 658 L 211 665 L 72.5 636 M 291 1075.7 L 284 1037.9 L 265 991 L 243 956 L 221 928" />
|
||||
<glyph unicode="Î" glyph-name="Icircumflex" horiz-adv-x="290" d="M 139 -9.45 L 230 18.9 L 299 22.1 L 227 25.2 L 180 340 L 164 655 L 217 665 L 243 658 L 211 665 L 72.5 636 M 107 861 L 198 1156.7 L 243 1027.0 L 281 879" />
|
||||
<glyph unicode="Ï" glyph-name="Idieresis" horiz-adv-x="290" d="M 139 -9.45 L 230 18.9 L 299 22.1 L 227 25.2 L 180 340 L 164 655 L 217 665 L 243 658 L 211 665 L 72.5 636 M 71.8 973 L 65.5 926 L 110 926 L 116 970 L 71.8 973 M 327 932 L 321 885 L 365 885 L 372 929 L 327 932" />
|
||||
<glyph unicode="Ð" glyph-name="Eth" horiz-adv-x="617" d="M 132 321 L 139 321 L 230 340 L 293 334 L 356 350 M 53.5 775 L 170 781 L 324 765 L 444 715 L 526 617 L 567 510 L 583 400 L 551 293 L 472 192 L 378 126 L 287 78.8 L 154 56.7 L 246 66.1 L 205 630 L 192 778" />
|
||||
<glyph unicode="Ñ" glyph-name="Ntilde" horiz-adv-x="564" d="M 88.2 -37.8 L 246 -12.6 L 176 -18.9 L 167 315 L 154 428 L 154 677 L 302 387 L 482 107 L 491 447 L 504 617 L 532 750 L 598 743 L 469 756 M 174 885 L 213 928 L 255 949 L 309 933 L 369 905 L 431 887 L 474 905 L 513 935" />
|
||||
<glyph unicode="Ò" glyph-name="Ograve" horiz-adv-x="649" d="M 441 674 L 391 696 L 252 652 L 164 551 L 123 406 L 132 265 L 195 158 L 312 101 L 432 107 L 551 195 L 595 265 L 627 350 L 624 450 L 589 564 L 548 633 L 498 671 L 444 674 M 210 1015.6 L 342 915" />
|
||||
<glyph unicode="Ó" glyph-name="Oacute" horiz-adv-x="649" d="M 441 674 L 391 696 L 252 652 L 164 551 L 123 406 L 132 265 L 195 158 L 312 101 L 432 107 L 551 195 L 595 265 L 627 350 L 624 450 L 589 564 L 548 633 L 498 671 L 444 674 M 486 1053.2 L 479 1015.4 L 460 968 L 438 933 L 416 905" />
|
||||
<glyph unicode="Ô" glyph-name="Ocircumflex" horiz-adv-x="649" d="M 441 674 L 391 696 L 252 652 L 164 551 L 123 406 L 132 265 L 195 158 L 312 101 L 432 107 L 551 195 L 595 265 L 627 350 L 624 450 L 589 564 L 548 633 L 498 671 L 444 674 M 220 823 L 307 1101.2 L 349 979 L 385 839" />
|
||||
<glyph unicode="Õ" glyph-name="Otilde" horiz-adv-x="649" d="M 441 674 L 391 696 L 252 652 L 164 551 L 123 406 L 132 265 L 195 158 L 312 101 L 432 107 L 551 195 L 595 265 L 627 350 L 624 450 L 589 564 L 548 633 L 498 671 L 444 674 M 170 783 L 206 823 L 243 841 L 293 827 L 347 802 L 403 785 L 442 802 L 478 829" />
|
||||
<glyph unicode="Ö" glyph-name="Odieresis" horiz-adv-x="649" d="M 441 674 L 391 696 L 252 652 L 164 551 L 123 406 L 132 265 L 195 158 L 312 101 L 432 107 L 551 195 L 595 265 L 627 350 L 624 450 L 589 564 L 548 633 L 498 671 L 444 674 M 218 948 L 212 901 L 256 901 L 262 945 L 218 948 M 544 956 L 538 909 L 582 909 L 588 953 L 544 956" />
|
||||
<glyph unicode="×" glyph-name="multiply" horiz-adv-x="428" d="M 59.9 432 L 101 422 L 375 28.4 L 406 9.45 M 72.5 6.3 L 378 438" />
|
||||
<glyph unicode="Ø" glyph-name="Oslash" horiz-adv-x="649" d="M 441 674 L 391 696 L 252 652 L 164 551 L 123 406 L 132 265 L 195 158 L 312 101 L 432 107 L 551 195 L 595 265 L 627 350 L 624 450 L 589 564 L 548 633 L 498 671 L 444 674 M 266 67.5 L 405 540 L 460 794" />
|
||||
<glyph unicode="Ù" glyph-name="Ugrave" horiz-adv-x="580" d="M 69.3 756 L 202 775 L 132 762 L 158 447 L 189 198 L 233 107 L 309 81.9 L 381 101 L 444 145 L 501 258 L 520 362 L 517 740 L 463 743 L 576 750 M 170 1006.2 L 302 905" />
|
||||
<glyph unicode="Ú" glyph-name="Uacute" horiz-adv-x="580" d="M 69.3 756 L 202 775 L 132 762 L 158 447 L 189 198 L 233 107 L 309 81.9 L 381 101 L 444 145 L 501 258 L 520 362 L 517 740 L 463 743 L 576 750 M 428 1033.6 L 422 996 L 403 949 L 381 914 L 359 886" />
|
||||
<glyph unicode="Û" glyph-name="Ucircumflex" horiz-adv-x="580" d="M 69.3 756 L 202 775 L 132 762 L 158 447 L 189 198 L 233 107 L 309 81.9 L 381 101 L 444 145 L 501 258 L 520 362 L 517 740 L 463 743 L 576 750 M 182 804 L 266 1076.4 L 308 957 L 343 820" />
|
||||
<glyph unicode="Ü" glyph-name="Udieresis" horiz-adv-x="580" d="M 69.3 756 L 202 775 L 132 762 L 158 447 L 189 198 L 233 107 L 309 81.9 L 381 101 L 444 145 L 501 258 L 520 362 L 517 740 L 463 743 L 576 750 M 198 935 L 192 888 L 236 888 L 242 932 L 198 935 M 487 969 L 481 922 L 525 922 L 531 966 L 487 969" />
|
||||
<glyph unicode="Ý" glyph-name="Yacute" horiz-adv-x="592" d="M 85 747 L 180 769 L 129 756 L 217 548 L 255 463 L 331 356 L 315 -59.9 L 265 -63 L 220 -69.3 L 315 -59.9 L 387 -63 M 328 359 L 466 561 L 510 643 L 595 788 L 529 803 L 652 772 L 662 765 M 432 1078.2 L 426 1040.4 L 407 993 L 385 958 L 363 930" />
|
||||
<glyph unicode="à" glyph-name="agrave" horiz-adv-x="387" d="M 126 350 L 110 413 L 139 460 L 202 501 L 284 482 L 328 413 L 340 328 L 343 198 L 328 148 L 265 104 L 198 69.3 L 139 59.9 L 91.4 88.2 L 88.2 158 L 113 202 L 183 220 L 271 220 L 296 214 L 334 173 L 346 132 L 350 69.3 L 350 0 L 353 -25.2 L 387 -31.5 L 406 -31.5 L 428 -31.5 L 454 -18.9 M 65.9 749 L 198 648" />
|
||||
<glyph unicode="á" glyph-name="aacute" horiz-adv-x="387" d="M 126 350 L 110 413 L 139 460 L 202 501 L 284 482 L 328 413 L 340 328 L 343 198 L 328 148 L 265 104 L 198 69.3 L 139 59.9 L 91.4 88.2 L 88.2 158 L 113 202 L 183 220 L 271 220 L 296 214 L 334 173 L 346 132 L 350 69.3 L 350 0 L 353 -25.2 L 387 -31.5 L 406 -31.5 L 428 -31.5 L 454 -18.9 M 334 747 L 327 709 L 309 662 L 287 627 L 264 599" />
|
||||
<glyph unicode="â" glyph-name="acircumflex" horiz-adv-x="387" d="M 126 350 L 110 413 L 139 460 L 202 501 L 284 482 L 328 413 L 340 328 L 343 198 L 328 148 L 265 104 L 198 69.3 L 139 59.9 L 91.4 88.2 L 88.2 158 L 113 202 L 183 220 L 271 220 L 296 214 L 334 173 L 346 132 L 350 69.3 L 350 0 L 353 -25.2 L 387 -31.5 L 406 -31.5 L 428 -31.5 L 454 -18.9 M 109 591 L 194 866 L 236 745 L 271 608" />
|
||||
<glyph unicode="ã" glyph-name="atilde" horiz-adv-x="387" d="M 126 350 L 110 413 L 139 460 L 202 501 L 284 482 L 328 413 L 340 328 L 343 198 L 328 148 L 265 104 L 198 69.3 L 139 59.9 L 91.4 88.2 L 88.2 158 L 113 202 L 183 220 L 271 220 L 296 214 L 334 173 L 346 132 L 350 69.3 L 350 0 L 353 -25.2 L 387 -31.5 L 406 -31.5 L 428 -31.5 L 454 -18.9 M 95.1 585 L 130 625 L 168 644 L 218 629 L 272 604 L 328 587 L 368 604 L 403 631" />
|
||||
<glyph unicode="ä" glyph-name="adieresis" horiz-adv-x="387" d="M 126 350 L 110 413 L 139 460 L 202 501 L 284 482 L 328 413 L 340 328 L 343 198 L 328 148 L 265 104 L 198 69.3 L 139 59.9 L 91.4 88.2 L 88.2 158 L 113 202 L 183 220 L 271 220 L 296 214 L 334 173 L 346 132 L 350 69.3 L 350 0 L 353 -25.2 L 387 -31.5 L 406 -31.5 L 428 -31.5 L 454 -18.9 M 120 715 L 114 667 L 158 667 L 164 712 L 120 715 M 413 720 L 406 673 L 450 673 L 457 717 L 413 720" />
|
||||
<glyph unicode="å" glyph-name="aring" horiz-adv-x="387" d="M 126 350 L 110 413 L 139 460 L 202 501 L 284 482 L 328 413 L 340 328 L 343 198 L 328 148 L 265 104 L 198 69.3 L 139 59.9 L 91.4 88.2 L 88.2 158 L 113 202 L 183 220 L 271 220 L 296 214 L 334 173 L 346 132 L 350 69.3 L 350 0 L 353 -25.2 L 387 -31.5 L 406 -31.5 L 428 -31.5 L 454 -18.9 M 274 864 L 259 870 L 217 857 L 191 827 L 179 783 L 181 741 L 200 709 L 235 692 L 271 694 L 307 720 L 320 741 L 330 766 L 329 797 L 318 831 L 306 851 L 291 863 L 275 864" />
|
||||
<glyph unicode="è" glyph-name="egrave" horiz-adv-x="346" d="M 331 44.1 L 293 -9.45 L 224 -31.5 L 151 15.8 L 120 139 L 129 280 L 176 403 L 211 425 L 258 419 L 293 384 L 337 274 L 236 268 L 132 265 M 44.7 765 L 177 664" />
|
||||
<glyph unicode="é" glyph-name="eacute" horiz-adv-x="346" d="M 331 44.1 L 293 -9.45 L 224 -31.5 L 151 15.8 L 120 139 L 129 280 L 176 403 L 211 425 L 258 419 L 293 384 L 337 274 L 236 268 L 132 265 M 340 791 L 334 753 L 315 706 L 293 671 L 271 643" />
|
||||
<glyph unicode="ê" glyph-name="ecircumflex" horiz-adv-x="346" d="M 331 44.1 L 293 -9.45 L 224 -31.5 L 151 15.8 L 120 139 L 129 280 L 176 403 L 211 425 L 258 419 L 293 384 L 337 274 L 236 268 L 132 265 M 107 654 L 198 949 L 243 820 L 281 672" />
|
||||
<glyph unicode="ë" glyph-name="edieresis" horiz-adv-x="346" d="M 331 44.1 L 293 -9.45 L 224 -31.5 L 151 15.8 L 120 139 L 129 280 L 176 403 L 211 425 L 258 419 L 293 384 L 337 274 L 236 268 L 132 265 M 78.3 702 L 72 655 L 116 655 L 122 699 L 78.3 702 M 368 717 L 362 670 L 406 670 L 412 714 L 368 717" />
|
||||
<glyph unicode="ì" glyph-name="igrave" horiz-adv-x="258" d="M 78.8 50.4 L 81.9 50.4 L 243 69.3 L 167 63 L 180 435 L 110 435 M -22.1 767 L 110 666" />
|
||||
<glyph unicode="í" glyph-name="iacute" horiz-adv-x="258" d="M 78.8 50.4 L 81.9 50.4 L 243 69.3 L 167 63 L 180 435 L 110 435 M 280 735 L 274 697 L 255 650 L 233 616 L 211 587" />
|
||||
<glyph unicode="î" glyph-name="icircumflex" horiz-adv-x="258" d="M 78.8 50.4 L 81.9 50.4 L 243 69.3 L 167 63 L 180 435 L 110 435 M 72.6 651 L 165 948 L 210 818 L 248 669" />
|
||||
<glyph unicode="ï" glyph-name="idieresis" horiz-adv-x="258" d="M 78.8 50.4 L 81.9 50.4 L 243 69.3 L 167 63 L 180 435 L 110 435 M 37.3 667 L 31 619 L 75.1 619 L 81.4 663 L 37.3 667 M 302 689 L 296 642 L 340 642 L 346 686 L 302 689" />
|
||||
<glyph unicode="ñ" glyph-name="ntilde" horiz-adv-x="510" d="M 91.4 -50.4 L 224 -31.5 L 167 -37.8 L 164 161 L 180 318 L 186 495 L 158 513 L 78.8 507 M 180 299 L 277 410 L 356 450 L 410 413 L 447 353 L 457 280 L 460 110 L 419 101 L 517 120 M 129 610 L 166 651 L 205 671 L 257 655 L 313 630 L 372 612 L 413 630 L 449 658" />
|
||||
<glyph unicode="ò" glyph-name="ograve" horiz-adv-x="435" d="M 302 472 L 243 485 L 161 457 L 126 391 L 129 299 L 164 239 L 246 198 L 353 233 L 397 312 L 400 406 L 362 457 L 312 457 M 77.6 778 L 210 677" />
|
||||
<glyph unicode="ó" glyph-name="oacute" horiz-adv-x="435" d="M 302 472 L 243 485 L 161 457 L 126 391 L 129 299 L 164 239 L 246 198 L 353 233 L 397 312 L 400 406 L 362 457 L 312 457 M 370 757 L 364 719 L 345 672 L 323 637 L 301 609" />
|
||||
<glyph unicode="ô" glyph-name="ocircumflex" horiz-adv-x="435" d="M 302 472 L 243 485 L 161 457 L 126 391 L 129 299 L 164 239 L 246 198 L 353 233 L 397 312 L 400 406 L 362 457 L 312 457 M 133 614 L 219 892 L 261 770 L 297 631" />
|
||||
<glyph unicode="õ" glyph-name="otilde" horiz-adv-x="435" d="M 302 472 L 243 485 L 161 457 L 126 391 L 129 299 L 164 239 L 246 198 L 353 233 L 397 312 L 400 406 L 362 457 L 312 457 M 113 600 L 149 641 L 188 660 L 240 645 L 296 619 L 355 602 L 396 619 L 433 647" />
|
||||
<glyph unicode="ö" glyph-name="odieresis" horiz-adv-x="435" d= |