Maria Munuera 2012-06-25 12:06:48 -05:00
commit 6d8db3a074
1187 changed files with 39 additions and 223669 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
build/firefox/*
build/opera/*
build/svg-edit-2.6/*
build/svg-edit-2.6-src/*
build/svg-edit-2.6-src.tar.gz
build/svg-edit-2.6.wgt
build/svg-edit-2.6.xpi
build/svg-edit-2.6.zip

View File

@ -85,12 +85,6 @@ $(COMPILED_JS):
compile: $(COMPILED_JS) $(COMPILED_CSS)
release: build/$(PACKAGE)
cd build ; $(ZIP) $(PACKAGE).zip -r $(PACKAGE) ; cd ..
tar -z -c -f build/$(PACKAGE)-src.tar.gz \
--exclude='\.svn' \
--exclude='\.git' \
--exclude='build/*' \
.
deploy:
cp -R build/svg-edit-2.6 ../Method.ac/public

View File

@ -1,2 +0,0 @@
content svg-edit content/
overlay chrome://browser/content/browser.xul chrome://svg-edit/content/svg-edit-overlay.xul

View File

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<link rel="icon" type="image/png" href="images/logo.png"/>
<link rel="stylesheet" href="svg-editor.css" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<title>Browser does not support SVG | SVG-edit</title>
</head>
<body>
<div id="browser-not-supported">
<img style="float:left;padding:10px;" src="images/logo.png" width="48" height="48" alt="SVG-edit logo" /><br />
<p>Sorry, but your browser does not support SVG. Below is a list of alternate browsers and versions that support SVG and SVG-edit (from <a href="http://caniuse.com/#cats=SVG">caniuse.com</a>).</p>
<p>Try the latest version of <a href="http://www.getfirefox.com">Firefox</a>, <a href="http://www.google.com/chrome/">Google Chrome</a>, <a href="http://www.apple.com/safari/download/">Safari</a>, <a href="http://www.opera.com/download/">Opera</a> or <a href="http://windows.microsoft.com/ie9">Internet Explorer<a/>.</p>
<p>If you are unable to install one of these and must use an old version of Internet Explorer, you can install the <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame plugin</a>.</p>
<script type="text/javascript">
var viewportHeight =(window.innerHeight ? window.innerHeight : $(window).height()) - 140;
document.write('<iframe width="100%" height="'+viewportHeight+'" src="http://caniuse.com/#cats=SVG"></iframe>');
</script>
</div>
</body>
</html>

View File

@ -1,180 +0,0 @@
/**
* Package: svgedit.browser
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Jeff Schiller
* Copyright(c) 2010 Alexis Deveria
*/
// Dependencies:
// 1) jQuery (for $.alert())
var svgedit = svgedit || {};
(function() {
if (!svgedit.browser) {
svgedit.browser = {};
}
var supportsSvg_ = (function() {
return !!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect;
})();
svgedit.browser.supportsSvg = function() { return supportsSvg_; }
if(!svgedit.browser.supportsSvg()) {
window.location = "browser-not-supported.html";
}
else{
var svgns = 'http://www.w3.org/2000/svg';
var userAgent = navigator.userAgent;
var svg = document.createElementNS(svgns, 'svg');
// Note: Browser sniffing should only be used if no other detection method is possible
var isOpera_ = !!window.opera;
var isWebkit_ = userAgent.indexOf("AppleWebKit") >= 0;
var isGecko_ = userAgent.indexOf('Gecko/') >= 0;
var isIE_ = userAgent.indexOf('MSIE') >= 0;
var isChrome_ = userAgent.indexOf('Chrome/') >= 0;
var isWindows_ = userAgent.indexOf('Windows') >= 0;
var isMac_ = userAgent.indexOf('Macintosh') >= 0;
var isTouch_ = 'ontouchstart' in window;
var supportsSelectors_ = (function() {
return !!svg.querySelector;
})();
var supportsXpath_ = (function() {
return !!document.evaluate;
})();
// segList functions (for FF1.5 and 2.0)
var supportsPathReplaceItem_ = (function() {
var path = document.createElementNS(svgns, 'path');
path.setAttribute('d','M0,0 10,10');
var seglist = path.pathSegList;
var seg = path.createSVGPathSegLinetoAbs(5,5);
try {
seglist.replaceItem(seg, 0);
return true;
} catch(err) {}
return false;
})();
var supportsPathInsertItemBefore_ = (function() {
var path = document.createElementNS(svgns,'path');
path.setAttribute('d','M0,0 10,10');
var seglist = path.pathSegList;
var seg = path.createSVGPathSegLinetoAbs(5,5);
try {
seglist.insertItemBefore(seg, 0);
return true;
} catch(err) {}
return false;
})();
// text character positioning (for IE9)
var supportsGoodTextCharPos_ = (function() {
var retValue = false;
var svgroot = document.createElementNS(svgns, 'svg');
var svgcontent = document.createElementNS(svgns, 'svg');
document.documentElement.appendChild(svgroot);
svgcontent.setAttribute('x', 5);
svgroot.appendChild(svgcontent);
var text = document.createElementNS(svgns,'text');
text.textContent = 'a';
svgcontent.appendChild(text);
var pos = text.getStartPositionOfChar(0).x;
document.documentElement.removeChild(svgroot);
return (pos === 0);
})();
var supportsPathBBox_ = (function() {
var svgcontent = document.createElementNS(svgns, 'svg');
document.documentElement.appendChild(svgcontent);
var path = document.createElementNS(svgns, 'path');
path.setAttribute('d','M0,0 C0,0 10,10 10,0');
svgcontent.appendChild(path);
var bbox = path.getBBox();
document.documentElement.removeChild(svgcontent);
return (bbox.height > 4 && bbox.height < 5);
})();
// Support for correct bbox sizing on groups with horizontal/vertical lines
var supportsHVLineContainerBBox_ = (function() {
var svgcontent = document.createElementNS(svgns, 'svg');
document.documentElement.appendChild(svgcontent);
var path = document.createElementNS(svgns, 'path');
path.setAttribute('d','M0,0 10,0');
var path2 = document.createElementNS(svgns, 'path');
path2.setAttribute('d','M5,0 15,0');
var g = document.createElementNS(svgns, 'g');
g.appendChild(path);
g.appendChild(path2);
svgcontent.appendChild(g);
var bbox = g.getBBox();
document.documentElement.removeChild(svgcontent);
// Webkit gives 0, FF gives 10, Opera (correctly) gives 15
return (bbox.width == 15);
})();
var supportsEditableText_ = (function() {
// TODO: Find better way to check support for this
return isOpera_;
})();
var supportsGoodDecimals_ = (function() {
// Correct decimals on clone attributes (Opera < 10.5/win/non-en)
var rect = document.createElementNS(svgns, 'rect');
rect.setAttribute('x',.1);
var crect = rect.cloneNode(false);
var retValue = (crect.getAttribute('x').indexOf(',') == -1);
if(!retValue) {
$.alert("NOTE: This version of Opera is known to contain bugs in SVG-edit.\n\
Please upgrade to the <a href='http://opera.com'>latest version</a> in which the problems have been fixed.");
}
return retValue;
})();
var supportsNonScalingStroke_ = (function() {
var rect = document.createElementNS(svgns, 'rect');
rect.setAttribute('style','vector-effect:non-scaling-stroke');
return rect.style.vectorEffect === 'non-scaling-stroke';
})();
var supportsNativeSVGTransformLists_ = (function() {
var rect = document.createElementNS(svgns, 'rect');
var rxform = rect.transform.baseVal;
var t1 = svg.createSVGTransform();
rxform.appendItem(t1);
return rxform.getItem(0) == t1;
})();
// Public API
svgedit.browser.isOpera = function() { return isOpera_; }
svgedit.browser.isWebkit = function() { return isWebkit_; }
svgedit.browser.isGecko = function() { return isGecko_; }
svgedit.browser.isIE = function() { return isIE_; }
svgedit.browser.isChrome = function() { return isChrome_; }
svgedit.browser.isWindows = function() { return isWindows_; }
svgedit.browser.isMac = function() { return isMac_; }
svgedit.browser.isTouch = function() { return isTouch_; }
svgedit.browser.supportsSelectors = function() { return supportsSelectors_; }
svgedit.browser.supportsXpath = function() { return supportsXpath_; }
svgedit.browser.supportsPathReplaceItem = function() { return supportsPathReplaceItem_; }
svgedit.browser.supportsPathInsertItemBefore = function() { return supportsPathInsertItemBefore_; }
svgedit.browser.supportsPathBBox = function() { return supportsPathBBox_; }
svgedit.browser.supportsHVLineContainerBBox = function() { return supportsHVLineContainerBBox_; }
svgedit.browser.supportsGoodTextCharPos = function() { return supportsGoodTextCharPos_; }
svgedit.browser.supportsEditableText = function() { return supportsEditableText_; }
svgedit.browser.supportsGoodDecimals = function() { return supportsGoodDecimals_; }
svgedit.browser.supportsNonScalingStroke = function() { return supportsNonScalingStroke_; }
svgedit.browser.supportsNativeTransformLists = function() { return supportsNativeSVGTransformLists_; }
}
})();

File diff suppressed because it is too large Load Diff

View File

@ -1,287 +0,0 @@
/**
* A class to parse color values
* @author Stoyan Stefanov <sstoo@gmail.com>
* @link http://www.phpied.com/rgb-color-parser-in-javascript/
* @license Use it if you like it
*/
function RGBColor(color_string)
{
this.ok = false;
// strip any leading #
if (color_string.charAt(0) == '#') { // remove # if any
color_string = color_string.substr(1,6);
}
color_string = color_string.replace(/ /g,'');
color_string = color_string.toLowerCase();
// before getting into regexps, try simple matches
// and overwrite the input
var simple_colors = {
aliceblue: 'f0f8ff',
antiquewhite: 'faebd7',
aqua: '00ffff',
aquamarine: '7fffd4',
azure: 'f0ffff',
beige: 'f5f5dc',
bisque: 'ffe4c4',
black: '000000',
blanchedalmond: 'ffebcd',
blue: '0000ff',
blueviolet: '8a2be2',
brown: 'a52a2a',
burlywood: 'deb887',
cadetblue: '5f9ea0',
chartreuse: '7fff00',
chocolate: 'd2691e',
coral: 'ff7f50',
cornflowerblue: '6495ed',
cornsilk: 'fff8dc',
crimson: 'dc143c',
cyan: '00ffff',
darkblue: '00008b',
darkcyan: '008b8b',
darkgoldenrod: 'b8860b',
darkgray: 'a9a9a9',
darkgreen: '006400',
darkkhaki: 'bdb76b',
darkmagenta: '8b008b',
darkolivegreen: '556b2f',
darkorange: 'ff8c00',
darkorchid: '9932cc',
darkred: '8b0000',
darksalmon: 'e9967a',
darkseagreen: '8fbc8f',
darkslateblue: '483d8b',
darkslategray: '2f4f4f',
darkturquoise: '00ced1',
darkviolet: '9400d3',
deeppink: 'ff1493',
deepskyblue: '00bfff',
dimgray: '696969',
dodgerblue: '1e90ff',
feldspar: 'd19275',
firebrick: 'b22222',
floralwhite: 'fffaf0',
forestgreen: '228b22',
fuchsia: 'ff00ff',
gainsboro: 'dcdcdc',
ghostwhite: 'f8f8ff',
gold: 'ffd700',
goldenrod: 'daa520',
gray: '808080',
green: '008000',
greenyellow: 'adff2f',
honeydew: 'f0fff0',
hotpink: 'ff69b4',
indianred : 'cd5c5c',
indigo : '4b0082',
ivory: 'fffff0',
khaki: 'f0e68c',
lavender: 'e6e6fa',
lavenderblush: 'fff0f5',
lawngreen: '7cfc00',
lemonchiffon: 'fffacd',
lightblue: 'add8e6',
lightcoral: 'f08080',
lightcyan: 'e0ffff',
lightgoldenrodyellow: 'fafad2',
lightgrey: 'd3d3d3',
lightgreen: '90ee90',
lightpink: 'ffb6c1',
lightsalmon: 'ffa07a',
lightseagreen: '20b2aa',
lightskyblue: '87cefa',
lightslateblue: '8470ff',
lightslategray: '778899',
lightsteelblue: 'b0c4de',
lightyellow: 'ffffe0',
lime: '00ff00',
limegreen: '32cd32',
linen: 'faf0e6',
magenta: 'ff00ff',
maroon: '800000',
mediumaquamarine: '66cdaa',
mediumblue: '0000cd',
mediumorchid: 'ba55d3',
mediumpurple: '9370d8',
mediumseagreen: '3cb371',
mediumslateblue: '7b68ee',
mediumspringgreen: '00fa9a',
mediumturquoise: '48d1cc',
mediumvioletred: 'c71585',
midnightblue: '191970',
mintcream: 'f5fffa',
mistyrose: 'ffe4e1',
moccasin: 'ffe4b5',
navajowhite: 'ffdead',
navy: '000080',
oldlace: 'fdf5e6',
olive: '808000',
olivedrab: '6b8e23',
orange: 'ffa500',
orangered: 'ff4500',
orchid: 'da70d6',
palegoldenrod: 'eee8aa',
palegreen: '98fb98',
paleturquoise: 'afeeee',
palevioletred: 'd87093',
papayawhip: 'ffefd5',
peachpuff: 'ffdab9',
peru: 'cd853f',
pink: 'ffc0cb',
plum: 'dda0dd',
powderblue: 'b0e0e6',
purple: '800080',
red: 'ff0000',
rosybrown: 'bc8f8f',
royalblue: '4169e1',
saddlebrown: '8b4513',
salmon: 'fa8072',
sandybrown: 'f4a460',
seagreen: '2e8b57',
seashell: 'fff5ee',
sienna: 'a0522d',
silver: 'c0c0c0',
skyblue: '87ceeb',
slateblue: '6a5acd',
slategray: '708090',
snow: 'fffafa',
springgreen: '00ff7f',
steelblue: '4682b4',
tan: 'd2b48c',
teal: '008080',
thistle: 'd8bfd8',
tomato: 'ff6347',
turquoise: '40e0d0',
violet: 'ee82ee',
violetred: 'd02090',
wheat: 'f5deb3',
white: 'ffffff',
whitesmoke: 'f5f5f5',
yellow: 'ffff00',
yellowgreen: '9acd32'
};
for (var key in simple_colors) {
if (color_string == key) {
color_string = simple_colors[key];
}
}
// emd of simple type-in colors
// array of color definition objects
var color_defs = [
{
re: /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,
example: ['rgb(123, 234, 45)', 'rgb(255,234,245)'],
process: function (bits){
return [
parseInt(bits[1]),
parseInt(bits[2]),
parseInt(bits[3])
];
}
},
{
re: /^(\w{2})(\w{2})(\w{2})$/,
example: ['#00ff00', '336699'],
process: function (bits){
return [
parseInt(bits[1], 16),
parseInt(bits[2], 16),
parseInt(bits[3], 16)
];
}
},
{
re: /^(\w{1})(\w{1})(\w{1})$/,
example: ['#fb0', 'f0f'],
process: function (bits){
return [
parseInt(bits[1] + bits[1], 16),
parseInt(bits[2] + bits[2], 16),
parseInt(bits[3] + bits[3], 16)
];
}
}
];
// search through the definitions to find a match
for (var i = 0; i < color_defs.length; i++) {
var re = color_defs[i].re;
var processor = color_defs[i].process;
var bits = re.exec(color_string);
if (bits) {
channels = processor(bits);
this.r = channels[0];
this.g = channels[1];
this.b = channels[2];
this.ok = true;
}
}
// validate/cleanup values
this.r = (this.r < 0 || isNaN(this.r)) ? 0 : ((this.r > 255) ? 255 : this.r);
this.g = (this.g < 0 || isNaN(this.g)) ? 0 : ((this.g > 255) ? 255 : this.g);
this.b = (this.b < 0 || isNaN(this.b)) ? 0 : ((this.b > 255) ? 255 : this.b);
// some getters
this.toRGB = function () {
return 'rgb(' + this.r + ', ' + this.g + ', ' + this.b + ')';
}
this.toHex = function () {
var r = this.r.toString(16);
var g = this.g.toString(16);
var b = this.b.toString(16);
if (r.length == 1) r = '0' + r;
if (g.length == 1) g = '0' + g;
if (b.length == 1) b = '0' + b;
return '#' + r + g + b;
}
// help
this.getHelpXML = function () {
var examples = new Array();
// add regexps
for (var i = 0; i < color_defs.length; i++) {
var example = color_defs[i].example;
for (var j = 0; j < example.length; j++) {
examples[examples.length] = example[j];
}
}
// add type-in colors
for (var sc in simple_colors) {
examples[examples.length] = sc;
}
var xml = document.createElement('ul');
xml.setAttribute('id', 'rgbcolor-examples');
for (var i = 0; i < examples.length; i++) {
try {
var list_item = document.createElement('li');
var list_color = new RGBColor(examples[i]);
var example_div = document.createElement('div');
example_div.style.cssText =
'margin: 3px; '
+ 'border: 1px solid black; '
+ 'background:' + list_color.toHex() + '; '
+ 'color:' + list_color.toHex()
;
example_div.appendChild(document.createTextNode('test'));
var list_item_value = document.createTextNode(
' ' + examples[i] + ' -> ' + list_color.toRGB() + ' -> ' + list_color.toHex()
);
list_item.appendChild(example_div);
list_item.appendChild(list_item_value);
xml.appendChild(list_item);
} catch(e){}
}
return xml;
}
}

View File

@ -1,68 +0,0 @@
/**
* Package: svgedit.contextmenu
*
* Licensed under the Apache License, Version 2
*
* Author: Adam Bender
*/
// Dependencies:
// 1) jQuery (for dom injection of context menus)\
var svgedit = svgedit || {};
(function() {
var self = this;
if (!svgedit.contextmenu) {
svgedit.contextmenu = {};
}
self.contextMenuExtensions = {}
var addContextMenuItem = function(menuItem) {
// menuItem: {id, label, shortcut, action}
if (!menuItemIsValid(menuItem)) {
console
.error("Menu items must be defined and have at least properties: id, label, action, where action must be a function");
return;
}
if (menuItem.id in self.contextMenuExtensions) {
console.error('Cannot add extension "' + menuItem.id
+ '", an extension by that name already exists"');
return;
}
// Register menuItem action, see below for deferred menu dom injection
console.log("Registed contextmenu item: {id:"+ menuItem.id+", label:"+menuItem.label+"}");
self.contextMenuExtensions[menuItem.id] = menuItem;
//TODO: Need to consider how to handle custom enable/disable behavior
}
var hasCustomHandler = function(handlerKey) {
return self.contextMenuExtensions[handlerKey] && true;
}
var getCustomHandler = function(handlerKey) {
return self.contextMenuExtensions[handlerKey].action;
}
var injectExtendedContextMenuItemIntoDom = function(menuItem) {
if (Object.keys(self.contextMenuExtensions).length == 0) {
// all menuItems appear at the bottom of the menu in their own container.
// if this is the first extension menu we need to add the separator.
$("#cmenu_canvas").append("<li class='separator'>");
}
var shortcut = menuItem.shortcut || "";
$("#cmenu_canvas").append("<li class='disabled'><a href='#" + menuItem.id + "'>"
+ menuItem.label + "<span class='shortcut'>"
+ shortcut + "</span></a></li>");
}
var menuItemIsValid = function(menuItem) {
return menuItem && menuItem.id && menuItem.label && menuItem.action && typeof menuItem.action == 'function';
}
// Defer injection to wait out initial menu processing. This probably goes away once all context
// menu behavior is brought here.
svgEditor.ready(function() {
for (menuItem in contextMenuExtensions) {
injectExtendedContextMenuItemIntoDom(contextMenuExtensions[menuItem]);
}
});
svgedit.contextmenu.resetCustomMenus = function(){self.contextMenuExtensions = {}}
svgedit.contextmenu.add = addContextMenuItem;
svgedit.contextmenu.hasCustomHandler = hasCustomHandler;
svgedit.contextmenu.getCustomHandler = getCustomHandler;
})();

View File

@ -1,203 +0,0 @@
// jQuery Context Menu Plugin
//
// Version 1.01
//
// Cory S.N. LaViska
// A Beautiful Site (http://abeautifulsite.net/)
// Modified by Alexis Deveria
//
// More info: http://abeautifulsite.net/2008/09/jquery-context-menu-plugin/
//
// Terms of Use
//
// This plugin is dual-licensed under the GNU General Public License
// and the MIT License and is copyright A Beautiful Site, LLC.
//
if(jQuery)( function() {
var win = $(window);
var doc = $(document);
$.extend($.fn, {
contextMenu: function(o, callback) {
// Defaults
if( o.menu == undefined ) return false;
if( o.inSpeed == undefined ) o.inSpeed = 150;
if( o.outSpeed == undefined ) o.outSpeed = 75;
// 0 needs to be -1 for expected results (no fade)
if( o.inSpeed == 0 ) o.inSpeed = -1;
if( o.outSpeed == 0 ) o.outSpeed = -1;
// Loop each context menu
$(this).each( function() {
var el = $(this);
var offset = $(el).offset();
var menu = $('#' + o.menu);
// Add contextMenu class
menu.addClass('contextMenu');
// Simulate a true right click
$(this).bind( "mousedown", function(e) {
var evt = e;
$(this).mouseup( function(e) {
var srcElement = $(this);
srcElement.unbind('mouseup');
$(".contextMenu").hide();
if( evt.button === 2 || o.allowLeft || (evt.ctrlKey && svgedit.browser.isMac()) ) {
e.stopPropagation();
// Get this context menu
if( el.hasClass('disabled') ) return false;
// Detect mouse position
var d = {}, x = e.pageX, y = e.pageY;
var x_off = win.width() - menu.width(),
y_off = win.height() - menu.height();
if(x > x_off - 15) x = x_off-15;
if(y > y_off - 30) y = y_off-30; // 30 is needed to prevent scrollbars in FF
// Show the menu
doc.unbind('click');
menu.css({ top: y, left: x }).fadeIn(o.inSpeed);
// Hover events
menu.find('A').mouseover( function() {
menu.find('LI.hover').removeClass('hover');
$(this).parent().addClass('hover');
}).mouseout( function() {
menu.find('LI.hover').removeClass('hover');
});
// Keyboard
doc.keypress( function(e) {
switch( e.keyCode ) {
case 38: // up
if( !menu.find('LI.hover').length ) {
menu.find('LI:last').addClass('hover');
} else {
menu.find('LI.hover').removeClass('hover').prevAll('LI:not(.disabled)').eq(0).addClass('hover');
if( !menu.find('LI.hover').length ) menu.find('LI:last').addClass('hover');
}
break;
case 40: // down
if( menu.find('LI.hover').length == 0 ) {
menu.find('LI:first').addClass('hover');
} else {
menu.find('LI.hover').removeClass('hover').nextAll('LI:not(.disabled)').eq(0).addClass('hover');
if( !menu.find('LI.hover').length ) menu.find('LI:first').addClass('hover');
}
break;
case 13: // enter
menu.find('LI.hover A').trigger('click');
break;
case 27: // esc
doc.trigger('click');
break
}
});
// When items are selected
menu.find('A').unbind('mouseup');
menu.find('LI:not(.disabled) A').mouseup( function() {
doc.unbind('click').unbind('keypress');
$(".contextMenu").hide();
// Callback
if( callback ) callback( $(this).attr('href').substr(1), $(srcElement), {x: x - offset.left, y: y - offset.top, docX: x, docY: y} );
return false;
});
// Hide bindings
setTimeout( function() { // Delay for Mozilla
doc.click( function() {
doc.unbind('click').unbind('keypress');
menu.fadeOut(o.outSpeed);
return false;
});
}, 0);
}
});
});
// Disable text selection
if( $.browser.mozilla ) {
$('#' + o.menu).each( function() { $(this).css({ 'MozUserSelect' : 'none' }); });
} else if( $.browser.msie ) {
$('#' + o.menu).each( function() { $(this).bind('selectstart.disableTextSelect', function() { return false; }); });
} else {
$('#' + o.menu).each(function() { $(this).bind('mousedown.disableTextSelect', function() { return false; }); });
}
// Disable browser context menu (requires both selectors to work in IE/Safari + FF/Chrome)
$(el).add($('UL.contextMenu')).bind('contextmenu', function() { return false; });
});
return $(this);
},
// Disable context menu items on the fly
disableContextMenuItems: function(o) {
if( o == undefined ) {
// Disable all
$(this).find('LI').addClass('disabled');
return( $(this) );
}
$(this).each( function() {
if( o != undefined ) {
var d = o.split(',');
for( var i = 0; i < d.length; i++ ) {
$(this).find('A[href="' + d[i] + '"]').parent().addClass('disabled');
}
}
});
return( $(this) );
},
// Enable context menu items on the fly
enableContextMenuItems: function(o) {
if( o == undefined ) {
// Enable all
$(this).find('LI.disabled').removeClass('disabled');
return( $(this) );
}
$(this).each( function() {
if( o != undefined ) {
var d = o.split(',');
for( var i = 0; i < d.length; i++ ) {
$(this).find('A[href="' + d[i] + '"]').parent().removeClass('disabled');
}
}
});
return( $(this) );
},
// Disable context menu(s)
disableContextMenu: function() {
$(this).each( function() {
$(this).addClass('disabled');
});
return( $(this) );
},
// Enable context menu(s)
enableContextMenu: function() {
$(this).each( function() {
$(this).removeClass('disabled');
});
return( $(this) );
},
// Destroy context menu(s)
destroyContextMenu: function() {
// Destroy specified context menus
$(this).each( function() {
// Disable action
$(this).unbind('mousedown').unbind('mouseup');
});
return( $(this) );
}
});
})(jQuery);

View File

@ -1,47 +0,0 @@
;(function($) {
var methods = {
init : function(options) {
return this.each(function() {
var settings = {
};
if(options) {
$.extend(settings, options);
}
var plugin = this;
var $plugin = $(this);
$plugin.settings = settings;
this.privateMethod = function() {
}
$plugin.data("example", {});
// Plug-in code here...
});
},
publicFunction : function() {
}
};
$.fn.example = function(method) {
if(methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
}
else if(typeof method === 'object' || !method) {
return methods.init.apply(this, arguments);
}
else {
$.error("Method " + method + " does not exist on jQuery.example");
}
};
})(jQuery);

View File

@ -1,528 +0,0 @@
/**
* Package: svgedit.draw
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2011 Jeff Schiller
*/
// Dependencies:
// 1) jQuery
// 2) browser.js
// 3) svgutils.js
var svgedit = svgedit || {};
(function() {
if (!svgedit.draw) {
svgedit.draw = {};
}
var svg_ns = "http://www.w3.org/2000/svg";
var se_ns = "http://svg-edit.googlecode.com";
var xmlns_ns = "http://www.w3.org/2000/xmlns/";
var visElems = 'a,circle,ellipse,foreignObject,g,image,line,path,polygon,polyline,rect,svg,text,tspan,use';
var visElems_arr = visElems.split(',');
var RandomizeModes = {
LET_DOCUMENT_DECIDE: 0,
ALWAYS_RANDOMIZE: 1,
NEVER_RANDOMIZE: 2
};
var randomize_ids = RandomizeModes.LET_DOCUMENT_DECIDE;
/**
* This class encapsulates the concept of a layer in the drawing
* @param name {String} Layer name
* @param child {SVGGElement} Layer SVG group.
*/
svgedit.draw.Layer = function(name, group) {
this.name_ = name;
this.group_ = group;
};
svgedit.draw.Layer.prototype.getName = function() {
return this.name_;
};
svgedit.draw.Layer.prototype.getGroup = function() {
return this.group_;
};
// Called to ensure that drawings will or will not have randomized ids.
// The current_drawing will have its nonce set if it doesn't already.
//
// Params:
// enableRandomization - flag indicating if documents should have randomized ids
svgedit.draw.randomizeIds = function(enableRandomization, current_drawing) {
randomize_ids = enableRandomization == false ?
RandomizeModes.NEVER_RANDOMIZE :
RandomizeModes.ALWAYS_RANDOMIZE;
if (randomize_ids == RandomizeModes.ALWAYS_RANDOMIZE && !current_drawing.getNonce()) {
current_drawing.setNonce(Math.floor(Math.random() * 100001));
} else if (randomize_ids == RandomizeModes.NEVER_RANDOMIZE && current_drawing.getNonce()) {
current_drawing.clearNonce();
}
};
/**
* This class encapsulates the concept of a SVG-edit drawing
*
* @param svgElem {SVGSVGElement} The SVG DOM Element that this JS object
* encapsulates. If the svgElem has a se:nonce attribute on it, then
* IDs will use the nonce as they are generated.
* @param opt_idPrefix {String} The ID prefix to use. Defaults to "svg_"
* if not specified.
*/
svgedit.draw.Drawing = function(svgElem, opt_idPrefix) {
if (!svgElem || !svgElem.tagName || !svgElem.namespaceURI ||
svgElem.tagName != 'svg' || svgElem.namespaceURI != svg_ns) {
throw "Error: svgedit.draw.Drawing instance initialized without a <svg> element";
}
/**
* The SVG DOM Element that represents this drawing.
* @type {SVGSVGElement}
*/
this.svgElem_ = svgElem;
/**
* The latest object number used in this drawing.
* @type {number}
*/
this.obj_num = 0;
/**
* The prefix to prepend to each element id in the drawing.
* @type {String}
*/
this.idPrefix = opt_idPrefix || "svg_";
/**
* An array of released element ids to immediately reuse.
* @type {Array.<number>}
*/
this.releasedNums = [];
/**
* The z-ordered array of tuples containing layer names and <g> elements.
* The first layer is the one at the bottom of the rendering.
* TODO: Turn this into an Array.<Layer>
* @type {Array.<Array.<String, SVGGElement>>}
*/
this.all_layers = [];
/**
* The current layer being used.
* TODO: Make this a {Layer}.
* @type {SVGGElement}
*/
this.current_layer = null;
/**
* The nonce to use to uniquely identify elements across drawings.
* @type {!String}
*/
this.nonce_ = "";
var n = this.svgElem_.getAttributeNS(se_ns, 'nonce');
// If already set in the DOM, use the nonce throughout the document
// else, if randomizeIds(true) has been called, create and set the nonce.
if (!!n && randomize_ids != RandomizeModes.NEVER_RANDOMIZE) {
this.nonce_ = n;
} else if (randomize_ids == RandomizeModes.ALWAYS_RANDOMIZE) {
this.setNonce(Math.floor(Math.random() * 100001));
}
};
svgedit.draw.Drawing.prototype.getElem_ = function(id) {
if(this.svgElem_.querySelector) {
// querySelector lookup
return this.svgElem_.querySelector('#'+id);
} else {
// jQuery lookup: twice as slow as xpath in FF
return $(this.svgElem_).find('[id=' + id + ']')[0];
}
};
svgedit.draw.Drawing.prototype.getSvgElem = function() {
return this.svgElem_;
};
svgedit.draw.Drawing.prototype.getNonce = function() {
return this.nonce_;
};
svgedit.draw.Drawing.prototype.setNonce = function(n) {
this.svgElem_.setAttributeNS(xmlns_ns, 'xmlns:se', se_ns);
this.svgElem_.setAttributeNS(se_ns, 'se:nonce', n);
this.nonce_ = n;
};
svgedit.draw.Drawing.prototype.clearNonce = function() {
// We deliberately leave any se:nonce attributes alone,
// we just don't use it to randomize ids.
this.nonce_ = "";
};
/**
* Returns the latest object id as a string.
* @return {String} The latest object Id.
*/
svgedit.draw.Drawing.prototype.getId = function() {
return this.nonce_ ?
this.idPrefix + this.nonce_ +'_' + this.obj_num :
this.idPrefix + this.obj_num;
};
/**
* Returns the next object Id as a string.
* @return {String} The next object Id to use.
*/
svgedit.draw.Drawing.prototype.getNextId = function() {
var oldObjNum = this.obj_num;
var restoreOldObjNum = false;
// If there are any released numbers in the release stack,
// use the last one instead of the next obj_num.
// We need to temporarily use obj_num as that is what getId() depends on.
if (this.releasedNums.length > 0) {
this.obj_num = this.releasedNums.pop();
restoreOldObjNum = true;
} else {
// If we are not using a released id, then increment the obj_num.
this.obj_num++;
}
// Ensure the ID does not exist.
var id = this.getId();
while (this.getElem_(id)) {
if (restoreOldObjNum) {
this.obj_num = oldObjNum;
restoreOldObjNum = false;
}
this.obj_num++;
id = this.getId();
}
// Restore the old object number if required.
if (restoreOldObjNum) {
this.obj_num = oldObjNum;
}
return id;
};
// Function: svgedit.draw.Drawing.releaseId
// Releases the object Id, letting it be used as the next id in getNextId().
// This method DOES NOT remove any elements from the DOM, it is expected
// that client code will do this.
//
// Parameters:
// id - The id to release.
//
// Returns:
// True if the id was valid to be released, false otherwise.
svgedit.draw.Drawing.prototype.releaseId = function(id) {
// confirm if this is a valid id for this Document, else return false
var front = this.idPrefix + (this.nonce_ ? this.nonce_ +'_' : '');
if (typeof id != typeof '' || id.indexOf(front) != 0) {
return false;
}
// extract the obj_num of this id
var num = parseInt(id.substr(front.length));
// if we didn't get a positive number or we already released this number
// then return false.
if (typeof num != typeof 1 || num <= 0 || this.releasedNums.indexOf(num) != -1) {
return false;
}
// push the released number into the released queue
this.releasedNums.push(num);
return true;
};
// Function: svgedit.draw.Drawing.getNumLayers
// Returns the number of layers in the current drawing.
//
// Returns:
// The number of layers in the current drawing.
svgedit.draw.Drawing.prototype.getNumLayers = function() {
return this.all_layers.length;
};
// Function: svgedit.draw.Drawing.hasLayer
// Check if layer with given name already exists
svgedit.draw.Drawing.prototype.hasLayer = function(name) {
for(var i = 0; i < this.getNumLayers(); i++) {
if(this.all_layers[i][0] == name) return true;
}
return false;
};
// Function: svgedit.draw.Drawing.getLayerName
// Returns the name of the ith layer. If the index is out of range, an empty string is returned.
//
// Parameters:
// i - the zero-based index of the layer you are querying.
//
// Returns:
// The name of the ith layer
svgedit.draw.Drawing.prototype.getLayerName = function(i) {
if (i >= 0 && i < this.getNumLayers()) {
return this.all_layers[i][0];
}
return "";
};
// Function: svgedit.draw.Drawing.getCurrentLayer
// Returns:
// The SVGGElement representing the current layer.
svgedit.draw.Drawing.prototype.getCurrentLayer = function() {
return this.current_layer;
};
// Function: getCurrentLayerName
// Returns the name of the currently selected layer. If an error occurs, an empty string
// is returned.
//
// Returns:
// The name of the currently active layer.
svgedit.draw.Drawing.prototype.getCurrentLayerName = function() {
for (var i = 0; i < this.getNumLayers(); ++i) {
if (this.all_layers[i][1] == this.current_layer) {
return this.getLayerName(i);
}
}
return "";
};
// Function: setCurrentLayer
// Sets the current layer. If the name is not a valid layer name, then this function returns
// false. Otherwise it returns true. This is not an undo-able action.
//
// Parameters:
// name - the name of the layer you want to switch to.
//
// Returns:
// true if the current layer was switched, otherwise false
svgedit.draw.Drawing.prototype.setCurrentLayer = function(name) {
for (var i = 0; i < this.getNumLayers(); ++i) {
if (name == this.getLayerName(i)) {
if (this.current_layer != this.all_layers[i][1]) {
this.current_layer.setAttribute("style", "pointer-events:none");
this.current_layer = this.all_layers[i][1];
this.current_layer.setAttribute("style", "pointer-events:all");
}
return true;
}
}
return false;
};
// Function: svgedit.draw.Drawing.deleteCurrentLayer
// Deletes the current layer from the drawing and then clears the selection. This function
// then calls the 'changed' handler. This is an undoable action.
// Returns:
// The SVGGElement of the layer removed or null.
svgedit.draw.Drawing.prototype.deleteCurrentLayer = function() {
if (this.current_layer && this.getNumLayers() > 1) {
// actually delete from the DOM and return it
var parent = this.current_layer.parentNode;
var nextSibling = this.current_layer.nextSibling;
var oldLayerGroup = parent.removeChild(this.current_layer);
this.identifyLayers();
return oldLayerGroup;
}
return null;
};
// Function: svgedit.draw.Drawing.identifyLayers
// Updates layer system and sets the current layer to the
// top-most layer (last <g> child of this drawing).
svgedit.draw.Drawing.prototype.identifyLayers = function() {
this.all_layers = [];
var numchildren = this.svgElem_.childNodes.length;
// loop through all children of SVG element
var orphans = [], layernames = [];
var a_layer = null;
var childgroups = false;
for (var i = 0; i < numchildren; ++i) {
var child = this.svgElem_.childNodes.item(i);
// for each g, find its layer name
if (child && child.nodeType == 1) {
if (child.tagName == "g") {
childgroups = true;
var name = $("title",child).text();
// Hack for Opera 10.60
if(!name && svgedit.browser.isOpera() && child.querySelectorAll) {
name = $(child.querySelectorAll('title')).text();
}
// store layer and name in global variable
if (name) {
layernames.push(name);
this.all_layers.push( [name,child] );
a_layer = child;
svgedit.utilities.walkTree(child, function(e){e.setAttribute("style", "pointer-events:inherit");});
a_layer.setAttribute("style", "pointer-events:none");
}
// if group did not have a name, it is an orphan
else {
orphans.push(child);
}
}
// if child has is "visible" (i.e. not a <title> or <defs> element), then it is an orphan
else if(~visElems_arr.indexOf(child.nodeName)) {
var bb = svgedit.utilities.getBBox(child);
orphans.push(child);
}
}
}
// create a new layer and add all the orphans to it
var svgdoc = this.svgElem_.ownerDocument;
if (orphans.length > 0 || !childgroups) {
var i = 1;
// TODO(codedread): What about internationalization of "Layer"?
while (layernames.indexOf(("Layer " + i)) >= 0) { i++; }
var newname = "Layer " + i;
a_layer = svgdoc.createElementNS(svg_ns, "g");
var layer_title = svgdoc.createElementNS(svg_ns, "title");
layer_title.textContent = newname;
a_layer.appendChild(layer_title);
for (var j = 0; j < orphans.length; ++j) {
a_layer.appendChild(orphans[j]);
}
this.svgElem_.appendChild(a_layer);
this.all_layers.push( [newname, a_layer] );
}
svgedit.utilities.walkTree(a_layer, function(e){e.setAttribute("style","pointer-events:inherit");});
this.current_layer = a_layer;
this.current_layer.setAttribute("style","pointer-events:all");
};
// Function: svgedit.draw.Drawing.createLayer
// Creates a new top-level layer in the drawing with the given name and
// sets the current layer to it.
//
// Parameters:
// name - The given name
//
// Returns:
// The SVGGElement of the new layer, which is also the current layer
// of this drawing.
svgedit.draw.Drawing.prototype.createLayer = function(name) {
var svgdoc = this.svgElem_.ownerDocument;
var new_layer = svgdoc.createElementNS(svg_ns, "g");
var layer_title = svgdoc.createElementNS(svg_ns, "title");
layer_title.textContent = name;
new_layer.appendChild(layer_title);
this.svgElem_.appendChild(new_layer);
this.identifyLayers();
return new_layer;
};
// Function: svgedit.draw.Drawing.getLayerVisibility
// Returns whether the layer is visible. If the layer name is not valid, then this function
// returns false.
//
// Parameters:
// layername - the name of the layer which you want to query.
//
// Returns:
// The visibility state of the layer, or false if the layer name was invalid.
svgedit.draw.Drawing.prototype.getLayerVisibility = function(layername) {
// find the layer
var layer = null;
for (var i = 0; i < this.getNumLayers(); ++i) {
if (this.getLayerName(i) == layername) {
layer = this.all_layers[i][1];
break;
}
}
if (!layer) return false;
return (layer.getAttribute('display') != 'none');
};
// Function: svgedit.draw.Drawing.setLayerVisibility
// Sets the visibility of the layer. If the layer name is not valid, this function return
// false, otherwise it returns true. This is an undo-able action.
//
// Parameters:
// layername - the name of the layer to change the visibility
// bVisible - true/false, whether the layer should be visible
//
// Returns:
// The SVGGElement representing the layer if the layername was valid, otherwise null.
svgedit.draw.Drawing.prototype.setLayerVisibility = function(layername, bVisible) {
if (typeof bVisible != typeof true) {
return null;
}
// find the layer
var layer = null;
for (var i = 0; i < this.getNumLayers(); ++i) {
if (this.getLayerName(i) == layername) {
layer = this.all_layers[i][1];
break;
}
}
if (!layer) return null;
var oldDisplay = layer.getAttribute("display");
if (!oldDisplay) oldDisplay = "inline";
layer.setAttribute("display", bVisible ? "inline" : "none");
return layer;
};
// Function: svgedit.draw.Drawing.getLayerOpacity
// Returns the opacity of the given layer. If the input name is not a layer, null is returned.
//
// Parameters:
// layername - name of the layer on which to get the opacity
//
// Returns:
// The opacity value of the given layer. This will be a value between 0.0 and 1.0, or null
// if layername is not a valid layer
svgedit.draw.Drawing.prototype.getLayerOpacity = function(layername) {
for (var i = 0; i < this.getNumLayers(); ++i) {
if (this.getLayerName(i) == layername) {
var g = this.all_layers[i][1];
var opacity = g.getAttribute('opacity');
if (!opacity) {
opacity = '1.0';
}
return parseFloat(opacity);
}
}
return null;
};
// Function: svgedit.draw.Drawing.setLayerOpacity
// Sets the opacity of the given layer. If the input name is not a layer, nothing happens.
// If opacity is not a value between 0.0 and 1.0, then nothing happens.
//
// Parameters:
// layername - name of the layer on which to set the opacity
// opacity - a float value in the range 0.0-1.0
svgedit.draw.Drawing.prototype.setLayerOpacity = function(layername, opacity) {
if (typeof opacity != typeof 1.0 || opacity < 0.0 || opacity > 1.0) {
return;
}
for (var i = 0; i < this.getNumLayers(); ++i) {
if (this.getLayerName(i) == layername) {
var g = this.all_layers[i][1];
g.setAttribute("opacity", opacity);
break;
}
}
};
})();

View File

@ -1,56 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
</head>
<body>
<script type="text/javascript" src="embedapi.js"></script>
<script type="text/javascript">
var svgCanvas = null;
function init_embed() {
var frame = document.getElementById('svgedit');
svgCanvas = new embedded_svg_edit(frame);
// Hide main button, as we will be controlling new/load/save etc from the host document
var doc;
doc = frame.contentDocument;
if (!doc)
{
doc = frame.contentWindow.document;
}
var mainButton = doc.getElementById('main_button');
mainButton.style.display = 'none';
}
function handleSvgData(data, error) {
if (error)
{
alert('error ' + error);
}
else
{
alert('Congratulations. Your SVG string is back in the host page, do with it what you will\n\n' + data);
}
}
function loadSvg() {
var svgexample = '<svg width="640" height="480" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><g><title>Layer 1</title><rect stroke-width="5" stroke="#000000" fill="#FF0000" id="svg_1" height="35" width="51" y="35" x="32"/><ellipse ry="15" rx="24" stroke-width="5" stroke="#000000" fill="#0000ff" id="svg_2" cy="60" cx="66"/></g></svg>';
svgCanvas.setSvgString(svgexample);
}
function saveSvg() {
svgCanvas.getSvgString()(handleSvgData);
}
</script>
<button onclick="loadSvg();">Load example</button>
<button onclick="saveSvg();">Save data</button>
<br/>
<iframe src="svg-editor.html" width="900px" height="600px" id="svgedit" onload="init_embed()"></iframe>
</body>
</html>

View File

@ -1,41 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<g id="tool_closepath">
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<title>Layer 1</title>
<path stroke="#000" stroke-width="15" fill="#ffc8c8" d="m121.5,40l-84,106l27,115l166,2l29,-111"/>
<line x1="240" y1="136" x2="169.5" y2="74" stroke="#A00" stroke-width="25" fill="none"/>
<path stroke="none" fill ="#A00" d="m158,65l31,74l-3,-50l51,-3z"/>
<g stroke-width="15" stroke="#00f" fill="#0ff">
<circle r="30" cy="41" cx="123"/>
<circle r="30" cy="146" cx="40"/>
<circle r="30" cy="260" cx="69"/>
<circle r="30" cy="260" cx="228"/>
<circle r="30" cy="148" cx="260"/>
</g>
</g>
</svg>
</g>
<g id="tool_openpath">
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<title>Layer 1</title>
<path stroke="#000" stroke-width="15" fill="#ffc8c8" d="m123.5,38l-84,106l27,115l166,2l29,-111"/>
<line x1="276.5" y1="153" x2="108.5" y2="24" stroke="#000" stroke-width="10" fill="none"/>
<g stroke-width="15" stroke="#00f" fill="#0ff">
<circle r="30" cy="41" cx="123"/>
<circle r="30" cy="146" cx="40"/>
<circle r="30" cy="260" cx="69"/>
<circle r="30" cy="260" cx="228"/>
<circle r="30" cy="148" cx="260"/>
</g>
<g stroke="#A00" stroke-width="15" fill="none">
<line x1="168" y1="24" x2="210" y2="150"/>
<line x1="210" y1="24" x2="168" y2="150"/>
</g>
</g>
</svg>
</g>
<g id="svg_eof"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,298 +0,0 @@
/*
* ext-arrows.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
*
*/
svgEditor.addExtension("Arrows", function(S) {
var svgcontent = S.svgcontent,
addElem = S.addSvgElementFromJson,
nonce = S.nonce,
randomize_ids = S.randomize_ids,
selElems;
svgCanvas.bind('setnonce', setArrowNonce);
svgCanvas.bind('unsetnonce', unsetArrowNonce);
var lang_list = {
"en":[
{"id": "arrow_none", "textContent": "No arrow" }
],
"fr":[
{"id": "arrow_none", "textContent": "Sans flèche" }
]
};
var prefix = 'se_arrow_';
if (randomize_ids) {
var arrowprefix = prefix + nonce + '_';
} else {
var arrowprefix = prefix;
}
var pathdata = {
fw: {d:"m0,0l10,5l-10,5l5,-5l-5,-5z", refx:8, id: arrowprefix + 'fw'},
bk: {d:"m10,0l-10,5l10,5l-5,-5l5,-5z", refx:2, id: arrowprefix + 'bk'}
}
function setArrowNonce(window, n) {
randomize_ids = true;
arrowprefix = prefix + n + '_';
pathdata.fw.id = arrowprefix + 'fw';
pathdata.bk.id = arrowprefix + 'bk';
}
function unsetArrowNonce(window) {
randomize_ids = false;
arrowprefix = prefix;
pathdata.fw.id = arrowprefix + 'fw';
pathdata.bk.id = arrowprefix + 'bk';
}
function getLinked(elem, attr) {
var str = elem.getAttribute(attr);
if(!str) return null;
var m = str.match(/\(\#(.*)\)/);
if(!m || m.length !== 2) {
return null;
}
return S.getElem(m[1]);
}
function showPanel(on) {
$('#arrow_panel').toggle(on);
if(on) {
var el = selElems[0];
var end = el.getAttribute("marker-end");
var start = el.getAttribute("marker-start");
var mid = el.getAttribute("marker-mid");
var val;
if(end && start) {
val = "both";
} else if(end) {
val = "end";
} else if(start) {
val = "start";
} else if(mid) {
val = "mid";
if(mid.indexOf("bk") != -1) {
val = "mid_bk";
}
}
if(!start && !mid && !end) {
val = "none";
}
$("#arrow_list").val(val);
}
}
function resetMarker() {
var el = selElems[0];
el.removeAttribute("marker-start");
el.removeAttribute("marker-mid");
el.removeAttribute("marker-end");
}
function addMarker(dir, type, id) {
// TODO: Make marker (or use?) per arrow type, since refX can be different
id = id || arrowprefix + dir;
var marker = S.getElem(id);
var data = pathdata[dir];
if(type == "mid") {
data.refx = 5;
}
if(!marker) {
marker = addElem({
"element": "marker",
"attr": {
"viewBox": "0 0 10 10",
"id": id,
"refY": 5,
"markerUnits": "strokeWidth",
"markerWidth": 5,
"markerHeight": 5,
"orient": "auto",
"style": "pointer-events:none" // Currently needed for Opera
}
});
var arrow = addElem({
"element": "path",
"attr": {
"d": data.d,
"fill": "#000000"
}
});
marker.appendChild(arrow);
S.findDefs().appendChild(marker);
}
marker.setAttribute('refX', data.refx);
return marker;
}
function setArrow() {
var type = this.value;
resetMarker();
if(type == "none") {
return;
}
// Set marker on element
var dir = "fw";
if(type == "mid_bk") {
type = "mid";
dir = "bk";
} else if(type == "both") {
addMarker("bk", type);
svgCanvas.changeSelectedAttribute("marker-start", "url(#" + pathdata.bk.id + ")");
type = "end";
dir = "fw";
} else if (type == "start") {
dir = "bk";
}
addMarker(dir, type);
svgCanvas.changeSelectedAttribute("marker-"+type, "url(#" + pathdata[dir].id + ")");
S.call("changed", selElems);
}
function colorChanged(elem) {
var color = elem.getAttribute('stroke');
var mtypes = ['start','mid','end'];
var defs = S.findDefs();
$.each(mtypes, function(i, type) {
var marker = getLinked(elem, 'marker-'+type);
if(!marker) return;
var cur_color = $(marker).children().attr('fill');
var cur_d = $(marker).children().attr('d');
var new_marker = null;
if(cur_color === color) return;
var all_markers = $(defs).find('marker');
// Different color, check if already made
all_markers.each(function() {
var attrs = $(this).children().attr(['fill', 'd']);
if(attrs.fill === color && attrs.d === cur_d) {
// Found another marker with this color and this path
new_marker = this;
}
});
if(!new_marker) {
// Create a new marker with this color
var last_id = marker.id;
var dir = last_id.indexOf('_fw') !== -1?'fw':'bk';
new_marker = addMarker(dir, type, arrowprefix + dir + all_markers.length);
$(new_marker).children().attr('fill', color);
}
$(elem).attr('marker-'+type, "url(#" + new_marker.id + ")");
// Check if last marker can be removed
var remove = true;
$(S.svgcontent).find('line, polyline, path, polygon').each(function() {
var elem = this;
$.each(mtypes, function(j, mtype) {
if($(elem).attr('marker-' + mtype) === "url(#" + marker.id + ")") {
return remove = false;
}
});
if(!remove) return false;
});
// Not found, so can safely remove
if(remove) {
$(marker).remove();
}
});
}
return {
name: "Arrows",
context_tools: [{
type: "select",
panel: "arrow_panel",
title: "Select arrow type",
id: "arrow_list",
options: {
none: "No arrow",
end: "----&gt;",
start: "&lt;----",
both: "&lt;---&gt;",
mid: "--&gt;--",
mid_bk: "--&lt;--"
},
defval: "none",
events: {
change: setArrow
}
}],
callback: function() {
$('#arrow_panel').hide();
// Set ID so it can be translated in locale file
$('#arrow_list option')[0].id = 'connector_no_arrow';
},
addLangData: function(lang) {
return {
data: lang_list[lang]
};
},
selectedChanged: function(opts) {
// Use this to update the current selected elements
selElems = opts.elems;
var i = selElems.length;
var marker_elems = ['line','path','polyline','polygon'];
while(i--) {
var elem = selElems[i];
if(elem && $.inArray(elem.tagName, marker_elems) != -1) {
if(opts.selectedElement && !opts.multiselected) {
showPanel(true);
} else {
showPanel(false);
}
} else {
showPanel(false);
}
}
},
elementChanged: function(opts) {
var elem = opts.elems[0];
if(elem && (
elem.getAttribute("marker-start") ||
elem.getAttribute("marker-mid") ||
elem.getAttribute("marker-end")
)) {
// var start = elem.getAttribute("marker-start");
// var mid = elem.getAttribute("marker-mid");
// var end = elem.getAttribute("marker-end");
// Has marker, so see if it should match color
colorChanged(elem);
}
}
};
});

View File

@ -1,92 +0,0 @@
/*
* ext-closepath.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Jeff Schiller
*
*/
// This extension adds a simple button to the contextual panel for paths
// The button toggles whether the path is open or closed
svgEditor.addExtension("ClosePath", function(S) {
var selElems,
updateButton = function(path) {
var seglist = path.pathSegList,
closed = seglist.getItem(seglist.numberOfItems - 1).pathSegType==1,
showbutton = closed ? '#tool_openpath' : '#tool_closepath',
hidebutton = closed ? '#tool_closepath' : '#tool_openpath';
$(hidebutton).hide();
$(showbutton).show();
},
showPanel = function(on) {
$('#closepath_panel').toggle(on);
if (on) {
var path = selElems[0];
if (path) updateButton(path);
}
},
toggleClosed = function() {
var path = selElems[0];
if (path) {
var seglist = path.pathSegList,
last = seglist.numberOfItems - 1;
// is closed
if(seglist.getItem(last).pathSegType == 1) {
seglist.removeItem(last);
}
else {
seglist.appendItem(path.createSVGPathSegClosePath());
}
updateButton(path);
}
};
return {
name: "ClosePath",
svgicons: "extensions/closepath_icons.svg",
buttons: [{
id: "tool_openpath",
type: "context",
panel: "closepath_panel",
title: "Open path",
events: {
'click': function() {
toggleClosed();
}
}
},
{
id: "tool_closepath",
type: "context",
panel: "closepath_panel",
title: "Close path",
events: {
'click': function() {
toggleClosed();
}
}
}],
callback: function() {
$('#closepath_panel').hide();
},
selectedChanged: function(opts) {
selElems = opts.elems;
var i = selElems.length;
while(i--) {
var elem = selElems[i];
if(elem && elem.tagName == 'path') {
if(opts.selectedElement && !opts.multiselected) {
showPanel(true);
} else {
showPanel(false);
}
} else {
showPanel(false);
}
}
}
};
});

View File

@ -1,587 +0,0 @@
/*
* ext-connector.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
*
*/
svgEditor.addExtension("Connector", function(S) {
var svgcontent = S.svgcontent,
svgroot = S.svgroot,
getNextId = S.getNextId,
getElem = S.getElem,
addElem = S.addSvgElementFromJson,
selManager = S.selectorManager,
curConfig = svgEditor.curConfig,
started = false,
start_x,
start_y,
cur_line,
start_elem,
end_elem,
connections = [],
conn_sel = ".se_connector",
se_ns,
// connect_str = "-SE_CONNECT-",
selElems = [];
elData = $.data;
var lang_list = {
"en":[
{"id": "mode_connect", "title": "Connect two objects" }
],
"fr":[
{"id": "mode_connect", "title": "Connecter deux objets"}
]
};
function getOffset(side, line) {
var give_offset = !!line.getAttribute('marker-' + side);
// var give_offset = $(line).data(side+'_off');
// TODO: Make this number (5) be based on marker width/height
var size = line.getAttribute('stroke-width') * 5;
return give_offset ? size : 0;
}
function showPanel(on) {
var conn_rules = $('#connector_rules');
if(!conn_rules.length) {
conn_rules = $('<style id="connector_rules"><\/style>').appendTo('head');
}
conn_rules.text(!on?"":"#tool_clone, #tool_topath, #tool_angle, #xy_panel { display: none !important; }");
$('#connector_panel').toggle(on);
}
function setPoint(elem, pos, x, y, setMid) {
var pts = elem.points;
var pt = svgroot.createSVGPoint();
pt.x = x;
pt.y = y;
if(pos === 'end') pos = pts.numberOfItems-1;
// TODO: Test for this on init, then use alt only if needed
try {
pts.replaceItem(pt, pos);
} catch(err) {
// Should only occur in FF which formats points attr as "n,n n,n", so just split
var pt_arr = elem.getAttribute("points").split(" ");
for(var i=0; i< pt_arr.length; i++) {
if(i == pos) {
pt_arr[i] = x + ',' + y;
}
}
elem.setAttribute("points",pt_arr.join(" "));
}
if(setMid) {
// Add center point
var pt_start = pts.getItem(0);
var pt_end = pts.getItem(pts.numberOfItems-1);
setPoint(elem, 1, (pt_end.x + pt_start.x)/2, (pt_end.y + pt_start.y)/2);
}
}
function updateLine(diff_x, diff_y) {
// Update line with element
var i = connections.length;
while(i--) {
var conn = connections[i];
var line = conn.connector;
var elem = conn.elem;
var pre = conn.is_start?'start':'end';
// var sw = line.getAttribute('stroke-width') * 5;
// Update bbox for this element
var bb = elData(line, pre+'_bb');
bb.x = conn.start_x + diff_x;
bb.y = conn.start_y + diff_y;
elData(line, pre+'_bb', bb);
var alt_pre = conn.is_start?'end':'start';
// Get center pt of connected element
var bb2 = elData(line, alt_pre+'_bb');
var src_x = bb2.x + bb2.width/2;
var src_y = bb2.y + bb2.height/2;
// Set point of element being moved
var pt = getBBintersect(src_x, src_y, bb, getOffset(pre, line)); // $(line).data(pre+'_off')?sw:0
setPoint(line, conn.is_start?0:'end', pt.x, pt.y, true);
// Set point of connected element
var pt2 = getBBintersect(pt.x, pt.y, elData(line, alt_pre + '_bb'), getOffset(alt_pre, line));
setPoint(line, conn.is_start?'end':0, pt2.x, pt2.y, true);
}
}
function findConnectors(elems) {
if(!elems) elems = selElems;
var connectors = $(svgcontent).find(conn_sel);
connections = [];
// Loop through connectors to see if one is connected to the element
connectors.each(function() {
var start = elData(this, "c_start");
var end = elData(this, "c_end");
var parts = [getElem(start), getElem(end)];
for(var i=0; i<2; i++) {
var c_elem = parts[i];
var add_this = false;
// The connected element might be part of a selected group
$(c_elem).parents().each(function() {
if($.inArray(this, elems) !== -1) {
// Pretend this element is selected
add_this = true;
}
});
if(!c_elem || !c_elem.parentNode) {
$(this).remove();
continue;
}
if($.inArray(c_elem, elems) !== -1 || add_this) {
var bb = svgCanvas.getStrokedBBox([c_elem]);
connections.push({
elem: c_elem,
connector: this,
is_start: (i === 0),
start_x: bb.x,
start_y: bb.y
});
}
}
});
}
function updateConnectors(elems) {
// Updates connector lines based on selected elements
// Is not used on mousemove, as it runs getStrokedBBox every time,
// which isn't necessary there.
findConnectors(elems);
if(connections.length) {
// Update line with element
var i = connections.length;
while(i--) {
var conn = connections[i];
var line = conn.connector;
var elem = conn.elem;
var sw = line.getAttribute('stroke-width') * 5;
var pre = conn.is_start?'start':'end';
// Update bbox for this element
var bb = svgCanvas.getStrokedBBox([elem]);
bb.x = conn.start_x;
bb.y = conn.start_y;
elData(line, pre+'_bb', bb);
var add_offset = elData(line, pre+'_off');
var alt_pre = conn.is_start?'end':'start';
// Get center pt of connected element
var bb2 = elData(line, alt_pre+'_bb');
var src_x = bb2.x + bb2.width/2;
var src_y = bb2.y + bb2.height/2;
// Set point of element being moved
var pt = getBBintersect(src_x, src_y, bb, getOffset(pre, line));
setPoint(line, conn.is_start?0:'end', pt.x, pt.y, true);
// Set point of connected element
var pt2 = getBBintersect(pt.x, pt.y, elData(line, alt_pre + '_bb'), getOffset(alt_pre, line));
setPoint(line, conn.is_start?'end':0, pt2.x, pt2.y, true);
// Update points attribute manually for webkit
if(navigator.userAgent.indexOf('AppleWebKit') != -1) {
var pts = line.points;
var len = pts.numberOfItems;
var pt_arr = Array(len);
for(var j=0; j< len; j++) {
var pt = pts.getItem(j);
pt_arr[j] = pt.x + ',' + pt.y;
}
line.setAttribute("points",pt_arr.join(" "));
}
}
}
}
function getBBintersect(x, y, bb, offset) {
if(offset) {
offset -= 0;
bb = $.extend({}, bb);
bb.width += offset;
bb.height += offset;
bb.x -= offset/2;
bb.y -= offset/2;
}
var mid_x = bb.x + bb.width/2;
var mid_y = bb.y + bb.height/2;
var len_x = x - mid_x;
var len_y = y - mid_y;
var slope = Math.abs(len_y/len_x);
var ratio;
if(slope < bb.height/bb.width) {
ratio = (bb.width/2) / Math.abs(len_x);
} else {
ratio = (bb.height/2) / Math.abs(len_y);
}
return {
x: mid_x + len_x * ratio,
y: mid_y + len_y * ratio
}
}
// Do once
(function() {
var gse = svgCanvas.groupSelectedElements;
svgCanvas.groupSelectedElements = function() {
svgCanvas.removeFromSelection($(conn_sel).toArray());
return gse.apply(this, arguments);
}
var mse = svgCanvas.moveSelectedElements;
svgCanvas.moveSelectedElements = function() {
svgCanvas.removeFromSelection($(conn_sel).toArray());
var cmd = mse.apply(this, arguments);
updateConnectors();
return cmd;
}
se_ns = svgCanvas.getEditorNS();
}());
// Do on reset
function init() {
// Make sure all connectors have data set
$(svgcontent).find('*').each(function() {
var conn = this.getAttributeNS(se_ns, "connector");
if(conn) {
this.setAttribute('class', conn_sel.substr(1));
var conn_data = conn.split(' ');
var sbb = svgCanvas.getStrokedBBox([getElem(conn_data[0])]);
var ebb = svgCanvas.getStrokedBBox([getElem(conn_data[1])]);
$(this).data('c_start',conn_data[0])
.data('c_end',conn_data[1])
.data('start_bb', sbb)
.data('end_bb', ebb);
svgCanvas.getEditorNS(true);
}
});
// updateConnectors();
}
// $(svgroot).parent().mousemove(function(e) {
// // if(started
// // || svgCanvas.getMode() != "connector"
// // || e.target.parentNode.parentNode != svgcontent) return;
//
// console.log('y')
// // if(e.target.parentNode.parentNode === svgcontent) {
// //
// // }
// });
return {
name: "Connector",
svgicons: "images/conn.svg",
buttons: [{
id: "mode_connect",
type: "mode",
icon: "images/cut.png",
title: "Connect two objects",
includeWith: {
button: '#tool_line',
isDefault: false,
position: 1
},
events: {
'click': function() {
svgCanvas.setMode("connector");
}
}
}],
addLangData: function(lang) {
return {
data: lang_list[lang]
};
},
mouseDown: function(opts) {
var e = opts.event;
start_x = opts.start_x,
start_y = opts.start_y;
var mode = svgCanvas.getMode();
if(mode == "connector") {
if(started) return;
var mouse_target = e.target;
var parents = $(mouse_target).parents();
if($.inArray(svgcontent, parents) != -1) {
// Connectable element
// If child of foreignObject, use parent
var fo = $(mouse_target).closest("foreignObject");
start_elem = fo.length ? fo[0] : mouse_target;
// Get center of source element
var bb = svgCanvas.getStrokedBBox([start_elem]);
var x = bb.x + bb.width/2;
var y = bb.y + bb.height/2;
started = true;
cur_line = addElem({
"element": "polyline",
"attr": {
"id": getNextId(),
"points": (x+','+y+' '+x+','+y+' '+start_x+','+start_y),
"stroke": '#' + curConfig.initStroke.color,
"stroke-width": (!start_elem.stroke_width || start_elem.stroke_width == 0) ? curConfig.initStroke.width : start_elem.stroke_width,
"fill": "none",
"opacity": curConfig.initStroke.opacity,
"style": "pointer-events:none"
}
});
elData(cur_line, 'start_bb', bb);
}
return {
started: true
};
} else if(mode == "select") {
findConnectors();
}
},
mouseMove: function(opts) {
var zoom = svgCanvas.getZoom();
var e = opts.event;
var x = opts.mouse_x/zoom;
var y = opts.mouse_y/zoom;
var diff_x = x - start_x,
diff_y = y - start_y;
var mode = svgCanvas.getMode();
if(mode == "connector" && started) {
var sw = cur_line.getAttribute('stroke-width') * 3;
// Set start point (adjusts based on bb)
var pt = getBBintersect(x, y, elData(cur_line, 'start_bb'), getOffset('start', cur_line));
start_x = pt.x;
start_y = pt.y;
setPoint(cur_line, 0, pt.x, pt.y, true);
// Set end point
setPoint(cur_line, 'end', x, y, true);
} else if(mode == "select") {
var slen = selElems.length;
while(slen--) {
var elem = selElems[slen];
// Look for selected connector elements
if(elem && elData(elem, 'c_start')) {
// Remove the "translate" transform given to move
svgCanvas.removeFromSelection([elem]);
svgCanvas.getTransformList(elem).clear();
}
}
if(connections.length) {
updateLine(diff_x, diff_y);
}
}
},
mouseUp: function(opts) {
var zoom = svgCanvas.getZoom();
var e = opts.event,
x = opts.mouse_x/zoom,
y = opts.mouse_y/zoom,
mouse_target = e.target;
if(svgCanvas.getMode() == "connector") {
var fo = $(mouse_target).closest("foreignObject");
if(fo.length) mouse_target = fo[0];
var parents = $(mouse_target).parents();
if(mouse_target == start_elem) {
// Start line through click
started = true;
return {
keep: true,
element: null,
started: started
}
} else if($.inArray(svgcontent, parents) === -1) {
// Not a valid target element, so remove line
$(cur_line).remove();
started = false;
return {
keep: false,
element: null,
started: started
}
} else {
// Valid end element
end_elem = mouse_target;
var start_id = start_elem.id, end_id = end_elem.id;
var conn_str = start_id + " " + end_id;
var alt_str = end_id + " " + start_id;
// Don't create connector if one already exists
var dupe = $(svgcontent).find(conn_sel).filter(function() {
var conn = this.getAttributeNS(se_ns, "connector");
if(conn == conn_str || conn == alt_str) return true;
});
if(dupe.length) {
$(cur_line).remove();
return {
keep: false,
element: null,
started: false
}
}
var bb = svgCanvas.getStrokedBBox([end_elem]);
var pt = getBBintersect(start_x, start_y, bb, getOffset('start', cur_line));
setPoint(cur_line, 'end', pt.x, pt.y, true);
$(cur_line)
.data("c_start", start_id)
.data("c_end", end_id)
.data("end_bb", bb);
se_ns = svgCanvas.getEditorNS(true);
cur_line.setAttributeNS(se_ns, "se:connector", conn_str);
cur_line.setAttribute('class', conn_sel.substr(1));
cur_line.setAttribute('opacity', 1);
svgCanvas.addToSelection([cur_line]);
svgCanvas.moveToBottomSelectedElement();
selManager.requestSelector(cur_line).showGrips(false);
started = false;
return {
keep: true,
element: cur_line,
started: started
}
}
}
},
selectedChanged: function(opts) {
// TODO: Find better way to skip operations if no connectors are in use
if(!$(svgcontent).find(conn_sel).length) return;
if(svgCanvas.getMode() == 'connector') {
svgCanvas.setMode('select');
}
// Use this to update the current selected elements
selElems = opts.elems;
var i = selElems.length;
while(i--) {
var elem = selElems[i];
if(elem && elData(elem, 'c_start')) {
selManager.requestSelector(elem).showGrips(false);
if(opts.selectedElement && !opts.multiselected) {
// TODO: Set up context tools and hide most regular line tools
showPanel(true);
} else {
showPanel(false);
}
} else {
showPanel(false);
}
}
updateConnectors();
},
elementChanged: function(opts) {
var elem = opts.elems[0];
if (elem && elem.tagName == 'svg' && elem.id == "svgcontent") {
// Update svgcontent (can change on import)
svgcontent = elem;
init();
}
// Has marker, so change offset
if(elem && (
elem.getAttribute("marker-start") ||
elem.getAttribute("marker-mid") ||
elem.getAttribute("marker-end")
)) {
var start = elem.getAttribute("marker-start");
var mid = elem.getAttribute("marker-mid");
var end = elem.getAttribute("marker-end");
cur_line = elem;
$(elem)
.data("start_off", !!start)
.data("end_off", !!end);
if(elem.tagName == "line" && mid) {
// Convert to polyline to accept mid-arrow
var x1 = elem.getAttribute('x1')-0;
var x2 = elem.getAttribute('x2')-0;
var y1 = elem.getAttribute('y1')-0;
var y2 = elem.getAttribute('y2')-0;
var id = elem.id;
var mid_pt = (' '+((x1+x2)/2)+','+((y1+y2)/2) + ' ');
var pline = addElem({
"element": "polyline",
"attr": {
"points": (x1+','+y1+ mid_pt +x2+','+y2),
"stroke": elem.getAttribute('stroke'),
"stroke-width": elem.getAttribute('stroke-width'),
"marker-mid": mid,
"fill": "none",
"opacity": elem.getAttribute('opacity') || 1
}
});
$(elem).after(pline).remove();
svgCanvas.clearSelection();
pline.id = id;
svgCanvas.addToSelection([pline]);
elem = pline;
}
}
// Update line if it's a connector
if(elem.getAttribute('class') == conn_sel.substr(1)) {
var start = getElem(elData(elem, 'c_start'));
updateConnectors([start]);
} else {
updateConnectors();
}
},
toolButtonStateUpdate: function(opts) {
if(opts.nostroke) {
if ($('#mode_connect').hasClass('tool_button_current')) {
clickSelect();
}
}
$('#mode_connect')
.toggleClass('disabled',opts.nostroke);
}
};
});

View File

@ -1,109 +0,0 @@
/*
* ext-eyedropper.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Jeff Schiller
*
*/
// Dependencies:
// 1) jQuery
// 2) history.js
// 3) svg_editor.js
// 4) svgcanvas.js
svgEditor.addExtension("eyedropper", function(S) {
var svgcontent = S.svgcontent,
svgns = "http://www.w3.org/2000/svg",
svgdoc = S.svgroot.parentNode.ownerDocument,
svgCanvas = svgEditor.canvas,
ChangeElementCommand = svgedit.history.ChangeElementCommand,
addToHistory = function(cmd) { svgCanvas.undoMgr.addCommandToHistory(cmd); },
currentStyle = {fillPaint: "red", fillOpacity: 1.0,
strokePaint: "black", strokeOpacity: 1.0,
strokeWidth: 5, strokeDashArray: null,
opacity: 1.0,
strokeLinecap: 'butt',
strokeLinejoin: 'miter',
};
function getStyle(opts) {
// if we are in eyedropper mode, we don't want to disable the eye-dropper tool
var mode = svgCanvas.getMode();
if (mode == "eyedropper") return;
var elem = null;
var tool = $('#tool_eyedropper');
// enable-eye-dropper if one element is selected
if (!opts.multiselected && opts.elems[0] &&
$.inArray(opts.elems[0].nodeName, ['svg', 'g', 'use']) == -1)
{
elem = opts.elems[0];
tool.removeClass('disabled');
}
// disable eye-dropper tool
else {
tool.addClass('disabled');
}
}
return {
name: "eyedropper",
svgicons: "extensions/eyedropper-icon.xml",
buttons: [{
id: "tool_eyedropper",
type: "mode",
title: "Eye Dropper Tool",
key: "I",
class: "disabled",
events: {
"click": function() {
svgCanvas.setMode("eyedropper");
}
}
}],
// if we have selected an element, grab its paint and enable the eye dropper button
selectedChanged: getStyle,
elementChanged: getStyle,
mouseDown: function(opts) {
var mode = svgCanvas.getMode();
if (mode == "eyedropper") {
var e = opts.event;
var target = e.target;
currentStyle.fillPaint = target.getAttribute("fill") || "white";
currentStyle.fillOpacity = target.getAttribute("fill-opacity") || 1.0;
currentStyle.strokePaint = target.getAttribute("stroke");
currentStyle.strokeOpacity = target.getAttribute("stroke-opacity") || 1.0;
currentStyle.strokeWidth = target.getAttribute("stroke-width");
currentStyle.strokeDashArray = target.getAttribute("stroke-dasharray");
currentStyle.strokeLinecap = target.getAttribute("stroke-linecap");
currentStyle.strokeLinejoin = target.getAttribute("stroke-linejoin");
currentStyle.opacity = target.getAttribute("opacity") || 1.0;
if ($.inArray(target.nodeName, ['g', 'use']) == -1) {
var changes = {};
var change = function(elem, attrname, newvalue) {
changes[attrname] = elem.getAttribute(attrname);
elem.setAttribute(attrname, newvalue);
};
if (currentStyle.fillPaint) change(opts.selectedElements[0], "fill", currentStyle.fillPaint);
if (currentStyle.fillOpacity) change(opts.selectedElements[0], "fill-opacity", currentStyle.fillOpacity);
if (currentStyle.strokePaint) change(opts.selectedElements[0], "stroke", currentStyle.strokePaint);
if (currentStyle.strokeOpacity) change(opts.selectedElements[0], "stroke-opacity", currentStyle.strokeOpacity);
if (currentStyle.strokeWidth) change(opts.selectedElements[0], "stroke-width", currentStyle.strokeWidth);
if (currentStyle.strokeDashArray) change(opts.selectedElements[0], "stroke-dasharray", currentStyle.strokeDashArray);
if (currentStyle.opacity) change(opts.selectedElements[0], "opacity", currentStyle.opacity);
if (currentStyle.strokeLinecap) change(opts.selectedElements[0], "stroke-linecap", currentStyle.strokeLinecap);
if (currentStyle.strokeLinejoin) change(opts.selectedElements[0], "stroke-linejoin", currentStyle.strokeLinejoin);
addToHistory(new ChangeElementCommand(target, changes));
}
}
},
};
});

View File

@ -1,277 +0,0 @@
/*
* ext-foreignobject.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Jacques Distler
* Copyright(c) 2010 Alexis Deveria
*
*/
svgEditor.addExtension("foreignObject", function(S) {
var svgcontent = S.svgcontent,
addElem = S.addSvgElementFromJson,
selElems,
svgns = "http://www.w3.org/2000/svg",
xlinkns = "http://www.w3.org/1999/xlink",
xmlns = "http://www.w3.org/XML/1998/namespace",
xmlnsns = "http://www.w3.org/2000/xmlns/",
se_ns = "http://svg-edit.googlecode.com",
htmlns = "http://www.w3.org/1999/xhtml",
mathns = "http://www.w3.org/1998/Math/MathML",
editingforeign = false,
svgdoc = S.svgroot.parentNode.ownerDocument,
started,
newFO;
var properlySourceSizeTextArea = function(){
// TODO: remove magic numbers here and get values from CSS
var height = $('#svg_source_container').height() - 80;
$('#svg_source_textarea').css('height', height);
};
function showPanel(on) {
var fc_rules = $('#fc_rules');
if(!fc_rules.length) {
fc_rules = $('<style id="fc_rules"><\/style>').appendTo('head');
}
fc_rules.text(!on?"":" #tool_topath { display: none !important; }");
$('#foreignObject_panel').toggle(on);
}
function toggleSourceButtons(on) {
$('#tool_source_save, #tool_source_cancel').toggle(!on);
$('#foreign_save, #foreign_cancel').toggle(on);
}
// Function: setForeignString(xmlString, elt)
// This function sets the content of element elt to the input XML.
//
// Parameters:
// xmlString - The XML text.
// elt - the parent element to append to
//
// Returns:
// This function returns false if the set was unsuccessful, true otherwise.
function setForeignString(xmlString) {
var elt = selElems[0];
try {
// convert string into XML document
var newDoc = Utils.text2xml('<svg xmlns="'+svgns+'" xmlns:xlink="'+xlinkns+'">'+xmlString+'</svg>');
// run it through our sanitizer to remove anything we do not support
S.sanitizeSvg(newDoc.documentElement);
elt.parentNode.replaceChild(svgdoc.importNode(newDoc.documentElement.firstChild, true), elt);
S.call("changed", [elt]);
svgCanvas.clearSelection();
} catch(e) {
console.log(e);
return false;
}
return true;
};
function showForeignEditor() {
var elt = selElems[0];
if (!elt || editingforeign) return;
editingforeign = true;
toggleSourceButtons(true);
elt.removeAttribute('fill');
var str = S.svgToString(elt, 0);
$('#svg_source_textarea').val(str);
$('#svg_source_editor').fadeIn();
properlySourceSizeTextArea();
$('#svg_source_textarea').focus();
}
function setAttr(attr, val) {
svgCanvas.changeSelectedAttribute(attr, val);
S.call("changed", selElems);
}
return {
name: "foreignObject",
svgicons: "extensions/foreignobject-icons.xml",
buttons: [{
id: "tool_foreign",
type: "mode",
title: "Foreign Object Tool",
events: {
'click': function() {
svgCanvas.setMode('foreign')
}
}
},{
id: "edit_foreign",
type: "context",
panel: "foreignObject_panel",
title: "Edit ForeignObject Content",
events: {
'click': function() {
showForeignEditor();
}
}
}],
context_tools: [{
type: "input",
panel: "foreignObject_panel",
title: "Change foreignObject's width",
id: "foreign_width",
label: "w",
size: 3,
events: {
change: function() {
setAttr('width', this.value);
}
}
},{
type: "input",
panel: "foreignObject_panel",
title: "Change foreignObject's height",
id: "foreign_height",
label: "h",
events: {
change: function() {
setAttr('height', this.value);
}
}
}, {
type: "input",
panel: "foreignObject_panel",
title: "Change foreignObject's font size",
id: "foreign_font_size",
label: "font-size",
size: 2,
defval: 16,
events: {
change: function() {
setAttr('font-size', this.value);
}
}
}
],
callback: function() {
$('#foreignObject_panel').hide();
var endChanges = function() {
$('#svg_source_editor').hide();
editingforeign = false;
$('#svg_source_textarea').blur();
toggleSourceButtons(false);
}
// TODO: Needs to be done after orig icon loads
setTimeout(function() {
// Create source save/cancel buttons
var save = $('#tool_source_save').clone()
.hide().attr('id', 'foreign_save').unbind()
.appendTo("#tool_source_back").click(function() {
if (!editingforeign) return;
if (!setForeignString($('#svg_source_textarea').val())) {
$.confirm("Errors found. Revert to original?", function(ok) {
if(!ok) return false;
endChanges();
});
} else {
endChanges();
}
// setSelectMode();
});
var cancel = $('#tool_source_cancel').clone()
.hide().attr('id', 'foreign_cancel').unbind()
.appendTo("#tool_source_back").click(function() {
endChanges();
});
}, 3000);
},
mouseDown: function(opts) {
var e = opts.event;
if(svgCanvas.getMode() == "foreign") {
started = true;
newFO = S.addSvgElementFromJson({
"element": "foreignObject",
"attr": {
"x": opts.start_x,
"y": opts.start_y,
"id": S.getNextId(),
"font-size": 16, //cur_text.font_size,
"width": "48",
"height": "20",
"style": "pointer-events:inherit"
}
});
var m = svgdoc.createElementNS(mathns, 'math');
m.setAttributeNS(xmlnsns, 'xmlns', mathns);
m.setAttribute('display', 'inline');
var mi = svgdoc.createElementNS(mathns, 'mi');
mi.setAttribute('mathvariant', 'normal');
mi.textContent = "\u03A6";
var mo = svgdoc.createElementNS(mathns, 'mo');
mo.textContent = "\u222A";
var mi2 = svgdoc.createElementNS(mathns, 'mi');
mi2.textContent = "\u2133";
m.appendChild(mi);
m.appendChild(mo);
m.appendChild(mi2);
newFO.appendChild(m);
return {
started: true
}
}
},
mouseUp: function(opts) {
var e = opts.event;
if(svgCanvas.getMode() == "foreign" && started) {
var attrs = $(newFO).attr(["width", "height"]);
keep = (attrs.width != 0 || attrs.height != 0);
svgCanvas.addToSelection([newFO], true);
return {
keep: keep,
element: newFO
}
}
},
selectedChanged: function(opts) {
// Use this to update the current selected elements
selElems = opts.elems;
var i = selElems.length;
while(i--) {
var elem = selElems[i];
if(elem && elem.tagName == "foreignObject") {
if(opts.selectedElement && !opts.multiselected) {
$('#foreign_font_size').val(elem.getAttribute("font-size"));
$('#foreign_width').val(elem.getAttribute("width"));
$('#foreign_height').val(elem.getAttribute("height"));
showPanel(true);
} else {
showPanel(false);
}
} else {
showPanel(false);
}
}
},
elementChanged: function(opts) {
var elem = opts.elems[0];
}
};
});

View File

@ -1,183 +0,0 @@
/*
* ext-grid.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Redou Mine
* Copyright(c) 2010 Alexis Deveria
*
*/
// Dependencies:
// 1) units.js
// 2) everything else
svgEditor.addExtension("view_grid", function(s) {
var svgdoc = document.getElementById("svgcanvas").ownerDocument,
svgns = "http://www.w3.org/2000/svg",
dims = svgEditor.curConfig.dimensions,
svgroot = s.svgroot;
var showGrid = false;
var assignAttributes = svgCanvas.assignAttributes;
var hcanvas = document.createElement('canvas');
$(hcanvas).hide().appendTo('body');
var canvasgrid = svgdoc.createElementNS(svgns, "svg");
assignAttributes(canvasgrid, {
'id': 'canvasGrid',
'width': '100%',
'height': '100%',
'x': 0,
'y': 0,
'overflow': 'visible',
'display': 'none'
});
var canvBG = $('#canvasBackground');
canvBG.append(canvasgrid);
// grid-pattern
var gridPattern = svgdoc.createElementNS(svgns, "pattern");
assignAttributes(gridPattern, {
'id': 'gridpattern',
'patternUnits': 'userSpaceOnUse',
'x': 0, //-(value.strokeWidth / 2), // position for strokewidth
'y': 0, //-(value.strokeWidth / 2), // position for strokewidth
'width': 100,
'height': 100
});
var gridimg = svgdoc.createElementNS(svgns, "image");
assignAttributes(gridimg, {
'x': 0,
'y': 0,
'width': 100,
'height': 100
});
gridPattern.appendChild(gridimg);
$('#svgroot defs').append(gridPattern);
// grid-box
var gridBox = svgdoc.createElementNS(svgns, "rect");
assignAttributes(gridBox, {
'width': '100%',
'height': '100%',
'x': 0,
'y': 0,
'stroke-width': 0,
'stroke': 'none',
'fill': 'url(#gridpattern)',
'style': 'pointer-events: none; display:visible;'
});
$('#canvasGrid').append(gridBox);
// });
function updateGrid(zoom) {
// TODO: Try this with <line> elements, then compare performance difference
var bgwidth = +canvBG.attr('width');
var bgheight = +canvBG.attr('height');
var units = svgedit.units.getTypeMap();
var unit = units[svgEditor.curConfig.baseUnit]; // 1 = 1px
var r_intervals = [.01, .1, 1, 10, 100, 1000];
var d = 0;
var is_x = (d === 0);
var dim = is_x ? 'x' : 'y';
var lentype = is_x?'width':'height';
var c_elem = svgCanvas.getContentElem();
var content_d = c_elem.getAttribute(dim)-0;
var hcanv = hcanvas;
var u_multi = unit * zoom;
// Calculate the main number interval
var raw_m = 100 / u_multi;
var multi = 1;
for(var i = 0; i < r_intervals.length; i++) {
var num = r_intervals[i];
multi = num;
if(raw_m <= num) {
break;
}
}
var big_int = multi * u_multi;
// Set the canvas size to the width of the container
hcanv.width = big_int;
hcanv.height = big_int;
var ctx = hcanv.getContext("2d");
var ruler_d = 0;
var cur_d = .5;
var part = big_int / 10;
ctx.globalAlpha = 0.2;
ctx.strokeStyle = "#000";
for(var i = 1; i < 10; i++) {
var sub_d = Math.round(part * i) + .5;
// var line_num = (i % 2)?12:10;
var line_num = 0;
ctx.moveTo(sub_d, big_int);
ctx.lineTo(sub_d, line_num);
ctx.moveTo(big_int, sub_d);
ctx.lineTo(line_num ,sub_d);
}
ctx.stroke();
ctx.beginPath();
ctx.globalAlpha = 0.5;
ctx.moveTo(cur_d, big_int);
ctx.lineTo(cur_d, 0);
ctx.moveTo(big_int, cur_d);
ctx.lineTo(0, cur_d);
ctx.stroke();
var datauri = hcanv.toDataURL('image/png');
gridimg.setAttribute('width', big_int);
gridimg.setAttribute('height', big_int);
gridimg.parentNode.setAttribute('width', big_int);
gridimg.parentNode.setAttribute('height', big_int);
svgCanvas.setHref(gridimg, datauri);
}
return {
name: "view_grid",
zoomChanged: function(zoom) {
// update size
if(showGrid) updateGrid(zoom);
},
buttons: [{
id: "view_grid",
type: "menu",
after: "tool_wireframe",
panel: "view_menu",
title: "Show/Hide Grid",
events: {
'click': function() {
var gr = !$('#view_grid').hasClass('push_button_pressed');
if (gr) {
svgEditor.curConfig.showGrid = showGrid = true;
$('#view_grid').addClass('push_button_pressed');
$('#canvasGrid').attr('display', 'normal');
updateGrid(svgCanvas.getZoom());
}
else {
svgEditor.curConfig.showGrid = showGrid = false;
$('#view_grid').removeClass('push_button_pressed');
$('#canvasGrid').attr('display', 'none');
}
}
}
}]
};
});

View File

@ -1,78 +0,0 @@
/*
* ext-helloworld.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
*
*/
/*
This is a very basic SVG-Edit extension. It adds a "Hello World" button in
the left panel. Clicking on the button, and then the canvas will show the
user the point on the canvas that was clicked on.
*/
svgEditor.addExtension("Hello World", function() {
return {
name: "Hello World",
// For more notes on how to make an icon file, see the source of
// the hellorworld-icon.xml
svgicons: "extensions/helloworld-icon.xml",
// Multiple buttons can be added in this array
buttons: [{
// Must match the icon ID in helloworld-icon.xml
id: "hello_world",
// This indicates that the button will be added to the "mode"
// button panel on the left side
type: "mode",
// Tooltip text
title: "Say 'Hello World'",
// Events
events: {
'click': function() {
// The action taken when the button is clicked on.
// For "mode" buttons, any other button will
// automatically be de-pressed.
svgCanvas.setMode("hello_world");
}
}
}],
// This is triggered when the main mouse button is pressed down
// on the editor canvas (not the tool panels)
mouseDown: function() {
// Check the mode on mousedown
if(svgCanvas.getMode() == "hello_world") {
// The returned object must include "started" with
// a value of true in order for mouseUp to be triggered
return {started: true};
}
},
// This is triggered from anywhere, but "started" must have been set
// to true (see above). Note that "opts" is an object with event info
mouseUp: function(opts) {
// Check the mode on mouseup
if(svgCanvas.getMode() == "hello_world") {
var zoom = svgCanvas.getZoom();
// Get the actual coordinate by dividing by the zoom value
var x = opts.mouse_x / zoom;
var y = opts.mouse_y / zoom;
var text = "Hello World!\n\nYou clicked here: "
+ x + ", " + y;
// Show the text using the custom alert function
$.alert(text);
}
}
};
});

View File

@ -1,444 +0,0 @@
/*
* ext-imagelib.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
*
*/
svgEditor.addExtension("imagelib", function() {
var uiStrings = svgEditor.uiStrings;
$.extend(uiStrings, {
imagelib: {
select_lib: 'Select an image library',
show_list: 'Show library list',
import_single: 'Import single',
import_multi: 'Import multiple',
open: 'Open as new document'
}
});
var img_libs = [{
name: 'Demo library (local)',
url: 'extensions/imagelib/index.html',
description: 'Demonstration library for SVG-edit on this server'
},
{
name: 'IAN Symbol Libraries',
url: 'http://ian.umces.edu/symbols/catalog/svgedit/album_chooser.php',
description: 'Free library of illustrations'
}
];
var xlinkns = "http://www.w3.org/1999/xlink";
function closeBrowser() {
$('#imgbrowse_holder').hide();
}
function importImage(url) {
var newImage = svgCanvas.addSvgElementFromJson({
"element": "image",
"attr": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"id": svgCanvas.getNextId(),
"style": "pointer-events:inherit"
}
});
svgCanvas.clearSelection();
svgCanvas.addToSelection([newImage]);
svgCanvas.setImageURL(url);
}
var mode = 's';
var multi_arr = [];
var cur_meta;
var tranfer_stopped = false;
var pending = {};
window.addEventListener("message", function(evt) {
// Receive postMessage data
var response = evt.data;
if(!response) {
// Do nothing
return;
}
var char1 = response.charAt(0);
var svg_str;
var img_str;
if(char1 != "{" && tranfer_stopped) {
tranfer_stopped = false;
return;
}
if(char1 == '|') {
var secondpos = response.indexOf('|', 1);
var id = response.substr(1, secondpos-1);
response = response.substr(secondpos+1);
char1 = response.charAt(0);
}
// Hide possible transfer dialog box
$('#dialog_box').hide();
switch (char1) {
case '{':
// Metadata
tranfer_stopped = false;
var cur_meta = JSON.parse(response);
pending[cur_meta.id] = cur_meta;
var name = (cur_meta.name || 'file');
var message = uiStrings.notification.retrieving.replace('%s', name);
if(mode != 'm') {
$.process_cancel(message, function() {
tranfer_stopped = true;
// Should a message be sent back to the frame?
$('#dialog_box').hide();
});
} else {
var entry = $('<div>' + message + '</div>').data('id', cur_meta.id);
preview.append(entry);
cur_meta.entry = entry;
}
return;
case '<':
svg_str = true;
break;
case 'd':
if(response.indexOf('data:image/svg+xml') === 0) {
var pre = 'data:image/svg+xml;base64,';
var src = response.substring(pre.length);
response = svgCanvas.Utils.decode64(src);
svg_str = true;
break;
} else if(response.indexOf('data:image/') === 0) {
img_str = true;
break;
}
// Else fall through
default:
// TODO: See if there's a way to base64 encode the binary data stream
// var str = 'data:;base64,' + svgCanvas.Utils.encode64(response, true);
// Assume it's raw image data
// importImage(str);
// Don't give warning as postMessage may have been used by something else
if(mode !== 'm') {
closeBrowser();
} else {
pending[id].entry.remove();
}
// $.alert('Unexpected data was returned: ' + response, function() {
// if(mode !== 'm') {
// closeBrowser();
// } else {
// pending[id].entry.remove();
// }
// });
return;
}
switch (mode) {
case 's':
// Import one
if(svg_str) {
svgCanvas.importSvgString(response);
} else if(img_str) {
importImage(response);
}
closeBrowser();
break;
case 'm':
// Import multiple
multi_arr.push([(svg_str ? 'svg' : 'img'), response]);
var cur_meta = pending[id];
if(svg_str) {
if(cur_meta && cur_meta.name) {
var title = cur_meta.name;
} else {
// Try to find a title
var xml = new DOMParser().parseFromString(response, 'text/xml').documentElement;
var title = $(xml).children('title').first().text() || '(SVG #' + response.length + ')';
}
if(cur_meta) {
preview.children().each(function() {
if($(this).data('id') == id) {
if(cur_meta.preview_url) {
$(this).html('<img src="' + cur_meta.preview_url + '">' + title);
} else {
$(this).text(title);
}
submit.removeAttr('disabled');
}
});
} else {
preview.append('<div>'+title+'</div>');
submit.removeAttr('disabled');
}
} else {
if(cur_meta && cur_meta.preview_url) {
var title = cur_meta.name || '';
}
if(cur_meta && cur_meta.preview_url) {
var entry = '<img src="' + cur_meta.preview_url + '">' + title;
} else {
var entry = '<img src="' + response + '">';
}
if(cur_meta) {
preview.children().each(function() {
if($(this).data('id') == id) {
$(this).html(entry);
submit.removeAttr('disabled');
}
});
} else {
preview.append($('<div>').append(entry));
submit.removeAttr('disabled');
}
}
break;
case 'o':
// Open
if(!svg_str) break;
svgEditor.openPrep(function(ok) {
if(!ok) return;
svgCanvas.clear();
svgCanvas.setSvgString(response);
// updateCanvas();
});
closeBrowser();
break;
}
}, true);
var preview, submit;
function toggleMulti(show) {
$('#lib_framewrap, #imglib_opts').css({right: (show ? 200 : 10)});
if(!preview) {
preview = $('<div id=imglib_preview>').css({
position: 'absolute',
top: 45,
right: 10,
width: 180,
bottom: 45,
background: '#fff',
overflow: 'auto'
}).insertAfter('#lib_framewrap');
submit = $('<button disabled>Import selected</button>').appendTo('#imgbrowse').click(function() {
$.each(multi_arr, function(i) {
var type = this[0];
var data = this[1];
if(type == 'svg') {
svgCanvas.importSvgString(data);
} else {
importImage(data);
}
svgCanvas.moveSelectedElements(i*20, i*20, false);
});
preview.empty();
multi_arr = [];
$('#imgbrowse_holder').hide();
}).css({
position: 'absolute',
bottom: 10,
right: -10
});
}
preview.toggle(show);
submit.toggle(show);
}
function showBrowser() {
var browser = $('#imgbrowse');
if(!browser.length) {
$('<div id=imgbrowse_holder><div id=imgbrowse class=toolbar_button>\
</div></div>').insertAfter('#svg_docprops');
browser = $('#imgbrowse');
var all_libs = uiStrings.imagelib.select_lib;
var lib_opts = $('<ul id=imglib_opts>').appendTo(browser);
var frame = $('<iframe/>').prependTo(browser).hide().wrap('<div id=lib_framewrap>');
var header = $('<h1>').prependTo(browser).text(all_libs).css({
position: 'absolute',
top: 0,
left: 0,
width: '100%'
});
var cancel = $('<button>' + uiStrings.common.cancel + '</button>').appendTo(browser).click(function() {
$('#imgbrowse_holder').hide();
}).css({
position: 'absolute',
top: 5,
right: -10
});
var leftBlock = $('<span>').css({position:'absolute',top:5,left:10}).appendTo(browser);
var back = $('<button hidden>' + uiStrings.imagelib.show_list + '</button>').appendTo(leftBlock).click(function() {
frame.attr('src', 'about:blank').hide();
lib_opts.show();
header.text(all_libs);
back.hide();
}).css({
'margin-right': 5
}).hide();
var type = $('<select><option value=s>' +
uiStrings.imagelib.import_single + '</option><option value=m>' +
uiStrings.imagelib.import_multi + '</option><option value=o>' +
uiStrings.imagelib.open + '</option></select>').appendTo(leftBlock).change(function() {
mode = $(this).val();
switch (mode) {
case 's':
case 'o':
toggleMulti(false);
break;
case 'm':
// Import multiple
toggleMulti(true);
}
}).css({
'margin-top': 10
});
cancel.prepend($.getSvgIcon('cancel', true));
back.prepend($.getSvgIcon('tool_imagelib', true));
$.each(img_libs, function(i, opts) {
$('<li>').appendTo(lib_opts).text(opts.name).click(function() {
frame.attr('src', opts.url).show();
header.text(opts.name);
lib_opts.hide();
back.show();
}).append('<span>' + opts.description + '</span>');
});
} else {
$('#imgbrowse_holder').show();
}
}
return {
buttons: [{
id: "tool_imagelib",
type: "menu", // _flyout
position: 4,
panel: "file_menu",
title: "Image library",
events: {
"mouseup": showBrowser
}
}],
callback: function() {
$('<style>').text('\
#imgbrowse_holder {\
position: absolute;\
top: 0;\
left: 0;\
width: 100%;\
height: 100%;\
background-color: rgba(0, 0, 0, .5);\
z-index: 5;\
}\
\
#imgbrowse {\
position: absolute;\
top: 25px;\
left: 25px;\
right: 25px;\
bottom: 25px;\
min-width: 300px;\
min-height: 200px;\
background: #B0B0B0;\
border: 1px outset #777;\
}\
#imgbrowse h1 {\
font-size: 20px;\
margin: .4em;\
text-align: center;\
}\
#lib_framewrap,\
#imgbrowse > ul {\
position: absolute;\
top: 45px;\
left: 10px;\
right: 10px;\
bottom: 10px;\
background: white;\
margin: 0;\
padding: 0;\
}\
#imgbrowse > ul {\
overflow: auto;\
}\
#imgbrowse > div {\
border: 1px solid #666;\
}\
#imglib_preview > div {\
padding: 5px;\
font-size: 12px;\
}\
#imglib_preview img {\
display: block;\
margin: 0 auto;\
max-height: 100px;\
}\
#imgbrowse li {\
list-style: none;\
padding: .5em;\
background: #E8E8E8;\
border-bottom: 1px solid #B0B0B0;\
line-height: 1.2em;\
font-style: sans-serif;\
}\
#imgbrowse li > span {\
color: #666;\
font-size: 15px;\
display: block;\
}\
#imgbrowse li:hover {\
background: #FFC;\
cursor: pointer;\
}\
#imgbrowse iframe {\
width: 100%;\
height: 100%;\
border: 0;\
}\
').appendTo('head');
}
}
});

View File

@ -1,14 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<g id="tool_imagelib">
<svg width="201" height="211" xmlns="http://www.w3.org/2000/svg">
<g>
<path fill="#efe8b8" stroke="#d6c47c" stroke-linecap="round" d="m2.75,49.51761l56.56,-46.26761c12.73,8.25 25.71001,7 46.44,0.75l-56.03999,47.23944l-22.72002,25.01056l-24.23999,-26.73239z" id="svg_2" stroke-width="7"/>
<path fill="#a03333" stroke="#3f3f3f" d="m3.75,203.25002c14.33301,7 30.66699,7 46,0l0,-152.00002c-14.66699,8 -32.33301,8 -47,0l1,152.00002zm45.75,-152.25002l56.25,-46.75l0,151l-56,48.00002m-47.25,-154.25002l57.25,-46.5" id="svg_1" stroke-width="7" stroke-linecap="round"/>
<path fill="#efe8b8" stroke="#d6c47c" stroke-linecap="round" d="m49.75,49.51801l56.56,-46.26801c12.72998,8.25 25.71002,7 46.44,0.75l-56.03998,47.239l-22.72003,25.011l-24.23999,-26.73199z" stroke-width="7" id="svg_5"/>
<path fill="#2f8e2f" stroke="#3f3f3f" d="m50.75,202.25c14.33301,7 30.66699,7.04253 46,0.04253l0,-151.04253c-14.66699,8 -32.33301,8 -47,0l1,151zm45.75,-151.25l56.25,-46.75l0,144.01219l-56,51.98782m-47.25,-151.25002l57.25,-46.5" stroke-width="7" stroke-linecap="round" id="svg_6"/>
<path fill="#efe8b8" stroke="#d6c47c" stroke-linecap="round" d="m95.75,49.51801l56.56,-46.26801c12.72998,8.25 25.71002,7 46.44,0.75l-56.03998,47.239l-22.72003,25.011l-24.23999,-26.73199z" stroke-width="7" id="svg_10"/>
<path fill="#336393" stroke="#3f3f3f" d="m96.75,200.29445c14.33301,7 30.66699,7 46,0l0,-149.04445c-14.66699,8 -32.33301,8 -47,0l1,149.04445zm45.75,-149.29445l56.25,-46.75l0,148.04445l-56,48m-47.25,-151.29445l57.25,-46.5" stroke-width="7" stroke-linecap="round" id="svg_11"/>
</g>
</svg>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,576 +0,0 @@
/*
* ext-markers.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Will Schleter
* based on ext-arrows.js by Copyright(c) 2010 Alexis Deveria
*
* This extension provides for the addition of markers to the either end
* or the middle of a line, polyline, path, polygon.
*
* Markers may be either a graphic or arbitary text
*
* to simplify the coding and make the implementation as robust as possible,
* markers are not shared - every object has its own set of markers.
* this relationship is maintained by a naming convention between the
* ids of the markers and the ids of the object
*
* The following restrictions exist for simplicty of use and programming
* objects and their markers to have the same color
* marker size is fixed
* text marker font, size, and attributes are fixed
* an application specific attribute - se_type - is added to each marker element
* to store the type of marker
*
* TODO:
* remove some of the restrictions above
* add option for keeping text aligned to horizontal
* add support for dimension extension lines
*
*/
svgEditor.addExtension("Markers", function(S) {
var svgcontent = S.svgcontent,
addElem = S.addSvgElementFromJson,
selElems;
var mtypes = ['start','mid','end'];
var marker_prefix = 'se_marker_';
var id_prefix = 'mkr_';
// note - to add additional marker types add them below with a unique id
// and add the associated icon(s) to marker-icons.svg
// the geometry is normallized to a 100x100 box with the origin at lower left
// Safari did not like negative values for low left of viewBox
// remember that the coordinate system has +y downward
var marker_types = {
nomarker: {},
leftarrow:
{element:'path', attr:{d:'M0,50 L100,90 L70,50 L100,10 Z'}},
rightarrow:
{element:'path', attr:{d:'M100,50 L0,90 L30,50 L0,10 Z'}},
textmarker:
{element:'text', attr: {x:0, y:0,'stroke-width':0,'stroke':'none','font-size':75,'font-family':'serif','text-anchor':'left',
'xml:space': 'preserve'}},
forwardslash:
{element:'path', attr:{d:'M30,100 L70,0'}},
reverseslash:
{element:'path', attr:{d:'M30,0 L70,100'}},
verticalslash:
{element:'path', attr:{d:'M50,0 L50,100'}},
box:
{element:'path', attr:{d:'M20,20 L20,80 L80,80 L80,20 Z'}},
star:
{element:'path', attr:{d:'M10,30 L90,30 L20,90 L50,10 L80,90 Z'}},
xmark:
{element:'path', attr:{d:'M20,80 L80,20 M80,80 L20,20'}},
triangle:
{element:'path', attr:{d:'M10,80 L50,20 L80,80 Z'}},
mcircle:
{element:'circle', attr:{r:30, cx:50, cy:50}},
}
var lang_list = {
"en":[
{id: "start_marker_list", title: "Select start marker type" },
{id: "mid_marker_list", title: "Select mid marker type" },
{id: "end_marker_list", title: "Select end marker type" },
{id: "nomarker", title: "No Marker" },
{id: "leftarrow", title: "Left Arrow" },
{id: "rightarrow", title: "Right Arrow" },
{id: "textmarker", title: "Text Marker" },
{id: "forwardslash", title: "Forward Slash" },
{id: "reverseslash", title: "Reverse Slash" },
{id: "verticalslash", title: "Vertical Slash" },
{id: "box", title: "Box" },
{id: "star", title: "Star" },
{id: "xmark", title: "X" },
{id: "triangle", title: "Triangle" },
{id: "mcircle", title: "Circle" },
{id: "leftarrow_o", title: "Open Left Arrow" },
{id: "rightarrow_o", title: "Open Right Arrow" },
{id: "box_o", title: "Open Box" },
{id: "star_o", title: "Open Star" },
{id: "triangle_o", title: "Open Triangle" },
{id: "mcircle_o", title: "Open Circle" },
]
};
// duplicate shapes to support unfilled (open) marker types with an _o suffix
$.each(['leftarrow','rightarrow','box','star','mcircle','triangle'],function(i,v) {
marker_types[v+'_o'] = marker_types[v];
});
// elem = a graphic element will have an attribute like marker-start
// attr - marker-start, marker-mid, or marker-end
// returns the marker element that is linked to the graphic element
function getLinked(elem, attr) {
var str = elem.getAttribute(attr);
if(!str) return null;
var m = str.match(/\(\#(.*)\)/);
if(!m || m.length !== 2) {
return null;
}
return S.getElem(m[1]);
}
//toggles context tool panel off/on
//sets the controls with the selected element's settings
function showPanel(on) {
$('#marker_panel').toggle(on);
if ($('#marker_panel_title').length < 1) {
$('#marker_panel').prepend("<h4 id='marker_panel_title'>Arrows</h4>")
}
if(on) {
var el = selElems[0];
var val;
var ci;
$.each(mtypes, function(i, pos) {
var m=getLinked(el,"marker-"+pos);
var txtbox = $('#'+pos+'_marker');
if (!m) {
val='\\nomarker';
ci=val;
txtbox.hide() // hide text box
} else {
if (!m.attributes.se_type) return; // not created by this extension
val='\\'+m.attributes.se_type.textContent;
ci=val;
if (val=='\\textmarker') {
val=m.lastChild.textContent;
//txtbox.show(); // show text box
} else {
txtbox.hide() // hide text box
}
}
txtbox.val(val);
setIcon(pos,ci);
})
}
}
function addMarker(id, val) {
var txt_box_bg = '#ffffff';
var txt_box_border = 'none';
var txt_box_stroke_width = 0;
var marker = S.getElem(id);
if (marker) return;
if (val=='' || val=='\\nomarker') return;
var el = selElems[0];
var color = el.getAttribute('stroke');
//NOTE: Safari didn't like a negative value in viewBox
//so we use a standardized 0 0 100 100
//with 50 50 being mapped to the marker position
var refX = 50;
var refY = 50;
var viewBox = "0 0 100 100";
var markerWidth = 5;
var markerHeight = 5;
var strokeWidth = 10;
if (val.substr(0,1)=='\\') se_type=val.substr(1);
else se_type='textmarker';
if (!marker_types[se_type]) return; // an unknown type!
// create a generic marker
marker = addElem({
"element": "marker",
"attr": {
"id": id,
"markerUnits": "strokeWidth",
"orient": "auto",
"style": "pointer-events:none",
"se_type": se_type
}
});
if (se_type!='textmarker') {
var mel = addElem(marker_types[se_type]);
var fillcolor = color;
if (se_type.substr(-2)=='_o') fillcolor='none';
mel.setAttribute('fill',fillcolor);
mel.setAttribute('stroke',color);
mel.setAttribute('stroke-width',strokeWidth);
marker.appendChild(mel);
} else {
var text = addElem(marker_types[se_type]);
// have to add text to get bounding box
text.textContent = val;
var tb=text.getBBox();
//alert( tb.x + " " + tb.y + " " + tb.width + " " + tb.height);
var pad=1;
var bb = tb;
bb.x = 0;
bb.y = 0;
bb.width += pad*2;
bb.height += pad*2;
// shift text according to its size
text.setAttribute('x', pad);
text.setAttribute('y', bb.height - pad - tb.height/4); // kludge?
text.setAttribute('fill',color);
refX = bb.width/2+pad;
refY = bb.height/2+pad;
viewBox = bb.x + " " + bb.y + " " + bb.width + " " + bb.height;
markerWidth =bb.width/10;
markerHeight = bb.height/10;
var box = addElem({
"element": "rect",
"attr": {
"x": bb.x,
"y": bb.y,
"width": bb.width,
"height": bb.height,
"fill": txt_box_bg,
"stroke": txt_box_border,
"stroke-width": txt_box_stroke_width
}
});
marker.setAttribute("orient",0);
marker.appendChild(box);
marker.appendChild(text);
}
marker.setAttribute("viewBox",viewBox);
marker.setAttribute("markerWidth", markerWidth);
marker.setAttribute("markerHeight", markerHeight);
marker.setAttribute("refX", refX);
marker.setAttribute("refY", refY);
S.findDefs().appendChild(marker);
return marker;
}
function setMarker() {
var poslist={'start_marker':'start','mid_marker':'mid','end_marker':'end'};
var pos = poslist[this.id];
var marker_name = 'marker-'+pos;
var val = this.value;
var el = selElems[0];
var marker = getLinked(el, marker_name);
if (marker) $(marker).remove();
el.removeAttribute(marker_name);
if (val=='') val='\\nomarker';
if (val=='\\nomarker') {
setIcon(pos,val);
S.call("changed", selElems);
return;
}
// Set marker on element
var id = marker_prefix + pos + '_' + el.id;
addMarker(id, val);
svgCanvas.changeSelectedAttribute(marker_name, "url(#" + id + ")");
if (el.tagName == "line" && pos=='mid') el=convertline(el);
S.call("changed", selElems);
setIcon(pos,val);
}
function convertline(elem) {
// this routine came from the connectors extension
// it is needed because midpoint markers don't work with line elements
if (!(elem.tagName == "line")) return elem;
// Convert to polyline to accept mid-arrow
var x1 = elem.getAttribute('x1')-0;
var x2 = elem.getAttribute('x2')-0;
var y1 = elem.getAttribute('y1')-0;
var y2 = elem.getAttribute('y2')-0;
var id = elem.id;
var mid_pt = (' '+((x1+x2)/2)+','+((y1+y2)/2) + ' ');
var pline = addElem({
"element": "polyline",
"attr": {
"points": (x1+','+y1+ mid_pt +x2+','+y2),
"stroke": elem.getAttribute('stroke'),
"stroke-width": elem.getAttribute('stroke-width'),
"fill": "none",
"opacity": elem.getAttribute('opacity') || 1
}
});
$.each(mtypes, function(i, pos) { // get any existing marker definitions
var nam = 'marker-'+pos;
var m = elem.getAttribute(nam);
if (m) pline.setAttribute(nam,elem.getAttribute(nam));
});
var batchCmd = new S.BatchCommand();
batchCmd.addSubCommand(new S.RemoveElementCommand(elem, elem.parentNode));
batchCmd.addSubCommand(new S.InsertElementCommand(pline));
$(elem).after(pline).remove();
svgCanvas.clearSelection();
pline.id = id;
svgCanvas.addToSelection([pline]);
S.addCommandToHistory(batchCmd);
return pline;
}
// called when the main system modifies an object
// this routine changes the associated markers to be the same color
function colorChanged(elem) {
var color = elem.getAttribute('stroke');
$.each(mtypes, function(i, pos) {
var marker = getLinked(elem, 'marker-'+pos);
if (!marker) return;
if (!marker.attributes.se_type) return; //not created by this extension
var ch = marker.lastElementChild;
if (!ch) return;
var curfill = ch.getAttribute("fill");
var curstroke = ch.getAttribute("stroke")
if (curfill && curfill!='none') ch.setAttribute("fill",color);
if (curstroke && curstroke!='none') ch.setAttribute("stroke",color);
});
}
// called when the main system creates or modifies an object
// primary purpose is create new markers for cloned objects
function updateReferences(el) {
$.each(mtypes, function (i,pos) {
var id = marker_prefix + pos + '_' + el.id;
var marker_name = 'marker-'+pos;
var marker = getLinked(el, marker_name);
if (!marker || !marker.attributes.se_type) return; //not created by this extension
var url = el.getAttribute(marker_name);
if (url) {
var len = el.id.length;
var linkid = url.substr(-len-1,len);
if (el.id != linkid) {
var val = $('#'+pos+'_marker').attr('value');
addMarker(id, val);
svgCanvas.changeSelectedAttribute(marker_name, "url(#" + id + ")");
if (el.tagName == "line" && pos=='mid') el=convertline(el);
S.call("changed", selElems);
}
}
});
}
// simulate a change event a text box that stores the current element's marker type
function triggerTextEntry(pos,val) {
$('#'+pos+'_marker').val(val);
$('#'+pos+'_marker').change();
var txtbox = $('#'+pos+'_marker');
//if (val.substr(0,1)=='\\') txtbox.hide();
//else txtbox.show();
}
function setIcon(pos,id) {
if (id.substr(0,1)!='\\') id='\\textmarker'
var ci = '#'+id_prefix+pos+'_'+id.substr(1);
svgEditor.setIcon('#cur_' + pos +'_marker_list', $(ci).children());
$(ci).addClass('current').siblings().removeClass('current');
}
function setMarkerSet(obj) {
var parts = this.id.split('_');
var set = parts[2];
switch (set) {
case 'off':
triggerTextEntry('start','\\nomarker');
triggerTextEntry('mid','\\nomarker');
triggerTextEntry('end','\\nomarker');
break;
case 'dimension':
triggerTextEntry('start','\\leftarrow');
triggerTextEntry('end','\\rightarrow');
showTextPrompt('mid');
break;
case 'label':
triggerTextEntry('mid','\\nomarker');
triggerTextEntry('end','\\rightarrow');
showTextPrompt('start');
break;
}
}
function showTextPrompt(pos) {
var def = $('#'+pos+'_marker').val();
if (def.substr(0,1)=='\\') def='';
$.prompt('Enter text for ' + pos + ' marker', def , function(txt) { if (txt) triggerTextEntry(pos,txt); });
}
// callback function for a toolbar button click
function setArrowFromButton(obj) {
var parts = this.id.split('_');
var pos = parts[1];
var val = parts[2];
if (parts[3]) val+='_'+parts[3];
if (val!='textmarker') {
triggerTextEntry(pos,'\\'+val);
} else {
showTextPrompt(pos);
}
}
function getTitle(lang,id) {
var list = lang_list[lang];
for (var i in list) {
if (list[i].id==id) return list[i].title;
}
return id;
}
// build the toolbar button array from the marker definitions
// TODO: need to incorporate language specific titles
function buildButtonList() {
var buttons=[];
var i=0;
/*
buttons.push({
id:id_prefix + 'markers_off',
title:'Turn off all markers',
type:'context',
events: { 'click': setMarkerSet },
panel: 'marker_panel'
});
buttons.push({
id:id_prefix + 'markers_dimension',
title:'Dimension',
type:'context',
events: { 'click': setMarkerSet },
panel: 'marker_panel'
});
buttons.push({
id:id_prefix + 'markers_label',
title:'Label',
type:'context',
events: { 'click': setMarkerSet },
panel: 'marker_panel'
});
*/
$.each(mtypes,function(k,pos) {
var listname = pos + "_marker_list";
var def = true;
$.each(marker_types,function(id,v) {
var title = getTitle('en',id);
buttons.push({
id:id_prefix + pos + "_" + id,
svgicon:id,
title:title,
type:'context',
events: { 'click': setArrowFromButton },
panel:'marker_panel',
list: listname,
isDefault: def
});
def = false;
});
});
return buttons;
}
return {
name: "Markers",
svgicons: "extensions/markers-icons.xml",
buttons: buildButtonList(),
context_tools: [
{
type: "input",
panel: "marker_panel",
title: "Start marker",
id: "start_marker",
label: "Start",
size: 3,
events: { change: setMarker }
},{
type: "button-select",
panel: "marker_panel",
title: getTitle('en','start_marker_list'),
id: "start_marker_list",
colnum: 3,
events: { change: setArrowFromButton }
},{
type: "input",
panel: "marker_panel",
title: "Middle marker",
id: "mid_marker",
label: "Middle",
defval: "",
size: 3,
events: { change: setMarker }
},{
type: "button-select",
panel: "marker_panel",
title: getTitle('en','mid_marker_list'),
id: "mid_marker_list",
colnum: 3,
events: { change: setArrowFromButton }
},{
type: "input",
panel: "marker_panel",
title: "End marker",
id: "end_marker",
label: "End",
size: 3,
events: { change: setMarker }
},{
type: "button-select",
panel: "marker_panel",
title: getTitle('en','end_marker_list'),
id: "end_marker_list",
colnum: 3,
events: { change: setArrowFromButton }
} ],
callback: function() {
$('#marker_panel').addClass('toolset').hide();
},
addLangData: function(lang) {
return { data: lang_list[lang] };
},
selectedChanged: function(opts) {
// Use this to update the current selected elements
//console.log('selectChanged',opts);
selElems = opts.elems;
var i = selElems.length;
var marker_elems = ['line','path','polyline','polygon'];
while(i--) {
var elem = selElems[i];
if(elem && $.inArray(elem.tagName, marker_elems) != -1) {
if(opts.selectedElement && !opts.multiselected) {
showPanel(true);
} else {
showPanel(false);
}
} else {
showPanel(false);
}
}
},
elementChanged: function(opts) {
//console.log('elementChanged',opts);
var elem = opts.elems[0];
if(elem && (
elem.getAttribute("marker-start") ||
elem.getAttribute("marker-mid") ||
elem.getAttribute("marker-end")
)) {
colorChanged(elem);
updateReferences(elem);
}
changing_flag = false;
}
};
});

View File

@ -1,56 +0,0 @@
/*
* ext-server_moinsave.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
* 2011 MoinMoin:ReimarBauer
* adopted for moinmoins item storage. it sends in one post png and svg data
* (I agree to dual license my work to additional GPLv2 or later)
*
*/
svgEditor.addExtension("server_opensave", {
callback: function() {
var save_svg_action = '/+modify';
// Create upload target (hidden iframe)
var target = $('<iframe name="output_frame" src="#"/>').hide().appendTo('body');
svgEditor.setCustomHandlers({
save: function(win, data) {
var svg = "<?xml version=\"1.0\"?>\n" + data;
var qstr = $.param.querystring();
var name = qstr.substr(9).split('/+get/')[1];
var svg_data = svgedit.utilities.encode64(svg);
if(!$('#export_canvas').length) {
$('<canvas>', {id: 'export_canvas'}).hide().appendTo('body');
}
var c = $('#export_canvas')[0];
c.width = svgCanvas.contentW;
c.height = svgCanvas.contentH;
$.getScript('canvg/canvg.js', function() {
canvg(c, svg, {renderCallback: function() {
var datauri = c.toDataURL('image/png');
var uiStrings = svgEditor.uiStrings;
var png_data = svgedit.utilities.encode64(datauri);
var form = $('<form>').attr({
method: 'post',
action: save_svg_action + '/' + name,
target: 'output_frame'
}) .append('<input type="hidden" name="png_data" value="' + png_data + '">')
.append('<input type="hidden" name="filepath" value="' + svg_data + '">')
.append('<input type="hidden" name="filename" value="' + 'drawing.svg">')
.append('<input type="hidden" name="contenttype" value="application/x-svgdraw">')
.appendTo('body')
.submit().remove();
}})});
alert("Saved! Return to Item View!");
top.window.location = '/'+name;
},
});
}
});

View File

@ -1,180 +0,0 @@
/*
* ext-server_opensave.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
*
*/
svgEditor.addExtension("server_opensave", {
callback: function() {
var save_svg_action = 'extensions/filesave.php';
var save_png_action = 'extensions/filesave.php';
// Create upload target (hidden iframe)
var target = $('<iframe name="output_frame" src="#"/>').hide().appendTo('body');
svgEditor.setCustomHandlers({
save: function(win, data) {
var svg = "<?xml version=\"1.0\"?>\n" + data;
var title = svgCanvas.getDocumentTitle();
var filename = title.replace(/[^a-z0-9\.\_\-]+/gi, '_');
var form = $('<form>').attr({
method: 'post',
action: save_svg_action,
target: 'output_frame'
}) .append('<input type="hidden" name="output_svg" value="' + encodeURI(svg) + '">')
.append('<input type="hidden" name="filename" value="' + filename + '">')
.appendTo('body')
.submit().remove();
},
pngsave: function(win, data) {
var issues = data.issues;
if(!$('#export_canvas').length) {
$('<canvas>', {id: 'export_canvas'}).hide().appendTo('body');
}
var c = $('#export_canvas')[0];
c.width = svgCanvas.contentW;
c.height = svgCanvas.contentH;
canvg(c, data.svg, {renderCallback: function() {
var datauri = c.toDataURL('image/png');
var uiStrings = svgEditor.uiStrings;
var note = '';
// Check if there's issues
if(issues.length) {
var pre = "\n \u2022 ";
note += ("\n\n" + pre + issues.join(pre));
}
if(note.length) {
alert(note);
}
var title = svgCanvas.getDocumentTitle();
var filename = title.replace(/[^a-z0-9\.\_\-]+/gi, '_');
var form = $('<form>').attr({
method: 'post',
action: save_png_action,
target: 'output_frame'
}) .append('<input type="hidden" name="output_png" value="' + datauri + '">')
.append('<input type="hidden" name="filename" value="' + filename + '">')
.appendTo('body')
.submit().remove();
}});
}
});
// Do nothing if client support is found
if(window.FileReader) return;
var cancelled = false;
// Change these to appropriate script file
var open_svg_action = 'extensions/fileopen.php?type=load_svg';
var import_svg_action = 'extensions/fileopen.php?type=import_svg';
var import_img_action = 'extensions/fileopen.php?type=import_img';
// Set up function for PHP uploader to use
svgEditor.processFile = function(str64, type) {
if(cancelled) {
cancelled = false;
return;
}
$('#dialog_box').hide();
if(type != 'import_img') {
var xmlstr = svgCanvas.Utils.decode64(str64);
}
switch ( type ) {
case 'load_svg':
svgCanvas.clear();
svgCanvas.setSvgString(xmlstr);
svgEditor.updateCanvas();
break;
case 'import_svg':
svgCanvas.importSvgString(xmlstr);
svgEditor.updateCanvas();
break;
case 'import_img':
svgCanvas.setGoodImage(str64);
break;
}
}
// Create upload form
var open_svg_form = $('<form>');
open_svg_form.attr({
enctype: 'multipart/form-data',
method: 'post',
action: open_svg_action,
target: 'output_frame'
});
// Create import form
var import_svg_form = open_svg_form.clone().attr('action', import_svg_action);
// Create image form
var import_img_form = open_svg_form.clone().attr('action', import_img_action);
// It appears necessory to rebuild this input every time a file is
// selected so the same file can be picked and the change event can fire.
function rebuildInput(form) {
form.empty();
var inp = $('<input type="file" name="svg_file">').appendTo(form);
function submit() {
// This submits the form, which returns the file data using svgEditor.uploadSVG
form.submit();
rebuildInput(form);
$.process_cancel("Uploading...", function() {
cancelled = true;
$('#dialog_box').hide();
});
}
if(form[0] == open_svg_form[0]) {
inp.change(function() {
// This takes care of the "are you sure" dialog box
svgEditor.openPrep(function(ok) {
if(!ok) {
rebuildInput(form);
return;
}
submit();
});
});
} else {
inp.change(function() {
// This submits the form, which returns the file data using svgEditor.uploadSVG
submit();
});
}
}
// Create the input elements
rebuildInput(open_svg_form);
rebuildInput(import_svg_form);
rebuildInput(import_img_form);
// Add forms to buttons
$("#tool_open").show().prepend(open_svg_form);
$("#tool_import").show().prepend(import_svg_form);
$("#tool_image").prepend(import_img_form);
}
});

View File

@ -1,357 +0,0 @@
/*
* ext-shapes.js
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Christian Tzurcanu
* Copyright(c) 2010 Alexis Deveria
*
*/
svgEditor.addExtension("shapes", function() {
var current_d, cur_shape_id;
var canv = svgEditor.canvas;
var cur_shape;
var start_x, start_y;
var svgroot = canv.getRootElem();
var lastBBox = {};
// This populates the category list
var categories = {
basic: 'Basic',
object: 'Objects',
symbol: 'Symbols',
arrow: 'Arrows',
flowchart: 'Flowchart',
animal: 'Animals',
game: 'Cards & Chess',
dialog_balloon: 'Dialog balloons',
electronics: 'Electronics',
math: 'Mathematical',
music: 'Music',
weather: 'Weather &amp; Time',
ui: 'User Interface',
social: 'Social Web',
};
var library = {
'basic': {
data: {
'heart': 'm150,73c61,-175 300,0 0,225c-300,-225 -61,-400 0,-225z',
'frame': 'm0,0l300,0l0,300l-300,0zm35,-265l0,230l230,0l0,-230z',
'donut': 'm1,150l0,0c0,-82.29042 66.70958,-149 149,-149l0,0c39.51724,0 77.41599,15.69816 105.35889,43.64108c27.94293,27.94293 43.64111,65.84165 43.64111,105.35892l0,0c0,82.29041 -66.70958,149 -149,149l0,0c-82.29041,0 -149,-66.70959 -149,-149zm74.5,0l0,0c0,41.1452 33.35481,74.5 74.5,74.5c41.14522,0 74.5,-33.3548 74.5,-74.5c0,-41.1452 -33.3548,-74.5 -74.5,-74.5l0,0c-41.14519,0 -74.5,33.35481 -74.5,74.5z',
"triangle": "m1,280.375l149,-260.75l149,260.75z",
"right_triangle": "m1,299l0,-298l298,298z",
"diamond": "m1,150l149,-149l149,149l-149,149l-149,-149z",
"pentagon": "m1.00035,116.97758l148.99963,-108.4053l148.99998,108.4053l-56.91267,175.4042l-184.1741,0l-56.91284,-175.4042z",
"hexagon": "m1,149.99944l63.85715,-127.71428l170.28572,0l63.85713,127.71428l-63.85713,127.71428l-170.28572,0l-63.85715,-127.71428z",
"septagon1": "m0.99917,191.06511l29.51249,-127.7108l119.48833,-56.83673l119.48836,56.83673l29.51303,127.7108l-82.69087,102.41679l-132.62103,0l-82.69031,-102.41679z",
"heptagon": "m1,88.28171l87.28172,-87.28171l123.43653,0l87.28172,87.28171l0,123.43654l-87.28172,87.28172l-123.43653,0l-87.28172,-87.28172l0,-123.43654z",
"decagon": "m1,150.00093l28.45646,-88.40318l74.49956,-54.63682l92.08794,0l74.50002,54.63682l28.45599,88.40318l-28.45599,88.40318l-74.50002,54.63681l-92.08794,0l-74.49956,-54.63681l-28.45646,-88.40318z",
"dodecagon": "m1,110.07421l39.92579,-69.14842l69.14842,-39.92579l79.85159,0l69.14842,39.92579l39.92578,69.14842l0,79.85159l-39.92578,69.14842l-69.14842,39.92578l-79.85159,0l-69.14842,-39.92578l-39.92579,-69.14842l0,-79.85159z",
"star_points_5": "m1,116.58409l113.82668,0l35.17332,-108.13487l35.17334,108.13487l113.82666,0l-92.08755,66.83026l35.17514,108.13487l-92.08759,-66.83208l-92.08757,66.83208l35.17515,-108.13487l-92.08758,-66.83026z",
"trapezoid": "m1,299l55.875,-298l186.25001,0l55.87498,298z",
"arrow_up": "m1.49805,149.64304l148.50121,-148.00241l148.50121,148.00241l-74.25061,0l0,148.71457l-148.5012,0l0,-148.71457z",
"vertical_scrool": "m37.375,261.625l0,-242.9375l0,0c0,-10.32083 8.36669,-18.6875 18.6875,-18.6875l224.25,0c10.32083,0 18.6875,8.36667 18.6875,18.6875c0,10.32081 -8.36667,18.6875 -18.6875,18.6875l-18.6875,0l0,242.9375c0,10.32083 -8.36668,18.6875 -18.6875,18.6875l-224.25,0l0,0c-10.32083,0 -18.6875,-8.36667 -18.6875,-18.6875c0,-10.32083 8.36667,-18.6875 18.6875,-18.6875zm37.375,-261.625l0,0c10.32081,0 18.6875,8.36667 18.6875,18.6875c0,10.32081 -8.36669,18.6875 -18.6875,18.6875c-5.1604,0 -9.34375,-4.18335 -9.34375,-9.34375c0,-5.16041 4.18335,-9.34375 9.34375,-9.34375l18.6875,0m186.875,18.6875l-205.5625,0m-37.375,224.25l0,0c5.1604,0 9.34375,4.18335 9.34375,9.34375c0,5.1604 -4.18335,9.34375 -9.34375,9.34375l18.6875,0m-18.6875,18.6875l0,0c10.32081,0 18.6875,-8.36667 18.6875,-18.6875l0,-18.6875",
"dialog_balloon_1": "m0.99786,35.96579l0,0c0,-19.31077 15.28761,-34.96524 34.14583,-34.96524l15.52084,0l0,0l74.50001,0l139.68748,0c9.05606,0 17.74118,3.68382 24.14478,10.24108c6.40356,6.55726 10.00107,15.45081 10.00107,24.72416l0,87.41311l0,0l0,52.44785l0,0c0,19.31078 -15.2876,34.96524 -34.14584,34.96524l-139.68748,0l-97.32507,88.90848l22.82506,-88.90848l-15.52084,0c-18.85822,0 -34.14583,-15.65446 -34.14583,-34.96524l0,0l0,-52.44785l0,0z",
"cloud": "m182.05086,34.31005c-0.64743,0.02048 -1.27309,0.07504 -1.92319,0.13979c-10.40161,1.03605 -19.58215,7.63722 -24.24597,17.4734l-2.47269,7.44367c0.53346,-2.57959 1.35258,-5.08134 2.47269,-7.44367c-8.31731,-8.61741 -19.99149,-12.59487 -31.52664,-10.72866c-11.53516,1.8662 -21.55294,9.3505 -27.02773,20.19925c-15.45544,-9.51897 -34.72095,-8.94245 -49.62526,1.50272c-14.90431,10.44516 -22.84828,28.93916 -20.43393,47.59753l1.57977,7.58346c-0.71388,-2.48442 -1.24701,-5.01186 -1.57977,-7.58346l-0.2404,0.69894c-12.95573,1.4119 -23.58103,11.46413 -26.34088,24.91708c-2.75985,13.45294 2.9789,27.25658 14.21789,34.21291l17.54914,4.26352c-6.1277,0.50439 -12.24542,-0.9808 -17.54914,-4.26352c-8.66903,9.71078 -10.6639,24.08736 -4.94535,35.96027c5.71854,11.87289 17.93128,18.70935 30.53069,17.15887l7.65843,-2.02692c-2.46413,1.0314 -5.02329,1.70264 -7.65843,2.02692c7.15259,13.16728 19.01251,22.77237 32.93468,26.5945c13.92217,3.82214 28.70987,1.56322 41.03957,-6.25546c10.05858,15.86252 27.91113,24.19412 45.81322,21.38742c17.90208,-2.8067 32.66954,-16.26563 37.91438,-34.52742l1.82016,-10.20447c-0.27254,3.46677 -0.86394,6.87508 -1.82016,10.20447c12.31329,8.07489 27.80199,8.52994 40.52443,1.18819c12.72244,-7.34175 20.6609,-21.34155 20.77736,-36.58929l-4.56108,-22.7823l-17.96776,-15.41455c13.89359,8.70317 22.6528,21.96329 22.52884,38.19685c16.5202,0.17313 30.55292,-13.98268 36.84976,-30.22897c6.29684,-16.24631 3.91486,-34.76801 -6.2504,-48.68089c4.21637,-10.35873 3.96622,-22.14172 -0.68683,-32.29084c-4.65308,-10.14912 -13.23602,-17.69244 -23.55914,-20.65356c-2.31018,-13.45141 -11.83276,-24.27162 -24.41768,-27.81765c-12.58492,-3.54603 -25.98557,0.82654 -34.41142,11.25287l-5.11707,8.63186c1.30753,-3.12148 3.01521,-6.03101 5.11707,-8.63186c-5.93959,-8.19432 -15.2556,-12.8181 -24.96718,-12.51096z",
"cylinder": "m299.0007,83.77844c0,18.28676 -66.70958,33.11111 -149.00002,33.11111m149.00002,-33.11111l0,0c0,18.28676 -66.70958,33.11111 -149.00002,33.11111c-82.29041,0 -148.99997,-14.82432 -148.99997,-33.11111m0,0l0,0c0,-18.28674 66.70956,-33.1111 148.99997,-33.1111c82.29044,0 149.00002,14.82436 149.00002,33.1111l0,132.44449c0,18.28674 -66.70958,33.11105 -149.00002,33.11105c-82.29041,0 -148.99997,-14.82431 -148.99997,-33.11105z",
"arrow_u_turn": "m1.00059,299.00055l0,-167.62497l0,0c0,-72.00411 58.37087,-130.37499 130.375,-130.37499l0,0l0,0c34.57759,0 67.73898,13.7359 92.18906,38.18595c24.45006,24.45005 38.18593,57.61144 38.18593,92.18904l0,18.625l37.24997,0l-74.49995,74.50002l-74.50002,-74.50002l37.25,0l0,-18.625c0,-30.8589 -25.0161,-55.87498 -55.87498,-55.87498l0,0l0,0c-30.85892,0 -55.875,25.01608 -55.875,55.87498l0,167.62497z",
"arrow_left_up": "m0.99865,224.5l74.50004,-74.5l0,37.25l111.74991,0l0,-111.75l-37.25,0l74.5,-74.5l74.5,74.5l-37.25,0l0,186.25l-186.24989,0l0,37.25l-74.50005,-74.5z",
"maximize": "m1.00037,150.34581l55.30305,-55.30267l0,27.65093l22.17356,0l0,-44.21833l44.21825,0l0,-22.17357l-27.65095,0l55.30267,-55.30292l55.3035,55.30292l-27.65175,0l0,22.17357l44.21835,0l0,44.21833l22.17357,0l0,-27.65093l55.30345,55.30267l-55.30345,55.3035l0,-27.65175l-22.17357,0l0,44.21834l-44.21835,0l0,22.17355l27.65175,0l-55.3035,55.30348l-55.30267,-55.30348l27.65095,0l0,-22.17355l-44.21825,0l0,-44.21834l-22.17356,0l0,27.65175l-55.30305,-55.3035z",
"cross": "m0.99844,99.71339l98.71494,0l0,-98.71495l101.26279,0l0,98.71495l98.71495,0l0,101.2628l-98.71495,0l0,98.71494l-101.26279,0l0,-98.71494l-98.71494,0z",
"plaque": "m-0.00197,49.94376l0,0c27.5829,0 49.94327,-22.36036 49.94327,-49.94327l199.76709,0l0,0c0,27.5829 22.36037,49.94327 49.94325,49.94327l0,199.7671l0,0c-27.58289,0 -49.94325,22.36034 -49.94325,49.94325l-199.76709,0c0,-27.58292 -22.36037,-49.94325 -49.94327,-49.94325z",
"page": "m249.3298,298.99744l9.9335,-39.73413l39.73413,-9.93355l-49.66763,49.66768l-248.33237,0l0,-298.00001l298.00001,0l0,248.33234"
},
buttons: []
}
};
var cur_lib = library.basic;
var mode_id = 'shapelib';
function loadIcons() {
$('#shape_buttons').empty();
// Show lib ones
$('#shape_buttons').append(cur_lib.buttons);
}
function loadLibrary(cat_id) {
var lib = library[cat_id];
if(!lib) {
$('#shape_buttons').html('Loading...');
$.getJSON('extensions/shapelib/' + cat_id + '.json', function(result, textStatus) {
cur_lib = library[cat_id] = {
data: result.data,
size: result.size,
fill: result.fill
}
makeButtons(cat_id, result);
loadIcons();
});
return;
}
cur_lib = lib;
if(!lib.buttons.length) makeButtons(cat_id, lib);
loadIcons();
}
function makeButtons(cat, shapes) {
$('.tool_button, .tool_button_current').addClass("loaded")
var size = cur_lib.size || 300;
var fill = cur_lib.fill || false;
var off = size * .05;
var vb = [-off, -off, size + off*2, size + off*2].join(' ');
var stroke = fill ? 0: (size/30);
var shape_icon = new DOMParser().parseFromString(
'<svg xmlns="http://www.w3.org/2000/svg"><svg viewBox="' + vb + '"><path fill="#333" stroke="transparent" stroke-width="' + stroke + '" /><\/svg><\/svg>',
'text/xml');
var width = 40;
var height = 40;
shape_icon.documentElement.setAttribute('width', width);
shape_icon.documentElement.setAttribute('height', height);
var svg_elem = $(document.importNode(shape_icon.documentElement,true));
var data = shapes.data;
cur_lib.buttons = [];
for(var id in data) {
var path_d = data[id];
var icon = svg_elem.clone();
if (path_d.charAt(path_d.length-1) == "x") {
var size = 32;
var off = size * .05;
var vb = [-off, -off, size + off*2, size + off*2].join(' ')
icon.find('svg').attr('viewBox', vb)
path_d.replace("x", "")
}
icon.find('path').attr('d', path_d);
var icon_btn = icon.wrap('<div class="tool_button">').parent().attr({
id: mode_id + '_' + id,
title: id
});
// Store for later use
cur_lib.buttons.push(icon_btn[0]);
}
}
return {
svgicons: "extensions/ext-shapes.xml",
buttons: [{
id: "tool_shapelib",
type: "mode_flyout", // _flyout
position: 6,
title: "Shape library",
events: {
"click": function() {
canv.setMode(mode_id);
}
}
}],
callback: function() {
var btn_div = $('<div id="shape_buttons">');
$('#tools_shapelib > *').wrapAll(btn_div);
var shower = $('#tools_shapelib_show');
loadLibrary('basic');
// Do mouseup on parent element rather than each button
$('#shape_buttons').mouseup(function(evt) {
var btn = $(evt.target).closest('div.tool_button');
if(!btn.length) return;
var copy = btn.children().clone().attr({width: 24, height: 24});
shower.children(':not(.flyout_arrow_horiz)').remove();
shower
.append(copy)
.attr('data-curopt', '#' + btn[0].id) // This sets the current mode
.mouseup();
canv.setMode(mode_id);
cur_shape_id = btn[0].id.substr((mode_id+'_').length);
current_d = cur_lib.data[cur_shape_id];
$('.tools_flyout').fadeOut();
});
//
var shape_cats = $('<div id="shape_cats">');
var cat_str = '';
$.each(categories, function(id, label) {
cat_str += '<div data-cat=' + id + '>' + label + '</div>';
});
shape_cats.html(cat_str).children().bind('mouseup', function() {
var catlink = $(this);
catlink.siblings().removeClass('current');
catlink.addClass('current');
loadLibrary(catlink.attr('data-cat'));
// Get stuff
return false;
});
shape_cats.children().eq(0).addClass('current');
$('#tools_shapelib').prepend(shape_cats);
shower.mouseup(function() {
canv.setMode(current_d ? mode_id : 'select');
});
$('#tool_shapelib').remove();
var h = $('#tools_shapelib').height();
$('#tools_shapelib').css({
'margin-top': -(h/2),
'margin-left': 3
});
},
mouseDown: function(opts) {
var mode = canv.getMode();
if(mode !== mode_id) return;
var e = opts.event;
var x = start_x = opts.start_x;
var y = start_y = opts.start_y;
var cur_style = canv.getStyle();
cur_shape = canv.addSvgElementFromJson({
"element": "path",
"curStyles": true,
"attr": {
"d": current_d,
"id": canv.getNextId(),
"opacity": cur_style.opacity / 2,
"style": "pointer-events:none"
}
});
cur_shape.setAttribute("d", current_d);
// Make sure shape uses absolute values
if(/[a-z]/.test(current_d)) {
current_d = cur_lib.data[cur_shape_id] = canv.pathActions.convertPath(cur_shape);
cur_shape.setAttribute('d', current_d);
canv.pathActions.fixEnd(cur_shape);
}
cur_shape.setAttribute('transform', "translate(" + x + "," + y + ") scale(0.005) translate(" + -x + "," + -y + ")");
// console.time('b');
canv.recalculateDimensions(cur_shape);
console.log(cur_shape.getAttribute('d'));
var tlist = canv.getTransformList(cur_shape);
lastBBox = cur_shape.getBBox();
return {
started: true
}
// current_d
},
mouseMove: function(opts) {
var mode = canv.getMode();
if(mode !== mode_id) return;
var zoom = canv.getZoom();
var evt = opts.event
var x = opts.mouse_x/zoom;
var y = opts.mouse_y/zoom;
var tlist = canv.getTransformList(cur_shape),
box = cur_shape.getBBox(),
left = box.x, top = box.y, width = box.width,
height = box.height;
var dx = (x-start_x), dy = (y-start_y);
var newbox = {
'x': Math.min(start_x,x),
'y': Math.min(start_y,y),
'width': Math.abs(x-start_x),
'height': Math.abs(y-start_y)
};
var ts = null,
tx = 0, ty = 0,
sy = height ? (height+dy)/height : 1,
sx = width ? (width+dx)/width : 1;
var sx = newbox.width / lastBBox.width;
var sy = newbox.height / lastBBox.height;
sx = sx || 1;
sy = sy || 1;
// Not perfect, but mostly works...
if(x < start_x) {
tx = lastBBox.width;
}
if(y < start_y) ty = lastBBox.height;
// update the transform list with translate,scale,translate
var translateOrigin = svgroot.createSVGTransform(),
scale = svgroot.createSVGTransform(),
translateBack = svgroot.createSVGTransform();
translateOrigin.setTranslate(-(left+tx), -(top+ty));
if(evt.shiftKey) {
var max = Math.min(Math.abs(sx), Math.abs(sy));
sx = max * (sx < 0 ? -1 : 1);
sy = max * (sy < 0 ? -1 : 1);
}
scale.setScale(sx,sy);
translateBack.setTranslate(left+tx, top+ty);
var N = tlist.numberOfItems;
tlist.appendItem(translateBack);
tlist.appendItem(scale);
tlist.appendItem(translateOrigin);
canv.recalculateDimensions(cur_shape);
lastBBox = cur_shape.getBBox();
},
mouseUp: function(opts) {
var mode = canv.getMode();
if(mode !== mode_id) return;
if(opts.mouse_x == start_x && opts.mouse_y == start_y) {
return {
keep: false,
element: cur_shape,
started: false
}
}
return {
keep: true,
element: cur_shape,
started: false
}
}
}
});

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<g id="tool_shapelib">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="#2f2f2c" d="M0,0v24h24V0H0z M18.649,22.23L12,18.736L5.352,22.23l1.27-7.402L1.243,9.585l7.433-1.081L12,1.77
l3.325,6.735l7.432,1.081l-5.377,5.243L18.649,22.23z"/>
</svg>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 388 B

View File

@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<g id="tool_eyedropper">
<svg id="Untitled-Page%201" viewBox="0 0 27 27" style="background-color:#ffffff00" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
x="0px" y="0px" width="27px" height="27px"
>
<path d="M 6.0622 22.6906 L 17.3661 11.4659 L 15.6438 9.756 L 4.3402 20.9804 C 4.1126 22.0362 3.5914 23.0909 3.0734 23.9488 C 3.9369 23.4341 4.9996 22.9165 6.0622 22.6906 ZM 27 27 L 27 3.065 C 26.9997 4.5607 25.2111 6.3359 25.2111 6.3359 L 22.3407 9.1861 L 22.5324 9.3765 C 23.0605 9.9007 23.0608 10.7515 22.5324 11.2762 L 20.8101 12.9861 C 20.2822 13.5104 19.4248 13.5104 18.8972 12.9861 L 18.5143 12.6058 L 6.8496 24.1882 L 6.5935 24.2307 C 4.5412 24.57 2.2243 26.5011 2.2007 26.5206 L 1.6309 27 L 27 27 ZM 0 27 L 1.6309 27 L 1.1024 26.4753 L 0.5283 25.9053 L 0 25.3808 L 0 27 ZM 0 0 L 0 25.3808 L 0.4832 24.8147 C 0.502 24.792 2.4485 22.4828 2.7891 20.4531 L 2.8317 20.1984 L 14.496 8.6164 L 14.1134 8.2364 C 13.5853 7.7121 13.5853 6.8612 14.1134 6.3364 L 15.8353 4.6266 C 16.3638 4.102 17.2206 4.102 17.7488 4.6266 L 20.6189 1.7766 C 20.6189 1.7766 23.4892 -1.0736 25.0202 0.4462 L 25.7857 1.2062 L 26.5505 1.9661 C 26.8729 2.2862 27.0001 2.666 27 3.065 L 27 0 L 0 0 Z" fill="#2f2f2c"/>
</svg>
</g>
<g id="svg_eof"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 718 B

View File

@ -1,31 +0,0 @@
<!doctype html>
<?php
/*
* fileopen.php
* To be used with ext-server_opensave.js for SVG-edit
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
*
*/
// Very minimal PHP file, all we do is Base64 encode the uploaded file and
// return it to the editor
$file = $_FILES['svg_file']['tmp_name'];
$output = file_get_contents($file);
$type = $_REQUEST['type'];
$prefix = '';
// Make Data URL prefix for import image
if($type == 'import_img') {
$info = getimagesize($file);
$prefix = 'data:' . $info['mime'] . ';base64,';
}
?>
<script>
window.top.window.svgEditor.processFile("<?php echo $prefix . base64_encode($output); ?>", "<?php echo htmlentities($type); ?>");
</script>

View File

@ -1,44 +0,0 @@
<?php
/*
* filesave.php
* To be used with ext-server_opensave.js for SVG-edit
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Alexis Deveria
*
*/
if(!isset($_POST['output_svg']) && !isset($_POST['output_png'])) {
die('post fail');
}
$file = '';
$suffix = isset($_POST['output_svg'])?'.svg':'.png';
if(isset($_POST['filename']) && strlen($_POST['filename']) > 0) {
$file = $_POST['filename'] . $suffix;
} else {
$file = 'image' . $suffix;
}
if($suffix == '.svg') {
$mime = 'image/svg+xml';
$contents = rawurldecode($_POST['output_svg']);
} else {
$mime = 'image/png';
$contents = $_POST['output_png'];
$pos = (strpos($contents, 'base64,') + 7);
$contents = base64_decode(substr($contents, $pos));
}
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=" . $file);
header("Content-Type: " . $mime);
header("Content-Transfer-Encoding: binary");
echo $contents;
?>

View File

@ -1,96 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<g id="tool_foreign">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 84 84">
<g fill="#444" opacity="0.2" transform="translate(6,6)">
<path d="M42.8,74.3c0,4.3,0,5.9,11.8,5.9l4.1,0l0,3.8c-4.5-0.4-16.1-0.4-21.2-0.3c-5.1,0-16.6,0-21,0.4l0-3.8l4.1,0
c11.8,0,11.8-1.7,11.8-5.9l0-6.9C13.9,65.6,0,54.6,0,42c0-12.2,13.3-23.5,32.4-25.4l0-6.9c0-4.3,0-5.9-11.8-5.9l-4.1,0l0-3.8
c4.5,0.4,16.1,0.4,21.2,0.3c5.1,0,16.6,0,21-0.4l0,3.8l-4.1,0c-11.8,0-11.8,1.7-11.8,5.9l0,6.9C61.6,18.1,75.8,29.2,75.8,42
c0,12.4-13.8,23.9-33.1,25.4L42.8,74.3z M32.4,19.4c-18.7,2.5-19.9,16.2-19.9,22.6c0,7.6,2.3,20.2,20,22.5L32.4,19.4z M42.7,64.7
c18.8-2.2,20.7-15.4,20.6-22.8c0-9.3-3.5-20.6-20.7-22.6L42.7,64.7z"/>
</g>
<g fill="#444" opacity="0.3" transform="translate(4,4)">
<path d="M42.8,74.3c0,4.3,0,5.9,11.8,5.9l4.1,0l0,3.8c-4.5-0.4-16.1-0.4-21.2-0.3c-5.1,0-16.6,0-21,0.4l0-3.8l4.1,0
c11.8,0,11.8-1.7,11.8-5.9l0-6.9C13.9,65.6,0,54.6,0,42c0-12.2,13.3-23.5,32.4-25.4l0-6.9c0-4.3,0-5.9-11.8-5.9l-4.1,0l0-3.8
c4.5,0.4,16.1,0.4,21.2,0.3c5.1,0,16.6,0,21-0.4l0,3.8l-4.1,0c-11.8,0-11.8,1.7-11.8,5.9l0,6.9C61.6,18.1,75.8,29.2,75.8,42
c0,12.4-13.8,23.9-33.1,25.4L42.8,74.3z M32.4,19.4c-18.7,2.5-19.9,16.2-19.9,22.6c0,7.6,2.3,20.2,20,22.5L32.4,19.4z M42.7,64.7
c18.8-2.2,20.7-15.4,20.6-22.8c0-9.3-3.5-20.6-20.7-22.6L42.7,64.7z"/>
</g>
<g fill="#444" opacity="0.5" transform="translate(2,2)">
<path d="M42.8,74.3c0,4.3,0,5.9,11.8,5.9l4.1,0l0,3.8c-4.5-0.4-16.1-0.4-21.2-0.3c-5.1,0-16.6,0-21,0.4l0-3.8l4.1,0
c11.8,0,11.8-1.7,11.8-5.9l0-6.9C13.9,65.6,0,54.6,0,42c0-12.2,13.3-23.5,32.4-25.4l0-6.9c0-4.3,0-5.9-11.8-5.9l-4.1,0l0-3.8
c4.5,0.4,16.1,0.4,21.2,0.3c5.1,0,16.6,0,21-0.4l0,3.8l-4.1,0c-11.8,0-11.8,1.7-11.8,5.9l0,6.9C61.6,18.1,75.8,29.2,75.8,42
c0,12.4-13.8,23.9-33.1,25.4L42.8,74.3z M32.4,19.4c-18.7,2.5-19.9,16.2-19.9,22.6c0,7.6,2.3,20.2,20,22.5L32.4,19.4z M42.7,64.7
c18.8-2.2,20.7-15.4,20.6-22.8c0-9.3-3.5-20.6-20.7-22.6L42.7,64.7z"/>
</g>
<g fill="#0000CC">
<path id="xyz321" d="M42.8,74.3c0,4.3,0,5.9,11.8,5.9l4.1,0l0,3.8c-4.5-0.4-16.1-0.4-21.2-0.3c-5.1,0-16.6,0-21,0.4l0-3.8l4.1,0
c11.8,0,11.8-1.7,11.8-5.9l0-6.9C13.9,65.6,0,54.6,0,42c0-12.2,13.3-23.5,32.4-25.4l0-6.9c0-4.3,0-5.9-11.8-5.9l-4.1,0l0-3.8
c4.5,0.4,16.1,0.4,21.2,0.3c5.1,0,16.6,0,21-0.4l0,3.8l-4.1,0c-11.8,0-11.8,1.7-11.8,5.9l0,6.9C61.6,18.1,75.8,29.2,75.8,42
c0,12.4-13.8,23.9-33.1,25.4L42.8,74.3z M32.4,19.4c-18.7,2.5-19.9,16.2-19.9,22.6c0,7.6,2.3,20.2,20,22.5L32.4,19.4z M42.7,64.7
c18.8-2.2,20.7-15.4,20.6-22.8c0-9.3-3.5-20.6-20.7-22.6L42.7,64.7z"/>
</g>
</svg>
</g>
<g id="edit_foreign">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="34 38 170 170" overflow="hidden">
<g fill="#000088">
<path d="M30.1,63.9v-4.3l30.2-14.9V50L36.5,61.7l23.8,11.7v5.3L30.1,63.9z"/>
<path d="M106.1,79.7v-1.1c4.2-0.5,4.8-1.1,4.8-5.2V58.2c0-6-1.3-7.9-5.4-7.9c-3.3,0-5.7,1.3-7.8,4.4v18.1
c0,4.5,1.1,5.7,5.2,5.8v1.1H86.8v-1.1c4.1-0.3,4.9-1.1,4.9-5.1V57.9c0-5-1.6-7.6-4.8-7.6c-2.5,0-5.6,1.2-7.4,2.9
c-0.5,0.5-1.1,1.4-1.1,1.4v20.3c0,2.8,1.1,3.6,4.9,3.7v1.1h-16v-1.1c4-0.1,5-1.2,5-5V55.4c0-3.5-0.6-4.6-2.5-4.6
c-0.8,0-1.4,0.1-2.3,0.3v-1.2c4-1.1,6.4-1.9,10.1-3.2l0.5,0.1v5.4c6-4.5,8-5.5,11.2-5.5c3.9,0,6.3,1.9,7.6,6c3.9-4.2,7.6-6,11.7-6
c5.5,0,8.4,4.3,8.4,12.8v14.8c0,2.8,0.9,4.1,3.1,4.2l1.9,0.1v1.1H106.1z"/>
<path d="M147.3,80.5c-3,0-4.2-1.4-4.6-5.3c-4.4,3.7-7.3,5.3-10.5,5.3c-4.5,0-7.6-3.2-7.6-7.7c0-2.4,1-4.8,2.6-6.3
c3.1-2.7,4.3-3.3,15.4-7.8v-4.4c0-3.9-1.9-6-5.5-6c-2.9,0-5.2,1.6-5.2,3.5c0,0.5,0.1,1.1,0.2,1.7c0.1,0.5,0.1,0.9,0.1,1.2
c0,1.6-1.5,3-3.2,3s-3.1-1.4-3.1-3.1c0-1.8,1.2-3.9,3-5.4c2-1.7,5.5-2.7,9.1-2.7c4.4,0,7.5,1.4,9,4.2c1,1.7,1.4,3.7,1.4,7.3v14
c0,3.2,0.5,4.2,2.2,4.2c1.1,0,1.9-0.4,3.2-1.4v1.9C151.3,79.6,149.8,80.5,147.3,80.5z M142.6,60.5c-8.7,3.2-11.7,5.8-11.7,10v0.3
c0,3.1,2,5.5,4.5,5.5c1.5,0,3.5-0.6,5.3-1.6c1.5-0.9,1.9-1.6,1.9-3.8V60.5z"/>
<path d="M165.3,80.5c-4.2,0-6.3-3.1-6.3-9.1V49.7h-3.8c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.4,0.4-0.9,1.2-1.4
c1.9-1.1,4.3-3.7,7-7.7c0.5-0.6,1-1.3,1.4-2c0.4,0,0.5,0.2,0.5,0.9v8.4h7.3v2.3h-7.3v20.6c0,4.6,1.1,6.5,3.7,6.5
c1.6,0,2.7-0.6,4.3-2.5l0.9,0.8C171.8,78.7,169,80.5,165.3,80.5z"/>
<path d="M193.8,79.7v-1.1c4.1-0.4,4.9-1.3,4.9-6.2V58.1c0-5-1.8-7.6-5.4-7.6c-2.8,0-5,1.2-8,4.5v17.4
c0,5,0.7,5.8,4.9,6.3v1.1h-15.6v-1.1c4.2-0.6,4.6-1.2,4.6-6.3V38.5c0-3.1-0.6-3.7-3.7-3.7c-0.4,0-0.6,0-0.9,0.1v-1.2l1.9-0.6
c4-1.2,5.8-1.7,8.3-2.6l0.4,0.2v21.9c3.3-4.3,6.3-6,10.6-6c5.9,0,8.9,3.9,8.9,11.5v14.3c0,5,0.4,5.5,4.3,6.3v1.1h-15.2V79.7z"/>
<path d="M59.1,116.1v-4.3l30.2-14.9v5.3l-23.8,11.7l23.8,11.7v5.3L59.1,116.1z"/>
<path d="M135.1,131.9v-1.1c4.2-0.5,4.8-1.1,4.8-5.2v-15.1c0-6-1.3-7.9-5.4-7.9c-3.3,0-5.7,1.3-7.8,4.4v18.1
c0,4.5,1.1,5.7,5.2,5.8v1.1h-16.1v-1.1c4.1-0.3,4.9-1.1,4.9-5.1v-15.7c0-5-1.6-7.6-4.8-7.6c-2.5,0-5.6,1.2-7.4,2.9
c-0.5,0.5-1.1,1.4-1.1,1.4v20.3c0,2.8,1.1,3.6,4.9,3.7v1.1h-16v-1.1c4-0.1,5-1.2,5-5v-18.2c0-3.5-0.6-4.6-2.5-4.6
c-0.8,0-1.4,0.1-2.3,0.3v-1.2c4-1.1,6.4-1.9,10.1-3.2l0.5,0.1v5.4c6-4.5,8-5.5,11.2-5.5c3.9,0,6.3,1.9,7.6,6c3.9-4.2,7.6-6,11.7-6
c5.5,0,8.4,4.3,8.4,12.8v14.8c0,2.8,0.9,4.1,3.1,4.2l1.9,0.1v1.1H135.1z"/>
<path d="M152.1,131.9v-1.1c5-0.3,5.7-1.1,5.7-6.3v-16.6c0-3.2-0.6-4.3-2.4-4.3c-0.6,0-1.6,0.1-2.4,0.2l-0.6,0.1v-1.1
l11.2-4L164,99v25.6c0,5.2,0.6,5.9,5.3,6.3v1.1L152.1,131.9L152.1,131.9z M160.8,93.1c-2,0-3.7-1.6-3.7-3.7c0-2,1.7-3.7,3.7-3.7
c2.1,0,3.7,1.7,3.7,3.7C164.6,91.6,163,93.1,160.8,93.1z"/>
<path d="M175.8,131v-5.3l23.7-11.8l-23.7-11.7v-5.3l30.1,14.9v4.3L175.8,131z"/>
<path d="M31.1,169.5v-4.3l30.2-14.9v5.3l-23.8,11.7L61.3,179v5.3L31.1,169.5z"/>
<path d="M71.3,186.4h-4.9l16.5-49.7h4.8L71.3,186.4z"/>
<path d="M127.1,185.3v-1.1c4.2-0.5,4.8-1.1,4.8-5.2v-15.2c0-6-1.3-7.9-5.4-7.9c-3.3,0-5.7,1.3-7.8,4.4v18.1
c0,4.5,1.1,5.7,5.2,5.8v1.1h-16.1v-1.1c4.1-0.3,4.9-1.1,4.9-5.1v-15.6c0-5-1.6-7.6-4.8-7.6c-2.5,0-5.6,1.2-7.4,2.9
c-0.5,0.5-1.1,1.4-1.1,1.4v20.3c0,2.8,1.1,3.6,4.9,3.7v1.1h-16v-1.1c4-0.1,5-1.2,5-5V161c0-3.5-0.6-4.6-2.5-4.6
c-0.8,0-1.4,0.1-2.3,0.3v-1.2c4-1.1,6.4-1.9,10.1-3.2l0.5,0.1v5.4c6-4.5,8-5.5,11.2-5.5c3.9,0,6.3,1.9,7.6,6c3.9-4.2,7.6-6,11.7-6
c5.5,0,8.4,4.3,8.4,12.8v14.8c0,2.8,0.9,4.1,3.1,4.2l1.9,0.1v1.1H127.1L127.1,185.3z"/>
<path d="M168.3,186.1c-3,0-4.2-1.4-4.6-5.3c-4.4,3.7-7.3,5.3-10.5,5.3c-4.5,0-7.6-3.2-7.6-7.7c0-2.4,1-4.8,2.6-6.3
c3.1-2.7,4.3-3.3,15.4-7.8v-4.4c0-3.9-1.9-6-5.5-6c-2.9,0-5.2,1.6-5.2,3.5c0,0.5,0.1,1.1,0.2,1.7c0.1,0.5,0.1,0.9,0.1,1.2
c0,1.6-1.5,3-3.2,3s-3.1-1.4-3.1-3.1c0-1.8,1.2-3.9,3-5.4c2-1.7,5.5-2.7,9.1-2.7c4.4,0,7.5,1.4,9,4.2c1,1.7,1.4,3.7,1.4,7.3v14
c0,3.2,0.5,4.2,2.2,4.2c1.1,0,1.9-0.4,3.2-1.4v1.9C172.3,185.2,170.8,186.1,168.3,186.1z M163.8,166.1c-8.7,3.2-11.7,5.8-11.7,10
v0.3c0,3.1,2,5.5,4.5,5.5c1.5,0,3.5-0.6,5.3-1.6c1.5-0.9,1.9-1.6,1.9-3.8V166.1z"/>
<path d="M186.3,186.1c-4.2,0-6.3-3.1-6.3-9.1v-21.7h-3.8c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.4,0.4-0.9,1.2-1.4
c1.9-1.1,4.3-3.7,7-7.7c0.5-0.6,1-1.3,1.4-2c0.4,0,0.5,0.2,0.5,0.9v8.4h7.3v2.3h-7.3v20.6c0,4.6,1.1,6.5,3.7,6.5
c1.6,0,2.7-0.6,4.3-2.5l0.9,0.8C192.8,184.3,190,186.1,186.3,186.1z"/>
<path d="M209.1,185.3h-13.4v-1.1c4.2-0.6,4.6-1.2,4.6-6.3V144c0-3.1-0.6-3.7-3.7-3.7c-0.4,0-0.6,0-0.9,0.1v-1.2
l1.9-0.6c4-1.2,5.8-1.7,8.3-2.6l0.4,0.2v21.9c0.9-1.2,1.9-2.2,2.8-3.1"/>
<path d="M209.1,157.9c-0.8,0.7-1.7,1.5-2.7,2.6v17.4c0,4,0.4,5.3,2.7,5.9"/>
</g>
<g>
<polyline opacity="0.2" fill="#231F20" points="209.1,76.4 118.7,186.5 139.1,186.4 209.1,121 209.1,76.4 "/>
<polyline opacity="0.4" fill="#231F20" points="209.1,76.2 118.5,186.5 129.7,186.4 200.2,120.3 209.1,100.8 209.1,76.4 "/>
<path fill="#FFD761" d="M121.6,88.7l0.8,87.5l62.3-56.7c0,0-15.3-25.8-24.8-30C151.1,85.6,121.6,88.7,121.6,88.7z"/>
<path fill="#FEA01E" d="M209.1,19.5h-54l-33.5,69.2c0,0,29.7-3.4,38.3,0.8c8.9,4.4,25,30.8,25,30.8l24.2-50V19.5z"/>
<path d="M120.4,153.7l-0.6,25l23.8-16.9c0,0-8-7-11.2-8.1C129.4,152.8,120.4,153.7,120.4,153.7z"/>
<polyline fill="none" stroke="#231F20" stroke-width="5" points="153.9,19.5 121.6,88.7 120.7,181.2 186.6,120.3 209.1,70.3 "/>
</g>
</svg>
</g>
<g id="svg_eof"/>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,30 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<!--
Sample icons file. This file looks like an SVG file with groups as its
children. Each group element has an ID that must match the ID of the button given
in the extension. The SVG inside the group makes up the actual icon, and
needs use a viewBox instead of width/height for it to scale properly.
Multiple icons can be included, each within their own group.
-->
<g id="view_grid">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<rect fill="#ffffff" stroke="#848484" x="2" y="2" width="20" height="20"/>
<line fill="none" stroke="#848484" x1="11.84375" y1="-1.53125" x2="11.84375" y2="18.46875" transform="rotate(90, 11.8429, 8.46955)"/>
<line fill="none" stroke="#848484" x1="11.90625" y1="5.21875" x2="11.90625" y2="25.21875" transform="rotate(90, 11.9054, 15.2196)"/>
<line fill="none" stroke="#848484" x1="8.5" y1="2.03125" x2="8.5" y2="22.03125"/>
<line fill="none" stroke="#848484" x1="15.5" y1="2.03125" x2="15.5" y2="22.03125"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="3.25" y="3.28125" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="10" y="3.28125" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="16.75" y="3.28125" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="3.28125" y="9.75" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="10.03125" y="9.75" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="16.78125" y="9.75" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="3.3125" y="16.59375" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="10.0625" y="16.59375" width="4" height="4"/>
<rect fill="#d8d8d8" stroke="#000000" stroke-width="0" x="16.8125" y="16.59375" width="4" height="4"/>
</g>
</svg>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,21 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<!--
Sample icons file. This file looks like an SVG file with groups as its
children. Each group element has an ID that must match the ID of the button given
in the extension. The SVG inside the group makes up the actual icon, and
needs use a viewBox instead of width/height for it to scale properly.
Multiple icons can be included, each within their own group.
-->
<g id="hello_world">
<svg width="102" height="102" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<g>
<title>Layer 1</title>
<rect ry="30" rx="30" x="2.5" y="2.5" width="97" height="97" id="svg_3" fill="#008000" stroke="#000000" stroke-width="5"/>
<text x="52.668" y="42.5" id="svg_1" fill="#ffffff" stroke="#000000" stroke-width="0" font-size="24" font-family="Monospace" text-anchor="middle" xml:space="preserve">Hello</text>
<text x="52.668" y="71.5" fill="#ffffff" stroke="#000000" stroke-width="0" font-size="24" font-family="Monospace" text-anchor="middle" xml:space="preserve" id="svg_2">World!</text>
</g>
</svg>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,64 +0,0 @@
<!doctype html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<body>
<h1>Select an image:</h1>
<a href="smiley.svg">smiley.svg</a>
<br>
<a href="../../images/logo.png">logo.png</a>
</body>
<script>
$('a').click(function() {
var href = this.href;
var target = window.parent;
// Convert Non-SVG images to data URL first
// (this could also have been done server-side by the library)
if(this.href.indexOf('.svg') === -1) {
var meta_str = JSON.stringify({
name: $(this).text(),
id: href
});
target.postMessage(meta_str, "*");
var img = new Image();
img.onload = function() {
var canvas = document.createElement("canvas");
canvas.width = this.width;
canvas.height = this.height;
// load the raster image into the canvas
canvas.getContext("2d").drawImage(this,0,0);
// retrieve the data: URL
try {
var dataurl = canvas.toDataURL();
} catch(err) {
// This fails in Firefox with file:// URLs :(
alert("Data URL conversion failed: " + err);
var dataurl = "";
}
target.postMessage('|' + href + '|' + dataurl, "*");
}
img.src = href;
} else {
// Send metadata (also indicates file is about to be sent)
var meta_str = JSON.stringify({
name: $(this).text(),
id: href
});
target.postMessage(meta_str, "*");
// Do ajax request for image's href value
$.get(href, function(data) {
data = '|' + href + '|' + data;
// This is where the magic happens!
target.postMessage(data, "*");
}, 'html'); // 'html' is necessary to keep returned data as a string
}
return false;
});
</script>

View File

@ -1,12 +0,0 @@
<svg width="137" height="137" xmlns="http://www.w3.org/2000/svg">
<title>Cool smiley</title>
<path fill="url(#svg_4)" stroke="#000000" stroke-width="3" d="m32.18682,97.71674q36.3159,24.94076 72.54585,0m-64.67542,-49.25576c0,-3.8554 3.12526,-6.98079 6.98068,-6.98079c3.85449,0 6.97872,3.12539 6.97872,6.98079c0,3.85346 -3.12423,6.97867 -6.97872,6.97867c-3.85542,0 -6.98068,-3.12521 -6.98068,-6.97867m42.93047,0c0,-3.8554 3.12529,-6.98079 6.97963,-6.98079c3.8544,0 6.97971,3.12539 6.97971,6.98079c0,3.85346 -3.12531,6.97867 -6.97971,6.97867c-3.85434,0 -6.97963,-3.12521 -6.97963,-6.97867m-81.48596,20.036l0,0c0,-37.00197 29.99679,-66.99892 67.00095,-66.99892c37.00303,0 66.99998,29.99695 66.99998,66.99892c0,37.00409 -29.99695,67.00101 -66.99998,67.00101c-37.00416,0 -67.00095,-29.99692 -67.00095,-67.00101zm0,0l0,0c0,-37.00197 29.99679,-66.99892 67.00095,-66.99892c37.00303,0 66.99998,29.99695 66.99998,66.99892c0,37.00409 -29.99695,67.00101 -66.99998,67.00101c-37.00416,0 -67.00095,-29.99692 -67.00095,-67.00101z" id="svg_1"/>
<path id="svg_5" d="m23.84005,41.03445l17.57052,0l5.42937,-19.67914l5.42941,19.67914l17.5706,0l-14.21488,12.16242l5.42982,19.67939l-14.21495,-12.16281l-14.21489,12.16281l5.42991,-19.67939l-14.21491,-12.16242l0,0z" stroke-width="3" fill="#000000"/>
<path id="svg_6" d="m65.84005,41.03445l17.57052,0l5.42937,-19.67914l5.42941,19.67914l17.5706,0l-14.21487,12.16242l5.42982,19.67939l-14.21496,-12.1628l-14.2149,12.1628l5.42992,-19.67939l-14.21491,-12.16242l0,0z" stroke-width="3" fill="#000000"/>
<defs>
<linearGradient y2="0.25391" x2="0.46484" y1="0.94922" x1="0.44531" id="svg_4">
<stop stop-color="#ff0000" offset="0"/>
<stop stop-color="#ffff00" offset="1"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,115 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg">
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<g id="nomarker">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="#ff7f00" d="m-50,0l100,0"/>
</svg>
</g>
<g id="leftarrow">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="#ff7f00" d="m-50,0l100,40l-30,-40l30,-40z"/>
</svg>
</g>
<g id="rightarrow">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="#ff7f00" d="m50,0l-100,40l30,-40l-30,-40z"/>
</svg>
</g>
<g id="leftarrow_o">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="m-50,0l100,40l-30,-40l30,-40z"/>
</svg>
</g>
<g id="rightarrow_o">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="m50,0l-100,40l30,-40l-30,-40z"/>
</svg>
</g>
<g id="forwardslash">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="m-20,50l40,-100"/>
</svg>
</g>
<g id="reverseslash">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="m-20,-50l40,100"/>
</svg>
</g>
<g id="verticalslash">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="m0,-50l0,100"/>
</svg>
</g>
<g id="mcircle">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<circle stroke-width="10" stroke="#ff7f00" fill="#ff7f00" cy="0" cx="0" r="30"/>
</svg>
</g>
<g id="mcircle_o">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<circle stroke-width="10" stroke="#ff7f00" fill="none" cy="0" cx="0" r="30"/>
</svg>
</g>
<g id="xmark">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="#ff7f00" d="m-30,30l60,-60m0,60l-60,-60"/>
</svg>
</g>
<g id="box">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="#ff7f00" d="m-30,-30l0,60l60,0l0,-60z"/>
</svg>
</g>
<g id="star">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="#ff7f00" d="m-40,-20l80,0l-70,60l30,-80l30,80z"/>
</svg>
</g>
<g id="box_o">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="m-30,-30l0,60l60,0l0,-60z"/>
</svg>
</g>
<g id="star_o">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="m-40,-20l80,0l-70,60l30,-80l30,80z"/>
</svg>
</g>
<g id="triangle_o">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="none" d="M-30,30 L0,-30 L30,30 Z"/>
</svg>
</g>
<g id="triangle">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<path stroke-width="10" stroke="#ff7f00" fill="#ff7f00" d="M-30,30 L0,-30 L30,30 Z"/>
</svg>
</g>
<g id="textmarker">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<text xml:space="preserve" text-anchor="middle" font-family="serif" font-size="120" y="40" x="0" stroke-width="0" stroke="#ff7f00" fill="#ff7f00">T</text>
</svg>
</g>
<g id="mkr_markers_off">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<line y2="0" x2="50" y1="0" x1="-50" stroke-width="5" stroke="#ff7f00" fill="none"/>
</svg>
</g>
<g id="mkr_markers_dimension">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<line y2="0" x2="40" y1="0" x1="20" stroke-width="5" stroke="#ff7f00" fill="none"/>
<line y2="0" x2="-40" y1="0" x1="-20" stroke-width="5" stroke="#ff7f00" fill="none"/>
<text text-anchor="middle" font-family="serif" font-size="80" y="20" x="0" stroke-width="0" stroke="#ff7f00" fill="#ff7f00">T</text>
<path stroke-width="5" stroke="#ff7f00" fill="#ff7f00" d="M-50,0 L-30,-15 L-30,15 Z"/>
<path stroke-width="5" stroke="#ff7f00" fill="#ff7f00" d="M50,0 L30,-15 L30,15 Z"/>
</svg>
</g>
<g id="mkr_markers_label">
<svg viewBox="-60 -60 120 120" xmlns="http://www.w3.org/2000/svg">
<line y2="0" x2="40" y1="0" x1="-20" stroke-width="5" stroke="#ff7f00" fill="none"/>
<text text-anchor="middle" font-family="serif" font-size="80" y="20" x="-40" stroke-width="0" stroke="#ff7f00" fill="#ff7f00">T</text>
<path stroke-width="5" stroke="#ff7f00" fill="#ff7f00" d="M50,0 L30,-15 L30,15 Z"/>
</svg>
</g>
<g id="svg_eof"/>
</svg>

Before

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,25 +0,0 @@
{"data": {
"dog": "m244.35188,22.54387l-69.54898,69.54889c-119.32899,0.00291 -120.2569,-0.00142 -121.18423,0c-10.16035,0.01348 -20.31404,-0.04446 -30.47281,0.1654c-17.41192,-3.13311 -29.41997,20.08429 -17.10143,32.59326c9.91919,10.04415 24.91881,5.84701 37.58711,6.70858c0.082,39.19679 0.15858,78.39276 0.24066,117.58955c-1.93424,11.60912 7.01076,23.37389 18.92138,24.38115c10.04872,1.3252 21.64701,-4.10141 24.54638,-14.3645c2.0378,-20.77086 0.69009,-41.75818 1.06802,-62.62978c15.7105,0 58.3028,0.55273 93.34407,0.94731c0.05244,10.48698 0.11156,36.08763 0.16484,43.1525c-0.20064,9.60797 -0.94731,36.79358 17.44778,36.82019c18.39429,0.02664 19.96759,-19.29745 19.74867,-23.16328c-0.13904,-5.1078 0.14149,-42.99934 0.54108,-56.44814c2.24173,0.01166 4.87888,0.02997 6.54291,0.02997c-0.00998,-0.00999 -0.01997,-0.01997 -0.02995,-0.02997c0.10487,0.06078 0.2106,0.11987 0.31549,0.18065c0.19894,-16.80684 -0.38959,-50.0226 -0.04497,-66.82692c15.38005,-0.19313 30.76425,-0.09573 46.14514,-0.13486c13.52618,3.45377 34.10559,-4.10139 23.59946,-20.81667c-16.37396,-18.52205 -34.58011,-35.37009 -51.83061,-53.07936l0,-34.62398z",
"bat": "m143.40468,206.20782c-0.49527,-8.51843 -1.60919,-23.17813 -13.91826,-16.10698c-5.69614,2.11977 -22.79842,7.51244 -14.5293,-3.62979c-4.53243,-11.10219 -22.97476,5.42294 -24.24419,-2.29205c9.91943,-10.64906 -4.7813,-22.35199 -15.17139,-14.80321c-6.39341,1.76166 -19.4276,12.91188 -21.9789,9.37552c5.93793,-7.52516 19.31312,-22.93167 3.18112,-27.55084c-17.5302,-3.97589 -32.93319,8.09392 -48.1771,14.68205c-4.57452,3.57106 -10.39707,2.94862 -4.70683,-2.99597c19.7419,-30.64111 50.72646,-53.70857 85.10566,-65.43076c8.33369,-2.70812 21.16511,-8.70424 21.41656,4.97536c5.15313,12.59007 8.81947,28.33097 22.08977,34.80917c15.28362,8.49702 4.32793,-24.52711 20.16156,-12.05241c6.66379,4.32207 20.92268,-3.91697 22.87737,0.71265c-3.88257,5.55579 -5.70456,15.41883 4.55382,10.3489c17.81406,-7.0078 30.89859,-22.70471 39.67026,-39.22318c9.16278,-1.3768 18.27335,5.56162 26.62798,9.24753c27.74529,15.70954 44.86571,45.39448 52.13728,75.65768c-7.5513,-4.24557 -14.87186,-12.828 -24.02185,-16.20273c-9.75534,-4.87419 -20.75789,-5.73363 -31.48114,-5.39867c-5.02554,5.98985 -7.99353,13.42558 -3.62529,20.86708c3.80284,14.25407 -12.13176,-4.90576 -17.88498,-6.20744c-10.74191,-7.67955 -21.03323,3.92213 -18.67635,14.82222c-2.42909,2.10051 -9.92085,-3.5218 -14.32263,-2.86926c-9.05026,-2.72606 -15.42468,1.20085 -9.97261,10.61331c-7.98315,-0.97417 -19.64474,-13.28291 -26.70493,-1.69363c-3.0779,2.89514 -4.66377,8.66307 -8.40561,10.34547z",
"bull": "m247.95622,28.12305c-12.19972,2.23394 -21.61887,16.95667 -20.74588,29.01591c1.44209,13.7284 17.93463,5.12075 22.80087,1.23941c-2.90906,11.49207 -26.14024,13.85409 -24.83565,-0.12387c-17.69467,13.05878 -30.95056,33.52913 -52.86781,40.14553c-19.77757,4.59067 -40.50726,3.0742 -60.45068,0.39017c-12.12445,-1.13604 -23.69794,-7.26224 -35.91985,-5.97962c-13.09134,3.59118 -23.59412,13.16467 -36.65408,16.93906c-13.77014,6.03062 -8.51065,22.6805 -9.70401,34.47604c0.36829,17.55977 -2.85913,36.16287 -15.09811,49.55722c-7.11563,10.54993 -7.76443,24.43282 -13.48046,35.44298c18.99679,-0.19772 7.54522,-25.59486 17.99728,-35.91756c14.58305,-6.75189 14.16003,-25.2986 16.19452,-38.95529c1.4834,-5.51941 0.74519,-25.08188 6.61763,-22.44334c7.21924,16.22275 11.33028,34.35388 9.69645,52.12326c-9.5553,8.96404 -24.74576,15.34862 -22.54872,31.87126c0.72458,14.96526 -8.38036,25.74033 -15.4907,37.48604c4.56749,6.89259 1.00608,20.69472 14.11573,16.65324c8.77115,1.68887 13.10825,-2.37698 4.45589,-8.42346c-13.07829,-12.56499 5.13552,-29.16821 12.20585,-40.168c7.30689,-12.28131 22.16195,-12.86801 33.02653,-20.13979c15.00671,-8.95824 25.97935,-22.79263 35.92999,-36.78595c8.71432,9.26259 -13.75776,17.74474 -17.07076,27.20334c-7.22755,7.75058 -20.15694,21.85651 -2.99889,26.65347c13.26358,4.53796 25.75887,13.79143 25.35975,28.30255c0.22051,9.84615 24.38135,18.76527 19.43611,2.77341c-8.3609,-14.92882 -28.34064,-20.79163 -33.65835,-37.70844c-3.6715,-12.98383 11.61318,-19.27325 18.93525,-8.74269c12.96419,-1.41862 26.57983,-10.04028 40.80356,-11.3647c14.66299,-5.4577 18.06927,14.52957 29.8145,19.76668c9.79047,9.67969 18.77974,21.93582 17.54285,36.4783c1.1926,12.30893 9.52699,25.16873 23.92239,23.90201c16.80026,-2.80963 -5.10118,-20.70317 -12.79568,-24.81631c-11.14896,-13.29695 -9.30676,-32.20113 -16.24597,-47.51259c-5.00217,-4.52083 0.22685,-26.45532 0.40694,-10.76334c-0.90044,17.98242 24.73294,7.66248 22.97939,-6.09152c4.36166,-10.95654 -11.58513,-4.19417 -9.47617,-15.24252c-1.73091,-13.74937 -0.74355,-30.75096 -12.6731,-40.17292c-6.8737,-6.7591 -4.7831,-7.41829 2.70201,-2.07212c14.59439,7.55807 11.75914,24.79303 12.78276,38.37691c4.22589,17.80225 21.30753,-5.24332 20.80711,-14.89757c2.92691,-20.96336 12.92174,-42.46973 32.42046,-52.68139c-5.2402,-2.56694 -30.94765,6.73531 -28.79092,-4.9679c10.59921,9.00244 25.18661,-0.80075 37.71524,1.85265c16.62164,0.68233 20.74963,-22.79317 2.53195,-23.94116c-11.78333,-6.98062 -21.92947,-19.31897 -37.15829,-18.35906c-22.07759,7.39931 -8.43927,-13.11165 -2.53694,-22.37832zm21.60802,9.50184c-1.66193,5.79599 -12.61478,17.62506 0.56973,12.83867c1.89221,-3.91013 1.1131,-8.97168 -0.56973,-12.83867zm-3.4996,26.34877c5.90985,9.81916 -11.80539,1.02993 0,0zm24.39551,10.15293c-2.05029,4.18517 5.51468,4.9676 -0.32553,4.96455c-3.08926,4.10121 -4.4324,-5.29953 0.32553,-4.96455z",
"camel": "m105.23692,274.01276c10.42601,-6.85904 -13.23158,-12.66162 -16.74452,-19.13904c-10.34003,-12.71768 -13.56136,-29.62202 -16.44211,-45.3219c4.95107,-8.43617 2.94567,-17.1517 4.73958,-25.91959c8.77055,-13.01825 13.62244,-28.29056 22.43666,-41.26205c9.81532,2.07159 20.42883,10.03517 30.26162,13.06094c8.8764,15.9576 -7.35719,29.2457 -5.44854,44.69498c3.72314,14.40366 -6.25101,26.40735 -8.25558,39.83173c0.06986,12.69931 11.61848,25.55493 24.23922,16.82416c-0.64038,-9.26088 -18.64324,-12.13185 -10.58395,-25.1562c2.65187,-13.46596 11.34413,-24.24693 17.91676,-35.55937c-3.71349,-13.26427 1.2287,-30.0778 9.59569,-40.02118c8.49532,8.2068 14.36288,22.63718 15.66277,34.12883c0.16464,13.17332 17.70532,21.98904 17.37173,37.50392c1.31061,13.71669 7.73416,26.77841 16.64259,34.21387c4.65822,9.68192 33.56361,4.63116 18.16859,-6.87111c-12.71291,-11.47281 -27.33986,-23.63953 -29.27029,-41.92267c-5.27388,-10.85303 6.84843,-26.2316 -8.03899,-30.76501c0.92262,-14.70679 -2.97293,-31.40077 5.40811,-44.51862c12.07202,-10.31686 29.7518,-11.08165 41.29709,-22.49498c14.0099,-9.28757 21.96306,-24.50421 26.44456,-40.2729c6.78918,-7.60537 17.33322,-24.04447 29.06323,-15.49826c11.50851,7.1165 3.01477,-10.78561 9.62354,-14.73589c-5.45358,-19.67866 -27.58679,-10.231 -41.40082,-15.14074c-12.54193,-8.39989 -25.52765,-3.55679 -34.67496,6.0378c-6.85069,3.08698 -3.14447,11.16754 3.57637,8.12783c-4.82072,16.0155 -11.46542,33.6401 -26.07742,43.1243c-16.7653,7.33572 -26.11705,-14.39821 -36.07204,-23.83146c-10.86565,-10.63506 -17.60231,-26.15123 -31.2878,-33.45204c-19.0355,-4.82 -33.49794,11.89507 -47.87449,21.30644c-14.26775,7.14342 -31.39994,10.67369 -41.13367,24.60683c-16.15372,19.41527 -5.91326,48.70807 -22.89915,67.80049c-6.99636,10.58755 -22.39972,18.21231 -20.28306,32.7636c7.50211,15.58318 0.92728,34.18239 5.02367,50.94881c3.02735,12.11708 7.50982,27.68176 22.18437,29.48123c11.54434,7.31882 17.83198,-8.01192 5.60827,-12.45197c-14.75563,-6.55614 -16.77197,-25.01053 -17.95741,-39.18628c-3.25454,-14.0275 7.86033,-23.30806 12.45064,-34.31837c-3.87635,-10.75487 9.79252,-25.37375 18.46243,-23.19664c-6.47958,9.9541 -15.94005,22.87103 -0.60315,31.06966c-0.20134,0.50305 2.25023,-9.18846 6.19941,-12.10042c-0.58951,-7.59273 -8.29086,-14.05685 -0.12206,-21.73929c14.33151,-9.55606 11.17263,18.16365 8.19696,26.02383c-0.15744,12.07039 -16.33567,21.65707 -8.0749,33.75336c9.04985,14.91904 13.29631,32.04613 16.76897,48.94904c4.98299,14.02148 17.57185,24.27618 33.31381,20.65268l2.58825,-0.02829z",
"cat": "m111.55353,268.57376c-12.38409,-9.66019 -26.54234,-3.66064 -40.17431,-4.38614c-11.9392,-10.23105 -26.45395,2.16507 -37.70551,-7.68756c-14.55057,-12.97847 10.67308,-21.10451 5.29292,-36.51207c-0.60409,-22.18257 -10.10326,-42.27484 -20.08909,-60.91698c-7.07184,-14.82233 -4.56518,-31.85568 -6.84103,-47.71686c-8.17014,-11.38815 -16.33076,-25.48726 -6.60928,-39.55753c10.981,-11.86565 5.81937,-27.47561 1.50418,-41.19728c11.10318,3.26597 23.84772,18.14071 38.4552,15.16287c9.93419,-6.39761 15.9648,-0.073 17.62218,11.6365c5.20781,15.03792 8.24681,35.60265 24.68163,40.4529c17.26196,4.92876 36.58965,6.02341 50.24171,20.484c24.96439,23.38795 36.53986,60.25828 35.56061,95.79604c2.26117,16.61917 23.11539,7.79897 33.43477,10.24997c17.3054,-0.76804 33.91818,4.66769 50.66774,8.39909c14.94962,3.97684 27.61282,-8.59756 41.65988,-10.10515c2.37341,14.53128 -16.06888,20.58582 -26.14133,25.0639c-11.95706,5.08662 -24.89989,5.20694 -37.1826,1.47655c-26.55344,-6.62021 -54.69701,-4.88251 -79.92953,6.75992c-13.61838,5.01505 -26.84254,14.51093 -41.6569,13.32327l-2.79124,-0.72549l0,0.00003z",
"chick": "m76.6114,300.49948c-0.94218,-11.68399 1.80264,-23.81186 -2.78349,-35.22473c-7.45612,-25.10127 -23.93798,-47.16536 -31.36633,-72.21014c-3.21228,-16.80365 -8.65163,-34.79272 -2.2363,-51.43718c9.2771,-20.44891 24.58445,-39.1077 45.00853,-51.46853c11.45798,-6.87112 33.39433,1.8131 33.44485,-16.51133c3.62297,-20.89642 15.43811,-40.3082 30.48538,-56.28489c17.86485,-17.49571 47.98021,-20.77926 71.28149,-10.72216c13.19823,4.36545 26.92773,11.92505 29.85556,25.342c-2.0408,13.23198 13.36339,22.40786 12.41484,34.53756c-13.98409,-0.03379 -27.4267,2.25514 -39.10866,9.99602c-8.20006,3.8867 -26.4511,6.08187 -12.88864,15.86904c12.71146,21.22634 12.39029,48.02362 0.02443,69.35255c-8.24092,16.61523 -18.78058,33.14909 -36.37866,43.00504c-13.36313,9.14961 -27.77914,16.93257 -42.68192,23.79149c-11.62872,11.1774 5.32764,27.26614 9.71201,38.8335c3.36447,3.54044 4.524,10.84882 11.15869,9.08932c15.28535,0.25418 32.76015,-1.9313 44.98404,7.81229c-8.94319,8.25949 -25.89421,-1.41025 -38.02573,4.80051c-8.78024,5.75812 -19.06332,7.43823 -31.36371,7.58014c-13.23612,4.30203 -27.23189,-3.61423 -39.08569,1.66962c-4.11388,0.41238 -8.38321,3.40195 -12.45068,2.1799zm58.28394,-16.2124c-4.84233,-9.87674 -20.53861,1.56897 -6.10292,2.32874c2.30783,-0.47092 12.8125,3.03821 6.10292,-2.32874zm-17.85122,-4.32443c14.82944,-9.3367 7.74453,-25.48042 -1.79045,-35.63309c-3.24258,-2.97528 -4.73457,-8.94336 -9.13439,-9.94019c-6.73362,0 -13.46722,0 -20.20084,0c-4.65086,8.49229 -2.48404,17.86589 0.89217,26.43201c3.51066,10.88467 6.16319,28.60654 23.56189,23.00385c2.6806,-0.4599 4.89924,-2.07458 6.67162,-3.86258z",
"cormorant": "m143.5415,0.99936c-4.24326,11.41716 -19.29625,4.15632 -24.74561,12.50427c0.52748,6.07653 -8.29025,7.80436 -13.00653,8.43892c-8.50133,3.84879 -22.80692,-4.79845 -26.45377,4.01417c10.96676,1.70561 23.50823,0.97173 33.37776,7.63992c6.81084,8.30698 18.80501,9.32233 23.86815,19.00227c5.01492,11.90637 0.21405,24.79235 -6.1066,35.16777c-5.40714,11.63457 -14.24293,22.0266 -17.15868,34.6068c0.20795,13.02319 4.72718,25.69211 3.20084,38.80902c0.9605,10.14279 6.64024,19.14648 10.04536,28.64983c5.00912,10.57565 9.93535,21.70013 17.62276,30.53665c7.02892,8.87558 29.89705,11.67009 23.64502,24.91443c-4.01926,11.10844 -7.40147,24.48637 -19.39478,29.5565c-9.50977,5.9848 -21.3932,8.93677 -29.06369,17.37073c3.84956,0.36453 28.16327,-14.36331 23.8996,1.69739c-9.52658,11.2518 16.95053,-0.69223 23.42963,-2.18207c4.74442,-0.99915 4.29691,14.62488 8.52766,3.80228c5.95903,-10.08762 6.23502,-21.34366 11.26126,-30.51312c2.4781,-10.25645 3.82962,7.94009 9.64467,10.12222c7.07556,9.50238 7.79694,-14.07236 11.23129,-19.70615c2.62747,-8.54028 4.63826,-23.31885 8.02322,-27.91885c0.19868,-2.83281 6.58795,3.93147 5.0274,-3.78851c0.90347,-23.48584 -1.83659,-48.86755 -15.67365,-68.59196c-9.60602,-8.62669 -13.22336,-21.57266 -21.36568,-31.47811c-10.01912,-4.8186 -8.05391,-19.66993 -20.19205,-21.12443c-2.75856,-10.2361 2.62035,-22.86311 4.63016,-33.73514c2.78795,-10.12834 8.4742,-20.66132 3.52232,-31.15684c-3.76698,-10.86702 -11.83783,-21.03737 -23.57631,-23.51091c-5.21049,-2.63619 -9.89668,-4.17218 -2.89241,-7.84742c4.71588,-7.73713 -7.28709,7.39913 -1.58588,-2.982l0.25854,-2.29765l-0.00003,0zm-57.08003,24.11987c12.78673,0.33177 -8.83535,0.35227 0,0zm92.46721,218.72338c11.05893,4.6954 0.80228,21.55537 -5.46918,26.98338c-13.1071,-3.20859 2.39713,-19.21964 5.46918,-26.98338l0,0zm-10.64413,31.82323c-5.88483,2.41168 -15.44353,4.13849 -3.83093,0.46683l1.97208,-0.34274l1.85886,-0.12408z",
"cow": "m28.0749,243.56958c-11.25466,-1.13762 -0.26117,-18.72878 -4.5063,-26.87576c-0.04291,-11.99254 -4.49496,-23.80263 -3.04635,-35.73141c8.85702,-21.03091 1.47632,-43.99974 -0.46577,-65.6628c-0.878,-4.78294 -0.85219,-17.06834 -3.03475,-6.14601c-6.04425,18.41563 -0.13999,41.17824 -5.30961,59.82921c-8.64015,10.38419 -15.16653,-6.09071 -6.91858,-12.40807c9.63606,-15.16887 7.3071,-35.6004 7.63113,-54.51396c-0.41477,-11.95865 4.38277,-26.97649 18.58104,-27.31744c12.14677,-0.91866 23.64877,4.86966 35.90276,4.15359c35.73927,0.55689 71.83095,0.86755 107.11801,-5.64501c17.61354,-4.0591 35.14902,3.10693 52.79015,0.20057c9.91351,1.07068 15.15811,-3.56471 10.78886,-12.26689c7.38425,-5.09429 13.06598,9.66071 16.34573,-3.48148c11.89191,-8.19559 13.54935,15.99933 26.71921,9.16614c15.88589,2.05862 -6.90274,16.26875 6.39813,23.38159c8.04169,6.20473 20.35629,21.57409 4.35831,26.00379c-13.75446,-0.96602 -27.54028,-0.06377 -41.30312,0.60226c-6.36993,10.6367 -19.62016,18.61491 -18.16837,32.55296c-1.1003,16.62756 -12.74783,33.02081 -28.69196,38.18489c-6.81386,-1.34894 -9.78644,0.85432 -8.9351,7.83342c-3.52046,9.11967 -4.14098,18.73875 -3.72333,28.43974c-1.04204,5.34808 1.17265,9.50755 4.32187,13.62691c-3.70361,6.41692 -24.92326,2.61598 -16.88379,-9.5238c2.05592,-15.92261 -0.36317,-31.91132 -2.16568,-47.74242c-8.4565,-6.01532 -18.70856,-3.81294 -27.26753,1.0208c-18.88187,6.9252 -40.73763,13.48228 -60.10471,4.59438c-10.79734,-3.01547 -27.0833,-5.25847 -35.10848,3.84904c-3.611,13.73518 -2.64567,28.48619 -5.7238,42.42607c-0.05178,7.28806 6.88112,13.54532 -4.86428,11.51134c-4.90851,0.11278 -9.83028,0.26732 -14.73372,-0.06165zm10.02217,-15.5108c1.93175,-6.52728 -2.78621,-23.11049 -3.1906,-7.64299c-1.60691,4.90746 0.4367,28.47777 2.83738,12.83046c0.15187,-1.72662 0.25968,-3.45683 0.35322,-5.18747z",
"crow_2": "m299.86716,62.24508c-8.36279,-13.35279 -25.79254,-10.94299 -38.7652,-13.97612c-10.77151,-4.46517 -27.26852,-8.74568 -34.93257,4.02601c-10.22766,11.92024 -19.30536,24.77381 -27.38379,38.20519c-16.9417,18.56395 -37.51366,33.44937 -58.19264,47.49408c-17.41919,8.55826 -36.48907,15.23247 -50.59015,29.17691c-26.77713,17.17799 -59.39612,20.30975 -89.00278,30.37996c5.24787,1.82477 28.48156,-4.80739 12.86404,2.45506c-11.61908,3.82678 4.57293,7.38318 9.74338,4.83008c-4.08242,4.36552 -5.2054,4.72249 -0.18473,4.65681c-9.12115,5.09712 20.25491,-1.58305 4.07883,5.5506c-7.04263,2.05971 -24.35976,21.06046 -8.48079,12.5005c14.76321,-6.14401 30.50038,-9.23448 45.85791,-13.45705c-11.48634,11.80891 -27.85513,19.19374 -35.74965,34.16698c0.17943,3.86479 12.21982,-7.85281 17.31087,-9.77229c28.95095,-17.49719 59.28473,-33.71347 91.89844,-43.16046c4.45381,1.07288 5.32478,12.99994 14.00563,6.90237c0.76199,7.59987 19.82927,-11.92125 14.84979,3.30377c8.25793,-13.03635 -0.01482,14.1528 7.62892,18.26904c3.90089,5.15268 19.92041,12.26512 6.86195,14.03082c-5.77165,8.63597 8.09146,-3.46425 11.11865,4.62627c11.3129,4.10901 3.07231,8.32173 -5.11652,5.83363c-6.27592,-0.83809 -7.57079,7.40965 -1.22719,2.29182c7.57507,5.19347 19.60568,3.32813 29.26515,5.56088c9.65308,0.80066 21.35422,-9.88435 25.01279,-7.29437c-8.89755,-6.38512 -21.77765,1.41119 -31.54323,-3.51736c-2.05963,-6.62599 22.89082,2.37143 22.94131,-8.82851c11.68727,-1.08766 -9.82895,-2.59717 -14.00406,0.04509c-14.38026,0.76889 -21.75813,-12.59969 -31.88164,-20.19017c0.30659,-15.75429 11.86186,-29.28856 23.95569,-38.18524c15.77855,-9.50124 31.96706,-21.73888 36.43575,-40.70174c4.63271,-16.88809 7.21239,-34.29048 9.31848,-51.60873c2.84918,-11.17406 11.03882,-21.49306 23.60089,-20.65947c6.77469,-0.94415 13.57404,-1.72816 20.30646,-2.95438z",
"crow": "m65.63132,15.69366c7.23991,-11.19251 23.71874,-13.17996 36.20271,-14.69413c13.92134,1.25098 24.65079,12.10254 32.81262,22.59631c9.49452,8.5772 21.08662,15.85565 25.83853,28.41352c12.01437,5.95259 26.19815,9.13653 33.55229,21.87244c11.11548,14.36729 17.52112,31.75739 23.31628,48.60368c0.92021,12.5585 6.47,24.01521 8.36046,36.46043c3.24197,12.33818 5.82637,24.53572 9.31963,36.76498c3.88237,12.71416 9.39792,24.81319 13.2628,37.54517c7.05891,11.17328 13.48564,22.96204 17.86821,35.4054c-10.48648,-0.88873 0.96857,15.8573 2.93524,22.45895c2.86746,13.58783 -12.84537,5.80856 -15.59308,-0.46634c-9.70456,9.1796 -29.57259,11.24072 -38.3669,-0.80743c-9.26392,-12.20752 -14.38051,-27.69696 -27.16855,-36.53391c-5.02811,-4.18506 -9.90665,-22.45958 -11.7061,-6.32031c6.38489,16.05743 -18.74254,6.90547 -27.66772,9.78912c-15.99664,-3.21661 6.07263,-12.35889 12.86923,-11.27576c6.38602,-6.35408 17.01372,-16.99594 1.7589,-20.33147c-10.44731,-4.15326 -23.84068,-14.68553 -29.71439,0.99188c-7.37552,3.90117 -20.59412,22.40862 -5.95329,23.77255c5.91614,12.10878 -17.0737,3.35048 -23.49316,6.21452c-6.05255,1.90814 -21.13758,-1.4375 -7.08788,-4.49867c12.08796,-1.9845 17.85132,-16.8317 25.44044,-25.82515c-0.25166,-11.53856 -9.48829,-20.69617 -16.41167,-29.40816c-7.36517,-12.27962 -17.64172,-22.79747 -22.75925,-36.23717c-3.35689,-13.95544 -9.74807,-26.85826 -12.98938,-40.84583c-3.65936,-14.01762 -7.85575,-29.82359 0.01893,-43.25633c3.58914,-11.78534 5.08364,-22.78083 -2.44828,-32.4814c-10.40722,-8.4583 -25.19866,-5.06594 -37.19873,-10.67507c-1.4463,-9.05923 17.76661,-12.5158 26.11695,-14.53937c3.17027,-0.11009 5.59681,-2.76167 8.88516,-2.69248z",
"dog": "m100.16203,296.98279c-8.8212,-9.63385 1.38332,-24.43997 -0.42293,-36.27057c0.75693,-11.26283 0.70357,-22.55605 0.97627,-33.83612c-5.62751,-3.03004 -11.14646,-9.8163 -17.39571,-9.15442c-9.39647,12.28885 -8.36188,28.63301 -15.80033,41.86707c-4.14935,12.68604 -14.20047,25.1369 -28.95629,23.20023c-15.78228,0.24448 -5.31179,-12.67972 3.94138,-14.51392c15.5036,-7.47278 14.489,-27.14363 17.24157,-41.59114c1.02824,-10.18478 3.24236,-20.5625 3.54647,-30.63432c-6.4542,-14.31418 -15.78849,-28.37114 -13.67442,-44.85196c-0.91037,-17.78856 4.2768,-37.23788 -5.08019,-53.53189c-5.56927,-15.61405 3.8713,-31.59072 2.9399,-47.52759c0.9721,-14.78285 -5.20505,-30.54867 1.20562,-44.61136c13.7762,-15.53139 12.97964,13.29988 18.95111,20.54415c5.64886,15.40877 24.7487,10.76537 35.50636,4.24826c7.2022,-4.10769 16.87807,-28.32801 24.44378,-14.32351c3.37997,14.22579 -6.14093,25.38077 -12.22646,36.88495c-6.86581,22.01683 5.86861,44.08519 20.93388,59.44197c24.83763,26.97977 44.07555,59.68134 54.0882,95.03609c1.31316,14.68071 3.98535,28.23558 12.82726,40.18617c10.20438,10.1714 26.16472,9.68739 39.32852,13.25957c9.22101,2.52521 30.75206,5.14639 26.47435,17.3808c-14.74448,2.4689 -30.09541,0.23105 -44.90068,-1.32291c-17.28331,-2.73001 -35.00906,-7.2897 -49.09666,-18.1597c-14.62904,-9.61427 -18.7715,20.00995 -34.01671,10.65375c-2.19362,-7.70334 10.66454,-19.74266 -6.53938,-19.26297c-6.33104,0.30879 -15.00338,1.82024 -19.76239,4.89166c1.07452,12.16098 2.04812,24.36316 4.2893,36.36713c-1.78267,6.00809 -14.15643,12.93057 -18.82182,5.63058z",
"duck": "m185.95239,299.43112c-13.71118,-7.29123 11.45862,-7.3541 17.23322,-7.85522c14.99724,-0.2811 17.02971,-18.28448 15.48773,-29.74414c-2.1938,-4.69699 -0.04752,-14.89349 -7.7746,-13.37029c-15.43901,-0.71622 -30.7112,-4.55923 -44.14467,-12.22302c-0.82443,12.88171 -7.29927,24.66777 -11.6053,36.85115c-5.66316,6.16721 14.39644,28.18469 0.43378,18.34869c-9.04433,-8.40845 0.06526,8.74658 -11.16418,3.91656c-15.23827,-0.31436 -31.02578,2.40784 -45.91216,-1.24551c-5.00268,-2.09833 -20.66561,0.51883 -9.25531,-6.49301c6.4804,-1.18185 12.15667,4.48007 17.05421,-2.03778c11.5948,4.79346 30.04866,4.82639 34.25867,-10.28015c7.00595,-11.43338 11.29851,-24.25136 11.56012,-37.68254c-8.2043,-6.31854 -14.70296,-14.48831 -18.43434,-24.21049c-8.62861,-14.22275 -24.3753,-22.02206 -37.28508,-31.87471c-17.12926,-11.15475 -36.8522,-23.99915 -40.20823,-46.00098c-4.08031,-16.32172 0.02216,-34.19492 11.59384,-46.57394c7.80417,-11.16946 22.31328,-21.55052 18.99293,-36.88489c-8.43674,-15.00933 -26.68094,1.9423 -34.96601,9.23433c-9.98,7.06196 -20.71845,24.17017 -34.34288,16.49594c-1.7172,-11.61691 13.7034,-18.90693 17.498,-29.74388c7.8585,-12.19844 12.51045,-26.37627 18.95516,-38.92993c11.65712,-10.85135 30.93148,-10.91782 42.45155,0.28526c14.7008,11.44654 23.86826,29.5425 22.42876,48.35335c1.4173,12.98959 -4.14301,29.91504 8.25453,38.93287c17.92052,9.9613 39.04935,12.35098 57.26444,21.89838c22.77972,10.51788 39.86913,29.49796 59.04057,45.11781c11.7964,10.71736 23.92368,21.11819 35.13879,32.44618c-7.49713,-2.24278 -14.43054,-6.05879 -21.60767,-9.15805c9.28815,12.08043 13.46152,26.94177 15.66077,41.78857c3.61584,15.73579 13.73315,31.11919 8.65729,47.77711c-4.42633,13.85214 -18.52838,-8.55096 -25.42393,-12.47198c-7.88147,-7.42908 -15.67812,-16.62666 -27.10399,-17.90884c-2.06194,13.35767 -4.18094,27.25305 -1.83514,40.63339c1.37479,11.84998 25.0215,4.73886 21.59566,13.51175c-19.80942,-2.16162 -39.69846,-0.3399 -59.55595,-0.59872l-2.94055,-0.30328l0,0z",
"eagle": "m42.43982,248.02586c11.79883,-9.19574 37.51548,5.68584 36.59332,-18.29665c11.6873,-8.23552 20.68873,-26.28419 1.79099,-32.32607c-10.7688,-5.1657 -15.8233,11.42451 -19.57125,12.4706c-7.77777,-10.83765 -3.38924,-28.5033 -0.32791,-39.95343c9.78217,-6.08578 25.82187,-13.03094 14.50231,-26.59097c-2.34529,-14.80103 -3.78094,-32.06657 -17.7612,-41.01302c-10.43393,-6.26692 -25.16679,-12.24148 -20.04643,-26.95332c-6.73619,-10.16047 -14.53631,-24.05076 -10.06464,-36.59579c10.19879,-1.80737 9.00111,23.96806 10.94535,18.5213c-3.83083,-8.28799 9.1568,-27.37077 8.41371,-9.7762c-0.78397,6.31187 -0.27625,19.10084 3.19139,6.43372c9.40052,-13.9652 0.18064,24.20846 9.40782,9.05938c6.50935,-2.10711 4.52592,9.32912 10.80828,3.67456c6.87772,5.25431 11.91442,6.4291 11.89108,15.161c9.16496,3.3132 16.00232,8.79374 14.18665,17.50479c17.88632,-4.31568 2.59483,17.992 15.32488,24.21275c6.86198,10.87837 9.94656,21.77702 9.45206,34.69591c14.12406,-3.90332 23.43909,-19.96727 38.02612,-24.96548c16.37712,-7.58971 22.24484,-26.45808 25.80173,-42.75597c1.58806,-7.86366 11.55658,-7.47865 8.4944,1.35465c11.47125,-12.36288 6.68346,-30.36211 9.92291,-45.39627c1.03862,-8.40902 -2.33224,-26.94658 4.74805,-28.67765c10.56419,9.48252 -2.34641,30.44621 7.95137,36.7387c7.25935,-13.5451 4.68625,-29.74639 5.07938,-44.52987c-0.17744,-8.53332 8.28981,-14.18234 7.88048,-2.00179c3.55096,10.5139 -0.40492,32.21981 1.64958,36.04613c8.07187,-12.48013 6.34647,-29.28694 14.90497,-41.01045c11.77513,4.41697 -3.33727,24.23894 -2.9549,34.73938c1.57841,8.06398 13.11919,-23.61583 13.7003,-6.1498c-5.31714,4.6162 -4.42737,17.32646 1.51364,7.08835c2.29477,-8.40776 17.99155,-5.58858 7.86148,2.08536c-7.52231,6.5335 13.19769,6.07413 4.12683,13.25697c6.05191,9.99521 -10.41388,15.90605 -0.99213,23.11055c-0.5419,2.90166 7.51996,8.55031 3.95645,15.5176c3.55255,6.41606 -12.64786,10.58171 -2.07687,14.97137c0.61145,14.96265 -18.29834,25.28072 -14.15472,39.25008c-1.22144,16.83496 -13.92377,30.96262 -27.51764,39.86047c-12.55846,2.38141 -22.29991,7.42523 -33.09448,14.38452c-7.10794,0.12218 -9.63133,0.08891 -13.34837,5.21904c-5.85042,-4.53848 -15.49744,-11.39697 -13.84404,2.34781c2.50378,17.06932 24.15945,18.76619 35.67772,27.84688c12.28496,4.33621 28.35258,18.74889 15.04837,30.03174c-1.28722,16.03848 -22.62962,6.43207 -28.17253,11.98065c-7.95277,1.1889 -7.12421,6.80249 -14.18958,0.10867c-6.88124,9.22229 -22.27397,-0.76007 -29.61287,-4.75983c-11.90405,5.67993 -17.34648,-22.86903 -19.53539,-2.88507c-4.83576,13.58316 -24.476,-1.01483 -24.37943,16.35269c-8.98567,-1.84631 -9.40855,12.19781 -19.04626,10.78702c6.06173,-2.81454 10.18479,-18.90897 -0.69688,-11.14999c-8.89938,-6.76031 -3.76038,16.63571 -11.0985,4.45398c-1.61417,-15.81525 16.34735,-16.12735 26.46889,-18.96848c3.63502,-9.19174 8.23714,-21.27525 7.27283,-30.1396c-9.56728,3.84567 -17.9573,12.08994 -29.11918,12.79019c0.69484,8.35417 -5.77779,21.85307 -15.72966,14.08031c14.30752,5.57813 7.98567,-25.05467 -0.66062,-9.91721c-3.38933,9.9873 -2.96938,-14.429 -12.7722,-7.32185c-5.13792,3.73692 -1.64958,12.39018 -6.75386,2.35237c-0.99273,-2.02373 -1.14814,-4.89752 0.9282,-6.35475z",
"elk": "m55.44169,70.04322c-9.46609,7.85901 -22.89024,10.68682 -35.01687,12.13352c-10.34381,-1.03976 -26.56821,7.31529 -15.97385,18.70621c7.56154,15.8879 23.87035,2.81345 34.83344,1.97973c6.74288,1.81747 9.04052,25.43575 14.68986,9.83006c3.84105,-12.93275 21.02425,-8.87709 30.14005,-4.40716c14.1686,4.39434 8.46609,22.12076 16.61138,31.95892c12.24081,12.85411 -1.67636,29.24428 -12.4499,37.76401c-12.75361,7.58044 -18.55984,19.76834 -16.78767,34.30325c0.04941,14.73842 -3.99104,30.75432 3.85034,44.19391c11.85099,1.57538 1.64103,-19.88701 4.92331,-27.40918c1.21214,-13.46214 -1.9274,-30.30058 10.90484,-39.28947c11.4828,-10.01157 23.57063,-19.55112 36.47411,-27.62581c12.21095,-0.62399 10.39299,17.77295 13.97888,26.40175c2.87054,13.20355 4.12752,27.58423 3.69688,40.50841c3.125,10.64038 5.51489,24.0757 -1.41217,31.57294c12.91045,1.34732 24.73607,-12.8914 14.16034,-24.30435c-4.26125,-15.94153 -5.71083,-32.54619 -8.8824,-48.75049c-1.29825,-11.53598 -3.35872,-25.34232 4.83759,-34.86038c12.05826,-0.41389 24.32834,12.14566 37.60088,4.59509c11.65439,-7.49344 33.21696,-6.53802 31.62036,11.82347c-3.2142,14.87534 1.55244,29.61519 2.2346,43.81203c-3.42354,18.43187 -22.15714,27.36267 -29.50255,43.57849c6.98146,9.64319 17.6196,-4.17101 24.65466,-8.5957c-1.74142,-12.99426 11.64835,-19.92599 15.71536,-30.922c6.9856,-14.97188 -3.20459,-32.25409 -2.75711,-46.36688c-5.96602,-12.06912 6.08081,-14.98056 11.07512,-3.9678c8.02901,10.14059 21.03195,16.80963 23.7973,30.43394c7.39731,10.39175 10.8736,22.49284 15.64307,34.03711c4.08353,6.21262 10.6907,18.02594 12.81412,3.55118c3.85464,-8.67506 1.42859,-14.46745 -6.31488,-15.1647c-13.17899,-14.6283 -10.83514,-37.51031 -25.72766,-51.16437c-10.90161,-6.89407 -22.06673,-14.37312 -25.85289,-27.85638c-6.71298,-10.98305 -8.98033,-24.34339 -5.63237,-36.85001c4.36508,-2.10748 7.17406,6.33847 3.86676,-3.07584c-7.08252,-11.81364 -21.74017,-16.42101 -34.30881,-20.12214c-13.86351,-4.31435 -28.287,-5.60372 -42.65346,-3.49644c-12.2518,3.14196 -25.56529,6.21495 -37.68355,0.56779c-10.80199,-6.45414 -23.34553,-5.2407 -34.37726,-0.35921c-8.31817,4.58586 -24.95089,-0.17232 -13.39404,-9.69791c-4.65558,-4.05794 -21.26908,7.53993 -8.94252,-2.36752c5.90361,-6.02524 8.73024,-18.58166 6.56192,-25.10496c-2.33636,8.03588 -5.7029,7.70039 -5.40219,-0.79288c-2.03959,15.14413 -12.13537,5.38195 -10.55587,1.00194c0.66773,6.1233 -2.56635,12.84344 -5.72467,3.23117c-0.3636,6.21597 2.87773,15.15818 -3.77972,17.71219c10.15314,9.32419 -13.24982,2.42432 -13.20099,-4.96754c-6.18471,-9.39983 -7.12771,-4.31873 -4.60736,3.21883c-4.59348,-3.34352 -10.47613,-9.66862 -5.36225,0.14767c5.84781,13.3303 21.7189,7.94385 31.61781,10.45553z",
"fish": "m127.20683,242.3436c1.50244,-15.94504 5.02446,-32.41927 12.88557,-46.10178c7.51215,-8.98547 19.63693,-8.71681 29.76314,-11.79086c-14.18819,-3.80443 -27.43222,-10.54059 -40.42705,-17.66788c-21.27006,-9.23157 -42.92073,4.06975 -62.09324,13.40138c-14.23518,6.80144 -28.31641,14.82532 -43.64474,18.1933c-10.05519,-6.98578 -1.65744,-26.80461 5.41335,-35.17271c8.9525,-11.55655 22.2043,-17.52696 31.90982,-28.07993c4.26963,-14.90575 -15.40321,-18.57297 -24.24153,-24.42971c-13.70577,-6.20512 -25.35116,-16.36843 -35.77064,-27.71589c24.19748,-1.40994 45.60231,13.61476 67.43612,22.73716c11.80957,4.27464 22.94788,10.28683 33.98999,16.23396c5.06265,-0.02556 22.24189,3.73252 20.52978,-2.03984c-12.8773,-0.57095 -11.58655,-17.22836 -2.92075,-23.83247c12.73701,-10.02242 28.26479,-15.93932 38.86842,-29.21478c4.65193,-3.7341 7.09996,-12.86792 11.03157,-15.74994c16.95282,13.24852 26.87143,34.14735 36.22475,53.96581c15.23062,3.44089 30.61246,6.23184 46.13637,7.07419c15.15991,6.93107 28.10406,19.01068 39.97369,31.27808c8.99451,6.78525 11.39157,25.24843 -0.83481,28.95241c-30.16479,16.24658 -63.84666,21.21309 -97.06413,22.77441c-4.67992,-0.32996 -8.75485,0.18372 -8.78621,6.33609c-2.92581,8.76227 -4.12184,18.94467 -9.62984,26.07907c-6.07878,-1.55455 -0.31998,-19.45975 -6.56294,-10.95245c-12.27982,13.32922 -27.04962,23.32567 -42.18671,32.26515c0,-2.18091 -0.00002,-4.36198 0.00002,-6.54276z",
"hare": "m95.22337,299.53546c-10.68459,-4.81824 3.25798,-14.45154 8.53654,-18.71286c3.55556,-3.28177 -20.37717,0.46036 -10.27298,-10.93198c11.08577,-9.30692 6.89815,-25.05217 -4.18282,-32.37115c-15.24973,-10.2968 -34.81611,-19.10942 -40.44992,-38.33635c-5.69662,-11.9756 7.81301,-24.58835 -0.87631,-35.40263c-6.99412,-14.0412 1.177,-28.68323 6.25594,-41.69022c2.33568,-17.99253 -11.97227,-32.2212 -19.84076,-47.00306c-9.74298,-14.12588 -15.35928,-30.58578 -16.16633,-47.73895c-2.11884,-7.3217 0.22601,-18.6921 8.68694,-8.82097c17.71845,14.18765 37.17033,27.65002 49.57116,47.06949c2.34735,7.01447 11.74658,27.34441 12.27144,8.93449c0.24582,-25.30315 7.97399,-52.90002 27.77682,-69.85634c13.46954,-12.2734 20.73361,9.21683 21.36209,20.13735c3.50587,21.487 -2.30553,42.79486 -8.78146,63.09225c-2.37738,9.43285 -8.56868,35.2823 9.08899,25.75117c40.67693,-15.70451 89.96005,0.78945 116.45525,34.52606c12.17961,16.33485 17.5135,37.32133 17.39308,57.47189c-6.27155,11.83836 17.03061,-0.22177 8.58704,13.43613c-4.97064,15.1297 -19.01465,23.33925 -28.85207,34.75906c-10.01038,9.15085 -2.58298,28.71576 -19.13725,31.59863c-24.15469,7.44629 -49.5191,10.70804 -74.66498,12.6066c-14.07156,2.88287 -20.90056,-13.20758 -7.41347,-19.89679c6.46608,-9.96799 24.96535,-10.66653 30.46185,-12.24564c-13.13484,1.28516 -29.33337,-4.0759 -40.40141,4.05872c-6.70294,10.88138 -12.07141,25.20364 -26.12755,28.30951c-6.3168,1.75439 -12.8116,3.16129 -19.27982,1.25558z",
"he_hen": "m176.04681,296.29803c-8.82596,-3.77927 -18.43298,1.74493 -27.86224,-3.75964c7.62581,-0.4744 19.08463,-0.03574 17.06104,-11.34488c3.33665,-13.20654 -3.43475,-27.06163 2.20258,-38.55534c-8.82878,-8.42361 -18.09561,-18.39673 -22.80272,-30.16238c-0.9447,4.74663 -1.81537,8.52257 -3.158,0.33916c-0.76965,-4.00471 -0.30261,9.89931 -3.24527,0.14346c-3.10373,-8.67493 -11.4597,-31.29446 -14.05236,-10.31462c-1.0768,10.8262 -4.45592,3.14465 -6.0004,-3.72562c-1.56924,-13.22943 -7.23737,-25.48523 -8.72193,-38.68883c5.80227,-8.36407 -0.82715,-9.5029 -3.91098,-1.15848c-3.39584,13.23767 -6.30494,26.33923 -2.7624,39.9769c-4.70789,3.85124 -13.79493,-17.92216 -9.61541,-26.27414c3.62592,-9.45018 2.81974,-19.09607 3.42313,-25.48878c3.31529,-7.21146 -3.22571,-15.04807 0.25123,-22.73853c-8.88477,9.68631 -16.83011,16.38615 -14.33428,31.58234c-1.10283,3.79079 3.703,25.58844 0.64231,17.56184c-5.77861,-15.66916 -5.78305,-33.02271 -1.43442,-49.01125c0.00535,-12.20366 -9.89253,21.0744 -9.16187,4.76299c-0.93676,-12.30159 4.13303,-25.82869 8.93452,-35.55499c-5.46675,-6.50523 -23.17289,-1.89566 -14.79648,-15.70558c8.24343,-7.01884 7.35999,-16.67057 -3.85936,-8.18394c-17.3246,12.72424 -31.69814,29.07174 -47.58007,43.52234c15.25898,-19.61487 32.46107,-38.59572 53.7519,-51.75492c20.64337,-12.99951 50.5769,-14.34346 68.38963,4.28573c4.53072,7.97979 15.06177,13.26968 17.57275,20.45337c-1.84586,10.76744 5.10652,16.10654 5.85289,25.57021c4.38731,7.30244 -3.95828,20.43125 8.52597,16.64671c14.20137,-0.01996 33.63664,-3.16645 34.74754,-20.87874c5.66772,-25.50935 8.27689,-54.0092 26.4256,-74.31131c10.08655,-5.89642 3.82147,-4.32716 -3.54926,-5.29837c-6.51613,-7.58361 6.57724,-19.75743 13.02319,-21.14511c-1.112,-17.9227 10.53479,10.74471 13.86426,-2.41437c4.99586,0.09501 7.43144,12.08141 10.46855,2.29789c9.05719,7.66376 18.6297,19.25661 6.66562,29.92943c13.61102,6.52517 -13.86911,2.29947 -2.14532,12.29652c9.6759,9.35194 2.83621,26.62759 -5.10654,34.15639c-0.3085,5.66077 9.31277,13.88494 11.24728,20.75249c9.99454,19.34809 11.9986,42.36646 8.16797,63.56847c-5.39346,19.98318 -25.46588,28.67906 -39.65833,41.37386c-12.12337,9.93893 -7.85776,27.37115 -13.59781,40.42342c0.57072,7.5369 4.77751,16.1196 10.7547,20.66925c8.66214,4.84064 18.81006,7.96561 25.81393,15.05286c-6.39667,3.34055 -19.43893,-10.21753 -19.56508,0.39017c-9.50252,-12.34393 -23.7677,-4.06104 -34.21234,-13.55405c8.69193,1.65643 19.99033,0.8027 10.47188,-9.61145c-3.75841,-8.80696 -15.07852,-11.84618 -15.37883,-22.49022c-10.66643,6.69647 -17.92447,15.81358 -25.66988,24.90395c-12.85808,-0.80322 -13.41248,25.11618 0.47165,24.73163c5.7019,1.45825 27.10161,9.40335 10.25006,7.35107c-5.02289,-0.89746 -10.47203,-4.04099 -10.31842,1.85727c-2.30338,-0.41431 -4.35982,-1.56003 -6.48019,-2.47418z",
"hen": "m131.70792,299.20142c-2.65045,-8.04401 -50.59061,2.01245 -25.50379,-8.40613c9.71836,-2.24731 29.67359,0.57056 9.8335,-5.50568c22.5928,7.62228 32.60569,-19.08859 34.06422,-37.09636c-21.02885,-6.55212 -24.67069,-31.02429 -46.83106,-37.61485c-16.88445,-13.23645 -41.63732,-12.83168 -52.35418,-33.24014c-10.17476,-18.17259 -4.4284,-40.29292 -2.74405,-59.92338c4.00956,-20.72375 12.14967,-41.69897 10.53991,-62.75727c-16.41068,9.44812 -22.4106,-11.67328 -22.78485,-18.27062c-12.07958,3.08904 -19.7317,3.22594 -6.59584,-7.5194c5.87008,-8.14037 8.78346,-25.92081 18.16113,-23.25189c2.47408,-10.763 9.04029,4.89351 16.30021,-4.61621c4.44867,3.35889 13.85731,7.10325 3.42817,13.02555c18.83147,9.50194 34.07959,23.95835 41.92437,42.43233c7.86127,18.77559 23.52317,39.06593 48.8149,33.98585c22.90038,3.93186 49.73083,-9.80992 48.68822,-32.86776c0.44391,-16.33654 16.52325,-54.48924 38.19395,-35.09801c16.24046,6.22802 34.92778,21.65468 31.09642,39.16159c-2.21887,18.0508 -0.50452,36.25767 1.60162,54.45551c-13.60181,10.0825 -11.15982,27.59631 -20.65894,40.7838c7.8804,18.56862 0.29095,38.62871 -12.60841,53.70848c-12.90314,13.89935 -31.76248,26.24356 -52.66508,24.4381c-7.98578,13.29396 9.42929,24.99069 15.57339,25.73553c-16.01053,-5.1321 -13.75549,4.70874 -8.47672,15.2244c4.94576,19.6875 -10.58037,-17.53909 -20.60904,0.27255c-7.77597,7.68976 -38.86531,10.29276 -13.69539,1.07587c21.48048,-7.96875 -24.12099,-12.95142 -13.99879,5.00586c3.34996,7.49203 22.77361,10.79092 2.32814,7.93628c-9.02753,-4.74515 -13.85625,12.10397 -21.02202,8.92599zm43.09088,-34.62769c7.8596,-9.56569 10.12141,-37.24054 -6.87671,-17.06372c-13.43553,10.88889 -18.29311,29.6301 6.87671,17.06372z",
"mouse": "m0.99942,221.57315c18.97592,-5.2153 38.89368,-5.72223 58.37582,-7.77921c22.496,-2.19991 45.89505,-1.95135 67.14781,-10.93486c14.09158,-5.66957 18.06422,-22.34355 18.92189,-36.61246c3.853,-24.50212 17.5325,-49.94102 40.26784,-59.44455c8.81084,-4.72752 21.73279,1.24299 28.77051,-3.16475c-8.53821,-11.67851 9.86266,-25.18666 17.60304,-12.64201c9.90706,2.44754 20.13632,-4.12984 22.40773,-13.63184c8.92409,7.01573 17.55354,16.51189 28.21455,21.93088c10.14639,3.852 24.18005,17.58312 11.18048,27.34964c-8.74753,9.55273 -22.39651,8.48746 -31.55023,16.51577c-9.2032,7.60971 -8.39032,20.69223 -4.77994,31.13091c0.58701,11.39519 9.68161,13.02966 17.70996,16.03508c1.32019,7.11591 -9.48019,9.15216 -14.76065,10.85889c-11.37581,1.93378 -22.26419,-2.9012 -30.79645,-10.59497c-7.75803,-9.73157 -17.02081,0.98111 -14.42018,10.56955c-13.10742,11.20265 10.79541,5.32968 13.63931,12.79547c-11.33516,4.36475 -24.3324,2.06448 -36.29933,1.86723c-15.70055,0.23059 -28.91441,-10.20818 -44.0015,-12.87645c-9.31265,3.4888 -17.24791,11.49408 -27.66536,12.5939c-30.59707,5.30119 -61.77245,4.85931 -92.6703,6.59238c-8.95057,-0.1062 -18.97236,1.51553 -27.29502,-0.55859z",
"mythic_unicorn_2": "m182.0204,297.85391c-5.77818,-7.90314 -14.7635,-8.80438 -16.9241,-20.05347c-1.69348,-6.11859 -17.65829,-14.32483 -8.20955,-3.3428c7.2961,6.61768 15.96432,31.02682 -1.98563,23.31473c-13.65228,-5.01041 -14.2377,-20.48209 -17.89716,-32.06519c-11.90031,-8.25644 3.07674,-25.71408 -9.73651,-36.29276c-10.87482,-11.04288 -3.30119,-31.72456 -18.8404,-39.55457c-7.79965,-3.16566 -11.1757,18.69177 -12.48895,2.70163c-4.27309,-16.17242 -19.36451,7.86156 -29.42789,5.31358c-8.12057,-0.70595 13.58361,-6.35143 3.22626,-7.87068c-6.08933,3.33348 -11.72343,9.09727 -12.68681,-0.44351c-7.3251,-4.35046 -22.68599,-11.29797 -22.28696,-18.20909c6.3611,-1.99829 27.83545,3.78387 24.11403,-4.25029c-6.38573,-2.42343 -7.54573,-9.04803 0.27553,-4.60205c15.41352,0.48352 33.48255,-5.66917 46.30758,6.09853c6.68958,4.11612 13.26701,18.87857 16.84827,4.53223c11.5443,-13.92389 34.83883,-15.10329 41.95536,-33.13124c1.72211,-8.72215 -5.28903,-13.69839 -11.24521,-15.46512c-1.15878,-2.86641 -3.13139,-15.03612 -8.05675,-8.8949c0.22449,-5.37502 4.84473,-18.22859 -5.38927,-12.53831c-1.03801,-11.44846 8.74879,-22.87025 -4.19783,-31.20716c12.13029,2.25027 9.73825,-11.57887 7.09616,-13.77212c7.19073,-1.02106 15.62939,-7.49186 11.66467,-15.50808c7.80894,14.17675 8.07971,-17.19902 14.50877,-3.67512c11.83272,1.93988 -3.67599,-10.57163 7.20721,-7.77902c6.21443,0.21264 4.83423,-6.80917 10.41692,-1.50957c7.3886,-4.03149 -5.66409,-16.21531 6.26559,-7.74985c4.01033,3.484 16.77809,12.60911 14.48726,0.56772c11.33586,12.0923 20.25659,-11.23169 29.67625,-16.06186c3.73633,-4.47003 11.8613,-9.20071 4.36795,-0.66791c-4.97461,10.87669 -21.85179,22.64296 -17.31131,33.45053c-4.10985,3.74163 8.29224,8.44421 -1.58034,7.02768c-5.8488,6.31351 7.84134,18.1257 8.93388,28.06219c-3.13588,6.80826 -15.07657,14.53744 -19.90688,14.29315c1.76543,-8.76564 -2.06178,-20.19066 -13.24036,-15.23595c6.26202,11.45789 14.72818,22.40379 20.03253,34.86404c5.18462,12.24902 13.59059,26.39416 24.64981,10.62966c7.04883,-10.04763 27.18559,-9.90218 21.65419,6.41521c-2.82767,16.0232 4.74286,37.1706 -9.80374,48.20794c-8.77531,16.90973 -18.50392,-6.2874 -11.60965,-15.06308c-1.75673,-2.50781 -3.11575,-4.27809 2.02489,-7.7061c-1.06146,-2.57137 14.7939,-12.24554 6.80286,-18.18176c-9.0885,10.30594 -22.38708,22.23511 -18.69125,37.55475c2.99957,10.26601 -21.73944,27.86615 -19.76117,10.82875c0.44312,-6.62131 9.89648,-19.45415 7.72044,-21.10741c-6.90181,12.95006 -16.71997,25.39136 -31.55621,29.23625c-12.34084,0.73132 -18.80547,10.66779 -12.94504,21.69241c1.11998,15.62238 -7.12646,29.76141 -9.02499,44.972c3.52914,16.13283 25.01552,19.39287 27.93198,35.84959c5.01138,11.05234 -7.52405,9.41898 -13.36446,6.32639zm-30.55545,-48.12944c-1.80891,-7.29253 -5.53151,18.95699 -0.94273,5.02481l0.68695,-2.46143l0.25578,-2.56339z"
}
}

View File

@ -1,44 +0,0 @@
{"data": {
"raph_arrowleftalt": "M16,30.534c8.027,0,14.534-6.507,14.534-14.534c0-8.027-6.507-14.534-14.534-14.534C7.973,1.466,1.466,7.973,1.466,16C1.466,24.027,7.973,30.534,16,30.534zM18.335,6.276l3.536,3.538l-6.187,6.187l6.187,6.187l-3.536,3.537l-9.723-9.724L18.335,6.276zx",
"raph_arrowalt": "M16,1.466C7.973,1.466,1.466,7.973,1.466,16c0,8.027,6.507,14.534,14.534,14.534c8.027,0,14.534-6.507,14.534-14.534C30.534,7.973,24.027,1.466,16,1.466zM13.665,25.725l-3.536-3.539l6.187-6.187l-6.187-6.187l3.536-3.536l9.724,9.723L13.665,25.725zx",
"raph_code": "M8.982,7.107L0.322,15.77l8.661,8.662l3.15-3.15L6.621,15.77l5.511-5.511L8.982,7.107zM21.657,7.107l-3.148,3.151l5.511,5.511l-5.511,5.511l3.148,3.15l8.662-8.662L21.657,7.107zx",
"raph_arrowleft": "M21.871,9.814 15.684,16.001 21.871,22.188 18.335,25.725 8.612,16.001 18.335,6.276x",
"raph_arrow": "M10.129,22.186 16.316,15.999 10.129,9.812 13.665,6.276 23.389,15.999 13.665,25.725x",
"raph_undo": "M12.981,9.073V6.817l-12.106,6.99l12.106,6.99v-2.422c3.285-0.002,9.052,0.28,9.052,2.269c0,2.78-6.023,4.263-6.023,4.263v2.132c0,0,13.53,0.463,13.53-9.823C29.54,9.134,17.952,8.831,12.981,9.073zx",
"raph_merge": "M26.92,10.928l-3.574-2.064v2.297h-6.414c-1.123,0.084-3.062-1.19-5.218-2.881C9.543,6.676,7.062,4.709,3.74,4.656H1.505v3.662H3.74c1.627-0.047,3.633,1.232,5.769,2.883c0.796,0.577,1.599,1.213,2.45,1.788c-0.851,0.575-1.653,1.212-2.45,1.789c-2.136,1.646-4.142,2.929-5.767,2.882H1.505v3.668h2.236c3.315-0.047,5.797-2.02,7.975-3.621c2.156-1.691,4.094-2.966,5.218-2.883h6.412v2.297l3.574-2.062l3.576-2.064L26.92,10.928zx",
"raph_split": "M23.346,23.979l3.576-2.062l3.574-2.062l-3.576-2.064l-3.574-2.062v2.293c-0.876,0-1.894,0-2.235,0c-1.626,0.046-3.633-1.233-5.768-2.883c-0.796-0.578-1.599-1.214-2.45-1.789c0.851-0.575,1.653-1.211,2.45-1.789c2.135-1.647,4.142-2.929,5.766-2.882l2.237-0.001v2.296l3.574-2.063l3.576-2.064L26.92,4.78l-3.574-2.064v2.295H21.11c-3.321,0.047-5.803,2.019-7.975,3.622c-2.156,1.691-4.094,2.965-5.218,2.882H1.505v3.664h6.414c1.123-0.083,3.062,1.191,5.218,2.882c2.171,1.604,4.652,3.575,7.974,3.622h2.235V23.979L23.346,23.979zx",
"raph_fork": "M26.268,22.562l3.514-2.03l-3.514-2.028l-3.515-2.028v2.256c-0.922-0.002-2.45-0.002-2.883-0.002c-1.28-0.03-2.12-0.431-2.994-1.148c-1.303-1.07-2.415-2.997-3.756-4.853c-0.682-0.923-1.442-1.839-2.454-2.575C9.664,9.415,8.355,8.902,6.9,8.912H0.593v3.604H6.9c0.877,0.016,1.432,0.302,2.189,1.012c1.12,1.055,2.212,3.072,3.718,4.983c1.476,1.893,3.747,3.804,7.041,3.823h2.905v2.256L26.268,22.562zM11.401,8.912c0.04,0.028,0.082,0.053,0.121,0.082c1.202,0.874,2.07,1.947,2.757,2.88c0.158,0.218,0.298,0.428,0.448,0.642h8.026v2.257l3.515-2.028l3.514-2.029l-3.514-2.029l-3.515-2.03v2.255H11.401zx",
"raph_shuffle": "M9.089,13.133c0.346,0.326,0.69,0.75,1.043,1.228c0.051-0.073,0.099-0.144,0.15-0.219c0.511-0.75,1.09-1.599,1.739-2.421c0.103-0.133,0.211-0.245,0.316-0.371c-0.487-0.572-1.024-1.12-1.672-1.592C9.663,9.02,8.354,8.506,6.899,8.517H0.593v3.604H6.9C7.777,12.138,8.333,12.422,9.089,13.133zM22.753,16.082v2.256c-0.922-0.002-2.45-0.002-2.883-0.002c-1.28-0.03-2.12-0.438-2.994-1.148c-0.378-0.311-0.74-0.7-1.097-1.133c-0.268,0.376-0.538,0.764-0.813,1.168c-0.334,0.488-0.678,0.99-1.037,1.484c-0.089,0.121-0.189,0.246-0.283,0.369c1.455,1.528,3.473,2.846,6.202,2.862h2.905v2.256l3.515-2.026l3.521-2.03l-3.521-2.028L22.753,16.082zM16.876,13.27c0.874-0.712,1.714-1.118,2.994-1.148c0.433,0,1.961,0,2.883-0.002v2.256l3.515-2.026l3.521-2.028l-3.521-2.029l-3.515-2.027V8.52h-2.905c-3.293,0.02-5.563,1.93-7.041,3.822c-1.506,1.912-2.598,3.929-3.718,4.982C8.332,18.033,7.777,18.32,6.9,18.336H0.593v3.604H6.9c1.455,0.011,2.764-0.502,3.766-1.242c1.012-0.735,1.772-1.651,2.454-2.573C14.461,16.267,15.574,14.34,16.876,13.27zx",
"raph_refresh": "M15.999,4.308c1.229,0.001,2.403,0.214,3.515,0.57L18.634,6.4h6.247l-1.562-2.706L21.758,0.99l-0.822,1.425c-1.54-0.563-3.2-0.878-4.936-0.878c-7.991,0-14.468,6.477-14.468,14.468c0,3.317,1.128,6.364,3.005,8.805l2.2-1.689c-1.518-1.973-2.431-4.435-2.436-7.115C4.312,9.545,9.539,4.318,15.999,4.308zM27.463,7.203l-2.2,1.69c1.518,1.972,2.431,4.433,2.435,7.114c-0.011,6.46-5.238,11.687-11.698,11.698c-1.145-0.002-2.24-0.188-3.284-0.499l0.828-1.432H7.297l1.561,2.704l1.562,2.707l0.871-1.511c1.477,0.514,3.058,0.801,4.709,0.802c7.992-0.002,14.468-6.479,14.47-14.47C30.468,12.689,29.339,9.643,27.463,7.203zx",
"10": "m0.99679,148.19614c0.277,-34.75176 -0.17724,-69.54997 2.27791,-104.24061c60.32762,11.41171 119.94372,30.08407 179.25477,46.87597c3.18407,-17.04019 1.68541,-31.17523 4.4519,-46.93008c38.1039,33.15254 75.86421,66.77718 112.07695,102.003c-34.74261,39.95821 -74.59364,74.65916 -113.71667,110.1933c-1.26689,-16.54773 -2.53401,-33.09534 -3.80092,-49.64307c-57.66159,16.00916 -118.64064,32.56108 -176.67504,47.19652c-3.94662,-33.77068 -3.83062,-70.54794 -3.8689,-105.45503z",
"11": "m136.44681,226.75766l47.24773,-47.40907l-91.35118,0l-91.35098,0l0,-29.34846l0,-29.34849l90.303,0c49.66658,0 90.30293,-1.48752 90.30293,-3.30561c0,-1.81805 -19.77211,-23.15214 -43.93797,-47.40906l-43.93811,-44.1035l40.61224,0l40.61209,0l62.02386,62.14279l62.02383,62.14276l-62.14281,62.02386l-62.14279,62.02386l-42.75481,0l-42.75491,0l47.24786,-47.40909z",
"12": "m116.00724,294.49442c-8.01179,-8.01181 -6.96065,-12.86337 12.51841,-57.77466c9.83598,-22.67787 17.88353,-41.89153 17.88353,-42.69699c0,-0.8054 -27.16052,-1.46442 -60.3569,-1.46442l-60.3569,0l0,-42.47337l0,-42.47337l60.83526,0c46.90741,0 60.31158,-1.27951 58.54825,-5.58862c-1.25784,-3.07373 -9.83818,-23.47047 -19.06743,-45.32602c-17.39725,-41.19823 -17.39179,-52.24659 0.02688,-55.67119c8.66862,-1.70424 143.62872,129.24032 148.26757,143.85621c-44.95403,52.18671 -98.68933,106.81281 -148.18829,154.97751c-2.60997,0 -7.15958,-2.41428 -10.11037,-5.36508z",
"13": "m167.5984,129.81894c13.45454,0 26.90909,0 40.36363,0c0,13.45454 0,26.90909 0,40.36363c-13.45454,0 -26.90909,0 -40.36363,0c0,-13.45454 0,-26.90909 0,-40.36363zm-58.30304,0c14.9494,0 29.89909,0 44.8485,0c0,13.45454 0,26.90909 0,40.36363c-14.9494,0 -29.89909,0 -44.8485,0c0,-13.45454 0,-26.90909 0,-40.36363zm-53.81818,0c14.9494,0 29.89908,0 44.84848,0c0,13.45454 0,26.90909 0,40.36363c-14.9494,0 -29.89909,0 -44.84848,0c0,-13.45454 0,-26.90909 0,-40.36363zm-53.81818,0c14.9494,0 29.89908,0 44.84849,0c0,13.45454 0,26.90909 0,40.36363c-14.94941,0 -29.89908,0 -44.84849,0c0,-13.45454 0,-26.90909 0,-40.36363zm165.9394,83.23706c14.2021,-0.91132 28.40395,0.64389 42.60606,-0.26743c0.91125,-14.20201 0.48917,-28.40405 1.40042,-42.60606c13.29086,0 27.91505,0 41.20563,0c0,-13.45454 0,-26.9091 0,-40.36363c-13.45454,0 -26.90909,0 -40.36363,0c0,-14.94952 0,-29.899 0,-44.84848c-14.9494,0 -29.89908,0 -44.84848,0c0,-13.45454 0,-26.90909 0,-40.36363c14.9494,0 29.89908,0 44.84848,0c0,13.45454 0,26.90909 0,40.36363c13.29059,0 27.91478,-0.66666 41.20563,-0.66666c0.91125,14.20197 0.48918,29.0707 1.40044,43.27271c14.20209,0.91129 28.60425,-0.07731 42.80637,0.83398c0,13.29074 -0.20032,28.48132 -0.20032,41.77208c-14.9494,0 -29.89908,0 -44.84848,0c0,14.94951 0,29.89897 0,44.84848c-13.45454,0 -26.90909,0 -40.36363,0c0,13.45454 0,26.90909 0,40.36363c-14.9494,0 -29.89908,0 -44.84848,0c0,-13.29074 0,-29.0479 0,-42.33865z",
"14": "m158.38327,149.9911l-83.00266,-148.9972l149.24145,148.9972l-149.24145,148.99712l83.00266,-148.99712z",
"15": "m175.41861,150.04552l-148.89816,-149.05299l98.06119,0l148.89816,149.05299l-148.89816,149.05287l-98.06119,0l148.89816,-149.05287z",
"16": "m227.52928,183.22569c6.14276,-5.95375 12.01762,-12.81764 17.19296,-18.97911l-155.07133,-2.82724l-21.27044,24.3479l-67.38522,-2.09119c8.44345,-11.0853 17.69294,-24.10754 24.55062,-33.88853l-24.39403,-32.88164l71.89852,0l14.62907,20.54468l158.32403,0l-19.63887,-20.4987c6.06082,-6.45992 15.03049,-15.08081 19.89622,-19.60087l53.24701,52.24467l-53.36812,53.05513l-18.61044,-19.42511z",
"bent_up": "m1.00136,224.73827l204.13,0l0,-149.15997l-31.28999,0l62.57999,-74.57997l62.58002,74.57997l-31.29001,0l0,223.73997l-266.71,0z",
"callout": "m0.99757,0.99642l193.63145,0l0,111.75l53.81497,0l0,-37.25l50.55357,74.49999l-50.55357,74.50003l0,-37.25002l-53.81497,0l0,111.75l-193.63145,0z",
"chevron": "m0.99844,0.99688l223.49919,0l74.49986,149.00068l-74.49986,149.00134l-223.49919,0l74.49984,-149.00134l-74.49984,-149.00068z",
"corners": "m78.29672,150l-55.17469,-55.1747l0,27.58735l-22.12203,0l0,-121.41265l121.41265,0l0,22.12203l-27.58736,0l55.17471,55.17471l55.17471,-55.17471l-27.58736,0l0,-22.12203l121.41264,0l0,121.41265l-22.12204,0l0,-27.58735l-55.1747,55.1747l55.1747,55.17471l0,-27.58736l22.12204,0l0,121.41264l-121.41264,0l0,-22.12204l27.58736,0l-55.17471,-55.17468l-55.17471,55.17468l27.58736,0l0,22.12204l-121.41265,0l0,-121.41264l22.12203,0l0,27.58736l55.17469,-55.17471z",
"diamond": "m228.23334,205.75699c-12.96465,-22.71989 -62.74901,-33.9996 -160.88079,-36.45064l-66.35706,-1.65739l0,-19.88501l0,-19.88482l50.08599,0c59.04541,0 101.26503,-4.08251 135.71376,-13.12332c20.32901,-5.33509 27.0845,-8.73719 36.27359,-18.26725l11.29199,-11.71121l32.38853,32.49907l32.38852,32.49925l-32.75113,32.72415l-32.75122,32.72433l-5.40219,-9.46716z",
"dotted": "m164.76302,54.29618c-12.89404,-14.08136 13.13254,-37.91006 24.83243,-21.67826c9.98653,14.06865 -12.21164,31.95572 -24.83243,21.67826zm34.52623,32.04741c-10.53665,-15.50334 18.2944,-32.06738 27.41472,-16.58083c10.82574,16.19412 -18.42853,34.68893 -27.41472,16.58083zm39.30569,38.77469c-13.16362,-8.91086 -0.08168,-29.46533 13.54875,-27.63215c18.93346,2.88981 13.87328,34.44158 -4.59297,32.89478c-3.58466,-0.41574 -6.77832,-2.45136 -8.95578,-5.26263zm32.87781,34.23642c-11.00845,-13.99648 14.37656,-32.37918 25.04797,-19.05171c11.60712,14.82527 -14.29718,34.39392 -25.04797,19.05171zm-63.84386,0.7675c-12.23796,-11.58463 5.72536,-30.30273 19.24007,-25.41679c19.63696,6.28566 5.03751,36.50668 -12.48737,29.64096c-2.41074,-1.14194 -4.56958,-2.71278 -6.7527,-4.22417zm-52.05359,0c-14.38365,-13.43323 11.89731,-35.50046 24.20743,-21.44815c12.48965,14.64734 -10.94827,35.43011 -24.20743,21.44815zm-51.41751,-0.7675c-11.01524,-13.99239 14.38364,-32.38554 25.04439,-19.04626c11.57417,14.84886 -14.25791,34.38168 -25.04439,19.04626zm-48.97159,0.7675c-14.38364,-13.43323 11.89733,-35.50046 24.20746,-21.44815c12.48962,14.64734 -10.94829,35.43011 -24.20746,21.44815zm-51.41319,-0.75569c-12.62148,-16.51503 21.51373,-34.53826 27.20482,-13.82039c4.20761,13.86485 -18.57945,25.93829 -27.20482,13.82039zm232.73729,36.71002c-12.26451,-12.7252 9.54947,-34.95583 22.63777,-23.37347c16.16324,11.53831 -5.25334,38.27226 -20.09267,25.93422c-0.83693,-0.86462 -1.69453,-1.70929 -2.5451,-2.56075zm-37.22105,31.5554c-10.33875,-14.74719 16.53384,-30.93315 26.24101,-17.10368c12.66234,14.69044 -12.76988,34.70573 -24.48114,20.0298l-1.75987,-2.92612zm-33.2933,39.2449c-11.17,-10.21844 4.17313,-26.31229 16.33257,-23.575c18.50797,4.77472 6.84483,34.45702 -10.13109,28.82402c-2.6304,-0.90369 -4.76476,-2.91159 -6.20148,-5.24902z",
"hand_2": "m166.23018,238.662c7.92778,-2.90976 14.43034,-5.61938 2.1153,-5.69868c-10.87593,1.46172 -39.01099,-9.28242 -16.4619,-14.56342c14.10701,-5.508 46.21144,7.21423 46.38257,-14.54736c-2.55197,-13.63786 -43.96396,-2.98952 -30.34076,-21.27969c15.00345,-6.1348 44.75407,8.31958 49.78708,-10.66391c-4.61371,-18.40675 -33.47118,-6.65964 -47.97568,-11.74664c-14.06097,2.90031 -17.76392,-15.58949 -1.98296,-12.79868c36.48125,-1.96817 73.21696,0.92035 109.57253,-3.09619c5.87265,-3.2529 10.21371,-23.26295 2.80267,-24.61046c-52.95885,-1.09735 -106.01129,-0.08873 -158.88631,-3.36192c-18.99625,-0.19729 -4.48207,-20.48157 9.55508,-15.71787c13.37119,-4.37856 18.67023,-15.85947 28.4838,-27.19597c5.01488,-24.77942 -19.08717,-15.58241 -28.93028,-8.33138c-10.99126,7.20572 -29.89664,22.16276 -39.92577,30.01463c-8.79154,6.3571 -29.0466,13.41131 -41.36795,21.93291c-10.53185,3.7428 -22.05687,1.87943 -32.40108,2.55152c0,33.57336 0,67.14623 0,100.71958c29.2655,12.743 60.06093,23.93646 92.50566,22.65599c19.00592,-0.07739 38.55775,0.63341 57.06799,-4.26245zm-120.57521,10.76822c-14.93961,-5.74022 -29.85212,-11.55359 -44.65637,-17.63553c0.70846,-41.92598 1.41691,-83.85243 2.12533,-125.77841c11.81984,-0.44887 29.35853,5.41407 37.78343,-3.21891c22.65079,-7.26991 37.35686,-23.34933 57.21348,-35.41785c13.97373,-10.98014 25.13529,-14.72766 39.56827,-23.05481c10.96249,-5.06954 16.89815,-2.48073 29.24257,-0.27045c5.38396,8.81045 12.06773,13.36412 8.59946,30.1482c-7.23705,3.64039 -16.6288,28.10783 -2.4068,28.30228c39.59416,3.79424 79.82585,-1.53866 119.10855,5.09266c9.78171,13.24281 11.64719,42.99407 -6.25568,51.39202c-17.13269,4.95341 -35.19667,2.49629 -52.7989,3.09193c-0.00107,12.52824 2.07022,28.51608 -11.83537,34.80946c-10.26779,13.39197 -10.98985,33.06551 -27.53502,42.86476c-13.91499,14.25851 -33.72333,18.66306 -53.04445,18.19296c-31.68189,0.4295 -65.02994,3.46667 -95.10849,-8.51738l0,-0.00095z",
"hand": "m136.98543,214.15889c-14.70618,-5.74251 -4.62521,-24.05643 -14.3905,-33.27538c-12.96347,-7.75244 -2.12349,-24.16507 -12.57821,-33.28812c-7.48801,-6.64952 -5.24203,-16.62421 -3.67915,-25.18983c-29.75101,-0.23549 -59.53337,0.62366 -89.25697,-0.78464c-15.11522,1.28053 -20.03182,-18.26941 -12.80666,-28.85114c7.00419,-11.24166 21.87759,-8.31262 33.12609,-9.4029c64.97946,-0.76864 129.97618,-0.61134 194.95673,0.02921c17.26189,0.80067 37.01695,-1.19489 50.6566,11.68779c16.24808,15.16693 16.0166,39.34441 16.04852,59.94771c-0.42267,19.21857 -2.90109,42.02173 -20.4863,53.46951c-16.36914,10.95175 -36.93741,7.66907 -55.55533,8.62302c-27.94264,-0.30014 -56.07063,1.04456 -83.86891,-2.2673l-2.16592,-0.69792l0,0zm69.33224,-10.55814c9.631,-11.23128 -3.5211,-20.50227 -14.65393,-17.55965c-16.14473,-0.10535 -32.65453,-1.7021 -48.52592,1.75482c-13.67432,5.19589 -4.85582,21.54512 7.46478,18.25877c18.04872,1.02443 36.47603,1.82143 54.28616,-1.68709l1.42891,-0.76686zm65.93199,-2.17656c15.66348,-8.69865 15.78064,-28.60548 16.25079,-44.24881c-0.34195,-16.50655 1.70639,-34.58434 -7.04581,-49.36581c-7.23798,-10.84158 -20.71933,-14.52557 -33.13705,-14.12024c-23.36646,0.0377 -47.0793,-1.82723 -70.16504,2.52512c-15.66467,3.36275 -22.23152,20.93031 -23.45795,35.19015c-0.48341,13.80043 -1.82124,28.00842 1.22505,41.56039c7.24641,5.02983 15.89499,-9.13847 19.17191,-15.4227c4.31766,-11.67575 -0.61995,-26.25061 8.10953,-36.19362c8.72269,-9.46424 24.96402,-8.53419 32.52521,1.88722c8.3812,9.23244 -0.48325,21.69592 1.82307,32.51563c4.15211,9.93069 -0.70021,19.45959 -0.85791,28.5067c4.13835,6.87068 2.87872,15.02933 1.61143,22.50597c16.21062,-0.57724 32.86133,1.70529 48.65034,-2.71872c1.84845,-0.69202 3.61401,-1.59238 5.29642,-2.62128zm-126.53741,-35.9437c2.18771,-13.69858 -18.65493,-12.59653 -20.49308,-1.57007c-4.38604,12.23279 17.61123,15.56906 20.78048,7.03215c0.03699,-1.82657 -0.14053,-3.64476 -0.2874,-5.46208zm62.45076,0.42249c1.41585,-11.79691 -20.5592,-11.91444 -24.75133,-3.63126c-2.34377,5.03215 -10.03961,15.25429 1.13329,12.59268c7.54675,-1.70357 25.12254,3.75204 23.61804,-8.96143zm-62.44263,-31.11197c-0.75351,-2.94205 3.03209,-10.28735 -1.13232,-9.92064c-9.20967,1.01493 -19.08115,-0.45296 -27.70964,3.18962c-7.77171,10.63712 5.24397,21.0274 15.9218,17.53934c7.79146,0.11475 13.91219,-1.24452 12.92017,-10.80832zm61.0041,7.53122c8.85812,-9.53879 -4.95708,-21.9593 -14.94496,-15.6684c-10.39732,5.40628 -7.29182,25.10663 6.58635,19.17703c2.96956,-0.54494 6.1384,-1.30057 8.35861,-3.50864zm-53.18405,-38.39041c2.00339,-3.50816 4.00681,-7.01634 6.01019,-10.52453c-44.99024,0.24061 -90.00227,-0.61648 -134.97418,0.73022c-12.21447,-3.32573 -22.07768,15.22181 -6.82234,18.35822c24.02138,3.10667 48.39057,1.52395 72.56345,1.97845c19.07089,-0.00607 38.14179,-0.01187 57.21268,-0.01793c2.0034,-3.50815 4.00681,-7.01634 6.01019,-10.52452z",
"in_circle_1": "m5.82933,197.43428c40.71335,-0.01967 134.41318,-0.35846 180.09581,-0.39397c0,16.34004 0,32.68033 0,49.02061c32.58316,-32.50494 65.16631,-65.00987 97.74948,-97.51482c-31.92815,-31.66348 -63.85603,-63.3272 -95.78392,-94.99068c-0.78604,15.0691 -1.57207,30.13822 -2.35809,45.20756c-59.53047,-0.36446 -119.11517,1.07731 -178.59646,-1.67522c0.61495,-72.0702 150.25177,-122.40517 212.67849,-79.3467c34.44215,24.58492 61.89983,56.78898 72.41017,96.54306c3.07645,22.14599 2.45142,44.78936 0.58615,67.02389c-6.63419,36.33044 -31.19992,67.07545 -59.56813,89.58617c-20.38606,15.81168 -45.18452,26.98569 -71.36909,26.70041c-75.26421,9.28406 -124.16029,-34.86111 -155.84441,-100.16032z",
"inner": "m197.26169,150.29735l-74.64867,-74.64867l0,37.32433l-80.12502,0l0,-111.97301l215.02399,0l0,298.5947l-215.02399,0l0,-111.97301l80.12502,0l0,37.32433l74.64867,-74.64867z",
"left_right": "m0.99835,150.00092l86.49609,-86.49651l0,43.24814l125.35546,0l0,-43.24814l86.49605,86.49651l-86.49605,86.49605l0,-43.24803l-125.35546,0l0,43.24803l-86.49609,-86.49605z",
"left_up": "m0.99865,224.5l74.50004,-74.5l0,37.25l111.74991,0l0,-111.75l-37.25,0l74.5,-74.5l74.5,74.5l-37.25,0l0,186.25l-186.24989,0l0,37.25l-74.50005,-74.5z",
"pentagon": "m0.99791,0.9981l162.54547,0l135.45454,149.40899l-135.45454,149.40898l-162.54547,0z",
"recycle_3": "m28.22058,93.28644c0.00678,-2.58051 2.31667,-18.40222 5.13495,-35.15953c8.78786,-52.25238 8.91713,-52.48297 20.07468,-35.82898l6.60126,9.85321l19.30534,-9.74535c25.53492,-12.88995 56.00401,-17.65838 84.01221,-13.14781c11.88918,1.91477 24.50447,5.02692 28.034,6.91587c7.00751,3.7502 6.55832,6.97083 -4.61034,33.05528c-6.12129,14.29643 -6.70886,14.70388 -17.2827,11.98577c-17.99704,-4.62608 -47.30141,-3.16897 -61.44969,3.05553l-13.26538,5.83627l9.31132,9.7189c5.12125,5.34554 8.02238,10.51565 6.44702,11.48924c-1.57542,0.97362 -20.7427,2.87124 -42.59392,4.21677c-32.78424,2.01891 -39.72768,1.62653 -39.71874,-2.24516zm168.81314,144.07051l-14.20186,-18.81009l12.93088,-12.50398c13.30882,-12.86928 22.90733,-30.93761 27.13603,-51.08145l2.41319,-11.49524l-13.91847,2.22554c-7.65517,1.22421 -13.96558,1.06514 -14.02313,-0.35333c-0.26878,-6.62247 36.12752,-71.90508 39.66528,-71.14616c5.56261,1.19325 61.9985,50.07314 61.9985,53.6975c0,1.61765 -5.93121,3.88967 -13.18036,5.04884l-13.18039,2.10753l-1.30084,22.476c-1.66846,28.82635 -16.85831,62.09589 -38.00682,83.24434c-8.4704,8.47049 -16.91487,15.4008 -18.76544,15.4008c-1.85062,0 -9.75555,-8.46469 -17.56657,-18.81029zm-128.20031,52.72328c0,-2.07986 2.23119,-8.0961 4.95819,-13.36954c4.94765,-9.56766 4.91901,-9.61411 -13.52617,-21.86105c-28.85884,-19.16116 -50.30965,-53.17105 -57.05687,-90.46291l-2.21202,-12.22588l15.77176,-2.16168c32.51166,-4.45622 32.80855,-4.32152 39.31982,17.83711c4.39381,14.95265 9.79779,23.91347 21.44681,35.56244c8.5651,8.56514 16.76965,14.83324 18.23236,13.92926c1.46265,-0.90396 3.57973,-6.24536 4.70464,-11.86984c1.1249,-5.62448 3.47056,-10.22638 5.21256,-10.22638c3.99942,0 41.66188,59.38374 42.2598,66.63249c0.39931,4.84137 -19.96001,13.22382 -73.01952,30.06421c-3.38333,1.07379 -6.09135,0.25229 -6.09135,-1.84824z",
"turn_17": "m187.66985,234.28424l2.06375,-22.20483l-24.28615,-3.86421c-61.48712,-9.78288 -121.75832,-51.26649 -155.31676,-106.90179c-6.02069,-9.98148 -10.05047,-19.59818 -8.95503,-21.37048c2.51272,-4.06578 63.74106,-36.43469 68.91894,-36.43469c2.11224,0 7.18627,5.95309 11.27556,13.22911c17.44035,31.03078 62.57552,63.39609 94.35383,67.65826l12.88387,1.7281l-2.21523,-19.19039c-2.29968,-19.92216 -1.65292,-24.10554 3.72659,-24.10554c3.43987,0 106.12749,76.50481 109.06303,81.25475c2.22696,3.60321 -11.89679,16.9705 -62.46501,59.11911c-21.96555,18.30804 -42.4514,33.28745 -45.52422,33.28745c-4.91821,0 -5.33987,-2.65765 -3.52318,-22.20483z",
"turn_reverse": "m298.99997,168.62498c0,-51.43148 -133.41916,-93.12499 -297.99997,-93.12499l0,-74.49999l0,0c164.58081,0 297.99997,41.69347 297.99997,93.12499l0,74.49999c0,42.46484 -91.92749,79.55168 -223.49998,90.16789l0,37.25l-74.49999,-71.54289l74.49999,-77.45709l0,37.25l0,0c88.72033,-7.15858 161.96952,-26.67409 198.62153,-52.91789",
"u_turn": "m1.00059,299.00055l0,-167.62497l0,0c0,-72.00411 58.37087,-130.37499 130.375,-130.37499l0,0l0,0c34.57759,0 67.73898,13.7359 92.18906,38.18595c24.45006,24.45005 38.18593,57.61144 38.18593,92.18904l0,18.625l37.24997,0l-74.49995,74.50002l-74.50002,-74.50002l37.25,0l0,-18.625c0,-30.8589 -25.0161,-55.87498 -55.87498,-55.87498l0,0l0,0c-30.85892,0 -55.875,25.01608 -55.875,55.87498l0,167.62497z",
"up": "m1.49805,149.64304l148.50121,-148.00241l148.50121,148.00241l-74.25061,0l0,148.71457l-148.5012,0l0,-148.71457z",
"3_ways": "m1,159.61292l52.87097,-52.87097l0,26.43549l69.69355,0l0,-79.30646l-26.43549,0l52.87096,-52.87097l52.87097,52.87097l-26.43549,0l0,79.30646l69.69356,0l0,-26.43549l52.87096,52.87097l-52.87096,52.87097l0,-26.43549l-192.25807,0l0,26.43549l-52.87097,-52.87097z",
"maximize_2": "m1,149.99998l67.05,-67.05l0,33.52501l48.425,0l0,-48.425l-33.52501,0l67.05,-67.05l67.04999,67.05l-33.52499,0l0,48.425l48.42502,0l0,-33.52501l67.04997,67.05l-67.04997,67.04999l0,-33.52499l-48.42502,0l0,48.42502l33.52499,0l-67.04999,67.04997l-67.05,-67.04997l33.52501,0l0,-48.42502l-48.425,0l0,33.52499l-67.05,-67.04999z",
"raph_download": "M16,1.466C7.973,1.466,1.466,7.973,1.466,16c0,8.027,6.507,14.534,14.534,14.534c8.027,0,14.534-6.507,14.534-14.534C30.534,7.973,24.027,1.466,16,1.466zM16,28.792c-1.549,0-2.806-1.256-2.806-2.806s1.256-2.806,2.806-2.806c1.55,0,2.806,1.256,2.806,2.806S17.55,28.792,16,28.792zM16,21.087l-7.858-6.562h3.469V5.747h8.779v8.778h3.468L16,21.087zx"
}
}

View File

@ -1,14 +0,0 @@
{"data": {
"1": "m0.99786,35.96579l0,0c0,-19.31077 15.28761,-34.96524 34.14583,-34.96524l15.52084,0l0,0l74.50001,0l139.68748,0c9.05606,0 17.74118,3.68382 24.14478,10.24108c6.40356,6.55726 10.00107,15.45081 10.00107,24.72416l0,87.41311l0,0l0,52.44785l0,0c0,19.31078 -15.2876,34.96524 -34.14584,34.96524l-139.68748,0l-97.32507,88.90848l22.82506,-88.90848l-15.52084,0c-18.85822,0 -34.14583,-15.65446 -34.14583,-34.96524l0,0l0,-52.44785l0,0z",
"4": "m1,1l49.66667,0l0,0l74.5,0l173.83334,0l0,115.8889l0,0l0,49.66666l0,33.11111l-173.83334,0l-123.68433,97.37498l49.18433,-97.37498l-49.66667,0l0,-33.11111l0,-49.66666l0,0z",
"5": "m3.88165,296.34811l58.64952,-105.30074l0,0c-62.13446,-31.76456 -79.86445,-91.6022 -40.96117,-138.24044c38.90255,-46.63797 121.70818,-64.81269 191.29914,-41.98796c69.59094,22.8246 103.19446,79.17835 77.63046,130.19172c-25.56265,51.01335 -101.92546,79.99094 -176.41714,66.94487l-110.20081,88.39255z",
"6": "m4.33333,266.6662c0,-1.854 2.23757,-3.35571 5,-3.35571c2.76243,0 5,1.50171 5,3.35571c0,1.85394 -2.23757,3.35565 -5,3.35565c-2.76243,0 -5,-1.50171 -5,-3.35565zm10.25,-24.11072c0,-4.6351 5.59392,-8.38943 12.50001,-8.38943c6.90608,0 12.5,3.75433 12.5,8.38943c0,4.63489 -5.59392,8.38928 -12.5,8.38928c-6.90609,0 -12.50001,-3.75433 -12.50001,-8.38928zm23.75001,-36.55524c0,-12.81482 19.46685,-23.19473 43.50002,-23.19473c24.0331,0 43.49996,10.37991 43.49996,23.19473c0,12.81473 -19.46686,23.19455 -43.49996,23.19455c-24.03317,0 -43.50002,-10.37982 -43.50002,-23.19455zm-37.33334,-104.99994c0,-55.2486 66.67956,-100 149,-100c82.32047,0 149,44.7514 149,100c0,55.24866 -66.67953,100 -149,100c-82.32044,0 -149,-44.75134 -149,-100z",
"scream": "m299.67374,132.67729l-35.72574,1.97192l-9.55817,48.04506l-31.60561,-11.61551l-45.83566,36.86661l-17.45096,-21.51509l-146.98414,92.00807l81.6677,-102.60858l-67.83573,-13.33963l21.22697,-19.84731l-46.57336,-36.42733l33.47025,-8.80944l-10.52427,-47.94958l35.08694,5.02536l28.86619,-44.2482l25.5638,17.26465l59.09183,-26.49832l7.92432,24.02253l70.55626,-0.33542l-12.23108,23.15343l59.61954,25.93398l-28.50317,14.93327l29.75409,43.96953z",
"thought": "m12,1c-6.094,0 -11,4.906 -11,11l0,147c0,6.09399 4.906,11 11,11l49.15625,0c-2.03143,2.32526 -3.15625,4.84886 -3.15625,7.5c0,11.32597 20.36188,20.5 45.5,20.5c25.13812,0 45.5,-9.17403 45.5,-20.5c0,-2.65114 -1.12482,-5.17474 -3.15625,-7.5l142.15625,0c6.09399,0 11,-4.90601 11,-11l0,-147c0,-6.094 -4.90601,-11 -11,-11l-276,0zm54,199c-13.81215,0 -25,5.37016 -25,12c0,6.62984 11.18785,12 25,12c13.81216,0 25,-5.37016 25,-12c0,-6.62984 -11.18784,-12 -25,-12zm-25,30c-7.73481,0 -14,4.02762 -14,9c0,4.97238 6.26519,9 14,9c7.73481,0 14,-4.02762 14,-9c0,-4.97238 -6.26519,-9 -14,-9zm-24,22c-4.97238,0 -9,2.23756 -9,5c0,2.76242 4.02762,5 9,5c4.97238,0 9,-2.23758 9,-5c0,-2.76244 -4.02762,-5 -9,-5z",
"raph_chat": "M15.985,5.972c-7.563,0-13.695,4.077-13.695,9.106c0,2.877,2.013,5.44,5.147,7.108c-0.446,1.479-1.336,3.117-3.056,4.566c0,0,4.015-0.266,6.851-3.143c0.163,0.04,0.332,0.07,0.497,0.107c-0.155-0.462-0.246-0.943-0.246-1.443c0-3.393,3.776-6.05,8.599-6.05c3.464,0,6.379,1.376,7.751,3.406c1.168-1.34,1.847-2.892,1.847-4.552C29.68,10.049,23.548,5.972,15.985,5.972zM27.68,22.274c0-2.79-3.401-5.053-7.599-5.053c-4.196,0-7.599,2.263-7.599,5.053c0,2.791,3.403,5.053,7.599,5.053c0.929,0,1.814-0.116,2.637-0.319c1.573,1.597,3.801,1.744,3.801,1.744c-0.954-0.804-1.447-1.713-1.695-2.534C26.562,25.293,27.68,23.871,27.68,22.274zx",
"raph_bubble": "M16,5.333c-7.732,0-14,4.701-14,10.5c0,1.982,0.741,3.833,2.016,5.414L2,25.667l5.613-1.441c2.339,1.317,5.237,2.107,8.387,2.107c7.732,0,14-4.701,14-10.5C30,10.034,23.732,5.333,16,5.333zx",
"raph_codetalk": "M16,4.938c-7.732,0-14,4.701-14,10.5c0,1.981,0.741,3.833,2.016,5.414L2,25.272l5.613-1.44c2.339,1.316,5.237,2.106,8.387,2.106c7.732,0,14-4.701,14-10.5S23.732,4.938,16,4.938zM13.704,19.47l-2.338,2.336l-6.43-6.431l6.429-6.432l2.339,2.341l-4.091,4.091L13.704,19.47zM20.775,21.803l-2.337-2.339l4.092-4.09l-4.092-4.092l2.337-2.339l6.43,6.426L20.775,21.803zx",
"raph_talkq": "M16,4.938c-7.732,0-14,4.701-14,10.5c0,1.981,0.741,3.833,2.016,5.414L2,25.272l5.613-1.44c2.339,1.316,5.237,2.106,8.387,2.106c7.732,0,14-4.701,14-10.5S23.732,4.938,16,4.938zM16.868,21.375h-1.969v-1.889h1.969V21.375zM16.772,18.094h-1.777l-0.176-8.083h2.113L16.772,18.094zx",
"raph_talke": "M16,4.938c-7.732,0-14,4.701-14,10.5c0,1.981,0.741,3.833,2.016,5.414L2,25.272l5.613-1.44c2.339,1.316,5.237,2.106,8.387,2.106c7.732,0,14-4.701,14-10.5S23.732,4.938,16,4.938zM16.982,21.375h-1.969v-1.889h1.969V21.375zM16.982,17.469v0.625h-1.969v-0.769c0-2.321,2.641-2.689,2.641-4.337c0-0.752-0.672-1.329-1.553-1.329c-0.912,0-1.713,0.672-1.713,0.672l-1.12-1.393c0,0,1.104-1.153,3.009-1.153c1.81,0,3.49,1.121,3.49,3.009C19.768,15.437,16.982,15.741,16.982,17.469zx"
}
}

View File

@ -1,20 +0,0 @@
{"data": {
"capacitor": "m292.103577,149.999374l-117.073944,-0.445328m-167.175035,0.445328l116.628588,0m0.44532,-72.035179l11.364601,0l0,144.640358l-11.364601,0l0,-144.640358zm38.244209,-0.569977l11.364594,0l0,144.640297l-11.364594,0l0,-144.640297zm-162.171733,68.98156l6.905184,0l0,6.905212l-6.905184,0l0,-6.905212zm291.101741,0.325241l6.905182,0l0,6.905212l-6.905182,0l0,-6.905212z",
"diode": "m180.228439,90.39769l21.70816,0l0,117.211075l-21.70816,0l0,-117.211075zm23.345947,59.602753l88.556381,0m-284.3409,-1.995804l85.541058,0l0,-65.011185l87.251961,66.722031l-87.250778,67.291931l0,-68.720001m-92.331572,-3.917542l6.811423,0l0,6.811447l-6.811423,0l0,-6.811447zm291.20439,2.03891l6.811401,0l0,6.811462l-6.811401,0l0,-6.811462z",
"gate_and": "m7.454795,178.082489l67.605378,0m-67.605378,-54.850876l67.605393,0.000015m-0.155602,-30.065033l0,113.750015c194.70015,10.208389 199.234482,-124.687454 0,-113.750015zm217.618942,56.662766l-70.312149,0m-221.397258,-29.817062l6.68369,0l0,6.683685l-6.68369,0l0,-6.683685zm-0.314375,54.532364l6.68369,0l0,6.683685l-6.68369,0l0,-6.683685zm291.95109,-27.976547l6.683685,0l0,6.683685l-6.683685,0l0,-6.683685z",
"gate_inverter": "m292.351624,149.998962l-70.506393,0m-0.189026,0a19.883057,19.883057 0 1 1-39.766113,0a19.883057,19.883057 0 1 139.766113,0zm-213.972072,2.405243l69.321826,0l0,-61.05407l101.250404,58.4571l-101.19664,58.840652l0,-56.176727m-76.061115,-3.699677l6.780182,0l0,6.779526l-6.780182,0l0,-6.779526zm291.428455,-2.135864l6.780518,0l0,6.780548l-6.780518,0l0,-6.780548z",
"gate_nand": "m8.042537,173.038879l60.699101,-0.672531m-60.699101,-49.879471l61.371335,0m-0.785973,-24.868042l0,104.835098c179.441437,9.408417 183.619827,-114.915443 0,-104.835098zm223.921448,50.643158l-64.591507,0m0.637238,0a11.937837,11.937837 0 1 1-23.87648,0a11.937837,11.937837 0 1 123.87648,0zm-227.445681,-29.373505l6.739111,0l0,6.739143l-6.739111,0l0,-6.739143zm-0.150617,50.613495l6.73911,0l0,6.739151l-6.73911,0l0,-6.739151zm291.47287,-24.654327l6.739105,0l0,6.739151l-6.739105,0l0,-6.739151z",
"gate_nor": "m292.610077,150.214462l-69.483139,-0.215668m0.147217,0.215668a12.942393,12.942393 0 1 1-25.884689,0a12.942393,12.942393 0 1 125.884689,0zm-215.590108,29.264374l63.620397,0m-63.620397,-54.805801l65.561368,-0.431335m-20.75433,-33.139984c129.343479,0 143.580387,58.405624 143.580387,58.405624l-0.347778,0c-18.514755,69.097885 -143.580379,58.057999 -143.580379,58.057999c59.7962,-58.405655 0.347775,-116.463623 0.347775,-116.463623zm-51.490408,30.117874l6.644974,0l0,6.645012l-6.644974,0l0,-6.645012zm0.003831,54.852463l6.644983,0l0,6.64502l-6.644983,0l0,-6.64502zm291.530706,-29.571609l6.644989,0l0,6.64502l-6.644989,0l0,-6.64502z",
"gate_or": "m7.681484,183.57515l71.7616,0m-71.7616,-60.67144l73.093784,-0.000015m-23.092442,-37.784157c143.186604,0 158.947315,64.65654 158.947315,64.65654l75.817307,0l-76.202316,0c-20.49614,76.493118 -158.94717,64.271667 -158.94717,64.271667c66.195942,-64.656525 0.385136,-128.928207 0.385136,-128.928207zm-56.684011,33.939781l6.677925,0l0,6.677956l-6.677925,0l0,-6.677956zm291.510831,27.410866l6.677948,0l0,6.677948l-6.677948,0l0,-6.677948zm-291.404498,33.607208l6.677927,0l0,6.677917l-6.677927,0l0,-6.677917z",
"gate_xor": "m80.450493,91.498093c129.22271,0 143.446312,58.351089 143.446312,58.351089l68.423569,0l-68.770889,0c-18.497391,69.033295 -143.446304,58.003708 -143.446304,58.003708c59.740372,-58.351089 0.347511,-116.354797 0.347511,-116.354797zm-22.576313,4.515259c43.415966,54.530457 0,108.018921 0,108.018921m-50.015199,-26.867355l63.560987,0m-63.560987,-54.7547l63.560987,0m-70.418914,-3.722206l6.82584,0l0,6.825867l-6.82584,0l0,-6.825867zm0.057968,54.832268l6.825839,0l0,6.825867l-6.825839,0l0,-6.825867zm291.170364,-27.096024l6.825836,0l0,6.825867l-6.825836,0l0,-6.825867z",
"inductor": "m7.783882,182.663147l59.679306,0c0,0 -30.829735,-67.744125 15.054253,-68.81945c42.462807,-0.995041 37.635605,69.357201 24.194321,69.357201c-13.441284,0 -12.903625,-68.81955 22.043701,-68.81955c34.947357,0 40.323868,68.819366 20.968399,68.819366c-19.355423,0 -11.828323,-68.819366 22.58139,-68.819366c34.409683,0 41.399155,68.81955 19.893112,68.81955c-21.506073,0 -9.67775,-68.81955 24.19429,-68.81955c33.87207,0 29.570831,68.819366 18.280151,68.819366c-11.290665,0 57.528732,-0.537659 57.528732,-0.537659m-291.202282,-3.571106l6.772959,0l0,6.772995l-6.772959,0l0,-6.772995zm291.221844,0.301132l6.772949,0l0,6.772995l-6.772949,0l0,-6.772995z",
"junction_1": "m0.99971,146.64024l6.71786,0l0,6.7179l-6.71786,0l0,-6.7179zm7.44043,3.36145l283.11684,0m0.72388,-3.35979l6.71786,0l0,6.7179l-6.71786,0l0,-6.7179zm-145.6413,152.35712l0,-6.71786l6.7179,0l0,6.71786l-6.7179,0zm3.36145,-7.44043l0,-283.11688m-3.35944,-0.72348l0,-6.71786l6.71793,0l0,6.71786l-6.71793,0z",
"junction_2": "m0.99971,146.64024l6.71786,0l0,6.7179l-6.71786,0l0,-6.7179zm7.44043,3.36145l121.77922,0c0,-29.3896 38.77921,-31.3896 38.77921,0l122.55841,0m0.72391,-3.35979l6.71783,0l0,6.7179l-6.71783,0l0,-6.7179zm-145.6413,152.35712l0,-6.71786l6.7179,0l0,6.71786l-6.7179,0zm3.36145,-7.44043l0,-283.11688m-3.35945,-0.72348l0,-6.71786l6.71794,0l0,6.71786l-6.71794,0z",
"junction_3": "m143.58945,150.00009c0,-3.49425 2.83032,-6.32455 6.32455,-6.32455c3.49423,0 6.32455,2.83031 6.32455,6.32455c0,3.49423 -2.83032,6.32455 -6.32455,6.32455c-3.49423,0 -6.32455,-2.83032 -6.32455,-6.32455zm-142.59006,-3.35985l6.71783,0l0,6.7179l-6.71783,0l0,-6.7179zm7.44043,3.36145l283.11682,0m0.72394,-3.35979l6.71783,0l0,6.7179l-6.71783,0l0,-6.7179zm-145.6413,152.35712l0,-6.71786l6.7179,0l0,6.71786l-6.7179,0zm3.36145,-7.44043l0,-283.11688m-3.35947,-0.72348l0,-6.71786l6.71796,0l0,6.71786l-6.71796,0z",
"junction_tee": "m149.914,143.67554zm-148.91461,2.96471l6.71783,0l0,6.7179l-6.71783,0l0,-6.7179zm7.44043,3.36145l283.11682,0m0.72394,-3.35979l6.71783,0l0,6.7179l-6.71783,0l0,-6.7179zm-141.61324,2.91669l-0.66661,-141.11688m-3.35947,-0.72348l0,-6.71786l6.71796,0l0,6.71786l-6.71796,0z",
"resistor": "m7.868202,151.620193l82.343018,0l11.393402,-32.392784l18.643684,62.356071l20.71521,-63.165901l18.12587,62.356071l19.679459,-61.546242l19.679443,61.951149l10.875488,-30.368195l82.860886,0m-291.18655,-2.813812l6.844604,0l0,6.844635l-6.844604,0l0,-6.844635zm291.194058,-0.465622l6.844604,0l0,6.844635l-6.844604,0l0,-6.844635z",
"source_AC_h": "m7.841724,149.837311l67.250737,0m149.928139,0.389923l67.250793,0m-67.653702,-0.227753a74.615135,74.615135 0 1 1-149.230286,0a74.615135,74.615135 0 1 1149.230286,0zm-126.528297,-1.996506c49.250984,-78.535637 61.230949,87.853104 103.826454,2.662094m-200.917796,-4.522659l6.717863,0l0,6.717896l-6.717863,0l0,-6.717896zm291.36706,0.642181l6.717865,0l0,6.717896l-6.717865,0l0,-6.717896z",
"source_DC": "m221.862747,94.98175l0,31.813873m-21.510544,-15.906944l43.020996,0m48.613678,39.407722l-121.593582,0m-162.447085,0l115.809275,0m1.040596,-37.757935l7.284134,0l0,75.963058l-7.284134,0l0,-75.963058zm37.461227,-41.623596l7.284134,0l0,158.169647l-7.284134,0l0,-158.169647zm-161.255614,75.613235l6.954941,0l0,6.954971l-6.954941,0l0,-6.954971zm291.012953,0.175003l6.954956,0l0,6.954971l-6.954956,0l0,-6.954971z",
"speaker": "m21.35352,187l77,0m-83.70878,3.11937l0,-6.71786l6.71793,0l0,6.71786l-6.71793,0zm6.70878,-76.11937l77,0m-83.70878,3.11937l0,-6.71786l6.71793,0l0,6.71786l-6.71793,0zm155.70878,-32.61937l115,-83l0,296.5l-115,-82.5l0,-131zm-70.99999,0l70.99999,0l0,131l-70.99999,0l0,-131z"
}
}

View File

@ -1,25 +0,0 @@
{"data": {
"manual_input": "m1,103.64394l298,-30.9037l0,154.51852l-298,0z",
"callout_left_right": "m1,150.0006l58.10869,-58.1087l0,29.05434l46.81141,0l0,-87.16304l87.1598,0l0,87.16304l46.8114,0l0,-29.05434l58.1087,58.1087l-58.1087,58.10869l0,-29.05435l-46.8114,0l0,87.16306l-87.1598,0l0,-87.16306l-46.81141,0l0,29.05435l-58.10869,-58.10869z",
"card": "m1,60.5l59.5,-59.5l238.5,0l0,298l-298,0l0,-238.5z",
"collate": "m0,1l299,0l-149.5,149l149.5,149l-299.00031,0l149.50031,-149l-149.5,-149z",
"connector_offpage": "m0.99775,0.99775l297.99984,0l0,238.39982l-149.00002,59.60002l-148.99999,-59.60002l0.00017,-238.39982z",
"data_stored": "m50.83397,0.99813l249.16667,0c-27.52219,0 -49.83333,66.78392 -49.83333,149.16604c0,82.38213 22.31114,149.16603 49.83333,149.16603l-249.16667,0l0,0c-27.52219,0 -49.83333,-66.78391 -49.83333,-149.16603c0,-82.38212 22.31114,-149.16604 49.83333,-149.16604z",
"data": "m1.00038,249.33351l59.60001,-198.66668l238.40001,0l-59.60001,198.66668z",
"decision": "m0.99837,149.99953l148.79352,-102.86476l148.79387,102.86476l-148.79387,102.86476l-148.79352,-102.86476z",
"delay": "m1,1l149,0l0,0c82.29044,0 149,66.70957 149,149c0,82.29044 -66.70956,149 -149,149l-149,0z",
"display": "m1,149.99924l49.66672,-97.42307l198.66612,0c27.43034,0 49.66716,43.61774 49.66716,97.42307c0,53.80476 -22.23682,97.42308 -49.66716,97.42308l-198.66612,0l-49.66672,-97.42308z",
"document_multiple": "m1.00054,45.02563l253.99998,0l0,206.43799c-126.99997,0 -126.99997,78.65668 -253.99998,33.96539zm21.49946,-240.92902l0,-19.5l255,0l0,207l-22.5,1m-210.5,-207l0,-25l255,0l0,207l-21.5,0",
"document": "m1.00064,1.00098l298,0l0,242.19891c-149,0 -149,92.28223 -298,39.84915z",
"filter1": "m75.5,150l74.5,-149l74.5,149l-74.5,149l-74.5,-149zm0,0l149,0",
"or_junction": "m0.99865,149.9991l0,0c0,-82.29043 66.70957,-149 149.00001,-149l0,0c39.51724,0 77.41597,15.69817 105.3589,43.64109c27.94292,27.94292 43.64107,65.84166 43.64107,105.35891l0,0c0,82.29041 -66.70956,148.99998 -148.99997,148.99998l0,0c-82.29044,0 -149.00001,-66.70958 -149.00001,-148.99998zm149.00001,-149l0,297.99998m-149.00001,-148.99998l297.99998,0",
"preparation": "m1.00063,150.00006l59.58485,-82.24058l178.75446,0l59.58505,82.24058l-59.58505,82.24086l-178.75446,0l-59.58485,-82.24086z",
"process": "m1,51.87891l298,0l0,196.24391l-298,0zm37.25,-196.24391l0,196.24391m223.5,-196.24391l0,196.24391",
"punched_tape": "m1.00047,30.80047l0,0c0,16.45808 33.35479,29.8 74.50001,29.8c41.1452,0 74.49998,-13.34192 74.49998,-29.8l0,0c0,-16.45809 33.3548,-29.8 74.50002,-29.8c41.14522,0 74.49998,13.34192 74.49998,29.8l0,238.4c0,-16.45808 -33.35477,-29.80002 -74.49998,-29.80002c-41.14522,0 -74.50002,13.34193 -74.50002,29.80002c0,16.45807 -33.35478,29.79999 -74.49998,29.79999c-41.14522,0 -74.50001,-13.34192 -74.50001,-29.79999z",
"sequential_data_storage": "m150,299l0,0c-82.29043,0 -149,-66.70955 -149,-149l0,0c0,-82.29043 66.70957,-149 149,-149l0,0c39.51726,0 77.41599,15.69817 105.3589,43.64108c27.94292,27.94293 43.6411,65.84165 43.6411,105.35892l0,0c0,39.51726 -15.69818,77.41599 -43.6411,105.3589l43.6411,0l0,43.6411z",
"sort": "m-0.0038,150.00102l299.00334,0m-299.00334,-0.00002l149.50209,-150.00059l149.50131,150.00059l-149.50131,150.00018l-149.50209,-150.00018z",
"storage_internal": "m1,1l297.99997,0l0,297.99997l-297.99997,0zm37.25,-297.99997l0,297.99997m-37.25,-260.74997l297.99997,0",
"terminal": "m48.94167,99.12235l202.11729,0l0,0c26.47794,0 47.9425,22.7794 47.9425,50.8792c0,28.09979 -21.46457,50.87918 -47.9425,50.87918l-202.11729,0l0,0c-26.47791,0 -47.9425,-22.77939 -47.9425,-50.87918c0,-28.09981 21.46459,-50.8792 47.9425,-50.8792z",
"wave": "m1,37.20809c99.33355,-125.42461 198.66708,125.4246 298.00061,0l0,225.76426c-99.33353,125.42462 -198.66706,-125.42459 -298.00061,0z"
}
}

View File

@ -1,13 +0,0 @@
{"data": {
"cards_clubs": "m107.57338,275.50809c15.10838,-15.77673 27.93053,-34.56763 33.34637,-55.90254c-16.19595,12.31328 -31.05006,32.11845 -53.64258,31.36813c-17.05595,0.97891 -37.37346,0.99548 -49.37947,-13.26945c-26.83,-21.5751 -34.03729,-64.69673 -12.00568,-92.15404c15.07669,-19.82526 41.4039,-28.23172 65.56467,-25.25816c15.22319,-6.45935 -2.97749,-22.81502 -4.80785,-33.02267c-11.33012,-37.02704 15.36169,-81.44029 54.60988,-85.70572c28.15103,-4.0415 55.67099,14.18231 69.44571,37.83293c7.4856,16.54877 3.58533,35.33045 1.83887,52.49866c-5.88113,8.62766 -20.94342,29.50022 0.55099,27.85616c21.2518,-0.33633 43.69397,5.90277 57.70761,22.8026c20.49747,22.76067 22.37766,60.37286 1.7551,83.63007c-10.90869,14.16582 -27.2782,25.50356 -45.80551,24.87234c-18.13391,1.83067 -37.77023,-2.10338 -50.62924,-15.92061c-5.48438,-3.84309 -18.92297,-18.36311 -18.91833,-15.17883c13.43222,27.98354 28.62112,57.04413 55.49167,74.38477c9.60062,7.71954 -14.62323,2.41226 -20.4874,3.98563c-35.53012,0.0314 -71.06009,0.06342 -106.59021,0.09497c7.31842,-7.63818 14.6373,-15.27603 21.9554,-22.91422z",
"cards_diamonds": "m34.92883,153.9321c25.56111,-56.62673 71.64644,-104.95768 110.85236,-152.92286c45.60773,30.78102 85.01025,98.49872 119.29071,145.66264c-30.57587,54.55344 -74.58923,104.23671 -114.23947,153.1615c-42.74368,-44.7616 -79.29648,-95.90262 -115.90359,-145.90128z",
"cards_hearts": "m106.76112,245.09012c-77.74644,-57.80281 -105.54389,-94.36783 -105.76917,-139.13003c-0.20544,-40.80623 34.10907,-80.19025 69.67002,-79.96313c17.75755,0.11364 55.84863,15.13257 69.33681,27.33919c6.79614,6.1504 10.01512,5.54391 25.146,-4.73779c41.17987,-27.98239 81.39243,-28.56973 107.43585,-1.56907c41.62292,43.15273 34.04501,94.68497 -21.78392,148.13782c-29.68187,28.41864 -94.50056,78.8349 -101.35565,78.8349c-2.08591,0 -21.29187,-13.01038 -42.67994,-28.9119z",
"cards_spades": "m92.84135,287.13989c18.3756,-17.73279 31.81261,-40.18849 43.07161,-62.94162c6.87787,-9.075 0.36623,-17.01425 -9.00183,-9.3188c-24.07579,16.07495 -56.84848,21.58751 -82.91551,6.92194c-29.46779,-15.23779 -42.75618,-51.47162 -36.07021,-83.04361c4.23415,-31.99545 27.52112,-57.07481 52.80524,-75.08997c29.04437,-20.7771 60.40868,-38.61331 86.95355,-62.67224c11.08365,0.22219 19.42508,17.61496 31.35349,22.21747c31.67316,23.59131 69.20874,40.95643 94.15042,72.50237c12.60098,17.9752 19.78281,40.10946 20.58459,61.98948c-3.83926,29.67093 -21.5314,60.96272 -52.04169,69.41241c-26.37521,7.98038 -53.51129,-2.14038 -76.49545,-15.01619c-2.80743,-0.60251 -13.10471,-8.7151 -9.02362,-2.41039c13.74066,28.19803 28.79581,56.19804 50.59952,79.09325c1.28156,2.89285 11.33243,9.75613 5.98334,9.64709c-44.76935,0 -89.53856,0 -134.30794,0c4.78471,-3.7637 9.5696,-7.5275 14.35449,-11.2912z",
"chess_bishop": "m61.92021,296.91153c0.43627,-9.82327 20.22808,-4.98053 9.33225,-14.55078c3.63447,-11.80536 14.91982,-19.66748 21.741,-29.79436c5.22913,-8.62125 17.00826,-19.01086 11.31252,-29.67047c-10.46021,-5.58662 -7.49181,-18.00824 5.30239,-15.28014c8.2272,-7.58801 8.79371,-20.26302 11.57766,-30.59467c2.52694,-12.36574 4.07327,-24.95554 3.66998,-37.5896c-14.99698,0.03661 -30.27584,-0.68196 -44.73978,-4.74928c2.8019,-11.20453 20.86148,-8.79659 28.26084,-15.67982c-6.87532,-6.18329 13.89957,-5.56496 8.46355,-15.34472c-0.37302,-11.20033 -9.19685,-14.44135 -16.26585,-22.60765c-9.44371,-12.76132 5.36173,-25.51221 13.58463,-34.13964c9.16566,-9.37672 19.64847,-19.36716 22.45389,-32.62941c-3.77451,-3.10155 -12.3967,-7.54239 -3.59866,-11.78228c12.01596,-2.03703 24.83499,-2.28521 36.61118,1.05654c7.81644,7.61585 -11.93045,8.03119 -3.43417,17.63365c10.07373,12.07176 -3.50795,18.30174 -11.52704,25.27969c-4.66763,5.89621 -18.59915,13.67189 -16.20224,19.78346c13.63968,-0.47554 21.5871,-13.67976 31.31615,-21.49704c10.67101,-13.68708 20.99446,8.43092 27.81822,15.94714c8.40642,11.39094 2.60674,26.70086 -10.05556,31.59287c-6.28001,6.46729 -10.44972,24.88914 4.57674,22.14657c8.72636,3.17196 -8.52979,3.51371 1.37608,6.446c6.58298,2.52787 32.25821,8.30554 18.1142,16.0547c-12.00471,2.71368 -24.40523,2.6017 -36.6002,1.50584c-0.75204,18.52477 1.89484,36.97644 7.35446,54.6958c1.35513,5.04123 2.71027,10.08244 4.06541,15.12361c6.52129,-0.129 19.98573,-1.55484 13.76321,9.18311c-13.08994,7.21928 -5.0789,22.41203 2.17738,31.05447c8.99446,11.37192 22.40833,22.01788 22.98288,37.58719c3.59734,2.14404 15.56946,8.03415 12.10645,12.64545c-57.30759,-0.2937 -114.6481,0.84897 -171.9265,-1.25046l-1.98901,-0.18246l-1.62205,-0.39337l0,0z",
"chess_king": "m75.6993,294.60599c-8.08068,-9.43317 12.65705,-9.68567 9.39906,-20.14252c5.95673,-13.85672 21.44485,-22.24414 23.72572,-37.99019c-6.28166,-4.37628 -9.89445,-14.96013 2.0899,-13.70361c8.78859,-6.61539 7.6902,-20.15297 10.33321,-30.0876c2.47588,-16.03471 3.03656,-32.26408 4.10001,-48.43053c-10.16894,-0.78108 -20.58942,-0.23701 -30.49778,-2.84268c0.28501,-10.75136 20.44619,-6.62604 21.3638,-16.77121c14.65907,-0.2649 0.81196,-22.15992 -5.15776,-27.38371c-7.64118,-8.81222 -12.7306,-22.72323 -6.92168,-33.60618c8.30865,-5.52043 27.09519,-2.1601 26.24604,-16.66769c-5.65058,-3.22095 -12.82484,-1.17552 -19.15805,-1.74514c0.38948,-6.7649 0.77895,-13.52979 1.16843,-20.29469c8.37558,-0.64424 16.75118,-1.28853 25.12676,-1.93283c-4.25133,-4.41846 -10.61392,-7.6702 -12.20608,-13.92034c5.41558,-8.90246 18.46751,-8.1166 27.81776,-8.03243c9.09207,-0.62713 25.66919,5.43749 13.27614,15.20592c-1.00447,2.39887 -10.78024,8.36352 -4.73895,7.71326c7.73515,0 15.47028,0 23.20541,0c-0.02223,6.6133 -0.20001,13.29232 1.35312,19.76423c-5.90448,4.39723 -25.05112,-3.75612 -19.59946,9.81149c6.13853,5.67249 15.53992,5.52279 23.32581,8.02098c4.54138,0.45371 8.15405,1.63713 6.5175,6.94557c0.85359,9.85596 -1.63307,19.77049 -8.40776,27.25217c-4.79567,7.80693 -15.56667,17.58031 -12.3781,26.61691c6.03265,-0.98199 10.87871,2.97905 6.06032,7.43356c4.94479,3.66121 22.35728,2.82278 18.59119,11.98875c-8.82205,2.92029 -18.29916,1.70366 -27.45192,2.00166c2.43703,25.01987 5.80666,50.04211 11.43709,74.54305c3.28979,5.43672 16.35808,9.61523 5.63309,16.70296c-4.00256,13.19919 8.78183,23.08223 16.81097,31.55379c8.82797,6.61176 4.54482,19.91519 17.0338,22.03693c9.83562,9.52774 -13.5036,9.27408 -19.49568,9.29486c-39.66827,0.42773 -79.37933,1.02615 -119.03208,-0.25211c-3.24605,-0.40967 -7.25645,-0.31595 -9.56982,-3.08264z",
"chess_knight": "m100.17753,299.2356c-10.0382,0.34137 -24.72987,-4.84531 -14.46609,-16.41525c11.17445,-4.40472 -1.98608,-19.00409 9.21265,-25.88123c8.98889,-12.79953 21.20518,-24.48807 24.89179,-40.11865c-0.57252,-10.60066 -13.22608,-16.87427 -7.18922,-28.60765c-5.92265,-18.77635 -4.55389,-40.38806 6.25748,-57.26643c9.18032,-15.67659 20.32635,-32.28713 19.15084,-51.25797c-11.5139,4.80804 -23.70148,9.0206 -36.37307,6.83708c-11.91311,-1.1064 -22.59742,8.54017 -34.74928,3.29494c-12.31807,-2.55921 -19.64501,-19.02957 -10.4606,-28.65753c10.03679,-8.57325 24.78339,-8.84916 34.35549,-18.41713c12.62932,-10.46186 24.31081,-24.61204 41.71716,-26.46155c7.69322,-1.76131 10.99294,-9.49197 15.25148,-15.2854c3.53894,9.18849 9.69408,17.31353 18.95801,21.387c18.83824,10.9118 23.5276,33.98066 30.47462,52.94444c5.13654,14.85179 9.41592,30.35814 18.01733,43.6171c0.09145,6.36343 -9.56343,9.05308 -3.04225,16.51302c3.39153,20.2325 3.53752,40.95071 3.23686,61.41966c-5.72005,10.01691 -10.93028,21.19722 -3.29993,32.69295c5.09689,14.05096 17.7905,23.26645 24.03563,36.52565c3.53024,6.8656 -6.88226,16.83319 6.09091,15.10654c11.84755,6.2681 2.28101,21.56821 -9.50232,17.11713c-44.15834,1.12289 -88.41394,2.24417 -132.5675,0.9133z",
"chess_pawn": "m76.17518,297.98557c-10.50418,1.59836 -25.59558,-8.37918 -12.29734,-17.44669c11.25366,-5.8967 0.45475,-21.25174 12.35514,-28.71019c12.10069,-16.52 24.98341,-33.40712 31.01369,-53.22789c-0.84142,-9.49573 -19.64921,-25.21422 -0.595,-28.29408c15.7114,1.82648 9.96503,-21.69583 15.39529,-31.88779c3.26528,-15.46995 5.63882,-31.19783 5.05293,-47.04268c-10.94164,-0.30554 -22.10724,0.96841 -32.83411,-1.63306c-6.84238,-8.98132 15.45903,-13.45317 19.13895,-21.55999c7.72121,-11.65172 -11.3031,-24.52544 -3.15941,-38.29919c5.20168,-20.85055 29.26575,-34.36854 49.62741,-26.73076c21.08499,5.46792 36.67119,30.37529 26.64961,51.09357c-0.80009,3.99703 -7.062,9.17959 -4.97066,12.36269c9.12987,6.33601 19.70087,11.85771 25.48528,21.64108c-8.18987,5.93826 -21.89375,1.4159 -32.1122,4.23674c-9.29645,8.24593 -0.11353,25.10609 0.36266,36.41936c2.90009,12.9261 5.46037,25.96617 8.78381,38.77452c6.98657,2.72525 21.33679,5.88095 13.4649,17.20207c-11.22217,9.11032 -5.7289,23.62137 0.60231,33.84465c7.87996,15.78793 21.40668,27.84862 29.69345,43.27188c3.07736,7.12057 -7.92374,19.7316 5.78708,16.78259c14.86404,3.15744 5.96938,23.76761 -7.3875,18.8981c-49.21407,1.73288 -98.52922,2.43631 -147.74446,0.51953l-2.31185,-0.21448l0,0z",
"chess_queen": "m59.54884,298.46313c-11.18457,2.51251 -19.80814,-14.30008 -5.94004,-16.129c12.20336,0.23074 -3.0349,-11.94995 7.98012,-16.05304c12.67021,-12.36537 25.23749,-25.26018 33.3575,-41.17609c-4.09126,-5.42482 -10.84344,-10.60782 -9.96117,-18.03085c7.964,-2.71161 19.82806,-0.87375 20.29981,-13.44502c7.24239,-22.68985 9.1741,-46.67986 10.76167,-70.3136c-7.99255,-6.33596 -24.45116,-0.33371 -35.62089,-3.56097c-16.94488,-4.5746 6.31873,-13.33291 13.78075,-12.6113c6.70493,0.01006 16.63324,-4.12222 5.41084,-7.2804c9.46686,-0.43687 23.08297,-12.44518 7.51486,-16.77373c11.54188,-8.28655 2.64816,-26.31929 -2.17102,-36.68976c-7.265,-12.52285 -19.21146,-21.59242 -32.71435,-26.42871c-2.18616,-12.77 18.63421,-8.99565 27.07909,-9.65835c12.78728,0.48775 25.82639,-0.15282 36.96732,-7.11507c15.05278,-6.96464 27.8495,4.65901 41.61934,7.11611c13.92807,0.89699 28.41634,-2.50577 41.97807,1.44028c4.20209,2.98911 11.18788,7.71034 2.77457,9.97613c-16.06789,8.94404 -31.07338,22.15693 -35.10127,40.92605c-6.0766,10.44077 4.6955,19.50048 -5.15381,26.98807c-0.10249,8.80961 22.85634,10.04067 10.00395,14.37878c8.80815,4.77542 27.69864,1.76332 29.62625,12.3696c-7.99612,6.2903 -19.2092,3.80788 -28.79007,4.39512c-3.2489,1.10706 -11.41316,-2.70125 -10.17032,2.89742c-0.6366,25.08775 5.87923,49.75521 12.1806,73.83221c0.00804,11.79608 29.09497,5.10777 12.92737,18.49597c-11.94247,10.28146 5.56685,24.68452 11.63272,33.82986c8.25099,10.03221 22.89711,15.11021 21.67468,29.8362c8.40468,0.60507 18.40166,13.69095 6.78131,16.95151c-62.8902,1.31946 -125.82766,2.22778 -188.72791,1.83258z",
"chess_rock": "m70.40736,299.11804c-15.60727,2.87628 -15.90823,-19.81082 -1.8931,-20.53482c-4.2011,-9.73361 -0.98556,-21.67557 5.22356,-30.68398c8.90442,-15.05035 22.29623,-30.00999 19.52936,-48.8515c-0.95786,-9.8022 -13.10349,-27.37677 5.72565,-24.85997c5.09087,-9.77498 2.13017,-24.16621 5.9483,-35.39389c3.33424,-21.28385 10.75552,-43.9948 2.86147,-65.09612c-4.97705,-11.23243 -17.62387,-18.62589 -16.26645,-32.35733c-1.42947,-13.39034 -0.95647,-26.88279 0.60455,-40.23392c6.07738,0.50975 12.84039,-1.27954 18.38155,1.475c-0.04153,12.96106 12.26991,10.08973 10.7935,-0.92486c3.23881,-1.28251 8.60017,-0.18413 12.6562,-0.55014c18.03256,0 36.06522,0 54.09778,0c-2.06311,7.51434 3.5195,17.19948 10.5887,8.35272c-1.93379,-11.75267 14.25911,-7.86334 10.37854,2.24694c0.22855,13.39515 1.87041,27.25403 -1.89201,40.29753c-6.12787,5.2086 -6.22449,15.45995 -13.90137,21.60233c-6.16908,11.51656 -3.45045,25.43306 -2.7644,37.9428c2.61279,18.51363 6.92676,36.79671 8.00221,55.52328c-0.76923,10.18126 20.18948,7.18474 11.15244,19.71645c-9.87662,8.41151 -4.0954,22.61668 -0.18413,32.66171c7.71916,17.36203 23.99019,32.95758 21.5343,53.32025c-1.94743,8.89606 14.16618,5.88821 9.97758,17.34372c-0.12151,14.11871 -21.10172,5.04239 -30.39526,8.00793c-46.7146,0.56656 -93.44374,1.44144 -140.159,0.99585z"
}
}

View File

@ -1,8 +0,0 @@
{"data": {
"divide": "m150,0.99785l0,0c25.17819,0 45.58916,20.41097 45.58916,45.58916c0,25.17821 -20.41096,45.58916 -45.58916,45.58916c-25.17822,0 -45.58916,-20.41093 -45.58916,-45.58916c0,-25.1782 20.41093,-45.58916 45.58916,-45.58916zm0,296.25203c-25.17822,0 -45.58916,-20.41095 -45.58916,-45.58917c0,-25.17819 20.41093,-45.58916 45.58916,-45.58916c25.17819,0 45.58916,20.41096 45.58916,45.58916c0,25.17822 -20.41096,45.58917 -45.58916,45.58917zm-134.06754,-193.71518l268.13507,0l0,91.17833l-268.13507,0z",
"minus": "m0.99887,102.39503l297.49445,0l0,95.2112l-297.49445,0z",
"not_equal": "m40.81188,62.2131l103.7978,0l22.27972,-61.2131l65.67503,23.90375l-13.5795,37.30935l40.20317,0l0,69.88993l-65.64099,0l-12.71893,34.94495l78.35992,0l0,69.88991l-103.79779,0l-22.27972,61.21309l-65.67503,-23.90378l13.57949,-37.30933l-40.20319,0l0,-69.88991l65.64102,0l12.71894,-34.94498l-78.35995,0z",
"times": "m1.00089,73.36786l72.36697,-72.36697l76.87431,76.87368l76.87431,-76.87368l72.36765,72.36697l-76.87433,76.87431l76.87433,76.87431l-72.36765,72.36765l-76.87431,-76.87433l-76.87431,76.87433l-72.36697,-72.36765l76.87368,-76.87431l-76.87368,-76.87431z",
"plus": "m1.00211,102.40185l101.39974,0l0,-101.39975l95.45412,0l0,101.39975l101.3997,0l0,95.45412l-101.3997,0l0,101.3997l-95.45412,0l0,-101.3997l-101.39974,0z"
}
}

View File

@ -1,6 +0,0 @@
{"data": {
}
}

View File

@ -1,21 +0,0 @@
{"data": {
"clef_alto": "m51.25065,150.28749c0,-49.53207 0,-99.06413 0,-148.5962c11.59261,0 23.18523,0 34.77784,0c0,99.06413 0,198.12827 0,297.1924c-11.59261,0 -23.18522,0 -34.77784,0c0,-49.53209 0,-99.06413 0,-148.59621zm51.37634,0c0,-49.53207 0,-99.06413 0,-148.5962c8.48285,-2.46703 12.93837,1.84261 11.08508,10.0007c0.12527,45.40251 0.25053,90.80502 0.37581,136.20751c21.44767,-15.32626 29.57346,-41.86327 36.21976,-66.10667c3.81448,15.78812 9.88112,35.01518 27.29865,40.16045c16.60112,4.98381 31.30354,-10.63891 31.13045,-26.64445c2.89955,-20.45341 3.30077,-41.70258 -1.14742,-61.93042c-4.16455,-12.79745 -16.64639,-23.36595 -30.52771,-22.52039c-11.42384,-5.25948 -24.23628,10.96936 -9.59547,16.90924c12.31264,13.08186 -1.99968,35.47687 -19.11742,30.23324c-16.59583,-3.55596 -21.00951,-25.43777 -11.40723,-37.80838c13.77419,-17.97563 39.16574,-20.24264 60.03438,-17.62625c27.15413,3.08944 47.80745,27.56302 50.7352,54.02297c3.73869,23.61245 -2.35521,50.29027 -22.12251,65.37829c-16.57411,13.95533 -40.93645,15.69794 -60.41183,7.1722c-4.73631,7.1261 -9.47264,14.25217 -14.20895,21.37825c4.65338,6.95274 9.30673,13.90549 13.96008,20.8582c23.58311,-10.57065 54.40877,-5.07518 69.99907,16.43117c21.95821,28.96715 17.67499,75.52599 -10.84692,98.64314c-17.91376,14.62869 -43.09233,14.67899 -64.38158,8.83109c-16.11131,-4.2995 -31.82996,-19.966 -26.84735,-37.82117c2.51375,-15.55998 23.9128,-21.41389 34.33803,-9.83356c14.19543,12.82462 -6.37968,25.74036 -5.32516,38.10141c15.79561,11.97195 41.38054,0.70062 45.05746,-18.39487c5.84576,-20.96526 4.47285,-43.25116 1.61388,-64.56879c-1.53316,-14.33195 -14.00139,-28.78069 -29.45882,-24.78352c-16.25957,3.69221 -24.37509,20.62003 -27.1602,35.64745c-3.41434,11.00523 -4.50349,-10.5222 -7.16806,-14.04636c-5.53896,-17.66304 -15.20212,-35.01096 -30.07851,-46.1468c-1.53252,4.76282 -0.13866,10.70403 -0.62897,15.96893c-0.11874,43.15994 -0.2375,86.31984 -0.35623,129.47978c-8.48793,2.46848 -12.93407,-1.8443 -11.0575,-10.00076c0,-46.19846 0,-92.39696 0,-138.59544z",
"clef_bass": "m21.53929,297.24106c0.11552,-13.50244 21.89277,-17.95071 30.83244,-27.31851c34.50853,-23.15955 68.13189,-49.8976 89.28437,-86.39645c22.47179,-37.29227 34.65842,-82.97259 25.51732,-126.22972c-4.84746,-26.84145 -30.93637,-48.32386 -58.5412,-44.96438c-18.18078,2.48732 -39.18159,6.6724 -49.70108,23.45858c-11.41858,8.57642 -5.13639,28.67733 10.08619,21.04295c19.47556,-7.4344 43.93666,7.72539 43.16644,29.21231c0.02258,20.3737 -20.60109,34.74615 -39.82058,32.83379c-21.40677,-0.21405 -42.59771,-17.48695 -42.15028,-39.87929c-1.48358,-36.0903 29.74187,-65.56665 63.16554,-73.13066c29.88613,-9.31284 64.6309,-5.56545 89.8325,13.80772c18.75227,12.81883 33.51952,32.25211 36.60045,55.18989c6.65193,29.82199 -1.94455,60.59844 -16.85703,86.54317c-19.16537,34.9521 -48.44911,63.56561 -82.44233,84.09172c-31.5721,20.13449 -64.41224,38.31845 -98.38529,54.07944c-0.19582,-0.78018 -0.39163,-1.56039 -0.58745,-2.34058zm226.81013,-147.1503c-16.25441,-7.36092 -12.66826,-37.2715 6.2514,-37.94421c14.1568,-3.30239 27.38025,11.49424 23.01007,25.17739c-2.75677,12.80446 -18.12839,18.35408 -29.26147,12.76682zm0,-81.82211c-16.25441,-7.36089 -12.66826,-37.2715 6.2514,-37.9442c14.1568,-3.30238 27.38025,11.49425 23.01007,25.17739c-2.82837,12.84788 -18.04926,18.33069 -29.26147,12.76681z",
"clef_treble": "m142.57787,298.08936c-19.93291,-3.16858 -30.69543,-32.78793 -10.77837,-43.63799c20.76305,-10.6983 33.11169,27.38725 10.4319,31.10985c-12.41878,4.65247 16.12379,12.44363 21.44362,4.62054c16.62259,-8.04572 14.05481,-28.98639 10.0555,-43.73428c-1.38792,-11.29834 -3.1236,-23.3942 -17.37872,-16.97299c-34.39165,2.76706 -61.61951,-32.12309 -58.88461,-64.7627c0.92851,-30.78641 26.14601,-51.87253 44.81895,-73.25146c-6.13037,-27.96899 -7.98138,-60.28084 9.78998,-84.65368c16.36949,-19.81244 24.67825,16.44271 27.44722,28.74505c6.15059,28.7567 -6.11317,58.97542 -26.51985,79.24646c1.94853,9.61536 3.86572,19.23715 5.85146,28.84491c21.56471,-4.16351 42.14922,14.0585 43.32542,35.40215c3.33209,19.27364 -9.02991,37.47516 -25.91515,45.75842c-0.27765,16.55051 8.86742,33.71834 5.58147,50.80913c-3.15567,17.67035 -22.97263,26.33539 -39.26881,22.47659zm22.51283,-75.40413c6.10963,-11.46864 -4.97238,-31.72308 -5.58083,-46.4445c0.2393,-25.67101 -26.99069,4.97273 -18.89308,17.57916c2.40038,7.45953 23.23523,21.13914 4.09677,12.70238c-19.98106,-11.95877 -19.06588,-42.72807 -0.80893,-55.71979c15.31693,-3.39279 5.96193,-23.83228 3.07584,-30.54592c-18.81245,17.14481 -40.13555,38.73356 -36.89114,66.48257c2.4439,26.00902 30.79729,41.78694 55.00137,35.94611zm12.65782,-4.96449c17.94263,-11.51868 17.35378,-41.74863 -2.27676,-51.12454c-20.94589,-11.06784 -6.59929,17.92804 -6.2155,28.9649c2.90686,4.22505 1.26024,28.84393 8.49226,22.15964zm-22.11331,-138.56764c11.03699,-13.35171 23.65346,-32.62746 15.90224,-50.28019c-16.69221,-11.01859 -25.9682,18.77171 -26.37872,31.81623c-0.15186,8.45836 -1.39836,37.61288 10.47649,18.46396l0,0z",
"note_16th": "m88.44206,298.30295c-13.87988,-2.82538 -24.35809,-16.50861 -20.88289,-30.73529c4.91499,-19.9595 23.53616,-33.76636 42.17206,-40.32825c12.41348,-4.12247 26.50006,-3.4993 38.15588,2.63036c1.0408,-76.23686 0.44647,-152.49294 0.60452,-228.73842c4.20728,-0.00103 9.6062,-1.35928 8.46304,4.73352c0.58707,13.69153 7.31578,26.22541 17.65646,35.05743c23.06891,21.49232 49.01909,44.8303 54.31831,77.58647c1.50432,13.81924 -0.10796,27.74641 -3.17799,41.24139c9.09166,16.96843 8.54382,37.52667 4.8522,55.93042c-2.39383,9.71803 -6.29839,19.07953 -11.26178,27.74855c-11.71941,5.45538 1.38908,-8.91675 1.22467,-14.09427c6.33897,-15.55397 7.06616,-32.87975 4.18297,-49.26376c-6.28082,-23.96758 -30.02579,-35.67821 -49.12051,-48.20921c-6.90894,-2.70374 -21.67717,-19.0106 -18.74876,-3.03152c-0.64005,43.31421 -0.53076,86.63467 -0.73126,129.95221c-8.01517,20.08276 -26.40254,35.40967 -47.75954,39.25299c-6.54287,1.13068 -13.39496,1.54416 -19.94739,0.2674zm133.16364,-163.77284c0.19041,-24.65028 -18.17068,-44.59457 -36.16211,-59.2127c-9.00275,-6.78731 -18.53905,-13.97798 -28.66229,-18.37087c0.62265,14.17498 7.10901,27.98635 14.87303,39.75766c14.63148,19.60416 36.7207,32.71725 48.97745,54.30224c1.46973,-5.35919 1.02641,-10.98389 0.97392,-16.47633z",
"note_2_16th": "m49.3958,299.54056c-16.81947,-3.04166 -22.61933,-24.29047 -12.59162,-37.02081c13.30804,-19.68834 41.77522,-32.96074 64.07959,-20.53789c0.44453,-69.33055 0.18797,-138.66488 0.25596,-207.99711c55.61466,-11.21983 111.34956,-21.8626 166.98527,-32.98482c-0.12048,77.7042 -0.24097,155.40843 -0.36145,233.1126c-8.71588,23.50243 -36.87907,39.79991 -61.40202,32.51219c-14.59976,-4.3703 -18.09988,-23.21532 -9.97012,-34.76195c11.13289,-17.22395 31.85399,-29.0497 52.68539,-25.82347c5.94469,-0.60136 14.69865,9.02304 12.18605,-1.86462c0,-54.46642 0,-108.93282 0,-163.39921c-51.0519,10.27703 -102.20471,20.06591 -153.28023,30.23172c-0.17435,63.38239 0.43399,126.77441 -0.45506,190.14903c-1.62524,19.24988 -20.10281,32.38318 -37.35132,37.51443c-6.81397,1.14908 -13.90893,1.86209 -20.78043,0.8699zm133.17406,-258.40903c26.23065,-5.16204 52.47366,-10.26209 78.69298,-15.48133c3.33676,-13.29303 -11.59628,-4.66015 -18.89926,-4.33564c-44.78732,8.84114 -89.60051,17.55139 -134.38097,26.42687c-3.33676,13.29303 11.59627,4.66015 18.89925,4.33564c18.56081,-3.65804 37.12405,-7.30357 55.688,-10.94555z",
"note_2_32nd": "m49.39585,299.53995c-16.81947,-3.04169 -22.61932,-24.29047 -12.59161,-37.02081c13.30804,-19.68835 41.77521,-32.96077 64.07959,-20.53792c0.44453,-69.33055 0.18797,-138.66488 0.25596,-207.9971c55.61465,-11.21984 111.34956,-21.86261 166.98528,-32.98483c-0.12048,77.70421 -0.24097,155.40842 -0.36145,233.11262c-8.71591,23.50241 -36.8791,39.7999 -61.40204,32.51218c-14.59978,-4.3703 -18.09987,-23.21533 -9.97015,-34.76193c11.13292,-17.22395 31.854,-29.0497 52.68541,-25.82347c5.9447,-0.60136 14.69868,9.02304 12.18605,-1.86462c0,-46.71117 0,-93.42232 0,-140.13348c-51.05188,10.27702 -102.20473,20.0659 -153.28023,30.23172c-0.22871,56.35212 0.56696,112.72466 -0.58765,169.06043c-3.51923,18.91183 -22.11423,32.00891 -40.05743,35.8262c-5.92716,0.70624 -12.00983,1.31848 -17.94172,0.38101zm133.17405,-235.14331c26.23065,-5.16204 52.47366,-10.26208 78.69298,-15.48132c3.33676,-13.29303 -11.59628,-4.66015 -18.89923,-4.33564c-44.78734,8.84113 -89.60054,17.55138 -134.381,26.42687c-3.33677,13.29303 11.59627,4.66015 18.89925,4.33564c18.56078,-3.65805 37.12405,-7.30357 55.688,-10.94555zm0,-23.26575c26.23065,-5.16204 52.47366,-10.26209 78.69298,-15.48133c3.33676,-13.29302 -11.59628,-4.66015 -18.89923,-4.33563c-44.78734,8.84113 -89.60054,17.55139 -134.381,26.42687c-3.33677,13.29303 11.59627,4.66016 18.89925,4.33564c18.56078,-3.65804 37.12405,-7.30358 55.688,-10.94555z",
"note_2_64th": "m49.39639,299.53995c-16.81947,-3.04169 -22.61932,-24.29047 -12.59161,-37.02081c13.30804,-19.68835 41.77522,-32.9608 64.07959,-20.53792c0.44453,-69.33055 0.18797,-138.66488 0.25596,-207.99711c55.61465,-11.21983 111.34957,-21.86261 166.98528,-32.98482c-0.12048,77.70421 -0.24097,155.40842 -0.36145,233.11262c-8.71591,23.50241 -36.8791,39.7999 -61.40205,32.51218c-14.59976,-4.3703 -18.09987,-23.21533 -9.97012,-34.76193c11.1329,-17.22395 31.85399,-29.0497 52.68539,-25.8235c5.94467,-0.60133 14.69868,9.02307 12.18605,-1.86459c0,-38.95592 0,-77.91182 0,-116.86773c-51.0519,10.27703 -102.20474,20.06591 -153.28024,30.23172c-0.23563,48.66071 0.58183,97.34513 -0.58977,145.98728c-3.69252,18.80173 -22.14742,31.83179 -40.05531,35.63361c-5.92716,0.70627 -12.00984,1.31848 -17.94173,0.38101zm133.17406,-211.87756c26.23067,-5.16204 52.47368,-10.26209 78.69298,-15.48133c3.33676,-13.29303 -11.59627,-4.66015 -18.89925,-4.33564c-44.78732,8.84113 -89.60051,17.55138 -134.38099,26.42688c-3.33676,13.29302 11.59627,4.66015 18.89925,4.33562c18.56079,-3.65804 37.12405,-7.30356 55.688,-10.94553zm0,-23.26575c26.23067,-5.16204 52.47368,-10.26208 78.69298,-15.48132c3.33676,-13.29303 -11.59627,-4.66015 -18.89925,-4.33564c-44.78732,8.84113 -89.60051,17.55138 -134.38099,26.42687c-3.33676,13.29303 11.59627,4.66015 18.89925,4.33564c18.56079,-3.65805 37.12405,-7.30357 55.688,-10.94555zm0,-23.26575c26.23067,-5.16204 52.47368,-10.26209 78.69298,-15.48133c3.33676,-13.29302 -11.59627,-4.66015 -18.89925,-4.33563c-44.78732,8.84113 -89.60051,17.55139 -134.38099,26.42687c-3.33676,13.29303 11.59627,4.66016 18.89925,4.33564c18.56079,-3.65804 37.12405,-7.30357 55.688,-10.94554z",
"note_2_8th": "m49.39571,299.54196c-16.81947,-3.04169 -22.61933,-24.29047 -12.59162,-37.02081c13.30804,-19.68834 41.77522,-32.96077 64.07959,-20.53792c0.44447,-69.55862 0.18803,-139.12106 0.25597,-208.68139c55.61337,-11.00192 111.35248,-21.38966 166.98529,-32.30051c-0.12051,77.70421 -0.24097,155.40842 -0.36145,233.11263c-8.71594,23.50241 -36.8791,39.7999 -61.40207,32.51218c-14.59976,-4.3703 -18.09987,-23.21533 -9.97012,-34.76193c11.1329,-17.22395 31.854,-29.0497 52.68538,-25.82347c5.9447,-0.60136 14.69872,9.02304 12.18608,-1.86462c-0.20636,-61.46065 0.51324,-122.93768 -0.53098,-184.38539c-9.07608,-3.36956 -25.21706,4.38308 -36.83795,5.01031c-38.86079,7.56314 -77.80466,14.7255 -116.5762,22.73074c1.16985,68.10055 0.62434,136.24279 0.45018,204.35774c2.05843,15.54877 -6.51154,30.19547 -19.54225,38.30072c-11.24453,8.17932 -25.1371,11.12784 -38.82984,9.35175z",
"note_3_16th": "m15.05685,274.22351c-14.31707,-1.91919 -18.42601,-20.36026 -8.93697,-29.99135c10.38879,-13.67648 30.27091,-22.30884 46.50806,-13.88651c0.66153,-52.11798 0.28726,-104.24728 0.38611,-156.37085c81.97754,-16.40272 164.06679,-32.26359 246.07988,-48.4937c-0.2363,57.62228 0.57657,115.26416 -0.57095,172.87157c-1.96915,14.86053 -17.13602,24.73001 -30.79037,27.8163c-11.96523,3.66803 -28.81345,-4.27913 -25.97942,-18.60889c3.50381,-15.4984 19.49126,-26.6657 34.85991,-28.02376c8.59586,-2.14986 20.61923,9.25734 16.69226,-5.91415c0.09525,-39.33675 -0.07153,-78.67297 -0.13177,-118.00977c-38.18202,7.50178 -76.35632,15.04294 -114.54555,22.50813c-0.23268,48.18274 0.55394,96.38557 -0.57504,144.55286c-2.30531,15.49788 -18.60167,25.74417 -33.19453,27.71848c-14.44766,3.90948 -29.61349,-11.1328 -21.45115,-25.13463c9.01589,-16.79831 32.00478,-28.23689 49.88007,-18.48071c0.13591,-41.88866 0.57454,-83.7979 -0.20747,-125.67833c-9.66763,-2.10095 -24.53024,4.47319 -35.97192,5.4189c-26.23273,5.15636 -52.45877,10.34411 -78.68841,15.51694c-0.35831,49.24326 0.12716,98.5107 -1.08934,147.73389c-6.17624,16.23714 -25.20985,26.82423 -42.27338,24.45558l0,0zm101.53641,-195.02805c18.87659,-3.72421 37.75267,-7.44825 56.62927,-11.17233c3.17946,-13.298 -14.34059,-1.80056 -21.35852,-2.54169c-31.16307,6.26984 -62.32049,12.56754 -93.49695,18.76997c-1.80596,13.61728 18.79422,-0.36912 26.46645,1.18459c10.58865,-2.07109 21.17471,-4.15247 31.75974,-6.24054zm119.43625,-23.77348c18.94301,-3.80857 37.98227,-7.27608 56.8645,-11.31118c2.82892,-13.23786 -18.20215,0.42724 -25.56601,-1.09475c-29.37257,5.74051 -58.85892,11.05022 -88.16765,17.02801c-3.13623,14.00632 18.26294,0.04643 25.92744,1.45249c10.31323,-2.02774 20.62746,-4.05219 30.94171,-6.07457z",
"note_3_32th": "m15.05685,274.22333c-14.31707,-1.91882 -18.42601,-20.36018 -8.93697,-29.99106c10.3888,-13.67676 30.27089,-22.30908 46.50806,-13.88647c0.66166,-52.11824 0.28732,-104.24765 0.38611,-156.37099c81.97754,-16.40273 164.06694,-32.2636 246.07988,-48.4937c-0.2363,57.6225 0.57663,115.26395 -0.57123,172.87143c-1.96881,14.86089 -17.13586,24.73018 -30.79025,27.81644c-11.96498,3.66806 -28.81322,-4.27921 -25.97935,-18.60878c3.50368,-15.49834 19.49123,-26.6657 34.86018,-28.02408c8.67697,-2.20874 20.51364,9.40097 16.68222,-5.83759c-0.09845,-33.39989 0.78769,-66.86396 -0.50803,-100.22556c-37.99194,7.33447 -75.93604,14.91556 -113.90202,22.38341c-0.40428,43.27432 0.22905,86.58281 -1.10269,129.83c-6.66052,18.05263 -29.74564,30.16772 -47.98743,22.50237c-14.38366,-7.43967 -7.95995,-27.06667 2.9687,-34.4792c10.34322,-10.82147 29.63336,-12.35156 40.562,-8.05225c0.25528,-36.18434 0.11931,-72.37016 0.15388,-108.55522c-38.40674,7.73776 -76.89246,15.09384 -115.31775,22.74432c-0.2578,42.95952 0.63174,85.96188 -0.70086,128.88727c-5.20541,16.91916 -25.24538,27.88303 -42.40446,25.48965zm99.21976,-176.85336c19.73389,-3.88507 39.47778,-7.71994 59.20331,-11.64712c1.63908,-13.07382 -17.1093,-0.27914 -24.42491,-1.54683c-30.21908,5.91451 -60.4242,11.89998 -90.63543,17.85444c-2.77443,12.63378 14.55762,1.2752 21.41661,2.10594c11.47932,-2.25961 22.95964,-4.51424 34.44042,-6.76643zm2.31665,-18.17461c18.87643,-3.72409 37.75285,-7.44817 56.62927,-11.17224c3.17953,-13.298 -14.34081,-1.80056 -21.35843,-2.5417c-31.16306,6.26989 -62.32067,12.56752 -93.49722,18.77c-1.80564,13.61723 18.7942,-0.36929 26.46687,1.1845c10.58833,-2.07081 21.17455,-4.15248 31.7595,-6.24056zm119.82236,-6.10279c19.00511,-3.73167 38.01025,-7.46333 57.01538,-11.195c2.25488,-12.51775 -14.43167,-1.31337 -21.22391,-2.14778c-31.1899,6.14801 -62.39635,12.21269 -93.57906,18.3969c-0.48149,12.89743 19.70058,-0.51178 28.22481,0.73691c9.85522,-1.92534 19.70935,-3.85638 29.56277,-5.79102zm-0.38611,-17.67059c18.94318,-3.80859 37.98227,-7.27608 56.86438,-11.31118c2.82913,-13.23785 -18.20197,0.42724 -25.56577,-1.09474c-29.37247,5.74053 -58.85913,11.0502 -88.1676,17.028c-3.13618,14.00631 18.26254,0.04646 25.92732,1.45247c10.31334,-2.02773 20.6273,-4.05214 30.94167,-6.07454z",
"note_3_64th": "m15.05833,274.22296c-14.317,-1.9187 -18.42625,-20.3604 -8.93719,-29.99104c10.38896,-13.67708 30.27131,-22.30949 46.50857,-13.88661c0.66169,-52.1188 0.28732,-104.24842 0.38611,-156.37186c81.97786,-16.40303 164.06815,-32.26401 246.08122,-48.49419c-0.23633,57.62288 0.57712,115.26462 -0.57092,172.87238c-1.96869,14.86116 -17.13614,24.73065 -30.79056,27.81697c-11.96483,3.66806 -28.81317,-4.27963 -25.97963,-18.60901c3.50381,-15.49847 19.49141,-26.66583 34.8607,-28.02443c7.61099,-2.92159 20.18073,9.65431 16.68201,-4.30438c0.21829,-27.96678 0.10867,-55.9346 0.13544,-83.90191c-38.27235,7.48128 -76.53494,15.0156 -114.80267,22.52314c-0.22958,36.48441 0.55602,72.99504 -0.58997,109.45938c-3.18001,15.89902 -20.29759,26.40845 -35.74976,27.23267c-14.89929,2.89737 -27.08599,-14.42255 -17.93506,-27.04372c9.64191,-15.67046 31.65898,-26.22467 48.93309,-16.72427c0.33206,-30.58104 0.14311,-61.16617 0.19254,-91.74873c-38.39642,7.82673 -76.92161,15.04803 -115.31823,22.87476c-0.25736,36.94054 0.62957,73.92738 -0.70087,110.83084c-5.2055,16.9194 -25.24553,27.88339 -42.40482,25.49002l0,0zm101.38524,-159.31403c18.83891,-3.75145 37.70946,-7.35722 56.50069,-11.3393c2.95145,-13.53962 -17.91554,0.08701 -25.35307,-1.30814c-29.80621,5.87558 -59.6283,11.67136 -89.42722,17.5835c-2.26596,13.04952 15.28052,1.23864 22.46973,2.11949c11.93564,-2.35683 23.87244,-4.70798 35.80987,-7.05554zm-2.1648,-17.54025c19.73418,-3.88531 39.47784,-7.72015 59.20348,-11.64717c1.63916,-13.07402 -17.10936,-0.27902 -24.42487,-1.54701c-30.21927,5.9147 -60.42458,11.89994 -90.63596,17.8548c-2.77449,12.63354 14.55767,1.27519 21.41672,2.10558c11.47937,-2.25951 22.95979,-4.51389 34.44062,-6.7662zm123.16869,-6.50159c18.66148,-3.66445 37.32301,-7.3289 55.98506,-10.99284c1.75296,-13.03485 -16.50751,-0.89732 -23.95999,-1.87753c-30.19955,5.92758 -60.38982,11.90097 -90.58421,17.8548c-3.55789,11.04535 8.5943,3.94657 14.87352,3.58826c14.56204,-2.85567 29.12408,-5.71393 43.68562,-8.57269zm-120.85203,-11.67342c18.8765,-3.72417 37.75323,-7.44803 56.62942,-11.17215c3.18001,-13.29807 -14.34068,-1.80056 -21.35812,-2.54169c-31.16348,6.26993 -62.3213,12.56734 -93.49802,18.77035c-1.80566,13.61685 18.79432,-0.36964 26.46704,1.18407c10.58839,-2.07059 21.17467,-4.1525 31.75968,-6.24059zm119.82291,-6.10266c19.0054,-3.73169 38.01082,-7.46337 57.01573,-11.19506c2.25491,-12.51782 -14.4313,-1.3134 -21.22379,-2.14781c-31.19003,6.14807 -62.39655,12.21279 -93.5799,18.39685c-0.48135,12.89765 19.70091,-0.51173 28.22522,0.73721c9.8551,-1.92541 19.70967,-3.85648 29.56273,-5.7912zm-0.38611,-17.67071c18.94363,-3.8086 37.9825,-7.27608 56.86485,-11.31125c2.82944,-13.23789 -18.20175,0.42725 -25.56567,-1.09475c-29.37276,5.7406 -58.85979,11.05029 -88.16818,17.02811c-3.13626,14.0062 18.26253,0.04649 25.9276,1.4525c10.31329,-2.02775 20.62709,-4.05215 30.94141,-6.07461z",
"note_3_8th": "m15.02169,274.2272c-14.31707,-1.91879 -18.42601,-20.36015 -8.93697,-29.99103c10.3888,-13.67676 30.27088,-22.3091 46.50806,-13.88649c0.66166,-52.11824 0.28732,-104.24764 0.38611,-156.37097c81.97754,-16.40273 164.06694,-32.2636 246.07985,-48.4937c-0.2363,57.6225 0.57663,115.26395 -0.5712,172.87141c-1.96884,14.86089 -17.13589,24.73018 -30.79025,27.81644c-11.965,3.66806 -28.81323,-4.27919 -25.97937,-18.60878c3.50368,-15.49834 19.49124,-26.66568 34.8602,-28.02408c8.2316,-2.53128 20.41348,9.51646 16.65692,-5.23953c-0.07721,-45.31436 0.85016,-90.69309 -0.45593,-135.96806c-37.90379,6.83744 -76.18053,14.4211 -114.18623,21.74638c-0.22679,54.0925 0.53969,108.20272 -0.57019,162.28107c-1.77496,14.91302 -17.02997,24.75598 -30.69292,27.71687c-13.90182,4.60379 -31.50981,-7.66069 -24.80507,-22.93971c8.1866,-17.99985 32.25569,-30.36769 50.72748,-20.3566c0.32813,-48.569 0.14423,-97.14091 0.19258,-145.71125c-38.34256,7.86306 -76.73341,15.50194 -115.11303,23.18613c-0.70871,54.82025 0.60002,109.69145 -0.90556,164.48224c-5.27564,16.97054 -25.17379,27.85027 -42.40448,25.48964z",
"note_32nd": "m96.7115,298.78342c-12.19044,-1.97687 -21.5796,-13.65018 -18.87752,-26.14322c3.19898,-16.4884 18.16196,-28.11014 32.8273,-34.56326c11.8622,-4.83313 26.35187,-5.63437 37.63535,1.13913c0.44954,-79.35593 0.19681,-158.71518 0.26346,-238.07262c3.98198,-0.1698 8.54333,-0.99947 7.45644,4.60387c0.32353,13.2127 8.16176,24.35488 17.90031,32.62089c20.68701,19.0793 43.62003,41.1507 45.44289,71.03391c1.94933,11.70761 -4.32771,23.23071 -1.67,34.59584c2.53688,11.20206 1.78056,22.8308 0.17831,34.09036c7.53368,20.20854 5.71452,43.47615 -2.49284,63.20886c0.75815,6.16689 -13.8391,16.22797 -7.44476,5.95023c8.63434,-18.74539 13.17647,-41.8004 3.81317,-61.08943c-11.33986,-18.69514 -31.97612,-28.28085 -48.89772,-41.04474c-11.778,-11.86667 -5.42902,11.18993 -7.18364,18.06325c-0.26184,33.71661 -0.28255,67.43445 -0.41075,101.15173c-5.27325,12.84436 -14.94577,23.71875 -27.82796,29.29456c-9.44402,4.40988 -20.29373,7.32529 -30.71203,5.16064zm114.86545,-145.34879c-7.29857,-26.18551 -30.51866,-43.93251 -53.18727,-56.72259c-6.20538,-0.86809 1.83978,14.15399 3.5831,18.80585c8.11926,15.92772 24.10783,25.32948 35.63724,38.48439c5.02966,4.16844 10.75517,12.77017 14.6803,15.07132c0.57034,-5.18866 0.22502,-10.51091 -0.71336,-15.63898zm0.91826,-35.72012c-0.11551,-22.00919 -16.64085,-39.55235 -32.65781,-52.65142c-7.46819,-4.94457 -16.49954,-13.27054 -24.16978,-14.26883c1.45969,12.25124 6.9503,24.24821 17.03656,31.76259c14.34996,13.93145 29.52126,27.82796 39.47783,45.32379c1.14618,-3.04146 0.13112,-6.92123 0.3132,-10.16613z",
"note_4th": "m126.58881,297.40149c-11.87886,-2.65546 -23.26585,-13.54025 -21.01448,-26.56512c0.1731,-16.24911 13.85612,-27.71617 25.94878,-36.50977c15.62231,-10.78831 37.15717,-14.20154 54.34061,-5.04248c1.02979,-75.90828 0.44815,-151.83525 0.60191,-227.75206c3.00182,0.70564 9.53603,-2.12083 8.02534,3.09698c-0.14726,78.93155 0.33716,157.8673 -0.38513,236.79541c-0.07584,10.70851 -0.22026,22.31233 -7.75522,30.804c-13.91748,17.52454 -37.15509,29.1525 -59.76181,25.17303z",
"note_64th": "m104.92412,299.31976c-12.00094,-1.27536 -20.94641,-13.79388 -17.06551,-25.49271c6.43043,-17.60776 24.98182,-29.7767 43.42287,-30.74879c7.6006,-2.50558 20.88075,10.01114 17.93382,-3.27145c0.48503,-79.47305 0.24155,-158.94821 0.30153,-238.42232c5.75809,-1.70799 6.23006,2.55972 6.32732,7.33913c1.78415,17.85563 19.14293,26.89136 29.82072,39.25721c15.39714,15.12255 27.5349,36.04512 24.51741,58.34038c-3.08612,10.64033 -0.83701,20.84729 0.30066,31.5748c0.06851,11.58006 -4.18433,22.62605 -0.40593,34.00638c1.68036,11.01886 -3.23894,22.12428 2.03442,32.51251c2.40002,18.25101 0.69795,38.47595 -10.52008,53.59502c-7.11406,1.93207 2.97337,-8.35378 2.33067,-11.88858c6.3118,-18.25085 7.27405,-41.79056 -8.5262,-55.64728c-12.36734,-10.82431 -26.50575,-19.43405 -39.98901,-28.77931c-0.71652,35.81755 -0.4848,71.65158 -0.68907,107.47679c-5.08496,13.03387 -16.00215,23.09641 -29.22493,27.57315c-6.53331,2.3526 -13.63996,3.72845 -20.5687,2.57507zm98.72386,-126.48091c-6.34319,-22.74789 -26.51086,-38.16362 -46.20412,-49.27464c-5.25957,0.57732 2.32552,14.64314 4.87614,19.57021c8.86444,13.06609 22.37558,21.98311 32.7415,33.78232c3.44377,1.45969 10.43367,15.90742 9.37975,5.93784c0.13239,-3.35165 -0.09975,-6.73082 -0.79327,-10.01572zm0.7843,-31.02991c0.01227,-19.15482 -14.53879,-34.37045 -28.41721,-45.78492c-6.00691,-3.41928 -16.78343,-14.40513 -20.81033,-10.93629c1.48004,11.20951 7.52783,21.1048 16.47551,27.9065c11.85971,11.75211 24.67769,23.13779 32.59132,38.04211c0.77432,-2.77734 0.04828,-6.25352 0.16071,-9.2274zm0.01279,-39.15976c-0.40309,-21.71703 -17.74644,-38.41104 -34.56728,-49.83583c-4.69977,-2.50358 -18.46306,-14.73891 -13.78862,-1.7836c3.12802,17.13914 19.8609,25.3779 30.46255,37.43516c7.16287,5.47251 13.39691,18.87303 18.00247,22.03555c0.14136,-2.61625 -0.03749,-5.23595 -0.10913,-7.85128z",
"note_8th": "m92.11929,299.44888c-12.88673,-2.17523 -24.85642,-14.0065 -22.42534,-27.8176c1.23042,-15.16177 13.28207,-27.36446 25.40788,-35.40434c16.13786,-10.9864 38.20284,-15.06764 55.98708,-5.59207c1.04205,-76.42476 0.44817,-152.86866 0.60602,-229.30206c11.21484,-2.71548 7.58873,11.96767 10.1358,18.75797c2.43044,19.96716 15.82285,35.63469 29.15343,49.62502c16.53877,17.58521 34.10059,36.23084 39.47629,60.59399c5.87012,28.26657 -3.51422,57.18356 -15.69261,82.51581c-0.88187,8.11874 -15.77403,19.86469 -8.67888,5.1937c11.94699,-25.09727 21.81674,-54.00095 13.66216,-81.79225c-7.76553,-27.73048 -31.97011,-50.88958 -60.78398,-55.04219c-0.18622,58.55498 0.45346,117.12103 -0.68288,175.66663c-2.83272,17.24548 -17.81155,30.04147 -32.83268,37.34811c-10.35778,4.50974 -22.04797,7.23831 -33.33228,5.2493z",
"note_half": "m126.15042,298.46863c-16.82465,-2.00256 -23.94094,-21.72537 -20.50175,-36.48892c5.91676,-23.32147 29.06407,-39.43811 52.28738,-42.05833c8.81128,-0.72736 18.52644,-0.60411 25.78337,4.94891c5.95566,-2.36537 1.76544,-11.69408 2.85246,-17.2854c0,-68.81003 0,-137.6201 0,-206.43012c14.97716,-2.18183 5.30603,19.02521 7.94768,27.71113c-0.09924,75.95386 0.62134,151.91534 -0.76007,227.86198c-7.30341,28.38443 -39.39244,46.36703 -67.60907,41.74075zm2.8452,-12.40747c22.98492,-7.3089 44.37535,-22.56259 55.31068,-44.49013c0.95541,-13.55527 -16.00528,-10.73553 -23.6718,-6.15868c-13.5024,6.76553 -26.21068,15.65268 -36.74068,26.51123c-6.99238,6.4256 -15.89267,26.17618 0.78696,25.05563l2.30408,-0.3252l2.01074,-0.59286l0,0z",
"note_whole": "m130.51953,195.65829c-18.47874,-2.9818 -38.13104,-9.41365 -49.81914,-24.96915c-4.87284,-6.5025 -6.85786,-14.78229 -6.23731,-22.81049c-0.81288,-10.41815 5.23877,-19.78279 13.11027,-26.04227c15.71593,-12.69998 36.4436,-17.12403 56.18739,-18.21444c21.01479,-0.84168 42.85126,2.6237 61.20964,13.32044c11.19275,6.86285 21.10484,18.66567 20.54733,32.45548c0.612,8.09668 -0.91914,16.68852 -6.59294,22.84065c-11.24144,13.63681 -28.92738,19.59387 -45.72455,22.87505c-14.06622,2.54445 -28.55254,2.69426 -42.68069,0.54472zm34.33258,-7.95905c9.06644,-1.9348 15.01314,-11.03741 14.88672,-20.03276c1.54852,-18.89767 -4.73529,-39.56404 -20.09192,-51.52234c-8.61502,-6.06224 -20.8895,-6.65757 -30.00668,-1.42353c-6.79661,4.10276 -9.33514,12.23845 -9.31819,19.7824c-0.73656,16.04378 3.97748,32.8201 14.66045,45.0217c7.49542,7.87076 19.3475,12.08484 29.86963,8.17453z"
}
}

View File

@ -1,34 +0,0 @@
{"data": {
"raph_pensil": "M25.31,2.872l-3.384-2.127c-0.854-0.536-1.979-0.278-2.517,0.576l-1.334,2.123l6.474,4.066l1.335-2.122C26.42,4.533,26.164,3.407,25.31,2.872zM6.555,21.786l6.474,4.066L23.581,9.054l-6.477-4.067L6.555,21.786zM5.566,26.952l-0.143,3.819l3.379-1.787l3.14-1.658l-6.246-3.925L5.566,26.952zx",
"raph_tshirt": "M20.1,4.039c-0.681,1.677-2.32,2.862-4.24,2.862c-1.921,0-3.56-1.185-4.24-2.862L1.238,8.442l2.921,6.884l3.208-1.361V28h17.099V14.015l3.093,1.312l2.922-6.884L20.1,4.039zx",
"raph_man": "M21.021,16.349c-0.611-1.104-1.359-1.998-2.109-2.623c-0.875,0.641-1.941,1.031-3.103,1.031c-1.164,0-2.231-0.391-3.105-1.031c-0.75,0.625-1.498,1.519-2.111,2.623c-1.422,2.563-1.578,5.192-0.35,5.874c0.55,0.307,1.127,0.078,1.723-0.496c-0.105,0.582-0.166,1.213-0.166,1.873c0,2.932,1.139,5.307,2.543,5.307c0.846,0,1.265-0.865,1.466-2.189c0.201,1.324,0.62,2.189,1.463,2.189c1.406,0,2.545-2.375,2.545-5.307c0-0.66-0.061-1.291-0.168-1.873c0.598,0.574,1.174,0.803,1.725,0.496C22.602,21.541,22.443,18.912,21.021,16.349zM15.808,13.757c2.362,0,4.278-1.916,4.278-4.279s-1.916-4.279-4.278-4.279c-2.363,0-4.28,1.916-4.28,4.279S13.445,13.757,15.808,13.757zx",
"raph_woman": "M21.022,16.349c-0.611-1.104-1.359-1.998-2.109-2.623c-0.875,0.641-1.941,1.031-3.104,1.031c-1.164,0-2.231-0.391-3.105-1.031c-0.75,0.625-1.498,1.519-2.111,2.623c-1.422,2.563-1.579,5.192-0.351,5.874c0.55,0.307,1.127,0.078,1.723-0.496c-0.105,0.582-0.167,1.213-0.167,1.873c0,2.932,1.139,5.307,2.543,5.307c0.846,0,1.265-0.865,1.466-2.189c0.201,1.324,0.62,2.189,1.464,2.189c1.406,0,2.545-2.375,2.545-5.307c0-0.66-0.061-1.291-0.168-1.873c0.598,0.574,1.174,0.803,1.725,0.496C22.603,21.541,22.444,18.912,21.022,16.349zM15.808,13.757c2.363,0,4.279-1.916,4.279-4.279s-1.916-4.279-4.279-4.279c-2.363,0-4.28,1.916-4.28,4.279S13.445,13.757,15.808,13.757zM18.731,4.974c1.235,0.455,0.492-0.725,0.492-1.531s0.762-1.792-0.492-1.391c-1.316,0.422-2.383,0.654-2.383,1.461S17.415,4.489,18.731,4.974zM15.816,4.4c0.782,0,0.345-0.396,0.345-0.884c0-0.488,0.438-0.883-0.345-0.883s-0.374,0.396-0.374,0.883C15.442,4.005,15.034,4.4,15.816,4.4zM12.884,4.974c1.316-0.484,2.383-0.654,2.383-1.461S14.2,2.474,12.884,2.052c-1.254-0.402-0.492,0.584-0.492,1.391S11.648,5.428,12.884,4.974zx",
"raph_pen": "M13.587,12.074c-0.049-0.074-0.11-0.147-0.188-0.202c-0.333-0.243-0.803-0.169-1.047,0.166c-0.244,0.336-0.167,0.805,0.167,1.048c0.303,0.22,0.708,0.167,0.966-0.091l-7.086,9.768l-2.203,7.997l6.917-4.577L26.865,4.468l-4.716-3.42l-1.52,2.096c-0.087-0.349-0.281-0.676-0.596-0.907c-0.73-0.529-1.751-0.369-2.28,0.363C14.721,6.782,16.402,7.896,13.587,12.074zM10.118,25.148L6.56,27.503l1.133-4.117L10.118,25.148zM14.309,11.861c2.183-3.225,1.975-4.099,3.843-6.962c0.309,0.212,0.664,0.287,1.012,0.269L14.309,11.861zx",
"ball": "m1.36762,144.54343c-0.61252,-24.33647 11.43968,-48.24649 31.71385,-61.85355c33.0555,-25.12355 76.68359,-36.57172 117.69406,-29.65477c20.30775,-3.13354 29.29549,17.94864 22.15137,34.18353c-11.04268,10.79923 -30.25032,0.52836 -44.5518,6.11385c-46.3661,5.97041 -92.1348,26.12911 -123.47163,61.54787c-0.19116,-3.78908 -5.04203,-6.31387 -3.53584,-10.33693zm0.56006,21.59657c2.46893,-17.16783 19.59014,-26.10648 31.49495,-36.53964c40.07716,-28.36518 90.31613,-39.61352 138.89854,-37.70576c1.20387,19.56051 -8.00084,38.23036 -19.07559,53.7263c-15.20721,8.47826 -34.11861,-1.17561 -50.23914,6.54221c-28.27367,6.8441 -59.74523,15.46761 -77.84163,40.11734c-6.57559,19.79451 -20.47401,-0.35286 -21.54921,-12.00313c-1.52846,-4.62877 -1.3158,-9.384 -1.6879,-14.13731zm7.76269,-58.70418c2.42006,-21.53997 16.61662,-39.35048 29.64042,-55.76294c14.68114,-17.49181 34.66698,-30.31521 57.12629,-35.01287c17.80165,-4.64955 36.14864,-6.58389 54.39959,-8.53692c13.84103,10.63111 22.64574,29.11792 20.32661,46.60463c-10.75017,2.72292 -29.7578,-6.48294 -44.25362,-4.23798c-41.11142,0.38721 -83.13954,16.86419 -110.9226,47.60359c-2.31326,2.96635 -4.3931,6.11006 -6.31669,9.34248zm-2.20363,84.97105c15.37329,12.3277 15.8773,33.69405 25.32488,49.77684c-11.32475,-14.57886 -21.29314,-31.61081 -25.32488,-49.77684zm12.17333,11.7446c4.82258,-13.28815 19.94093,-31.96367 32.55468,-30.57486c5.04242,12.98813 7.22698,27.06129 15.42273,38.77007c22.00548,40.39473 62.27551,75.33984 110.15025,76.43997c7.82913,1.58691 28.58411,-3.6853 27.74063,-1.50394c-20.00963,9.82742 -43.17618,11.98239 -65.22374,11.19174c-40.94611,-2.71915 -81.7309,-22.38535 -106.34646,-55.65858c-6.96676,-11.95032 -10.92698,-25.33659 -14.29809,-38.66251zm33.70255,-33.88084c11.04849,-5.13829 31.74819,-20.7682 40.05036,-8.17067c20.26116,39.90601 54.51507,73.83781 96.68548,89.7942c21.8947,7.30453 46.52556,7.18939 67.87685,-1.92662c-8.90472,13.82597 -23.64018,22.69292 -37.52655,30.83714c-35.49046,15.14874 -78.39111,6.93469 -108.29421,-16.68286c-28.94243,-22.9118 -51.66176,-55.70389 -58.71476,-92.285l-0.04169,-0.84726l-0.03548,-0.71893l0,0l0,0zm14.80587,-143.69432c26.85995,-18.47492 60.14433,-27.13922 92.60995,-24.83766c-16.61871,10.60714 -37.47179,6.57748 -55.695,12.32051c-12.71339,2.76803 -25.33243,6.4903 -36.91495,12.51714zm23.19239,130.17215c17.68391,-8.37067 37.80864,-8.2348 56.92004,-7.08942c11.52194,17.94525 19.73788,38.80402 37.6284,51.74121c20.84937,18.617 51.18832,23.87227 77.45898,15.12419c9.02167,-6.09496 19.03778,-2.20023 14.1109,9.88971c-5.93085,20.07378 -26.98962,28.88977 -46.28781,29.86346c-39.48146,3.94382 -75.60028,-18.48682 -102.27098,-45.57831c-15.55914,-15.57706 -28.70033,-33.74123 -37.55954,-53.95085zm59.9713,-149.25921c14.39017,-11.41684 33.98842,-1.08634 48.71259,4.37706c14.6449,12.52997 16.60739,33.37817 20.47758,51.17717c6.47049,41.78263 3.85324,86.6684 -15.69031,124.8082c-4.67027,13.36929 -18.09242,20.61154 -26.69522,6.15724c-9.99724,-11.02568 -17.64142,-23.85532 -24.85538,-36.77173c-4.26648,-12.35977 9.69913,-21.07201 12.62395,-32.37317c5.6987,-11.2672 7.1479,-23.94022 7.7876,-36.27168c2.68518,-18.44756 0.04341,-37.58501 -4.80806,-55.44724c-3.40224,-9.88385 -8.92734,-19.45691 -17.55275,-25.65586zm41.36089,197.33399c28.32747,-32.0033 32.81847,-77.44762 30.6862,-118.36129c-1.29825,-24.12249 -4.96657,-49.05092 -17.68674,-70.0582c13.14473,0.40704 27.28206,12.75397 37.58124,21.8466c29.18982,37.11403 37.77368,91.40852 15.58273,134.05255c-8.72922,17.24329 -20.55305,32.80717 -34.43375,46.22929c-11.62009,-0.9548 -23.39864,-5.3515 -31.72969,-13.70895zm32.30334,13.89389c30.50691,-29.40305 52.59978,-71.66214 46.00664,-114.99303c-2.62479,-20.29454 -10.03497,-39.89902 -21.13239,-57.06778c20.32477,12.66527 31.62595,35.09759 41.79111,55.93748c14.61285,36.42265 6.66864,80.8159 -19.44537,109.92648c-13.41086,7.60643 -32.33356,8.77071 -47.21999,6.19685zm50.22404,-6.80072c10.46527,-18.28113 22.34006,-36.81323 23.43076,-58.50224c1.62656,-7.25171 -0.89633,14.22787 -1.77191,18.74721c-2.78329,15.96013 -6.41766,32.99399 -16.3092,46.01608c-2.27573,-1.26239 -1.2605,-7.4102 -5.34964,-6.26105z",
"bolt": "m178.14388,74.00616l-108.49727,68.79685l107.15599,23.63498l-99.04335,73.85934l-39.98779,-12.47227l28.36194,71.19228l112.7131,-31.06076l-47.58928,-12.98325l129.22581,-106.08589l-118.12698,-19.22734l114.07071,-71.6874l-65.0681,-10.76349l70.86891,-45.56109l-26.03423,-0.65478l-109.97452,62.50492l51.92505,10.50792z",
"car_smart": "m28.92024,238.37814c-20.54175,-8.15092 -27.36674,-32.3504 -27.6178,-52.52942c-2.7836,-14.94118 14.71887,-25.93048 8.95686,-41.2937c-2.18657,-22.71175 4.68564,-45.20703 14.9548,-65.22043c0.32475,-12.85873 10.87969,-17.84956 22.37955,-17.11762c37.15603,-4.71741 74.98359,-4.84966 112.15372,-0.39277c22.18198,4.11681 39.85953,19.32546 58.61859,30.81274c11.63586,8.63808 25.21985,14.32888 36.92355,22.63131c12.64026,10.62529 24.51556,22.47708 33.27448,36.57193c3.15143,14.09033 7.38165,28.09947 9.54742,42.2829c4.39661,13.27223 -4.6037,21.62047 -11.41214,30.84103c-10.34,12.57306 -29.90723,17.53416 -44.71561,10.78313c-10.28528,-3.75465 -14.07077,-19.70746 -25.7968,-18.60466c-44.20906,-0.65964 -88.41812,-1.31926 -132.62719,-1.97884c-10.24168,13.44736 -24.40165,28.14365 -42.91705,26.05086c-4.02312,-0.33679 -7.97831,-1.33774 -11.7224,-2.83646z",
"car": "m26.77284,183.48201c-8.08779,-6.80998 -23.25337,0.56996 -25.08215,-11.86069c-3.52016,-11.04616 7.23365,-19.6761 14.38957,-26.36473c12.51913,-6.23676 26.95447,-6.99092 40.49323,-9.84883c16.2238,-2.35439 33.11552,-4.36668 47.10119,-13.71207c15.9294,-9.9651 33.67083,-18.25834 52.86141,-18.11141c26.44141,-0.91634 53.7986,-0.02856 78.2453,11.26058c15.36688,6.93465 31.87709,10.4591 48.27711,13.85143c13.95395,1.83385 10.70889,16.88237 15.35007,26.15973c3.54291,10.65329 -4.11594,21.25732 -15.32654,21.59605c-11.85318,2.69405 -25.72552,2.95921 -34.00009,13.30453c-8.47623,9.38277 -23.69647,9.05888 -32.32811,0.09547c-3.56866,-2.21568 -5.9512,-7.58008 -10.70335,-6.65411c-44.31184,0.24008 -88.64653,-0.63266 -132.93902,0.78894c-11.57394,-0.92139 -16.38131,13.44077 -28.69251,12.44249c-6.30352,0.19554 -12.27285,-9.98318 -17.64611,-12.94739z",
"coud": "m193.50864,67.27344c-28.56444,0 -53.08249,14.81322 -65.08365,36.1982c-4.7932,-2.67596 -10.08009,-4.29625 -15.72245,-4.29625c-17.06268,0 -31.26126,13.72618 -35.64974,32.35901c-7.49058,-2.96072 -16.20005,-4.7533 -25.50328,-4.7533c-27.90971,0 -50.54951,15.27039 -50.54951,34.09579c0,16.99312 18.56764,30.96303 42.68829,33.54732c-1.08106,1.83421 -1.91961,3.65059 -1.91961,5.57599c0,18.02431 49.38134,32.72462 110.23999,32.72462c60.85864,0 110.24005,-14.70032 110.23999,-32.72462c0,-1.21274 -0.75272,-2.29501 -1.18832,-3.47357c2.66562,0.6629 5.30496,1.37115 8.22687,1.37115c16.28061,0.00005 29.5253,-11.06223 29.5253,-24.6806c0,-13.61838 -13.24469,-24.68059 -29.5253,-24.68059c-1.99515,0 -3.69165,0.68915 -5.57599,1.00551c1.64767,-5.44531 2.74228,-11.00153 2.74228,-16.91078c0,-36.04859 -32.63087,-65.35786 -72.94485,-65.35786z",
"drop": "m101.50413,119.73441c-169.70167,149.53423 29.55369,277.04852 105.31838,71.70643l58.26123,-190.46983l-163.57961,118.7634z",
"drop": "m115.15536,295.759c-42.01334,-15.78687 -72.12711,-65.94934 -65.28346,-108.74701c4.3154,-26.98718 95.35947,-190.81818 103.3105,-185.90417c2.59511,1.60386 25.68835,39.79974 51.31831,84.87975c41.0565,72.21342 46.5999,85.67899 46.5999,113.19665c0,55.77716 -44.6394,101.46498 -98.23825,100.54555c-15.6409,-0.26834 -32.60906,-2.05518 -37.707,-3.97076zm42.09262,-28.05386c1.39066,-7.22116 -1.85785,-10.74289 -9.90955,-10.74289c-18.35065,0 -43.80598,-23.24161 -49.49309,-45.18889c-6.0666,-23.41179 -22.15186,-26.19615 -24.52774,-4.24574c-4.57746,42.29059 76.21872,100.22086 83.93037,60.17752z",
"electric_guitar": "m168.96899,1.09303c-2.62799,0.19977 -5.017,2.04496 -6.96899,4.55579c0.009,13.46278 -11.116,25.03858 -14.875,34.35928c2.30499,1.8475 1.13,2.9332 -1.03101,4.4286c-0.17,2.5165 0.468,4.9685 2.468,7.3554c-2.591,41.8755 -6.024,92.17889 -8.718,134.4599c6.14801,0.138 12.354,1.117 18.81201,0.687c-0.007,-32.55499 2.539,-84.562 3.282,-116.00749c-0.101,-10.2094 -0.504,-24.029 13.12399,-28.8618c-6.94499,-14.7833 5.922,-35.70095 -5.562,-40.97666c-0.146,-0.00122 -0.293,-0.00885 -0.438,0c-0.03099,0.00187 -0.062,-0.00236 -0.093,0l0,-0.00001zm11.692,171.76396c-4.715,6.66701 -11.79199,10.17 -14.146,13.60501c-5.37599,8.46799 -14.379,-3.16701 -26.89,2.99599c0.065,-1.02399 0.153,-2.172 0.21899,-3.20599c-0.07199,-0.002 -0.14699,0.00101 -0.21899,0c-6.659,1.013 -12.157,-7.713 -12.594,-15.44901c5.55199,-11.89 -14.242,-18.006 -19.5,-5.82899c-3.943,13.605 -0.41,27.51199 4.78201,40.672c5.933,16.162 -8.871,30.179 -13.2192,45.17601c-4.1375,9.502 -4.2709,20.46999 2.68719,29.192c9.486,13.58398 29.413,18.62799 47.563,18.758c3.23401,0.224 6.44801,0.414 9.68701,0.58499c57.61699,3.284 34.35399,-35.13699 25.282,-68.41299c-5.82201,-21.66299 1.48199,-36.38 6.269,-42.614c2.659,-7.35001 6.02899,-23 -9.92101,-15.472l0,-0.00101zm-34.567,-128.4203c2.43501,-11.918 -8.10399,0.709 0,0z",
"guitar": "m158.45264,1.00012c-0.96039,0.00612 -1.8884,0.06411 -2.73161,0.18457c-4.49716,0.64245 -8.99768,2.5655 -8.99768,2.5655c0,0 0.00569,8.99612 -0.63676,15.42064c-0.64244,6.42453 -3.21147,17.34015 -3.21147,17.34015l3.15611,6.32144l0.05536,-1.172l10.62189,1.86414l0.94128,0.05537c0,0 1.28059,-1.28413 2.56551,-3.21148c1.2849,-1.92736 3.85747,-3.21148 3.85747,-3.21148c0,0 0.63675,-9.63641 0.63675,-16.70339c0,-7.06698 2.57472,-18.63212 2.57472,-18.63212c0,0 -4.66991,-0.84783 -8.83156,-0.82133zm-1.74417,42.52442l-10.62189,-0.58139l-0.05536,-0.11074l-5.5278,113.65688c0.19376,0.03734 0.44296,0.08304 0.44296,0.08304c0.14801,2.18161 0.8121,3.84209 1.8549,5.14021l11.84926,5.41707c0.3562,0.09476 0.71249,0.18806 1.07048,0.28609l1.28276,-123.83578l-0.29532,-0.05537zm-0.98744,123.89115l0,0.20302l-1.07048,-0.48911c-4.80661,-1.27875 -9.3821,-2.34575 -11.84926,-5.41707l-2.5009,-1.14432l0.20303,-4.07893c-2.16553,-0.41753 -15.40038,-2.83867 -20.1179,-0.47989c-5.13962,2.56979 -8.99552,6.42279 -10.28043,14.77466c-1.2849,8.3519 2.57119,23.77351 1.92873,34.05275c-0.64246,10.27924 -7.71416,19.91469 -10.92641,28.26657c-3.21227,8.35188 -6.4202,17.99007 -2.5655,32.12404c3.85472,14.13391 17.99164,23.77151 25.70107,26.9838c7.70942,3.21225 23.7631,5.14023 23.7631,5.14023c0,0 15.42752,2.58041 25.06432,1.93796c20.23672,-3.64624 28.72404,-15.65756 29.98303,-30.66595c1.259,-15.00839 -4.71521,-33.01251 -13.40884,-48.65207c-9.50552,-17.10013 8.59656,-39.76326 -0.76596,-52.52802c-9.74182,-13.28188 -16.9409,8.64334 -23.78156,3.87593c-2.77655,-1.93504 -6.09895,-3.00655 -9.37605,-3.90359z",
"helicopter": "m145.07504,214.22588c7.36339,2.46503 20.68225,-9.04681 7.26401,-9.72079c-9.08205,-5.71648 20.13416,-1.63675 8.22827,-13.70961c-12.73747,-2.77332 -22.69479,-12.46857 -27.12979,-24.871c-5.18111,-13.36012 -22.04633,-9.68964 -33.09622,-13.54991c-22.05075,-3.93678 -44.07657,-8.59007 -66.50366,-9.73877c-7.45861,8.40495 -10.97594,26.46114 -24.24853,25.75703c-13.26779,-6.6758 0.56035,-23.43509 -3.41489,-33.00934c-7.79329,-2.62592 -6.3066,-7.72096 1.2938,-8.36586c11.59587,-8.00312 1.94812,-23.47349 -0.57486,-34.01581c-6.13778,-10.01295 7.00565,-18.8414 12.01386,-7.02641c6.38165,12.3224 10.0863,25.85204 15.15507,38.7706c1.5816,8.28716 13.30507,3.58878 19.44516,6.06101c25.89155,2.78554 51.80775,5.58556 77.83869,6.66318c13.03992,-5.6261 26.8783,-10.34038 41.29993,-8.34114c10.08574,3.05644 15.78185,-0.7104 15.3338,-11.13895c5.72609,-15.02095 -14.03151,-8.3312 -22.93935,-10.54208c-35.53757,-1.72837 -71.18015,-2.25171 -106.70476,-0.12757c-7.88696,-1.96813 10.41693,-1.78943 13.19444,-2.24187c37.48436,-1.98021 75.04819,-1.00611 112.54227,-2.69012c10.81163,-3.98792 21.54251,3.11311 32.56555,1.91049c27.80304,1.13907 55.63103,1.5356 83.45552,1.62198c-7.86588,5.84674 -22.53885,0.05771 -32.94354,1.5061c-20.90826,-0.64194 -41.94905,-1.24406 -62.73434,1.6021c-8.09567,7.82163 -3.84563,24.5245 6.28453,28.41502c10.32359,5.55025 20.91692,10.41565 30.31529,17.0117c5.93991,11.31316 22.72864,20.80537 17.77679,35.05132c-5.67494,11.7886 -26.25294,4.37625 -31.4632,7.69153c3.85466,6.8309 17.16597,7.52176 19.55997,10.01913c-13.12518,3.78056 -0.61014,11.85339 6.85498,9.29091c9.21201,2.18106 -9.36668,3.71298 -12.4339,2.99583c-14.92371,0.12004 -29.83833,-0.52202 -44.7583,-0.72722c14.41679,-0.6433 28.87468,-0.63033 43.24721,-2.05975c-3.35245,-13.78374 -21.0649,-7.04161 -31.27078,-9.43388c-4.97525,-2.55072 -21.3748,0.68501 -13.06122,5.71829c4.63876,-2.08994 15.97667,-0.09111 5.65021,2.25237c-18.67735,0.60303 -37.42494,0.87289 -56.04201,-1.0285zm45.45972,-5.72816c-5.69293,-8.23618 -25.36656,-6.65369 -28.94688,0.84814c6.97417,5.6115 21.3663,3.65866 28.78714,0.2599l0.15974,-1.10805l0,0zm41.15115,-4.79669c-8.39107,-5.92067 -23.748,-6.57408 -31.28664,-1.76099c9.46599,4.52687 21.07687,2.68456 31.28664,1.76099zm-41.46053,-2.71213c8.91602,-7.60876 -15.73071,-6.19264 -21.17932,-5.80487c-13.47525,6.12955 5.46666,7.82239 11.1256,6.8177c3.37151,-0.02223 6.75697,-0.27522 10.05373,-1.01283z",
"katana": "m127.28507,65.14041c-7.0962,-0.54353 -19.86895,7.61395 -17.02093,-6.32892c4.93732,-8.55679 18.30521,-4.48845 16.78561,5.48313l0.17354,0.62374l0.06178,0.22205l0,0zm17.16403,-18.49577c-6.77293,11.60114 -22.03173,12.43076 -33.48896,16.75148c-5.30647,3.04373 -26.81981,5.02184 -18.62814,-4.27034c11.69819,-7.75446 26.08649,-9.62626 39.25734,-13.85468c4.24069,-0.99664 9.15976,-1.38791 12.85976,1.37354zm-35.03055,12.26915c-5.16663,-17.73298 -10.33324,-35.46593 -15.49986,-53.19891c6.32053,-8.5978 20.25586,-4.8693 18.32531,6.59137c4.01678,13.78642 8.03355,27.57289 12.05032,41.35935m-5.56697,9.33072c22.56753,79.08354 48.81091,157.2375 81.6054,232.70842m-75.6467,-234.76585c22.79797,74.42342 46.12929,148.92492 77.59851,220.23124c0.43317,5.52475 14.80417,22.08911 1.77542,17.81497c-4.05151,-1.9415 -10.97104,-0.62137 -11.72156,-6.31741c-30.74268,-74.29929 -57.39734,-150.28568 -79.92033,-227.47363",
"leaf_1": "m35.63904,285.5213c9.77121,-31.99348 23.14531,-59.08864 35.83149,-72.59245c13.5912,-14.46718 7.56125,-20.74258 -6.45918,-6.72212c-5.89857,5.89853 -7.58387,1.61555 -7.58387,-19.2735c0,-49.83961 25.83589,-80.67891 87.99842,-105.04016c52.59872,-20.61333 91.37741,-43.79435 107.45589,-64.23479l13.10197,-16.65652l0,28.9807c0,35.83507 -11.11781,89.97318 -23.42422,114.0641c-13.0549,25.55626 -57.80217,72.72934 -79.76038,84.08435c-19.67261,10.17316 -61.687,13.16808 -84.14172,5.99792c-11.19011,-3.57314 -14.7415,-0.84308 -20.53963,15.78944c-3.8556,11.06018 -7.0102,26.79501 -7.0102,34.96616c0,9.27652 -3.72057,14.8566 -9.90572,14.8566c-7.3461,0 -8.78352,-3.67429 -5.56284,-14.21973z",
"menorah": "m86.17095,270.72717c9.02267,-23.09398 33.59461,-36.70894 57.45916,-38.45409c0,-4.91623 0,-9.83244 0,-14.74866c-38.305,-2.75075 -76.20534,-18.86525 -101.66333,-48.29793c-23.2569,-24.97108 -35.58256,-58.55817 -37.27682,-92.42073c-13.45491,-9.58464 12.56556,-16.55834 15.7355,-5.95607c-7.24909,8.79617 -0.22592,22.59306 0.80432,33.36646c11.47956,50.91395 56.38975,91.60496 107.78628,98.82449c13.14264,5.82442 16.6395,-2.00252 14.39308,-13.99509c2.81267,-9.48175 -7.44086,-6.60333 -13.57417,-8.37358c-40.52152,-7.1041 -75.7263,-38.65041 -86.11595,-78.75394c-2.97659,-11.47399 -3.94458,-24.11363 -7.5694,-33.51495c7.70256,-6.02401 26.19639,-1.60448 15.97076,9.15671c1.09565,45.56244 38.91488,85.76277 83.65269,91.48959c9.24995,4.52249 8.18915,-3.21457 7.85701,-9.40932c4.90146,-15.06035 -9.71606,-12.79654 -19.53952,-16.50067c-27.62657,-9.39215 -47.87568,-36.35101 -49.79039,-65.51331c-13.2153,-11.51691 15.74928,-17.53994 15.95383,-5.55531c-7.59098,8.84892 0.96818,23.21689 5.54156,32.6564c10.3335,16.84724 28.24842,28.22102 47.83452,30.47823c0,-7.52246 0,-15.04491 0,-22.56738c-18.20905,-2.81535 -32.7534,-18.72141 -34.8131,-36.97318c-12.40635,-10.10166 14.58986,-14.97282 16.53119,-5.29626c-6.736,5.28018 -1.66743,13.75206 2.28733,19.47478c2.82583,3.38407 16.81124,15.16281 15.99458,6.28913c0,-10.03232 0,-20.06463 0,-30.09695c-8.52963,-5.41637 3.21713,-9.02356 -1.91258,-15.41792c2.95047,-6.63559 4.28693,-23.79965 6.49635,-24.00391c7.40089,10.5439 4.63795,25.17949 11.62167,34.34932c-3.85376,4.14688 -4.52328,8.74758 -3.86568,14.89357c0,8.05796 0,16.11592 0,24.17388c11.03737,-3.24367 21.02812,-12.42406 21.72646,-24.48188c-12.61211,-14.80839 30.69243,-11.52931 12.71999,1.59949c-1.87195,17.85434 -17.0993,32.57059 -34.44644,35.57887c0,7.49281 0,14.98562 0,22.47842c29.68999,-2.98224 55.87296,-29.1582 56.39926,-59.47436c-12.36238,-13.6567 27.91393,-12.75137 14.12813,-0.52898c-3.16423,14.80594 -6.23018,30.54218 -16.29872,42.63571c-12.70108,17.1765 -33.04718,27.37456 -53.98901,29.78134c0.16994,9.14496 -4.65584,28.46082 11.13493,20.75519c39.31322,-6.69104 72.74197,-39.63307 78.74797,-79.43351c5.73982,-8.84732 -8.70837,-25.00382 8.28397,-22.77648c10.50046,-2.44997 11.98193,6.34405 5.8692,11.72792c-2.04736,35.89314 -21.91298,70.45303 -53.09749,88.60141c-15.52945,9.13074 -33.16388,14.88533 -51.17824,15.85547c0.17836,7.53169 -0.4761,15.16116 0.61618,22.6142c35.31798,-2.81911 70.08339,-18.10321 93.11932,-45.67516c20.51892,-23.04272 31.08511,-53.43816 32.84753,-84.00375c-10.43478,-10.04525 11.39471,-11.61442 16.59445,-7.04305c-5.883,11.66189 -5.21661,27.04671 -9.11984,40.52295c-12.68921,53.08224 -58.41412,95.84925 -111.85593,105.51876c-7.32545,1.56883 -14.77785,2.36348 -22.20172,3.29227c-0.71042,9.09981 -0.50818,18.35449 11.59822,16.61531c20.59241,4.32626 40.36211,18.55411 46.94081,39.19469c-43.09088,0 -86.18179,0 -129.2727,0c0.31159,-0.88608 0.62314,-1.77219 0.93477,-2.65823zm-82.88959,-208.5947c-0.54892,-8.1144 4.33617,-25.42208 5.66115,-27.43132c2.27143,7.42761 12.58555,23.78434 4.72879,28.60384c-3.29131,-0.38358 -8.04816,1.57556 -10.38994,-1.17252zm34.52483,0.55147c-1.7146,-10.01769 5.4567,-19.41309 4.51432,-29.75311c3.2196,8.43034 16.36395,29.47998 1.96646,30.42084c-2.16732,-0.0773 -4.38702,0.03559 -6.48078,-0.66772zm35.62526,-0.17229c-1.52428,-9.82734 5.20364,-19.12723 4.61758,-29.264c3.98769,8.50923 17.39558,32.7104 -0.82941,30.07944l-1.91212,-0.12625l-1.87605,-0.68919l0,0zm34.60818,0.26421c-1.9521,-10.01891 5.40411,-19.48301 4.43661,-29.84504c3.27068,8.4848 16.29427,29.36411 1.98981,30.63179c-2.15335,-0.08198 -4.37302,0.0215 -6.42642,-0.78675zm69.2087,-0.38279c-1.5544,-10.07727 5.31645,-19.6095 4.34973,-30.05398c2.70531,5.08463 6.32187,13.73424 7.91895,20.50951c4.77353,11.03205 -3.95122,12.51878 -12.26868,9.54446zm35.71176,0.44493c-2.89404,-9.75608 5.30412,-19.55815 4.07715,-29.90718c3.42241,8.32418 12.40758,23.15913 6.53528,30.337c-3.53609,0.01955 -7.13571,0.41735 -10.61243,-0.42982zm34.8703,-0.20629c-2.23303,-8.13288 4.34842,-24.82986 5.07388,-28.23849c3.49849,8.39077 16.5291,33.58521 -2.7937,28.93562l-2.28018,-0.69713l0,0zm35.10023,-0.15336c-1.90784,-8.93159 5.20419,-21.786 4.83258,-28.71239c3.47043,8.02287 16.97986,32.30244 -0.94669,29.60343l-1.89111,-0.14957l-1.99478,-0.74147l0,0z",
"sun": "m238.69324,135.65587c0,46.60593 -40.30034,84.38748 -90.01332,84.38748c-49.71299,0 -90.01332,-37.78156 -90.01332,-84.38748c0,-46.6059 40.30033,-84.38747 90.01332,-84.38747c49.71298,0 90.01332,37.78154 90.01332,84.38747zm-7.30318,120.56636c-4.20586,5.25757 -51.12886,-47.27794 -57.30507,-44.69331c-6.17622,2.58458 -15.51068,86.52086 -22.0425,87.47173c-6.53188,0.9509 -17.76118,-85.09837 -24.12714,-87.15329c-6.36602,-2.05495 -43.23042,49.74286 -48.75608,45.85272c-5.52563,-3.89009 13.12091,-67.11951 10.04803,-73.73549c-3.07288,-6.61595 -73.34953,-9.72229 -74.79697,-17.10284c-1.44742,-7.38055 63.69369,-26.7453 64.2322,-34.0554c0.53854,-7.31011 -43.73452,-48.6129 -41.1993,-55.02096c2.53526,-6.40806 61.81988,21.03078 65.82475,15.40928c4.00487,-5.62149 -7.80805,-76.34053 -1.73039,-78.4587c6.07763,-2.11818 42.59449,47.54089 49.0827,47.30339c6.48817,-0.23753 26.02002,-62.46352 32.64861,-61.00949c6.62865,1.45401 3.32251,66.01247 8.45366,70.32287c5.13113,4.31043 55.87381,-16.15842 59.63792,-10.29998c3.76414,5.85843 -29.09575,62.86814 -27.11681,69.62658c1.97902,6.75845 62.18188,13.20758 61.3595,20.19514c-0.82245,6.98758 -75.2742,9.96732 -78.37666,16.73535c-3.10245,6.76802 28.36942,83.35484 24.16354,88.6124z",
"chair": "m118.11539,289.55515c-7.47328,-14.4328 15.76004,-21.83389 9.75156,-35.26642c-9.58212,-8.59285 -23.93785,-6.58557 -35.88018,-5.92961c-12.89955,-1.58955 -16.67669,11.62587 -24.11323,17.11729c-14.66394,-4.57965 -9.41961,-23.5907 3.95336,-25.69879c17.48831,-7.56879 36.79559,-3.21786 54.96046,-6.57193c13.14571,-7.65541 -3.09947,-24.09541 -13.42245,-25.84244c-17.08451,-6.9008 -38.18468,-7.0844 -51.24073,-21.62146c-5.1916,-11.32457 -3.84497,-32.04767 10.15321,-36.01445c6.34414,-10.73523 5.01785,-24.55999 3.35027,-36.47948c1.42348,-12.67513 -26.70474,-5.25126 -14.90233,-18.24577c10.64336,-8.15804 24.36629,-13.15867 37.81105,-12.959c10.96933,0.36309 11.71716,12.99065 -0.37628,9.89848c-12.30081,6.18077 -7.72121,23.86169 -7.25122,35.16668c5.93514,11.39347 22.04794,5.36764 32.49831,7.07384c14.8665,0.39955 21.73593,0.44463 35.83476,5.23605c14.25958,-1.05464 8.64325,-20.61657 0.17079,-21.97119c-13.03212,-2.87206 -25.91483,-10.25501 -33.20317,-21.62909c-4.07215,-13.26593 1.69855,-27.24597 4.77583,-40.18096c9.18196,-28.0861 34.13237,-54.57027 65.33606,-54.63913c19.15414,0.28833 38.85675,14.48402 42.13089,33.82922c2.48616,20.34066 -5.57245,41.0622 -0.32005,61.11538c12.75343,7.04288 -8.70227,17.78406 -9.16336,27.50478c-5.43883,14.13736 6.97403,30.55498 -3.65417,43.29654c-6.64983,9.38159 -22.16026,14.5639 -22.43275,27.04953c-3.81845,11.24202 -21.47061,10.39703 -30.28923,17.71931c-9.74564,2.86838 -15.08257,19.17726 -0.15649,15.9317c14.55153,-0.35892 29.03516,-5.81784 43.55118,-3.3181c10.39314,7.10063 -0.45073,21.22018 -10.9113,14.54475c-5.46445,0.08383 -25.63857,2.80356 -18.76688,8.69054c17.18895,4.015 35.8273,9.2104 46.95854,24.0352c10.43184,13.90863 -12.73763,17.22995 -17.34935,5.0022c-19.29245,-15.75378 -48.30531,-24.24933 -70.97163,-10.48508c-13.71143,5.73386 -10.53542,20.53958 -11.98199,31.56015c-5.57972,6.09451 -13.26627,-2.5275 -14.84946,-7.91876zm100.26077,-153.99353c-4.62421,-8.64436 -27.69229,-17.16811 -30.82967,-4.71919c1.76141,12.68575 19.62196,15.68971 29.15408,10.51048c1.73547,-1.32053 2.45361,-3.74493 1.67558,-5.79129z",
"bone": "m273.3559,119.27242c-11.58661,5.90293 -23.89537,9.95385 -36.67676,12.27164c-53.42084,0.2984 -105.13121,0.41397 -158.74251,2.97562c-14.28426,-2.65407 -30.58815,0.18161 -42.82426,-9.13783c-9.06827,-7.25944 -28.17529,-2.4415 -25.05096,11.36483c6.17649,14.08824 -14.61965,21.70474 -7.59176,36.00003c6.11589,14.67987 24.54805,9.02721 35.59484,4.1729c20.29636,-4.79665 40.55842,-9.8537 60.92737,-14.38416c42.52868,-4.82219 82.54949,-1.83121 124.59118,1.02063c11.68694,2.54654 23.55803,4.03351 35.45654,5.38187c10.1839,0.16006 18.34979,7.46698 27.92017,8.65919c12.6539,-1.22533 16.41983,-19.19981 7.59747,-27.17406c-13.18918,-8.72406 6.75436,-24.14882 -8.14166,-31.38885c-4.25287,-2.31086 -8.733,-0.75754 -13.05966,0.23817z",
"dagger": "m1.57422,47.21264c-2.775,14.24454 5.08469,27.79975 11.2199,40.10517c13.07098,21.70464 28.2358,42.59465 47.26681,59.46329c12.98537,10.6889 24.68548,22.99878 39.38902,31.4678c19.22253,12.95224 39.86254,23.55869 61.26455,32.3793c15.9138,6.93546 32.60274,11.85577 49.65401,15.08282c4.95967,1.28564 18.82625,4.91663 10.19991,-3.60251c-7.15544,-3.02133 -14.76756,-5.22583 -21.96236,-8.37695c-34.92769,-14.34082 -72.04247,-26.94104 -100.21951,-53.10463c-4.66899,-6.20064 8.95855,3.3492 11.3067,5.96803c23.50703,16.73581 50.36192,27.95749 76.84653,39.04178c13.47301,4.46384 28.20039,13.97903 42.51408,7.22675c12.36502,-4.72467 -2.95702,-5.44891 -8.42033,-7.24844c-24.28337,-6.90491 -48.85286,-13.54227 -71.13893,-25.76019c-12.72568,-4.65573 -23.42126,-13.22678 -34.85331,-20.29132c-12.35065,-8.53128 -23.65424,-18.49934 -35.67798,-27.49634c-7.86864,-5.96642 -15.68669,-11.98865 -22.20108,-19.46664c-11.01625,-11.02383 -21.70009,-22.36108 -31.68482,-34.33246c-6.52307,-7.36439 -13.86146,-14.10685 -18.44664,-22.93894l-5.05655,-8.11652zm256.45175,139.13108c-1.50562,-0.04745 -3.06,0.28214 -4.36211,1.15021c-9.72246,4.86124 -7.63908,13.88922 -13.19478,20.83386c-4.16678,5.55569 -9.028,8.33356 -15.97261,10.41693c1.38892,2.77783 4.16675,6.94461 4.16675,10.41693c0,7.63907 -9.02798,14.58368 -15.97261,13.88922c-2.77786,-0.69446 -9.028,-4.16678 -11.11139,0c-0.69446,1.38895 -0.69446,2.77786 0,3.47232c0,2.77786 3.47231,4.16678 6.25015,5.55569c7.63908,2.08337 15.97263,-0.69446 22.22279,-4.86124c4.86122,-2.77783 8.33353,-7.63907 9.72246,-13.19479l1.38892,-9.02798c0.69446,-2.77783 3.47232,-3.47232 6.94463,-8.33353c4.16676,-5.55569 8.33354,-15.2782 13.88924,-19.44495c2.08337,-1.38892 4.16675,-2.0834 6.94461,-2.77786c-1.38892,-2.08337 -2.77786,-3.47229 -4.16678,-5.55566c-1.38892,-0.69449 -2.77783,-2.0834 -4.16675,-2.0834c-0.78128,-0.26041 -1.6792,-0.42728 -2.58252,-0.45575zm29.4061,26.21594c-2.61084,-0.02899 -5.33868,0.54254 -8.07312,1.32382l5.55569,3.47232c-1.38895,2.77783 -4.86121,8.33353 -4.16678,11.80585c0.69449,6.94461 10.41693,6.94461 14.58371,2.77783c4.86124,-5.55569 4.86124,-13.88922 -2.08337,-18.056c-1.82297,-0.91147 -3.78549,-1.30127 -5.81613,-1.32382zm-13.39011,3.40723c-0.54364,0.00192 -1.07498,0.00705 -1.60593,0.0217c-3.8486,0.21091 -7.69568,0.50116 -11.54541,0.67276c-2.41867,0.03116 -4.88754,-0.00473 -7.22676,0.69446c-3.17285,2.02515 -5.29396,5.38272 -6.53229,8.87607c-0.16666,0.50345 -0.30807,1.02072 -0.41234,1.54083c3.86218,1.74924 8.17189,1.5618 12.30499,1.41064c2.50439,-0.06696 5.00949,0.24561 7.50888,0.36893c1.7876,0.07916 3.57104,0.32327 5.36038,0.26044c2.19412,-0.07278 4.22598,-1.3168 5.38205,-3.16849c0.99927,-1.58255 1.9447,-3.21933 2.56085,-4.99146c0.49768,-1.59048 0.5896,-3.80087 -1.06339,-4.75272c-1.43857,-0.79446 -3.10013,-0.93906 -4.73105,-0.93317zm2.53915,15.9726c-0.69449,0.69446 -1.38892,0.69446 -2.0834,1.38892c-0.69446,3.47232 8.33356,11.80588 9.72247,4.16678c-3.47232,-1.38892 -5.55573,-2.77786 -7.63907,-5.55569z",
"raph_gear2": "M17.047,27.945c-0.34,0.032-0.688,0.054-1.046,0.054l0,0c-0.32,0-0.631-0.017-0.934-0.043l0,0l-2.626,3.375l-0.646-0.183c-0.758-0.213-1.494-0.48-2.202-0.8l0,0L8.979,30.07l0.158-4.24c-0.558-0.39-1.079-0.825-1.561-1.302l0,0L3.424,25.42l-0.379-0.557c-0.445-0.654-0.824-1.339-1.16-2.032l0,0l-0.292-0.605l2.819-3.12c-0.176-0.661-0.293-1.343-0.353-2.038l0,0l-3.736-1.975l0.068-0.669c0.08-0.801,0.235-1.567,0.42-2.303l0,0l0.165-0.653l4.167-0.577c0.297-0.627,0.647-1.221,1.041-1.78l0,0l-1.59-3.914l0.48-0.47c0.564-0.55,1.168-1.048,1.798-1.503l0,0l0.546-0.394l3.597,2.259c0.606-0.279,1.24-0.509,1.897-0.685l0,0l1.304-4.046l0.672-0.051c0.362-0.027,0.751-0.058,1.174-0.058l0,0c0.422,0,0.81,0.031,1.172,0.058l0,0l0.672,0.051l1.318,4.088c0.632,0.176,1.244,0.401,1.831,0.674l0,0l3.647-2.291l0.548,0.394c0.63,0.455,1.235,0.954,1.798,1.501l0,0l0.482,0.47l-1.639,4.031c0.357,0.519,0.679,1.068,0.954,1.646l0,0l4.297,0.595l0.167,0.653c0.188,0.735,0.342,1.501,0.42,2.303l0,0l0.068,0.669l-3.866,2.044c-0.058,0.634-0.161,1.258-0.315,1.866l0,0l2.913,3.218l-0.293,0.608c-0.335,0.695-0.712,1.382-1.159,2.034l0,0l-0.379,0.555l-4.255-0.912c-0.451,0.451-0.939,0.866-1.461,1.241l0,0l0.162,4.323l-0.615,0.278c-0.709,0.319-1.444,0.587-2.202,0.8l0,0l-0.648,0.183L17.047,27.945L17.047,27.945zM20.424,29.028c0.227-0.076,0.45-0.157,0.671-0.244l0,0l-0.152-4.083l0.479-0.307c0.717-0.466,1.37-1.024,1.95-1.658l0,0l0.386-0.423l4.026,0.862c0.121-0.202,0.238-0.409,0.351-0.62l0,0l-2.754-3.045l0.171-0.544c0.243-0.783,0.381-1.623,0.422-2.5l0,0l0.025-0.571l3.658-1.933c-0.038-0.234-0.082-0.467-0.132-0.7l0,0l-4.07-0.563l-0.219-0.527c-0.327-0.787-0.76-1.524-1.277-2.204l0,0l-0.342-0.453l1.548-3.808c-0.179-0.157-0.363-0.31-0.552-0.458l0,0l-3.455,2.169L20.649,7.15c-0.754-0.397-1.569-0.698-2.429-0.894l0,0l-0.556-0.127l-1.248-3.87c-0.121-0.006-0.239-0.009-0.354-0.009l0,0c-0.117,0-0.235,0.003-0.357,0.009l0,0l-1.239,3.845l-0.564,0.12c-0.875,0.188-1.709,0.494-2.486,0.896l0,0l-0.508,0.264L7.509,5.249c-0.188,0.148-0.372,0.301-0.55,0.458l0,0l1.507,3.708L8.112,9.869c-0.552,0.709-1.011,1.485-1.355,2.319l0,0l-0.218,0.529l-3.939,0.545c-0.05,0.233-0.094,0.466-0.131,0.7l0,0l3.531,1.867l0.022,0.575c0.037,0.929,0.192,1.82,0.459,2.653l0,0l0.175,0.548l-2.667,2.95c0.112,0.212,0.229,0.419,0.351,0.621l0,0l3.916-0.843l0.39,0.423c0.601,0.657,1.287,1.229,2.043,1.703l0,0l0.488,0.305l-0.149,4.02c0.221,0.087,0.445,0.168,0.672,0.244l0,0l2.479-3.188l0.566,0.07c0.427,0.054,0.843,0.089,1.257,0.089l0,0c0.445,0,0.894-0.039,1.353-0.104l0,0l0.571-0.08L20.424,29.028L20.424,29.028zM21.554,20.75l0.546,0.839l-3.463,2.253l-1.229-1.891l0,0c-0.447,0.109-0.917,0.173-1.406,0.173l0,0c-3.384,0-6.126-2.743-6.126-6.123l0,0c0-3.384,2.742-6.126,6.126-6.126l0,0c3.38,0,6.123,2.742,6.123,6.126l0,0c0,1.389-0.467,2.676-1.25,3.704l0,0L21.554,20.75M19.224,21.073l0.108-0.069l-0.987-1.519l0.572-0.572c0.748-0.75,1.207-1.773,1.207-2.912l0,0c-0.004-2.278-1.848-4.122-4.123-4.126l0,0c-2.28,0.004-4.122,1.846-4.126,4.126l0,0c0.004,2.275,1.848,4.119,4.126,4.123l0,0c0.509,0,0.999-0.104,1.473-0.286l0,0l0.756-0.29L19.224,21.073L19.224,21.073zx",
"raph_gear": "M26.974,16.514l3.765-1.991c-0.074-0.738-0.217-1.454-0.396-2.157l-4.182-0.579c-0.362-0.872-0.84-1.681-1.402-2.423l1.594-3.921c-0.524-0.511-1.09-0.977-1.686-1.406l-3.551,2.229c-0.833-0.438-1.73-0.77-2.672-0.984l-1.283-3.976c-0.364-0.027-0.728-0.056-1.099-0.056s-0.734,0.028-1.099,0.056l-1.271,3.941c-0.967,0.207-1.884,0.543-2.738,0.986L7.458,4.037C6.863,4.466,6.297,4.932,5.773,5.443l1.55,3.812c-0.604,0.775-1.11,1.629-1.49,2.55l-4.05,0.56c-0.178,0.703-0.322,1.418-0.395,2.157l3.635,1.923c0.041,1.013,0.209,1.994,0.506,2.918l-2.742,3.032c0.319,0.661,0.674,1.303,1.085,1.905l4.037-0.867c0.662,0.72,1.416,1.351,2.248,1.873l-0.153,4.131c0.663,0.299,1.352,0.549,2.062,0.749l2.554-3.283C15.073,26.961,15.532,27,16,27c0.507,0,1.003-0.046,1.491-0.113l2.567,3.301c0.711-0.2,1.399-0.45,2.062-0.749l-0.156-4.205c0.793-0.513,1.512-1.127,2.146-1.821l4.142,0.889c0.411-0.602,0.766-1.243,1.085-1.905l-2.831-3.131C26.778,18.391,26.93,17.467,26.974,16.514zM20.717,21.297l-1.785,1.162l-1.098-1.687c-0.571,0.22-1.186,0.353-1.834,0.353c-2.831,0-5.125-2.295-5.125-5.125c0-2.831,2.294-5.125,5.125-5.125c2.83,0,5.125,2.294,5.125,5.125c0,1.414-0.573,2.693-1.499,3.621L20.717,21.297zx",
"raph_wrench": "M26.834,14.693c1.816-2.088,2.181-4.938,1.193-7.334l-3.646,4.252l-3.594-0.699L19.596,7.45l3.637-4.242c-2.502-0.63-5.258,0.13-7.066,2.21c-1.907,2.193-2.219,5.229-1.039,7.693L5.624,24.04c-1.011,1.162-0.888,2.924,0.274,3.935c1.162,1.01,2.924,0.888,3.935-0.274l9.493-10.918C21.939,17.625,24.918,16.896,26.834,14.693zx",
"raph_lock": "M22.335,12.833V9.999h-0.001C22.333,6.501,19.498,3.666,16,3.666S9.666,6.502,9.666,10h0v2.833H7.375V25h17.25V12.833H22.335zM11.667,10C11.667,10,11.667,10,11.667,10c0-2.39,1.944-4.334,4.333-4.334c2.391,0,4.335,1.944,4.335,4.333c0,0,0,0,0,0v2.834h-8.668V10zx",
"raph_clip": "M23.898,6.135c-1.571-1.125-3.758-0.764-4.884,0.808l-8.832,12.331c-0.804,1.122-0.546,2.684,0.577,3.488c1.123,0.803,2.684,0.545,3.488-0.578l6.236-8.706l-0.813-0.583l-6.235,8.707h0c-0.483,0.672-1.42,0.828-2.092,0.347c-0.673-0.481-0.827-1.419-0.345-2.093h0l8.831-12.33l0.001-0.001l-0.002-0.001c0.803-1.119,2.369-1.378,3.489-0.576c1.12,0.803,1.379,2.369,0.577,3.489v-0.001l-9.68,13.516l0.001,0.001c-1.124,1.569-3.316,1.931-4.885,0.808c-1.569-1.125-1.93-3.315-0.807-4.885l7.035-9.822l-0.813-0.582l-7.035,9.822c-1.447,2.02-0.982,4.83,1.039,6.277c2.021,1.448,4.831,0.982,6.278-1.037l9.68-13.516C25.83,9.447,25.47,7.261,23.898,6.135zx",
"raph_hammer": "M7.831,29.354c0.685,0.353,1.62,1.178,2.344,0.876c0.475-0.195,0.753-1.301,1.048-1.883c2.221-4.376,4.635-9.353,6.392-13.611c0-0.19,0.101-0.337-0.049-0.595c0.983-1.6,1.65-3.358,2.724-5.138c0.34-0.566,0.686-1.351,1.163-1.577l0.881-0.368c1.12-0.288,1.938-0.278,2.719,0.473c0.396,0.383,0.578,1.015,0.961,1.395c0.259,0.26,1.246,0.899,1.613,0.8c0.285-0.077,0.52-0.364,0.72-0.728l0.696-1.286c0.195-0.366,0.306-0.718,0.215-0.999c-0.117-0.362-1.192-0.84-1.552-0.915c-0.528-0.113-1.154,0.081-1.692-0.041c-1.057-0.243-1.513-0.922-1.883-2.02c-2.608-1.533-6.119-2.53-10.207-1.244c-1.109,0.349-2.172,0.614-2.901,1.323c-0.146,0.412,0.143,0.494,0.446,0.489c-0.237,0.216-0.62,0.341-0.399,0.848c2.495-1.146,7.34-1.542,7.669,0.804c0.072,0.522-0.395,1.241-0.682,1.835c-0.905,1.874-2.011,3.394-2.813,5.091c-0.298,0.017-0.366,0.18-0.525,0.287c-2.604,3.8-5.451,8.541-7.9,12.794c-0.326,0.566-1.098,1.402-1.002,1.906C5.961,28.641,7.146,29,7.831,29.354zx"
}
}

View File

@ -1,12 +0,0 @@
All Raphaël icons were retrieved from here:
http://raphaeljs.com/icons/
And fall under the MIT license:
Copyright © 2008 Dmitry Baranovskiy
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
The software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.

View File

@ -1,7 +0,0 @@
{"size": 32,
"fill": true,
"data": {
"raph_quote": "M14.505,5.873c-3.937,2.52-5.904,5.556-5.904,9.108c0,1.104,0.192,1.656,0.576,1.656l0.396-0.107c0.312-0.12,0.563-0.18,0.756-0.18c1.128,0,2.07,0.411,2.826,1.229c0.756,0.82,1.134,1.832,1.134,3.037c0,1.157-0.408,2.14-1.224,2.947c-0.816,0.807-1.801,1.211-2.952,1.211c-1.608,0-2.935-0.661-3.979-1.984c-1.044-1.321-1.565-2.98-1.565-4.977c0-2.259,0.443-4.327,1.332-6.203c0.888-1.875,2.243-3.57,4.067-5.085c1.824-1.514,2.988-2.272,3.492-2.272c0.336,0,0.612,0.162,0.828,0.486c0.216,0.324,0.324,0.606,0.324,0.846L14.505,5.873zM27.465,5.873c-3.937,2.52-5.904,5.556-5.904,9.108c0,1.104,0.192,1.656,0.576,1.656l0.396-0.107c0.312-0.12,0.563-0.18,0.756-0.18c1.104,0,2.04,0.411,2.808,1.229c0.769,0.82,1.152,1.832,1.152,3.037c0,1.157-0.408,2.14-1.224,2.947c-0.816,0.807-1.801,1.211-2.952,1.211c-1.608,0-2.935-0.661-3.979-1.984c-1.044-1.321-1.565-2.98-1.565-4.977c0-2.284,0.449-4.369,1.35-6.256c0.9-1.887,2.256-3.577,4.068-5.067c1.812-1.49,2.97-2.236,3.474-2.236c0.336,0,0.612,0.162,0.828,0.486c0.216,0.324,0.324,0.606,0.324,0.846L27.465,5.873z",
}
}

View File

@ -1,9 +0,0 @@
{"size": 32,
"fill": true,
"data": {
"raph_notebook": "M24.875,1.375H8c-1.033,0-1.874,0.787-1.979,1.792h1.604c1.102,0,2,0.898,2,2c0,1.102-0.898,2-2,2H6v0.999h1.625c1.104,0,2.002,0.898,2.002,2.002c0,1.104-0.898,2.001-2.002,2.001H6v0.997h1.625c1.102,0,2,0.898,2,2c0,1.104-0.898,2.004-2,2.004H6v0.994h1.625c1.102,0,2,0.898,2,2.002s-0.898,2.002-2,2.002H6v0.997h1.624c1.104,0,2.002,0.897,2.002,2.001c0,1.104-0.898,2.002-2.002,2.002H6.004C6.027,28.252,6.91,29.125,8,29.125h16.875c1.104,0,2-0.896,2-2V3.375C26.875,2.271,25.979,1.375,24.875,1.375zM25.25,8.375c0,0.552-0.447,1-1,1H14c-0.553,0-1-0.448-1-1V4c0-0.552,0.447-1,1-1h10.25c0.553,0,1,0.448,1,1V8.375zM8.625,25.166c0-0.554-0.449-1.001-1-1.001h-3.25c-0.552,0-1,0.447-1,1.001c0,0.552,0.449,1,1,1h3.25C8.176,26.166,8.625,25.718,8.625,25.166zM4.375,6.166h3.251c0.551,0,0.999-0.448,0.999-0.999c0-0.555-0.448-1-0.999-1H4.375c-0.553,0-1,0.445-1,1C3.374,5.718,3.822,6.166,4.375,6.166zM4.375,11.167h3.25c0.553,0,1-0.448,1-1s-0.448-1-1-1h-3.25c-0.553,0-1,0.448-1,1S3.822,11.167,4.375,11.167zM4.375,16.167h3.25c0.551,0,1-0.448,1-1.001s-0.448-0.999-1-0.999h-3.25c-0.553,0-1.001,0.446-1.001,0.999S3.822,16.167,4.375,16.167zM3.375,20.165c0,0.553,0.446,1.002,1,1.002h3.25c0.551,0,1-0.449,1-1.002c0-0.552-0.448-1-1-1h-3.25C3.821,19.165,3.375,19.613,3.375,20.165z",
"raph_diagram": "M6.812,17.202l7.396-3.665v-2.164h-0.834c-0.414,0-0.808-0.084-1.167-0.237v1.159l-7.396,3.667v2.912h2V17.202zM26.561,18.875v-2.913l-7.396-3.666v-1.158c-0.358,0.152-0.753,0.236-1.166,0.236h-0.832l-0.001,2.164l7.396,3.666v1.672H26.561zM16.688,18.875v-7.501h-2v7.501H16.688zM27.875,19.875H23.25c-1.104,0-2,0.896-2,2V26.5c0,1.104,0.896,2,2,2h4.625c1.104,0,2-0.896,2-2v-4.625C29.875,20.771,28.979,19.875,27.875,19.875zM8.125,19.875H3.5c-1.104,0-2,0.896-2,2V26.5c0,1.104,0.896,2,2,2h4.625c1.104,0,2-0.896,2-2v-4.625C10.125,20.771,9.229,19.875,8.125,19.875zM13.375,10.375H18c1.104,0,2-0.896,2-2V3.75c0-1.104-0.896-2-2-2h-4.625c-1.104,0-2,0.896-2,2v4.625C11.375,9.479,12.271,10.375,13.375,10.375zM18,19.875h-4.625c-1.104,0-2,0.896-2,2V26.5c0,1.104,0.896,2,2,2H18c1.104,0,2-0.896,2-2v-4.625C20,20.771,19.104,19.875,18,19.875z",
"raph_barchart": "M21.25,8.375V28h6.5V8.375H21.25zM12.25,28h6.5V4.125h-6.5V28zM3.25,28h6.5V12.625h-6.5V28z"
}
}

View File

@ -1,19 +0,0 @@
{"size": 32,
"fill": true,
"data": {
"raph_twitter": "M23.295,22.567h-7.213c-2.125,0-4.103-2.215-4.103-4.736v-1.829h11.232c1.817,0,3.291-1.469,3.291-3.281c0-1.813-1.474-3.282-3.291-3.282H11.979V6.198c0-1.835-1.375-3.323-3.192-3.323c-1.816,0-3.29,1.488-3.29,3.323v11.633c0,6.23,4.685,11.274,10.476,11.274h7.211c1.818,0,3.318-1.463,3.318-3.298S25.112,22.567,23.295,22.567z",
"raph_firefox": "M28.4,22.469c0.479-0.964,0.851-1.991,1.095-3.066c0.953-3.661,0.666-6.854,0.666-6.854l-0.327,2.104c0,0-0.469-3.896-1.044-5.353c-0.881-2.231-1.273-2.214-1.274-2.21c0.542,1.379,0.494,2.169,0.483,2.288c-0.01-0.016-0.019-0.032-0.027-0.047c-0.131-0.324-0.797-1.819-2.225-2.878c-2.502-2.481-5.943-4.014-9.745-4.015c-4.056,0-7.705,1.745-10.238,4.525C5.444,6.5,5.183,5.938,5.159,5.317c0,0-0.002,0.002-0.006,0.005c0-0.011-0.003-0.021-0.003-0.031c0,0-1.61,1.247-1.436,4.612c-0.299,0.574-0.56,1.172-0.777,1.791c-0.375,0.817-0.75,2.004-1.059,3.746c0,0,0.133-0.422,0.399-0.988c-0.064,0.482-0.103,0.971-0.116,1.467c-0.09,0.845-0.118,1.865-0.039,3.088c0,0,0.032-0.406,0.136-1.021c0.834,6.854,6.667,12.165,13.743,12.165l0,0c1.86,0,3.636-0.37,5.256-1.036C24.938,27.771,27.116,25.196,28.4,22.469zM16.002,3.356c2.446,0,4.73,0.68,6.68,1.86c-2.274-0.528-3.433-0.261-3.423-0.248c0.013,0.015,3.384,0.589,3.981,1.411c0,0-1.431,0-2.856,0.41c-0.065,0.019,5.242,0.663,6.327,5.966c0,0-0.582-1.213-1.301-1.42c0.473,1.439,0.351,4.17-0.1,5.528c-0.058,0.174-0.118-0.755-1.004-1.155c0.284,2.037-0.018,5.268-1.432,6.158c-0.109,0.07,0.887-3.189,0.201-1.93c-4.093,6.276-8.959,2.539-10.934,1.208c1.585,0.388,3.267,0.108,4.242-0.559c0.982-0.672,1.564-1.162,2.087-1.047c0.522,0.117,0.87-0.407,0.464-0.872c-0.405-0.466-1.392-1.105-2.725-0.757c-0.94,0.247-2.107,1.287-3.886,0.233c-1.518-0.899-1.507-1.63-1.507-2.095c0-0.366,0.257-0.88,0.734-1.028c0.58,0.062,1.044,0.214,1.537,0.466c0.005-0.135,0.006-0.315-0.001-0.519c0.039-0.077,0.015-0.311-0.047-0.596c-0.036-0.287-0.097-0.582-0.19-0.851c0.01-0.002,0.017-0.007,0.021-0.021c0.076-0.344,2.147-1.544,2.299-1.659c0.153-0.114,0.55-0.378,0.506-1.183c-0.015-0.265-0.058-0.294-2.232-0.286c-0.917,0.003-1.425-0.894-1.589-1.245c0.222-1.231,0.863-2.11,1.919-2.704c0.02-0.011,0.015-0.021-0.008-0.027c0.219-0.127-2.524-0.006-3.76,1.604C9.674,8.045,9.219,7.95,8.71,7.95c-0.638,0-1.139,0.07-1.603,0.187c-0.05,0.013-0.122,0.011-0.208-0.001C6.769,8.04,6.575,7.88,6.365,7.672c0.161-0.18,0.324-0.356,0.495-0.526C9.201,4.804,12.43,3.357,16.002,3.356z",
"raph_ie": "M27.998,2.266c-2.12-1.91-6.925,0.382-9.575,1.93c-0.76-0.12-1.557-0.185-2.388-0.185c-3.349,0-6.052,0.985-8.106,2.843c-2.336,2.139-3.631,4.94-3.631,8.177c0,0.028,0.001,0.056,0.001,0.084c3.287-5.15,8.342-7.79,9.682-8.487c0.212-0.099,0.338,0.155,0.141,0.253c-0.015,0.042-0.015,0,0,0c-2.254,1.35-6.434,5.259-9.146,10.886l-0.003-0.007c-1.717,3.547-3.167,8.529-0.267,10.358c2.197,1.382,6.13-0.248,9.295-2.318c0.764,0.108,1.567,0.165,2.415,0.165c5.84,0,9.937-3.223,11.399-7.924l-8.022-0.014c-0.337,1.661-1.464,2.548-3.223,2.548c-2.21,0-3.729-1.211-3.828-4.012l15.228-0.014c0.028-0.578-0.042-0.985-0.042-1.436c0-5.251-3.143-9.355-8.255-10.663c2.081-1.294,5.974-3.209,7.848-1.681c1.407,1.14,0.633,3.533,0.295,4.518c-0.056,0.254,0.24,0.296,0.296,0.057C28.814,5.573,29.026,3.194,27.998,2.266zM13.272,25.676c-2.469,1.475-5.873,2.539-7.539,1.289c-1.243-0.935-0.696-3.468,0.398-5.938c0.664,0.992,1.495,1.886,2.473,2.63C9.926,24.651,11.479,25.324,13.272,25.676zM12.714,13.046c0.042-2.435,1.787-3.49,3.617-3.49c1.928,0,3.49,1.112,3.49,3.49H12.714z",
"raph_opera": "M15.954,2.046c-7.489,0-12.872,5.432-12.872,13.581c0,7.25,5.234,13.835,12.873,13.835c7.712,0,12.974-6.583,12.974-13.835C28.929,7.413,23.375,2.046,15.954,2.046zM15.952,26.548L15.952,26.548c-2.289,0-3.49-1.611-4.121-3.796c-0.284-1.037-0.458-2.185-0.563-3.341c-0.114-1.374-0.129-2.773-0.129-4.028c0-0.993,0.018-1.979,0.074-2.926c0.124-1.728,0.386-3.431,0.89-4.833c0.694-1.718,1.871-2.822,3.849-2.822c2.5,0,3.763,1.782,4.385,4.322c0.429,1.894,0.56,4.124,0.56,6.274c0,2.299-0.103,5.153-0.763,7.442C19.473,24.979,18.242,26.548,15.952,26.548z",
"raph_chrome": "M16.277,8.655c-2.879,0-5.227,2.181-5.227,4.854s2.348,4.854,5.227,4.854c2.879,0,5.227-2.181,5.227-4.854S19.156,8.655,16.277,8.655zM29.535,13.486c-0.369-1.819-1.068-3.052-1.727-3.995c0.05,0.129,0.09,0.259,0.138,0.388c-2.34-6.355-11.704-9.8-18.937-5.43c-0.056,0.27-0.073,0.538-0.073,0.804c0-0.051-0.006-0.098-0.004-0.15c-1.743-0.134-3.854,2.061-5.731,6.083c-0.953,2.277-1.298,4.77-0.414,7.693c0.516,1.706,1.328,3.456,2.499,4.814c3.471,4.027,8.788,5.67,11.884,4.835c0.004,0.001,0.009,0.003,0.014,0.004c5.969-0.125,10.494-4.228,12.125-9.569C29.896,17.035,29.934,15.457,29.535,13.486zM6.043,23.04c-0.96-1.112-1.755-2.651-2.299-4.452c-0.733-2.42-0.612-4.65,0.379-7.015C5.129,9.42,6.111,8.005,6.956,7.154c0.15,0.742,0.521,1.628,1.113,2.649c0.218,0.379,0.459,0.701,0.692,1.012c0.179,0.237,0.356,0.474,0.513,0.729c0.124,0.202,0.239,0.445,0.354,0.737c-0.239,2.754,0.892,5.138,3.148,6.679l-2.546,2.25l-0.202,0.171c-0.208,0.171-0.447,0.373-0.651,0.589c-1.36,1.444-0.25,2.831,0.286,3.498l0.068,0.087c0.237,0.297,0.513,0.62,0.815,0.938C8.963,25.725,7.375,24.585,6.043,23.04zM28.354,18.67c-1.6,5.232-5.937,8.7-11.07,8.859c-2.485-0.583-4.362-1.78-5.586-3.557c0.004-0.004,0.01-0.008,0.015-0.013l4.944-3.836c2.226-0.124,3.854-0.888,4.847-2.278c1.222-1.412,1.792-3.025,1.693-4.861c1.817,0.377,3.389,0.903,4.855,1.883l0.116,0.078l0.134,0.043c0.156,0.049,0.311,0.076,0.459,0.081C28.87,16.309,28.74,17.402,28.354,18.67zM28.609,14.037c-1.951-1.306-4.062-1.867-6.594-2.285c0.531,2.358-0.084,4.072-1.326,5.512c-0.882,1.235-2.382,1.822-4.394,1.875l-5.22,4.052c-0.497,0.409-0.591,0.819-0.282,1.229c0.849,1.277,1.929,2.202,3.122,2.878c-0.013,0-0.026,0.002-0.039,0.003c-0.001-0.001-0.004-0.002-0.006-0.004c-0.02,0.003-0.041,0.004-0.062,0.005c-0.08,0.001-0.16-0.001-0.239-0.01c-0.156-0.021-0.314-0.064-0.459-0.118c-0.898-0.333-1.89-1.352-2.597-2.239c-0.581-0.73-1.206-1.433-0.411-2.275c0.258-0.273,0.582-0.514,0.789-0.698l2.521-2.229c0.172-0.137,0.35-0.277,0.535-0.423c0.053-0.042,0.107-0.084,0.162-0.127c0.564-0.442,0.483-0.32-0.108-0.642c-2.419-1.32-3.677-3.614-3.354-6.389c-0.149-0.41-0.317-0.792-0.518-1.124c-0.363-0.6-0.834-1.102-1.194-1.723c-0.9-1.556-1.847-3.902,0.013-3.682c-0.005-0.053-0.002-0.11-0.005-0.164c0.094,2.001,1.526,3.823,1.742,4.888c0.078,0.382,0.294,0.705,0.612,0.28c2.538-3.395,6.069-3.053,8.328-1.312c0.443,0.34,0.684,0.755,1.084,1.11c0.154,0.138,0.328,0.259,0.535,0.351c0.743,0.332,1.807,0.312,2.607,0.434c1.371,0.208,2.707,0.464,3.971,0.812c0.25,0.03,0.424-0.004,0.521-0.101c0.211-0.208-0.002-0.887-0.121-1.263c0.277,0.805,0.536,1.609,0.773,2.415C29.176,13.701,29.133,14.208,28.609,14.037z",
"raph_safari": "M16.154,5.135c-0.504,0-1,0.031-1.488,0.089l-0.036-0.18c-0.021-0.104-0.06-0.198-0.112-0.283c0.381-0.308,0.625-0.778,0.625-1.306c0-0.927-0.751-1.678-1.678-1.678s-1.678,0.751-1.678,1.678c0,0.745,0.485,1.376,1.157,1.595c-0.021,0.105-0.021,0.216,0,0.328l0.033,0.167C7.645,6.95,3.712,11.804,3.712,17.578c0,6.871,5.571,12.441,12.442,12.441c6.871,0,12.441-5.57,12.441-12.441C28.596,10.706,23.025,5.135,16.154,5.135zM16.369,8.1c4.455,0,8.183,3.116,9.123,7.287l-0.576,0.234c-0.148-0.681-0.755-1.191-1.48-1.191c-0.837,0-1.516,0.679-1.516,1.516c0,0.075,0.008,0.148,0.018,0.221l-2.771-0.028c-0.054-0.115-0.114-0.226-0.182-0.333l3.399-5.11l0.055-0.083l-4.766,4.059c-0.352-0.157-0.74-0.248-1.148-0.256l0.086-0.018l-1.177-2.585c0.64-0.177,1.111-0.763,1.111-1.459c0-0.837-0.678-1.515-1.516-1.515c-0.075,0-0.147,0.007-0.219,0.018l0.058-0.634C15.357,8.141,15.858,8.1,16.369,8.1zM12.146,3.455c0-0.727,0.591-1.318,1.318-1.318c0.727,0,1.318,0.591,1.318,1.318c0,0.425-0.203,0.802-0.516,1.043c-0.183-0.123-0.413-0.176-0.647-0.13c-0.226,0.045-0.413,0.174-0.535,0.349C12.542,4.553,12.146,4.049,12.146,3.455zM7.017,17.452c0-4.443,3.098-8.163,7.252-9.116l0.297,0.573c-0.61,0.196-1.051,0.768-1.051,1.442c0,0.837,0.678,1.516,1.515,1.516c0.068,0,0.135-0.006,0.2-0.015l-0.058,2.845l0.052-0.011c-0.442,0.204-0.824,0.513-1.116,0.895l0.093-0.147l-1.574-0.603l1.172,1.239l0.026-0.042c-0.19,0.371-0.306,0.788-0.324,1.229l-0.003-0.016l-2.623,1.209c-0.199-0.604-0.767-1.041-1.438-1.041c-0.837,0-1.516,0.678-1.516,1.516c0,0.064,0.005,0.128,0.013,0.191l-0.783-0.076C7.063,18.524,7.017,17.994,7.017,17.452zM16.369,26.805c-4.429,0-8.138-3.078-9.106-7.211l0.691-0.353c0.146,0.686,0.753,1.2,1.482,1.2c0.837,0,1.515-0.679,1.515-1.516c0-0.105-0.011-0.207-0.031-0.307l2.858,0.03c0.045,0.095,0.096,0.187,0.15,0.276l-3.45,5.277l0.227-0.195l4.529-3.92c0.336,0.153,0.705,0.248,1.094,0.266l-0.019,0.004l1.226,2.627c-0.655,0.166-1.142,0.76-1.142,1.468c0,0.837,0.678,1.515,1.516,1.515c0.076,0,0.151-0.007,0.225-0.018l0.004,0.688C17.566,26.746,16.975,26.805,16.369,26.805zM18.662,26.521l-0.389-0.6c0.661-0.164,1.152-0.759,1.152-1.47c0-0.837-0.68-1.516-1.516-1.516c-0.066,0-0.13,0.005-0.193,0.014v-2.86l-0.025,0.004c0.409-0.185,0.77-0.459,1.055-0.798l1.516,0.659l-1.104-1.304c0.158-0.335,0.256-0.704,0.278-1.095l2.552-1.164c0.19,0.618,0.766,1.068,1.447,1.068c0.838,0,1.516-0.679,1.516-1.516c0-0.069-0.006-0.137-0.016-0.204l0.65,0.12c0.089,0.517,0.136,1.049,0.136,1.591C25.722,21.826,22.719,25.499,18.662,26.521z",
"raph_linkedin": "M27.25,3.125h-22c-1.104,0-2,0.896-2,2v22c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-22C29.25,4.021,28.354,3.125,27.25,3.125zM11.219,26.781h-4v-14h4V26.781zM9.219,11.281c-1.383,0-2.5-1.119-2.5-2.5s1.117-2.5,2.5-2.5s2.5,1.119,2.5,2.5S10.602,11.281,9.219,11.281zM25.219,26.781h-4v-8.5c0-0.4-0.403-1.055-0.687-1.213c-0.375-0.211-1.261-0.229-1.665-0.034l-1.648,0.793v8.954h-4v-14h4v0.614c1.583-0.723,3.78-0.652,5.27,0.184c1.582,0.886,2.73,2.864,2.73,4.702V26.781z",
"raph_github": "M28.436,15.099c-1.201-0.202-2.451-0.335-3.466-0.371l-0.179-0.006c0.041-0.09,0.072-0.151,0.082-0.16c0.022-0.018,0.04-0.094,0.042-0.168c0-0.041,0.018-0.174,0.046-0.35c0.275,0.01,0.64,0.018,1.038,0.021c1.537,0.012,3.145,0.136,4.248,0.331c0.657,0.116,0.874,0.112,0.389-0.006c-0.491-0.119-1.947-0.294-3.107-0.37c-0.779-0.053-1.896-0.073-2.554-0.062c0.019-0.114,0.041-0.241,0.064-0.371c0.093-0.503,0.124-1.009,0.126-2.016c0.002-1.562-0.082-1.992-0.591-3.025c-0.207-0.422-0.441-0.78-0.724-1.104c0.247-0.729,0.241-1.858-0.015-2.848c-0.211-0.812-0.285-0.864-1.021-0.708C22.19,4.019,21.69,4.2,21.049,4.523c-0.303,0.153-0.721,0.391-1.024,0.578c-0.79-0.278-1.607-0.462-2.479-0.561c-0.884-0.1-3.051-0.044-3.82,0.098c-0.752,0.139-1.429,0.309-2.042,0.511c-0.306-0.189-0.75-0.444-1.067-0.604C9.973,4.221,9.473,4.041,8.847,3.908c-0.734-0.157-0.81-0.104-1.02,0.708c-0.26,1.003-0.262,2.151-0.005,2.878C7.852,7.577,7.87,7.636,7.877,7.682c-1.042,1.312-1.382,2.78-1.156,4.829c0.059,0.534,0.15,1.024,0.277,1.473c-0.665-0.004-1.611,0.02-2.294,0.064c-1.162,0.077-2.618,0.25-3.109,0.369c-0.484,0.118-0.269,0.122,0.389,0.007c1.103-0.194,2.712-0.32,4.248-0.331c0.29-0.001,0.561-0.007,0.794-0.013c0.07,0.237,0.15,0.463,0.241,0.678L7.26,14.759c-1.015,0.035-2.264,0.168-3.465,0.37c-0.901,0.151-2.231,0.453-2.386,0.54c-0.163,0.091-0.03,0.071,0.668-0.106c1.273-0.322,2.928-0.569,4.978-0.741l0.229-0.02c0.44,1.022,1.118,1.802,2.076,2.41c0.586,0.373,1.525,0.756,1.998,0.816c0.13,0.016,0.508,0.094,0.84,0.172c0.333,0.078,0.984,0.195,1.446,0.262h0.011c-0.009,0.006-0.017,0.01-0.025,0.016c-0.56,0.291-0.924,0.744-1.169,1.457c-0.11,0.033-0.247,0.078-0.395,0.129c-0.529,0.18-0.735,0.217-1.271,0.221c-0.556,0.004-0.688-0.02-1.02-0.176c-0.483-0.225-0.933-0.639-1.233-1.133c-0.501-0.826-1.367-1.41-2.089-1.41c-0.617,0-0.734,0.25-0.288,0.615c0.672,0.549,1.174,1.109,1.38,1.537c0.116,0.24,0.294,0.611,0.397,0.824c0.109,0.227,0.342,0.535,0.564,0.748c0.522,0.498,1.026,0.736,1.778,0.848c0.504,0.074,0.628,0.074,1.223-0.002c0.287-0.035,0.529-0.076,0.746-0.127c0,0.244,0,0.525,0,0.855c0,1.766-0.021,2.334-0.091,2.5c-0.132,0.316-0.428,0.641-0.716,0.787c-0.287,0.146-0.376,0.307-0.255,0.455c0.067,0.08,0.196,0.094,0.629,0.066c0.822-0.051,1.403-0.355,1.699-0.891c0.095-0.172,0.117-0.518,0.147-2.318c0.032-1.953,0.046-2.141,0.173-2.42c0.077-0.166,0.188-0.346,0.25-0.395c0.104-0.086,0.111,0.084,0.111,2.42c-0.001,2.578-0.027,2.889-0.285,3.385c-0.058,0.113-0.168,0.26-0.245,0.33c-0.135,0.123-0.192,0.438-0.098,0.533c0.155,0.154,0.932-0.088,1.356-0.422c0.722-0.572,0.808-1.045,0.814-4.461l0.003-2.004l0.219,0.021l0.219,0.02l0.036,2.621c0.041,2.951,0.047,2.994,0.549,3.564c0.285,0.322,0.572,0.5,1.039,0.639c0.625,0.188,0.813-0.102,0.393-0.605c-0.457-0.547-0.479-0.756-0.454-3.994c0.017-2.076,0.017-2.076,0.151-1.955c0.282,0.256,0.336,0.676,0.336,2.623c0,2.418,0.069,2.648,0.923,3.07c0.399,0.195,0.511,0.219,1.022,0.221c0.544,0.002,0.577-0.006,0.597-0.148c0.017-0.115-0.05-0.193-0.304-0.348c-0.333-0.205-0.564-0.467-0.709-0.797c-0.055-0.127-0.092-0.959-0.117-2.672c-0.036-2.393-0.044-2.502-0.193-2.877c-0.201-0.504-0.508-0.902-0.897-1.166c-0.101-0.066-0.202-0.121-0.333-0.162c0.161-0.016,0.317-0.033,0.468-0.055c1.572-0.209,2.403-0.383,3.07-0.641c1.411-0.543,2.365-1.445,2.882-2.724c0.046-0.114,0.092-0.222,0.131-0.309l0.398,0.033c2.051,0.173,3.706,0.42,4.979,0.743c0.698,0.177,0.831,0.198,0.668,0.105C30.666,15.551,29.336,15.25,28.436,15.099zM22.422,15.068c-0.233,0.512-0.883,1.17-1.408,1.428c-0.518,0.256-1.33,0.451-2.25,0.544c-0.629,0.064-4.137,0.083-4.716,0.026c-1.917-0.188-2.991-0.557-3.783-1.296c-0.75-0.702-1.1-1.655-1.039-2.828c0.039-0.734,0.216-1.195,0.679-1.755c0.421-0.51,0.864-0.825,1.386-0.985c0.437-0.134,1.778-0.146,3.581-0.03c0.797,0.051,1.456,0.051,2.252,0c1.886-0.119,3.145-0.106,3.61,0.038c0.731,0.226,1.397,0.834,1.797,1.644c0.18,0.362,0.215,0.516,0.241,1.075C22.808,13.699,22.675,14.517,22.422,15.068zM12.912,11.762c-1.073-0.188-1.686,1.649-0.863,2.587c0.391,0.445,0.738,0.518,1.172,0.248c0.402-0.251,0.62-0.72,0.62-1.328C13.841,12.458,13.472,11.862,12.912,11.762zM19.425,11.872c-1.073-0.188-1.687,1.647-0.864,2.586c0.392,0.445,0.738,0.519,1.173,0.247c0.401-0.25,0.62-0.72,0.62-1.328C20.354,12.569,19.985,11.971,19.425,11.872zM16.539,15.484c-0.023,0.074-0.135,0.184-0.248,0.243c-0.286,0.147-0.492,0.096-0.794-0.179c-0.187-0.169-0.272-0.258-0.329-0.081c-0.053,0.164,0.28,0.493,0.537,0.594c0.236,0.094,0.405,0.097,0.661-0.01c0.254-0.106,0.476-0.391,0.476-0.576C16.842,15.303,16.595,15.311,16.539,15.484zM16.222,14.909c0.163-0.144,0.2-0.44,0.044-0.597s-0.473-0.133-0.597,0.043c-0.144,0.206-0.067,0.363,0.036,0.53C15.865,15.009,16.08,15.034,16.222,14.909z",
"raph_flickr": "M21.77,8.895c-2.379,0-4.479,1.174-5.77,2.969c-1.289-1.795-3.39-2.969-5.77-2.969c-3.924,0-7.105,3.181-7.105,7.105c0,3.924,3.181,7.105,7.105,7.105c2.379,0,4.48-1.175,5.77-2.97c1.29,1.795,3.391,2.97,5.77,2.97c3.925,0,7.105-3.182,7.105-7.105C28.875,12.075,25.694,8.895,21.77,8.895zM21.769,21.822c-3.211,0-5.821-2.61-5.821-5.821c0-3.213,2.61-5.824,5.821-5.824c3.213,0,5.824,2.611,5.824,5.824C27.593,19.212,24.981,21.822,21.769,21.822z",
"raph_slideshare": "M28.952,12.795c-0.956,1.062-5.073,2.409-5.604,2.409h-4.513c-0.749,0-1.877,0.147-2.408,0.484c0.061,0.054,0.122,0.108,0.181,0.163c0.408,0.379,1.362,0.913,2.206,0.913c0.397,0,0.723-0.115,1-0.354c1.178-1.007,1.79-1.125,2.145-1.125c0.421,0,0.783,0.193,0.996,0.531c0.4,0.626,0.106,1.445-0.194,2.087c-0.718,1.524-3.058,3.171-5.595,3.171c-0.002,0-0.002,0-0.004,0c-0.354,0-0.701-0.033-1.033-0.099v3.251c0,0.742,1.033,2.533,4.167,2.533s3.955-3.701,3.955-4.338v-4.512c2.23-1.169,4.512-1.805,5.604-3.895C30.882,12.05,29.907,11.733,28.952,12.795zM21.942,17.521c0.796-1.699-0.053-1.699-1.54-0.425s-3.665,0.105-4.408-0.585c-0.743-0.689-1.486-1.22-2.814-1.167c-1.328,0.053-4.46-0.161-6.267-0.585c-1.805-0.425-4.895-3-5.15-2.335c-0.266,0.69,0.211,1.168,1.168,2.335c0.955,1.169,5.075,2.778,5.075,2.778s0,3.453,0,4.886c0,1.435,2.973,3.61,4.512,3.61s2.708-1.062,2.708-1.806v-4.512C17.775,21.045,21.146,19.221,21.942,17.521zM20.342,13.73c1.744,0,3.159-1.414,3.159-3.158c0-1.745-1.415-3.159-3.159-3.159s-3.158,1.414-3.158,3.159C17.184,12.316,18.598,13.73,20.342,13.73zM12.019,13.73c1.744,0,3.158-1.414,3.158-3.158c0-1.745-1.414-3.159-3.158-3.159c-1.745,0-3.159,1.414-3.159,3.159C8.86,12.316,10.273,13.73,12.019,13.73z",
"logo_apple": "m209.28954,1.00088c-43.04727,7.92585 -57.33284,43.96882 -57.8894,64.561c23.68694,1.71168 38.47275,-11.65597 44.5219,-19.4791c9.85237,-11.09263 12.25443,-26.71591 13.36751,-45.0819zm5.28372,71.19604c-31.11621,-0.01418 -48.48506,12.70539 -57.04939,12.84402c-9.82712,-0.76584 -38.46593,-12.28108 -55.16231,-12.46661c-58.47802,1.74345 -75.23289,65.28636 -74.50751,92.61087c4.76329,104.60263 68.59296,131.60016 79.02421,134.12564c8.36713,1.64984 36.57712,-12.89731 57.32939,-12.23529c22.65837,2.3606 38.49214,11.76068 47.58983,11.10309c11.51012,-0.79871 49.05655,-31.14218 60.37299,-77.89201c-22.81836,-19.29358 -36.89403,-36.77824 -38.15468,-53.37267c-0.584,-7.50279 10.70016,-49.91425 28.69514,-61.83392c2.59723,-14.65567 -24.13031,-33.25182 -45.08191,-32.83442c-1.03252,-0.02777 -2.05203,-0.0482 -3.05577,-0.04871z",
"raph_feed": "M4.135,16.762c3.078,0,5.972,1.205,8.146,3.391c2.179,2.187,3.377,5.101,3.377,8.202h4.745c0-9.008-7.299-16.335-16.269-16.335V16.762zM4.141,8.354c10.973,0,19.898,8.975,19.898,20.006h4.743c0-13.646-11.054-24.749-24.642-24.749V8.354zM10.701,25.045c0,1.815-1.471,3.287-3.285,3.287s-3.285-1.472-3.285-3.287c0-1.813,1.471-3.285,3.285-3.285S10.701,23.231,10.701,25.045z"
}
}

View File

@ -1,40 +0,0 @@
{"data": {
"raph_?": "M16,1.466C7.973,1.466,1.466,7.973,1.466,16c0,8.027,6.507,14.534,14.534,14.534c8.027,0,14.534-6.507,14.534-14.534C30.534,7.973,24.027,1.466,16,1.466z M17.328,24.371h-2.707v-2.596h2.707V24.371zM17.328,19.003v0.858h-2.707v-1.057c0-3.19,3.63-3.696,3.63-5.963c0-1.034-0.924-1.826-2.134-1.826c-1.254,0-2.354,0.924-2.354,0.924l-1.541-1.915c0,0,1.519-1.584,4.137-1.584c2.487,0,4.796,1.54,4.796,4.136C21.156,16.208,17.328,16.627,17.328,19.003zx",
"raph_i": "M16,1.466C7.973,1.466,1.466,7.973,1.466,16c0,8.027,6.507,14.534,14.534,14.534c8.027,0,14.534-6.507,14.534-14.534C30.534,7.973,24.027,1.466,16,1.466z M14.757,8h2.42v2.574h-2.42V8z M18.762,23.622H16.1c-1.034,0-1.475-0.44-1.475-1.496v-6.865c0-0.33-0.176-0.484-0.484-0.484h-0.88V12.4h2.662c1.035,0,1.474,0.462,1.474,1.496v6.887c0,0.309,0.176,0.484,0.484,0.484h0.88V23.622zx",
"raph_$": "M16,1.466C7.973,1.466,1.466,7.973,1.466,16c0,8.027,6.507,14.534,14.534,14.534c8.027,0,14.534-6.507,14.534-14.534C30.534,7.973,24.027,1.466,16,1.466z M17.255,23.88v2.047h-1.958v-2.024c-3.213-0.44-4.621-3.08-4.621-3.08l2.002-1.673c0,0,1.276,2.223,3.586,2.223c1.276,0,2.244-0.683,2.244-1.849c0-2.729-7.349-2.398-7.349-7.459c0-2.2,1.738-3.785,4.137-4.159V5.859h1.958v2.046c1.672,0.22,3.652,1.1,3.652,2.993v1.452h-2.596v-0.704c0-0.726-0.925-1.21-1.959-1.21c-1.32,0-2.288,0.66-2.288,1.584c0,2.794,7.349,2.112,7.349,7.415C21.413,21.614,19.785,23.506,17.255,23.88zx",
"raph_warning": "M29.225,23.567l-3.778-6.542c-1.139-1.972-3.002-5.2-4.141-7.172l-3.778-6.542c-1.14-1.973-3.003-1.973-4.142,0L9.609,9.853c-1.139,1.972-3.003,5.201-4.142,7.172L1.69,23.567c-1.139,1.974-0.207,3.587,2.071,3.587h23.391C29.432,27.154,30.363,25.541,29.225,23.567zM16.536,24.58h-2.241v-2.151h2.241V24.58zM16.428,20.844h-2.023l-0.201-9.204h2.407L16.428,20.844zx",
"airplane": "m150.70285,1c-3.11894,0 -5.89383,1.28033 -8.23512,3.60274c-2.33931,2.3205 -4.27426,5.64559 -5.8844,9.79826c-3.21983,8.30419 -5.20047,19.96969 -6.28387,33.94021c-1.08127,13.94364 -1.26349,30.17972 -0.81427,47.56012c-38.52657,15.80524 -116.66563,48.43882 -122.94262,55.72521c-8.35709,9.701 -5.65693,20.81889 -2.28924,28.1994l128.45827,-26.14551c2.71532,34.07207 6.57611,67.81866 9.94048,94.2617c-12.56244,3.67662 -36.01244,10.93625 -40.85281,15.43805c-6.66802,6.2016 -6.66797,26.22952 -6.66797,26.22952l52.57557,-4.27612c1.23827,8.63303 2.01266,13.67035 2.01266,13.67035l0.07683,0.45456l0.41484,0l0.96791,0l0.41483,0l0.07683,-0.45456c0,0 0.77292,-5.03741 2.01265,-13.67035l52.59094,4.27612c0,0 0.00006,-20.02792 -6.66798,-26.22952c-4.84218,-4.50354 -28.3093,-11.77963 -40.86818,-15.45499c3.35742,-26.36189 7.2114,-59.97935 9.92513,-93.94165l126.95265,25.84239c3.36765,-7.38051 6.08325,-18.4984 -2.27386,-28.1994c-6.19934,-7.19621 -82.45026,-39.10397 -121.45232,-55.11919c0.466,-17.60567 0.29471,-34.06301 -0.79893,-48.16614l0,-0.03367c-1.08395,-13.95511 -3.0667,-25.60925 -6.28384,-33.90654c-1.60968,-4.15152 -3.52888,-7.47695 -5.86903,-9.79826c-2.34131,-2.32241 -5.11617,-3.60274 -8.23509,-3.60274z",
"arrows_recycle": "m184.80963,97.86072l-33.85641,-5.99613l12.47342,-6.51318c6.86035,-3.58231 13.08063,-7.05022 13.8228,-7.70647c1.84358,-1.63009 -21.11545,-37.10833 -23.99486,-37.07896c-1.26575,0.01435 -10.08571,13.75221 -19.59988,30.53185c-9.58302,16.90081 -19.12026,29.77207 -21.38301,28.85762c-26.78106,-10.82179 -48.63238,-21.77106 -48.63238,-24.36867c0,-1.7743 8.40277,-17.60187 18.67293,-35.17241l18.67294,-31.94638l50.91241,0l50.91241,0l13.28955,21.01844l13.28966,21.01844l13.86403,-7.11266c9.61084,-4.93073 13.27039,-5.63875 11.92874,-2.30832c-11.81259,29.32658 -29.43884,63.52189 -32.57199,63.19018c-2.16919,-0.22948 -19.17931,-3.11553 -37.80035,-6.41334zm-157.90158,130.83841c-12.88431,-22.18782 -24.43164,-42.96199 -25.66062,-46.16496c-1.26128,-3.28671 2.41348,-15.03122 8.43637,-26.96236l10.67094,-21.13916l-10.90837,-6.44379c-14.51679,-8.57526 -9.12079,-11.21638 29.38814,-14.38432l30.43462,-2.50365l11.93788,31.54266c6.56593,17.34845 12.77805,33.78311 13.80486,36.52168c1.07085,2.85602 -4.05412,0.95576 -12.01902,-4.45653l-13.88588,-9.43578l-9.69341,18.71187c-5.33128,10.2917 -9.769,19.85884 -9.86144,21.26031c-0.09266,1.40147 16.26999,3.00525 36.36115,3.56384l36.52929,1.01558l2.3839,26.7207c1.3112,14.69647 2.11298,26.91713 1.78191,27.15706c-0.33105,0.23969 -17.62818,1.53915 -38.43802,2.88736l-37.83614,2.4512l-23.42616,-40.34174zm144.19484,39.20346c-22.11887,-33.38463 -22.50333,-30.90141 10.37228,-66.98763l21.10391,-23.16492l-2.24142,16.92821l-2.24152,16.92822l23.64932,0c13.0071,0 23.64944,-1.04019 23.64944,-2.31137c0,-1.27139 -7.21684,-15.55066 -16.03735,-31.73212c-8.82051,-16.18146 -16.00386,-30.77765 -15.96307,-32.436c0.09158,-3.71849 46.32753,-34.42394 48.52559,-32.22591c0.87094,0.87095 9.45139,16.38289 19.06769,34.47134l17.48441,32.8876l-23.52576,37.94727c-12.93936,20.87074 -25.37122,39.98283 -27.62622,42.47105c-2.25526,2.48822 -14.86537,5.52936 -28.02258,6.75787c-25.11388,2.34528 -24.43022,1.7804 -28.11249,23.22583c-0.64439,3.75308 -8.1586,-4.76279 -20.08223,-22.75946z",
"beverage": "m55.65598,297.84982c-28.13961,-15.0867 0.71402,-44.87836 24.17752,-35.2438c17.46051,-0.03983 34.92112,-0.01355 52.38168,-0.02121c0,-34.34088 0,-68.68181 0,-103.02271c-43.73869,-52.76227 -87.47738,-105.52454 -131.21606,-158.28681c98.99732,-0.36748 197.99556,-0.36708 296.99286,0c-42.95236,53.02298 -85.90472,106.04595 -128.85707,159.06893c0,34.08022 0,68.1604 0,102.24059c25.78079,0.22986 51.60571,-0.625 77.34869,0.87012c20.26866,5.44482 12.15504,38.73355 -7.54306,35.2244c-61.09291,-0.21259 -122.20532,0.38715 -183.28456,-0.8295zm127.03334,-186.51904c19.68919,-7.503 16.9212,-39.96898 -4.19951,-43.27924c-31.86026,-8.77637 -38.74004,46.49459 -5.25272,45.19753c3.23363,0.02124 6.51921,-0.43665 9.45222,-1.91829z",
"bicycle": "m69.04492,242.61508c10.78542,-0.13551 -10.27161,-0.62888 -14.0067,-0.90082c-31.20993,-0.75682 -57.11145,-31.7867 -53.74048,-62.58058c0.6826,-30.81444 30.36186,-57.88344 61.25282,-54.78261c8.04092,-3.41573 19.45538,7.85678 24.44781,2.47261c12.82323,-22.6207 25.24759,-45.47771 38.58752,-67.7975c11.3629,-1.62186 24.90015,-2.8755 35.9539,0.19863c5.11031,8.04987 -4.18097,10.24141 -9.97878,8.99869c-6.4711,0 -12.9422,0 -19.41331,0c-4.68463,8.54676 -9.49177,17.02541 -14.27853,25.51514c27.18877,0 54.37757,0 81.56634,0c0.60545,-2.89218 7.47321,-9.12369 1.38461,-8.44633c-11.06171,-1.39418 -4.14218,-14.17861 4.04941,-10.54169c11.49847,0.42252 23.4034,-1.13349 34.55679,1.17167c5.95799,11.9574 -11.26917,9.39215 -18.65384,9.51889c-5.46606,-1.78406 -6.59882,3.68022 -8.76302,7.4192c-8.77467,8.98817 -3.32066,18.46121 2.57677,27.22322c2.16318,3.98602 3.70422,9.51816 8.96812,5.7937c10.73436,-2.35877 22.43681,-2.44432 33.11809,0.31375c22.31958,6.63104 40.2153,27.32498 41.71356,50.76672c1.35196,14.39882 -1.7262,29.2406 -10.68872,40.85638c-10.3952,14.88928 -27.26529,23.04211 -45.01289,24.69595m-13.91446,0.14534c-16.17995,-4.15208 -31.09747,-13.81174 -39.74602,-28.39511c-5.65977,-7.28935 -6.39555,-18.57542 -9.40382,-25.8875c-7.93416,-0.10381 -15.86833,-0.20763 -23.80251,-0.31143c-16.06972,-25.85139 -30.2338,-52.8877 -45.73496,-79.09947c-3.0216,8.9735 -20.19933,21.18202 -10.71458,29.44228c23.80356,19.97299 26.97348,58.9857 6.61392,82.50262c-9.33031,10.45926 -22.27345,17.66695 -35.57853,21.74126m1.02195,-14.22214c25.6753,-5.59119 42.08234,-35.19554 33.20155,-59.88542c-2.74454,-8.04132 -10.29613,-20.88658 -16.96593,-21.01822c-7.10979,12.27542 -13.50588,24.99036 -21.29804,36.85445c-17.11086,3.00977 -1.43426,-17.82442 2.18629,-24.90399c3.88173,-8.63774 17.97784,-22.6107 0.22043,-22.40381c-12.4663,-1.24055 -25.71457,-0.04088 -35.79932,8.23351c-21.64245,14.32193 -25.73868,47.07928 -9.34899,66.82591c11.09536,14.38573 30.25585,20.50179 47.804,16.29758zm179.64028,-0.00356c21.91476,-5.14897 37.68491,-27.67265 34.8483,-50.02701c-1.50024,-24.84305 -26.27582,-44.93475 -50.90707,-41.59564c-18.45729,-1.74684 -0.78658,15.19781 1.85167,23.43547c2.5099,8.7469 16.33638,19.49011 8.6171,28.02017c-17.31352,0.72531 -35.05154,-0.50934 -52.31752,1.23642c3.1011,22.89496 24.76817,41.83401 48.14848,40.08203c3.28111,-0.02676 6.57803,-0.30434 9.75905,-1.15144zm-70.7294,-51.16617c2.08536,-17.91364 12.23944,-34.20847 27.04826,-44.4043c0.87492,-4.39421 -8.09195,-24.63332 -11.37527,-10.5231c-10.13445,18.42084 -20.32248,36.81699 -30.14639,55.40483c4.70622,0.11383 9.98186,0.93559 14.4734,-0.47743zm52.9005,-0.88846c-5.84201,-10.98254 -11.81374,-21.89917 -17.91992,-32.73703c-12.24919,6.45949 -20.3076,20.12949 -22.21249,33.77383c13.37456,-0.2851 26.97348,0.69884 40.16722,-0.71251l-0.03476,-0.3243l0,0zm-57.29515,-39.61388c5.7617,-10.63408 11.63275,-21.21213 17.21649,-31.94065c-24.2798,-0.5443 -48.61469,-0.66353 -72.88629,0.11504c12.46696,21.42642 23.73018,43.6828 37.36159,64.35614c6.59126,-10.13849 12.18927,-21.81091 18.30821,-32.53052z",
"bulb": "m145.62592,297.06863c-17.67376,-4.68848 -27.91267,-23.96384 -26.70493,-41.44981c-0.45245,-22.83995 1.65483,-46.8734 -9.26703,-67.87447c-6.22532,-15.68024 -16.83022,-29.52451 -21.2558,-45.86502c-5.50718,-25.3512 1.29536,-54.08422 21.79177,-71.10346c23.11512,-19.80671 60.02821,-22.38829 85.47337,-5.55379c17.94666,12.36192 30.89558,32.75098 30.41452,55.00024c2.10583,16.62513 -4.45561,32.2625 -12.17442,46.55451c-5.53021,11.50751 -11.98869,22.76817 -17.00821,34.40399c-1.32327,23.85774 -0.56435,47.93431 -4.15358,71.58684c-5.97899,18.328 -28.51152,30.78922 -47.11569,24.30096zm46.67903,-42.65804c-10.48888,-5.65382 -25.56134,-1.97798 -37.75313,-3.19516c-9.95908,1.99197 -27.6553,-4.08569 -32.94975,5.03105c12.10807,4.73648 26.33759,1.18594 39.22778,1.96957c10.31409,-0.9906 22.18068,0.93939 31.4751,-3.80547zm-0.78554,-10.63885c1.54361,-14.36404 -21.1709,-7.03433 -30.39838,-9.17262c-12.21318,2.47205 -31.64935,-5.2915 -39.33047,5.74487c4.5516,11.09071 24.85052,3.29074 35.50985,5.75148c11.3671,-0.4028 23.15991,0.40741 34.21899,-2.32373zm0.14142,-25.16705c2.9986,-27.98152 20.10725,-51.27968 30.01392,-76.87566c8.14517,-30.64574 -7.9861,-65.65708 -37.19159,-78.52086c-29.06958,-14.40719 -67.79967,-3.52343 -84.22785,24.70715c-15.82867,23.31919 -12.80788,55.00346 2.66266,77.68118c11.03862,19.81914 19.84574,42.09169 18.41109,65.15663c22.91359,0 45.82719,0 68.7408,0c0.53035,-4.04942 1.06052,-8.09911 1.59097,-12.14844zm-50.72687,-39.64223c-9.07846,-15.78525 -18.39817,-31.69214 -24.71996,-48.79948c5.68369,-7.35728 7.33711,-15.55251 9.10273,-24.19695c15.95243,-3.13345 -2.03056,18.17914 13.0308,18.65942c13.36925,5.81685 7.50436,-28.2252 18.61179,-15.95465c-7.9733,13.46684 15.66168,26.8638 16.5291,7.59886c-1.14578,-14.54594 14.28561,-11.82063 8.26923,1.37553c0.49657,6.78834 11.54893,8.73447 11.73816,14.19425c-7.9566,17.25854 -14.87259,35.07664 -24.29411,51.59875c-2.12068,-6.39691 8.34081,-22.42969 11.68367,-31.84341c6.45049,-8.13736 11.99347,-30.06687 -4.82256,-27.07765c-9.75478,15.21495 -22.87704,-9.5907 -32.42833,4.99055c-8.10805,2.41856 -20.86024,-14.04196 -23.2123,1.78514c6.10664,18.79854 18.8132,34.81967 25.46149,53.42416c-2.25594,-1.33008 -3.54053,-3.66359 -4.94971,-5.75453zm-12.74261,-68.89435c-4.41462,-2.15457 1.86072,11.45412 -0.00009,0l0.00009,0zm26.38611,1.60738c-5.73064,-9.69846 -2.6572,11.76727 0,0zm25.57564,0c-5.73064,-9.69846 -2.65724,11.76727 0,0zm-119.06653,-71.66327c-10.12879,-10.27977 -21.32492,-19.92564 -30.13364,-31.25677c22.0061,18.21614 42.14793,38.73141 61.97966,59.29806c5.2662,7.2365 -9.18723,-6.75771 -11.87724,-9.10345c-6.7307,-6.23349 -13.37324,-12.56173 -19.96879,-18.93784zm156.40887,29.39093c17.12013,-21.33164 33.0936,-43.69485 51.55162,-63.89019c-3.09076,8.6951 -13.04016,19.09942 -19.29597,28.05458c-10.44716,12.99739 -20.21251,26.73974 -32.1591,38.39317c-1.49106,1.57605 -3.71758,-2.15694 -0.09639,-2.55756l-0.00015,0zm-37.0826,-20.23703c5.91515,-16.91904 14.49518,-33.02397 24.06741,-48.16613c-0.22247,8.40011 -10.37453,24.32112 -15.25424,34.73693c-2.76042,4.19142 -5.08876,10.87586 -8.81317,13.4292zm-75.7492,-21.69804c-4.12045,-6.01025 -16.5241,-20.00493 -14.20815,-21.91343c11.95872,13.25933 24.12167,26.94502 32.71223,42.62532c-7.31573,-5.61084 -12.5797,-13.71475 -18.50409,-20.71189zm47.35616,-4.73013c-0.83392,-5.64444 1.75482,-32.58975 3.19298,-14.29333c0.00511,11.46356 1.20168,24.36872 -1.98915,34.80271c-1.36639,-6.70823 -1.03488,-13.69191 -1.20383,-20.50938z",
"careful": "m1,1c2.24496,29.70385 10.76853,56.9168 23.28125,80.81181l23.28125,-36.31875l-6.72569,-2.48334l-9.3125,-3.31111l4.86319,-8.48472l17.07292,-30.21389l-52.46042,0zm71.49931,0l-16.86597,29.8l7.24306,2.58681l9.82986,3.51805l-5.5875,8.69167l-33.525,52.46041c24.12122,36.61169 59.3948,61.88649 99.85071,67.36043l0,107.09373l-66.22223,0l0,26.48889l165.55556,0l0,-26.48889l-66.22223,0l0,-107.09373c70.57336,-9.43671 125.94405,-78.40826 132.44444,-164.41737l-226.50069,0z",
"cart_2": "m0.99397,46.01759l0,36.55115l57.8652,0l28.28396,104.41602l159.23965,0l52.21094,-125.30758l-237.55595,0l0,-15.65959zm53.21769,184.47131c0,12.97459 -10.51804,23.49266 -23.49261,23.49266c-12.97436,0 -23.49244,-10.51807 -23.49244,-23.49266c0,-12.97456 10.51808,-23.49228 23.49244,-23.49228c12.97457,0 23.49261,10.51772 23.49261,23.49228zm148.8,0c0,12.97459 -10.51817,23.49266 -23.4928,23.49266c-12.97446,0 -23.49258,-10.51807 -23.49258,-23.49266c0,-12.97456 10.51813,-23.49228 23.49258,-23.49228c12.97462,0 23.4928,10.51772 23.4928,23.49228z",
"coat_hanger": "m24.72351,255.83636c-16.41191,-2.33228 -27.73119,-20.33411 -22.38228,-36.1741c3.30628,-15.35616 20.22842,-19.55692 31.44893,-27.66121c35.64961,-21.14748 71.50229,-41.94997 107.26245,-62.9095c1.87845,-10.22399 -5.70195,-16.59309 -13.7997,-21.39916c-16.20296,-12.86633 -15.31998,-38.50921 -1.59858,-52.83282c16.08138,-18.88601 49.91904,-12.94907 59.95362,9.38958c9.73412,9.92804 -0.18503,34.24562 -13.8385,22.54042c-1.42418,-13.2976 -12.78993,-28.89017 -27.7881,-20.44456c-15.64833,8.98737 -6.40202,29.9363 8.0513,34.15588c9.75604,6.53233 8.45554,18.64742 8.97318,28.8608c42.85536,25.5808 86.25137,50.28574 128.51941,76.82744c16.8277,13.06401 9.90717,44.50819 -11.28448,48.76941c-16.06598,2.31227 -32.54915,0.68361 -48.77617,1.31593c-68.2437,0.05267 -136.50528,0.51715 -204.74109,-0.43811zm248.30083,-21.61086c12.28671,-12.24121 -10.69217,-18.82494 -18.26138,-24.82121c-34.85875,-20.46407 -69.60597,-41.14412 -104.87569,-60.89026c-41.32713,23.46544 -82.56062,47.16515 -123.11867,71.93832c-8.58788,3.43668 -2.61073,17.17589 5.37386,15.06004c78.53457,-0.16875 157.07672,0.41405 235.60527,-0.42499c1.73874,-0.22235 3.69772,0.07922 5.27661,-0.86191z",
"document": "m58.5474,213.36578c-0.05885,-70.73299 -0.11767,-141.466 -0.17652,-212.19898c53.12881,0.81297 106.48294,-1.9259 159.43185,2.08758c25.82027,9.16723 22.09921,66.23434 21.6799,108.85904c-1.13266,32.14426 15.08594,95.86641 -27.03937,105.4444c-21.00172,0.00113 -21.08437,8.97424 -18.9407,25.20605c2.4877,24.31731 -4.73431,78.79115 -39.2352,44.26363l-95.71997,-73.66171zm162.59977,-23.1226c0.08537,-63.57991 -0.62674,-117.82272 -4.15146,-159.71279c-31.317,-14.24883 -73.63496,-7.31453 -109.06839,-7.53106c-13.9288,6.77649 33.0414,29.27771 43.00333,38.00857c37.81908,18.77271 49.10266,52.9127 42.57201,91.49594c0,15.00871 0,30.01746 0,45.02617c6.97418,-0.00844 21.40269,-3.46487 27.64452,-7.28687z",
"gift": "m160.05605,46.22016c5.12212,-9.27578 14.49356,-21.35899 -1.60765,-24.27403c-4.48517,-2.30248 -8.9718,-6.3767 -13.45119,-1.83809c-9.96648,3.93713 -18.60622,9.44305 -8.12337,19.74747c4.64861,6.65461 8.87668,21.1743 14.1424,22.77341c3.14276,-5.39672 6.08684,-10.9068 9.03981,-16.40877zm-22.01753,25.61161c-9.14935,-16.32981 -16.51206,-33.84869 -27.71044,-48.91321c-13.62003,-14.54198 -40.45641,-8.05964 -46.55505,10.6975c-8.10131,18.54466 9.37865,40.68638 29.16686,38.36525c15.01618,0.2515 30.1178,0.92769 45.09863,-0.14954zm76.02873,0.55127c19.45964,-2.60851 30.65027,-27.10658 19.57069,-43.3727c-9.81836,-17.35883 -38.06532,-17.96398 -47.9265,-0.32358c-8.53876,14.26143 -15.94994,29.16402 -23.78549,43.81643c17.32285,0.99046 34.80862,0.75943 52.1413,-0.12016zm32.22711,20.88692c6.6339,-5.83724 32.32317,-12.71885 12.86739,-18.26252c-4.81963,-1.36767 -10.43866,-7.64191 -14.77026,-5.92492c-9.40594,11.6946 -23.86844,18.55521 -38.9686,17.83661c-2.95601,0.97167 -18.03316,-1.47781 -13.95946,1.30438c10.65262,6.07415 21.03697,12.6707 32.05554,18.0621c7.71764,-4.11029 15.20781,-8.63805 22.77539,-13.01566zm-151.5623,3.30481c5.67309,-3.30481 11.34617,-6.60963 17.01924,-9.91444c-17.34076,-0.86164 -37.18572,1.63783 -50.29088,-12.30952c-3.69488,-4.13725 -7.23799,-8.87396 -12.35892,-3.66532c-6.13381,4.22582 -25.00066,8.5563 -10.4742,13.71487c12.64928,7.47227 25.20959,15.12685 38.17151,22.0463c6.1765,-2.89648 11.99872,-6.5165 17.93326,-9.87188zm83.14041,36.87479c7.35168,-5.90694 25.15858,-11.53461 25.75348,-17.87329c-16.62141,-9.56481 -32.75868,-20.2142 -50.14796,-28.29874c-5.98431,-2.2704 -10.83618,1.22306 -15.65312,4.25735c-14.24385,8.47255 -28.83041,16.41927 -42.61077,25.63122c18.02219,11.14435 36.26101,21.95917 54.67725,32.43958c9.39328,-5.26857 18.66512,-10.75249 27.98112,-16.15611zm73.75499,18.43738c7.62694,-4.81227 15.25389,-9.62453 22.88087,-14.43683c-0.06244,-16.11785 0.19498,-32.24243 -0.24597,-48.35465c-15.39334,8.58929 -30.56776,17.60745 -45.48607,26.99785c-1.63162,16.62392 -0.80414,33.52276 -0.44952,50.23046c7.87193,-4.6378 15.55261,-9.59819 23.30069,-14.43683zm-178.87355,-10.1545c0.77462,-13.73913 2.44441,-29.40098 -14.12444,-33.4709c-10.46331,-4.88007 -24.96637,-17.38377 -33.02728,-17.25835c-0.25115,15.4809 -0.11823,30.96465 -0.14541,46.44691c15.45605,9.64543 30.63783,19.75522 46.42746,28.8476c1.53102,-7.98021 0.53017,-16.43968 0.86967,-24.56526zm110.68056,53.19621c9.14198,-5.77156 18.28395,-11.54312 27.42593,-17.31468c-0.04233,-16.63979 0.64572,-33.30351 -0.10625,-49.92543c-10.04709,2.88116 -21.5385,11.78691 -32.12366,17.31859c-7.92599,4.64276 -15.85202,9.28555 -23.77802,13.92833c0.1563,17.76723 -0.42728,35.56691 0.57802,53.30783c9.47523,-5.53633 18.69861,-11.49898 28.00397,-17.31464zm-38.32249,-9.33929c0,-8.88464 0,-17.76929 0,-26.6539c-18.35233,-10.72505 -36.64592,-21.55176 -55.0698,-32.1535c-1.01884,16.98993 -0.43661,34.04375 -0.59025,51.06303c18.34824,11.48767 36.50635,23.28906 55.08669,34.3983c0.72301,-8.85316 0.45901,-17.77696 0.57336,-26.65393zm106.97165,35.71599c7.47931,-4.98045 14.95862,-9.96091 22.43796,-14.94136c-0.31207,-15.79037 0.77045,-31.79442 -0.80399,-47.41055c-15.55414,8.87424 -30.56544,18.97736 -45.84236,28.4509c0.367,16.33781 -0.75356,32.86267 0.93411,49.06088c7.89078,-4.84329 15.54118,-10.07089 23.27428,-15.15987zm-179.49486,-8.85234c-0.06088,-8.2791 -0.12183,-16.55821 -0.18272,-24.8373c-15.452,-9.6673 -30.70933,-19.65799 -46.39347,-28.94519c-0.98154,15.8615 -0.42208,31.78482 -0.5697,47.67464c15.58812,10.31845 31.00088,20.91034 46.79801,30.90671c0.60526,-8.24165 0.30488,-16.53903 0.34788,-24.79886zm111.24078,54.40674c9.07924,-6.02985 18.15848,-12.05969 27.23772,-18.08952c-0.02109,-16.81348 0.32051,-33.6342 -0.13127,-50.44193c-18.48172,11.39566 -36.8398,23.00107 -55.0625,34.8063c-2.05943,16.23506 -0.72412,32.97392 -0.72713,49.38643c5.65578,3.44495 20.11658,-11.82266 28.68318,-15.66129zm-38.71758,-7.19754c-1.09789,-11.59346 4.72185,-27.9119 -10.01297,-32.40633c-14.85952,-9.4117 -29.65931,-18.92612 -44.71436,-28.02278c-2.19433,15.91664 0.10065,32.49809 -1.58499,48.60945c18.05386,13.0511 36.5795,25.52769 55.44263,37.37666c1.51289,-8.30347 0.57193,-17.09903 0.86969,-25.55701zm-63.13967,-3.06479c-21.97403,-14.66875 -43.94805,-29.33749 -65.92206,-44.00621c0.02491,-45.26978 -0.60055,-90.55044 0.20291,-135.81172c11.00354,-6.78941 22.71307,-12.35508 34.0373,-18.58421c-7.3143,-20.93821 3.23879,-46.38257 24.44761,-54.21996c17.77897,-7.29492 39.21008,-0.71179 50.54502,14.64528c8.23304,-4.22243 16.4661,-8.44486 24.69915,-12.66729c8.27725,4.26063 16.55455,8.52126 24.83179,12.78188c11.86055,-14.06895 32.18082,-22.09776 49.79013,-14.21312c21.13718,7.42951 32.65843,32.817 25.07826,53.72234c11.40756,6.44052 23.81024,11.47337 34.26968,19.33245c0.46368,45.00166 0.00415,90.00995 -0.0379,135.01437c-43.72298,28.93527 -86.73743,58.97507 -131.17026,86.81018c-12.92032,-0.00348 -24.07242,-14.03217 -36.06157,-19.72c-11.59096,-7.66315 -23.15266,-15.37048 -34.71011,-23.08398z",
"globe": "m33.11721,223.16701l233.44794,0.08913l-7.57544,11.19618l-218.20762,-0.26738l-7.66489,-11.01793zm1.60428,-148.93458l230.3285,-0.26738l6.68439,11.48557l-243.78651,0.08913l6.77362,-11.30732zm-22.73061,74.62911l275.61135,-0.26738l-0.35626,11.48558l-275.07684,-0.17825l-0.17825,-11.03995zm275.8395,1.06528c0,76.03723 -61.86858,137.89429 -137.92784,137.89429c-76.0264,0 -137.88345,-61.86824 -137.88345,-137.89429c0,-76.02642 61.86823,-137.88347 137.88345,-137.88347c76.05927,-0.01117 137.92784,61.85705 137.92784,137.88347zm-137.91701,-148.93459c-82.09525,0 -148.90104,66.8058 -148.90104,148.92339c0,82.12878 66.8058,148.93457 148.90104,148.93457c82.13995,0 148.93459,-66.80579 148.93459,-148.93457c0,-82.11759 -66.79463,-148.92339 -148.93459,-148.92339zm41.78581,148.93459c0,81.25211 -22.01353,137.89429 -41.78581,137.89429c-19.74991,0 -41.76309,-56.64218 -41.76309,-137.89429c0,-81.27448 22.00233,-137.88347 41.76309,-137.88347c19.76112,-0.01117 41.78581,56.60899 41.78581,137.88347zm-41.78581,-148.93459c-34.29579,0 -52.80304,76.73613 -52.80304,148.92339c0,72.2093 18.50725,148.93457 52.80304,148.93457c34.29614,0 52.83693,-76.73643 52.83693,-148.93457c-0.01118,-72.18726 -18.54079,-148.92339 -52.83693,-148.92339zm97.86217,148.93459c0,76.03723 -43.91597,137.89429 -97.86217,137.89429c-53.93499,0 -97.82862,-61.86824 -97.82862,-137.89429c0,-76.02642 43.89363,-137.88347 97.82862,-137.88347c53.9462,-0.01117 97.86217,61.85705 97.86217,137.88347zm-97.86217,-148.93459c-60.01537,0 -108.86856,66.8058 -108.86856,148.92339c0,82.12878 48.85319,148.93457 108.86856,148.93457c60.03773,0 108.88008,-66.80579 108.88008,-148.93457c0,-82.11759 -48.84235,-148.92339 -108.88008,-148.92339z",
"handle_care": "m163.84105,276.49316c0,-16.9874 0,-26.73244 0,-43.71985c0,-23.90417 32.58113,-58.75496 53.7084,-83.18626c5.78004,-5.69962 16.17278,-7.90976 21.66074,-2.49817c4.87456,4.80672 4.50662,16.61058 0.6333,22.48335c-7.09361,10.6588 -14.18712,21.31755 -21.28073,31.97632c-3.55533,6.07231 5.16899,10.98973 10.38702,4.49673c27.24385,-36.8876 34.70512,-44.36621 34.70512,-59.20624c0,-30.31093 0,-29.89459 0,-60.20548c0,-8.67812 6.34686,-16.98743 14.45584,-16.98743c7.71677,0 14.4277,7.99146 14.4277,15.52406c0,48.96381 0,67.40421 0,116.36799c0,15.08096 -47.62817,60.69775 -47.62817,81.9498c0,4.99628 0,9.99255 0,14.98889c-27.02963,0 -54.05942,0 -81.08914,0c0.00577,-7.32791 0.01431,-14.65582 0.02008,-21.9837zm-28.64365,0c0,-16.98746 0,-26.73244 0,-43.71985c0,-23.90422 -32.58104,-58.75496 -53.70833,-83.18626c-5.78003,-5.69962 -16.17277,-7.90976 -21.66072,-2.49817c-4.87465,4.80672 -4.50671,16.61058 -0.6334,22.48335c7.09362,10.6588 14.18714,21.31755 21.28075,31.97632c3.55531,6.07231 -5.16901,10.98973 -10.38705,4.49673c-27.24375,-36.8876 -34.70512,-44.36621 -34.70512,-59.20624c0,-30.31093 0,-29.89459 0,-60.20548c0,-8.67812 -6.34683,-16.98743 -14.45581,-16.98743c-7.71679,0 -14.42771,7.99146 -14.42771,15.52406c0,48.96381 0,67.40417 0,116.36799c0,15.08092 47.62818,60.69775 47.62818,81.9498c0,4.99628 0,9.99255 0,14.98889c27.02971,0 54.05941,0 81.08913,0c-0.00577,-7.32791 -0.01433,-14.65582 -0.02,-21.9837zm-42.88594,-214.71311l48.62654,36.4699l0,57.20769l-48.62654,-36.46989l0,-57.20769zm114.41537,0l-48.62654,36.4699l0,57.20769l48.62654,-36.46989l0,-57.20769zm-114.41537,-17.87738l57.20769,-42.90577l57.20769,42.90575l-57.20769,42.90577l-57.20769,-42.90574z",
"headphones": "m262.24301,276.32291c0,3.88873 -3.15054,7.03928 -7.03929,7.03928h-45.07771c-3.88873,0 -7.03928,-3.15054 -7.03928,-7.03928v-95.76917c0,-3.88843 3.15054,-7.03928 7.03928,-7.03928h45.07771c3.88875,0 7.03929,3.15085 7.03929,7.03928v95.76917zm-166.89014,0c0,3.88873 -3.15116,7.03928 -7.03929,7.03928h-45.07832c-3.88813,0 -7.03928,-3.15054 -7.03928,-7.03928v-95.76917c0,-3.88843 3.15115,-7.03928 7.03928,-7.03928h45.07832c3.88813,0 7.03929,3.15085 7.03929,7.03928v95.76917zm54.45998,-259.68797c-81.57039,0 -147.78664,65.61743 -148.80356,146.9389h25.82451c0.83739,-67.21309 55.56696,-121.44394 122.97905,-121.44394c67.41208,0 122.14168,54.23085 122.96928,121.44394h25.82391c-1.00656,-81.32147 -67.24229,-146.9389 -148.7932,-146.9389zm-148.59421,221.43015h25.35591v-74.64095h-25.35591v74.64095zm271.35417,-74.651v74.64127h26.29248v-74.64127h-26.29248z",
"hippie": "m126.57668,297.48117c-48.56062,-7.34268 -92.01251,-39.97321 -112.69057,-84.50511c-24.94552,-52.66977 -15.84542,-119.75688 23.8283,-162.85019c38.79855,-45.4432 106.09586,-61.79809 161.96931,-41.65034c58.35461,19.93039 100.52045,79.22475 99.29117,141.02438c1.2113,60.65196 -39.29578,118.84778 -96.0322,139.80408c-24.24886,9.49326 -50.68127,11.39462 -76.36598,8.17719zm8.7399,-92.17508c-0.08942,-7.31126 -0.17882,-14.62254 -0.26825,-21.93381c-20.52584,20.53458 -41.05166,41.06917 -61.57751,61.60378c17.64819,14.10371 39.22342,22.83827 61.57751,25.75548c0.29533,-21.80725 0.53749,-43.61626 0.26825,-65.42545zm48.5128,61.24323c14.52351,-4.28751 28.46933,-11.11562 40.24649,-20.66127c-9.32077,-13.4882 -22.68102,-24.26074 -33.95442,-36.33005c-8.88936,-8.88591 -17.77875,-17.77179 -26.66811,-26.6577c0,29.29706 0,58.59412 0,87.89117c6.88846,-0.91629 13.69307,-2.3291 20.37604,-4.24216zm-48.28273,-180.43147c0,-19.30317 0,-38.60634 0,-57.90951c-51.85052,5.59066 -97.82003,47.52976 -105.87597,99.4242c-5.92087,34.10992 2.2166,70.93011 24.35439,97.89821c27.17386,-27.16779 54.34772,-54.33559 81.52158,-81.50337c0,-19.30317 0,-38.60635 0,-57.90952zm116.00552,130.27736c29.94273,-44.68748 25.57903,-109.31516 -11.64191,-148.59046c-19.65836,-21.7875 -47.20416,-36.42821 -76.45694,-39.59642c0,38.6003 0,77.20061 0,115.80091c26.61343,26.23764 52.37032,53.38443 79.88922,78.67319c3.85712,4.56624 5.79269,-4.75352 8.20963,-6.28722z",
"house": "m21.15257,177.09065c0,-27.41002 0,-54.82008 0,-82.2301c-6.68203,1.86892 -13.14774,5.87402 -20.15257,5.63974c7.71781,-7.14793 21.82513,-9.41176 32.30949,-14.09891c45.79581,-16.133 91.60535,-32.4141 138.27387,-45.86145c13.50775,-0.66366 26.30505,7.15431 39.33269,10.42321c29.47861,10.57565 59.53784,19.97857 88.07501,32.90813c-6.51614,8.73929 -28.58875,5.06429 -25.73117,21.53019c-2.00067,45.62614 -0.83817,91.32375 -1.14786,136.98345c-18.99269,5.63184 -37.89932,11.84375 -56.94553,17.1149c-64.67134,-0.05981 -129.3426,-0.11945 -194.01394,-0.17902c0,-27.40996 0,-54.82036 0,-82.23004l0,-0.00011zm26.14161,31.25392c0,-16.12061 0,-32.24124 0,-48.36197c16.55636,0 33.11272,0 49.66908,0c0,32.24136 0,64.4827 0,96.724c38.34103,0 76.68204,0 115.02308,0c0,-54.026 0,-108.05197 0,-162.07799c-62.73987,0 -125.47972,0 -188.2196,0c0,54.02602 0,108.05199 0,162.07799c7.84248,0 15.68497,0 23.52745,0c0,-16.12067 0,-32.2413 0,-48.36203zm99.33812,-27.44867c0,-6.97108 0,-13.94214 0,-20.9133c13.07082,0 26.14162,0 39.21243,0c0,13.94221 0,27.88445 0,41.82658c-13.07082,0 -26.14162,0 -39.21243,0c0,-6.97108 0,-13.94214 0,-20.91328zm33.9841,1.30707c0,-5.66399 0,-11.32797 0,-16.99203c-9.58527,0 -19.17052,0 -28.75577,0c0,11.32805 0,22.65611 0,33.98409c9.58525,0 19.1705,0 28.75577,0c0,-5.66399 0,-11.32797 0,-16.99205zm-86.2673,28.75577c0,-15.24922 0,-30.4985 0,-45.7478c-14.8136,0 -29.62717,0 -44.44075,0c0.28782,29.49963 -0.86703,59.06848 1.39272,88.50464c7.32339,4.61035 18.6494,2.34561 27.75799,2.99103c5.09669,0 10.19335,0 15.29005,0c0,-15.24927 0,-30.49857 0,-45.74786zm150.9678,34.15282c7.18895,-2.37781 14.3779,-4.75565 21.56683,-7.13347c-0.32449,-45.85204 0.98636,-91.75861 -1.60782,-137.55795c-6.33264,-8.04385 -23.37172,10.13716 -33.97191,1.44468c-8.98801,-5.39767 -16.23575,-5.6667 -13.48424,6.8141c-0.6041,45.64783 -1.40456,91.35368 0.49997,136.97478c-2.32346,17.3029 19.61401,-1.57974 26.99716,-0.54214zm17.56241,-152.88132c5.81549,-2.74289 29.11139,-6.01917 13.28293,-11.03122c-31.02148,-13.18587 -62.53795,-25.50377 -94.87346,-35.06522c-13.26736,-1.87402 -25.71394,5.23786 -38.28336,8.42139c-7.2287,0.92986 -14.03493,6.61982 -2.78639,8.23806c33.43919,12.5762 66.81393,25.55496 101.06847,35.75281c7.2216,-1.29286 14.41238,-4.37938 21.59181,-6.31581zm-104.48328,-16.97943c-12.19943,-4.63456 -24.39883,-9.26913 -36.59824,-13.9037c-25.6514,8.95505 -51.55341,17.25012 -76.89988,27.03273c49.99152,1.67495 100.06706,0.58957 150.09639,0.77469c-12.19943,-4.6346 -24.39885,-9.26915 -36.59827,-13.90372z",
"keep_up": "m79,1l-21.3,35.5l-21.3,35.5l19.88,0l0,184.60001l45.44,0l0,-184.60001l19.88,0l-21.3,-35.5l-21.3,-35.5zm142.00002,0l-21.30002,35.5l-21.29999,35.5l19.88,0l0,184.60001l45.43999,0l0,-184.60001l19.88,0l-21.3,-35.5l-21.29999,-35.5zm-213.00002,269.80002l0,28.39999l284,0l0,-28.39999l-284,0z",
"new_born": "m137.15491,103.06109c-14.77614,-3.80736 -27.4188,-14.09921 -33.90258,-27.59863c-3.9915,-8.31045 -4.89106,-12.46352 -4.90182,-22.63058c-0.01103,-10.43683 0.90331,-14.55167 5.14873,-23.17045c6.5289,-13.25453 17.58841,-22.50933 32.02396,-26.7982c7.85696,-2.33434 19.44511,-2.4919 27.41292,-0.37272c10.68681,2.84234 20.56245,9.23503 27.27812,17.65763c11.44406,14.35284 14.51639,32.93808 8.33334,50.41059c-2.37558,6.7131 -5.38321,11.61306 -10.48294,17.07855c-7.51927,8.05854 -15.46124,12.82613 -25.72244,15.44125c-6.92987,1.76612 -18.2959,1.75824 -25.18729,-0.01743zm46.99359,76.71874c0,-11.66681 -0.15546,-21.21237 -0.34546,-21.21237c-0.55267,0 -23.15134,19.0079 -23.15134,19.47273c0,0.59862 22.40039,22.95203 23.00027,22.95203c0.2731,0 0.49652,-9.54558 0.49652,-21.21239zm-8.12837,89.58151c3.13896,-3.60342 5.94908,-9.57928 7.16283,-15.23215c0.75183,-3.5016 0.8862,-7.28795 0.60019,-16.91275l-0.36856,-12.40109l-33.73602,-33.39706c-29.396,-29.10065 -33.79212,-33.21501 -34.172,-31.98175c-0.2398,0.77843 -0.30579,13.66176 -0.14668,28.62961l0.28934,27.21429l28.53863,28.41072c15.69623,15.6259 28.73599,28.41826 28.97726,28.42744c0.24127,0.00919 1.52603,-1.23157 2.85503,-2.75726zm-21.12221,12.22665c0.5526,-0.21207 -6.52711,-7.73318 -19.03375,-20.22046c-15.75389,-15.72952 -20.00713,-19.64691 -20.36126,-18.75351c-0.82094,2.07094 -0.552,9.37703 0.49458,13.43619c3.03795,11.78281 12.81967,21.70416 24.49419,24.84378c3.43257,0.92316 12.65175,1.36725 14.40625,0.694zm-14.69553,16.96454c-19.19916,-3.63824 -34.22623,-17.37338 -40.35254,-36.88327l-1.52992,-4.87216l0,-51.56241c0,-48.09848 0.08022,-51.82547 1.1941,-55.47855c5.75462,-18.87271 18.67331,-31.86444 36.79293,-37.00092c7.28899,-2.06625 19.90268,-2.05429 27.24492,0.02586c17.6541,5.00159 31.24332,18.57871 36.39166,36.35935l1.50121,5.18457l0,50.90973l0,50.90971l-1.50121,5.18457c-2.97653,10.27997 -9.29736,19.97147 -17.27997,26.49481c-4.88281,3.99017 -14.22415,8.68716 -20.0538,10.08334c-6.28586,1.50537 -16.34073,1.79504 -22.40738,0.64539z",
"officer_2": "m144.87212,278.09424c0,-7.03476 0,-14.06952 0,-21.10431c34.12148,-0.13669 68.24295,-0.27335 102.36444,-0.41003c0,-6.63841 0,-13.27682 0,-19.91524c-26.94872,-0.26555 -53.89742,-0.53107 -80.84613,-0.79662c30.82893,-41.42374 61.65785,-82.8475 92.48683,-124.27124c13.28885,-1.73074 25.24835,9.13577 26.16702,22.30508c1.37796,55.08076 0.61356,110.19873 0.82785,165.29666c-46.99997,0 -94,0 -141.00003,0c0.00002,-7.03473 0,-14.06952 0.00002,-21.10431zm-0.19199,-87.83214c-0.06876,-13.74153 -0.13754,-27.48306 -0.20631,-41.22459c-14.64618,18.8075 -27.62093,39.06267 -43.91019,56.48129c-14.42976,9.56055 -27.65941,-6.01018 -38.58159,-13.69254c-15.26907,-12.11603 -30.9411,-23.83286 -45.24117,-37.08727c-8.74276,-13.13181 5.83314,-31.80238 20.70509,-26.84245c13.32168,6.5739 23.96796,17.78835 36.01906,26.44797c7.16664,7.87663 15.75377,12.89487 20.74445,-0.10861c10.61151,-12.96709 19.11472,-28.05023 32.18712,-38.75249c13.16731,-7.35264 29.1156,-2.93422 43.48628,-4.27982c21.93321,0.06611 43.87927,-0.19524 65.80286,0.42785c-29.83961,40.18141 -59.99303,80.13989 -90.45013,119.85524c-0.51442,-13.73006 -0.41658,-27.48491 -0.55545,-41.22459zm49.58183,-93.47518c-17.8813,-2.9394 -31.59131,-19.77306 -31.46613,-37.7664c-6.28482,-0.26553 -12.56969,-0.53107 -18.85452,-0.79661c5.37549,-6.77119 10.75095,-13.54238 16.12643,-20.31357c26.79919,0 53.59842,0 80.39761,0c-0.07553,16.83184 2.11966,36.40314 -12.31944,48.47567c-8.59595,8.79105 -21.9399,12.10719 -33.88396,10.40091zm-44.65282,-80.96436c-3.48923,-6.17941 -15.89734,-17.4112 -0.91945,-14.28427c30.58981,-0.43799 61.18378,-0.21775 91.77567,-0.27203c0,9.29378 0,18.58757 0,27.88137c-27.24594,0 -54.49188,0 -81.73782,0c-3.03946,-4.44169 -6.07892,-8.88338 -9.11839,-13.32506z",
"officer": "m127.65893,298.12302c-11.91827,-4.4541 -8.85096,-18.47458 -9.45842,-28.44775c-0.14007,-38.77051 -0.03694,-77.54163 -0.06789,-116.31239c21.30015,-0.31718 42.6003,-0.76093 63.90377,-0.70047c-0.02318,44.52536 0.58119,89.061 -0.14537,133.57832c-0.57059,11.93384 -13.89935,13.46393 -23.22325,12.30963c-10.33765,0.00372 -20.67488,-0.15573 -31.00884,-0.42734zm-30.7055,-116.03563c-6.74483,-0.72377 -12.32703,-17.61749 -4.40458,-17.57693c6.23801,-0.08125 12.47601,-0.16251 18.71403,-0.24377c1.007,8.20691 -1.59957,19.89343 -12.37878,18.21895l-1.93067,-0.39824l0,0zm99.85623,-0.00661c-6.98207,-0.87273 -10.75342,-15.40816 -5.67188,-17.55357c6.66685,-0.08684 13.33371,-0.17369 20.00055,-0.26053c1.00876,8.20958 -1.60458,19.90276 -12.38809,18.21675l-1.94055,-0.40263c0,0 -0.00003,0 -0.00003,0zm-107.61794,-56.49044c0.54922,-13.57674 -1.08583,-27.43726 1.69075,-40.79832c4.06557,-10.40357 13.92722,-19.77089 25.33163,-20.63995c23.60493,0.19927 47.27207,-1.00478 70.82676,0.54259c14.04367,3.09693 25.24931,16.9698 23.91605,31.57756c0.32544,21.70094 0.15948,43.40639 0.24002,65.10946c-7.41772,0.09508 -14.83545,0.19016 -22.25314,0.28525c0,-19.53377 0,-39.06755 0,-58.60133c-4.34856,-5.08821 -8.05232,1.74921 -6.5546,6.09985c-0.01697,13.17788 -0.03394,26.35577 -0.05093,39.53365c-21.48996,0 -42.97992,0 -64.46988,0c-0.17615,-15.26811 -0.35229,-30.53623 -0.52844,-45.80434c-4.21338,-4.81828 -7.17517,1.78474 -5.83627,5.79053c-0.07101,17.56546 -0.14203,35.13091 -0.21304,52.69639c-7.42339,0.09512 -14.84679,0.19028 -22.27019,0.28539c0.0571,-12.02556 0.11414,-24.05119 0.17128,-36.07671zm56.41985,-70.72921c-11.43472,-2.06434 -20.27027,-12.69278 -20.54277,-24.26873c16.53569,0 33.07137,0 49.60706,0c0.58516,15.06838 -14.48488,27.02206 -29.06429,24.26873zm-25.62941,-33.78068c2.8164,-2.81977 5.23412,-6.59949 9.76779,-5.28442c14.97531,0 29.95061,0 44.9259,0c-0.48174,3.25565 0.91423,8.389 -0.64331,10.56883c-19.77167,0 -39.54332,0 -59.31499,0c1.75487,-1.76147 3.50974,-3.52295 5.26459,-5.28442zm18.8918,-9.34585c-4.62387,-0.06122 -9.24773,-0.12243 -13.8716,-0.18365c0.48279,-3.24875 -0.91532,-8.37839 0.64332,-10.55128c16.34338,0 32.6868,0 49.0302,0c-0.48172,3.25588 0.91423,8.38858 -0.64331,10.56913c-11.722,-0.07703 -23.43608,0.45157 -35.1586,0.1658zm24.67688,286.6952c-6.54985,-2.25 -11.37944,-9.11417 -10.08943,-16.07803c-0.23178,-33.13365 0.30627,-66.28789 -0.62375,-99.40492c-7.52885,-8.41364 -5.32481,11.97667 -5.61325,16.63527c-0.40672,29.85049 0.65932,59.77377 -0.79054,89.57779c-1.03221,6.81601 -14.93086,10.39682 -2.36958,9.16388c6.49333,0.08212 12.9946,0.3678 19.48656,0.10602z",
"recycle_2": "m70.51852,115.61727c18.49814,35.46731 22.10944,46.23824 15.99329,47.70097c-11.94749,2.85741 -9.54662,19.19937 7.17589,48.84396c20.97182,37.17758 62.04919,60.008 100.6335,55.93118c14.9762,-1.5824 31.90746,-4.84808 37.62502,-7.25717c5.71753,-2.40912 2.20903,2.0788 -7.79668,9.97308c-50.05432,39.49167 -111.87362,36.74075 -161.19199,-7.17288c-19.66416,-17.50925 -46.71899,-68.66641 -46.71899,-88.33963c0,-5.57329 -4.46041,-10.97359 -9.91201,-12.0006c-8.91546,-1.67957 -7.71816,-6.10193 11.90882,-43.98632c12.00147,-23.16548 23.29887,-43.78072 25.10535,-45.81163c1.80651,-2.03091 14.03651,16.92264 27.17781,42.11903zm159.00744,68.37661c-18.49815,-35.4673 -22.10944,-46.23827 -15.99332,-47.70097c11.94749,-2.85736 9.54663,-19.19936 -7.17586,-48.84396c-20.97183,-37.17759 -62.04924,-60.00801 -100.63353,-55.9312c-14.9762,1.58238 -31.90743,4.84812 -37.62498,7.25722c-5.71756,2.40907 -2.20905,-2.07883 7.79666,-9.9731c50.05433,-39.49169 111.87363,-36.74079 161.192,7.1729c19.66417,17.50919 46.71898,68.66639 46.71898,88.33957c0,5.57333 4.46045,10.97359 9.91199,12.0006c8.9155,1.6796 7.71817,6.10193 -11.90878,43.98634c-12.00146,23.16545 -23.29889,43.7807 -25.10535,45.81163c-1.80652,2.03091 -14.03651,-16.92262 -27.17781,-42.11902z",
"shield_1": "m235.43118,0.99993c-25.8405,20.89055 -61.5569,21.09333 -87.59367,0.62283c-25.04173,19.6952 -59.05148,20.25899 -84.60652,1.69064l-45.9514,49.35802c28.26655,30.91131 28.10226,80.57548 -0.48303,111.27486c-3.79379,10.48137 -5.78214,9.97594 -6.19602,20.53111c-0.97335,25.41245 4.72666,49.11902 22.58091,66.97356c15.9491,15.9491 37.5927,22.71344 58.38308,20.29993c34.71738,1.92664 51.36115,18.07672 58.34494,27.73621c9.4303,-10.32108 24.09528,-26.91339 68.66653,-28.98181c26.60716,-4.12497 36.22241,-10.78885 48.70973,-23.10918c16.80759,-16.80759 22.6846,-38.091 22.18927,-61.73892c-0.20569,-9.81746 -1.32416,-13.23065 -6.84674,-25.76584c-28.71786,-30.84172 -28.73875,-80.82797 -0.07623,-111.70699l-47.12085,-47.18442z",
"smoking": "m1.00013,234.70761c0,-6.75858 0,-13.51718 0,-20.27576c85.15819,0 170.31638,0 255.47457,0c0,13.51718 0,27.03435 0,40.55151c-85.15819,0 -170.31638,0 -255.47457,0c0,-6.75858 0,-13.51717 0,-20.27576zm262.90899,-0.33792c0,-6.87125 0,-13.74248 0,-20.61369c4.50577,0 9.01147,0 13.51718,0c0,13.74245 0,27.48491 0,41.22737c-4.50571,0 -9.01141,0 -13.51718,0c0,-6.87125 0,-13.74246 0,-20.61368zm21.62747,0c0,-6.87125 0,-13.74248 0,-20.61369c4.50574,0 9.01147,0 13.51718,0c0,13.74245 0,27.48491 0,41.22737c-4.50571,0 -9.01144,0 -13.51718,0c0,-6.87125 0,-13.74246 0,-20.61368zm-21.62747,-38.40129c2.33044,-12.44823 -4.64667,-27.35672 -18.89619,-26.91631c-16.51076,-0.91339 -33.27669,-0.16469 -49.68698,-1.22891c-15.92004,-5.44565 -24.6412,-22.87308 -22.39098,-39.09009c-2.60393,-4.6821 -13.75305,-3.34301 -18.33653,-8.47466c-22.34129,-12.77989 -25.34413,-47.04951 -6.6355,-64.35941c6.55362,-6.74706 19.10332,-12.28213 27.40872,-10.56472c0,4.27357 0,8.54715 0,12.82071c-17.16693,0.19163 -30.20795,18.71787 -25.17886,34.95034c3.93155,16.28817 21.44681,21.17548 36.06943,21.4035c9.34369,7.54165 -5.73552,20.54516 2.38481,30.40595c5.4973,13.38734 21.79352,9.01994 33.15524,10.07909c16.32292,0.98282 36.22006,-2.88133 48.06549,11.43753c10.15674,11.08647 7.03754,26.81902 7.55853,40.56599c-4.50571,0 -9.01141,0 -13.51718,0c0,-3.67633 0,-7.35268 0,-11.02902zm21.44409,-5.02264c1.06424,-17.34164 -3.94,-36.41237 -18.82684,-46.85637c-14.2328,-10.82034 -32.68178,-7.49533 -49.35545,-8.05716c-10.44089,-9.26265 6.69904,-19.729 4.85689,-30.88184c1.16321,-14.61189 -8.86084,-28.86267 -23.32887,-32.0012c-8.26547,0.48857 -11.4507,-1.71243 -9.8101,-9.54141c-2.56769,-10.66179 12.99852,-3.08173 18.15088,-2.147c18.80948,6.74871 31.28568,27.05275 28.30017,46.93802c-0.48553,7.00495 -7.28169,16.99163 4.77028,14.2243c23.42943,-1.23563 45.83046,13.98601 54.11491,35.81352c6.09546,15.43478 4.5502,32.30844 4.8287,48.56076c-4.44968,0 -8.89935,0 -13.34903,0c-0.11716,-5.35051 -0.23438,-10.70122 -0.35153,-16.05162z",
"stairs": "m2.18934,245.58681c17.86729,-0.11601 35.73457,-0.23204 53.60186,-0.34804c0.11764,-18.34987 0.23526,-36.69974 0.35289,-55.04959c17.78193,0 35.56387,0 53.34581,0c0,-18.46245 0,-36.9249 0,-55.38734c18.2373,0 36.47458,0 54.71188,0c0,-18.01214 0,-36.02428 0,-54.03642c18.01213,0 36.02426,0 54.03641,0c0,-18.01213 0,-36.02428 0,-54.03642c26.79306,0 53.58612,0 80.37918,0c0,9.00607 0,18.01214 0,27.01821c-17.78702,0 -35.57397,0 -53.36099,0c0,18.23729 0,36.47458 0,54.71188c-18.01212,0 -36.02425,0 -54.03641,0c0,18.2373 0,36.47459 0,54.71188c-18.01215,0 -36.02426,0 -54.03641,0c0,18.23729 0,36.47459 0,54.71185c-18.2373,0 -36.47459,0 -54.71187,0c0,18.46246 0,36.9249 0,55.38733c-27.01822,0 -54.03642,0 -81.05463,0c1.20448,-8.94977 -2.05336,-19.04163 0.77228,-27.68333z",
"umbrella": "m138.31999,1l0,29.565c-75.13835,4.16908 -134.31995,48.17229 -134.31999,101.835c0,-9.67107 16.35202,-17.51999 36.5,-17.51999c20.14798,0 36.5,7.84892 36.5,17.51999c0,-9.67107 16.35202,-17.51999 36.5,-17.51999c9.59525,0 18.30284,1.83565 24.81999,4.745l0,144.17499c0,6.44742 -5.23262,11.68002 -11.67999,11.68002c-6.44734,0 -11.68,-5.2326 -11.68,-11.68002l0,-5.84l-23.36,0l0,5.84c0,19.34207 15.6979,35.04001 35.04,35.04001c19.34206,0 35.04001,-15.69794 35.04001,-35.04001l0,-144.17499c6.51714,-2.90935 15.22475,-4.745 24.81999,-4.745c20.14798,0 36.5,7.84892 36.5,17.51999c0,-9.67107 16.35202,-17.51999 36.5,-17.51999c20.14798,0 36.5,7.84892 36.5,17.51999c0,-53.66274 -59.18159,-97.66592 -134.31999,-101.835l0,-29.565l-23.36002,0z",
"yin_yang": "m152.3828,1.00127c40.96666,0 74.20116,33.2665 74.20116,74.23316c0,40.96668 -33.2345,74.20117 -74.20116,74.20117c-40.96668,0 -74.20118,33.26653 -74.20118,74.23318c0,40.96667 33.2345,74.20117 74.20118,74.20117c81.93332,0 148.43431,-66.50104 148.43431,-148.43436c0,-81.93333 -66.50099,-148.43433 -148.43431,-148.43433zm0,51.0353c-12.80867,0 -23.19788,10.38917 -23.19788,23.19786c0,12.80871 10.38918,23.19786 23.19788,23.19786c12.80869,0 23.19785,-10.38917 23.19785,-23.19786c0,-12.80869 -10.38916,-23.19786 -23.19785,-23.19786zm0,148.43436c12.80206,0 23.19785,10.39577 23.19785,23.19786c0,12.80206 -10.39578,23.19788 -23.19785,23.19788c-12.80208,0 -23.19788,-10.39581 -23.19788,-23.19788c0,-12.80206 10.3958,-23.19786 23.19788,-23.19786zm145.10503,-50.94075c0,81.87245 -66.37071,148.24319 -148.24321,148.24319c-81.87246,0 -148.24321,-66.37074 -148.24321,-148.24319c0,-81.87248 66.37075,-148.24324 148.24321,-148.24324c81.8725,0 148.24321,66.37076 148.24321,148.24324z",
"diamonds": "m79.28394,70.5173l69.51914,-69.51918l69.53062,69.51918l-69.53062,69.5193l-69.51914,-69.5193zm-78.28265,78.73502l69.53064,-69.51916l69.51917,69.51916l-69.51917,69.53081l-69.53064,-69.53081zm158.04381,1.41991l69.53076,-69.50788l69.50775,69.50788l-69.50775,69.53059l-69.53076,-69.53059zm-78.26005,78.74646l69.50779,-69.51927l69.53087,69.51927l-69.53087,69.5197l-69.50779,-69.5197z",
"hand_stop": "m136.25574,297.49808c-29.33714,-5.08954 -54.45634,-27.86633 -62.06976,-56.71431c-3.62096,-14.72525 -1.50079,-30.17319 -2.21442,-45.21799c-0.13461,-38.62221 -0.20337,-77.24464 -0.30453,-115.86696c3.44471,-11.98872 17.98409,-18.29414 29.04424,-12.36688c0.96214,-3.14931 0.25692,-8.79729 0.59418,-12.8885c-1.96137,-11.24498 6.05913,-22.68389 17.70836,-23.44487c6.68523,-0.04347 14.68906,5.03699 11.64235,-6.21321c-2.06573,-11.58701 7.02885,-24.78486 19.46753,-23.71677c11.8866,-1.10308 20.91313,10.99307 19.47894,22.20545c0.55293,6.69356 15.04739,-4.38583 20.11427,3.0555c6.46245,3.83537 10.88301,11.15349 9.66263,18.71955c0.37462,20.72639 -0.50464,41.58417 0.94255,62.21075c10.62856,-5.38028 25.7729,1.23052 27.94981,13.06696c-0.24077,36.77421 0.61372,73.57438 -0.64664,110.32743c-4.27835,37.80429 -40.23309,69.77301 -78.61711,67.50256c-4.25351,0.01132 -8.54422,0.05313 -12.75241,-0.65872zm26.24695,-10.04156c32.22029,-5.44516 57.56776,-36.59567 55.75252,-69.35173c0.24638,-31.65953 1.24834,-63.36566 0.07516,-95.00381c-0.74966,-11.56753 -19.92574,-8.76712 -18.68594,1.90652c-0.00584,23.46449 -0.01172,46.92897 -0.01762,70.39346c-5.97046,6.15695 -16.65688,2.44864 -23.81619,7.45261c-15.91585,6.94403 -26.02902,23.94809 -26.37592,41.0688c-8.5842,13.31046 -12.47054,-8.35147 -7.54663,-15.48785c5.69263,-21.52615 25.72418,-37.58736 47.72688,-39.6965c-0.18001,-49.52237 0.46608,-99.06258 -0.57811,-148.57061c-6.22968,-14.02401 -23.68619,-1.72364 -19.04016,10.55674c-0.45773,37.44105 -0.04761,74.89084 -0.68825,112.32923c-4.16106,6.65674 -12.04573,0.3437 -9.47389,-5.79948c-0.17776,-46.90031 -0.35556,-93.80062 -0.53333,-140.70093c-3.33864,-8.28292 -18.12991,-6.98883 -18.3627,2.10197c-0.18286,48.40011 -0.36572,96.80021 -0.5486,145.20032c-3.89212,5.48285 -11.88664,0.71593 -9.73376,-5.26897c-0.14377,-36.45805 0.40013,-72.93186 -0.55034,-109.37686c-0.24316,-10.84745 -18.40633,-10.5788 -18.64873,-0.51889c-0.36327,37.37112 0.09734,74.76224 -0.99649,112.11712c1.02982,9.51479 -12.37218,4.97615 -9.28424,-2.22137c-0.16375,-25.39479 0.44627,-50.81747 -0.58949,-76.18918c-6.1088,-15.65501 -24.37704,-2.73073 -19.28278,10.2811c0.06127,45.03139 -0.41048,90.08521 0.72834,135.10263c2.79378,34.58762 36.09247,63.06729 70.73276,60.79437c3.26721,-0.13614 6.52469,-0.50925 9.73752,-1.11868z",
"man": "m125.90131,25.2503c0,-13.33112 10.79823,-24.12934 24.12934,-24.12934c13.33113,0 24.12932,10.79822 24.12932,24.12934c0,13.33112 -10.79819,24.12934 -24.12932,24.12934c-13.33113,0 -24.12934,-10.79822 -24.12934,-24.12934zm81.12696,68.30144v-12.18601c0,-12.82147 -10.38806,-23.21696 -23.21696,-23.21696h-67.63607c-12.82147,0 -23.21695,10.39549 -23.21695,23.21696v12.18601c-0.02242,0.2766 -0.03739,0.56071 -0.03739,0.84853v70.18918c0,5.4538 4.41839,9.87215 9.87218,9.87215c5.44633,0 9.87589,-4.41837 9.87589,-9.87215v-69.14999h6.62006v79.02961h0.04859v111.66646c0,7.25925 5.89491,13.15787 13.16164,13.15787c7.27048,0 13.16164,-5.89114 13.16164,-13.15787v-111.66646h8.68347v111.66646c0,7.25925 5.89856,13.15787 13.16162,13.15787c7.27045,0 13.16161,-5.89114 13.16161,-13.15787v-111.66646h0.04112v-79.02961h6.62007v69.14623c0,5.45381 4.42955,9.8759 9.8759,9.8759c5.45386,0 9.87218,-4.42209 9.87218,-9.8759v-70.18916c-0.00371,-0.29156 -0.02617,-0.56819 -0.0486,-0.8448z",
"sign_no": "m0.99794,149.99951l0,0c0,-82.29002 66.70967,-148.99969 148.99992,-148.99969l0,0c39.51779,0 77.41692,15.69819 105.35898,43.64116c27.94318,27.94297 43.64124,65.84185 43.64124,105.35853l0,0c0,82.29103 -66.7092,149.00024 -149.00021,149.00024l0,0c-82.29025,0 -148.99992,-66.70921 -148.99992,-149.00024zm240.6012,66.65504l0,0c32.80489,-45.08388 27.92851,-107.33437 -11.49672,-146.75905c-39.42525,-39.42501 -101.67574,-44.30139 -146.75847,-11.49616l158.25519,158.25521zm-183.20167,-133.30872c-32.80512,45.08364 -27.92886,107.33413 11.49615,146.75825c39.4249,39.42525 101.67541,44.30159 146.75814,11.49672l-158.2543,-158.25497z",
"skull": "m74.9404,81.44109c-2.88919,16.35929 -10.26919,31.99403 -10.76614,48.86361c0.66122,9.76746 -5.89156,15.01402 -14.86213,14.8293c-9.64813,10.00099 1.19087,25.80647 12.10749,29.84357c11.14103,7.47832 24.96226,-0.87791 35.99846,5.83044c14.65424,11.4554 20.77205,31.76607 15.71635,49.57211c-5.02672,14.69893 20.70476,9.35306 11.02628,-2.39693c-7.47506,-11.48471 14.09103,-7.68764 8.56998,3.21603c-1.04326,8.75262 6.45616,11.58562 3.11867,20.06531c8.69472,4.98558 -0.72885,7.77708 -6.02475,8.71843c-12.40178,6.18225 2.24324,-11.07452 -7.58144,-16.17874c-8.99694,1.95532 -2.90059,17.02136 -5.98875,15.28125c-6.3575,-4.97824 -6.35281,-23.59047 -17.02285,-11.44621c-3.54128,-14.96387 2.92009,-30.54814 -2.05737,-45.42514c2.03897,-11.11034 -15.50281,-14.9426 -13.28409,-2.05647c0.88449,19.66696 -5.0876,39.29475 -1.66005,58.86481c4.72071,12.07065 17.92378,17.50833 26.2104,26.82291c6.80557,7.18207 15.6284,14.86087 26.22089,12.5997c12.0141,-0.52078 24.05035,-1.63034 36.01024,0.2771c15.04311,0.47446 26.52666,-11.41623 39.36443,-17.5242c15.0918,-11.98355 12.71564,-33.38867 11.21118,-50.43889c-1.84476,-10.52664 2.20334,-21.05807 1.44894,-31.48618c-10.88037,-13.31276 -19.80722,10.08708 -16.70779,20.14043c-0.00076,12.64635 2.42783,28.93701 -9.63577,37.17496c-9.95572,-0.25104 -19.43069,3.36517 -29.4632,1.4744c-8.14081,4.83435 -21.32692,4.71021 -24.01404,-6.79811c-1.07281,-10.22015 3.55807,-20.93494 -2.73401,-30.47318c5.52835,4.7614 15.17361,-4.11226 9.79822,6.56248c-6.55643,8.68922 5.55173,22.07874 10.10989,9.25331c1.51227,-8.60512 -6.54141,-20.02596 6.69714,-18.18237c2.6998,3.03528 -9.21959,24.26701 7.07346,18.90152c11.61606,-2.54445 -2.06659,-20.76607 13.66382,-20.82939c7.61295,-8.9626 5.56317,-25.76184 17.20825,-32.56114c12.98419,-8.78706 33.2569,-2.44315 42.52423,-17.32399c7.89911,-7.61507 4.18182,-28.72154 -9.44128,-21.72794c-17.02448,1.65962 -3.51318,-23.0582 -3.98819,-32.32024c4.01126,-8.06691 -4.87137,-25.04774 -1.81268,-26.84933c5.77948,8.84253 7.84946,19.18484 6.60651,29.51878c-0.10681,8.76352 -3.8233,32.51385 8.36014,17.87288c4.12442,-10.20347 2.92487,-21.76073 5.86331,-32.37626c5.66748,-22.91865 -4.48026,-45.85004 -15.79309,-65.262c-9.63495,-10.45038 -21.86679,-18.78104 -33.35342,-26.98327c-19.32092,-7.26658 -40.65421,-8.56836 -61.06006,-6.74718c-18.04979,3.12863 -37.13738,6.42709 -51.51633,18.73374c-14.01352,8.25707 -27.43441,19.22373 -32.97453,35.08961c-4.82798,12.78156 -13.28239,25.798 -9.43994,39.99647c3.67479,11.83601 1.72576,24.12813 2.32075,36.22574c6.26442,13.82637 12.1788,-7.07504 11.59255,-13.98853c0.3468,-13.11021 7.26362,-24.71465 12.36033,-36.35318zm115.06042,28.12622c12.88235,0.92311 29.19336,8.09689 29.54492,23.0528c1.95883,15.00865 -10.16846,29.55684 -25.7099,28.08501c-14.11661,-1.15955 -23.14499,-13.35332 -22.20761,-27.06258c-4.7262,-9.82969 2.6286,-20.35741 12.49942,-22.61709c1.91415,-0.64365 3.88168,-1.12543 5.87317,-1.45815zm-86.93419,1.27835c14.94448,-2.65778 31.94749,6.61306 31.99739,23.15527c1.40359,15.99194 -15.57494,19.12508 -27.15695,23.1313c-8.01422,5.17467 -16.3391,0.35667 -22.99829,-4.85698c-8.63997,-9.0434 -6.10048,-27.26721 3.02245,-35.52229c4.42388,-3.27404 9.90028,-4.56108 15.1354,-5.9073zm51.1378,42.18812c7.2348,9.94383 15.92023,25.10751 6.56407,36.39339c-8.30571,6.66107 -9.35284,-9.47466 -18.07048,-1.8754c-8.17816,-7.1624 -0.63536,-21.73717 5.10291,-29.01329c1.8913,-2.09525 4.05559,-3.93987 6.4035,-5.5047z",
"raph_magic": "M23.043,4.649l-0.404-2.312l-1.59,1.727l-2.323-0.33l1.151,2.045l-1.032,2.108l2.302-0.463l1.686,1.633l0.271-2.332l2.074-1.099L23.043,4.649zM26.217,18.198l-0.182-1.25l-0.882,0.905l-1.245-0.214l0.588,1.118l-0.588,1.118l1.245-0.214l0.882,0.905l0.182-1.25l1.133-0.56L26.217,18.198zM4.92,7.672L5.868,7.3l0.844,0.569L6.65,6.853l0.802-0.627L6.467,5.97L6.118,5.013L5.571,5.872L4.553,5.908l0.647,0.786L4.92,7.672zM10.439,10.505l1.021-1.096l1.481,0.219l-0.727-1.31l0.667-1.341l-1.47,0.287l-1.069-1.048L10.16,7.703L8.832,8.396l1.358,0.632L10.439,10.505zM17.234,12.721c-0.588-0.368-1.172-0.618-1.692-0.729c-0.492-0.089-1.039-0.149-1.425,0.374L2.562,30.788h6.68l9.669-15.416c0.303-0.576,0.012-1.041-0.283-1.447C18.303,13.508,17.822,13.09,17.234,12.721zM13.613,21.936c-0.254-0.396-0.74-0.857-1.373-1.254c-0.632-0.396-1.258-0.634-1.726-0.69l4.421-7.052c0.064-0.013,0.262-0.021,0.543,0.066c0.346,0.092,0.785,0.285,1.225,0.562c0.504,0.313,0.908,0.677,1.133,0.97c0.113,0.145,0.178,0.271,0.195,0.335c0.002,0.006,0.004,0.011,0.004,0.015L13.613,21.936zx",
"raph_flag": "M26.04,9.508c0.138-0.533,0.15-1.407,0.028-1.943l-0.404-1.771c-0.122-0.536-0.665-1.052-1.207-1.146l-3.723-0.643c-0.542-0.094-1.429-0.091-1.97,0.007l-4.033,0.726c-0.542,0.098-1.429,0.108-1.973,0.023L8.812,4.146C8.817,4.165,8.826,4.182,8.83,4.201l2.701,12.831l1.236,0.214c0.542,0.094,1.428,0.09,1.97-0.007l4.032-0.727c0.541-0.097,1.429-0.107,1.973-0.022l4.329,0.675c0.544,0.085,0.906-0.288,0.807-0.829l-0.485-2.625c-0.1-0.541-0.069-1.419,0.068-1.952L26.04,9.508zM6.667,3.636C6.126,3.75,5.78,4.279,5.894,4.819l5.763,27.378H13.7L7.852,4.409C7.736,3.867,7.207,3.521,6.667,3.636zx"
}
}

View File

@ -1,59 +0,0 @@
{"size": 32,
"fill": true,
"data": {
"raph_star": "M15.999,22.77l-8.884,6.454l3.396-10.44l-8.882-6.454l10.979,0.002l2.918-8.977l0.476-1.458l3.39,10.433h10.982l-8.886,6.454l3.397,10.443L15.999,22.77L15.999,22.77z",
"raph_star2": "M30.373,12.329H19.391l-3.39-10.433l-0.476,1.458l-2.918,8.977L1.628,12.329l8.882,6.454l-3.396,10.44l8.884-6.454l8.886,6.457l-3.397-10.443L30.373,12.329z M17.175,21.151L16,20.298l-1.175,0.854l-3.902,2.834l1.49-4.584l0.45-1.382l-1.177-0.855l-3.9-2.834h6.275l0.45-1.381L16,8.366l1.489,4.581l0.449,1.381h6.281l-3.906,2.836l-1.178,0.854l0.449,1.384l1.493,4.584L17.175,21.151z",
"raph_page": "M23.024,5.673c-1.744-1.694-3.625-3.051-5.168-3.236c-0.084-0.012-0.171-0.019-0.263-0.021H7.438c-0.162,0-0.322,0.063-0.436,0.18C6.889,2.71,6.822,2.87,6.822,3.033v25.75c0,0.162,0.063,0.317,0.18,0.435c0.117,0.116,0.271,0.179,0.436,0.179h18.364c0.162,0,0.317-0.062,0.434-0.179c0.117-0.117,0.182-0.272,0.182-0.435V11.648C26.382,9.659,24.824,7.49,23.024,5.673zM25.184,28.164H8.052V3.646h9.542v0.002c0.416-0.025,0.775,0.386,1.05,1.326c0.25,0.895,0.313,2.062,0.312,2.871c0.002,0.593-0.027,0.991-0.027,0.991l-0.049,0.652l0.656,0.007c0.003,0,1.516,0.018,3,0.355c1.426,0.308,2.541,0.922,2.645,1.617c0.004,0.062,0.005,0.124,0.004,0.182V28.164z",
"raph_page2": "M23.024,5.673c-1.744-1.694-3.625-3.051-5.168-3.236c-0.084-0.012-0.171-0.019-0.263-0.021H7.438c-0.162,0-0.322,0.063-0.436,0.18C6.889,2.71,6.822,2.87,6.822,3.033v25.75c0,0.162,0.063,0.317,0.18,0.435c0.117,0.116,0.271,0.179,0.436,0.179h18.364c0.162,0,0.317-0.062,0.434-0.179c0.117-0.117,0.182-0.272,0.182-0.435V11.648C26.382,9.659,24.824,7.49,23.024,5.673zM22.157,6.545c0.805,0.786,1.529,1.676,2.069,2.534c-0.468-0.185-0.959-0.322-1.42-0.431c-1.015-0.228-2.008-0.32-2.625-0.357c0.003-0.133,0.004-0.283,0.004-0.446c0-0.869-0.055-2.108-0.356-3.2c-0.003-0.01-0.005-0.02-0.009-0.03C20.584,5.119,21.416,5.788,22.157,6.545zM25.184,28.164H8.052V3.646h9.542v0.002c0.416-0.025,0.775,0.386,1.05,1.326c0.25,0.895,0.313,2.062,0.312,2.871c0.002,0.593-0.027,0.991-0.027,0.991l-0.049,0.652l0.656,0.007c0.003,0,1.516,0.018,3,0.355c1.426,0.308,2.541,0.922,2.645,1.617c0.004,0.062,0.005,0.124,0.004,0.182V28.164z",
"raph_plugin": "M26.33,15.836l-3.893-1.545l3.136-7.9c0.28-0.705-0.064-1.505-0.771-1.785c-0.707-0.28-1.506,0.065-1.785,0.771l-3.136,7.9l-4.88-1.937l3.135-7.9c0.281-0.706-0.064-1.506-0.77-1.786c-0.706-0.279-1.506,0.065-1.785,0.771l-3.136,7.9L8.554,8.781l-1.614,4.066l2.15,0.854l-2.537,6.391c-0.61,1.54,0.143,3.283,1.683,3.895l1.626,0.646L8.985,26.84c-0.407,1.025,0.095,2.188,1.122,2.596l0.93,0.369c1.026,0.408,2.188-0.095,2.596-1.121l0.877-2.207l1.858,0.737c1.54,0.611,3.284-0.142,3.896-1.682l2.535-6.391l1.918,0.761L26.33,15.836z",
"raph_bookmark": "M17.396,1.841L6.076,25.986l7.341-4.566l1.186,8.564l11.32-24.146L17.396,1.841zM19.131,9.234c-0.562-0.264-0.805-0.933-0.541-1.495c0.265-0.562,0.934-0.805,1.496-0.541s0.805,0.934,0.541,1.496S19.694,9.498,19.131,9.234z",
"raph_users": "M21.053,20.8c-1.132-0.453-1.584-1.698-1.584-1.698s-0.51,0.282-0.51-0.51s0.51,0.51,1.02-2.548c0,0,1.414-0.397,1.132-3.68h-0.34c0,0,0.849-3.51,0-4.699c-0.85-1.189-1.189-1.981-3.058-2.548s-1.188-0.454-2.547-0.396c-1.359,0.057-2.492,0.792-2.492,1.188c0,0-0.849,0.057-1.188,0.397c-0.34,0.34-0.906,1.924-0.906,2.321s0.283,3.058,0.566,3.624l-0.337,0.113c-0.283,3.283,1.132,3.68,1.132,3.68c0.509,3.058,1.019,1.756,1.019,2.548s-0.51,0.51-0.51,0.51s-0.452,1.245-1.584,1.698c-1.132,0.452-7.416,2.886-7.927,3.396c-0.511,0.511-0.453,2.888-0.453,2.888h26.947c0,0,0.059-2.377-0.452-2.888C28.469,23.686,22.185,21.252,21.053,20.8zM8.583,20.628c-0.099-0.18-0.148-0.31-0.148-0.31s-0.432,0.239-0.432-0.432s0.432,0.432,0.864-2.159c0,0,1.199-0.336,0.959-3.119H9.538c0,0,0.143-0.591,0.237-1.334c-0.004-0.308,0.006-0.636,0.037-0.996l0.038-0.426c-0.021-0.492-0.107-0.939-0.312-1.226C8.818,9.619,8.53,8.947,6.947,8.467c-1.583-0.48-1.008-0.385-2.159-0.336C3.636,8.179,2.676,8.802,2.676,9.139c0,0-0.72,0.048-1.008,0.336c-0.271,0.271-0.705,1.462-0.757,1.885v0.281c0.047,0.653,0.258,2.449,0.469,2.872l-0.286,0.096c-0.239,2.783,0.959,3.119,0.959,3.119c0.432,2.591,0.864,1.488,0.864,2.159s-0.432,0.432-0.432,0.432s-0.383,1.057-1.343,1.439c-0.061,0.024-0.139,0.056-0.232,0.092v5.234h0.575c-0.029-1.278,0.077-2.927,0.746-3.594C2.587,23.135,3.754,22.551,8.583,20.628zM30.913,11.572c-0.04-0.378-0.127-0.715-0.292-0.946c-0.719-1.008-1.008-1.679-2.59-2.159c-1.584-0.48-1.008-0.385-2.16-0.336C24.72,8.179,23.76,8.802,23.76,9.139c0,0-0.719,0.048-1.008,0.336c-0.271,0.272-0.709,1.472-0.758,1.891h0.033l0.08,0.913c0.02,0.231,0.022,0.436,0.027,0.645c0.09,0.666,0.21,1.35,0.33,1.589l-0.286,0.096c-0.239,2.783,0.96,3.119,0.96,3.119c0.432,2.591,0.863,1.488,0.863,2.159s-0.432,0.432-0.432,0.432s-0.053,0.142-0.163,0.338c4.77,1.9,5.927,2.48,6.279,2.834c0.67,0.667,0.775,2.315,0.746,3.594h0.48v-5.306c-0.016-0.006-0.038-0.015-0.052-0.021c-0.959-0.383-1.343-1.439-1.343-1.439s-0.433,0.239-0.433-0.432s0.433,0.432,0.864-2.159c0,0,0.804-0.229,0.963-1.841v-1.227c-0.001-0.018-0.001-0.033-0.003-0.051h-0.289c0,0,0.215-0.89,0.292-1.861V11.572z",
"raph_user": "M20.771,12.364c0,0,0.849-3.51,0-4.699c-0.85-1.189-1.189-1.981-3.058-2.548s-1.188-0.454-2.547-0.396c-1.359,0.057-2.492,0.792-2.492,1.188c0,0-0.849,0.057-1.188,0.397c-0.34,0.34-0.906,1.924-0.906,2.321s0.283,3.058,0.566,3.624l-0.337,0.113c-0.283,3.283,1.132,3.68,1.132,3.68c0.509,3.058,1.019,1.756,1.019,2.548s-0.51,0.51-0.51,0.51s-0.452,1.245-1.584,1.698c-1.132,0.452-7.416,2.886-7.927,3.396c-0.511,0.511-0.453,2.888-0.453,2.888h26.947c0,0,0.059-2.377-0.452-2.888c-0.512-0.511-6.796-2.944-7.928-3.396c-1.132-0.453-1.584-1.698-1.584-1.698s-0.51,0.282-0.51-0.51s0.51,0.51,1.02-2.548c0,0,1.414-0.397,1.132-3.68H20.771z",
"raph_mail": "M28.516,7.167H3.482l12.517,7.108L28.516,7.167zM16.74,17.303C16.51,17.434,16.255,17.5,16,17.5s-0.51-0.066-0.741-0.197L2.5,10.06v14.773h27V10.06L16.74,17.303z",
"raph_picture": "M2.5,4.833v22.334h27V4.833H2.5zM25.25,25.25H6.75V6.75h18.5V25.25zM11.25,14c1.426,0,2.583-1.157,2.583-2.583c0-1.427-1.157-2.583-2.583-2.583c-1.427,0-2.583,1.157-2.583,2.583C8.667,12.843,9.823,14,11.25,14zM24.251,16.25l-4.917-4.917l-6.917,6.917L10.5,16.333l-2.752,2.752v5.165h16.503V16.25z",
"raph_home": "M27.812,16l-3.062-3.062V5.625h-2.625v4.688L16,4.188L4.188,16L7,15.933v11.942h17.875V16H27.812zM16,26.167h-5.833v-7H16V26.167zM21.667,23.167h-3.833v-4.042h3.833V23.167z",
"raph_view": "M16,8.286C8.454,8.286,2.5,16,2.5,16s5.954,7.715,13.5,7.715c5.771,0,13.5-7.715,13.5-7.715S21.771,8.286,16,8.286zM16,20.807c-2.649,0-4.807-2.157-4.807-4.807s2.158-4.807,4.807-4.807s4.807,2.158,4.807,4.807S18.649,20.807,16,20.807zM16,13.194c-1.549,0-2.806,1.256-2.806,2.806c0,1.55,1.256,2.806,2.806,2.806c1.55,0,2.806-1.256,2.806-2.806C18.806,14.451,17.55,13.194,16,13.194z",
"raph_noview": "M11.478,17.568c-0.172-0.494-0.285-1.017-0.285-1.568c0-2.65,2.158-4.807,4.807-4.807c0.552,0,1.074,0.113,1.568,0.285l2.283-2.283C18.541,8.647,17.227,8.286,16,8.286C8.454,8.286,2.5,16,2.5,16s2.167,2.791,5.53,5.017L11.478,17.568zM23.518,11.185l-3.056,3.056c0.217,0.546,0.345,1.138,0.345,1.76c0,2.648-2.158,4.807-4.807,4.807c-0.622,0-1.213-0.128-1.76-0.345l-2.469,2.47c1.327,0.479,2.745,0.783,4.229,0.783c5.771,0,13.5-7.715,13.5-7.715S26.859,13.374,23.518,11.185zM25.542,4.917L4.855,25.604L6.27,27.02L26.956,6.332L25.542,4.917z",
"raph_cloud": "M24.345,13.904c0.019-0.195,0.03-0.392,0.03-0.591c0-3.452-2.798-6.25-6.25-6.25c-2.679,0-4.958,1.689-5.847,4.059c-0.589-0.646-1.429-1.059-2.372-1.059c-1.778,0-3.219,1.441-3.219,3.219c0,0.21,0.023,0.415,0.062,0.613c-2.372,0.391-4.187,2.436-4.187,4.918c0,2.762,2.239,5,5,5h15.875c2.762,0,5-2.238,5-5C28.438,16.362,26.672,14.332,24.345,13.904z",
"raph_cloud2": "M7.562,24.812c-3.313,0-6-2.687-6-6l0,0c0.002-2.659,1.734-4.899,4.127-5.684l0,0c0.083-2.26,1.937-4.064,4.216-4.066l0,0c0.73,0,1.415,0.19,2.01,0.517l0,0c1.266-2.105,3.57-3.516,6.208-3.517l0,0c3.947,0.002,7.157,3.155,7.248,7.079l0,0c2.362,0.804,4.062,3.034,4.064,5.671l0,0c0,3.313-2.687,6-6,6l0,0H7.562L7.562,24.812zM24.163,14.887c-0.511-0.095-0.864-0.562-0.815-1.079l0,0c0.017-0.171,0.027-0.336,0.027-0.497l0,0c-0.007-2.899-2.352-5.245-5.251-5.249l0,0c-2.249-0.002-4.162,1.418-4.911,3.41l0,0c-0.122,0.323-0.406,0.564-0.748,0.63l0,0c-0.34,0.066-0.694-0.052-0.927-0.309l0,0c-0.416-0.453-0.986-0.731-1.633-0.731l0,0c-1.225,0.002-2.216,0.993-2.22,2.218l0,0c0,0.136,0.017,0.276,0.045,0.424l0,0c0.049,0.266-0.008,0.54-0.163,0.762l0,0c-0.155,0.223-0.392,0.371-0.657,0.414l0,0c-1.9,0.313-3.352,1.949-3.35,3.931l0,0c0.004,2.209,1.792,3.995,4.001,4.001l0,0h15.874c2.209-0.006,3.994-1.792,3.999-4.001l0,0C27.438,16.854,26.024,15.231,24.163,14.887L24.163,14.887",
"raph_cloudDown": "M24.345,13.904c0.019-0.195,0.03-0.392,0.03-0.591c0-3.452-2.798-6.25-6.25-6.25c-2.679,0-4.958,1.689-5.847,4.059c-0.589-0.646-1.429-1.059-2.372-1.059c-1.778,0-3.219,1.441-3.219,3.219c0,0.21,0.023,0.415,0.062,0.613c-2.372,0.391-4.187,2.436-4.187,4.918c0,2.762,2.239,5,5,5h3.404l-0.707-0.707c-0.377-0.377-0.585-0.879-0.585-1.413c0-0.533,0.208-1.035,0.585-1.412l0.556-0.557c0.4-0.399,0.937-0.628,1.471-0.628c0.027,0,0.054,0,0.08,0.002v-0.472c0-1.104,0.898-2.002,2-2.002h3.266c1.103,0,2,0.898,2,2.002v0.472c0.027-0.002,0.054-0.002,0.081-0.002c0.533,0,1.07,0.229,1.47,0.63l0.557,0.552c0.78,0.781,0.78,2.05,0,2.828l-0.706,0.707h2.403c2.762,0,5-2.238,5-5C28.438,16.362,26.672,14.332,24.345,13.904z M21.033,20.986l-0.556-0.555c-0.39-0.389-0.964-0.45-1.276-0.137c-0.312,0.312-0.568,0.118-0.568-0.432v-1.238c0-0.55-0.451-1-1-1h-3.265c-0.55,0-1,0.45-1,1v1.238c0,0.55-0.256,0.744-0.569,0.432c-0.312-0.313-0.887-0.252-1.276,0.137l-0.556,0.555c-0.39,0.389-0.39,1.024-0.001,1.413l4.328,4.331c0.194,0.194,0.451,0.291,0.707,0.291s0.512-0.097,0.707-0.291l4.327-4.331C21.424,22.011,21.423,21.375,21.033,20.986z",
"raph_cloudUp": "M24.345,13.904c0.019-0.195,0.03-0.392,0.03-0.591c0-3.452-2.798-6.25-6.25-6.25c-2.679,0-4.958,1.689-5.847,4.059c-0.589-0.646-1.429-1.059-2.372-1.059c-1.778,0-3.219,1.441-3.219,3.219c0,0.21,0.023,0.415,0.062,0.613c-2.372,0.391-4.187,2.436-4.187,4.918c0,2.762,2.239,5,5,5h2.312c-0.126-0.266-0.2-0.556-0.2-0.859c0-0.535,0.208-1.04,0.587-1.415l4.325-4.329c0.375-0.377,0.877-0.585,1.413-0.585c0.54,0,1.042,0.21,1.417,0.587l4.323,4.329c0.377,0.373,0.585,0.878,0.585,1.413c0,0.304-0.073,0.594-0.2,0.859h1.312c2.762,0,5-2.238,5-5C28.438,16.362,26.672,14.332,24.345,13.904z M16.706,17.916c-0.193-0.195-0.45-0.291-0.706-0.291s-0.512,0.096-0.707,0.291l-4.327,4.33c-0.39,0.389-0.389,1.025,0.001,1.414l0.556,0.555c0.39,0.389,0.964,0.449,1.276,0.137s0.568-0.119,0.568,0.432v1.238c0,0.549,0.451,1,1,1h3.265c0.551,0,1-0.451,1-1v-1.238c0-0.551,0.256-0.744,0.569-0.432c0.312,0.312,0.887,0.252,1.276-0.137l0.556-0.555c0.39-0.389,0.39-1.025,0.001-1.414L16.706,17.916z",
"raph_location": "M16,3.5c-4.142,0-7.5,3.358-7.5,7.5c0,4.143,7.5,18.121,7.5,18.121S23.5,15.143,23.5,11C23.5,6.858,20.143,3.5,16,3.5z M16,14.584c-1.979,0-3.584-1.604-3.584-3.584S14.021,7.416,16,7.416S19.584,9.021,19.584,11S17.979,14.584,16,14.584z",
"raph_volume0": "M4.998,12.127v7.896h4.495l6.729,5.526l0.004-18.948l-6.73,5.526H4.998z",
"raph_volume1": "M4.998,12.127v7.896h4.495l6.729,5.526l0.004-18.948l-6.73,5.526H4.998z M18.806,11.219c-0.393-0.389-1.024-0.389-1.415,0.002c-0.39,0.391-0.39,1.024,0.002,1.416v-0.002c0.863,0.864,1.395,2.049,1.395,3.366c0,1.316-0.531,2.497-1.393,3.361c-0.394,0.389-0.394,1.022-0.002,1.415c0.195,0.195,0.451,0.293,0.707,0.293c0.257,0,0.513-0.098,0.708-0.293c1.222-1.22,1.98-2.915,1.979-4.776C20.788,14.136,20.027,12.439,18.806,11.219z",
"raph_volume2": "M4.998,12.127v7.896h4.495l6.729,5.526l0.004-18.948l-6.73,5.526H4.998z M18.806,11.219c-0.393-0.389-1.024-0.389-1.415,0.002c-0.39,0.391-0.39,1.024,0.002,1.416v-0.002c0.863,0.864,1.395,2.049,1.395,3.366c0,1.316-0.531,2.497-1.393,3.361c-0.394,0.389-0.394,1.022-0.002,1.415c0.195,0.195,0.451,0.293,0.707,0.293c0.257,0,0.513-0.098,0.708-0.293c1.222-1.22,1.98-2.915,1.979-4.776C20.788,14.136,20.027,12.439,18.806,11.219z M21.101,8.925c-0.393-0.391-1.024-0.391-1.413,0c-0.392,0.391-0.392,1.025,0,1.414c1.45,1.451,2.344,3.447,2.344,5.661c0,2.212-0.894,4.207-2.342,5.659c-0.392,0.39-0.392,1.023,0,1.414c0.195,0.195,0.451,0.293,0.708,0.293c0.256,0,0.512-0.098,0.707-0.293c1.808-1.809,2.929-4.315,2.927-7.073C24.033,13.24,22.912,10.732,21.101,8.925z",
"raph_volume3": "M4.998,12.127v7.896h4.495l6.729,5.526l0.004-18.948l-6.73,5.526H4.998z M18.806,11.219c-0.393-0.389-1.024-0.389-1.415,0.002c-0.39,0.391-0.39,1.024,0.002,1.416v-0.002c0.863,0.864,1.395,2.049,1.395,3.366c0,1.316-0.531,2.497-1.393,3.361c-0.394,0.389-0.394,1.022-0.002,1.415c0.195,0.195,0.451,0.293,0.707,0.293c0.257,0,0.513-0.098,0.708-0.293c1.222-1.22,1.98-2.915,1.979-4.776C20.788,14.136,20.027,12.439,18.806,11.219z M21.101,8.925c-0.393-0.391-1.024-0.391-1.413,0c-0.392,0.391-0.392,1.025,0,1.414c1.45,1.451,2.344,3.447,2.344,5.661c0,2.212-0.894,4.207-2.342,5.659c-0.392,0.39-0.392,1.023,0,1.414c0.195,0.195,0.451,0.293,0.708,0.293c0.256,0,0.512-0.098,0.707-0.293c1.808-1.809,2.929-4.315,2.927-7.073C24.033,13.24,22.912,10.732,21.101,8.925z M23.28,6.746c-0.393-0.391-1.025-0.389-1.414,0.002c-0.391,0.389-0.391,1.023,0.002,1.413h-0.002c2.009,2.009,3.248,4.773,3.248,7.839c0,3.063-1.239,5.828-3.246,7.838c-0.391,0.39-0.391,1.023,0.002,1.415c0.194,0.194,0.45,0.291,0.706,0.291s0.513-0.098,0.708-0.293c2.363-2.366,3.831-5.643,3.829-9.251C27.115,12.389,25.647,9.111,23.28,6.746z",
"raph_key": "M18.386,16.009l0.009-0.006l-0.58-0.912c1.654-2.226,1.876-5.319,0.3-7.8c-2.043-3.213-6.303-4.161-9.516-2.118c-3.212,2.042-4.163,6.302-2.12,9.517c1.528,2.402,4.3,3.537,6.944,3.102l0.424,0.669l0.206,0.045l0.779-0.447l-0.305,1.377l2.483,0.552l-0.296,1.325l1.903,0.424l-0.68,3.06l1.406,0.313l-0.424,1.906l4.135,0.918l0.758-3.392L18.386,16.009z M10.996,8.944c-0.685,0.436-1.593,0.233-2.029-0.452C8.532,7.807,8.733,6.898,9.418,6.463s1.594-0.233,2.028,0.452C11.883,7.6,11.68,8.509,10.996,8.944z",
"raph_ruler": "M6.63,21.796l-5.122,5.121h25.743V1.175L6.63,21.796zM18.702,10.48c0.186-0.183,0.48-0.183,0.664,0l1.16,1.159c0.184,0.183,0.186,0.48,0.002,0.663c-0.092,0.091-0.213,0.137-0.332,0.137c-0.121,0-0.24-0.046-0.33-0.137l-1.164-1.159C18.519,10.96,18.519,10.664,18.702,10.48zM17.101,12.084c0.184-0.183,0.48-0.183,0.662,0l2.156,2.154c0.184,0.183,0.184,0.48,0.002,0.661c-0.092,0.092-0.213,0.139-0.334,0.139s-0.24-0.046-0.33-0.137l-2.156-2.154C16.917,12.564,16.917,12.267,17.101,12.084zM15.497,13.685c0.184-0.183,0.48-0.183,0.664,0l1.16,1.161c0.184,0.183,0.182,0.48-0.002,0.663c-0.092,0.092-0.211,0.138-0.33,0.138c-0.121,0-0.24-0.046-0.332-0.138l-1.16-1.16C15.314,14.166,15.314,13.868,15.497,13.685zM13.896,15.288c0.184-0.183,0.48-0.181,0.664,0.002l1.158,1.159c0.183,0.184,0.183,0.48,0,0.663c-0.092,0.092-0.212,0.138-0.332,0.138c-0.119,0-0.24-0.046-0.332-0.138l-1.158-1.161C13.713,15.767,13.713,15.471,13.896,15.288zM12.293,16.892c0.183-0.184,0.479-0.184,0.663,0l2.154,2.153c0.184,0.184,0.184,0.481,0,0.665c-0.092,0.092-0.211,0.138-0.33,0.138c-0.121,0-0.242-0.046-0.334-0.138l-2.153-2.155C12.11,17.371,12.11,17.075,12.293,16.892zM10.302,24.515c-0.091,0.093-0.212,0.139-0.332,0.139c-0.119,0-0.238-0.045-0.33-0.137l-2.154-2.153c-0.184-0.183-0.184-0.479,0-0.663s0.479-0.184,0.662,0l2.154,2.153C10.485,24.036,10.485,24.332,10.302,24.515zM10.912,21.918c-0.093,0.093-0.214,0.139-0.333,0.139c-0.12,0-0.24-0.045-0.33-0.137l-1.162-1.161c-0.184-0.183-0.184-0.479,0-0.66c0.184-0.185,0.48-0.187,0.664-0.003l1.161,1.162C11.095,21.438,11.095,21.735,10.912,21.918zM12.513,20.316c-0.092,0.092-0.211,0.138-0.332,0.138c-0.119,0-0.239-0.046-0.331-0.138l-1.159-1.16c-0.184-0.184-0.184-0.48,0-0.664s0.48-0.182,0.663,0.002l1.159,1.161C12.696,19.838,12.696,20.135,12.513,20.316zM22.25,21.917h-8.67l8.67-8.67V21.917zM22.13,10.7c-0.09,0.092-0.211,0.138-0.33,0.138c-0.121,0-0.242-0.046-0.334-0.138l-1.16-1.159c-0.184-0.183-0.184-0.479,0-0.663c0.182-0.183,0.479-0.183,0.662,0l1.16,1.159C22.312,10.221,22.313,10.517,22.13,10.7zM24.726,10.092c-0.092,0.092-0.213,0.137-0.332,0.137s-0.24-0.045-0.33-0.137l-2.154-2.154c-0.184-0.183-0.184-0.481,0-0.664s0.482-0.181,0.664,0.002l2.154,2.154C24.911,9.613,24.909,9.91,24.726,10.092z",
"raph_power": "M21.816,3.999c-0.993-0.481-2.189-0.068-2.673,0.927c-0.482,0.995-0.066,2.191,0.927,2.673c3.115,1.516,5.265,4.705,5.263,8.401c-0.01,5.154-4.18,9.324-9.333,9.333c-5.154-0.01-9.324-4.18-9.334-9.333c-0.002-3.698,2.149-6.89,5.267-8.403c0.995-0.482,1.408-1.678,0.927-2.673c-0.482-0.993-1.676-1.409-2.671-0.927C5.737,6.152,2.667,10.72,2.665,16C2.667,23.364,8.634,29.332,16,29.334c7.365-0.002,13.333-5.97,13.334-13.334C29.332,10.722,26.266,6.157,21.816,3.999z M16,13.833c1.104,0,1.999-0.894,1.999-2V2.499C17.999,1.394,17.104,0.5,16,0.5c-1.106,0-2,0.895-2,1.999v9.333C14,12.938,14.894,13.833,16,13.833z",
"raph_unlock": "M20.375,12.833h-2.209V10c0,0,0,0,0-0.001c0-2.389,1.945-4.333,4.334-4.333c2.391,0,4.335,1.944,4.335,4.333c0,0,0,0,0,0v2.834h2V9.999h-0.001c-0.001-3.498-2.836-6.333-6.334-6.333S16.166,6.502,16.166,10v2.833H3.125V25h17.25V12.833z",
"raph_tag": "M14.263,2.826H7.904L2.702,8.028v6.359L18.405,30.09l11.561-11.562L14.263,2.826zM6.495,8.859c-0.619-0.619-0.619-1.622,0-2.24C7.114,6,8.117,6,8.736,6.619c0.62,0.62,0.619,1.621,0,2.241C8.117,9.479,7.114,9.479,6.495,8.859z",
"raph_search": "M29.772,26.433l-7.126-7.126c0.96-1.583,1.523-3.435,1.524-5.421C24.169,8.093,19.478,3.401,13.688,3.399C7.897,3.401,3.204,8.093,3.204,13.885c0,5.789,4.693,10.481,10.484,10.481c1.987,0,3.839-0.563,5.422-1.523l7.128,7.127L29.772,26.433zM7.203,13.885c0.006-3.582,2.903-6.478,6.484-6.486c3.579,0.008,6.478,2.904,6.484,6.486c-0.007,3.58-2.905,6.476-6.484,6.484C10.106,20.361,7.209,17.465,7.203,13.885z",
"raph_zoomout": "M22.646,19.307c0.96-1.583,1.523-3.435,1.524-5.421C24.169,8.093,19.478,3.401,13.688,3.399C7.897,3.401,3.204,8.093,3.204,13.885c0,5.789,4.693,10.481,10.484,10.481c1.987,0,3.839-0.563,5.422-1.523l7.128,7.127l3.535-3.537L22.646,19.307zM13.688,20.369c-3.582-0.008-6.478-2.904-6.484-6.484c0.006-3.582,2.903-6.478,6.484-6.486c3.579,0.008,6.478,2.904,6.484,6.486C20.165,17.465,17.267,20.361,13.688,20.369zM8.854,11.884v4.001l9.665-0.001v-3.999L8.854,11.884z",
"raph_zoomin": "M22.646,19.307c0.96-1.583,1.523-3.435,1.524-5.421C24.169,8.093,19.478,3.401,13.688,3.399C7.897,3.401,3.204,8.093,3.204,13.885c0,5.789,4.693,10.481,10.484,10.481c1.987,0,3.839-0.563,5.422-1.523l7.128,7.127l3.535-3.537L22.646,19.307zM13.688,20.369c-3.582-0.008-6.478-2.904-6.484-6.484c0.006-3.582,2.903-6.478,6.484-6.486c3.579,0.008,6.478,2.904,6.484,6.486C20.165,17.465,17.267,20.361,13.688,20.369zM15.687,9.051h-4v2.833H8.854v4.001h2.833v2.833h4v-2.834h2.832v-3.999h-2.833V9.051z",
"raph_cross": "M24.778,21.419 19.276,15.917 24.777,10.415 21.949,7.585 16.447,13.087 10.945,7.585 8.117,10.415 13.618,15.917 8.116,21.419 10.946,24.248 16.447,18.746 21.948,24.248",
"raph_check": "M2.379,14.729 5.208,11.899 12.958,19.648 25.877,6.733 28.707,9.561 12.958,25.308",
"raph_settings": "M16.015,12.03c-2.156,0-3.903,1.747-3.903,3.903c0,2.155,1.747,3.903,3.903,3.903c0.494,0,0.962-0.102,1.397-0.27l0.836,1.285l1.359-0.885l-0.831-1.276c0.705-0.706,1.142-1.681,1.142-2.757C19.918,13.777,18.171,12.03,16.015,12.03zM16,1.466C7.973,1.466,1.466,7.973,1.466,16c0,8.027,6.507,14.534,14.534,14.534c8.027,0,14.534-6.507,14.534-14.534C30.534,7.973,24.027,1.466,16,1.466zM26.174,20.809c-0.241,0.504-0.513,0.99-0.826,1.45L22.19,21.58c-0.481,0.526-1.029,0.994-1.634,1.385l0.119,3.202c-0.507,0.23-1.028,0.421-1.569,0.57l-1.955-2.514c-0.372,0.051-0.75,0.086-1.136,0.086c-0.356,0-0.706-0.029-1.051-0.074l-1.945,2.5c-0.541-0.151-1.065-0.342-1.57-0.569l0.117-3.146c-0.634-0.398-1.208-0.88-1.712-1.427L6.78,22.251c-0.313-0.456-0.583-0.944-0.826-1.448l2.088-2.309c-0.226-0.703-0.354-1.451-0.385-2.223l-2.768-1.464c0.055-0.563,0.165-1.107,0.301-1.643l3.084-0.427c0.29-0.702,0.675-1.352,1.135-1.942L8.227,7.894c0.399-0.389,0.83-0.744,1.283-1.07l2.663,1.672c0.65-0.337,1.349-0.593,2.085-0.75l0.968-3.001c0.278-0.021,0.555-0.042,0.837-0.042c0.282,0,0.56,0.022,0.837,0.042l0.976,3.028c0.72,0.163,1.401,0.416,2.036,0.75l2.704-1.697c0.455,0.326,0.887,0.681,1.285,1.07l-1.216,2.986c0.428,0.564,0.793,1.181,1.068,1.845l3.185,0.441c0.135,0.535,0.247,1.081,0.302,1.643l-2.867,1.516c-0.034,0.726-0.15,1.43-0.355,2.1L26.174,20.809z",
"raph_settingsalt": "M16,1.466C7.973,1.466,1.466,7.973,1.466,16c0,8.027,6.507,14.534,14.534,14.534c8.027,0,14.534-6.507,14.534-14.534C30.534,7.973,24.027,1.466,16,1.466zM24.386,14.968c-1.451,1.669-3.706,2.221-5.685,1.586l-7.188,8.266c-0.766,0.88-2.099,0.97-2.979,0.205s-0.973-2.099-0.208-2.979l7.198-8.275c-0.893-1.865-0.657-4.164,0.787-5.824c1.367-1.575,3.453-2.151,5.348-1.674l-2.754,3.212l0.901,2.621l2.722,0.529l2.761-3.22C26.037,11.229,25.762,13.387,24.386,14.968z",
"raph_bug": "M28.589,10.903l-5.828,1.612c-0.534-1.419-1.338-2.649-2.311-3.628l3.082-5.44c0.271-0.48,0.104-1.092-0.38-1.365c-0.479-0.271-1.09-0.102-1.36,0.377l-2.924,5.162c-0.604-0.383-1.24-0.689-1.9-0.896c-0.416-1.437-1.652-2.411-3.058-2.562c-0.001-0.004-0.002-0.008-0.003-0.012c-0.061-0.242-0.093-0.46-0.098-0.65c-0.005-0.189,0.012-0.351,0.046-0.479c0.037-0.13,0.079-0.235,0.125-0.317c0.146-0.26,0.34-0.43,0.577-0.509c0.023,0.281,0.142,0.482,0.352,0.601c0.155,0.088,0.336,0.115,0.546,0.086c0.211-0.031,0.376-0.152,0.496-0.363c0.105-0.186,0.127-0.389,0.064-0.607c-0.064-0.219-0.203-0.388-0.414-0.507c-0.154-0.087-0.314-0.131-0.482-0.129c-0.167,0.001-0.327,0.034-0.481,0.097c-0.153,0.063-0.296,0.16-0.429,0.289c-0.132,0.129-0.241,0.271-0.33,0.426c-0.132,0.234-0.216,0.496-0.25,0.783c-0.033,0.286-0.037,0.565-0.009,0.84c0.017,0.16,0.061,0.301,0.094,0.449c-0.375-0.021-0.758,0.002-1.14,0.108c-0.482,0.133-0.913,0.36-1.28,0.653c-0.052-0.172-0.098-0.344-0.18-0.518c-0.116-0.249-0.263-0.486-0.438-0.716c-0.178-0.229-0.384-0.41-0.618-0.543C9.904,3.059,9.737,2.994,9.557,2.951c-0.18-0.043-0.352-0.052-0.516-0.027s-0.318,0.08-0.463,0.164C8.432,3.172,8.318,3.293,8.23,3.445C8.111,3.656,8.08,3.873,8.136,4.092c0.058,0.221,0.181,0.384,0.367,0.49c0.21,0.119,0.415,0.138,0.611,0.056C9.31,4.556,9.451,4.439,9.539,4.283c0.119-0.21,0.118-0.443-0.007-0.695c0.244-0.055,0.497-0.008,0.757,0.141c0.081,0.045,0.171,0.115,0.27,0.208c0.097,0.092,0.193,0.222,0.286,0.388c0.094,0.166,0.179,0.368,0.251,0.608c0.013,0.044,0.023,0.098,0.035,0.146c-0.911,0.828-1.357,2.088-1.098,3.357c-0.582,0.584-1.072,1.27-1.457,2.035l-5.16-2.926c-0.48-0.271-1.092-0.102-1.364,0.377C1.781,8.404,1.95,9.016,2.43,9.289l5.441,3.082c-0.331,1.34-0.387,2.807-0.117,4.297l-5.828,1.613c-0.534,0.147-0.846,0.699-0.698,1.231c0.147,0.53,0.697,0.843,1.231,0.694l5.879-1.627c0.503,1.057,1.363,2.28,2.371,3.443l-3.194,5.639c-0.272,0.481-0.104,1.092,0.378,1.363c0.239,0.137,0.512,0.162,0.758,0.094c0.248-0.068,0.469-0.229,0.604-0.471l2.895-5.109c2.7,2.594,5.684,4.123,5.778,1.053c1.598,2.56,3.451-0.338,4.502-3.976l5.203,2.947c0.24,0.138,0.514,0.162,0.762,0.094c0.246-0.067,0.467-0.229,0.603-0.471c0.272-0.479,0.104-1.091-0.377-1.362l-5.701-3.229c0.291-1.505,0.422-2.983,0.319-4.138l5.886-1.627c0.53-0.147,0.847-0.697,0.696-1.229C29.673,11.068,29.121,10.756,28.589,10.903z",
"raph_link": "M15.667,4.601c-1.684,1.685-2.34,3.985-2.025,6.173l3.122-3.122c0.004-0.005,0.014-0.008,0.016-0.012c0.21-0.403,0.464-0.789,0.802-1.126c1.774-1.776,4.651-1.775,6.428,0c1.775,1.773,1.777,4.652,0.002,6.429c-0.34,0.34-0.727,0.593-1.131,0.804c-0.004,0.002-0.006,0.006-0.01,0.01l-3.123,3.123c2.188,0.316,4.492-0.34,6.176-2.023c2.832-2.832,2.83-7.423,0-10.255C23.09,1.77,18.499,1.77,15.667,4.601zM14.557,22.067c-0.209,0.405-0.462,0.791-0.801,1.131c-1.775,1.774-4.656,1.774-6.431,0c-1.775-1.774-1.775-4.653,0-6.43c0.339-0.338,0.725-0.591,1.128-0.8c0.004-0.006,0.005-0.012,0.011-0.016l3.121-3.123c-2.187-0.316-4.489,0.342-6.172,2.024c-2.831,2.831-2.83,7.423,0,10.255c2.833,2.831,7.424,2.831,10.257,0c1.684-1.684,2.342-3.986,2.023-6.175l-3.125,3.123C14.565,22.063,14.561,22.065,14.557,22.067zM9.441,18.885l2.197,2.197c0.537,0.537,1.417,0.537,1.953,0l8.302-8.302c0.539-0.536,0.539-1.417,0.002-1.952l-2.199-2.197c-0.536-0.539-1.416-0.539-1.952-0.002l-8.302,8.303C8.904,17.469,8.904,18.349,9.441,18.885z",
"raph_calendar": "M11.758,15.318c0.312-0.3,0.408-0.492,0.408-0.492h0.024c0,0-0.012,0.264-0.012,0.528v5.469h-1.871v1.031h4.87v-1.031H13.33v-7.436h-1.055l-2.027,1.967l0.719,0.744L11.758,15.318zM16.163,21.207c0,0.205,0.024,0.42,0.06,0.647h5.457v-1.031h-4.197c0.023-1.931,4.065-2.362,4.065-5.146c0-1.463-1.114-2.436-2.674-2.436c-1.907,0-2.675,1.607-2.675,1.607l0.875,0.587c0,0,0.6-1.08,1.716-1.08c0.887,0,1.522,0.563,1.522,1.403C20.312,17.754,16.163,18.186,16.163,21.207zM12,3.604h-2v3.335h2V3.604zM23,4.77v3.17h-4V4.77h-6v3.168H9.002V4.77H6.583v21.669h18.833V4.77H23zM24.417,25.438H7.584V10.522h16.833V25.438zM22,3.604h-2v3.335h2V3.604z",
"raph_picker": "M22.221,10.853c-0.111-0.414-0.261-0.412,0.221-1.539l1.66-3.519c0.021-0.051,0.2-0.412,0.192-0.946c0.015-0.529-0.313-1.289-1.119-1.642c-1.172-0.555-1.17-0.557-2.344-1.107c-0.784-0.396-1.581-0.171-1.979,0.179c-0.42,0.333-0.584,0.7-0.609,0.75L16.58,6.545c-0.564,1.084-0.655,0.97-1.048,1.147c-0.469,0.129-1.244,0.558-1.785,1.815c-1.108,2.346-1.108,2.346-1.108,2.346l-0.276,0.586l1.17,0.553l-3.599,7.623c-0.38,0.828-0.166,1.436-0.166,2.032c0.01,0.627-0.077,1.509-0.876,3.21l-0.276,0.586l3.517,1.661l0.276-0.585c0.808-1.699,1.431-2.326,1.922-2.717c0.46-0.381,1.066-0.6,1.465-1.42l3.599-7.618l1.172,0.554l0.279-0.589c0,0,0,0,1.105-2.345C22.578,12.166,22.419,11.301,22.221,10.853zM14.623,22.83c-0.156,0.353-0.413,0.439-1.091,0.955c-0.577,0.448-1.264,1.172-2.009,2.6l-1.191-0.562c0.628-1.48,0.75-2.474,0.73-3.203c-0.031-0.851-0.128-1.104,0.045-1.449l3.599-7.621l3.517,1.662L14.623,22.83z",
"raph_no": "M16,2.939C9.006,2.942,3.338,8.61,3.335,15.605C3.335,22.6,9.005,28.268,16,28.27c6.994-0.002,12.662-5.67,12.664-12.664C28.663,8.61,22.995,2.939,16,2.939zM25.663,15.605c-0.003,1.943-0.583,3.748-1.569,5.264L10.736,7.513c1.515-0.988,3.32-1.569,5.265-1.573C21.337,5.951,25.654,10.269,25.663,15.605zM6.335,15.605c0.004-1.943,0.584-3.75,1.573-5.266l13.355,13.357c-1.516,0.986-3.32,1.566-5.264,1.569C10.664,25.26,6.346,20.941,6.335,15.605z",
"raph_commandline": "M2.021,9.748L2.021,9.748V9.746V9.748zM2.022,9.746l5.771,5.773l-5.772,5.771l2.122,2.123l7.894-7.895L4.143,7.623L2.022,9.746zM12.248,23.269h14.419V20.27H12.248V23.269zM16.583,17.019h10.084V14.02H16.583V17.019zM12.248,7.769v3.001h14.419V7.769H12.248z",
"raph_photo": "M24.25,10.25H20.5v-1.5h-9.375v1.5h-3.75c-1.104,0-2,0.896-2,2v10.375c0,1.104,0.896,2,2,2H24.25c1.104,0,2-0.896,2-2V12.25C26.25,11.146,25.354,10.25,24.25,10.25zM15.812,23.499c-3.342,0-6.06-2.719-6.06-6.061c0-3.342,2.718-6.062,6.06-6.062s6.062,2.72,6.062,6.062C21.874,20.78,19.153,23.499,15.812,23.499zM15.812,13.375c-2.244,0-4.062,1.819-4.062,4.062c0,2.244,1.819,4.062,4.062,4.062c2.244,0,4.062-1.818,4.062-4.062C19.875,15.194,18.057,13.375,15.812,13.375z",
"raph_printer": "M24.569,12.125h-2.12c-0.207-1.34-1.247-2.759-2.444-3.967c-1.277-1.24-2.654-2.234-3.784-2.37c-0.062-0.008-0.124-0.014-0.198-0.015H8.594c-0.119,0-0.235,0.047-0.319,0.132c-0.083,0.083-0.132,0.2-0.132,0.32v5.9H6.069c-1.104,0-2,0.896-2,2V23h4.074v2.079c0,0.118,0.046,0.23,0.132,0.318c0.086,0.085,0.199,0.131,0.319,0.131h13.445c0.118,0,0.232-0.046,0.318-0.131s0.138-0.199,0.138-0.318V23h4.074v-8.875C26.569,13.021,25.674,12.125,24.569,12.125zM21.589,24.626H9.043V21.5h12.546V24.626zM21.589,13.921c0-0.03,0-0.063-0.003-0.096c-0.015-0.068-0.062-0.135-0.124-0.2H9.043v-6.95h6.987v0.001c0.305-0.019,0.567,0.282,0.769,0.971c0.183,0.655,0.229,1.509,0.229,2.102c0.001,0.433-0.019,0.725-0.019,0.725l-0.037,0.478l0.48,0.005c0.002,0,1.109,0.014,2.196,0.26c1.044,0.226,1.86,0.675,1.938,1.184c0.003,0.045,0.003,0.091,0.003,0.133V13.921z",
"export": "M24.086,20.904c-1.805,3.113-5.163,5.212-9.023,5.219c-5.766-0.01-10.427-4.672-10.438-10.435C4.636,9.922,9.297,5.261,15.063,5.25c3.859,0.007,7.216,2.105,9.022,5.218l3.962,2.284l0.143,0.082C26.879,6.784,21.504,2.25,15.063,2.248C7.64,2.25,1.625,8.265,1.624,15.688c0.002,7.42,6.017,13.435,13.439,13.437c6.442-0.002,11.819-4.538,13.127-10.589l-0.141,0.081L24.086,20.904zM28.4,15.688l-7.15-4.129v2.297H10.275v3.661H21.25v2.297L28.4,15.688z",
"import": "M15.067,2.25c-5.979,0-11.035,3.91-12.778,9.309h3.213c1.602-3.705,5.271-6.301,9.565-6.309c5.764,0.01,10.428,4.674,10.437,10.437c-0.009,5.764-4.673,10.428-10.437,10.438c-4.294-0.007-7.964-2.605-9.566-6.311H2.289c1.744,5.399,6.799,9.31,12.779,9.312c7.419-0.002,13.437-6.016,13.438-13.438C28.504,8.265,22.486,2.252,15.067,2.25zM10.918,19.813l7.15-4.126l-7.15-4.129v2.297H-0.057v3.661h10.975V19.813z",
"raph_run": "M17.41,20.395l-0.778-2.723c0.228-0.2,0.442-0.414,0.644-0.643l2.721,0.778c0.287-0.418,0.534-0.862,0.755-1.323l-2.025-1.96c0.097-0.288,0.181-0.581,0.241-0.883l2.729-0.684c0.02-0.252,0.039-0.505,0.039-0.763s-0.02-0.51-0.039-0.762l-2.729-0.684c-0.061-0.302-0.145-0.595-0.241-0.883l2.026-1.96c-0.222-0.46-0.469-0.905-0.756-1.323l-2.721,0.777c-0.201-0.228-0.416-0.442-0.644-0.643l0.778-2.722c-0.418-0.286-0.863-0.534-1.324-0.755l-1.96,2.026c-0.287-0.097-0.581-0.18-0.883-0.241l-0.683-2.73c-0.253-0.019-0.505-0.039-0.763-0.039s-0.51,0.02-0.762,0.039l-0.684,2.73c-0.302,0.061-0.595,0.144-0.883,0.241l-1.96-2.026C7.048,3.463,6.604,3.71,6.186,3.997l0.778,2.722C6.736,6.919,6.521,7.134,6.321,7.361L3.599,6.583C3.312,7.001,3.065,7.446,2.844,7.907l2.026,1.96c-0.096,0.288-0.18,0.581-0.241,0.883l-2.73,0.684c-0.019,0.252-0.039,0.505-0.039,0.762s0.02,0.51,0.039,0.763l2.73,0.684c0.061,0.302,0.145,0.595,0.241,0.883l-2.026,1.96c0.221,0.46,0.468,0.905,0.755,1.323l2.722-0.778c0.2,0.229,0.415,0.442,0.643,0.643l-0.778,2.723c0.418,0.286,0.863,0.533,1.323,0.755l1.96-2.026c0.288,0.097,0.581,0.181,0.883,0.241l0.684,2.729c0.252,0.02,0.505,0.039,0.763,0.039s0.51-0.02,0.763-0.039l0.683-2.729c0.302-0.061,0.596-0.145,0.883-0.241l1.96,2.026C16.547,20.928,16.992,20.681,17.41,20.395zM11.798,15.594c-1.877,0-3.399-1.522-3.399-3.399s1.522-3.398,3.399-3.398s3.398,1.521,3.398,3.398S13.675,15.594,11.798,15.594zM27.29,22.699c0.019-0.547-0.06-1.104-0.23-1.654l1.244-1.773c-0.188-0.35-0.4-0.682-0.641-0.984l-2.122,0.445c-0.428-0.364-0.915-0.648-1.436-0.851l-0.611-2.079c-0.386-0.068-0.777-0.105-1.173-0.106l-0.974,1.936c-0.279,0.054-0.558,0.128-0.832,0.233c-0.257,0.098-0.497,0.22-0.727,0.353L17.782,17.4c-0.297,0.262-0.568,0.545-0.813,0.852l0.907,1.968c-0.259,0.495-0.437,1.028-0.519,1.585l-1.891,1.06c0.019,0.388,0.076,0.776,0.164,1.165l2.104,0.519c0.231,0.524,0.541,0.993,0.916,1.393l-0.352,2.138c0.32,0.23,0.66,0.428,1.013,0.6l1.715-1.32c0.536,0.141,1.097,0.195,1.662,0.15l1.452,1.607c0.2-0.057,0.399-0.118,0.596-0.193c0.175-0.066,0.34-0.144,0.505-0.223l0.037-2.165c0.455-0.339,0.843-0.747,1.152-1.206l2.161-0.134c0.152-0.359,0.279-0.732,0.368-1.115L27.29,22.699zM23.127,24.706c-1.201,0.458-2.545-0.144-3.004-1.345s0.143-2.546,1.344-3.005c1.201-0.458,2.547,0.144,3.006,1.345C24.931,22.902,24.328,24.247,23.127,24.706z",
"raph_magnet": "M20.812,19.5h5.002v-6.867c-0.028-1.706-0.61-3.807-2.172-5.841c-1.539-2.014-4.315-3.72-7.939-3.687C12.076,3.073,9.3,4.779,7.762,6.792C6.2,8.826,5.617,10.928,5.588,12.634V19.5h5v-6.866c-0.027-0.377,0.303-1.789,1.099-2.748c0.819-0.979,1.848-1.747,4.014-1.778c2.165,0.032,3.195,0.799,4.013,1.778c0.798,0.959,1.126,2.372,1.099,2.748V19.5L20.812,19.5zM25.814,25.579c0,0,0-2.354,0-5.079h-5.002c0,2.727,0,5.08,0,5.08l5.004-0.001H25.814zM5.588,25.58h5c0,0,0-2.354,0-5.08h-5C5.588,23.227,5.588,25.58,5.588,25.58z",
"raph_nomagnet": "M10.59,17.857v-5.225c-0.027-0.376,0.303-1.789,1.099-2.748c0.819-0.979,1.849-1.748,4.014-1.778c1.704,0.026,2.699,0.508,3.447,1.189l3.539-3.539c-1.616-1.526-4.01-2.679-6.986-2.652C12.077,3.073,9.3,4.779,7.762,6.793C6.2,8.826,5.617,10.928,5.59,12.634V19.5h3.357L10.59,17.857zM5.59,20.5v2.357L7.947,20.5H5.59zM20.812,13.29v6.21h5.002v-6.866c-0.021-1.064-0.252-2.283-0.803-3.542L20.812,13.29zM25.339,4.522L4.652,25.209l1.415,1.416L26.753,5.937L25.339,4.522zM20.812,25.58h5.002c0,0,0-2.354,0-5.08h-5.002C20.812,23.227,20.812,25.58,20.812,25.58zM10.59,25.58c0,0,0-0.827,0-2.064L8.525,25.58H10.59z",
"raph_flip": "M15.5,21.082h1.001v-2.001H15.5V21.082zM15.5,25.082h1.001v-2H15.5V25.082zM15.5,29.082h1.001v-2H15.5V29.082zM15.5,32.127h1.001v-1.045H15.5V32.127zM15.5,17.083h1.001v-2H15.5V17.083zM15.5,1.083h1.001v-2H15.5V1.083zM15.5,5.083h1.001v-2H15.5V5.083zM15.5,9.083h1.001v-2H15.5V9.083zM15.5,13.083h1.001v-2H15.5V13.083zM18.832,1.203v25.962h14.093L18.832,1.203zM19.832,5.136l11.41,21.03h-11.41V5.136zM13.113,27.165V1.203L-0.979,27.165H13.113z",
"raph_flipv": "M21.45,16.078v-1.001h-2.001v1.001H21.45zM25.45,16.078v-1.001h-2v1.001H25.45zM29.45,16.078v-1.001h-2v1.001H29.45zM32.495,16.078v-1.001H31.45v1.001H32.495zM17.451,16.078v-1.001h-2v1.001H17.451zM1.451,16.078v-1.001h-2v1.001H1.451zM5.451,16.078v-1.001h-2v1.001H5.451zM9.452,16.078v-1.001h-2v1.001H9.452zM13.452,16.078v-1.001h-2v1.001H13.452zM1.571,12.745h25.962V-1.348L1.571,12.745zM5.504,11.745l21.03-11.41v11.41H5.504zM27.533,18.464H1.571l25.962,14.093V18.464z",
"raph_connect": "M25.06,13.719c-0.944-5.172-5.461-9.094-10.903-9.094v4c3.917,0.006,7.085,3.176,7.094,7.094c-0.009,3.917-3.177,7.085-7.094,7.093v4.002c5.442-0.004,9.959-3.926,10.903-9.096h4.69v-3.999H25.06zM20.375,15.719c0-3.435-2.784-6.219-6.219-6.219c-2.733,0-5.05,1.766-5.884,4.218H1.438v4.001h6.834c0.833,2.452,3.15,4.219,5.884,4.219C17.591,21.938,20.375,19.153,20.375,15.719z",
"raph_disconnect": "M9.219,9.5c-2.733,0-5.05,1.766-5.884,4.218H1.438v4.001h1.897c0.833,2.452,3.15,4.219,5.884,4.219c3.435,0,6.219-2.784,6.219-6.219S12.653,9.5,9.219,9.5zM27.685,13.719c-0.944-5.172-5.461-9.094-10.903-9.094v4c3.917,0.006,7.085,3.176,7.094,7.094c-0.009,3.917-3.177,7.085-7.094,7.093v4.002c5.442-0.004,9.959-3.926,10.903-9.096h2.065v-3.999H27.685z",
"raph_folder": "M29.124,12.75c-0.004-2.208-1.792-3.997-3.999-4V8.749H12.868c-0.505-1.622-2.011-2.808-3.805-2.811H6.188c-2.208,0.002-3.997,1.792-4.001,4v14.188c0.004,2.206,1.793,3.995,4.001,3.999h18.938c2.205-0.004,3.995-1.793,3.999-3.999V12.75zM6.188,7.937h2.875c1.046-0.004,1.917,0.834,1.983,1.876l0.058,0.937h14.022c1.093,0.002,1.997,0.906,1.999,2v0.495c-0.591-0.345-1.268-0.557-2-0.558H6.187c-0.732,0.001-1.41,0.214-2,0.559V9.937C4.19,8.843,5.094,7.939,6.188,7.937zM25.125,26.125H6.188c-1.093-0.002-1.997-0.908-2.001-2v-7.438h0.001c0.002-1.095,0.906-1.999,2-2.001h18.938c1.093,0.002,1.991,0.901,2,1.991v7.447C27.122,25.219,26.218,26.123,25.125,26.125z"
}
}

File diff suppressed because one or more lines are too long

View File

@ -1,133 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!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">
<metadata>
This is a custom SVG webfont generated by Font Squirrel.
Copyright : Generated in 2009 by FontLab Studio Copyright info pending
</metadata>
<defs>
<font id="webfont2B4HRL5F" horiz-adv-x="708" >
<font-face units-per-em="2048" ascent="1536" descent="-512" />
<missing-glyph horiz-adv-x="532" />
<glyph unicode=" " horiz-adv-x="532" />
<glyph unicode="&#x09;" horiz-adv-x="532" />
<glyph unicode="&#xa0;" horiz-adv-x="532" />
<glyph unicode="!" horiz-adv-x="575" d="M174 100.5q0 49.5 33 81t82 31.5t80.5 -31.5t31.5 -81t-31.5 -82t-80.5 -32.5t-82 32.5t-33 82zM195 1679h188l-27 -1302h-135z" />
<glyph unicode="&#x22;" horiz-adv-x="774" d="M92 1464q0 49 33 81t82 32q61 0 93 -50t32 -118q-2 -147 -152 -332l-86 29q102 127 121 244q-55 0 -89 32.5t-34 81.5zM442 1464q0 49 33 81t82 32q59 0 92 -50t33 -118q-2 -147 -152 -332l-86 29q102 127 121 244q-55 0 -89 32.5t-34 81.5z" />
<glyph unicode="#" horiz-adv-x="1689" d="M82 489l35 148h338l88 362h-348l34 148h351l106 430h152l-107 -430h361l106 430h152l-107 -430h365l-35 -148h-367l-88 -362h377l-35 -148h-379l-118 -489h-152l119 489h-361l-118 -489h-152l119 489h-336zM606 637h361l88 362h-361z" />
<glyph unicode="$" horiz-adv-x="1341" d="M117 281l125 118q131 -213 387 -252v607q-78 25 -129 44t-111.5 54t-95.5 75t-59.5 100t-24.5 136q0 117 42 204t109.5 133t133 68.5t135.5 28.5v125h131v-127q260 -25 411 -186l-127 -111q-106 109 -284 132v-537q109 -35 176.5 -63.5t145 -82t116.5 -132t39 -183.5 q0 -205 -138 -322.5t-339 -129.5v-119h-131v123q-336 39 -512 297zM381 1163q0 -86 64.5 -138t183.5 -91v498q-98 -14 -173 -76t-75 -193zM760 143q129 12 217 87t88 202q0 113 -79 173.5t-226 107.5v-570z" />
<glyph unicode="%" horiz-adv-x="2066" d="M123 1167.5q0 118.5 35 205.5t93 133t122.5 67.5t136.5 21.5q74 0 138.5 -20.5t123.5 -67.5t93 -135t34 -209q-2 -227 -115.5 -326.5t-271.5 -99.5q-72 0 -136.5 21.5t-123.5 67.5t-94 134.5t-35 207zM276 1167q0 -168 70 -241.5t166 -73.5t163.5 72.5t69.5 238.5 q0 170 -68.5 244t-166.5 74q-96 -2 -165 -75t-69 -239zM350 -96l1188 1763h176l-1188 -1763h-176zM1167 416q2 227 115 327.5t272 102.5q74 0 138.5 -21.5t124 -67.5t93.5 -135.5t34 -209.5q-2 -227 -116 -326.5t-272 -99.5q-72 0 -136 21.5t-123.5 67.5t-94.5 134t-35 207z M1323 412q0 -166 68.5 -239t165 -73t164 73t69.5 239q0 168 -67.5 242.5t-163.5 76.5q-96 0 -166 -74.5t-70 -244.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1802" d="M123 410q0 150 95 254t267 200q-104 115 -157.5 203t-53.5 174q0 92 38 159.5t103.5 104.5t138.5 54.5t155 17.5q178 0 302 -80t124 -256q0 -121 -102.5 -210t-295.5 -187l377 -404q31 47 58 102l69 138l55 113l127 -78q-162 -324 -200 -387q182 -180 211 -174q37 0 53 3 t41.5 29.5t50.5 81.5l111 -65q-35 -78 -66 -124t-66.5 -63.5t-57 -21.5t-66.5 -4q-72 -8 -306 207q-184 -211 -491 -211q-59 0 -140 23.5t-168 70.5t-146.5 134t-59.5 196zM295 410q0 -84 68.5 -144.5t142.5 -84t131 -23.5q227 2 377 151l-432 455q-135 -74 -211 -157.5 t-76 -196.5zM446 1241q0 -90 195 -295q100 51 160.5 88t111 93.5t50.5 113.5q0 113 -74 163t-180 50q-109 0 -186 -51t-77 -162z" />
<glyph unicode="'" horiz-adv-x="423" d="M92 1464q0 49 33 81t82 32q61 0 93 -50t32 -118q-2 -147 -152 -332l-86 29q102 127 121 244q-55 0 -89 32.5t-34 81.5z" />
<glyph unicode="(" horiz-adv-x="692" d="M123 520q0 98 13.5 220t49 269.5t89 267.5t143.5 205t200 95l13 -143q-96 -35 -167 -144.5t-104.5 -255t-49 -273.5t-15.5 -241q0 -111 15.5 -238.5t49 -273t104.5 -256t167 -143.5l-13 -144q-113 12 -202.5 98.5t-142 205t-88 264t-49 266.5t-13.5 221z" />
<glyph unicode=")" horiz-adv-x="692" d="M61 -391q96 33 167 143.5t105 256t49 273.5t15 238q0 113 -15 241t-49 273.5t-104.5 255t-167.5 144.5l13 143q111 -10 201 -95t143 -205t89 -267.5t49 -269.5t13 -220q0 -100 -13 -221t-49 -266.5t-88 -264t-142.5 -204.5t-202.5 -99z" />
<glyph unicode="*" horiz-adv-x="1265" d="M100 1161l52 133l413 -166l-4 449h144l-5 -449l414 166l51 -133l-424 -166l295 -327l-118 -101l-285 353l-283 -353l-123 101l295 327z" />
<glyph unicode="+" horiz-adv-x="1331" d="M102 496v137h484v493h137v-493h506v-137h-506v-496h-137v496h-484z" />
<glyph unicode="," horiz-adv-x="413" d="M82 100.5q0 49.5 32.5 81t82.5 31.5q61 0 93 -50t32 -118q-2 -147 -152 -332l-86 29q102 127 121 244q-55 0 -89 32.5t-34 82z" />
<glyph unicode="-" d="M113 492v143h483v-143h-483z" />
<glyph unicode="." horiz-adv-x="411" d="M92 100.5q0 49.5 33 81t82 31.5t80.5 -31.5t31.5 -81t-31.5 -82t-80.5 -32.5t-82 32.5t-33 82z" />
<glyph unicode="/" horiz-adv-x="884" d="M41 -532l633 2109h170l-633 -2109h-170z" />
<glyph unicode="0" horiz-adv-x="1253" d="M123 579.5q0 165.5 44 287.5t118.5 187.5t159.5 96.5t181.5 31t181.5 -31t159.5 -96.5t118.5 -187.5t44 -287.5t-44 -287.5t-118.5 -187.5t-159.5 -96.5t-181.5 -31t-181.5 31t-159.5 96.5t-118.5 187.5t-44 287.5zM295 579.5q0 -237.5 96 -344t235.5 -106.5t235.5 106.5 t96 344t-96 344t-235.5 106.5t-235.5 -106.5t-96 -344z" />
<glyph unicode="1" horiz-adv-x="731" d="M102 936l293 221h166v-1157h-166v983l-182 -154z" />
<glyph unicode="2" horiz-adv-x="1126" d="M102 0v131l71 49q44 31 155.5 120t196.5 169t156 176t71 162q0 109 -56.5 161t-152.5 50q-53 0 -104.5 -19.5t-85.5 -46t-59.5 -54.5t-37.5 -46l-12 -18q-104 98 -105 100q43 78 155 162t251 86q180 0 280.5 -92.5t100.5 -270.5q0 -139 -165 -323.5t-376 -345.5h627 l2 -150h-912z" />
<glyph unicode="3" horiz-adv-x="1142" d="M82 -313l108 106q10 -8 28 -20.5t80 -30.5t130 -16q92 0 184.5 43t164 147t71.5 250q0 98 -74 173t-174 75q-41 0 -86 -6.5t-80 -13.5t-62.5 -15t-43.5 -14l-17 -5v144q166 68 262.5 148.5t96.5 197.5q0 74 -52.5 120t-125.5 46q-53 0 -99.5 -14.5t-76 -36t-51 -43 t-32.5 -35.5l-8 -15l-96 95q4 8 13.5 22.5t41 52t69.5 65.5t102.5 51.5t133.5 23.5q145 0 247 -93.5t102 -238.5q0 -158 -183 -293q152 -18 257.5 -126.5t109.5 -264.5q0 -147 -57.5 -268t-148.5 -192t-191.5 -108.5t-196.5 -37.5q-88 0 -175 31.5t-130 64.5z" />
<glyph unicode="4" horiz-adv-x="1286" d="M82 0v90l803 1067h108v-1007h232v-150h-232v-440h-166v440h-745zM307 141l39 9h481v688l-491 -666l-29 -29v-2z" />
<glyph unicode="5" horiz-adv-x="1208" d="M143 -301l107 104q8 -8 24.5 -21t79 -34.5t135.5 -21.5q150 0 281 115.5t131 328.5q0 115 -84 218.5t-203 103.5q-158 0 -270 -76h-166v741h770v-156h-604v-413q119 53 270 53q180 0 317.5 -143.5t145.5 -327.5q0 -147 -57 -268t-146.5 -192.5t-188.5 -110.5t-196 -39 q-104 0 -190 34.5t-121 69.5z" />
<glyph unicode="6" horiz-adv-x="1269" d="M131 727q0 360 170 620.5t424 260.5q188 0 356 -135l-110 -107q-100 84 -240 84q-115 0 -202 -76t-134 -195.5t-71.5 -240.5t-26.5 -236q176 268 414 269q193 0 314.5 -111.5t121.5 -353.5q0 -80 -25.5 -164t-78 -167t-151.5 -136t-230 -53q-254 0 -392.5 191.5 t-138.5 549.5zM319 481q35 -168 123 -256t220 -88q111 0 185.5 66.5t101 145.5t26.5 157q0 164 -74 238.5t-190 74.5q-230 0 -392 -338z" />
<glyph unicode="7" horiz-adv-x="1058" d="M10 -328q86 53 339 497.5t437 823.5h-696v164h907v-121q-195 -410 -478 -918.5t-394 -557.5z" />
<glyph unicode="8" horiz-adv-x="1216" d="M133 350q2 143 97.5 263t224.5 208q-281 223 -281 439q0 92 38 160.5t103.5 106.5t138 55t154.5 17t155 -17t138.5 -55t103 -106.5t37.5 -160.5q0 -143 -98 -255t-221 -186q86 -63 137 -106t109.5 -104.5t86 -125t27.5 -133.5q0 -78 -24.5 -140.5t-59 -100t-87 -65.5 t-93.5 -40t-93 -19.5t-72 -7.5h-42h-4h-36q-13 0 -68 6.5t-95 18.5t-95.5 40t-91.5 65.5t-62.5 101t-26.5 141.5zM307 350q0 -55 19.5 -98t55.5 -66.5t67.5 -39t74.5 -19.5l55 -5q11 -1 29 -1h2q23 0 45.5 1t72.5 13t86 33.5t65.5 69t29.5 112.5q0 86 -86 174t-254 209 q-248 -160 -262 -383zM348 1260q0 -90 67.5 -174.5t188.5 -178.5q53 29 105.5 68t105.5 119t53 166q0 111 -75.5 159.5t-184 48.5t-184.5 -48.5t-76 -159.5z" />
<glyph unicode="9" horiz-adv-x="1269" d="M123 662q0 80 25.5 163.5t78 166.5t151.5 136.5t230 53.5q254 0 392.5 -191.5t138.5 -550.5q0 -109 -20.5 -224.5t-69 -234t-116 -212t-171 -151.5t-225.5 -58q-117 0 -217.5 37.5t-155.5 76.5l112 109q119 -66 259 -66q115 0 202.5 75t136 194.5t72 239.5t27.5 237 q-180 -266 -414 -266q-193 0 -314.5 111.5t-121.5 353.5zM295 662q0 -164 73.5 -239t190.5 -75q227 0 391 336q-35 170 -123 258t-219 88q-111 0 -185.5 -66.5t-101 -145t-26.5 -156.5z" />
<glyph unicode=":" horiz-adv-x="514" d="M143 100.5q0 49.5 33 81t82 31.5t81 -31.5t32 -81t-32 -82t-81 -32.5t-82 32.5t-33 82zM143 850q0 49 33 81t82 32t81 -32t32 -81t-32 -82t-81 -33t-82 33t-33 82z" />
<glyph unicode=";" horiz-adv-x="526" d="M143 100.5q0 49.5 33 81t82 31.5q61 0 93 -50t32 -118q-2 -147 -152 -332l-86 29q102 127 121 244q-55 0 -89 32.5t-34 82zM143 850q0 49 33 81t82 32t81 -32t32 -81t-32 -82t-81 -33t-82 33t-33 82z" />
<glyph unicode="&#x3c;" horiz-adv-x="1433" d="M154 500v147l1136 514v-147l-975 -441l975 -440v-147z" />
<glyph unicode="=" horiz-adv-x="1394" d="M133 344v137h1129v-137h-1129zM133 672v137h1129v-137h-1129z" />
<glyph unicode="&#x3e;" horiz-adv-x="1433" d="M143 -14v147l973 440l-973 441v147l1137 -514v-147z" />
<glyph unicode="?" horiz-adv-x="1032" d="M84 1393q6 12 19.5 31.5t56.5 68.5t91 87t125 68.5t156 30.5q104 0 184.5 -25.5t125.5 -64.5t72.5 -91t35.5 -96t8 -91q0 -78 -24.5 -147.5t-81.5 -139.5t-93 -104l-114 -107q-164 -150 -164 -213q0 -88 94 -172l-104 -90q-53 47 -78.5 76.5t-47 79t-21.5 108.5 q0 90 52 164t161 170q74 68 118.5 116t86.5 119.5t44 139.5q0 225 -254 225q-59 0 -115.5 -25.5t-95 -61.5t-69.5 -72t-45 -62l-14 -25zM399 100.5q0 49.5 33 81t82 31.5t81 -31.5t32 -81t-32 -82t-81 -32.5t-82 32.5t-33 82z" />
<glyph unicode="@" horiz-adv-x="2195" d="M123 535q0 266 141.5 507.5t378 388t502.5 146.5q215 0 395 -76t294 -199.5t176.5 -276.5t62.5 -312q0 -158 -54.5 -283t-133.5 -195.5t-175 -117.5t-170 -62.5t-129 -15.5q-166 0 -127 182q-209 -184 -412 -182q-276 2 -276 383q0 162 56.5 308.5t141.5 243.5t183 154.5 t184 57.5q190 0 297 -164l29 121l160 -37q-209 -928 -209 -938q6 -6 57 4t123 46t139.5 94.5t112.5 164t39 236.5q0 127 -51.5 249.5t-145.5 224t-242.5 164t-324.5 62.5q-221 0 -421 -125t-318.5 -328.5t-118.5 -424.5q0 -330 255 -552.5t603 -222.5q182 0 321.5 48.5 t341.5 216.5l103 -127q-231 -190 -392 -245.5t-374 -55.5q-270 0 -503.5 119.5t-376 337t-142.5 481.5zM760 422q0 -254 112 -260q78 -2 160 39t147.5 105.5t100.5 105.5t61 77l76 345q-55 135 -117.5 182t-138.5 47q-135 0 -268 -188.5t-133 -452.5z" />
<glyph unicode="A" horiz-adv-x="1474" d="M61 0l582 1577h188l582 -1577h-190l-199 537h-575l-197 -537h-191zM506 692h461l-230 627z" />
<glyph unicode="B" horiz-adv-x="1308" d="M174 0v1577h180v-115q117 76 190.5 106.5t164.5 30.5q166 0 284.5 -111.5t118.5 -344.5q-2 -223 -160 -324q129 -59 180.5 -154.5t51.5 -179.5v-10q0 -43 -1 -70.5t-11.5 -85t-29 -97.5t-57 -90t-94 -82t-142.5 -53.5t-198 -21.5q-137 4 -297 117v-92h-180zM354 236 q147 -92 297 -93q78 0 138.5 16.5t97.5 36t63.5 58.5t37.5 61.5t17.5 67.5t6.5 56v46q0 31 -13.5 65t-46 77t-106.5 72.5t-178 33.5q-59 -4 -314 -4v-493zM354 877h112q32 0 102.5 3t102.5 10l85 19q53 12 78.5 32t54.5 47.5t40 67.5t11 91q-2 145 -69.5 215t-161.5 70 q-160 0 -355 -119v-436z" />
<glyph unicode="C" horiz-adv-x="1357" d="M123 752q0 203 59.5 369.5t154.5 267t208.5 154.5t228.5 54q92 0 174 -22.5t134.5 -53t92 -62.5t58.5 -54l16 -23l-125 -120l-11 17q-7 11 -38 40t-66.5 50.5t-99 38.5t-137.5 17q-186 0 -325.5 -174t-139.5 -499q0 -256 131 -430.5t320 -174.5q45 0 89 6.5t81 16.5 t70.5 23.5t61 28t50.5 28.5t40 27.5l29.5 23.5t18.5 16l6 7l111 -107q-61 -76 -117 -115q-176 -127 -436 -127q-274 0 -456.5 222.5t-182.5 554.5z" />
<glyph unicode="D" horiz-adv-x="1503" d="M174 0v1577h180v-174q205 193 465 194q111 0 207 -45t178 -137t129 -256t47 -381q0 -342 -179 -572.5t-443 -230.5q-190 4 -404 142v-117h-180zM354 281q197 -129 404 -129q188 0 315 177t127 449q0 315 -111.5 477t-263.5 166q-281 0 -471 -194v-946z" />
<glyph unicode="E" horiz-adv-x="1150" d="M174 0v1577h651l215 10v-186h-686v-508h584v-156h-584v-561h500l215 10v-186h-895z" />
<glyph unicode="F" horiz-adv-x="1112" d="M174 0v1577h651l215 10v-186h-686v-508h584v-156h-584v-737h-180z" />
<glyph unicode="G" horiz-adv-x="1525" d="M123 764q0 184 48 330.5t122 237.5t173 152.5t194.5 86t191.5 26.5q90 0 173 -24.5t138.5 -60t98.5 -71.5t61 -61l20 -24l-124 -121q-4 8 -14.5 21.5t-43.5 47t-70.5 59.5t-100 47.5t-130.5 23.5q-90 0 -180 -35t-176 -108.5t-140.5 -210t-54.5 -316.5q0 -100 30 -201.5 t90 -196t171 -153.5t254 -61q98 0 217 54t119 113v306h-211q-109 0 -166 30v164q74 -18 172 -18h365v-490q0 -135 -150.5 -233t-337.5 -103q-160 0 -290 51.5t-211.5 132.5t-137 187.5t-78 210t-22.5 207.5z" />
<glyph unicode="H" horiz-adv-x="1519" d="M174 0v1577h180v-684h811v684h181v-1577h-181v737h-811v-737h-180z" />
<glyph unicode="I" horiz-adv-x="528" d="M174 0v1577h180v-1577h-180z" />
<glyph unicode="J" horiz-adv-x="585" d="M-20 -369q109 31 181 113t72 221v1612h181v-1612q0 -94 -26 -173t-63.5 -131t-90 -93t-96.5 -61.5t-93 -36.5z" />
<glyph unicode="K" horiz-adv-x="1265" d="M174 0v1577h180v-711l541 711h227l-590 -737q45 -6 112 -38t106 -77q45 -45 244.5 -365.5t230.5 -355.5v-4h-219q-35 37 -188.5 295t-190.5 297q-82 90 -185 90q-61 0 -88 -6v-676h-180z" />
<glyph unicode="L" horiz-adv-x="1202" d="M174 0v1577h180v-1401h561l215 10v-186h-956z" />
<glyph unicode="M" horiz-adv-x="1742" d="M174 0v1577h180l514 -1352l2 -14l2 14l517 1352h180v-1577h-180v1106l2 31l-9 -31l-424 -1106h-174l-424 1106l-8 31l2 -31v-1106h-180z" />
<glyph unicode="N" horiz-adv-x="1482" d="M174 0v1577h180v-2l762 -1239l14 -29l-2 29v1241h181v-1577h-181v2l-761 1243l-15 29l2 -29v-1245h-180z" />
<glyph unicode="O" horiz-adv-x="1554" d="M123 790.5q0 225.5 55 389t152.5 252t208 127t241.5 38.5q102 -2 192.5 -25.5t176.5 -80.5t146.5 -146.5t98.5 -229.5t38 -320q0 -227 -55.5 -391t-152 -252.5t-207 -127t-241.5 -38.5t-240.5 38.5t-206 126t-151.5 251t-55 389zM303 795q0 -180 40 -310.5t109.5 -200 t149.5 -100t174 -30.5t174 30.5t149.5 99t110.5 198.5t41 309q0 176 -40 305t-109.5 198.5t-148.5 101t-173 34.5q-94 0 -175 -31t-151.5 -100.5t-110.5 -197.5t-40 -306z" />
<glyph unicode="P" horiz-adv-x="1265" d="M174 0v1577h180v-123q190 143 365 143q160 -6 301 -140t143 -355q0 -287 -138 -458t-349 -171q-170 2 -322 107v-580h-180zM354 760q166 -129 330 -131q133 4 220 131t87 342q-2 145 -88 233t-184 95q-98 0 -176 -29t-189 -98v-543z" />
<glyph unicode="Q" horiz-adv-x="1554" d="M123 780q0 182 38 325.5t99.5 235t148.5 150.5t178 82.5t193 23.5q129 -2 239.5 -44t206 -131t151 -253.5t55.5 -388.5q0 -207 -47.5 -362.5t-131.5 -244.5t-181 -135t-214 -58q70 -82 232 -82q53 0 192 32l49 -161q-88 -39 -241 -39q-96 0 -174 25.5t-124.5 68.5t-73 80 t-42.5 78q-244 29 -398.5 218t-154.5 580zM303 784q0 -180 40 -310t109.5 -199.5t149.5 -100.5t174 -31t174 31t149.5 99.5t110.5 198.5t41 308q0 143 -26.5 256t-71.5 184.5t-106.5 120t-127 67.5t-139.5 22q-94 0 -175 -33t-150.5 -103.5t-110.5 -201t-41 -308.5z" />
<glyph unicode="R" horiz-adv-x="1349" d="M174 0v1577h180v-115q111 70 187.5 102.5t169.5 32.5q168 -4 295 -112.5t127 -335.5q0 -152 -54.5 -258.5t-128 -155.5t-170.5 -69q82 -70 271.5 -338.5t267.5 -323.5v-4h-223q-53 39 -134 146.5t-149 211t-150.5 192.5t-148.5 101q-113 0 -160 2v-653h-180zM354 799h303 q121 2 211 82t93 268q0 139 -76 207.5t-174 73.5q-100 0 -176 -27t-181 -88v-516z" />
<glyph unicode="S" horiz-adv-x="1361" d="M117 281l125 118q78 -125 202.5 -189.5t272.5 -68.5q143 0 245.5 76t102.5 215q0 53 -22.5 97t-50 71t-84 53.5t-95.5 40t-108 33.5l-21 6q-94 29 -144.5 46.5t-124 55t-111.5 77.5t-66.5 104.5t-28.5 146.5q0 106 36 187.5t88 127.5t119.5 74.5t122 37.5t105.5 9 q150 0 280 -51t211 -139l-127 -111q-131 137 -364 138q-43 0 -87 -11.5t-95.5 -38t-84 -84t-32.5 -139.5q0 -45 22.5 -82t48 -59.5t85 -48t90 -35.5t106.5 -33q90 -29 146.5 -49t132 -60t119 -86t75 -118t31.5 -160q0 -217 -153.5 -336t-370.5 -119q-397 13 -596 304z" />
<glyph unicode="T" horiz-adv-x="1150" d="M20 1421v156h1110v-156h-468v-1421h-181v1421h-461z" />
<glyph unicode="U" horiz-adv-x="1460" d="M174 489v1088h180v-1083q0 -94 29 -163t70 -106t96 -59.5t97 -27.5t85 -5t84 5t96.5 27.5t95.5 58.5t69.5 104.5t29.5 160.5v1088h180v-1088q0 -133 -43 -232t-102.5 -151.5t-141 -83t-143 -39t-125.5 -8.5q-66 0 -126 8.5t-143 39t-142.5 83t-102.5 151.5t-43 232z" />
<glyph unicode="V" horiz-adv-x="1433" d="M61 1577h191l459 -1296l6 -27l6 27l459 1296h190l-561 -1577h-188z" />
<glyph unicode="W" horiz-adv-x="2019" d="M61 1577h189l328 -1270l4 -24l4 24l327 1270h191l328 -1270l4 -24l4 24l327 1270h191l-447 -1577h-149l-348 1217l-6 36l-7 -36l-344 -1217h-149z" />
<glyph unicode="X" horiz-adv-x="1345" d="M61 0l500 786l-500 791h220l391 -616l393 616h219l-502 -791l502 -786h-221l-391 612l-389 -612h-222z" />
<glyph unicode="Y" horiz-adv-x="1263" d="M20 1577h218l397 -627l399 627h209l-520 -821v-756h-178v756z" />
<glyph unicode="Z" horiz-adv-x="1257" d="M104 0v168l789 1241h-768v168h987v-164l-788 -1245h594q23 -1 44 -1q154 0 193 40v-174q-18 -16 -78.5 -24.5t-111.5 -8.5h-52h-809z" />
<glyph unicode="[" horiz-adv-x="735" d="M174 -532v2109h418v-123h-246v-1864h246v-122h-418z" />
<glyph unicode="\" horiz-adv-x="905" d="M51 1577h170l633 -2109h-170z" />
<glyph unicode="]" horiz-adv-x="735" d="M143 -410h246v1864h-246v123h418v-2109h-418v122z" />
<glyph unicode="^" horiz-adv-x="1339" d="M82 0l514 1126h147l514 -1126h-147l-440 965l-441 -965h-147z" />
<glyph unicode="_" horiz-adv-x="1353" d="M113 0h1128v-131h-1128v131z" />
<glyph unicode="`" horiz-adv-x="729" d="M113 1432l43 145l460 -229l-43 -97z" />
<glyph unicode="a" horiz-adv-x="1155" d="M123 283q0 72 14.5 124t53 103t120.5 87t207 54q213 29 285 47v129q0 51 -32 117t-95 66q-219 0 -344 -107q-18 -20 -16.5 -39.5t16.5 -34.5l-164 -30q-20 26 -20 64q0 24 8 52q20 74 92 115q218 121 445 121h7q100 0 165 -61.5t84.5 -129t19.5 -133.5v-555 q0 -16 4 -40.5t32.5 -73.5t77.5 -80l-110 -103q-119 47 -158 199q-186 -199 -385 -199q-20 0 -49 4.5t-77 22.5t-86 49t-66.5 91.5t-28.5 140.5zM293 283q0 -49 17.5 -85t42 -51.5t42 -21.5t29.5 -6q104 0 204.5 66.5t174.5 158.5v207q-100 -20 -266 -43 q-152 -20 -198 -74.5t-46 -150.5z" />
<glyph unicode="b" horiz-adv-x="1292" d="M174 0v1679h172v-770q189 242 414 242h4q180 -2 292.5 -170t112.5 -399q0 -287 -125.5 -447t-347.5 -160q-156 0 -350 156v-131h-172zM346 319q76 -76 174 -126t176 -50q137 0 219 117t82 322q0 162 -64.5 280.5t-168.5 120.5h-4q-243 0 -414 -266v-398z" />
<glyph unicode="c" horiz-adv-x="1044" d="M113 543q0 295 149 454q144 154 320 154h14q66 -2 125 -21.5t97 -46t67.5 -52t44.5 -44.5l12 -16l-108 -103q-2 4 -8.5 12.5t-27 28t-46 34.5t-68.5 28.5t-92 15.5h-8q-114 0 -205 -113q-94 -117 -94 -331q0 -172 82 -288t215 -116q51 0 81.5 4t83 32t109.5 81l107 -102 q-82 -82 -156 -124t-116 -48.5t-109 -6.5q-209 0 -339 162t-130 406z" />
<glyph unicode="d" horiz-adv-x="1333" d="M123 545q0 287 126 446.5t347 159.5q156 0 350 -156v684h172v-1409q2 -16 7 -39.5t39 -77t87 -79.5l-141 -99q-143 78 -164 242q-189 -242 -414 -242h-4q-180 2 -292.5 170.5t-112.5 399.5zM295 545q0 -162 64.5 -281t168.5 -121h8q243 0 410 267v397q-80 76 -176 126 t-174 50q-137 0 -219 -116.5t-82 -321.5z" />
<glyph unicode="e" horiz-adv-x="1187" d="M113 551q0 242 138 421t347 179q119 0 209 -46t136 -107.5t73.5 -139.5t35 -127t7.5 -84v-76h-774q0 -193 85 -318.5t236 -125.5q115 0 195 49q80 47 153 146l105 -101q-72 -88 -141.5 -144.5t-135 -74.5t-95.5 -22.5t-81 -4.5q-227 0 -360 167t-133 409zM309 723h570 q-10 47 -27.5 89t-48.5 87t-84 72.5t-121 27.5q-100 0 -177 -76.5t-112 -199.5z" />
<glyph unicode="f" horiz-adv-x="825" d="M61 983v143h146v197q0 367 317 367q207 0 363 -129l-111 -107q-119 92 -252 92q-49 0 -79.5 -15t-45 -51t-18.5 -68t-4 -89v-197h332v-143h-332v-983h-170v983h-146z" />
<glyph unicode="g" horiz-adv-x="1261" d="M123 -221q2 125 45 200.5t127 137.5q-96 41 -105 133q0 96 146 213q-170 96 -170 332q0 92 44 165.5t113.5 113.5t142.5 60.5t140 20.5q63 0 137 -18q133 121 310 120q55 0 123 -20l-29 -143q-37 12 -94 12q-88 0 -166 -33q160 -102 160 -278q0 -115 -44.5 -197 t-115 -122t-140 -56.5t-141.5 -16.5q-70 0 -123 11q-121 -86 -121 -164q6 -6 52.5 -9t120.5 -5l73 -3q119 -6 207 -21t179 -49t140.5 -101.5t49.5 -163.5q0 -199 -144.5 -330t-425.5 -131q-199 0 -345 98.5t-146 243.5zM297 -221q0 -82 94 -135.5t223 -53.5q197 0 301.5 87 t104.5 221q0 53 -36 90t-103.5 55t-128 26.5t-146.5 12.5q-119 0 -147 2q-84 -51 -123 -113.5t-39 -191.5zM338 795q0 -80 26.5 -135.5t70.5 -81t85 -34.5t86 -9t87 11t85 37.5t69.5 81t26.5 130.5q0 113 -86 171t-182 58t-182 -58t-86 -171z" />
<glyph unicode="h" horiz-adv-x="1241" d="M174 0v1679h172v-790q270 262 492 262q260 0 260 -350v-801h-172v801q0 178 -88 178q-233 0 -492 -268v-711h-172z" />
<glyph unicode="i" horiz-adv-x="555" d="M174 1475q0 45 29.5 73.5t75 28.5t74 -28.5t28.5 -73.5t-28.5 -75t-74 -30t-75 30t-29.5 75zM193 0v1126h169v-1126h-169z" />
<glyph unicode="j" horiz-adv-x="452" d="M-72 -401q61 8 111.5 101t50.5 212v1214h170v-1214q0 -178 -87 -308t-193 -167zM72 1475q0 45 29.5 73.5t74.5 28.5t74 -28.5t29 -73.5t-29 -75t-74 -30t-74.5 30t-29.5 75z" />
<glyph unicode="k" horiz-adv-x="1157" d="M174 0v1679h172v-950q383 268 449 397h174q-35 -133 -467 -458q66 -27 114 -80l338 -381q190 -207 213 -207h-231q-25 8 -102.5 91l-192.5 217l-147 169q-61 63 -99 74q-20 6 -49 -2v-549h-172z" />
<glyph unicode="l" horiz-adv-x="573" d="M174 299v1380h170v-1380q0 -111 23 -133q45 -45 135 -45l-6 -146q-180 0 -250 70q-72 72 -72 254z" />
<glyph unicode="m" horiz-adv-x="1882" d="M174 0v1126h172v-223q225 248 426 248q221 0 254 -254q227 254 432 254q260 0 260 -350v-801h-172v801q0 178 -88 178q-74 0 -140.5 -24.5t-123.5 -74t-87 -80t-75 -85.5v-715h-172v801q0 178 -88 178q-74 0 -140.5 -24.5t-123.5 -74t-87 -80t-75 -85.5v-715h-172z" />
<glyph unicode="n" horiz-adv-x="1261" d="M174 0v1126h172v-237q270 262 492 262q260 0 260 -350v-801h-172v801q0 178 -88 178q-227 0 -492 -268v-711h-172z" />
<glyph unicode="o" horiz-adv-x="1224" d="M123 563q0 166 41 285t112.5 182.5t154.5 92t181.5 28.5t181.5 -28.5t154.5 -92t112.5 -182.5t41 -285t-41 -284.5t-112.5 -182t-154.5 -92.5t-181.5 -29t-181.5 29t-154.5 92.5t-112.5 182t-41 284.5zM295 563.5q0 -237.5 91 -341t226.5 -103.5t226.5 103.5t91 341 t-91 341t-226.5 103.5t-226.5 -103.5t-91 -341z" />
<glyph unicode="p" horiz-adv-x="1292" d="M174 -532v1658h172v-217q189 242 414 242h4q180 -2 292.5 -170t112.5 -399q0 -287 -125.5 -447t-347.5 -160q-156 0 -350 156v-663h-172zM346 319q76 -76 174 -126t176 -50q137 0 219 117t82 322q0 162 -64.5 280.5t-168.5 120.5h-4q-243 0 -414 -266v-398z" />
<glyph unicode="q" horiz-adv-x="1292" d="M123 545q0 287 126 446.5t347 159.5q156 0 350 -156v131h172v-1658h-172v747q-193 -240 -414 -240h-4q-180 2 -292.5 170.5t-112.5 399.5zM295 545q0 -162 64.5 -281t168.5 -121h8q243 0 410 267v397q-80 76 -176 126t-174 50q-137 0 -219 -116.5t-82 -321.5z" />
<glyph unicode="r" horiz-adv-x="940" d="M174 0v1126h172v-217q141 242 285 242q78 0 146.5 -28.5t96.5 -57.5l29 -27l-119 -114q-49 63 -145 63q-158 0 -293 -282v-705h-172z" />
<glyph unicode="s" horiz-adv-x="1026" d="M92 205l119 96q45 -82 135 -131t191 -51q92 0 157.5 49t65.5 141q0 55 -43 96t-87 58.5t-124 42t-129 44t-106.5 56.5t-85 92.5t-27.5 130.5q0 78 26.5 138.5t65.5 94.5t90 55.5t91 27.5t79 6q223 0 354 -131l-110 -107q-88 94 -244 95q-39 0 -77 -11.5t-74.5 -54.5 t-36.5 -113q0 -35 17 -60.5t57 -46t70 -31.5t89 -29q74 -23 110.5 -35.5t95 -43t87.5 -62.5t52.5 -87t23.5 -125q0 -162 -115 -248t-277 -86q-131 0 -250.5 59.5t-189.5 170.5z" />
<glyph unicode="t" horiz-adv-x="819" d="M92 983v143h144v308h172v-308h270v-143h-270v-655q0 -41 2 -66.5t11 -64.5t32.5 -58.5t60.5 -19.5q96 0 178 78l96 -93q-135 -129 -319 -129q-233 0 -233 353v655h-144z" />
<glyph unicode="u" horiz-adv-x="1261" d="M164 326v800h172v-800q0 -178 88 -179q233 0 491 269v710h172v-1126h-172v236q-272 -260 -491 -261q-260 1 -260 351z" />
<glyph unicode="v" horiz-adv-x="1144" d="M72 1126h198l293 -870l6 -39l4 19q2 18 2 20q246 813 312 870h186q-35 -43 -140.5 -324.5t-193.5 -541.5l-88 -260h-149z" />
<glyph unicode="w" horiz-adv-x="1632" d="M72 1126h186l223 -839l6 -43l7 43l239 839h148l239 -839l8 -43l7 43q217 817 258 839h168q-25 -25 -114 -306t-165 -550l-78 -270h-145l-252 868l-248 -868h-162z" />
<glyph unicode="x" horiz-adv-x="1216" d="M82 0q29 12 187.5 226t250.5 349l-397 551h217l278 -407q266 395 304 407h213q-49 -23 -420 -548l409 -578h-217l-291 434q-295 -426 -321 -434h-213z" />
<glyph unicode="y" horiz-adv-x="1126" d="M59 -414q137 8 217 88q39 39 74 98.5t90 192.5l56 137l-394 1024h183l305 -790q307 754 352 790h195q-45 -43 -130 -232t-405 -974l-55 -131q-20 -47 -62.5 -113.5t-91.5 -113.5q-119 -115 -291 -125z" />
<glyph unicode="z" horiz-adv-x="1060" d="M102 0v145l635 838h-635v143h842v-143l-635 -838h525q113 0 145 35v-145q-12 -14 -49 -22.5t-68 -10.5l-31 -2h-729z" />
<glyph unicode="{" horiz-adv-x="962" d="M164 526v103q88 0 137 38t55 74l4 37v611q0 47 9.5 94t31 99t68.5 85t113 33q59 0 118.5 -16.5t90.5 -32.5l28 -19l-57 -143q-57 39 -180 39q-49 0 -50 -139v-613q0 -6 -1 -16t-9 -35t-20.5 -48.5t-39 -51t-61.5 -47.5q37 -20 64 -48t39 -50.5t19 -48t8 -36t1 -16.5v-612 q0 -139 50 -140q55 0 100 10.5t63 18.5l17 10l57 -143q-102 -68 -237 -68q-66 0 -113 33t-68.5 85t-31 99t-9.5 95v610q0 6 -1 16t-12 36t-29.5 45.5t-58.5 35.5t-95 16z" />
<glyph unicode="|" horiz-adv-x="503" d="M174 -532v2232h156v-2232h-156z" />
<glyph unicode="}" horiz-adv-x="962" d="M143 -477l58 143q57 -39 180 -39q49 0 49 140v610q0 14 4 37.5t36 77t89 86.5q-57 33 -89 83t-36 74.5t-4 40.5v613q0 139 -49 139q-55 0 -100 -10.5t-64 -18.5l-16 -10l-58 143q102 68 238 68q66 0 113 -33t68.5 -85t30.5 -99t9 -94v-611q0 -6 1 -16t11.5 -36t29 -45 t59 -35.5t96.5 -16.5v-103q-53 0 -93 -14t-58.5 -33.5t-30 -44t-13.5 -36t-2 -19.5v-612q0 -47 -9 -94.5t-30.5 -99.5t-69 -85t-112.5 -33q-59 0 -118.5 16.5t-90.5 32.5z" />
<glyph unicode="~" horiz-adv-x="1349" d="M123 709q10 8 31.5 20t99.5 32.5t168 20.5q82 0 256 -63q176 -61 262 -62q72 0 130 11.5t81 23.5l23 13l53 -103q-106 -68 -287 -67q-94 0 -295 69q-154 55 -223 55q-78 0 -137.5 -12t-79.5 -24l-21 -13z" />
<glyph unicode="&#xad;" d="M113 492v143h483v-143h-483z" />
<glyph unicode="&#x2000;" horiz-adv-x="860" />
<glyph unicode="&#x2001;" horiz-adv-x="1722" />
<glyph unicode="&#x2002;" horiz-adv-x="860" />
<glyph unicode="&#x2003;" horiz-adv-x="1722" />
<glyph unicode="&#x2004;" horiz-adv-x="573" />
<glyph unicode="&#x2005;" horiz-adv-x="430" />
<glyph unicode="&#x2006;" horiz-adv-x="286" />
<glyph unicode="&#x2007;" horiz-adv-x="286" />
<glyph unicode="&#x2008;" horiz-adv-x="215" />
<glyph unicode="&#x2009;" horiz-adv-x="344" />
<glyph unicode="&#x200a;" horiz-adv-x="94" />
<glyph unicode="&#x2010;" d="M113 492v143h483v-143h-483z" />
<glyph unicode="&#x2011;" d="M113 492v143h483v-143h-483z" />
<glyph unicode="&#x2012;" d="M113 492v143h483v-143h-483z" />
<glyph unicode="&#x2013;" horiz-adv-x="1312" d="M61 498v133h1129v-133h-1129z" />
<glyph unicode="&#x2014;" horiz-adv-x="1558" d="M82 498v133h1395v-133h-1395z" />
<glyph unicode="&#x201c;" horiz-adv-x="774" d="M92 1245q2 147 152 332l86 -29q-102 -127 -123 -243q55 0 90 -33t35 -82t-33 -81t-82 -32q-61 0 -93 50t-32 118zM442 1245q2 147 152 332l86 -29q-102 -127 -123 -243q55 0 90 -33t35 -82t-33 -81t-82 -32q-61 0 -93 50t-32 118z" />
<glyph unicode="&#x201d;" horiz-adv-x="774" d="M92 1464q0 49 33 81t82 32q61 0 93 -50t32 -118q-2 -147 -152 -332l-86 29q102 127 121 244q-55 0 -89 32.5t-34 81.5zM442 1464q0 49 33 81t82 32q59 0 92 -50t33 -118q-2 -147 -152 -332l-86 29q102 127 121 244q-55 0 -89 32.5t-34 81.5z" />
<glyph unicode="&#x202f;" horiz-adv-x="344" />
<glyph unicode="&#x205f;" horiz-adv-x="430" />
<glyph unicode="&#x2212;" horiz-adv-x="1331" d="M102 496v137h1127v-137h-1127z" />
<glyph unicode="&#xe000;" horiz-adv-x="1125" d="M0 1125h1125v-1125h-1125v1125z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,235 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!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">
<metadata>
This is a custom SVG webfont generated by Font Squirrel.
Copyright : Generated in 2009 by FontLab Studio Copyright info pending
</metadata>
<defs>
<font id="webfontbDMP4rcs" horiz-adv-x="724" >
<font-face units-per-em="2048" ascent="1505" descent="-543" />
<missing-glyph horiz-adv-x="315" />
<glyph unicode=" " horiz-adv-x="315" />
<glyph unicode="&#x09;" horiz-adv-x="315" />
<glyph unicode="&#xa0;" horiz-adv-x="315" />
<glyph unicode="!" horiz-adv-x="387" d="M74 1505h239l-55 -1099h-129zM86 0v227h215v-227h-215z" />
<glyph unicode="&#x22;" horiz-adv-x="329" d="M57 1505h215l-30 -551h-154z" />
<glyph unicode="#" horiz-adv-x="1232" d="M49 438l27 195h198l37 258h-196l26 194h197l57 420h197l-57 -420h260l57 420h197l-58 -420h193l-27 -194h-192l-37 -258h190l-26 -195h-191l-59 -438h-197l60 438h-261l-59 -438h-197l60 438h-199zM471 633h260l37 258h-260z" />
<glyph unicode="$" horiz-adv-x="692" d="M37 358l192 13q12 -186 129 -187q88 0 93 185q0 29 -8.5 59.5t-19.5 55t-32.5 60.5t-34.5 53l-40 55q-28 38 -35 50q-68 92 -101 141.5t-70.5 141.5t-37.5 170q4 293 215 342v131h123v-125q201 -23 235 -282l-192 -25q-6 57 -28 92t-65 33q-80 -2 -84 -162 q0 -29 8.5 -60.5t18.5 -54t32.5 -59.5t34.5 -53l41 -59q30 -42 38 -52q6 -10 32 -48l37 -52q10 -14 33.5 -51t34.5 -58l26 -55q16 -35 23.5 -61.5t13.5 -60.5t6 -64q-4 -338 -245 -369v-217h-123v221q-236 41 -250 352z" />
<glyph unicode="%" horiz-adv-x="1001" d="M55 911v437q0 6 1 18t9.5 42t23.5 53.5t48 42t78 18.5q70 0 110 -44t44 -87l4 -43v-437q0 -6 -1 -18t-9.5 -43t-23.5 -53.5t-47 -42t-77 -19.5q-72 0 -112 44t-44 89zM158 0l553 1505h131l-547 -1505h-137zM178 911q-4 -55 37 -55q16 0 25.5 14.5t9.5 26.5v14v437 q2 55 -35 55q-18 0 -27.5 -13.5t-9.5 -27.5v-14v-437zM631 158v436q0 6 1 18.5t9 43t23.5 53t48 42t78.5 19.5q70 0 109.5 -44t43.5 -87l4 -45v-436q0 -6 -1 -18.5t-9 -42t-23.5 -53.5t-47 -42t-76.5 -18q-72 0 -112 43t-44 88zM754 158q-4 -57 37 -58q16 0 24 14.5t8 28.5 l2 15v436q2 55 -34 55q-18 0 -27.5 -13t-9.5 -28v-14v-436z" />
<glyph unicode="&#x26;" horiz-adv-x="854" d="M49 315q0 115 44 214.5t126 222.5q-106 225 -106 442v18q0 12 5 46t13 65t28.5 69t48.5 65.5t73 46t102 18.5q78 0 134 -34t80 -82t37 -96t13 -81v-35q0 -162 -205 -434q76 -174 148 -285q33 96 47 211l176 -33q-16 -213 -92 -358q55 -63 92 -76v-235q-23 0 -86 37.5 t-123 101.5q-123 -139 -252 -139t-216 97t-87 234zM262 326q2 -66 29.5 -108t70.5 -42q59 0 125 86q-88 139 -174 295q-6 -10 -14 -28.5t-22.5 -77.5t-14.5 -125zM305 1194q0 -111 55 -246q100 156 101 252q-2 2 0 15.5t-2 36t-11.5 43t-23.5 36t-41 15.5q-39 0 -58.5 -38 t-19.5 -75v-39z" />
<glyph unicode="'" horiz-adv-x="309" d="M45 1012l72 266h-72v227h215v-227l-113 -266h-102z" />
<glyph unicode="(" horiz-adv-x="561" d="M66 645q0 143 29.5 292.5t72.5 261.5t87 204t73 139l30 47l162 -84l-27.5 -40.5t-62.5 -114.5t-79 -182.5t-61.5 -238t-27.5 -284.5t26.5 -282.5t64.5 -240.5t76 -178t65 -118l26 -39l-162 -84q-12 18 -31.5 50t-69.5 133.5t-89 207t-70.5 257t-31.5 294.5z" />
<glyph unicode=")" horiz-adv-x="561" d="M41 -213q10 14 27.5 41t62.5 115t79 181t61.5 236.5t27.5 284.5t-26.5 282.5t-64.5 241t-76 179t-64 118.5l-27 39l162 84q12 -18 31.5 -50t69.5 -134t89 -206.5t71 -257.5t32 -296t-30 -292.5t-74 -261t-87 -203t-72 -138.5l-30 -47z" />
<glyph unicode="*" horiz-adv-x="677" d="M74 1251l43 148l164 -70l-19 176h154l-19 -176l164 70l43 -148l-172 -34l115 -138l-131 -80l-78 152l-76 -152l-131 80l115 138z" />
<glyph unicode="+" horiz-adv-x="1060" d="M74 649v172h370v346h172v-346h371v-172h-371v-346h-172v346h-370z" />
<glyph unicode="," horiz-adv-x="309" d="M45 0v227h215v-227l-113 -266h-102l72 266h-72z" />
<glyph unicode="-" horiz-adv-x="444" d="M74 455v194h297v-194h-297z" />
<glyph unicode="." horiz-adv-x="321" d="M53 0v227h215v-227h-215z" />
<glyph unicode="/" horiz-adv-x="720" d="M8 -147l543 1652h162l-537 -1652h-168z" />
<glyph unicode="0" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM289 309q0 -12 1 -30.5t19.5 -49t53 -30.5t53 27.5t18.5 56.5 l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887z" />
<glyph unicode="1" horiz-adv-x="475" d="M25 1180v141q82 16 140 62.5t77 82.5l18 39h133v-1505h-221v1180h-147z" />
<glyph unicode="2" horiz-adv-x="731" d="M55 0v219l39 62q25 39 88.5 152.5t112.5 220t91 241.5t44 238q0 184 -73.5 184t-73.5 -184v-105h-222v105q0 389 295 389t295 -375q0 -336 -346 -928h350v-219h-600z" />
<glyph unicode="3" horiz-adv-x="686" d="M45 1071q0 70 2 115t17.5 115.5t44 112.5t84 75t135.5 33q78 0 135 -31t84.5 -71t44 -92t19.5 -79.5t3 -50.5q0 -291 -106 -397l-2 -2q127 -100 127 -414q0 -25 -3 -58.5t-19.5 -99t-44 -116t-85 -89t-135.5 -38.5q-80 0 -136 31.5t-86 75.5t-47.5 112.5t-20.5 118 t-3 112.5h217q2 -150 17.5 -203t58.5 -53q45 0 57.5 50.5t12.5 140.5q0 18 1 66t0 62.5t-4 49.5t-10 46l-18 33q-12 22 -29.5 29t-45 15t-62.5 10h-19v184q37 2 62.5 7.5t45 14.5t31 21.5t17.5 29.5t9 39.5t3 51.5v62v43q0 45 -1 68.5t-7 58t-21.5 51t-39.5 16.5 q-41 0 -52.5 -49t-13.5 -207h-217z" />
<glyph unicode="4" horiz-adv-x="684" d="M25 328v194l323 983h221v-983h103v-194h-103v-328h-202v328h-342zM213 522h154v471v45h-13l-12 -45z" />
<glyph unicode="5" horiz-adv-x="704" d="M74 438h221v-59q0 -115 14.5 -159t52.5 -44q37 0 52.5 45t15.5 156v336q0 111 -70 110q-33 0 -59.5 -40t-26.5 -70h-186v792h535v-219h-344v-313q8 6 21 15t47 23.5t59 12.5q78 0 133 -40t76.5 -99.5t28.5 -100.5t7 -71v-336q0 -393 -289 -393q-78 0 -133 29.5 t-84.5 71.5t-46 108.5t-20.5 118.5t-4 126z" />
<glyph unicode="6" horiz-adv-x="700" d="M66 309v856q0 356 288.5 356.5t288.5 -356.5v-94h-221q0 162 -11.5 210t-56.5 48q-39 0 -53 -37t-14 -127v-268q59 37 110 37q80 0 133.5 -36t76 -93t29.5 -101.5t7 -87.5v-307q0 -41 -8 -84t-34 -103.5t-89 -99t-157.5 -38.5t-158 38.5t-89 99t-33.5 103.5t-8 84z M287 244q0 -20 17.5 -44t49.5 -24q31 0 49.5 24.5t18.5 43.5v450q0 18 -18.5 43t-49 25t-48 -20.5t-19.5 -41.5v-456z" />
<glyph unicode="7" horiz-adv-x="589" d="M8 1286v219h557v-221l-221 -1284h-229l225 1286h-332z" />
<glyph unicode="8" horiz-adv-x="696" d="M53 322v176q0 188 115 297q-102 102 -102 276v127q0 23 2 49.5t18 79.5t43 93t84 71t135 31t135.5 -31t84 -71t43 -93t18.5 -79.5t2 -49.5v-127q0 -174 -103 -276q115 -109 115 -297v-176q0 -25 -2 -52.5t-18.5 -83t-45 -96.5t-88 -73.5t-141.5 -32.5t-141.5 32.5 t-88 73.5t-45 96.5t-18.5 83t-2 52.5zM268 410q2 -127 17.5 -175.5t62.5 -48.5q37 0 54.5 30t21.5 71t4 123q0 152 -13.5 209t-66.5 57t-66.5 -57t-13.5 -209zM283 1120q0 -127 12 -177t53 -50t53.5 50t12.5 177q0 113 -12.5 160t-53.5 47q-37 0 -50 -44t-15 -163z" />
<glyph unicode="9" horiz-adv-x="700" d="M57 340v94h222q0 -162 11 -210t56 -48q39 0 53.5 37t14.5 127v283q-59 -37 -111 -37q-80 0 -133 35.5t-75.5 93t-30 101.5t-7.5 87v293q0 41 8.5 84t34 103.5t89 99.5t157.5 39t157.5 -39t89 -99.5t34 -103.5t8.5 -84v-856q0 -356 -289 -356t-289 356zM279 825 q0 -18 18 -42.5t49 -24.5t48.5 20.5t19.5 40.5v443q0 20 -17.5 43.5t-50.5 23.5q-31 0 -49 -24.5t-18 -42.5v-437z" />
<glyph unicode=":" horiz-adv-x="362" d="M74 0v227h215v-227h-215zM74 893v227h215v-227h-215z" />
<glyph unicode=";" horiz-adv-x="362" d="M74 0v227h215v-227l-113 -266h-102l71 266h-71zM74 893v227h215v-227h-215z" />
<glyph unicode="&#x3c;" horiz-adv-x="1058" d="M74 649v160l911 475v-199l-698 -356l698 -356v-199z" />
<glyph unicode="=" horiz-adv-x="1058" d="M74 477v172h911v-172h-911zM74 864v172h911v-172h-911z" />
<glyph unicode="&#x3e;" horiz-adv-x="1058" d="M74 174v199l698 356l-698 356v199l911 -475v-160z" />
<glyph unicode="?" horiz-adv-x="645" d="M25 1260q12 33 33.5 68.5t59.5 81.5t96 76t124 27q82 -2 138 -33.5t82 -81.5t36 -91t10 -80q0 -82 -80 -219l-57 -96q-18 -32 -42 -106.5t-24 -143.5v-256h-190v256q0 102 24.5 195t48 140t64.5 117q43 72 53 113q6 27 -11 60.5t-56 33.5q-47 2 -82 -47t-49 -98zM199 0 h215v227h-215v-227z" />
<glyph unicode="@" horiz-adv-x="872" d="M66 303v889q0 43 17 94t56 106.5t117 92.5t184.5 37t184 -37t116.5 -92.5t56.5 -106.5t17.5 -94v-793h-164l-20 56q-4 -8 -11.5 -19.5t-37 -30t-64.5 -18.5q-145 0 -145 172v485q0 170 145 170q35 0 63.5 -17t39.5 -34l10 -16v45q0 51 -45 104.5t-145.5 53.5 t-145.5 -53.5t-45 -104.5v-889q0 -53 44 -103t146 -50q117 0 168 63l152 -86q-109 -143 -320 -143q-106 0 -184 35.5t-117 90t-56 103.5t-17 90zM535 573q0 -53 47 -53q49 0 49 53v455q0 53 -49 53q-47 0 -47 -53v-455z" />
<glyph unicode="A" horiz-adv-x="765" d="M20 0l228 1505h270l227 -1505h-215l-41 307h-213l-40 -307h-216zM307 541h152l-64 475l-6 39h-12l-6 -39z" />
<glyph unicode="B" horiz-adv-x="745" d="M82 0v1505h194q205 0 304.5 -91t99.5 -308q0 -106 -29.5 -175t-107.5 -136q6 -2 16 -9.5t37 -35t47.5 -65.5t36.5 -106.5t16 -152.5q0 -414 -342 -426h-272zM303 219q74 0 109 31q55 55 55 201q0 82 -16.5 134t-46 70.5t-48 22.5t-45.5 4h-8v-463zM303 885q23 0 34 1 t40 10t45 28.5t30.5 60.5t14.5 100.5t-14.5 100.5t-30.5 60.5t-45 28.5t-40 10t-34 1v-401z" />
<glyph unicode="C" horiz-adv-x="708" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-207h-206v207q-2 0 0 11.5t-3.5 27.5t-12.5 32.5t-24.5 28t-43.5 11.5q-35 0 -54.5 -28t-21.5 -54l-2 -29v-887q0 -12 2 -30.5t21.5 -49t54.5 -30.5q41 0 62.5 27.5 t21.5 56.5v26v207h206v-207q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5z" />
<glyph unicode="D" horiz-adv-x="761" d="M82 0v1505h174q90 0 153.5 -12t112.5 -33.5t80 -67.5t50.5 -95.5t28.5 -139.5t12 -177t3 -228.5t-3 -228.5t-12 -176t-28.5 -138t-50.5 -95t-80 -67.5t-112.5 -34t-153.5 -12.5h-174zM303 221q94 0 123 41q39 55 41 320v172v52q0 330 -25 402q-23 66 -92 74q-18 2 -47 2 v-1063z" />
<glyph unicode="E" horiz-adv-x="628" d="M82 0v1505h506v-227h-285v-395h205v-242h-205v-414h285v-227h-506z" />
<glyph unicode="F" horiz-adv-x="616" d="M82 0v1505h526v-227h-305v-395h205v-228h-205v-655h-221z" />
<glyph unicode="G" horiz-adv-x="737" d="M68 274v35v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-231h-221v231q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-905q0 -12 1 -30.5t19.5 -49.5t53 -31t53 28t18.5 54l2 29v272h-88v187h309v-750h-131l-26 72 q-70 -88 -172 -88q-78 0 -134.5 33.5t-80 80.5t-34.5 95t-11 81z" />
<glyph unicode="H" horiz-adv-x="778" d="M82 0v1505h221v-622h172v622h221v-1505h-221v655h-172v-655h-221z" />
<glyph unicode="I" horiz-adv-x="385" d="M82 0v1505h221v-1505h-221z" />
<glyph unicode="J" horiz-adv-x="423" d="M12 -14v217q4 0 12.5 -1t29 2t35.5 12t28.5 34.5t13.5 62.5v1192h221v-1226q0 -137 -79 -221q-70 -74 -222 -73q-19 0 -39 1z" />
<glyph unicode="K" horiz-adv-x="768" d="M82 0v1505h221v-501v-25h8l11 25l184 501h215l-203 -495l230 -1010h-216l-153 655l-6 31h-6l-13 -31l-51 -123v-532h-221z" />
<glyph unicode="L" horiz-adv-x="604" d="M82 0v1505h221v-1300h293v-205h-514z" />
<glyph unicode="M" horiz-adv-x="991" d="M82 0v1505h270l131 -688l11 -80h4l10 80l131 688h270v-1505h-204v946v64h-13l-8 -64l-141 -946h-94l-142 946l-8 64h-12v-64v-946h-205z" />
<glyph unicode="N" horiz-adv-x="808" d="M82 0v1505h197l215 -784l18 -70h12v70v784h203v-1505h-197l-215 784l-18 70h-12v-70v-784h-203z" />
<glyph unicode="O" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM289 309q0 -12 1 -30.5t19.5 -49t53 -30.5t53 27.5t18.5 56.5 l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887z" />
<glyph unicode="P" horiz-adv-x="720" d="M82 0v1505h221q166 0 277.5 -105.5t111.5 -345t-111.5 -346t-277.5 -106.5v-602h-221zM303 827q102 0 134 45.5t32 174.5q0 131 -33 182t-133 51v-453z" />
<glyph unicode="Q" horiz-adv-x="729" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -94 -45 -182q33 -43 88 -53v-189q-160 0 -227 117q-55 -18 -111 -18q-84 0 -144 33.5t-88 80.5t-43 95.5t-17 80.5zM289 309q0 -12 1 -30.5t19.5 -49t53 -30.5 t53 27.5t18.5 56.5l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887z" />
<glyph unicode="R" horiz-adv-x="739" d="M82 0v1505h221q377 0 377 -434q0 -258 -123 -342l141 -729h-221l-115 635h-59v-635h-221zM303 840q31 0 52.5 5t51 24.5t45 68.5t15.5 125t-15.5 125t-45 68.5t-51 24.5t-52.5 5v-446z" />
<glyph unicode="S" horiz-adv-x="702" d="M37 422l217 20q0 -256 104 -256q90 0 91 166q0 29 -8.5 59.5t-32 73.5t-36.5 64l-54 79q-40 58 -48 72q-66 96 -102.5 158t-68 149t-31.5 162q0 139 71.5 245t216.5 108h10q88 0 150 -35q66 -37 95.5 -101.5t42 -127t12.5 -136.5l-217 -20q0 217 -89 217q-76 -2 -75 -150 q0 -18 4 -39.5t10 -39t18.5 -43t20.5 -40t28 -43.5l28 -43l33 -48l32 -46l104 -159q31 -49 67 -139.5t36 -166.5q0 -379 -308 -378q-82 0 -142 25.5t-94 63.5t-53.5 99t-25.5 117.5t-6 132.5z" />
<glyph unicode="T" horiz-adv-x="647" d="M4 1278v227h639v-227h-209v-1278h-221v1278h-209z" />
<glyph unicode="U" horiz-adv-x="749" d="M80 309v1196h221v-1196q0 -12 1 -30.5t19.5 -49t53.5 -30.5t53 27.5t18 56.5l3 26v1196h221v-1196q0 -12 -2 -34.5t-17.5 -79t-43 -99.5t-88 -77.5t-144.5 -34.5t-144.5 33.5t-88 80.5t-43 95.5t-17.5 80.5z" />
<glyph unicode="V" horiz-adv-x="716" d="M18 1505h215l111 -827l8 -64h13l8 64l110 827h215l-229 -1505h-221z" />
<glyph unicode="W" horiz-adv-x="1036" d="M25 1505h204l88 -782l5 -49h16l6 49l94 782h160l94 -782l6 -49h17l4 49l88 782h205l-203 -1505h-172l-102 713l-13 88h-8l-12 -88l-103 -713h-172z" />
<glyph unicode="X" horiz-adv-x="737" d="M16 0l244 791l-240 714h218l120 -381l7 -18h8l6 18l121 381h217l-240 -714l244 -791h-217l-127 449l-4 18h-8l-5 -18l-127 -449h-217z" />
<glyph unicode="Y" horiz-adv-x="700" d="M14 1505h217l111 -481l6 -14h4l6 14l111 481h217l-225 -864v-641h-221v641z" />
<glyph unicode="Z" horiz-adv-x="626" d="M20 0v238l347 1048h-297v219h536v-219l-352 -1067h352v-219h-586z" />
<glyph unicode="[" horiz-adv-x="538" d="M82 -16v1521h399v-196h-202v-1325h202v-197h-399v197z" />
<glyph unicode="\" horiz-adv-x="792" d="M8 1692h162l614 -1872h-168z" />
<glyph unicode="]" horiz-adv-x="538" d="M57 -16h203v1325h-203v196h400v-1521v-197h-400v197z" />
<glyph unicode="^" horiz-adv-x="1101" d="M53 809l381 696h234l381 -696h-199l-299 543l-299 -543h-199z" />
<glyph unicode="_" horiz-adv-x="1210" d="M74 -154h1063v-172h-1063v172z" />
<glyph unicode="`" horiz-adv-x="1024" d="M293 1489h215l106 -184h-159z" />
<glyph unicode="a" horiz-adv-x="681" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v37v86q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q102 0 177 -74t75 -180v-351v-337q0 -109 14 -195h-202q-18 20 -19 90h-14q-20 -37 -65.5 -71.5t-100.5 -34.5 q-59 0 -112.5 60t-53.5 216zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287q-143 -62 -143 -250z" />
<glyph unicode="b" horiz-adv-x="686" d="M82 0v1505h207v-458q88 90 164 90q78 0 118.5 -69t40.5 -150v-715q0 -82 -41 -150.5t-118 -68.5q-33 0 -74 22.5t-66 44.5l-24 23v-74h-207zM289 246q0 -29 19.5 -48.5t42 -19.5t39 19.5t16.5 48.5v628q0 29 -16.5 48.5t-39 19.5t-42 -21.5t-19.5 -46.5v-628z" />
<glyph unicode="c" horiz-adv-x="645" d="M66 315v490q0 332 264 332q137 0 201.5 -71t64.5 -251v-88h-207v135q0 51 -12 70.5t-47 19.5q-57 0 -58 -90v-604q0 -90 58 -90q35 0 47 19.5t12 70.5v156h207v-109q0 -180 -64.5 -250.5t-201.5 -70.5q-264 -1 -264 331z" />
<glyph unicode="d" horiz-adv-x="686" d="M74 203v715q0 82 41 150.5t118 68.5q33 0 74 -22.5t66 -45.5l24 -22v458h207v-1505h-207v74q-88 -90 -164 -90q-78 0 -118.5 68.5t-40.5 150.5zM281 246q0 -29 16 -48.5t38.5 -19.5t42 19.5t19.5 48.5v628q0 25 -19.5 46.5t-42 21.5t-38.5 -19.5t-16 -48.5v-628z" />
<glyph unicode="e" horiz-adv-x="659" d="M66 279v563q0 12 2 31.5t16 70.5t40 90t81 71t129 32q76 0 130 -30t79.5 -73t40 -85t14.5 -72l2 -29v-326h-342v-243v-13q0 -8 4 -27.5t11.5 -34t23.5 -26.5t37 -12q35 0 53.5 27.5t18.5 56.5l2 29v122h192v-129q0 -12 -2 -31.5t-16.5 -68.5t-39 -88t-79.5 -69.5 t-131 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-16 74zM258 684h150v158q0 12 -1 31.5t-19.5 51t-53.5 31.5q-33 0 -52.5 -28.5t-21.5 -57.5l-2 -28v-158z" />
<glyph unicode="f" horiz-adv-x="475" d="M20 934v186h105v17v14q0 51 2 84t14.5 92t35 94t70.5 63.5t115 28.5q29 0 53.5 -3t35.5 -7l8 -4v-178q-27 8 -62 8q-66 0 -65 -180v-16v-13h104v-186h-104v-934h-207v934h-105z" />
<glyph unicode="g" horiz-adv-x="700" d="M12 -184q0 94 162 170q-125 35 -125 149q0 45 40 93t89 75q-51 35 -80.5 95.5t-34.5 105.5l-4 43v305q0 12 2 30.5t16.5 67.5t39 87t79 69t126.5 31q135 0 206 -103q102 102 170 103v-185q-72 0 -120 -24l10 -70v-317q0 -10 -2 -29.5t-17.5 -67t-40 -84t-79 -66.5 t-127.5 -30q-27 0 -39 2q-29 -25 -29 -51q0 -16 11 -28.5t42 -20.5t45.5 -10t59.5 -11q57 -8 101 -21t89 -41t70.5 -78t25.5 -120q0 -152 -103 -219t-251 -67q-164 4 -248 52t-84 165zM213 -150q0 -78 135 -77q59 0 108.5 19.5t49.5 55.5q0 33 -20.5 50.5t-90.5 29.5 l-106 21q-76 -44 -76 -99zM262 509q0 -17 15.5 -45t44.5 -28q31 0 47 25.5t16 50.5v25v307q-1 1 -1 3.5t1 7.5t1 6q0 8 -3 19q-4 15 -9 30.5t-18.5 25.5t-33.5 10q-29 0 -44.5 -25.5t-15.5 -52.5v-24v-307v-28z" />
<glyph unicode="h" horiz-adv-x="690" d="M82 0v1505h207v-479l32 32q30 30 66.5 54.5t69.5 24.5q76 0 115.5 -69t39.5 -150v-918h-206v887q0 49 -50 49q-18 0 -34.5 -13.5t-24.5 -25.5l-8 -14v-883h-207z" />
<glyph unicode="i" horiz-adv-x="370" d="M82 0v1120h207v-1120h-207zM82 1298v207h207v-207h-207z" />
<glyph unicode="j" horiz-adv-x="364" d="M-45 -182q29 -8 57 -8q64 0 64 142v10.5v10.5v1147h207v-1149q0 -51 -2 -83.5t-14.5 -90t-35 -92.5t-70.5 -62.5t-116 -27.5q-29 0 -51.5 3t-30.5 5l-8 4v191zM76 1298v207h207v-207h-207z" />
<glyph unicode="k" horiz-adv-x="641" d="M82 0v1505h207v-678v-36h10l12 36l101 293h186l-149 -364l188 -756h-199l-102 453l-4 16h-10l-7 -16l-26 -66v-387h-207z" />
<glyph unicode="l" horiz-adv-x="370" d="M82 0v1505h207v-1505h-207z" />
<glyph unicode="m" horiz-adv-x="1021" d="M82 0v1120h207v-94q2 0 32.5 30.5t68.5 55.5t71 25q100 0 139 -125l43 41t76 60.5t69 23.5q76 0 116 -69t40 -150v-918h-194v887q0 49 -56 49q-18 0 -37.5 -13.5t-29.5 -25.5l-11 -14v-883h-194v887q0 49 -55 49q-18 0 -38 -13.5t-30 -25.5l-10 -14v-883h-207z" />
<glyph unicode="n" horiz-adv-x="690" d="M82 0v1120h207v-94l32 32q30 30 66.5 54.5t69.5 24.5q76 0 115.5 -69t39.5 -150v-918h-206v887q0 49 -50 49q-18 0 -34.5 -13.5t-24.5 -25.5l-8 -14v-883h-207z" />
<glyph unicode="o" horiz-adv-x="657" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q76 0 130 -30t79.5 -73t40 -85t16.5 -72v-29v-576q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-80 -69.5t-129.5 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-14 74zM257 259q0 -9 3 -20q4 -17 10 -34t21.5 -28 t36.5 -11q35 0 52 27.5t17 56.5l2 29v563q-2 0 0 11q1 4 1 8q0 9 -3 21q-4 17 -10 33.5t-21.5 28.5t-37.5 12q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-563q1 -1 1 -4t-1 -9t-1 -7z" />
<glyph unicode="p" horiz-adv-x="686" d="M82 -385v1505h207v-73q88 90 164 90q78 0 118.5 -69t40.5 -150v-715q0 -82 -41 -150.5t-118 -68.5q-33 0 -74 22.5t-66 44.5l-24 23v-459h-207zM289 246q0 -25 19.5 -46.5t42 -21.5t39 19.5t16.5 48.5v628q0 29 -16.5 48.5t-39 19.5t-42 -19.5t-19.5 -48.5v-628z" />
<glyph unicode="q" horiz-adv-x="686" d="M74 203v715q0 82 41 150.5t118 68.5q33 0 74 -22.5t66 -45.5l24 -22v73h207v-1505h-207v459q-88 -90 -164 -90q-78 0 -118.5 68.5t-40.5 150.5zM281 246q0 -29 16 -48.5t38.5 -19.5t42 21.5t19.5 46.5v628q0 29 -19.5 48.5t-42 19.5t-38.5 -19.5t-16 -48.5v-628z" />
<glyph unicode="r" horiz-adv-x="503" d="M82 0v1120h207v-125q8 41 58 91.5t149 50.5v-230q-34 11 -64 11q-56 0 -98 -37q-45 -41 -45 -103v-778h-207z" />
<glyph unicode="s" horiz-adv-x="630" d="M37 326h192q0 -170 97 -170q72 0 71 135q0 74 -129 198q-68 66 -98.5 99t-64 101.5t-33.5 144.5q0 55 12 104t39 95t78 74t123 30h11q78 0 131 -26q56 -28 80.5 -79t33 -95t8.5 -103h-193q0 131 -67 131q-63 -2 -64 -131q0 -33 23.5 -73t45 -62.5t66.5 -65.5 q190 -182 191 -342q0 -123 -64.5 -215t-199.5 -92q-72 0 -126.5 24.5t-85 60t-49 85t-23.5 89.5t-5 83z" />
<glyph unicode="t" horiz-adv-x="501" d="M20 934v186h105v277h207v-277h141v-186h-141v-557q0 -184 65 -184l76 8v-203q-45 -14 -111 -14q-68 0 -115.5 28.5t-70 64.5t-35 96t-14.5 95t-2 92v574h-105z" />
<glyph unicode="u" horiz-adv-x="690" d="M78 203v917h207v-887q0 -49 49 -49q18 0 34.5 13.5t24.5 27.5l8 13v882h207v-1120h-207v94l-31 -32q-30 -30 -67 -54t-70 -24q-76 0 -115.5 68.5t-39.5 150.5z" />
<glyph unicode="v" horiz-adv-x="602" d="M16 1120h201l68 -649l8 -72h16l8 72l68 649h201l-183 -1120h-204z" />
<glyph unicode="w" horiz-adv-x="905" d="M20 1120h189l65 -585l9 -64h12l10 64l86 585h123l86 -585l10 -64h13l8 64l65 585h189l-166 -1120h-172l-80 535l-10 63h-8l-11 -63l-80 -535h-172z" />
<glyph unicode="x" horiz-adv-x="618" d="M16 0l193 578l-176 542h194l74 -262l6 -31h4l6 31l74 262h195l-176 -542l192 -578h-201l-84 283l-6 30h-4l-6 -30l-84 -283h-201z" />
<glyph unicode="y" horiz-adv-x="634" d="M25 1120h202l82 -688l4 -57h9l4 57l82 688h202l-198 -1204q-16 -127 -94 -222t-193 -95l-92 4v184q16 -4 49 -4q61 6 97 61.5t36 122.5z" />
<glyph unicode="z" horiz-adv-x="532" d="M12 0v168l285 764h-240v188h459v-168l-285 -764h285v-188h-504z" />
<glyph unicode="{" horiz-adv-x="688" d="M61 453v163q72 0 102 49.5t30 90.5v397q0 223 96 298t342 71v-172q-135 2 -188.5 -38t-53.5 -159v-397q0 -143 -127 -221q127 -82 127 -222v-397q0 -119 53.5 -159t188.5 -38v-172q-246 -4 -342 71t-96 298v397q0 20 -8.5 47t-41.5 59t-82 34z" />
<glyph unicode="|" horiz-adv-x="356" d="M82 -512v2204h192v-2204h-192z" />
<glyph unicode="}" horiz-adv-x="688" d="M57 -281q135 -2 188.5 38t53.5 159v397q0 139 127 222q-127 78 -127 221v397q0 119 -53 159t-189 38v172q246 4 342.5 -71t96.5 -298v-397q0 -23 8 -50.5t41 -58.5t82 -31v-163q-72 -4 -101.5 -52.5t-29.5 -87.5v-397q0 -223 -96.5 -298t-342.5 -71v172z" />
<glyph unicode="~" horiz-adv-x="1280" d="M113 1352q4 12 12 32.5t38 73.5t64.5 94t95 74t126.5 33q55 0 111 -18.5t82 -33t83 -51.5q106 -72 174 -71q57 0 105.5 46t66.5 91l19 45l135 -57q-4 -12 -12.5 -34t-38 -75t-64.5 -93t-91 -74t-120 -34q-121 0 -272 101q-115 74 -178.5 74t-113.5 -45.5t-69 -90.5 l-18 -45z" />
<glyph unicode="&#xa1;" horiz-adv-x="387" d="M74 -385l55 1100h129l55 -1100h-239zM86 893v227h215v-227h-215z" />
<glyph unicode="&#xa2;" horiz-adv-x="636" d="M66 508v489q0 297 208 328v242h123v-244q98 -16 144.5 -88t46.5 -227v-88h-189v135q0 90 -73 90q-72 0 -72 -90v-604q0 -90 72 -91q74 0 73 91v155h189v-108q0 -156 -46 -228.5t-145 -89.5v-303h-123v301q-208 31 -208 330z" />
<glyph unicode="&#xa3;" horiz-adv-x="817" d="M4 63q8 20 23.5 53.5t70 91.5t117.5 68q37 111 37 199q0 68 -31 174h-188v137h147l-6 21q-78 254 -78 342q0 70 15.5 131t48.5 116.5t92 89.5t139 36q96 2 164 -32t103.5 -93.5t50 -127t14.5 -149.5h-213q0 86 -25.5 142.5t-89.5 54.5q-47 -2 -68.5 -51t-21.5 -117 q0 -113 70 -338l6 -25h211v-137h-174q25 -100 24 -174q0 -104 -57 -219q16 -8 44 -24.5t48.5 -25.5t40.5 -9q74 4 82 190l188 -22q-12 -182 -81.5 -281.5t-169.5 -99.5q-51 0 -143.5 51t-129.5 51q-33 0 -61.5 -25.5t-40.5 -52.5l-12 -24z" />
<glyph unicode="&#xa5;" horiz-adv-x="720" d="M25 1505h217l110 -481l6 -14h4l7 14l110 481h217l-196 -753h147v-138h-176v-137h176v-137h-176v-340h-221v340h-176v137h176v137h-176v138h147z" />
<glyph unicode="&#xa8;" horiz-adv-x="1024" d="M272 1305v200h191v-200h-191zM561 1305v200h191v-200h-191z" />
<glyph unicode="&#xa9;" horiz-adv-x="1644" d="M53 751.5q0 317.5 225.5 544t543 226.5t543.5 -226.5t226 -544t-226 -542.5t-543.5 -225t-543 225t-225.5 542.5zM172 751.5q0 -266.5 191.5 -458t457.5 -191.5t459 191.5t193 458.5q0 268 -191.5 459.5t-460.5 191.5q-266 0 -457.5 -192.5t-191.5 -459zM627 487v531 q0 8 1 21.5t11 47t27.5 59t57.5 47t95 21.5q53 0 92 -20t56.5 -49t28 -57.5t12.5 -49.5v-20v-125h-138v125v17q0 11 -12 28.5t-37 17.5q-23 0 -35 -16t-12 -33l-2 -14v-531q0 -63 49 -63q25 0 37 15.5t12 31.5v16v125h138v-125q0 -8 -1 -21t-11.5 -47t-28 -59.5t-56.5 -47 t-92 -21.5q-86 0 -134 49t-54 98z" />
<glyph unicode="&#xad;" horiz-adv-x="444" d="M74 455v194h297v-194h-297z" />
<glyph unicode="&#xae;" horiz-adv-x="1644" d="M53 751.5q0 317.5 225.5 544t543 226.5t543.5 -226.5t226 -544t-226 -542.5t-543.5 -225t-543 225t-225.5 542.5zM172 751.5q0 -266.5 191.5 -458t457.5 -191.5t459 191.5t193 458.5q0 268 -191.5 459.5t-460.5 191.5q-266 0 -457.5 -192.5t-191.5 -459zM625 313v879h196 q231 0 232 -258q0 -76 -16.5 -125t-71.5 -96l106 -400h-151l-95 365h-55v-365h-145zM770 805h45q43 0 65.5 21.5t27.5 45t5 60.5q0 39 -5 63.5t-27.5 46t-65.5 21.5h-45v-258z" />
<glyph unicode="&#xaf;" horiz-adv-x="1024" d="M313 1315v162h398v-162h-398z" />
<glyph unicode="&#xb4;" horiz-adv-x="1024" d="M410 1305l106 184h215l-162 -184h-159z" />
<glyph unicode="&#xb7;" horiz-adv-x="215" d="M0 649v228h215v-228h-215z" />
<glyph unicode="&#xb8;" horiz-adv-x="1024" d="M426 -111h172v-141l-45 -133h-104l40 133h-63v141z" />
<glyph unicode="&#xbf;" horiz-adv-x="645" d="M41 -106q0 82 80 219l57 95q18 32 42 106.5t24 144.5v256h190v-256q0 -102 -24.5 -195.5t-48 -140.5t-64.5 -117q-43 -72 -53 -112q-6 -27 11 -61t56 -34q47 -2 82 47.5t49 98.5l179 -84q-12 -33 -34 -69t-60 -82t-96 -75.5t-124 -27.5q-82 2 -138 33.5t-82 82t-36 91.5 t-10 80zM231 893v227h215v-227h-215z" />
<glyph unicode="&#xc0;" horiz-adv-x="765" d="M20 0l228 1505h270l227 -1505h-215l-41 307h-213l-40 -307h-216zM141 1823h215l107 -185h-160zM307 541h152l-64 475l-6 39h-12l-6 -39z" />
<glyph unicode="&#xc1;" horiz-adv-x="765" d="M20 0l228 1505h270l227 -1505h-215l-41 307h-213l-40 -307h-216zM293 1638l106 185h215l-161 -185h-160zM307 541h152l-64 475l-6 39h-12l-6 -39z" />
<glyph unicode="&#xc2;" horiz-adv-x="765" d="M20 0l228 1505h270l227 -1505h-215l-41 307h-213l-40 -307h-216zM133 1638l141 185h220l141 -185h-189l-63 72l-61 -72h-189zM307 541h152l-64 475l-6 39h-12l-6 -39z" />
<glyph unicode="&#xc3;" horiz-adv-x="765" d="M20 0l228 1505h270l227 -1505h-215l-41 307h-213l-40 -307h-216zM184 1632v152q49 39 109 39q33 0 91 -18.5t89 -20.5q25 0 52.5 8t41.5 16l15 9v-152q-51 -39 -109 -39q-31 0 -89 19.5t-91 19.5q-25 0 -52.5 -8t-41.5 -17zM307 541h152l-64 475l-6 39h-12l-6 -39z" />
<glyph unicode="&#xc4;" horiz-adv-x="765" d="M20 0l228 1505h270l227 -1505h-215l-41 307h-213l-40 -307h-216zM143 1638v201h191v-201h-191zM307 541h152l-64 475l-6 39h-12l-6 -39zM432 1638v201h191v-201h-191z" />
<glyph unicode="&#xc5;" horiz-adv-x="765" d="M20 0l228 1505h270l227 -1505h-215l-41 307h-213l-40 -307h-216zM231 1761.5q0 61.5 45.5 102.5t109 41t107.5 -41t44 -102.5t-44 -102.5t-107.5 -41t-109 41t-45.5 102.5zM307 541h152l-64 475l-6 39h-12l-6 -39zM309 1761.5q0 -28.5 23.5 -50t52.5 -21.5t52.5 21.5 t23.5 50t-23.5 50t-52.5 21.5t-52.5 -21.5t-23.5 -50z" />
<glyph unicode="&#xc6;" horiz-adv-x="1099" d="M16 0l420 1505h623v-227h-285v-395h205v-242h-205v-414h285v-227h-506v307h-227l-90 -307h-220zM393 541h160v514h-10z" />
<glyph unicode="&#xc7;" horiz-adv-x="708" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-207h-206v207q-2 0 0 11.5t-3.5 27.5t-12.5 32.5t-24.5 28t-43.5 11.5q-35 0 -54.5 -28t-21.5 -54l-2 -29v-887q0 -12 2 -30.5t21.5 -49t54.5 -30.5q41 0 62.5 27.5 t21.5 56.5v26v207h206v-207q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM268 -111v-141h64l-41 -133h104l45 133v141h-172z" />
<glyph unicode="&#xc8;" horiz-adv-x="628" d="M82 0v1505h506v-227h-285v-395h205v-242h-205v-414h285v-227h-506zM111 1823h215l106 -185h-160z" />
<glyph unicode="&#xc9;" horiz-adv-x="628" d="M82 0v1505h506v-227h-285v-395h205v-242h-205v-414h285v-227h-506zM236 1638l106 185h215l-162 -185h-159z" />
<glyph unicode="&#xca;" horiz-adv-x="628" d="M82 0v1505h506v-227h-285v-395h205v-242h-205v-414h285v-227h-506zM84 1638l141 185h219l142 -185h-189l-63 72l-62 -72h-188z" />
<glyph unicode="&#xcb;" horiz-adv-x="628" d="M82 0v1505h506v-227h-285v-395h205v-242h-205v-414h285v-227h-506zM94 1638v201h191v-201h-191zM383 1638v201h190v-201h-190z" />
<glyph unicode="&#xcc;" horiz-adv-x="401" d="M-6 1823h215l106 -185h-159zM98 0v1505h221v-1505h-221z" />
<glyph unicode="&#xcd;" horiz-adv-x="401" d="M82 0v1505h221v-1505h-221zM86 1638l107 185h215l-162 -185h-160z" />
<glyph unicode="&#xce;" horiz-adv-x="370" d="M-66 1638l142 185h219l141 -185h-188l-64 72l-61 -72h-189zM74 0v1505h221v-1505h-221z" />
<glyph unicode="&#xcf;" horiz-adv-x="372" d="M-53 1638v201h190v-201h-190zM76 0v1505h221v-1505h-221zM236 1638v201h190v-201h-190z" />
<glyph unicode="&#xd0;" horiz-adv-x="761" d="M20 655v228h62v622h174q90 0 153.5 -12t112.5 -33.5t80 -67.5t50.5 -95.5t28.5 -139.5t12 -177t3 -228.5t-3 -228.5t-12 -176t-28.5 -138t-50.5 -95t-80 -67.5t-112.5 -34t-153.5 -12.5h-174v655h-62zM303 221q94 0 123 41q39 55 41 320v172q2 377 -25 454q-23 66 -92 74 q-18 2 -47 2v-401h84v-228h-84v-434z" />
<glyph unicode="&#xd1;" horiz-adv-x="808" d="M82 0v1505h197l215 -784l18 -70h12v70v784h203v-1505h-197l-215 784l-18 70h-12v-70v-784h-203zM207 1632v152q49 39 108 39q33 0 91.5 -18.5t89.5 -20.5q25 0 52 8t42 16l14 9v-152q-51 -39 -108 -39q-31 0 -89.5 19.5t-91.5 19.5q-25 0 -52 -8t-42 -17z" />
<glyph unicode="&#xd2;" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM121 1823h215l106 -185h-159zM289 309q0 -12 1 -30.5t19.5 -49 t53 -30.5t53 27.5t18.5 56.5l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887z" />
<glyph unicode="&#xd3;" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM285 1638l106 185h215l-162 -185h-159zM289 309q0 -12 1 -30.5 t19.5 -49t53 -30.5t53 27.5t18.5 56.5l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887z" />
<glyph unicode="&#xd4;" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM113 1638l141 185h219l141 -185h-188l-64 72l-61 -72h-188z M289 309q0 -12 1 -30.5t19.5 -49t53 -30.5t53 27.5t18.5 56.5l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887z" />
<glyph unicode="&#xd5;" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM164 1632v152q49 39 108 39q33 0 91.5 -18.5t89.5 -20.5 q25 0 52 8t42 16l14 9v-152q-51 -39 -108 -39q-31 0 -89.5 19.5t-91.5 19.5q-25 0 -52 -8t-42 -17zM289 309q0 -12 1 -30.5t19.5 -49t53 -30.5t53 27.5t18.5 56.5l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887z" />
<glyph unicode="&#xd6;" d="M68 309v887q0 12 2 34.5t17 79t43 99.5t88.5 78t144 35t144 -34t88.5 -81t43 -95t17 -83l2 -33v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144 -34.5t-144 33.5t-88.5 80.5t-43 95.5t-17 80.5zM123 1638v201h190v-201h-190zM289 309q0 -12 1 -30.5t19.5 -49 t53 -30.5t53 27.5t18.5 56.5l2 26v887q0 12 -1 30.5t-19.5 49.5t-53 31t-53 -28t-18.5 -54l-2 -29v-887zM412 1638v201h190v-201h-190z" />
<glyph unicode="&#xd8;" d="M59 -20l47 157q-18 37 -27 80t-9 68l-2 24v887q0 12 2 34.5t17 79t43 99.5t88.5 78t143.5 35q92 0 158 -43l15 47h122l-45 -150q20 -39 31.5 -84t11.5 -71l2 -25v-887q0 -12 -2 -34.5t-17 -79t-43 -99.5t-88.5 -77.5t-144.5 -34.5q-96 0 -159 43l-15 -47h-129zM289 309 q0 -12 1 -30.5t19.5 -49t53 -30.5t53 27.5t18.5 56.5l2 26v488zM289 727l147 479q-8 100 -74 101q-35 0 -53 -28t-18 -54l-2 -29v-469z" />
<glyph unicode="&#xd9;" horiz-adv-x="749" d="M80 309q0 -12 2 -34.5t17.5 -79t43 -99.5t88 -77.5t144.5 -34.5t144.5 33.5t88 80.5t43 95.5t17.5 80.5l2 35v1196h-221v-1196q0 -12 -1.5 -30.5t-19.5 -49t-53 -30.5t-53.5 27.5t-18.5 56.5l-2 26v1196h-221v-1196zM145 1823h215l107 -185h-160z" />
<glyph unicode="&#xda;" horiz-adv-x="749" d="M80 309q0 -12 2 -34.5t17.5 -79t43 -99.5t88 -77.5t144.5 -34.5t144.5 33.5t88 80.5t43 95.5t17.5 80.5l2 35v1196h-221v-1196q0 -12 -1.5 -30.5t-19.5 -49t-53 -30.5t-53.5 27.5t-18.5 56.5l-2 26v1196h-221v-1196zM307 1638l107 185h215l-162 -185h-160z" />
<glyph unicode="&#xdb;" horiz-adv-x="749" d="M80 309q0 -12 2 -34.5t17.5 -79t43 -99.5t88 -77.5t144.5 -34.5t144.5 33.5t88 80.5t43 95.5t17.5 80.5l2 35v1196h-221v-1196q0 -12 -1.5 -30.5t-19.5 -49t-53 -30.5t-53.5 27.5t-18.5 56.5l-2 26v1196h-221v-1196zM125 1638l141 185h219l142 -185h-189l-63 72l-62 -72 h-188z" />
<glyph unicode="&#xdc;" horiz-adv-x="749" d="M80 309v1196h221v-1196q0 -12 1 -30.5t19.5 -49t53.5 -30.5t53 27.5t18 56.5l3 26v1196h221v-1196q0 -12 -2 -34.5t-17.5 -79t-43 -99.5t-88 -77.5t-144.5 -34.5t-144.5 33.5t-88 80.5t-43 95.5t-17.5 80.5zM135 1638v201h191v-201h-191zM424 1638v201h190v-201h-190z " />
<glyph unicode="&#xdd;" horiz-adv-x="704" d="M16 1505l226 -864v-641h221v641l225 864h-217l-111 -481l-6 -14h-4l-6 14l-111 481h-217zM254 1638l106 185h215l-161 -185h-160z" />
<glyph unicode="&#xde;" d="M82 0v1505h219v-241h2q166 0 277.5 -105.5t111.5 -345.5t-111.5 -346.5t-277.5 -106.5v-360h-221zM303 586q102 0 134 45t32 174q0 131 -33 182t-133 51v-452z" />
<glyph unicode="&#xdf;" horiz-adv-x="733" d="M66 0v1235q0 123 70.5 205t209.5 82q133 0 201.5 -81t68.5 -204q0 -109 -88 -174q152 -88 152 -488q0 -182 -20.5 -298.5t-66.5 -176t-102.5 -80t-144.5 -20.5v193q45 0 70.5 25.5t41 111.5t15.5 245q0 170 -15.5 259.5t-41 117t-70.5 27.5v141q35 0 60.5 33t25.5 84 q0 45 -21.5 72.5t-64.5 27.5q-74 0 -74 -102v-1235h-206z" />
<glyph unicode="&#xe0;" horiz-adv-x="681" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v37v86q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q102 0 177 -74t75 -180v-351v-337q0 -109 14 -195h-202q-18 20 -19 90h-14q-20 -37 -65.5 -71.5t-100.5 -34.5 q-59 0 -112.5 60t-53.5 216zM102 1489h215l107 -184h-160zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287q-143 -62 -143 -250z" />
<glyph unicode="&#xe1;" horiz-adv-x="681" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v37v86q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q102 0 177 -74t75 -180v-351v-337q0 -109 14 -195h-202q-18 20 -19 90h-14q-20 -37 -65.5 -71.5t-100.5 -34.5 q-59 0 -112.5 60t-53.5 216zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287q-143 -62 -143 -250zM264 1305l107 184h215l-162 -184h-160z" />
<glyph unicode="&#xe2;" horiz-adv-x="681" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v37v86q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q102 0 177 -74t75 -180v-351v-337q0 -109 14 -195h-202q-18 20 -19 90h-14q-20 -37 -65.5 -71.5t-100.5 -34.5 q-59 0 -112.5 60t-53.5 216zM90 1305l141 184h220l141 -184h-189l-63 71l-61 -71h-189zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287q-143 -62 -143 -250z" />
<glyph unicode="&#xe3;" horiz-adv-x="681" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v37v86q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q102 0 177 -74t75 -180v-351v-337q0 -109 14 -195h-202q-18 20 -19 90h-14q-20 -37 -65.5 -71.5t-100.5 -34.5 q-59 0 -112.5 60t-53.5 216zM143 1305v151q49 39 109 39q33 0 91 -18.5t89 -20.5q25 0 52.5 8.5t41.5 16.5l15 8v-152q-51 -39 -109 -39q-31 0 -89 19.5t-91 19.5q-25 0 -52.5 -8t-41.5 -16zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287q-143 -62 -143 -250z" />
<glyph unicode="&#xe4;" horiz-adv-x="681" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v37v86q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q102 0 177 -74t75 -180v-351v-337q0 -109 14 -195h-202q-18 20 -19 90h-14q-20 -37 -65.5 -71.5t-100.5 -34.5 q-59 0 -112.5 60t-53.5 216zM102 1305v200h191v-200h-191zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287q-143 -62 -143 -250zM391 1305v200h191v-200h-191z" />
<glyph unicode="&#xe5;" horiz-adv-x="681" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v37v86q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q102 0 177 -74t75 -180v-351v-337q0 -109 14 -195h-202q-18 20 -19 90h-14q-20 -37 -65.5 -71.5t-100.5 -34.5 q-59 0 -112.5 60t-53.5 216zM188 1421.5q0 61.5 45.5 102.5t109 41t107.5 -41t44 -102.5t-44 -102.5t-107.5 -41t-109 41t-45.5 102.5zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287q-143 -62 -143 -250zM266 1421.5q0 -28.5 23.5 -50t52.5 -21.5t52.5 21.5 t23.5 50t-23.5 50t-52.5 21.5t-52.5 -21.5t-23.5 -50z" />
<glyph unicode="&#xe6;" horiz-adv-x="989" d="M49 260q0 106 34 187t83 124t98 73t88 50.5t43 36.5v123q0 102 -57 102q-20 0 -32.5 -9t-17.5 -32.5t-7 -37t-2 -47.5v-39h-207v47q0 123 80.5 211t197.5 88q84 0 152 -52q66 51 162 52q76 0 130 -30t79.5 -73t40 -85t16.5 -72v-29v-326h-342v-243v-13q0 -8 4 -27.5 t11 -34t23.5 -26.5t37.5 -12q35 0 53 27.5t20 56.5v29v122h193v-129q0 -12 -2 -31.5t-16.5 -68.5t-39 -88t-80 -69.5t-130.5 -30.5q-158 0 -226 131q-102 -131 -221 -131q-59 0 -112.5 60t-53.5 216zM252 291q0 -104 57 -105q35 0 60.5 19.5t25.5 48.5v287 q-143 -62 -143 -250zM588 684h149v158q0 12 -1 31.5t-19.5 51t-52.5 31.5q-33 0 -52.5 -28.5t-21.5 -57.5l-2 -28v-158z" />
<glyph unicode="&#xe7;" horiz-adv-x="645" d="M66 315v490q0 332 264 332q137 0 201.5 -71t64.5 -251v-88h-207v135q0 51 -12 70.5t-47 19.5q-57 0 -58 -90v-604q0 -90 58 -90q35 0 47 19.5t12 70.5v156h207v-109q0 -180 -64.5 -250.5t-201.5 -70.5q-264 -1 -264 331zM238 -111v-141h63l-41 -133h105l45 133v141h-172z " />
<glyph unicode="&#xe8;" horiz-adv-x="659" d="M66 279v563q0 12 2 31.5t16 70.5t40 90t81 71t129 32q76 0 130 -30t79.5 -73t40 -85t14.5 -72l2 -29v-326h-342v-243v-13q0 -8 4 -27.5t11.5 -34t23.5 -26.5t37 -12q35 0 53.5 27.5t18.5 56.5l2 29v122h192v-129q0 -12 -2 -31.5t-16.5 -68.5t-39 -88t-79.5 -69.5 t-131 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-16 74zM102 1489h215l107 -184h-160zM258 684h150v158q0 12 -1 31.5t-19.5 51t-53.5 31.5q-33 0 -52.5 -28.5t-21.5 -57.5l-2 -28v-158z" />
<glyph unicode="&#xe9;" horiz-adv-x="659" d="M66 279v563q0 12 2 31.5t16 70.5t40 90t81 71t129 32q76 0 130 -30t79.5 -73t40 -85t14.5 -72l2 -29v-326h-342v-243v-13q0 -8 4 -27.5t11.5 -34t23.5 -26.5t37 -12q35 0 53.5 27.5t18.5 56.5l2 29v122h192v-129q0 -12 -2 -31.5t-16.5 -68.5t-39 -88t-79.5 -69.5 t-131 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-16 74zM258 684h150v158q0 12 -1 31.5t-19.5 51t-53.5 31.5q-33 0 -52.5 -28.5t-21.5 -57.5l-2 -28v-158zM264 1305l107 184h215l-162 -184h-160z" />
<glyph unicode="&#xea;" horiz-adv-x="659" d="M66 279v563q0 12 2 31.5t16 70.5t40 90t81 71t129 32q76 0 130 -30t79.5 -73t40 -85t14.5 -72l2 -29v-326h-342v-243v-13q0 -8 4 -27.5t11.5 -34t23.5 -26.5t37 -12q35 0 53.5 27.5t18.5 56.5l2 29v122h192v-129q0 -12 -2 -31.5t-16.5 -68.5t-39 -88t-79.5 -69.5 t-131 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-16 74zM80 1305l141 184h219l142 -184h-189l-63 71l-62 -71h-188zM258 684h150v158q0 12 -1 31.5t-19.5 51t-53.5 31.5q-33 0 -52.5 -28.5t-21.5 -57.5l-2 -28v-158z" />
<glyph unicode="&#xeb;" horiz-adv-x="659" d="M66 279v563q0 12 2 31.5t16 70.5t40 90t81 71t129 32q76 0 130 -30t79.5 -73t40 -85t14.5 -72l2 -29v-326h-342v-243v-13q0 -8 4 -27.5t11.5 -34t23.5 -26.5t37 -12q35 0 53.5 27.5t18.5 56.5l2 29v122h192v-129q0 -12 -2 -31.5t-16.5 -68.5t-39 -88t-79.5 -69.5 t-131 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-16 74zM90 1305v200h191v-200h-191zM258 684h150v158q0 12 -1 31.5t-19.5 51t-53.5 31.5q-33 0 -52.5 -28.5t-21.5 -57.5l-2 -28v-158zM379 1305v200h190v-200h-190z" />
<glyph unicode="&#xec;" horiz-adv-x="370" d="M-33 1489h215l107 -184h-160zM82 0h207v1120h-207v-1120z" />
<glyph unicode="&#xed;" horiz-adv-x="370" d="M82 0h207v1120h-207v-1120zM82 1305l106 184h215l-161 -184h-160z" />
<glyph unicode="&#xee;" horiz-adv-x="370" d="M-66 1305l142 184h219l141 -184h-188l-64 71l-61 -71h-189zM82 0h207v1120h-207v-1120z" />
<glyph unicode="&#xef;" horiz-adv-x="372" d="M-53 1305v200h190v-200h-190zM82 0v1120h207v-1120h-207zM236 1305v200h190v-200h-190z" />
<glyph unicode="&#xf0;" horiz-adv-x="673" d="M76 279v579q0 279 172 279q63 0 155 -78q-12 109 -51 203l-82 -72l-55 63l100 88l-45 66l109 100q25 -27 53 -61l94 82l56 -66l-101 -88q125 -201 125 -446v-656q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-79.5 -69.5t-130 -30.5q-74 0 -129 30.5t-80 73.5t-39 86t-14 74z M270 267.5q-2 -11.5 2 -29t10.5 -34t21.5 -27.5t36 -11q35 0 52.5 27.5t17.5 56.5l2 29v563q-2 0 0 11t-2 28.5t-10.5 34t-22 28.5t-37.5 12q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-563q2 0 0 -11.5z" />
<glyph unicode="&#xf1;" horiz-adv-x="690" d="M82 0v1120h207v-94l32 32q30 30 66.5 54.5t69.5 24.5q76 0 115.5 -69t39.5 -150v-918h-206v887q0 49 -50 49q-18 0 -34.5 -13.5t-24.5 -25.5l-8 -14v-883h-207zM147 1305v151q49 39 109 39q33 0 91.5 -18.5t88.5 -20.5q25 0 52.5 8.5t41.5 16.5l15 8v-152 q-51 -39 -109 -39q-31 0 -89 19.5t-91 19.5q-25 0 -52.5 -8t-41.5 -16z" />
<glyph unicode="&#xf2;" horiz-adv-x="657" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q76 0 130 -30t79.5 -73t40 -85t16.5 -72v-29v-576q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-80 -69.5t-129.5 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-14 74zM98 1489h215l107 -184h-160zM258 267.5 q-2 -11.5 2 -29t10 -34t21.5 -27.5t36.5 -11q35 0 52 27.5t17 56.5l2 29v563q-2 0 0 11t-2 28.5t-10 34t-21.5 28.5t-37.5 12q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-563q2 0 0 -11.5z" />
<glyph unicode="&#xf3;" horiz-adv-x="657" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q76 0 130 -30t79.5 -73t40 -85t16.5 -72v-29v-576q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-80 -69.5t-129.5 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-14 74zM258 267.5q-2 -11.5 2 -29t10 -34t21.5 -27.5 t36.5 -11q35 0 52 27.5t17 56.5l2 29v563q-2 0 0 11t-2 28.5t-10 34t-21.5 28.5t-37.5 12q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-563q2 0 0 -11.5zM260 1305l107 184h215l-162 -184h-160z" />
<glyph unicode="&#xf4;" horiz-adv-x="657" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q76 0 130 -30t79.5 -73t40 -85t16.5 -72v-29v-576q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-80 -69.5t-129.5 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-14 74zM78 1305l141 184h219l142 -184h-189l-63 71 l-62 -71h-188zM258 267.5q-2 -11.5 2 -29t10 -34t21.5 -27.5t36.5 -11q35 0 52 27.5t17 56.5l2 29v563q-2 0 0 11t-2 28.5t-10 34t-21.5 28.5t-37.5 12q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-563q2 0 0 -11.5z" />
<glyph unicode="&#xf5;" horiz-adv-x="657" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q76 0 130 -30t79.5 -73t40 -85t16.5 -72v-29v-576q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-80 -69.5t-129.5 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-14 74zM131 1305v151q49 39 109 39q33 0 91 -18.5 t89 -20.5q25 0 52.5 8.5t41.5 16.5l14 8v-152q-51 -39 -108 -39q-31 0 -89.5 19.5t-90.5 19.5q-25 0 -52.5 -8t-42.5 -16zM258 267.5q-2 -11.5 2 -29t10 -34t21.5 -27.5t36.5 -11q35 0 52 27.5t17 56.5l2 29v563q-2 0 0 11t-2 28.5t-10 34t-21.5 28.5t-37.5 12 q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-563q2 0 0 -11.5z" />
<glyph unicode="&#xf6;" horiz-adv-x="657" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q76 0 130 -30t79.5 -73t40 -85t16.5 -72v-29v-576q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-80 -69.5t-129.5 -30.5q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-14 74zM90 1305v200h191v-200h-191zM258 267.5 q-2 -11.5 2 -29t10 -34t21.5 -27.5t36.5 -11q35 0 52 27.5t17 56.5l2 29v563q-2 0 0 11t-2 28.5t-10 34t-21.5 28.5t-37.5 12q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-563q2 0 0 -11.5zM379 1305v200h190v-200h-190z" />
<glyph unicode="&#xf8;" horiz-adv-x="657" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q51 0 106 -19l21 80h75l-30 -121q41 -37 64.5 -94t25.5 -96l4 -39v-576q0 -12 -1 -31.5t-15.5 -68.5t-40 -88t-80 -69.5t-129.5 -30.5q-57 0 -103 16l-20 -78h-80l31 121q-41 39 -64.5 97.5t-25.5 97.5z M258 436l125 486q-18 35 -55 34q-33 0 -50.5 -28.5t-19.5 -57.5v-28v-406zM274 197q16 -31 54 -31q35 0 52 27.5t17 56.5l2 29v403z" />
<glyph unicode="&#xf9;" horiz-adv-x="690" d="M78 203v917h207v-887q0 -49 49 -49q18 0 34.5 13.5t24.5 27.5l8 13v882h207v-1120h-207v94l-31 -32q-30 -30 -67 -54t-70 -24q-76 0 -115.5 68.5t-39.5 150.5zM113 1489h215l106 -184h-160z" />
<glyph unicode="&#xfa;" horiz-adv-x="690" d="M78 203v917h207v-887q0 -49 49 -49q18 0 34.5 13.5t24.5 27.5l8 13v882h207v-1120h-207v94l-31 -32q-30 -30 -67 -54t-70 -24q-76 0 -115.5 68.5t-39.5 150.5zM274 1305l107 184h215l-162 -184h-160z" />
<glyph unicode="&#xfb;" horiz-adv-x="690" d="M78 203v917h207v-887q0 -49 49 -49q18 0 34.5 13.5t24.5 27.5l8 13v882h207v-1120h-207v94l-31 -32q-30 -30 -67 -54t-70 -24q-76 0 -115.5 68.5t-39.5 150.5zM94 1305l142 184h219l141 -184h-188l-64 71l-61 -71h-189z" />
<glyph unicode="&#xfc;" horiz-adv-x="690" d="M78 203v917h207v-887q0 -49 49 -49q18 0 34.5 13.5t24.5 27.5l8 13v882h207v-1120h-207v94l-31 -32q-30 -30 -67 -54t-70 -24q-76 0 -115.5 68.5t-39.5 150.5zM106 1305v200h191v-200h-191zM395 1305v200h191v-200h-191z" />
<glyph unicode="&#xfd;" horiz-adv-x="634" d="M25 1120l190 -1153q0 -68 -36 -123t-97 -61l-49 4v-184q70 -4 92 -4q115 0 192.5 95t94.5 222l198 1204h-202l-82 -688l-4 -57h-9l-4 57l-82 688h-202zM231 1305l107 184h215l-162 -184h-160z" />
<glyph unicode="&#xfe;" horiz-adv-x="686" d="M82 -385v1890h207v-458q88 90 164 90q78 0 118.5 -69t40.5 -150v-715q0 -82 -41 -150.5t-118 -68.5q-33 0 -74 22.5t-66 44.5l-24 23v-459h-207zM289 246q0 -25 19.5 -46.5t42 -21.5t39 19.5t16.5 48.5v628q0 29 -16.5 48.5t-39 19.5t-42 -19.5t-19.5 -48.5v-628z" />
<glyph unicode="&#xff;" horiz-adv-x="634" d="M25 1120h202l82 -688l4 -57h9l4 57l82 688h202l-198 -1204q-16 -127 -94 -222t-193 -95l-92 4v184q16 -4 49 -4q61 6 97 61.5t36 122.5zM78 1305v200h190v-200h-190zM367 1305v200h190v-200h-190z" />
<glyph unicode="&#x131;" horiz-adv-x="370" d="M82 0v1120h207v-1120h-207z" />
<glyph unicode="&#x141;" horiz-adv-x="628" d="M41 561v221l65 52v671h222v-499l121 94v-221l-121 -95v-579h293v-205h-515v612z" />
<glyph unicode="&#x142;" horiz-adv-x="468" d="M31 561v221l100 78v645h207v-483l100 78v-221l-100 -78v-801h-207v639z" />
<glyph unicode="&#x152;" horiz-adv-x="983" d="M68 309v887q0 12 2 33.5t17 75t43 93.5t88.5 73.5t143.5 33.5h580v-227h-285v-395h205v-242h-205v-414h285v-227h-580q-84 0 -144 31.5t-88 77t-43 91.5t-17 79zM289 309q0 -12 1 -30.5t19.5 -49t53 -30.5t53 27.5t18.5 56.5l2 26v901q-6 96 -74 97q-35 0 -53 -28 t-18 -54l-2 -29v-887z" />
<glyph unicode="&#x153;" horiz-adv-x="995" d="M63 279v563q0 12 1.5 31.5t15.5 70.5t38.5 90t80 71t129.5 32q106 0 172 -60q66 59 170 60q76 0 130 -30t79.5 -73t40 -85t14.5 -72l2 -29v-326h-342v-250q0 -16 4 -36.5t22.5 -45t49.5 -24.5q35 0 53 27.5t18 56.5l2 29v122h193v-129q0 -12 -2 -31.5t-16.5 -68.5 t-39 -88t-80 -69.5t-130.5 -30.5q-106 0 -170 57q-68 -57 -170 -57q-74 0 -129.5 30.5t-80 73.5t-38.5 86t-14 74zM258 267.5q-2 -11.5 2 -29t10 -34t21.5 -27.5t36.5 -11q35 0 52 27.5t17 56.5l2 29v563q-2 0 0 11t-2 28.5t-10 34t-21.5 28.5t-37.5 12q-33 0 -50.5 -28.5 t-19.5 -57.5v-28v-563q2 0 0 -11.5zM594 684h149v158q0 12 -1 31.5t-19 51t-53 31.5q-43 0 -59.5 -37.5t-16.5 -70.5v-164z" />
<glyph unicode="&#x160;" horiz-adv-x="702" d="M37 422l217 20q0 -256 104 -256q90 0 91 166q0 29 -8.5 59.5t-32 73.5t-36.5 64l-54 79q-40 58 -48 72q-66 96 -102.5 158t-68 149t-31.5 162q0 139 71.5 245t216.5 108q94 2 160 -35t95.5 -101.5t42 -127t12.5 -136.5l-217 -20q0 217 -89 217q-76 -2 -75 -150 q0 -18 4 -39.5t10 -39t18.5 -43t20.5 -40t28 -43.5l28 -43l33 -48l32 -46l104 -159q31 -49 67 -139.5t36 -166.5q0 -379 -308 -378q-82 0 -142 25.5t-94 63.5t-53.5 99t-25.5 117.5t-6 132.5zM100 1823h189l61 -72l64 72h188l-141 -185h-219z" />
<glyph unicode="&#x161;" horiz-adv-x="630" d="M37 326h192q0 -170 97 -170q72 0 71 135q0 74 -129 198q-68 66 -98.5 99t-64 101.5t-33.5 144.5q0 55 12 104t39 95t78 74t123 30q86 2 142 -26t80.5 -79t33 -95t8.5 -103h-193q0 131 -67 131q-63 -2 -64 -131q0 -33 23.5 -73t45 -62.5t66.5 -65.5q190 -182 191 -342 q0 -123 -64.5 -215t-199.5 -92q-72 0 -126.5 24.5t-85 60t-49 85t-23.5 89.5t-5 83zM66 1489h188l61 -72l64 72h188l-141 -184h-219z" />
<glyph unicode="&#x178;" horiz-adv-x="704" d="M16 1505h217l111 -481l6 -14h4l6 14l111 481h217l-225 -864v-641h-221v641zM113 1638v201h190v-201h-190zM401 1638v201h191v-201h-191z" />
<glyph unicode="&#x17d;" horiz-adv-x="626" d="M20 0v238l347 1048h-297v219h536v-219l-352 -1067h352v-219h-586zM88 1823h188l62 -72l63 72h189l-141 -185h-220z" />
<glyph unicode="&#x17e;" horiz-adv-x="532" d="M12 0v168l285 764h-240v188h459v-168l-285 -764h285v-188h-504zM25 1489h188l61 -72l64 72h188l-141 -184h-219z" />
<glyph unicode="&#x2c6;" horiz-adv-x="1021" d="M260 1305l141 184h220l141 -184h-189l-63 71l-61 -71h-189z" />
<glyph unicode="&#x2c7;" horiz-adv-x="1021" d="M260 1489h189l61 -72l63 72h189l-141 -184h-220z" />
<glyph unicode="&#x2d8;" horiz-adv-x="1024" d="M287 1399l110 94q41 -47 115 -47q35 0 64.5 12t41.5 25l13 10l106 -94l-27 -27q-17 -16 -77 -42.5t-121 -26.5q-63 0 -119.5 24.5t-81.5 48.5z" />
<glyph unicode="&#x2d9;" horiz-adv-x="1021" d="M408 1298v207h206v-207h-206z" />
<glyph unicode="&#x2da;" horiz-adv-x="1021" d="M358 1421.5q0 61.5 45.5 102.5t108.5 41t107.5 -41t44.5 -102.5t-44.5 -102.5t-107.5 -41t-108.5 41t-45.5 102.5zM436 1421.5q0 -28.5 23.5 -50t52.5 -21.5t52.5 21.5t23.5 50t-23.5 50t-52.5 21.5t-52.5 -21.5t-23.5 -50z" />
<glyph unicode="&#x2db;" horiz-adv-x="1024" d="M348 -211q0 51 34 103.5t69 78.5l32 29h99q-10 -8 -25.5 -22.5t-41.5 -59.5t-26 -88q0 -41 31 -59.5t72 -18.5t86 19l-16 -138q-55 -18 -105 -18q-96 0 -152.5 51t-56.5 123z" />
<glyph unicode="&#x2dc;" horiz-adv-x="1024" d="M313 1305v151q49 39 109 39q33 0 91 -18.5t89 -20.5q25 0 52.5 8.5t41.5 16.5l15 8v-152q-51 -39 -109 -39q-31 0 -89 19.5t-91 19.5q-25 0 -52.5 -8t-41.5 -16z" />
<glyph unicode="&#x2dd;" horiz-adv-x="1024" d="M215 1305l107 184h215l-162 -184h-160zM518 1305l107 184h215l-162 -184h-160z" />
<glyph unicode="&#x2000;" horiz-adv-x="952" />
<glyph unicode="&#x2001;" horiz-adv-x="1904" />
<glyph unicode="&#x2002;" horiz-adv-x="952" />
<glyph unicode="&#x2003;" horiz-adv-x="1904" />
<glyph unicode="&#x2004;" horiz-adv-x="634" />
<glyph unicode="&#x2005;" horiz-adv-x="475" />
<glyph unicode="&#x2006;" horiz-adv-x="317" />
<glyph unicode="&#x2007;" horiz-adv-x="317" />
<glyph unicode="&#x2008;" horiz-adv-x="237" />
<glyph unicode="&#x2009;" horiz-adv-x="380" />
<glyph unicode="&#x200a;" horiz-adv-x="104" />
<glyph unicode="&#x2010;" horiz-adv-x="444" d="M74 455v194h297v-194h-297z" />
<glyph unicode="&#x2011;" horiz-adv-x="444" d="M74 455v194h297v-194h-297z" />
<glyph unicode="&#x2012;" horiz-adv-x="444" d="M74 455v194h297v-194h-297z" />
<glyph unicode="&#x2013;" horiz-adv-x="806" d="M74 649v195h659v-195h-659z" />
<glyph unicode="&#x2014;" horiz-adv-x="972" d="M74 649v195h825v-195h-825z" />
<glyph unicode="&#x2018;" horiz-adv-x="309" d="M49 1012v227l113 266h102l-71 -266h71v-227h-215z" />
<glyph unicode="&#x2019;" horiz-adv-x="309" d="M45 1012l72 266h-72v227h215v-227l-113 -266h-102z" />
<glyph unicode="&#x201a;" horiz-adv-x="309" d="M45 0v227h215v-227l-113 -266h-102l72 266h-72z" />
<glyph unicode="&#x201c;" horiz-adv-x="624" d="M53 1012v227l113 266h102l-71 -266h71v-227h-215zM356 1012v227l113 266h102l-71 -266h71v-227h-215z" />
<glyph unicode="&#x201d;" horiz-adv-x="624" d="M53 1012l72 266h-72v227h215v-227l-112 -266h-103zM356 1012l72 266h-72v227h215v-227l-112 -266h-103z" />
<glyph unicode="&#x201e;" horiz-adv-x="624" d="M53 0v227h215v-227l-112 -266h-103l72 266h-72zM356 0v227h215v-227l-112 -266h-103l72 266h-72z" />
<glyph unicode="&#x2022;" horiz-adv-x="663" d="M82 817q0 102 72.5 175t179.5 73q102 0 175 -72.5t73 -175.5q0 -106 -73 -179t-175 -73q-106 0 -179 73t-73 179z" />
<glyph unicode="&#x2026;" horiz-adv-x="964" d="M53 0v227h215v-227h-215zM375 0v227h215v-227h-215zM696 0v227h215v-227h-215z" />
<glyph unicode="&#x202f;" horiz-adv-x="380" />
<glyph unicode="&#x205f;" horiz-adv-x="475" />
<glyph unicode="&#x20ac;" horiz-adv-x="813" d="M53 547v137h107v137h-107v137h107v238q0 12 2 34.5t17.5 79t43 99.5t88 78t144.5 35t144 -34t88 -81t43 -95t18 -83l2 -33v-84h-207v84q-2 0 0 11.5t-3 27.5t-12.5 32.5t-25 28t-43.5 11.5q-35 0 -54.5 -28t-21.5 -54l-2 -29v-238h233v-137h-233v-137h233v-137h-233v-238 q0 -12 2 -30.5t21.5 -49t54.5 -30.5q41 0 61.5 27.5t20.5 56.5l2 26v84h207v-84q0 -12 -2.5 -34.5t-17.5 -79t-43 -99.5t-88 -77.5t-144 -34.5t-144.5 33.5t-88 80.5t-43 95.5t-17.5 80.5l-2 35v238h-107z" />
<glyph unicode="&#x2122;" horiz-adv-x="937" d="M74 1401v104h321v-104h-104v-580h-113v580h-104zM440 821v684h138l67 -319h6l68 319h137v-684h-104v449l-78 -449h-51l-80 449v-449h-103z" />
<glyph unicode="&#x2212;" horiz-adv-x="776" d="M74 649v172h628v-172h-628z" />
<glyph unicode="&#xe000;" horiz-adv-x="1120" d="M0 1120h1120v-1120h-1120v1120z" />
<glyph unicode="&#xfb01;" horiz-adv-x="772" d="M20 934v186h105v31q0 45 1 69.5t7 77t22.5 84t43 67.5t72.5 53.5t108 17.5q33 0 69.5 -4.5t57.5 -8.5l20 -2v-184q-41 12 -110 12q-31 0 -50.5 -18.5t-25.5 -58t-7 -54t-1 -53.5v-29h358v-1120h-207v934h-151v-934h-207v934h-105z" />
<glyph unicode="&#xfb02;" horiz-adv-x="772" d="M20 934v186h105v31q0 45 1 69.5t7 77t22.5 84t43 67.5t72.5 53.5t108 17.5q33 0 69.5 -4.5t57.5 -8.5l20 -2h164v-1505h-207v1329q-37 4 -67.5 4t-50 -18.5t-25.5 -58t-7 -54t-1 -53.5v-29h104v-186h-104v-934h-207v934h-105z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 51 KiB

View File

@ -1,939 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!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">
<metadata>
This is a custom SVG webfont generated by Font Squirrel.
Copyright : Copyright c 2011 Barry Schwartz
</metadata>
<defs>
<font id="FanwoodRegular" horiz-adv-x="500" >
<font-face units-per-em="1000" ascent="690" descent="-310" />
<missing-glyph horiz-adv-x="200" />
<glyph unicode="fi" horiz-adv-x="499" d="M35 12q0 13 12 13h40q4 0 4 63q0 20 -0.5 51t-0.5 33v80q0 94 -2 94h-33q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q6 0 7.5 1t1.5 7q0 66 6 125q8 82 53.5 127.5t113.5 45.5q57 0 92 -29t35 -59q0 -16 -17 -30.5t-29 -14.5t-13 9q-4 62 -22 82t-51 20t-54.5 -22t-30.5 -63 t-12 -76.5t-3 -85.5v-24q0 -9 3 -11t16 -2h117q11 0 59 2.5t54 2.5q7 0 7 -6v-170q0 -107 3 -164q0 -5 0.5 -7t2.5 -3.5t7 -1.5h31q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -37.5 1t-41.5 1t-44 -1t-40 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h36q8 0 9.5 2t1.5 10 q1 29 1 82q0 117 -4 214q-1 9 -2.5 11.5t-7.5 2.5h-157q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h59q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="fl" horiz-adv-x="501" d="M33 12q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 9.5 2t2.5 10q0 24 -0.5 47t-0.5 50q0 84 45.5 140.5t132.5 56.5q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5q-4 -181 -4 -348 q0 -270 4 -270h48q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -38 1t-46 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h47q4 0 4 85v219q0 12 -2.5 15t-11.5 3h-150q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h55q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8 t-3.5 -4t-9 -2q-8 0 -41.5 1t-49.5 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5zM155 389q0 -12 3 -14.5t18 -2.5h148q10 0 13 3.5t3 16.5q0 61 -2 157q0 13 -13 33q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78z" />
<glyph unicode="ff" horiz-adv-x="558" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 40 2.5 69t11.5 71t32.5 73.5t59.5 48.5q37 18 74 18q55 0 98 -41q7 -5 10 -1q38 56 112 56q37 0 63 -18.5t26 -48.5q0 -16 -18 -31.5 t-30 -15.5t-13 9q-3 23 -5 33t-7 24.5t-13.5 20t-21.5 5.5q-17 0 -28.5 -8t-17.5 -19t-9.5 -31.5t-4 -36t-0.5 -42.5v-130v-7.5t1 -5t3.5 -3t6 -1t9.5 -0.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h66q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 26 -0.5 62t-0.5 40q0 8 -3.5 10.5t-14.5 2.5h-149q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5zM156 386q0 -9 3.5 -11.5t16.5 -2.5h147q13 0 15.5 2t2.5 11q0 19 -0.5 39t-0.5 40q0 24 2 46.5t4 35.5l3 12q0 4 -3 7q-16 13 -24 27q-9 15 -15.5 24t-20 17t-29.5 8q-24 0 -42 -10 t-28.5 -30t-17.5 -39t-9.5 -48t-3 -46t-0.5 -43v-39z" />
<glyph unicode="ffi" horiz-adv-x="753" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v66q0 108 -2 108h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 36 1 59.5t6.5 58.5t16.5 59t31.5 47.5t50.5 37.5q37 18 74 18q33 0 63.5 -16t49.5 -43q47 73 135 73q57 0 92 -29t35 -59 q0 -16 -17 -30.5t-29 -14.5t-13 9q-4 62 -22 82t-51 20t-54.5 -22t-30.5 -63t-12 -76.5t-3 -85.5v-24q0 -9 3 -11t16 -2h117q11 0 59 2.5t54 2.5q7 0 7 -6v-170q0 -107 3 -164q0 -5 0.5 -7t2.5 -3.5t7 -1.5h31q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -37.5 1t-41.5 1 t-44 -1t-40 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h36q8 0 9.5 2t1.5 10q1 29 1 82q0 117 -4 214q-1 9 -2.5 11.5t-7.5 2.5h-157q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h49q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -39 1t-47 1q-12 0 -39.5 -1 t-43.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q4 0 4 63q0 20 -0.5 51t-0.5 33v80q0 94 -2 94q-6 0 -21.5 0.5t-20.5 0.5h-124q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1 q-9 0 -11 2.5t-2 11.5zM155 389q0 -12 3 -14.5t18 -2.5h159q6 0 7.5 1t1.5 7q0 105 10 150q4 18 4 19q0 4 -9 10q-13 9 -30 38q-25 44 -62 44q-20 0 -36 -7t-26.5 -16.5t-18 -28t-11.5 -33t-6 -40.5t-2.5 -41t-1 -44.5t-0.5 -41.5z" />
<glyph unicode="ffl" horiz-adv-x="754" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 213 106 262q37 18 74 18q66 0 106 -50q3 -4 7 1q50 63 138 63q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5 q-4 -181 -4 -375q0 -243 4 -243h48q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -38 1t-46 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h47q4 0 4 85v219q0 12 -2.5 15t-11.5 3h-150q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h50q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -39 1t-47 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v165q0 7 -2.5 8.5t-11.5 1.5h-154q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4 t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5zM156 384q0 -8 3.5 -10t16.5 -2h157q7 0 8.5 2t1.5 13q0 21 -0.5 44.5t-0.5 49.5q0 47 8 73q1 3 1 5t-5 6q-16 13 -24 27q-9 15 -15.5 24t-20 17t-29.5 8q-27 0 -47 -15t-30 -36t-16 -54t-7 -57t-1 -58 v-37zM409 389q0 -12 3 -14.5t18 -2.5h148q10 0 13 3.5t3 16.5q0 61 -2 157q0 13 -13 33q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78z" />
<glyph unicode="fj" horiz-adv-x="506" d="M35 12q0 13 12 13h40q4 0 4 63q0 20 -0.5 51t-0.5 33v80q0 94 -2 94h-33q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q6 0 7.5 1t1.5 7q0 66 6 125q8 82 53.5 127.5t113.5 45.5q57 0 92 -29t35 -59q0 -16 -17 -30.5t-29 -14.5t-13 9q-4 62 -22 82t-51 20t-54.5 -22t-30.5 -63 t-12 -76.5t-3 -85.5v-24q0 -9 3 -11t16 -2h117q11 0 57.5 3t52.5 3q7 0 7 -23q0 -20 2.5 -136.5t2.5 -191.5q0 -90 -10.5 -145t-43.5 -98q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 9 -2.5 56.5 t-4.5 145t-2 229.5q0 49 -2 76q-1 13 -10 13h-157q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h59q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="ffj" horiz-adv-x="760" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v66q0 108 -2 108h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 36 1 59.5t6.5 58.5t16.5 59t31.5 47.5t50.5 37.5q37 18 74 18q33 0 63.5 -16t49.5 -43q47 73 135 73q57 0 92 -29t35 -59 q0 -16 -17 -30.5t-29 -14.5t-13 9q-4 62 -22 82t-51 20t-54.5 -22t-30.5 -63t-12 -76.5t-3 -85.5v-24q0 -9 3 -11t16 -2h117q11 0 57.5 3t52.5 3q7 0 7 -23q0 -20 2.5 -136.5t2.5 -191.5q0 -90 -10.5 -145t-43.5 -98q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20 q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 9 -2.5 56.5t-4.5 145t-2 229.5q0 49 -2 76q-1 13 -10 13h-157q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h49q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -39 1t-47 1q-12 0 -39.5 -1 t-43.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q4 0 4 63q0 20 -0.5 51t-0.5 33v80q0 94 -2 94q-6 0 -21.5 0.5t-20.5 0.5h-124q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1 q-9 0 -11 2.5t-2 11.5zM155 389q0 -12 3 -14.5t18 -2.5h159q6 0 7.5 1t1.5 7q0 105 10 150q4 18 4 19q0 4 -9 10q-13 9 -30 38q-25 44 -62 44q-20 0 -36 -7t-26.5 -16.5t-18 -28t-11.5 -33t-6 -40.5t-2.5 -41t-1 -44.5t-0.5 -41.5z" />
<glyph unicode="fb" horiz-adv-x="739" d="M33 12q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 9.5 2t2.5 10q0 24 -0.5 47t-0.5 50q0 84 45.5 140.5t132.5 56.5q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5q0 -3 -1 -48 t-2.5 -104t-1.5 -97t1 -38t7.5 3t17.5 7.5t23.5 9t28.5 7.5t30 3q83 0 137.5 -57.5t54.5 -140.5q0 -92 -65 -146.5t-156 -54.5q-19 0 -47.5 9.5t-41.5 9.5q-11 0 -28 -9t-21 -9q-12 0 -12 13q0 1 1 36.5t1.5 82.5t0.5 77q0 304 -1 352q0 6 -1.5 11t-3 8t-5 7t-5.5 7 q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h55q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -41.5 1 t-49.5 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5zM407 64q0 -50 84 -50q67 0 106.5 51t39.5 122q0 67 -47.5 118.5t-112.5 51.5q-16 0 -32.5 -5.5t-26 -11t-9.5 -8.5q0 -59 -1 -159.5t-1 -108.5z" />
<glyph unicode="fh" horiz-adv-x="755" d="M33 12q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 9.5 2t2.5 10q0 24 -0.5 47t-0.5 50q0 84 45.5 140.5t132.5 56.5q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5q-4 -83 -4 -289 v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47t16 -63t4 -79v-143q0 -8 1.5 -10t9.5 -2h26q14 0 14 -13q0 -14 -14 -14q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 13 13h39q8 0 9 1.5t2 9.5q2 40 2 176q0 58 -24 95t-72 37 q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -10 1.5 -13t2 -4t7.5 -1h38q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q7 0 8.5 3t1.5 15q1 94 1 220q0 238 -1 286q0 6 -1.5 11 t-3 8t-5 7t-5.5 7q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h55q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4 t-9 -2q-8 0 -41.5 1t-49.5 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="fk" horiz-adv-x="705" d="M33 12q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 9.5 2t2.5 10q0 24 -0.5 47t-0.5 50q0 84 45.5 140.5t132.5 56.5q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5l-9 -423 q0 -8 2.5 -9.5t13.5 -1.5h22q4 0 7.5 1t7 4.5l5 5t5.5 6t4 5.5q53 70 79 113q3 5 3.5 6.5t1.5 4t-0.5 3.5t-5 1.5t-9.5 0.5h-20q-8 0 -10.5 3t-2.5 10q0 14 14 14q4 0 25 -1t33 -1q10 0 30 1t27 1q13 0 13 -14q0 -13 -12 -13h-32q-11 0 -107 -123q-2 -2 -5 -6q-3 -3 -4 -4.5 t0.5 -4t3.5 -4.5l5 -5l151 -175q11 -13 22 -13h10q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2t-29.5 1t-37.5 1t-38 -1t-30 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h11q17 0 5 15l-110 136q-2 2 -4 5q-9 12 -18 12h-14q-8 0 -9.5 -3t-1.5 -13v-134q0 -13 1.5 -15.5 t9.5 -2.5h23q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -30 1t-38 1q-19 0 -48 -1t-32 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h41q7 0 8.5 3t1.5 15v193q0 265 -1 313q0 6 -1.5 11t-3 8t-5 7t-5.5 7q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5 t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h55q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -41.5 1t-49.5 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="ffb" horiz-adv-x="992" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 40 2.5 69t11.5 71t32.5 73.5t59.5 48.5q37 18 74 18q66 0 106 -50q3 -4 7 1q50 63 138 63q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3 t6.5 1q5 0 6 -2.5t1 -12.5q0 -4 -3 -104.5t-3 -144.5q0 -38 1 -38t7.5 3t17.5 7.5t23.5 9t28.5 7.5t30 3q83 0 137.5 -57.5t54.5 -140.5q0 -92 -65 -146.5t-156 -54.5q-19 0 -47.5 9.5t-41.5 9.5q-11 0 -28 -9t-21 -9q-12 0 -12 13q0 1 0.5 36.5t1.5 82.5t1 77q0 256 -2 352 q0 13 -13 33q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h50q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -39 1t-47 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v165q0 7 -2.5 8.5t-11.5 1.5h-154q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1 q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5zM156 384q0 -8 3 -10t17 -2h157q7 0 8.5 2t1.5 13q0 21 -0.5 44.5t-0.5 49.5q0 47 8 73q1 3 1 5t-5 6q-16 13 -24 27q-9 15 -15.5 24t-20 17t-29.5 8q-28 0 -48 -15.5t-30 -36.5t-15.5 -55t-6.5 -57.5t-1 -57.5v-35zM660 64 q0 -50 84 -50q67 0 106.5 51t39.5 122q0 67 -47.5 118.5t-112.5 51.5q-16 0 -32.5 -5.5t-26 -11t-9.5 -8.5q0 -59 -1 -159.5t-1 -108.5z" />
<glyph unicode="ffh" horiz-adv-x="1008" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 39 2.5 68t11.5 71.5t32.5 74t59.5 48.5q37 18 74 18q66 0 106 -50q3 -4 7 1q50 63 138 63q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3 t6.5 1q5 0 6 -2.5t1 -12.5q-5 -104 -5 -289v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47t16 -63t4 -79v-143q0 -8 1.5 -10t9.5 -2h26q14 0 14 -13q0 -14 -14 -14q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 13 13h39q7 0 8.5 1.5 t2.5 9.5q2 40 2 176q0 58 -24 95t-72 37q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -13 2 -15.5t9 -2.5h38q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q7 0 8.5 3t1.5 15 q1 94 1 220q0 190 -2 286q0 13 -13 33q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h50q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -39 1t-47 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v165q0 7 -2.5 8.5t-11.5 1.5h-154q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4 t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5zM156 385q0 -8 3.5 -10.5t16.5 -2.5h157q7 0 8.5 2t1.5 13q0 21 -0.5 44.5t-0.5 49.5q0 47 8 73q1 3 1 5t-5 6q-16 13 -24 27q-9 15 -15.5 24t-20 17t-29.5 8q-34 0 -56 -20t-31 -57t-11.5 -67.5 t-2.5 -74.5v-37z" />
<glyph unicode="ffk" horiz-adv-x="957" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 39 2.5 68t11.5 71.5t32.5 74t59.5 48.5q37 18 74 18q66 0 106 -50q3 -4 7 1q50 63 138 63q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3 t6.5 1q5 0 6 -2.5t1 -12.5l-11 -423q0 -8 2.5 -9.5t13.5 -1.5h22q4 0 7.5 1t7 4.5l5 5t5.5 6t4 5.5q53 70 79 113q3 5 3.5 6.5t1.5 4t-0.5 3.5t-5 1.5t-9.5 0.5h-20q-8 0 -10.5 3t-2.5 10q0 14 14 14q4 0 25 -1t33 -1q10 0 30 1t27 1q13 0 13 -14q0 -13 -12 -13h-32 q-11 0 -107 -123q-2 -2 -5 -6q-3 -3 -4 -4.5t0.5 -4t3.5 -4.5l5 -5l151 -175q11 -13 22 -13h10q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2t-29.5 1t-37.5 1t-38 -1t-30 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h11q17 0 5 15l-110 136q-2 2 -4 5q-9 12 -18 12h-14 q-8 0 -9.5 -3t-1.5 -13v-134q0 -13 1.5 -15.5t9.5 -2.5h23q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -30 1t-38 1q-19 0 -48 -1t-32 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h41q7 0 8.5 3t1.5 15v193q0 265 -1 313q0 13 -13 33q-5 7 -13.5 23.5t-14.5 25.5t-19 17 t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h50q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -39 1t-47 1q-12 0 -39.5 -1t-43.5 -1 q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v165q0 7 -2.5 8.5t-11.5 1.5h-154q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5zM156 387 q0 -10 3 -12.5t17 -2.5h157q7 0 8.5 2t1.5 13q0 21 -1.5 44.5t-1.5 49.5q0 40 10 73q1 3 1 5t-5 6q-16 13 -24 27q-9 15 -15.5 24t-20 17t-29.5 8q-29 0 -49.5 -17t-30 -38t-15 -57.5t-6 -57t-0.5 -55.5v-29z" />
<glyph unicode="f&#x125;" horiz-adv-x="755" d="M330 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM33 12q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 9.5 2 t2.5 10q0 24 -0.5 47t-0.5 50q0 84 45.5 140.5t132.5 56.5q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5q-4 -83 -4 -289v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47t16 -63t4 -79v-143q0 -8 1.5 -10t9.5 -2h26q14 0 14 -13 q0 -14 -14 -14q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 13 13h39q8 0 9 1.5t2 9.5q2 40 2 176q0 58 -24 95t-72 37q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -10 1.5 -13t2 -4t7.5 -1h38q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8 t-3.5 -4t-9 -2q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q7 0 8.5 3t1.5 15q1 94 1 220q0 238 -1 286q0 6 -1.5 11t-3 8t-5 7t-5.5 7q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78 q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h55q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -41.5 1t-49.5 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="ff&#x125;" horiz-adv-x="1008" d="M583 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2 t1.5 10q0 39 2.5 68t11.5 71.5t32.5 74t59.5 48.5q37 18 74 18q66 0 106 -50q3 -4 7 1q50 63 138 63q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5q-5 -104 -5 -289v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47t16 -63t4 -79v-143 q0 -8 1.5 -10t9.5 -2h26q14 0 14 -13q0 -14 -14 -14q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 13 13h39q7 0 8.5 1.5t2.5 9.5q2 40 2 176q0 58 -24 95t-72 37q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -13 2 -15.5t9 -2.5h38 q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q7 0 8.5 3t1.5 15q1 94 1 220q0 190 -2 286q0 13 -13 33q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59 t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h50q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -39 1t-47 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q6 0 6 63 q0 20 -0.5 51t-0.5 33v165q0 7 -2.5 8.5t-11.5 1.5h-154q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5zM156 385q0 -8 3.5 -10.5t16.5 -2.5h157q7 0 8.5 2 t1.5 13q0 21 -0.5 44.5t-0.5 49.5q0 47 8 73q1 3 1 5t-5 6q-16 13 -24 27q-9 15 -15.5 24t-20 17t-29.5 8q-34 0 -56 -20t-31 -57t-11.5 -67.5t-2.5 -74.5v-37z" />
<glyph unicode="f&#xfe;" horiz-adv-x="747" d="M33 12q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 9.5 2t2.5 10q0 24 -0.5 47t-0.5 50q0 84 45.5 140.5t132.5 56.5q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3t6.5 1q5 0 6 -2.5t1 -12.5q-2 -42 -2 -173 v-128q0 -10 2 -10q1 0 19 14q50 37 108 37q83 0 127 -53t44 -136q0 -81 -57.5 -142t-151.5 -61q-31 0 -66 11l-7.5 2.5t-6.5 2.5t-5 1t-4 -1.5t-1 -4.5l3 -189q2 -67 6 -67h70q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -46.5 -1t-50.5 -1 q-9 0 -11 2.5t-2 11.5q0 13 12 13h55q3 0 3 160l-1 204q0 322 -5 439q0 6 -2 11t-3.5 7.5t-4.5 7l-5 7.5q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115 q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h55q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -41.5 1t-49.5 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5zM413 52q0 -17 30 -29.5t57 -12.5q66 0 103 55t37 122q0 72 -37 116.5t-93 44.5q-36 0 -64 -13 q-33 -17 -33 -33v-250z" />
<glyph unicode="ff&#xfe;" horiz-adv-x="1001" d="M38 12q0 13 12 13h37q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-35q-9 0 -11.5 2t-2.5 11t2 11t9 2h29q7 0 8.5 2t1.5 10q0 39 2.5 68t11.5 71.5t32.5 74t59.5 48.5q37 18 74 18q66 0 106 -50q3 -4 7 1q50 63 138 63q36 0 74 -22q12 -7 27 -5q9 1 18.5 3t15 3 t6.5 1q5 0 6 -2.5t1 -12.5q-2 -42 -2 -173v-128q0 -10 2 -10q1 0 19 14q50 37 108 37q83 0 127 -53t44 -136q0 -81 -57.5 -142t-151.5 -61q-31 0 -66 11l-7.5 2.5t-6.5 2.5t-5 1t-4 -1.5t-1 -4.5l3 -189q2 -67 6 -67h70q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -49 1t-57 1q-12 0 -46.5 -1t-50.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h55q3 0 3 160l-1 204q0 322 -5 439q0 6 -2 11t-3.5 7.5t-4.5 7l-5 7.5q-5 7 -13.5 23.5t-14.5 25.5t-19 17t-32 8q-29 0 -48.5 -15.5t-28 -45.5t-11.5 -59t-3 -69v-78q0 -12 3 -14.5t18 -2.5h116 q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -15 -2.5t-4 -9.5v-226q0 -84 8 -84h50q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -39 1t-47 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h40q6 0 6 63q0 20 -0.5 51t-0.5 33v165q0 7 -2.5 8.5 t-11.5 1.5h-154q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h56q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -44 1t-52 1q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5zM156 385q0 -8 3.5 -10.5t16.5 -2.5h157q7 0 8.5 2t1.5 13q0 21 -0.5 44.5t-0.5 49.5q0 47 8 73 q1 3 1 5t-5 6q-16 13 -24 27q-9 15 -15.5 24t-20 17t-29.5 8q-34 0 -56 -20t-31 -57t-11.5 -67.5t-2.5 -74.5v-37zM667 52q0 -17 30 -29.5t57 -12.5q66 0 103 55t37 122q0 72 -37 116.5t-93 44.5q-36 0 -64 -13q-33 -17 -33 -33v-250z" />
<glyph unicode=" " horiz-adv-x="200" />
<glyph unicode="&#x09;" horiz-adv-x="200" />
<glyph unicode="&#xa0;" horiz-adv-x="200" />
<glyph unicode="!" horiz-adv-x="261" d="M80 38q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29zM97 648q0 25 41 25q18 0 24.5 -4t6.5 -17q0 -3 -4 -63t-10.5 -175.5t-11.5 -231.5q0 -10 -14 -10q-13 0 -13 10q-3 95 -7.5 202t-8 175t-3.5 89z" />
<glyph unicode="&#x22;" horiz-adv-x="261" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14zM160 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43 l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="#" horiz-adv-x="442" d="M30 169v4q0 8 2 10.5t9 2.5h73q5 0 5.5 1t1.5 6q16 115 16 126q0 4 -5 4h-95q-7 0 -7 13v6q0 11 7 11h100q9 0 9 6l21 148q2 16 3 18q4 6 6.5 6.5t14.5 0.5q19 0 19 -11q0 -3 -12.5 -81t-12.5 -82q0 -5 6 -5h90q7 0 8 7q25 161 26 165q3 7 14 7q24 0 24 -10 q0 -5 -12 -82.5t-12 -81.5q0 -5 4 -5h64q10 0 12.5 -2.5t2.5 -13.5q0 -10 -3 -12t-10 -2h-72q-6 0 -6 -5q-19 -120 -19 -126t7 -6h92q7 0 9 -3t2 -14q0 -10 -2.5 -12t-11.5 -2h-86q-15 -2 -15 -5q-21 -150 -22 -152q0 -1 -1 -3q-1 -5 -21 -5h-10.5t-5 1.5l-2 2t0 4t0.5 5.5 q0 4 11 74.5t11 73.5q0 4 -7 4h-86q-11 -2 -12 -5q-21 -150 -22 -152q-4 -7 -9 -8h-13q-11 0 -14.5 2.5t-3.5 10.5q0 4 11 74.5t11 73.5q0 4 -3 4h-68q-8 0 -10 3t-2 11zM158 193q0 -5 9 -5h90q7 0 7 6l9.5 67t7 44t2.5 16q0 4 -7 4h-90q-6 0 -8 -5v-1q-2 -16 -7.5 -47.5 t-9 -53.5t-3.5 -25z" />
<glyph unicode="$" d="M58 92q0 7 12.5 12.5t22.5 5.5q5 0 10 -4t13 -15.5t13 -17.5q39 -47 97 -52q8 -1 10.5 0.5t2.5 8.5v240q0 11 -2.5 15.5t-11.5 8.5q-37 16 -60 29t-49.5 34.5t-40 49.5t-13.5 63q0 63 49.5 107t119.5 50q6 1 7 2t1 8v36q0 9 7 9h9q7 0 7 -9v-36q0 -7 1 -7.5t7 -1.5 q65 -5 106.5 -37t41.5 -59q0 -10 -14 -18.5t-21 -8.5q-9 0 -14 14.5t-9.5 32.5t-26.5 35t-60 21q-11 2 -11 -6v-237q0 -13 2 -16t10 -7q31 -14 48.5 -23t43.5 -26t40 -33t25 -40t11 -51q0 -72 -43.5 -117t-122.5 -52q-13 -1 -13 -5q-1 -3 -1 -9v-122q0 -9 -1.5 -10.5 t-10.5 -1.5q-8 0 -9.5 2t-1.5 10v122q0 10 -1.5 11.5t-11.5 2.5q-67 4 -117.5 33t-50.5 59zM117 480q0 -45 28.5 -70.5t80.5 -47.5l6 -3t4.5 -1.5t1.5 2.5t1 8v234q0 6 -5 6q-25 0 -58 -19q-59 -35 -59 -109zM262 38q0 -16 6 -16q4 0 8 1q47 10 78 46t31 78q0 46 -29.5 75 t-81.5 52q-6 3 -9 3t-3 -12v-227z" />
<glyph unicode="%" horiz-adv-x="657" d="M50 362q0 62 52.5 131.5t124.5 69.5q40 0 71 -31q24 -24 58 -24q46 0 93 28q17 10 31.5 22t35.5 33.5l22 22.5t4.5 5t7.5 8l3 4q6 0 12 -4t6 -8q0 -3 -5 -11q-360 -527 -434 -643q-4 -6 -19 -6q-16 0 -16 10q0 2 2 6l80 114l169.5 245.5t112.5 170.5q9 15 8 16 q-2 1 -8 -2q-47 -28 -105 -28q-16 0 -35 3v-16v-14q0 -17 -1 -25q-6 -72 -57.5 -130.5t-112.5 -58.5q-47 0 -73.5 32t-26.5 80zM99 336q0 -29 13.5 -50t40.5 -21q51 0 95 58.5t44 137.5q0 70 -52 70q-46 0 -93.5 -64t-47.5 -131zM336 103q0 71 56 137t125 66q42 0 66 -29.5 t24 -79.5q0 -79 -53 -142.5t-118 -63.5q-47 0 -73.5 31.5t-26.5 80.5zM385 78q0 -30 13 -50.5t41 -20.5q51 0 95 58.5t44 136.5q0 71 -53 71q-45 0 -92.5 -64t-47.5 -131z" />
<glyph unicode="&#x26;" horiz-adv-x="657" d="M40 155q0 98 124 185q14 10 14 12l-16 18q-56 64 -56 116q0 65 47.5 110.5t112.5 45.5q55 0 97 -26t42 -74q0 -74 -125 -160q-14 -9 -14 -11q0 -3 13 -14q58 -49 156 -154q11 -12 13 -12t10 14l18 31.5l21 36.5t15 30t7 24q0 5 -19 5h-60q-9 0 -11 2t-2 13t1.5 13t11.5 2 q6 0 48.5 -1.5t59.5 -1.5q16 0 41.5 1.5t28.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-30q-8 0 -20 -18q-97 -139 -97 -144q0 -3 10 -16q31 -39 64 -98q7 -13 11.5 -17.5t18.5 -8t41 -3.5q7 0 8 -1.5t1 -10.5q0 -11 -2.5 -13t-13.5 -2q-40 -1 -77 -5.5t-38 -4.5 q-12 0 -15 10q-15 51 -48 98q-8 10 -10 10t-10 -9q-99 -109 -188 -109q-81 0 -130 46.5t-49 118.5zM102 197q0 -59 45.5 -102t103.5 -43q77 0 144 67q7 8 7 11l-9 13q-27 37 -78 89t-96 89q-13 12 -18 12q-6 0 -26 -15q-73 -54 -73 -121zM171 518q0 -46 51 -107 q16 -19 22 -19q4 0 22 13q71 53 71 121q0 34 -23 60t-57 26q-42 0 -64 -27.5t-22 -66.5z" />
<glyph unicode="'" horiz-adv-x="131" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="(" horiz-adv-x="279" d="M40 285q0 73 19 142t45 114.5t53.5 80.5t45.5 51t20 16q6 0 11 -4t5 -9l-8 -8q-8 -9 -20.5 -25.5t-27.5 -39t-30 -54.5t-27.5 -68.5t-20.5 -84.5t-8 -99q0 -79 14 -150t34.5 -117.5t41 -80.5t34.5 -53t14 -22q0 -14 -16 -14q-4 0 -22.5 21.5t-45 62.5t-51.5 91.5 t-42.5 117.5t-17.5 132z" />
<glyph unicode=")" horiz-adv-x="279" d="M40 -127l8 9q8 8 20.5 24.5t27.5 39t30 54.5t27.5 68.5t20.5 84.5t8 99q0 79 -14 150t-34.5 117.5t-41 80.5t-34.5 53t-14 22q0 14 16 14q4 0 22.5 -21.5t45 -62.5t51.5 -91.5t42.5 -117.5t17.5 -132q0 -73 -19 -142t-45 -114.5t-53.5 -80.5t-45.5 -51t-20 -16 q-6 0 -11 4t-5 9z" />
<glyph unicode="*" horiz-adv-x="391" d="M30 447q0 21 23 31q10 4 48.5 17.5t52.5 19.5q19 7 19 13q0 4 -15 15q-6 5 -42.5 28t-45.5 32q-13 15 -13 29q0 11 7.5 19t20.5 8q18 0 31 -15q7 -8 18 -25l24 -39l18 -30q8 -13 11 -13q2 0 8 13q4 9 12.5 34t16 45t12.5 27q13 19 32 19q11 0 19 -9t8 -19q0 -13 -9 -26 q-8 -12 -39 -39.5t-39 -35.5q-10 -12 -10 -15q0 -6 18 -7q8 -1 56 -2t60 -5q29 -10 29 -31q0 -14 -9.5 -21.5t-22.5 -7.5q-7 0 -15 3t-46.5 22.5t-51.5 25.5q-12 6 -16 6q-5 0 -5 -4t3 -14q2 -10 15.5 -52.5t13.5 -56.5q0 -15 -7.5 -27t-22.5 -12q-16 0 -24.5 12t-8.5 26 q0 11 8 52.5t10 53.5q1 4 1 10q0 11 -4 11q-6 0 -17 -11l-36 -37.5t-41 -37.5q-12 -7 -25 -7t-21.5 7.5t-8.5 19.5z" />
<glyph unicode="+" horiz-adv-x="527" d="M31 212q0 8 0.5 11.5t4.5 6t13 2.5h170q22 0 22 19v176q0 7 2.5 10.5t6 4t12.5 0.5t13 -0.5t7.5 -5.5t3.5 -14v-163q0 -27 17 -27h177q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-172q-12 0 -14.5 -4t-2.5 -14v-175q0 -11 -5 -14t-15 -3q-16 0 -20.5 2.5 t-4.5 15.5v174q0 12 -4.5 15t-19.5 3h-169q-12 0 -14.5 5t-2.5 19z" />
<glyph unicode="," horiz-adv-x="203" d="M40 -139l18 16q17 16 34.5 41t17.5 48q0 16 -10 30.5t-22.5 22.5t-22.5 15.5t-10 12.5q0 14 19.5 27.5t27.5 13.5q14 0 42.5 -23t28.5 -40q0 -38 -26.5 -83t-53 -71.5t-32.5 -26.5q-4 0 -7.5 5.5t-3.5 11.5z" />
<glyph unicode="-" horiz-adv-x="258" d="M25 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="." horiz-adv-x="221" d="M60 38q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29z" />
<glyph unicode="/" horiz-adv-x="406" d="M10 -220q0 2 19 57q315 843 317 850q4 11 9.5 14.5t19.5 3.5q21 0 21 -12q0 -8 -14 -44l-314 -851q-8 -22 -13.5 -26.5t-18.5 -4.5q-26 0 -26 13z" />
<glyph unicode="0" d="M58 189q0 82 56 136.5t137 54.5q88 0 139.5 -55.5t51.5 -136.5q0 -84 -57 -138.5t-140 -54.5q-77 0 -132 57.5t-55 136.5zM91 189q0 -65 44.5 -105.5t108.5 -40.5q80 0 120.5 45t40.5 114q0 59 -47.5 98.5t-110.5 39.5t-109.5 -44.5t-46.5 -106.5z" />
<glyph unicode="1" d="M150 12q0 7 2.5 10t11.5 3h42q8 0 9.5 2t1.5 10q1 29 1 88v89q0 93 -2 137q0 5 -0.5 7t-2.5 3.5t-7 1.5h-42q-11 0 -11 13q0 8 1.5 11t9.5 3q9 0 43.5 -1t47.5 -1t47 1t43 1q8 0 9.5 -2.5t1.5 -11.5q0 -7 -2.5 -10t-11.5 -3h-39q-7 0 -9 -1.5t-2 -7.5v-3q-3 -58 -3 -234 q0 -53 1 -80q0 -12 12 -12h40q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -43.5 1t-47.5 1t-47 -1t-43 -1q-8 0 -9.5 2.5t-1.5 11.5z" />
<glyph unicode="2" d="M60 323q0 8 26 27.5t68 37.5t76 18q55 0 91.5 -36t36.5 -90q0 -39 -35 -83t-71 -70.5t-75 -49.5q-28 -16 -28 -18q0 -1 7 -1h232q4 0 19.5 33t17.5 33q4 0 11 -2.5t7 -4.5q0 -15 -27 -111q-2 -6 -11 -6h-326q-15 0 -15 11q0 7 12 17q13 12 54.5 41t73.5 53.5t59 65 t27 82.5q0 44 -23 69t-61 25q-30 0 -61 -15t-49 -31l-19 -15q-4 0 -10.5 7.5t-6.5 12.5z" />
<glyph unicode="3" d="M80 -164q0 8 11.5 14t26.5 6q16 0 41 -15q4 -2 14 -9t15.5 -10.5t18 -6.5t26.5 -3q48 0 87 45.5t39 103.5q0 70 -36.5 100.5t-114.5 30.5q-12 0 -32 -1.5t-21 -1.5q-3 0 -5.5 1t-3.5 3t-2 3.5t-1.5 5t-1.5 5.5q-2 6 -2 9q0 11 21 17q78 22 114.5 54t36.5 85 q0 40 -24 68.5t-61 28.5q-33 0 -59.5 -12.5t-39 -25t-13.5 -12.5q-6 0 -12 5.5t-6 11.5q0 7 19.5 23.5t54.5 32t68 15.5q61 0 97.5 -33.5t36.5 -89.5q0 -82 -91 -122q-48 -20 -48 -23q0 -2 42 -5q147 -12 147 -161q0 -80 -60.5 -133t-138.5 -53q-42 0 -92.5 15t-50.5 34z " />
<glyph unicode="4" d="M40 8q0 32 84 130l133 160q85 96 96 96q13 0 13 -26v-296q0 -13 2 -15.5t13 -2.5h58q7 0 7 -10v-34q0 -8 -1.5 -9t-10.5 -1h-52q-11 0 -13 -2t-1 -12q9 -183 9 -185q0 -10 -16 -11l-45 -4q-11 0 -11 13v186q0 11 -2.5 13t-13.5 2h-231q-18 0 -18 8zM93 60q0 -6 25 -6h168 q14 0 16.5 3t2.5 17v216q0 26 -3 26q-1 0 -18 -21l-174 -210q-17 -21 -17 -25z" />
<glyph unicode="5" d="M100 158q0 6 8.5 44.5l20.5 94t18 88.5q1 6 15 6q2 0 41 -2.5t88.5 -4.5t77.5 -2q22 0 24 5q8 24 10 24h4q13 0 13 -6q-3 -45 -4 -69q-1 -17 -37 -17q-35 0 -64.5 1.5t-66 4.5t-65.5 4q-19 0 -21 -10q-20 -100 -20 -107q0 -4 1.5 -5.5t5.5 -1.5h4q107 -10 167 -52 t60 -134q0 -60 -36 -109.5t-85 -76t-88.5 -40.5t-57.5 -14q-8 0 -8 18q0 13 8 14q22 4 46 13t51.5 25t49 37t35.5 51.5t14 65.5q0 73 -54.5 108t-139.5 35q-15 0 -15 12z" />
<glyph unicode="6" d="M48 231q0 65 21.5 126.5t55.5 106t73 82t75 61t61 36t33 12.5q5 0 10 -7t5 -13q0 -4 -5 -6q-49 -20 -91.5 -54.5t-70.5 -73.5t-44.5 -69t-26.5 -57q-9 -25 -9 -27q3 -3 4.5 -3t10.5 2t12 3q43 8 91 8q79 0 133.5 -47.5t54.5 -121.5q0 -89 -56.5 -141.5t-140.5 -52.5 q-88 0 -142 61.5t-54 174.5zM115 201q0 -69 36.5 -122t106.5 -53q49 0 82 44t33 98q0 75 -40 121.5t-116 46.5q-30 0 -66 -6q-9 -2 -13 -3t-7 -6.5t-3.5 -7.5t-3.5 -15q-9 -43 -9 -97z" />
<glyph unicode="7" d="M84 278q0 4 1.5 19.5t5 45.5t5.5 56q1 13 4.5 15.5t11.5 2.5q13 0 13 -20q0 -4 164 -4h166q17 0 17 -9q0 -2 -4 -10l-129 -246.5l-128 -248.5t-52 -95q-13 0 -24.5 9t-11.5 19q0 1 288 502q9 16 9 17q0 4 -18 4h-199q-84 0 -85 -9l-9 -51q-1 -6 -13 -5t-12 8z" />
<glyph unicode="8" d="M71 154q0 37 11.5 66.5t32.5 49t35 28.5t34 19q5 3 9.5 4.5t6.5 2.5h2l-2 2q-3 1 -8 4t-11 7q-101 69 -101 158q0 68 49.5 115.5t120.5 47.5q67 0 112.5 -42t45.5 -108q0 -16 -2 -30t-7 -26.5t-9.5 -22.5t-13.5 -20t-14 -16.5t-15.5 -15t-14.5 -12t-15 -11t-12 -8.5 q-9 -7 -9 -8t9 -6q1 -1 17 -9.5t23 -14l22.5 -17t24 -24t19 -29.5t15 -38.5t4.5 -45.5q0 -72 -50 -116t-132 -44q-73 0 -125 45t-52 115zM124 164q0 -63 35 -102.5t93 -39.5q50 0 81.5 39t31.5 92q0 40 -19.5 70.5t-40 45t-59.5 35.5q-22 12 -27 12q-3 0 -33 -21 q-62 -46 -62 -131zM138 507q0 -64 69 -118q34 -26 54 -35l16 -7q3 0 14 10q26 23 49 65t23 78q0 64 -32 100t-83 36q-50 0 -80 -37.5t-30 -91.5z" />
<glyph unicode="9" d="M60 204q0 89 55 141.5t138 52.5q87 0 143.5 -62t56.5 -174q0 -70 -26.5 -130t-68 -99.5t-88.5 -70.5t-91 -47.5t-71.5 -24.5t-34.5 -8q-4 0 -7 9t-3 16q0 2 24 9.5t62 24t79 42t80 71t59 102.5l3 7l3 10.5t0 3.5q-2 0 -20 -12q-54 -33 -125 -33q-77 0 -122.5 47.5 t-45.5 124.5zM125 214q0 -60 35 -105.5t95 -45.5q96 0 126 52q6 11 6 57q0 50 -13 92.5t-43.5 73t-74.5 30.5q-64 0 -97.5 -43.5t-33.5 -110.5z" />
<glyph unicode=":" horiz-adv-x="221" d="M60 38q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29zM60 313q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29z" />
<glyph unicode=";" horiz-adv-x="223" d="M50 -139l18 16q17 16 34.5 41t17.5 48q0 16 -10 30.5t-22.5 22.5t-22.5 15.5t-10 12.5q0 14 19.5 27.5t27.5 13.5q14 0 42.5 -23t28.5 -40q0 -38 -26.5 -83t-53 -71.5t-32.5 -26.5q-4 0 -7.5 5.5t-3.5 11.5zM61 313q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32 q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29z" />
<glyph unicode="&#x3c;" horiz-adv-x="527" d="M41 211q0 6 0.5 8.5t4 5.5t10.5 6l361 132q48 18 51 18q19 0 19 -25q0 -10 -16 -16l-315 -111q-42 -15 -42 -21q0 -3 42 -18l320 -112q11 -4 11 -13q0 -8 -6 -16t-18 -8q-3 0 -408 147q-10 4 -12 8t-2 15z" />
<glyph unicode="=" horiz-adv-x="527" d="M31 134q0 8 0.5 11.5t4.5 6.5t13 3h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -19t-18 -5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5zM31 290q0 8 0.5 11.5t4.5 6t13 2.5h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5z " />
<glyph unicode="&#x3e;" horiz-adv-x="527" d="M41 65q0 10 10 13l321 112q42 15 42 18q0 6 -42 21l-316 111q-15 6 -15 16q0 25 18 25q3 0 51 -18l361 -132q16 -6 16 -20q0 -11 -2.5 -15t-12.5 -8q-405 -147 -408 -147q-12 0 -17.5 8t-5.5 16z" />
<glyph unicode="?" horiz-adv-x="364" d="M60 605v45q0 17 9 17q6 0 10 -12t9 -13q24 -4 37.5 -6.5t42.5 -10.5t48 -17.5t43.5 -27t39 -39t25 -53t10.5 -69.5q0 -79 -29 -126t-106 -48q-15 0 -20 -4t-6 -13q-1 -16 -4 -45t-4 -45q0 -9 -12 -9q-10 0 -13 4.5t-3 17.5q0 119 2 147q1 12 7 15t21 3h57q87 0 87 88 q0 72 -57.5 122t-170.5 64q-2 0 -5.5 0.5t-5 1t-4 1t-3.5 1.5l-2.5 2.5t-2 3.5t-0.5 5zM96 38q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29z" />
<glyph unicode="@" horiz-adv-x="795" d="M50 187q0 110 61 203.5t157 145.5t200 52q56 0 103.5 -13t87.5 -41t63 -76.5t23 -113.5q0 -69 -31.5 -126t-81.5 -91.5t-108 -53.5t-115 -19q-35 0 -35 22l6 47q-7 -8 -18.5 -19t-43 -29.5t-56.5 -18.5q-28 0 -43 24t-15 59q0 36 31.5 95t92 110t126.5 51q8 0 20 -3 l11 -3q1 0 14 15q13 16 28 16q25 0 25 -13q0 -8 -3 -14q-110 -237 -110 -278q0 -11 0.5 -16t5.5 -10t14 -5q42 0 93 25t95 69q68 68 68 159q0 112 -66.5 167.5t-177.5 55.5q-157 0 -272 -108.5t-115 -270.5q0 -119 80.5 -192t191.5 -73q97 0 169.5 32.5t140.5 95.5q8 8 13 8 q6 0 10 -5.5t4 -8.5q0 -7 -4 -11q-62 -67 -150 -103.5t-186 -36.5q-125 0 -214 80t-89 220zM271 147q0 -18 11.5 -32t30.5 -14q31 0 67.5 57.5t58 116t21.5 75.5q0 11 -10 17.5t-22 6.5q-42 0 -99.5 -75.5t-57.5 -151.5z" />
<glyph unicode="A" horiz-adv-x="698" d="M30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5 t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="B" horiz-adv-x="592" d="M40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q19 0 60.5 1.5t62.5 1.5q99 0 160.5 -38t61.5 -123q0 -101 -150 -156l-17 -7q0 -1 11 -2.5t28 -5t38 -9.5t42 -18t38 -29.5t28 -45t11 -62.5q0 -171 -280 -171q-27 0 -60.5 1t-35.5 1q-18 0 -61 -1.5t-45 -1.5 q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h53q5 0 5 42v323q0 242 -10 242l-57 -2q-20 0 -20 17zM209 315q0 -288 9 -288h61q180 0 180 149q0 111 -87 140q-31 10 -118 10h-34q-11 0 -11 -11zM209 358q0 -6 3 -8t13 -2h57q10 0 20.5 -0.5t12.5 -0.5q11 0 20 3 q41 12 70 46.5t29 91.5q0 73 -49.5 114.5t-127.5 41.5q-29 0 -43 -4q-5 -1 -5 -234v-48z" />
<glyph unicode="C" horiz-adv-x="731" d="M45 335q0 154 101.5 249.5t255.5 95.5q19 0 37.5 -2t34.5 -5.5t29.5 -8t27 -10.5l23 -10.5t19.5 -11l15 -10l12.5 -8.5t8.5 -6q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v27q0 9 2 11t13 2q12 0 16 -2t4 -11q0 -5 -2 -84t-2 -109q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5 q0 1 2 43t2 47t-11 18t-32.5 30t-48.5 33t-64.5 27t-74.5 11q-108 0 -178 -90t-70 -227q0 -127 81 -218.5t196 -91.5q51 0 99 15t71.5 30.5t24.5 22.5l13 113q1 10 5.5 13t16.5 1q12 -1 12 -13q0 -13 -16 -133q-1 -10 -36.5 -30.5t-97.5 -39t-120 -18.5q-71 0 -133 21.5 t-111.5 63t-78 110.5t-28.5 156z" />
<glyph unicode="D" horiz-adv-x="758" d="M35 10q0 11 3 13t14 2h66q4 0 8.5 200t4.5 338q0 78 -2 78l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v7.5t1.5 5t4 3t7.5 0.5q1 0 11.5 -0.5t26.5 -0.5h31q41 0 114.5 6t89.5 6q166 0 273.5 -93t107.5 -250q0 -105 -49.5 -183.5t-126.5 -116.5t-169 -39q-32 0 -97 2t-98 2 q-16 0 -70 -2t-57 -2q-8 0 -9.5 2t-1.5 12zM213 86q0 -59 2 -60q6 -4 57 -4q69 0 124.5 14t90 34.5t60 53t37.5 59t19 63.5t8 56t1 46q0 73 -35.5 141.5t-106.5 115.5t-159 47q-67 0 -90 -6q-7 -2 -7 -146q-1 -138 -1 -414z" />
<glyph unicode="E" horiz-adv-x="605" d="M40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9 q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5 h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="F" horiz-adv-x="550" d="M40 651q0 14 12 14l43 -1q43 -2 64 -2q28 0 133.5 1.5t125.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -282 7q-7 0 -7 -114q0 -110 2 -156q0 -12 2 -14t14 -2h173 q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -55t1 -38q0 -8 -13 -8q-18 0 -18 9v56q0 7 -2 10t-15 6.5t-38 3.5h-173q-11 0 -13.5 -3t-2.5 -17q1 -49 1.5 -128.5t1.5 -114.5t4 -35h83q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5 t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h43q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5z" />
<glyph unicode="G" horiz-adv-x="764" d="M45 335q0 160 102.5 251t260.5 91q117 0 201 -59q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v25q0 9 2 11t13 2q12 0 15.5 -2t3.5 -11q0 -2 -1.5 -76.5t-1.5 -104.5q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 38t2 42t-9.5 17t-29.5 27.5t-45.5 30t-62.5 24.5t-75 10 q-109 0 -183 -91t-74 -226q0 -130 79 -225.5t198 -95.5q51 0 91 12t55.5 24.5t16.5 19.5q3 26 3 94q0 58 -10 58h-87q-8 0 -8 12q0 18 9 18q15 0 64.5 -1.5t67.5 -1.5q17 0 42.5 1.5t47.5 1.5q8 0 8 -14q0 -16 -8 -16h-31q-9 0 -11 -13t-2 -45q0 -12 -0.5 -42t-0.5 -47 q0 -10 -39 -31.5t-106.5 -40.5t-129.5 -19q-71 0 -133 21t-111.5 62.5t-78 110.5t-28.5 159z" />
<glyph unicode="H" horiz-adv-x="791" d="M40 15q0 9 3 10.5t15 1.5h57q7 0 7 258v102q0 252 -6 252h-43q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 39.5 -1.5t50.5 -1.5q16 0 55.5 1.5t50.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-54q-7 0 -7 -134q0 -27 0.5 -73t0.5 -59t2 -15.5 t13 -2.5h365q11 0 13 2t2 13v122q0 147 -10 147h-57q-10 0 -12.5 2t-2.5 13t2.5 13t12.5 2q6 0 47 -1.5t58 -1.5q18 0 55 1.5t40 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-46q-2 0 -2 -242q0 -370 4 -370h55q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -44.5 1.5t-49.5 1.5t-58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h55q6 0 6 165v124q0 11 -1 13t-8 2h-374q-8 0 -10 -2.5t-2 -14.5q0 -287 11 -287h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -52.5 1.5t-57.5 1.5t-61 -1.5t-56 -1.5 q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="I" horiz-adv-x="333" d="M30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71 q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="J" horiz-adv-x="333" d="M-30 -188q0 23 28.5 43.5t38.5 20.5q7 0 24 -10.5t28 -10.5q26 0 33 32t7 108v497q0 147 -10 147h-65q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 56 -1.5t67 -1.5q16 0 53.5 1.5t48.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-7 0 -7 -269 v-240q0 -84 -17 -153t-69 -125q-60 -64 -109 -64q-19 0 -36 7t-17 17z" />
<glyph unicode="K" horiz-adv-x="650" d="M40 15q0 9 3 10.5t15 1.5h55q8 0 8 170v290q0 147 -8 147h-44q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 45.5 -1.5t56.5 -1.5q16 0 55.5 1.5t50.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-54q-14 0 -14 -158v-125q0 -8 0.5 -11.5t3.5 -6 t9 -2.5h22q11 0 57 56t107.5 139l64.5 87q9 13 9 16q0 5 -15 5h-37q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 37 -1.5t48 -1.5q16 0 42.5 1.5t37.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-49l-40 -48l-97.5 -116l-78.5 -94q-3 -3 -4 -5t-2 -3 t0 -2.5t1.5 -2.5t3 -4t4.5 -5l269 -310q15 -17 31 -17h14q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -47.5 1.5t-52.5 1.5t-52.5 -1.5t-47.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h30q17 0 17 4l-12 14l-217 257q-7 8 -22 8h-20q-9 0 -11.5 -1.5 t-2.5 -10.5q0 -271 11 -271h73q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-60 -1.5t-55 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="L" horiz-adv-x="592" d="M40 15q0 9 2.5 10.5t14.5 1.5h62q9 0 9 292v231q0 89 -7 89h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 49.5 -1.5t60.5 -1.5q16 0 61.5 1.5t56.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-70q-9 0 -9 -215v-277q0 -116 8 -116q227 0 293 6q13 1 17 4t6 19 l12 84q2 8 11 8q20 0 20 -10q0 -3 -4.5 -30l-9.5 -60t-7 -44q-1 -11 -22 -11q-11 0 -179.5 1.5t-184.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="M" horiz-adv-x="895" d="M35 15q0 9 2.5 10.5t15.5 1.5h42q2 0 3.5 4.5t2 14.5l1 20t1 29.5t1.5 33.5q18 366 18 497q0 8 -4 10.5t-18 2.5h-46q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 51 -1.5t56 -1.5q13 0 35.5 1.5t23.5 1.5q15 0 20 -13l210 -524q9 -22 11 -22q3 0 11 22l196 511q6 16 10 19.5 t15 3.5h46q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-46q-7 0 -7 -80v-90q0 -153 4.5 -297.5t11.5 -144.5h54q8 0 10.5 -2t2.5 -11q0 -11 -2 -14t-9 -3q-11 0 -51 1.5t-56 1.5t-55.5 -1.5t-50.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5 t15.5 1.5h46q9 0 9 177q0 98 -2.5 257.5t-4.5 159.5t-36 -88l-85 -219.5l-81 -204.5q-10 -25 -27.5 -50t-28.5 -47q-9 -19 -15 -19q-5 0 -17 28l-233 575q-13 30 -16 30q-2 0 -4 -32q-8 -211 -8 -465q0 -102 5 -102h72q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -41.5 1.5t-46.5 1.5t-43.5 -1.5t-38.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="N" horiz-adv-x="814" d="M40 15q0 9 3 10.5t15 1.5h44q3 0 5 2.5t3 7.5t1.5 11t1 15.5t0.5 18.5t0.5 22.5t0.5 24.5l8 510h-68q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 33.5 1.5t21.5 1.5q10 0 20 -13l406 -499q16 -20 18 -20q4 0 4 28v42q0 49 -1 187t-1 189 q0 56 -1 56h-94q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 50.5 -1.5t55.5 -1.5t43.5 1.5t38.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-47q-4 0 -4 -59q0 -68 -3.5 -209.5l-6.5 -253t-3 -113.5q0 -22 -10 -22q-4 0 -18 16l-492 598q-14 18 -16 18q-3 0 -3 -20 q-1 -25 -1 -122q0 -54 -0.5 -175.5t-0.5 -167.5q0 -102 5 -102h86q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5t-43.5 -1.5t-38.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="O" horiz-adv-x="752" d="M45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242t-242.5 -93q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="P" horiz-adv-x="564" d="M40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q16 0 68 2.5t63 2.5q108 0 174 -49.5t66 -146.5q0 -92 -64 -136.5t-175 -44.5q-19 0 -46.5 1.5t-40.5 1.5q-10 0 -10 -11v-66q0 -189 5 -189h73q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -55 1.5t-60 1.5 q-18 0 -61.5 -1.5t-45.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h51q9 0 9 447v52q0 108 -5 108l-63 -2q-20 0 -20 17zM209 325q0 -13 38 -13q94 0 152.5 41.5t58.5 132.5q0 71 -59.5 113t-151.5 42q-22 0 -33 -1q-5 0 -5 -54v-261z" />
<glyph unicode="Q" horiz-adv-x="783" d="M45 340q0 155 101 245t246 90q149 0 247.5 -95t98.5 -240q0 -119 -67.5 -207t-176.5 -119q-15 -4 -62 -24l-87 -38t-40 -19q0 -2 25.5 -3t64.5 -4t64 -9q24 -5 64 -16.5t68.5 -18t47.5 -6.5q30 0 55 7.5t37.5 15t13.5 7.5q3 0 8.5 -6t5.5 -11q0 -7 -23 -25t-61 -34.5 t-72 -16.5q-59 0 -134.5 20.5t-135 41.5t-79.5 21q-15 0 -40 -9t-27 -9q-9 0 -22.5 16.5t-13.5 25.5q0 15 25 15q4 0 11 -0.5t11 -0.5q32 0 57 6q16 4 50.5 18.5t62.5 27.5t28 15l-14 2q-70 9 -128.5 31.5t-106.5 61.5t-75 101.5t-27 142.5zM132 356q0 -140 85 -237 q37 -42 113 -71.5t104 -29.5q15 0 46 18.5t68 53.5t64.5 99.5t27.5 142.5q0 123 -71 219t-187 96q-105 0 -177.5 -87t-72.5 -204z" />
<glyph unicode="R" horiz-adv-x="641" d="M40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q16 0 75 3t70 3q42 0 77 -7.5t68.5 -25t53 -52.5t19.5 -85q0 -32 -14.5 -61t-37.5 -49t-42.5 -32t-39.5 -21q-5 -3 -10.5 -4.5t-7.5 -2.5l-2 -1l2 -1q2 0 7 -1t11 -3q160 -48 167 -230q2 -44 4 -54.5t10 -10.5h46 q7 0 9.5 -3.5t2.5 -18.5q0 -8 -17 -8l-133 3q-5 0 -6.5 1t-1.5 7v58q0 43 -2 72t-12 64.5t-27.5 57t-51 36.5t-80.5 16q-10 0 -43.5 0.5t-48.5 0.5q-11 0 -11 -11q0 -62 3.5 -168.5t7.5 -106.5h61q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -51.5 1.5t-56.5 1.5 q-18 0 -57 -1.5t-41 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h45q5 0 5 129v133q0 345 -12 345l-55 -2q-20 0 -20 17zM207 345q0 -6 3 -8t13 -2q20 0 65 -0.5t63 -1.5q10 0 12 1q88 40 88 150q0 71 -55.5 114.5t-129.5 43.5q-18 0 -52 -2q-7 0 -7 -54v-241z" />
<glyph unicode="S" horiz-adv-x="528" d="M55 488q0 81 65 135t149 54q73 0 135 -42q10 -8 16 -8t7 10l1 11q0 9 2 11.5t13 2.5q12 0 15.5 -2.5t3.5 -11.5l-2 -63q-3 -63 -3 -94q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 1.5 30t1.5 34q0 22 -51.5 60t-102.5 38q-57 0 -95 -37t-38 -92q0 -43 26.5 -73.5 t65.5 -46l85.5 -34t85.5 -37.5t65.5 -58t26.5 -93q0 -88 -67.5 -140.5t-156.5 -52.5q-51 0 -99 9.5t-73 20t-26 16.5l-3.5 48l-4.5 62t-2 34q0 14 12 14h5q15 0 16 -16l6 -92q1 -21 65.5 -42t112.5 -21q54 0 93.5 35t39.5 86q0 42 -26.5 72t-66 46.5l-85.5 36.5t-85.5 40 t-66 60t-26.5 94z" />
<glyph unicode="T" horiz-adv-x="690" d="M20 544l4 22q3 21 7 52.5t6 53.5q1 10 3 12t13 2q13 0 13 -6v-11q0 -6 108 -6h357q108 0 109 11q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 8 -113 8h-116q-3 0 -5 -10t-3 -30.5t-1 -36t-0.5 -44 t-0.5 -37.5l-1 -29q0 -28 -1 -72.5t-2 -94.5t-1.5 -102t-0.5 -87q0 -65 2 -65h74q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-63 -1.5t-58 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h62q7 0 10.5 192.5t3.5 325.5q0 90 -7 90h-144 q-96 0 -97 -13l-7 -70q-1 -17 -13 -17q-20 0 -20 9z" />
<glyph unicode="U" horiz-adv-x="755" d="M40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4 t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20 q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="V" horiz-adv-x="685" d="M10 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 67.5 1.5t62.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-71q-2 0 -2 -5q0 -19 12 -51q68 -199 159 -436q19 -48 22 -48q6 0 23 46l37 95.5l46.5 119l42.5 111t34 98.5t12 54q0 16 -9 16h-71h-5.5 t-4 0.5t-4 1.5t-2.5 2.5t-1.5 4t-0.5 6.5q0 11 2.5 13t12.5 2q6 0 47 -1.5t58 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5t-19.5 -2.5t-9 -6t-7.5 -14.5l-231 -543q-3 -8 -27 -42q-6 -9 -12.5 -20.5t-10 -17t-8 -9.5t-10.5 -4q-5 0 -10 15l-17 51 t-27 69q0 1 -51.5 133.5l-103 261.5t-54.5 129h-31q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="W" horiz-adv-x="1008" d="M10 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 41 -1.5t52 -1.5q16 0 54.5 1.5t49.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-10 0 -10 -9t27 -99l47.5 -155l50.5 -158t23 -71q12 -36 13 -36q2 0 16 36l143 365q5 13 5 18q0 4 -3.5 14t-5.5 17q-22 78 -27 78 h-60q-7 0 -10 0.5t-5 4t-2 10.5q0 11 3 13t14 2q6 0 50 -1.5t61 -1.5q16 0 62.5 1.5t57.5 1.5q10 0 12 -2.5t2 -15.5q0 -8 -3 -10t-14 -2h-64q-3 0 -3 -9q0 -27 18 -99l32.5 -116l34.5 -120.5l28.5 -98.5t14.5 -49l4 -14t3.5 -11.5l3 -9l2.5 -7.5t2 -5.5t2 -3.5t2 -1 q2 0 22 50l35.5 93.5l46 122l39 108t33.5 102t11 52.5q0 16 -9 16h-65q-7 0 -10 0.5t-5 4t-2 10.5q0 11 3 13t14 2q6 0 46 -1.5t57 -1.5q18 0 42 1.5t26 1.5q10 0 12 -2.5t2 -13.5q0 -9 -3 -11.5t-15 -2.5q-13 0 -19.5 -2.5t-9 -6t-7.5 -14.5l-221 -543q-4 -11 -8 -17.5 t-9.5 -13l-9.5 -11.5l-11 -17t-9 -14t-7 -10.5t-7 -7.5t-7 -2q-8 0 -14.5 14t-18 55.5t-19.5 65.5q0 1 -14 51l-37 132l-41 147q-7 25 -10 25t-12 -25l-142 -372q-4 -11 -8 -17.5t-9.5 -13l-9.5 -11.5l-11 -17t-9 -14t-7 -10.5t-7 -7.5t-7 -2q-8 0 -14.5 14t-18 55.5 t-19.5 65.5q0 1 -16.5 56.5l-39.5 131.5l-46.5 152.5l-40.5 130t-19 53.5h-35q-8 0 -11 0.5t-6 4t-3 10.5z" />
<glyph unicode="X" horiz-adv-x="638" d="M10 12q0 6 0.5 9t3 4.5t4.5 1.5h8h37q2 0 6.5 4.5t12.5 16l14.5 20.5t19.5 28.5t21 30.5l42.5 59.5t56 72t45.5 57.5q7 9 0 20q0 2 -92 150t-97 148h-39h-5.5t-4 0.5t-4 1.5t-2.5 2.5t-1.5 4t-0.5 6.5q0 7 2 10.5t5 4t11 0.5q6 0 53 -1.5t64 -1.5q16 0 51 1.5t46 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-41q-11 0 -12 -2t4 -13q27 -65 121 -227q2 -2 3.5 -4.5t2.5 -3.5l1 -2q3 0 89 133q63 94 63 115q0 4 -3 4h-56q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 43.5 1.5t32.5 1.5 q11 0 13.5 -2t2.5 -13t-3 -13t-13 -2h-26q-4 0 -46 -60q-33 -48 -88.5 -121.5t-63.5 -85.5q-4 -6 -4 -7t4 -7q205 -326 214 -326h35q6 0 8 -0.5t5 -1.5t4 -4t1 -9q0 -7 -2 -10.5t-5 -4t-11 -0.5q-6 0 -45.5 1.5t-56.5 1.5q-16 0 -60.5 -1.5t-55.5 -1.5q-10 0 -12 2.5 t-2 15.5q0 9 3 10.5t15 1.5h50q6 0 8.5 0.5t3.5 2t0 4t-4 8.5q-18 37 -145 250l-6 9q-2 1 -7 -7q-110 -155 -163 -242l-12 -21q0 -4 13 -4h54q12 0 15 -1.5t3 -10.5q0 -13 -2 -15.5t-12 -2.5q-11 0 -39 1.5t-44 1.5q-17 0 -47 -1.5t-36 -1.5q-10 0 -13 2t-3 13z" />
<glyph unicode="Y" horiz-adv-x="597" d="M10 654q0 7 2 10.5t5 4t11 0.5q6 0 46 -1.5t57 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-59q-11 0 -12 -2.5t4 -12.5q9 -23 37 -76.5l62.5 -117t42.5 -79.5q9 -17 11 -17q3 0 11 14l27 52l38 72.5l35.5 69.5t29 62t10.5 32q0 3 -2 3h-56 q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 43.5 1.5t32.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -37.5 -62l-81.5 -142l-65 -111q-3 -5 -3 -11q0 -286 10 -286h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14 t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-58.5 -1.5t-53.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h52q10 0 10 244q0 11 -7 23q-189 345 -199 345h-29q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="Z" horiz-adv-x="601" d="M40 15q0 5 61 98.5l163.5 249.5l165.5 254q5 7 5 9q0 3 -24 3h-302q-9 0 -10 -7q-1 -2 -1 -3q-2 -9 -5 -28.5t-5.5 -33.5t-2.5 -16q-4 -15 -9 -15q-24 0 -24 9q0 3 3.5 24.5l9 56t8.5 60.5q0 6 16 6q13 0 13 -6v-6q0 -3 1.5 -4.5t8 -2.5t18 -1.5t31.5 -0.5h381 q10 0 13.5 -3t3.5 -12q0 -6 -62.5 -98l-159 -238t-157.5 -250q-10 -16 -10 -18q0 -5 11 -5h337h5.5t4 0.5t2.5 1t1 3t1 4t0.5 6t0.5 8.5q1 14 3 87q0 8 18 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-57 0 -252 1.5t-246 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="[" horiz-adv-x="296" d="M80 -126v801q0 9 2 12t10 3h151q9 0 11 -1.5t2 -7.5v-14q0 -9 -2 -11t-11 -2h-105q-9 0 -11 -2t-2 -10v-735q0 -12 13 -12h105q6 0 8.5 -0.5t3.5 -3t1 -9.5v-12q0 -6 -2 -8.5t-11 -2.5h-150q-9 0 -11 2.5t-2 12.5z" />
<glyph unicode="\" horiz-adv-x="406" d="M10 693q0 12 21 12q14 0 19.5 -3.5t9.5 -14.5l317 -850q19 -55 19 -57q0 -13 -26 -13q-13 0 -18.5 4.5t-13.5 26.5l-314 851q-14 36 -14 44z" />
<glyph unicode="]" horiz-adv-x="296" d="M40 -118q0 9 2 11t11 2h105q9 0 11 2t2 10v735v6t-1.5 3.5t-4 2t-7.5 0.5h-105q-6 0 -8.5 0.5t-3.5 3t-1 9.5v12q0 7 2 9t11 2h150q9 0 11 -2.5t2 -12.5v-801q0 -9 -2 -12t-10 -3h-151q-9 0 -11 1.5t-2 7.5v14z" />
<glyph unicode="^" horiz-adv-x="402" d="M51 311l146 320q2 1 6 1t6 -1l146 -320q-15 -3 -26 -3q-9 0 -26 3l-102 232l-98 -232q-18 -3 -28 -3q-11 0 -24 3z" />
<glyph unicode="_" horiz-adv-x="410" d="M25 -43q0 18 16 18h331q13 0 13 -17v-5q0 -23 -13 -23h-334q-13 0 -13 19v8z" />
<glyph unicode="`" horiz-adv-x="400" d="M98 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-3 0 -8 6l-82 107q-7 10 -7 20z" />
<glyph unicode="a" horiz-adv-x="419" d="M35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91 q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134 q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="b" horiz-adv-x="485" d="M5 639q0 21 5 21q20 2 55.5 6l60 7t26.5 3q6 0 6 -15q-3 -185 -3 -267q0 -38 1 -38t7.5 3t17.5 7.5t23.5 9t28.5 7.5t30 3q83 0 137.5 -57.5t54.5 -140.5q0 -92 -65 -146.5t-156 -54.5q-19 0 -47.5 9.5t-41.5 9.5q-11 0 -28 -9t-21 -9q-12 0 -12 13q0 1 1 36.5t2.5 82.5 t1.5 77q0 87 -4.5 264.5t-12.5 177.5q-2 0 -30.5 -3t-30.5 -3q-6 0 -6 6zM153 64q0 -50 84 -50q67 0 106.5 51t39.5 122q0 67 -47.5 118.5t-112.5 51.5q-16 0 -32.5 -5.5t-26 -11t-9.5 -8.5q0 -59 -1 -159.5t-1 -108.5z" />
<glyph unicode="c" horiz-adv-x="412" d="M35 177q0 104 63 163t143 59q50 0 91.5 -29t41.5 -67q0 -13 -10 -20q-17 -13 -30 -13t-17 11q-2 5 -8.5 25.5t-10 27t-12 18.5t-21 16t-30.5 4q-60 0 -97.5 -53t-37.5 -117q0 -68 40.5 -118t113.5 -50q30 0 58.5 7.5t44.5 15t18 7.5q7 0 7 -8q0 -2 -6.5 -9t-20.5 -17 t-32 -18.5t-44.5 -15t-54.5 -6.5q-87 0 -138 51t-51 136z" />
<glyph unicode="d" horiz-adv-x="499" d="M30 181q0 85 58.5 141.5t144.5 56.5q17 0 33.5 -2.5t28.5 -6.5t21 -8t14 -6l6 -3q6 0 6 18q0 48 -2 113.5t-4.5 112t-3.5 46.5t-32 -4.5t-35 -4.5t-5 2t1 13q2 12 8 13q24 3 56.5 7.5t52.5 7.5t22 3q7 0 8.5 -3.5t1.5 -19.5q0 -7 -1.5 -62.5t-3 -164.5t-1.5 -246 q0 -48 2 -120q1 -29 6 -39t17 -10q4 0 34 4q6 1 8.5 0t2.5 -8q0 -8 -0.5 -11t-3 -5t-9.5 -3l-115 -15q-6 0 -6 9q0 1 0.5 17.5t0.5 18.5q0 8 -2.5 9t-12.5 -5q-63 -39 -120 -39q-75 0 -125.5 47t-50.5 147zM103 188q0 -74 37.5 -119t114.5 -45q23 0 55 10.5t32 22.5v250 q0 12 -31 32t-66 20q-64 0 -103 -50.5t-39 -120.5z" />
<glyph unicode="e" horiz-adv-x="424" d="M30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23 q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="f" horiz-adv-x="306" d="M35 12q0 13 12 13h40q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-33q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 8.5 2t1.5 10q0 24 -1 47t-1 50q0 87 37 142t119 55q31 0 57 -19t26 -48q0 -16 -18 -31.5t-30 -15.5t-13 9q-3 23 -5 33t-7 24.5t-13.5 20t-21.5 5.5 q-59 0 -59 -164q0 -17 -2 -103q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h66q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="g" horiz-adv-x="425" d="M15 -173q0 32 25.5 58t54 38.5t57.5 18.5q23 5 23 6t-21 1h-57q-31 0 -40 19q-9 21 -9 48q0 28 18 32q33 8 76 20q38 11 38 12l-2 1q-3 1 -8 2t-9 2q-127 38 -127 161q0 64 53.5 106.5t122.5 42.5q22 0 42 -5.5t33.5 -12.5t24 -14.5t16.5 -12.5l6 -6q2 0 14.5 4.5t29.5 9 t31 5.5q2 0 5.5 -9.5t3.5 -18.5q0 -6 -3 -6q-11 -1 -35 -6t-24 -8q0 -1 3 -10.5t6.5 -26t3.5 -35.5q0 -60 -29 -95t-86 -57q-27 -11 -173 -52q-4 -1 -4 -9t5.5 -18.5t8.5 -11.5q17 -1 57.5 -2.5t64.5 -3t60.5 -6t59 -12.5t45 -20.5t33.5 -32.5t11 -47q0 -76 -61 -121 t-159 -45q-44 0 -85 12t-70.5 39.5t-29.5 65.5zM60 -166q0 -46 44 -72t95 -26q66 0 115 28t49 88q0 27 -29 46t-67 26.5t-78 7.5q-43 0 -86 -26.5t-43 -71.5zM98 250q0 -65 41 -110t68 -45q33 0 65.5 43t32.5 106q0 59 -27 92.5t-73 33.5q-43 0 -75 -35.5t-32 -84.5z" />
<glyph unicode="h" horiz-adv-x="503" d="M10 640q0 16 5 17q138 18 146 18q5 0 5 -20q-8 -166 -8 -301v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47t16 -63t4 -79v-143q0 -8 1.5 -10t9.5 -2h26q14 0 14 -13q0 -14 -14 -14q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5 q0 13 13 13h39q8 0 9 1.5t2 9.5q2 40 2 176q0 58 -24 95t-72 37q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -10 1.5 -13t2 -4t7.5 -1h38q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5 q0 13 12 13h39q7 0 8.5 3t1.5 15q1 94 1 220q0 202 -8 356q-1 17 -6 17q-1 0 -30 -3.5t-31 -3.5q-4 0 -4 11z" />
<glyph unicode="i" horiz-adv-x="249" d="M25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88 q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4zM77 553q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="j" horiz-adv-x="292" d="M5 -255q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 9 -2.5 56.5t-4.5 145t-2 229.5q0 49 -2 76q-1 14 -9 14q-3 0 -34 -1.5t-36 -1.5q-3 0 -3 4q0 5 4 15q0 1 1 3q2 6 14 6q22 0 52.5 1.5l51 2.5t21.5 1q7 0 7 -23q0 -20 2.5 -136.5t2.5 -191.5 q0 -90 -10.5 -145t-43.5 -98q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20zM80 580q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="k" horiz-adv-x="449" d="M10 649v9q0 13 12 14q114 9 131 9q5 0 6 -2t1 -11l-11 -448q0 -8 2.5 -9.5t13.5 -1.5h22q4 0 7.5 1t7 4.5l5 5t5.5 6t4 5.5q53 70 79 113q3 5 3.5 6.5t1.5 4t-0.5 3.5t-5 1.5t-9.5 0.5h-20q-8 0 -10.5 3t-2.5 10q0 14 14 14q4 0 25 -1t33 -1q10 0 30 1t27 1q13 0 13 -14 q0 -13 -12 -13h-32q-11 0 -107 -123q-2 -2 -5 -6q-3 -3 -4 -4.5t0.5 -4t3.5 -4.5l5 -5l151 -175q11 -13 22 -13h10q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2t-29.5 1t-37.5 1t-38 -1t-30 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h11q17 0 5 15l-110 136q-2 2 -4 5 q-9 12 -18 12h-14q-8 0 -9.5 -3t-1.5 -13v-134q0 -13 1.5 -15.5t9.5 -2.5h23q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -30 1t-38 1q-19 0 -48 -1t-32 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h41q7 0 8.5 3t1.5 15v193q0 408 -9 408q-2 0 -26 -1.5t-30 -1.5 q-7 0 -8.5 1.5t-1.5 6.5z" />
<glyph unicode="l" horiz-adv-x="257" d="M20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5q1 -160 3.5 -332t2.5 -267q0 -39 8 -39h39q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -35.5 1t-43.5 1q-12 0 -44.5 -1t-48.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h52q4 0 4 85 q0 395 -11 517q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3z" />
<glyph unicode="m" horiz-adv-x="739" d="M25 350q0 6 4 18q2 6 3.5 6.5t11.5 1.5q16 1 41.5 2t41 2t17.5 1q11 0 13 -1.5t2 -9.5v-28q0 -14 2 -15l8 6q79 55 141 55q21 0 37.5 -5.5t25.5 -13t14.5 -14.5t8.5 -13l2 -5q3 0 13 7q25 16 61.5 29t63.5 13q69 0 96.5 -38t27.5 -108q0 -46 -1 -116t-1 -89q0 -10 10 -10 h32q14 0 14 -13q0 -14 -14 -14q-8 0 -34 1t-42 1q-12 0 -40.5 -1t-44.5 -1q-9 0 -11 2.5t-2 11.5q0 13 15 13h40q9 0 9 191q0 128 -89 128q-23 0 -47 -7t-37 -14t-13 -9t1.5 -9.5t3 -25t1.5 -43.5v-170q0 -41 3 -41h34q14 0 14 -13q0 -14 -14 -14q-8 0 -32.5 1t-40.5 1 q-12 0 -34.5 -1t-38.5 -1q-9 0 -12 3t-3 11q0 13 12 13h39q7 0 7 97v41t-0.5 36.5t-0.5 16.5q0 25 -1 40t-4.5 34t-11 29t-21.5 17.5t-34 7.5q-60 0 -100 -30q-11 -9 -11 -18v-228q0 -30 2.5 -36.5t16.5 -6.5h21q14 0 14 -13q0 -14 -14 -14q-9 0 -36 1t-40 1q-14 0 -45.5 -1 t-38.5 -1q-12 0 -12 13q0 14 11 14h39q10 0 13 32q2 20 2 106v109q0 78 -4 78q-1 0 -28.5 -1.5t-30.5 -1.5q-5 0 -5 3z" />
<glyph unicode="n" horiz-adv-x="514" d="M25 350q0 4 5 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5t2 -7.5v-3v-42q0 -6 13 3l2 2l18 12t23 14.5t23 11.5t31 10t33 3q42 0 69.5 -13t41 -39.5t18 -55t4.5 -69.5q0 -33 -2.5 -100t-2.5 -70q0 -8 1.5 -10t9.5 -2h30q9 0 11.5 -2t2.5 -11q0 -6 -0.5 -8t-3 -4 t-8.5 -2q-8 0 -33.5 1t-41.5 1q-12 0 -40.5 -1t-44.5 -1q-10 0 -12 2t-2 11t2.5 11.5t10.5 2.5h37q7 0 8.5 1.5t2.5 9.5q4 48 4 176q0 130 -96 130q-33 0 -89 -28q-18 -9 -18 -23q0 -41 -0.5 -123.5t-0.5 -123.5q0 -9 0.5 -12.5t3 -5t9.5 -1.5h36q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -36.5 1t-44.5 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q6 0 7.5 2.5t2.5 11.5v4q5 98 5 194q0 68 -2 99q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -27 -2t-28 -2q-3 0 -3 4z" />
<glyph unicode="o" horiz-adv-x="446" d="M30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153t-144 -59q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="p" horiz-adv-x="512" d="M25 352q0 4 3.5 13t5.5 9q29 1 61.5 2.5t51 2.5t19.5 1q7 0 9 -2t2 -12v-24q0 -10 2 -10q1 0 19 14q50 37 108 37q83 0 127 -53t44 -136q0 -81 -57.5 -142t-151.5 -61q-31 0 -66 11l-7.5 2.5t-6.5 2.5t-5 1t-4 -1.5t-1 -4.5l3 -189q2 -67 6 -67h70q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -46.5 -1t-50.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h55q3 0 3 160v142q0 191 -7 287q-1 10 -3 12t-13 2q-3 0 -25.5 -1t-24.5 -1q-13 0 -13 5zM178 52q0 -17 30 -29.5t57 -12.5q66 0 103 55t37 122q0 72 -37 116.5 t-93 44.5q-36 0 -64 -13q-33 -17 -33 -33v-250z" />
<glyph unicode="q" horiz-adv-x="490" d="M35 180q0 87 59.5 144t148.5 57q33 0 72 -13t45 -13q9 0 20 16.5t18 16.5q16 0 16 -13q-5 -149 -5 -298v-165q0 -163 3 -163h41q12 0 12 -15q0 -6 -0.5 -8.5t-3.5 -4t-9 -1.5h-27q-24 0 -48.5 -1t-42.5 -3l-32.5 -3.5t-23 -2.5t-9.5 -1q-9 0 -12 2.5t-3 9.5q0 16 13 17 q9 1 20 2t16 1t12 1.5t9 2t5.5 3t4 4t1.5 6t1 8.5v12l2 223q0 9 -4 9q-1 0 -15 -4q-65 -19 -110 -19q-68 0 -121 48t-53 145zM106 191q0 -66 39.5 -119t104.5 -53q29 0 59 5.5t30 16.5v250q0 30 -28 46.5t-76 16.5q-62 0 -95.5 -49t-33.5 -114z" />
<glyph unicode="r" horiz-adv-x="329" d="M25 353q0 5 3 12q2 6 3.5 6.5t11.5 1.5q42 3 105 3q10 0 11 -0.5t1 -4.5v-5q0 -10 -0.5 -32t-0.5 -32q0 -18 1 -18t2.5 4t3 10.5t3.5 10.5q17 39 43 62t50 23q20 0 38.5 -16t18.5 -27q0 -9 -13 -25t-24 -16q-12 0 -31 15.5t-29 15.5q-57 0 -57 -204q0 -112 12 -112h63 q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h43q9 0 9 137q0 189 -7 189q-1 0 -31.5 -1t-32.5 -1q-3 0 -3 4z" />
<glyph unicode="s" horiz-adv-x="337" d="M35 50q0 11 11.5 24.5t18.5 13.5q3 0 5 -3.5t5.5 -10.5t8.5 -13q42 -50 93 -50q28 0 47 16.5t19 48.5t-23 51.5t-66 37.5q-2 1 -18 8t-19 8.5t-17 8t-17.5 10t-13.5 11t-13.5 14t-9 15t-7 18.5t-1.5 22q0 48 44 80.5t100 32.5q51 0 77.5 -22.5t26.5 -44.5q0 -7 -15 -13 t-25 -6q-7 0 -12.5 10t-10 22.5t-18.5 22.5t-36 10q-29 0 -51 -17t-22 -53q0 -15 5.5 -27t21 -22.5t24 -15t31.5 -15.5q33 -16 45.5 -22.5t36 -22.5t33 -33t9.5 -38q0 -53 -41.5 -85.5t-99.5 -32.5q-46 0 -86 19.5t-40 42.5z" />
<glyph unicode="t" horiz-adv-x="289" d="M35 344q0 5 3 8l91 127q3 5 9 5q10 0 10 -10q0 -1 -1.5 -20.5t-3 -42t-1.5 -29.5t2 -8.5t9 -1.5h95q9 0 10.5 -2t-1.5 -16q-4 -16 -13 -16h-99q-3 0 -3 -46v-192q0 -20 2 -31t13 -21t33 -10q23 0 52 8l28 8q4 0 4 -16q0 -3 -22.5 -14t-53.5 -22t-50 -11q-39 0 -55.5 20.5 t-16.5 48.5q2 144 2 216q0 61 -12 61h-25q-6 0 -6 7z" />
<glyph unicode="u" horiz-adv-x="510" d="M15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4 q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="v" horiz-adv-x="461" d="M25 368q0 6 0.5 8t3.5 4t9 2q8 0 29.5 -1t37.5 -1q13 0 45 1t40 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-30q-18 0 -18 -8q0 -2 17 -52.5l40.5 -115t36.5 -95.5q8 -18 12 -18q3 0 9 16q94 223 94 257q0 16 -10 16h-26q-8 0 -10.5 3t-2.5 10q0 14 14 14q3 0 24 -1t33 -1 t28 1t23 1t9 -2.5t2 -11.5q0 -13 -12 -13h-16q-7 0 -13 -10q-11 -19 -57.5 -132t-69.5 -161q-7 -14 -13 -22.5t-16 -20.5t-20 -27q-6 -7 -11 -7q-4 0 -7.5 4.5t-7 13t-6 16t-5.5 18t-4 14.5q-32 98 -109 299q-4 11 -7.5 13t-14.5 2h-9q-8 0 -10.5 3t-2.5 10z" />
<glyph unicode="w" horiz-adv-x="697" d="M25 368q0 6 0.5 8t3.5 4t9 2q8 0 29.5 -1t37.5 -1q13 0 45 1t40 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-25q-18 0 -18 -8q0 -2 15.5 -52.5t37.5 -115t35 -95.5q7 -16 9 -16q4 0 13 23q68 172 80 206q7 18 7 27q0 6 -5 16q-8 15 -34 15h-10q-8 0 -10.5 3t-2.5 10 q0 6 0.5 8t3.5 4t9 2q11 0 33 -1t40 -1q13 0 35.5 1t34.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-21q-13 0 -13 -8q0 -2 14.5 -52.5t35 -115t32.5 -95.5q10 -23 12 -23t11 22q18 43 51 143.5t33 117.5q0 11 -12 11h-31q-8 0 -10.5 3t-2.5 10q0 14 14 14q3 0 24 -1t33 -1 q13 0 31 1t20 1q7 0 9 -2.5t2 -11.5q0 -13 -12 -13h-6q-9 0 -14 -10q-9 -18 -50.5 -130t-66.5 -163q-8 -17 -21.5 -34t-24.5 -36q-3 -7 -11 -7q-11 0 -30 66q-22 80 -69 224q-6 18 -8 18q-3 0 -9 -18q-67 -177 -84 -212q-8 -16 -22 -33t-26 -38q-4 -7 -12 -7q-12 0 -31 66 q-4 15 -21 63.5l-42 119.5l-41 116q-4 11 -7.5 13t-14.5 2h-11q-8 0 -10.5 3t-2.5 10z" />
<glyph unicode="x" horiz-adv-x="468" d="M25 12q0 13 12 13q14 0 21 4.5t26 24.5l120 123q8 7 8 9.5t-5 9.5l-107 144q-8 11 -11.5 13t-14.5 2h-16q-8 0 -10.5 3t-2.5 10q0 6 0.5 8t3.5 4t9 2q8 0 35.5 -1t43.5 -1q13 0 31.5 1t26.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13q-20 0 -20 -6q0 -4 10 -18l63 -92 q9 -11 9.5 -11t11.5 11q64 71 85 98q6 10 6 11q0 7 -26 7h-13q-8 0 -10.5 3t-2.5 10q0 14 14 14q9 0 26.5 -1t27.5 -1q12 0 29 1t24 1q13 0 13 -14q0 -13 -12 -13q-7 0 -13.5 -3t-9.5 -5.5t-10.5 -10.5t-10.5 -10q-13 -12 -105 -104q-10 -10 -10 -12t10 -15 q78 -109 116 -157q13 -13 18 -13h12q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -30.5 1t-38.5 1q-13 0 -36.5 -1t-31.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h11q20 0 20 8q0 1 -21 33q-24 38 -65 93q-7 9 -9.5 9.5t-10.5 -8.5q-89 -105 -94 -113 q-10 -14 -10 -16q0 -6 18 -6h28q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -27.5 1t-35.5 1q-14 0 -32 -1t-24 -1q-8 0 -10.5 3t-2.5 11z" />
<glyph unicode="y" horiz-adv-x="467" d="M25 368q0 6 0.5 8t3.5 4t9 2q8 0 33 -1t41 -1q13 0 46.5 1t41.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-19q-26 0 -26 -10q0 -12 31 -97.5t58 -151.5q16 -40 19 -40t17 40q82 231 82 252q0 7 -31 7h-23q-8 0 -10.5 3t-2.5 10q0 14 14 14q9 0 31.5 -1t32.5 -1q12 0 30 1 t25 1q13 0 13 -14q0 -13 -12 -13h-14q-10 0 -13 -10q-38 -105 -133 -342q-1 -3 -7 -19.5t-15.5 -46t-17.5 -51.5q-2 -4 -5.5 -15.5t-5 -14.5t-4.5 -11.5t-5 -12t-5.5 -11t-7 -12.5t-8 -12.5t-10.5 -14.5t-13 -16q-17 -22 -26 -27q-6 -4 -15 -8q-54 -26 -62 -26q-18 0 -18 20 q0 15 19 42q7 11 28 18l22.5 7.5t29.5 11t22 13.5t16 19q44 109 44 121q0 8 -28 77l-72.5 174l-55.5 132q-4 11 -7 13t-14 2h-11q-8 0 -10.5 3t-2.5 10z" />
<glyph unicode="z" horiz-adv-x="413" d="M35 10q0 7 10 20l214 315q2 3 5 7t5 7t2 4q0 3 -14 3l-155 -5q-17 -1 -20.5 -3.5t-6.5 -15.5l-10 -40q-3 -12 -13 -12q-16 0 -16 6q0 2 9 80q1 9 3 11t11 2h281q23 0 23 -9q0 -1 -9 -15l-210 -310q-9 -13 -9 -18q0 -10 15 -10l174 4q10 0 12 1.5t4 11.5l7 58q1 9 3 10.5 t14 1.5q9 0 9 -6q0 -20 -5 -93q-1 -11 -3 -13t-13 -2h-295q-22 0 -22 10z" />
<glyph unicode="{" horiz-adv-x="307" d="M40 274q0 6 5.5 9t14.5 4t18.5 7.5t18.5 18t14.5 38t5.5 65.5v80q0 36 0.5 53.5t3 42.5t8 36.5t15 26t24.5 20t36.5 10t50.5 4.5q8 0 10 -2t2 -11t-2.5 -11t-11.5 -2q-43 0 -63.5 -19t-20.5 -73v-149q0 -72 -9.5 -100t-48.5 -41q-15 -6 -15 -7t15 -7q39 -13 48.5 -41 t9.5 -100v-149q0 -54 20.5 -73t63.5 -19q6 0 8.5 -0.5t4 -3.5t1.5 -9q0 -9 -2 -11t-10 -2q-29 0 -50.5 4.5t-36.5 10t-24.5 20t-15 26t-8 36.5t-3 42.5t-0.5 53.5v80q0 39 -5.5 65.5t-14.5 38t-18.5 18t-18.5 7.5t-14.5 4t-5.5 9z" />
<glyph unicode="|" horiz-adv-x="247" d="M100 -187v933q0 10 4 13t14 3h7q15 0 18.5 -2.5t3.5 -14.5v-932q0 -9 -0.5 -12.5t-3 -6.5t-8.5 -3h-21q-10 0 -12 3t-2 19z" />
<glyph unicode="}" horiz-adv-x="307" d="M40 -128q0 9 3 11t11 2q43 0 63.5 19t20.5 73v149q0 72 9.5 100t48.5 41q15 6 15 7t-15 7q-39 13 -48.5 41t-9.5 100v149q0 54 -20.5 73t-63.5 19q-6 0 -8.5 0.5t-4 3.5t-1.5 9q0 9 2 11t10 2q29 0 50.5 -4.5t36.5 -10t24.5 -20t15 -26t8 -36.5t3 -42.5t0.5 -53.5v-80 q0 -39 5.5 -65.5t14.5 -38t18.5 -18t18.5 -7.5t14.5 -4t5.5 -9t-5.5 -9t-14.5 -4t-18.5 -7.5t-18.5 -18t-14.5 -38t-5.5 -65.5v-80q0 -36 -0.5 -53.5t-3 -42.5t-8 -36.5t-15 -26t-24.5 -20t-36.5 -10t-50.5 -4.5q-8 0 -10 2t-2 11z" />
<glyph unicode="~" horiz-adv-x="793" d="M45 117q0 5 4 17q6 23 17 46t31.5 51.5t54.5 46.5t76 18q48 0 101.5 -22.5t93 -49.5t88 -49.5t86.5 -22.5q26 0 48.5 16t37 41.5t22 43t12.5 34.5q2 8 4.5 8.5t10.5 -1.5q11 -3 11 -7q0 -3 -1 -6q-7 -28 -19.5 -54.5t-33 -54.5t-54 -45t-73.5 -17q-50 0 -104.5 21.5 t-95 47.5t-89.5 47.5t-89 21.5q-27 0 -48 -14t-34 -36.5t-19.5 -40t-10.5 -35.5q-4 -14 -7 -14q-2 0 -10 2q-10 2 -10 7z" />
<glyph unicode="&#xa1;" horiz-adv-x="261" d="M80 615q0 21 16 39.5t26 18.5q20 0 39.5 -17t19.5 -29q0 -16 -16 -37.5t-28 -21.5q-16 0 -36.5 15t-20.5 32zM92 13q0 3 4 63t10.5 175.5t11.5 231.5q0 10 14 10q13 0 13 -10q3 -95 7.5 -202t8 -175t3.5 -89q0 -25 -41 -25q-18 0 -24.5 4t-6.5 17z" />
<glyph unicode="&#xa2;" horiz-adv-x="407" d="M30 177q0 96 54 153.5t128 66.5q7 1 8.5 3t2.5 8v3q1 15 2.5 32.5t2.5 28t1 15.5q0 6 2 6q20 0 20 -3l-7 -79v-6q0 -5 7 -6q3 -1 5 -1q45 -7 79 -34.5t34 -60.5q0 -13 -10 -20q-17 -13 -30 -13t-17 11q-2 7 -7 22.5t-8 23t-9.5 18t-15 16.5t-20.5 9q-2 1 -5 1 q-5 0 -7 -11l-26 -312q0 -10 6 -11q14 -3 29 -3q30 0 58.5 7.5t44.5 15t18 7.5q7 0 7 -8q0 -2 -6.5 -9t-20.5 -17t-32 -18.5t-44.5 -15t-54.5 -6.5h-4q-7 0 -8 -8q-10 -112 -11 -112q-18 0 -18 2q0 1 1 14.5t3.5 41.5t4.5 54q0 5 -1 7.5t-1.5 2.5t-5.5 1q-2 1 -4 1 q-68 12 -106.5 60.5t-38.5 122.5zM95 202q0 -49 22.5 -91.5t64.5 -62.5q6 -3 8 -3q3 0 3 7l25 308v6q0 5 -3 5q-4 0 -8 -1q-51 -11 -81.5 -60.5t-30.5 -107.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="510" d="M40 -56q0 10 9 19t30.5 22.5t28.5 18.5q10 7 11.5 9t2.5 10q4 70 4 105q0 50 -3 104q-1 12 -3 14t-13 2h-51q-6 0 -7.5 2t-1.5 11q0 11 8 11h50q11 0 13.5 1.5t2.5 7.5q0 1 -1.5 33.5t-3.5 84.5t-2 101q0 73 49.5 119t117.5 46q48 0 81.5 -21t33.5 -57q0 -17 -11.5 -29 t-28.5 -12q-16 0 -16 8q0 34 -15 61t-51 27q-31 0 -50.5 -14t-28 -43t-11 -55.5t-2.5 -69.5v-170q0 -13 3 -15.5t15 -2.5h121q6 0 7.5 -2t1.5 -10t-1.5 -10t-7.5 -2h-121q-12 0 -14.5 -2t-3.5 -14q-5 -105 -35 -190q-4 -9 -4 -12l1 1q2 1 4.5 2.5t5.5 2.5q36 17 76 17 q27 0 87.5 -8.5t81.5 -8.5q52 0 52 37q0 11 -21.5 29t-21.5 22q0 7 10.5 19.5t21.5 12.5q14 0 29.5 -16.5t15.5 -38.5q0 -43 -35 -76t-77 -33q-32 0 -130 7t-103 7q-7 0 -10.5 -5t-7.5 -15q-1 -3 -1 -4t-3 -8.5t-3.5 -10t-3.5 -9t-4.5 -9l-5 -8t-6.5 -7.5t-7 -5t-9 -4 t-11 -1q-28 0 -28 24z" />
<glyph unicode="&#xa4;" horiz-adv-x="494" d="M25 8q0 10 17 27l61 62q-35 48 -35 107q0 60 34 105l-60 62q-17 17 -17 27t7.5 17t16.5 7q12 0 28 -16l62 -62q46 35 105 35t106 -35l62 62q16 16 27 16q10 0 17.5 -7.5t7.5 -16.5q0 -10 -17 -27l-62 -63q37 -50 37 -106q0 -55 -37 -104l62 -63q17 -17 17 -27t-8 -17.5 t-17 -7.5q-10 0 -27 17l-62 62q-47 -36 -106 -36t-105 35l-62 -61q-16 -16 -28 -16q-10 0 -17 7.5t-7 16.5zM119 202q0 -53 37 -89.5t88 -36.5t88.5 37.5t37.5 89.5t-37.5 90.5t-88.5 38.5q-52 0 -88.5 -38.5t-36.5 -91.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="597" d="M10 654q0 7 2 10.5t5 4t11 0.5q6 0 46 -1.5t57 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-59q-11 0 -12 -2.5t4 -12.5q9 -23 37 -76.5l62.5 -117t42.5 -79.5q9 -17 11 -17q3 0 11 14l27 52l38 72.5l35.5 69.5t29 62t10.5 32q0 3 -2 3h-56 q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 43.5 1.5t32.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -27.5 -44.5l-66 -116l-63.5 -109.5h150q3 0 3 -12t-3 -12h-164l-13 -21q-3 -5 -3 -11v-66h180 q3 0 3 -12t-3 -12h-180q2 -196 10 -196h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-58.5 -1.5t-53.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h52q10 0 10 196h-176q-2 0 -2.5 12t2.5 12h176v24q0 11 -7 23l-28 51h-141q-2 0 -2.5 12 t2.5 12h128q-150 270 -158 270h-29q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xa6;" horiz-adv-x="247" d="M100 -187v376q0 14 11 14h25q11 0 11 -14v-376q0 -9 -0.5 -12.5t-3 -6.5t-8.5 -3h-21q-10 0 -12 3t-2 19zM100 379v367q0 10 4 13t14 3h7q15 0 18.5 -2.5t3.5 -14.5v-366q0 -12 -2.5 -15.5t-11.5 -3.5h-18q-10 0 -12.5 3t-2.5 16z" />
<glyph unicode="&#xa7;" horiz-adv-x="381" d="M40 310q0 67 69 118q7 5 -2 18q-44 68 -44 110q0 52 34 86.5t91 34.5q41 0 77.5 -11t36.5 -34q0 -27 -37 -27q-22 0 -54.5 15.5t-54.5 15.5q-58 0 -58 -42q0 -28 38 -84t83.5 -111.5t83.5 -130t38 -136.5q0 -43 -66 -94q-10 -9 -10 -12q0 -2 7 -14q42 -76 42 -114 q0 -56 -39 -90t-107 -34q-103 0 -103 44q0 10 8.5 16.5t19.5 6.5q7 0 43 -13q34 -12 72 -12q32 0 52 13t20 39q0 25 -37.5 80t-82.5 111t-82.5 127t-37.5 124zM78 357q0 -33 37 -102.5t69 -117t61 -85.5q7 -10 10 -10t14 10q33 31 33 50q0 21 -11 51t-25 56.5t-37.5 63 t-37.5 56l-36.5 50.5t-23.5 32t-3 4t-2.5 3.5t-2.5 0.5t-4 -1.5l-6 -4.5q-35 -27 -35 -56z" />
<glyph unicode="&#xa8;" horiz-adv-x="400" d="M69 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM229 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#xa9;" horiz-adv-x="843" d="M54 189q0 156 105.5 264t260.5 108t260.5 -107.5t105.5 -264.5q0 -156 -105.5 -264t-260.5 -108t-260.5 108t-105.5 264zM88 189q0 -142 96 -241t236 -99t236 99t96 241t-96 241t-236 99t-236 -99t-96 -241zM196 201q0 99 65 159.5t164 60.5q14 0 27 -1.5t23.5 -4 t21 -6.5t18 -7.5t15.5 -8t11.5 -7.5t9 -7t6.5 -4q10 -2 11 2v17q0 9 15 9q8 0 10 -1.5t2 -7.5q0 -3 -1 -53.5t-1 -69.5q0 -10 -10 -10q-18 0 -18 7q0 1 1.5 27t1.5 29q0 6 -18 23.5t-55 35.5t-75 18q-69 0 -114 -57.5t-45 -144.5q0 -81 52 -138.5t126 -57.5q27 0 51 5 t39.5 12.5t26.5 15t17 12.5t7 5t6.5 -9t5.5 -10q0 -5 -18 -18.5t-60 -28t-93 -14.5q-95 0 -160 59t-65 169z" />
<glyph unicode="&#xaa;" horiz-adv-x="352" d="M35 407q0 49 55 78.5t132 42.5q6 1 6 12q0 27 -1.5 41.5t-7.5 32.5t-21 26.5t-39 8.5q-13 0 -24 -4q-16 -6 -20.5 -16.5t-5.5 -35.5q0 -13 -6 -17q-33 -21 -47 -21q-8 0 -8 12q0 46 41.5 75.5t87.5 29.5q60 0 85 -26.5t25 -77.5q0 -23 -2.5 -90t-2.5 -73q0 -24 18 -24 q2 0 16 9.5t15 9.5q2 0 6 -4.5t4 -8.5t-54 -43q-13 -9 -22 -9q-13 0 -21 12.5t-10 24.5l-3 13q-1 0 -3.5 -2t-6.5 -4.5l-7 -4.5q-56 -36 -96 -36q-39 0 -61 18.5t-22 50.5zM98 431q0 -21 14.5 -37.5t38.5 -16.5q16 0 35 4.5t30.5 10t11.5 7.5v104q0 9 -4 9q-11 0 -50 -12 q-76 -24 -76 -69z" />
<glyph unicode="&#xab;" horiz-adv-x="408" d="M50 193q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -4 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55zM200 193q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -4 -31 -58t-31 -61t31 -61t31 -58 q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph unicode="&#xac;" horiz-adv-x="527" d="M31 215q0 17 19 17h427q13 0 16.5 -3t3.5 -16v-158q0 -15 -16 -15q-12 0 -16.5 0.5t-8.5 5t-4 14.5v111q0 17 -26 17h-376q-13 0 -16 5.5t-3 21.5z" />
<glyph unicode="&#xad;" horiz-adv-x="258" d="M25 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="&#xae;" horiz-adv-x="536" d="M25 470q0 104 70 175.5t173 71.5t173 -71.5t70 -175.5t-70 -175.5t-173 -71.5t-173 71.5t-70 175.5zM50 470q0 -94 63 -159t155 -65t155 65t63 159t-63 159t-155 65t-155 -65t-63 -159zM142 628q0 9 11 9q3 0 23.5 -0.5t27.5 -0.5t34.5 1.5t32.5 1.5q101 0 101 -80 q0 -49 -64 -78q77 -23 80 -107q1 -28 4 -28h20q8 0 8 -12q0 -6 -10 -6l-60 1q-7 0 -7 7v27q0 31 -3 50t-18 36.5t-43 20.5q-15 2 -52 2q-5 0 -5 -3q0 -99 4 -123h27q7 0 7 -7q0 -11 -7 -11q-5 0 -24 0.5t-26 0.5t-25 -0.5t-19 -0.5q-9 0 -9 11q0 7 11 7h19q2 16 2 58v60 q0 141 -5 155l-24 -1q-11 0 -11 10zM222 489q0 -2 5 -2q12 0 33.5 -0.5t29.5 -0.5q39 19 39 67q0 32 -24.5 51t-57.5 19q-4 0 -11.5 -0.5t-11.5 -0.5q-2 -8 -2 -23v-110z" />
<glyph unicode="&#xaf;" horiz-adv-x="400" d="M98 518v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8z" />
<glyph unicode="&#xb0;" horiz-adv-x="256" d="M40 535q0 36 26 62t62 26t62 -26t26 -62t-26 -62t-62 -26t-62 26t-26 62zM71 535q0 -24 16.5 -40.5t40.5 -16.5t40.5 16.5t16.5 40.5t-16.5 40.5t-40.5 16.5t-40.5 -16.5t-16.5 -40.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="527" d="M31 90q0 11 0.5 15.5t4.5 8t13 3.5h429q11 0 14.5 -4t3.5 -16q0 -13 -3.5 -18.5t-17.5 -5.5h-427q-9 0 -13 3t-4 14zM31 324q0 22 18 22h181q11 0 11 10v9v130q0 15 16 15q18 0 23 -3t5 -14v-128v-8q0 -11 12 -11h183q16 0 16 -15q0 -12 -1 -17t-5.5 -9t-14.5 -4h-178 q-12 0 -12 -17v-132q0 -14 -16 -14q-17 0 -22.5 2.5t-5.5 11.5v132q0 10 -2.5 13.5t-13.5 3.5h-177q-12 0 -14.5 5t-2.5 18z" />
<glyph unicode="&#xb2;" horiz-adv-x="360" d="M40 671q0 7 16.5 28t49 41.5t67.5 20.5q57 0 86.5 -37.5t29.5 -79.5q0 -102 -160 -219q-18 -14 -24 -25h185q3 10 7 52q0 6 10 5q11 0 11 -5q0 -2 -2.5 -20l-6 -41.5t-4.5 -34.5q-1 -6 -12 -6h-230q-13 0 -13 9q0 5 20 36.5t24 34.5q1 1 16.5 14t21.5 18.5l22 21t24.5 26 t20.5 27.5t18.5 31t11.5 32.5t5 35.5q0 33 -19.5 58t-54.5 25q-29 0 -53.5 -15.5t-38.5 -30.5t-15 -15q-4 0 -8.5 4.5t-4.5 8.5z" />
<glyph unicode="&#xb3;" horiz-adv-x="360" d="M65 368q0 29 32 29q11 0 29 -7q5 -2 24.5 -13t29.5 -11q32 0 56 26t24 64q0 79 -74 79q-12 0 -41.5 -2t-31.5 -2q-13 0 -13 21q0 10 17 13q63 13 87.5 33t24.5 64q0 32 -17.5 49t-45.5 17q-23 0 -42 -8t-29 -16.5t-13 -8.5q-4 0 -8.5 4.5t-4.5 8.5q0 6 13.5 18t39.5 23.5 t53 11.5q48 0 79.5 -25.5t31.5 -63.5q0 -22 -9 -39t-26.5 -29.5t-32.5 -20t-38 -16.5q58 0 96.5 -25.5t38.5 -71.5q0 -55 -47 -91.5t-103 -36.5q-34 0 -67 6.5t-33 19.5z" />
<glyph unicode="&#xb4;" horiz-adv-x="400" d="M185 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2z" />
<glyph unicode="&#xb5;" horiz-adv-x="509" d="M25 -136q0 41 8.5 85t26 106t25.5 100q23 101 36 150.5t18 60t11 10.5q39 0 39 -17q0 -7 -9.5 -40.5t-22.5 -87.5t-19 -103q-3 -36 -3 -43q0 -47 29 -47q32 0 74 53.5t73 114t56 123.5q19 48 23 48q13 0 26.5 -4.5t13.5 -10.5q0 -2 -25 -133.5t-25 -158.5 q0 -11 7.5 -18.5t17.5 -7.5q16 0 28 17t20 33.5t13 16.5q8 0 8 -13q0 -32 -37 -73.5t-83 -41.5q-34 0 -34 64q0 24 8 79.5t8 57.5q0 8 -4 8l-8 -12q-7 -13 -21.5 -36l-27.5 -42q-1 -1 -13 -19.5t-16 -23.5l-16 -20.5t-20.5 -22l-21 -15.5t-25.5 -12.5t-27 -3.5 q-17 0 -28.5 17.5t-16 34.5t-5.5 17q-4 0 -12.5 -54t-8.5 -79q0 -19 12 -47.5t12 -29.5q0 -3 -2 -9t-9.5 -12t-18.5 -6q-14 0 -24 12t-10 35z" />
<glyph unicode="&#xb6;" horiz-adv-x="492" d="M40 417q0 48 16 87.5t41 64.5t56.5 42.5t61.5 25t58 7.5q8 0 10 -3t2 -11v-468q0 -8 -5 -8q-23 0 -52 8t-62.5 28.5t-61 49t-46 75t-18.5 102.5zM280 -205q0 8 10 8h58q7 0 9 1.5t2 6.5v831q0 8 2.5 10t8.5 2h70q8 0 10 -2t2 -9v-14q0 -6 -2 -7.5t-10 -1.5h-46 q-5 0 -6.5 -1.5t-1.5 -8.5v-832q0 -6 -2 -7.5t-12 -1.5h-82q-10 0 -10 8v18z" />
<glyph unicode="&#xb7;" horiz-adv-x="147" d="M25 333q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#xb8;" horiz-adv-x="400" d="M117 -200q0 11 8 11l9 -3q8 -4 22 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5t41 107h17l-24 -65q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5 t-9.5 9z" />
<glyph unicode="&#xb9;" horiz-adv-x="360" d="M95 364q0 7 2.5 8.5t11.5 1.5h60q1 9 1 50v75q0 181 -2 217q-1 8 -5 8q-1 0 -29.5 -1.5t-30.5 -1.5q-8 0 -8 6v12q0 6 11 6q28 1 49.5 3l33 3t18.5 2.5t10 2t4 0.5q7 0 7 -14q0 -65 -0.5 -176.5t-0.5 -169.5q0 -21 1 -22h44q7 0 7 -10q0 -16 -8 -16q-1 0 -23.5 1t-47.5 1 q-27 0 -58 -1t-36 -1q-7 0 -9 3t-2 13z" />
<glyph unicode="&#xba;" horiz-adv-x="384" d="M30 497q0 73 48 122.5t124 49.5q67 0 109.5 -46.5t42.5 -114.5q0 -76 -44 -123.5t-121 -47.5q-67 0 -113 47t-46 113zM94 486q0 -49 25.5 -87.5t69.5 -38.5q99 0 99 154q0 52 -24.5 92t-71.5 40q-98 0 -98 -160z" />
<glyph unicode="&#xbb;" horiz-adv-x="408" d="M60 74q0 4 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5zM210 74q0 4 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55 l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph unicode="&#xbc;" horiz-adv-x="774" d="M449 138q0 20 11 39q44 77 149 190q7 8 27 22q6 5 13 12.5t10.5 10t7.5 2.5q13 0 13 -22v-212q0 -5 1 -6t6 -1h51q7 0 7 -10v-22q0 -10 -12 -10h-46q-6 0 -6 -6v-123q0 -8 -6 -8l-43 -4q-6 0 -6 8l3 125q0 8 -10 8h-153q-17 0 -17 7zM487 173h131q7 0 9 1.5t2 6.5v173 q-19 -19 -73 -86t-69 -95zM200 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5t-9.5 -0.5q-18 0 -18 5zM95 264q0 7 2.5 8.5t11.5 1.5h60q1 9 1 50v75q0 181 -2 217q-1 8 -5 8q-1 0 -29.5 -1.5t-30.5 -1.5q-8 0 -8 6v12 q0 6 11 6q28 1 49.5 3l33 3t18.5 2.5t10 2t4 0.5q7 0 7 -14q0 -65 -0.5 -176.5t-0.5 -169.5q0 -21 1 -22h44q7 0 7 -10q0 -16 -8 -16q-1 0 -23.5 1t-47.5 1q-27 0 -58 -1t-36 -1q-7 0 -9 3t-2 13z" />
<glyph unicode="&#xbd;" horiz-adv-x="844" d="M524 321q0 7 16.5 28t49 41.5t67.5 20.5q57 0 86.5 -37.5t29.5 -79.5q0 -102 -160 -219q-18 -14 -24 -25h185q3 10 7 52q0 6 10 5q11 0 11 -5q0 -2 -2.5 -20l-6 -41.5t-4.5 -34.5q-1 -6 -12 -6h-230q-13 0 -13 9q0 5 20 36.5t24 34.5q1 1 16.5 14t21.5 18.5l22 21 t24.5 26t20.5 27.5t18.5 31t11.5 32.5t5 35.5q0 33 -19.5 58t-54.5 25q-29 0 -53.5 -15.5t-38.5 -30.5t-15 -15q-4 0 -8.5 4.5t-4.5 8.5zM200 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5t-9.5 -0.5q-18 0 -18 5zM95 264 q0 7 2.5 8.5t11.5 1.5h60q1 9 1 50v75q0 181 -2 217q-1 8 -5 8q-1 0 -29.5 -1.5t-30.5 -1.5q-8 0 -8 6v12q0 6 11 6q28 1 49.5 3l33 3t18.5 2.5t10 2t4 0.5q7 0 7 -14q0 -65 -0.5 -176.5t-0.5 -169.5q0 -21 1 -22h44q7 0 7 -10q0 -16 -8 -16q-1 0 -23.5 1t-47.5 1 q-27 0 -58 -1t-36 -1q-7 0 -9 3t-2 13z" />
<glyph unicode="&#xbe;" horiz-adv-x="774" d="M449 138q0 20 11 39q44 77 149 190q7 8 27 22q6 5 13 12.5t10.5 10t7.5 2.5q13 0 13 -22v-212q0 -5 1 -6t6 -1h51q7 0 7 -10v-22q0 -10 -12 -10h-46q-6 0 -6 -6v-123q0 -8 -6 -8l-43 -4q-6 0 -6 8l3 125q0 8 -10 8h-153q-17 0 -17 7zM487 173h131q7 0 9 1.5t2 6.5v173 q-19 -19 -73 -86t-69 -95zM200 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5t-9.5 -0.5q-18 0 -18 5zM65 268q0 29 32 29q11 0 29 -7q5 -2 24.5 -13t29.5 -11q32 0 56 26t24 64q0 79 -74 79q-12 0 -41.5 -2t-31.5 -2 q-13 0 -13 21q0 10 17 13q63 13 87.5 33t24.5 64q0 32 -17.5 49t-45.5 17q-23 0 -42 -8t-29 -16.5t-13 -8.5q-4 0 -8.5 4.5t-4.5 8.5q0 6 13.5 18t39.5 23.5t53 11.5q48 0 79.5 -25.5t31.5 -63.5q0 -22 -9 -39t-26.5 -29.5t-32.5 -20t-38 -16.5q58 0 96.5 -25.5t38.5 -71.5 q0 -55 -47 -91.5t-103 -36.5q-34 0 -67 6.5t-33 19.5z" />
<glyph unicode="&#xbf;" horiz-adv-x="364" d="M30 240q0 79 29 126t106 48q15 0 20 4t6 13q1 16 4 45t4 45q0 9 12 9q10 0 13 -4.5t3 -17.5q0 -119 -2 -147q-1 -12 -7 -15t-21 -3h-57q-87 0 -87 -88q0 -72 57.5 -122t170.5 -64q2 0 5.5 -0.5t5 -1t4 -1t3.5 -1.5l2.5 -2.5t2 -3.5t0.5 -5v-45q0 -17 -9 -17q-6 0 -10 12 t-9 13q-24 4 -37.5 6.5t-42.5 10.5t-48 17.5t-43.5 27t-39 39t-25 53t-10.5 69.5zM167 609q0 21 16 39.5t26 18.5q20 0 39.5 -17t19.5 -29q0 -16 -16 -37.5t-28 -21.5q-16 0 -36.5 15t-20.5 32z" />
<glyph unicode="&#xc0;" horiz-adv-x="698" d="M262 822q0 25 30 25q18 0 34 -25l53 -85q2 -4 2 -6t-4 -2h-21l-8 6l-72 60q-14 11 -14 27zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5 l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5 t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#xc1;" horiz-adv-x="698" d="M361 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5 l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5 t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#xc2;" horiz-adv-x="698" d="M260 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5l106 246q4 9 17 25.5t19 30.5q12 27 19 27 t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1 h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19 t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#xc3;" horiz-adv-x="698" d="M266 748q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5 l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54 q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179 q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#xc4;" horiz-adv-x="698" d="M240 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM400 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92 l35.5 84.5l19.5 46.5l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5 q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5z M231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#xc5;" horiz-adv-x="698" d="M300 785q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM328 785q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5 l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54 q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179 q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#xc6;" horiz-adv-x="973" d="M20 15q0 9 3 10.5t15 1.5h28q4 0 13 11.5t24.5 36l30.5 50.5l40 67.5l45 73.5l221 360q5 8 4 9t-13 1h-45q-7 0 -9.5 3t-2.5 12q0 14 12 14l18 -1q18 0 53 -1t78 -1q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87 q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2 t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5q0 9 2.5 10.5t14.5 1.5h61 q7 0 7 75v158q0 7 -4.5 10.5t-9.5 4t-16 0.5h-201q-4 0 -64 -105t-75 -137l-2 -6h7h64q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -41 1.5t-46 1.5t-38 -1.5t-33 -1.5q-10 0 -12 2.5t-2 15.5zM279 306q0 -7 16 -7h169q20 0 24.5 3.5t4.5 16.5v92q0 225 -14 225h-1 q-5 0 -11 -10l-182 -306q-6 -12 -6 -14z" />
<glyph unicode="&#xc7;" horiz-adv-x="731" d="M45 335q0 154 101.5 249.5t255.5 95.5q19 0 37.5 -2t34.5 -5.5t29.5 -8t27 -10.5l23 -10.5t19.5 -11l15 -10l12.5 -8.5t8.5 -6q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v27q0 9 2 11t13 2q12 0 16 -2t4 -11q0 -5 -2 -84t-2 -109q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5 q0 1 2 43t2 47t-11 18t-32.5 30t-48.5 33t-64.5 27t-74.5 11q-108 0 -178 -90t-70 -227q0 -127 81 -218.5t196 -91.5q51 0 99 15t71.5 30.5t24.5 22.5l13 113q1 10 5.5 13t16.5 1q12 -1 12 -13q0 -13 -16 -133q-1 -10 -36 -30.5t-96 -39t-119 -18.5l-18 -49q-2 -9 0 -9l5 2 l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l9 -3q8 -4 22 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5q0 2 35 91q-68 2 -128 24.5t-107 64.5 t-74.5 109.5t-27.5 152.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="605" d="M207 822q0 25 30 25q18 0 34 -25l53 -85q2 -4 2 -6t-4 -2h-21l-8 6l-72 60q-14 11 -14 27zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2 q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8 q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11 q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#xc9;" horiz-adv-x="605" d="M306 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1 q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9 q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61 q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#xca;" horiz-adv-x="605" d="M205 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43 q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142 q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87 q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#xcb;" horiz-adv-x="605" d="M185 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM345 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72 t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5 t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1 t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#xcc;" horiz-adv-x="333" d="M59 822q0 25 30 25q18 0 34 -25l53 -85q2 -4 2 -6t-4 -2h-21l-8 6l-72 60q-14 11 -14 27zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xcd;" horiz-adv-x="333" d="M158 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xce;" horiz-adv-x="333" d="M57 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5 q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xcf;" horiz-adv-x="333" d="M37 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM197 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62 q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5 t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xd0;" horiz-adv-x="758" d="M35 10q0 11 3 13t14 2h66q5 0 11 298q0 8 -7 8h-79q-2 0 -2.5 12t2.5 12h76q10 0 10 10q2 148 2 198q0 78 -2 78l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v7.5t1.5 5t4 3t7.5 0.5q1 0 11.5 -0.5t26.5 -0.5h31q41 0 114.5 6t89.5 6q166 0 273.5 -93t107.5 -250 q0 -105 -49.5 -183.5t-126.5 -116.5t-169 -39q-32 0 -97 2t-98 2q-16 0 -70 -2t-57 -2q-8 0 -9.5 2t-1.5 12zM213 86q0 -59 2 -60q6 -4 57 -4q69 0 124.5 14t90 34.5t60 53t37.5 59t19 63.5t8 56t1 46q0 73 -35.5 141.5t-106.5 115.5t-159 47q-67 0 -90 -6q-7 -2 -7 -146 q0 -22 -0.5 -67t-0.5 -68q0 -7 1.5 -8.5t9.5 -1.5h208q3 0 3 -12t-3 -12h-212q-7 0 -7 -8v-237z" />
<glyph unicode="&#xd1;" horiz-adv-x="814" d="M316 748q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM40 15q0 9 3 10.5t15 1.5h44q3 0 5 2.5t3 7.5t1.5 11t1 15.5t0.5 18.5t0.5 22.5 t0.5 24.5l8 510h-68q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 33.5 1.5t21.5 1.5q10 0 20 -13l406 -499q16 -20 18 -20q4 0 4 28v42q0 49 -1 187t-1 189q0 56 -1 56h-94q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 50.5 -1.5t55.5 -1.5t43.5 1.5 t38.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-47q-4 0 -4 -59q0 -68 -3.5 -209.5l-6.5 -253t-3 -113.5q0 -22 -10 -22q-4 0 -18 16l-492 598q-14 18 -16 18q-3 0 -3 -20q-1 -25 -1 -122q0 -54 -0.5 -175.5t-0.5 -167.5q0 -102 5 -102h86q8 0 9.5 -2t1.5 -11 q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5t-43.5 -1.5t-38.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="752" d="M266 822q0 25 30 25q18 0 34 -25l53 -85q2 -4 2 -6t-4 -2h-21l-8 6l-72 60q-14 11 -14 27zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242t-242.5 -93q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94q79 0 136 48 t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#xd3;" horiz-adv-x="752" d="M365 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242t-242.5 -93q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94 q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#xd4;" horiz-adv-x="752" d="M264 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242t-242.5 -93q-83 0 -155.5 36.5t-121 113.5 t-48.5 179zM139 345q0 -140 63 -234t169 -94q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#xd5;" horiz-adv-x="752" d="M270 748q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242 t-242.5 -93q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#xd6;" horiz-adv-x="752" d="M244 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM404 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250 t-94.5 -242t-242.5 -93q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#xd7;" horiz-adv-x="527" d="M88 358q0 5 10.5 15.5t17.5 10.5q6 0 14 -8l116 -115q12 -12 19 -12q6 0 11 5l125 125q6 6 12 6q5 0 15 -10t10 -17q0 -5 -9 -14l-121 -121q-8 -8 -8 -13q0 -4 8 -12l124 -124q6 -6 6 -12t-10.5 -16.5t-15.5 -10.5q-6 0 -13 7l-123 124q-7 7 -13 7q-5 0 -16 -11 l-120 -120q-7 -7 -12 -7t-15.5 10t-10.5 16q0 5 8 13l120 121q9 9 9 15t-7 13l-124 124q-7 7 -7 11z" />
<glyph unicode="&#xd8;" horiz-adv-x="752" d="M45 318q0 158 99 257.5t241 99.5q78 0 142 -31q6 -3 8 -2.5t5 6.5l42 74q1 1 3 1q5 0 12 -5.5t6 -7.5l-44 -75q-4 -7 2 -11q69 -46 107.5 -125.5t38.5 -174.5q0 -149 -94.5 -242t-242.5 -93q-82 0 -152 36q-8 4 -12 -2l-44 -76q-2 -2 -3 -2q-4 0 -8.5 2.5t-8 5.5t-2.5 4 l46 79q3 5 -4 10q-63 43 -100 112t-37 160zM139 345q0 -154 73 -247l5 -5q1 0 4 5l286 494q3 4 3 6t-6 7q-54 42 -129 42q-103 0 -169.5 -91t-66.5 -211zM238 79q-3 -6 2 -11q57 -51 131 -51q79 0 136 48t82.5 118t25.5 150q0 153 -80 243q-5 5 -7 3q-1 -1 -2 -3z" />
<glyph unicode="&#xd9;" horiz-adv-x="755" d="M275 822q0 25 30 25q18 0 34 -25l53 -85q2 -4 2 -6t-4 -2h-21l-8 6l-72 60q-14 11 -14 27zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5 t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5 q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xda;" horiz-adv-x="755" d="M374 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5 q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69 t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xdb;" horiz-adv-x="755" d="M273 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5 t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5 h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37 q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xdc;" horiz-adv-x="755" d="M253 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM413 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5 q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5 t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34 t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xdd;" horiz-adv-x="597" d="M318 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM10 654q0 7 2 10.5t5 4t11 0.5q6 0 46 -1.5t57 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-59q-11 0 -12 -2.5t4 -12.5q9 -23 37 -76.5 l62.5 -117t42.5 -79.5q9 -17 11 -17q3 0 11 14l27 52l38 72.5l35.5 69.5t29 62t10.5 32q0 3 -2 3h-56q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 43.5 1.5t32.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36 q-2 0 -37.5 -62l-81.5 -142l-65 -111q-3 -5 -3 -11q0 -286 10 -286h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-58.5 -1.5t-53.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h52q10 0 10 244q0 11 -7 23q-189 345 -199 345h-29 q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xde;" horiz-adv-x="591" d="M30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-9 0 -11 -102q0 -13 2 -15t15 -1q14 0 42.5 1.5 t35.5 1.5q108 0 174 -49.5t66 -146.5q0 -92 -64 -136.5t-175 -44.5q-5 0 -77 3h-4h-7t-4 -1.5t-2.5 -4t-0.5 -7.5q2 -110 9 -110h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5zM211 188q0 -15 14 -17 q7 -2 24 -2q94 0 152.5 41.5t58.5 132.5q0 71 -59.5 113t-151.5 42q-24 0 -35 -1q-3 0 -3 -27v-282z" />
<glyph unicode="&#xdf;" horiz-adv-x="482" d="M30 12q0 13 12 13h38q6 0 6 178q0 70 -1 174l-1 104q0 86 42 141.5t130 55.5q68 0 106.5 -37t38.5 -102q0 -64 -34.5 -103.5t-76.5 -55.5q-6 -3 -12.5 -4.5t-9.5 -1.5l-2 -1l2 -1q2 0 7 -1t11 -3q18 -5 36 -12.5t43 -24t43 -37.5t31 -55t13 -75q0 -72 -38 -123t-101 -51 q-46 0 -76 21t-30 57q0 18 7.5 26.5t27.5 14.5q16 5 18 -8q0 -4 1 -18.5l1.5 -21.5t4 -19t9 -18t15.5 -11t24 -5q31 0 47 44t16 102q0 54 -12 94t-26.5 60t-40.5 33t-40 16t-39 6q-7 1 -7 10.5t7 9.5q46 2 82 41.5t36 117.5q0 53 -20.5 83.5t-76.5 30.5q-23 0 -40 -12 t-25 -27.5t-12.5 -41t-5.5 -42t-1 -41.5v-475q0 -18 -8 -18q-2 0 -12.5 0.5t-15.5 0.5q-12 0 -37 -1t-41 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="&#xe0;" horiz-adv-x="419" d="M99 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21 q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5 q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#xe1;" horiz-adv-x="419" d="M186 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45 q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2 t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#xe2;" horiz-adv-x="419" d="M91 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5 t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11 q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#xe3;" horiz-adv-x="419" d="M96 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5 t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11 q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#xe4;" horiz-adv-x="419" d="M70 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM230 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42 t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5 q0 -5 -65 -49q-15 -11 -26 -11q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#xe5;" horiz-adv-x="419" d="M130 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM158 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5 t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11 q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#xe6;" horiz-adv-x="649" d="M35 70q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q80 0 111 -45q7 -11 10 -9q1 0 9 7q55 45 128 45 q71 0 110 -46t39 -113q0 -5 -20 -8.5t-34 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t17 16.5l7 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-90 0 -141 54q-7 6 -8.5 6t-10.5 -6 q-87 -54 -153 -54q-46 0 -72 23t-26 62zM105 98q0 -26 17.5 -47.5t47.5 -21.5q39 0 79 17q12 5 15 8.5t3 11.5v125q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89zM330 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="412" d="M35 177q0 104 63 163t143 59q50 0 91.5 -29t41.5 -67q0 -13 -10 -20q-17 -13 -30 -13t-17 11q-2 5 -8.5 25.5t-10 27t-12 18.5t-21 16t-30.5 4q-60 0 -97.5 -53t-37.5 -117q0 -68 40.5 -118t113.5 -50q30 0 58.5 7.5t44.5 15t18 7.5q7 0 7 -8q0 -5 -16.5 -19t-52.5 -29.5 t-77 -17.5l-20 -55q-2 -9 0 -9l6 2q5 1 13.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l8 -3q9 -4 23 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5 q0 1 6.5 17.5l16 42t14.5 37.5q-85 1 -134.5 52t-49.5 135z" />
<glyph unicode="&#xe8;" horiz-adv-x="424" d="M126 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-3 0 -8 6l-82 107q-7 10 -7 20zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5 q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#xe9;" horiz-adv-x="424" d="M213 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5 q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#xea;" horiz-adv-x="424" d="M118 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5 q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27 q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#xeb;" horiz-adv-x="424" d="M97 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM257 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113 q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4 q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#xec;" horiz-adv-x="249" d="M13 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3 q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4z" />
<glyph unicode="&#xed;" horiz-adv-x="249" d="M100 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3 q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4z" />
<glyph unicode="&#xee;" horiz-adv-x="249" d="M5 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7 t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4z" />
<glyph unicode="&#xef;" horiz-adv-x="249" d="M-6 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM134 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170 q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4 z" />
<glyph unicode="&#xf0;" horiz-adv-x="438" d="M30 183q0 95 52.5 153.5t135.5 58.5q47 0 73 -17q16 -10 17 -10q1 1 0.5 5.5t-3 11l-4.5 11.5q-33 74 -68 123q-2 3 -9 2l-114 -30q-1 0 -4 4t-5.5 10t-2.5 8l25 7q25 7 52.5 14l31.5 8q8 1 3 6q-57 69 -106 107q-9 5 -8 6q0 2 8 2h44q9 0 39 -28t68 -74q4 -5 11 -3 q94 26 98 26q2 0 8 -8t6 -12q0 -1 -44 -12.5l-52 -13.5q-3 -1 -4 -4t1 -4q52 -70 90.5 -160.5t38.5 -172.5q0 -93 -51.5 -152.5t-136.5 -59.5q-81 0 -135.5 57t-54.5 141zM103 192q0 -73 31 -127t91 -54q116 0 116 182q0 74 -28 125.5t-89 51.5q-58 0 -89.5 -49t-31.5 -129z " />
<glyph unicode="&#xf1;" horiz-adv-x="514" d="M167 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 350q0 4 5 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5t2 -7.5v-3v-42 q0 -6 13 3l2 2l18 12t23 14.5t23 11.5t31 10t33 3q42 0 69.5 -13t41 -39.5t18 -55t4.5 -69.5q0 -33 -2.5 -100t-2.5 -70q0 -8 1.5 -10t9.5 -2h30q9 0 11.5 -2t2.5 -11q0 -6 -0.5 -8t-3 -4t-8.5 -2q-8 0 -33.5 1t-41.5 1q-12 0 -40.5 -1t-44.5 -1q-10 0 -12 2t-2 11t2.5 11.5 t10.5 2.5h37q7 0 8.5 1.5t2.5 9.5q4 48 4 176q0 130 -96 130q-33 0 -89 -28q-18 -9 -18 -23q0 -41 -0.5 -123.5t-0.5 -123.5q0 -9 0.5 -12.5t3 -5t9.5 -1.5h36q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -36.5 1t-44.5 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5 t-2 11.5q0 13 12 13h39q6 0 7.5 2.5t2.5 11.5v4q5 98 5 194q0 68 -2 99q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -27 -2t-28 -2q-3 0 -3 4z" />
<glyph unicode="&#xf2;" horiz-adv-x="446" d="M128 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-3 0 -8 6l-82 107q-7 10 -7 20zM30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153t-144 -59q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48 q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#xf3;" horiz-adv-x="446" d="M215 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153t-144 -59q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48 q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#xf4;" horiz-adv-x="446" d="M120 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153t-144 -59 q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#xf5;" horiz-adv-x="446" d="M125 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153 t-144 -59q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#xf6;" horiz-adv-x="446" d="M99 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM259 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5 q0 -94 -53 -153t-144 -59q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#xf7;" horiz-adv-x="527" d="M31 212q0 8 0.5 11.5t4.5 6t13 2.5h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5zM212 320q0 16 12.5 28.5t29.5 12.5q16 0 28 -11.5t12 -28.5t-12 -29t-29 -12t-29 12t-12 28zM217 101q0 16 12 28t29 12 q16 0 28.5 -12.5t12.5 -28.5t-11.5 -28t-28.5 -12t-29.5 12t-12.5 29z" />
<glyph unicode="&#xf8;" horiz-adv-x="446" d="M30 183q0 90 57 151.5t148 61.5q35 0 67 -13q8 -3 10 0q1 1 3 4l38 65q1 2 4 2q5 0 12 -5t6 -7l-39 -67q-4 -7 0 -10q38 -26 59 -70.5t21 -97.5q0 -94 -53 -153t-144 -59q-47 0 -88 22q-5 3 -8 -2l-38 -66q-2 -2 -3 -2q-4 0 -11 5t-7 7l1 3l38 66q3 5 -4 11 q-69 58 -69 154zM101 169q0 -54 25 -99q3 -7 8 2l154 267q4 6 -4 11q-28 20 -61 20q-122 0 -122 -201zM146 44q0 -1 3 -4q29 -29 70 -29q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 69 -31 116q-1 1 -2 3q0 1 -1 1l-4 -4l-156 -270q-3 -4 -3 -6z" />
<glyph unicode="&#xf9;" horiz-adv-x="510" d="M138 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-3 0 -8 6l-82 107q-7 10 -7 20zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1 q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5 t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#xfa;" horiz-adv-x="510" d="M225 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19 q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77 q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#xfb;" horiz-adv-x="510" d="M130 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118 q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5 q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#xfc;" horiz-adv-x="510" d="M109 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM269 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272 q0 -67 111 -67q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12 q-25 -12 -64.5 -23.5t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#xfd;" horiz-adv-x="467" d="M236 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM25 368q0 6 0.5 8t3.5 4t9 2q8 0 33 -1t41 -1q13 0 46.5 1t41.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-19q-26 0 -26 -10q0 -12 31 -97.5t58 -151.5 q16 -40 19 -40t17 40q82 231 82 252q0 7 -31 7h-23q-8 0 -10.5 3t-2.5 10q0 14 14 14q9 0 31.5 -1t32.5 -1q12 0 30 1t25 1q13 0 13 -14q0 -13 -12 -13h-14q-10 0 -13 -10q-38 -105 -133 -342q-1 -3 -7 -19.5t-15.5 -46t-17.5 -51.5q-2 -4 -5.5 -15.5t-5 -14.5t-4.5 -11.5 t-5 -12t-5.5 -11t-7 -12.5t-8 -12.5t-10.5 -14.5t-13 -16q-17 -22 -26 -27q-6 -4 -15 -8q-54 -26 -62 -26q-18 0 -18 20q0 15 19 42q7 11 28 18l22.5 7.5t29.5 11t22 13.5t16 19q44 109 44 121q0 8 -28 77l-72.5 174l-55.5 132q-4 11 -7 13t-14 2h-11q-8 0 -10.5 3t-2.5 10z " />
<glyph unicode="&#xfe;" horiz-adv-x="498" d="M20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5q1 -130 1 -321q0 -10 2 -10q1 0 19 14q50 37 108 37q83 0 127 -53t44 -136q0 -81 -57.5 -142t-151.5 -61q-31 0 -66 11l-7.5 2.5t-6.5 2.5t-5 1t-4 -1.5t-1 -4.5l3 -189q2 -67 6 -67h70q8 0 10.5 -3 t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -46.5 -1t-50.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h55q3 0 3 160l-1 204q0 417 -9 517q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3zM164 52q0 -17 30 -29.5t57 -12.5q66 0 103 55t37 122q0 72 -37 116.5 t-93 44.5q-36 0 -64 -13q-33 -17 -33 -33v-250z" />
<glyph unicode="&#xff;" horiz-adv-x="467" d="M120 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM280 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 368q0 6 0.5 8t3.5 4t9 2q8 0 33 -1t41 -1q13 0 46.5 1 t41.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-19q-26 0 -26 -10q0 -12 31 -97.5t58 -151.5q16 -40 19 -40t17 40q82 231 82 252q0 7 -31 7h-23q-8 0 -10.5 3t-2.5 10q0 14 14 14q9 0 31.5 -1t32.5 -1q12 0 30 1t25 1q13 0 13 -14q0 -13 -12 -13h-14q-10 0 -13 -10 q-38 -105 -133 -342q-1 -3 -7 -19.5t-15.5 -46t-17.5 -51.5q-2 -4 -5.5 -15.5t-5 -14.5t-4.5 -11.5t-5 -12t-5.5 -11t-7 -12.5t-8 -12.5t-10.5 -14.5t-13 -16q-17 -22 -26 -27q-6 -4 -15 -8q-54 -26 -62 -26q-18 0 -18 20q0 15 19 42q7 11 28 18l22.5 7.5t29.5 11t22 13.5 t16 19q44 109 44 121q0 8 -28 77l-72.5 174l-55.5 132q-4 11 -7 13t-14 2h-11q-8 0 -10.5 3t-2.5 10z" />
<glyph unicode="&#x100;" horiz-adv-x="698" d="M269 788v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5 l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5 t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#x101;" horiz-adv-x="419" d="M99 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18 t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11q-10 0 -17.5 6t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5q-68 -41 -115 -41 q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#x102;" horiz-adv-x="698" d="M268 832q0 6 1 6h17q1 0 2 -6t4.5 -15t10.5 -17.5t24.5 -14.5t43.5 -6t43.5 6t24.5 14.5t10.5 17.5t4.5 15t2 6h17q1 0 1 -6q0 -45 -26 -74t-77 -29t-77 29t-26 74zM30 15q0 9 3 10.5t15 1.5h28q3 0 17.5 30.5t34.5 77.5l39 92l35.5 84.5l19.5 46.5l106 246q4 9 17 25.5 t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226 q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13 l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#x103;" horiz-adv-x="419" d="M98 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5 q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -5 -65 -49q-15 -11 -26 -11q-10 0 -17.5 6 t-11.5 14t-6.5 16t-3.5 14l-1 6q-1 0 -4 -2t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#x104;" horiz-adv-x="698" d="M30 15q0 9 3 10.5t15 1.5h28q4 0 23.5 44l60 140l62.5 147l106 246q4 9 17 25.5t19 30.5q12 27 19 27t9 -7l120 -337l19 -53l21.5 -60.5l21 -58.5l21 -56.5t17.5 -44t15 -32.5t8 -11h32q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-4 0 -8 -4 q-84 -86 -84 -163q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 12 1.5 23.5t6.5 23.5t9 20.5t13.5 21l14.5 19.5t18 20.5l18.5 19l22 21.5t22.5 21q3 3 -1 3q-58 -2 -80 -2 q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q1 0 1 3q0 30 -70 226q-6 17 -10 18q-3 1 -10 1h-201q-5 0 -8 -0.5t-5 -1t-4 -3t-2 -3t-2 -5t-2 -5.5q-81 -206 -81 -227q0 -3 1 -3h78q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -43.5 1.5t-48.5 1.5t-39 -1.5t-34 -1.5 q-10 0 -12 2.5t-2 15.5zM231 305q0 -6 16 -6h179q13 0 13 5q0 1 -4 13l-83 243q-6 19 -8 19t-10 -19l-98 -240q-5 -12 -5 -15z" />
<glyph unicode="&#x105;" horiz-adv-x="419" d="M35 71q0 42 37 74t83.5 48t103.5 26q8 1 8 16q0 27 -0.5 42t-5 36.5t-13.5 32.5t-26 19.5t-42 8.5q-18 0 -31 -5q-20 -9 -25.5 -22t-6.5 -45q0 -16 -7 -21q-11 -8 -30.5 -18t-22.5 -10q-8 0 -8 15q0 57 49 94t103 37q72 0 101.5 -33.5t29.5 -97.5q0 -29 -3 -113t-3 -91 q0 -30 22 -30q2 0 19.5 12t18.5 12q3 0 8 -5.5t5 -9.5q0 -1 -47 -37q-28 -21 -41.5 -32.5t-38.5 -36t-36.5 -50.5t-11.5 -54q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 74 126 173 l7 7l-7 7q-7 7 -11 18.5t-5 19.5t-2 8t-4 -2t-8 -5t-8 -5q-68 -41 -115 -41q-46 0 -72 23t-26 62zM105 99q0 -26 17.5 -47.5t47.5 -21.5q20 0 44 6t38.5 12.5t14.5 9.5v134q0 11 -6 11q-14 0 -62 -15q-94 -30 -94 -89z" />
<glyph unicode="&#x106;" horiz-adv-x="731" d="M385 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM45 335q0 154 101.5 249.5t255.5 95.5q19 0 37.5 -2t34.5 -5.5t29.5 -8t27 -10.5l23 -10.5t19.5 -11l15 -10l12.5 -8.5t8.5 -6q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v27q0 9 2 11 t13 2q12 0 16 -2t4 -11q0 -5 -2 -84t-2 -109q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 43t2 47t-11 18t-32.5 30t-48.5 33t-64.5 27t-74.5 11q-108 0 -178 -90t-70 -227q0 -127 81 -218.5t196 -91.5q51 0 99 15t71.5 30.5t24.5 22.5l13 113q1 10 5.5 13t16.5 1 q12 -1 12 -13q0 -13 -16 -133q-1 -10 -36.5 -30.5t-97.5 -39t-120 -18.5q-71 0 -133 21.5t-111.5 63t-78 110.5t-28.5 156z" />
<glyph unicode="&#x107;" horiz-adv-x="412" d="M216 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM35 177q0 104 63 163t143 59q50 0 91.5 -29t41.5 -67q0 -13 -10 -20q-17 -13 -30 -13t-17 11q-2 5 -8.5 25.5t-10 27t-12 18.5t-21 16t-30.5 4 q-60 0 -97.5 -53t-37.5 -117q0 -68 40.5 -118t113.5 -50q30 0 58.5 7.5t44.5 15t18 7.5q7 0 7 -8q0 -2 -6.5 -9t-20.5 -17t-32 -18.5t-44.5 -15t-54.5 -6.5q-87 0 -138 51t-51 136z" />
<glyph unicode="&#x108;" horiz-adv-x="731" d="M284 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM45 335q0 154 101.5 249.5t255.5 95.5q19 0 37.5 -2t34.5 -5.5t29.5 -8t27 -10.5l23 -10.5t19.5 -11l15 -10l12.5 -8.5 t8.5 -6q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v27q0 9 2 11t13 2q12 0 16 -2t4 -11q0 -5 -2 -84t-2 -109q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 43t2 47t-11 18t-32.5 30t-48.5 33t-64.5 27t-74.5 11q-108 0 -178 -90t-70 -227q0 -127 81 -218.5t196 -91.5 q51 0 99 15t71.5 30.5t24.5 22.5l13 113q1 10 5.5 13t16.5 1q12 -1 12 -13q0 -13 -16 -133q-1 -10 -36.5 -30.5t-97.5 -39t-120 -18.5q-71 0 -133 21.5t-111.5 63t-78 110.5t-28.5 156z" />
<glyph unicode="&#x109;" horiz-adv-x="412" d="M121 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM35 177q0 104 63 163t143 59q50 0 91.5 -29t41.5 -67q0 -13 -10 -20q-17 -13 -30 -13t-17 11 q-2 5 -8.5 25.5t-10 27t-12 18.5t-21 16t-30.5 4q-60 0 -97.5 -53t-37.5 -117q0 -68 40.5 -118t113.5 -50q30 0 58.5 7.5t44.5 15t18 7.5q7 0 7 -8q0 -2 -6.5 -9t-20.5 -17t-32 -18.5t-44.5 -15t-54.5 -6.5q-87 0 -138 51t-51 136z" />
<glyph unicode="&#x10a;" horiz-adv-x="731" d="M344 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM45 335q0 154 101.5 249.5t255.5 95.5q19 0 37.5 -2t34.5 -5.5t29.5 -8t27 -10.5l23 -10.5t19.5 -11l15 -10l12.5 -8.5t8.5 -6q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v27 q0 9 2 11t13 2q12 0 16 -2t4 -11q0 -5 -2 -84t-2 -109q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 43t2 47t-11 18t-32.5 30t-48.5 33t-64.5 27t-74.5 11q-108 0 -178 -90t-70 -227q0 -127 81 -218.5t196 -91.5q51 0 99 15t71.5 30.5t24.5 22.5l13 113q1 10 5.5 13 t16.5 1q12 -1 12 -13q0 -13 -16 -133q-1 -10 -36.5 -30.5t-97.5 -39t-120 -18.5q-71 0 -133 21.5t-111.5 63t-78 110.5t-28.5 156z" />
<glyph unicode="&#x10b;" horiz-adv-x="412" d="M180 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 177q0 104 63 163t143 59q50 0 91.5 -29t41.5 -67q0 -13 -10 -20q-17 -13 -30 -13t-17 11q-2 5 -8.5 25.5t-10 27t-12 18.5t-21 16t-30.5 4q-60 0 -97.5 -53 t-37.5 -117q0 -68 40.5 -118t113.5 -50q30 0 58.5 7.5t44.5 15t18 7.5q7 0 7 -8q0 -2 -6.5 -9t-20.5 -17t-32 -18.5t-44.5 -15t-54.5 -6.5q-87 0 -138 51t-51 136z" />
<glyph unicode="&#x10c;" horiz-adv-x="731" d="M284 837q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM45 335q0 154 101.5 249.5t255.5 95.5q19 0 37.5 -2t34.5 -5.5t29.5 -8t27 -10.5l23 -10.5t19.5 -11l15 -10l12.5 -8.5 t8.5 -6q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v27q0 9 2 11t13 2q12 0 16 -2t4 -11q0 -5 -2 -84t-2 -109q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 43t2 47t-11 18t-32.5 30t-48.5 33t-64.5 27t-74.5 11q-108 0 -178 -90t-70 -227q0 -127 81 -218.5t196 -91.5 q51 0 99 15t71.5 30.5t24.5 22.5l13 113q1 10 5.5 13t16.5 1q12 -1 12 -13q0 -13 -16 -133q-1 -10 -36.5 -30.5t-97.5 -39t-120 -18.5q-71 0 -133 21.5t-111.5 63t-78 110.5t-28.5 156z" />
<glyph unicode="&#x10d;" horiz-adv-x="412" d="M121 597q0 2 5 2h12l8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM35 177q0 104 63 163t143 59q50 0 91.5 -29t41.5 -67q0 -13 -10 -20q-17 -13 -30 -13t-17 11 q-2 5 -8.5 25.5t-10 27t-12 18.5t-21 16t-30.5 4q-60 0 -97.5 -53t-37.5 -117q0 -68 40.5 -118t113.5 -50q30 0 58.5 7.5t44.5 15t18 7.5q7 0 7 -8q0 -2 -6.5 -9t-20.5 -17t-32 -18.5t-44.5 -15t-54.5 -6.5q-87 0 -138 51t-51 136z" />
<glyph unicode="&#x10e;" horiz-adv-x="758" d="M231 837q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM35 10q0 11 3 13t14 2h66q4 0 8.5 200t4.5 338q0 78 -2 78l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v7.5t1.5 5t4 3t7.5 0.5 q1 0 11.5 -0.5t26.5 -0.5h31q41 0 114.5 6t89.5 6q166 0 273.5 -93t107.5 -250q0 -105 -49.5 -183.5t-126.5 -116.5t-169 -39q-32 0 -97 2t-98 2q-16 0 -70 -2t-57 -2q-8 0 -9.5 2t-1.5 12zM213 86q0 -59 2 -60q6 -4 57 -4q69 0 124.5 14t90 34.5t60 53t37.5 59t19 63.5 t8 56t1 46q0 73 -35.5 141.5t-106.5 115.5t-159 47q-67 0 -90 -6q-7 -2 -7 -146q-1 -138 -1 -414z" />
<glyph unicode="&#x10f;" horiz-adv-x="499" d="M458 491q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3zM30 181q0 85 58.5 141.5t144.5 56.5q17 0 33.5 -2.5t28.5 -6.5t21 -8t14 -6l6 -3q6 0 6 18q0 48 -2 113.5t-4.5 112t-3.5 46.5t-32 -4.5t-35 -4.5t-5 2t1 13 q2 12 8 13q24 3 56.5 7.5t52.5 7.5t22 3q7 0 8.5 -3.5t1.5 -19.5q0 -7 -1.5 -62.5t-3 -164.5t-1.5 -246q0 -48 2 -120q1 -29 6 -39t17 -10q4 0 34 4q6 1 8.5 0t2.5 -8q0 -8 -0.5 -11t-3 -5t-9.5 -3l-115 -15q-6 0 -6 9q0 1 0.5 17.5t0.5 18.5q0 8 -2.5 9t-12.5 -5 q-63 -39 -120 -39q-75 0 -125.5 47t-50.5 147zM103 188q0 -74 37.5 -119t114.5 -45q23 0 55 10.5t32 22.5v250q0 12 -31 32t-66 20q-64 0 -103 -50.5t-39 -120.5z" />
<glyph unicode="&#x110;" horiz-adv-x="758" d="M35 10q0 11 3 13t14 2h66q5 0 11 298q0 8 -7 8h-79q-2 0 -2.5 12t2.5 12h76q10 0 10 10q2 148 2 198q0 78 -2 78l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v7.5t1.5 5t4 3t7.5 0.5q1 0 11.5 -0.5t26.5 -0.5h31q41 0 114.5 6t89.5 6q166 0 273.5 -93t107.5 -250 q0 -105 -49.5 -183.5t-126.5 -116.5t-169 -39q-32 0 -97 2t-98 2q-16 0 -70 -2t-57 -2q-8 0 -9.5 2t-1.5 12zM213 86q0 -59 2 -60q6 -4 57 -4q69 0 124.5 14t90 34.5t60 53t37.5 59t19 63.5t8 56t1 46q0 73 -35.5 141.5t-106.5 115.5t-159 47q-67 0 -90 -6q-7 -2 -7 -146 q0 -22 -0.5 -67t-0.5 -68q0 -7 1.5 -8.5t9.5 -1.5h208q3 0 3 -12t-3 -12h-212q-7 0 -7 -8v-237z" />
<glyph unicode="&#x111;" horiz-adv-x="499" d="M30 181q0 85 58.5 141.5t144.5 56.5q17 0 33.5 -2.5t28.5 -6.5t21 -8t14 -6l6 -3q6 0 6 18q0 36 -2 116q0 6 -9 6h-151q-2 0 -2.5 12t2.5 12h152q5 0 6 1.5t1 7.5q-4 117 -7 117q-1 0 -32 -4.5t-35 -4.5t-5 2t1 13q2 12 8 13q24 3 56.5 7.5t52.5 7.5t22 3q7 0 8.5 -3.5 t1.5 -19.5q0 -6 -0.5 -23t-1.5 -46.5t-1 -61.5q0 -9 6 -9h58q3 0 3 -12t-3 -12h-58q-7 0 -7 -6q-2 -146 -2 -303q0 -48 2 -120q1 -29 6 -39t17 -10q4 0 34 4q6 1 8.5 0t2.5 -8q0 -8 -0.5 -11t-3 -5t-9.5 -3l-115 -15q-6 0 -6 9q0 1 0.5 17.5t0.5 18.5q0 8 -2.5 9t-12.5 -5 q-63 -39 -120 -39q-75 0 -125.5 47t-50.5 147zM103 188q0 -74 37.5 -119t114.5 -45q23 0 55 10.5t32 22.5v250q0 12 -31 32t-66 20q-64 0 -103 -50.5t-39 -120.5z" />
<glyph unicode="&#x112;" horiz-adv-x="605" d="M214 788v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2 q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8 q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11 q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x113;" horiz-adv-x="424" d="M126 518v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5 t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#x114;" horiz-adv-x="605" d="M213 832q0 6 1 6h17q1 0 2 -6t4.5 -15t10.5 -17.5t24.5 -14.5t43.5 -6t43.5 6t24.5 14.5t10.5 17.5t4.5 15t2 6h17q1 0 1 -6q0 -45 -26 -74t-77 -29t-77 29t-26 74zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5 q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128 q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20 q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x115;" horiz-adv-x="424" d="M125 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5 t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5 t-37 -80.5z" />
<glyph unicode="&#x116;" horiz-adv-x="605" d="M265 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1 q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9 q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61 q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x117;" horiz-adv-x="424" d="M177 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5 q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#x118;" horiz-adv-x="605" d="M40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9 q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5 h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11h-62q-14 0 -23 -9q-76 -82 -76 -155q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11 q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 21 7.5 42t13.5 33.5t29 37.5t29.5 31.5l38.5 37.5q8 6 7.5 8t-13.5 2l-257 2q-16 0 -63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x119;" horiz-adv-x="424" d="M30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -10 -48 -49q-45 -35 -83.5 -89t-38.5 -108 q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 16 2 29.5t8.5 27t11 22t17.5 23.5l19 21.5t25 25.5l27 27q2 2 9 7q12 9 7 8q-1 0 -3 -1q-31 -11 -62 -11q-91 0 -141 53.5t-50 143.5z M105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#x11a;" horiz-adv-x="605" d="M205 837q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM40 15q0 9 2.5 10.5t14.5 1.5h61q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43 q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l43 -1q43 -2 64 -2q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142 q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q6 -276 12 -276q27 0 68 0.5l79.5 1t73.5 0.5t57 0.5t23 0.5q12 0 15 3t4 20q1 14 3 87 q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x11b;" horiz-adv-x="424" d="M118 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM30 182q0 91 57 152.5t147 61.5q71 0 110 -46t39 -113q0 -5 -20.5 -8.5t-33.5 -3.5 q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t18 16.5l6 6q2 0 9 -6.5t7 -8.5q0 -5 -21 -26.5t-64 -44.5t-88 -23q-91 0 -141 53.5t-50 143.5zM105 255q0 -8 12 -8q57 0 157 4q40 1 40 4q0 65 -29.5 92t-62.5 27 q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#x11c;" horiz-adv-x="764" d="M293 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM45 335q0 160 102.5 251t260.5 91q117 0 201 -59q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v25q0 9 2 11t13 2q12 0 15.5 -2t3.5 -11 q0 -2 -1.5 -76.5t-1.5 -104.5q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 38t2 42t-9.5 17t-29.5 27.5t-45.5 30t-62.5 24.5t-75 10q-109 0 -183 -91t-74 -226q0 -130 79 -225.5t198 -95.5q51 0 91 12t55.5 24.5t16.5 19.5q3 26 3 94q0 58 -10 58h-87q-8 0 -8 12 q0 18 9 18q15 0 64.5 -1.5t67.5 -1.5q17 0 42.5 1.5t47.5 1.5q8 0 8 -14q0 -16 -8 -16h-31q-9 0 -11 -13t-2 -45q0 -12 -0.5 -42t-0.5 -47q0 -10 -39 -31.5t-106.5 -40.5t-129.5 -19q-71 0 -133 21t-111.5 62.5t-78 110.5t-28.5 159z" />
<glyph unicode="&#x11d;" horiz-adv-x="425" d="M95 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM15 -173q0 32 25.5 58t54 38.5t57.5 18.5q23 5 23 6t-21 1h-57q-31 0 -40 19q-9 21 -9 48 q0 28 18 32q33 8 76 20q38 11 38 12l-2 1q-3 1 -8 2t-9 2q-127 38 -127 161q0 64 53.5 106.5t122.5 42.5q22 0 42 -5.5t33.5 -12.5t24 -14.5t16.5 -12.5l6 -6q2 0 14.5 4.5t29.5 9t31 5.5q2 0 5.5 -9.5t3.5 -18.5q0 -6 -3 -6q-11 -1 -35 -6t-24 -8q0 -1 3 -10.5t6.5 -26 t3.5 -35.5q0 -60 -29 -95t-86 -57q-27 -11 -173 -52q-4 -1 -4 -9t5.5 -18.5t8.5 -11.5q17 -1 57.5 -2.5t64.5 -3t60.5 -6t59 -12.5t45 -20.5t33.5 -32.5t11 -47q0 -76 -61 -121t-159 -45q-44 0 -85 12t-70.5 39.5t-29.5 65.5zM60 -166q0 -46 44 -72t95 -26q66 0 115 28 t49 88q0 27 -29 46t-67 26.5t-78 7.5q-43 0 -86 -26.5t-43 -71.5zM98 250q0 -65 41 -110t68 -45q33 0 65.5 43t32.5 106q0 59 -27 92.5t-73 33.5q-43 0 -75 -35.5t-32 -84.5z" />
<glyph unicode="&#x11e;" horiz-adv-x="764" d="M301 832q0 6 1 6h17q1 0 2 -6t4.5 -15t10.5 -17.5t24.5 -14.5t43.5 -6t43.5 6t24.5 14.5t10.5 17.5t4.5 15t2 6h17q1 0 1 -6q0 -45 -26 -74t-77 -29t-77 29t-26 74zM45 335q0 160 102.5 251t260.5 91q117 0 201 -59q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v25q0 9 2 11t13 2 q12 0 15.5 -2t3.5 -11q0 -2 -1.5 -76.5t-1.5 -104.5q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 38t2 42t-9.5 17t-29.5 27.5t-45.5 30t-62.5 24.5t-75 10q-109 0 -183 -91t-74 -226q0 -130 79 -225.5t198 -95.5q51 0 91 12t55.5 24.5t16.5 19.5q3 26 3 94 q0 58 -10 58h-87q-8 0 -8 12q0 18 9 18q15 0 64.5 -1.5t67.5 -1.5q17 0 42.5 1.5t47.5 1.5q8 0 8 -14q0 -16 -8 -16h-31q-9 0 -11 -13t-2 -45q0 -12 -0.5 -42t-0.5 -47q0 -10 -39 -31.5t-106.5 -40.5t-129.5 -19q-71 0 -133 21t-111.5 62.5t-78 110.5t-28.5 159z" />
<glyph unicode="&#x11f;" horiz-adv-x="425" d="M102 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM15 -173q0 32 25.5 58t54 38.5t57.5 18.5q23 5 23 6t-21 1h-57q-31 0 -40 19q-9 21 -9 48 q0 28 18 32q33 8 76 20q38 11 38 12l-2 1q-3 1 -8 2t-9 2q-127 38 -127 161q0 64 53.5 106.5t122.5 42.5q22 0 42 -5.5t33.5 -12.5t24 -14.5t16.5 -12.5l6 -6q2 0 14.5 4.5t29.5 9t31 5.5q2 0 5.5 -9.5t3.5 -18.5q0 -6 -3 -6q-11 -1 -35 -6t-24 -8q0 -1 3 -10.5t6.5 -26 t3.5 -35.5q0 -60 -29 -95t-86 -57q-27 -11 -173 -52q-4 -1 -4 -9t5.5 -18.5t8.5 -11.5q17 -1 57.5 -2.5t64.5 -3t60.5 -6t59 -12.5t45 -20.5t33.5 -32.5t11 -47q0 -76 -61 -121t-159 -45q-44 0 -85 12t-70.5 39.5t-29.5 65.5zM60 -166q0 -46 44 -72t95 -26q66 0 115 28 t49 88q0 27 -29 46t-67 26.5t-78 7.5q-43 0 -86 -26.5t-43 -71.5zM98 250q0 -65 41 -110t68 -45q33 0 65.5 43t32.5 106q0 59 -27 92.5t-73 33.5q-43 0 -75 -35.5t-32 -84.5z" />
<glyph unicode="&#x120;" horiz-adv-x="764" d="M353 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM45 335q0 160 102.5 251t260.5 91q117 0 201 -59q5 -4 6.5 -5t5 -2t4.5 1.5t1 8.5v25q0 9 2 11t13 2q12 0 15.5 -2t3.5 -11q0 -2 -1.5 -76.5t-1.5 -104.5 q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 38t2 42t-9.5 17t-29.5 27.5t-45.5 30t-62.5 24.5t-75 10q-109 0 -183 -91t-74 -226q0 -130 79 -225.5t198 -95.5q51 0 91 12t55.5 24.5t16.5 19.5q3 26 3 94q0 58 -10 58h-87q-8 0 -8 12q0 18 9 18q15 0 64.5 -1.5 t67.5 -1.5q17 0 42.5 1.5t47.5 1.5q8 0 8 -14q0 -16 -8 -16h-31q-9 0 -11 -13t-2 -45q0 -12 -0.5 -42t-0.5 -47q0 -10 -39 -31.5t-106.5 -40.5t-129.5 -19q-71 0 -133 21t-111.5 62.5t-78 110.5t-28.5 159z" />
<glyph unicode="&#x121;" horiz-adv-x="425" d="M154 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM15 -173q0 32 25.5 58t54 38.5t57.5 18.5q23 5 23 6t-21 1h-57q-31 0 -40 19q-9 21 -9 48q0 28 18 32q33 8 76 20q38 11 38 12l-2 1q-3 1 -8 2t-9 2q-127 38 -127 161 q0 64 53.5 106.5t122.5 42.5q22 0 42 -5.5t33.5 -12.5t24 -14.5t16.5 -12.5l6 -6q2 0 14.5 4.5t29.5 9t31 5.5q2 0 5.5 -9.5t3.5 -18.5q0 -6 -3 -6q-11 -1 -35 -6t-24 -8q0 -1 3 -10.5t6.5 -26t3.5 -35.5q0 -60 -29 -95t-86 -57q-27 -11 -173 -52q-4 -1 -4 -9t5.5 -18.5 t8.5 -11.5q17 -1 57.5 -2.5t64.5 -3t60.5 -6t59 -12.5t45 -20.5t33.5 -32.5t11 -47q0 -76 -61 -121t-159 -45q-44 0 -85 12t-70.5 39.5t-29.5 65.5zM60 -166q0 -46 44 -72t95 -26q66 0 115 28t49 88q0 27 -29 46t-67 26.5t-78 7.5q-43 0 -86 -26.5t-43 -71.5zM98 250 q0 -65 41 -110t68 -45q33 0 65.5 43t32.5 106q0 59 -27 92.5t-73 33.5q-43 0 -75 -35.5t-32 -84.5z" />
<glyph unicode="&#x122;" horiz-adv-x="764" d="M362 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM45 335q0 160 102.5 251t260.5 91q117 0 201 -59q5 -4 6.5 -5t5 -2 t4.5 1.5t1 8.5v25q0 9 2 11t13 2q12 0 15.5 -2t3.5 -11q0 -2 -1.5 -76.5t-1.5 -104.5q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 2 38t2 42t-9.5 17t-29.5 27.5t-45.5 30t-62.5 24.5t-75 10q-109 0 -183 -91t-74 -226q0 -130 79 -225.5t198 -95.5q51 0 91 12 t55.5 24.5t16.5 19.5q3 26 3 94q0 58 -10 58h-87q-8 0 -8 12q0 18 9 18q15 0 64.5 -1.5t67.5 -1.5q17 0 42.5 1.5t47.5 1.5q8 0 8 -14q0 -16 -8 -16h-31q-9 0 -11 -13t-2 -45q0 -12 -0.5 -42t-0.5 -47q0 -10 -39 -31.5t-106.5 -40.5t-129.5 -19q-71 0 -133 21t-111.5 62.5 t-78 110.5t-28.5 159z" />
<glyph unicode="&#x123;" horiz-adv-x="425" d="M148 502q0 31 24.5 62.5t48 48t29.5 16.5q4 0 7 -5.5t3 -10.5l-15 -10q-15 -10 -29.5 -25.5t-14.5 -29.5q0 -17 13.5 -30t26.5 -21.5t13 -12.5q0 -11 -18.5 -23t-24.5 -12q-12 0 -37.5 19.5t-25.5 33.5zM15 -173q0 32 25.5 58t54 38.5t57.5 18.5q23 5 23 6t-21 1h-57 q-31 0 -40 19q-9 21 -9 48q0 28 18 32q33 8 76 20q38 11 38 12l-2 1q-3 1 -8 2t-9 2q-127 38 -127 161q0 64 53.5 106.5t122.5 42.5q22 0 42 -5.5t33.5 -12.5t24 -14.5t16.5 -12.5l6 -6q2 0 14.5 4.5t29.5 9t31 5.5q2 0 5.5 -9.5t3.5 -18.5q0 -6 -3 -6q-11 -1 -35 -6t-24 -8 q0 -1 3 -10.5t6.5 -26t3.5 -35.5q0 -60 -29 -95t-86 -57q-27 -11 -173 -52q-4 -1 -4 -9t5.5 -18.5t8.5 -11.5q17 -1 57.5 -2.5t64.5 -3t60.5 -6t59 -12.5t45 -20.5t33.5 -32.5t11 -47q0 -76 -61 -121t-159 -45q-44 0 -85 12t-70.5 39.5t-29.5 65.5zM60 -166q0 -46 44 -72 t95 -26q66 0 115 28t49 88q0 27 -29 46t-67 26.5t-78 7.5q-43 0 -86 -26.5t-43 -71.5zM98 250q0 -65 41 -110t68 -45q33 0 65.5 43t32.5 106q0 59 -27 92.5t-73 33.5q-43 0 -75 -35.5t-32 -84.5z" />
<glyph unicode="&#x124;" horiz-adv-x="791" d="M291 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM40 15q0 9 3 10.5t15 1.5h57q7 0 7 258v102q0 252 -6 252h-43q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5 q6 0 39.5 -1.5t50.5 -1.5q16 0 55.5 1.5t50.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-54q-7 0 -7 -134q0 -27 0.5 -73t0.5 -59t2 -15.5t13 -2.5h365q11 0 13 2t2 13v122q0 147 -10 147h-57q-10 0 -12.5 2t-2.5 13t2.5 13t12.5 2q6 0 47 -1.5t58 -1.5 q18 0 55 1.5t40 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-46q-2 0 -2 -242q0 -370 4 -370h55q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -44.5 1.5t-49.5 1.5t-58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h55q6 0 6 165v124 q0 11 -1 13t-8 2h-374q-8 0 -10 -2.5t-2 -14.5q0 -287 11 -287h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -52.5 1.5t-57.5 1.5t-61 -1.5t-56 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x125;" horiz-adv-x="503" d="M18 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM10 640q0 16 5 17q138 18 146 18q5 0 5 -20q-8 -166 -8 -301v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47 t16 -63t4 -79v-143q0 -8 1.5 -10t9.5 -2h26q14 0 14 -13q0 -14 -14 -14q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 13 13h39q8 0 9 1.5t2 9.5q2 40 2 176q0 58 -24 95t-72 37q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -10 1.5 -13 t2 -4t7.5 -1h38q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q7 0 8.5 3t1.5 15q1 94 1 220q0 202 -8 356q-1 17 -6 17q-1 0 -30 -3.5t-31 -3.5q-4 0 -4 11z" />
<glyph unicode="&#x126;" horiz-adv-x="791" d="M40 15q0 9 3 10.5t15 1.5h57q7 0 7 258v197q0 6 -9 6h-60q-2 0 -2.5 12t2.5 12h60q6 0 7.5 1.5t1.5 8.5q-2 117 -6 117h-43q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 39.5 -1.5t50.5 -1.5q16 0 55.5 1.5t50.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5 t-15.5 -1.5h-54q-7 0 -7 -117q0 -7 1 -8.5t8 -1.5h375q9 0 10.5 2t1.5 11q-2 114 -10 114h-57q-10 0 -12.5 2t-2.5 13t2.5 13t12.5 2q6 0 47 -1.5t58 -1.5q18 0 55 1.5t40 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-46q-2 0 -2 -114q0 -6 0.5 -8.5t2.5 -3.5 t7 -1h58q3 0 3 -12t-3 -12h-58q-10 0 -10 -8v-83q0 -370 4 -370h55q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -44.5 1.5t-49.5 1.5t-58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h55q6 0 6 165v124q0 11 -1 13t-8 2h-374q-8 0 -10 -2.5t-2 -14.5 q0 -287 11 -287h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -52.5 1.5t-57.5 1.5t-61 -1.5t-56 -1.5q-10 0 -12 2.5t-2 15.5zM204 482q0 -23 0.5 -60.5t0.5 -48.5q0 -13 2 -15.5t13 -2.5h365q11 0 13 2t2 13v110q0 6 -2 7t-10 1h-379q-5 0 -5 -6z" />
<glyph unicode="&#x127;" horiz-adv-x="503" d="M10 640q0 16 5 17q138 18 146 18q5 0 5 -20q-4 -68 -5 -133q0 -10 7 -10h143q3 0 3 -12t-3 -12h-143q-6 0 -7 -1t-1 -7q-2 -90 -2 -126v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47t16 -63t4 -79v-143q0 -8 1.5 -10t9.5 -2h26q14 0 14 -13q0 -14 -14 -14 q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 13 13h39q8 0 9 1.5t2 9.5q2 40 2 176q0 58 -24 95t-72 37q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -10 1.5 -13t2 -4t7.5 -1h38q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q7 0 8.5 3t1.5 15q1 94 1 220q0 111 -3 217q0 6 -1 7t-6 1h-64q-2 0 -2.5 12t2.5 12h64q6 0 6 10q0 17 -1 35l-2 36t-1 26q-1 17 -6 17q-1 0 -30 -3.5t-31 -3.5q-4 0 -4 11z" />
<glyph unicode="&#x128;" horiz-adv-x="333" d="M63 748q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4 t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5 q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x129;" horiz-adv-x="249" d="M10 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170 q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4z" />
<glyph unicode="&#x12a;" horiz-adv-x="333" d="M66 788v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x12b;" horiz-adv-x="249" d="M13 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1 t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4z" />
<glyph unicode="&#x12c;" horiz-adv-x="333" d="M65 832q0 6 1 6h17q1 0 2 -6t4.5 -15t10.5 -17.5t24.5 -14.5t43.5 -6t43.5 6t24.5 14.5t10.5 17.5t4.5 15t2 6h17q1 0 1 -6q0 -45 -26 -74t-77 -29t-77 29t-26 74zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4 t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z " />
<glyph unicode="&#x12d;" horiz-adv-x="249" d="M12 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7 t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4z" />
<glyph unicode="&#x12e;" horiz-adv-x="333" d="M30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71 q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-17 0 -73 2q-12 0 -17 -5q-82 -86 -82 -161q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 12 1.5 23.5t6.5 23.5l8.5 20t13.5 21l14 18.5 t18 20.5t18 19l22 21l22 21q6 6 -1 6h-7q-16 0 -66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x12f;" horiz-adv-x="249" d="M25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-17 0 -63 2q-8 0 -13 -8q-45 -75 -45 -159q0 -38 15.5 -59.5t45.5 -21.5q18 0 32 6t20.5 12.5t7.5 6.5t6 -6t5 -7 q0 -3 -12 -14t-41 -24t-63 -13q-30 0 -52.5 26t-22.5 59q0 67 82 194q-2 7 -6 8l-69 -2q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4zM77 553q0 25 19.5 40t40.5 15 q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#x130;" horiz-adv-x="333" d="M117 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x131;" horiz-adv-x="249" d="M25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88 q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4z" />
<glyph unicode="&#x132;" horiz-adv-x="666" d="M303 -188q0 23 28.5 43.5t38.5 20.5q7 0 24 -10.5t28 -10.5q26 0 33 32t7 108v497q0 147 -10 147h-65q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 56 -1.5t67 -1.5q16 0 53.5 1.5t48.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-50q-7 0 -7 -269 v-240q0 -84 -17 -153t-69 -125q-60 -64 -109 -64q-19 0 -36 7t-17 17zM30 15q0 9 3 10.5t15 1.5h68q10 0 10 367v98q0 147 -10 147h-62q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 54.5 -1.5t65.5 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5 t-15.5 -1.5h-63q-11 0 -11 -158v-135q0 -319 10 -319h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-66.5 -1.5t-61.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x133;" horiz-adv-x="541" d="M254 -255q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 9 -2 56.5t-4.5 145t-2.5 229.5q0 49 -2 76q-1 14 -9 14q-3 0 -34 -1.5t-36 -1.5q-3 0 -3 4q0 5 4 15q0 1 1 3q2 6 14 6q22 0 52.5 1.5l51 2.5t21.5 1q7 0 7 -23q0 -20 2.5 -136.5 t2.5 -191.5q0 -90 -10.5 -145t-43.5 -98q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20zM329 580q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170 q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4zM77 553 q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#x134;" horiz-adv-x="333" d="M56 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM-30 -188q0 23 28.5 43.5t38.5 20.5q7 0 24 -10.5t28 -10.5q26 0 33 32t7 108v497q0 147 -10 147h-65q-8 0 -11 0.5t-6 4 t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 56 -1.5t67 -1.5q16 0 53.5 1.5t48.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-7 0 -7 -269v-240q0 -84 -17 -153t-69 -125q-60 -64 -109 -64q-19 0 -36 7t-17 17z" />
<glyph unicode="&#x135;" horiz-adv-x="292" d="M27 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM5 -255q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 9 -2.5 56.5 t-4.5 145t-2 229.5q0 49 -2 76q-1 14 -9 14q-3 0 -34 -1.5t-36 -1.5q-3 0 -3 4q0 5 4 15q0 1 1 3q2 6 14 6q22 0 52.5 1.5l51 2.5t21.5 1q7 0 7 -23q0 -20 2.5 -136.5t2.5 -191.5q0 -90 -10.5 -145t-43.5 -98q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20z" />
<glyph unicode="&#x136;" horiz-adv-x="650" d="M282 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM40 15q0 9 3 10.5t15 1.5h55q8 0 8 170v290q0 147 -8 147h-44 q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 45.5 -1.5t56.5 -1.5q16 0 55.5 1.5t50.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-54q-14 0 -14 -158v-125q0 -8 0.5 -11.5t3.5 -6t9 -2.5h22q11 0 57 56t107.5 139l64.5 87q9 13 9 16q0 5 -15 5h-37 q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 37 -1.5t48 -1.5q16 0 42.5 1.5t37.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-49l-40 -48l-97.5 -116l-78.5 -94q-3 -3 -4 -5t-2 -3t0 -2.5t1.5 -2.5t3 -4t4.5 -5l269 -310q15 -17 31 -17h14 q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -47.5 1.5t-52.5 1.5t-52.5 -1.5t-47.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h30q17 0 17 4l-12 14l-217 257q-7 8 -22 8h-20q-9 0 -11.5 -1.5t-2.5 -10.5q0 -271 11 -271h73q8 0 9.5 -2t1.5 -11q0 -11 -2 -14 t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-60 -1.5t-55 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x137;" horiz-adv-x="449" d="M174 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM10 649v9q0 13 12 14q114 9 131 9q5 0 6 -2t1 -11l-11 -448 q0 -8 2.5 -9.5t13.5 -1.5h22q4 0 7.5 1t7 4.5l5 5t5.5 6t4 5.5q53 70 79 113q3 5 3.5 6.5t1.5 4t-0.5 3.5t-5 1.5t-9.5 0.5h-20q-8 0 -10.5 3t-2.5 10q0 14 14 14q4 0 25 -1t33 -1q10 0 30 1t27 1q13 0 13 -14q0 -13 -12 -13h-32q-11 0 -107 -123q-2 -2 -5 -6q-3 -3 -4 -4.5 t0.5 -4t3.5 -4.5l5 -5l151 -175q11 -13 22 -13h10q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2t-29.5 1t-37.5 1t-38 -1t-30 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h11q17 0 5 15l-110 136q-2 2 -4 5q-9 12 -18 12h-14q-8 0 -9.5 -3t-1.5 -13v-134q0 -13 1.5 -15.5 t9.5 -2.5h23q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -30 1t-38 1q-19 0 -48 -1t-32 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h41q7 0 8.5 3t1.5 15v193q0 408 -9 408q-2 0 -26 -1.5t-30 -1.5q-7 0 -8.5 1.5t-1.5 6.5z" />
<glyph unicode="&#x138;" horiz-adv-x="449" d="M12 350q0 6 4 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5t2 -7.5v-3v-150q0 -8 2.5 -9.5t13.5 -1.5h22q4 0 7.5 1t7 4.5l5 5t5.5 6t4 5.5q53 70 79 113q3 5 3.5 6.5t1.5 4t-0.5 3.5t-5 1.5t-9.5 0.5h-20q-8 0 -10.5 3t-2.5 10q0 14 14 14q4 0 25 -1t33 -1 q10 0 30 1t27 1q13 0 13 -14q0 -13 -12 -13h-32q-11 0 -107 -123q-2 -2 -5 -6q-3 -3 -4 -4.5t0.5 -4t3.5 -4.5l5 -5l151 -175q11 -13 22 -13h10q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2t-29.5 1t-37.5 1t-38 -1t-30 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h11 q17 0 5 15l-110 136q-2 2 -4 5q-9 12 -18 12h-14q-8 0 -9.5 -3t-1.5 -13v-134q0 -13 1.5 -15.5t9.5 -2.5h23q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -30 1t-38 1q-19 0 -48 -1t-32 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h41q7 0 8.5 3t1.5 15v119q0 115 -4 174 q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -26.5 -2t-27.5 -2q-3 0 -3 4z" />
<glyph unicode="&#x139;" horiz-adv-x="592" d="M162 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM40 15q0 9 2.5 10.5t14.5 1.5h62q9 0 9 292v231q0 89 -7 89h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 49.5 -1.5t60.5 -1.5q16 0 61.5 1.5t56.5 1.5q12 0 14.5 -2 t2.5 -13q0 -9 -3 -12t-15 -3h-70q-9 0 -9 -215v-277q0 -116 8 -116q227 0 293 6q13 1 17 4t6 19l12 84q2 8 11 8q20 0 20 -10q0 -3 -4.5 -30l-9.5 -60t-7 -44q-1 -11 -22 -11q-11 0 -179.5 1.5t-184.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x13a;" horiz-adv-x="257" d="M106 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5q1 -160 3.5 -332t2.5 -267q0 -39 8 -39h39q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -35.5 1t-43.5 1q-12 0 -44.5 -1t-48.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h52q4 0 4 85q0 395 -11 517q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3z" />
<glyph unicode="&#x13b;" horiz-adv-x="592" d="M278 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM40 15q0 9 2.5 10.5t14.5 1.5h62q9 0 9 292v231q0 89 -7 89h-58 q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 49.5 -1.5t60.5 -1.5q16 0 61.5 1.5t56.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-70q-9 0 -9 -215v-277q0 -116 8 -116q227 0 293 6q13 1 17 4t6 19l12 84q2 8 11 8q20 0 20 -10q0 -3 -4.5 -30l-9.5 -60t-7 -44 q-1 -11 -22 -11q-11 0 -179.5 1.5t-184.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x13c;" horiz-adv-x="257" d="M83 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5 q1 -160 3.5 -332t2.5 -267q0 -39 8 -39h39q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -35.5 1t-43.5 1q-12 0 -44.5 -1t-48.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h52q4 0 4 85q0 395 -11 517q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3z" />
<glyph unicode="&#x13d;" horiz-adv-x="592" d="M345 491q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3zM40 15q0 9 2.5 10.5t14.5 1.5h62q9 0 9 292v231q0 89 -7 89h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 49.5 -1.5t60.5 -1.5q16 0 61.5 1.5t56.5 1.5 q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-70q-9 0 -9 -215v-277q0 -116 8 -116q227 0 293 6q13 1 17 4t6 19l12 84q2 8 11 8q20 0 20 -10q0 -3 -4.5 -30l-9.5 -60t-7 -44q-1 -11 -22 -11q-11 0 -179.5 1.5t-184.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z " />
<glyph unicode="&#x13e;" horiz-adv-x="257" d="M210 491q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3zM20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5q1 -160 3.5 -332t2.5 -267q0 -39 8 -39h39q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4 t-9 -2q-8 0 -35.5 1t-43.5 1q-12 0 -44.5 -1t-48.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h52q4 0 4 85q0 395 -11 517q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3z" />
<glyph unicode="&#x13f;" horiz-adv-x="592" d="M40 15q0 9 2.5 10.5t14.5 1.5h62q9 0 9 292v231q0 89 -7 89h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 49.5 -1.5t60.5 -1.5q16 0 61.5 1.5t56.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-70q-9 0 -9 -215v-277q0 -116 8 -116q227 0 293 6q13 1 17 4t6 19 l12 84q2 8 11 8q20 0 20 -10q0 -3 -4.5 -30l-9.5 -60t-7 -44q-1 -11 -22 -11q-11 0 -179.5 1.5t-184.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5zM417 333q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#x140;" horiz-adv-x="404" d="M282 333q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5q1 -160 3.5 -332t2.5 -267q0 -39 8 -39h39q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -35.5 1t-43.5 1q-12 0 -44.5 -1t-48.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h52q4 0 4 85q0 395 -11 517q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3z" />
<glyph unicode="&#x141;" horiz-adv-x="592" d="M40 15q0 9 2.5 10.5t14.5 1.5h62q7 0 9 194q0 7 -8 4q-76 -36 -77 -36q-3 0 -3 16q0 8 2 10l78 36q8 3 8 15v284q0 89 -7 89h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 49.5 -1.5t60.5 -1.5q16 0 61.5 1.5t56.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-70 q-9 0 -9 -215v-117q0 -8 2.5 -9t9.5 3l95.5 44.5l120.5 56.5l51 23q2 0 2 -12q0 -14 -2 -14l-267 -124q-10 -5 -11 -9q-1 -2 -1 -7v-112q0 -116 8 -116q227 0 293 6q13 1 17 4t6 19l12 84q2 8 11 8q20 0 20 -10q0 -3 -4.5 -30l-9.5 -60t-7 -44q-1 -11 -22 -11 q-11 0 -179.5 1.5t-184.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x142;" horiz-adv-x="257" d="M20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5q0 -131 2 -275q0 -7 2 -7.5t6 2.5q51 30 52 30q3 0 3 -18q0 -8 -1 -9l-52 -30q-9 -5 -9 -12q0 -32 1 -85.5t1.5 -100t0.5 -94.5q0 -39 8 -39h39q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -35.5 1t-43.5 1q-12 0 -44.5 -1t-48.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h52q4 0 4 85q0 9 -2 193q0 8 -8 4l-19.5 -11.5l-26.5 -15.5l-11 -6q-2 0 -2 10q0 16 3 18l56 32q8 5 8 16q-4 219 -9 277q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3z" />
<glyph unicode="&#x143;" horiz-adv-x="814" d="M411 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM40 15q0 9 3 10.5t15 1.5h44q3 0 5 2.5t3 7.5t1.5 11t1 15.5t0.5 18.5t0.5 22.5t0.5 24.5l8 510h-68q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5 q13 0 33.5 1.5t21.5 1.5q10 0 20 -13l406 -499q16 -20 18 -20q4 0 4 28v42q0 49 -1 187t-1 189q0 56 -1 56h-94q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 50.5 -1.5t55.5 -1.5t43.5 1.5t38.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-47q-4 0 -4 -59 q0 -68 -3.5 -209.5l-6.5 -253t-3 -113.5q0 -22 -10 -22q-4 0 -18 16l-492 598q-14 18 -16 18q-3 0 -3 -20q-1 -25 -1 -122q0 -54 -0.5 -175.5t-0.5 -167.5q0 -102 5 -102h86q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5t-43.5 -1.5t-38.5 -1.5 q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x144;" horiz-adv-x="514" d="M257 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 350q0 4 5 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5t2 -7.5v-3v-42q0 -6 13 3l2 2l18 12t23 14.5t23 11.5t31 10t33 3q42 0 69.5 -13 t41 -39.5t18 -55t4.5 -69.5q0 -33 -2.5 -100t-2.5 -70q0 -8 1.5 -10t9.5 -2h30q9 0 11.5 -2t2.5 -11q0 -6 -0.5 -8t-3 -4t-8.5 -2q-8 0 -33.5 1t-41.5 1q-12 0 -40.5 -1t-44.5 -1q-10 0 -12 2t-2 11t2.5 11.5t10.5 2.5h37q7 0 8.5 1.5t2.5 9.5q4 48 4 176q0 130 -96 130 q-33 0 -89 -28q-18 -9 -18 -23q0 -41 -0.5 -123.5t-0.5 -123.5q0 -9 0.5 -12.5t3 -5t9.5 -1.5h36q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -36.5 1t-44.5 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q6 0 7.5 2.5t2.5 11.5v4q5 98 5 194 q0 68 -2 99q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -27 -2t-28 -2q-3 0 -3 4z" />
<glyph unicode="&#x145;" horiz-adv-x="814" d="M360 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM40 15q0 9 3 10.5t15 1.5h44q3 0 5 2.5t3 7.5t1.5 11t1 15.5t0.5 18.5 t0.5 22.5t0.5 24.5l8 510h-68q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 33.5 1.5t21.5 1.5q10 0 20 -13l406 -499q16 -20 18 -20q4 0 4 28v42q0 49 -1 187t-1 189q0 56 -1 56h-94q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 50.5 -1.5t55.5 -1.5 t43.5 1.5t38.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-47q-4 0 -4 -59q0 -68 -3.5 -209.5l-6.5 -253t-3 -113.5q0 -22 -10 -22q-4 0 -18 16l-492 598q-14 18 -16 18q-3 0 -3 -20q-1 -25 -1 -122q0 -54 -0.5 -175.5t-0.5 -167.5q0 -102 5 -102h86q8 0 9.5 -2 t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5t-43.5 -1.5t-38.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x146;" horiz-adv-x="514" d="M210 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 350q0 4 5 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5 t2 -7.5v-3v-42q0 -6 13 3l2 2l18 12t23 14.5t23 11.5t31 10t33 3q42 0 69.5 -13t41 -39.5t18 -55t4.5 -69.5q0 -33 -2.5 -100t-2.5 -70q0 -8 1.5 -10t9.5 -2h30q9 0 11.5 -2t2.5 -11q0 -6 -0.5 -8t-3 -4t-8.5 -2q-8 0 -33.5 1t-41.5 1q-12 0 -40.5 -1t-44.5 -1q-10 0 -12 2 t-2 11t2.5 11.5t10.5 2.5h37q7 0 8.5 1.5t2.5 9.5q4 48 4 176q0 130 -96 130q-33 0 -89 -28q-18 -9 -18 -23q0 -41 -0.5 -123.5t-0.5 -123.5q0 -9 0.5 -12.5t3 -5t9.5 -1.5h36q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -36.5 1t-44.5 1q-12 0 -42 -1t-46 -1 q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q6 0 7.5 2.5t2.5 11.5v4q5 98 5 194q0 68 -2 99q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -27 -2t-28 -2q-3 0 -3 4z" />
<glyph unicode="&#x147;" horiz-adv-x="814" d="M310 837q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM40 15q0 9 3 10.5t15 1.5h44q3 0 5 2.5t3 7.5t1.5 11t1 15.5t0.5 18.5t0.5 22.5t0.5 24.5l8 510h-68q-8 0 -9.5 2t-1.5 11 q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 33.5 1.5t21.5 1.5q10 0 20 -13l406 -499q16 -20 18 -20q4 0 4 28v42q0 49 -1 187t-1 189q0 56 -1 56h-94q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 50.5 -1.5t55.5 -1.5t43.5 1.5t38.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5 t-15 -1.5h-47q-4 0 -4 -59q0 -68 -3.5 -209.5l-6.5 -253t-3 -113.5q0 -22 -10 -22q-4 0 -18 16l-492 598q-14 18 -16 18q-3 0 -3 -20q-1 -25 -1 -122q0 -54 -0.5 -175.5t-0.5 -167.5q0 -102 5 -102h86q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5 t-43.5 -1.5t-38.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x148;" horiz-adv-x="514" d="M162 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 350q0 4 5 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5t2 -7.5v-3v-42 q0 -6 13 3l2 2l18 12t23 14.5t23 11.5t31 10t33 3q42 0 69.5 -13t41 -39.5t18 -55t4.5 -69.5q0 -33 -2.5 -100t-2.5 -70q0 -8 1.5 -10t9.5 -2h30q9 0 11.5 -2t2.5 -11q0 -6 -0.5 -8t-3 -4t-8.5 -2q-8 0 -33.5 1t-41.5 1q-12 0 -40.5 -1t-44.5 -1q-10 0 -12 2t-2 11t2.5 11.5 t10.5 2.5h37q7 0 8.5 1.5t2.5 9.5q4 48 4 176q0 130 -96 130q-33 0 -89 -28q-18 -9 -18 -23q0 -41 -0.5 -123.5t-0.5 -123.5q0 -9 0.5 -12.5t3 -5t9.5 -1.5h36q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -36.5 1t-44.5 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5 t-2 11.5q0 13 12 13h39q6 0 7.5 2.5t2.5 11.5v4q5 98 5 194q0 68 -2 99q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -27 -2t-28 -2q-3 0 -3 4z" />
<glyph unicode="&#x149;" horiz-adv-x="723" d="M234 350q0 4 5 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5t2 -7.5v-3v-42q0 -6 13 3l2 2l18 12t23 14.5t23 11.5t31 10t33 3q42 0 69.5 -13t41 -39.5t18 -55t4.5 -69.5q0 -33 -2.5 -100t-2.5 -70q0 -8 1.5 -10t9.5 -2h30q9 0 11.5 -2t2.5 -11q0 -6 -0.5 -8 t-3 -4t-8.5 -2q-8 0 -33.5 1t-41.5 1q-12 0 -40.5 -1t-44.5 -1q-10 0 -12 2t-2 11t2.5 11.5t10.5 2.5h37q8 0 9 1.5t2 9.5q4 48 4 176q0 130 -96 130q-33 0 -89 -28q-18 -9 -18 -23q0 -41 -0.5 -123.5t-0.5 -123.5q0 -9 0.5 -12.5t3 -5t9.5 -1.5h36q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -36.5 1t-44.5 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q6 0 7.5 2.5t2.5 11.5v4q5 98 5 194q0 68 -2 99q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -27 -2t-28 -2q-3 0 -3 4zM60 453q0 1 17 17t34.5 37t17.5 36q0 13 -24 39 t-24 39q0 16 17 39t30 23q7 0 29 -34t22 -51q0 -32 -24.5 -72.5t-49 -65.5t-29.5 -25t-10.5 6.5t-5.5 11.5z" />
<glyph unicode="&#x14a;" horiz-adv-x="814" d="M40 15q0 9 3 10.5t15 1.5h44q3 0 5 2.5t3 7.5t1.5 11t1 15.5t0.5 18.5t0.5 22.5t0.5 24.5l8 510h-68q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 33.5 1.5t21.5 1.5q10 0 20 -13l406 -499q16 -20 18 -20q4 0 4 28v42q0 49 -1 187t-1 189 q0 56 -1 56h-94q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 50.5 -1.5t55.5 -1.5t43.5 1.5t38.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-47q-4 0 -4 -59q0 -68 -3.5 -209.5l-6.5 -253t-3 -113.5q0 -152 -52 -220q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20 q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 11 -1 40.5l-2.5 71.5l-2.5 71q-1 37 -15 54l-438 532q-14 18 -16 18q-3 0 -3 -20q-1 -25 -1 -122q0 -54 -0.5 -175.5t-0.5 -167.5q0 -102 5 -102h86q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -50.5 1.5t-55.5 1.5t-43.5 -1.5t-38.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x14b;" horiz-adv-x="514" d="M25 350q0 4 5 16q2 6 3.5 6.5t11.5 1.5q5 0 47 3t58 4q9 1 11 -0.5t2 -7.5v-3v-42q0 -6 13 3l2 2l18 12t23 14.5t23 11.5t31 10t33 3q42 0 69.5 -13t41 -39.5t18 -55t4.5 -69.5v-174q0 -91 -10.5 -148.5t-43.5 -100.5q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20 q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 10 -2.5 76.5t-3.5 106.5q-2 79 -2 202q0 130 -96 130q-33 0 -89 -28q-18 -9 -18 -23q0 -41 -0.5 -123.5t-0.5 -123.5q0 -9 0.5 -12.5t3 -5t9.5 -1.5h36q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4 t-9 -2q-8 0 -36.5 1t-44.5 1q-12 0 -42 -1t-46 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q6 0 7.5 2.5t2.5 11.5v4q5 98 5 194q0 68 -2 99q-1 11 -2.5 12.5t-9.5 1.5q-1 0 -27 -2t-28 -2q-3 0 -3 4z" />
<glyph unicode="&#x14c;" horiz-adv-x="752" d="M273 788v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242t-242.5 -93q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94 q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#x14d;" horiz-adv-x="446" d="M128 518v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153t-144 -59q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17 t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#x14e;" horiz-adv-x="752" d="M272 832q0 6 1 6h17q1 0 2 -6t4.5 -15t10.5 -17.5t24.5 -14.5t43.5 -6t43.5 6t24.5 14.5t10.5 17.5t4.5 15t2 6h17q1 0 1 -6q0 -45 -26 -74t-77 -29t-77 29t-26 74zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242t-242.5 -93q-83 0 -155.5 36.5 t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#x14f;" horiz-adv-x="446" d="M127 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM30 183q0 90 57 151.5t148 61.5q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153t-144 -59 q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#x150;" horiz-adv-x="752" d="M298 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM418 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM45 318q0 158 99 257.5t241 99.5q145 0 233.5 -101t88.5 -250t-94.5 -242 t-242.5 -93q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -140 63 -234t169 -94q79 0 136 48t82.5 118t25.5 150t-25 149.5t-81 117t-134 47.5q-103 0 -169.5 -91t-66.5 -211z" />
<glyph unicode="&#x151;" horiz-adv-x="446" d="M150 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM260 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM30 183q0 90 57 151.5t148 61.5 q80 0 130.5 -57.5t50.5 -141.5q0 -94 -53 -153t-144 -59q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201z" />
<glyph unicode="&#x152;" horiz-adv-x="996" d="M45 318q0 158 99 257.5t241 99.5q33 0 92 -6.5t81 -6.5q28 0 128.5 1.5t120.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -272 7q-7 0 -7 -128q0 -42 2 -142 q0 -10 1.5 -13t10.5 -3h167q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -50t1 -33q0 -8 -13 -8q-18 0 -18 9v46q0 7 -2 10t-15 6.5t-38 3.5h-163q-12 0 -14 -2t-2 -13q1 -53 1.5 -130t1 -111.5t3.5 -34.5q27 0 68.5 0.5l81 1t75 0.5t58.5 0.5t24 0.5 q12 0 15 3t4 20q1 14 3 87q0 8 14 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-11 0 -182.5 1.5t-187.5 1.5q-45 0 -100 -5.5t-96 -5.5q-83 0 -155.5 36.5t-121 113.5t-48.5 179zM139 345q0 -110 40.5 -193.5t112.5 -116.5q41 -19 133 -19q29 0 51 5.5t31.5 11.5 t9.5 12q0 21 -0.5 75t-0.5 78q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5v93q0 15 -1.5 24.5t-2 15t-8.5 9t-10 4.5t-17 3t-21 3q-18 3 -74 3q-104 0 -171.5 -90.5t-67.5 -211.5z" />
<glyph unicode="&#x153;" horiz-adv-x="733" d="M30 183q0 90 57 151.5t148 61.5q83 0 136 -64q9 -11 11 -11q1 0 12 11q58 64 149 64q71 0 110 -46t39 -113q0 -5 -20 -8.5t-34 -3.5q-6 0 -113 2.5t-111 2.5q-5 0 -5 -36q0 -76 44.5 -120.5t104.5 -44.5q22 0 43.5 6.5t36 16.5t25.5 19.5t17 16.5l7 6q2 0 9 -6.5t7 -8.5 q0 -5 -21 -26.5t-64 -44.5t-88 -23q-95 0 -144 62l-12 15q-1 0 -10 -12q-46 -65 -145 -65q-80 0 -134.5 58t-54.5 140zM101 169q0 -62 31.5 -110t86.5 -48q36 0 61.5 17t38.5 46.5t18.5 61t5.5 68.5q0 66 -31 116t-89 50q-122 0 -122 -201zM414 255q0 -8 12 -8q57 0 157 4 q40 1 40 4q0 65 -29.5 92t-62.5 27q-46 0 -80 -38.5t-37 -80.5z" />
<glyph unicode="&#x154;" horiz-adv-x="641" d="M287 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q16 0 75 3t70 3q42 0 77 -7.5t68.5 -25t53 -52.5t19.5 -85q0 -32 -14.5 -61t-37.5 -49t-42.5 -32t-39.5 -21 q-5 -3 -10.5 -4.5t-7.5 -2.5l-2 -1l2 -1q2 0 7 -1t11 -3q160 -48 167 -230q2 -44 4 -54.5t10 -10.5h46q7 0 9.5 -3.5t2.5 -18.5q0 -8 -17 -8l-133 3q-5 0 -6.5 1t-1.5 7v58q0 43 -2 72t-12 64.5t-27.5 57t-51 36.5t-80.5 16q-10 0 -43.5 0.5t-48.5 0.5q-11 0 -11 -11 q0 -62 3.5 -168.5t7.5 -106.5h61q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -51.5 1.5t-56.5 1.5q-18 0 -57 -1.5t-41 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h45q5 0 5 129v133q0 345 -12 345l-55 -2q-20 0 -20 17zM207 345q0 -6 3 -8t13 -2q20 0 65 -0.5 t63 -1.5q10 0 12 1q88 40 88 150q0 71 -55.5 114.5t-129.5 43.5q-18 0 -52 -2q-7 0 -7 -54v-241z" />
<glyph unicode="&#x155;" horiz-adv-x="329" d="M166 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM25 353q0 5 3 12q2 6 3.5 6.5t11.5 1.5q42 3 105 3q10 0 11 -0.5t1 -4.5v-5q0 -10 -0.5 -32t-0.5 -32q0 -18 1 -18t2.5 4t3 10.5t3.5 10.5q17 39 43 62 t50 23q20 0 38.5 -16t18.5 -27q0 -9 -13 -25t-24 -16q-12 0 -31 15.5t-29 15.5q-57 0 -57 -204q0 -112 12 -112h63q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h43q9 0 9 137q0 189 -7 189 q-1 0 -31.5 -1t-32.5 -1q-3 0 -3 4z" />
<glyph unicode="&#x156;" horiz-adv-x="641" d="M308 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q16 0 75 3t70 3 q42 0 77 -7.5t68.5 -25t53 -52.5t19.5 -85q0 -32 -14.5 -61t-37.5 -49t-42.5 -32t-39.5 -21q-5 -3 -10.5 -4.5t-7.5 -2.5l-2 -1l2 -1q2 0 7 -1t11 -3q160 -48 167 -230q2 -44 4 -54.5t10 -10.5h46q7 0 9.5 -3.5t2.5 -18.5q0 -8 -17 -8l-133 3q-5 0 -6.5 1t-1.5 7v58 q0 43 -2 72t-12 64.5t-27.5 57t-51 36.5t-80.5 16q-10 0 -43.5 0.5t-48.5 0.5q-11 0 -11 -11q0 -62 3.5 -168.5t7.5 -106.5h61q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -51.5 1.5t-56.5 1.5q-18 0 -57 -1.5t-41 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h45 q5 0 5 129v133q0 345 -12 345l-55 -2q-20 0 -20 17zM207 345q0 -6 3 -8t13 -2q20 0 65 -0.5t63 -1.5q10 0 12 1q88 40 88 150q0 71 -55.5 114.5t-129.5 43.5q-18 0 -52 -2q-7 0 -7 -54v-241z" />
<glyph unicode="&#x157;" horiz-adv-x="329" d="M90 -225l14 10q15 10 30 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 353q0 5 3 12q2 6 3.5 6.5t11.5 1.5q42 3 105 3q10 0 11 -0.5t1 -4.5v-5 q0 -10 -0.5 -32t-0.5 -32q0 -18 1 -18t2.5 4t3 10.5t3.5 10.5q17 39 43 62t50 23q20 0 38.5 -16t18.5 -27q0 -9 -13 -25t-24 -16q-12 0 -31 15.5t-29 15.5q-57 0 -57 -204q0 -112 12 -112h63q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -41 -1 t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h43q9 0 9 137q0 189 -7 189q-1 0 -31.5 -1t-32.5 -1q-3 0 -3 4z" />
<glyph unicode="&#x158;" horiz-adv-x="641" d="M186 837q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q16 0 75 3t70 3q42 0 77 -7.5t68.5 -25t53 -52.5t19.5 -85 q0 -32 -14.5 -61t-37.5 -49t-42.5 -32t-39.5 -21q-5 -3 -10.5 -4.5t-7.5 -2.5l-2 -1l2 -1q2 0 7 -1t11 -3q160 -48 167 -230q2 -44 4 -54.5t10 -10.5h46q7 0 9.5 -3.5t2.5 -18.5q0 -8 -17 -8l-133 3q-5 0 -6.5 1t-1.5 7v58q0 43 -2 72t-12 64.5t-27.5 57t-51 36.5t-80.5 16 q-10 0 -43.5 0.5t-48.5 0.5q-11 0 -11 -11q0 -62 3.5 -168.5t7.5 -106.5h61q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -51.5 1.5t-56.5 1.5q-18 0 -57 -1.5t-41 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h45q5 0 5 129v133q0 345 -12 345l-55 -2q-20 0 -20 17 zM207 345q0 -6 3 -8t13 -2q20 0 65 -0.5t63 -1.5q10 0 12 1q88 40 88 150q0 71 -55.5 114.5t-129.5 43.5q-18 0 -52 -2q-7 0 -7 -54v-241z" />
<glyph unicode="&#x159;" horiz-adv-x="329" d="M71 597q0 2 5 2h12l8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 353q0 5 3 12q2 6 3.5 6.5t11.5 1.5q42 3 105 3q10 0 11 -0.5t1 -4.5v-5q0 -10 -0.5 -32 t-0.5 -32q0 -18 1 -18t2.5 4t3 10.5t3.5 10.5q17 39 43 62t50 23q20 0 38.5 -16t18.5 -27q0 -9 -13 -25t-24 -16q-12 0 -31 15.5t-29 15.5q-57 0 -57 -204q0 -112 12 -112h63q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -41 -1t-45 -1 q-9 0 -11 2.5t-2 11.5q0 13 12 13h43q9 0 9 137q0 189 -7 189q-1 0 -31.5 -1t-32.5 -1q-3 0 -3 4z" />
<glyph unicode="&#x15a;" horiz-adv-x="528" d="M259 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM55 488q0 81 65 135t149 54q73 0 135 -42q10 -8 16 -8t7 10l1 11q0 9 2 11.5t13 2.5q12 0 15.5 -2.5t3.5 -11.5l-2 -63q-3 -63 -3 -94q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5 t-3 9.5q0 1 1.5 30t1.5 34q0 22 -51.5 60t-102.5 38q-57 0 -95 -37t-38 -92q0 -43 26.5 -73.5t65.5 -46l85.5 -34t85.5 -37.5t65.5 -58t26.5 -93q0 -88 -67.5 -140.5t-156.5 -52.5q-51 0 -99 9.5t-73 20t-26 16.5l-3.5 48l-4.5 62t-2 34q0 14 12 14h5q15 0 16 -16l6 -92 q1 -21 65.5 -42t112.5 -21q54 0 93.5 35t39.5 86q0 42 -26.5 72t-66 46.5l-85.5 36.5t-85.5 40t-66 60t-26.5 94z" />
<glyph unicode="&#x15b;" horiz-adv-x="337" d="M154 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM35 50q0 11 11.5 24.5t18.5 13.5q3 0 5 -3.5t5.5 -10.5t8.5 -13q42 -50 93 -50q28 0 47 16.5t19 48.5t-23 51.5t-66 37.5q-2 1 -18 8t-19 8.5t-17 8 t-17.5 10t-13.5 11t-13.5 14t-9 15t-7 18.5t-1.5 22q0 48 44 80.5t100 32.5q51 0 77.5 -22.5t26.5 -44.5q0 -7 -15 -13t-25 -6q-7 0 -12.5 10t-10 22.5t-18.5 22.5t-36 10q-29 0 -51 -17t-22 -53q0 -15 5.5 -27t21 -22.5t24 -15t31.5 -15.5q33 -16 45.5 -22.5t36 -22.5 t33 -33t9.5 -38q0 -53 -41.5 -85.5t-99.5 -32.5q-46 0 -86 19.5t-40 42.5z" />
<glyph unicode="&#x15c;" horiz-adv-x="528" d="M158 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM55 488q0 81 65 135t149 54q73 0 135 -42q10 -8 16 -8t7 10l1 11q0 9 2 11.5t13 2.5q12 0 15.5 -2.5t3.5 -11.5l-2 -63 q-3 -63 -3 -94q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 1.5 30t1.5 34q0 22 -51.5 60t-102.5 38q-57 0 -95 -37t-38 -92q0 -43 26.5 -73.5t65.5 -46l85.5 -34t85.5 -37.5t65.5 -58t26.5 -93q0 -88 -67.5 -140.5t-156.5 -52.5q-51 0 -99 9.5t-73 20t-26 16.5 l-3.5 48l-4.5 62t-2 34q0 14 12 14h5q15 0 16 -16l6 -92q1 -21 65.5 -42t112.5 -21q54 0 93.5 35t39.5 86q0 42 -26.5 72t-66 46.5l-85.5 36.5t-85.5 40t-66 60t-26.5 94z" />
<glyph unicode="&#x15d;" horiz-adv-x="337" d="M59 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM35 50q0 11 11.5 24.5t18.5 13.5q3 0 5 -3.5t5.5 -10.5t8.5 -13q42 -50 93 -50q28 0 47 16.5 t19 48.5t-23 51.5t-66 37.5q-2 1 -18 8t-19 8.5t-17 8t-17.5 10t-13.5 11t-13.5 14t-9 15t-7 18.5t-1.5 22q0 48 44 80.5t100 32.5q51 0 77.5 -22.5t26.5 -44.5q0 -7 -15 -13t-25 -6q-7 0 -12.5 10t-10 22.5t-18.5 22.5t-36 10q-29 0 -51 -17t-22 -53q0 -15 5.5 -27 t21 -22.5t24 -15t31.5 -15.5q33 -16 45.5 -22.5t36 -22.5t33 -33t9.5 -38q0 -53 -41.5 -85.5t-99.5 -32.5q-46 0 -86 19.5t-40 42.5z" />
<glyph unicode="&#x15e;" horiz-adv-x="528" d="M55 488q0 81 65 135t149 54q73 0 135 -42q10 -8 16 -8t7 10l1 11q0 9 2 11.5t13 2.5q12 0 15.5 -2.5t3.5 -11.5l-2 -63q-3 -63 -3 -94q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 1.5 30t1.5 34q0 22 -51.5 60t-102.5 38q-57 0 -95 -37t-38 -92q0 -43 26.5 -73.5 t65.5 -46l85.5 -34t85.5 -37.5t65.5 -58t26.5 -93q0 -85 -62.5 -137t-148.5 -56l-19 -50q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l9 -3q8 -4 22 -8t29 -4q34 0 50 13.5t16 42.5 q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5q0 3 35 92q-50 0 -97 10t-71 20t-25 16l-3.5 48l-4.5 62t-2 34q0 14 12 14h5q15 0 16 -16l6 -92q1 -21 65.5 -42t112.5 -21q54 0 93.5 35t39.5 86q0 42 -26.5 72t-66 46.5l-85.5 36.5t-85.5 40t-66 60t-26.5 94z " />
<glyph unicode="&#x15f;" horiz-adv-x="337" d="M35 50q0 11 11.5 24.5t18.5 13.5q3 0 5 -3.5t5.5 -10.5t8.5 -13q42 -50 93 -50q28 0 47 16.5t19 48.5t-23 51.5t-66 37.5q-2 1 -18 8t-19 8.5t-17 8t-17.5 10t-13.5 11t-13.5 14t-9 15t-7 18.5t-1.5 22q0 48 44 80.5t100 32.5q51 0 77.5 -22.5t26.5 -44.5q0 -7 -15 -13 t-25 -6q-7 0 -12.5 10t-10 22.5t-18.5 22.5t-36 10q-29 0 -51 -17t-22 -53q0 -15 5.5 -27t21 -22.5t24 -15t31.5 -15.5q33 -16 45.5 -22.5t36 -22.5t33 -33t9.5 -38q0 -48 -35 -80t-87 -37l-20 -54q-2 -9 0 -9l6 2q5 1 13.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47 q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l8 -3q9 -4 23 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5q0 6 36 95h-1q-46 0 -86 19.5t-40 42.5z" />
<glyph unicode="&#x160;" horiz-adv-x="528" d="M158 837q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM55 488q0 81 65 135t149 54q73 0 135 -42q10 -8 16 -8t7 10l1 11q0 9 2 11.5t13 2.5q12 0 15.5 -2.5t3.5 -11.5l-2 -63 q-3 -63 -3 -94q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 1.5 30t1.5 34q0 22 -51.5 60t-102.5 38q-57 0 -95 -37t-38 -92q0 -43 26.5 -73.5t65.5 -46l85.5 -34t85.5 -37.5t65.5 -58t26.5 -93q0 -88 -67.5 -140.5t-156.5 -52.5q-51 0 -99 9.5t-73 20t-26 16.5 l-3.5 48l-4.5 62t-2 34q0 14 12 14h5q15 0 16 -16l6 -92q1 -21 65.5 -42t112.5 -21q54 0 93.5 35t39.5 86q0 42 -26.5 72t-66 46.5l-85.5 36.5t-85.5 40t-66 60t-26.5 94z" />
<glyph unicode="&#x161;" horiz-adv-x="337" d="M59 597q0 2 5 2h12l8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM35 50q0 11 11.5 24.5t18.5 13.5q3 0 5 -3.5t5.5 -10.5t8.5 -13q42 -50 93 -50q28 0 47 16.5 t19 48.5t-23 51.5t-66 37.5q-2 1 -18 8t-19 8.5t-17 8t-17.5 10t-13.5 11t-13.5 14t-9 15t-7 18.5t-1.5 22q0 48 44 80.5t100 32.5q51 0 77.5 -22.5t26.5 -44.5q0 -7 -15 -13t-25 -6q-7 0 -12.5 10t-10 22.5t-18.5 22.5t-36 10q-29 0 -51 -17t-22 -53q0 -15 5.5 -27 t21 -22.5t24 -15t31.5 -15.5q33 -16 45.5 -22.5t36 -22.5t33 -33t9.5 -38q0 -53 -41.5 -85.5t-99.5 -32.5q-46 0 -86 19.5t-40 42.5z" />
<glyph unicode="&#x162;" horiz-adv-x="690" d="M20 544l4 22q3 21 7 52.5t6 53.5q1 10 3 12t13 2q13 0 13 -6v-11q0 -6 108 -6h357q108 0 109 11q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 8 -113 8h-116q-3 0 -5 -10t-3 -30.5t-1 -36t-0.5 -44 t-0.5 -37.5l-1 -29q0 -28 -1 -72.5t-2 -94.5t-1.5 -102t-0.5 -87q0 -65 2 -65h74q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-9 0 -50.5 1.5t-59.5 1.5l-24 -65q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5 t-30 12.5t-9.5 9q0 11 8 11l9 -3q8 -4 22 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5t41 107q-18 0 -61.5 -1.5t-52.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h62q7 0 10.5 192.5t3.5 325.5q0 90 -7 90h-144 q-96 0 -97 -13l-7 -70q-1 -17 -13 -17q-20 0 -20 9z" />
<glyph unicode="&#x163;" horiz-adv-x="289" d="M35 344q0 5 3 8l91 127q3 5 9 5q10 0 10 -10q0 -1 -1.5 -20.5t-3 -42t-1.5 -29.5t2 -8.5t9 -1.5h95q9 0 10.5 -2t-1.5 -16q-4 -16 -13 -16h-99q-3 0 -3 -46v-192q0 -20 2 -31t13 -21t33 -10q23 0 52 8l28 8q4 0 4 -16q0 -3 -18.5 -12.5t-46.5 -20t-48 -13.5l-21 -57 q-2 -9 0 -9l6 2q5 1 13.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l8 -3q9 -4 23 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5q0 2 37 98 q-36 1 -51.5 21.5t-15.5 47.5q2 144 2 216q0 61 -12 61h-25q-6 0 -6 7z" />
<glyph unicode="&#x164;" horiz-adv-x="690" d="M234 834q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM20 544l4 22q3 21 7 52.5t6 53.5q1 10 3 12t13 2q13 0 13 -6v-11q0 -6 108 -6h357q108 0 109 11q1 12 13 12q11 0 14 -2 t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 8 -113 8h-116q-3 0 -5 -10t-3 -30.5t-1 -36t-0.5 -44t-0.5 -37.5l-1 -29q0 -28 -1 -72.5t-2 -94.5t-1.5 -102t-0.5 -87q0 -65 2 -65h74q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -57.5 1.5t-62.5 1.5t-63 -1.5t-58 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h62q7 0 10.5 192.5t3.5 325.5q0 90 -7 90h-144q-96 0 -97 -13l-7 -70q-1 -17 -13 -17q-20 0 -20 9z" />
<glyph unicode="&#x165;" horiz-adv-x="289" d="M189 491q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3zM35 344q0 5 3 8l91 127q3 5 9 5q10 0 10 -10q0 -1 -1.5 -20.5t-3 -42t-1.5 -29.5t2 -8.5t9 -1.5h95q9 0 10.5 -2t-1.5 -16q-4 -16 -13 -16h-99q-3 0 -3 -46 v-192q0 -20 2 -31t13 -21t33 -10q23 0 52 8l28 8q4 0 4 -16q0 -3 -22.5 -14t-53.5 -22t-50 -11q-39 0 -55.5 20.5t-16.5 48.5q2 144 2 216q0 61 -12 61h-25q-6 0 -6 7z" />
<glyph unicode="&#x166;" horiz-adv-x="690" d="M20 544l4 22q3 21 7 52.5t6 53.5q1 10 3 12t13 2q13 0 13 -6v-11q0 -6 108 -6h357q108 0 109 11q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 8 -113 8h-116q-3 0 -5 -10t-3 -30.5t-1 -36t-0.5 -44 t-0.5 -37.5l-1 -15q0 -14 -0.5 -42t-0.5 -56q0 -7 1 -8t8 -1h156q3 0 3 -12t-3 -12h-156q-7 0 -8.5 -2t-1.5 -9q0 -27 -1 -76.5t-1.5 -87t-0.5 -64.5q0 -65 2 -65h74q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-63 -1.5t-58 -1.5q-10 0 -12 2.5 t-2 15.5q0 9 3 10.5t15 1.5h62q8 0 12 293q0 7 -1.5 9t-8.5 2h-153q-2 0 -2.5 12t2.5 12h157q7 0 7 9q1 76 1 181q0 90 -7 90h-144q-96 0 -97 -13l-7 -70q-1 -17 -13 -17q-20 0 -20 9z" />
<glyph unicode="&#x167;" horiz-adv-x="289" d="M35 344q0 5 3 8l91 127q3 5 9 5q10 0 10 -10q0 -1 -1.5 -20.5t-3 -42t-1.5 -29.5t2 -8.5t9 -1.5h95q9 0 10.5 -2t-1.5 -16q-4 -16 -13 -16h-99q-3 0 -3 -46v-68q0 -7 1 -8t8 -1h101q3 0 3 -12t-3 -12h-101q-9 0 -9 -7v-84q0 -20 2 -31t13 -21t33 -10q23 0 52 8l28 8 q4 0 4 -16q0 -3 -22.5 -14t-53.5 -22t-50 -11q-39 0 -55.5 20.5t-16.5 48.5q0 17 0.5 60t0.5 64q0 7 -10 7h-29q-2 0 -2.5 12t2.5 12h29q8 0 9.5 1t1.5 8v52q0 61 -12 61h-25q-6 0 -6 7z" />
<glyph unicode="&#x168;" horiz-adv-x="755" d="M279 748q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5 q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x169;" horiz-adv-x="510" d="M135 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67 q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5 t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#x16a;" horiz-adv-x="755" d="M282 788v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5 q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69 t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x16b;" horiz-adv-x="510" d="M138 518v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5 q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5 q-4 0 -4 5z" />
<glyph unicode="&#x16c;" horiz-adv-x="755" d="M281 832q0 6 1 6h17q1 0 2 -6t4.5 -15t10.5 -17.5t24.5 -14.5t43.5 -6t43.5 6t24.5 14.5t10.5 17.5t4.5 15t2 6h17q1 0 1 -6q0 -45 -26 -74t-77 -29t-77 29t-26 74zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157 t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x16d;" horiz-adv-x="510" d="M137 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118 q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5 q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#x16e;" horiz-adv-x="755" d="M313 785q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM341 785q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5t-3 72.5 q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x16f;" horiz-adv-x="510" d="M169 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM197 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67 q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5 t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#x170;" horiz-adv-x="755" d="M307 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM427 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5 t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20q-40 -23 -96.5 -40t-109.5 -17q-59 0 -100.5 14t-64 34t-35.5 54t-16 63.5 t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x171;" horiz-adv-x="510" d="M160 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM270 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM15 360q0 4 3 11q2 6 4 7t11 2 q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4q-102 -15 -104 -15q-10 0 -11 13 q-3 38 -4 38l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5q-34 0 -57 11t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#x172;" horiz-adv-x="755" d="M40 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 59.5 1.5t54.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-65q-6 0 -10 -166.5t-4 -239.5q0 -97 48 -145.5t153 -48.5q92 0 172 54q17 11 20 23q5 17 5 136v305q0 82 -7 82h-49q-8 0 -11 0.5t-6 4 t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 44.5 -1.5t55.5 -1.5t46 1.5t32 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-24q-3 0 -5 -17t-3 -51t-1.5 -69t-1.5 -88.5t-2 -91.5q-1 -57 -3 -128t-3 -113t-1 -51q0 -32 -21 -32q-10 0 -30 36.5t-32 36.5q-10 0 -46 -20 q-10 -6 -60.5 -28t-69.5 -45q-63 -74 -63 -140q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5t19 68.5t36.5 52.5t63.5 62q9 8 5 8q-2 0 -11 -2q-32 -6 -62 -6q-59 0 -100.5 14t-64 34 t-35.5 54t-16 63.5t-3 72.5q0 11 0.5 157t0.5 191q0 59 -5 59h-37q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x173;" horiz-adv-x="510" d="M15 360q0 4 3 11q2 6 4 7t11 2q88 4 110 4q7 0 7 -6v-272q0 -67 111 -67q91 0 91 16v118q0 186 -8 186q-1 0 -25.5 -1t-26.5 -1q-4 0 -4 4q2 17 6 19q2 1 7 1q95 5 113 5q7 0 7 -6q-1 -239 -1 -301q0 -37 3.5 -48t15.5 -11q2 0 21 3t20 3q5 0 5 -10t-2 -12t-12 -4l-37 -6 q-44 -6 -58 -20q-58 -61 -58 -141q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 29 15 60t30 49t50 57q7 9 7 15q0 49 -4 49l-26 -12q-25 -12 -64.5 -23.5t-72.5 -11.5q-34 0 -57 11 t-33.5 31t-14.5 41t-4 50v157q0 77 -12 77q-1 0 -24 -0.5t-25 -0.5q-4 0 -4 5z" />
<glyph unicode="&#x174;" horiz-adv-x="1008" d="M391 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM10 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 41 -1.5t52 -1.5q16 0 54.5 1.5t49.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5 t-15.5 -1.5h-50q-10 0 -10 -9t27 -99l47.5 -155l50.5 -158t23 -71q12 -36 13 -36q2 0 16 36l143 365q5 13 5 18q0 4 -3.5 14t-5.5 17q-22 78 -27 78h-60q-7 0 -10 0.5t-5 4t-2 10.5q0 11 3 13t14 2q6 0 50 -1.5t61 -1.5q16 0 62.5 1.5t57.5 1.5q10 0 12 -2.5t2 -15.5 q0 -8 -3 -10t-14 -2h-64q-3 0 -3 -9q0 -27 18 -99l32.5 -116l34.5 -120.5l28.5 -98.5t14.5 -49l4 -14t3.5 -11.5l3 -9l2.5 -7.5t2 -5.5t2 -3.5t2 -1q2 0 22 50l35.5 93.5l46 122l39 108t33.5 102t11 52.5q0 16 -9 16h-65q-7 0 -10 0.5t-5 4t-2 10.5q0 11 3 13t14 2 q6 0 46 -1.5t57 -1.5q18 0 42 1.5t26 1.5q10 0 12 -2.5t2 -13.5q0 -9 -3 -11.5t-15 -2.5q-13 0 -19.5 -2.5t-9 -6t-7.5 -14.5l-221 -543q-4 -11 -8 -17.5t-9.5 -13l-9.5 -11.5l-11 -17t-9 -14t-7 -10.5t-7 -7.5t-7 -2q-8 0 -14.5 14t-18 55.5t-19.5 65.5q0 1 -14 51l-37 132 l-41 147q-7 25 -10 25t-12 -25l-142 -372q-4 -11 -8 -17.5t-9.5 -13l-9.5 -11.5l-11 -17t-9 -14t-7 -10.5t-7 -7.5t-7 -2q-8 0 -14.5 14t-18 55.5t-19.5 65.5q0 1 -16.5 56.5l-39.5 131.5l-46.5 152.5l-40.5 130t-19 53.5h-35q-8 0 -11 0.5t-6 4t-3 10.5z" />
<glyph unicode="&#x175;" horiz-adv-x="697" d="M257 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 368q0 6 0.5 8t3.5 4t9 2q8 0 29.5 -1t37.5 -1q13 0 45 1t40 1q9 0 11 -2.5t2 -11.5 q0 -13 -12 -13h-25q-18 0 -18 -8q0 -2 15.5 -52.5t37.5 -115t35 -95.5q7 -16 9 -16q4 0 13 23q68 172 80 206q7 18 7 27q0 6 -5 16q-8 15 -34 15h-10q-8 0 -10.5 3t-2.5 10q0 6 0.5 8t3.5 4t9 2q11 0 33 -1t40 -1q13 0 35.5 1t34.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-21 q-13 0 -13 -8q0 -2 14.5 -52.5t35 -115t32.5 -95.5q10 -23 12 -23t11 22q18 43 51 143.5t33 117.5q0 11 -12 11h-31q-8 0 -10.5 3t-2.5 10q0 14 14 14q3 0 24 -1t33 -1q13 0 31 1t20 1q7 0 9 -2.5t2 -11.5q0 -13 -12 -13h-6q-9 0 -14 -10q-9 -18 -50.5 -130t-66.5 -163 q-8 -17 -21.5 -34t-24.5 -36q-3 -7 -11 -7q-11 0 -30 66q-22 80 -69 224q-6 18 -8 18q-3 0 -9 -18q-67 -177 -84 -212q-8 -16 -22 -33t-26 -38q-4 -7 -12 -7q-12 0 -31 66q-4 15 -21 63.5l-42 119.5l-41 116q-4 11 -7.5 13t-14.5 2h-11q-8 0 -10.5 3t-2.5 10z" />
<glyph unicode="&#x176;" horiz-adv-x="597" d="M217 731l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2zM10 654q0 7 2 10.5t5 4t11 0.5q6 0 46 -1.5t57 -1.5q16 0 60 1.5t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-59 q-11 0 -12 -2.5t4 -12.5q9 -23 37 -76.5l62.5 -117t42.5 -79.5q9 -17 11 -17q3 0 11 14l27 52l38 72.5l35.5 69.5t29 62t10.5 32q0 3 -2 3h-56q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 43.5 1.5t32.5 1.5q11 0 13.5 -2t2.5 -13 q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -37.5 -62l-81.5 -142l-65 -111q-3 -5 -3 -11q0 -286 10 -286h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-58.5 -1.5t-53.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h52q10 0 10 244 q0 11 -7 23q-189 345 -199 345h-29q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x177;" horiz-adv-x="467" d="M141 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 368q0 6 0.5 8t3.5 4t9 2q8 0 33 -1t41 -1q13 0 46.5 1t41.5 1q9 0 11 -2.5t2 -11.5 q0 -13 -12 -13h-19q-26 0 -26 -10q0 -12 31 -97.5t58 -151.5q16 -40 19 -40t17 40q82 231 82 252q0 7 -31 7h-23q-8 0 -10.5 3t-2.5 10q0 14 14 14q9 0 31.5 -1t32.5 -1q12 0 30 1t25 1q13 0 13 -14q0 -13 -12 -13h-14q-10 0 -13 -10q-38 -105 -133 -342q-1 -3 -7 -19.5 t-15.5 -46t-17.5 -51.5q-2 -4 -5.5 -15.5t-5 -14.5t-4.5 -11.5t-5 -12t-5.5 -11t-7 -12.5t-8 -12.5t-10.5 -14.5t-13 -16q-17 -22 -26 -27q-6 -4 -15 -8q-54 -26 -62 -26q-18 0 -18 20q0 15 19 42q7 11 28 18l22.5 7.5t29.5 11t22 13.5t16 19q44 109 44 121q0 8 -28 77 l-72.5 174l-55.5 132q-4 11 -7 13t-14 2h-11q-8 0 -10.5 3t-2.5 10z" />
<glyph unicode="&#x178;" horiz-adv-x="597" d="M197 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM357 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM10 654q0 7 2 10.5t5 4t11 0.5q6 0 46 -1.5t57 -1.5q16 0 60 1.5 t55 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-59q-11 0 -12 -2.5t4 -12.5q9 -23 37 -76.5l62.5 -117t42.5 -79.5q9 -17 11 -17q3 0 11 14l27 52l38 72.5l35.5 69.5t29 62t10.5 32q0 3 -2 3h-56q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5 t41.5 -1.5q17 0 43.5 1.5t32.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -37.5 -62l-81.5 -142l-65 -111q-3 -5 -3 -11q0 -286 10 -286h71q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-58.5 -1.5t-53.5 -1.5 q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h52q10 0 10 244q0 11 -7 23q-189 345 -199 345h-29q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x179;" horiz-adv-x="601" d="M304 731q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM40 15q0 5 61 98.5l163.5 249.5l165.5 254q5 7 5 9q0 3 -24 3h-302q-9 0 -10 -7q-1 -2 -1 -3q-2 -9 -5 -28.5t-5.5 -33.5t-2.5 -16q-4 -15 -9 -15q-24 0 -24 9q0 3 3.5 24.5 l9 56t8.5 60.5q0 6 16 6q13 0 13 -6v-6q0 -3 1.5 -4.5t8 -2.5t18 -1.5t31.5 -0.5h381q10 0 13.5 -3t3.5 -12q0 -6 -62.5 -98l-159 -238t-157.5 -250q-10 -16 -10 -18q0 -5 11 -5h337h5.5t4 0.5t2.5 1t1 3t1 4t0.5 6t0.5 8.5q1 14 3 87q0 8 18 8q17 0 17 -9q0 -28 -1.5 -77 t-1.5 -61q0 -11 -22 -11q-57 0 -252 1.5t-246 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="&#x17a;" horiz-adv-x="413" d="M185 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM35 10q0 7 10 20l214 315q2 3 5 7t5 7t2 4q0 3 -14 3l-155 -5q-17 -1 -20.5 -3.5t-6.5 -15.5l-10 -40q-3 -12 -13 -12q-16 0 -16 6q0 2 9 80q1 9 3 11 t11 2h281q23 0 23 -9q0 -1 -9 -15l-210 -310q-9 -13 -9 -18q0 -10 15 -10l174 4q10 0 12 1.5t4 11.5l7 58q1 9 3 10.5t14 1.5q9 0 9 -6q0 -20 -5 -93q-1 -11 -3 -13t-13 -2h-295q-22 0 -22 10z" />
<glyph unicode="&#x17b;" horiz-adv-x="601" d="M263 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 15q0 5 61 98.5l163.5 249.5l165.5 254q5 7 5 9q0 3 -24 3h-302q-9 0 -10 -7q-1 -2 -1 -3q-2 -9 -5 -28.5t-5.5 -33.5t-2.5 -16q-4 -15 -9 -15q-24 0 -24 9 q0 3 3.5 24.5l9 56t8.5 60.5q0 6 16 6q13 0 13 -6v-6q0 -3 1.5 -4.5t8 -2.5t18 -1.5t31.5 -0.5h381q10 0 13.5 -3t3.5 -12q0 -6 -62.5 -98l-159 -238t-157.5 -250q-10 -16 -10 -18q0 -5 11 -5h337h5.5t4 0.5t2.5 1t1 3t1 4t0.5 6t0.5 8.5q1 14 3 87q0 8 18 8q17 0 17 -9 q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-57 0 -252 1.5t-246 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="&#x17c;" horiz-adv-x="413" d="M149 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 10q0 7 10 20l214 315q2 3 5 7t5 7t2 4q0 3 -14 3l-155 -5q-17 -1 -20.5 -3.5t-6.5 -15.5l-10 -40q-3 -12 -13 -12q-16 0 -16 6q0 2 9 80q1 9 3 11t11 2h281 q23 0 23 -9q0 -1 -9 -15l-210 -310q-9 -13 -9 -18q0 -10 15 -10l174 4q10 0 12 1.5t4 11.5l7 58q1 9 3 10.5t14 1.5q9 0 9 -6q0 -20 -5 -93q-1 -11 -3 -13t-13 -2h-295q-22 0 -22 10z" />
<glyph unicode="&#x17d;" horiz-adv-x="601" d="M203 837q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6zM40 15q0 5 61 98.5l163.5 249.5l165.5 254q5 7 5 9q0 3 -24 3h-302q-9 0 -10 -7q-1 -2 -1 -3q-2 -9 -5 -28.5t-5.5 -33.5 t-2.5 -16q-4 -15 -9 -15q-24 0 -24 9q0 3 3.5 24.5l9 56t8.5 60.5q0 6 16 6q13 0 13 -6v-6q0 -3 1.5 -4.5t8 -2.5t18 -1.5t31.5 -0.5h381q10 0 13.5 -3t3.5 -12q0 -6 -62.5 -98l-159 -238t-157.5 -250q-10 -16 -10 -18q0 -5 11 -5h337h5.5t4 0.5t2.5 1t1 3t1 4t0.5 6 t0.5 8.5q1 14 3 87q0 8 18 8q17 0 17 -9q0 -28 -1.5 -77t-1.5 -61q0 -11 -22 -11q-57 0 -252 1.5t-246 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="&#x17e;" horiz-adv-x="413" d="M90 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM35 10q0 7 10 20l214 315q2 3 5 7t5 7t2 4q0 3 -14 3l-155 -5q-17 -1 -20.5 -3.5t-6.5 -15.5 l-10 -40q-3 -12 -13 -12q-16 0 -16 6q0 2 9 80q1 9 3 11t11 2h281q23 0 23 -9q0 -1 -9 -15l-210 -310q-9 -13 -9 -18q0 -10 15 -10l174 4q10 0 12 1.5t4 11.5l7 58q1 9 3 10.5t14 1.5q9 0 9 -6q0 -20 -5 -93q-1 -11 -3 -13t-13 -2h-295q-22 0 -22 10z" />
<glyph unicode="&#x17f;" horiz-adv-x="274" d="M32 12q0 13 12 13h40q4 0 4 63q0 116 -2 296q0 18 -0.5 33t-1 27.5t-0.5 36.5q0 87 37 142t119 55q31 0 57 -19t26 -48q0 -16 -18 -31.5t-30 -15.5t-13 9q-3 23 -5 33t-7 24.5t-13.5 20t-21.5 5.5q-59 0 -59 -164q0 -107 2 -323q2 -144 10 -144h66q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="&#x218;" horiz-adv-x="528" d="M224 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM55 488q0 81 65 135t149 54q73 0 135 -42q10 -8 16 -8t7 10l1 11 q0 9 2 11.5t13 2.5q12 0 15.5 -2.5t3.5 -11.5l-2 -63q-3 -63 -3 -94q0 -9 -3 -12.5t-13 -3.5q-13 0 -16 2.5t-3 9.5q0 1 1.5 30t1.5 34q0 22 -51.5 60t-102.5 38q-57 0 -95 -37t-38 -92q0 -43 26.5 -73.5t65.5 -46l85.5 -34t85.5 -37.5t65.5 -58t26.5 -93 q0 -88 -67.5 -140.5t-156.5 -52.5q-51 0 -99 9.5t-73 20t-26 16.5l-3.5 48l-4.5 62t-2 34q0 14 12 14h5q15 0 16 -16l6 -92q1 -21 65.5 -42t112.5 -21q54 0 93.5 35t39.5 86q0 42 -26.5 72t-66 46.5l-85.5 36.5t-85.5 40t-66 60t-26.5 94z" />
<glyph unicode="&#x219;" horiz-adv-x="337" d="M121 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM35 50q0 11 11.5 24.5t18.5 13.5q3 0 5 -3.5t5.5 -10.5t8.5 -13 q42 -50 93 -50q28 0 47 16.5t19 48.5t-23 51.5t-66 37.5q-2 1 -18 8t-19 8.5t-17 8t-17.5 10t-13.5 11t-13.5 14t-9 15t-7 18.5t-1.5 22q0 48 44 80.5t100 32.5q51 0 77.5 -22.5t26.5 -44.5q0 -7 -15 -13t-25 -6q-7 0 -12.5 10t-10 22.5t-18.5 22.5t-36 10q-29 0 -51 -17 t-22 -53q0 -15 5.5 -27t21 -22.5t24 -15t31.5 -15.5q33 -16 45.5 -22.5t36 -22.5t33 -33t9.5 -38q0 -53 -41.5 -85.5t-99.5 -32.5q-46 0 -86 19.5t-40 42.5z" />
<glyph unicode="&#x21a;" horiz-adv-x="690" d="M296 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM20 544l4 22q3 21 7 52.5t6 53.5q1 10 3 12t13 2q13 0 13 -6v-11 q0 -6 108 -6h357q108 0 109 11q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 8 -113 8h-116q-3 0 -5 -10t-3 -30.5t-1 -36t-0.5 -44t-0.5 -37.5l-1 -29q0 -28 -1 -72.5t-2 -94.5t-1.5 -102t-0.5 -87q0 -65 2 -65 h74q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-63 -1.5t-58 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h62q7 0 10.5 192.5t3.5 325.5q0 90 -7 90h-144q-96 0 -97 -13l-7 -70q-1 -17 -13 -17q-20 0 -20 9z" />
<glyph unicode="&#x21b;" horiz-adv-x="289" d="M101 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM35 344q0 5 3 8l91 127q3 5 9 5q10 0 10 -10q0 -1 -1.5 -20.5t-3 -42 t-1.5 -29.5t2 -8.5t9 -1.5h95q9 0 10.5 -2t-1.5 -16q-4 -16 -13 -16h-99q-3 0 -3 -46v-192q0 -20 2 -31t13 -21t33 -10q23 0 52 8l28 8q4 0 4 -16q0 -3 -22.5 -14t-53.5 -22t-50 -11q-39 0 -55.5 20.5t-16.5 48.5q2 144 2 216q0 61 -12 61h-25q-6 0 -6 7z" />
<glyph unicode="&#x237;" horiz-adv-x="292" d="M5 -255q0 16 14.5 34.5t26.5 18.5t31.5 -2t23.5 -2q19 0 28.5 9.5t9.5 23.5q0 9 -2.5 56.5t-4.5 145t-2 229.5q0 49 -2 76q-1 14 -9 14q-3 0 -34 -1.5t-36 -1.5q-3 0 -3 4q0 5 4 15q0 1 1 3q2 6 14 6q22 0 52.5 1.5l51 2.5t21.5 1q7 0 7 -23q0 -20 2.5 -136.5t2.5 -191.5 q0 -90 -10.5 -145t-43.5 -98q-13 -17 -57.5 -38t-66.5 -21q-19 0 -19 20z" />
<glyph unicode="&#x2bb;" horiz-adv-x="400" d="M143 502q0 31 24.5 62.5t48 48t29.5 16.5q4 0 7 -5.5t3 -10.5l-15 -10q-14 -10 -29 -25.5t-15 -29.5q0 -17 13 -30t26.5 -21.5t13.5 -12.5q0 -11 -18.5 -23t-24.5 -12q-12 0 -37.5 19.5t-25.5 33.5z" />
<glyph unicode="&#x2bc;" horiz-adv-x="400" d="M408 491q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3z" />
<glyph unicode="&#x2c0;" horiz-adv-x="400" />
<glyph unicode="&#x2c6;" horiz-adv-x="400" d="M90 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2z" />
<glyph unicode="&#x2c7;" horiz-adv-x="400" d="M90 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6z" />
<glyph unicode="&#x2d8;" horiz-adv-x="400" d="M97 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84z" />
<glyph unicode="&#x2d9;" horiz-adv-x="400" d="M149 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#x2da;" horiz-adv-x="400" d="M129 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM157 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5z" />
<glyph unicode="&#x2db;" horiz-adv-x="400" d="M107 -194q0 14 3 28t6.5 24.5t13.5 25l15 22t20 23.5l21 22l25.5 24.5l25.5 24.5h22q-88 -88 -88 -167q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5z" />
<glyph unicode="&#x2dc;" horiz-adv-x="400" d="M95 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2z" />
<glyph unicode="&#x2dd;" horiz-adv-x="400" d="M120 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM230 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2z" />
<glyph unicode="&#x300;" horiz-adv-x="0" d="M-302 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-3 0 -8 6l-82 107q-7 10 -7 20z" />
<glyph unicode="&#x301;" horiz-adv-x="0" d="M-215 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2z" />
<glyph unicode="&#x302;" horiz-adv-x="0" d="M-310 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2z" />
<glyph unicode="&#x303;" horiz-adv-x="0" d="M-305 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2z" />
<glyph unicode="&#x304;" horiz-adv-x="0" d="M-302 518v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8z" />
<glyph unicode="&#x306;" horiz-adv-x="0" d="M-303 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84z" />
<glyph unicode="&#x307;" horiz-adv-x="0" d="M-251 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#x308;" horiz-adv-x="0" d="M-331 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM-171 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph unicode="&#x30a;" horiz-adv-x="0" d="M-271 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM-243 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5z" />
<glyph unicode="&#x30b;" horiz-adv-x="0" d="M-280 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM-170 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2z" />
<glyph unicode="&#x30c;" horiz-adv-x="0" d="M-310 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6z" />
<glyph unicode="&#x312;" horiz-adv-x="0" d="M-257 502q0 31 24.5 62.5t48 48t29.5 16.5q4 0 7 -5.5t3 -10.5l-15 -10q-14 -10 -29 -25.5t-15 -29.5q0 -17 13 -30t26.5 -21.5t13.5 -12.5q0 -11 -18.5 -23t-24.5 -12q-12 0 -37.5 19.5t-25.5 33.5z" />
<glyph unicode="&#x315;" horiz-adv-x="0" d="M8 491q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3z" />
<glyph unicode="&#x326;" horiz-adv-x="0" d="M-254 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5z" />
<glyph unicode="&#x327;" horiz-adv-x="0" d="M-283 -200q0 11 8 11l9 -3q8 -4 22 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5t41 107h17l-24 -65q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5 t-9.5 9z" />
<glyph unicode="&#x328;" horiz-adv-x="0" d="M-293 -194q0 14 3 28t6.5 24.5t13.5 25l15 22t20 23.5l21 22l25.5 24.5l25.5 24.5h22q-88 -88 -88 -167q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5z" />
<glyph unicode="&#x1e02;" horiz-adv-x="592" d="M240 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q19 0 60.5 1.5t62.5 1.5q99 0 160.5 -38t61.5 -123q0 -101 -150 -156l-17 -7q0 -1 11 -2.5t28 -5t38 -9.5t42 -18 t38 -29.5t28 -45t11 -62.5q0 -171 -280 -171q-27 0 -60.5 1t-35.5 1q-18 0 -61 -1.5t-45 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h53q5 0 5 42v323q0 242 -10 242l-57 -2q-20 0 -20 17zM209 315q0 -288 9 -288h61q180 0 180 149q0 111 -87 140q-31 10 -118 10 h-34q-11 0 -11 -11zM209 358q0 -6 3 -8t13 -2h57q10 0 20.5 -0.5t12.5 -0.5q11 0 20 3q41 12 70 46.5t29 91.5q0 73 -49.5 114.5t-127.5 41.5q-29 0 -43 -4q-5 -1 -5 -234v-48z" />
<glyph unicode="&#x1e03;" horiz-adv-x="485" d="M78 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM5 639q0 21 5 21q20 2 55.5 6l60 7t26.5 3q6 0 6 -15q-3 -185 -3 -267q0 -38 1 -38t7.5 3t17.5 7.5t23.5 9t28.5 7.5t30 3q83 0 137.5 -57.5t54.5 -140.5 q0 -92 -65 -146.5t-156 -54.5q-19 0 -47.5 9.5t-41.5 9.5q-11 0 -28 -9t-21 -9q-12 0 -12 13q0 1 1 36.5t2.5 82.5t1.5 77q0 87 -4.5 264.5t-12.5 177.5q-2 0 -30.5 -3t-30.5 -3q-6 0 -6 6zM153 64q0 -50 84 -50q67 0 106.5 51t39.5 122q0 67 -47.5 118.5t-112.5 51.5 q-16 0 -32.5 -5.5t-26 -11t-9.5 -8.5q0 -59 -1 -159.5t-1 -108.5z" />
<glyph unicode="&#x1e0a;" horiz-adv-x="758" d="M291 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 10q0 11 3 13t14 2h66q4 0 8.5 200t4.5 338q0 78 -2 78l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v7.5t1.5 5t4 3t7.5 0.5q1 0 11.5 -0.5t26.5 -0.5h31q41 0 114.5 6 t89.5 6q166 0 273.5 -93t107.5 -250q0 -105 -49.5 -183.5t-126.5 -116.5t-169 -39q-32 0 -97 2t-98 2q-16 0 -70 -2t-57 -2q-8 0 -9.5 2t-1.5 12zM213 86q0 -59 2 -60q6 -4 57 -4q69 0 124.5 14t90 34.5t60 53t37.5 59t19 63.5t8 56t1 46q0 73 -35.5 141.5t-106.5 115.5 t-159 47q-67 0 -90 -6q-7 -2 -7 -146q-1 -138 -1 -414z" />
<glyph unicode="&#x1e0b;" horiz-adv-x="499" d="M311 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 181q0 85 58.5 141.5t144.5 56.5q17 0 33.5 -2.5t28.5 -6.5t21 -8t14 -6l6 -3q6 0 6 18q0 48 -2 113.5t-4.5 112t-3.5 46.5t-32 -4.5t-35 -4.5t-5 2t1 13q2 12 8 13 q24 3 56.5 7.5t52.5 7.5t22 3q7 0 8.5 -3.5t1.5 -19.5q0 -7 -1.5 -62.5t-3 -164.5t-1.5 -246q0 -48 2 -120q1 -29 6 -39t17 -10q4 0 34 4q6 1 8.5 0t2.5 -8q0 -8 -0.5 -11t-3 -5t-9.5 -3l-115 -15q-6 0 -6 9q0 1 0.5 17.5t0.5 18.5q0 8 -2.5 9t-12.5 -5q-63 -39 -120 -39 q-75 0 -125.5 47t-50.5 147zM103 188q0 -74 37.5 -119t114.5 -45q23 0 55 10.5t32 22.5v250q0 12 -31 32t-66 20q-64 0 -103 -50.5t-39 -120.5z" />
<glyph unicode="&#x1e1e;" horiz-adv-x="550" d="M257 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 651q0 14 12 14l43 -1q43 -2 64 -2q28 0 133.5 1.5t125.5 1.5q47 0 56.5 1.5t10.5 10.5v1q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2 q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 7 -282 7q-7 0 -7 -114q0 -110 2 -156q0 -12 2 -14t14 -2h173q55 0 55 16v50q0 9 17 9q14 0 14 -8q0 -1 -1 -29t-1 -49t1 -55t1 -38q0 -8 -13 -8q-18 0 -18 9v56q0 7 -2 10t-15 6.5t-38 3.5h-173q-11 0 -13.5 -3t-2.5 -17 q1 -49 1.5 -128.5t1.5 -114.5t4 -35h83q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h43q7 0 7 75v96q0 31 -0.5 72t-1 78t-1 69.5t-1 53t-0.5 21.5q0 144 -11 144h-43q-7 0 -10.5 0.5 t-6 4t-2.5 10.5z" />
<glyph unicode="&#x1e1f;" horiz-adv-x="306" d="M167 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 12q0 13 12 13h40q4 0 4 63q0 20 -0.5 51t-0.5 33v60q0 114 -2 114h-33q-9 0 -11.5 2t-2.5 11t2 11t9 2h27q7 0 8.5 2t1.5 10q0 24 -1 47t-1 50q0 87 37 142t119 55 q31 0 57 -19t26 -48q0 -16 -18 -31.5t-30 -15.5t-13 9q-3 23 -5 33t-7 24.5t-13.5 20t-21.5 5.5q-59 0 -59 -164q0 -17 -2 -103q0 -12 3 -14.5t18 -2.5h116q7 0 7 -5t-2.5 -12.5t-5.5 -7.5h-115q-11 0 -14 -2t-3 -10v-166q0 -144 10 -144h66q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -39.5 -1t-43.5 -1q-9 0 -11 2.5t-2 11.5z" />
<glyph unicode="&#x1e22;" horiz-adv-x="791" d="M351 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 15q0 9 3 10.5t15 1.5h57q7 0 7 258v102q0 252 -6 252h-43q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 39.5 -1.5t50.5 -1.5q16 0 55.5 1.5t50.5 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-54q-7 0 -7 -134q0 -27 0.5 -73t0.5 -59t2 -15.5t13 -2.5h365q11 0 13 2t2 13v122q0 147 -10 147h-57q-10 0 -12.5 2t-2.5 13t2.5 13t12.5 2q6 0 47 -1.5t58 -1.5q18 0 55 1.5t40 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -2.5 -10.5t-15.5 -1.5h-46q-2 0 -2 -242q0 -370 4 -370h55q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -44.5 1.5t-49.5 1.5t-58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h55q6 0 6 165v124q0 11 -1 13t-8 2h-374q-8 0 -10 -2.5t-2 -14.5 q0 -287 11 -287h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -52.5 1.5t-57.5 1.5t-61 -1.5t-56 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x1e23;" horiz-adv-x="503" d="M78 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM10 640q0 16 5 17q138 18 146 18q5 0 5 -20q-8 -166 -8 -301v-10t2 -3t3 0.5t6 3.5q73 40 133 40q40 0 66.5 -16t38.5 -47t16 -63t4 -79v-143q0 -8 1.5 -10t9.5 -2h26 q14 0 14 -13q0 -14 -14 -14q-8 0 -31.5 1t-39.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 13 13h39q8 0 9 1.5t2 9.5q2 40 2 176q0 58 -24 95t-72 37q-47 0 -89 -21q-16 -8 -16 -15l1 -150q0 -89 1 -115q1 -10 1.5 -13t2 -4t7.5 -1h38q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -37.5 1t-45.5 1q-12 0 -41 -1t-45 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h39q7 0 8.5 3t1.5 15q1 94 1 220q0 202 -8 356q-1 17 -6 17q-1 0 -30 -3.5t-31 -3.5q-4 0 -4 11z" />
<glyph unicode="&#x1e40;" horiz-adv-x="895" d="M407 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 15q0 9 2.5 10.5t15.5 1.5h42q2 0 3.5 4.5t2 14.5l1 20t1 29.5t1.5 33.5q18 366 18 497q0 8 -4 10.5t-18 2.5h-46q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 51 -1.5 t56 -1.5q13 0 35.5 1.5t23.5 1.5q15 0 20 -13l210 -524q9 -22 11 -22q3 0 11 22l196 511q6 16 10 19.5t15 3.5h46q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-46q-7 0 -7 -80v-90q0 -153 4.5 -297.5t11.5 -144.5h54q8 0 10.5 -2t2.5 -11 q0 -11 -2 -14t-9 -3q-11 0 -51 1.5t-56 1.5t-55.5 -1.5t-50.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h46q9 0 9 177q0 98 -2.5 257.5t-4.5 159.5t-36 -88l-85 -219.5l-81 -204.5q-10 -25 -27.5 -50t-28.5 -47q-9 -19 -15 -19q-5 0 -17 28l-233 575 q-13 30 -16 30q-2 0 -4 -32q-8 -211 -8 -465q0 -102 5 -102h72q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -41.5 1.5t-46.5 1.5t-43.5 -1.5t-38.5 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x1e41;" horiz-adv-x="739" d="M330 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 350q0 6 4 18q2 6 3.5 6.5t11.5 1.5q16 1 41.5 2t41 2t17.5 1q11 0 13 -1.5t2 -9.5v-28q0 -14 2 -15l8 6q79 55 141 55q21 0 37.5 -5.5t25.5 -13t14.5 -14.5 t8.5 -13l2 -5q3 0 13 7q25 16 61.5 29t63.5 13q69 0 96.5 -38t27.5 -108q0 -46 -1 -116t-1 -89q0 -10 10 -10h32q14 0 14 -13q0 -14 -14 -14q-8 0 -34 1t-42 1q-12 0 -40.5 -1t-44.5 -1q-9 0 -11 2.5t-2 11.5q0 13 15 13h40q9 0 9 191q0 128 -89 128q-23 0 -47 -7t-37 -14 t-13 -9t1.5 -9.5t3 -25t1.5 -43.5v-170q0 -41 3 -41h34q14 0 14 -13q0 -14 -14 -14q-8 0 -32.5 1t-40.5 1q-12 0 -34.5 -1t-38.5 -1q-9 0 -12 3t-3 11q0 13 12 13h39q7 0 7 97v41t-0.5 36.5t-0.5 16.5q0 25 -1 40t-4.5 34t-11 29t-21.5 17.5t-34 7.5q-60 0 -100 -30 q-11 -9 -11 -18v-228q0 -30 2.5 -36.5t16.5 -6.5h21q14 0 14 -13q0 -14 -14 -14q-9 0 -36 1t-40 1q-14 0 -45.5 -1t-38.5 -1q-12 0 -12 13q0 14 11 14h39q10 0 13 32q2 20 2 106v109q0 78 -4 78q-1 0 -28.5 -1.5t-30.5 -1.5q-5 0 -5 3z" />
<glyph unicode="&#x1e56;" horiz-adv-x="564" d="M253 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 649q0 7 2.5 10.5t6 4t11.5 0.5q6 0 51 -1t62 -1q16 0 68 2.5t63 2.5q108 0 174 -49.5t66 -146.5q0 -92 -64 -136.5t-175 -44.5q-19 0 -46.5 1.5t-40.5 1.5 q-10 0 -10 -11v-66q0 -189 5 -189h73q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -55 1.5t-60 1.5q-18 0 -61.5 -1.5t-45.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h51q9 0 9 447v52q0 108 -5 108l-63 -2q-20 0 -20 17zM209 325q0 -13 38 -13q94 0 152.5 41.5 t58.5 132.5q0 71 -59.5 113t-151.5 42q-22 0 -33 -1q-5 0 -5 -54v-261z" />
<glyph unicode="&#x1e57;" horiz-adv-x="512" d="M229 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 352q0 4 3.5 13t5.5 9q29 1 61.5 2.5t51 2.5t19.5 1q7 0 9 -2t2 -12v-24q0 -10 2 -10q1 0 19 14q50 37 108 37q83 0 127 -53t44 -136q0 -81 -57.5 -142t-151.5 -61 q-31 0 -66 11l-7.5 2.5t-6.5 2.5t-5 1t-4 -1.5t-1 -4.5l3 -189q2 -67 6 -67h70q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -49 1t-57 1q-12 0 -46.5 -1t-50.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h55q3 0 3 160v142q0 191 -7 287q-1 10 -3 12t-13 2 q-3 0 -25.5 -1t-24.5 -1q-13 0 -13 5zM178 52q0 -17 30 -29.5t57 -12.5q66 0 103 55t37 122q0 72 -37 116.5t-93 44.5q-36 0 -64 -13q-33 -17 -33 -33v-250z" />
<glyph unicode="&#x1e60;" horiz-adv-x="528" d="M218 783q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM55 488q0 81 65 135t149 54q73 0 135 -42q10 -8 16 -8t7 10l1 11q0 9 2 11.5t13 2.5q12 0 15.5 -2.5t3.5 -11.5l-2 -63q-3 -63 -3 -94q0 -9 -3 -12.5t-13 -3.5 q-13 0 -16 2.5t-3 9.5q0 1 1.5 30t1.5 34q0 22 -51.5 60t-102.5 38q-57 0 -95 -37t-38 -92q0 -43 26.5 -73.5t65.5 -46l85.5 -34t85.5 -37.5t65.5 -58t26.5 -93q0 -88 -67.5 -140.5t-156.5 -52.5q-51 0 -99 9.5t-73 20t-26 16.5l-3.5 48l-4.5 62t-2 34q0 14 12 14h5 q15 0 16 -16l6 -92q1 -21 65.5 -42t112.5 -21q54 0 93.5 35t39.5 86q0 42 -26.5 72t-66 46.5l-85.5 36.5t-85.5 40t-66 60t-26.5 94z" />
<glyph unicode="&#x1e61;" horiz-adv-x="337" d="M118 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 50q0 11 11.5 24.5t18.5 13.5q3 0 5 -3.5t5.5 -10.5t8.5 -13q42 -50 93 -50q28 0 47 16.5t19 48.5t-23 51.5t-66 37.5q-2 1 -18 8t-19 8.5t-17 8t-17.5 10t-13.5 11 t-13.5 14t-9 15t-7 18.5t-1.5 22q0 48 44 80.5t100 32.5q51 0 77.5 -22.5t26.5 -44.5q0 -7 -15 -13t-25 -6q-7 0 -12.5 10t-10 22.5t-18.5 22.5t-36 10q-29 0 -51 -17t-22 -53q0 -15 5.5 -27t21 -22.5t24 -15t31.5 -15.5q33 -16 45.5 -22.5t36 -22.5t33 -33t9.5 -38 q0 -53 -41.5 -85.5t-99.5 -32.5q-46 0 -86 19.5t-40 42.5z" />
<glyph unicode="&#x1e6a;" horiz-adv-x="690" d="M294 767q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM20 544l4 22q3 21 7 52.5t6 53.5q1 10 3 12t13 2q13 0 13 -6v-11q0 -6 108 -6h357q108 0 109 11q1 12 13 12q11 0 14 -2t3 -9q0 -2 -2 -43t-2 -87q0 -6 -3 -8t-13 -2 q-15 0 -15 14q0 2 1.5 38.5t1.5 39.5q0 8 -113 8h-116q-3 0 -5 -10t-3 -30.5t-1 -36t-0.5 -44t-0.5 -37.5l-1 -29q0 -28 -1 -72.5t-2 -94.5t-1.5 -102t-0.5 -87q0 -65 2 -65h74q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5t-63 -1.5t-58 -1.5 q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h62q7 0 10.5 192.5t3.5 325.5q0 90 -7 90h-144q-96 0 -97 -13l-7 -70q-1 -17 -13 -17q-20 0 -20 9z" />
<glyph unicode="&#x1e6b;" horiz-adv-x="289" d="M91 573q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM35 344q0 5 3 8l91 127q3 5 9 5q10 0 10 -10q0 -1 -1.5 -20.5t-3 -42t-1.5 -29.5t2 -8.5t9 -1.5h95q9 0 10.5 -2t-1.5 -16q-4 -16 -13 -16h-99q-3 0 -3 -46v-192 q0 -20 2 -31t13 -21t33 -10q23 0 52 8l28 8q4 0 4 -16q0 -3 -22.5 -14t-53.5 -22t-50 -11q-39 0 -55.5 20.5t-16.5 48.5q2 144 2 216q0 61 -12 61h-25q-6 0 -6 7z" />
<glyph unicode="&#x2000;" />
<glyph unicode="&#x2001;" horiz-adv-x="1000" />
<glyph unicode="&#x2002;" />
<glyph unicode="&#x2003;" horiz-adv-x="1000" />
<glyph unicode="&#x2004;" horiz-adv-x="333" />
<glyph unicode="&#x2005;" horiz-adv-x="250" />
<glyph unicode="&#x2006;" horiz-adv-x="166" />
<glyph unicode="&#x2007;" />
<glyph unicode="&#x2008;" horiz-adv-x="221" />
<glyph unicode="&#x2009;" horiz-adv-x="166" />
<glyph unicode="&#x200a;" horiz-adv-x="100" />
<glyph unicode="&#x200b;" horiz-adv-x="0" />
<glyph unicode="&#x200c;" horiz-adv-x="0" />
<glyph unicode="&#x200d;" horiz-adv-x="0" />
<glyph unicode="&#x200e;" horiz-adv-x="0" />
<glyph unicode="&#x200f;" horiz-adv-x="0" />
<glyph unicode="&#x2010;" horiz-adv-x="258" d="M25 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="&#x2011;" horiz-adv-x="258" d="M25 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="&#x2012;" d="M98 201q0 12 6 25.5t12 14.5t141 4t143 3q2 0 2 -9q0 -33 -8 -33q-9 -1 -145 -4.5t-147 -3.5q-4 0 -4 3z" />
<glyph unicode="&#x2013;" d="M10 195q0 12 2 14.5t11 2.5h451q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-444q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph unicode="&#x2014;" horiz-adv-x="750" d="M10 195q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph unicode="&#x2015;" horiz-adv-x="750" d="M10 195q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph unicode="&#x2018;" horiz-adv-x="209" d="M30 520q0 32 24.5 72.5t49 65.5t29.5 25t10.5 -6.5t5.5 -11.5q0 -1 -17.5 -17t-34.5 -37t-17 -36q0 -13 24 -39t24 -39q0 -16 -17 -39t-30 -23q-7 0 -29 34t-22 51z" />
<glyph unicode="&#x2019;" horiz-adv-x="209" d="M60 453q0 1 17 17t34.5 37t17.5 36q0 13 -24 39t-24 39q0 16 17 39t30 23q7 0 29 -34t22 -51q0 -32 -24.5 -72.5t-49 -65.5t-29.5 -25t-10.5 6.5t-5.5 11.5z" />
<glyph unicode="&#x201a;" horiz-adv-x="209" d="M60 -118q0 1 17 17t34.5 37t17.5 36q0 13 -24 39t-24 39q0 16 17 39t30 23q7 0 29 -34t22 -51q0 -32 -24.5 -72.5t-49 -65.5t-29.5 -25t-10.5 6.5t-5.5 11.5z" />
<glyph unicode="&#x201b;" horiz-adv-x="209" d="M30 598q0 17 22 51t29 34q13 0 30 -23t17 -39q0 -13 -24 -39t-24 -39q0 -15 17 -36t34.5 -37t17.5 -17q0 -5 -5.5 -11.5t-10.5 -6.5t-29.5 25t-49 65.5t-24.5 72.5z" />
<glyph unicode="&#x201c;" horiz-adv-x="394" d="M30 520q0 32 24.5 72.5t49 65.5t29.5 25t10.5 -6.5t5.5 -11.5q0 -1 -17.5 -17t-34.5 -37t-17 -36q0 -13 24 -39t24 -39q0 -16 -17 -39t-30 -23q-7 0 -29 34t-22 51zM215 520q0 32 24.5 72.5t49 65.5t29.5 25t10.5 -6.5t5.5 -11.5q0 -1 -17 -17t-34.5 -37t-17.5 -36 q0 -13 24 -39t24 -39q0 -16 -17 -39t-30 -23q-7 0 -29 34t-22 51z" />
<glyph unicode="&#x201d;" horiz-adv-x="394" d="M60 453q0 1 17 17t34.5 37t17.5 36q0 13 -24 39t-24 39q0 16 17 39t30 23q7 0 29 -34t22 -51q0 -32 -24.5 -72.5t-49 -65.5t-29.5 -25t-10.5 6.5t-5.5 11.5zM245 453q0 1 17.5 17t34.5 37t17 36q0 13 -24 39t-24 39q0 16 17 39t30 23q7 0 29 -34t22 -51 q0 -32 -24.5 -72.5t-49 -65.5t-29.5 -25t-10.5 6.5t-5.5 11.5z" />
<glyph unicode="&#x201e;" horiz-adv-x="394" d="M60 -118q0 1 17 17t34.5 37t17.5 36q0 13 -24 39t-24 39q0 16 17 39t30 23q7 0 29 -34t22 -51q0 -32 -24.5 -72.5t-49 -65.5t-29.5 -25t-10.5 6.5t-5.5 11.5zM245 -118q0 1 17.5 17t34.5 37t17 36q0 13 -24 39t-24 39q0 16 17 39t30 23q7 0 29 -34t22 -51 q0 -32 -24.5 -72.5t-49 -65.5t-29.5 -25t-10.5 6.5t-5.5 11.5z" />
<glyph unicode="&#x201f;" horiz-adv-x="394" d="M30 598q0 17 22 51t29 34q13 0 30 -23t17 -39q0 -13 -24 -39t-24 -39q0 -15 17 -36t34.5 -37t17.5 -17q0 -5 -5.5 -11.5t-10.5 -6.5t-29.5 25t-49 65.5t-24.5 72.5zM215 598q0 17 22 51t29 34q13 0 30 -23t17 -39q0 -13 -24 -39t-24 -39q0 -15 17.5 -36t34.5 -37t17 -17 q0 -5 -5.5 -11.5t-10.5 -6.5t-29.5 25t-49 65.5t-24.5 72.5z" />
<glyph unicode="&#x2020;" horiz-adv-x="463" d="M25 423q0 17 15.5 25t36.5 8q27 0 64 -9.5t58 -9.5q9 0 16.5 6.5t7.5 15.5q0 3 -16 76t-16 92t11 34t29 15q20 0 30.5 -15t10.5 -33q0 -24 -11.5 -96t-11.5 -78q0 -8 8 -14t17 -6q21 0 61.5 11t52.5 11q50 0 50 -33t-48 -33q-17 0 -58.5 13t-51.5 13q-8 0 -15 -5.5 t-7 -12.5q0 -10 5 -25.5t5 -19.5q0 -2 -1 -19t-2.5 -54.5t-3 -96t-2.5 -163.5t-1 -237q0 -10 -17 -10h-6q-17 0 -17 10q0 131 -2 236.5t-5 164t-5.5 96.5t-4.5 54.5t-2 18.5t6 20.5t6 24.5q0 16 -15 16q-6 0 -48 -12t-71 -12q-52 0 -52 33z" />
<glyph unicode="&#x2021;" horiz-adv-x="401" d="M25 -36q0 26 39 26q14 0 52 -10t46 -10q6 0 11.5 4t5.5 10q0 8 -3.5 15.5t-3.5 10.5q0 1 9.5 81t9.5 115q0 6 9 6t9 -6q0 -26 4 -72.5t8 -83.5t4 -40q0 -2 -4 -12t-4 -14q0 -13 12 -13q5 0 43.5 9.5t61.5 9.5q42 0 42 -26t-42 -26q-22 0 -56.5 7.5t-51.5 7.5 q-8 0 -13.5 -5.5t-5.5 -12.5q0 -2 12 -51.5t12 -64.5t-7.5 -27t-22.5 -12q-16 0 -23.5 12t-7.5 26q0 19 8 67.5t8 53.5q0 6 -6.5 11t-13.5 5q-17 0 -54 -8.5t-47 -8.5q-40 0 -40 26zM25 492q0 26 42 26q22 0 56.5 -7.5t51.5 -7.5q8 0 13.5 5.5t5.5 12.5q0 2 -12 49t-12 62 t7.5 27t22.5 12q16 0 23.5 -12t7.5 -26q0 -19 -8 -65t-8 -51q0 -6 6.5 -11t13.5 -5q17 0 54 8.5t47 8.5q40 0 40 -26t-39 -26q-14 0 -52 10t-46 10q-6 0 -11.5 -4t-5.5 -10q0 -8 3.5 -15.5t3.5 -10.5q0 -1 -8 -76t-8 -110q0 -7 -10 -7q-9 0 -9 7q0 26 -4.5 70t-9 78.5 t-4.5 37.5q0 2 4 12t4 14q0 13 -12 13q-5 0 -43.5 -9.5t-61.5 -9.5q-42 0 -42 26z" />
<glyph unicode="&#x2022;" horiz-adv-x="356" d="M60 327q0 49 34.5 83.5t83.5 34.5t83.5 -34.5t34.5 -83.5t-34.5 -83.5t-83.5 -34.5t-83.5 34.5t-34.5 83.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="663" d="M502 38q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29zM281 38q0 16 16 37.5t28 21.5q16 0 36.5 -15t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29zM60 38q0 16 16 37.5t28 21.5q16 0 36.5 -15 t20.5 -32q0 -21 -16 -39.5t-26 -18.5q-20 0 -39.5 17t-19.5 29z" />
<glyph unicode="&#x202f;" horiz-adv-x="166" />
<glyph unicode="&#x2030;" horiz-adv-x="952" d="M50 362q0 62 52.5 131.5t124.5 69.5q40 0 71 -31q24 -24 58 -24q46 0 93 28q17 10 31.5 22t35.5 33.5l22 22.5t4.5 5t7.5 8l3 4q6 0 12 -4t6 -8q0 -3 -5 -11q-360 -527 -434 -643q-4 -6 -19 -6q-16 0 -16 10q0 2 2 6l80 114l169.5 245.5t112.5 170.5q9 15 8 16 q-2 1 -8 -2q-47 -28 -105 -28q-16 0 -35 3v-16v-14q0 -17 -1 -25q-6 -72 -57.5 -130.5t-112.5 -58.5q-47 0 -73.5 32t-26.5 80zM99 336q0 -29 13.5 -50t40.5 -21q51 0 95 58.5t44 137.5q0 70 -52 70q-46 0 -93.5 -64t-47.5 -131zM336 103q0 71 56 137t125 66q42 0 66 -29.5 t24 -79.5q0 -79 -53 -142.5t-118 -63.5q-47 0 -73.5 31.5t-26.5 80.5zM385 78q0 -30 13 -50.5t41 -20.5q51 0 95 58.5t44 136.5q0 71 -53 71q-45 0 -92.5 -64t-47.5 -131zM631 103q0 71 56 137t125 66q42 0 66 -29.5t24 -79.5q0 -79 -53 -142.5t-118 -63.5q-47 0 -73.5 31.5 t-26.5 80.5zM680 78q0 -30 13 -50.5t41 -20.5q51 0 95 58.5t44 136.5q0 71 -53 71q-45 0 -92.5 -64t-47.5 -131z" />
<glyph unicode="&#x2032;" horiz-adv-x="131" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="&#x2033;" horiz-adv-x="261" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14zM160 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43 l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="&#x2039;" horiz-adv-x="258" d="M50 193q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -4 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph unicode="&#x203a;" horiz-adv-x="258" d="M60 74q0 4 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph unicode="&#x203e;" horiz-adv-x="400" />
<glyph unicode="&#x2044;" horiz-adv-x="144" d="M-150 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5t-9.5 -0.5q-18 0 -18 5z" />
<glyph unicode="&#x2053;" horiz-adv-x="793" d="M45 117q0 5 4 17q6 23 17 46t31.5 51.5t54.5 46.5t76 18q48 0 101.5 -22.5t93 -49.5t88 -49.5t86.5 -22.5q26 0 48.5 16t37 41.5t22 43t12.5 34.5q2 8 4.5 8.5t10.5 -1.5q11 -3 11 -7q0 -3 -1 -6q-7 -28 -19.5 -54.5t-33 -54.5t-54 -45t-73.5 -17q-50 0 -104.5 21.5 t-95 47.5t-89.5 47.5t-89 21.5q-27 0 -48 -14t-34 -36.5t-19.5 -40t-10.5 -35.5q-4 -14 -7 -14q-2 0 -10 2q-10 2 -10 7z" />
<glyph unicode="&#x205f;" horiz-adv-x="222" />
<glyph unicode="&#x2060;" horiz-adv-x="0" />
<glyph unicode="&#x20ac;" horiz-adv-x="606" d="M30 282l15 37h70q14 55 45.5 97t70 63.5t74 32t65.5 10.5q60 0 105.5 -18t90.5 -60q-4 -9 -18 -38q-23 29 -67 54.5t-107 25.5q-33 0 -63 -7t-61.5 -24.5t-56.5 -52t-39 -83.5h358l-15 -37h-348q-2 -12 -2 -27l2 -27h325l-16 -38h-303q31 -81 91.5 -123.5t126.5 -42.5 q101 0 173 72v-48q-77 -61 -170 -61q-48 0 -97 17t-97.5 65t-66.5 121h-82l15 38h61q-2 12 -2 27l2 27h-79z" />
<glyph unicode="&#x2122;" horiz-adv-x="797" d="M40 579q0 1 1.5 10.5t3.5 23.5t3 24q2 11 9 11q11 0 11 -10q7 -1 43 -1h161q37 0 45 2q3 9 11 9q9 0 9 -10q0 -1 -1 -19.5t-1 -39.5q0 -9 -9 -9q-11 0 -11 11l1 14v19q-18 2 -46 2h-50q-2 -10 -2 -67v-7q0 -7 -0.5 -19t-1 -26.5t-0.5 -31.5t-0.5 -33.5t-0.5 -32.5v-27 v-25h30q9 0 9 -9q0 -11 -9 -11q-5 0 -26.5 1t-28.5 1t-28 -1t-26 -1q-11 0 -11 11q0 9 13 9h24q5 35 5 232q0 33 -1 37h-62q-27 0 -39 -3l-3 -31q-2 -12 -11 -12q-11 0 -11 9zM373 337q0 10 13 10h21q0 3 0.5 9.5t1 17t0.5 18.5q8 224 8 228h-30q-10 0 -10 11q0 9 10 9 q3 0 23 -0.5t25 -0.5q6 0 16 0.5t11 0.5q9 0 13 -9l97 -243l92 237q6 14 16 14h16q7 0 23.5 0.5t21.5 0.5q11 0 11 -10t-13 -10h-18q-1 -6 -1 -34v-41q0 -160 6 -198h21q10 0 10 -10t-9 -10q-5 0 -23.5 1t-25.5 1t-24.5 -1t-22.5 -1q-12 0 -12 10t13 10h18q2 10 2 79 q0 88 -2 166l-83 -211q-5 -12 -12.5 -23t-12.5 -21q-7 -11 -11 -11q-7 0 -12 15l-105 259q-4 -122 -4 -208q0 -39 1 -45h29q10 0 10 -10t-10 -10q-5 0 -19 1t-21 1t-19.5 -1t-17.5 -1q-11 0 -11 10z" />
<glyph unicode="&#x2212;" horiz-adv-x="527" d="M31 212q0 8 0.5 11.5t4.5 6t13 2.5h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5z" />
<glyph unicode="&#xe000;" horiz-adv-x="380" d="M0 380h380v-380h-380v380z" />
<glyph unicode="&#xfeff;" horiz-adv-x="0" />
<glyph d="M38 305q0 149 65 236t149 87q93 0 151.5 -85t58.5 -231q0 -88 -24.5 -164t-74.5 -124.5t-115 -48.5q-93 0 -151.5 92t-58.5 238zM108 288q0 -141 39 -209t103 -68q39 0 69 29.5t46.5 77t24.5 98t8 100.5q0 45 -8.5 91.5t-25.5 88.5t-46.5 68.5t-66.5 26.5 q-63 0 -103 -86.5t-40 -216.5z" />
<glyph d="M150 589v13q0 6 1 6.5t9 1.5q120 9 143 9q5 0 6 -2.5t1 -12.5q0 -101 -0.5 -274.5t-0.5 -263.5q0 -39 8 -39h46q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -38 1.5t-49 1.5q-16 0 -57 -1.5t-52 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h64q4 0 4 83v118 q0 226 -4 340q-1 10 -1.5 13t-2.5 5t-7 2q-3 0 -34.5 -2.5t-33.5 -2.5q-6 0 -6 6z" />
<glyph d="M40 493q0 10 25 39.5t74 59.5t99 30q57 0 98.5 -29.5t59 -68t17.5 -77.5q0 -24 -6.5 -48.5t-20 -48.5t-27.5 -45t-36 -44l-37.5 -39.5t-40 -37l-36 -30l-33 -26t-23.5 -18.5q-8 -6 -16 -18.5t-12.5 -22t-4.5 -10.5t7 -1h292q2 0 9 42t9 42q21 0 21 -3q0 -31 -21 -133 q-1 -6 -11 -6h-346q-14 0 -14 11q0 4 28.5 53.5t32.5 52.5q4 4 33.5 29.5t46 41t45 47.5t44.5 58.5t29 63t13 71.5q0 57 -31 101.5t-88 44.5q-27 0 -53 -10t-44 -24t-31.5 -28t-21 -24t-8.5 -10q-5 0 -13 5t-8 10z" />
<glyph d="M90 17q0 8 12.5 19t27.5 11q14 0 37 -13q42 -26 70 -26q63 0 99.5 43t36.5 107q0 128 -133 128q-15 0 -49.5 -2.5t-36.5 -2.5q-4 0 -6.5 1.5t-3.5 3.5t-1.5 6t-1.5 6q-2 6 -2 12q0 4 2 7t4 3.5t7.5 1.5t7.5 2q86 20 125.5 58t39.5 110q0 41 -28.5 74t-68.5 33 q-31 0 -58.5 -15.5t-42.5 -30.5t-16 -15q-6 0 -12.5 6t-6.5 12q0 8 20 25.5t57 34.5t75 17q64 0 107 -37.5t43 -93.5q0 -50 -31.5 -90t-76.5 -61q-10 -5 -24 -10.5l-20 -8t-6 -3.5t4 -1.5t16.5 -0.5t23.5 -1q73 -5 115 -38.5t42 -112.5q0 -84 -64.5 -138.5t-146.5 -54.5 q-136 0 -136 35z" />
<glyph d="M40 209q0 27 16 55q68 119 204 295q8 11 22 20l17 11l11.5 11.5l10.5 10.5t8.5 8t8 6t5.5 2q11 0 11 -29v-326q0 -13 2 -15.5t13 -2.5h68q7 0 7 -10v-34q0 -7 -1.5 -8.5t-10.5 -1.5h-62q-11 0 -13 -2t-1 -12q4 -81 4 -185q0 -8 -4 -9q-12 -4 -61 -4q-5 0 -5 13l3 184 q0 11 -2.5 13t-13.5 2h-219q-18 0 -18 8zM87 259q0 -4 20 -4h167q14 0 16.5 3t2.5 17v243q0 26 -3 26q-8 0 -190 -263q-13 -18 -13 -22z" />
<glyph d="M100 -18q0 13 8 14q4 1 31 4t38 5t37.5 9t39.5 15t33 23.5t30 34t17.5 46t7.5 61.5q0 144 -197 144q-5 0 -14.5 -0.5t-14.5 -0.5q-14 0 -14 10q0 49 27 265q1 6 16 6q1 0 9.5 -1l26 -3t42 -3.5t65 -2.5t86.5 -1q3 0 6 28q0 5 11 5h8q7 0 8.5 -1.5t1.5 -7.5q0 -2 -0.5 -13 t-1.5 -28t-1 -27q-1 -11 -7.5 -14t-26.5 -3q-88 0 -210 12q-5 2 -7 1t-2 -2t-1 -6q-14 -119 -14 -149q0 -11 11 -11q11 1 34 1q225 0 225 -194q0 -59 -28.5 -104t-66.5 -68.5t-85 -38t-75 -18t-45 -3.5q-8 0 -8 16z" />
<glyph d="M45 218q0 83 31.5 156.5t75 119.5t91 80t78.5 48.5t39 14.5q3 0 8.5 -9t5.5 -12q0 -2 -0.5 -3.5t-1.5 -3t-3.5 -2.5t-4 -2t-5 -3t-5.5 -3q-88 -51 -137 -107t-76 -125q-10 -30 -10 -35q0 -3 6 -1q4 1 6 2q61 19 109 19q84 0 136 -48.5t52 -132.5q0 -86 -54.5 -139.5 t-136.5 -53.5q-90 0 -147 59.5t-57 180.5zM116 222q0 -218 142 -218q52 0 82.5 46t30.5 108q0 164 -143 164q-42 0 -75 -9q-27 -7 -29 -16q-8 -34 -8 -75z" />
<glyph d="M80 491v25.5t0.5 55t0.5 59.5q0 13 3 16t16 3q11 0 13.5 -3t2.5 -17v-8q0 -4 166 -4h166q17 0 17 -12q0 -4 -4 -14l-63 -137l-53 -112.5l-53.5 -115.5t-38.5 -96t-39 -117q-8 -31 -9.5 -35t-7.5 -4q-19 0 -33 7t-14 17q0 46 101 255q53 110 153 285q9 16 9 18q0 3 -18 3 h-199q-83 0 -83 -9v-58q0 -8 -16 -8q-17 0 -17 6z" />
<glyph d="M67 140q0 57 36 97.5t75 60.5q18 9 18 11l-2 1q-3 2 -8 5t-11 7q-96 66 -96 159q0 68 49 114.5t118 46.5q68 0 118.5 -41.5t50.5 -106.5q0 -34 -9 -60.5t-30 -49t-28.5 -28.5t-31.5 -24q-6 -5 -7.5 -7t0 -4t7.5 -6q2 -1 16.5 -9t22 -13.5l21.5 -16t22.5 -22.5t17.5 -28 t13.5 -36.5t4.5 -44.5q0 -71 -56 -120.5t-138 -49.5q-75 0 -124 47t-49 118zM120 150q0 -64 35 -104.5t92 -40.5q60 0 91.5 37.5t31.5 89.5q0 31 -9 55t-30 42.5t-35.5 28t-44.5 25.5q-7 4 -11 6q-20 11 -25 11q-3 0 -35 -22q-60 -44 -60 -128zM134 493q0 -64 69 -118 q17 -13 44.5 -29t32.5 -16q1 0 15 12q27 24 47 62t20 82q0 61 -36 92.5t-83 31.5q-43 0 -76 -33.5t-33 -83.5z" />
<glyph d="M55 439q0 84 61.5 140.5t129.5 56.5q88 0 150 -70.5t62 -190.5q0 -76 -19 -139t-47.5 -102.5t-66.5 -70t-72.5 -46t-69 -25t-52 -11.5t-25.5 -2q-7 0 -7 23q0 9 20 11q6 1 10 2q46 7 88.5 26.5t84.5 62.5t61 103q13 44 16 84q0 14 -2 14q-3 0 -27 -16q-57 -37 -127 -37 q-73 0 -120.5 55.5t-47.5 131.5zM123 440q0 -60 38 -104.5t101 -44.5q39 0 71 13.5t45 30.5q8 10 8 56q0 86 -34.5 147.5t-101.5 61.5q-56 0 -91.5 -45t-35.5 -115z" />
<glyph horiz-adv-x="249" d="M25 357q0 5 4 13q3 6 4.5 6.5t10.5 1.5q95 5 113 5q7 0 7 -6v-170q0 -113 3 -170q0 -5 0.5 -7t2.5 -3.5t7 -1.5h36q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -40 1t-44 1t-46.5 -1t-42.5 -1q-8 0 -9.5 2.5t-1.5 11.5q0 7 2.5 10t11.5 3h41q8 0 9.5 2t1.5 10q1 29 1 88 q0 117 -4 214q-1 11 -3 13.5t-10 2.5q-1 0 -24.5 -1t-25.5 -1q-4 0 -4 4zM77 553q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph horiz-adv-x="0" d="M-309 542q0 25 30 25q18 0 34 -25l53 -85q2 -4 2 -6t-4 -2h-21l-8 6l-72 60q-14 11 -14 27z" />
<glyph horiz-adv-x="0" d="M-210 451q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2z" />
<glyph horiz-adv-x="0" d="M-311 451l4 6l79 89q12 13 16 13h24q4 0 16 -13l79 -89q4 -4 4 -6t-6 -2h-9q-1 0 -11 6l-81 45q-4 2 -8 0l-81 -45q-10 -6 -11 -6h-9q-6 0 -6 2z" />
<glyph horiz-adv-x="0" d="M-311 557q0 2 6 2h9q1 0 11 -6l81 -45q4 -2 8 0l81 45q10 6 11 6h9q6 0 6 -2l-4 -6l-79 -89q-12 -13 -16 -13h-24q-4 0 -16 13l-79 89q-4 4 -4 6z" />
<glyph horiz-adv-x="0" d="M-302 508v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8z" />
<glyph horiz-adv-x="0" d="M-303 552q0 6 1 6h17q1 0 2 -6t4.5 -15t10.5 -17.5t24.5 -14.5t43.5 -6t43.5 6t24.5 14.5t10.5 17.5t4.5 15t2 6h17q1 0 1 -6q0 -45 -26 -74t-77 -29t-77 29t-26 74z" />
<glyph horiz-adv-x="0" d="M-277 451q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2zM-157 451q0 2 2 6l53 85q16 25 34 25q30 0 30 -25q0 -16 -14 -27l-72 -60l-8 -6h-21q-4 0 -4 2z" />
<glyph horiz-adv-x="0" d="M-251 503q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph horiz-adv-x="0" d="M-331 503q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM-171 503q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph horiz-adv-x="0" d="M-321 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM-181 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph horiz-adv-x="0" d="M-271 505q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM-243 505q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5z" />
<glyph horiz-adv-x="0" d="M-305 468q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2z" />
<glyph horiz-adv-x="486" d="M20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5 q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="463" d="M25 388q0 14 10 14q2 0 44 -0.5t59 -0.5q18 0 58 1t50 1q31 0 54 -3t49 -12t40 -30t14 -53q0 -23 -10.5 -41.5t-25.5 -28.5t-30.5 -16.5t-26 -9t-10.5 -3.5l12 -3q13 -3 31.5 -9t36.5 -16.5t30.5 -30.5t12.5 -46q0 -102 -177 -102q-14 0 -54 0.5t-55 0.5 q-19 0 -42.5 -0.5t-39.5 -1t-17 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54v158q0 139 -8 139h-61q-11 0 -11 12zM178 129q0 -104 8 -104h47q60 0 88.5 23t28.5 56q0 89 -120 89h-45q-7 0 -7 -7v-57zM178 220q0 -6 10 -6h50q6 0 18 -0.5t13 -0.5q29 0 45.5 24.5t16.5 59.5 q0 41 -30 63t-79 22q-32 0 -41 -2q-3 -2 -3 -66v-94z" />
<glyph horiz-adv-x="487" d="M30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25 t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="502" d="M25 8q0 17 8 17h59q7 0 7 316v35h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38 q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-247z" />
<glyph horiz-adv-x="458" d="M25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34 q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57 q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="444" d="M25 389q0 15 9 15q1 0 17.5 -1t41 -1.5t44.5 -0.5q176 0 202 1q30 1 35.5 2.5t6.5 7.5q0 3 0.5 6t0.5 4.5t0.5 3.5t1.5 2.5t3 1t5 0.5q17 0 17 -6q0 -2 -1.5 -41t-1.5 -67q0 -5 -16 -5q-12 0 -12 9q0 1 0.5 24t0.5 25q0 7 -118 7h-82q-4 0 -4 -65q0 -69 1 -84v-6t1 -3.5 t3 -1.5h6h27q143 0 143 7v38q0 4 12 4q13 0 13 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28t0.5 -30q0 -6 -13 -6q-12 0 -12 7v41q0 7 -101 7h-69q-7 0 -8.5 -2t-1.5 -9q0 -159 4 -159h77q7 0 7 -15q0 -12 -7 -12t-57 1t-59 1t-50 -1t-48 -1q-8 0 -8 13q0 14 10 14h53 q5 0 5 117v96q0 138 -9 138h-57q-12 0 -12 13z" />
<glyph horiz-adv-x="485" d="M25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5 q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="567" d="M25 13q0 12 9 12h60q4 0 4 144v62q0 145 -4 145h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -74v-74q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v68q0 82 -6 82h-57q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5 t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -138q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1q-33 1 -67 1q-33 0 -68 -1t-36 -1q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6 q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="291" d="M-20 -153q0 21 22 41.5t30 20.5q10 0 29.5 -11.5t28.5 -11.5q18 0 24 16t6 51q0 44 -1.5 138t-1.5 140v72q0 73 -2 73h-77q-13 0 -13 15q0 12 13 12l44 -1q45 -1 71 -1q30 0 66.5 1t37.5 1q9 0 9 -13q0 -14 -10 -14h-57q-5 0 -5 -74v-217q0 -44 -2.5 -71.5t-17.5 -66.5 t-44 -70q-48 -52 -99 -52q-17 0 -34 6.5t-17 15.5z" />
<glyph horiz-adv-x="493" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q24 0 59.5 1t37.5 1q9 0 9 -13q0 -14 -12 -14h-48q-6 0 -6 -75v-82q0 -13 9 -13h16q6 0 128 157q7 7 6.5 10t-12.5 3h-22q-13 0 -13 15q0 12 13 12q1 0 22.5 -1t42.5 -1 q23 0 46 1t26 1q9 0 9 -13q0 -14 -12 -14h-39q-3 0 -50 -49.5l-80 -85.5q-6 -6 0 -12l174 -194q10 -10 19 -10h16q7 0 7 -12q0 -15 -7 -15q-2 0 -30.5 1t-54.5 1q-27 0 -56.5 -1t-31.5 -1q-8 0 -8 15q0 12 9 12h37q10 0 10 1.5t-5 7.5l-129 148q-3 3 -12 3h-16q-7 0 -9.5 -1 t-2.5 -7v-94q0 -58 7 -58h55q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-65 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52 q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="705" d="M25 13q0 12 9 12h62q3 0 6.5 87.5t5.5 175.5l1 88h-70q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1h59q7 0 10 -6q150 -301 155 -301q2 0 15.5 26.5t32 68l36 80.5l33.5 75.5t18 41.5q5 11 6.5 13t7.5 2h51q30 0 62.5 1t33.5 1q9 0 9 -13q0 -14 -12 -14h-53q-5 0 -5 -74 q0 -277 10 -277h67q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15q0 12 9 12h62q5 0 5 120q0 225 -7 225q-5 0 -140 -303q-6 -14 -15.5 -29.5t-16.5 -29.5q-5 -8 -10 -8q-7 0 -13 10l-167 327q-12 24 -15 24q-4 0 -4 -29q0 -307 11 -307h69 q7 0 7 -12q0 -15 -7 -15q-1 0 -31 1t-63 1q-36 0 -62 -1l-26 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77 q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph d="M30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph horiz-adv-x="446" d="M25 388q0 14 10 14q2 0 45 -0.5t60 -0.5q18 0 58 1t50 1q168 0 168 -113q0 -118 -172 -118q-14 0 -34.5 1t-23.5 1q-7 0 -7 -7v-38q0 -104 9 -104h74q7 0 7 -12q0 -15 -7 -15l-42 1q-42 1 -76 1q-19 0 -43.5 -0.5t-42 -1t-18.5 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54 v158q0 139 -8 139h-63q-11 0 -11 12zM179 200q0 -9 10 -9q76 0 115.5 19.5t39.5 69.5q0 47 -32 72.5t-88 25.5q-33 0 -42 -2q-3 -2 -3 -62v-114z" />
<glyph horiz-adv-x="494" d="M30 198q0 93 57.5 154.5t172.5 61.5q89 0 146.5 -60.5t57.5 -142.5q0 -71 -45 -128.5t-118 -72.5q-2 0 -11.5 -2t-14.5 -4q-9 -3 -25.5 -13l-29.5 -18.5t-13 -9.5t13.5 -3.5t36.5 -6t37 -6.5q11 -3 27 -7t24 -6.5t19 -4t20 -1.5q18 0 38.5 6.5t34 13t14.5 6.5q2 0 5 -4.5 t3 -7.5q0 -4 -22 -20t-54 -31t-52 -15q-37 0 -81.5 15t-75.5 30t-34 15q-6 0 -25.5 -9t-26.5 -9q-13 0 -21.5 10.5t-8.5 21.5q0 3 2.5 5.5t7 4t8 2.5t10.5 2t8 1q3 1 25.5 3t30.5 4q15 5 39 18.5t24 15.5t-18 5q-85 14 -135 64t-50 123zM113 206q0 -78 49.5 -131.5 t92.5 -53.5q56 0 91.5 53.5t35.5 121.5q0 90 -39 142.5t-100 52.5q-57 0 -93.5 -48.5t-36.5 -136.5z" />
<glyph horiz-adv-x="478" d="M20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1q156 0 156 -98q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5 v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7v-50q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68 q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2q-3 -2 -3 -66v-106z" />
<glyph horiz-adv-x="369" d="M40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24 t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="464" d="M20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1 q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="551" d="M25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14 h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="452" d="M10 389q0 6 0.5 8t3.5 4t9 2q8 0 34.5 -1t42.5 -1q28 0 58.5 1t35.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-38q-18 0 -18 -8q0 -3 46 -119t67 -165q6 -14 7 -14q2 -1 5 8q1 1 2 4q19 47 54 152.5t35 133.5q0 8 -3 8h-46q-8 0 -10.5 3t-2.5 10q0 14 14 14q2 0 11.5 -0.5 t26 -1t34.5 -0.5q12 0 28.5 1t23.5 1t9 -2.5t2 -11.5q0 -13 -12 -13h-15q-9 0 -13 -10q-6 -15 -50.5 -135t-66.5 -173q-6 -15 -12 -23.5t-16.5 -20t-20.5 -26.5q-6 -7 -11 -7q-12 0 -32 60q-5 16 -58 141t-74 179q-4 11 -7.5 13t-14.5 2h-16q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="709" d="M10 389q0 6 0.5 8t3.5 4t9 2q8 0 35.5 -1t43.5 -1q13 0 46 1t41 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-35q-19 0 -19 -8q0 -2 18 -55l42.5 -119.5t38.5 -97.5q6 -13 8 -13t10 17l89 197q2 5 2 23q0 7 -13 42q-4 11 -7.5 12.5t-15.5 1.5h-23q-8 0 -10.5 3t-2.5 10 q0 6 0.5 8t3.5 4t9 2q3 0 31 -1t48 -1q28 0 59 1t36 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-43q-13 0 -13 -8q0 -2 18 -57.5l42 -124.5t36 -100q6 -15 7 -15l8 17q97 228 97 277q0 11 -4 11h-45q-8 0 -10.5 3t-2.5 10q0 14 14 14q2 0 27 -1t36 -1q13 0 36 1t25 1q7 0 9 -2.5 t2 -11.5q0 -13 -12 -13h-13q-9 0 -14 -10q-4 -9 -31 -74l-55 -128.5l-48 -105.5q-8 -17 -22 -34t-25 -36q-2 -4 -7 -4q-14 0 -31 63q-3 11 -15.5 44.5l-30.5 83.5t-31 90q-1 4 -3 9q-1 3 -2 0l-4 -10l-92 -205q-8 -17 -22.5 -33.5t-25.5 -37.5q-2 -4 -7 -4q-4 0 -7.5 3.5 t-7 10.5t-5.5 12.5t-5.5 16t-4.5 14.5q-4 12 -26.5 71.5l-48.5 130l-43 118.5q-4 11 -7 13t-14 2h-16q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="458" d="M10 12q0 13 12 13q27 0 36 4t26 25l111 134q5 6 -4 19q-116 169 -118 169h-32q-8 0 -10.5 3t-2.5 10q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q22 0 49 1t34 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-36q0 -6 16 -36q36 -63 52 -87q4 -8 9 -2l3 3q15 16 73 104q8 12 8 14 q0 4 -16 4h-23q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 24.5 -1t44.5 -1q15 0 33.5 1t22.5 1q13 0 13 -14q0 -13 -12 -13h-20q-4 0 -7 -0.5t-6 -3.5t-5.5 -5t-8 -8.5l-9.5 -11.5l-97 -109q-8 -9 -8 -9.5t7 -14.5q21 -34 75.5 -111.5t60.5 -77.5h32q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-7 0 -36.5 1t-52.5 1q-26 0 -59 -1t-39 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h51q1 0 1 2q0 14 -79 137q-1 1 -2 3q-5 5 -8 1.5t-5 -6.5q-9 -11 -84 -115q-10 -14 -10 -16q0 -6 18 -6h32q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -32 1t-40 1t-38 -1t-28 -1q-8 0 -10.5 3t-2.5 11z" />
<glyph horiz-adv-x="464" d="M10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1t37 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10 q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15 q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="413" d="M30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10q0 2 3 22.5l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16 l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z" />
<glyph horiz-adv-x="486" d="M20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5 q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="463" d="M25 388q0 14 10 14q2 0 44 -0.5t59 -0.5q18 0 58 1t50 1q31 0 54 -3t49 -12t40 -30t14 -53q0 -23 -10.5 -41.5t-25.5 -28.5t-30.5 -16.5t-26 -9t-10.5 -3.5l12 -3q13 -3 31.5 -9t36.5 -16.5t30.5 -30.5t12.5 -46q0 -102 -177 -102q-14 0 -54 0.5t-55 0.5 q-19 0 -42.5 -0.5t-39.5 -1t-17 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54v158q0 139 -8 139h-61q-11 0 -11 12zM178 129q0 -104 8 -104h47q60 0 88.5 23t28.5 56q0 89 -120 89h-45q-7 0 -7 -7v-57zM178 220q0 -6 10 -6h50q6 0 18 -0.5t13 -0.5q29 0 45.5 24.5t16.5 59.5 q0 41 -30 63t-79 22q-32 0 -41 -2q-3 -2 -3 -66v-94z" />
<glyph horiz-adv-x="487" d="M30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25 t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="502" d="M25 8q0 17 8 17h59q7 0 7 316v35h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38 q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-247z" />
<glyph horiz-adv-x="458" d="M25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34 q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57 q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="444" d="M25 389q0 15 9 15q1 0 17.5 -1t41 -1.5t44.5 -0.5q176 0 202 1q30 1 35.5 2.5t6.5 7.5q0 3 0.5 6t0.5 4.5t0.5 3.5t1.5 2.5t3 1t5 0.5q17 0 17 -6q0 -2 -1.5 -41t-1.5 -67q0 -5 -16 -5q-12 0 -12 9q0 1 0.5 24t0.5 25q0 7 -118 7h-82q-4 0 -4 -65q0 -69 1 -84v-6t1 -3.5 t3 -1.5h6h27q143 0 143 7v38q0 4 12 4q13 0 13 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28t0.5 -30q0 -6 -13 -6q-12 0 -12 7v41q0 7 -101 7h-69q-7 0 -8.5 -2t-1.5 -9q0 -159 4 -159h77q7 0 7 -15q0 -12 -7 -12t-57 1t-59 1t-50 -1t-48 -1q-8 0 -8 13q0 14 10 14h53 q5 0 5 117v96q0 138 -9 138h-57q-12 0 -12 13z" />
<glyph horiz-adv-x="485" d="M25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5 q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="567" d="M25 13q0 12 9 12h60q4 0 4 144v62q0 145 -4 145h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -74v-74q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v68q0 82 -6 82h-57q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5 t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -138q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1q-33 1 -67 1q-33 0 -68 -1t-36 -1q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6 q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="291" d="M-20 -153q0 21 22 41.5t30 20.5q10 0 29.5 -11.5t28.5 -11.5q18 0 24 16t6 51q0 44 -1.5 138t-1.5 140v72q0 73 -2 73h-77q-13 0 -13 15q0 12 13 12l44 -1q45 -1 71 -1q30 0 66.5 1t37.5 1q9 0 9 -13q0 -14 -10 -14h-57q-5 0 -5 -74v-217q0 -44 -2.5 -71.5t-17.5 -66.5 t-44 -70q-48 -52 -99 -52q-17 0 -34 6.5t-17 15.5z" />
<glyph horiz-adv-x="493" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q24 0 59.5 1t37.5 1q9 0 9 -13q0 -14 -12 -14h-48q-6 0 -6 -75v-82q0 -13 9 -13h16q6 0 128 157q7 7 6.5 10t-12.5 3h-22q-13 0 -13 15q0 12 13 12q1 0 22.5 -1t42.5 -1 q23 0 46 1t26 1q9 0 9 -13q0 -14 -12 -14h-39q-3 0 -50 -49.5l-80 -85.5q-6 -6 0 -12l174 -194q10 -10 19 -10h16q7 0 7 -12q0 -15 -7 -15q-2 0 -30.5 1t-54.5 1q-27 0 -56.5 -1t-31.5 -1q-8 0 -8 15q0 12 9 12h37q10 0 10 1.5t-5 7.5l-129 148q-3 3 -12 3h-16q-7 0 -9.5 -1 t-2.5 -7v-94q0 -58 7 -58h55q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-65 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52 q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="705" d="M25 13q0 12 9 12h62q3 0 6.5 87.5t5.5 175.5l1 88h-70q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1h59q7 0 10 -6q150 -301 155 -301q2 0 15.5 26.5t32 68l36 80.5l33.5 75.5t18 41.5q5 11 6.5 13t7.5 2h51q30 0 62.5 1t33.5 1q9 0 9 -13q0 -14 -12 -14h-53q-5 0 -5 -74 q0 -277 10 -277h67q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15q0 12 9 12h62q5 0 5 120q0 225 -7 225q-5 0 -140 -303q-6 -14 -15.5 -29.5t-16.5 -29.5q-5 -8 -10 -8q-7 0 -13 10l-167 327q-12 24 -15 24q-4 0 -4 -29q0 -307 11 -307h69 q7 0 7 -12q0 -15 -7 -15q-1 0 -31 1t-63 1q-36 0 -62 -1l-26 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77 q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph d="M30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph horiz-adv-x="446" d="M25 388q0 14 10 14q2 0 45 -0.5t60 -0.5q18 0 58 1t50 1q168 0 168 -113q0 -118 -172 -118q-14 0 -34.5 1t-23.5 1q-7 0 -7 -7v-38q0 -104 9 -104h74q7 0 7 -12q0 -15 -7 -15l-42 1q-42 1 -76 1q-19 0 -43.5 -0.5t-42 -1t-18.5 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54 v158q0 139 -8 139h-63q-11 0 -11 12zM179 200q0 -9 10 -9q76 0 115.5 19.5t39.5 69.5q0 47 -32 72.5t-88 25.5q-33 0 -42 -2q-3 -2 -3 -62v-114z" />
<glyph horiz-adv-x="494" d="M30 198q0 93 57.5 154.5t172.5 61.5q89 0 146.5 -60.5t57.5 -142.5q0 -71 -45 -128.5t-118 -72.5q-2 0 -11.5 -2t-14.5 -4q-9 -3 -25.5 -13l-29.5 -18.5t-13 -9.5t13.5 -3.5t36.5 -6t37 -6.5q11 -3 27 -7t24 -6.5t19 -4t20 -1.5q18 0 38.5 6.5t34 13t14.5 6.5q2 0 5 -4.5 t3 -7.5q0 -4 -22 -20t-54 -31t-52 -15q-37 0 -81.5 15t-75.5 30t-34 15q-6 0 -25.5 -9t-26.5 -9q-13 0 -21.5 10.5t-8.5 21.5q0 3 2.5 5.5t7 4t8 2.5t10.5 2t8 1q3 1 25.5 3t30.5 4q15 5 39 18.5t24 15.5t-18 5q-85 14 -135 64t-50 123zM113 206q0 -78 49.5 -131.5 t92.5 -53.5q56 0 91.5 53.5t35.5 121.5q0 90 -39 142.5t-100 52.5q-57 0 -93.5 -48.5t-36.5 -136.5z" />
<glyph horiz-adv-x="478" d="M20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1q156 0 156 -98q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5 v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7v-50q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68 q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2q-3 -2 -3 -66v-106z" />
<glyph horiz-adv-x="369" d="M40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24 t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="464" d="M20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1 q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="551" d="M25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14 h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="452" d="M10 389q0 6 0.5 8t3.5 4t9 2q8 0 34.5 -1t42.5 -1q28 0 58.5 1t35.5 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-38q-18 0 -18 -8q0 -3 46 -119t67 -165q6 -14 7 -14q2 -1 5 8q1 1 2 4q19 47 54 152.5t35 133.5q0 8 -3 8h-46q-8 0 -10.5 3t-2.5 10q0 14 14 14q2 0 11.5 -0.5 t26 -1t34.5 -0.5q12 0 28.5 1t23.5 1t9 -2.5t2 -11.5q0 -13 -12 -13h-15q-9 0 -13 -10q-6 -15 -50.5 -135t-66.5 -173q-6 -15 -12 -23.5t-16.5 -20t-20.5 -26.5q-6 -7 -11 -7q-12 0 -32 60q-5 16 -58 141t-74 179q-4 11 -7.5 13t-14.5 2h-16q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="709" d="M10 389q0 6 0.5 8t3.5 4t9 2q8 0 35.5 -1t43.5 -1q13 0 46 1t41 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-35q-19 0 -19 -8q0 -2 18 -55l42.5 -119.5t38.5 -97.5q6 -13 8 -13t10 17l89 197q2 5 2 23q0 7 -13 42q-4 11 -7.5 12.5t-15.5 1.5h-23q-8 0 -10.5 3t-2.5 10 q0 6 0.5 8t3.5 4t9 2q3 0 31 -1t48 -1q28 0 59 1t36 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-43q-13 0 -13 -8q0 -2 18 -57.5l42 -124.5t36 -100q6 -15 7 -15l8 17q97 228 97 277q0 11 -4 11h-45q-8 0 -10.5 3t-2.5 10q0 14 14 14q2 0 27 -1t36 -1q13 0 36 1t25 1q7 0 9 -2.5 t2 -11.5q0 -13 -12 -13h-13q-9 0 -14 -10q-4 -9 -31 -74l-55 -128.5l-48 -105.5q-8 -17 -22 -34t-25 -36q-2 -4 -7 -4q-14 0 -31 63q-3 11 -15.5 44.5l-30.5 83.5t-31 90q-1 4 -3 9q-1 3 -2 0l-4 -10l-92 -205q-8 -17 -22.5 -33.5t-25.5 -37.5q-2 -4 -7 -4q-4 0 -7.5 3.5 t-7 10.5t-5.5 12.5t-5.5 16t-4.5 14.5q-4 12 -26.5 71.5l-48.5 130l-43 118.5q-4 11 -7 13t-14 2h-16q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="458" d="M10 12q0 13 12 13q27 0 36 4t26 25l111 134q5 6 -4 19q-116 169 -118 169h-32q-8 0 -10.5 3t-2.5 10q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q22 0 49 1t34 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-36q0 -6 16 -36q36 -63 52 -87q4 -8 9 -2l3 3q15 16 73 104q8 12 8 14 q0 4 -16 4h-23q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 24.5 -1t44.5 -1q15 0 33.5 1t22.5 1q13 0 13 -14q0 -13 -12 -13h-20q-4 0 -7 -0.5t-6 -3.5t-5.5 -5t-8 -8.5l-9.5 -11.5l-97 -109q-8 -9 -8 -9.5t7 -14.5q21 -34 75.5 -111.5t60.5 -77.5h32q8 0 10.5 -3t2.5 -10 q0 -6 -0.5 -8t-3.5 -4t-9 -2q-7 0 -36.5 1t-52.5 1q-26 0 -59 -1t-39 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h51q1 0 1 2q0 14 -79 137q-1 1 -2 3q-5 5 -8 1.5t-5 -6.5q-9 -11 -84 -115q-10 -14 -10 -16q0 -6 18 -6h32q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2 q-8 0 -32 1t-40 1t-38 -1t-28 -1q-8 0 -10.5 3t-2.5 11z" />
<glyph horiz-adv-x="464" d="M10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1t37 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10 q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15 q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="413" d="M30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10q0 2 3 22.5l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16 l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z" />
<glyph horiz-adv-x="486" d="M240 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31 q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182 q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M145 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5 t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1 t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M152 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5 t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1 t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M150 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44 q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12 q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M124 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM284 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14 t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12 q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M153 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13 q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94 q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M184 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM212 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44 q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12 q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M153 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14 q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7 q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15l30.5 -78.5l37.5 -97.5l35 -89t29.5 -71t14.5 -26h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-88 -88 -88 -167q0 -33 20 -56.5t44 -23.5 q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 14 3 28t6.5 24.5t13.5 25l15 22t20 23.5l21 22l25.5 24.5l25.5 24.5q-56 -2 -79 -2q-6 0 -6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114 q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M240 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31 q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182 q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M145 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5 t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1 t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M152 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5 t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1 t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M150 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44 q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12 q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M124 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM284 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14 t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12 q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M153 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13 q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94 q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M184 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM212 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44 q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12 q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M153 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15q139 -362 147 -362h31q7 0 7 -13q0 -14 -10 -14 q-4 0 -36 1t-43 1q-10 0 -52.5 -1t-48.5 -1t-6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7 q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="486" d="M20 11q0 14 11 14h31q7 0 35.5 63t66.5 155t46 109q2 5 10.5 14t19.5 44q6 19 19 19q3 0 5 -1.5t4 -5.5t3 -8t4 -12t6 -15l30.5 -78.5l37.5 -97.5l35 -89t29.5 -71t14.5 -26h31q7 0 7 -13q0 -14 -10 -14q-4 0 -36 1t-43 1q-88 -88 -88 -167q0 -33 20 -56.5t44 -23.5 q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 14 3 28t6.5 24.5t13.5 25l15 22t20 23.5l21 22l25.5 24.5l25.5 24.5q-56 -2 -79 -2q-6 0 -6 11q0 16 7 16h62q-4 16 -21.5 66.5t-18.5 54.5q-3 8 -5 10t-7 2h-114 q-5 0 -13 -18q-37 -92 -39 -115h68q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1t-37 -1t-33 -1q-10 0 -10 13zM175 182q0 -3 7 -3h94q9 0 9 4t-2 7q-4 11 -11 32l-16 47l-13 37q-6 19 -10 19t-12 -19q-20 -50 -41 -108q-5 -15 -5 -16z" />
<glyph horiz-adv-x="487" d="M151 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9 q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5 q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M151 597q0 2 5 2h12l8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9 q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5 q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M246 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33 t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M210 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35 q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25 t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -27 -18.5t-67.5 -24t-76.5 -12.5l-19 -50q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l9 -3q8 -4 22 -8t29 -4 q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5q0 3 35 92q-103 2 -163.5 58.5t-60.5 164.5z" />
<glyph horiz-adv-x="487" d="M151 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9 q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5 q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M151 597q0 2 5 2h12l8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9 q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5 q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M246 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33 t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M210 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35 q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -29 -19t-72 -24.5t-79 -11.5q-107 0 -170 56.5t-63 166.5z" />
<glyph horiz-adv-x="487" d="M30 208q0 80 67.5 142.5t156.5 62.5q40 0 80 -12t60 -24l19 -12l2 13q1 11 13 11q14 0 14 -9q0 -4 -2 -62t-2 -76q0 -8 -16 -8q-15 0 -15 7q0 1 1.5 33t1.5 35q0 4 -11 15q-60 60 -138 60q-60 0 -101 -51.5t-41 -129.5q0 -76 44 -130t113 -54q93 0 138 45q2 12 3 25 t1 28.5t1 25.5q1 9 12 9q16 0 16 -11q0 -45 -4 -101q-1 -6 -27 -18.5t-67.5 -24t-76.5 -12.5l-19 -50q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l9 -3q8 -4 22 -8t29 -4 q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5q0 3 35 92q-103 2 -163.5 58.5t-60.5 164.5z" />
<glyph horiz-adv-x="502" d="M129 597q0 2 5 2h12l8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 8q0 17 8 17h59q7 0 7 316v35h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27 q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1 q-6 0 -6 -70v-247z" />
<glyph horiz-adv-x="502" d="M25 8q0 17 8 17h59q4 0 6 161q0 6 -4 6h-63q-2 0 -2.5 12t2.5 12h61q7 0 7 9v151h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1 t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-85q0 -7 1 -8t8 -1h101q3 0 3 -12t-3 -12h-101q-9 0 -9 -6v-123z" />
<glyph horiz-adv-x="502" d="M129 597q0 2 5 2h12l8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 8q0 17 8 17h59q7 0 7 316v35h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27 q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1 q-6 0 -6 -70v-247z" />
<glyph horiz-adv-x="502" d="M25 8q0 17 8 17h59q4 0 6 161q0 6 -4 6h-63q-2 0 -2.5 12t2.5 12h61q7 0 7 9v151h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1 t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-85q0 -7 1 -8t8 -1h101q3 0 3 -12t-3 -12h-101q-9 0 -9 -6v-123z" />
<glyph horiz-adv-x="458" d="M225 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6 q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M138 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-3 0 -8 6l-82 107q-7 10 -7 20zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6 q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M130 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1 q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5 q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5 q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M109 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM269 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13 q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5 t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5 t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M130 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1 q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5 q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5 q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M137 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5 t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6 q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1 t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M189 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7 q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M138 518v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7 q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34 q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57 q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7h-11.5t-28 0.5t-37.5 0.5q-87 -87 -87 -166q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 14 3 28t6.5 24.5t13 24.5t14.5 22 t20.5 23.5t21 21.5t25 24.5l25.5 24.5q-19 0 -78 0.5t-99 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M225 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6 q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M138 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-3 0 -8 6l-82 107q-7 10 -7 20zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6 q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M130 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1 q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5 q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5 q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M109 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM269 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13 q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5 t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5 t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M130 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1 q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5 q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5 q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M137 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5 t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6 q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1 t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M189 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7 q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M138 518v23q0 6 1.5 7t7.5 1h187q6 0 7 -1t1 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7 q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6 q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="458" d="M25 10q0 15 11 15h62q5 0 5 36v253q0 62 -7 62h-57q-10 0 -10 13q0 14 5 14l17 -1q17 0 42.5 -0.5t46.5 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34 q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5h17q8 0 9.5 2t1.5 13v57 q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7h-11.5t-28 0.5t-37.5 0.5q-87 -87 -87 -166q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5t-30.5 63.5q0 14 3 28t6.5 24.5t13 24.5t14.5 22 t20.5 23.5t21 21.5t25 24.5l25.5 24.5q-19 0 -78 0.5t-99 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12z" />
<glyph horiz-adv-x="485" d="M138 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11 q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1 q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="485" d="M145 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11 q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1 q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="485" d="M197 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5 q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21 t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="485" d="M215 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22 q0 11 11 11q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12 q7 0 36 -1t46 -1q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="485" d="M138 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11 q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1 q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="485" d="M145 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11 q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1 q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="485" d="M197 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22q0 11 11 11q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5 q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12q7 0 36 -1t46 -1q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21 t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="485" d="M215 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 200q0 96 65.5 155.5t158.5 59.5q39 0 76 -13.5t53 -26.5q10 -8 10 3l1 22 q0 11 11 11q18 0 18 -8q0 -1 -3 -57t-3 -79q0 -7 -15 -7q-14 0 -14 8q0 1 1 24.5t1 26.5q0 4 -15.5 20.5t-47 33.5t-64.5 17q-65 0 -106.5 -47t-41.5 -131q0 -83 44.5 -137.5t118.5 -54.5q36 0 60.5 8.5t26.5 18.5q2 18 2 28v29q0 24 -7 24h-55q-5 0 -5 15q0 12 5 12 q7 0 36 -1t46 -1q13 0 36.5 1t37.5 1q4 0 4 -10q0 -17 -4 -17h-19q-8 0 -8 -34q0 -7 -0.5 -21t-0.5 -25q0 -8 -27.5 -21.5t-71.5 -24.5t-82 -11q-93 0 -157.5 50.5t-64.5 158.5z" />
<glyph horiz-adv-x="567" d="M175 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 13q0 12 9 12h60q4 0 4 144v62q0 145 -4 145h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1 q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -74v-74q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v68q0 82 -6 82h-57q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -138 q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1q-33 1 -67 1q-33 0 -68 -1t-36 -1q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15z " />
<glyph horiz-adv-x="567" d="M25 13q0 12 9 12h60q4 0 4 144v104q0 7 -10 7h-59q-2 0 -2.5 12t2.5 12h59q7 0 8 1t1 8q-2 63 -3 63h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -63q0 -9 6 -9h211q6 0 7.5 2t1.5 10q-2 60 -6 60h-57 q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -60v-6t1 -3.5t3 -2t5 -0.5h48q3 0 3 -12t-3 -12h-48q-6 0 -7.5 -1.5t-1.5 -8.5v-32q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1 q-33 1 -67 1q-33 0 -68 -1t-36 -1q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15zM174 228q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v44 q0 8 -1 9t-9 1h-210q-6 0 -6 -7v-45z" />
<glyph horiz-adv-x="567" d="M175 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 13q0 12 9 12h60q4 0 4 144v62q0 145 -4 145h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1 q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -74v-74q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v68q0 82 -6 82h-57q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -138 q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1q-33 1 -67 1q-33 0 -68 -1t-36 -1q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15z " />
<glyph horiz-adv-x="567" d="M25 13q0 12 9 12h60q4 0 4 144v104q0 7 -10 7h-59q-2 0 -2.5 12t2.5 12h59q7 0 8 1t1 8q-2 63 -3 63h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -63q0 -9 6 -9h211q6 0 7.5 2t1.5 10q-2 60 -6 60h-57 q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -60v-6t1 -3.5t3 -2t5 -0.5h48q3 0 3 -12t-3 -12h-48q-6 0 -7.5 -1.5t-1.5 -8.5v-32q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1 q-33 1 -67 1q-33 0 -68 -1t-36 -1q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15zM174 228q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v44 q0 8 -1 9t-9 1h-210q-6 0 -6 -7v-45z" />
<glyph horiz-adv-x="283" d="M122 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59 q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M27 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1 q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M6 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM166 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15 q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M35 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74 v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M32 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1 q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M34 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1 q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M35 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189 q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -35 1t-64 1q-49 -92 -49 -167q0 -38 15.5 -59.5 t45.5 -21.5q18 0 32 6t20.5 12.5t7.5 6.5t6 -6t5 -7q0 -3 -12 -14t-41 -24t-63 -13q-30 0 -52.5 26t-22.5 59q0 60 87 202q-32 0 -65 -1l-33 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M122 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59 q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M27 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1 q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M6 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM166 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15 q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M35 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74 v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M32 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1 q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M34 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1 q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M35 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189 q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="283" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -35 1t-64 1q-49 -92 -49 -167q0 -38 15.5 -59.5 t45.5 -21.5q18 0 32 6t20.5 12.5t7.5 6.5t6 -6t5 -7q0 -3 -12 -14t-41 -24t-63 -13q-30 0 -52.5 26t-22.5 59q0 60 87 202q-32 0 -65 -1l-33 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="291" d="M35 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM-20 -153q0 21 22 41.5t30 20.5q10 0 29.5 -11.5t28.5 -11.5q18 0 24 16t6 51q0 44 -1.5 138 t-1.5 140v72q0 73 -2 73h-77q-13 0 -13 15q0 12 13 12l44 -1q45 -1 71 -1q30 0 66.5 1t37.5 1q9 0 9 -13q0 -14 -10 -14h-57q-5 0 -5 -74v-217q0 -44 -2.5 -71.5t-17.5 -66.5t-44 -70q-48 -52 -99 -52q-17 0 -34 6.5t-17 15.5z" />
<glyph horiz-adv-x="291" d="M35 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM-20 -153q0 21 22 41.5t30 20.5q10 0 29.5 -11.5t28.5 -11.5q18 0 24 16t6 51q0 44 -1.5 138 t-1.5 140v72q0 73 -2 73h-77q-13 0 -13 15q0 12 13 12l44 -1q45 -1 71 -1q30 0 66.5 1t37.5 1q9 0 9 -13q0 -14 -10 -14h-57q-5 0 -5 -74v-217q0 -44 -2.5 -71.5t-17.5 -66.5t-44 -70q-48 -52 -99 -52q-17 0 -34 6.5t-17 15.5z" />
<glyph horiz-adv-x="493" d="M208 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15 q0 12 13 12l34 -1q35 -1 61 -1q24 0 59.5 1t37.5 1q9 0 9 -13q0 -14 -12 -14h-48q-6 0 -6 -75v-82q0 -13 9 -13h16q6 0 128 157q7 7 6.5 10t-12.5 3h-22q-13 0 -13 15q0 12 13 12q1 0 22.5 -1t42.5 -1q23 0 46 1t26 1q9 0 9 -13q0 -14 -12 -14h-39q-3 0 -50 -49.5l-80 -85.5 q-6 -6 0 -12l174 -194q10 -10 19 -10h16q7 0 7 -12q0 -15 -7 -15q-2 0 -30.5 1t-54.5 1q-27 0 -56.5 -1t-31.5 -1q-8 0 -8 15q0 12 9 12h37q10 0 10 1.5t-5 7.5l-129 148q-3 3 -12 3h-16q-7 0 -9.5 -1t-2.5 -7v-94q0 -58 7 -58h55q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-65 1 q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="493" d="M208 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15 q0 12 13 12l34 -1q35 -1 61 -1q24 0 59.5 1t37.5 1q9 0 9 -13q0 -14 -12 -14h-48q-6 0 -6 -75v-82q0 -13 9 -13h16q6 0 128 157q7 7 6.5 10t-12.5 3h-22q-13 0 -13 15q0 12 13 12q1 0 22.5 -1t42.5 -1q23 0 46 1t26 1q9 0 9 -13q0 -14 -12 -14h-39q-3 0 -50 -49.5l-80 -85.5 q-6 -6 0 -12l174 -194q10 -10 19 -10h16q7 0 7 -12q0 -15 -7 -15q-2 0 -30.5 1t-54.5 1q-27 0 -56.5 -1t-31.5 -1q-8 0 -8 15q0 12 9 12h37q10 0 10 1.5t-5 7.5l-129 148q-3 3 -12 3h-16q-7 0 -9.5 -1t-2.5 -7v-94q0 -58 7 -58h55q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-65 1 q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M189 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12 l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M123 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70 q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M310 331q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3zM25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70 q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52 q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15zM319 229q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v16q0 7 -1.5 7.5t-7.5 -1.5l-60 -22q-1 0 -2.5 6t-1 12.5t2.5 6.5l61 22q8 9 9 13v62q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-102q0 -6 0.5 -8t2.5 -2 t7 2l179 65q1 1 2 -3q4 -16 -1 -22l-180 -66q-9 -9 -10 -13v-40q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M189 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12 l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M123 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70 q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M310 331q0 2 2.5 27t5.5 60.5t5 54.5q3 33 35 33t32 -29q0 -5 -3 -13l-51 -124q-6 -12 -8 -12h-15q-3 0 -3 3zM25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70 q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52 q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15zM319 229q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v16q0 7 -1.5 7.5t-7.5 -1.5l-60 -22q-1 0 -2.5 6t-1 12.5t2.5 6.5l61 22q8 9 9 13v62q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-102q0 -6 0.5 -8t2.5 -2 t7 2l179 65q1 1 2 -3q4 -16 -1 -22l-180 -66q-9 -9 -10 -13v-40q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M179 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51 q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69 q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M269 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12 q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1 q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M174 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51q5 0 10 -6 l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69q0 -238 9 -238 h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M250 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1 q34 -1 60 -1h51q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5 q-2 0 -2 -14v-69q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M179 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51 q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69 q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M269 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12 q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1 q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M174 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1q34 -1 60 -1h51q5 0 10 -6 l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5q-2 0 -2 -14v-69q0 -238 9 -238 h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph horiz-adv-x="569" d="M250 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM25 13q0 12 9 12h59l16 351h-70q-13 0 -13 15q0 12 13 12l35 -1 q34 -1 60 -1h51q5 0 10 -6l240 -271q7 -9 10 -9q2 0 2 10q0 251 -9 251h-74q-7 0 -7 12q0 15 7 15q1 0 35 -1t64 -1q21 0 45.5 1t27.5 1q8 0 8 -15q0 -12 -9 -12h-47q-6 0 -10 -120.5t-4 -181.5l2 -77q0 -10 -7 -10q-8 0 -17 9l-305 337q-3 3 -6 6.5t-4.5 5t-2.5 1.5 q-2 0 -2 -14v-69q0 -238 9 -238h76q7 0 7 -12q0 -15 -7 -15q-1 0 -33 1t-66 1q-26 0 -44.5 -0.5t-27.5 -1t-13 -0.5q-8 0 -8 15z" />
<glyph d="M139 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5 q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M118 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM278 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5 q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M147 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55 q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M234 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55 q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M144 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5 t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M146 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5 q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M147 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55 t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M169 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM279 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM30 190q0 94 60.5 159t175.5 65 q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M30 190q0 94 60.5 159t175.5 65q36 0 72 -13h1q8 -1 11 3l1 2l45 78h1q2 0 7.5 -2.5t9.5 -5.5t3 -4l-45 -78q-3 -7 1 -10q46 -29 71.5 -78.5t25.5 -104.5q0 -91 -54 -151.5t-175 -60.5q-49 0 -88 15q-5 2 -8 -3l-48 -83h-1q-2 0 -7.5 2.5t-9.5 5.5t-3 4l47 81q3 5 -2 8 q-44 26 -67.5 71.5t-23.5 99.5zM113 210q0 -89 36 -144q1 -2 2 -2q2 0 4 4l166 286l2 4l1 2q0 1 -4 5q-32 27 -72 27q-56 0 -95.5 -54.5t-39.5 -127.5zM172 39q32 -27 72 -27q73 0 108.5 55t35.5 129q0 80 -42 140q-2 4 -3 4.5t-2 0t-3 -4.5l-166 -288q-3 -7 0 -9z" />
<glyph d="M139 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5 q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M118 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM278 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5 q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M147 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55 q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M234 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55 q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M144 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5 t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M146 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5 q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M147 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM30 190q0 94 60.5 159t175.5 65q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55 t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M169 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM279 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM30 190q0 94 60.5 159t175.5 65 q91 0 147.5 -64.5t56.5 -148.5q0 -91 -54 -151.5t-175 -60.5q-99 0 -155 58t-56 143zM113 210q0 -88 35.5 -143t95.5 -55q73 0 108.5 55t35.5 129q0 78 -39.5 137t-100.5 59q-56 0 -95.5 -54.5t-39.5 -127.5z" />
<glyph d="M30 190q0 94 60.5 159t175.5 65q36 0 72 -13h1q8 -1 11 3l1 2l45 78h1q2 0 7.5 -2.5t9.5 -5.5t3 -4l-45 -78q-3 -7 1 -10q46 -29 71.5 -78.5t25.5 -104.5q0 -91 -54 -151.5t-175 -60.5q-49 0 -88 15q-5 2 -8 -3l-48 -83h-1q-2 0 -7.5 2.5t-9.5 5.5t-3 4l47 81q3 5 -2 8 q-44 26 -67.5 71.5t-23.5 99.5zM113 210q0 -89 36 -144q1 -2 2 -2q2 0 4 4l166 286l2 4l1 2q0 1 -4 5q-32 27 -72 27q-56 0 -95.5 -54.5t-39.5 -127.5zM172 39q32 -27 72 -27q73 0 108.5 55t35.5 129q0 80 -42 140q-2 4 -3 4.5t-2 0t-3 -4.5l-166 -288q-3 -7 0 -9z" />
<glyph horiz-adv-x="478" d="M104 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1q156 0 156 -98 q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7v-50 q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2q-3 -2 -3 -66 v-106z" />
<glyph horiz-adv-x="478" d="M199 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1q156 0 156 -98q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3 q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7v-50q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5 t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2q-3 -2 -3 -66v-106z" />
<glyph horiz-adv-x="478" d="M194 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1 q156 0 156 -98q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7 v-50q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2 q-3 -2 -3 -66v-106z" />
<glyph horiz-adv-x="478" d="M104 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1q156 0 156 -98 q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7v-50 q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2q-3 -2 -3 -66 v-106z" />
<glyph horiz-adv-x="478" d="M199 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1q156 0 156 -98q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3 q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7v-50q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5 t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2q-3 -2 -3 -66v-106z" />
<glyph horiz-adv-x="478" d="M194 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM20 388q0 14 10 14q2 0 40 -0.5t55 -0.5q18 0 59.5 1t51.5 1 q156 0 156 -98q0 -23 -11 -42.5t-26.5 -30.5t-31 -18.5t-26.5 -11t-11 -4.5l13 -3q13 -3 31 -11.5t36.5 -22t31.5 -40t14 -61.5q0 -16 2 -24t3.5 -9.5t5.5 -1.5h31q7 0 7 -16q0 -11 -10 -11l-110 2q-5 0 -5 5v37q0 35 -3 55.5t-13.5 44t-35 34t-64.5 10.5h-48q-7 0 -7 -7 v-50q0 -104 8 -104h61q7 0 7 -12q0 -15 -7 -15l-36 1q-36 1 -70 1q-19 0 -41.5 -0.5t-37.5 -1t-16 -0.5q-9 0 -9 12q0 15 9 15h53q6 0 6 54v158q0 139 -8 139h-53q-11 0 -11 12zM165 208q0 -6 10 -6h68q37 0 56 25.5t19 62.5q0 40 -32.5 66t-73.5 26q-35 0 -44 -2 q-3 -2 -3 -66v-106z" />
<glyph horiz-adv-x="369" d="M68 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8 q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106 q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M163 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3 q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49 q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M68 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8 q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106 q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24 t59 -40.5t24.5 -69.5q0 -110 -140 -119l-20 -54q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l9 -3q8 -4 22 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5 t-6.5 -2q-8 0 -8 5q0 6 36 95h-5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M140 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9 q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5 t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M68 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8 q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106 q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M163 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3 q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49 q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M68 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8 q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106 q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24 t59 -40.5t24.5 -69.5q0 -110 -140 -119l-20 -54q-2 -9 0 -9l5 2l14.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l9 -3q8 -4 22 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5 t-6.5 -2q-8 0 -8 5q0 6 36 95h-5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="369" d="M140 -225l15 10q15 10 29.5 25.5t14.5 29.5q0 17 -13.5 30t-26.5 21.5t-13 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9 q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5 t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="464" d="M124 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11 q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4 t-12 5z" />
<glyph horiz-adv-x="464" d="M20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -37 1t-66 1l-24 -65q-2 -9 0 -9l6 2 q5 1 13.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l8 -3q9 -4 23 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5t41 107q-34 0 -71 -1l-37 -1q-8 0 -8 15 q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="464" d="M185 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5 q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10 l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="464" d="M20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-48q0 -8 1.5 -9.5t9.5 -1.5h99q3 0 3 -12t-3 -12h-99q-8 0 -9.5 -1t-1.5 -8v-92 q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l1 74q0 9 -6 9h-99q-2 0 -2.5 12t2.5 12h94q9 0 10.5 1.5t1.5 9.5l1 92q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="464" d="M124 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11 q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4 t-12 5z" />
<glyph horiz-adv-x="464" d="M20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -37 1t-66 1l-24 -65q-2 -9 0 -9l6 2 q5 1 13.5 2.5t16.5 1.5q40 0 62.5 -21t22.5 -47q0 -35 -29.5 -63.5t-76.5 -28.5q-23 0 -43.5 6.5t-30 12.5t-9.5 9q0 11 8 11l8 -3q9 -4 23 -8t29 -4q34 0 50 13.5t16 42.5q0 45 -55 45q-8 0 -16.5 -2.5t-14 -4.5t-6.5 -2q-8 0 -8 5t41 107q-34 0 -71 -1l-37 -1q-8 0 -8 15 q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="464" d="M185 -225l15 10q14 10 29 25.5t15 29.5q0 17 -13 30t-26.5 21.5t-13.5 12.5q0 11 18.5 23t24.5 12q12 0 37.5 -19.5t25.5 -33.5q0 -31 -24.5 -62.5t-48 -48t-29.5 -16.5q-4 0 -7 5.5t-3 10.5zM20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5 q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10 l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="464" d="M20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73q-9 0 -9 -101v-48q0 -8 1.5 -9.5t9.5 -1.5h99q3 0 3 -12t-3 -12h-99q-8 0 -9.5 -1t-1.5 -8v-92 q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l1 74q0 9 -6 9h-99q-2 0 -2.5 12t2.5 12h94q9 0 10.5 1.5t1.5 9.5l1 92q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="551" d="M174 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62 q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6 q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M172 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13 q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17 t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M262 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103 q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5 t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M146 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM306 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1 q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10 l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M167 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62 q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6 q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M206 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM234 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13 q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17 t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M175 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103 q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5 t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M175 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107 q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112 q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M197 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM307 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 391q0 12 13 12l28 -1 q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292 q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14 h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5t-9.5 -4.5l-25 -13t-33.5 -15.5q-15 -6 -27 -18q-85 -87 -85 -164q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5 t-30.5 63.5q0 47 26.5 84t87.5 96q10 9 15 14q-30 -8 -61 -8q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M174 579q0 7 1 7h17l1 -4q1 -5 3.5 -13.5t5.5 -15.5q21 -41 75 -41t75 41q3 7 5.5 15.5t3.5 13.5l1 4h17q1 0 1 -6q0 -48 -26.5 -84.5t-76.5 -36.5q-51 0 -77 36t-26 84zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62 q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6 q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M172 498q0 7 8 26q11 27 27 41t29 14q16 0 46 -19t42 -19q22 0 36 35q2 7 12 7q7 0 7 -2q0 -8 -7 -27q-22 -58 -60 -58q-18 0 -45 18.5t-43 18.5q-23 0 -34 -31q-2 -6 -11 -6q-7 0 -7 2zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13 q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17 t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M262 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-4 -6 -8 -6h-16q-4 0 -4 2zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103 q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5 t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M146 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM306 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1 q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10 l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M167 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62 q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6 q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M206 535q0 29 21 50t50 21t50 -21t21 -50t-21 -50t-50 -21t-50 21t-21 50zM234 535q0 -18 12.5 -30.5t30.5 -12.5t30.5 12.5t12.5 30.5t-12.5 30.5t-30.5 12.5t-30.5 -12.5t-12.5 -30.5zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13 q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17 t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M175 582q0 13 9.5 21.5t26.5 8.5q21 0 30 -25l49 -130q2 -4 2 -6t-4 -2h-16q-4 0 -8 6l-82 107q-7 10 -7 20zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103 q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5 t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M175 518v23q0 6 1.5 7t7.5 1h187q5 0 6.5 -1t1.5 -6v-25q0 -6 -1 -7t-7 -1h-187q-7 0 -8 1t-1 8zM25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107 q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112 q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M197 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM307 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM25 391q0 12 13 12l28 -1 q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14h-35q-5 0 -5 -74v-292 q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5l-10 -6q-11 -6 -28 -14t-38 -16t-48 -14t-52 -6q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="551" d="M25 391q0 12 13 12l28 -1q28 -1 54 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-62q-5 0 -5 -74v-169q0 -52 30.5 -79.5t75.5 -27.5q132 0 136 103q1 14 1 107q0 140 -7 140h-55q-13 0 -13 15q0 12 13 12l35 -1q36 -1 62 -1q22 0 50 1t31 1q9 0 9 -13q0 -14 -12 -14 h-35q-5 0 -5 -74v-292q0 -14 -16 -14q-14 0 -21 10l-12.5 19.5t-11.5 17t-5 5.5t-9.5 -4.5l-25 -13t-33.5 -15.5q-15 -6 -27 -18q-85 -87 -85 -164q0 -33 20 -56.5t44 -23.5q23 0 43 11t31 22l11 11q1 0 6 -6t5 -7q0 -3 -15 -19t-47.5 -34t-68.5 -18q-32 0 -62.5 29.5 t-30.5 63.5q0 47 26.5 84t87.5 96q10 9 15 14q-30 -8 -61 -8q-85 0 -116.5 33.5t-31.5 93.5v112q0 145 -4 145h-42q-13 0 -13 15z" />
<glyph horiz-adv-x="709" d="M255 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM10 389q0 6 0.5 8t3.5 4t9 2q8 0 35.5 -1t43.5 -1q13 0 46 1t41 1q9 0 11 -2.5t2 -11.5 q0 -13 -12 -13h-35q-19 0 -19 -8q0 -2 18 -55l42.5 -119.5t38.5 -97.5q6 -13 8 -13t10 17l89 197q2 5 2 23q0 7 -13 42q-4 11 -7.5 12.5t-15.5 1.5h-23q-8 0 -10.5 3t-2.5 10q0 6 0.5 8t3.5 4t9 2q3 0 31 -1t48 -1q28 0 59 1t36 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-43 q-13 0 -13 -8q0 -2 18 -57.5l42 -124.5t36 -100q6 -15 7 -15l8 17q97 228 97 277q0 11 -4 11h-45q-8 0 -10.5 3t-2.5 10q0 14 14 14q2 0 27 -1t36 -1q13 0 36 1t25 1q7 0 9 -2.5t2 -11.5q0 -13 -12 -13h-13q-9 0 -14 -10q-4 -9 -31 -74l-55 -128.5l-48 -105.5 q-8 -17 -22 -34t-25 -36q-2 -4 -7 -4q-14 0 -31 63q-3 11 -15.5 44.5l-30.5 83.5t-31 90q-1 4 -3 9q-1 3 -2 0l-4 -10l-92 -205q-8 -17 -22.5 -33.5t-25.5 -37.5q-2 -4 -7 -4q-4 0 -7.5 3.5t-7 10.5t-5.5 12.5t-5.5 16t-4.5 14.5q-4 12 -26.5 71.5l-48.5 130l-43 118.5 q-4 11 -7 13t-14 2h-16q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="709" d="M255 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12l-8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM10 389q0 6 0.5 8t3.5 4t9 2q8 0 35.5 -1t43.5 -1q13 0 46 1t41 1q9 0 11 -2.5t2 -11.5 q0 -13 -12 -13h-35q-19 0 -19 -8q0 -2 18 -55l42.5 -119.5t38.5 -97.5q6 -13 8 -13t10 17l89 197q2 5 2 23q0 7 -13 42q-4 11 -7.5 12.5t-15.5 1.5h-23q-8 0 -10.5 3t-2.5 10q0 6 0.5 8t3.5 4t9 2q3 0 31 -1t48 -1q28 0 59 1t36 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-43 q-13 0 -13 -8q0 -2 18 -57.5l42 -124.5t36 -100q6 -15 7 -15l8 17q97 228 97 277q0 11 -4 11h-45q-8 0 -10.5 3t-2.5 10q0 14 14 14q2 0 27 -1t36 -1q13 0 36 1t25 1q7 0 9 -2.5t2 -11.5q0 -13 -12 -13h-13q-9 0 -14 -10q-4 -9 -31 -74l-55 -128.5l-48 -105.5 q-8 -17 -22 -34t-25 -36q-2 -4 -7 -4q-14 0 -31 63q-3 11 -15.5 44.5l-30.5 83.5t-31 90q-1 4 -3 9q-1 3 -2 0l-4 -10l-92 -205q-8 -17 -22.5 -33.5t-25.5 -37.5q-2 -4 -7 -4q-4 0 -7.5 3.5t-7 10.5t-5.5 12.5t-5.5 16t-4.5 14.5q-4 12 -26.5 71.5l-48.5 130l-43 118.5 q-4 11 -7 13t-14 2h-16q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="464" d="M138 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1t37 1q9 0 11 -2.5t2 -11.5 q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5 t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="464" d="M233 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1t37 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38 q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168 q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="464" d="M117 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM277 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1 t37 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14 q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32 q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="464" d="M138 461q0 1 3 6l79 119q6 10 8.5 11.5t9.5 1.5h20q7 0 9.5 -1.5t8.5 -11.5l79 -119q3 -5 3 -6q0 -2 -5 -2h-12q-1 0 -8 6l-81 70q-4 3 -8 0l-81 -70q-6 -6 -8 -6h-12q-5 0 -5 2zM10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1t37 1q9 0 11 -2.5t2 -11.5 q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5 t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="464" d="M233 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1t37 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38 q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168 q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="464" d="M117 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM277 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM10 389q0 6 0.5 8t3.5 4t9 2q7 0 34.5 -1t48.5 -1q29 0 61 1 t37 1q9 0 11 -2.5t2 -11.5q0 -13 -12 -13h-51q1 -12 23 -55.5l42.5 -80.5t21.5 -38q2 -5 4 -6.5t4 -0.5t6 5q11 13 45.5 69.5t50.5 88.5q1 2 3 5t3.5 5.5t1.5 3.5q0 4 -19 4h-40q-8 0 -10.5 3t-2.5 10q0 14 14 14q1 0 33.5 -1t53.5 -1q15 0 32 1t21 1q13 0 13 -14 q0 -13 -12 -13h-17h-5t-4 -1l-3 -1.5t-3.5 -3t-3.5 -4l-4.5 -6.5l-5.5 -8l-123 -168q-10 -13 -10 -31v-87q0 -41 9 -41h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-26 0 -48 -0.5t-34 -1t-16 -0.5q-8 0 -8 15q0 12 9 12h57q5 0 5 84v38q0 7 -66.5 118t-70.5 111h-32 q-8 0 -10.5 3t-2.5 10z" />
<glyph horiz-adv-x="413" d="M201 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10 q0 2 3 22.5l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z " />
<glyph horiz-adv-x="413" d="M106 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5 t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10q0 2 3 22.5l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5 q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z" />
<glyph horiz-adv-x="413" d="M165 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10q0 2 3 22.5 l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z" />
<glyph horiz-adv-x="413" d="M201 451q0 2 2 6l49 130q9 25 30 25q17 0 26.5 -8.5t9.5 -21.5q0 -10 -7 -20l-82 -107q-5 -6 -8 -6h-16q-4 0 -4 2zM30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10 q0 2 3 22.5l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z " />
<glyph horiz-adv-x="413" d="M106 597q0 2 5 2h12q1 0 8 -6l81 -70q4 -3 8 0l81 70q6 6 8 6h12q5 0 5 -2q0 -1 -3 -6l-79 -119q-6 -10 -8.5 -11.5t-9.5 -1.5h-20q-7 0 -9.5 1.5t-8.5 11.5l-79 119q-3 5 -3 6zM30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5 t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10q0 2 3 22.5l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5 q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z" />
<glyph horiz-adv-x="413" d="M165 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM30 10q0 4 10 20l228 327l4 6t3.5 5.5t1.5 3.5q0 4 -14 4l-165 -5h-9t-6.5 -0.5t-4 -0.5t-3 -2t-1 -4.5l-1.5 -7.5l-7 -50q-2 -12 -13 -12q-15 0 -15 10q0 2 3 22.5 l7 49t6 46.5q2 6 8 6q9 0 14.5 -1.5t4.5 -6.5l-1 -9q-1 -8 0 -9t9 -1h266q19 0 19 -8q0 -3 -8 -16l-215 -322q-13 -19 -13 -24q0 -4 10 -4l194 7q9 0 11 1.5t3 11.5l3 60q1 9 4.5 11.5t15.5 1.5q9 -1 9 -9q0 -23 -5 -96q-1 -11 -3 -13t-13 -2h-315q-22 0 -22 10z" />
<glyph horiz-adv-x="283" d="M86 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189 q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="475" d="M30 91q0 27 19.5 54t33 37l36.5 26q9 6 7 8l-5 5q-36 35 -36 81q0 45 32 76.5t78 31.5q36 0 64 -22.5t28 -55.5q0 -13 -4 -24.5t-9.5 -19.5t-15 -17t-15.5 -13t-17.5 -11t-13.5 -9q-9 -6 -9 -7t9 -10q46 -38 96 -91l8 -8q1 0 8 11q34 55 34 70q0 5 -4 5h-38q-8 0 -10.5 3 t-2.5 10q0 14 14 14q1 0 22.5 -1t42.5 -1q15 0 34 1t23 1q7 0 9 -2.5t2 -11.5q0 -13 -12 -13h-34q-1 0 -68 -90l-6 -10q0 -2 7 -11q27 -38 36 -53q11 -19 39 -19h22q9 0 9 -13q0 -12 -7 -12q-20 0 -40.5 -3t-33.5 -6t-16 -3q-9 0 -13 7q-13 23 -37 56q-1 1 -2 3q-3 4 -6 1 l-2 -2q-22 -25 -61 -47.5t-77 -22.5q-53 0 -85.5 30t-32.5 78zM90 117q0 -34 26.5 -62t67.5 -28q27 0 47.5 8t26.5 14l18 18q3 3 3 5t-3 6q-3 3 -4 5q-28 39 -111 107q-10 8 -12 8q-3 0 -17 -10q-42 -30 -42 -71zM131 325q0 -38 37 -69q12 -10 14 -10q6 0 26 15q32 24 32 65 q0 23 -14 39t-37 16q-28 0 -43 -15.5t-15 -40.5z" />
<glyph horiz-adv-x="574" d="M263 -153q0 21 22 41.5t30 20.5q10 0 29.5 -11.5t28.5 -11.5q18 0 24 16t6 51q0 44 -1.5 138t-1.5 140v72q0 73 -2 73h-77q-13 0 -13 15q0 12 13 12l45 -1q44 -1 70 -1q30 0 66.5 1t37.5 1q9 0 9 -13q0 -14 -10 -14h-57q-5 0 -5 -74v-217q0 -44 -2.5 -71.5t-17.5 -66.5 t-44 -70q-48 -52 -99 -52q-17 0 -34 6.5t-17 15.5zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1 t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="502" d="M25 8q0 17 8 17h59q4 0 6 161q0 6 -4 6h-63q-2 0 -2.5 12t2.5 12h61q7 0 7 9v151h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1 t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-85q0 -7 1 -8t8 -1h101q3 0 3 -12t-3 -12h-101q-9 0 -9 -6v-123z" />
<glyph horiz-adv-x="502" d="M25 8q0 17 8 17h59q4 0 6 161q0 6 -4 6h-63q-2 0 -2.5 12t2.5 12h61q7 0 7 9v151h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1 t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-85q0 -7 1 -8t8 -1h101q3 0 3 -12t-3 -12h-101q-9 0 -9 -6v-123z" />
<glyph horiz-adv-x="574" d="M263 -153q0 21 22 41.5t30 20.5q10 0 29.5 -11.5t28.5 -11.5q18 0 24 16t6 51q0 44 -1.5 138t-1.5 140v72q0 73 -2 73h-77q-13 0 -13 15q0 12 13 12l45 -1q44 -1 70 -1q30 0 66.5 1t37.5 1q9 0 9 -13q0 -14 -10 -14h-57q-5 0 -5 -74v-217q0 -44 -2.5 -71.5t-17.5 -66.5 t-44 -70q-48 -52 -99 -52q-17 0 -34 6.5t-17 15.5zM25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -74v-189q0 -88 8 -88h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1 t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="257" d="M20 645q0 2 2 16q1 6 2 6.5t8 1.5q120 9 123 9q5 0 6 -2.5t1 -12.5q1 -160 3.5 -332t2.5 -267q0 -39 8 -39h39q8 0 10.5 -3t2.5 -10q0 -6 -0.5 -8t-3.5 -4t-9 -2q-8 0 -35.5 1t-43.5 1q-12 0 -44.5 -1t-48.5 -1q-9 0 -11 2.5t-2 11.5q0 13 12 13h52q4 0 4 85 q0 395 -11 517q-7 18 -11 19q-3 0 -24.5 -2t-23.5 -2q-8 0 -8 3z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52 q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="592" d="M40 15q0 9 2.5 10.5t14.5 1.5h62q9 0 9 292v231q0 89 -7 89h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 49.5 -1.5t60.5 -1.5q16 0 61.5 1.5t56.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-70q-9 0 -9 -215v-277q0 -116 8 -116q227 0 293 6q13 1 17 4t6 19 l12 84q2 8 11 8q20 0 20 -10q0 -3 -4.5 -30l-9.5 -60t-7 -44q-1 -11 -22 -11q-11 0 -179.5 1.5t-184.5 1.5t-63.5 -1.5t-58.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h60q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1q30 0 73.5 1t44.5 1q9 0 9 -14q0 -13 -11 -13h-70q-6 0 -6 -74v-189q0 -83 8 -83q98 0 186 8q12 1 16.5 5t5.5 18l7 57q1 9 15 7t14 -9q0 -3 -1.5 -16.5l-4.5 -39.5l-6 -52 q-1 -11 -19 -11q-11 0 -126 1.5t-131 1.5q-36 0 -72 -1l-37 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="463" d="M176 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 388q0 14 10 14q2 0 44 -0.5t59 -0.5q18 0 58 1t50 1q31 0 54 -3t49 -12t40 -30t14 -53q0 -23 -10.5 -41.5t-25.5 -28.5t-30.5 -16.5t-26 -9t-10.5 -3.5l12 -3 q13 -3 31.5 -9t36.5 -16.5t30.5 -30.5t12.5 -46q0 -102 -177 -102q-14 0 -54 0.5t-55 0.5q-19 0 -42.5 -0.5t-39.5 -1t-17 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54v158q0 139 -8 139h-61q-11 0 -11 12zM178 129q0 -104 8 -104h47q60 0 88.5 23t28.5 56q0 89 -120 89h-45 q-7 0 -7 -7v-57zM178 220q0 -6 10 -6h50q6 0 18 -0.5t13 -0.5q29 0 45.5 24.5t16.5 59.5q0 41 -30 63t-79 22q-32 0 -41 -2q-3 -2 -3 -66v-94z" />
<glyph horiz-adv-x="502" d="M188 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 8q0 17 8 17h59q7 0 7 316v35h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5 t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-247z" />
<glyph horiz-adv-x="444" d="M189 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 389q0 15 9 15q1 0 17.5 -1t41 -1.5t44.5 -0.5q176 0 202 1q30 1 35.5 2.5t6.5 7.5q0 3 0.5 6t0.5 4.5t0.5 3.5t1.5 2.5t3 1t5 0.5q17 0 17 -6q0 -2 -1.5 -41 t-1.5 -67q0 -5 -16 -5q-12 0 -12 9q0 1 0.5 24t0.5 25q0 7 -118 7h-82q-4 0 -4 -65q0 -69 1 -84v-6t1 -3.5t3 -1.5h6h27q143 0 143 7v38q0 4 12 4q13 0 13 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28t0.5 -30q0 -6 -13 -6q-12 0 -12 7v41q0 7 -101 7h-69q-7 0 -8.5 -2t-1.5 -9 q0 -159 4 -159h77q7 0 7 -15q0 -12 -7 -12t-57 1t-59 1t-50 -1t-48 -1q-8 0 -8 13q0 14 10 14h53q5 0 5 117v96q0 138 -9 138h-57q-12 0 -12 13z" />
<glyph horiz-adv-x="567" d="M234 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 13q0 12 9 12h60q4 0 4 144v62q0 145 -4 145h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -74v-74 q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v68q0 82 -6 82h-57q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -138q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1q-33 1 -67 1q-33 0 -68 -1t-36 -1 q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="705" d="M300 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 13q0 12 9 12h62q3 0 6.5 87.5t5.5 175.5l1 88h-70q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1h59q7 0 10 -6q150 -301 155 -301q2 0 15.5 26.5t32 68l36 80.5 l33.5 75.5t18 41.5q5 11 6.5 13t7.5 2h51q30 0 62.5 1t33.5 1q9 0 9 -13q0 -14 -12 -14h-53q-5 0 -5 -74q0 -277 10 -277h67q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15q0 12 9 12h62q5 0 5 120q0 225 -7 225q-5 0 -140 -303 q-6 -14 -15.5 -29.5t-16.5 -29.5q-5 -8 -10 -8q-7 0 -13 10l-167 327q-12 24 -15 24q-4 0 -4 -29q0 -307 11 -307h69q7 0 7 -12q0 -15 -7 -15q-1 0 -31 1t-63 1q-36 0 -62 -1l-26 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="446" d="M178 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 388q0 14 10 14q2 0 45 -0.5t60 -0.5q18 0 58 1t50 1q168 0 168 -113q0 -118 -172 -118q-14 0 -34.5 1t-23.5 1q-7 0 -7 -7v-38q0 -104 9 -104h74q7 0 7 -12 q0 -15 -7 -15l-42 1q-42 1 -76 1q-19 0 -43.5 -0.5t-42 -1t-18.5 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54v158q0 139 -8 139h-63q-11 0 -11 12zM179 200q0 -9 10 -9q76 0 115.5 19.5t39.5 69.5q0 47 -32 72.5t-88 25.5q-33 0 -42 -2q-3 -2 -3 -62v-114z" />
<glyph horiz-adv-x="369" d="M127 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20 t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68 q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="464" d="M183 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73 q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="463" d="M176 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 388q0 14 10 14q2 0 44 -0.5t59 -0.5q18 0 58 1t50 1q31 0 54 -3t49 -12t40 -30t14 -53q0 -23 -10.5 -41.5t-25.5 -28.5t-30.5 -16.5t-26 -9t-10.5 -3.5l12 -3 q13 -3 31.5 -9t36.5 -16.5t30.5 -30.5t12.5 -46q0 -102 -177 -102q-14 0 -54 0.5t-55 0.5q-19 0 -42.5 -0.5t-39.5 -1t-17 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54v158q0 139 -8 139h-61q-11 0 -11 12zM178 129q0 -104 8 -104h47q60 0 88.5 23t28.5 56q0 89 -120 89h-45 q-7 0 -7 -7v-57zM178 220q0 -6 10 -6h50q6 0 18 -0.5t13 -0.5q29 0 45.5 24.5t16.5 59.5q0 41 -30 63t-79 22q-32 0 -41 -2q-3 -2 -3 -66v-94z" />
<glyph horiz-adv-x="502" d="M188 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 8q0 17 8 17h59q7 0 7 316v35h-60q-8 0 -8 14q0 13 8 13h6q6 0 16 -0.5t22 -1t26 -0.5h27q23 0 58 1.5t45 1.5q102 0 162.5 -54t60.5 -156q0 -95 -63 -145.5 t-150 -50.5q-19 0 -59 1t-59 1q-17 0 -39.5 -0.5t-39 -1t-18.5 -0.5q-9 0 -9 10zM172 63q0 -35 3 -38q4 -2 35 -2q50 0 85.5 16t53.5 43.5t25.5 55.5t7.5 60q0 80 -43 131.5t-136 51.5q-17 0 -25 -1q-6 0 -6 -70v-247z" />
<glyph horiz-adv-x="444" d="M189 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 389q0 15 9 15q1 0 17.5 -1t41 -1.5t44.5 -0.5q176 0 202 1q30 1 35.5 2.5t6.5 7.5q0 3 0.5 6t0.5 4.5t0.5 3.5t1.5 2.5t3 1t5 0.5q17 0 17 -6q0 -2 -1.5 -41 t-1.5 -67q0 -5 -16 -5q-12 0 -12 9q0 1 0.5 24t0.5 25q0 7 -118 7h-82q-4 0 -4 -65q0 -69 1 -84v-6t1 -3.5t3 -1.5h6h27q143 0 143 7v38q0 4 12 4q13 0 13 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28t0.5 -30q0 -6 -13 -6q-12 0 -12 7v41q0 7 -101 7h-69q-7 0 -8.5 -2t-1.5 -9 q0 -159 4 -159h77q7 0 7 -15q0 -12 -7 -12t-57 1t-59 1t-50 -1t-48 -1q-8 0 -8 13q0 14 10 14h53q5 0 5 117v96q0 138 -9 138h-57q-12 0 -12 13z" />
<glyph horiz-adv-x="567" d="M234 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 13q0 12 9 12h60q4 0 4 144v62q0 145 -4 145h-55q-13 0 -13 15q0 7 2 9.5t10 2.5l34 -1q34 -1 60 -1q19 0 62 1t46 1q9 0 9 -13q0 -14 -12 -14h-59q-4 0 -4 -74v-74 q0 -7 1.5 -9t7.5 -2h208q7 0 8 1t1 8v68q0 82 -6 82h-57q-10 0 -10 16q0 11 10 11q3 0 16.5 -0.5t34.5 -1t43 -0.5q24 0 47 0.5t36.5 1t14.5 0.5q7 0 7 -13q0 -14 -10 -14h-49q-1 0 -1 -138q0 -213 3 -213h57q6 0 6 -15q0 -12 -6 -12l-33 1q-33 1 -67 1q-33 0 -68 -1t-36 -1 q-8 0 -8 13q0 14 9 14h63q4 0 4 88v73q0 7 -0.5 8t-4.5 1h-213h-4t-2.5 -1t-1.5 -3v-6q0 -160 7 -160h59q7 0 7 -12q0 -15 -7 -15l-35 1q-35 1 -69 1q-31 0 -66.5 -1t-36.5 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="705" d="M300 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 13q0 12 9 12h62q3 0 6.5 87.5t5.5 175.5l1 88h-70q-13 0 -13 15q0 12 13 12l36 -1q36 -1 62 -1h59q7 0 10 -6q150 -301 155 -301q2 0 15.5 26.5t32 68l36 80.5 l33.5 75.5t18 41.5q5 11 6.5 13t7.5 2h51q30 0 62.5 1t33.5 1q9 0 9 -13q0 -14 -12 -14h-53q-5 0 -5 -74q0 -277 10 -277h67q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15q0 12 9 12h62q5 0 5 120q0 225 -7 225q-5 0 -140 -303 q-6 -14 -15.5 -29.5t-16.5 -29.5q-5 -8 -10 -8q-7 0 -13 10l-167 327q-12 24 -15 24q-4 0 -4 -29q0 -307 11 -307h69q7 0 7 -12q0 -15 -7 -15q-1 0 -31 1t-63 1q-36 0 -62 -1l-26 -1q-8 0 -8 15z" />
<glyph horiz-adv-x="446" d="M178 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM25 388q0 14 10 14q2 0 45 -0.5t60 -0.5q18 0 58 1t50 1q168 0 168 -113q0 -118 -172 -118q-14 0 -34.5 1t-23.5 1q-7 0 -7 -7v-38q0 -104 9 -104h74q7 0 7 -12 q0 -15 -7 -15l-42 1q-42 1 -76 1q-19 0 -43.5 -0.5t-42 -1t-18.5 -0.5q-9 0 -9 12q0 15 9 15h61q6 0 6 54v158q0 139 -8 139h-63q-11 0 -11 12zM179 200q0 -9 10 -9q76 0 115.5 19.5t39.5 69.5q0 47 -32 72.5t-88 25.5q-33 0 -42 -2q-3 -2 -3 -62v-114z" />
<glyph horiz-adv-x="369" d="M127 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM40 292q0 53 39 87t96 34q46 0 99 -24q1 0 5.5 -2.5t6 -1.5t1.5 7l1 9q0 7 12 7q17 0 17 -8q0 -2 -1.5 -21t-3 -44.5t-1.5 -43.5q0 -7 -10 -7h-3q-14 0 -14 7q0 1 1 20 t1 22q0 6 -14.5 19t-41 25t-52.5 12t-51 -18.5t-25 -50.5q0 -29 24.5 -48t59.5 -30t69.5 -24t59 -40.5t24.5 -69.5q0 -63 -45.5 -91.5t-117.5 -28.5q-29 0 -59.5 6t-48 12.5t-18.5 9.5q-4 92 -4 106q0 3 14 5q10 1 12 -0.5t2 -8.5v-4l3 -49q1 -17 40 -32t77 -15q86 0 86 68 q0 25 -24.5 41.5t-60 27.5t-71 24.5t-60 42t-24.5 70.5z" />
<glyph horiz-adv-x="464" d="M183 533q0 25 19.5 40t40.5 15q18 0 30 -10t12 -30q0 -24 -19 -40t-42 -16q-17 0 -29 10.5t-12 30.5zM20 307q0 11 13 111q0 3 11 3q12 0 12 -4v-14q0 -2 24 -2h275q62 0 63 5q1 3 1.5 10t0.5 11q0 3 12 3q11 0 11 -7l1 -107q0 -7 -14 -7q-11 0 -11 9v54q0 4 -65 4h-73 q-9 0 -9 -101v-184q0 -66 10 -66h69q7 0 7 -12q0 -15 -7 -15q-1 0 -41 1t-74 1q-36 0 -74 -1l-39 -1q-8 0 -8 15q0 12 9 12h65q4 0 6 84l3 210q0 57 -5 57h-45q-95 0 -96 -10l-7 -60q-1 -4 -13 -4t-12 5z" />
<glyph horiz-adv-x="686" d="M5 11q0 14 11 14h31q4 0 23 23.5t53.5 72.5l57.5 82l65 95l46 68q5 6 4.5 8t-9.5 2h-50q-10 0 -10 13q0 14 5 14l24 -1q25 0 58 -0.5t54 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58 q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5 h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12q0 15 11 15h62q5 0 5 36v97h-138q-8 0 -19 -18q-62 -102 -63 -115h63q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1 t-37 -1t-33 -1q-10 0 -10 13zM202 182q0 -3 7 -3h122v135q0 60 -3 60l-1 -2q-1 -1 -2.5 -3t-2.5 -4q-10 -16 -42 -63.5l-55 -82t-23 -37.5z" />
<glyph horiz-adv-x="701" d="M30 190q0 93 60.5 158t175.5 65q13 0 55 -6t62 -6q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5 t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t42.5 0.5h16q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7 q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-7 0 -53.5 -6t-84.5 -6q-103 0 -161 57.5t-58 144.5zM113 210q0 -96 39.5 -148t113.5 -52q61 0 80 14v290l-3 56q-19 19 -80 19q-67 0 -108.5 -50t-41.5 -129z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -51q0 -5 1 -6.5t6 -1.5q42 2 62 2q168 0 168 -113q0 -118 -172 -118q-14 0 -34.5 1t-23.5 1q-7 0 -7 -6 q2 -59 8 -59h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15zM178 116q0 -9 10 -9q76 0 115.5 19.5t39.5 69.5q0 47 -32 72.5t-88 25.5q-27 0 -38 -1q-5 -1 -6 -2t-1 -7v-168z" />
<glyph horiz-adv-x="686" d="M5 11q0 14 11 14h31q4 0 23 23.5t53.5 72.5l57.5 82l65 95l46 68q5 6 4.5 8t-9.5 2h-50q-10 0 -10 13q0 14 5 14l24 -1q25 0 58 -0.5t54 -0.5q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58 q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t41.5 0.5 h17q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-27 0 -68 -1t-43 -1q-8 0 -8 12q0 15 11 15h62q5 0 5 36v97h-138q-8 0 -19 -18q-62 -102 -63 -115h63q8 0 8 -12q0 -15 -12 -15q-7 0 -40.5 1t-44.5 1 t-37 -1t-33 -1q-10 0 -10 13zM202 182q0 -3 7 -3h122v135q0 60 -3 60l-1 -2q-1 -1 -2.5 -3t-2.5 -4q-10 -16 -42 -63.5l-55 -82t-23 -37.5z" />
<glyph horiz-adv-x="701" d="M30 190q0 93 60.5 158t175.5 65q13 0 55 -6t62 -6q45 0 131.5 1t93.5 1q4 0 4 23q0 6 16 6q12 0 12 -7q0 -2 -0.5 -47t-0.5 -64q0 -6 -13 -6q-15 0 -15 6v57q0 5 -130 5h-58q-4 0 -4 -52v-98q0 -15 8 -15h34q126 0 126 7v43q0 4 12 4q14 0 14 -3q0 -10 -0.5 -29.5 t-0.5 -28.5t0.5 -28.5t0.5 -29.5q0 -6 -14 -6q-12 0 -12 7v36q0 7 -84 7h-73h-6t-3.5 -1t-1.5 -3v-6q0 -23 0.5 -50.5t0.5 -42.5t0.5 -29.5t2 -20t3.5 -5.5h43.5t55 0.5l53 1t42.5 0.5h16q8 0 9.5 2t1.5 13v57q0 6 14 6q15 0 15 -6q0 -17 -0.5 -55t-0.5 -46q0 -7 -12 -7 q-1 0 -36.5 0.5t-100.5 1t-139 0.5q-7 0 -53.5 -6t-84.5 -6q-103 0 -161 57.5t-58 144.5zM113 210q0 -96 39.5 -148t113.5 -52q61 0 80 14v290l-3 56q-19 19 -80 19q-67 0 -108.5 -50t-41.5 -129z" />
<glyph horiz-adv-x="445" d="M25 13q0 12 9 12h62q5 0 5 84v122q0 145 -4 145h-55q-13 0 -13 15q0 12 13 12l34 -1q35 -1 61 -1q30 0 68.5 1t39.5 1q9 0 9 -13q0 -14 -12 -14h-59q-5 0 -5 -51q0 -5 1 -6.5t6 -1.5q42 2 62 2q168 0 168 -113q0 -118 -172 -118q-14 0 -34.5 1t-23.5 1q-7 0 -7 -6 q2 -59 8 -59h65q7 0 7 -12q0 -15 -7 -15q-1 0 -39 1t-71 1q-36 0 -72 -1l-36 -1q-8 0 -8 15zM178 116q0 -9 10 -9q76 0 115.5 19.5t39.5 69.5q0 47 -32 72.5t-88 25.5q-27 0 -38 -1q-5 -1 -6 -2t-1 -7v-168z" />
<glyph horiz-adv-x="258" d="M25 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="258" d="M25 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="258" d="M25 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="258" d="M25 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph d="M10 295q0 12 2 14.5t11 2.5h451q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-444q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph horiz-adv-x="750" d="M10 295q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph horiz-adv-x="750" d="M10 295q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph horiz-adv-x="408" d="M50 318q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -3 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55zM200 318q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -3 -31 -58t-31 -61t31 -61t31 -58 q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph horiz-adv-x="408" d="M60 199q0 3 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5zM210 199q0 3 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55 l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph horiz-adv-x="258" d="M50 318q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -3 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph horiz-adv-x="258" d="M60 199q0 3 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph horiz-adv-x="279" d="M40 315q0 73 19 142t45 114.5t53.5 80.5t45.5 51t20 16q6 0 11 -4t5 -9l-8 -8q-8 -9 -20.5 -25.5t-27.5 -39t-30 -54.5t-27.5 -68.5t-20.5 -84.5t-8 -99q0 -79 14 -150t34.5 -117.5t41 -80.5t34.5 -53t14 -22q0 -14 -16 -14q-4 0 -22.5 21.5t-45 62.5t-51.5 91.5 t-42.5 117.5t-17.5 132z" />
<glyph horiz-adv-x="279" d="M40 -97l8 9q8 8 20.5 24.5t27.5 39t30 54.5t27.5 68.5t20.5 84.5t8 99q0 79 -14 150t-34.5 117.5t-41 80.5t-34.5 53t-14 22q0 14 16 14q4 0 22.5 -21.5t45 -62.5t51.5 -91.5t42.5 -117.5t17.5 -132q0 -73 -19 -142t-45 -114.5t-53.5 -80.5t-45.5 -51t-20 -16q-6 0 -11 4 t-5 9z" />
<glyph horiz-adv-x="296" d="M80 -96v801q0 9 2 12t10 3h151q9 0 11 -1.5t2 -7.5v-14q0 -9 -2 -11t-11 -2h-105q-9 0 -11 -2t-2 -10v-735q0 -12 13 -12h105q6 0 8.5 -0.5t3.5 -3t1 -9.5v-12q0 -6 -2 -8.5t-11 -2.5h-150q-9 0 -11 2.5t-2 12.5z" />
<glyph horiz-adv-x="296" d="M40 -88q0 9 2 11t11 2h105q9 0 11 2t2 10v735v6t-1.5 3.5t-4 2t-7.5 0.5h-105q-6 0 -8.5 0.5t-3.5 3t-1 9.5v12q0 7 2 9t11 2h150q9 0 11 -2.5t2 -12.5v-801q0 -9 -2 -12t-10 -3h-151q-9 0 -11 1.5t-2 7.5v14z" />
<glyph horiz-adv-x="307" d="M40 304q0 6 5.5 9t14.5 4t18.5 7.5t18.5 18t14.5 38t5.5 65.5v80q0 36 0.5 53.5t3 42.5t8 36.5t15 26t24.5 20t36.5 10t50.5 4.5q8 0 10 -2t2 -11t-2.5 -11t-11.5 -2q-43 0 -63.5 -19t-20.5 -73v-149q0 -72 -9.5 -100t-48.5 -41q-15 -6 -15 -7t15 -7q39 -13 48.5 -41 t9.5 -100v-149q0 -54 20.5 -73t63.5 -19q6 0 8.5 -0.5t4 -3.5t1.5 -9q0 -9 -2 -11t-10 -2q-29 0 -50.5 4.5t-36.5 10t-24.5 20t-15 26t-8 36.5t-3 42.5t-0.5 53.5v80q0 39 -5.5 65.5t-14.5 38t-18.5 18t-18.5 7.5t-14.5 4t-5.5 9z" />
<glyph horiz-adv-x="307" d="M40 -98q0 9 3 11t11 2q43 0 63.5 19t20.5 73v149q0 72 9.5 100t48.5 41q15 6 15 7t-15 7q-39 13 -48.5 41t-9.5 100v149q0 54 -20.5 73t-63.5 19q-6 0 -8.5 0.5t-4 3.5t-1.5 9q0 9 2 11t10 2q29 0 50.5 -4.5t36.5 -10t24.5 -20t15 -26t8 -36.5t3 -42.5t0.5 -53.5v-80 q0 -39 5.5 -65.5t14.5 -38t18.5 -18t18.5 -7.5t14.5 -4t5.5 -9t-5.5 -9t-14.5 -4t-18.5 -7.5t-18.5 -18t-14.5 -38t-5.5 -65.5v-80q0 -36 -0.5 -53.5t-3 -42.5t-8 -36.5t-15 -26t-24.5 -20t-36.5 -10t-50.5 -4.5q-8 0 -10 2t-2 11z" />
<glyph horiz-adv-x="360" d="M28 201q0 97 46.5 153.5t106.5 56.5q67 0 109 -55t42 -150q0 -90 -41 -153.5t-112 -63.5q-68 0 -109.5 59t-41.5 153zM84 198q0 -89 28.5 -135.5t68.5 -46.5q50 0 74.5 59.5t24.5 131.5q0 64 -25.5 119.5t-73.5 55.5q-49 0 -73 -49t-24 -135z" />
<glyph horiz-adv-x="360" d="M95 14q0 7 2.5 8.5t11.5 1.5h60q1 9 1 50v75q0 181 -2 217q-1 8 -5 8q-1 0 -29.5 -1.5t-30.5 -1.5q-8 0 -8 6v12q0 6 11 6q28 1 49.5 3l33 3t18.5 2.5t10 2t4 0.5q7 0 7 -14q0 -65 -0.5 -176.5t-0.5 -169.5q0 -21 1 -22h44q7 0 7 -10q0 -16 -8 -16q-1 0 -23.5 1t-47.5 1 q-27 0 -58 -1t-36 -1q-7 0 -9 3t-2 13z" />
<glyph horiz-adv-x="360" d="M40 321q0 7 16.5 28t49 41.5t67.5 20.5q57 0 86.5 -37.5t29.5 -79.5q0 -102 -160 -219q-18 -14 -24 -25h185q3 10 7 52q0 6 10 5q11 0 11 -5q0 -2 -2.5 -20l-6 -41.5t-4.5 -34.5q-1 -6 -12 -6h-230q-13 0 -13 9q0 5 20 36.5t24 34.5q1 1 16.5 14t21.5 18.5l22 21t24.5 26 t20.5 27.5t18.5 31t11.5 32.5t5 35.5q0 33 -19.5 58t-54.5 25q-29 0 -53.5 -15.5t-38.5 -30.5t-15 -15q-4 0 -8.5 4.5t-4.5 8.5z" />
<glyph horiz-adv-x="360" d="M65 18q0 29 32 29q11 0 29 -7q5 -2 24.5 -13t29.5 -11q32 0 56 26t24 64q0 79 -74 79q-12 0 -41.5 -2t-31.5 -2q-13 0 -13 21q0 10 17 13q63 13 87.5 33t24.5 64q0 32 -17.5 49t-45.5 17q-23 0 -42 -8t-29 -16.5t-13 -8.5q-4 0 -8.5 4.5t-4.5 8.5q0 6 13.5 18t39.5 23.5 t53 11.5q48 0 79.5 -25.5t31.5 -63.5q0 -22 -9 -39t-26.5 -29.5t-32.5 -20t-38 -16.5q58 0 96.5 -25.5t38.5 -71.5q0 -55 -47 -91.5t-103 -36.5q-34 0 -67 6.5t-33 19.5z" />
<glyph horiz-adv-x="360" d="M35 138q0 20 11 39q44 77 149 190q7 8 27 22q6 5 13 12.5t10.5 10t7.5 2.5q13 0 13 -22v-212q0 -5 1 -6t6 -1h51q7 0 7 -10v-22q0 -10 -12 -10h-46q-6 0 -6 -6v-123q0 -8 -6 -8l-43 -4q-6 0 -6 8l3 125q0 8 -10 8h-153q-17 0 -17 7zM73 173h131q7 0 9 1.5t2 6.5v173 q-19 -19 -73 -86t-69 -95z" />
<glyph horiz-adv-x="360" d="M70 -1q0 7 11 9q165 13 165 112q0 55 -35.5 73t-102.5 18q-3 0 -9 -1t-10 -1q-13 0 -13 11q0 38 17 167q1 10 14 10h5q5 0 13.5 -0.5t20 -1t26 -1l30 -1t34 -0.5h35.5q2 10 3 16q1 7 11 7h4q9 0 9 -8q0 -1 -0.5 -9.5t-1.5 -21.5t-1 -19q-1 -8 -4.5 -11t-15.5 -3 q-74 0 -161 5q-9 -72 -9 -84q0 -8 4 -8h23q36 0 63.5 -5t53.5 -17.5t39.5 -38t13.5 -62.5q0 -73 -68.5 -112t-155.5 -39q-8 0 -8 16z" />
<glyph horiz-adv-x="360" d="M40 141q0 54 22.5 101.5t53.5 77.5t65 51.5t56.5 31t27.5 9.5q9 0 9 -16q0 -3 -14 -9q-67 -36 -99 -73.5t-55 -97.5q49 17 82 17q59 0 96.5 -33t37.5 -88q0 -57 -39.5 -93t-97.5 -36q-64 0 -104.5 39.5t-40.5 118.5zM96 144q0 -139 97 -139q34 0 54.5 29.5t20.5 68.5 q0 104 -96 104q-14 0 -41 -5.5t-30 -11.5q-1 0 -3 -20.5t-2 -25.5z" />
<glyph horiz-adv-x="360" d="M65 297q0 1 1 18t2 43t1 49q0 8 14 8q12 0 12 -14v-2q22 -2 111 -2h114q16 0 16 -10q0 -6 -3 -12l-69.5 -126t-51.5 -108.5t-48 -131.5q-4 -17 -7.5 -21t-9.5 -4q-14 0 -27 6t-13 12q0 31 69 162q40 76 110 185h-139q-46 0 -56 -4l-2 -46q0 -8 -9 -8q-15 0 -15 6z" />
<glyph horiz-adv-x="360" d="M50 89q0 38 29.5 69.5t59.5 41.5q-2 1 -14 8.5t-16 10.5l-14.5 10.5t-14.5 14l-10 16t-8.5 21.5t-2.5 25q0 44 34.5 74.5t81.5 30.5q46 0 82.5 -25.5t36.5 -68.5q0 -28 -13 -49.5t-26 -31t-32 -20.5l-6 -3q2 -1 23.5 -15.5t33 -24t24 -30.5t12.5 -44q0 -48 -40 -81.5 t-97 -33.5q-55 0 -89 26.5t-34 78.5zM98 96q0 -39 22.5 -64.5t57.5 -25.5q36 0 55 25.5t19 59.5q0 18 -7.5 33.5t-25 28.5t-28 19.5t-33.5 18.5q-19 -13 -28 -20.5t-20.5 -28t-11.5 -46.5zM111 314q0 -14 5 -26t16.5 -22t19.5 -16t24.5 -15.5t20.5 -11.5q20 9 35.5 33 t15.5 54q0 36 -20.5 57t-46.5 21q-28 0 -49 -20.5t-21 -53.5z" />
<glyph horiz-adv-x="360" d="M45 277q0 57 40.5 95.5t91.5 38.5q60 0 101.5 -47t41.5 -125q0 -47 -13 -86.5t-32.5 -64.5t-45 -44.5t-49 -29t-46.5 -16t-35 -8t-17 -1.5q-7 0 -7 16q0 8 23 11q58 8 109.5 53.5t54.5 118.5q-43 -29 -101 -29q-51 0 -83.5 33.5t-32.5 84.5zM98 285q0 -40 23.5 -68 t66.5 -28q18 0 36.5 6.5t28.5 12.5l10 6q0 6 0.5 17t0.5 16q-2 143 -85 143q-38 0 -59.5 -31t-21.5 -74z" />
<glyph horiz-adv-x="360" d="M28 451q0 97 46.5 153.5t106.5 56.5q67 0 109 -55t42 -150q0 -90 -41 -153.5t-112 -63.5q-68 0 -109.5 59t-41.5 153zM84 448q0 -89 28.5 -135.5t68.5 -46.5q50 0 74.5 59.5t24.5 131.5q0 64 -25.5 119.5t-73.5 55.5q-49 0 -73 -49t-24 -135z" />
<glyph horiz-adv-x="360" d="M95 264q0 7 2.5 8.5t11.5 1.5h60q1 9 1 50v75q0 181 -2 217q-1 8 -5 8q-1 0 -29.5 -1.5t-30.5 -1.5q-8 0 -8 6v12q0 6 11 6q28 1 49.5 3l33 3t18.5 2.5t10 2t4 0.5q7 0 7 -14q0 -65 -0.5 -176.5t-0.5 -169.5q0 -21 1 -22h44q7 0 7 -10q0 -16 -8 -16q-1 0 -23.5 1t-47.5 1 q-27 0 -58 -1t-36 -1q-7 0 -9 3t-2 13z" />
<glyph horiz-adv-x="360" d="M40 571q0 7 16.5 28t49 41.5t67.5 20.5q57 0 86.5 -37.5t29.5 -79.5q0 -102 -160 -219q-18 -14 -24 -25h185q3 10 7 52q0 6 10 5q11 0 11 -5q0 -2 -2.5 -20l-6 -41.5t-4.5 -34.5q-1 -6 -12 -6h-230q-13 0 -13 9q0 5 20 36.5t24 34.5q1 1 16.5 14t21.5 18.5l22 21t24.5 26 t20.5 27.5t18.5 31t11.5 32.5t5 35.5q0 33 -19.5 58t-54.5 25q-29 0 -53.5 -15.5t-38.5 -30.5t-15 -15q-4 0 -8.5 4.5t-4.5 8.5z" />
<glyph horiz-adv-x="360" d="M65 268q0 29 32 29q11 0 29 -7q5 -2 24.5 -13t29.5 -11q32 0 56 26t24 64q0 79 -74 79q-12 0 -41.5 -2t-31.5 -2q-13 0 -13 21q0 10 17 13q63 13 87.5 33t24.5 64q0 32 -17.5 49t-45.5 17q-23 0 -42 -8t-29 -16.5t-13 -8.5q-4 0 -8.5 4.5t-4.5 8.5q0 6 13.5 18t39.5 23.5 t53 11.5q48 0 79.5 -25.5t31.5 -63.5q0 -22 -9 -39t-26.5 -29.5t-32.5 -20t-38 -16.5q58 0 96.5 -25.5t38.5 -71.5q0 -55 -47 -91.5t-103 -36.5q-34 0 -67 6.5t-33 19.5z" />
<glyph horiz-adv-x="360" d="M35 388q0 20 11 39q44 77 149 190q7 8 27 22q6 5 13 12.5t10.5 10t7.5 2.5q13 0 13 -22v-212q0 -5 1 -6t6 -1h51q7 0 7 -10v-22q0 -10 -12 -10h-46q-6 0 -6 -6v-123q0 -8 -6 -8l-43 -4q-6 0 -6 8l3 125q0 8 -10 8h-153q-17 0 -17 7zM73 423h131q7 0 9 1.5t2 6.5v173 q-19 -19 -73 -86t-69 -95z" />
<glyph horiz-adv-x="360" d="M70 249q0 7 11 9q165 13 165 112q0 55 -35.5 73t-102.5 18q-3 0 -9 -1t-10 -1q-13 0 -13 11q0 38 17 167q1 10 14 10h5q5 0 13.5 -0.5t20 -1t26 -1l30 -1t34 -0.5h35.5q2 10 3 16q1 7 11 7h4q9 0 9 -8q0 -1 -0.5 -9.5t-1.5 -21.5t-1 -19q-1 -8 -4.5 -11t-15.5 -3 q-74 0 -161 5q-9 -72 -9 -84q0 -8 4 -8h23q36 0 63.5 -5t53.5 -17.5t39.5 -38t13.5 -62.5q0 -73 -68.5 -112t-155.5 -39q-8 0 -8 16z" />
<glyph horiz-adv-x="360" d="M40 391q0 54 22.5 101.5t53.5 77.5t65 51.5t56.5 31t27.5 9.5q9 0 9 -16q0 -3 -14 -9q-67 -36 -99 -73.5t-55 -97.5q49 17 82 17q59 0 96.5 -33t37.5 -88q0 -57 -39.5 -93t-97.5 -36q-64 0 -104.5 39.5t-40.5 118.5zM96 394q0 -139 97 -139q34 0 54.5 29.5t20.5 68.5 q0 104 -96 104q-14 0 -41 -5.5t-30 -11.5q-1 0 -3 -20.5t-2 -25.5z" />
<glyph horiz-adv-x="360" d="M65 547q0 1 1 18t2 43t1 49q0 8 14 8q12 0 12 -14v-2q22 -2 111 -2h114q16 0 16 -10q0 -6 -3 -12l-69.5 -126t-51.5 -108.5t-48 -131.5q-4 -17 -7.5 -21t-9.5 -4q-14 0 -27 6t-13 12q0 31 69 162q40 76 110 185h-139q-46 0 -56 -4l-2 -46q0 -8 -9 -8q-15 0 -15 6z" />
<glyph horiz-adv-x="360" d="M50 339q0 38 29.5 69.5t59.5 41.5q-2 1 -14 8.5t-16 10.5l-14.5 10.5t-14.5 14l-10 16t-8.5 21.5t-2.5 25q0 44 34.5 74.5t81.5 30.5q46 0 82.5 -25.5t36.5 -68.5q0 -28 -13 -49.5t-26 -31t-32 -20.5l-6 -3q2 -1 23.5 -15.5t33 -24t24 -30.5t12.5 -44q0 -48 -40 -81.5 t-97 -33.5q-55 0 -89 26.5t-34 78.5zM98 346q0 -39 22.5 -64.5t57.5 -25.5q36 0 55 25.5t19 59.5q0 18 -7.5 33.5t-25 28.5t-28 19.5t-33.5 18.5q-19 -13 -28 -20.5t-20.5 -28t-11.5 -46.5zM111 564q0 -14 5 -26t16.5 -22t19.5 -16t24.5 -15.5t20.5 -11.5q20 9 35.5 33 t15.5 54q0 36 -20.5 57t-46.5 21q-28 0 -49 -20.5t-21 -53.5z" />
<glyph horiz-adv-x="360" d="M45 527q0 57 40.5 95.5t91.5 38.5q60 0 101.5 -47t41.5 -125q0 -47 -13 -86.5t-32.5 -64.5t-45 -44.5t-49 -29t-46.5 -16t-35 -8t-17 -1.5q-7 0 -7 16q0 8 23 11q58 8 109.5 53.5t54.5 118.5q-43 -29 -101 -29q-51 0 -83.5 33.5t-32.5 84.5zM98 535q0 -40 23.5 -68 t66.5 -28q18 0 36.5 6.5t28.5 12.5l10 6q0 6 0.5 17t0.5 16q-2 143 -85 143q-38 0 -59.5 -31t-21.5 -74z" />
<glyph horiz-adv-x="360" d="M28 51q0 97 46.5 153.5t106.5 56.5q67 0 109 -55t42 -150q0 -90 -41 -153.5t-112 -63.5q-68 0 -109.5 59t-41.5 153zM84 48q0 -89 28.5 -135.5t68.5 -46.5q50 0 74.5 59.5t24.5 131.5q0 64 -25.5 119.5t-73.5 55.5q-49 0 -73 -49t-24 -135z" />
<glyph horiz-adv-x="360" d="M95 -136q0 7 2.5 8.5t11.5 1.5h60q1 9 1 50v75q0 181 -2 217q-1 8 -5 8q-1 0 -29.5 -1.5t-30.5 -1.5q-8 0 -8 6v12q0 6 11 6q28 1 49.5 3l33 3t18.5 2.5t10 2t4 0.5q7 0 7 -14q0 -65 -0.5 -176.5t-0.5 -169.5q0 -21 1 -22h44q7 0 7 -10q0 -16 -8 -16q-1 0 -23.5 1 t-47.5 1q-27 0 -58 -1t-36 -1q-7 0 -9 3t-2 13z" />
<glyph horiz-adv-x="360" d="M40 171q0 7 16.5 28t49 41.5t67.5 20.5q57 0 86.5 -37.5t29.5 -79.5q0 -102 -160 -219q-18 -14 -24 -25h185q3 10 7 52q0 6 10 5q11 0 11 -5q0 -2 -2.5 -20l-6 -41.5t-4.5 -34.5q-1 -6 -12 -6h-230q-13 0 -13 9q0 5 20 36.5t24 34.5q1 1 16.5 14t21.5 18.5l22 21t24.5 26 t20.5 27.5t18.5 31t11.5 32.5t5 35.5q0 33 -19.5 58t-54.5 25q-29 0 -53.5 -15.5t-38.5 -30.5t-15 -15q-4 0 -8.5 4.5t-4.5 8.5z" />
<glyph horiz-adv-x="360" d="M65 -132q0 29 32 29q11 0 29 -7q5 -2 24.5 -13t29.5 -11q32 0 56 26t24 64q0 79 -74 79q-12 0 -41.5 -2t-31.5 -2q-13 0 -13 21q0 10 17 13q63 13 87.5 33t24.5 64q0 32 -17.5 49t-45.5 17q-23 0 -42 -8t-29 -16.5t-13 -8.5q-4 0 -8.5 4.5t-4.5 8.5q0 6 13.5 18 t39.5 23.5t53 11.5q48 0 79.5 -25.5t31.5 -63.5q0 -22 -9 -39t-26.5 -29.5t-32.5 -20t-38 -16.5q58 0 96.5 -25.5t38.5 -71.5q0 -55 -47 -91.5t-103 -36.5q-34 0 -67 6.5t-33 19.5z" />
<glyph horiz-adv-x="360" d="M35 -12q0 20 11 39q44 77 149 190q7 8 27 22q6 5 13 12.5t10.5 10t7.5 2.5q13 0 13 -22v-212q0 -5 1 -6t6 -1h51q7 0 7 -10v-22q0 -10 -12 -10h-46q-6 0 -6 -6v-123q0 -8 -6 -8l-43 -4q-6 0 -6 8l3 125q0 8 -10 8h-153q-17 0 -17 7zM73 23h131q7 0 9 1.5t2 6.5v173 q-19 -19 -73 -86t-69 -95z" />
<glyph horiz-adv-x="360" d="M70 -151q0 7 11 9q165 13 165 112q0 55 -35.5 73t-102.5 18q-3 0 -9 -1t-10 -1q-13 0 -13 11q0 38 17 167q1 10 14 10h5q5 0 13.5 -0.5t20 -1t26 -1l30 -1t34 -0.5h35.5q2 10 3 16q1 7 11 7h4q9 0 9 -8q0 -1 -0.5 -9.5t-1.5 -21.5t-1 -19q-1 -8 -4.5 -11t-15.5 -3 q-74 0 -161 5q-9 -72 -9 -84q0 -8 4 -8h23q36 0 63.5 -5t53.5 -17.5t39.5 -38t13.5 -62.5q0 -73 -68.5 -112t-155.5 -39q-8 0 -8 16z" />
<glyph horiz-adv-x="360" d="M40 -9q0 54 22.5 101.5t53.5 77.5t65 51.5t56.5 31t27.5 9.5q9 0 9 -16q0 -3 -14 -9q-67 -36 -99 -73.5t-55 -97.5q49 17 82 17q59 0 96.5 -33t37.5 -88q0 -57 -39.5 -93t-97.5 -36q-64 0 -104.5 39.5t-40.5 118.5zM96 -6q0 -139 97 -139q34 0 54.5 29.5t20.5 68.5 q0 104 -96 104q-14 0 -41 -5.5t-30 -11.5q-1 0 -3 -20.5t-2 -25.5z" />
<glyph horiz-adv-x="360" d="M65 147q0 1 1 18t2 43t1 49q0 8 14 8q12 0 12 -14v-2q22 -2 111 -2h114q16 0 16 -10q0 -6 -3 -12l-69.5 -126t-51.5 -108.5t-48 -131.5q-4 -17 -7.5 -21t-9.5 -4q-14 0 -27 6t-13 12q0 31 69 162q40 76 110 185h-139q-46 0 -56 -4l-2 -46q0 -8 -9 -8q-15 0 -15 6z" />
<glyph horiz-adv-x="360" d="M50 -61q0 38 29.5 69.5t59.5 41.5q-2 1 -14 8.5t-16 10.5l-14.5 10.5t-14.5 14l-10 16t-8.5 21.5t-2.5 25q0 44 34.5 74.5t81.5 30.5q46 0 82.5 -25.5t36.5 -68.5q0 -28 -13 -49.5t-26 -31t-32 -20.5l-6 -3q2 -1 23.5 -15.5t33 -24t24 -30.5t12.5 -44q0 -48 -40 -81.5 t-97 -33.5q-55 0 -89 26.5t-34 78.5zM98 -54q0 -39 22.5 -64.5t57.5 -25.5q36 0 55 25.5t19 59.5q0 18 -7.5 33.5t-25 28.5t-28 19.5t-33.5 18.5q-19 -13 -28 -20.5t-20.5 -28t-11.5 -46.5zM111 164q0 -14 5 -26t16.5 -22t19.5 -16t24.5 -15.5t20.5 -11.5q20 9 35.5 33 t15.5 54q0 36 -20.5 57t-46.5 21q-28 0 -49 -20.5t-21 -53.5z" />
<glyph horiz-adv-x="360" d="M45 127q0 57 40.5 95.5t91.5 38.5q60 0 101.5 -47t41.5 -125q0 -47 -13 -86.5t-32.5 -64.5t-45 -44.5t-49 -29t-46.5 -16t-35 -8t-17 -1.5q-7 0 -7 16q0 8 23 11q58 8 109.5 53.5t54.5 118.5q-43 -29 -101 -29q-51 0 -83.5 33.5t-32.5 84.5zM98 135q0 -40 23.5 -68 t66.5 -28q18 0 36.5 6.5t28.5 12.5l10 6q0 6 0.5 17t0.5 16q-2 143 -85 143q-38 0 -59.5 -31t-21.5 -74z" />
<glyph horiz-adv-x="360" d="M28 551q0 97 46.5 153.5t106.5 56.5q67 0 109 -55t42 -150q0 -90 -41 -153.5t-112 -63.5q-68 0 -109.5 59t-41.5 153zM84 548q0 -89 28.5 -135.5t68.5 -46.5q50 0 74.5 59.5t24.5 131.5q0 64 -25.5 119.5t-73.5 55.5q-49 0 -73 -49t-24 -135z" />
<glyph horiz-adv-x="360" d="M95 364q0 7 2.5 8.5t11.5 1.5h60q1 9 1 50v75q0 181 -2 217q-1 8 -5 8q-1 0 -29.5 -1.5t-30.5 -1.5q-8 0 -8 6v12q0 6 11 6q28 1 49.5 3l33 3t18.5 2.5t10 2t4 0.5q7 0 7 -14q0 -65 -0.5 -176.5t-0.5 -169.5q0 -21 1 -22h44q7 0 7 -10q0 -16 -8 -16q-1 0 -23.5 1t-47.5 1 q-27 0 -58 -1t-36 -1q-7 0 -9 3t-2 13z" />
<glyph horiz-adv-x="360" d="M40 671q0 7 16.5 28t49 41.5t67.5 20.5q57 0 86.5 -37.5t29.5 -79.5q0 -102 -160 -219q-18 -14 -24 -25h185q3 10 7 52q0 6 10 5q11 0 11 -5q0 -2 -2.5 -20l-6 -41.5t-4.5 -34.5q-1 -6 -12 -6h-230q-13 0 -13 9q0 5 20 36.5t24 34.5q1 1 16.5 14t21.5 18.5l22 21t24.5 26 t20.5 27.5t18.5 31t11.5 32.5t5 35.5q0 33 -19.5 58t-54.5 25q-29 0 -53.5 -15.5t-38.5 -30.5t-15 -15q-4 0 -8.5 4.5t-4.5 8.5z" />
<glyph horiz-adv-x="360" d="M65 368q0 29 32 29q11 0 29 -7q5 -2 24.5 -13t29.5 -11q32 0 56 26t24 64q0 79 -74 79q-12 0 -41.5 -2t-31.5 -2q-13 0 -13 21q0 10 17 13q63 13 87.5 33t24.5 64q0 32 -17.5 49t-45.5 17q-23 0 -42 -8t-29 -16.5t-13 -8.5q-4 0 -8.5 4.5t-4.5 8.5q0 6 13.5 18t39.5 23.5 t53 11.5q48 0 79.5 -25.5t31.5 -63.5q0 -22 -9 -39t-26.5 -29.5t-32.5 -20t-38 -16.5q58 0 96.5 -25.5t38.5 -71.5q0 -55 -47 -91.5t-103 -36.5q-34 0 -67 6.5t-33 19.5z" />
<glyph horiz-adv-x="360" d="M35 488q0 20 11 39q44 77 149 190q7 8 27 22q6 5 13 12.5t10.5 10t7.5 2.5q13 0 13 -22v-212q0 -5 1 -6t6 -1h51q7 0 7 -10v-22q0 -10 -12 -10h-46q-6 0 -6 -6v-123q0 -8 -6 -8l-43 -4q-6 0 -6 8l3 125q0 8 -10 8h-153q-17 0 -17 7zM73 523h131q7 0 9 1.5t2 6.5v173 q-19 -19 -73 -86t-69 -95z" />
<glyph horiz-adv-x="360" d="M70 349q0 7 11 9q165 13 165 112q0 55 -35.5 73t-102.5 18q-3 0 -9 -1t-10 -1q-13 0 -13 11q0 38 17 167q1 10 14 10h5q5 0 13.5 -0.5t20 -1t26 -1l30 -1t34 -0.5h35.5q2 10 3 16q1 7 11 7h4q9 0 9 -8q0 -1 -0.5 -9.5t-1.5 -21.5t-1 -19q-1 -8 -4.5 -11t-15.5 -3 q-74 0 -161 5q-9 -72 -9 -84q0 -8 4 -8h23q36 0 63.5 -5t53.5 -17.5t39.5 -38t13.5 -62.5q0 -73 -68.5 -112t-155.5 -39q-8 0 -8 16z" />
<glyph horiz-adv-x="360" d="M40 491q0 54 22.5 101.5t53.5 77.5t65 51.5t56.5 31t27.5 9.5q9 0 9 -16q0 -3 -14 -9q-67 -36 -99 -73.5t-55 -97.5q49 17 82 17q59 0 96.5 -33t37.5 -88q0 -57 -39.5 -93t-97.5 -36q-64 0 -104.5 39.5t-40.5 118.5zM96 494q0 -139 97 -139q34 0 54.5 29.5t20.5 68.5 q0 104 -96 104q-14 0 -41 -5.5t-30 -11.5q-1 0 -3 -20.5t-2 -25.5z" />
<glyph horiz-adv-x="360" d="M65 647q0 1 1 18t2 43t1 49q0 8 14 8q12 0 12 -14v-2q22 -2 111 -2h114q16 0 16 -10q0 -6 -3 -12l-69.5 -126t-51.5 -108.5t-48 -131.5q-4 -17 -7.5 -21t-9.5 -4q-14 0 -27 6t-13 12q0 31 69 162q40 76 110 185h-139q-46 0 -56 -4l-2 -46q0 -8 -9 -8q-15 0 -15 6z" />
<glyph horiz-adv-x="360" d="M50 439q0 38 29.5 69.5t59.5 41.5q-2 1 -14 8.5t-16 10.5l-14.5 10.5t-14.5 14l-10 16t-8.5 21.5t-2.5 25q0 44 34.5 74.5t81.5 30.5q46 0 82.5 -25.5t36.5 -68.5q0 -28 -13 -49.5t-26 -31t-32 -20.5l-6 -3q2 -1 23.5 -15.5t33 -24t24 -30.5t12.5 -44q0 -48 -40 -81.5 t-97 -33.5q-55 0 -89 26.5t-34 78.5zM98 446q0 -39 22.5 -64.5t57.5 -25.5q36 0 55 25.5t19 59.5q0 18 -7.5 33.5t-25 28.5t-28 19.5t-33.5 18.5q-19 -13 -28 -20.5t-20.5 -28t-11.5 -46.5zM111 664q0 -14 5 -26t16.5 -22t19.5 -16t24.5 -15.5t20.5 -11.5q20 9 35.5 33 t15.5 54q0 36 -20.5 57t-46.5 21q-28 0 -49 -20.5t-21 -53.5z" />
<glyph horiz-adv-x="360" d="M45 627q0 57 40.5 95.5t91.5 38.5q60 0 101.5 -47t41.5 -125q0 -47 -13 -86.5t-32.5 -64.5t-45 -44.5t-49 -29t-46.5 -16t-35 -8t-17 -1.5q-7 0 -7 16q0 8 23 11q58 8 109.5 53.5t54.5 118.5q-43 -29 -101 -29q-51 0 -83.5 33.5t-32.5 84.5zM98 635q0 -40 23.5 -68 t66.5 -28q18 0 36.5 6.5t28.5 12.5l10 6q0 6 0.5 17t0.5 16q-2 143 -85 143q-38 0 -59.5 -31t-21.5 -74z" />
<glyph horiz-adv-x="352" d="M35 57q0 49 55 78.5t132 42.5q6 1 6 12q0 27 -1.5 41.5t-7.5 32.5t-21 26.5t-39 8.5q-13 0 -24 -4q-16 -6 -20.5 -16.5t-5.5 -35.5q0 -13 -6 -17q-33 -21 -47 -21q-8 0 -8 12q0 46 41.5 75.5t87.5 29.5q60 0 85 -26.5t25 -77.5q0 -23 -2.5 -90t-2.5 -73q0 -24 18 -24 q2 0 16 9.5t15 9.5q2 0 6 -4.5t4 -8.5t-54 -43q-13 -9 -22 -9q-13 0 -21 12.5t-10 24.5l-3 13q-1 0 -3.5 -2t-6.5 -4.5l-7 -4.5q-56 -36 -96 -36q-39 0 -61 18.5t-22 50.5zM98 81q0 -21 14.5 -37.5t38.5 -16.5q16 0 35 4.5t30.5 10t11.5 7.5v104q0 9 -4 9q-11 0 -50 -12 q-76 -24 -76 -69z" />
<glyph horiz-adv-x="414" d="M10 509q0 19 4 19l47.5 5.5l50 6t22.5 2.5q6 0 6 -12q-3 -150 -3 -216q0 -31 1 -31l6 3q5 3 14 6.5l19.5 7.5t24 7t24.5 3q69 0 113.5 -46t44.5 -113q0 -75 -54.5 -118.5t-130.5 -43.5q-16 0 -40 8.5t-35 8.5q-10 0 -24 -8t-17 -8q-10 0 -10 10q0 1 1.5 29.5t2.5 66.5 t1 61q0 64 -4 208t-10 144q-2 0 -25 -2.5t-24 -2.5q-5 0 -5 5zM135 53q0 -40 67 -40q54 0 85.5 40.5t31.5 96.5q0 53 -38 93.5t-90 40.5q-12 0 -25.5 -4t-21 -9t-7.5 -7q0 -47 -1 -126t-1 -85z" />
<glyph horiz-adv-x="350" d="M30 142q0 84 52.5 132t119.5 48q41 0 76.5 -24t35.5 -54q0 -10 -9 -16q-15 -11 -27 -11q-11 0 -15 9q-2 5 -6 17l-6 18t-7 14.5t-10.5 12.5t-15 7t-21.5 3q-48 0 -78 -41.5t-30 -92.5q0 -54 33.5 -93.5t92.5 -39.5q25 0 48 6t36 12t15 6q6 0 6 -7q0 -4 -14.5 -17 t-47.5 -26.5t-70 -13.5q-73 0 -115.5 41t-42.5 110z" />
<glyph horiz-adv-x="424" d="M29 147q0 68 48.5 114.5t119.5 46.5q14 0 27.5 -2.5t23 -6l17.5 -6.5l13 -5l4 -3q5 0 5 15q0 37 -1.5 89t-3.5 87.5t-3 35.5t-25 -3.5t-28 -3.5q-6 0 -4 13q2 11 7 12l48 7l44 6.5t19 2.5q6 0 7.5 -2.5t1.5 -15.5q0 -5 -1.5 -49.5t-3 -132.5t-1.5 -197q0 -38 2 -96 q1 -24 4.5 -31.5t13.5 -7.5q3 0 27 4q9 2 9 -8t-1.5 -13t-9.5 -4l-98 -13q-5 0 -5 8q0 1 0.5 15.5t0.5 16.5q0 8 -1.5 8.5t-10.5 -4.5q-52 -35 -99 -35q-62 0 -104 38.5t-42 119.5zM95 153q0 -58 31 -94.5t92 -36.5q19 0 44 8t25 18v201q0 10 -24.5 25.5t-52.5 15.5 q-51 0 -83 -41t-32 -96z" />
<glyph horiz-adv-x="366" d="M30 146q0 74 48 123.5t124 49.5q59 0 92 -37.5t33 -92.5q0 -9 -44 -9q-5 0 -93.5 2t-91.5 2q-4 0 -4 -28q0 -60 36.5 -94.5t86.5 -34.5q18 0 35.5 5.5t29.5 12.5t21.5 14.5t14.5 12.5l5 6q1 0 7 -6t6 -7q0 -4 -17.5 -22t-53.5 -37t-74 -19q-76 0 -118.5 43.5t-42.5 115.5 zM98 206q0 -6 10 -6q45 0 125 4q32 1 32 3q0 50 -23 71t-50 21q-37 0 -64.5 -30.5t-29.5 -62.5z" />
<glyph horiz-adv-x="296" d="M45 11q0 12 10 12h32q3 0 3 49q0 16 -0.5 40t-0.5 26v47v56q0 33 -1 33h-27q-7 0 -9 2t-2 10t1.5 10t7.5 2h22q5 0 6.5 1.5t1.5 8.5q0 19 -1 37.5t-1 40.5q0 70 31.5 114t101.5 44q27 0 49 -15.5t22 -39.5q0 -13 -16 -25.5t-27 -12.5t-12 7q-7 48 -17 58q-7 8 -20 8 q-47 0 -47 -131q0 -13 -2 -81q0 -10 2.5 -12t14.5 -2h96q6 0 6 -5q0 -4 -2.5 -11t-4.5 -7h-95q-9 0 -11.5 -1.5t-2.5 -7.5v-130q0 -113 8 -113h53q10 0 10 -12q-4 -12 -10 -13q-7 0 -41.5 1t-47.5 1q-10 0 -33 -1t-36 -1q-8 0 -9.5 2.5t-1.5 10.5z" />
<glyph horiz-adv-x="399" d="M30 -140q0 36 37.5 59t79.5 31q20 4 20 5t-18 1h-47q-27 0 -34 15q-8 17 -8 39q0 25 16 29l35.5 9.5l39.5 10.5q6 2 12 3q4 0 3.5 0.5t-4.5 1.5t-7 2q-108 29 -108 131q0 52 45.5 86.5t103.5 34.5q27 0 51.5 -11t37.5 -23l13 -11q2 0 12.5 4t26 8.5t26.5 5.5q2 0 5 -9 t3 -17q0 -5 -3 -5q-53 -5 -53 -11q0 -1 3 -8.5t6 -20t3 -27.5q0 -88 -95 -122q-27 -10 -143 -41q-4 -2 -4 -7q0 -6 4 -12.5t7 -7.5q19 -1 57 -2t63.5 -1.5t58 -6t52 -15t33.5 -29t14 -47.5q0 -62 -51.5 -98.5t-134.5 -36.5q-60 0 -109 24.5t-49 68.5zM71 -134 q0 -35 36.5 -55.5t79.5 -20.5q55 0 95.5 21.5t40.5 68.5q0 31 -45 47t-99 16q-36 0 -72 -21t-36 -56zM105 200q0 -51 33 -87t55 -36q27 0 52.5 34t25.5 84q0 47 -21.5 73.5t-58.5 26.5q-35 0 -60.5 -28t-25.5 -67z" />
<glyph horiz-adv-x="439" d="M25 510q0 14 4 15q15 2 47.5 6t54.5 7t24 3q4 0 4 -16q-8 -134 -8 -244q0 -10 1.5 -11t7.5 4q62 36 110 36q33 0 54.5 -12.5t31.5 -38t13.5 -51t3.5 -62.5v-114q0 -7 1.5 -8.5t7.5 -1.5h21q11 0 11 -12t-12 -12q-7 0 -26.5 1t-32.5 1q-10 0 -34.5 -1t-37.5 -1 q-8 0 -9.5 2t-1.5 10q0 12 11 12h31q6 0 6.5 1t1.5 8q2 32 2 138q0 46 -19.5 75t-57.5 29q-37 0 -71 -17q-13 -7 -13 -11l1 -118q0 -71 1 -91q1 -10 2 -12t7 -2h31q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -31.5 1t-38.5 1q-10 0 -34.5 -1t-37.5 -1q-8 0 -9.5 2t-1.5 10 q0 12 9 12h32q6 0 7 2t1 12q1 74 1 174q0 175 -7 282q-1 14 -5 14q-1 0 -24 -3t-25 -3q-3 0 -3 10z" />
<glyph horiz-adv-x="220" d="M25 284q0 3 4 12q2 5 3.5 5.5t9.5 1.5q80 5 97 5q6 0 6 -5v-136q0 -90 3 -135q0 -10 8 -10h30q9 0 9 -12t-9 -12q-7 0 -34 1t-38 1t-40 -1t-36 -1q-6 0 -7.5 2t-1.5 10q0 7 1.5 9.5t9.5 2.5h34q7 0 8 1.5t1 7.5q1 23 1 70q0 110 -3 168q-1 9 -3 11t-8 2q-1 0 -20 -1 t-21 -1q-4 0 -4 4zM67 440q0 22 18 35.5t37 13.5q37 0 37 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="245" d="M5 -202q0 15 12 31.5t21 16.5q10 0 25.5 -2t18.5 -2q31 0 31 26q0 7 -2 44.5t-4 114t-2 179.5q0 38 -2 59q-1 11 -8 11q-3 0 -28.5 -1.5t-29.5 -1.5q-2 0 -2 4q0 7 3 14q11 8 13 8q19 0 45.5 1.5l44 2.5t18.5 1q6 0 6 -19q0 -16 2.5 -109.5t2.5 -153.5q0 -71 -9.5 -116 t-36.5 -79q-11 -13 -48 -30t-55 -17q-16 0 -16 18zM60 461q0 22 17.5 35.5t36.5 13.5q38 0 38 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="406" d="M25 518v8q0 12 9 13q85 8 111 8q7 0 7 -10l-9 -360q0 -6 2 -7.5t11 -1.5h17q9 0 24 17q36 48 61 89q6 7 5.5 10t-12.5 3h-14q-9 0 -9 12t11 12q3 0 20 -1t27 -1q8 0 24 1t22 1q10 0 10 -12t-9 -12h-26q-4 0 -37 -38.5l-49 -58.5l-2 -2q-7 -7 -4 -10q1 0 2 -2q4 -3 6 -5 l127 -139q9 -10 18 -10h8q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-5 0 -25 1t-32 1t-32.5 -1t-25.5 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h10q15 0 5 12l-97 106q-7 10 -9 11.5t-8 1.5h-11q-6 0 -7 -2.5t-1 -9.5v-105q0 -10 1.5 -12t7.5 -2h19q10 0 10 -12q0 -7 -1.5 -9.5 t-9.5 -2.5q-7 0 -25 1t-32 1q-16 0 -41 -1t-27 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h33q6 0 7 2t1 12v154q0 324 -8 324q-2 0 -21 -1.5t-23 -1.5q-8 0 -8 7z" />
<glyph horiz-adv-x="223" d="M25 515q0 2 2 14q1 5 2 5.5t7 1.5q91 8 103 8q6 0 6 -12q1 -126 3 -263.5t2 -215.5q0 -31 7 -31h31q10 0 10 -12t-10 -12q-7 0 -30 1t-36 1q-10 0 -37.5 -1t-40.5 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h41q3 0 3 68q0 309 -10 410q0 3 -1 7q0 6 -1 7.5t-6 1.5q-2 0 -19 -2 t-18 -2q-7 0 -7 3z" />
<glyph horiz-adv-x="620" d="M25 279q0 9 3 16q2 5 3 5.5t10 1.5q70 4 84 4q10 0 11.5 -1t1.5 -8v-26q0 -12 1 -13q1 0 7 5q64 49 116 49q18 0 31.5 -4.5t21 -11t12 -13.5t6.5 -11l2 -5q2 0 11 6q21 14 51 25.5t52 11.5q57 0 80 -30t23 -86q0 -37 -1 -93t-1 -71q0 -8 8 -8h25q12 0 12 -12t-12 -12 q-7 0 -29 1t-35 1q-10 0 -34 -1t-37 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h32q8 0 8 150q0 100 -72 100q-18 0 -37.5 -5.5t-30 -11.5t-10.5 -7t1.5 -7t3 -19.5t1.5 -34.5v-133q0 -32 2 -32h27q11 0 11 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -27.5 1t-33.5 1q-10 0 -29 -1t-32 -1 q-8 0 -10.5 2t-2.5 10q0 12 10 12h31q6 0 6 76v32t-0.5 29t-0.5 13q0 33 -2.5 51t-16 33.5t-39.5 15.5q-45 0 -80 -24q-8 -6 -8 -14v-178q0 -24 2 -29t13 -5h17q11 0 11 -12t-12 -12q-7 0 -29.5 1t-33.5 1t-38 -1t-32 -1q-10 0 -10 12t9 12h31q7 0 10 25q2 16 2 84v86 q0 62 -4 62q-1 0 -22.5 -1.5t-23.5 -1.5q-4 0 -4 3z" />
<glyph horiz-adv-x="435" d="M25 279q0 6 4 14q2 5 3 5.5t10 1.5q4 0 40 2.5t49 3.5q10 1 10.5 0t0.5 -9v-37q0 -6 10 3l2 2l15 10.5t19.5 12.5l19.5 10t25 8.5t27 2.5q66 0 88 -36.5t22 -105.5q0 -26 -2.5 -79.5t-2.5 -55.5q0 -7 1.5 -8.5t7.5 -1.5h24q8 0 10 -2t2 -10q0 -12 -10 -12q-7 0 -28.5 1 t-34.5 1q-10 0 -34 -1t-37 -1q-9 0 -10.5 2t-1.5 10t2 10t8 2h29q6 0 7 1t2 8q4 38 4 138q0 102 -77 102q-25 0 -71 -23q-14 -6 -14 -18q0 -32 -0.5 -96.5t-0.5 -96.5q0 -7 0.5 -9.5t2.5 -4t7 -1.5h29q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -30.5 1t-36.5 1 q-10 0 -35.5 -1t-38.5 -1q-8 0 -9 2t-1 10q0 12 9 12h31q6 0 6.5 2t1.5 12q5 78 5 153q0 55 -2 79q-1 10 -2 10.5t-8 0.5q-1 0 -21.5 -2t-22.5 -2t-2 4z" />
<glyph horiz-adv-x="384" d="M30 147q0 73 48 122.5t124 49.5q67 0 109.5 -46.5t42.5 -114.5q0 -76 -44 -123.5t-121 -47.5q-67 0 -113 47t-46 113zM94 136q0 -49 25.5 -87.5t69.5 -38.5q99 0 99 154q0 52 -24.5 92t-71.5 40q-98 0 -98 -160z" />
<glyph horiz-adv-x="432" d="M25 280q0 4 2.5 12t4.5 8q25 1 52.5 2t43 2t16.5 1q4 0 6 -0.5t3 -3t1 -8.5v-21q0 -9 1 -9t16 13q41 32 89 32q69 0 105.5 -42.5t36.5 -109.5q0 -65 -48 -114.5t-125 -49.5q-23 0 -55 10q-17 6 -18 4q-1 -1 -1 -4l2 -150q2 -53 5 -53h56q10 0 10 -12q-4 -12 -10 -13 q-7 0 -41.5 1t-47.5 1q-10 0 -39 -1t-42 -1q-8 0 -9.5 2.5t-1.5 10.5q0 12 10 12h45q3 0 3 127v112q0 151 -7 228q-1 8 -2.5 9.5t-10.5 1.5q-3 0 -20.5 -1t-19.5 -1q-10 0 -10 5zM155 42q0 -13 24 -23t45 -10q52 0 82.5 43.5t30.5 96.5q0 57 -30 92t-75 35q-31 0 -51 -10 q-26 -13 -26 -26v-198z" />
<glyph horiz-adv-x="413" d="M30 145q0 70 49.5 115.5t124.5 45.5q27 0 60 -11.5t38 -11.5q8 0 17 14.5t15 14.5q13 0 13 -10q-4 -95 -4 -238v-132q0 -130 2 -130h33q10 0 10 -13q0 -8 -1.5 -10.5t-9.5 -2.5h-23q-20 0 -40.5 -1t-35.5 -2.5t-27 -3t-19 -2.5t-8 -1q-8 0 -10 2.5t-2 8.5q0 14 10 15 q8 1 17.5 2l14 1.5t9.5 1t6.5 2t4 3t2.5 5t0.5 7t0.5 10.5l2 177q0 7 -3 7q-4 0 -13 -3q-50 -15 -90 -15q-56 0 -99.5 38.5t-43.5 116.5zM94 153q0 -52 31.5 -94t83.5 -42q71 0 71 17v198q0 24 -22 37t-61 13q-50 0 -76.5 -38.5t-26.5 -90.5z" />
<glyph horiz-adv-x="291" d="M30 280q0 6 2 11t3 5.5t10 1.5q36 3 86 3q10 0 10.5 -0.5t0.5 -7.5q0 -8 0.5 -26.5t0.5 -26.5v-15l8 21q13 33 34 52.5t40 19.5q16 0 31 -14t15 -23q0 -8 -10.5 -21.5t-19.5 -13.5t-24.5 12t-23.5 12q-45 0 -45 -159q0 -88 10 -88h49q11 0 11 -12q0 -13 -11 -13 q-7 0 -41 1t-47 1q-10 0 -34 -1t-37 -1q-8 0 -9 2t-1 11q0 12 9 12h34q8 0 8 107q0 148 -6 148q-1 0 -25 -1t-26 -1t-2 4z" />
<glyph horiz-adv-x="276" d="M40 40q0 9 8 20t13 11q2 0 3.5 -2.5t4 -8t6.5 -10.5q29 -40 66 -40q20 0 33.5 13.5t13.5 38.5q0 26 -16.5 41.5t-46.5 30.5q-2 1 -13 6t-13.5 6.5l-12 7t-12.5 8l-10 8.5t-9.5 11l-6 12.5t-5 15.5t-1.5 17q0 39 32.5 65t74.5 26q38 0 58 -18.5t20 -36.5q0 -6 -10.5 -11 t-17.5 -5q-6 0 -10.5 13t-14 26t-29.5 13t-35.5 -13.5t-15.5 -42.5q0 -16 10 -29.5t19 -19t30 -16.5q57 -32 72 -50q16 -19 16 -43q0 -43 -31 -69t-75 -26q-35 0 -65 16t-30 35z" />
<glyph horiz-adv-x="258" d="M40 272q0 3 3 6l78 105q5 5 8 5q9 0 9 -8q0 -1 -1.5 -16.5t-3 -33.5t-1.5 -24q0 -8 9 -8h76q9 0 10 -2t-2 -14q-3 -15 -11 -15h-79q-3 0 -3 -36v-149q0 -15 1.5 -23.5t11 -16.5t26.5 -8q14 0 28.5 3t24 6t11.5 3q3 0 3 -13q0 -2 -19 -12t-45 -19.5t-41 -9.5 q-33 0 -46.5 16.5t-13.5 38.5q2 114 2 171q0 48 -10 48h-20q-5 0 -5 6z" />
<glyph horiz-adv-x="440" d="M25 287q0 3 3 10t13 8q76 4 93 4q6 0 6 -5v-217q0 -54 89 -54q73 0 73 13v93q0 147 -6 147q-1 0 -20.5 -1t-21.5 -1q-3 0 -3 3q2 16 5 17q2 2 6 2q64 4 96 4q6 0 6 -4q-1 -191 -1 -240q0 -30 2.5 -38.5t12.5 -8.5q1 0 16.5 2t16.5 2q4 0 4 -9t-1.5 -10.5t-10.5 -3.5 q-11 -2 -33 -5t-37 -5.5t-18 -2.5q-8 0 -9 11q-3 33 -4 33l-22 -11q-21 -10 -53.5 -20t-59.5 -10q-54 0 -72 28.5t-18 77.5v126v17q0 44 -9 44q-1 0 -19.5 -0.5t-20.5 -0.5q-3 0 -3 5z" />
<glyph horiz-adv-x="378" d="M20 295q0 12 10 12q6 0 24 -1t30 -1q11 0 36.5 1t31.5 1q7 0 8.5 -2t1.5 -10q0 -12 -9 -12h-24q-15 0 -15 -6q0 -2 14 -41.5l33 -90.5l29 -76q7 -15 9 -15t7 13q76 180 76 203q0 13 -8 13h-21q-10 0 -10 12t12 12q2 0 20.5 -1t28.5 -1t24 1t20 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-13q-6 0 -11 -8q-9 -15 -47 -105.5t-57 -129.5q-7 -14 -19.5 -28.5t-21.5 -27.5q-5 -6 -9 -6q-5 0 -9 8t-9 25.5t-6 19.5q-28 84 -90 240q-4 9 -6.5 10.5t-11.5 1.5h-8q-10 0 -10 12z" />
<glyph horiz-adv-x="578" d="M20 295q0 12 10 12q7 0 24.5 -1t30.5 -1q11 0 37 1t33 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12h-18q-13 0 -13 -6q0 -2 12.5 -41.5l30 -91t27.5 -75.5q4 -13 6 -13t8 18q49 105 67 147q6 21 6 29q0 5 -4 17q-6 16 -28 16h-9q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q9 0 27 -1 t34 -1q11 0 30.5 1t29.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-17q-10 0 -10 -6q0 -2 11.5 -41.5l27.5 -91t26 -75.5q9 -19 10 -19q2 0 9 18q14 33 40.5 112.5t26.5 93.5q0 9 -10 9h-24q-11 0 -11 12t12 12q2 0 20.5 -1t28.5 -1q11 0 26.5 1t16.5 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-5q-7 0 -11 -8q-7 -14 -41.5 -104t-54.5 -131q-7 -14 -17.5 -27.5t-19.5 -28.5q-2 -6 -9 -6q-9 0 -25 53q-23 82 -56 181q-4 14 -6 14q-4 0 -8 -14q-6 -13 -22.5 -52l-29 -67t-24.5 -49q-7 -14 -19.5 -28t-22.5 -32q-4 -6 -10 -6q-11 0 -27 57q-3 11 -17 50 l-34 94l-33 92q-3 9 -5.5 10.5t-11.5 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="392" d="M15 10q0 12 9 12q11 0 17 3.5t21 19.5l98 97q6 7 5.5 8t-5.5 7l-86 114q-7 9 -9.5 10.5t-11.5 1.5h-13q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 30 -1t36 -1q11 0 26.5 1t22.5 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12q-14 0 -14 -5q0 -2 8 -14l55 -73q4 -9 5 -8l2 3q2 5 4 8 q58 61 69 75q1 2 2 3.5t2 2.5t1 2q0 6 -21 6h-10q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5t22 -1t23 -1q10 0 24.5 1t19.5 1q11 0 11 -12t-10 -12q-5 0 -10 -2.5t-8 -5t-8 -7.5l-8 -8l-54.5 -48.5t-35.5 -32.5q-2 -6 -2 -10q0 -2 8 -13q50 -70 94 -124q8 -10 14 -10h10 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -26 1t-32 1q-11 0 -30.5 -1t-26.5 -1q-8 0 -9.5 2t-1.5 10q0 12 8 12h8q14 0 14 6l-17 26q-21 31 -56 74q-2 6 -3 7.5t-2 0t-4 -7.5l-21.5 -25l-31.5 -36t-23 -28q-1 -2 -3 -4l-3 -3t-1.5 -2.5t-0.5 -2.5q0 -5 14 -5h22 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -23 1t-29 1q-12 0 -27 -1t-20 -1q-7 0 -8.5 2t-1.5 10z" />
<glyph horiz-adv-x="378" d="M20 295q0 7 1.5 9.5t9.5 2.5q7 0 27 -1t32 -1q11 0 37.5 1t33.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-15q-21 0 -21 -8q0 -10 25 -80t45 -118q14 -32 15 -32q3 0 14 32q65 186 65 200q0 6 -23 6h-18q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 26 -1t27 -1q10 0 24.5 1 t19.5 1q11 0 11 -12t-10 -12h-11q-8 0 -10 -8l-104 -272q0 -1 -36 -93q-1 -4 -5.5 -16t-5.5 -14.5l-4.5 -11.5t-6 -13l-7.5 -12t-10.5 -15l-12.5 -16q-14 -19 -34 -29q-42 -21 -50 -21q-15 0 -15 17q0 11 15 34q8 11 23 15q3 1 14 5l18 6.5t16.5 7.5t15 10.5t8.5 12.5 q35 82 35 97q0 6 -22 59.5l-59.5 141.5t-43.5 103q-4 9 -6 10.5t-11 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="345" d="M35 9q0 6 8 17q179 261 179 263q0 3 -7 3q-41 0 -121 -4q-8 0 -10.5 -0.5t-5 -2t-3.5 -4t-2 -8.5l-7 -32q-3 -9 -12 -9q-14 0 -14 5q0 1 1.5 12.5t3 27.5t2.5 25q0 4 0.5 6t2 3t3.5 1.5t6 0.5h228q19 0 19 -8q0 -1 -7 -13l-168 -246q-11 -18 -11 -20t15 -2l137 4 q8 0 10 1t3 9l7 45q1 8 2.5 9t7.5 1h5q8 0 8 -5q0 -16 -5 -76q-1 -9 -2.5 -10.5t-10.5 -1.5h-244q-18 0 -18 9z" />
<glyph horiz-adv-x="201" d="M30 205q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 -94l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="201" d="M30 455q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 156l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="201" d="M30 55q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 -244l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="201" d="M30 555q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 256l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="246" d="M90 -95v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 -86q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="246" d="M90 155v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 164q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="246" d="M90 -245v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 -236q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="246" d="M90 255v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 264q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="188" d="M40 -113q0 1 14 12.5t27.5 32t13.5 40.5q0 19 -13 34t-26 25t-13 15q0 12 17.5 24.5t23.5 12.5q12 0 36 -20.5t24 -36.5q0 -35 -21.5 -73t-43 -59t-26.5 -21q-4 0 -8.5 5t-4.5 9z" />
<glyph horiz-adv-x="192" d="M49 35q0 14 14.5 33.5t24.5 19.5q14 0 33 -13.5t19 -29.5q0 -19 -14.5 -35.5t-23.5 -16.5q-18 0 -35.5 15.5t-17.5 26.5z" />
<glyph horiz-adv-x="188" d="M40 137q0 1 14 12.5t27.5 32t13.5 40.5q0 19 -13 34t-26 25t-13 15q0 12 17.5 24.5t23.5 12.5q12 0 36 -20.5t24 -36.5q0 -35 -21.5 -73t-43 -59t-26.5 -21q-4 0 -8.5 5t-4.5 9z" />
<glyph horiz-adv-x="192" d="M49 285q0 14 14.5 33.5t24.5 19.5q14 0 33 -13.5t19 -29.5q0 -19 -14.5 -35.5t-23.5 -16.5q-18 0 -35.5 15.5t-17.5 26.5z" />
<glyph horiz-adv-x="188" d="M40 -263q0 1 14 12.5t27.5 32t13.5 40.5q0 19 -13 34t-26 25t-13 15q0 12 17.5 24.5t23.5 12.5q12 0 36 -20.5t24 -36.5q0 -35 -21.5 -73t-43 -59t-26.5 -21q-4 0 -8.5 5t-4.5 9z" />
<glyph horiz-adv-x="192" d="M49 -115q0 14 14.5 33.5t24.5 19.5q14 0 33 -13.5t19 -29.5q0 -19 -14.5 -35.5t-23.5 -16.5q-18 0 -35.5 15.5t-17.5 26.5z" />
<glyph horiz-adv-x="188" d="M40 237q0 1 14 12.5t27.5 32t13.5 40.5q0 19 -13 34t-26 25t-13 15q0 12 17.5 24.5t23.5 12.5q12 0 36 -20.5t24 -36.5q0 -35 -21.5 -73t-43 -59t-26.5 -21q-4 0 -8.5 5t-4.5 9z" />
<glyph horiz-adv-x="192" d="M49 385q0 14 14.5 33.5t24.5 19.5q14 0 33 -13.5t19 -29.5q0 -19 -14.5 -35.5t-23.5 -16.5q-18 0 -35.5 15.5t-17.5 26.5z" />
<glyph horiz-adv-x="223" d="M20 168q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="223" d="M20 418q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="223" d="M20 18q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="223" d="M20 518q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="360" d="M46 61q0 7 9.5 11t17.5 4q5 0 8.5 -2.5t10.5 -11.5t8 -11q26 -29 63 -32q4 0 4.5 0.5t0.5 4.5v152q0 9 -7 12q-35 15 -54.5 26t-39 35.5t-19.5 55.5q0 41 34 70t82 34q4 0 4 4v34q0 10 9 10h7q8 0 8 -10v-33q0 -4 3 -4q44 -3 72.5 -25t28.5 -42q0 -9 -10.5 -15t-16.5 -6 q-8 0 -11.5 9.5t-5 21t-15 22.5t-40.5 13q-5 0 -5 -3v-150v-8.5t6 -2.5q27 -12 41.5 -19.5t34.5 -22t29.5 -32.5t9.5 -41q0 -48 -30 -77.5t-84 -34.5q-5 0 -6 -0.5t-1 -4.5v-80q0 -11 -12 -11t-12 11v80q0 5 -6 5q-46 3 -81 22.5t-35 41.5zM96 309q0 -27 18 -42.5t51 -29.5 q2 -1 2.5 -0.5t0.5 4.5v144q0 4 -7 2q-17 -4 -28 -11q-37 -22 -37 -67zM192 27q0 -9 10 -6q27 7 45 29t18 46q0 27 -17.5 44.5t-50.5 32.5q-5 2 -5 -1v-145z" />
<glyph horiz-adv-x="360" d="M46 311q0 7 9.5 11t17.5 4q5 0 8.5 -2.5t10.5 -11.5t8 -11q26 -29 63 -32q4 0 4.5 0.5t0.5 4.5v152q0 9 -7 12q-35 15 -54.5 26t-39 35.5t-19.5 55.5q0 41 34 70t82 34q4 0 4 4v34q0 10 9 10h7q8 0 8 -10v-33q0 -4 3 -4q44 -3 72.5 -25t28.5 -42q0 -9 -10.5 -15t-16.5 -6 q-8 0 -11.5 9.5t-5 21t-15 22.5t-40.5 13q-5 0 -5 -3v-150v-8.5t6 -2.5q27 -12 41.5 -19.5t34.5 -22t29.5 -32.5t9.5 -41q0 -48 -30 -77.5t-84 -34.5q-5 0 -6 -0.5t-1 -4.5v-80q0 -11 -12 -11t-12 11v80q0 5 -6 5q-46 3 -81 22.5t-35 41.5zM96 559q0 -27 18 -42.5t51 -29.5 q2 -1 2.5 -0.5t0.5 4.5v144q0 4 -7 2q-17 -4 -28 -11q-37 -22 -37 -67zM192 277q0 -9 10 -6q27 7 45 29t18 46q0 27 -17.5 44.5t-50.5 32.5q-5 2 -5 -1v-145z" />
<glyph horiz-adv-x="360" d="M46 -89q0 7 9.5 11t17.5 4q5 0 8.5 -2.5t10.5 -11.5t8 -11q26 -29 63 -32q4 0 4.5 0.5t0.5 4.5v152q0 9 -7 12q-35 15 -54.5 26t-39 35.5t-19.5 55.5q0 41 34 70t82 34q4 0 4 4v34q0 10 9 10h7q8 0 8 -10v-33q0 -4 3 -4q44 -3 72.5 -25t28.5 -42q0 -9 -10.5 -15t-16.5 -6 q-8 0 -11.5 9.5t-5 21t-15 22.5t-40.5 13q-5 0 -5 -3v-150v-8.5t6 -2.5q27 -12 41.5 -19.5t34.5 -22t29.5 -32.5t9.5 -41q0 -48 -30 -77.5t-84 -34.5q-5 0 -6 -0.5t-1 -4.5v-80q0 -11 -12 -11t-12 11v80q0 5 -6 5q-46 3 -81 22.5t-35 41.5zM96 159q0 -27 18 -42.5t51 -29.5 q2 -1 2.5 -0.5t0.5 4.5v144q0 4 -7 2q-17 -4 -28 -11q-37 -22 -37 -67zM192 -123q0 -9 10 -6q27 7 45 29t18 46q0 27 -17.5 44.5t-50.5 32.5q-5 2 -5 -1v-145z" />
<glyph horiz-adv-x="360" d="M46 411q0 7 9.5 11t17.5 4q5 0 8.5 -2.5t10.5 -11.5t8 -11q26 -29 63 -32q4 0 4.5 0.5t0.5 4.5v152q0 9 -7 12q-35 15 -54.5 26t-39 35.5t-19.5 55.5q0 41 34 70t82 34q4 0 4 4v34q0 10 9 10h7q8 0 8 -10v-33q0 -4 3 -4q44 -3 72.5 -25t28.5 -42q0 -9 -10.5 -15t-16.5 -6 q-8 0 -11.5 9.5t-5 21t-15 22.5t-40.5 13q-5 0 -5 -3v-150v-8.5t6 -2.5q27 -12 41.5 -19.5t34.5 -22t29.5 -32.5t9.5 -41q0 -48 -30 -77.5t-84 -34.5q-5 0 -6 -0.5t-1 -4.5v-80q0 -11 -12 -11t-12 11v80q0 5 -6 5q-46 3 -81 22.5t-35 41.5zM96 659q0 -27 18 -42.5t51 -29.5 q2 -1 2.5 -0.5t0.5 4.5v144q0 4 -7 2q-17 -4 -28 -11q-37 -22 -37 -67zM192 377q0 -9 10 -6q27 7 45 29t18 46q0 27 -17.5 44.5t-50.5 32.5q-5 2 -5 -1v-145z" />
<glyph horiz-adv-x="360" d="M59 129q0 69 41.5 111.5t96.5 46.5q4 0 6 10q1 11 2.5 24l2.5 21t1 11q0 2 3 2h7q7 0 7 -2l-6 -56q-1 -10 9 -11q27 -5 47 -24t20 -42q0 -8 -8 -13q-14 -10 -22 -10q-10 0 -11 6q-1 4 -2.5 12t-2.5 12t-2.5 11t-3.5 10.5t-5 8t-6.5 7.5t-7.5 4q-6 2 -7 -6l-20 -224 q0 -8 3 -9q5 -3 25 -3q19 1 35.5 7t26.5 11l9 6q5 0 5 -6q0 -2 -6 -8q-41 -41 -95 -41q-8 0 -9 -8q-6 -54 -10 -79h-15q0 11 8 78q2 11 -8 12q-50 10 -79 45.5t-29 85.5zM108 148q0 -36 16.5 -67t46.5 -45q1 -1 4 -1q4 0 4 5l21 219q0 9 -6 9h-1q-38 -3 -61.5 -40.5 t-23.5 -79.5z" />
<glyph horiz-adv-x="360" d="M59 379q0 69 41.5 111.5t96.5 46.5q4 0 6 10q1 11 2.5 24l2.5 21t1 11q0 2 3 2h7q7 0 7 -2l-6 -56q-1 -10 9 -11q27 -5 47 -24t20 -42q0 -8 -8 -13q-14 -10 -22 -10q-10 0 -11 6q-1 4 -2.5 12t-2.5 12t-2.5 11t-3.5 10.5t-5 8t-6.5 7.5t-7.5 4q-6 2 -7 -6l-20 -224 q0 -8 3 -9q5 -3 25 -3q19 1 35.5 7t26.5 11l9 6q5 0 5 -6q0 -2 -6 -8q-41 -41 -95 -41q-8 0 -9 -8q-6 -54 -10 -79h-15q0 11 8 78q2 11 -8 12q-50 10 -79 45.5t-29 85.5zM108 398q0 -36 16.5 -67t46.5 -45q1 -1 4 -1q4 0 4 5l21 219q0 9 -6 9h-1q-38 -3 -61.5 -40.5 t-23.5 -79.5z" />
<glyph horiz-adv-x="360" d="M59 -21q0 69 41.5 111.5t96.5 46.5q4 0 6 10q1 11 2.5 24l2.5 21t1 11q0 2 3 2h7q7 0 7 -2l-6 -56q-1 -10 9 -11q27 -5 47 -24t20 -42q0 -8 -8 -13q-14 -10 -22 -10q-10 0 -11 6q-1 4 -2.5 12t-2.5 12t-2.5 11t-3.5 10.5t-5 8t-6.5 7.5t-7.5 4q-6 2 -7 -6l-20 -224 q0 -8 3 -9q5 -3 25 -3q19 1 35.5 7t26.5 11l9 6q5 0 5 -6q0 -2 -6 -8q-41 -41 -95 -41q-8 0 -9 -8q-6 -54 -10 -79h-15q0 11 8 78q2 11 -8 12q-50 10 -79 45.5t-29 85.5zM108 -2q0 -36 16.5 -67t46.5 -45q1 -1 4 -1q4 0 4 5l21 219q0 9 -6 9h-1q-38 -3 -61.5 -40.5 t-23.5 -79.5z" />
<glyph horiz-adv-x="360" d="M59 479q0 69 41.5 111.5t96.5 46.5q4 0 6 10q1 11 2.5 24l2.5 21t1 11q0 2 3 2h7q7 0 7 -2l-6 -56q-1 -10 9 -11q27 -5 47 -24t20 -42q0 -8 -8 -13q-14 -10 -22 -10q-10 0 -11 6q-1 4 -2.5 12t-2.5 12t-2.5 11t-3.5 10.5t-5 8t-6.5 7.5t-7.5 4q-6 2 -7 -6l-20 -224 q0 -8 3 -9q5 -3 25 -3q19 1 35.5 7t26.5 11l9 6q5 0 5 -6q0 -2 -6 -8q-41 -41 -95 -41q-8 0 -9 -8q-6 -54 -10 -79h-15q0 11 8 78q2 11 -8 12q-50 10 -79 45.5t-29 85.5zM108 498q0 -36 16.5 -67t46.5 -45q1 -1 4 -1q4 0 4 5l21 219q0 9 -6 9h-1q-38 -3 -61.5 -40.5 t-23.5 -79.5z" />
<glyph horiz-adv-x="352" d="M35 307q0 49 55 78.5t132 42.5q6 1 6 12q0 27 -1.5 41.5t-7.5 32.5t-21 26.5t-39 8.5q-13 0 -24 -4q-16 -6 -20.5 -16.5t-5.5 -35.5q0 -13 -6 -17q-33 -21 -47 -21q-8 0 -8 12q0 46 41.5 75.5t87.5 29.5q60 0 85 -26.5t25 -77.5q0 -23 -2.5 -90t-2.5 -73q0 -24 18 -24 q2 0 16 9.5t15 9.5q2 0 6 -4.5t4 -8.5t-54 -43q-13 -9 -22 -9q-13 0 -21 12.5t-10 24.5l-3 13q-1 0 -3.5 -2t-6.5 -4.5l-7 -4.5q-56 -36 -96 -36q-39 0 -61 18.5t-22 50.5zM98 331q0 -21 14.5 -37.5t38.5 -16.5q16 0 35 4.5t30.5 10t11.5 7.5v104q0 9 -4 9q-11 0 -50 -12 q-76 -24 -76 -69z" />
<glyph horiz-adv-x="414" d="M10 759q0 19 4 19l47.5 5.5l50 6t22.5 2.5q6 0 6 -12q-3 -150 -3 -216q0 -31 1 -31l6 3q5 3 14 6.5l19.5 7.5t24 7t24.5 3q69 0 113.5 -46t44.5 -113q0 -75 -54.5 -118.5t-130.5 -43.5q-16 0 -40 8.5t-35 8.5q-10 0 -24 -8t-17 -8q-10 0 -10 10q0 1 1.5 29.5t2.5 66.5 t1 61q0 64 -4 208t-10 144q-2 0 -25 -2.5t-24 -2.5q-5 0 -5 5zM135 303q0 -40 67 -40q54 0 85.5 40.5t31.5 96.5q0 53 -38 93.5t-90 40.5q-12 0 -25.5 -4t-21 -9t-7.5 -7q0 -47 -1 -126t-1 -85z" />
<glyph horiz-adv-x="350" d="M30 392q0 84 52.5 132t119.5 48q41 0 76.5 -24t35.5 -54q0 -10 -9 -16q-15 -11 -27 -11q-11 0 -15 9q-2 5 -6 17l-6 18t-7 14.5t-10.5 12.5t-15 7t-21.5 3q-48 0 -78 -41.5t-30 -92.5q0 -54 33.5 -93.5t92.5 -39.5q25 0 48 6t36 12t15 6q6 0 6 -7q0 -4 -14.5 -17 t-47.5 -26.5t-70 -13.5q-73 0 -115.5 41t-42.5 110z" />
<glyph horiz-adv-x="424" d="M29 397q0 68 48.5 114.5t119.5 46.5q14 0 27.5 -2.5t23 -6l17.5 -6.5l13 -5l4 -3q5 0 5 15q0 37 -1.5 89t-3.5 87.5t-3 35.5t-25 -3.5t-28 -3.5q-6 0 -4 13q2 11 7 12l48 7l44 6.5t19 2.5q6 0 7.5 -2.5t1.5 -15.5q0 -5 -1.5 -49.5t-3 -132.5t-1.5 -197q0 -38 2 -96 q1 -24 4.5 -31.5t13.5 -7.5q3 0 27 4q9 2 9 -8t-1.5 -13t-9.5 -4l-98 -13q-5 0 -5 8q0 1 0.5 15.5t0.5 16.5q0 8 -1.5 8.5t-10.5 -4.5q-52 -35 -99 -35q-62 0 -104 38.5t-42 119.5zM95 403q0 -58 31 -94.5t92 -36.5q19 0 44 8t25 18v201q0 10 -24.5 25.5t-52.5 15.5 q-51 0 -83 -41t-32 -96z" />
<glyph horiz-adv-x="366" d="M30 396q0 74 48 123.5t124 49.5q59 0 92 -37.5t33 -92.5q0 -9 -44 -9q-5 0 -93.5 2t-91.5 2q-4 0 -4 -28q0 -60 36.5 -94.5t86.5 -34.5q18 0 35.5 5.5t29.5 12.5t21.5 14.5t14.5 12.5l5 6q1 0 7 -6t6 -7q0 -4 -17.5 -22t-53.5 -37t-74 -19q-76 0 -118.5 43.5t-42.5 115.5 zM98 456q0 -6 10 -6q45 0 125 4q32 1 32 3q0 50 -23 71t-50 21q-37 0 -64.5 -30.5t-29.5 -62.5z" />
<glyph horiz-adv-x="296" d="M45 261q0 12 10 12h32q3 0 3 49q0 16 -0.5 40t-0.5 26v47v56q0 33 -1 33h-27q-7 0 -9 2t-2 10t1.5 10t7.5 2h22q5 0 6.5 1.5t1.5 8.5q0 19 -1 37.5t-1 40.5q0 70 31.5 114t101.5 44q27 0 49 -15.5t22 -39.5q0 -13 -16 -25.5t-27 -12.5t-12 7q-7 48 -17 58q-7 8 -20 8 q-47 0 -47 -131q0 -13 -2 -81q0 -10 2.5 -12t14.5 -2h96q6 0 6 -5q0 -4 -2.5 -11t-4.5 -7h-95q-9 0 -11.5 -1.5t-2.5 -7.5v-130q0 -113 8 -113h53q10 0 10 -12q-4 -12 -10 -13q-7 0 -41.5 1t-47.5 1q-10 0 -33 -1t-36 -1q-8 0 -9.5 2.5t-1.5 10.5z" />
<glyph horiz-adv-x="399" d="M30 110q0 36 37.5 59t79.5 31q20 4 20 5t-18 1h-47q-27 0 -34 15q-8 17 -8 39q0 25 16 29l35.5 9.5l39.5 10.5q6 2 12 3q4 0 3.5 0.5t-4.5 1.5t-7 2q-108 29 -108 131q0 52 45.5 86.5t103.5 34.5q27 0 51.5 -11t37.5 -23l13 -11q2 0 12.5 4t26 8.5t26.5 5.5q2 0 5 -9 t3 -17q0 -5 -3 -5q-53 -5 -53 -11q0 -1 3 -8.5t6 -20t3 -27.5q0 -88 -95 -122q-27 -10 -143 -41q-4 -2 -4 -7q0 -6 4 -12.5t7 -7.5q19 -1 57 -2t63.5 -1.5t58 -6t52 -15t33.5 -29t14 -47.5q0 -62 -51.5 -98.5t-134.5 -36.5q-60 0 -109 24.5t-49 68.5zM71 116 q0 -35 36.5 -55.5t79.5 -20.5q55 0 95.5 21.5t40.5 68.5q0 31 -45 47t-99 16q-36 0 -72 -21t-36 -56zM105 450q0 -51 33 -87t55 -36q27 0 52.5 34t25.5 84q0 47 -21.5 73.5t-58.5 26.5q-35 0 -60.5 -28t-25.5 -67z" />
<glyph horiz-adv-x="439" d="M25 760q0 14 4 15q15 2 47.5 6t54.5 7t24 3q4 0 4 -16q-8 -134 -8 -244q0 -10 1.5 -11t7.5 4q62 36 110 36q33 0 54.5 -12.5t31.5 -38t13.5 -51t3.5 -62.5v-114q0 -7 1.5 -8.5t7.5 -1.5h21q11 0 11 -12t-12 -12q-7 0 -26.5 1t-32.5 1q-10 0 -34.5 -1t-37.5 -1 q-8 0 -9.5 2t-1.5 10q0 12 11 12h31q6 0 6.5 1t1.5 8q2 32 2 138q0 46 -19.5 75t-57.5 29q-37 0 -71 -17q-13 -7 -13 -11l1 -118q0 -71 1 -91q1 -10 2 -12t7 -2h31q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -31.5 1t-38.5 1q-10 0 -34.5 -1t-37.5 -1q-8 0 -9.5 2t-1.5 10 q0 12 9 12h32q6 0 7 2t1 12q1 74 1 174q0 175 -7 282q-1 14 -5 14q-1 0 -24 -3t-25 -3q-3 0 -3 10z" />
<glyph horiz-adv-x="220" d="M25 534q0 3 4 12q2 5 3.5 5.5t9.5 1.5q80 5 97 5q6 0 6 -5v-136q0 -90 3 -135q0 -10 8 -10h30q9 0 9 -12t-9 -12q-7 0 -34 1t-38 1t-40 -1t-36 -1q-6 0 -7.5 2t-1.5 10q0 7 1.5 9.5t9.5 2.5h34q7 0 8 1.5t1 7.5q1 23 1 70q0 110 -3 168q-1 9 -3 11t-8 2q-1 0 -20 -1 t-21 -1q-4 0 -4 4zM67 690q0 22 18 35.5t37 13.5q37 0 37 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="245" d="M5 48q0 15 12 31.5t21 16.5q10 0 25.5 -2t18.5 -2q31 0 31 26q0 7 -2 44.5t-4 114t-2 179.5q0 38 -2 59q-1 11 -8 11q-3 0 -28.5 -1.5t-29.5 -1.5q-2 0 -2 4q0 7 3 14q11 8 13 8q19 0 45.5 1.5l44 2.5t18.5 1q6 0 6 -19q0 -16 2.5 -109.5t2.5 -153.5q0 -71 -9.5 -116 t-36.5 -79q-11 -13 -48 -30t-55 -17q-16 0 -16 18zM60 711q0 22 17.5 35.5t36.5 13.5q38 0 38 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="406" d="M25 768v8q0 12 9 13q85 8 111 8q7 0 7 -10l-9 -360q0 -6 2 -7.5t11 -1.5h17q9 0 24 17q36 48 61 89q6 7 5.5 10t-12.5 3h-14q-9 0 -9 12t11 12q3 0 20 -1t27 -1q8 0 24 1t22 1q10 0 10 -12t-9 -12h-26q-4 0 -37 -38.5l-49 -58.5l-2 -2q-7 -7 -4 -10q1 0 2 -2q4 -3 6 -5 l127 -139q9 -10 18 -10h8q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-5 0 -25 1t-32 1t-32.5 -1t-25.5 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h10q15 0 5 12l-97 106q-7 10 -9 11.5t-8 1.5h-11q-6 0 -7 -2.5t-1 -9.5v-105q0 -10 1.5 -12t7.5 -2h19q10 0 10 -12q0 -7 -1.5 -9.5 t-9.5 -2.5q-7 0 -25 1t-32 1q-16 0 -41 -1t-27 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h33q6 0 7 2t1 12v154q0 324 -8 324q-2 0 -21 -1.5t-23 -1.5q-8 0 -8 7z" />
<glyph horiz-adv-x="223" d="M25 765q0 2 2 14q1 5 2 5.5t7 1.5q91 8 103 8q6 0 6 -12q1 -126 3 -263.5t2 -215.5q0 -31 7 -31h31q10 0 10 -12t-10 -12q-7 0 -30 1t-36 1q-10 0 -37.5 -1t-40.5 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h41q3 0 3 68q0 309 -10 410q0 3 -1 7q0 6 -1 7.5t-6 1.5q-2 0 -19 -2 t-18 -2q-7 0 -7 3z" />
<glyph horiz-adv-x="620" d="M25 529q0 9 3 16q2 5 3 5.5t10 1.5q70 4 84 4q10 0 11.5 -1t1.5 -8v-26q0 -12 1 -13q1 0 7 5q64 49 116 49q18 0 31.5 -4.5t21 -11t12 -13.5t6.5 -11l2 -5q2 0 11 6q21 14 51 25.5t52 11.5q57 0 80 -30t23 -86q0 -37 -1 -93t-1 -71q0 -8 8 -8h25q12 0 12 -12t-12 -12 q-7 0 -29 1t-35 1q-10 0 -34 -1t-37 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h32q8 0 8 150q0 100 -72 100q-18 0 -37.5 -5.5t-30 -11.5t-10.5 -7t1.5 -7t3 -19.5t1.5 -34.5v-133q0 -32 2 -32h27q11 0 11 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -27.5 1t-33.5 1q-10 0 -29 -1t-32 -1 q-8 0 -10.5 2t-2.5 10q0 12 10 12h31q6 0 6 76v32t-0.5 29t-0.5 13q0 33 -2.5 51t-16 33.5t-39.5 15.5q-45 0 -80 -24q-8 -6 -8 -14v-178q0 -24 2 -29t13 -5h17q11 0 11 -12t-12 -12q-7 0 -29.5 1t-33.5 1t-38 -1t-32 -1q-10 0 -10 12t9 12h31q7 0 10 25q2 16 2 84v86 q0 62 -4 62q-1 0 -22.5 -1.5t-23.5 -1.5q-4 0 -4 3z" />
<glyph horiz-adv-x="435" d="M25 529q0 6 4 14q2 5 3 5.5t10 1.5q4 0 40 2.5t49 3.5q10 1 10.5 0t0.5 -9v-37q0 -6 10 3l2 2l15 10.5t19.5 12.5l19.5 10t25 8.5t27 2.5q66 0 88 -36.5t22 -105.5q0 -26 -2.5 -79.5t-2.5 -55.5q0 -7 1.5 -8.5t7.5 -1.5h24q8 0 10 -2t2 -10q0 -12 -10 -12q-7 0 -28.5 1 t-34.5 1q-10 0 -34 -1t-37 -1q-9 0 -10.5 2t-1.5 10t2 10t8 2h29q6 0 7 1t2 8q4 38 4 138q0 102 -77 102q-25 0 -71 -23q-14 -6 -14 -18q0 -32 -0.5 -96.5t-0.5 -96.5q0 -7 0.5 -9.5t2.5 -4t7 -1.5h29q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -30.5 1t-36.5 1 q-10 0 -35.5 -1t-38.5 -1q-8 0 -9 2t-1 10q0 12 9 12h31q6 0 6.5 2t1.5 12q5 78 5 153q0 55 -2 79q-1 10 -2 10.5t-8 0.5q-1 0 -21.5 -2t-22.5 -2t-2 4z" />
<glyph horiz-adv-x="384" d="M30 397q0 73 48 122.5t124 49.5q67 0 109.5 -46.5t42.5 -114.5q0 -76 -44 -123.5t-121 -47.5q-67 0 -113 47t-46 113zM94 386q0 -49 25.5 -87.5t69.5 -38.5q99 0 99 154q0 52 -24.5 92t-71.5 40q-98 0 -98 -160z" />
<glyph horiz-adv-x="432" d="M25 530q0 4 2.5 12t4.5 8q25 1 52.5 2t43 2t16.5 1q4 0 6 -0.5t3 -3t1 -8.5v-21q0 -9 1 -9t16 13q41 32 89 32q69 0 105.5 -42.5t36.5 -109.5q0 -65 -48 -114.5t-125 -49.5q-23 0 -55 10q-17 6 -18 4q-1 -1 -1 -4l2 -150q2 -53 5 -53h56q10 0 10 -12q-4 -12 -10 -13 q-7 0 -41.5 1t-47.5 1q-10 0 -39 -1t-42 -1q-8 0 -9.5 2.5t-1.5 10.5q0 12 10 12h45q3 0 3 127v112q0 151 -7 228q-1 8 -2.5 9.5t-10.5 1.5q-3 0 -20.5 -1t-19.5 -1q-10 0 -10 5zM155 292q0 -13 24 -23t45 -10q52 0 82.5 43.5t30.5 96.5q0 57 -30 92t-75 35q-31 0 -51 -10 q-26 -13 -26 -26v-198z" />
<glyph horiz-adv-x="413" d="M30 395q0 70 49.5 115.5t124.5 45.5q27 0 60 -11.5t38 -11.5q8 0 17 14.5t15 14.5q13 0 13 -10q-4 -95 -4 -238v-132q0 -130 2 -130h33q10 0 10 -13q0 -8 -1.5 -10.5t-9.5 -2.5h-23q-20 0 -40.5 -1t-35.5 -2.5t-27 -3t-19 -2.5t-8 -1q-8 0 -10 2.5t-2 8.5q0 14 10 15 q8 1 17.5 2l14 1.5t9.5 1t6.5 2t4 3t2.5 5t0.5 7t0.5 10.5l2 177q0 7 -3 7q-4 0 -13 -3q-50 -15 -90 -15q-56 0 -99.5 38.5t-43.5 116.5zM94 403q0 -52 31.5 -94t83.5 -42q71 0 71 17v198q0 24 -22 37t-61 13q-50 0 -76.5 -38.5t-26.5 -90.5z" />
<glyph horiz-adv-x="291" d="M30 530q0 6 2 11t3 5.5t10 1.5q36 3 86 3q10 0 10.5 -0.5t0.5 -7.5q0 -8 0.5 -26.5t0.5 -26.5v-15l8 21q13 33 34 52.5t40 19.5q16 0 31 -14t15 -23q0 -8 -10.5 -21.5t-19.5 -13.5t-24.5 12t-23.5 12q-45 0 -45 -159q0 -88 10 -88h49q11 0 11 -12q0 -13 -11 -13 q-7 0 -41 1t-47 1q-10 0 -34 -1t-37 -1q-8 0 -9 2t-1 11q0 12 9 12h34q8 0 8 107q0 148 -6 148q-1 0 -25 -1t-26 -1t-2 4z" />
<glyph horiz-adv-x="276" d="M40 290q0 9 8 20t13 11q2 0 3.5 -2.5t4 -8t6.5 -10.5q29 -40 66 -40q20 0 33.5 13.5t13.5 38.5q0 26 -16.5 41.5t-46.5 30.5q-2 1 -13 6t-13.5 6.5l-12 7t-12.5 8l-10 8.5t-9.5 11l-6 12.5t-5 15.5t-1.5 17q0 39 32.5 65t74.5 26q38 0 58 -18.5t20 -36.5q0 -6 -10.5 -11 t-17.5 -5q-6 0 -10.5 13t-14 26t-29.5 13t-35.5 -13.5t-15.5 -42.5q0 -16 10 -29.5t19 -19t30 -16.5q57 -32 72 -50q16 -19 16 -43q0 -43 -31 -69t-75 -26q-35 0 -65 16t-30 35z" />
<glyph horiz-adv-x="258" d="M40 522q0 3 3 6l78 105q5 5 8 5q9 0 9 -8q0 -1 -1.5 -16.5t-3 -33.5t-1.5 -24q0 -8 9 -8h76q9 0 10 -2t-2 -14q-3 -15 -11 -15h-79q-3 0 -3 -36v-149q0 -15 1.5 -23.5t11 -16.5t26.5 -8q14 0 28.5 3t24 6t11.5 3q3 0 3 -13q0 -2 -19 -12t-45 -19.5t-41 -9.5 q-33 0 -46.5 16.5t-13.5 38.5q2 114 2 171q0 48 -10 48h-20q-5 0 -5 6z" />
<glyph horiz-adv-x="440" d="M25 537q0 3 3 10t13 8q76 4 93 4q6 0 6 -5v-217q0 -54 89 -54q73 0 73 13v93q0 147 -6 147q-1 0 -20.5 -1t-21.5 -1q-3 0 -3 3q2 16 5 17q2 2 6 2q64 4 96 4q6 0 6 -4q-1 -191 -1 -240q0 -30 2.5 -38.5t12.5 -8.5q1 0 16.5 2t16.5 2q4 0 4 -9t-1.5 -10.5t-10.5 -3.5 q-11 -2 -33 -5t-37 -5.5t-18 -2.5q-8 0 -9 11q-3 33 -4 33l-22 -11q-21 -10 -53.5 -20t-59.5 -10q-54 0 -72 28.5t-18 77.5v126v17q0 44 -9 44q-1 0 -19.5 -0.5t-20.5 -0.5q-3 0 -3 5z" />
<glyph horiz-adv-x="378" d="M20 545q0 12 10 12q6 0 24 -1t30 -1q11 0 36.5 1t31.5 1q7 0 8.5 -2t1.5 -10q0 -12 -9 -12h-24q-15 0 -15 -6q0 -2 14 -41.5l33 -90.5l29 -76q7 -15 9 -15t7 13q76 180 76 203q0 13 -8 13h-21q-10 0 -10 12t12 12q2 0 20.5 -1t28.5 -1t24 1t20 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-13q-6 0 -11 -8q-9 -15 -47 -105.5t-57 -129.5q-7 -14 -19.5 -28.5t-21.5 -27.5q-5 -6 -9 -6q-5 0 -9 8t-9 25.5t-6 19.5q-28 84 -90 240q-4 9 -6.5 10.5t-11.5 1.5h-8q-10 0 -10 12z" />
<glyph horiz-adv-x="578" d="M20 545q0 12 10 12q7 0 24.5 -1t30.5 -1q11 0 37 1t33 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12h-18q-13 0 -13 -6q0 -2 12.5 -41.5l30 -91t27.5 -75.5q4 -13 6 -13t8 18q49 105 67 147q6 21 6 29q0 5 -4 17q-6 16 -28 16h-9q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q9 0 27 -1 t34 -1q11 0 30.5 1t29.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-17q-10 0 -10 -6q0 -2 11.5 -41.5l27.5 -91t26 -75.5q9 -19 10 -19q2 0 9 18q14 33 40.5 112.5t26.5 93.5q0 9 -10 9h-24q-11 0 -11 12t12 12q2 0 20.5 -1t28.5 -1q11 0 26.5 1t16.5 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-5q-7 0 -11 -8q-7 -14 -41.5 -104t-54.5 -131q-7 -14 -17.5 -27.5t-19.5 -28.5q-2 -6 -9 -6q-9 0 -25 53q-23 82 -56 181q-4 14 -6 14q-4 0 -8 -14q-6 -13 -22.5 -52l-29 -67t-24.5 -49q-7 -14 -19.5 -28t-22.5 -32q-4 -6 -10 -6q-11 0 -27 57q-3 11 -17 50 l-34 94l-33 92q-3 9 -5.5 10.5t-11.5 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="392" d="M15 260q0 12 9 12q11 0 17 3.5t21 19.5l98 97q6 7 5.5 8t-5.5 7l-86 114q-7 9 -9.5 10.5t-11.5 1.5h-13q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 30 -1t36 -1q11 0 26.5 1t22.5 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12q-14 0 -14 -5q0 -2 8 -14l55 -73q4 -9 5 -8l2 3q2 5 4 8 q58 61 69 75q1 2 2 3.5t2 2.5t1 2q0 6 -21 6h-10q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5t22 -1t23 -1q10 0 24.5 1t19.5 1q11 0 11 -12t-10 -12q-5 0 -10 -2.5t-8 -5t-8 -7.5l-8 -8l-54.5 -48.5t-35.5 -32.5q-2 -6 -2 -10q0 -2 8 -13q50 -70 94 -124q8 -10 14 -10h10 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -26 1t-32 1q-11 0 -30.5 -1t-26.5 -1q-8 0 -9.5 2t-1.5 10q0 12 8 12h8q14 0 14 6l-17 26q-21 31 -56 74q-2 6 -3 7.5t-2 0t-4 -7.5l-21.5 -25l-31.5 -36t-23 -28q-1 -2 -3 -4l-3 -3t-1.5 -2.5t-0.5 -2.5q0 -5 14 -5h22 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -23 1t-29 1q-12 0 -27 -1t-20 -1q-7 0 -8.5 2t-1.5 10z" />
<glyph horiz-adv-x="378" d="M20 545q0 7 1.5 9.5t9.5 2.5q7 0 27 -1t32 -1q11 0 37.5 1t33.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-15q-21 0 -21 -8q0 -10 25 -80t45 -118q14 -32 15 -32q3 0 14 32q65 186 65 200q0 6 -23 6h-18q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 26 -1t27 -1q10 0 24.5 1 t19.5 1q11 0 11 -12t-10 -12h-11q-8 0 -10 -8l-104 -272q0 -1 -36 -93q-1 -4 -5.5 -16t-5.5 -14.5l-4.5 -11.5t-6 -13l-7.5 -12t-10.5 -15l-12.5 -16q-14 -19 -34 -29q-42 -21 -50 -21q-15 0 -15 17q0 11 15 34q8 11 23 15q3 1 14 5l18 6.5t16.5 7.5t15 10.5t8.5 12.5 q35 82 35 97q0 6 -22 59.5l-59.5 141.5t-43.5 103q-4 9 -6 10.5t-11 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="345" d="M35 259q0 6 8 17q179 261 179 263q0 3 -7 3q-41 0 -121 -4q-8 0 -10.5 -0.5t-5 -2t-3.5 -4t-2 -8.5l-7 -32q-3 -9 -12 -9q-14 0 -14 5q0 1 1.5 12.5t3 27.5t2.5 25q0 4 0.5 6t2 3t3.5 1.5t6 0.5h228q19 0 19 -8q0 -1 -7 -13l-168 -246q-11 -18 -11 -20t15 -2l137 4 q8 0 10 1t3 9l7 45q1 8 2.5 9t7.5 1h5q8 0 8 -5q0 -16 -5 -76q-1 -9 -2.5 -10.5t-10.5 -1.5h-244q-18 0 -18 9z" />
<glyph horiz-adv-x="352" d="M35 -93q0 49 55 78.5t132 42.5q6 1 6 12q0 27 -1.5 41.5t-7.5 32.5t-21 26.5t-39 8.5q-13 0 -24 -4q-16 -6 -20.5 -16.5t-5.5 -35.5q0 -13 -6 -17q-33 -21 -47 -21q-8 0 -8 12q0 46 41.5 75.5t87.5 29.5q60 0 85 -26.5t25 -77.5q0 -23 -2.5 -90t-2.5 -73q0 -24 18 -24 q2 0 16 9.5t15 9.5q2 0 6 -4.5t4 -8.5t-54 -43q-13 -9 -22 -9q-13 0 -21 12.5t-10 24.5l-3 13q-1 0 -3.5 -2t-6.5 -4.5l-7 -4.5q-56 -36 -96 -36q-39 0 -61 18.5t-22 50.5zM98 -69q0 -21 14.5 -37.5t38.5 -16.5q16 0 35 4.5t30.5 10t11.5 7.5v104q0 9 -4 9q-11 0 -50 -12 q-76 -24 -76 -69z" />
<glyph horiz-adv-x="414" d="M10 359q0 19 4 19l47.5 5.5l50 6t22.5 2.5q6 0 6 -12q-3 -150 -3 -216q0 -31 1 -31l6 3q5 3 14 6.5l19.5 7.5t24 7t24.5 3q69 0 113.5 -46t44.5 -113q0 -75 -54.5 -118.5t-130.5 -43.5q-16 0 -40 8.5t-35 8.5q-10 0 -24 -8t-17 -8q-10 0 -10 10q0 1 1.5 29.5t2.5 66.5 t1 61q0 64 -4 208t-10 144q-2 0 -25 -2.5t-24 -2.5q-5 0 -5 5zM135 -97q0 -40 67 -40q54 0 85.5 40.5t31.5 96.5q0 53 -38 93.5t-90 40.5q-12 0 -25.5 -4t-21 -9t-7.5 -7q0 -47 -1 -126t-1 -85z" />
<glyph horiz-adv-x="350" d="M30 -8q0 84 52.5 132t119.5 48q41 0 76.5 -24t35.5 -54q0 -10 -9 -16q-15 -11 -27 -11q-11 0 -15 9q-2 5 -6 17l-6 18t-7 14.5t-10.5 12.5t-15 7t-21.5 3q-48 0 -78 -41.5t-30 -92.5q0 -54 33.5 -93.5t92.5 -39.5q25 0 48 6t36 12t15 6q6 0 6 -7q0 -4 -14.5 -17 t-47.5 -26.5t-70 -13.5q-73 0 -115.5 41t-42.5 110z" />
<glyph horiz-adv-x="424" d="M29 -3q0 68 48.5 114.5t119.5 46.5q14 0 27.5 -2.5t23 -6l17.5 -6.5l13 -5l4 -3q5 0 5 15q0 37 -1.5 89t-3.5 87.5t-3 35.5t-25 -3.5t-28 -3.5q-6 0 -4 13q2 11 7 12l48 7l44 6.5t19 2.5q6 0 7.5 -2.5t1.5 -15.5q0 -5 -1.5 -49.5t-3 -132.5t-1.5 -197q0 -38 2 -96 q1 -24 4.5 -31.5t13.5 -7.5q3 0 27 4q9 2 9 -8t-1.5 -13t-9.5 -4l-98 -13q-5 0 -5 8q0 1 0.5 15.5t0.5 16.5q0 8 -1.5 8.5t-10.5 -4.5q-52 -35 -99 -35q-62 0 -104 38.5t-42 119.5zM95 3q0 -58 31 -94.5t92 -36.5q19 0 44 8t25 18v201q0 10 -24.5 25.5t-52.5 15.5 q-51 0 -83 -41t-32 -96z" />
<glyph horiz-adv-x="366" d="M30 -4q0 74 48 123.5t124 49.5q59 0 92 -37.5t33 -92.5q0 -9 -44 -9q-5 0 -93.5 2t-91.5 2q-4 0 -4 -28q0 -60 36.5 -94.5t86.5 -34.5q18 0 35.5 5.5t29.5 12.5t21.5 14.5t14.5 12.5l5 6q1 0 7 -6t6 -7q0 -4 -17.5 -22t-53.5 -37t-74 -19q-76 0 -118.5 43.5t-42.5 115.5z M98 56q0 -6 10 -6q45 0 125 4q32 1 32 3q0 50 -23 71t-50 21q-37 0 -64.5 -30.5t-29.5 -62.5z" />
<glyph horiz-adv-x="296" d="M45 -139q0 12 10 12h32q3 0 3 49q0 16 -0.5 40t-0.5 26v47v56q0 33 -1 33h-27q-7 0 -9 2t-2 10t1.5 10t7.5 2h22q5 0 6.5 1.5t1.5 8.5q0 19 -1 37.5t-1 40.5q0 70 31.5 114t101.5 44q27 0 49 -15.5t22 -39.5q0 -13 -16 -25.5t-27 -12.5t-12 7q-7 48 -17 58q-7 8 -20 8 q-47 0 -47 -131q0 -13 -2 -81q0 -10 2.5 -12t14.5 -2h96q6 0 6 -5q0 -4 -2.5 -11t-4.5 -7h-95q-9 0 -11.5 -1.5t-2.5 -7.5v-130q0 -113 8 -113h53q10 0 10 -12q-4 -12 -10 -13q-7 0 -41.5 1t-47.5 1q-10 0 -33 -1t-36 -1q-8 0 -9.5 2.5t-1.5 10.5z" />
<glyph horiz-adv-x="399" d="M30 -290q0 36 37.5 59t79.5 31q20 4 20 5t-18 1h-47q-27 0 -34 15q-8 17 -8 39q0 25 16 29l35.5 9.5l39.5 10.5q6 2 12 3q4 0 3.5 0.5t-4.5 1.5t-7 2q-108 29 -108 131q0 52 45.5 86.5t103.5 34.5q27 0 51.5 -11t37.5 -23l13 -11q2 0 12.5 4t26 8.5t26.5 5.5q2 0 5 -9 t3 -17q0 -5 -3 -5q-53 -5 -53 -11q0 -1 3 -8.5t6 -20t3 -27.5q0 -88 -95 -122q-27 -10 -143 -41q-4 -2 -4 -7q0 -6 4 -12.5t7 -7.5q19 -1 57 -2t63.5 -1.5t58 -6t52 -15t33.5 -29t14 -47.5q0 -62 -51.5 -98.5t-134.5 -36.5q-60 0 -109 24.5t-49 68.5zM71 -284 q0 -35 36.5 -55.5t79.5 -20.5q55 0 95.5 21.5t40.5 68.5q0 31 -45 47t-99 16q-36 0 -72 -21t-36 -56zM105 50q0 -51 33 -87t55 -36q27 0 52.5 34t25.5 84q0 47 -21.5 73.5t-58.5 26.5q-35 0 -60.5 -28t-25.5 -67z" />
<glyph horiz-adv-x="439" d="M25 360q0 14 4 15q15 2 47.5 6t54.5 7t24 3q4 0 4 -16q-8 -134 -8 -244q0 -10 1.5 -11t7.5 4q62 36 110 36q33 0 54.5 -12.5t31.5 -38t13.5 -51t3.5 -62.5v-114q0 -7 1.5 -8.5t7.5 -1.5h21q11 0 11 -12t-12 -12q-7 0 -26.5 1t-32.5 1q-10 0 -34.5 -1t-37.5 -1 q-8 0 -9.5 2t-1.5 10q0 12 11 12h31q6 0 6.5 1t1.5 8q2 32 2 138q0 46 -19.5 75t-57.5 29q-37 0 -71 -17q-13 -7 -13 -11l1 -118q0 -71 1 -91q1 -10 2 -12t7 -2h31q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -31.5 1t-38.5 1q-10 0 -34.5 -1t-37.5 -1q-8 0 -9.5 2t-1.5 10 q0 12 9 12h32q6 0 7 2t1 12q1 74 1 174q0 175 -7 282q-1 14 -5 14q-1 0 -24 -3t-25 -3q-3 0 -3 10z" />
<glyph horiz-adv-x="220" d="M25 134q0 3 4 12q2 5 3.5 5.5t9.5 1.5q80 5 97 5q6 0 6 -5v-136q0 -90 3 -135q0 -10 8 -10h30q9 0 9 -12t-9 -12q-7 0 -34 1t-38 1t-40 -1t-36 -1q-6 0 -7.5 2t-1.5 10q0 7 1.5 9.5t9.5 2.5h34q7 0 8 1.5t1 7.5q1 23 1 70q0 110 -3 168q-1 9 -3 11t-8 2q-1 0 -20 -1 t-21 -1q-4 0 -4 4zM67 290q0 22 18 35.5t37 13.5q37 0 37 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="245" d="M5 -352q0 15 12 31.5t21 16.5q10 0 25.5 -2t18.5 -2q31 0 31 26q0 7 -2 44.5t-4 114t-2 179.5q0 38 -2 59q-1 11 -8 11q-3 0 -28.5 -1.5t-29.5 -1.5q-2 0 -2 4q0 7 3 14q11 8 13 8q19 0 45.5 1.5l44 2.5t18.5 1q6 0 6 -19q0 -16 2.5 -109.5t2.5 -153.5q0 -71 -9.5 -116 t-36.5 -79q-11 -13 -48 -30t-55 -17q-16 0 -16 18zM60 311q0 22 17.5 35.5t36.5 13.5q38 0 38 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="406" d="M25 368v8q0 12 9 13q85 8 111 8q7 0 7 -10l-9 -360q0 -6 2 -7.5t11 -1.5h17q9 0 24 17q36 48 61 89q6 7 5.5 10t-12.5 3h-14q-9 0 -9 12t11 12q3 0 20 -1t27 -1q8 0 24 1t22 1q10 0 10 -12t-9 -12h-26q-4 0 -37 -38.5l-49 -58.5l-2 -2q-7 -7 -4 -10q1 0 2 -2q4 -3 6 -5 l127 -139q9 -10 18 -10h8q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-5 0 -25 1t-32 1t-32.5 -1t-25.5 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h10q15 0 5 12l-97 106q-7 10 -9 11.5t-8 1.5h-11q-6 0 -7 -2.5t-1 -9.5v-105q0 -10 1.5 -12t7.5 -2h19q10 0 10 -12q0 -7 -1.5 -9.5 t-9.5 -2.5q-7 0 -25 1t-32 1q-16 0 -41 -1t-27 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h33q6 0 7 2t1 12v154q0 324 -8 324q-2 0 -21 -1.5t-23 -1.5q-8 0 -8 7z" />
<glyph horiz-adv-x="223" d="M25 365q0 2 2 14q1 5 2 5.5t7 1.5q91 8 103 8q6 0 6 -12q1 -126 3 -263.5t2 -215.5q0 -31 7 -31h31q10 0 10 -12t-10 -12q-7 0 -30 1t-36 1q-10 0 -37.5 -1t-40.5 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h41q3 0 3 68q0 309 -10 410q0 3 -1 7q0 6 -1 7.5t-6 1.5q-2 0 -19 -2 t-18 -2q-7 0 -7 3z" />
<glyph horiz-adv-x="620" d="M25 129q0 9 3 16q2 5 3 5.5t10 1.5q70 4 84 4q10 0 11.5 -1t1.5 -8v-26q0 -12 1 -13q1 0 7 5q64 49 116 49q18 0 31.5 -4.5t21 -11t12 -13.5t6.5 -11l2 -5q2 0 11 6q21 14 51 25.5t52 11.5q57 0 80 -30t23 -86q0 -37 -1 -93t-1 -71q0 -8 8 -8h25q12 0 12 -12t-12 -12 q-7 0 -29 1t-35 1q-10 0 -34 -1t-37 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h32q8 0 8 150q0 100 -72 100q-18 0 -37.5 -5.5t-30 -11.5t-10.5 -7t1.5 -7t3 -19.5t1.5 -34.5v-133q0 -32 2 -32h27q11 0 11 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -27.5 1t-33.5 1q-10 0 -29 -1t-32 -1 q-8 0 -10.5 2t-2.5 10q0 12 10 12h31q6 0 6 76v32t-0.5 29t-0.5 13q0 33 -2.5 51t-16 33.5t-39.5 15.5q-45 0 -80 -24q-8 -6 -8 -14v-178q0 -24 2 -29t13 -5h17q11 0 11 -12t-12 -12q-7 0 -29.5 1t-33.5 1t-38 -1t-32 -1q-10 0 -10 12t9 12h31q7 0 10 25q2 16 2 84v86 q0 62 -4 62q-1 0 -22.5 -1.5t-23.5 -1.5q-4 0 -4 3z" />
<glyph horiz-adv-x="435" d="M25 129q0 6 4 14q2 5 3 5.5t10 1.5q4 0 40 2.5t49 3.5q10 1 10.5 0t0.5 -9v-37q0 -6 10 3l2 2l15 10.5t19.5 12.5l19.5 10t25 8.5t27 2.5q66 0 88 -36.5t22 -105.5q0 -26 -2.5 -79.5t-2.5 -55.5q0 -7 1.5 -8.5t7.5 -1.5h24q8 0 10 -2t2 -10q0 -12 -10 -12q-7 0 -28.5 1 t-34.5 1q-10 0 -34 -1t-37 -1q-9 0 -10.5 2t-1.5 10t2 10t8 2h29q6 0 7 1t2 8q4 38 4 138q0 102 -77 102q-25 0 -71 -23q-14 -6 -14 -18q0 -32 -0.5 -96.5t-0.5 -96.5q0 -7 0.5 -9.5t2.5 -4t7 -1.5h29q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -30.5 1t-36.5 1 q-10 0 -35.5 -1t-38.5 -1q-8 0 -9 2t-1 10q0 12 9 12h31q6 0 6.5 2t1.5 12q5 78 5 153q0 55 -2 79q-1 10 -2 10.5t-8 0.5q-1 0 -21.5 -2t-22.5 -2t-2 4z" />
<glyph horiz-adv-x="384" d="M30 -3q0 73 48 122.5t124 49.5q67 0 109.5 -46.5t42.5 -114.5q0 -76 -44 -123.5t-121 -47.5q-67 0 -113 47t-46 113zM94 -14q0 -49 25.5 -87.5t69.5 -38.5q99 0 99 154q0 52 -24.5 92t-71.5 40q-98 0 -98 -160z" />
<glyph horiz-adv-x="432" d="M25 130q0 4 2.5 12t4.5 8q25 1 52.5 2t43 2t16.5 1q4 0 6 -0.5t3 -3t1 -8.5v-21q0 -9 1 -9t16 13q41 32 89 32q69 0 105.5 -42.5t36.5 -109.5q0 -65 -48 -114.5t-125 -49.5q-23 0 -55 10q-17 6 -18 4q-1 -1 -1 -4l2 -150q2 -53 5 -53h56q10 0 10 -12q-4 -12 -10 -13 q-7 0 -41.5 1t-47.5 1q-10 0 -39 -1t-42 -1q-8 0 -9.5 2.5t-1.5 10.5q0 12 10 12h45q3 0 3 127v112q0 151 -7 228q-1 8 -2.5 9.5t-10.5 1.5q-3 0 -20.5 -1t-19.5 -1q-10 0 -10 5zM155 -108q0 -13 24 -23t45 -10q52 0 82.5 43.5t30.5 96.5q0 57 -30 92t-75 35q-31 0 -51 -10 q-26 -13 -26 -26v-198z" />
<glyph horiz-adv-x="413" d="M30 -5q0 70 49.5 115.5t124.5 45.5q27 0 60 -11.5t38 -11.5q8 0 17 14.5t15 14.5q13 0 13 -10q-4 -95 -4 -238v-132q0 -130 2 -130h33q10 0 10 -13q0 -8 -1.5 -10.5t-9.5 -2.5h-23q-20 0 -40.5 -1t-35.5 -2.5t-27 -3t-19 -2.5t-8 -1q-8 0 -10 2.5t-2 8.5q0 14 10 15 q8 1 17.5 2l14 1.5t9.5 1t6.5 2t4 3t2.5 5t0.5 7t0.5 10.5l2 177q0 7 -3 7q-4 0 -13 -3q-50 -15 -90 -15q-56 0 -99.5 38.5t-43.5 116.5zM94 3q0 -52 31.5 -94t83.5 -42q71 0 71 17v198q0 24 -22 37t-61 13q-50 0 -76.5 -38.5t-26.5 -90.5z" />
<glyph horiz-adv-x="291" d="M30 130q0 6 2 11t3 5.5t10 1.5q36 3 86 3q10 0 10.5 -0.5t0.5 -7.5q0 -8 0.5 -26.5t0.5 -26.5v-15l8 21q13 33 34 52.5t40 19.5q16 0 31 -14t15 -23q0 -8 -10.5 -21.5t-19.5 -13.5t-24.5 12t-23.5 12q-45 0 -45 -159q0 -88 10 -88h49q11 0 11 -12q0 -13 -11 -13 q-7 0 -41 1t-47 1q-10 0 -34 -1t-37 -1q-8 0 -9 2t-1 11q0 12 9 12h34q8 0 8 107q0 148 -6 148q-1 0 -25 -1t-26 -1t-2 4z" />
<glyph horiz-adv-x="276" d="M40 -110q0 9 8 20t13 11q2 0 3.5 -2.5t4 -8t6.5 -10.5q29 -40 66 -40q20 0 33.5 13.5t13.5 38.5q0 26 -16.5 41.5t-46.5 30.5q-2 1 -13 6t-13.5 6.5l-12 7t-12.5 8l-10 8.5t-9.5 11l-6 12.5t-5 15.5t-1.5 17q0 39 32.5 65t74.5 26q38 0 58 -18.5t20 -36.5q0 -6 -10.5 -11 t-17.5 -5q-6 0 -10.5 13t-14 26t-29.5 13t-35.5 -13.5t-15.5 -42.5q0 -16 10 -29.5t19 -19t30 -16.5q57 -32 72 -50q16 -19 16 -43q0 -43 -31 -69t-75 -26q-35 0 -65 16t-30 35z" />
<glyph horiz-adv-x="258" d="M40 122q0 3 3 6l78 105q5 5 8 5q9 0 9 -8q0 -1 -1.5 -16.5t-3 -33.5t-1.5 -24q0 -8 9 -8h76q9 0 10 -2t-2 -14q-3 -15 -11 -15h-79q-3 0 -3 -36v-149q0 -15 1.5 -23.5t11 -16.5t26.5 -8q14 0 28.5 3t24 6t11.5 3q3 0 3 -13q0 -2 -19 -12t-45 -19.5t-41 -9.5 q-33 0 -46.5 16.5t-13.5 38.5q2 114 2 171q0 48 -10 48h-20q-5 0 -5 6z" />
<glyph horiz-adv-x="440" d="M25 137q0 3 3 10t13 8q76 4 93 4q6 0 6 -5v-217q0 -54 89 -54q73 0 73 13v93q0 147 -6 147q-1 0 -20.5 -1t-21.5 -1q-3 0 -3 3q2 16 5 17q2 2 6 2q64 4 96 4q6 0 6 -4q-1 -191 -1 -240q0 -30 2.5 -38.5t12.5 -8.5q1 0 16.5 2t16.5 2q4 0 4 -9t-1.5 -10.5t-10.5 -3.5 q-11 -2 -33 -5t-37 -5.5t-18 -2.5q-8 0 -9 11q-3 33 -4 33l-22 -11q-21 -10 -53.5 -20t-59.5 -10q-54 0 -72 28.5t-18 77.5v126v17q0 44 -9 44q-1 0 -19.5 -0.5t-20.5 -0.5q-3 0 -3 5z" />
<glyph horiz-adv-x="378" d="M20 145q0 12 10 12q6 0 24 -1t30 -1q11 0 36.5 1t31.5 1q7 0 8.5 -2t1.5 -10q0 -12 -9 -12h-24q-15 0 -15 -6q0 -2 14 -41.5l33 -90.5l29 -76q7 -15 9 -15t7 13q76 180 76 203q0 13 -8 13h-21q-10 0 -10 12t12 12q2 0 20.5 -1t28.5 -1t24 1t20 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-13q-6 0 -11 -8q-9 -15 -47 -105.5t-57 -129.5q-7 -14 -19.5 -28.5t-21.5 -27.5q-5 -6 -9 -6q-5 0 -9 8t-9 25.5t-6 19.5q-28 84 -90 240q-4 9 -6.5 10.5t-11.5 1.5h-8q-10 0 -10 12z" />
<glyph horiz-adv-x="578" d="M20 145q0 12 10 12q7 0 24.5 -1t30.5 -1q11 0 37 1t33 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12h-18q-13 0 -13 -6q0 -2 12.5 -41.5l30 -91t27.5 -75.5q4 -13 6 -13t8 18q49 105 67 147q6 21 6 29q0 5 -4 17q-6 16 -28 16h-9q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q9 0 27 -1 t34 -1q11 0 30.5 1t29.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-17q-10 0 -10 -6q0 -2 11.5 -41.5l27.5 -91t26 -75.5q9 -19 10 -19q2 0 9 18q14 33 40.5 112.5t26.5 93.5q0 9 -10 9h-24q-11 0 -11 12t12 12q2 0 20.5 -1t28.5 -1q11 0 26.5 1t16.5 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-5q-7 0 -11 -8q-7 -14 -41.5 -104t-54.5 -131q-7 -14 -17.5 -27.5t-19.5 -28.5q-2 -6 -9 -6q-9 0 -25 53q-23 82 -56 181q-4 14 -6 14q-4 0 -8 -14q-6 -13 -22.5 -52l-29 -67t-24.5 -49q-7 -14 -19.5 -28t-22.5 -32q-4 -6 -10 -6q-11 0 -27 57q-3 11 -17 50 l-34 94l-33 92q-3 9 -5.5 10.5t-11.5 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="392" d="M15 -140q0 12 9 12q11 0 17 3.5t21 19.5l98 97q6 7 5.5 8t-5.5 7l-86 114q-7 9 -9.5 10.5t-11.5 1.5h-13q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 30 -1t36 -1q11 0 26.5 1t22.5 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12q-14 0 -14 -5q0 -2 8 -14l55 -73q4 -9 5 -8l2 3q2 5 4 8 q58 61 69 75q1 2 2 3.5t2 2.5t1 2q0 6 -21 6h-10q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5t22 -1t23 -1q10 0 24.5 1t19.5 1q11 0 11 -12t-10 -12q-5 0 -10 -2.5t-8 -5t-8 -7.5l-8 -8l-54.5 -48.5t-35.5 -32.5q-2 -6 -2 -10q0 -2 8 -13q50 -70 94 -124q8 -10 14 -10h10 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -26 1t-32 1q-11 0 -30.5 -1t-26.5 -1q-8 0 -9.5 2t-1.5 10q0 12 8 12h8q14 0 14 6l-17 26q-21 31 -56 74q-2 6 -3 7.5t-2 0t-4 -7.5l-21.5 -25l-31.5 -36t-23 -28q-1 -2 -3 -4l-3 -3t-1.5 -2.5t-0.5 -2.5q0 -5 14 -5h22 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -23 1t-29 1q-12 0 -27 -1t-20 -1q-7 0 -8.5 2t-1.5 10z" />
<glyph horiz-adv-x="378" d="M20 145q0 7 1.5 9.5t9.5 2.5q7 0 27 -1t32 -1q11 0 37.5 1t33.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-15q-21 0 -21 -8q0 -10 25 -80t45 -118q14 -32 15 -32q3 0 14 32q65 186 65 200q0 6 -23 6h-18q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 26 -1t27 -1q10 0 24.5 1 t19.5 1q11 0 11 -12t-10 -12h-11q-8 0 -10 -8l-104 -272q0 -1 -36 -93q-1 -4 -5.5 -16t-5.5 -14.5l-4.5 -11.5t-6 -13l-7.5 -12t-10.5 -15l-12.5 -16q-14 -19 -34 -29q-42 -21 -50 -21q-15 0 -15 17q0 11 15 34q8 11 23 15q3 1 14 5l18 6.5t16.5 7.5t15 10.5t8.5 12.5 q35 82 35 97q0 6 -22 59.5l-59.5 141.5t-43.5 103q-4 9 -6 10.5t-11 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="345" d="M35 -141q0 6 8 17q179 261 179 263q0 3 -7 3q-41 0 -121 -4q-8 0 -10.5 -0.5t-5 -2t-3.5 -4t-2 -8.5l-7 -32q-3 -9 -12 -9q-14 0 -14 5q0 1 1.5 12.5t3 27.5t2.5 25q0 4 0.5 6t2 3t3.5 1.5t6 0.5h228q19 0 19 -8q0 -1 -7 -13l-168 -246q-11 -18 -11 -20t15 -2l137 4 q8 0 10 1t3 9l7 45q1 8 2.5 9t7.5 1h5q8 0 8 -5q0 -16 -5 -76q-1 -9 -2.5 -10.5t-10.5 -1.5h-244q-18 0 -18 9z" />
<glyph horiz-adv-x="352" d="M35 407q0 49 55 78.5t132 42.5q6 1 6 12q0 27 -1.5 41.5t-7.5 32.5t-21 26.5t-39 8.5q-13 0 -24 -4q-16 -6 -20.5 -16.5t-5.5 -35.5q0 -13 -6 -17q-33 -21 -47 -21q-8 0 -8 12q0 46 41.5 75.5t87.5 29.5q60 0 85 -26.5t25 -77.5q0 -23 -2.5 -90t-2.5 -73q0 -24 18 -24 q2 0 16 9.5t15 9.5q2 0 6 -4.5t4 -8.5t-54 -43q-13 -9 -22 -9q-13 0 -21 12.5t-10 24.5l-3 13q-1 0 -3.5 -2t-6.5 -4.5l-7 -4.5q-56 -36 -96 -36q-39 0 -61 18.5t-22 50.5zM98 431q0 -21 14.5 -37.5t38.5 -16.5q16 0 35 4.5t30.5 10t11.5 7.5v104q0 9 -4 9q-11 0 -50 -12 q-76 -24 -76 -69z" />
<glyph horiz-adv-x="414" d="M10 859q0 19 4 19l47.5 5.5l50 6t22.5 2.5q6 0 6 -12q-3 -150 -3 -216q0 -31 1 -31l6 3q5 3 14 6.5l19.5 7.5t24 7t24.5 3q69 0 113.5 -46t44.5 -113q0 -75 -54.5 -118.5t-130.5 -43.5q-16 0 -40 8.5t-35 8.5q-10 0 -24 -8t-17 -8q-10 0 -10 10q0 1 1.5 29.5t2.5 66.5 t1 61q0 64 -4 208t-10 144q-2 0 -25 -2.5t-24 -2.5q-5 0 -5 5zM135 403q0 -40 67 -40q54 0 85.5 40.5t31.5 96.5q0 53 -38 93.5t-90 40.5q-12 0 -25.5 -4t-21 -9t-7.5 -7q0 -47 -1 -126t-1 -85z" />
<glyph horiz-adv-x="350" d="M30 492q0 84 52.5 132t119.5 48q41 0 76.5 -24t35.5 -54q0 -10 -9 -16q-15 -11 -27 -11q-11 0 -15 9q-2 5 -6 17l-6 18t-7 14.5t-10.5 12.5t-15 7t-21.5 3q-48 0 -78 -41.5t-30 -92.5q0 -54 33.5 -93.5t92.5 -39.5q25 0 48 6t36 12t15 6q6 0 6 -7q0 -4 -14.5 -17 t-47.5 -26.5t-70 -13.5q-73 0 -115.5 41t-42.5 110z" />
<glyph horiz-adv-x="424" d="M29 497q0 68 48.5 114.5t119.5 46.5q14 0 27.5 -2.5t23 -6l17.5 -6.5l13 -5l4 -3q5 0 5 15q0 37 -1.5 89t-3.5 87.5t-3 35.5t-25 -3.5t-28 -3.5q-6 0 -4 13q2 11 7 12l48 7l44 6.5t19 2.5q6 0 7.5 -2.5t1.5 -15.5q0 -5 -1.5 -49.5t-3 -132.5t-1.5 -197q0 -38 2 -96 q1 -24 4.5 -31.5t13.5 -7.5q3 0 27 4q9 2 9 -8t-1.5 -13t-9.5 -4l-98 -13q-5 0 -5 8q0 1 0.5 15.5t0.5 16.5q0 8 -1.5 8.5t-10.5 -4.5q-52 -35 -99 -35q-62 0 -104 38.5t-42 119.5zM95 503q0 -58 31 -94.5t92 -36.5q19 0 44 8t25 18v201q0 10 -24.5 25.5t-52.5 15.5 q-51 0 -83 -41t-32 -96z" />
<glyph horiz-adv-x="366" d="M30 496q0 74 48 123.5t124 49.5q59 0 92 -37.5t33 -92.5q0 -9 -44 -9q-5 0 -93.5 2t-91.5 2q-4 0 -4 -28q0 -60 36.5 -94.5t86.5 -34.5q18 0 35.5 5.5t29.5 12.5t21.5 14.5t14.5 12.5l5 6q1 0 7 -6t6 -7q0 -4 -17.5 -22t-53.5 -37t-74 -19q-76 0 -118.5 43.5t-42.5 115.5 zM98 556q0 -6 10 -6q45 0 125 4q32 1 32 3q0 50 -23 71t-50 21q-37 0 -64.5 -30.5t-29.5 -62.5z" />
<glyph horiz-adv-x="296" d="M45 361q0 12 10 12h32q3 0 3 49q0 16 -0.5 40t-0.5 26v47v56q0 33 -1 33h-27q-7 0 -9 2t-2 10t1.5 10t7.5 2h22q5 0 6.5 1.5t1.5 8.5q0 19 -1 37.5t-1 40.5q0 70 31.5 114t101.5 44q27 0 49 -15.5t22 -39.5q0 -13 -16 -25.5t-27 -12.5t-12 7q-7 48 -17 58q-7 8 -20 8 q-47 0 -47 -131q0 -13 -2 -81q0 -10 2.5 -12t14.5 -2h96q6 0 6 -5q0 -4 -2.5 -11t-4.5 -7h-95q-9 0 -11.5 -1.5t-2.5 -7.5v-130q0 -113 8 -113h53q10 0 10 -12q-4 -12 -10 -13q-7 0 -41.5 1t-47.5 1q-10 0 -33 -1t-36 -1q-8 0 -9.5 2.5t-1.5 10.5z" />
<glyph horiz-adv-x="399" d="M30 210q0 36 37.5 59t79.5 31q20 4 20 5t-18 1h-47q-27 0 -34 15q-8 17 -8 39q0 25 16 29l35.5 9.5l39.5 10.5q6 2 12 3q4 0 3.5 0.5t-4.5 1.5t-7 2q-108 29 -108 131q0 52 45.5 86.5t103.5 34.5q27 0 51.5 -11t37.5 -23l13 -11q2 0 12.5 4t26 8.5t26.5 5.5q2 0 5 -9 t3 -17q0 -5 -3 -5q-53 -5 -53 -11q0 -1 3 -8.5t6 -20t3 -27.5q0 -88 -95 -122q-27 -10 -143 -41q-4 -2 -4 -7q0 -6 4 -12.5t7 -7.5q19 -1 57 -2t63.5 -1.5t58 -6t52 -15t33.5 -29t14 -47.5q0 -62 -51.5 -98.5t-134.5 -36.5q-60 0 -109 24.5t-49 68.5zM71 216 q0 -35 36.5 -55.5t79.5 -20.5q55 0 95.5 21.5t40.5 68.5q0 31 -45 47t-99 16q-36 0 -72 -21t-36 -56zM105 550q0 -51 33 -87t55 -36q27 0 52.5 34t25.5 84q0 47 -21.5 73.5t-58.5 26.5q-35 0 -60.5 -28t-25.5 -67z" />
<glyph horiz-adv-x="439" d="M25 860q0 14 4 15q15 2 47.5 6t54.5 7t24 3q4 0 4 -16q-8 -134 -8 -244q0 -10 1.5 -11t7.5 4q62 36 110 36q33 0 54.5 -12.5t31.5 -38t13.5 -51t3.5 -62.5v-114q0 -7 1.5 -8.5t7.5 -1.5h21q11 0 11 -12t-12 -12q-7 0 -26.5 1t-32.5 1q-10 0 -34.5 -1t-37.5 -1 q-8 0 -9.5 2t-1.5 10q0 12 11 12h31q6 0 6.5 1t1.5 8q2 32 2 138q0 46 -19.5 75t-57.5 29q-37 0 -71 -17q-13 -7 -13 -11l1 -118q0 -71 1 -91q1 -10 2 -12t7 -2h31q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -31.5 1t-38.5 1q-10 0 -34.5 -1t-37.5 -1q-8 0 -9.5 2t-1.5 10 q0 12 9 12h32q6 0 7 2t1 12q1 74 1 174q0 175 -7 282q-1 14 -5 14q-1 0 -24 -3t-25 -3q-3 0 -3 10z" />
<glyph horiz-adv-x="220" d="M25 634q0 3 4 12q2 5 3.5 5.5t9.5 1.5q80 5 97 5q6 0 6 -5v-136q0 -90 3 -135q0 -10 8 -10h30q9 0 9 -12t-9 -12q-7 0 -34 1t-38 1t-40 -1t-36 -1q-6 0 -7.5 2t-1.5 10q0 7 1.5 9.5t9.5 2.5h34q7 0 8 1.5t1 7.5q1 23 1 70q0 110 -3 168q-1 9 -3 11t-8 2q-1 0 -20 -1 t-21 -1q-4 0 -4 4zM67 790q0 22 18 35.5t37 13.5q37 0 37 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="245" d="M5 148q0 15 12 31.5t21 16.5q10 0 25.5 -2t18.5 -2q31 0 31 26q0 7 -2 44.5t-4 114t-2 179.5q0 38 -2 59q-1 11 -8 11q-3 0 -28.5 -1.5t-29.5 -1.5q-2 0 -2 4q0 7 3 14q11 8 13 8q19 0 45.5 1.5l44 2.5t18.5 1q6 0 6 -19q0 -16 2.5 -109.5t2.5 -153.5q0 -71 -9.5 -116 t-36.5 -79q-11 -13 -48 -30t-55 -17q-16 0 -16 18zM60 811q0 22 17.5 35.5t36.5 13.5q38 0 38 -36q0 -21 -17.5 -35.5t-37.5 -14.5q-15 0 -26 9.5t-11 27.5z" />
<glyph horiz-adv-x="406" d="M25 868v8q0 12 9 13q85 8 111 8q7 0 7 -10l-9 -360q0 -6 2 -7.5t11 -1.5h17q9 0 24 17q36 48 61 89q6 7 5.5 10t-12.5 3h-14q-9 0 -9 12t11 12q3 0 20 -1t27 -1q8 0 24 1t22 1q10 0 10 -12t-9 -12h-26q-4 0 -37 -38.5l-49 -58.5l-2 -2q-7 -7 -4 -10q1 0 2 -2q4 -3 6 -5 l127 -139q9 -10 18 -10h8q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-5 0 -25 1t-32 1t-32.5 -1t-25.5 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h10q15 0 5 12l-97 106q-7 10 -9 11.5t-8 1.5h-11q-6 0 -7 -2.5t-1 -9.5v-105q0 -10 1.5 -12t7.5 -2h19q10 0 10 -12q0 -7 -1.5 -9.5 t-9.5 -2.5q-7 0 -25 1t-32 1q-16 0 -41 -1t-27 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h33q6 0 7 2t1 12v154q0 324 -8 324q-2 0 -21 -1.5t-23 -1.5q-8 0 -8 7z" />
<glyph horiz-adv-x="223" d="M25 865q0 2 2 14q1 5 2 5.5t7 1.5q91 8 103 8q6 0 6 -12q1 -126 3 -263.5t2 -215.5q0 -31 7 -31h31q10 0 10 -12t-10 -12q-7 0 -30 1t-36 1q-10 0 -37.5 -1t-40.5 -1q-8 0 -9.5 2t-1.5 10q0 12 10 12h41q3 0 3 68q0 309 -10 410q0 3 -1 7q0 6 -1 7.5t-6 1.5q-2 0 -19 -2 t-18 -2q-7 0 -7 3z" />
<glyph horiz-adv-x="620" d="M25 629q0 9 3 16q2 5 3 5.5t10 1.5q70 4 84 4q10 0 11.5 -1t1.5 -8v-26q0 -12 1 -13q1 0 7 5q64 49 116 49q18 0 31.5 -4.5t21 -11t12 -13.5t6.5 -11l2 -5q2 0 11 6q21 14 51 25.5t52 11.5q57 0 80 -30t23 -86q0 -37 -1 -93t-1 -71q0 -8 8 -8h25q12 0 12 -12t-12 -12 q-7 0 -29 1t-35 1q-10 0 -34 -1t-37 -1q-8 0 -9.5 2t-1.5 10q0 12 12 12h32q8 0 8 150q0 100 -72 100q-18 0 -37.5 -5.5t-30 -11.5t-10.5 -7t1.5 -7t3 -19.5t1.5 -34.5v-133q0 -32 2 -32h27q11 0 11 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -27.5 1t-33.5 1q-10 0 -29 -1t-32 -1 q-8 0 -10.5 2t-2.5 10q0 12 10 12h31q6 0 6 76v32t-0.5 29t-0.5 13q0 33 -2.5 51t-16 33.5t-39.5 15.5q-45 0 -80 -24q-8 -6 -8 -14v-178q0 -24 2 -29t13 -5h17q11 0 11 -12t-12 -12q-7 0 -29.5 1t-33.5 1t-38 -1t-32 -1q-10 0 -10 12t9 12h31q7 0 10 25q2 16 2 84v86 q0 62 -4 62q-1 0 -22.5 -1.5t-23.5 -1.5q-4 0 -4 3z" />
<glyph horiz-adv-x="435" d="M25 629q0 6 4 14q2 5 3 5.5t10 1.5q4 0 40 2.5t49 3.5q10 1 10.5 0t0.5 -9v-37q0 -6 10 3l2 2l15 10.5t19.5 12.5l19.5 10t25 8.5t27 2.5q66 0 88 -36.5t22 -105.5q0 -26 -2.5 -79.5t-2.5 -55.5q0 -7 1.5 -8.5t7.5 -1.5h24q8 0 10 -2t2 -10q0 -12 -10 -12q-7 0 -28.5 1 t-34.5 1q-10 0 -34 -1t-37 -1q-9 0 -10.5 2t-1.5 10t2 10t8 2h29q6 0 7 1t2 8q4 38 4 138q0 102 -77 102q-25 0 -71 -23q-14 -6 -14 -18q0 -32 -0.5 -96.5t-0.5 -96.5q0 -7 0.5 -9.5t2.5 -4t7 -1.5h29q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -30.5 1t-36.5 1 q-10 0 -35.5 -1t-38.5 -1q-8 0 -9 2t-1 10q0 12 9 12h31q6 0 6.5 2t1.5 12q5 78 5 153q0 55 -2 79q-1 10 -2 10.5t-8 0.5q-1 0 -21.5 -2t-22.5 -2t-2 4z" />
<glyph horiz-adv-x="384" d="M30 497q0 73 48 122.5t124 49.5q67 0 109.5 -46.5t42.5 -114.5q0 -76 -44 -123.5t-121 -47.5q-67 0 -113 47t-46 113zM94 486q0 -49 25.5 -87.5t69.5 -38.5q99 0 99 154q0 52 -24.5 92t-71.5 40q-98 0 -98 -160z" />
<glyph horiz-adv-x="432" d="M25 630q0 4 2.5 12t4.5 8q25 1 52.5 2t43 2t16.5 1q4 0 6 -0.5t3 -3t1 -8.5v-21q0 -9 1 -9t16 13q41 32 89 32q69 0 105.5 -42.5t36.5 -109.5q0 -65 -48 -114.5t-125 -49.5q-23 0 -55 10q-17 6 -18 4q-1 -1 -1 -4l2 -150q2 -53 5 -53h56q10 0 10 -12q-4 -12 -10 -13 q-7 0 -41.5 1t-47.5 1q-10 0 -39 -1t-42 -1q-8 0 -9.5 2.5t-1.5 10.5q0 12 10 12h45q3 0 3 127v112q0 151 -7 228q-1 8 -2.5 9.5t-10.5 1.5q-3 0 -20.5 -1t-19.5 -1q-10 0 -10 5zM155 392q0 -13 24 -23t45 -10q52 0 82.5 43.5t30.5 96.5q0 57 -30 92t-75 35q-31 0 -51 -10 q-26 -13 -26 -26v-198z" />
<glyph horiz-adv-x="413" d="M30 495q0 70 49.5 115.5t124.5 45.5q27 0 60 -11.5t38 -11.5q8 0 17 14.5t15 14.5q13 0 13 -10q-4 -95 -4 -238v-132q0 -130 2 -130h33q10 0 10 -13q0 -8 -1.5 -10.5t-9.5 -2.5h-23q-20 0 -40.5 -1t-35.5 -2.5t-27 -3t-19 -2.5t-8 -1q-8 0 -10 2.5t-2 8.5q0 14 10 15 q8 1 17.5 2l14 1.5t9.5 1t6.5 2t4 3t2.5 5t0.5 7t0.5 10.5l2 177q0 7 -3 7q-4 0 -13 -3q-50 -15 -90 -15q-56 0 -99.5 38.5t-43.5 116.5zM94 503q0 -52 31.5 -94t83.5 -42q71 0 71 17v198q0 24 -22 37t-61 13q-50 0 -76.5 -38.5t-26.5 -90.5z" />
<glyph horiz-adv-x="291" d="M30 630q0 6 2 11t3 5.5t10 1.5q36 3 86 3q10 0 10.5 -0.5t0.5 -7.5q0 -8 0.5 -26.5t0.5 -26.5v-15l8 21q13 33 34 52.5t40 19.5q16 0 31 -14t15 -23q0 -8 -10.5 -21.5t-19.5 -13.5t-24.5 12t-23.5 12q-45 0 -45 -159q0 -88 10 -88h49q11 0 11 -12q0 -13 -11 -13 q-7 0 -41 1t-47 1q-10 0 -34 -1t-37 -1q-8 0 -9 2t-1 11q0 12 9 12h34q8 0 8 107q0 148 -6 148q-1 0 -25 -1t-26 -1t-2 4z" />
<glyph horiz-adv-x="276" d="M40 390q0 9 8 20t13 11q2 0 3.5 -2.5t4 -8t6.5 -10.5q29 -40 66 -40q20 0 33.5 13.5t13.5 38.5q0 26 -16.5 41.5t-46.5 30.5q-2 1 -13 6t-13.5 6.5l-12 7t-12.5 8l-10 8.5t-9.5 11l-6 12.5t-5 15.5t-1.5 17q0 39 32.5 65t74.5 26q38 0 58 -18.5t20 -36.5q0 -6 -10.5 -11 t-17.5 -5q-6 0 -10.5 13t-14 26t-29.5 13t-35.5 -13.5t-15.5 -42.5q0 -16 10 -29.5t19 -19t30 -16.5q57 -32 72 -50q16 -19 16 -43q0 -43 -31 -69t-75 -26q-35 0 -65 16t-30 35z" />
<glyph horiz-adv-x="258" d="M40 622q0 3 3 6l78 105q5 5 8 5q9 0 9 -8q0 -1 -1.5 -16.5t-3 -33.5t-1.5 -24q0 -8 9 -8h76q9 0 10 -2t-2 -14q-3 -15 -11 -15h-79q-3 0 -3 -36v-149q0 -15 1.5 -23.5t11 -16.5t26.5 -8q14 0 28.5 3t24 6t11.5 3q3 0 3 -13q0 -2 -19 -12t-45 -19.5t-41 -9.5 q-33 0 -46.5 16.5t-13.5 38.5q2 114 2 171q0 48 -10 48h-20q-5 0 -5 6z" />
<glyph horiz-adv-x="440" d="M25 637q0 3 3 10t13 8q76 4 93 4q6 0 6 -5v-217q0 -54 89 -54q73 0 73 13v93q0 147 -6 147q-1 0 -20.5 -1t-21.5 -1q-3 0 -3 3q2 16 5 17q2 2 6 2q64 4 96 4q6 0 6 -4q-1 -191 -1 -240q0 -30 2.5 -38.5t12.5 -8.5q1 0 16.5 2t16.5 2q4 0 4 -9t-1.5 -10.5t-10.5 -3.5 q-11 -2 -33 -5t-37 -5.5t-18 -2.5q-8 0 -9 11q-3 33 -4 33l-22 -11q-21 -10 -53.5 -20t-59.5 -10q-54 0 -72 28.5t-18 77.5v126v17q0 44 -9 44q-1 0 -19.5 -0.5t-20.5 -0.5q-3 0 -3 5z" />
<glyph horiz-adv-x="378" d="M20 645q0 12 10 12q6 0 24 -1t30 -1q11 0 36.5 1t31.5 1q7 0 8.5 -2t1.5 -10q0 -12 -9 -12h-24q-15 0 -15 -6q0 -2 14 -41.5l33 -90.5l29 -76q7 -15 9 -15t7 13q76 180 76 203q0 13 -8 13h-21q-10 0 -10 12t12 12q2 0 20.5 -1t28.5 -1t24 1t20 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-13q-6 0 -11 -8q-9 -15 -47 -105.5t-57 -129.5q-7 -14 -19.5 -28.5t-21.5 -27.5q-5 -6 -9 -6q-5 0 -9 8t-9 25.5t-6 19.5q-28 84 -90 240q-4 9 -6.5 10.5t-11.5 1.5h-8q-10 0 -10 12z" />
<glyph horiz-adv-x="578" d="M20 645q0 12 10 12q7 0 24.5 -1t30.5 -1q11 0 37 1t33 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12h-18q-13 0 -13 -6q0 -2 12.5 -41.5l30 -91t27.5 -75.5q4 -13 6 -13t8 18q49 105 67 147q6 21 6 29q0 5 -4 17q-6 16 -28 16h-9q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q9 0 27 -1 t34 -1q11 0 30.5 1t29.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-17q-10 0 -10 -6q0 -2 11.5 -41.5l27.5 -91t26 -75.5q9 -19 10 -19q2 0 9 18q14 33 40.5 112.5t26.5 93.5q0 9 -10 9h-24q-11 0 -11 12t12 12q2 0 20.5 -1t28.5 -1q11 0 26.5 1t16.5 1q7 0 8.5 -2t1.5 -10 q0 -12 -10 -12h-5q-7 0 -11 -8q-7 -14 -41.5 -104t-54.5 -131q-7 -14 -17.5 -27.5t-19.5 -28.5q-2 -6 -9 -6q-9 0 -25 53q-23 82 -56 181q-4 14 -6 14q-4 0 -8 -14q-6 -13 -22.5 -52l-29 -67t-24.5 -49q-7 -14 -19.5 -28t-22.5 -32q-4 -6 -10 -6q-11 0 -27 57q-3 11 -17 50 l-34 94l-33 92q-3 9 -5.5 10.5t-11.5 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="392" d="M15 360q0 12 9 12q11 0 17 3.5t21 19.5l98 97q6 7 5.5 8t-5.5 7l-86 114q-7 9 -9.5 10.5t-11.5 1.5h-13q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 30 -1t36 -1q11 0 26.5 1t22.5 1q8 0 9.5 -2t1.5 -10q0 -12 -9 -12q-14 0 -14 -5q0 -2 8 -14l55 -73q4 -9 5 -8l2 3q2 5 4 8 q58 61 69 75q1 2 2 3.5t2 2.5t1 2q0 6 -21 6h-10q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5t22 -1t23 -1q10 0 24.5 1t19.5 1q11 0 11 -12t-10 -12q-5 0 -10 -2.5t-8 -5t-8 -7.5l-8 -8l-54.5 -48.5t-35.5 -32.5q-2 -6 -2 -10q0 -2 8 -13q50 -70 94 -124q8 -10 14 -10h10 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -26 1t-32 1q-11 0 -30.5 -1t-26.5 -1q-8 0 -9.5 2t-1.5 10q0 12 8 12h8q14 0 14 6l-17 26q-21 31 -56 74q-2 6 -3 7.5t-2 0t-4 -7.5l-21.5 -25l-31.5 -36t-23 -28q-1 -2 -3 -4l-3 -3t-1.5 -2.5t-0.5 -2.5q0 -5 14 -5h22 q10 0 10 -12q0 -7 -1.5 -9.5t-9.5 -2.5q-7 0 -23 1t-29 1q-12 0 -27 -1t-20 -1q-7 0 -8.5 2t-1.5 10z" />
<glyph horiz-adv-x="378" d="M20 645q0 7 1.5 9.5t9.5 2.5q7 0 27 -1t32 -1q11 0 37.5 1t33.5 1q8 0 9.5 -2t1.5 -10q0 -12 -10 -12h-15q-21 0 -21 -8q0 -10 25 -80t45 -118q14 -32 15 -32q3 0 14 32q65 186 65 200q0 6 -23 6h-18q-10 0 -10 12q0 7 1.5 9.5t9.5 2.5q7 0 26 -1t27 -1q10 0 24.5 1 t19.5 1q11 0 11 -12t-10 -12h-11q-8 0 -10 -8l-104 -272q0 -1 -36 -93q-1 -4 -5.5 -16t-5.5 -14.5l-4.5 -11.5t-6 -13l-7.5 -12t-10.5 -15l-12.5 -16q-14 -19 -34 -29q-42 -21 -50 -21q-15 0 -15 17q0 11 15 34q8 11 23 15q3 1 14 5l18 6.5t16.5 7.5t15 10.5t8.5 12.5 q35 82 35 97q0 6 -22 59.5l-59.5 141.5t-43.5 103q-4 9 -6 10.5t-11 1.5h-9q-10 0 -10 12z" />
<glyph horiz-adv-x="345" d="M35 359q0 6 8 17q179 261 179 263q0 3 -7 3q-41 0 -121 -4q-8 0 -10.5 -0.5t-5 -2t-3.5 -4t-2 -8.5l-7 -32q-3 -9 -12 -9q-14 0 -14 5q0 1 1.5 12.5t3 27.5t2.5 25q0 4 0.5 6t2 3t3.5 1.5t6 0.5h228q19 0 19 -8q0 -1 -7 -13l-168 -246q-11 -18 -11 -20t15 -2l137 4 q8 0 10 1t3 9l7 45q1 8 2.5 9t7.5 1h5q8 0 8 -5q0 -16 -5 -76q-1 -9 -2.5 -10.5t-10.5 -1.5h-244q-18 0 -18 9z" />
<glyph d="M98 291q0 12 6 25.5t12 14.5t141 4t143 3q2 0 2 -9q0 -33 -8 -33q-9 -1 -145 -4.5t-147 -3.5q-4 0 -4 3z" />
<glyph horiz-adv-x="474" d="M45 189q0 82 56 136.5t137 54.5q88 0 139.5 -55.5t51.5 -136.5q0 -84 -57 -138.5t-140 -54.5q-77 0 -132 57.5t-55 136.5zM78 189q0 -65 44.5 -105.5t108.5 -40.5q80 0 120.5 45t40.5 114q0 59 -47.5 98.5t-110.5 39.5t-109.5 -44.5t-46.5 -106.5z" />
<glyph horiz-adv-x="336" d="M65 12q0 7 2.5 10t11.5 3h42q8 0 9.5 2t1.5 10q1 29 1 88v89q0 93 -2 137q0 5 -0.5 7t-2.5 3.5t-7 1.5h-42q-11 0 -11 13q0 8 1.5 11t9.5 3q9 0 43.5 -1t47.5 -1t47 1t43 1q8 0 9.5 -2.5t1.5 -11.5q0 -7 -2.5 -10t-11.5 -3h-39q-7 0 -9 -1.5t-2 -7.5v-3q-3 -58 -3 -234 q0 -53 1 -80q0 -12 12 -12h40q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -43.5 1t-47.5 1t-47 -1t-43 -1q-8 0 -9.5 2.5t-1.5 11.5z" />
<glyph horiz-adv-x="508" d="M65 323q0 8 26 27.5t68 37.5t76 18q55 0 91.5 -36t36.5 -90q0 -39 -35 -83t-71 -70.5t-75 -49.5q-28 -16 -28 -18q0 -1 7 -1h232q4 0 19.5 33t17.5 33q4 0 11 -2.5t7 -4.5q0 -15 -27 -111q-2 -6 -11 -6h-326q-15 0 -15 11q0 7 12 17q13 12 54.5 41t73.5 53.5t59 65 t27 82.5q0 44 -23 69t-61 25q-30 0 -61 -15t-50 -31l-18 -15q-4 0 -10.5 7.5t-6.5 12.5z" />
<glyph horiz-adv-x="422" d="M30 -164q0 8 11.5 14t26.5 6q16 0 41 -15q4 -2 14 -9t15.5 -10.5t18 -6.5t26.5 -3q48 0 87 45.5t39 103.5q0 70 -36.5 100.5t-114.5 30.5q-12 0 -32 -1.5t-21 -1.5q-3 0 -5.5 1t-3.5 3t-2 3.5t-1.5 5t-1.5 5.5q-2 6 -2 9q0 11 21 17q78 22 114.5 54t36.5 85 q0 40 -24 68.5t-61 28.5q-33 0 -59.5 -12.5t-39 -25t-13.5 -12.5q-6 0 -12 5.5t-6 11.5q0 7 19.5 23.5t54.5 32t68 15.5q61 0 97.5 -33.5t36.5 -89.5q0 -82 -91 -122q-48 -20 -48 -23q0 -2 42 -5q147 -12 147 -161q0 -80 -60.5 -133t-138.5 -53q-42 0 -92.5 15t-50.5 34z " />
<glyph d="M40 8q0 32 84 130l133 160q85 96 96 96q13 0 13 -26v-296q0 -13 2 -15.5t13 -2.5h58q7 0 7 -10v-34q0 -8 -1.5 -9t-10.5 -1h-52q-11 0 -13 -2t-1 -12q9 -183 9 -185q0 -10 -16 -11l-45 -4q-11 0 -11 13v186q0 11 -2.5 13t-13.5 2h-231q-18 0 -18 8zM93 60q0 -6 25 -6h168 q14 0 16.5 3t2.5 17v216q0 26 -3 26q-1 0 -18 -21l-174 -210q-17 -21 -17 -25z" />
<glyph horiz-adv-x="440" d="M70 158q0 6 8.5 44.5l20.5 94t18 88.5q1 6 15 6q2 0 41 -2.5t88.5 -4.5t77.5 -2q22 0 24 5q8 24 10 24h4q13 0 13 -6q-3 -45 -4 -69q-1 -17 -37 -17q-35 0 -64.5 1.5t-66 4.5t-65.5 4q-19 0 -21 -10q-20 -100 -20 -107q0 -4 1.5 -5.5t5.5 -1.5h4q107 -10 167 -52t60 -134 q0 -60 -36 -109.5t-85 -76t-88.5 -40.5t-57.5 -14q-8 0 -8 18q0 13 8 14q22 4 46 13t51.5 25t49 37t35.5 51.5t14 65.5q0 73 -54.5 108t-139.5 35q-15 0 -15 12z" />
<glyph d="M48 231q0 65 21.5 126.5t55.5 106t73 82t75 61t61 36t33 12.5q5 0 10 -7t5 -13q0 -4 -5 -6q-49 -20 -91.5 -54.5t-70.5 -73.5t-44.5 -69t-26.5 -57q-9 -25 -9 -27q3 -3 4.5 -3t10.5 2t12 3q43 8 91 8q79 0 133.5 -47.5t54.5 -121.5q0 -89 -56.5 -141.5t-140.5 -52.5 q-88 0 -142 61.5t-54 174.5zM115 201q0 -69 36.5 -122t106.5 -53q49 0 82 44t33 98q0 75 -40 121.5t-116 46.5q-30 0 -66 -6q-9 -2 -13 -3t-7 -6.5t-3.5 -7.5t-3.5 -15q-9 -43 -9 -97z" />
<glyph d="M64 278q0 4 1.5 19.5t5 45.5t5.5 56q1 13 4.5 15.5t11.5 2.5q13 0 13 -20q0 -4 164 -4h166q17 0 17 -9q0 -2 -4 -10l-129 -246.5l-128 -248.5t-52 -95q-13 0 -24.5 9t-11.5 19q0 1 288 502q9 16 9 17q0 4 -18 4h-199q-84 0 -85 -9l-9 -51q-1 -6 -13 -5t-12 8z" />
<glyph d="M71 154q0 37 11.5 66.5t32.5 49t35 28.5t34 19q5 3 9.5 4.5t6.5 2.5h2l-2 2q-3 1 -8 4t-11 7q-101 69 -101 158q0 68 49.5 115.5t120.5 47.5q67 0 112.5 -42t45.5 -108q0 -16 -2 -30t-7 -26.5t-9.5 -22.5t-13.5 -20t-14 -16.5t-15.5 -15t-14.5 -12t-15 -11t-12 -8.5 q-9 -7 -9 -8t9 -6q1 -1 17 -9.5t23 -14l22.5 -17t24 -24t19 -29.5t15 -38.5t4.5 -45.5q0 -72 -50 -116t-132 -44q-73 0 -125 45t-52 115zM124 164q0 -63 35 -102.5t93 -39.5q50 0 81.5 39t31.5 92q0 40 -19.5 70.5t-40 45t-59.5 35.5q-22 12 -27 12q-3 0 -33 -21 q-62 -46 -62 -131zM138 507q0 -64 69 -118q34 -26 54 -35l16 -7q3 0 14 10q26 23 49 65t23 78q0 64 -32 100t-83 36q-50 0 -80 -37.5t-30 -91.5z" />
<glyph d="M60 204q0 89 55 141.5t138 52.5q87 0 143.5 -62t56.5 -174q0 -70 -26.5 -130t-68 -99.5t-88.5 -70.5t-91 -47.5t-71.5 -24.5t-34.5 -8q-4 0 -7 9t-3 16q0 2 24 9.5t62 24t79 42t80 71t59 102.5l3 7l3 10.5t0 3.5q-2 0 -20 -12q-54 -33 -125 -33q-77 0 -122.5 47.5 t-45.5 124.5zM125 214q0 -60 35 -105.5t95 -45.5q96 0 126 52q6 11 6 57q0 50 -13 92.5t-43.5 73t-74.5 30.5q-64 0 -97.5 -43.5t-33.5 -110.5z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 481 KiB

View File

@ -1,682 +0,0 @@
<?xml version="1.0" standalone="no"?>
<!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">
<metadata>
This is a custom SVG webfont generated by Font Squirrel.
Copyright : Copyright c 2011 Barry Schwartz
</metadata>
<defs>
<font id="FanwoodItalic" horiz-adv-x="360" >
<font-face units-per-em="1000" ascent="690" descent="-310" />
<missing-glyph horiz-adv-x="200" />
<glyph unicode="fi" horiz-adv-x="508" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q9 98 42 157q41 72 110 112q48 28 100 28q24 0 48.5 -12.5 t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -42 18.5t-48 18.5q-26 0 -49.5 -27.5t-36.5 -68.5q-17 -52 -33 -167q-1 -3 2 -4.5t6 -1.5h82q52 0 87.5 5.5t47.5 5.5q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7 q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 37 -13 37h-161q-7 0 -7.5 -1t-2.5 -10q-2 -11 -13 -91l-23.5 -164.5l-20.5 -134.5q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3 t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="fl" horiz-adv-x="534" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q2 19 11 64q14 62 38 101.5t67 75.5q62 53 128 53 q29 0 50 -16q9 -6 9.5 -6t9.5 4q11 5 20.5 10.5t13 7t5.5 1.5q10 0 10 -9q0 -12 -50 -305.5t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5t-71.5 -62t-73.5 -31.5q-29 0 -29 38q0 5 7 46l21 120l25 143q1 7 0 8.5t-8 1.5h-167 q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h169h6t3 1.5t1.5 2.5t1 4t0.5 5 q26 162 35 239q-4 -2 -9 -4q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248z" />
<glyph unicode="ff" horiz-adv-x="531" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q31 0 60 -13t38 -27 q2 -2 2 -5q0 -1 2 0l2 2q24 19 35 25q48 28 91 28q24 0 48.5 -12.5t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -37.5 18.5t-43.5 18.5q-75 0 -109 -254q-1 -6 -1 -9q-1 -3 2 -4.5t6 -1.5h82q5 0 5 -2q0 -8 -2 -14q-1 -9 -7 -9h-80q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320 q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5q0 13 16.5 26t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35t5 34.5t3 25.5q42 290 42 332q0 11 -4 11h-170q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5 l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q9 98 42 157q18 33 37 56q4 4 4 5h-2.5t-6.5 -2 q-6 -3 -12 -3q-16 0 -37 17q-39 30 -60 30q-43 0 -77 -37t-48 -88q-25 -93 -25 -142z" />
<glyph unicode="ffi" horiz-adv-x="755" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q31 0 60 -13t38 -27 q2 -3 3 -6q3 -5 8 1q2 1 3 2q10 9 36 25q48 28 100 28q24 0 48.5 -12.5t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -42 18.5t-48 18.5q-26 0 -49.5 -27.5t-36.5 -68.5q-17 -52 -33 -167v-1q0 -5 8 -5h82q52 0 87.5 5.5t47.5 5.5q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136 q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 37 -13 37h-161q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5 q0 13 16.5 26t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35t5 34.5t3 25.5q42 290 42 332v4q0 7 -4 7h-170q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6 t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q3 32 14.5 82.5t31.5 81.5q13 21 37 48l5 6q-1 1 -7 -1q-12 -4 -19 -4q-16 0 -37 17q-39 30 -60 30q-43 0 -77 -37t-48 -88 q-25 -93 -25 -142z" />
<glyph unicode="ffl" horiz-adv-x="781" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q39 0 75 -21 q21 -12 25 -25l1 -9l1 1q2 1 5 3.5t5 4.5q62 53 128 53q29 0 50 -16q9 -6 9.5 -6t9.5 4q11 5 20.5 10.5t13 7t5.5 1.5q10 0 10 -9q0 -12 -50 -305.5t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5t-71.5 -62t-73.5 -31.5 q-29 0 -29 38q0 5 7 46l21 120l25 143q1 7 0 8.5t-8 1.5h-167q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5q0 13 16.5 26t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37 l6.5 35t5 34.5t3 25.5q42 290 42 332q0 11 -4 11h-170q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z M189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q2 19 11 64q21 92 73 147q5 5 4.5 5.5t-8.5 -2.5q-6 -3 -12 -3q-20 0 -43 19q-39 30 -60 30q-43 0 -77 -37t-48 -88q-25 -93 -25 -142zM436 377q0 -5 8 -5h169h6t3 1.5t1.5 2.5t1 4t0.5 5q26 162 35 239q-4 -2 -9 -4q-8 -4 -21 -4 q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248z" />
<glyph unicode="fj" horiz-adv-x="508" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q9 98 42 157q41 72 110 112q48 28 100 28q24 0 48.5 -12.5 t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -42 18.5t-48 18.5q-26 0 -49.5 -27.5t-36.5 -68.5q-17 -52 -33 -167q-1 -3 2 -4.5t6 -1.5h82q52 0 87.5 5.5t47.5 5.5q14 0 18 -10q3 -6 3 -14q0 -21 -13 -103.5l-27.5 -167t-15.5 -91.5q-6 -37 -9 -51.5t-13 -48t-27 -57 t-41 -41.5q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23q0 15 10 25.5t25 10.5q18 0 38 -12.5t37 -12.5q10 0 17 5.5t12.5 20.5t8.5 26.5t9 39.5q18 91 41.5 240.5t23.5 171.5q0 37 -13 37h-161q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135 q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="ffj" horiz-adv-x="755" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q31 0 60 -13t38 -27 q2 -3 3 -6q3 -5 8 1q2 1 3 2q10 9 36 25q48 28 100 28q24 0 48.5 -12.5t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -42 18.5t-48 18.5q-26 0 -49.5 -27.5t-36.5 -68.5q-17 -52 -33 -167v-1q0 -5 8 -5h82q52 0 87.5 5.5t47.5 5.5q14 0 18 -10q3 -6 3 -14q0 -21 -13 -103.5 l-27.5 -167t-15.5 -91.5q-6 -37 -9 -51.5t-13 -48t-27 -57t-41 -41.5q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23q0 15 10 25.5t25 10.5q18 0 38 -12.5t37 -12.5q10 0 17 5.5t12.5 20.5t8.5 26.5t9 39.5q18 91 41.5 240.5t23.5 171.5q0 37 -13 37h-161q-6 0 -7 -1t-2 -7 q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5q0 13 16.5 26t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35t5 34.5t3 25.5q42 290 42 332v4q0 7 -4 7h-170q-7 0 -7.5 -1t-2.5 -10 q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q3 32 14.5 82.5t31.5 81.5q13 21 37 48 l5 6q-1 1 -7 -1q-12 -4 -19 -4q-16 0 -37 17q-39 30 -60 30q-43 0 -77 -37t-48 -88q-25 -93 -25 -142z" />
<glyph unicode="fb" horiz-adv-x="732" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q2 19 11 64q14 62 38 101.5t67 75.5q62 53 128 53 q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -10q0 -6 -17.5 -117.5t-22.5 -140.5l-49 -251q51 85 87 133q38 51 64.5 71.5t71.5 20.5q41 0 64 -23q14 -14 14 -42q0 -72 -28.5 -137t-69.5 -106t-84 -64.5t-76 -23.5q-20 0 -40 7t-32.5 14t-15.5 7 q-4 0 -20 -8q-20 -8 -27 -8q-10 0 -10 8q0 4 13 23q5 7 8 19q75 403 87 569q-2 0 -8 -3q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-2 -9 -7 -9h-80q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5 t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM391 80q0 -25 17 -42.5t51 -17.5q41 0 84.5 51t69 112.5t25.5 98.5q0 23 -10 41t-32 18q-41 0 -83 -59l-48.5 -68 l-36.5 -54.5t-28.5 -49t-8.5 -30.5z" />
<glyph unicode="fh" horiz-adv-x="766" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q2 19 11 64q14 62 38 101.5t67 75.5q62 53 128 53 q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -10q0 -33 -9 -93q-23 -158 -84 -456q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5 t-60.5 -58.5t-72.5 -30q-18 0 -29.5 10.5t-11.5 27.5q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8q0 1 7 33t18.5 90t24 130t26 171t23.5 196q-14 -4 -18 -6q-8 -4 -21 -4q-12 0 -42 16 q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-2 -9 -7 -9h-80q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5 t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="fk" horiz-adv-x="731" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q2 19 11 64q14 62 38 101.5t67 75.5q62 53 128 53 q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -14q0 -16 -97 -489q36 69 72 117q33 43 66.5 64t82.5 21q59 0 59 -37q0 -42 -32.5 -78t-67.5 -53t-65 -24q-21 -3 -21 -4l4 -2q4 -2 10.5 -6.5t12.5 -9.5q47 -45 73 -77q16 -20 24 -28.5t22.5 -16.5t31.5 -8 q34 0 34 27q0 4 -1 10.5t-1 9.5q0 12 8 12t14.5 -10.5t6.5 -32.5t-38.5 -38.5t-72.5 -16.5q-22 0 -43 20q-11 10 -23.5 25t-29 37.5t-24.5 32.5q-10 13 -23.5 28.5t-20 24t-6.5 9.5q0 5 17 22q2 2 10 2q15 0 28 5q37 17 71 53.5t34 70.5q0 20 -31 20q-29 0 -63 -32 q-9 -9 -18.5 -20t-20.5 -26.5l-18.5 -26.5l-21.5 -33t-21 -32q-17 -27 -24 -58q-15 -64 -21 -98q-3 -22 -10 -22q-1 0 -11 -1.5t-22 -3t-17 -1.5q-4 0 -4.5 1t-0.5 6q0 3 21 102.5t48.5 251t38.5 268.5q-6 -1 -10 -3q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16 q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-2 -9 -7 -9h-80q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5 q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="ffb" horiz-adv-x="979" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q39 0 75 -21 q21 -12 25 -25l1 -9l1 1q2 1 5 3.5t5 4.5q62 53 128 53q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -10q0 -6 -17.5 -117.5t-22.5 -140.5l-49 -251q51 85 87 133q38 51 64.5 71.5t71.5 20.5q41 0 64 -23q14 -14 14 -42q0 -72 -28.5 -137t-69.5 -106 t-84 -64.5t-76 -23.5q-20 0 -40 7t-32.5 14t-15.5 7q-4 0 -20 -8q-20 -8 -27 -8q-10 0 -10 8q0 4 13 23q5 7 8 19q75 403 87 569q-2 0 -8 -3q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-1 -9 -7 -9h-80 q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5q0 13 16.5 26t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35t5 34.5t3 25.5q42 290 42 332q0 11 -4 11h-170 q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q2 19 11 64 q21 92 73 147q5 5 4.5 5.5t-8.5 -2.5q-6 -3 -12 -3q-20 0 -43 19q-39 30 -60 30q-43 0 -77 -37t-48 -88q-25 -93 -25 -142zM638 80q0 -25 17 -42.5t51 -17.5q41 0 84.5 51t69 112.5t25.5 98.5q0 23 -10 41t-32 18q-41 0 -83 -59l-48.5 -68l-36.5 -54.5t-28.5 -49t-8.5 -30.5 z" />
<glyph unicode="ffh" horiz-adv-x="1013" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q39 0 75 -21 q21 -12 25 -25l1 -9l1 1q2 1 5 3.5t5 4.5q62 53 128 53q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -10q0 -33 -9 -93q-23 -158 -84 -456q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22 q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5t-60.5 -58.5t-72.5 -30q-18 0 -29.5 10.5t-11.5 27.5q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8q0 1 7 33t18.5 90 t24 130t26 171t23.5 196q-14 -4 -18 -6q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-1 -9 -7 -9h-80q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43 q-23 0 -44 9.5t-21 19.5q0 13 16.5 26t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35t5 34.5t3 25.5q42 290 42 332q0 11 -4 11h-170q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5 t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q2 19 11 64q21 92 73 147q5 5 4.5 5.5t-8.5 -2.5q-6 -3 -12 -3q-20 0 -43 19q-39 30 -60 30q-43 0 -77 -37 t-48 -88q-25 -93 -25 -142z" />
<glyph unicode="ffk" horiz-adv-x="978" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q39 0 75 -21 q21 -12 25 -25l1 -9l1 1q2 1 5 3.5t5 4.5q62 53 128 53q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -14q0 -16 -97 -489q36 69 72 117q33 43 66.5 64t82.5 21q59 0 59 -37q0 -42 -32.5 -78t-67.5 -53t-65 -24q-21 -3 -21 -4l4 -2q4 -2 10.5 -6.5 t12.5 -9.5q47 -45 73 -77q16 -20 24 -28.5t22.5 -16.5t31.5 -8q34 0 34 27q0 4 -1 10.5t-1 9.5q0 12 8 12t14.5 -10.5t6.5 -32.5t-38.5 -38.5t-72.5 -16.5q-22 0 -43 20q-11 10 -23.5 25t-29 37.5t-24.5 32.5q-10 13 -23.5 28.5t-20 24t-6.5 9.5q0 5 17 22q2 2 10 2 q16 0 28 5q37 17 71 53.5t34 70.5q0 20 -31 20q-29 0 -63 -32q-9 -9 -18.5 -20t-20.5 -26.5l-18.5 -26.5l-21.5 -33t-21 -32q-17 -27 -24 -58q-15 -64 -21 -98q-3 -22 -10 -22q-1 0 -11 -1.5t-22 -3t-17 -1.5q-4 0 -4.5 1t-0.5 6q0 3 21 102.5t48.5 251t38.5 268.5 q-6 -1 -10 -3q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-1 -9 -7 -9h-80q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5q0 13 16.5 26 t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35t5 34.5t3 25.5q42 290 42 332q0 11 -4 11h-170q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7 t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q2 19 11 64q21 92 73 147q5 5 4.5 5.5t-8.5 -2.5q-6 -3 -12 -3q-20 0 -43 19q-39 30 -60 30q-43 0 -77 -37t-48 -88q-25 -93 -25 -142z" />
<glyph unicode="f&#x125;" horiz-adv-x="766" d="M451 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5 t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q2 19 11 64q14 62 38 101.5t67 75.5q62 53 128 53q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -10q0 -33 -9 -93q-23 -158 -84 -456 q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5t-60.5 -58.5t-72.5 -30q-18 0 -29.5 10.5t-11.5 27.5q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11 q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8q0 1 7 33t18.5 90t24 130t26 171t23.5 196q-14 -4 -18 -6q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-2 -9 -7 -9h-80 q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="ff&#x125;" horiz-adv-x="1013" d="M698 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-4 -2.5l-1 -1h-12q-5 0 -5 2zM-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5 t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q39 0 75 -21q21 -12 25 -25l1 -9l1 1q2 1 5 3.5t5 4.5q62 53 128 53q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5 t9 4q12 0 12 -10q0 -33 -9 -93q-23 -158 -84 -456q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5t-60.5 -58.5t-72.5 -30q-18 0 -29.5 10.5t-11.5 27.5 q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8q0 1 7 33t18.5 90t24 130t26 171t23.5 196q-14 -4 -18 -6q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248 q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-1 -9 -7 -9h-80q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5q0 13 16.5 26t30.5 13q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35 t5 34.5t3 25.5q42 290 42 332q0 11 -4 11h-170q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377 q0 -5 8 -5h167q7 0 8 1.5t2 10.5q2 19 11 64q21 92 73 147q5 5 4.5 5.5t-8.5 -2.5q-6 -3 -12 -3q-20 0 -43 19q-39 30 -60 30q-43 0 -77 -37t-48 -88q-25 -93 -25 -142z" />
<glyph unicode="f&#xfe;" horiz-adv-x="701" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q2 19 11 64q14 62 38 101.5t67 75.5q62 53 128 53 q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -10q0 -27 -8 -74q-36 -225 -86 -467q43 107 100 194q37 57 99 57q44 0 60 -23.5t16 -67.5q0 -110 -74 -204t-151 -94q-11 0 -32 3.5t-24 3.5q-12 0 -13 -8l-32 -209q-4 -23 9 -24q16 -2 40 -4 q14 -1 19.5 -1.5t11 -2t7 -4t1.5 -6.5q0 -14 -4.5 -17.5t-15.5 -3.5q-1 0 -27 3.5t-67.5 7t-79.5 3.5q-17 0 -17 10q0 14 3.5 18t15.5 4h16q12 0 16 3.5t6 17.5q26 137 43 243l35 208q49 279 60 388q-14 -4 -18 -6q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16 q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-2 -9 -7 -9h-80q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5 q-24 0 -46 12.5t-22 23.5zM396 51q0 -32 64 -32q33 0 69.5 42.5t60.5 103.5t24 113q0 64 -44 64q-15 0 -29.5 -9.5t-29 -30t-22.5 -34t-22 -41.5l-16 -32q-55 -105 -55 -144z" />
<glyph unicode="ff&#xfe;" horiz-adv-x="948" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q6 51 24 102q26 71 86.5 128t140.5 57q39 0 75 -21 q21 -12 25 -25l1 -9l1 1q2 1 5 3.5t5 4.5q62 53 128 53q29 0 50 -16q9 -6 9.5 -6t9.5 4l16.5 8.5t17.5 9.5t9 4q12 0 12 -10q0 -27 -8 -74q-36 -225 -86 -467q43 107 100 194q37 57 99 57q44 0 60 -23.5t16 -67.5q0 -110 -74 -204t-151 -94q-11 0 -32 3.5t-24 3.5 q-12 0 -13 -8l-32 -209q-5 -23 9 -24q16 -2 40 -4q14 -1 19.5 -1.5t11 -2t7 -4t1.5 -6.5q0 -14 -4.5 -17.5t-15.5 -3.5q-1 0 -27 3.5t-67.5 7t-79.5 3.5q-17 0 -17 10q0 14 3.5 18t15.5 4h16q12 0 16 3.5t6 17.5q26 137 43 243l35 208q49 279 60 388q-14 -4 -18 -6 q-8 -4 -21 -4q-12 0 -42 16q-18 9 -24 9q-14 0 -37 -16q-74 -53 -91 -248q0 -5 8 -5h82q5 0 5 -2q0 -8 -2 -14q-1 -9 -7 -9h-80q-6 0 -7 -1t-2 -7q-1 -2 -1 -3l-48 -320q-9 -56 -34.5 -116.5t-64.5 -95.5q-48 -43 -91 -43q-23 0 -44 9.5t-21 19.5q0 13 16.5 26t30.5 13 q12 0 36.5 -7.5t41.5 -7.5q11 0 20.5 7t16.5 22.5t12 28.5t9.5 37l6.5 35t5 34.5t3 25.5q42 290 42 332q0 11 -4 11h-170q-7 0 -7.5 -1t-2.5 -10q-2 -13 -13 -91.5l-23.5 -163.5t-20.5 -135q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5 t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5zM189 377q0 -5 8 -5h167q7 0 8 1.5t2 10.5q2 19 11 64q21 92 73 147q5 5 4.5 5.5t-8.5 -2.5q-6 -3 -12 -3q-20 0 -43 19q-39 30 -60 30q-43 0 -77 -37t-48 -88q-25 -93 -25 -142zM643 51q0 -32 64 -32 q33 0 69.5 42.5t60.5 103.5t24 113q0 64 -44 64q-15 0 -29.5 -9.5t-29 -30t-22.5 -34t-22 -41.5l-16 -32q-55 -105 -55 -144z" />
<glyph unicode=" " horiz-adv-x="200" />
<glyph unicode="&#x09;" horiz-adv-x="200" />
<glyph unicode="&#xa0;" horiz-adv-x="200" />
<glyph unicode="!" horiz-adv-x="220" d="M65 38q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5zM102 150q0 23 20 183q27 211 34 302q1 22 29 22h5q25 0 25 -17q0 -2 -2 -12q-33 -148 -86 -477q-1 -5 -12 -5q-13 0 -13 4z" />
<glyph unicode="&#x22;" horiz-adv-x="261" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14zM160 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43 l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="#" horiz-adv-x="442" d="M30 169v4q0 8 2 10.5t9 2.5h73q5 0 5.5 1t1.5 6q16 115 16 126q0 4 -5 4h-95q-7 0 -7 13v6q0 11 7 11h100q9 0 9 6l21 148q2 16 3 18q4 6 6.5 6.5t14.5 0.5q19 0 19 -11q0 -3 -12.5 -81t-12.5 -82q0 -5 6 -5h90q7 0 8 7q25 161 26 165q3 7 14 7q24 0 24 -10 q0 -5 -12 -82.5t-12 -81.5q0 -5 4 -5h64q10 0 12.5 -2.5t2.5 -13.5q0 -10 -3 -12t-10 -2h-72q-6 0 -6 -5q-19 -120 -19 -126t7 -6h92q7 0 9 -3t2 -14q0 -10 -2.5 -12t-11.5 -2h-86q-15 -2 -15 -5q-21 -150 -22 -152q0 -1 -1 -3q-1 -5 -21 -5h-10.5t-5 1.5l-2 2t0 4t0.5 5.5 q0 4 11 74.5t11 73.5q0 4 -7 4h-86q-11 -2 -12 -5q-21 -150 -22 -152q-4 -7 -9 -8h-13q-11 0 -14.5 2.5t-3.5 10.5q0 4 11 74.5t11 73.5q0 4 -3 4h-68q-8 0 -10 3t-2 11zM158 193q0 -5 9 -5h90q7 0 7 6l9.5 67t7 44t2.5 16q0 4 -7 4h-90q-6 0 -8 -5v-1q-2 -16 -7.5 -47.5 t-9 -53.5t-3.5 -25z" />
<glyph unicode="$" horiz-adv-x="500" d="M50 128q0 8 12.5 17t20.5 9q2 0 6 -8.5l11.5 -25.5t14.5 -29q25 -44 52 -58q16 -8 29 -8q6 0 7 11l32 234q2 11 1 15.5t-8 8.5q-35 21 -52.5 33.5t-41.5 35t-35 49t-11 58.5q0 73 54 115t126 42q12 0 13 10l5 36q1 9 8 9h9q7 0 6 -9l-5 -36q-1 -11 3 -12q1 -1 3 -1 q60 -10 94 -53t34 -75q0 -25 -18 -25q-9 0 -18.5 9t-11.5 20q-1 6 -4 22t-5.5 26t-6.5 16q-26 35 -63 41q-11 2 -12 -3l-32 -247q-2 -16 4 -20q73 -47 95 -70q50 -50 50 -120q0 -66 -52 -105t-133 -39q-9 0 -10 -4q-1 -1 -2 -11l-14 -122q-1 -6 -6 -6h-17q-5 0 -4 7l18 121 q1 4 1 10t-2 7.5t-11 3.5q-2 1 -3 1q-58 12 -94.5 51t-36.5 69zM141 485q0 -36 26.5 -72t62.5 -55q6 -4 8 -4q6 0 7 14l31 234q1 6 -4 6q-49 0 -90 -35t-41 -88zM227 25q0 -6 18 -6q50 2 82.5 35.5t32.5 90.5q0 38 -27 73t-67 54l-6 3q-1 0 -3 -9l-29 -228q-1 -6 -1 -13z " />
<glyph unicode="%" horiz-adv-x="657" d="M50 362q0 62 52.5 131.5t124.5 69.5q40 0 71 -31q24 -24 58 -24q46 0 93 28q17 10 31.5 22t35.5 33.5l22 22.5t4.5 5t7.5 8l3 4q6 0 12 -4t6 -8q0 -3 -5 -11q-360 -527 -434 -643q-4 -6 -19 -6q-16 0 -16 10q0 2 2 6l80 114l169.5 245.5t112.5 170.5q9 15 8 16 q-2 1 -8 -2q-47 -28 -105 -28q-16 0 -35 3v-16v-14q0 -17 -1 -25q-6 -72 -57.5 -130.5t-112.5 -58.5q-47 0 -73.5 32t-26.5 80zM99 336q0 -29 13.5 -50t40.5 -21q51 0 95 58.5t44 137.5q0 70 -52 70q-46 0 -93.5 -64t-47.5 -131zM336 103q0 71 56 137t125 66q42 0 66 -29.5 t24 -79.5q0 -79 -53 -142.5t-118 -63.5q-47 0 -73.5 31.5t-26.5 80.5zM385 78q0 -30 13 -50.5t41 -20.5q51 0 95 58.5t44 136.5q0 71 -53 71q-45 0 -92.5 -64t-47.5 -131z" />
<glyph unicode="&#x26;" horiz-adv-x="693" d="M35 201q0 32 9.5 60t23.5 46t27.5 31t23 20.5t9.5 9.5q0 1 -11 13t-22.5 36.5t-11.5 58.5q0 69 44 118t119 49q40 0 78 -16q37 -16 37 -41q0 -31 -21 -52q-3 -3 -5 -3.5t-4.5 1t-4 2.5t-4.5 4.5t-3 4.5q-40 43 -97 43q-43 0 -75.5 -34t-32.5 -78q0 -36 17.5 -63t41.5 -27 q13 0 30 2.5t25 2.5q19 0 19 -12q0 -16 -23 -29.5t-38 -13.5q-10 0 -25 7l-15 7q-5 0 -17 -8t-26 -34t-14 -64q0 -86 59 -137.5t146 -51.5q34 0 68 10.5t66.5 33.5t52.5 66.5t20 101.5q0 59 -12 64q-76 28 -114 28q-29 0 -47 -15t-18 -42q0 -7 1.5 -13t3 -10.5t5.5 -9 t6.5 -7t8.5 -5t8.5 -4t10 -3.5l9.5 -2.5t10.5 -2t9.5 -1.5q16 -3 16 -9q0 -8 -10.5 -15.5t-20.5 -7.5q-11 0 -25 4q-28 9 -41.5 30.5t-13.5 38.5q0 58 39.5 90.5t94.5 32.5q21 0 88 -23.5t107 -23.5q25 0 40.5 15.5t15.5 40.5q0 63 -84 63q-11 0 -11 7q0 15 12 25t25 10 q39 0 58.5 -28.5t19.5 -60.5q0 -38 -17 -65q-15 -24 -44 -39t-52 -15q-25 0 -37 3q-5 2 -9 1t-4 -8q0 -3 0.5 -14.5t0.5 -16.5q0 -32 -9 -68.5t-30 -75.5t-51.5 -70t-78.5 -51t-106 -20q-103 0 -162 59t-59 150z" />
<glyph unicode="'" horiz-adv-x="131" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="(" horiz-adv-x="319" d="M60 285q0 73 19 142t45 114.5t53.5 80.5t45.5 51t20 16q6 0 11 -4t5 -9l-8 -8q-8 -9 -20.5 -25.5t-27.5 -39t-30 -54.5t-27.5 -68.5t-20.5 -84.5t-8 -99q0 -79 14 -150t34.5 -117.5t41 -80.5t34.5 -53t14 -22q0 -14 -16 -14q-4 0 -22.5 21.5t-45 62.5t-51.5 91.5 t-42.5 117.5t-17.5 132z" />
<glyph unicode=")" horiz-adv-x="319" d="M60 -127l8 9q8 8 20.5 24.5t27.5 39t30 54.5t27.5 68.5t20.5 84.5t8 99q0 79 -14 150t-34.5 117.5t-41 80.5t-34.5 53t-14 22q0 14 16 14q4 0 22.5 -21.5t45 -62.5t51.5 -91.5t42.5 -117.5t17.5 -132q0 -73 -19 -142t-45 -114.5t-53.5 -80.5t-45.5 -51t-20 -16 q-6 0 -11 4t-5 9z" />
<glyph unicode="*" horiz-adv-x="391" d="M30 447q0 21 23 31q10 4 48.5 17.5t52.5 19.5q19 7 19 13q0 4 -15 15q-6 5 -42.5 28t-45.5 32q-13 15 -13 29q0 11 7.5 19t20.5 8q18 0 31 -15q7 -8 18 -25l24 -39l18 -30q8 -13 11 -13q2 0 8 13q4 9 12.5 34t16 45t12.5 27q13 19 32 19q11 0 19 -9t8 -19q0 -13 -9 -26 q-8 -12 -39 -39.5t-39 -35.5q-10 -12 -10 -15q0 -6 18 -7q8 -1 56 -2t60 -5q29 -10 29 -31q0 -14 -9.5 -21.5t-22.5 -7.5q-7 0 -15 3t-46.5 22.5t-51.5 25.5q-12 6 -16 6q-5 0 -5 -4t3 -14q2 -10 15.5 -52.5t13.5 -56.5q0 -15 -7.5 -27t-22.5 -12q-16 0 -24.5 12t-8.5 26 q0 11 8 52.5t10 53.5q1 4 1 10q0 11 -4 11q-6 0 -17 -11l-36 -37.5t-41 -37.5q-12 -7 -25 -7t-21.5 7.5t-8.5 19.5z" />
<glyph unicode="+" horiz-adv-x="527" d="M31 212q0 8 0.5 11.5t4.5 6t13 2.5h170q22 0 22 19v176q0 7 2.5 10.5t6 4t12.5 0.5t13 -0.5t7.5 -5.5t3.5 -14v-163q0 -27 17 -27h177q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-172q-12 0 -14.5 -4t-2.5 -14v-175q0 -11 -5 -14t-15 -3q-16 0 -20.5 2.5 t-4.5 15.5v174q0 12 -4.5 15t-19.5 3h-169q-12 0 -14.5 5t-2.5 19z" />
<glyph unicode="," horiz-adv-x="195" d="M7 -127q0 1 6 5.5t17 13.5t20 18q48 48 48 79q0 15 -15 35q-6 8 -16.5 18.5t-16 16.5t-5.5 9q0 6 20.5 17t32.5 11q13 0 35 -24t22 -56q0 -28 -32 -69t-63.5 -68t-35.5 -27t-10.5 8t-6.5 13z" />
<glyph unicode="-" horiz-adv-x="268" d="M30 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="." horiz-adv-x="210" d="M60 38q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5z" />
<glyph unicode="/" horiz-adv-x="406" d="M10 -220q0 2 19 57q315 843 317 850q4 11 9.5 14.5t19.5 3.5q21 0 21 -12q0 -8 -14 -44l-314 -851q-8 -22 -13.5 -26.5t-18.5 -4.5q-26 0 -26 13z" />
<glyph unicode="0" horiz-adv-x="500" d="M62 164q0 86 57.5 144t144.5 58q79 0 127 -48.5t48 -119.5q0 -85 -58 -144t-141 -59q-76 0 -127 46.5t-51 122.5zM107 156q0 -62 34.5 -95.5t89.5 -33.5q62 0 111 51.5t49 128.5q0 59 -36 94t-91 35q-63 0 -110 -57.5t-47 -122.5z" />
<glyph unicode="1" horiz-adv-x="500" d="M130 12q0 7 2.5 10t11.5 3h40h5t3 1.5t1.5 2t1 3.5t0.5 5q9 47 21.5 122t20.5 129t8 58q0 11 -3 11q-1 1 -5 1h-53q-11 0 -11 13q0 8 1.5 11t9.5 3q9 0 44.5 -1t48.5 -1t47 1t43 1q8 0 9.5 -2.5t1.5 -11.5q0 -7 -2.5 -10t-11.5 -3h-39q-8 0 -9.5 -2t-3.5 -10 q-30 -197 -45 -309q-1 -7 2 -9.5t11 -2.5h50q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -46 1t-50 1t-48.5 -1t-44.5 -1q-8 0 -9.5 2.5t-1.5 11.5z" />
<glyph unicode="2" horiz-adv-x="500" d="M54 11q0 7 12 17q13 12 69.5 50.5t86.5 65.5q73 65 73 122q0 40 -22.5 66.5t-61.5 26.5q-29 0 -58 -20.5t-46 -40.5l-17 -20q-5 0 -11.5 5.5t-6.5 10.5q0 7 22.5 30t64 46.5t80.5 23.5q61 0 93 -30t32 -84q0 -86 -197 -201q-28 -16 -28 -20q0 -1 7 -1h248q6 0 20 24 t15 24q4 0 11 -3t7 -5q0 -3 -7 -17l-18 -36.5t-18 -38.5q-2 -6 -11 -6h-324q-15 0 -15 11z" />
<glyph unicode="3" horiz-adv-x="500" d="M56 -146q0 12 35 12q24 0 34 -11q37 -44 80 -44q55 0 99.5 47.5t44.5 106.5q0 56 -37.5 83.5t-103.5 27.5q-12 0 -33 -1.5t-22 -1.5q-17 0 -17 11t3 14t16 7q172 49 172 167q0 39 -22.5 63t-60.5 24q-29 0 -55 -8.5t-40.5 -17.5t-15.5 -9q-4 0 -7.5 6t-3.5 11q0 4 21 15 t55.5 21t64.5 10q55 0 88.5 -27.5t33.5 -78.5q0 -27 -12.5 -52t-30.5 -42t-36.5 -29.5t-31 -19.5t-12.5 -8t16 -4t38 -11t44.5 -22.5t38.5 -44t16 -69.5q0 -78 -68 -135.5t-152 -57.5q-34 0 -62.5 8t-44 20t-24 22.5t-8.5 17.5z" />
<glyph unicode="4" horiz-adv-x="500" d="M46 8q0 21 44 78l18 20t16 18q34 41 163 174q15 17 55 55.5t48 38.5q14 0 10 -24l-50 -296q-2 -13 1 -15.5t14 -2.5h83q7 0 7 -10v-34q0 -8 -1.5 -9t-10.5 -1h-97q-9 0 -10 -1t-2 -7q-1 -4 -1 -6q-3 -27 -9 -71l-10 -75t-4 -33q0 -5 -2.5 -7t-12.5 -4l-42 -8q-6 -1 -11 4 t-3 17l34 180q2 4 1 6t-1.5 3.5t-3 2t-4 0t-5.5 -0.5h-7h-189q-18 0 -18 8zM102 60q0 -6 25 -6h147q13 0 15 2.5t4 17.5l35 216q1 8 -3 9.5t-9 -4.5l-197 -210q-17 -17 -17 -25z" />
<glyph unicode="5" horiz-adv-x="500" d="M58 -199q0 10 7 10q42 3 79.5 14t72.5 31.5t55.5 56t20.5 82.5q0 38 -26.5 71.5t-58.5 52.5l-58.5 36t-26.5 25q0 6 11 36l28.5 76.5t27.5 79.5q2 6 15 6q4 0 83 -7.5t85 -7.5q20 0 24 4l2 4l12 24q6 0 13 -2.5t7 -5.5q0 -1 -25 -68q-6 -16 -11 -18q-3 -1 -9 -1t-28 3 t-62 9t-72 10q-23 2 -28 -7q-12 -24 -23 -55.5t-11 -37.5q0 -4 20 -14.5t48 -27.5t56.5 -39.5t48.5 -57.5t20 -74q0 -65 -48 -117.5t-113.5 -78t-127.5 -25.5q-8 0 -8 13z" />
<glyph unicode="6" horiz-adv-x="500" d="M55 187q0 107 56 204.5t138 169.5q54 47 112 76.5t75 29.5q10 0 10 -19q0 -3 -8 -6q-81 -32 -130 -80q-94 -91 -135 -173q-14 -30 -14 -36q0 -1 6.5 0t20.5 4q37 7 65 7q79 0 125.5 -45t46.5 -128q0 -89 -58.5 -142.5t-142.5 -53.5q-32 0 -59.5 8.5t-53 29t-40 60 t-14.5 94.5zM116 173q0 -31 8.5 -62t37 -59t71.5 -28q54 0 87.5 51.5t33.5 121.5q0 146 -120 146q-19 0 -48 -6.5t-35 -14.5q-35 -47 -35 -149z" />
<glyph unicode="7" horiz-adv-x="500" d="M65 286q0 4 6 20t14 43.5t13 54.5q3 20 12 20q17 0 17 -9q0 -3 -1 -9.5t-1 -10.5q0 -2 51 -2h268q13 0 13 -9q0 -6 -41.5 -76.5l-100 -166l-73.5 -121.5q-80 -137 -109 -215q-5 -15 -12 -15q-11 0 -21 6t-10 14q0 28 56 122.5t143.5 226t102.5 155.5q5 8 5 13q0 8 -14 8 h-193q-82 0 -85 -9l-13 -40q-6 -8 -10 -9q-17 0 -17 9z" />
<glyph unicode="8" horiz-adv-x="500" d="M70 130q0 34 14.5 66t35 54.5t41.5 39.5t35.5 27t14.5 12q0 1 -10.5 10.5t-25 25t-29 35.5t-25 47t-10.5 53q0 71 48 116t124 45q62 0 99.5 -35.5t37.5 -98.5q0 -29 -13.5 -58t-33 -49.5t-38.5 -37t-32.5 -26.5t-13.5 -12q0 -1 11.5 -11.5t27.5 -28.5t32.5 -40t28 -53 t11.5 -61q0 -67 -52.5 -110t-129.5 -43q-68 0 -108 33.5t-40 99.5zM124 145q0 -55 30.5 -89t72.5 -34q48 0 81 35.5t33 82.5q0 22 -11.5 48.5t-27.5 48t-33.5 39.5t-29.5 28.5t-14 10.5q-7 0 -30 -20.5t-47 -62.5t-24 -87zM164 534q0 -36 25.5 -79.5t51 -69.5t30.5 -26 q7 0 30.5 21.5t46.5 62.5t23 82q0 48 -28 80.5t-74 32.5q-48 0 -76.5 -32t-28.5 -72z" />
<glyph unicode="9" horiz-adv-x="500" d="M42 -185q0 2 32 13q114 40 235 186q20 23 20 32q-2 1 -5 0.5t-12 -4t-12 -4.5q-41 -13 -74 -13q-62 0 -100 45.5t-38 121.5q0 89 62 145.5t146 56.5q70 0 109.5 -52.5t39.5 -138.5q0 -77 -39 -150.5t-101 -125.5q-49 -41 -111.5 -74t-99 -45.5t-43.5 -12.5q-9 0 -9 20z M147 173q0 -55 26.5 -88t79.5 -33q44 0 74 13q25 11 42.5 64t17.5 111q0 61 -25.5 94.5t-66.5 33.5q-66 0 -107 -60.5t-41 -134.5z" />
<glyph unicode=":" horiz-adv-x="209" d="M60 38q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5zM89 313q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5z" />
<glyph unicode=";" horiz-adv-x="195" d="M7 -127q0 1 6 5.5t17 13.5t20 18q48 48 48 79q0 15 -15 35q-6 8 -16.5 18.5t-16 16.5t-5.5 9q0 6 20.5 17t32.5 11q13 0 35 -24t22 -56q0 -28 -32 -69t-63.5 -68t-35.5 -27t-10.5 8t-6.5 13zM80 313q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37 t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5z" />
<glyph unicode="&#x3c;" horiz-adv-x="527" d="M41 211q0 6 0.5 8.5t4 5.5t10.5 6l361 132q48 18 51 18q19 0 19 -25q0 -10 -16 -16l-315 -111q-42 -15 -42 -21q0 -3 42 -18l320 -112q11 -4 11 -13q0 -8 -6 -16t-18 -8q-3 0 -408 147q-10 4 -12 8t-2 15z" />
<glyph unicode="=" horiz-adv-x="527" d="M31 134q0 8 0.5 11.5t4.5 6.5t13 3h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -19t-18 -5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5zM31 290q0 8 0.5 11.5t4.5 6t13 2.5h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5z " />
<glyph unicode="&#x3e;" horiz-adv-x="527" d="M41 65q0 10 10 13l321 112q42 15 42 18q0 6 -42 21l-316 111q-15 6 -15 16q0 25 18 25q3 0 51 -18l361 -132q16 -6 16 -20q0 -11 -2.5 -15t-12.5 -8q-405 -147 -408 -147q-12 0 -17.5 8t-5.5 16z" />
<glyph unicode="?" horiz-adv-x="374" d="M80 38q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5zM84 206q0 44 65 109l42.5 41l45.5 44t37 39.5t29.5 41t9.5 34.5q0 21 -11 41.5t-26 29.5q-22 14 -89 14q-13 0 -45 -1.5t-35 -1.5t-5 1t-3 3.5l-2 5t-1 6.5 t-0.5 7t-0.5 8v8q-1 9 3 11.5t15 4.5q30 5 64 5q60 0 90 -19q33 -21 52.5 -59.5t19.5 -77.5q0 -31 -7.5 -53.5t-13.5 -30.5t-28 -32q-16 -18 -105 -107q-1 -1 -17.5 -16.5t-24 -24t-16.5 -22t-9 -23.5q0 -11 7 -23.5t14 -20.5t7 -9q0 -3 -5 -8t-9 -5q-3 0 -14.5 11t-22.5 31 t-11 38z" />
<glyph unicode="@" horiz-adv-x="795" d="M50 187q0 110 61 203.5t157 145.5t200 52q56 0 103.5 -13t87.5 -41t63 -76.5t23 -113.5q0 -69 -31.5 -126t-81.5 -91.5t-108 -53.5t-115 -19q-35 0 -35 22l6 47q-7 -8 -18.5 -19t-43 -29.5t-56.5 -18.5q-28 0 -43 24t-15 59q0 36 31.5 95t92 110t126.5 51q8 0 20 -3 l11 -3q1 0 14 15q13 16 28 16q25 0 25 -13q0 -8 -3 -14q-110 -237 -110 -278q0 -11 0.5 -16t5.5 -10t14 -5q42 0 93 25t95 69q68 68 68 159q0 112 -66.5 167.5t-177.5 55.5q-157 0 -272 -108.5t-115 -270.5q0 -119 80.5 -192t191.5 -73q97 0 169.5 32.5t140.5 95.5q8 8 13 8 q6 0 10 -5.5t4 -8.5q0 -7 -4 -11q-62 -67 -150 -103.5t-186 -36.5q-125 0 -214 80t-89 220zM271 147q0 -18 11.5 -32t30.5 -14q31 0 67.5 57.5t58 116t21.5 75.5q0 11 -10 17.5t-22 6.5q-42 0 -99.5 -75.5t-57.5 -151.5z" />
<glyph unicode="A" horiz-adv-x="688" d="M20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5 q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103q-1 14 -4 16.5t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5z M284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="B" horiz-adv-x="571" d="M20 15q0 9 3 10.5t15 1.5h43q78 514 82 595q1 9 -1 11.5t-9 2.5h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l51 -1q50 -2 71 -2q16 0 60.5 1.5t49.5 1.5q198 0 198 -149q0 -29 -10.5 -54.5t-27.5 -43t-38 -32t-41.5 -23t-37.5 -14.5t-28 -9l-10 -3l20 -3 q21 -2 50 -11.5t58 -26t49.5 -51t20.5 -80.5q0 -168 -289 -168q-11 0 -47.5 1.5t-52.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5zM166 48q0 -10 6 -13t25 -4h3q14 -1 45 -1q92 0 145.5 37.5t53.5 113.5q0 71 -50.5 106.5t-131.5 35.5h-31q-19 0 -23 -2t-6 -10 q-8 -36 -35 -251q-1 -5 -1 -12zM208 364q-2 -17 2 -19q3 -1 10 -1h16h21t20.5 -0.5t9.5 -0.5q21 0 55 17q100 51 100 141q0 62 -41 99t-110 37h-16q-16 0 -22 -5.5t-10 -25.5q-9 -56 -35 -242z" />
<glyph unicode="C" horiz-adv-x="686" d="M35 291q0 160 108 270t255 110q62 0 120 -24.5t92 -62.5l12 41q8 0 18.5 -3.5t10.5 -7.5q0 -3 -7.5 -41l-17 -84t-10.5 -54q-1 -5 -13 -5q-9 0 -16 4t-7 7q0 1 11.5 46.5t11.5 50.5t-28 29.5t-79 50t-99 25.5q-75 0 -139 -56t-98.5 -137t-34.5 -162q0 -123 69.5 -195.5 t172.5 -72.5q47 0 91 16.5t67 33.5t26 26q10 29 25 84q3 9 8 10.5t15 -1.5q17 -4 17 -11q0 -6 -33 -116q-5 -18 -81.5 -47t-141.5 -29q-64 0 -119.5 16.5t-103 50.5t-75 95t-27.5 143z" />
<glyph unicode="D" horiz-adv-x="742" d="M19 10q0 11 3 13t14 2h43q5 0 42.5 261.5t45.5 338.5q2 11 -4 11l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v6t0.5 4.5t2 3.5t4 1.5t6.5 0.5h24t51.5 -0.5t43.5 -0.5q33 0 75.5 1t56.5 1q165 0 261.5 -80t96.5 -248q0 -158 -102 -247.5t-248 -91.5q-32 0 -112 2t-113 2 q-16 0 -55 -2t-42 -2q-8 0 -9.5 2t-1.5 12zM171 46q0 -13 6 -17t59 -4q97 0 170 27t111 64t61.5 88t29.5 87.5t6 73.5q0 123 -74.5 196.5t-223.5 73.5q-49 0 -63 -4l-9 -56l-20 -137.5l-24 -165t-20.5 -148.5t-8.5 -78z" />
<glyph unicode="E" horiz-adv-x="579" d="M20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36 t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7 q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="F" horiz-adv-x="541" d="M20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q49 0 58 2t11 11q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37 q0 7 -237 7q-5 0 -41 -270q-2 -8 -0.5 -11.5t3.5 -4t11 -0.5h156q45 0 47 13l8 43q1 7 16 7q13 0 13 -6q0 -1 -14 -77q-3 -14 -5.5 -30.5t-4.5 -31t-2 -17.5q-1 -7 -13 -7q-17 0 -17 8q9 54 9 57q0 8 -10 11t-40 3h-143q-9 0 -12 -0.5t-5 -2.5t-3 -7q-2 -13 -18.5 -130.5 t-20.5 -148.5q-2 -9 8 -9h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -47.5 1.5t-52.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="G" horiz-adv-x="721" d="M35 266q0 108 51.5 203t138.5 150.5t186 55.5q26 0 51.5 -3.5t46.5 -8.5t39.5 -12t33 -13.5t24.5 -11.5l16 -8l6 -4q1 0 6 27q3 11 11 11q9 0 15.5 -2t5.5 -7q-13 -84 -23 -175l-1.5 -7.5t-4 -4.5t-9.5 -2q-22 0 -18 16q1 5 8.5 49.5t7.5 50.5q0 5 -35.5 24t-87.5 37.5 t-88 18.5q-78 0 -145.5 -57.5t-103.5 -143.5t-36 -173q0 -122 67 -195t165 -73q65 0 111.5 21.5t51.5 40.5q15 55 18 136q1 14 -9 14h-85q-8 0 -8 12q0 18 9 18q16 0 64 -1.5t66 -1.5q17 0 49.5 1.5t53.5 1.5q8 0 8 -14q0 -16 -8 -16h-57q-2 0 -19 -146q-1 -10 -44.5 -33.5 t-116.5 -45t-138 -21.5q-28 0 -59 6t-70.5 26t-70 50.5t-52 85t-21.5 124.5z" />
<glyph unicode="H" horiz-adv-x="795" d="M20 13q0 9 3 11.5t15 2.5h53q7 0 48 282t41 314q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 47.5 -1.5t58.5 -1.5q16 0 53 1.5t48 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-50q-8 0 -47 -270q-2 -11 -0.5 -15t12.5 -4h332q8 0 11 0.5t5.5 3 t3.5 8.5q30 232 30 261q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 48 -1.5t59 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-10 0 -47 -288.5t-37 -310.5q0 -13 8 -13h57q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -54.5 1.5t-59.5 1.5t-50 -1.5t-45 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h53q5 0 44 287q1 8 -1.5 10t-13.5 2h-334q-9 0 -12.5 -3t-4.5 -13q-32 -235 -32 -270q0 -13 8 -13h59q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54 1.5t-59 1.5t-53.5 -1.5 t-48.5 -1.5q-9 0 -11.5 3t-2.5 13z" />
<glyph unicode="I" horiz-adv-x="377" d="M20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2 t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="J" horiz-adv-x="365" d="M-58 -188q0 23 28.5 43.5t38.5 20.5q7 0 24 -10.5t28 -10.5q6 0 11.5 2.5t9.5 8.5t7 12t5.5 16.5t4.5 18t3.5 21t2.5 20.5t2 21.5t2 19.5q11 106 30.5 260l33.5 257t14 109q0 18 -10 18h-68q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 56 -1.5t67 -1.5 q16 0 52 1.5t47 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-5 0 -20 -101t-34.5 -253.5t-19.5 -154.5q-16 -121 -35 -173q-23 -62 -64 -105q-60 -64 -109 -64q-19 0 -36 7t-17 17z" />
<glyph unicode="K" horiz-adv-x="656" d="M20 13q0 9 3 11.5t15 2.5h33q7 0 50.5 282t43.5 314q0 16 -9 16h-57q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 45.5 -1.5t56.5 -1.5q16 0 48 1.5t43 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-35q-10 0 -33 -127t-25 -154q-2 -20 13 -20h50 q8 0 93 108.5t130 171.5q10 15 10 16q0 5 -15 5h-21q-7 0 -10.5 0.5t-6 4t-2.5 10.5t2.5 10.5t5.5 4t11 0.5q6 0 29 -1.5t40 -1.5q16 0 42.5 1.5t37.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-58q-82 -110 -218 -261q-3 -3 -6 -6.5t-5.5 -5.5t-4 -4t-1.5 -3 q0 -3 9 -12q24 -22 56 -60.5t56 -70l66 -89.5l61 -83q12 -17 35 -17h28q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54.5 1.5t-59.5 1.5t-41.5 -1.5t-36.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h8q20 0 20 7q0 4 -12 20q-187 266 -196 266h-46h-8 t-4.5 -2.5t-3.5 -7.5q-4 -33 -14.5 -101t-16.5 -112.5t-6 -58.5q0 -11 2 -11h69q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54 1.5t-59 1.5t-43.5 -1.5t-38.5 -1.5q-9 0 -11.5 3t-2.5 13z" />
<glyph unicode="L" horiz-adv-x="586" d="M20 15q0 9 2.5 10.5t14.5 1.5h52q1 0 20 142.5l38 292t19 164.5q0 13 -2 13h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 43.5 -1.5t54.5 -1.5q16 0 57.5 1.5t52.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-62l-19 -144l-39 -290t-19 -152q0 -22 17 -22 q231 0 291 6q12 1 15 4t8 19l25 77q3 8 11 8q21 0 21 -10q0 -3 -5 -19l-14.5 -47t-17.5 -61q-2 -11 -20 -11q-11 0 -185.5 1.5t-190.5 1.5t-52.5 -1.5t-47.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="M" horiz-adv-x="883" d="M20 15q0 9 3 10.5t15 1.5h48l46 207.5l61 273t26 123.5q0 8 -25 8h-46q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 50 -1.5t55 -1.5q13 0 29.5 1.5t17.5 1.5q17 0 20 -13l101 -509q5 -24 10 -24t16 24q168 351 252 505q8 14 21 14h44q16 0 45 1.5t40 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-46l-7 -59l-15.5 -143l-19 -172.5t-16 -155.5t-6.5 -82h77q8 0 10.5 -2t2.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58.5 1.5t-63.5 1.5q-18 0 -56 -1.5t-40 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h39q21 3 80 594 q-188 -358 -253 -497q-9 -20 -19.5 -33t-26.5 -30t-29 -34q-10 -12 -16 -12q-13 0 -16 21q-12 72 -39.5 217l-49.5 255l-22 109q-32 -121 -56 -240q-63 -303 -63 -350h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-2 0 -36 1.5t-52 1.5q-17 0 -42 -1.5t-30 -1.5 q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="N" horiz-adv-x="824" d="M20 15q0 9 3 10.5t15 1.5h50q40 245 89 514q1 6 4 22.5t5 29.5t2 21q0 3 -5 12t-10 11t-22 2h-50q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 28.5 1.5t16.5 1.5q12 0 20 -13l329 -499q8 -12 16 -12q7 0 39.5 218.5t32.5 263.5q0 12 -2 12h-76 q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 42 -1.5t47 -1.5t44.5 1.5t39.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-42q-6 0 -80 -467q-10 -60 -16 -168q-1 -15 -4 -20t-12 -5t-28 32q-45 73 -118 180l-256 374q-15 21 -16 21q-4 0 -5 -20q0 -3 -17.5 -117 t-35 -241.5t-17.5 -165.5q0 -15 3 -15h85q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5q-18 0 -52 -1.5t-35 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="O" horiz-adv-x="734" d="M35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89t78.5 -236q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137zM127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5 t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="P" horiz-adv-x="570" d="M20 15q0 9 3 10.5t15 1.5h43q83 569 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l44 -1q44 -2 65 -2q16 0 63 2.5t54 2.5q99 0 154.5 -47.5t55.5 -123.5q0 -44 -14.5 -78.5t-38 -55.5t-56 -35t-65.5 -19.5t-70 -5.5q-16 0 -44.5 1t-31.5 1 q-16 0 -18 -9q-9 -48 -33 -259q-2 -9 8 -9h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -47.5 1.5t-52.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5zM202 335q0 -12 31 -12q59 0 107.5 15.5t83 54.5t34.5 97q0 74 -42.5 113.5t-124.5 39.5q-44 0 -45 -5 q-22 -138 -42 -284q-2 -18 -2 -19z" />
<glyph unicode="Q" horiz-adv-x="717" d="M16 -107q0 41 101 41q14 0 38 -2.5t33 -2.5q13 0 23 4q5 2 23.5 11.5l43.5 22t41 19.5q13 6 13 7l-16 2q-17 2 -43 8t-57.5 17t-63.5 34t-58 54.5t-42.5 82.5t-16.5 114q0 90 46.5 174.5t131.5 140t185 55.5q128 0 206 -85.5t78 -214.5q0 -133 -69.5 -227t-174.5 -132 q-13 -5 -27 -9t-25.5 -8.5t-28.5 -12.5q-52 -25 -91 -46q-28 -15 -28 -16t33 -9q265 -72 354 -72q30 0 53 2.5t33.5 5.5t11.5 3q5 0 5 -11q0 -1 -28 -11t-70 -20t-70 -10q-85 0 -184 22t-166 43.5t-75 21.5q-15 0 -37 -9q-35 -13 -49 -13q-33 0 -33 26zM121 290 q0 -134 73 -203.5t174 -69.5q16 0 43 17t58.5 51t59.5 78.5t47 107.5t19 129q0 114 -57.5 180t-152.5 66q-89 0 -176.5 -106.5t-87.5 -249.5z" />
<glyph unicode="R" horiz-adv-x="625" d="M20 13q0 9 3 11.5t15 2.5h41q19 106 47.5 312t35.5 282q0 15 -3 15h-61q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 17 14q1 0 15 -0.5t38.5 -1.5t53.5 -1q15 0 69.5 3.5t72.5 3.5q87 0 144.5 -45.5t57.5 -116.5q0 -44 -20 -78.5t-48.5 -53t-57 -30t-48.5 -16t-20 -5.5 t7.5 -3.5l24.5 -8t34 -12.5q113 -45 113 -164q0 -6 -1.5 -44t-1.5 -54q0 -11 3 -11h43q12 0 16 -2.5t4 -12.5q0 -15 -8 -15q-2 0 -29.5 0.5t-61.5 1.5t-53 1q-7 0 -5 13q16 94 16 157q0 48 -38 86.5t-97 50.5q-24 5 -71 5h-27q-25 0 -28 -24q-26 -182 -29 -252q0 -9 8 -9h53 q8 0 10.5 -2t2.5 -11q0 -11 -2 -14t-9 -3q-11 0 -42.5 1.5t-47.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2t-2 14zM204 350q0 -14 18 -14h7q20 0 43.5 -1.5t26.5 -1.5q53 0 108 50t55 115q0 145 -171 145q-50 0 -50 -5q-3 -25 -18.5 -143t-17.5 -132q-1 -5 -1 -13z" />
<glyph unicode="S" horiz-adv-x="505" d="M40 67q0 15 17 100q1 3 2.5 11.5t3 15t2.5 7.5t5 1q23 0 23 -10q0 -2 -7.5 -45.5t-7.5 -46.5q0 -18 64.5 -51t122.5 -33q56 0 93 35t37 88q0 42 -31.5 72.5t-76.5 52l-90 45t-76.5 65t-31.5 99.5q0 86 57.5 141t147.5 55q20 0 41 -6t37.5 -14t30 -16t21.5 -14l8 -6l8 32 q2 10 9 10h3q18 -3 18 -7q0 -3 -31 -167q-2 -12 -15 -12q-16 0 -16 12l4 14q4 14 7.5 31t3.5 24q0 2 -6 11.5t-18.5 22.5t-28.5 25t-39.5 20.5t-47.5 8.5q-57 0 -90.5 -36.5t-33.5 -95.5q0 -39 22.5 -67.5t55.5 -44l72.5 -35t72.5 -39t55.5 -57t22.5 -88.5q0 -85 -66 -136.5 t-144 -51.5q-55 0 -106.5 16.5t-77.5 35t-26 28.5z" />
<glyph unicode="T" horiz-adv-x="681" d="M20 546q0 1 6 16.5t16.5 46.5l20.5 63q3 9 7 11.5t15 2.5q10 0 10 -12v-5q0 -8 106 -8h326q103 0 104 11q1 14 14 14q11 0 13.5 -2t2.5 -9q0 -8 -1.5 -23t-3.5 -44t-4 -63q0 -10 -19 -10q-8 0 -9.5 2.5t-1.5 11.5q0 2 3 38.5t3 39.5q0 6 -107 6h-106q-9 0 -13 -20 l-27 -188l-37 -262t-17 -122q0 -14 8 -14h64q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5q-17 0 -61 -1.5t-50 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q10 0 94 569q3 24 3 26q0 11 -6 11h-137q-92 0 -95 -11l-24 -70q-4 -11 -6.5 -14 t-9.5 -3q-19 0 -19 11z" />
<glyph unicode="U" horiz-adv-x="759" d="M60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60 q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23 t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="V" horiz-adv-x="666" d="M20 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 55 1.5t50 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-55q-4 0 -4 -5q0 -26 37.5 -287t42.5 -261q3 0 30 46l69 121l79 145l118 225q4 12 3 14t-9 2h-67h-5.5t-4 0.5t-4 1.5t-2.5 2.5t-1.5 4 t-0.5 6.5q0 11 3 13t14 2q1 0 34 -1.5t65 -1.5q8 0 31 1.5t27 1.5q10 0 12.5 -3t2.5 -15q0 -9 -3 -10.5t-16 -1.5q-15 0 -18 -1t-6 -6l-314 -539q-3 -6 -21 -27.5t-33 -44.5q-22 -33 -37 -33q-8 0 -11.5 10.5t-8.5 50.5q-20 146 -56.5 368t-43.5 222h-40q-6 0 -8 0.5t-5 1.5 t-4 4t-1 9z" />
<glyph unicode="W" horiz-adv-x="1010" d="M20 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52 1.5t47 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-53q-4 0 -4 -5q0 -26 35.5 -285.5t40.5 -259.5t88 149l139 255q-18 146 -21 146h-43h-5.5t-4 0.5t-4 1.5t-2.5 2.5t-1.5 4t-0.5 6.5 q0 7 2 10.5t5 4t11 0.5q6 0 37 -1.5t48 -1.5q16 0 67.5 1.5t59.5 1.5q10 0 12.5 -3t2.5 -15q0 -9 -3 -10.5t-16 -1.5h-73q-3 0 -3 -19q0 -14 32 -278.5t36 -264.5q3 0 30 49.5l66.5 127l76 149.5l71 141.5t39.5 78.5q4 12 3 14t-9 2h-64q-6 0 -8 0.5t-5 1.5t-4 4t-1 9 q0 11 3 13t14 2q1 0 32.5 -1.5t63.5 -1.5q8 0 32 1.5t28 1.5q10 0 12.5 -3t2.5 -15q0 -9 -3 -10.5t-16 -1.5h-11.5t-8 -0.5t-5.5 -1t-3.5 -2.5t-3 -3.5t-3 -6t-3.5 -7.5q-147 -285 -194 -369l-88 -156q-3 -6 -21.5 -28t-32.5 -44q-22 -33 -37 -33q-8 0 -11.5 10.5t-8.5 50.5 q-22 154 -62 394l-195 -350q-3 -6 -21.5 -28t-32.5 -44q-22 -33 -35 -33q-8 0 -11.5 10.5t-8.5 50.5q-20 147 -55.5 368.5t-40.5 221.5h-40q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="X" horiz-adv-x="661" d="M20 12q0 6 0.5 9t3 4.5t4.5 1.5h8h26q5 0 39.5 43.5l95.5 123l104 131.5q8 9 8 10t-4 11l-125 254q-17 34 -22 34h-43h-5.5t-4 0.5t-4 1.5t-2.5 2.5t-1.5 4t-0.5 6.5q0 7 2 10.5t5 4t11 0.5q6 0 42 -1.5t53 -1.5q16 0 53.5 1.5t48.5 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -3 -10.5t-15 -1.5h-41q-11 0 -11.5 -2t3.5 -13q13 -43 85 -193q19 -39 20 -39q2 0 30 39q140 195 140 204q0 4 -3 4h-46q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 31.5 -1.5t36.5 -1.5q17 0 43.5 1.5t32.5 1.5q11 0 13.5 -2t2.5 -13t-3 -13t-13 -2h-29 q-4 0 -57.5 -66.5l-104.5 -133.5l-52 -67q-6 -8 -1 -16l58.5 -110.5l82 -152t39.5 -61.5h47q6 0 8 -0.5t5 -1.5t4 -4t1 -9q0 -7 -2 -10.5t-5 -4t-11 -0.5q-6 0 -44.5 1.5t-55.5 1.5q-16 0 -60.5 -1.5t-55.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h47q11 0 12.5 2.5 t-3.5 12.5q-14 34 -66.5 142l-58.5 120q-5 6 -6 5.5t-9 -10.5l-114 -154t-72 -114q0 -4 13 -4h41q12 0 15 -1.5t3 -10.5q0 -13 -2 -15.5t-12 -2.5q-4 0 -36 1.5t-49 1.5t-38.5 -1.5t-24.5 -1.5q-10 0 -13 2t-3 13z" />
<glyph unicode="Y" horiz-adv-x="613" d="M20 654q0 7 2 10.5t5 4t11 0.5q6 0 45 -1.5t56 -1.5q16 0 46.5 1.5t41.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-31q-10 0 -11 -2t3 -13q13 -44 103 -265q6 -12 8 -12q5 0 16 18l35 52l46 68l43 65t34.5 56.5t12.5 29.5v3h-53q-13 0 -15.5 1.5t-2.5 10.5 q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 42.5 1.5t31.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -45.5 -58l-97 -133t-80.5 -116q-5 -9 -8 -22q-44 -260 -44 -270q0 -13 5 -13h63q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -50 1.5t-55 1.5t-49.5 -1.5t-44.5 -1.5q-9 0 -11.5 3t-2.5 13q0 9 3 11.5t15 2.5h42q6 0 30 143l15 90q5 27 5 41l-146 338h-47q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="Z" horiz-adv-x="599" d="M35 15q0 7 215 308t215 303q0 3 -24 3h-256q-42 0 -44 -10l-5.5 -28l-6 -32t-2.5 -15q-3 -10 -8 -11h-5q-21 0 -21 7q0 2 4.5 24.5t10.5 56t9 59.5q0 6 16 6q14 0 14 -5v-9q0 -11 57 -11h348q10 0 13.5 -3t3.5 -12q0 -6 -187 -275q-224 -322 -224 -329q0 -10 11 -10 l304 3q15 0 21 15q8 23 23 89q2 8 14 8q20 0 20 -12q0 -2 -6.5 -27l-15 -56.5t-11.5 -43.5q-2 -11 -22 -11q-57 0 -229.5 1.5t-223.5 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="[" horiz-adv-x="296" d="M80 -126v801q0 9 2 12t10 3h151q9 0 11 -1.5t2 -7.5v-14q0 -9 -2 -11t-11 -2h-105q-9 0 -11 -2t-2 -10v-735q0 -12 13 -12h105q6 0 8.5 -0.5t3.5 -3t1 -9.5v-12q0 -6 -2 -8.5t-11 -2.5h-150q-9 0 -11 2.5t-2 12.5z" />
<glyph unicode="\" horiz-adv-x="406" d="M10 693q0 12 21 12q14 0 19.5 -3.5t9.5 -14.5l317 -850q19 -55 19 -57q0 -13 -26 -13q-13 0 -18.5 4.5t-13.5 26.5l-314 851q-14 36 -14 44z" />
<glyph unicode="]" horiz-adv-x="296" d="M40 -118q0 9 2 11t11 2h105q9 0 11 2t2 10v735v6t-1.5 3.5t-4 2t-7.5 0.5h-105q-6 0 -8.5 0.5t-3.5 3t-1 9.5v12q0 7 2 9t11 2h150q9 0 11 -2.5t2 -12.5v-801q0 -9 -2 -12t-10 -3h-151q-9 0 -11 1.5t-2 7.5v14z" />
<glyph unicode="^" horiz-adv-x="402" d="M51 311l146 320q2 1 6 1t6 -1l146 -320q-15 -3 -26 -3q-9 0 -26 3l-102 232l-98 -232q-18 -3 -28 -3q-11 0 -24 3z" />
<glyph unicode="_" horiz-adv-x="410" d="M25 -43q0 18 16 18h331q13 0 13 -17v-5q0 -23 -13 -23h-334q-13 0 -13 19v8z" />
<glyph unicode="`" horiz-adv-x="400" d="M128 575q0 31 34 31q21 0 26 -24l26 -125v-3l1 -3q0 -2 -4 -2h-15q-4 0 -7 6l-57 107q-4 7 -4 13z" />
<glyph unicode="a" horiz-adv-x="433" d="M25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72 t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="b" horiz-adv-x="453" d="M25 12q0 4 13 23q5 7 8 19q30 158 58.5 349t28.5 220q0 7 -7 7q-4 0 -41 -11t-41 -11q-9 0 -9 25q0 10 5 11q155 38 164 38q12 0 12 -10q0 -6 -17.5 -117.5t-22.5 -140.5l-49 -251q51 85 87 133q38 51 64.5 71.5t71.5 20.5q41 0 64 -23q14 -14 14 -42q0 -72 -28.5 -137 t-69.5 -106t-84 -64.5t-76 -23.5q-20 0 -40 7t-32.5 14t-15.5 7q-4 0 -20 -8q-20 -8 -27 -8q-10 0 -10 8zM112 80q0 -25 17 -42.5t51 -17.5q41 0 84.5 51t69 112.5t25.5 98.5q0 23 -10 41t-32 18q-41 0 -83 -59l-48.5 -68l-36.5 -54.5t-28.5 -49t-8.5 -30.5z" />
<glyph unicode="c" horiz-adv-x="402" d="M25 128q0 114 71 188.5t150 74.5q58 0 86 -31q22 -24 22 -56q0 -21 -12 -35t-31 -14q-22 0 -22 37q0 4 0.5 12t0.5 12q0 20 -11.5 34t-35.5 14q-28 0 -57 -18.5t-49 -48.5q-47 -71 -47 -153q0 -16 2.5 -28.5t11 -32.5t32 -31.5t60.5 -11.5q38 0 76.5 19.5t61.5 39 t24 19.5q3 0 7.5 -5t4.5 -9q0 -5 -30 -31.5t-82 -54t-96 -27.5q-73 0 -105 40t-32 97z" />
<glyph unicode="d" horiz-adv-x="473" d="M25 74q0 34 14.5 83.5t40 100t68 86t92.5 35.5q17 0 33.5 -3t25 -6.5t18 -8.5t10.5 -5q9 -4 12 -2t5 12q6 31 15 91.5l15.5 107t6.5 47.5q5 17 -4 17q-2 0 -44 -10.5t-45 -10.5q-5 0 -3 21q1 8 2.5 9.5t7.5 3.5q39 8 76 17.5t55 14.5t20 5q11 0 11 -15q0 -3 -50 -288 t-50 -316q0 -15 13 -15t35.5 18.5t39.5 36.5t18 18q3 0 6.5 -3t3.5 -5q0 -5 -22 -32t-61.5 -56t-75.5 -29q-12 0 -19.5 9.5t-7.5 25.5q0 18 10.5 70.5t20.5 95.5l10 43q-38 -72 -89 -139l-30.5 -39t-29 -30.5t-37 -25t-40.5 -7.5q-10 0 -19.5 2t-24.5 9t-24 24t-9 43z M91 102q0 -56 46 -56q41 0 138 140q54 82 54 118q0 14 -29 33.5t-60 19.5q-41 0 -77 -49t-54 -107t-18 -99z" />
<glyph unicode="e" horiz-adv-x="390" d="M25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200 q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="f" horiz-adv-x="284" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q9 98 42 157q46 80 101 112q48 28 91 28q24 0 48.5 -12.5 t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -37.5 18.5t-43.5 18.5q-75 0 -109 -254q-1 -6 -1 -9q-1 -3 2 -4.5t6 -1.5h82q5 0 5 -2q0 -8 -2 -14q-2 -9 -7 -9h-80q-7 0 -7.5 -1t-2.5 -10q-2 -11 -13 -91l-23.5 -164.5l-20.5 -134.5q-3 -17 -11 -44.5t-31 -70.5t-52 -65 q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="g" horiz-adv-x="426" d="M-6 -157q0 39 29.5 67t61.5 42q12 6 12 8q0 1 -3 2.5t-7.5 3.5t-7.5 4q-25 18 -25 33q0 7 18 35.5t27 31.5l60 22l6 3q0 2 -7 4q-14 4 -28 11.5t-31.5 22t-28 40t-10.5 57.5q0 70 51.5 119.5t125.5 49.5q18 0 35 -4.5t28 -11.5t19 -13.5t12 -11t5 -4.5q2 0 7.5 11.5 t12 26.5t8.5 19q5 9 21 9q27 0 27 -11q0 -12 -11.5 -33t-23 -38t-11.5 -18q0 -6 3 -13q7 -18 7 -40q0 -73 -53 -121q-26 -24 -51.5 -35t-74.5 -24q-93 -27 -93 -47q0 -9 10.5 -16t37 -13.5t41.5 -9t55 -8.5q17 -3 26 -4q65 -11 98 -30.5t33 -64.5q0 -75 -67 -110t-173 -35 q-44 0 -79.5 7t-63.5 29t-28 58zM36 -151q0 -21 18 -36.5t46.5 -22t53.5 -9.5t50 -3q62 0 101 22.5t39 66.5q0 32 -26 46t-78 23q-98 17 -107 17q-8 0 -32 -11q-65 -32 -65 -93zM123 229q0 -60 24.5 -87t49.5 -27q40 0 78.5 48.5t38.5 115.5q0 37 -22 67t-56 30 q-50 0 -81.5 -48.5t-31.5 -98.5z" />
<glyph unicode="h" horiz-adv-x="468" d="M25 6q0 2 7 33.5t18 88l23.5 127t26 168.5t23.5 196q2 19 -4 19q-10 0 -49 -14l-38 -13q-3 0 -3 14q0 13 7 16q30 11 83 22.5t72 11.5q6 0 6 -15q-5 -101 -93 -537q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22 q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5t-60.5 -58.5t-72.5 -30q-18 0 -29.5 10.5t-11.5 27.5q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8z" />
<glyph unicode="i" horiz-adv-x="270" d="M25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5 q-4 0 -8 4.5t-4 8.5zM128 549q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="j" horiz-adv-x="297" d="M-69 -221q0 15 10 25.5t25 10.5q18 0 38 -12.5t37 -12.5q10 0 17.5 7.5t14 26.5t9.5 31.5t9 42.5q19 93 43 242t24 170q0 18 -12 18q-11 0 -35 -22t-43.5 -44.5t-20.5 -22.5q-4 0 -8 3.5t-4 7.5t30 36t71.5 64.5t66.5 32.5q21 0 21 -24q0 -21 -12.5 -103t-27 -167 t-15.5 -92q-7 -45 -14 -73.5t-28.5 -72.5t-53.5 -68q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23zM157 579q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="k" horiz-adv-x="450" d="M25 -3q0 8 21 107t48.5 249.5t38.5 269.5q0 9 -7 9q-8 0 -75 -19q-6 -1 -7.5 2t0.5 17q2 8 6 9l77.5 20l53.5 14t19 4q14 0 14 -11q0 -16 -97 -489q36 69 72 117q33 43 66.5 64t82.5 21q59 0 59 -37q0 -42 -32.5 -78t-67.5 -53t-65 -24q-21 -3 -21 -4l4 -2 q4 -2 10.5 -6.5t12.5 -9.5q47 -45 73 -77q16 -20 24 -28.5t22.5 -16.5t31.5 -8q34 0 34 27q0 4 -1 10.5t-1 9.5q0 12 8 12t14.5 -10.5t6.5 -32.5t-38.5 -38.5t-72.5 -16.5q-22 0 -43 20q-11 10 -23.5 25t-29 37.5t-24.5 32.5q-10 13 -23.5 28.5t-20 24t-6.5 9.5q0 5 17 22 q2 2 10 2q16 0 28 5q37 17 71 53.5t34 70.5q0 20 -31 20q-29 0 -63 -32q-9 -9 -18.5 -20t-20.5 -26.5l-18.5 -26.5l-21.5 -33t-21 -32q-17 -27 -24 -58q-15 -64 -21 -98q-3 -22 -10 -22q-1 0 -11 -1.5t-22 -3t-17 -1.5t-5 3z" />
<glyph unicode="l" horiz-adv-x="272" d="M55 28q0 6 18 106.5l42 243t35 234.5q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9q0 -12 -50 -305.5t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5 t-71.5 -62t-73.5 -31.5q-29 0 -29 38z" />
<glyph unicode="m" horiz-adv-x="739" d="M15 255q0 11 69 64.5t101 53.5q18 0 18 -19q0 -28 -5 -63.5t-16 -95.5t-14 -78q114 262 225 262q16 0 25 -14t9 -33q0 -82 -57 -251q2 4 20 37.5l29.5 53.5l32.5 55.5t39.5 57.5t41 46t45.5 36t45 12q51 0 51 -34q0 -28 -36.5 -141t-36.5 -131q0 -24 18 -24q12 0 53 41 l40 41q3 0 7.5 -5t4.5 -7q0 -4 -28.5 -33.5t-69 -59.5t-65.5 -30q-15 0 -25 8.5t-10 20.5q0 17 39 136.5t39 152.5q0 8 -5.5 15t-15.5 7q-39 0 -125 -133q-64 -98 -90 -188q-3 -10 -14 -12q-24 -3 -42 -3q-8 0 -8 7l29 110q29 110 29 179q0 37 -21 37q-18 0 -37 -25 q-63 -76 -108 -167q-17 -34 -41 -118q-5 -17 -11 -20q-36 -14 -49 -14q-7 0 -5 10q12 51 28.5 151.5t16.5 145.5q0 17 -14 17q-11 0 -33.5 -18.5t-41 -37.5t-19.5 -19q-12 0 -12 17z" />
<glyph unicode="n" horiz-adv-x="515" d="M15 287q0 2 29.5 26t72.5 48.5t70 24.5q21 0 21 -21t-6 -55t-12 -57l-19.5 -72.5t-16.5 -62.5q74 131 134.5 199.5t116.5 68.5q51 0 51 -44q0 -29 -38.5 -145t-38.5 -127q0 -20 19 -20q13 0 34.5 18.5t38 37t17.5 18.5q3 0 7.5 -4.5t4.5 -6.5q0 -5 -24 -31.5t-63.5 -53.5 t-72.5 -27q-15 0 -23.5 11.5t-8.5 29.5q0 28 40 135t40 138q0 12 -6 20.5t-16 8.5q-26 0 -79 -66.5t-100 -141.5q-22 -36 -44 -112q-7 -25 -15 -26q-40 -4 -48 -4q-7 0 -5 10q60 249 60 312q0 18 -13 18q-14 0 -54 -32l-39 -32q-3 0 -8.5 5t-5.5 12z" />
<glyph unicode="o" horiz-adv-x="419" d="M25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="p" horiz-adv-x="486" d="M10 225l11 18.5t29.5 40.5t44 51.5t51 41t55.5 18.5q17 0 17 -31q0 -21 -8 -79t-16 -106l-8 -48q43 107 100 194q37 57 99 57q44 0 60 -23.5t16 -67.5q0 -110 -74 -204t-151 -94q-11 0 -32 3.5t-24 3.5q-12 0 -13 -8l-32 -209q-5 -23 9 -24q16 -2 40 -4q14 -1 19.5 -1.5 t11 -2t7 -4t1.5 -6.5q0 -14 -4.5 -17.5t-15.5 -3.5q-1 0 -27 3.5t-67.5 7t-79.5 3.5q-17 0 -17 10q0 14 3.5 18t15.5 4h16q12 0 16 3.5t6 17.5q47 272 62.5 371t15.5 146q0 18 -12 18q-15 0 -41 -28t-46.5 -56t-21.5 -28q-4 0 -10 5.5t-6 9.5zM181 51q0 -32 64 -32 q33 0 69.5 42.5t60.5 103.5t24 113q0 64 -44 64q-15 0 -29.5 -9.5t-29 -30t-22.5 -34t-22 -41.5l-16 -32q-55 -105 -55 -144z" />
<glyph unicode="q" horiz-adv-x="455" d="M25 74q0 36 17.5 87t48 101t79.5 84.5t104 34.5q41 0 86 -20l14 -6q4 0 16 7q1 1 6.5 4t12 5.5t11.5 3.5q4 1 7 -2t3 -8q0 -3 -27 -61q-5 -13 -7 -25l-90 -515q0 -11 14 -11q33 0 52 -2q12 -1 12 -16v-7t-0.5 -5t-2.5 -4.5t-5 -1.5t-8 -1q-1 0 -13.5 1t-32.5 1.5t-39 0.5 q-14 0 -34.5 -1.5t-36 -3.5t-16.5 -2q-5 0 -7 0.5t-4 3t-2 8.5q1 13 4.5 16t16.5 5q2 0 6.5 1t6 1t4.5 0.5t3.5 1.5t2.5 1.5t2.5 2t2 3t2 4l1 5t1.5 6.5q3 14 16.5 72.5t29.5 141.5l47 252q-31 -69 -82 -139q-75 -105 -138 -105q-9 0 -20.5 2.5t-27 10t-26 25t-10.5 43.5z M89 99q0 -27 14 -43t33 -16q41 0 142 146q64 98 64 132q0 12 -19 27.5t-49 15.5q-61 0 -123 -99t-62 -163z" />
<glyph unicode="r" horiz-adv-x="341" d="M25 291q0 11 50.5 53t79.5 42q18 0 18 -20q0 -17 -27 -176l4 -1q47 121 62 149q29 55 72 55q18 0 32.5 -10t14.5 -26q0 -37 -22 -37q-11 0 -28 9t-27 9q-14 0 -25 -17q-23 -35 -57 -125q-2 -6 -11 -38q-9 -36 -19.5 -86.5l-13.5 -64.5q-1 -4 -21.5 -7.5t-30.5 -3.5t-10 4 q0 2 12 63.5t24 133t12 96.5q0 38 -13 38q-11 0 -27 -12.5t-27.5 -25.5t-12.5 -13q-9 0 -9 11z" />
<glyph unicode="s" horiz-adv-x="336" d="M20 61q0 11 8.5 18t15.5 7q5 0 8.5 -0.5t7.5 -2t6 -2.5t5.5 -4t5 -4t5.5 -5.5t5 -5.5l13 -13.5l11.5 -12t9.5 -8t12 -6t13 -1.5q30 0 50.5 20t20.5 53q0 20 -22.5 44t-49.5 42.5t-49.5 46.5t-22.5 56q0 47 39 81.5t92 34.5q31 0 52 -8t30 -20t12 -21t3 -15q0 -17 -18 -17 q-29 0 -48 35q-15 27 -32 27q-27 0 -48 -15t-21 -48q0 -26 15 -47.5t36 -37l42.5 -31.5t36.5 -40t15 -54q0 -45 -39 -78.5t-92 -33.5q-46 0 -87 21.5t-41 44.5z" />
<glyph unicode="t" horiz-adv-x="284" d="M35 346q0 1 0.5 9t0.5 10q0 7 8 7h61q9 0 11 8q10 55 16 101q2 10 4.5 13t13.5 4q5 1 21 1q28 0 28 -5q0 -1 -5.5 -25l-11.5 -51.5t-7 -35.5q-1 -7 0.5 -8.5t9.5 -1.5h73q9 0 9 -8q0 -22 -13 -22h-73h-7t-3.5 -1.5t-1.5 -2.5t-1 -6q-41 -220 -41 -247q0 -21 19 -21 q11 0 37 22.5t48.5 45t23.5 22.5q2 0 8 -4.5t6 -6.5q0 -4 -31.5 -39t-76.5 -70.5t-72 -35.5q-35 0 -35 34q0 10 26.5 153.5t26.5 145.5v4q1 5 -0.5 6t-8.5 1h-47q-16 0 -16 4z" />
<glyph unicode="u" horiz-adv-x="521" d="M15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5 q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z " />
<glyph unicode="v" horiz-adv-x="443" d="M10 299q0 11 45 52t69 41q25 0 42 -10q24 -14 31.5 -21.5t7.5 -23.5q0 -38 -12.5 -130t-12.5 -107q0 -12 14 -24t20 -12q14 0 23 11q2 2 31 41q31 42 47.5 66.5t35.5 68.5t19 80q0 40 -25 40q-11 0 -25 -2.5t-23.5 -4.5t-10.5 -2q-6 0 -6 16q0 5 38.5 14t59.5 9 q19 0 29.5 -8t10.5 -32q0 -44 -27 -101t-52.5 -92.5t-77.5 -101.5q-9 -12 -14 -18q-11 -15 -23 -34t-24 -19q-15 0 -41 21q-23 18 -31 33t-8 48q0 17 10 102.5t10 119.5q0 16 -10 23q-14 8 -24 8q-15 0 -33.5 -16t-31.5 -32t-14 -16q-5 0 -11 5t-6 8z" />
<glyph unicode="w" horiz-adv-x="681" d="M10 302q0 10 50 47t74 37q15 0 45 -18q31 -21 31 -46q0 -30 -6 -85t-12.5 -98t-6.5 -44q0 -13 12.5 -27t21.5 -14q10 0 22 18l47 68t50 71q13 16 23.5 47t10.5 45q0 12 -20 32q-4 4 -8.5 8t-8 6t-6 4t-3.5 3.5t-1 2.5q0 9 14 22.5t24 13.5q16 0 43.5 -23.5t27.5 -37.5 q0 -15 -15 -117t-15 -122q0 -16 13 -29.5t25 -13.5q9 0 30 25q57 66 88 111q44 65 45 141q0 33 -21 33q-11 0 -30 -3t-33.5 -6t-15.5 -3q-6 0 -6 17q0 4 53.5 15.5t63.5 11.5q20 0 30 -7.5t10 -31.5q0 -57 -48.5 -140t-116.5 -151l-48 -50q-10 -10 -16 -10q-35 0 -58.5 23 t-23.5 54q0 4 29 153q-83 -129 -125 -183q-3 -5 -13 -19l-13 -18q-11 -15 -21 -15q-14 0 -41 22q-22 17 -28.5 28.5t-6.5 36.5q0 13 11 84.5t11 127.5q0 13 -15.5 29.5t-28.5 16.5q-15 0 -34 -14t-32 -28.5t-14 -14.5q-5 0 -9.5 5.5t-4.5 9.5z" />
<glyph unicode="x" horiz-adv-x="458" d="M15 23q0 33 26 91q3 5 8 5q3 0 8.5 -2.5t5.5 -5.5q0 -1 -2.5 -8.5t-5 -18t-2.5 -19.5q0 -22 21 -22t64 46.5t75 89.5q6 9 2 21q-53 148 -100 148q-19 0 -46.5 -28.5t-28.5 -28.5q-4 0 -7.5 4.5t-3.5 8.5t15.5 23.5t45 40t58.5 20.5t49 -17t28.5 -34t27.5 -69q5 -13 8 -20 q2 -6 4 -7.5t3.5 0.5t4.5 7q1 1 1 2l17.5 28.5t21.5 34t22 30t26 28.5t26 17t29 8q12 0 18.5 -11.5t6.5 -28.5l-8 -56q0 -2 -4.5 -2.5t-8.5 0.5t-4 2q0 6 0.5 16.5t0.5 15.5q0 25 -17 25q-32 0 -121 -133q-6 -8 -2 -20q52 -152 88 -152q12 0 26.5 16.5t24 33t10.5 16.5 q4 0 10.5 -2.5t6.5 -5.5q0 -19 -39.5 -66t-72.5 -47q-11 0 -20.5 3.5t-17.5 13.5l-14 18t-13 26.5l-11 28.5t-12 34.5t-12 35.5q-3 9 -8 2q-2 -2 -3 -4l-33.5 -43l-43.5 -54.5t-45 -41t-49 -19.5q-34 0 -34 26z" />
<glyph unicode="y" horiz-adv-x="422" d="M-13 -262q0 11 4 19t13 13.5t16.5 8t21 6.5t19.5 6q33 12 54 49q37 69 48 105.5t11 71.5q0 320 -69 320q-18 0 -37 -15.5t-31 -30.5t-13 -15t-4.5 1t-6.5 3.5t-3 5.5q0 4 16.5 26.5t47.5 46t61 23.5q56 0 75 -86q12 -52 20 -241q1 -6 1 -12l35 64.5t48 94t29 74.5t17 101 q1 17 11 17q12 0 24 -7t12 -18q0 -5 -2 -17q-12 -76 -148 -311l-29 -49l-10 -19q-82 -157 -101 -190q-11 -20 -39 -37q-58 -35 -74 -35q-8 0 -12.5 9t-4.5 18z" />
<glyph unicode="z" horiz-adv-x="414" d="M25 2q0 8 4.5 16t15 18.5l11.5 11.5l238 265q5 6 2.5 7t-7.5 -1q-2 0 -3 -0.5t-3 -0.5h-3q-23 0 -75.5 16t-67.5 16q-16 0 -31.5 -12t-25 -24t-10.5 -12q-4 0 -8.5 3t-4.5 5q0 4 13.5 24t38.5 41t49 21q23 0 84 -22t82 -22q8 0 23 18.5t27 18.5q6 0 10.5 -5t4.5 -11 q0 -11 -11 -20.5t-27 -17.5t-21 -14l-220 -244q-4 -5 -5 -6.5t2 -3.5t13 -2q42 -2 120 -8t97 -6q9 0 12 4t3 14v13q-1 14 -1 15q0 6 11 6q9 0 9 -5q1 -14 3 -35.5t3.5 -35t1.5 -15.5q0 -14 -36 -14h-7q-23 0 -125.5 8t-145.5 8q-4 0 -13 -12t-16 -12q-11 0 -11 12z" />
<glyph unicode="{" horiz-adv-x="307" d="M40 274q0 6 5.5 9t14.5 4t18.5 7.5t18.5 18t14.5 38t5.5 65.5v80q0 36 0.5 53.5t3 42.5t8 36.5t15 26t24.5 20t36.5 10t50.5 4.5q8 0 10 -2t2 -11t-2.5 -11t-11.5 -2q-43 0 -63.5 -19t-20.5 -73v-149q0 -72 -9.5 -100t-48.5 -41q-15 -6 -15 -7t15 -7q39 -13 48.5 -41 t9.5 -100v-149q0 -54 20.5 -73t63.5 -19q6 0 8.5 -0.5t4 -3.5t1.5 -9q0 -9 -2 -11t-10 -2q-29 0 -50.5 4.5t-36.5 10t-24.5 20t-15 26t-8 36.5t-3 42.5t-0.5 53.5v80q0 39 -5.5 65.5t-14.5 38t-18.5 18t-18.5 7.5t-14.5 4t-5.5 9z" />
<glyph unicode="|" horiz-adv-x="247" d="M100 -187v933q0 10 4 13t14 3h7q15 0 18.5 -2.5t3.5 -14.5v-932q0 -9 -0.5 -12.5t-3 -6.5t-8.5 -3h-21q-10 0 -12 3t-2 19z" />
<glyph unicode="}" horiz-adv-x="307" d="M40 -128q0 9 3 11t11 2q43 0 63.5 19t20.5 73v149q0 72 9.5 100t48.5 41q15 6 15 7t-15 7q-39 13 -48.5 41t-9.5 100v149q0 54 -20.5 73t-63.5 19q-6 0 -8.5 0.5t-4 3.5t-1.5 9q0 9 2 11t10 2q29 0 50.5 -4.5t36.5 -10t24.5 -20t15 -26t8 -36.5t3 -42.5t0.5 -53.5v-80 q0 -39 5.5 -65.5t14.5 -38t18.5 -18t18.5 -7.5t14.5 -4t5.5 -9t-5.5 -9t-14.5 -4t-18.5 -7.5t-18.5 -18t-14.5 -38t-5.5 -65.5v-80q0 -36 -0.5 -53.5t-3 -42.5t-8 -36.5t-15 -26t-24.5 -20t-36.5 -10t-50.5 -4.5q-8 0 -10 2t-2 11z" />
<glyph unicode="~" horiz-adv-x="793" d="M45 117q0 5 4 17q6 23 17 46t31.5 51.5t54.5 46.5t76 18q48 0 101.5 -22.5t93 -49.5t88 -49.5t86.5 -22.5q26 0 48.5 16t37 41.5t22 43t12.5 34.5q2 8 4.5 8.5t10.5 -1.5q11 -3 11 -7q0 -3 -1 -6q-7 -28 -19.5 -54.5t-33 -54.5t-54 -45t-73.5 -17q-50 0 -104.5 21.5 t-95 47.5t-89.5 47.5t-89 21.5q-27 0 -48 -14t-34 -36.5t-19.5 -40t-10.5 -35.5q-4 -14 -7 -14q-2 0 -10 2q-10 2 -10 7z" />
<glyph unicode="&#xa1;" horiz-adv-x="220" d="M5 9q0 2 2 12q33 148 86 477q1 5 12 5q13 0 13 -4q0 -23 -20 -183q-27 -211 -34 -302q-1 -22 -29 -22h-5q-25 0 -25 17zM65 606q0 23 14.5 37t25.5 14q19 0 34.5 -16.5t15.5 -29.5q0 -19 -15.5 -35.5t-30.5 -16.5q-14 0 -29 16t-15 31z" />
<glyph unicode="&#xa2;" horiz-adv-x="407" d="M42 153q0 104 57.5 169t131.5 75q4 0 6 0.5t3 3t1.5 4t1.5 6.5q2 15 5 32.5t4.5 28t2.5 15.5q0 6 2 6q19 0 19 -3l-14 -79v-6q-1 -5 6 -6q2 -1 4 -1q40 -7 68.5 -32.5t28.5 -57.5q0 -16 -11 -25q-17 -13 -29 -13q-13 0 -15 11q-2 7 -5 22.5t-5.5 23.5t-7 18t-12 16 t-18.5 9q-2 1 -4 1q-5 0 -8 -11l-51 -312q-1 -10 4 -11q12 -3 27 -3q28 0 55 7.5t43 15t17 7.5q7 0 6 -8q-1 -5 -18.5 -20t-55.5 -30.5t-79 -15.5h-4q-6 0 -8 -8q-18 -112 -20 -112q-16 0 -16 2q0 1 2 14.5t7 41.5t9 54q1 10 -6 11q-2 1 -4 1q-57 11 -88.5 53t-31.5 106z M104 182q0 -96 69 -134q6 -3 7 -3q2 0 3 7l51 308v6q0 5 -2 5q-4 0 -8 -1q-52 -12 -86 -67.5t-34 -120.5z" />
<glyph unicode="&#xa3;" horiz-adv-x="489" d="M20 -16q0 5 1.5 8.5t4.5 6.5l5.5 5.5t8 4.5t8 3.5t9.5 2.5t8.5 1.5t8.5 1.5l7 1q24 4 38 93q12 82 13 120q0 12 -2 14t-13 2h-66q-7 0 -6 13q1 7 2 9t6 2h71q12 0 12 5v4t1 20t4.5 51.5t8.5 69.5q10 73 41.5 130t83.5 83q38 18 80 18q46 0 77 -27t31 -80q0 -62 -25 -62 q-12 0 -18.5 11.5t-6.5 26.5q0 9 3.5 28t3.5 29q0 17 -22 33.5t-52 16.5q-87 0 -116 -110q-18 -69 -35 -237q-1 -9 0.5 -9.5t12.5 -0.5h107q5 0 6 -2t1 -10q0 -12 -11 -12h-107q-10 0 -11.5 -1t-2.5 -7q-1 -5 -2 -8q-19 -93 -61 -177q0 -1 -4.5 -10.5t-4.5 -10.5t1.5 -1t5 1 t5.5 1.5t6.5 2.5t5.5 2q21 9 54 9q29 0 100.5 -11.5t84.5 -11.5q57 0 57 37q0 6 -3 12.5t-6 10.5t-9.5 11t-7.5 9q-6 8 -5 11t11 7q4 2 16 2q14 0 22 -15t8 -33q0 -45 -37 -68.5t-85 -23.5q-32 0 -129.5 14t-102.5 14q-8 0 -33.5 -24t-40.5 -24q-16 0 -16 18z" />
<glyph unicode="&#xa4;" horiz-adv-x="494" d="M25 8q0 10 17 27l61 62q-35 48 -35 107q0 60 34 105l-60 62q-17 17 -17 27t7.5 17t16.5 7q12 0 28 -16l62 -62q46 35 105 35t106 -35l62 62q16 16 27 16q10 0 17.5 -7.5t7.5 -16.5q0 -10 -17 -27l-62 -63q37 -50 37 -106q0 -55 -37 -104l62 -63q17 -17 17 -27t-8 -17.5 t-17 -7.5q-10 0 -27 17l-62 62q-47 -36 -106 -36t-105 35l-62 -61q-16 -16 -28 -16q-10 0 -17 7.5t-7 16.5zM119 202q0 -53 37 -89.5t88 -36.5t88.5 37.5t37.5 89.5t-37.5 90.5t-88.5 38.5q-52 0 -88.5 -38.5t-36.5 -91.5z" />
<glyph unicode="&#xa5;" horiz-adv-x="613" d="M20 654q0 7 2 10.5t5 4t11 0.5q6 0 45 -1.5t56 -1.5q16 0 46.5 1.5t41.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-31q-10 0 -11 -2t3 -13q13 -44 103 -265q6 -12 8 -12q5 0 16 18l35 52l46 68l43 65t34.5 56.5t12.5 29.5v3h-53q-13 0 -15.5 1.5t-2.5 10.5 q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 42.5 1.5t31.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-3 0 -75 -98l-123 -172h133q3 0 3 -12t-3 -12h-149l-9 -13q-5 -9 -8 -22l-11 -63h157q3 0 3 -12t-3 -12h-161q-29 -172 -29 -183 q0 -13 5 -13h63q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50 1.5t-55 1.5t-49.5 -1.5t-44.5 -1.5q-9 0 -11.5 3t-2.5 13q0 9 3 11.5t15 2.5h42q6 0 26 120l13 76h-147q-2 0 -2.5 12t2.5 12h151l2 13q5 27 5 41q0 1 -18 44h-120q-2 0 -2.5 12t2.5 12h110l-118 270h-47 q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xa6;" horiz-adv-x="247" d="M100 -187v376q0 14 11 14h25q11 0 11 -14v-376q0 -9 -0.5 -12.5t-3 -6.5t-8.5 -3h-21q-10 0 -12 3t-2 19zM100 379v367q0 10 4 13t14 3h7q15 0 18.5 -2.5t3.5 -14.5v-366q0 -12 -2.5 -15.5t-11.5 -3.5h-18q-10 0 -12.5 3t-2.5 16z" />
<glyph unicode="&#xa7;" horiz-adv-x="381" d="M40 310q0 67 69 118q7 5 -2 18q-44 68 -44 110q0 52 34 86.5t91 34.5q41 0 77.5 -11t36.5 -34q0 -27 -37 -27q-22 0 -54.5 15.5t-54.5 15.5q-58 0 -58 -42q0 -28 38 -84t83.5 -111.5t83.5 -130t38 -136.5q0 -43 -66 -94q-10 -9 -10 -12q0 -2 7 -14q42 -76 42 -114 q0 -56 -39 -90t-107 -34q-103 0 -103 44q0 10 8.5 16.5t19.5 6.5q7 0 43 -13q34 -12 72 -12q32 0 52 13t20 39q0 25 -37.5 80t-82.5 111t-82.5 127t-37.5 124zM78 357q0 -33 37 -102.5t69 -117t61 -85.5q7 -10 10 -10t14 10q33 31 33 50q0 21 -11 51t-25 56.5t-37.5 63 t-37.5 56l-36.5 50.5t-23.5 32t-3 4t-2.5 3.5t-2.5 0.5t-4 -1.5l-6 -4.5q-35 -27 -35 -56z" />
<glyph unicode="&#xa8;" horiz-adv-x="400" d="M89 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM229 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="&#xa9;" horiz-adv-x="843" d="M54 189q0 156 105.5 264t260.5 108t260.5 -107.5t105.5 -264.5q0 -156 -105.5 -264t-260.5 -108t-260.5 108t-105.5 264zM88 189q0 -142 96 -241t236 -99t236 99t96 241t-96 241t-236 99t-236 -99t-96 -241zM196 201q0 99 65 159.5t164 60.5q14 0 27 -1.5t23.5 -4 t21 -6.5t18 -7.5t15.5 -8t11.5 -7.5t9 -7t6.5 -4q10 -2 11 2v17q0 9 15 9q8 0 10 -1.5t2 -7.5q0 -3 -1 -53.5t-1 -69.5q0 -10 -10 -10q-18 0 -18 7q0 1 1.5 27t1.5 29q0 6 -18 23.5t-55 35.5t-75 18q-69 0 -114 -57.5t-45 -144.5q0 -81 52 -138.5t126 -57.5q27 0 51 5 t39.5 12.5t26.5 15t17 12.5t7 5t6.5 -9t5.5 -10q0 -5 -18 -18.5t-60 -28t-93 -14.5q-95 0 -160 59t-65 169z" />
<glyph unicode="&#xaa;" horiz-adv-x="379" d="M30 399q0 38 12.5 83.5t35 88.5t60.5 71.5t83 28.5q28 0 45 -25q3 -4 6.5 -10t6 -9.5t3.5 -3.5q2 2 7 17.5t5 18.5q4 10 34 10q14 0 14 -6q0 -3 -33.5 -121.5t-33.5 -139.5q0 -16 11 -16q7 0 29.5 23.5t23.5 23.5q3 0 6.5 -4t3.5 -9q0 -3 -18.5 -22t-45 -38.5 t-42.5 -19.5q-23 0 -23 21q0 26 44 167q-46 -80 -100 -135q-40 -40 -59 -48q-10 -4 -22 -4q-26 0 -39.5 16.5t-13.5 41.5zM85 430q0 -44 23 -44q21 0 68 52t81 107q12 18 12 44q0 21 -23 34t-45 13q-39 0 -77.5 -75t-38.5 -131z" />
<glyph unicode="&#xab;" horiz-adv-x="408" d="M50 193q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -4 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55zM200 193q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -4 -31 -58t-31 -61t31 -61t31 -58 q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph unicode="&#xac;" horiz-adv-x="527" d="M31 215q0 17 19 17h427q13 0 16.5 -3t3.5 -16v-158q0 -15 -16 -15q-12 0 -16.5 0.5t-8.5 5t-4 14.5v111q0 17 -26 17h-376q-13 0 -16 5.5t-3 21.5z" />
<glyph unicode="&#xad;" horiz-adv-x="268" d="M30 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="&#xae;" horiz-adv-x="536" d="M25 470q0 104 70 175.5t173 71.5t173 -71.5t70 -175.5t-70 -175.5t-173 -71.5t-173 71.5t-70 175.5zM50 470q0 -94 63 -159t155 -65t155 65t63 159t-63 159t-155 65t-155 -65t-63 -159zM142 628q0 9 11 9q3 0 23.5 -0.5t27.5 -0.5t34.5 1.5t32.5 1.5q101 0 101 -80 q0 -49 -64 -78q77 -23 80 -107q1 -28 4 -28h20q8 0 8 -12q0 -6 -10 -6l-60 1q-7 0 -7 7v27q0 31 -3 50t-18 36.5t-43 20.5q-15 2 -52 2q-5 0 -5 -3q0 -99 4 -123h27q7 0 7 -7q0 -11 -7 -11q-5 0 -24 0.5t-26 0.5t-25 -0.5t-19 -0.5q-9 0 -9 11q0 7 11 7h19q2 16 2 58v60 q0 141 -5 155l-24 -1q-11 0 -11 10zM222 489q0 -2 5 -2q12 0 33.5 -0.5t29.5 -0.5q39 19 39 67q0 32 -24.5 51t-57.5 19q-4 0 -11.5 -0.5t-11.5 -0.5q-2 -8 -2 -23v-110z" />
<glyph unicode="&#xaf;" horiz-adv-x="400" d="M100 518l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8z" />
<glyph unicode="&#xb0;" horiz-adv-x="256" d="M40 535q0 36 26 62t62 26t62 -26t26 -62t-26 -62t-62 -26t-62 26t-26 62zM71 535q0 -24 16.5 -40.5t40.5 -16.5t40.5 16.5t16.5 40.5t-16.5 40.5t-40.5 16.5t-40.5 -16.5t-16.5 -40.5z" />
<glyph unicode="&#xb1;" horiz-adv-x="527" d="M31 90q0 11 0.5 15.5t4.5 8t13 3.5h429q11 0 14.5 -4t3.5 -16q0 -13 -3.5 -18.5t-17.5 -5.5h-427q-9 0 -13 3t-4 14zM31 324q0 22 18 22h181q11 0 11 10v9v130q0 15 16 15q18 0 23 -3t5 -14v-128v-8q0 -11 12 -11h183q16 0 16 -15q0 -12 -1 -17t-5.5 -9t-14.5 -4h-178 q-12 0 -12 -17v-132q0 -14 -16 -14q-17 0 -22.5 2.5t-5.5 11.5v132q0 10 -2.5 13.5t-13.5 3.5h-177q-12 0 -14.5 5t-2.5 18z" />
<glyph unicode="&#xb2;" d="M41 357q0 6 27 43t31 40q154 139 154 206q0 30 -19 50.5t-55 20.5q-31 0 -56.5 -16.5t-38.5 -32.5t-14 -16q-3 0 -9 4.5t-6 8.5q0 7 19 29t54.5 44t70.5 22q49 0 79 -30.5t30 -77.5q0 -52 -51 -108q-21 -23 -45.5 -43.5t-49.5 -39l-29 -21.5l-38 -43h182l6 17l11 29.5 t7 13.5q18 0 18 -5q0 -2 -5.5 -19.5l-13.5 -41t-11 -36.5q-1 -5 -9 -5h-228q-11 0 -11 7z" />
<glyph unicode="&#xb3;" d="M49 377q0 6 10.5 12t19.5 6q15 0 35 -15.5t35 -15.5q39 0 63.5 26.5t24.5 67.5q0 76 -86 76q-5 0 -17.5 -1t-17.5 -1q-7 0 -7 13q0 15 4 15q36 4 53 11q70 27 70 94q0 30 -16.5 47.5t-41.5 17.5q-20 0 -38 -8.5t-29 -17t-12 -8.5q-3 0 -8 4t-4 8q1 5 14 17t38 23.5 t49 11.5q48 0 75.5 -26.5t27.5 -61.5q0 -19 -8 -35.5t-18.5 -27.5t-26 -21t-26 -14.5l-22.5 -9.5l-13 -5l13 -3q13 -3 23.5 -6t26 -10.5t26 -17t18.5 -25.5t8 -35q0 -57 -46 -89t-105 -32q-25 0 -58.5 13t-33.5 23z" />
<glyph unicode="&#xb4;" horiz-adv-x="400" d="M172 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2z" />
<glyph unicode="&#xb5;" horiz-adv-x="509" d="M25 -136q0 41 8.5 85t26 106t25.5 100q23 101 36 150.5t18 60t11 10.5q39 0 39 -17q0 -7 -9.5 -40.5t-22.5 -87.5t-19 -103q-3 -36 -3 -43q0 -47 29 -47q32 0 74 53.5t73 114t56 123.5q19 48 23 48q13 0 26.5 -4.5t13.5 -10.5q0 -2 -25 -133.5t-25 -158.5 q0 -11 7.5 -18.5t17.5 -7.5q16 0 28 17t20 33.5t13 16.5q8 0 8 -13q0 -32 -37 -73.5t-83 -41.5q-34 0 -34 64q0 24 8 79.5t8 57.5q0 8 -4 8l-8 -12q-7 -13 -21.5 -36l-27.5 -42q-1 -1 -13 -19.5t-16 -23.5l-16 -20.5t-20.5 -22l-21 -15.5t-25.5 -12.5t-27 -3.5 q-17 0 -28.5 17.5t-16 34.5t-5.5 17q-4 0 -12.5 -54t-8.5 -79q0 -19 12 -47.5t12 -29.5q0 -3 -2 -9t-9.5 -12t-18.5 -6q-14 0 -24 12t-10 35z" />
<glyph unicode="&#xb6;" horiz-adv-x="492" d="M40 417q0 48 16 87.5t41 64.5t56.5 42.5t61.5 25t58 7.5q8 0 10 -3t2 -11v-468q0 -8 -5 -8q-23 0 -52 8t-62.5 28.5t-61 49t-46 75t-18.5 102.5zM280 -205q0 8 10 8h58q7 0 9 1.5t2 6.5v831q0 8 2.5 10t8.5 2h70q8 0 10 -2t2 -9v-14q0 -6 -2 -7.5t-10 -1.5h-46 q-5 0 -6.5 -1.5t-1.5 -8.5v-832q0 -6 -2 -7.5t-12 -1.5h-82q-10 0 -10 8v18z" />
<glyph unicode="&#xb7;" horiz-adv-x="125" d="M25 340q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="&#xb8;" horiz-adv-x="400" d="M109 -190q0 10 8 10l8 -4q8 -3 21 -6.5t27 -3.5q69 0 69 49q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 11.5 21l25.5 45.5t19 35.5h19q-37 -66 -37 -67q0 -2 5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6 t-26.5 12t-8 9z" />
<glyph unicode="&#xb9;" d="M78 360q0 15 13 15h56q7 45 26 190.5t19 160.5q-5 -1 -32 -6t-28 -5q-7 0 -7 9v8q0 8 8 9q12 1 41 6l53 9t26 4q7 0 7 -8q0 -3 -3.5 -24l-9.5 -57.5t-9 -58.5l-35 -237h58q8 0 8 -16q0 -8 -1 -9.5t-7 -1.5q-4 0 -37.5 1t-44.5 1t-47.5 -1t-43.5 -1t-8.5 2t-1.5 10z" />
<glyph unicode="&#xba;" horiz-adv-x="377" d="M30 464q0 92 54.5 153.5t137.5 61.5q59 0 87 -42t28 -90q0 -78 -56.5 -141.5t-133.5 -63.5q-56 0 -86.5 35.5t-30.5 86.5zM83 471q0 -107 65 -107q37 0 69.5 39t49 88t16.5 89q0 29 -15.5 53.5t-54.5 24.5q-47 0 -88.5 -64.5t-41.5 -122.5z" />
<glyph unicode="&#xbb;" horiz-adv-x="408" d="M60 74q0 4 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5zM210 74q0 4 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55 l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph unicode="&#xbc;" horiz-adv-x="794" d="M458 141q0 15 17 38q18 25 78.5 88.5t82.5 90.5q6 7 15 13t11 8q35 35 40 35q7 0 7 -14l-30 -216q-1 -8 0.5 -9.5t8.5 -1.5h37q6 0 6 -8v-23q0 -5 -1.5 -6t-7.5 -1h-46q-3 0 -4 -0.5t-2.5 -2.5t-1.5 -6q-18 -120 -18 -126q0 -3 -1.5 -4.5t-4.5 -1.5l-2 -1q-16 -4 -41 -4 q-6 0 -4 10l23 126q1 7 -0.5 8.5t-9.5 1.5h-139q-13 0 -13 6zM498 175q0 -2 14 -2h108q6 0 7.5 1.5t3.5 11.5q21 126 21 158q-21 -16 -143 -155q-11 -11 -11 -14zM210 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5 t-9.5 -0.5q-18 0 -18 5zM78 260q0 15 13 15h56q7 45 26 190.5t19 160.5q-5 -1 -32 -6t-28 -5q-7 0 -7 9v8q0 8 8 9q12 1 41 6l53 9t26 4q7 0 7 -8q0 -3 -3.5 -24l-9.5 -57.5t-9 -58.5l-35 -237h58q8 0 8 -16q0 -8 -1 -9.5t-7 -1.5q-4 0 -37.5 1t-44.5 1t-47.5 -1t-43.5 -1 t-8.5 2t-1.5 10z" />
<glyph unicode="&#xbd;" horiz-adv-x="844" d="M525 7q0 6 27 43t31 40q154 139 154 206q0 30 -19 50.5t-55 20.5q-31 0 -56.5 -16.5t-38.5 -32.5t-14 -16q-3 0 -9 4.5t-6 8.5q0 7 19 29t54.5 44t70.5 22q49 0 79 -30.5t30 -77.5q0 -52 -51 -108q-21 -23 -45.5 -43.5t-49.5 -39l-29 -21.5l-38 -43h182q0 1 2.5 8 l5.5 15.5t6.5 17t6 14t3.5 5.5q18 0 18 -5q0 -2 -5.5 -19.5l-13.5 -41t-11 -36.5q-1 -5 -9 -5h-228q-11 0 -11 7zM210 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5t-9.5 -0.5q-18 0 -18 5zM78 260q0 15 13 15h56 q7 45 26 190.5t19 160.5q-5 -1 -32 -6t-28 -5q-7 0 -7 9v8q0 8 8 9q12 1 41 6l53 9t26 4q7 0 7 -8q0 -3 -3.5 -24l-9.5 -57.5t-9 -58.5l-35 -237h58q8 0 8 -16q0 -8 -1 -9.5t-7 -1.5q-4 0 -37.5 1t-44.5 1t-47.5 -1t-43.5 -1t-8.5 2t-1.5 10z" />
<glyph unicode="&#xbe;" horiz-adv-x="794" d="M458 141q0 15 17 38q18 25 78.5 88.5t82.5 90.5q6 7 15 13t11 8q35 35 40 35q7 0 7 -14l-30 -216q-1 -8 0.5 -9.5t8.5 -1.5h37q6 0 6 -8v-23q0 -5 -1.5 -6t-7.5 -1h-46q-3 0 -4 -0.5t-2.5 -2.5t-1.5 -6q-18 -120 -18 -126q0 -3 -1.5 -4.5t-4.5 -1.5l-2 -1q-16 -4 -41 -4 q-6 0 -4 10l23 126q1 7 -0.5 8.5t-9.5 1.5h-139q-13 0 -13 6zM498 175q0 -2 14 -2h108q6 0 7.5 1.5t3.5 11.5q21 126 21 158q-21 -16 -143 -155q-11 -11 -11 -14zM210 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5 t-9.5 -0.5q-18 0 -18 5zM49 277q0 6 10.5 12t19.5 6q15 0 35 -15.5t35 -15.5q39 0 63.5 26.5t24.5 67.5q0 76 -86 76q-5 0 -17.5 -1t-17.5 -1q-7 0 -7 13q0 15 4 15q36 4 53 11q70 27 70 94q0 30 -16.5 47.5t-41.5 17.5q-20 0 -38 -8.5t-29 -17t-12 -8.5q-3 0 -8 4t-4 8 q1 5 14 17t38 23.5t49 11.5q48 0 75.5 -26.5t27.5 -61.5q0 -19 -8 -35.5t-18.5 -27.5t-26 -21t-26 -14.5l-22.5 -9.5l-13 -5l13 -3q13 -3 23.5 -6t26 -10.5t26 -17t18.5 -25.5t8 -35q0 -57 -46 -89t-105 -32q-25 0 -58.5 13t-33.5 23z" />
<glyph unicode="&#xbf;" horiz-adv-x="374" d="M35 148q0 31 7.5 53.5t13.5 30.5t28 32q16 18 105 107q1 1 17.5 16.5t24 24t16.5 22t9 23.5q0 11 -7 23.5t-14 20.5t-7 9q0 2 5 7.5t9 5.5q3 0 14.5 -11t22.5 -31t11 -38q0 -44 -65 -109l-42.5 -41l-45.5 -44t-37 -39.5t-29.5 -41t-9.5 -34.5q0 -21 11 -41.5t26 -29.5 q22 -14 89 -14q13 0 45 1.5t35 1.5t5 -1t3 -3.5l2 -5t1 -6.5t0.5 -7t0.5 -8v-8q1 -9 -3 -11.5t-15 -4.5q-30 -5 -64 -5q-60 0 -90 19q-33 21 -52.5 59.5t-19.5 77.5zM204 606q0 23 14.5 37t25.5 14q19 0 34.5 -16.5t15.5 -29.5q0 -19 -15.5 -35.5t-30.5 -16.5q-14 0 -29 16 t-15 31z" />
<glyph unicode="&#xc0;" horiz-adv-x="688" d="M402 818q0 29 29 29q17 0 30 -25l40 -85q1 -2 1 -5t-4 -3h-18q-1 0 -7 6l-61 60q-10 10 -10 23zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42 q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103q-1 14 -4 16.5t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11 q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="&#xc1;" horiz-adv-x="688" d="M482 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42 q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103q-1 14 -4 16.5t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11 q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="&#xc2;" horiz-adv-x="688" d="M388 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-4 -2.5l-1 -1h-12q-5 0 -5 2zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5t28.5 38.5 q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103q-1 14 -4 16.5 t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19l-133 -234 q-7 -12 -7 -15z" />
<glyph unicode="&#xc3;" horiz-adv-x="688" d="M393 745q2 9 11 25q15 25 32.5 38.5t30.5 13.5q15 0 41 -18t39 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199 q4 5 22.5 24.5t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121 t-14.5 103q-1 14 -4 16.5t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64 q-3 0 -13 -19l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="&#xc4;" horiz-adv-x="688" d="M390 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM530 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199 q4 5 22.5 24.5t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121 t-14.5 103q-1 14 -4 16.5t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64 q-3 0 -13 -19l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="&#xc5;" horiz-adv-x="688" d="M433 781q0 28 20 48t48 20t48 -20t20 -48t-20 -48t-48 -20t-48 20t-20 48zM461 781q0 -17 11.5 -28.5t28.5 -11.5t28.5 11.5t11.5 28.5t-11.5 28.5t-28.5 11.5t-28.5 -11.5t-11.5 -28.5zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5 t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103 q-1 14 -4 16.5t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19 l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="&#xc6;" horiz-adv-x="968" d="M-10 15q0 9 3 10.5t15 1.5h33q7 0 105 125l219 282.5t158 201.5h-68q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l66 -1q67 -2 88 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14 q0 2 3 36t3 37q0 7 -263 7q-6 0 -39 -256q-3 -21 -3 -24q0 -6 15 -6h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7 q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h43l42 274h-201 q-13 0 -23 -15q-3 -4 -54 -77l-85 -124t-34 -57l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -51 1.5t-56 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM323 331q0 -6 21 -6h172l20 145q20 144 20 154q0 8 -3 8q-4 0 -11 -10l-209 -276q-10 -14 -10 -15z" />
<glyph unicode="&#xc7;" horiz-adv-x="686" d="M35 291q0 160 108 270t255 110q62 0 120 -24.5t92 -62.5l12 41q8 0 18.5 -3.5t10.5 -7.5q0 -3 -7.5 -41l-17 -84t-10.5 -54q-1 -5 -13 -5q-9 0 -16 4t-7 7q0 1 11.5 46.5t11.5 50.5t-28 29.5t-79 50t-99 25.5q-75 0 -139 -56t-98.5 -137t-34.5 -162q0 -123 69.5 -195.5 t172.5 -72.5q47 0 91 16.5t67 33.5t26 26q10 29 25 84q3 9 8 10.5t15 -1.5q17 -4 17 -11q0 -6 -33 -116q-5 -17 -78 -45.5t-137 -30.5q-29 -51 -29 -53t5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6t-26.5 12t-8 9q0 10 8 10l8 -4 q8 -3 21 -6.5t27 -3.5q69 0 69 49q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 8 15.5l21 37.5l20 35q-63 1 -117 18t-99.5 51.5t-72 95t-26.5 140.5z" />
<glyph unicode="&#xc8;" horiz-adv-x="579" d="M253 818q0 29 29 29q18 0 30 -25l40 -85q1 -2 1 -5t-4 -3h-18q-1 0 -7 6l-61 60q-10 10 -10 23zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5 t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7 q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5 t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xc9;" horiz-adv-x="579" d="M333 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5 t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7 q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5 t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xca;" horiz-adv-x="579" d="M239 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5 q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7 q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11 q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xcb;" horiz-adv-x="579" d="M241 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM381 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55 q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164 q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43 t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xcc;" horiz-adv-x="377" d="M151 818q0 29 29 29q18 0 30 -25l40 -85q1 -2 1 -5t-4 -3h-18q-1 0 -7 6l-61 60q-10 10 -10 23zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xcd;" horiz-adv-x="377" d="M231 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xce;" horiz-adv-x="377" d="M137 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5 t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5t-2 15.5z " />
<glyph unicode="&#xcf;" horiz-adv-x="377" d="M139 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM279 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66 q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5 q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xd0;" horiz-adv-x="742" d="M19 10q0 11 3 13t14 2h43q5 0 46 285q1 8 -1 9.5t-11 1.5h-64q-2 0 -2.5 12t2.5 12h71q10 0 11 12q27 188 36 268q2 11 -4 11l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v6t0.5 4.5t2 3.5t4 1.5t6.5 0.5h24t51.5 -0.5t43.5 -0.5q33 0 75.5 1t56.5 1q165 0 261.5 -80t96.5 -248 q0 -158 -102 -247.5t-248 -91.5q-32 0 -112 2t-113 2q-16 0 -55 -2t-42 -2q-8 0 -9.5 2t-1.5 12zM171 46q0 -13 6 -17t59 -4q97 0 170 27t111 64t61.5 88t29.5 87.5t6 73.5q0 123 -74.5 196.5t-223.5 73.5q-49 0 -63 -4l-41 -274q-1 -7 0 -9.5t8 -2.5h196q3 0 3 -12t-3 -12 h-197q-9 0 -11 -1.5t-3 -9.5q-34 -236 -34 -264z" />
<glyph unicode="&#xd1;" horiz-adv-x="824" d="M366 745q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM20 15q0 9 3 10.5t15 1.5h50q40 245 89 514q1 6 4 22.5t5 29.5t2 21 q0 3 -5 12t-10 11t-22 2h-50q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 28.5 1.5t16.5 1.5q12 0 20 -13l329 -499q8 -12 16 -12q7 0 39.5 218.5t32.5 263.5q0 12 -2 12h-76q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 42 -1.5t47 -1.5t44.5 1.5 t39.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-42q-6 0 -80 -467q-10 -60 -16 -168q-1 -15 -4 -20t-12 -5t-28 32q-45 73 -118 180l-256 374q-15 21 -16 21q-4 0 -5 -20q0 -3 -17.5 -117t-35 -241.5t-17.5 -165.5q0 -15 3 -15h85q8 0 9.5 -2t1.5 -11q0 -11 -2 -14 t-9 -3q-11 0 -50.5 1.5t-55.5 1.5q-18 0 -52 -1.5t-35 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#xd2;" horiz-adv-x="734" d="M340 818q0 29 29 29q17 0 30 -25l40 -85q1 -2 1 -5t-4 -3h-18q-1 0 -7 6l-61 60q-10 10 -10 23zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89t78.5 -236q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137z M127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#xd3;" horiz-adv-x="734" d="M420 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89t78.5 -236q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137z M127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#xd4;" horiz-adv-x="734" d="M326 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-4 -2.5l-1 -1h-12q-5 0 -5 2zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89t78.5 -236 q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137zM127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#xd5;" horiz-adv-x="734" d="M331 745q2 9 11 25q15 25 32.5 38.5t30.5 13.5q15 0 41 -18t39 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5 q135 0 213.5 -89t78.5 -236q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137zM127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#xd6;" horiz-adv-x="734" d="M328 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM468 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89 t78.5 -236q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137zM127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#xd7;" horiz-adv-x="527" d="M88 358q0 5 10.5 15.5t17.5 10.5q6 0 14 -8l116 -115q12 -12 19 -12q6 0 11 5l125 125q6 6 12 6q5 0 15 -10t10 -17q0 -5 -9 -14l-121 -121q-8 -8 -8 -13q0 -4 8 -12l124 -124q6 -6 6 -12t-10.5 -16.5t-15.5 -10.5q-6 0 -13 7l-123 124q-7 7 -13 7q-5 0 -16 -11 l-120 -120q-7 -7 -12 -7t-15.5 10t-10.5 16q0 5 8 13l120 121q9 9 9 15t-7 13l-124 124q-7 7 -7 11z" />
<glyph unicode="&#xd8;" horiz-adv-x="734" d="M35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q67 0 125 -25q7 -3 10 4l40 70q1 1 3 1q5 0 12 -5.5t6 -7.5l-41 -70q-3 -5 1 -8q65 -40 100.5 -113.5t35.5 -170.5q0 -151 -107 -260.5t-258 -109.5q-74 0 -132 23q-6 3 -10 -3l-30 -51q-2 -2 -3 -2q-4 0 -8.5 2.5 t-8 5.5t-2.5 4l30 52q3 6 -1 9q-2 0 -3 1q-131 76 -131 261zM127 286q0 -136 70 -216q3 -4 4.5 -4.5t2.5 0.5t3 6l306 530q3 6 -1 9q-44 34 -102 34q-71 0 -137 -52.5t-106 -136t-40 -170.5zM224 54q-4 -7 2 -12q53 -40 125 -40q75 0 135.5 60t91 144t30.5 167 q0 56 -17.5 114.5t-52.5 98.5q-4 4 -7 0z" />
<glyph unicode="&#xd9;" horiz-adv-x="759" d="M328 818q0 29 29 29q17 0 30 -25l40 -85q1 -2 1 -5t-4 -3h-18q-1 0 -7 6l-61 60q-10 10 -10 23zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5 t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5 t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xda;" horiz-adv-x="759" d="M408 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5 t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5 t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xdb;" horiz-adv-x="759" d="M314 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-4 -2.5l-1 -1h-12q-5 0 -5 2zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 46.5 -1.5 t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5t-55 115.5q0 46 33 248.5 t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xdc;" horiz-adv-x="759" d="M316 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM456 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5 t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4 t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5 t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xdd;" horiz-adv-x="613" d="M322 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM20 654q0 7 2 10.5t5 4t11 0.5q6 0 45 -1.5t56 -1.5q16 0 46.5 1.5t41.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-31q-10 0 -11 -2t3 -13q13 -44 103 -265 q6 -12 8 -12q5 0 16 18l35 52l46 68l43 65t34.5 56.5t12.5 29.5v3h-53q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 42.5 1.5t31.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -45.5 -58l-97 -133t-80.5 -116 q-5 -9 -8 -22q-44 -260 -44 -270q0 -13 5 -13h63q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50 1.5t-55 1.5t-49.5 -1.5t-44.5 -1.5q-9 0 -11.5 3t-2.5 13q0 9 3 11.5t15 2.5h42q6 0 30 143l15 90q5 27 5 41l-146 338h-47q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#xde;" horiz-adv-x="566" d="M14 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-3 0 -22 -106q-1 -4 -1 -9q0 -7 7 -7q8 0 14 1q23 3 52 3 q99 0 154.5 -47.5t55.5 -123.5q0 -44 -14.5 -78.5t-38 -55.5t-56 -35t-65.5 -19.5t-70 -5.5q-16 0 -44.5 1t-31.5 1q-13 0 -15 -2.5t-4 -14.5q-15 -90 -15 -109q0 -5 1 -5h79q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5 t-2 15.5zM204 189q0 -10 12 -11q5 -1 18 -1q59 0 107.5 15.5t83 54.5t34.5 97q0 74 -42.5 113.5t-124.5 39.5q-18 0 -28 -1q-9 -1 -12.5 -2.5t-4 -2.5t-1.5 -8q-1 -3 -1 -4l-12 -81q-16 -106 -28 -197q-1 -5 -1 -12z" />
<glyph unicode="&#xdf;" horiz-adv-x="488" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5q29 179 58 438q0 4 12 97q11 86 54.5 141.5t120.5 55.5q55 0 87 -34t32 -88q0 -39 -13.5 -71.5t-35 -54t-40.5 -34.5t-38 -21q-6 -3 -11.5 -4.5t-8.5 -2.5 h-2h2q1 -1 5.5 -2t9.5 -3q131 -46 131 -165q0 -89 -43 -148.5t-112 -59.5q-39 0 -64.5 19.5t-25.5 53.5q0 33 39 46q19 6 19 -8q0 -4 -2.5 -19t-2.5 -23q0 -51 40 -51q41 0 63 66.5t22 138.5q0 37 -9 64.5t-19.5 41t-31 23t-30 11l-29.5 4.5q-6 1 -5 12q2 8 7 9q45 4 86 56 t41 135q0 38 -19 63.5t-54 25.5q-26 0 -44.5 -15.5t-28 -40t-14.5 -49.5t-9 -51q-1 -7 -1 -10q-7 -44 -32 -235t-45 -311q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="&#xe0;" horiz-adv-x="433" d="M212 575q0 31 34 31q21 0 26 -24l26 -125v-3l1 -3q0 -2 -4 -2h-15q-4 0 -7 6l-57 107q-4 7 -4 13zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5 q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54 q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#xe1;" horiz-adv-x="433" d="M256 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5 q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54 q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#xe2;" horiz-adv-x="433" d="M174 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23 q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96 q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#xe3;" horiz-adv-x="433" d="M176 495q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5 t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5 q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#xe4;" horiz-adv-x="433" d="M173 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM313 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5 t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5 q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#xe5;" horiz-adv-x="433" d="M216 531q0 28 20 48t48 20t48 -20t20 -48t-20 -48t-48 -20t-48 20t-20 48zM244 531q0 -17 11.5 -28.5t28.5 -11.5t28.5 11.5t11.5 28.5t-11.5 28.5t-28.5 11.5t-28.5 -11.5t-11.5 -28.5zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5 t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5 q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#xe6;" horiz-adv-x="636" d="M25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -1 -7 -29q58 41 123 41q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22 q4 0 8.5 -5t4.5 -9q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5q0 36 7 67q-49 -75 -92 -120q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54 q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100zM352 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#xe7;" horiz-adv-x="402" d="M25 128q0 114 71 188.5t150 74.5q58 0 86 -31q22 -24 22 -56q0 -21 -12 -35t-31 -14q-22 0 -22 37q0 4 0.5 12t0.5 12q0 20 -11.5 34t-35.5 14q-28 0 -57 -18.5t-49 -48.5q-47 -71 -47 -153q0 -16 2.5 -28.5t11 -32.5t32 -31.5t60.5 -11.5q38 0 76.5 19.5t61.5 39 t24 19.5q3 0 7.5 -5t4.5 -9q0 -5 -30 -31.5t-82 -54t-96 -27.5h-2q-32 -53 -32 -58q0 -2 5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6t-26.5 12t-8 9q0 10 8 10l8 -4q8 -3 21 -6.5t27 -3.5q69 0 69 49q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5 t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 9.5 17.5l22.5 40.5l20 36q-63 6 -90 44.5t-27 91.5z" />
<glyph unicode="&#xe8;" horiz-adv-x="390" d="M211 575q0 31 34 31q21 0 26 -24l26 -125q0 -1 1 -3v-3q0 -2 -4 -2h-15q-4 0 -7 6l-57 107q-4 7 -4 13zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9 q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#xe9;" horiz-adv-x="390" d="M255 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-4 -6 -8 -6h-15q-4 0 -4 2zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9 q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#xea;" horiz-adv-x="390" d="M173 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-7 -6 -9 -6h-12q-5 0 -5 2zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89 q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#xeb;" horiz-adv-x="390" d="M172 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM312 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54 q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122 q-14 -35 -14 -45z" />
<glyph unicode="&#xec;" horiz-adv-x="270" d="M114 575q0 31 34 31q21 0 26 -24l26 -125v-3l1 -3q0 -2 -4 -2h-15q-4 0 -7 6l-57 107q-4 7 -4 13zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5 t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#xed;" horiz-adv-x="270" d="M158 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5 t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#xee;" horiz-adv-x="270" d="M76 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16 t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#xef;" horiz-adv-x="270" d="M82 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM208 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150 t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#xf0;" horiz-adv-x="411" d="M25 138q0 110 65 183.5t164 73.5q32 0 61 -16q-5 30 -22.5 72t-31.5 66q-4 6 -7 4l-113 -31q-2 0 -7 9t-5 13l25 7l54.5 15t32.5 9q7 1 2 6q-40 64 -92 112q-8 8 0 8l44 1q14 0 96 -108q4 -5 12 -3q96 26 100 26q2 0 6.5 -8.5t4.5 -12.5t-101 -26q-6 -1 -1 -8 q74 -127 74 -265q0 -116 -63 -194.5t-160 -78.5q-65 0 -101.5 42.5t-36.5 103.5zM87 146q0 -24 1.5 -39.5t8 -40t24 -37.5t44.5 -13q46 0 84 47.5t56.5 107t18.5 107.5q0 96 -81 96q-57 0 -106.5 -78.5t-49.5 -149.5z" />
<glyph unicode="&#xf1;" horiz-adv-x="515" d="M244 495q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM15 287q0 2 29.5 26t72.5 48.5t70 24.5q21 0 21 -21t-6 -55t-12 -57 l-19.5 -72.5t-16.5 -62.5q74 131 134.5 199.5t116.5 68.5q51 0 51 -44q0 -29 -38.5 -145t-38.5 -127q0 -20 19 -20q13 0 34.5 18.5t38 37t17.5 18.5q3 0 7.5 -4.5t4.5 -6.5q0 -5 -24 -31.5t-63.5 -53.5t-72.5 -27q-15 0 -23.5 11.5t-8.5 29.5q0 28 40 135t40 138 q0 12 -6 20.5t-16 8.5q-26 0 -79 -66.5t-100 -141.5q-22 -36 -44 -112q-7 -25 -15 -26q-40 -4 -48 -4q-7 0 -5 10q60 249 60 312q0 18 -13 18q-14 0 -54 -32l-39 -32q-3 0 -8.5 5t-5.5 12z" />
<glyph unicode="&#xf2;" horiz-adv-x="419" d="M218 575q0 31 34 31q21 0 26 -24l26 -125v-3l1 -3q0 -2 -4 -2h-15q-4 0 -7 6l-57 107q-4 7 -4 13zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107 t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#xf3;" horiz-adv-x="419" d="M262 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107 t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#xf4;" horiz-adv-x="419" d="M180 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5 t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#xf5;" horiz-adv-x="419" d="M182 495q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109 q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#xf6;" horiz-adv-x="419" d="M179 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM319 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109 q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#xf7;" horiz-adv-x="527" d="M31 212q0 8 0.5 11.5t4.5 6t13 2.5h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5zM212 320q0 16 12.5 28.5t29.5 12.5q16 0 28 -11.5t12 -28.5t-12 -29t-29 -12t-29 12t-12 28zM217 101q0 16 12 28t29 12 q16 0 28.5 -12.5t12.5 -28.5t-11.5 -28t-28.5 -12t-29.5 12t-12.5 29z" />
<glyph unicode="&#xf8;" horiz-adv-x="419" d="M25 138q0 110 66 184.5t165 74.5q20 0 35 -4q11 -2 14 1q1 1 2 4l31 54q1 2 4 2q5 0 12 -5t6 -7l-30 -52q-4 -7 -4 -9t6 -6q32 -23 47 -61t15 -76q0 -94 -68 -170t-161 -76q-25 0 -49 8q-4 1 -5.5 1.5t-3 0t-2.5 -2l-3 -4.5l-32 -56q-2 -2 -3 -2q-4 0 -11 5t-7 7l1 3 l32 55q4 6 -3 12q-54 42 -54 119zM87 146q0 -57 14 -87q4 -8 5 -8t6 8l169 295q5 10 2 13q-1 1 -4 2q-13 5 -34 5q-57 0 -107.5 -78.5t-50.5 -149.5zM127 39q-5 -9 1 -13q17 -10 39 -10q46 0 85.5 47.5t59 107t19.5 107.5q0 40 -17 64q-4 6 -6 6t-7 -8z" />
<glyph unicode="&#xf9;" horiz-adv-x="521" d="M246 575q0 31 34 31q21 0 26 -24l26 -125v-3l1 -3q0 -2 -4 -2h-15q-4 0 -7 6l-57 107q-4 7 -4 13zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7 q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42 q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#xfa;" horiz-adv-x="521" d="M290 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7 q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42 q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#xfb;" horiz-adv-x="521" d="M208 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27q0 -13 -32 -132.5t-32 -145.5 q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5q0 22 22.5 122.5t26.5 130.5 q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#xfc;" horiz-adv-x="521" d="M207 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM347 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27 q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5 q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#xfd;" horiz-adv-x="422" d="M251 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-4 -6 -8 -6h-15q-4 0 -4 2zM-13 -262q0 11 4 19t13 13.5t16.5 8t21 6.5t19.5 6q33 12 54 49q37 69 48 105.5t11 71.5q0 320 -69 320q-18 0 -37 -15.5t-31 -30.5t-13 -15t-4.5 1t-6.5 3.5t-3 5.5 q0 4 16.5 26.5t47.5 46t61 23.5q56 0 75 -86q12 -52 20 -241q1 -6 1 -12l35 64.5t48 94t29 74.5t17 101q1 17 11 17q12 0 24 -7t12 -18q0 -5 -2 -17q-12 -76 -148 -311l-29 -49l-10 -19q-82 -157 -101 -190q-11 -20 -39 -37q-58 -35 -74 -35q-8 0 -12.5 9t-4.5 18z" />
<glyph unicode="&#xfe;" horiz-adv-x="430" d="M-44 -256q0 14 3.5 18t15.5 4h16q12 0 16 3.5t6 17.5q26 137 43 243l35 208q44 249 59 374q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9q0 -8 -13 -87.5t-37 -209.5t-47 -242q43 107 100 194 q37 57 99 57q44 0 60 -23.5t16 -67.5q0 -110 -74 -204t-151 -94q-11 0 -32 3.5t-24 3.5q-12 0 -13 -8l-32 -209q-5 -23 9 -24q16 -2 40 -4q14 -1 19.5 -1.5t11 -2t7 -4t1.5 -6.5q0 -14 -4.5 -17.5t-15.5 -3.5q-1 0 -27 3.5t-67.5 7t-79.5 3.5q-17 0 -17 10zM125 51 q0 -32 64 -32q33 0 69.5 42.5t60.5 103.5t24 113q0 64 -44 64q-15 0 -29.5 -9.5t-29 -30t-22.5 -34t-22 -41.5l-16 -32q-55 -105 -55 -144z" />
<glyph unicode="&#xff;" horiz-adv-x="422" d="M168 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM308 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM-13 -262q0 11 4 19t13 13.5t16.5 8t21 6.5t19.5 6q33 12 54 49 q37 69 48 105.5t11 71.5q0 320 -69 320q-18 0 -37 -15.5t-31 -30.5t-13 -15t-4.5 1t-6.5 3.5t-3 5.5q0 4 16.5 26.5t47.5 46t61 23.5q56 0 75 -86q12 -52 20 -241q1 -6 1 -12l35 64.5t48 94t29 74.5t17 101q1 17 11 17q12 0 24 -7t12 -18q0 -5 -2 -17q-12 -76 -148 -311 l-29 -49l-10 -19q-82 -157 -101 -190q-11 -20 -39 -37q-58 -35 -74 -35q-8 0 -12.5 9t-4.5 18z" />
<glyph unicode="&#x100;" horiz-adv-x="688" d="M401 788l2 21q1 6 2 7t7 1h181q5 0 6.5 -1t1.5 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42 q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103q-1 14 -4 16.5t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11 q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="&#x101;" horiz-adv-x="433" d="M184 518l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20 q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42 t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#x102;" horiz-adv-x="688" d="M415 810q0 28 4 28h13q1 0 1 -2q0 -31 15.5 -45t52.5 -14q53 0 77 32q4 6 7.5 13.5l5.5 11.5t3 4h13q-6 -46 -37.5 -77.5t-76.5 -31.5q-41 0 -59.5 23t-18.5 58zM20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5t28.5 38.5q7 14 15 14 q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -39.5 1.5t-50.5 1.5q-16 0 -58 -1.5t-53 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103q-1 14 -4 16.5t-14 2.5h-189 q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19l-133 -234q-7 -12 -7 -15z" />
<glyph unicode="&#x103;" horiz-adv-x="433" d="M200 552q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5zM25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23 q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -3 -22 -26t-54 -46.5t-51 -23.5q-27 0 -27 24q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96 q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#x104;" horiz-adv-x="688" d="M20 15q0 9 3 10.5t15 1.5h33q3 0 72 118l155.5 266t121.5 199q4 5 22.5 24.5t28.5 38.5q7 14 15 14q3 0 5 -1l3 -1.5t2 -3t1 -3.5t1 -5t1 -5q104 -641 116 -641h42q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -19 0.5t-31 1.5t-29 1q-107 -95 -107 -177 q0 -24 14.5 -44.5t34.5 -20.5t42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-30 0 -50.5 26t-20.5 58q0 31 26 70t47 60l71 68q-17 0 -50 -1.5t-42 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h57q2 0 2 11q0 24 -13.5 121t-14.5 103q-1 14 -4 16.5 t-14 2.5h-189q-15 0 -23 -15q-121 -227 -121 -238l1 -1h68q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -48.5 1.5t-53.5 1.5t-39 -1.5t-34 -1.5q-10 0 -12 2.5t-2 15.5zM284 311q0 -6 18 -6h167q13 0 13 5q0 7 -11 74l-22 131t-12 64q-3 0 -13 -19l-133 -234 q-7 -12 -7 -15z" />
<glyph unicode="&#x105;" horiz-adv-x="433" d="M25 59q0 46 15 100.5t42 106.5t72 86.5t98 34.5q35 0 56 -30l7.5 -12.5t7.5 -11.5t5 -4t8.5 21t6.5 23q2 6 36 11q21 2 21 -5q0 -3 -40.5 -146.5t-40.5 -169.5q0 -20 14 -20q9 0 37 28l27 28q3 0 7 -4t4 -10q0 -2 -11 -13.5t-30 -29t-36 -30.5q-22 -17 -33 -27 q-91 -89 -91 -162q0 -24 14.5 -44.5t34.5 -20.5t42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-30 0 -50.5 26t-20.5 58q0 29 23 65t44.5 58.5t65.5 64.5q-19 3 -19 23q0 19 14 72t28 97l15 44q-55 -101 -125 -174q-23 -24 -33.5 -33.5t-28 -19 t-34.5 -9.5q-31 0 -48 19.5t-17 49.5zM94 96q0 -53 26 -53q25 0 81.5 62.5t97.5 129.5q15 24 15 54q0 26 -27.5 42t-54.5 16q-32 0 -65 -46t-53 -105t-20 -100z" />
<glyph unicode="&#x106;" horiz-adv-x="686" d="M389 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM35 291q0 160 108 270t255 110q62 0 120 -24.5t92 -62.5l12 41q8 0 18.5 -3.5t10.5 -7.5q0 -3 -7.5 -41l-17 -84t-10.5 -54q-1 -5 -13 -5q-9 0 -16 4t-7 7q0 1 11.5 46.5 t11.5 50.5t-28 29.5t-79 50t-99 25.5q-75 0 -139 -56t-98.5 -137t-34.5 -162q0 -123 69.5 -195.5t172.5 -72.5q47 0 91 16.5t67 33.5t26 26q10 29 25 84q3 9 8 10.5t15 -1.5q17 -4 17 -11q0 -6 -33 -116q-5 -18 -81.5 -47t-141.5 -29q-64 0 -119.5 16.5t-103 50.5t-75 95 t-27.5 143z" />
<glyph unicode="&#x107;" horiz-adv-x="402" d="M250 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM25 128q0 114 71 188.5t150 74.5q58 0 86 -31q22 -24 22 -56q0 -21 -12 -35t-31 -14q-22 0 -22 37q0 4 0.5 12t0.5 12q0 20 -11.5 34t-35.5 14q-28 0 -57 -18.5t-49 -48.5 q-47 -71 -47 -153q0 -16 2.5 -28.5t11 -32.5t32 -31.5t60.5 -11.5q38 0 76.5 19.5t61.5 39t24 19.5q3 0 7.5 -5t4.5 -9q0 -5 -30 -31.5t-82 -54t-96 -27.5q-73 0 -105 40t-32 97z" />
<glyph unicode="&#x108;" horiz-adv-x="686" d="M295 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM35 291q0 160 108 270t255 110q62 0 120 -24.5t92 -62.5l12 41q8 0 18.5 -3.5t10.5 -7.5 q0 -3 -7.5 -41l-17 -84t-10.5 -54q-1 -5 -13 -5q-9 0 -16 4t-7 7q0 1 11.5 46.5t11.5 50.5t-28 29.5t-79 50t-99 25.5q-75 0 -139 -56t-98.5 -137t-34.5 -162q0 -123 69.5 -195.5t172.5 -72.5q47 0 91 16.5t67 33.5t26 26q10 29 25 84q3 9 8 10.5t15 -1.5q17 -4 17 -11 q0 -6 -33 -116q-5 -18 -81.5 -47t-141.5 -29q-64 0 -119.5 16.5t-103 50.5t-75 95t-27.5 143z" />
<glyph unicode="&#x109;" horiz-adv-x="402" d="M168 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM25 128q0 114 71 188.5t150 74.5q58 0 86 -31q22 -24 22 -56q0 -21 -12 -35t-31 -14q-22 0 -22 37q0 4 0.5 12 t0.5 12q0 20 -11.5 34t-35.5 14q-28 0 -57 -18.5t-49 -48.5q-47 -71 -47 -153q0 -16 2.5 -28.5t11 -32.5t32 -31.5t60.5 -11.5q38 0 76.5 19.5t61.5 39t24 19.5q3 0 7.5 -5t4.5 -9q0 -5 -30 -31.5t-82 -54t-96 -27.5q-73 0 -105 40t-32 97z" />
<glyph unicode="&#x10a;" horiz-adv-x="686" d="M366 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM35 291q0 160 108 270t255 110q62 0 120 -24.5t92 -62.5l12 41q8 0 18.5 -3.5t10.5 -7.5q0 -3 -7.5 -41l-17 -84t-10.5 -54q-1 -5 -13 -5q-9 0 -16 4t-7 7q0 1 11.5 46.5 t11.5 50.5t-28 29.5t-79 50t-99 25.5q-75 0 -139 -56t-98.5 -137t-34.5 -162q0 -123 69.5 -195.5t172.5 -72.5q47 0 91 16.5t67 33.5t26 26q10 29 25 84q3 9 8 10.5t15 -1.5q17 -4 17 -11q0 -6 -33 -116q-5 -18 -81.5 -47t-141.5 -29q-64 0 -119.5 16.5t-103 50.5t-75 95 t-27.5 143z" />
<glyph unicode="&#x10b;" horiz-adv-x="402" d="M236 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 128q0 114 71 188.5t150 74.5q58 0 86 -31q22 -24 22 -56q0 -21 -12 -35t-31 -14q-22 0 -22 37q0 4 0.5 12t0.5 12q0 20 -11.5 34t-35.5 14q-28 0 -57 -18.5t-49 -48.5 q-47 -71 -47 -153q0 -16 2.5 -28.5t11 -32.5t32 -31.5t60.5 -11.5q38 0 76.5 19.5t61.5 39t24 19.5q3 0 7.5 -5t4.5 -9q0 -5 -30 -31.5t-82 -54t-96 -27.5q-73 0 -105 40t-32 97z" />
<glyph unicode="&#x10c;" horiz-adv-x="686" d="M318 837q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t4 2.5l1 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM35 291q0 160 108 270t255 110q62 0 120 -24.5t92 -62.5l12 41q8 0 18.5 -3.5t10.5 -7.5 q0 -3 -7.5 -41l-17 -84t-10.5 -54q-1 -5 -13 -5q-9 0 -16 4t-7 7q0 1 11.5 46.5t11.5 50.5t-28 29.5t-79 50t-99 25.5q-75 0 -139 -56t-98.5 -137t-34.5 -162q0 -123 69.5 -195.5t172.5 -72.5q47 0 91 16.5t67 33.5t26 26q10 29 25 84q3 9 8 10.5t15 -1.5q17 -4 17 -11 q0 -6 -33 -116q-5 -18 -81.5 -47t-141.5 -29q-64 0 -119.5 16.5t-103 50.5t-75 95t-27.5 143z" />
<glyph unicode="&#x10d;" horiz-adv-x="402" d="M189 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q7 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6zM25 128q0 114 71 188.5t150 74.5q58 0 86 -31q22 -24 22 -56q0 -21 -12 -35t-31 -14q-22 0 -22 37q0 4 0.5 12 t0.5 12q0 20 -11.5 34t-35.5 14q-28 0 -57 -18.5t-49 -48.5q-47 -71 -47 -153q0 -16 2.5 -28.5t11 -32.5t32 -31.5t60.5 -11.5q38 0 76.5 19.5t61.5 39t24 19.5q3 0 7.5 -5t4.5 -9q0 -5 -30 -31.5t-82 -54t-96 -27.5q-73 0 -105 40t-32 97z" />
<glyph unicode="&#x10e;" horiz-adv-x="742" d="M266 837q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t4 2.5l1 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM19 10q0 11 3 13t14 2h43q5 0 42.5 261.5t45.5 338.5q2 11 -4 11l-70 -2q-5 0 -7.5 0.5t-4 3 t-1.5 8.5v6t0.5 4.5t2 3.5t4 1.5t6.5 0.5h24t51.5 -0.5t43.5 -0.5q33 0 75.5 1t56.5 1q165 0 261.5 -80t96.5 -248q0 -158 -102 -247.5t-248 -91.5q-32 0 -112 2t-113 2q-16 0 -55 -2t-42 -2q-8 0 -9.5 2t-1.5 12zM171 46q0 -13 6 -17t59 -4q97 0 170 27t111 64t61.5 88 t29.5 87.5t6 73.5q0 123 -74.5 196.5t-223.5 73.5q-49 0 -63 -4l-9 -56l-20 -137.5l-24 -165t-20.5 -148.5t-8.5 -78z" />
<glyph unicode="&#x10f;" horiz-adv-x="473" d="M478 495q0 3 6 25.5l15 57.5l13 51q9 32 34 32q26 0 26 -23q0 -9 -13 -35l-55 -98q-6 -12 -9 -12h-15q-2 0 -2 2zM25 74q0 34 14.5 83.5t40 100t68 86t92.5 35.5q17 0 33.5 -3t25 -6.5t18 -8.5t10.5 -5q9 -4 12 -2t5 12q6 31 15 91.5l15.5 107t6.5 47.5q5 17 -4 17 q-2 0 -44 -10.5t-45 -10.5q-5 0 -3 21q1 8 2.5 9.5t7.5 3.5q39 8 76 17.5t55 14.5t20 5q11 0 11 -15q0 -3 -50 -288t-50 -316q0 -15 13 -15t35.5 18.5t39.5 36.5t18 18q3 0 6.5 -3t3.5 -5q0 -5 -22 -32t-61.5 -56t-75.5 -29q-12 0 -19.5 9.5t-7.5 25.5q0 18 10.5 70.5 t20.5 95.5l10 43q-38 -72 -89 -139l-30.5 -39t-29 -30.5t-37 -25t-40.5 -7.5q-10 0 -19.5 2t-24.5 9t-24 24t-9 43zM91 102q0 -56 46 -56q41 0 138 140q54 82 54 118q0 14 -29 33.5t-60 19.5q-41 0 -77 -49t-54 -107t-18 -99z" />
<glyph unicode="&#x110;" horiz-adv-x="742" d="M19 10q0 11 3 13t14 2h43q5 0 46 285q1 8 -1 9.5t-11 1.5h-64q-2 0 -2.5 12t2.5 12h71q10 0 11 12q27 188 36 268q2 11 -4 11l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v6t0.5 4.5t2 3.5t4 1.5t6.5 0.5h24t51.5 -0.5t43.5 -0.5q33 0 75.5 1t56.5 1q165 0 261.5 -80t96.5 -248 q0 -158 -102 -247.5t-248 -91.5q-32 0 -112 2t-113 2q-16 0 -55 -2t-42 -2q-8 0 -9.5 2t-1.5 12zM171 46q0 -13 6 -17t59 -4q97 0 170 27t111 64t61.5 88t29.5 87.5t6 73.5q0 123 -74.5 196.5t-223.5 73.5q-49 0 -63 -4l-41 -274q-1 -7 0 -9.5t8 -2.5h196q3 0 3 -12t-3 -12 h-197q-9 0 -11 -1.5t-3 -9.5q-34 -236 -34 -264z" />
<glyph unicode="&#x111;" horiz-adv-x="473" d="M25 74q0 34 14.5 83.5t40 100t68 86t92.5 35.5q17 0 33.5 -3t25 -6.5t18 -8.5t10.5 -5q9 -4 12 -2t5 12q10 54 18 110q1 6 0 7t-8 1h-145q-2 0 -2.5 12t2.5 12h148q9 0 10 7l6.5 46.5t5.5 37t2 13.5q5 17 -4 17q-2 0 -44 -10.5t-45 -10.5q-5 0 -3 21q1 8 2.5 9.5t7.5 3.5 q39 8 76 17.5t55 14.5t20 5q11 0 11 -15q0 -2 -25 -148q-1 -6 -0.5 -7t7.5 -1h61q3 0 3 -12t-3 -12h-64q-7 0 -8.5 -1t-2.5 -7q-68 -387 -68 -416q0 -15 13 -15t35.5 18.5t39.5 36.5t18 18q3 0 6.5 -3t3.5 -5q0 -5 -22 -32t-61.5 -56t-75.5 -29q-12 0 -19.5 9.5t-7.5 25.5 q0 18 10.5 70.5t20.5 95.5l10 43q-38 -72 -89 -139l-30.5 -39t-29 -30.5t-37 -25t-40.5 -7.5q-10 0 -19.5 2t-24.5 9t-24 24t-9 43zM91 102q0 -56 46 -56q41 0 138 140q54 82 54 118q0 14 -29 33.5t-60 19.5q-41 0 -77 -49t-54 -107t-18 -99z" />
<glyph unicode="&#x112;" horiz-adv-x="579" d="M252 788l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5 q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8 q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5 t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x113;" horiz-adv-x="390" d="M183 518l2 21q1 6 2 7t7 1h181q5 0 6.5 -1t1.5 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9 q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#x114;" horiz-adv-x="579" d="M266 810q0 28 4 28h13q1 0 1 -2q0 -31 15.5 -45t52.5 -14q53 0 77 32q4 6 7.5 13.5l5.5 11.5t3 4h13q-6 -46 -37.5 -77.5t-76.5 -31.5q-41 0 -59.5 23t-18.5 58zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14 l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6 q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11 q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x115;" horiz-adv-x="390" d="M199 552q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46 q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#x116;" horiz-adv-x="579" d="M310 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5 t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7 q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5 t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x117;" horiz-adv-x="390" d="M241 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9 q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#x118;" horiz-adv-x="579" d="M20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36 t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7 q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11h-62q-101 -109 -101 -174t47 -65q20 0 42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18 q-31 0 -50 21t-19 56q0 73 143 203q-202 2 -276 2q-16 0 -54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x119;" horiz-adv-x="390" d="M25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9q0 -5 -33 -33t-50 -46q-48 -49 -87 -107t-39 -99q0 -65 47 -65q20 0 42 11t36 22l14 11q1 0 5 -6t4 -7 q0 -3 -19 -19t-55 -34t-72 -18q-31 0 -50 21t-19 56q0 11 2.5 22t9.5 24.5l12.5 23.5t18 26l19.5 25t23.5 27l23 25l25 26.5l23.5 24.5q-51 -24 -100 -24q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122 q-14 -35 -14 -45z" />
<glyph unicode="&#x11a;" horiz-adv-x="579" d="M262 837q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t4 2.5l1 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5 q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -269q-2 -11 -0.5 -14t14.5 -3h164q45 0 47 13l11 53q1 7 16 7 q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5q4 9 14 9q17 0 17 -11 q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x11b;" horiz-adv-x="390" d="M194 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q8 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6zM25 105q0 114 73 200t172 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89 q42 0 82 21.5t63.5 43.5t24.5 22q4 0 8.5 -5t4.5 -9q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5q-55 0 -90.5 27.5t-35.5 82.5zM106 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122q-14 -35 -14 -45z" />
<glyph unicode="&#x11c;" horiz-adv-x="721" d="M309 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM35 266q0 108 51.5 203t138.5 150.5t186 55.5q26 0 51.5 -3.5t46.5 -8.5t39.5 -12t33 -13.5 t24.5 -11.5l16 -8l6 -4q1 0 6 27q3 11 11 11q9 0 15.5 -2t5.5 -7q-13 -84 -23 -175l-1.5 -7.5t-4 -4.5t-9.5 -2q-22 0 -18 16q1 5 8.5 49.5t7.5 50.5q0 5 -35.5 24t-87.5 37.5t-88 18.5q-78 0 -145.5 -57.5t-103.5 -143.5t-36 -173q0 -122 67 -195t165 -73q65 0 111.5 21.5 t51.5 40.5q15 55 18 136q1 14 -9 14h-85q-8 0 -8 12q0 18 9 18q16 0 64 -1.5t66 -1.5q17 0 49.5 1.5t53.5 1.5q8 0 8 -14q0 -16 -8 -16h-57q-2 0 -19 -146q-1 -10 -44.5 -33.5t-116.5 -45t-138 -21.5q-28 0 -59 6t-70.5 26t-70 50.5t-52 85t-21.5 124.5z" />
<glyph unicode="&#x11d;" horiz-adv-x="426" d="M146 460l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM-6 -157q0 39 29.5 67t61.5 42q12 6 12 8q0 1 -3 2.5t-7.5 3.5t-7.5 4q-25 18 -25 33q0 7 18 35.5t27 31.5 l60 22l6 3q0 2 -7 4q-14 4 -28 11.5t-31.5 22t-28 40t-10.5 57.5q0 70 51.5 119.5t125.5 49.5q18 0 35 -4.5t28 -11.5t19 -13.5t12 -11t5 -4.5q2 0 7.5 11.5t12 26.5t8.5 19q5 9 21 9q27 0 27 -11q0 -12 -11.5 -33t-23 -38t-11.5 -18q0 -6 3 -13q7 -18 7 -40q0 -73 -53 -121 q-26 -24 -51.5 -35t-74.5 -24q-93 -27 -93 -47q0 -9 10.5 -16t37 -13.5t41.5 -9t55 -8.5q17 -3 26 -4q65 -11 98 -30.5t33 -64.5q0 -75 -67 -110t-173 -35q-44 0 -79.5 7t-63.5 29t-28 58zM36 -151q0 -21 18 -36.5t46.5 -22t53.5 -9.5t50 -3q62 0 101 22.5t39 66.5 q0 32 -26 46t-78 23q-98 17 -107 17q-8 0 -32 -11q-65 -32 -65 -93zM123 229q0 -60 24.5 -87t49.5 -27q40 0 78.5 48.5t38.5 115.5q0 37 -22 67t-56 30q-50 0 -81.5 -48.5t-31.5 -98.5z" />
<glyph unicode="&#x11e;" horiz-adv-x="721" d="M336 810q0 28 4 28h13q1 0 1 -2q0 -31 15.5 -45t52.5 -14q53 0 77 32q4 6 7.5 13.5l5.5 11.5t3 4h13q-6 -46 -37.5 -77.5t-76.5 -31.5q-41 0 -59.5 23t-18.5 58zM35 266q0 108 51.5 203t138.5 150.5t186 55.5q26 0 51.5 -3.5t46.5 -8.5t39.5 -12t33 -13.5t24.5 -11.5 l16 -8l6 -4q1 0 6 27q3 11 11 11q9 0 15.5 -2t5.5 -7q-13 -84 -23 -175l-1.5 -7.5t-4 -4.5t-9.5 -2q-22 0 -18 16q1 5 8.5 49.5t7.5 50.5q0 5 -35.5 24t-87.5 37.5t-88 18.5q-78 0 -145.5 -57.5t-103.5 -143.5t-36 -173q0 -122 67 -195t165 -73q65 0 111.5 21.5t51.5 40.5 q15 55 18 136q1 14 -9 14h-85q-8 0 -8 12q0 18 9 18q16 0 64 -1.5t66 -1.5q17 0 49.5 1.5t53.5 1.5q8 0 8 -14q0 -16 -8 -16h-57q-2 0 -19 -146q-1 -10 -44.5 -33.5t-116.5 -45t-138 -21.5q-28 0 -59 6t-70.5 26t-70 50.5t-52 85t-21.5 124.5z" />
<glyph unicode="&#x11f;" horiz-adv-x="426" d="M172 550q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5zM-6 -157q0 39 29.5 67t61.5 42q12 6 12 8q0 1 -3 2.5t-7.5 3.5t-7.5 4q-25 18 -25 33q0 7 18 35.5t27 31.5 l60 22l6 3q0 2 -7 4q-14 4 -28 11.5t-31.5 22t-28 40t-10.5 57.5q0 70 51.5 119.5t125.5 49.5q18 0 35 -4.5t28 -11.5t19 -13.5t12 -11t5 -4.5q2 0 7.5 11.5t12 26.5t8.5 19q5 9 21 9q27 0 27 -11q0 -12 -11.5 -33t-23 -38t-11.5 -18q0 -6 3 -13q7 -18 7 -40q0 -73 -53 -121 q-26 -24 -51.5 -35t-74.5 -24q-93 -27 -93 -47q0 -9 10.5 -16t37 -13.5t41.5 -9t55 -8.5q17 -3 26 -4q65 -11 98 -30.5t33 -64.5q0 -75 -67 -110t-173 -35q-44 0 -79.5 7t-63.5 29t-28 58zM36 -151q0 -21 18 -36.5t46.5 -22t53.5 -9.5t50 -3q62 0 101 22.5t39 66.5 q0 32 -26 46t-78 23q-98 17 -107 17q-8 0 -32 -11q-65 -32 -65 -93zM123 229q0 -60 24.5 -87t49.5 -27q40 0 78.5 48.5t38.5 115.5q0 37 -22 67t-56 30q-50 0 -81.5 -48.5t-31.5 -98.5z" />
<glyph unicode="&#x120;" horiz-adv-x="721" d="M380 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM35 266q0 108 51.5 203t138.5 150.5t186 55.5q26 0 51.5 -3.5t46.5 -8.5t39.5 -12t33 -13.5t24.5 -11.5l16 -8l6 -4q1 0 6 27q3 11 11 11q9 0 15.5 -2t5.5 -7 q-13 -84 -23 -175l-1.5 -7.5t-4 -4.5t-9.5 -2q-22 0 -18 16q1 5 8.5 49.5t7.5 50.5q0 5 -35.5 24t-87.5 37.5t-88 18.5q-78 0 -145.5 -57.5t-103.5 -143.5t-36 -173q0 -122 67 -195t165 -73q65 0 111.5 21.5t51.5 40.5q15 55 18 136q1 14 -9 14h-85q-8 0 -8 12q0 18 9 18 q16 0 64 -1.5t66 -1.5q17 0 49.5 1.5t53.5 1.5q8 0 8 -14q0 -16 -8 -16h-57q-2 0 -19 -146q-1 -10 -44.5 -33.5t-116.5 -45t-138 -21.5q-28 0 -59 6t-70.5 26t-70 50.5t-52 85t-21.5 124.5z" />
<glyph unicode="&#x121;" horiz-adv-x="426" d="M214 538q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM-6 -157q0 39 29.5 67t61.5 42q12 6 12 8q0 1 -3 2.5t-7.5 3.5t-7.5 4q-25 18 -25 33q0 7 18 35.5t27 31.5l60 22l6 3q0 2 -7 4q-14 4 -28 11.5t-31.5 22t-28 40 t-10.5 57.5q0 70 51.5 119.5t125.5 49.5q18 0 35 -4.5t28 -11.5t19 -13.5t12 -11t5 -4.5q2 0 7.5 11.5t12 26.5t8.5 19q5 9 21 9q27 0 27 -11q0 -12 -11.5 -33t-23 -38t-11.5 -18q0 -6 3 -13q7 -18 7 -40q0 -73 -53 -121q-26 -24 -51.5 -35t-74.5 -24q-93 -27 -93 -47 q0 -9 10.5 -16t37 -13.5t41.5 -9t55 -8.5q17 -3 26 -4q65 -11 98 -30.5t33 -64.5q0 -75 -67 -110t-173 -35q-44 0 -79.5 7t-63.5 29t-28 58zM36 -151q0 -21 18 -36.5t46.5 -22t53.5 -9.5t50 -3q62 0 101 22.5t39 66.5q0 32 -26 46t-78 23q-98 17 -107 17q-8 0 -32 -11 q-65 -32 -65 -93zM123 229q0 -60 24.5 -87t49.5 -27q40 0 78.5 48.5t38.5 115.5q0 37 -22 67t-56 30q-50 0 -81.5 -48.5t-31.5 -98.5z" />
<glyph unicode="&#x122;" horiz-adv-x="721" d="M235 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM35 266q0 108 51.5 203t138.5 150.5t186 55.5q26 0 51.5 -3.5t46.5 -8.5t39.5 -12t33 -13.5t24.5 -11.5 l16 -8l6 -4q1 0 6 27q3 11 11 11q9 0 15.5 -2t5.5 -7q-13 -84 -23 -175l-1.5 -7.5t-4 -4.5t-9.5 -2q-22 0 -18 16q1 5 8.5 49.5t7.5 50.5q0 5 -35.5 24t-87.5 37.5t-88 18.5q-78 0 -145.5 -57.5t-103.5 -143.5t-36 -173q0 -122 67 -195t165 -73q65 0 111.5 21.5t51.5 40.5 q15 55 18 136q1 14 -9 14h-85q-8 0 -8 12q0 18 9 18q16 0 64 -1.5t66 -1.5q17 0 49.5 1.5t53.5 1.5q8 0 8 -14q0 -16 -8 -16h-57q-2 0 -19 -146q-1 -10 -44.5 -33.5t-116.5 -45t-138 -21.5q-28 0 -59 6t-70.5 26t-70 50.5t-52 85t-21.5 124.5z" />
<glyph unicode="&#x123;" horiz-adv-x="426" d="M208 498q0 30 26 58t49 41.5t26 13.5q7 0 7 -13v-2q0 -1 -14 -8.5t-27 -21t-13 -28.5q0 -18 17 -34.5t17 -19.5q0 -11 -19.5 -22.5t-24.5 -11.5q-10 0 -27 17.5t-17 30.5zM-6 -157q0 39 29.5 67t61.5 42q12 6 12 8q0 1 -3 2.5t-7.5 3.5t-7.5 4q-25 18 -25 33q0 7 18 35.5 t27 31.5l60 22l6 3q0 2 -7 4q-14 4 -28 11.5t-31.5 22t-28 40t-10.5 57.5q0 70 51.5 119.5t125.5 49.5q18 0 35 -4.5t28 -11.5t19 -13.5t12 -11t5 -4.5q2 0 7.5 11.5t12 26.5t8.5 19q5 9 21 9q27 0 27 -11q0 -12 -11.5 -33t-23 -38t-11.5 -18q0 -6 3 -13q7 -18 7 -40 q0 -73 -53 -121q-26 -24 -51.5 -35t-74.5 -24q-93 -27 -93 -47q0 -9 10.5 -16t37 -13.5t41.5 -9t55 -8.5q17 -3 26 -4q65 -11 98 -30.5t33 -64.5q0 -75 -67 -110t-173 -35q-44 0 -79.5 7t-63.5 29t-28 58zM36 -151q0 -21 18 -36.5t46.5 -22t53.5 -9.5t50 -3q62 0 101 22.5 t39 66.5q0 32 -26 46t-78 23q-98 17 -107 17q-8 0 -32 -11q-65 -32 -65 -93zM123 229q0 -60 24.5 -87t49.5 -27q40 0 78.5 48.5t38.5 115.5q0 37 -22 67t-56 30q-50 0 -81.5 -48.5t-31.5 -98.5z" />
<glyph unicode="&#x124;" horiz-adv-x="795" d="M341 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM20 13q0 9 3 11.5t15 2.5h53q7 0 48 282t41 314q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5 t5.5 4t11 0.5q6 0 47.5 -1.5t58.5 -1.5q16 0 53 1.5t48 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-50q-8 0 -47 -270q-2 -11 -0.5 -15t12.5 -4h332q8 0 11 0.5t5.5 3t3.5 8.5q30 232 30 261q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 48 -1.5 t59 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-10 0 -47 -288.5t-37 -310.5q0 -13 8 -13h57q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54.5 1.5t-59.5 1.5t-50 -1.5t-45 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5 h53q5 0 44 287q1 8 -1.5 10t-13.5 2h-334q-9 0 -12.5 -3t-4.5 -13q-32 -235 -32 -270q0 -13 8 -13h59q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54 1.5t-59 1.5t-53.5 -1.5t-48.5 -1.5q-9 0 -11.5 3t-2.5 13z" />
<glyph unicode="&#x125;" horiz-adv-x="468" d="M85 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM25 6q0 2 7 33.5t18 88l23.5 127t26 168.5t23.5 196q2 19 -4 19q-10 0 -49 -14l-38 -13 q-3 0 -3 14q0 13 7 16q30 11 83 22.5t72 11.5q6 0 6 -15q-5 -101 -93 -537q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5t-60.5 -58.5t-72.5 -30 q-18 0 -29.5 10.5t-11.5 27.5q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8z" />
<glyph unicode="&#x126;" horiz-adv-x="795" d="M20 13q0 9 3 11.5t15 2.5h53q11 0 72 451q1 10 -7 10h-74q-2 0 -2.5 12t2.5 12h74h6.5t3.5 1t2.5 3t0.5 6q11 83 11 101q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 47.5 -1.5t58.5 -1.5q16 0 53 1.5t48 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5 t-15 -1.5h-50q-5 0 -24 -115q-2 -7 -0.5 -9.5t8.5 -2.5h342q7 0 8.5 2t2.5 10q10 85 10 99q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 48 -1.5t59 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-6 0 -23 -115 q-1 -8 0 -10t8 -2h61q3 0 3 -12t-3 -12h-65q-9 0 -10 -9l-24.5 -186.5l-22 -177t-8.5 -75.5q0 -13 8 -13h57q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54.5 1.5t-59.5 1.5t-50 -1.5t-45 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h53q5 0 44 287q1 8 -1.5 10 t-13.5 2h-334q-9 0 -12.5 -3t-4.5 -13q-32 -235 -32 -270q0 -13 8 -13h59q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54 1.5t-59 1.5t-53.5 -1.5t-48.5 -1.5q-9 0 -11.5 3t-2.5 13zM222 358q0 -8 13 -8h332q8 0 11 0.5t5.5 3t3.5 8.5l15 117v4l1 2q0 3 -8 3h-345 q-7 0 -8.5 -1.5t-2.5 -8.5l-16 -109q-1 -5 -1 -11z" />
<glyph unicode="&#x127;" horiz-adv-x="468" d="M11 497q0 11 3 11h87q7 0 8.5 1.5t2.5 8.5q8 66 11 101q2 19 -4 19q-10 0 -49 -14l-38 -13q-3 0 -3 14q0 13 7 16q30 11 83 22.5t72 11.5q6 0 6 -15q-3 -46 -19 -142q-1 -7 -0.5 -8.5t8.5 -1.5h149q3 0 3 -12t-3 -12h-151q-8 0 -10 -1t-3 -9q-10 -61 -67 -351 q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5t-60.5 -58.5t-72.5 -30q-18 0 -29.5 10.5t-11.5 27.5q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11 q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8q0 1 12.5 59.5t33.5 173.5t36 235q1 8 -0.5 9t-9.5 1h-83q-3 0 -3 13z" />
<glyph unicode="&#x128;" horiz-adv-x="377" d="M142 745q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66 q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5 q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x129;" horiz-adv-x="270" d="M78 495q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150 t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#x12a;" horiz-adv-x="377" d="M150 788l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x12b;" horiz-adv-x="270" d="M86 518l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5 q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#x12c;" horiz-adv-x="377" d="M164 810q0 28 4 28h13q1 0 1 -2q0 -31 15.5 -45t52.5 -14q53 0 77 32q4 6 7.5 13.5l5.5 11.5t3 4h13q-6 -46 -37.5 -77.5t-76.5 -31.5q-41 0 -59.5 23t-18.5 58zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5 q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x12d;" horiz-adv-x="270" d="M102 552q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16 t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#x12e;" horiz-adv-x="377" d="M10 -205q0 65 124 205q-96 -3 -100 -3q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57 q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -110 3q-40 -52 -60.5 -93t-20.5 -88q0 -61 47 -61q20 0 42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-31 0 -50 21t-19 56z" />
<glyph unicode="&#x12f;" horiz-adv-x="270" d="M-40 -205q0 27 23.5 66t45 63.5t67.5 72.5q-8 -3 -12 -3q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5t29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16 t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -11 -55 -55q-24 -19 -49 -47q-104 -119 -104 -182q0 -65 47 -65q20 0 42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-31 0 -50 21t-19 56zM128 549q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13 q-20 0 -32 15t-12 33z" />
<glyph unicode="&#x130;" horiz-adv-x="377" d="M208 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x131;" horiz-adv-x="270" d="M25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5 q-4 0 -8 4.5t-4 8.5z" />
<glyph unicode="&#x132;" horiz-adv-x="677" d="M254 -188q0 23 28.5 43.5t38.5 20.5q7 0 24 -10.5t28 -10.5q6 0 11.5 2.5t9.5 8.5t7 12t5.5 16.5t4.5 18t3.5 21t2.5 20.5t2 21.5t2 19.5q11 106 30.5 260l33.5 257t14 109q0 18 -10 18h-68q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 56 -1.5t67 -1.5 q16 0 52 1.5t47 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-5 0 -20 -101t-34.5 -253.5t-19.5 -154.5q-16 -121 -35 -173q-23 -62 -64 -105q-60 -64 -109 -64q-19 0 -36 7t-17 17zM20 15q0 9 3 10.5t15 1.5h60q5 0 47 279t42 317q0 16 -9 16h-66 q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 52 -1.5t63 -1.5q16 0 57 1.5t52 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-57q-9 0 -48.5 -275.5t-39.5 -323.5q0 -13 8 -13h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58 1.5t-63 1.5t-59 -1.5t-54 -1.5 q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x133;" horiz-adv-x="567" d="M201 -221q0 15 10 25.5t25 10.5q18 0 38 -12.5t37 -12.5q10 0 17.5 7.5t14 26.5t9.5 31.5t9 42.5q19 93 43 242t24 170q0 18 -12 18q-11 0 -35 -22t-43.5 -44.5t-20.5 -22.5q-4 0 -8 3.5t-4 7.5t30 36t71.5 64.5t66.5 32.5q21 0 21 -24q0 -21 -12.5 -103t-27 -167 t-15.5 -92q-7 -45 -14 -73.5t-28.5 -72.5t-53.5 -68q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23zM427 579q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150 t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5q-4 0 -8 4.5t-4 8.5zM128 549q0 20 11 33t30 13q20 0 32 -15t12 -33 q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="&#x134;" horiz-adv-x="365" d="M124 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-4 -2.5l-1 -1h-12q-5 0 -5 2zM-58 -188q0 23 28.5 43.5t38.5 20.5q7 0 24 -10.5t28 -10.5q6 0 11.5 2.5t9.5 8.5t7 12t5.5 16.5 t4.5 18t3.5 21t2.5 20.5t2 21.5t2 19.5q11 106 30.5 260l33.5 257t14 109q0 18 -10 18h-68q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 56 -1.5t67 -1.5q16 0 52 1.5t47 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-50q-5 0 -20 -101t-34.5 -253.5 t-19.5 -154.5q-16 -121 -35 -173q-23 -62 -64 -105q-60 -64 -109 -64q-19 0 -36 7t-17 17z" />
<glyph unicode="&#x135;" horiz-adv-x="297" d="M77 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-7 -6 -9 -6h-12q-5 0 -5 2zM-69 -221q0 15 10 25.5t25 10.5q18 0 38 -12.5t37 -12.5q10 0 17.5 7.5t14 26.5t9.5 31.5t9 42.5q19 93 43 242 t24 170q0 18 -12 18q-11 0 -35 -22t-43.5 -44.5t-20.5 -22.5q-4 0 -8 3.5t-4 7.5t30 36t71.5 64.5t66.5 32.5q21 0 21 -24q0 -21 -12.5 -103t-27 -167t-15.5 -92q-7 -45 -14 -73.5t-28.5 -72.5t-53.5 -68q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23z" />
<glyph unicode="&#x136;" horiz-adv-x="656" d="M249 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM20 13q0 9 3 11.5t15 2.5h33q7 0 50.5 282t43.5 314q0 16 -9 16h-57q-12 0 -12 15q0 7 2.5 10.5t5.5 4 t11 0.5q6 0 45.5 -1.5t56.5 -1.5q16 0 48 1.5t43 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-35q-10 0 -33 -127t-25 -154q-2 -20 13 -20h50q8 0 93 108.5t130 171.5q10 15 10 16q0 5 -15 5h-21q-7 0 -10.5 0.5t-6 4t-2.5 10.5t2.5 10.5t5.5 4t11 0.5 q6 0 29 -1.5t40 -1.5q16 0 42.5 1.5t37.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-58q-82 -110 -218 -261q-3 -3 -6 -6.5t-5.5 -5.5t-4 -4t-1.5 -3q0 -3 9 -12q24 -22 56 -60.5t56 -70l66 -89.5l61 -83q12 -17 35 -17h28q8 0 9.5 -2t1.5 -11q0 -11 -2 -14 t-9 -3q-11 0 -54.5 1.5t-59.5 1.5t-41.5 -1.5t-36.5 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h8q20 0 20 7q0 4 -12 20q-187 266 -196 266h-46h-8t-4.5 -2.5t-3.5 -7.5q-4 -33 -14.5 -101t-16.5 -112.5t-6 -58.5q0 -11 2 -11h69q8 0 9.5 -2t1.5 -11q0 -11 -2 -14 t-9 -3q-11 0 -54 1.5t-59 1.5t-43.5 -1.5t-38.5 -1.5q-9 0 -11.5 3t-2.5 13z" />
<glyph unicode="&#x137;" horiz-adv-x="450" d="M128 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM25 -3q0 8 21 107t48.5 249.5t38.5 269.5q0 9 -7 9q-8 0 -75 -19q-6 -1 -7.5 2t0.5 17q2 8 6 9l77.5 20 l53.5 14t19 4q14 0 14 -11q0 -16 -97 -489q36 69 72 117q33 43 66.5 64t82.5 21q59 0 59 -37q0 -42 -32.5 -78t-67.5 -53t-65 -24q-21 -3 -21 -4l4 -2q4 -2 10.5 -6.5t12.5 -9.5q47 -45 73 -77q16 -20 24 -28.5t22.5 -16.5t31.5 -8q34 0 34 27q0 4 -1 10.5t-1 9.5q0 12 8 12 t14.5 -10.5t6.5 -32.5t-38.5 -38.5t-72.5 -16.5q-22 0 -43 20q-11 10 -23.5 25t-29 37.5t-24.5 32.5q-10 13 -23.5 28.5t-20 24t-6.5 9.5q0 5 17 22q2 2 10 2q16 0 28 5q37 17 71 53.5t34 70.5q0 20 -31 20q-29 0 -63 -32q-9 -9 -18.5 -20t-20.5 -26.5l-18.5 -26.5 l-21.5 -33t-21 -32q-17 -27 -24 -58q-15 -64 -21 -98q-3 -22 -10 -22q-1 0 -11 -1.5t-22 -3t-17 -1.5t-5 3z" />
<glyph unicode="&#x138;" horiz-adv-x="491" d="M25 291q0 11 50.5 53t79.5 42q18 0 18 -20q0 -67 -31 -211q58 101 88 141q33 43 66.5 64t82.5 21q59 0 59 -37q0 -42 -32.5 -78t-67.5 -53t-65 -24q-21 -3 -21 -4l4 -2q4 -2 10.5 -6.5t12.5 -9.5q47 -45 73 -77q16 -20 24 -28.5t22.5 -16.5t31.5 -8q34 0 34 27 q0 4 -1 10.5t-1 9.5q0 12 8 12t14.5 -10.5t6.5 -32.5t-38.5 -38.5t-72.5 -16.5q-22 0 -43 20q-11 10 -23.5 25t-29 37.5t-24.5 32.5q-10 13 -23.5 28.5t-20 24t-6.5 9.5q0 5 17 22q2 2 10 2q15 0 28 5q37 17 71 53.5t34 70.5q0 20 -31 20q-29 0 -63 -32q-9 -9 -18.5 -20 t-20.5 -26.5l-18.5 -26.5l-21.5 -33t-21 -32q-17 -27 -24 -58q-15 -64 -21 -98q-3 -22 -10 -22q-1 0 -11 -1.5t-22 -3t-17 -1.5q-7 0 -5 9q1 3 9.5 48.5l16.5 87.5t15 88.5t7 65.5q0 38 -13 38q-11 0 -27 -12.5t-27.5 -25.5t-12.5 -13q-9 0 -9 11z" />
<glyph unicode="&#x139;" horiz-adv-x="586" d="M204 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM20 15q0 9 2.5 10.5t14.5 1.5h52q1 0 20 142.5l38 292t19 164.5q0 13 -2 13h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 43.5 -1.5t54.5 -1.5q16 0 57.5 1.5 t52.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-62l-19 -144l-39 -290t-19 -152q0 -22 17 -22q231 0 291 6q12 1 15 4t8 19l25 77q3 8 11 8q21 0 21 -10q0 -3 -5 -19l-14.5 -47t-17.5 -61q-2 -11 -20 -11q-11 0 -185.5 1.5t-190.5 1.5t-52.5 -1.5t-47.5 -1.5 q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x13a;" horiz-adv-x="272" d="M196 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM55 28q0 6 18 106.5l42 243t35 234.5q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9q0 -12 -50 -305.5 t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5t-71.5 -62t-73.5 -31.5q-29 0 -29 38z" />
<glyph unicode="&#x13b;" horiz-adv-x="586" d="M236 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM20 15q0 9 2.5 10.5t14.5 1.5h52q1 0 20 142.5l38 292t19 164.5q0 13 -2 13h-58q-10 0 -13 2.5t-3 12.5 t3.5 12.5t16.5 2.5q6 0 43.5 -1.5t54.5 -1.5q16 0 57.5 1.5t52.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-62l-19 -144l-39 -290t-19 -152q0 -22 17 -22q231 0 291 6q12 1 15 4t8 19l25 77q3 8 11 8q21 0 21 -10q0 -3 -5 -19l-14.5 -47t-17.5 -61q-2 -11 -20 -11 q-11 0 -185.5 1.5t-190.5 1.5t-52.5 -1.5t-47.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x13c;" horiz-adv-x="272" d="M17 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM55 28q0 6 18 106.5l42 243t35 234.5q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5 q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9q0 -12 -50 -305.5t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5t-71.5 -62t-73.5 -31.5q-29 0 -29 38z" />
<glyph unicode="&#x13d;" horiz-adv-x="586" d="M367 495q0 3 6 25.5l15 57.5l13 51q9 32 34 32q26 0 26 -23q0 -9 -13 -35l-55 -98q-6 -12 -9 -12h-15q-2 0 -2 2zM20 15q0 9 2.5 10.5t14.5 1.5h52q1 0 20 142.5l38 292t19 164.5q0 13 -2 13h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 43.5 -1.5t54.5 -1.5 q16 0 57.5 1.5t52.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-62l-19 -144l-39 -290t-19 -152q0 -22 17 -22q231 0 291 6q12 1 15 4t8 19l25 77q3 8 11 8q21 0 21 -10q0 -3 -5 -19l-14.5 -47t-17.5 -61q-2 -11 -20 -11q-11 0 -185.5 1.5t-190.5 1.5t-52.5 -1.5 t-47.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x13e;" horiz-adv-x="272" d="M248 495q0 3 6 25.5l15 57.5l13 51q9 32 34 32q26 0 26 -23q0 -9 -13 -35l-55 -98q-6 -12 -9 -12h-15q-2 0 -2 2zM55 28q0 6 18 106.5l42 243t35 234.5q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9 q0 -12 -50 -305.5t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5t-71.5 -62t-73.5 -31.5q-29 0 -29 38z" />
<glyph unicode="&#x13f;" horiz-adv-x="586" d="M20 15q0 9 2.5 10.5t14.5 1.5h52q1 0 20 142.5l38 292t19 164.5q0 13 -2 13h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 43.5 -1.5t54.5 -1.5q16 0 57.5 1.5t52.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-62l-19 -144l-39 -290t-19 -152q0 -22 17 -22 q231 0 291 6q12 1 15 4t8 19l25 77q3 8 11 8q21 0 21 -10q0 -3 -5 -19l-14.5 -47t-17.5 -61q-2 -11 -20 -11q-11 0 -185.5 1.5t-190.5 1.5t-52.5 -1.5t-47.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5zM428 340q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13 q-20 0 -32 15t-12 33z" />
<glyph unicode="&#x140;" horiz-adv-x="397" d="M297 340q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM55 28q0 6 18 106.5l42 243t35 234.5q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9q0 -12 -50 -305.5 t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5t-71.5 -62t-73.5 -31.5q-29 0 -29 38z" />
<glyph unicode="&#x141;" horiz-adv-x="586" d="M20 15q0 9 2.5 10.5t14.5 1.5h52q1 0 26 188q1 7 0 7t-6 -2q-10 -5 -27.5 -13t-29.5 -13l-11 -6q-2 0 -2 9q0 15 3 18l69 32q9 4 10 15q45 343 45 364q0 13 -2 13h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 43.5 -1.5t54.5 -1.5q16 0 57.5 1.5t52.5 1.5 q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-62q0 -1 -44 -334q-1 -10 -1 -10.5t7 1.5l100 46.5l123.5 58t53.5 24.5q2 0 2 -4q0 -5 -3 -20q-1 -3 -5 -5l-271 -126q-10 -5 -12 -11q-1 -2 -1 -4q-26 -201 -26 -202q0 -22 17 -22q231 0 291 6q12 1 15 4t8 19l25 77q3 8 11 8 q21 0 21 -10q0 -3 -5 -19l-14.5 -47t-17.5 -61q-2 -11 -20 -11q-11 0 -185.5 1.5t-190.5 1.5t-52.5 -1.5t-47.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph unicode="&#x142;" horiz-adv-x="272" d="M29 273q-2 0 0 11q0 15 5 18l67 34q8 3 9 12q32 196 40 264q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9q0 -12 -47 -288v-1q-1 -5 -0.5 -5t3.5 1l2 1l35 17q34 18 35 18q2 0 0 -18q0 -2 -0.5 -4 t-0.5 -4l-1 -2l-74 -37q-5 -2 -6 -8q-46 -264 -46 -272q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5t-71.5 -62t-73.5 -31.5q-29 0 -29 38q0 4 6.5 40l19 105.5l22.5 128.5q1 6 0 6.5t-5 -1.5q-2 -1 -3 -1q-64 -33 -66 -33z" />
<glyph unicode="&#x143;" horiz-adv-x="824" d="M455 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM20 15q0 9 3 10.5t15 1.5h50q40 245 89 514q1 6 4 22.5t5 29.5t2 21q0 3 -5 12t-10 11t-22 2h-50q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5 q13 0 28.5 1.5t16.5 1.5q12 0 20 -13l329 -499q8 -12 16 -12q7 0 39.5 218.5t32.5 263.5q0 12 -2 12h-76q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 42 -1.5t47 -1.5t44.5 1.5t39.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-42q-6 0 -80 -467q-10 -60 -16 -168 q-1 -15 -4 -20t-12 -5t-28 32q-45 73 -118 180l-256 374q-15 21 -16 21q-4 0 -5 -20q0 -3 -17.5 -117t-35 -241.5t-17.5 -165.5q0 -15 3 -15h85q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5q-18 0 -52 -1.5t-35 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x144;" horiz-adv-x="515" d="M324 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM15 287q0 2 29.5 26t72.5 48.5t70 24.5q21 0 21 -21t-6 -55t-12 -57l-19.5 -72.5t-16.5 -62.5q74 131 134.5 199.5t116.5 68.5q51 0 51 -44q0 -29 -38.5 -145t-38.5 -127 q0 -20 19 -20q13 0 34.5 18.5t38 37t17.5 18.5q3 0 7.5 -4.5t4.5 -6.5q0 -5 -24 -31.5t-63.5 -53.5t-72.5 -27q-15 0 -23.5 11.5t-8.5 29.5q0 28 40 135t40 138q0 12 -6 20.5t-16 8.5q-26 0 -79 -66.5t-100 -141.5q-22 -36 -44 -112q-7 -25 -15 -26q-40 -4 -48 -4 q-7 0 -5 10q60 249 60 312q0 18 -13 18q-14 0 -54 -32l-39 -32q-3 0 -8.5 5t-5.5 12z" />
<glyph unicode="&#x145;" horiz-adv-x="824" d="M320 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM20 15q0 9 3 10.5t15 1.5h50q40 245 89 514q1 6 4 22.5t5 29.5t2 21q0 3 -5 12t-10 11t-22 2h-50 q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 28.5 1.5t16.5 1.5q12 0 20 -13l329 -499q8 -12 16 -12q7 0 39.5 218.5t32.5 263.5q0 12 -2 12h-76q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 42 -1.5t47 -1.5t44.5 1.5t39.5 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -3 -10.5t-15 -1.5h-42q-6 0 -80 -467q-10 -60 -16 -168q-1 -15 -4 -20t-12 -5t-28 32q-45 73 -118 180l-256 374q-15 21 -16 21q-4 0 -5 -20q0 -3 -17.5 -117t-35 -241.5t-17.5 -165.5q0 -15 3 -15h85q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5 t-55.5 1.5q-18 0 -52 -1.5t-35 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x146;" horiz-adv-x="515" d="M162 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM15 287q0 2 29.5 26t72.5 48.5t70 24.5q21 0 21 -21t-6 -55t-12 -57l-19.5 -72.5t-16.5 -62.5 q74 131 134.5 199.5t116.5 68.5q51 0 51 -44q0 -29 -38.5 -145t-38.5 -127q0 -20 19 -20q13 0 34.5 18.5t38 37t17.5 18.5q3 0 7.5 -4.5t4.5 -6.5q0 -5 -24 -31.5t-63.5 -53.5t-72.5 -27q-15 0 -23.5 11.5t-8.5 29.5q0 28 40 135t40 138q0 12 -6 20.5t-16 8.5 q-26 0 -79 -66.5t-100 -141.5q-22 -36 -44 -112q-7 -25 -15 -26q-40 -4 -48 -4q-7 0 -5 10q60 249 60 312q0 18 -13 18q-14 0 -54 -32l-39 -32q-3 0 -8.5 5t-5.5 12z" />
<glyph unicode="&#x147;" horiz-adv-x="824" d="M384 837q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t4 2.5l1 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM20 15q0 9 3 10.5t15 1.5h50q40 245 89 514q1 6 4 22.5t5 29.5t2 21q0 3 -5 12t-10 11t-22 2h-50 q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 28.5 1.5t16.5 1.5q12 0 20 -13l329 -499q8 -12 16 -12q7 0 39.5 218.5t32.5 263.5q0 12 -2 12h-76q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 42 -1.5t47 -1.5t44.5 1.5t39.5 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -3 -10.5t-15 -1.5h-42q-6 0 -80 -467q-10 -60 -16 -168q-1 -15 -4 -20t-12 -5t-28 32q-45 73 -118 180l-256 374q-15 21 -16 21q-4 0 -5 -20q0 -3 -17.5 -117t-35 -241.5t-17.5 -165.5q0 -15 3 -15h85q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5 t-55.5 1.5q-18 0 -52 -1.5t-35 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x148;" horiz-adv-x="515" d="M263 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q7 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6zM15 287q0 2 29.5 26t72.5 48.5t70 24.5q21 0 21 -21t-6 -55t-12 -57l-19.5 -72.5t-16.5 -62.5q74 131 134.5 199.5 t116.5 68.5q51 0 51 -44q0 -29 -38.5 -145t-38.5 -127q0 -20 19 -20q13 0 34.5 18.5t38 37t17.5 18.5q3 0 7.5 -4.5t4.5 -6.5q0 -5 -24 -31.5t-63.5 -53.5t-72.5 -27q-15 0 -23.5 11.5t-8.5 29.5q0 28 40 135t40 138q0 12 -6 20.5t-16 8.5q-26 0 -79 -66.5t-100 -141.5 q-22 -36 -44 -112q-7 -25 -15 -26q-40 -4 -48 -4q-7 0 -5 10q60 249 60 312q0 18 -13 18q-14 0 -54 -32l-39 -32q-3 0 -8.5 5t-5.5 12z" />
<glyph unicode="&#x149;" horiz-adv-x="744" d="M244 287q0 2 29.5 26t72.5 48.5t70 24.5q21 0 21 -21t-6 -55t-12 -57l-19.5 -72.5t-16.5 -62.5q74 131 134.5 199.5t116.5 68.5q51 0 51 -44q0 -29 -38.5 -145t-38.5 -127q0 -20 19 -20q13 0 34.5 18.5t38 37t17.5 18.5q3 0 7.5 -4.5t4.5 -6.5q0 -5 -24 -31.5 t-63.5 -53.5t-72.5 -27q-15 0 -23.5 11.5t-8.5 29.5q0 28 40 135t40 138q0 12 -6 20.5t-16 8.5q-26 0 -79 -66.5t-100 -141.5q-22 -36 -44 -112q-7 -25 -15 -26q-40 -4 -48 -4q-7 0 -5 10q60 249 60 312q0 18 -13 18q-14 0 -53 -32l-40 -32q-3 0 -8.5 5t-5.5 12zM60 453 q0 1 16 16t32 35.5t16 35.5q0 13 -10.5 41.5t-10.5 41.5q0 19 18 36.5t29 17.5q10 0 19.5 -31.5t9.5 -53.5q0 -34 -25 -73t-49 -61.5t-28 -22.5q-3 0 -10 7.5t-7 10.5z" />
<glyph unicode="&#x14a;" horiz-adv-x="824" d="M20 15q0 9 3 10.5t15 1.5h50q40 245 89 514q1 6 4 22.5t5 29.5t2 21q0 3 -5 12t-10 11t-22 2h-50q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 53.5 -1.5t58.5 -1.5q13 0 28.5 1.5t16.5 1.5q12 0 20 -13l329 -499q8 -12 16 -12q7 0 39.5 218.5t32.5 263.5q0 12 -2 12h-76 q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q11 0 42 -1.5t47 -1.5t44.5 1.5t39.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-42q-5 0 -68 -394l-12 -73q-22 -140 -44 -238q-23 -104 -86 -151q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23q0 15 10 25.5t25 10.5q18 0 38 -12.5 t37 -12.5q5 0 9 1.5t7 5.5l6 8t6 11.5t5 13t4.5 15.5t4 16.5l4 18t4.5 18.5q29 113 29 138q0 14 -10 30l-341 499q-15 21 -16 21q-4 0 -5 -20q0 -3 -17.5 -117t-35 -241.5t-17.5 -165.5q0 -15 3 -15h85q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50.5 1.5t-55.5 1.5 q-18 0 -52 -1.5t-35 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x14b;" horiz-adv-x="515" d="M15 287q0 2 29.5 26t72.5 48.5t70 24.5q21 0 21 -21t-6 -55t-12 -57l-19.5 -72.5t-16.5 -62.5q74 131 134.5 199.5t116.5 68.5q51 0 51 -44q0 -49 -97 -408q-30 -109 -86 -151q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23q0 15 10 25.5t25 10.5q18 0 38 -12.5t37 -12.5 q5 0 9 1.5t7 5.5l6 8t6 11.5t5 13t4.5 15.5t4 16.5l4 18t4.5 18.5q7 30 35 137.5t46 183t18 96.5q0 12 -7 20.5t-17 8.5q-26 0 -79 -66.5t-100 -141.5q-22 -36 -44 -112q-7 -25 -15 -26q-40 -4 -48 -4q-7 0 -5 10q60 249 60 312q0 18 -13 18q-14 0 -54 -32l-39 -32 q-3 0 -8.5 5t-5.5 12z" />
<glyph unicode="&#x14c;" horiz-adv-x="734" d="M339 788l2 21q1 6 2 7t7 1h181q5 0 6.5 -1t1.5 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89t78.5 -236q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137z M127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#x14d;" horiz-adv-x="419" d="M190 518l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107 t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#x14e;" horiz-adv-x="734" d="M353 810q0 28 4 28h13q1 0 1 -2q0 -31 15.5 -45t52.5 -14q53 0 77 32q4 6 7.5 13.5l5.5 11.5t3 4h13q-6 -46 -37.5 -77.5t-76.5 -31.5q-41 0 -59.5 23t-18.5 58zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89t78.5 -236q0 -151 -107 -260.5 t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137zM127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#x14f;" horiz-adv-x="419" d="M206 552q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5 t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#x150;" horiz-adv-x="734" d="M355 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM475 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM35 280q0 87 32.5 162t85.5 124.5t119.5 78t134.5 28.5q135 0 213.5 -89 t78.5 -236q0 -151 -107 -260.5t-258 -109.5q-62 0 -114.5 17.5t-94.5 53t-66 94.5t-24 137zM127 286q0 -116 57 -200t167 -84q75 0 135.5 60t91 144t30.5 167q0 44 -11 89.5t-33.5 87.5t-62.5 68.5t-91 26.5q-71 0 -137 -52.5t-106 -136t-40 -170.5z" />
<glyph unicode="&#x151;" horiz-adv-x="419" d="M206 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM316 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM25 138q0 110 66 184.5t165 74.5q71 0 104.5 -50t33.5 -109 q0 -94 -68 -170t-161 -76q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5z" />
<glyph unicode="&#x152;" horiz-adv-x="988" d="M35 287q0 166 114 277t270 111q36 0 105 -6.5t98 -6.5q28 0 108.5 1.5t100.5 1.5q55 0 74.5 2.5t20.5 10.5q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -263 7q-5 0 -41 -270q-2 -12 0 -14t14 -2h164q45 0 47 13 l11 53q1 7 16 7q13 0 13 -6q0 -4 -2.5 -17t-7 -34l-7.5 -36q-7 -39 -15 -89q-1 -7 -13 -7q-17 0 -17 8q1 7 4 23.5t5.5 29t2.5 14.5q0 8 -10 11t-40 3h-151q-9 0 -12 -0.5t-5 -2.5t-3 -7q-3 -13 -19.5 -129t-19.5 -147q0 -9 7 -9l319 7q4 0 10 16.5t14.5 43t13.5 37.5 q4 9 14 9q17 0 17 -11q0 -5 -5.5 -21l-17 -47.5t-19.5 -55.5q-4 -11 -17 -11q-11 0 -179 1.5t-184 1.5q-21 0 -88 -8.5t-119 -8.5q-58 0 -110.5 18t-97 53.5t-70.5 95.5t-26 137zM127 293q0 -111 64 -198.5t165 -87.5q44 0 71.5 3t35 6l27.5 11q60 376 78 537q1 7 2.5 22 l2.5 25t1 13t-20.5 9t-51 11t-53.5 5q-145 0 -233.5 -102t-88.5 -254z" />
<glyph unicode="&#x153;" horiz-adv-x="669" d="M25 138q0 110 66 184.5t165 74.5q93 0 125 -92q67 86 168 86q93 0 93 -66q0 -43 -35 -77t-88 -54q-65 -24 -141 -24q-8 0 -8 -46q0 -89 96 -89q26 0 52.5 9t46 21.5t35 25.5l25.5 22t11 9q4 0 8.5 -5t4.5 -9q0 -2 -11 -13.5t-32 -28t-47 -32.5t-61 -27.5t-68 -11.5 q-85 0 -116 66q-71 -69 -149 -69q-67 0 -103.5 42.5t-36.5 103.5zM87 146q0 -130 80 -130q46 0 85.5 47.5t59 107t19.5 107.5q0 36 -19 66t-67 30q-57 0 -107.5 -78.5t-50.5 -149.5zM385 200q0 -7 10 -7q74 0 128 36.5t54 96.5q0 19 -14 30t-36 11q-82 0 -128 -122 q-14 -35 -14 -45z" />
<glyph unicode="&#x154;" horiz-adv-x="625" d="M320 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM20 13q0 9 3 11.5t15 2.5h41q19 106 47.5 312t35.5 282q0 15 -3 15h-61q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 17 14q1 0 15 -0.5t38.5 -1.5t53.5 -1q15 0 69.5 3.5 t72.5 3.5q87 0 144.5 -45.5t57.5 -116.5q0 -44 -20 -78.5t-48.5 -53t-57 -30t-48.5 -16t-20 -5.5t7.5 -3.5l24.5 -8t34 -12.5q113 -45 113 -164q0 -6 -1.5 -44t-1.5 -54q0 -11 3 -11h43q12 0 16 -2.5t4 -12.5q0 -15 -8 -15q-2 0 -29.5 0.5t-61.5 1.5t-53 1q-7 0 -5 13 q16 94 16 157q0 48 -38 86.5t-97 50.5q-24 5 -71 5h-27q-25 0 -28 -24q-26 -182 -29 -252q0 -9 8 -9h53q8 0 10.5 -2t2.5 -11q0 -11 -2 -14t-9 -3q-11 0 -42.5 1.5t-47.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2t-2 14zM204 350q0 -14 18 -14h7q20 0 43.5 -1.5t26.5 -1.5 q53 0 108 50t55 115q0 145 -171 145q-50 0 -50 -5q-3 -25 -18.5 -143t-17.5 -132q-1 -5 -1 -13z" />
<glyph unicode="&#x155;" horiz-adv-x="341" d="M188 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM25 291q0 11 50.5 53t79.5 42q18 0 18 -20q0 -17 -27 -176l4 -1q47 121 62 149q29 55 72 55q18 0 32.5 -10t14.5 -26q0 -37 -22 -37q-11 0 -28 9t-27 9q-14 0 -25 -17 q-23 -35 -57 -125q-2 -6 -11 -38q-9 -36 -19.5 -86.5l-13.5 -64.5q-1 -4 -21.5 -7.5t-30.5 -3.5t-10 4q0 2 12 63.5t24 133t12 96.5q0 38 -13 38q-11 0 -27 -12.5t-27.5 -25.5t-12.5 -13q-9 0 -9 11z" />
<glyph unicode="&#x156;" horiz-adv-x="625" d="M244 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM20 13q0 9 3 11.5t15 2.5h41q19 106 47.5 312t35.5 282q0 15 -3 15h-61q-7 0 -10.5 0.5t-6 4t-2.5 10.5 q0 14 17 14q1 0 15 -0.5t38.5 -1.5t53.5 -1q15 0 69.5 3.5t72.5 3.5q87 0 144.5 -45.5t57.5 -116.5q0 -44 -20 -78.5t-48.5 -53t-57 -30t-48.5 -16t-20 -5.5t7.5 -3.5l24.5 -8t34 -12.5q113 -45 113 -164q0 -6 -1.5 -44t-1.5 -54q0 -11 3 -11h43q12 0 16 -2.5t4 -12.5 q0 -15 -8 -15q-2 0 -29.5 0.5t-61.5 1.5t-53 1q-7 0 -5 13q16 94 16 157q0 48 -38 86.5t-97 50.5q-24 5 -71 5h-27q-25 0 -28 -24q-26 -182 -29 -252q0 -9 8 -9h53q8 0 10.5 -2t2.5 -11q0 -11 -2 -14t-9 -3q-11 0 -42.5 1.5t-47.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2t-2 14z M204 350q0 -14 18 -14h7q20 0 43.5 -1.5t26.5 -1.5q53 0 108 50t55 115q0 145 -171 145q-50 0 -50 -5q-3 -25 -18.5 -143t-17.5 -132q-1 -5 -1 -13z" />
<glyph unicode="&#x157;" horiz-adv-x="341" d="M24 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM25 291q0 11 50.5 53t79.5 42q18 0 18 -20q0 -17 -27 -176l4 -1q47 121 62 149q29 55 72 55 q18 0 32.5 -10t14.5 -26q0 -37 -22 -37q-11 0 -28 9t-27 9q-14 0 -25 -17q-23 -35 -57 -125q-2 -6 -11 -38q-9 -36 -19.5 -86.5l-13.5 -64.5q-1 -4 -21.5 -7.5t-30.5 -3.5t-10 4q0 2 12 63.5t24 133t12 96.5q0 38 -13 38q-11 0 -27 -12.5t-27.5 -25.5t-12.5 -13q-9 0 -9 11z " />
<glyph unicode="&#x158;" horiz-adv-x="625" d="M249 837q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t3 2.5l2 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM20 13q0 9 3 11.5t15 2.5h41q19 106 47.5 312t35.5 282q0 15 -3 15h-61q-7 0 -10.5 0.5t-6 4 t-2.5 10.5q0 14 17 14q1 0 15 -0.5t38.5 -1.5t53.5 -1q15 0 69.5 3.5t72.5 3.5q87 0 144.5 -45.5t57.5 -116.5q0 -44 -20 -78.5t-48.5 -53t-57 -30t-48.5 -16t-20 -5.5t7.5 -3.5l24.5 -8t34 -12.5q113 -45 113 -164q0 -6 -1.5 -44t-1.5 -54q0 -11 3 -11h43q12 0 16 -2.5 t4 -12.5q0 -15 -8 -15q-2 0 -29.5 0.5t-61.5 1.5t-53 1q-7 0 -5 13q16 94 16 157q0 48 -38 86.5t-97 50.5q-24 5 -71 5h-27q-25 0 -28 -24q-26 -182 -29 -252q0 -9 8 -9h53q8 0 10.5 -2t2.5 -11q0 -11 -2 -14t-9 -3q-11 0 -42.5 1.5t-47.5 1.5t-54 -1.5t-49 -1.5 q-10 0 -12 2t-2 14zM204 350q0 -14 18 -14h7q20 0 43.5 -1.5t26.5 -1.5q53 0 108 50t55 115q0 145 -171 145q-50 0 -50 -5q-3 -25 -18.5 -143t-17.5 -132q-1 -5 -1 -13z" />
<glyph unicode="&#x159;" horiz-adv-x="341" d="M127 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q7 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6zM25 291q0 11 50.5 53t79.5 42q18 0 18 -20q0 -17 -27 -176l4 -1q47 121 62 149q29 55 72 55q18 0 32.5 -10 t14.5 -26q0 -37 -22 -37q-11 0 -28 9t-27 9q-14 0 -25 -17q-23 -35 -57 -125q-2 -6 -11 -38q-9 -36 -19.5 -86.5l-13.5 -64.5q-1 -4 -21.5 -7.5t-30.5 -3.5t-10 4q0 2 12 63.5t24 133t12 96.5q0 38 -13 38q-11 0 -27 -12.5t-27.5 -25.5t-12.5 -13q-9 0 -9 11z" />
<glyph unicode="&#x15a;" horiz-adv-x="505" d="M296 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM40 67q0 15 17 100q1 3 2.5 11.5t3 15t2.5 7.5t5 1q23 0 23 -10q0 -2 -7.5 -45.5t-7.5 -46.5q0 -18 64.5 -51t122.5 -33q56 0 93 35t37 88q0 42 -31.5 72.5t-76.5 52 l-90 45t-76.5 65t-31.5 99.5q0 86 57.5 141t147.5 55q20 0 41 -6t37.5 -14t30 -16t21.5 -14l8 -6l8 32q2 10 9 10h3q18 -3 18 -7q0 -3 -31 -167q-2 -12 -15 -12q-16 0 -16 12l4 14q4 14 7.5 31t3.5 24q0 2 -6 11.5t-18.5 22.5t-28.5 25t-39.5 20.5t-47.5 8.5 q-57 0 -90.5 -36.5t-33.5 -95.5q0 -39 22.5 -67.5t55.5 -44l72.5 -35t72.5 -39t55.5 -57t22.5 -88.5q0 -85 -66 -136.5t-144 -51.5q-55 0 -106.5 16.5t-77.5 35t-26 28.5z" />
<glyph unicode="&#x15b;" horiz-adv-x="336" d="M192 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM20 61q0 11 8.5 18t15.5 7q5 0 8.5 -0.5t7.5 -2t6 -2.5t5.5 -4t5 -4t5.5 -5.5t5 -5.5l13 -13.5l11.5 -12t9.5 -8t12 -6t13 -1.5q30 0 50.5 20t20.5 53q0 20 -22.5 44 t-49.5 42.5t-49.5 46.5t-22.5 56q0 47 39 81.5t92 34.5q31 0 52 -8t30 -20t12 -21t3 -15q0 -17 -18 -17q-29 0 -48 35q-15 27 -32 27q-27 0 -48 -15t-21 -48q0 -26 15 -47.5t36 -37l42.5 -31.5t36.5 -40t15 -54q0 -45 -39 -78.5t-92 -33.5q-46 0 -87 21.5t-41 44.5z" />
<glyph unicode="&#x15c;" horiz-adv-x="505" d="M202 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-4 -2.5l-1 -1h-12q-5 0 -5 2zM40 67q0 15 17 100q1 3 2.5 11.5t3 15t2.5 7.5t5 1q23 0 23 -10q0 -2 -7.5 -45.5t-7.5 -46.5 q0 -18 64.5 -51t122.5 -33q56 0 93 35t37 88q0 42 -31.5 72.5t-76.5 52l-90 45t-76.5 65t-31.5 99.5q0 86 57.5 141t147.5 55q20 0 41 -6t37.5 -14t30 -16t21.5 -14l8 -6l8 32q2 10 9 10h3q18 -3 18 -7q0 -3 -31 -167q-2 -12 -15 -12q-16 0 -16 12l4 14q4 14 7.5 31t3.5 24 q0 2 -6 11.5t-18.5 22.5t-28.5 25t-39.5 20.5t-47.5 8.5q-57 0 -90.5 -36.5t-33.5 -95.5q0 -39 22.5 -67.5t55.5 -44l72.5 -35t72.5 -39t55.5 -57t22.5 -88.5q0 -85 -66 -136.5t-144 -51.5q-55 0 -106.5 16.5t-77.5 35t-26 28.5z" />
<glyph unicode="&#x15d;" horiz-adv-x="336" d="M110 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM20 61q0 11 8.5 18t15.5 7q5 0 8.5 -0.5t7.5 -2t6 -2.5t5.5 -4t5 -4t5.5 -5.5t5 -5.5l13 -13.5l11.5 -12 t9.5 -8t12 -6t13 -1.5q30 0 50.5 20t20.5 53q0 20 -22.5 44t-49.5 42.5t-49.5 46.5t-22.5 56q0 47 39 81.5t92 34.5q31 0 52 -8t30 -20t12 -21t3 -15q0 -17 -18 -17q-29 0 -48 35q-15 27 -32 27q-27 0 -48 -15t-21 -48q0 -26 15 -47.5t36 -37l42.5 -31.5t36.5 -40t15 -54 q0 -45 -39 -78.5t-92 -33.5q-46 0 -87 21.5t-41 44.5z" />
<glyph unicode="&#x15e;" horiz-adv-x="505" d="M40 67q0 15 17 100q1 3 2.5 11.5t3 15t2.5 7.5t5 1q23 0 23 -10q0 -2 -7.5 -45.5t-7.5 -46.5q0 -18 64.5 -51t122.5 -33q56 0 93 35t37 88q0 42 -31.5 72.5t-76.5 52l-90 45t-76.5 65t-31.5 99.5q0 86 57.5 141t147.5 55q20 0 41 -6t37.5 -14t30 -16t21.5 -14l8 -6l8 32 q2 10 9 10h3q18 -3 18 -7q0 -3 -31 -167q-2 -12 -15 -12q-16 0 -16 12l4 14q4 14 7.5 31t3.5 24q0 2 -6 11.5t-18.5 22.5t-28.5 25t-39.5 20.5t-47.5 8.5q-57 0 -90.5 -36.5t-33.5 -95.5q0 -39 22.5 -67.5t55.5 -44l72.5 -35t72.5 -39t55.5 -57t22.5 -88.5q0 -85 -66 -136.5 t-144 -51.5h-2q-30 -53 -30 -54q0 -2 5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6t-26.5 12t-8 9q0 10 8 10l8 -4q8 -3 21 -6.5t27 -3.5q69 0 69 49q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 49 90 q-50 3 -96.5 19.5t-69.5 33t-23 26.5z" />
<glyph unicode="&#x15f;" horiz-adv-x="336" d="M20 61q0 11 8.5 18t15.5 7q5 0 8.5 -0.5t7.5 -2t6 -2.5t5.5 -4t5 -4t5.5 -5.5t5 -5.5l13 -13.5l11.5 -12t9.5 -8t12 -6t13 -1.5q30 0 50.5 20t20.5 53q0 20 -22.5 44t-49.5 42.5t-49.5 46.5t-22.5 56q0 47 39 81.5t92 34.5q31 0 52 -8t30 -20t12 -21t3 -15q0 -17 -18 -17 q-29 0 -48 35q-15 27 -32 27q-27 0 -48 -15t-21 -48q0 -26 15 -47.5t36 -37l42.5 -31.5t36.5 -40t15 -54q0 -44 -38 -77.5t-91 -34.5q-34 -59 -34 -62q0 -2 5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6t-26.5 12t-8 9q0 10 8 10l8 -4 q8 -3 21 -6.5t27 -3.5q69 0 69 49q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 10.5 19l24 42.5t19.5 36.5q-42 4 -77 24t-35 41z" />
<glyph unicode="&#x160;" horiz-adv-x="505" d="M225 837q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t3 2.5l2 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM40 67q0 15 17 100q1 3 2.5 11.5t3 15t2.5 7.5t5 1q23 0 23 -10q0 -2 -7.5 -45.5t-7.5 -46.5 q0 -18 64.5 -51t122.5 -33q56 0 93 35t37 88q0 42 -31.5 72.5t-76.5 52l-90 45t-76.5 65t-31.5 99.5q0 86 57.5 141t147.5 55q20 0 41 -6t37.5 -14t30 -16t21.5 -14l8 -6l8 32q2 10 9 10h3q18 -3 18 -7q0 -3 -31 -167q-2 -12 -15 -12q-16 0 -16 12l4 14q4 14 7.5 31t3.5 24 q0 2 -6 11.5t-18.5 22.5t-28.5 25t-39.5 20.5t-47.5 8.5q-57 0 -90.5 -36.5t-33.5 -95.5q0 -39 22.5 -67.5t55.5 -44l72.5 -35t72.5 -39t55.5 -57t22.5 -88.5q0 -85 -66 -136.5t-144 -51.5q-55 0 -106.5 16.5t-77.5 35t-26 28.5z" />
<glyph unicode="&#x161;" horiz-adv-x="336" d="M131 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q7 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6zM20 61q0 11 8.5 18t15.5 7q5 0 8.5 -0.5t7.5 -2t6 -2.5t5.5 -4t5 -4t5.5 -5.5t5 -5.5l13 -13.5l11.5 -12t9.5 -8 t12 -6t13 -1.5q30 0 50.5 20t20.5 53q0 20 -22.5 44t-49.5 42.5t-49.5 46.5t-22.5 56q0 47 39 81.5t92 34.5q31 0 52 -8t30 -20t12 -21t3 -15q0 -17 -18 -17q-29 0 -48 35q-15 27 -32 27q-27 0 -48 -15t-21 -48q0 -26 15 -47.5t36 -37l42.5 -31.5t36.5 -40t15 -54 q0 -45 -39 -78.5t-92 -33.5q-46 0 -87 21.5t-41 44.5z" />
<glyph unicode="&#x162;" horiz-adv-x="681" d="M20 546q0 1 6 16.5t16.5 46.5l20.5 63q3 9 7 11.5t15 2.5q10 0 10 -12v-5q0 -8 106 -8h326q103 0 104 11q1 14 14 14q11 0 13.5 -2t2.5 -9q0 -8 -1.5 -23t-3.5 -44t-4 -63q0 -10 -19 -10q-8 0 -9.5 2.5t-1.5 11.5q0 2 3 38.5t3 39.5q0 6 -107 6h-106q-9 0 -13 -20 l-27 -188l-37 -262t-17 -122q0 -14 8 -14h64q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-8 0 -107 3q-37 -66 -37 -67q0 -2 5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6t-26.5 12t-8 9q0 10 8 10l8 -4q8 -3 21 -6.5t27 -3.5q69 0 69 49 q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 11.5 21l25.5 45.5t19 35.5q-18 0 -59 -1.5t-46 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q10 0 94 569q3 24 3 26q0 11 -6 11h-137q-92 0 -95 -11l-24 -70q-4 -11 -6.5 -14t-9.5 -3 q-19 0 -19 11z" />
<glyph unicode="&#x163;" horiz-adv-x="284" d="M-17 -190q0 10 8 10l8 -4q8 -3 21 -6.5t27 -3.5q69 0 69 49q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 11 20l24.5 44l19.5 36q-27 3 -27 34q0 10 26.5 153.5t26.5 145.5v4q1 5 -0.5 6t-8.5 1h-47q-16 0 -16 4q0 1 0.5 9t0.5 10q0 7 8 7 h61q9 0 11 8q10 55 16 101q2 10 4.5 13t13.5 4q5 1 21 1q28 0 28 -5q0 -1 -5.5 -25l-11.5 -51.5t-7 -35.5q-1 -7 0.5 -8.5t9.5 -1.5h73q9 0 9 -8q0 -22 -13 -22h-73h-7t-3.5 -1.5t-1.5 -2.5t-1 -6q-41 -220 -41 -247q0 -21 19 -21q11 0 37 22.5t48.5 45t23.5 22.5 q2 0 8 -4.5t6 -6.5q0 -4 -28 -35t-70 -66t-70 -42q-37 -66 -37 -67q0 -2 5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6t-26.5 12t-8 9z" />
<glyph unicode="&#x164;" horiz-adv-x="681" d="M279 834q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t3 2.5l2 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM20 546q0 1 6 16.5t16.5 46.5l20.5 63q3 9 7 11.5t15 2.5q10 0 10 -12v-5q0 -8 106 -8h326 q103 0 104 11q1 14 14 14q11 0 13.5 -2t2.5 -9q0 -8 -1.5 -23t-3.5 -44t-4 -63q0 -10 -19 -10q-8 0 -9.5 2.5t-1.5 11.5q0 2 3 38.5t3 39.5q0 6 -107 6h-106q-9 0 -13 -20l-27 -188l-37 -262t-17 -122q0 -14 8 -14h64q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3 q-11 0 -57.5 1.5t-62.5 1.5q-17 0 -61 -1.5t-50 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q10 0 94 569q3 24 3 26q0 11 -6 11h-137q-92 0 -95 -11l-24 -70q-4 -11 -6.5 -14t-9.5 -3q-19 0 -19 11z" />
<glyph unicode="&#x165;" horiz-adv-x="284" d="M243 495q0 3 6 25.5l15 57.5l13 51q9 32 34 32q26 0 26 -23q0 -9 -13 -35l-55 -98q-6 -12 -9 -12h-15q-2 0 -2 2zM35 346q0 1 0.5 9t0.5 10q0 7 8 7h61q9 0 11 8q10 55 16 101q2 10 4.5 13t13.5 4q5 1 21 1q28 0 28 -5q0 -1 -5.5 -25l-11.5 -51.5t-7 -35.5 q-1 -7 0.5 -8.5t9.5 -1.5h73q9 0 9 -8q0 -22 -13 -22h-73h-7t-3.5 -1.5t-1.5 -2.5t-1 -6q-41 -220 -41 -247q0 -21 19 -21q11 0 37 22.5t48.5 45t23.5 22.5q2 0 8 -4.5t6 -6.5q0 -4 -31.5 -39t-76.5 -70.5t-72 -35.5q-35 0 -35 34q0 10 26.5 153.5t26.5 145.5v4q1 5 -0.5 6 t-8.5 1h-47q-16 0 -16 4z" />
<glyph unicode="&#x166;" horiz-adv-x="681" d="M20 546q0 1 6 16.5t16.5 46.5l20.5 63q3 9 7 11.5t15 2.5q10 0 10 -12v-5q0 -8 106 -8h326q103 0 104 11q1 14 14 14q11 0 13.5 -2t2.5 -9q0 -8 -1.5 -23t-3.5 -44t-4 -63q0 -10 -19 -10q-8 0 -9.5 2.5t-1.5 11.5q0 2 3 38.5t3 39.5q0 6 -107 6h-106q-9 0 -13 -20 l-35 -246q-1 -9 0.5 -10.5t10.5 -1.5h158q3 0 3 -12t-3 -12h-160q-10 0 -12 -1.5t-4 -11.5q-39 -273 -39 -277q0 -14 8 -14h64q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5q-17 0 -61 -1.5t-50 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54 q9 0 53 291q2 8 0.5 10.5t-9.5 2.5h-157q-2 0 -2.5 12t2.5 12h159h7.5t4 2t1.5 3t1 7l34 229q3 24 3 26q0 11 -6 11h-137q-92 0 -95 -11l-24 -70q-4 -11 -6.5 -14t-9.5 -3q-19 0 -19 11z" />
<glyph unicode="&#x167;" horiz-adv-x="284" d="M22 225q-1 0 -1.5 6t0.5 12t3 6h59q7 0 8.5 1t2.5 6q13 67 13 75v4q1 5 -0.5 6t-8.5 1h-47q-16 0 -16 4q0 1 0.5 9t0.5 10q0 7 8 7h61q9 0 11 8q10 55 16 101q2 10 4.5 13t13.5 4q5 1 21 1q28 0 28 -5q0 -1 -5.5 -25l-11.5 -51.5t-7 -35.5q-1 -7 0.5 -8.5t9.5 -1.5h73 q9 0 9 -8q0 -22 -13 -22h-73h-7t-3.5 -1.5t-1.5 -2.5t-1 -6l-14 -76q-1 -7 6 -7h86q2 0 2 -6t-1.5 -12t-3.5 -6h-87q-7 0 -8 -6v-2q-21 -126 -21 -132q0 -21 19 -21q11 0 37 22.5t48.5 45t23.5 22.5q2 0 8 -4.5t6 -6.5q0 -4 -31.5 -39t-76.5 -70.5t-72 -35.5q-35 0 -35 34 q0 14 32 185q1 6 0 7t-8 1h-56z" />
<glyph unicode="&#x168;" horiz-adv-x="759" d="M319 745q2 9 11 25q15 25 32.5 38.5t30.5 13.5q15 0 41 -18t39 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5 t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4 t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5 t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x169;" horiz-adv-x="521" d="M210 495q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27 q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5 q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#x16a;" horiz-adv-x="759" d="M327 788l2 21q1 6 2 7t7 1h181q5 0 6.5 -1t1.5 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5 t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5 t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x16b;" horiz-adv-x="521" d="M218 518l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3 q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5 t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#x16c;" horiz-adv-x="759" d="M341 810q0 28 4 28h13q1 0 1 -2q0 -31 15.5 -45t52.5 -14q53 0 77 32q4 6 7.5 13.5l5.5 11.5t3 4h13q-6 -46 -37.5 -77.5t-76.5 -31.5q-41 0 -59.5 23t-18.5 58zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5 q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5 t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5t-55 115.5q0 46 33 248.5t33 229.5 q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x16d;" horiz-adv-x="521" d="M234 552q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27q0 -13 -32 -132.5t-32 -145.5 q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5q0 22 22.5 122.5t26.5 130.5 q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#x16e;" horiz-adv-x="759" d="M359 781q0 28 20 48t48 20t48 -20t20 -48t-20 -48t-48 -20t-48 20t-20 48zM387 781q0 -17 11.5 -28.5t28.5 -11.5t28.5 11.5t11.5 28.5t-11.5 28.5t-28.5 11.5t-28.5 -11.5t-11.5 -28.5zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5 q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5 q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5t-55 115.5 q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x16f;" horiz-adv-x="521" d="M250 531q0 28 20 48t48 20t48 -20t20 -48t-20 -48t-48 -20t-48 20t-20 48zM278 531q0 -17 11.5 -28.5t28.5 -11.5t28.5 11.5t11.5 28.5t-11.5 28.5t-28.5 11.5t-28.5 -11.5t-11.5 -28.5zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27 q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5 q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#x170;" horiz-adv-x="759" d="M343 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM463 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5 t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4 t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 10 -2.5 23t-2 19.5t-1.5 13t-2.5 9t-4.5 2.5t-45 -24q-113 -62 -211 -62q-82 0 -137 42.5 t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x171;" horiz-adv-x="521" d="M234 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM344 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27 q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5q8 0 8 -7q0 -6 -22 -40.5t-57 -70.5t-62 -36q-14 0 -23.5 7.5t-9.5 19.5 q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#x172;" horiz-adv-x="759" d="M60 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-32q-5 0 -23.5 -98.5t-35 -211.5t-16.5 -148q0 -37 15 -64.5t34.5 -40.5t46 -21t40.5 -9t27 -1q42 0 88.5 16t76.5 35q28 19 39 60 q12 47 32 163q41 241 48 320h-67q-8 0 -11 0.5t-6 4t-3 10.5t2.5 10.5t6 4t11.5 0.5q6 0 46.5 -1.5t57.5 -1.5t48 1.5t34 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-32q-8 -38 -22 -118q-62 -378 -95 -490q-7 -25 -19 -25h-5q-9 0 -11 11q-1 11 -2.5 23.5 t-2 20.5t-1.5 13q-2 8 -3 9t-6 -3q-173 -156 -173 -247q0 -27 13.5 -48.5t40.5 -21.5q20 0 42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-32 0 -54 23.5t-22 60.5q0 19 6 38.5t21 41.5l25.5 36.5t35.5 39l34 33t38.5 34t31.5 27.5q-110 -59 -206 -59 q-82 0 -137 42.5t-55 115.5q0 46 33 248.5t33 229.5q0 5 -1 5h-63q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x173;" horiz-adv-x="521" d="M15 256q0 2 12 19t32 41.5t38 43.5q31 31 71 31q22 0 38.5 -9t16.5 -27q0 -13 -32 -132.5t-32 -145.5q0 -23 28 -23q33 0 88 78q72 104 101 199q6 24 12 55q1 4 27 7q15 2 26 3q9 0 9 -9q0 -5 -27.5 -145.5t-27.5 -152.5q0 -25 19 -25q11 0 31 22.5t36 45t17 22.5 q8 0 8 -7q0 -3 -12 -23.5t-34 -49.5t-43 -48q-8 -7 -28 -23t-31 -28q-81 -85 -81 -152q0 -24 14.5 -44.5t34.5 -20.5t42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-30 0 -50.5 26t-20.5 58q0 22 10.5 45.5t33.5 50t40 44t48 45.5q9 9 14 13 q-10 1 -17 9.5t-7 17.5q0 22 22.5 122.5t26.5 130.5q-1 -3 -10 -22t-26 -50t-33 -55q-104 -158 -173 -158q-55 0 -55 42q0 11 30.5 125.5t30.5 152.5q0 29 -20 29q-11 0 -34 -24.5t-41.5 -49t-20.5 -24.5q-4 0 -9 3t-5 7z" />
<glyph unicode="&#x174;" horiz-adv-x="1010" d="M419 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2zM20 649q0 7 2 10.5t5 4t11 0.5q6 0 40.5 -1.5t51.5 -1.5q16 0 52 1.5t47 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-53q-4 0 -4 -5q0 -26 35.5 -285.5t40.5 -259.5t88 149l139 255q-18 146 -21 146h-43h-5.5t-4 0.5t-4 1.5t-2.5 2.5t-1.5 4t-0.5 6.5q0 7 2 10.5t5 4t11 0.5q6 0 37 -1.5t48 -1.5q16 0 67.5 1.5t59.5 1.5q10 0 12.5 -3t2.5 -15 q0 -9 -3 -10.5t-16 -1.5h-73q-3 0 -3 -19q0 -14 32 -278.5t36 -264.5q3 0 30 49.5l66.5 127l76 149.5l71 141.5t39.5 78.5q4 12 3 14t-9 2h-64q-6 0 -8 0.5t-5 1.5t-4 4t-1 9q0 11 3 13t14 2q1 0 32.5 -1.5t63.5 -1.5q8 0 32 1.5t28 1.5q10 0 12.5 -3t2.5 -15q0 -9 -3 -10.5 t-16 -1.5h-11.5t-8 -0.5t-5.5 -1t-3.5 -2.5t-3 -3.5t-3 -6t-3.5 -7.5q-147 -285 -194 -369l-88 -156q-3 -6 -21.5 -28t-32.5 -44q-22 -33 -37 -33q-8 0 -11.5 10.5t-8.5 50.5q-22 154 -62 394l-195 -350q-3 -6 -21.5 -28t-32.5 -44q-22 -33 -35 -33q-8 0 -11.5 10.5 t-8.5 50.5q-20 147 -55.5 368.5t-40.5 221.5h-40q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x175;" horiz-adv-x="681" d="M272 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2zM10 302q0 10 50 47t74 37q15 0 45 -18q31 -21 31 -46q0 -30 -6 -85t-12.5 -98t-6.5 -44q0 -13 12.5 -27 t21.5 -14q10 0 22 18l47 68t50 71q13 16 23.5 47t10.5 45q0 12 -20 32q-4 4 -8.5 8t-8 6t-6 4t-3.5 3.5t-1 2.5q0 9 14 22.5t24 13.5q16 0 43.5 -23.5t27.5 -37.5q0 -15 -15 -117t-15 -122q0 -16 13 -29.5t25 -13.5q9 0 30 25q57 66 88 111q44 65 45 141q0 33 -21 33 q-11 0 -30 -3t-33.5 -6t-15.5 -3q-6 0 -6 17q0 4 53.5 15.5t63.5 11.5q20 0 30 -7.5t10 -31.5q0 -57 -48.5 -140t-116.5 -151l-48 -50q-10 -10 -16 -10q-35 0 -58.5 23t-23.5 54q0 4 29 153q-83 -129 -125 -183q-3 -5 -13 -19l-13 -18q-11 -15 -21 -15q-14 0 -41 22 q-22 17 -28.5 28.5t-6.5 36.5q0 13 11 84.5t11 127.5q0 13 -15.5 29.5t-28.5 16.5q-15 0 -34 -14t-32 -28.5t-14 -14.5q-5 0 -9.5 5.5t-4.5 9.5z" />
<glyph unicode="&#x176;" horiz-adv-x="613" d="M228 731q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-4 -2.5l-1 -1h-12q-5 0 -5 2zM20 654q0 7 2 10.5t5 4t11 0.5q6 0 45 -1.5t56 -1.5q16 0 46.5 1.5t41.5 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-31q-10 0 -11 -2t3 -13q13 -44 103 -265q6 -12 8 -12q5 0 16 18l35 52l46 68l43 65t34.5 56.5t12.5 29.5v3h-53q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 42.5 1.5t31.5 1.5q11 0 13.5 -2t2.5 -13 q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -45.5 -58l-97 -133t-80.5 -116q-5 -9 -8 -22q-44 -260 -44 -270q0 -13 5 -13h63q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50 1.5t-55 1.5t-49.5 -1.5t-44.5 -1.5q-9 0 -11.5 3t-2.5 13q0 9 3 11.5t15 2.5h42q6 0 30 143 l15 90q5 27 5 41l-146 338h-47q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x177;" horiz-adv-x="422" d="M169 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-7 -6 -9 -6h-12q-5 0 -5 2zM-13 -262q0 11 4 19t13 13.5t16.5 8t21 6.5t19.5 6q33 12 54 49q37 69 48 105.5t11 71.5q0 320 -69 320 q-18 0 -37 -15.5t-31 -30.5t-13 -15t-4.5 1t-6.5 3.5t-3 5.5q0 4 16.5 26.5t47.5 46t61 23.5q56 0 75 -86q12 -52 20 -241q1 -6 1 -12l35 64.5t48 94t29 74.5t17 101q1 17 11 17q12 0 24 -7t12 -18q0 -5 -2 -17q-12 -76 -148 -311l-29 -49l-10 -19q-82 -157 -101 -190 q-11 -20 -39 -37q-58 -35 -74 -35q-8 0 -12.5 9t-4.5 18z" />
<glyph unicode="&#x178;" horiz-adv-x="613" d="M230 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM370 785q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 654q0 7 2 10.5t5 4t11 0.5q6 0 45 -1.5t56 -1.5q16 0 46.5 1.5 t41.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-31q-10 0 -11 -2t3 -13q13 -44 103 -265q6 -12 8 -12q5 0 16 18l35 52l46 68l43 65t34.5 56.5t12.5 29.5v3h-53q-13 0 -15.5 1.5t-2.5 10.5q0 13 2 15.5t12 2.5q11 0 36.5 -1.5t41.5 -1.5q17 0 42.5 1.5 t31.5 1.5q11 0 13.5 -2t2.5 -13q0 -6 -0.5 -9t-3 -4.5t-5 -1.5h-7.5h-36q-2 0 -45.5 -58l-97 -133t-80.5 -116q-5 -9 -8 -22q-44 -260 -44 -270q0 -13 5 -13h63q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -50 1.5t-55 1.5t-49.5 -1.5t-44.5 -1.5q-9 0 -11.5 3t-2.5 13 q0 9 3 11.5t15 2.5h42q6 0 30 143l15 90q5 27 5 41l-146 338h-47q-6 0 -8 0.5t-5 1.5t-4 4t-1 9z" />
<glyph unicode="&#x179;" horiz-adv-x="599" d="M335 731l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM35 15q0 7 215 308t215 303q0 3 -24 3h-256q-42 0 -44 -10l-5.5 -28l-6 -32t-2.5 -15q-3 -10 -8 -11h-5q-21 0 -21 7q0 2 4.5 24.5t10.5 56t9 59.5q0 6 16 6q14 0 14 -5v-9 q0 -11 57 -11h348q10 0 13.5 -3t3.5 -12q0 -6 -187 -275q-224 -322 -224 -329q0 -10 11 -10l304 3q15 0 21 15q8 23 23 89q2 8 14 8q20 0 20 -12q0 -2 -6.5 -27l-15 -56.5t-11.5 -43.5q-2 -11 -22 -11q-57 0 -229.5 1.5t-223.5 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="&#x17a;" horiz-adv-x="414" d="M229 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-4 -6 -8 -6h-15q-4 0 -4 2zM25 2q0 8 4.5 16t15 18.5l11.5 11.5l238 265q5 6 2.5 7t-7.5 -1q-2 0 -3 -0.5t-3 -0.5h-3q-23 0 -75.5 16t-67.5 16q-16 0 -31.5 -12t-25 -24t-10.5 -12q-4 0 -8.5 3 t-4.5 5q0 4 13.5 24t38.5 41t49 21q23 0 84 -22t82 -22q8 0 23 18.5t27 18.5q6 0 10.5 -5t4.5 -11q0 -11 -11 -20.5t-27 -17.5t-21 -14l-220 -244q-4 -5 -5 -6.5t2 -3.5t13 -2q42 -2 120 -8t97 -6q9 0 12 4t3 14v13q-1 14 -1 15q0 6 11 6q9 0 9 -5q1 -14 3 -35.5t3.5 -35 t1.5 -15.5q0 -14 -36 -14h-7q-23 0 -125.5 8t-145.5 8q-4 0 -13 -12t-16 -12q-11 0 -11 12z" />
<glyph unicode="&#x17b;" horiz-adv-x="599" d="M312 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM35 15q0 7 215 308t215 303q0 3 -24 3h-256q-42 0 -44 -10l-5.5 -28l-6 -32t-2.5 -15q-3 -10 -8 -11h-5q-21 0 -21 7q0 2 4.5 24.5t10.5 56t9 59.5q0 6 16 6q14 0 14 -5v-9 q0 -11 57 -11h348q10 0 13.5 -3t3.5 -12q0 -6 -187 -275q-224 -322 -224 -329q0 -10 11 -10l304 3q15 0 21 15q8 23 23 89q2 8 14 8q20 0 20 -12q0 -2 -6.5 -27l-15 -56.5t-11.5 -43.5q-2 -11 -22 -11q-57 0 -229.5 1.5t-223.5 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="&#x17c;" horiz-adv-x="414" d="M215 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 2q0 8 4.5 16t15 18.5l11.5 11.5l238 265q5 6 2.5 7t-7.5 -1q-2 0 -3 -0.5t-3 -0.5h-3q-23 0 -75.5 16t-67.5 16q-16 0 -31.5 -12t-25 -24t-10.5 -12q-4 0 -8.5 3 t-4.5 5q0 4 13.5 24t38.5 41t49 21q23 0 84 -22t82 -22q8 0 23 18.5t27 18.5q6 0 10.5 -5t4.5 -11q0 -11 -11 -20.5t-27 -17.5t-21 -14l-220 -244q-4 -5 -5 -6.5t2 -3.5t13 -2q42 -2 120 -8t97 -6q9 0 12 4t3 14v13q-1 14 -1 15q0 6 11 6q9 0 9 -5q1 -14 3 -35.5t3.5 -35 t1.5 -15.5q0 -14 -36 -14h-7q-23 0 -125.5 8t-145.5 8q-4 0 -13 -12t-16 -12q-11 0 -11 12z" />
<glyph unicode="&#x17d;" horiz-adv-x="599" d="M264 837q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t4 2.5l1 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5zM35 15q0 7 215 308t215 303q0 3 -24 3h-256q-42 0 -44 -10l-5.5 -28l-6 -32t-2.5 -15 q-3 -10 -8 -11h-5q-21 0 -21 7q0 2 4.5 24.5t10.5 56t9 59.5q0 6 16 6q14 0 14 -5v-9q0 -11 57 -11h348q10 0 13.5 -3t3.5 -12q0 -6 -187 -275q-224 -322 -224 -329q0 -10 11 -10l304 3q15 0 21 15q8 23 23 89q2 8 14 8q20 0 20 -12q0 -2 -6.5 -27l-15 -56.5t-11.5 -43.5 q-2 -11 -22 -11q-57 0 -229.5 1.5t-223.5 1.5q-5 0 -6.5 2.5t-1.5 12.5z" />
<glyph unicode="&#x17e;" horiz-adv-x="414" d="M168 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q8 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6zM25 2q0 8 4.5 16t15 18.5l11.5 11.5l238 265q5 6 2.5 7t-7.5 -1q-2 0 -3 -0.5t-3 -0.5h-3q-23 0 -75.5 16 t-67.5 16q-16 0 -31.5 -12t-25 -24t-10.5 -12q-4 0 -8.5 3t-4.5 5q0 4 13.5 24t38.5 41t49 21q23 0 84 -22t82 -22q8 0 23 18.5t27 18.5q6 0 10.5 -5t4.5 -11q0 -11 -11 -20.5t-27 -17.5t-21 -14l-220 -244q-4 -5 -5 -6.5t2 -3.5t13 -2q42 -2 120 -8t97 -6q9 0 12 4t3 14v13 q-1 14 -1 15q0 6 11 6q9 0 9 -5q1 -14 3 -35.5t3.5 -35t1.5 -15.5q0 -14 -36 -14h-7q-23 0 -125.5 8t-145.5 8q-4 0 -13 -12t-16 -12q-11 0 -11 12z" />
<glyph unicode="&#x17f;" horiz-adv-x="284" d="M-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5q29 179 58 438q9 98 42 157q46 80 101 112q48 28 91 28q24 0 48.5 -12.5t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -37.5 18.5t-43.5 18.5 q-79 0 -110 -263q-31 -255 -61 -432q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="&#x218;" horiz-adv-x="505" d="M169 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM40 67q0 15 17 100q1 3 2.5 11.5t3 15t2.5 7.5t5 1q23 0 23 -10q0 -2 -7.5 -45.5t-7.5 -46.5 q0 -18 64.5 -51t122.5 -33q56 0 93 35t37 88q0 42 -31.5 72.5t-76.5 52l-90 45t-76.5 65t-31.5 99.5q0 86 57.5 141t147.5 55q20 0 41 -6t37.5 -14t30 -16t21.5 -14l8 -6l8 32q2 10 9 10h3q18 -3 18 -7q0 -3 -31 -167q-2 -12 -15 -12q-16 0 -16 12l4 14q4 14 7.5 31t3.5 24 q0 2 -6 11.5t-18.5 22.5t-28.5 25t-39.5 20.5t-47.5 8.5q-57 0 -90.5 -36.5t-33.5 -95.5q0 -39 22.5 -67.5t55.5 -44l72.5 -35t72.5 -39t55.5 -57t22.5 -88.5q0 -85 -66 -136.5t-144 -51.5q-55 0 -106.5 16.5t-77.5 35t-26 28.5z" />
<glyph unicode="&#x219;" horiz-adv-x="336" d="M67 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM20 61q0 11 8.5 18t15.5 7q5 0 8.5 -0.5t7.5 -2t6 -2.5t5.5 -4t5 -4t5.5 -5.5t5 -5.5l13 -13.5l11.5 -12 t9.5 -8t12 -6t13 -1.5q30 0 50.5 20t20.5 53q0 20 -22.5 44t-49.5 42.5t-49.5 46.5t-22.5 56q0 47 39 81.5t92 34.5q31 0 52 -8t30 -20t12 -21t3 -15q0 -17 -18 -17q-29 0 -48 35q-15 27 -32 27q-27 0 -48 -15t-21 -48q0 -26 15 -47.5t36 -37l42.5 -31.5t36.5 -40t15 -54 q0 -45 -39 -78.5t-92 -33.5q-46 0 -87 21.5t-41 44.5z" />
<glyph unicode="&#x21a;" horiz-adv-x="681" d="M200 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM20 546q0 1 6 16.5t16.5 46.5l20.5 63q3 9 7 11.5t15 2.5q10 0 10 -12v-5q0 -8 106 -8h326q103 0 104 11 q1 14 14 14q11 0 13.5 -2t2.5 -9q0 -8 -1.5 -23t-3.5 -44t-4 -63q0 -10 -19 -10q-8 0 -9.5 2.5t-1.5 11.5q0 2 3 38.5t3 39.5q0 6 -107 6h-106q-9 0 -13 -20l-27 -188l-37 -262t-17 -122q0 -14 8 -14h64q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5 q-17 0 -61 -1.5t-50 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h54q10 0 94 569q3 24 3 26q0 11 -6 11h-137q-92 0 -95 -11l-24 -70q-4 -11 -6.5 -14t-9.5 -3q-19 0 -19 11z" />
<glyph unicode="&#x21b;" horiz-adv-x="284" d="M15 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2zM35 346q0 1 0.5 9t0.5 10q0 7 8 7h61q9 0 11 8q10 55 16 101q2 10 4.5 13t13.5 4q5 1 21 1q28 0 28 -5 q0 -1 -5.5 -25l-11.5 -51.5t-7 -35.5q-1 -7 0.5 -8.5t9.5 -1.5h73q9 0 9 -8q0 -22 -13 -22h-73h-7t-3.5 -1.5t-1.5 -2.5t-1 -6q-41 -220 -41 -247q0 -21 19 -21q11 0 37 22.5t48.5 45t23.5 22.5q2 0 8 -4.5t6 -6.5q0 -4 -31.5 -39t-76.5 -70.5t-72 -35.5q-35 0 -35 34 q0 10 26.5 153.5t26.5 145.5v4q1 5 -0.5 6t-8.5 1h-47q-16 0 -16 4z" />
<glyph unicode="&#x237;" horiz-adv-x="297" d="M-69 -221q0 15 10 25.5t25 10.5q18 0 38 -12.5t37 -12.5q10 0 17.5 7.5t14 26.5t9.5 31.5t9 42.5q19 93 43 242t24 170q0 18 -12 18q-11 0 -35 -22t-43.5 -44.5t-20.5 -22.5q-4 0 -8 3.5t-4 7.5t30 36t71.5 64.5t66.5 32.5q21 0 21 -24q0 -21 -12.5 -103t-27 -167 t-15.5 -92q-7 -45 -14 -73.5t-28.5 -72.5t-53.5 -68q-52 -38 -87 -38q-24 0 -39.5 11t-15.5 23z" />
<glyph unicode="&#x2bb;" horiz-adv-x="400" d="M152 500q0 30 26 58t49 41.5t26 13.5q7 0 7 -13v-2q0 -1 -14 -8.5t-27 -21t-13 -28.5q0 -18 17 -34.5t17 -19.5q0 -11 -19.5 -22.5t-24.5 -11.5q-10 0 -27 17.5t-17 30.5z" />
<glyph unicode="&#x2bc;" horiz-adv-x="400" d="M387 495q0 3 6 25.5l15 57.5l13 51q9 32 34 32q26 0 26 -23q0 -9 -13 -35l-55 -98q-6 -12 -9 -12h-15q-2 0 -2 2z" />
<glyph unicode="&#x2c0;" horiz-adv-x="400" />
<glyph unicode="&#x2c6;" horiz-adv-x="400" d="M90 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2z" />
<glyph unicode="&#x2c7;" horiz-adv-x="400" d="M111 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q7 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6z" />
<glyph unicode="&#x2c8;" horiz-adv-x="400" />
<glyph unicode="&#x2d8;" horiz-adv-x="400" d="M116 552q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5z" />
<glyph unicode="&#x2d9;" horiz-adv-x="400" d="M158 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="&#x2da;" horiz-adv-x="400" d="M132 531q0 28 20 48t48 20t48 -20t20 -48t-20 -48t-48 -20t-48 20t-20 48zM160 531q0 -17 11.5 -28.5t28.5 -11.5t28.5 11.5t11.5 28.5t-11.5 28.5t-28.5 11.5t-28.5 -11.5t-11.5 -28.5z" />
<glyph unicode="&#x2db;" horiz-adv-x="400" d="M97 -203q0 31 25 70t50 65t69 68h30q-43 -38 -75 -86.5t-32 -95.5q0 -24 14.5 -44.5t34.5 -20.5t42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-30 0 -50.5 26t-20.5 58z" />
<glyph unicode="&#x2dc;" horiz-adv-x="400" d="M92 495q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2z" />
<glyph unicode="&#x2dd;" horiz-adv-x="400" d="M116 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM226 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2z" />
<glyph unicode="&#x300;" horiz-adv-x="0" d="M-272 575q0 31 34 31q21 0 26 -24l26 -125v-3l1 -3q0 -2 -4 -2h-15q-4 0 -7 6l-57 107q-4 7 -4 13z" />
<glyph unicode="&#x301;" horiz-adv-x="0" d="M-228 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2z" />
<glyph unicode="&#x302;" horiz-adv-x="0" d="M-310 462l4 6l91 104q11 12 20 12h20q7 0 9 -1.5t7 -10.5l53 -104q2 -3 2 -6q0 -2 -5 -2h-12q-1 0 -7 6l-63 62q-3 3 -8 0l-85 -62q-8 -6 -9 -6h-12q-5 0 -5 2z" />
<glyph unicode="&#x303;" horiz-adv-x="0" d="M-308 495q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2z" />
<glyph unicode="&#x304;" horiz-adv-x="0" d="M-300 518l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8z" />
<glyph unicode="&#x306;" horiz-adv-x="0" d="M-284 552q0 32 4 32h13q1 0 1 -3q0 -9 2 -21q9 -49 66 -49q52 0 78 40q4 7 7.5 15.5t5 13t2.5 4.5h13q-6 -53 -37.5 -89t-76.5 -36q-41 0 -59.5 26.5t-18.5 66.5z" />
<glyph unicode="&#x307;" horiz-adv-x="0" d="M-242 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="&#x308;" horiz-adv-x="0" d="M-311 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM-171 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph unicode="&#x30a;" horiz-adv-x="0" d="M-268 531q0 28 20 48t48 20t48 -20t20 -48t-20 -48t-48 -20t-48 20t-20 48zM-240 531q0 -17 11.5 -28.5t28.5 -11.5t28.5 11.5t11.5 28.5t-11.5 28.5t-28.5 11.5t-28.5 -11.5t-11.5 -28.5z" />
<glyph unicode="&#x30b;" horiz-adv-x="0" d="M-284 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2zM-174 451l3 6l61 123q13 24 32 24q31 0 31 -21q0 -15 -9 -25l-91 -103q-5 -6 -8 -6h-15q-4 0 -4 2z" />
<glyph unicode="&#x30c;" horiz-adv-x="0" d="M-289 582q0 2 5 2h12q1 0 7 -6l63 -62q3 -3 8 0l85 62q7 6 9 6h12q5 0 5 -2l-4 -6l-91 -104q-11 -12 -20 -12h-20q-7 0 -9 1.5t-7 10.5l-53 104q-2 3 -2 6z" />
<glyph unicode="&#x312;" horiz-adv-x="0" d="M-248 500q0 30 26 58t49 41.5t26 13.5q7 0 7 -13v-2q0 -1 -14 -8.5t-27 -21t-13 -28.5q0 -18 17 -34.5t17 -19.5q0 -11 -19.5 -22.5t-24.5 -11.5q-10 0 -27 17.5t-17 30.5z" />
<glyph unicode="&#x315;" horiz-adv-x="0" d="M-13 495q0 3 6 25.5l15 57.5l13 51q9 32 34 32q26 0 26 -23q0 -9 -13 -35l-55 -98q-6 -12 -9 -12h-15q-2 0 -2 2z" />
<glyph unicode="&#x326;" horiz-adv-x="0" d="M-259 -207q0 1 14 8.5t27 21t13 28.5q0 18 -17 34.5t-17 19.5q0 11 19.5 22.5t24.5 11.5q10 0 27 -17.5t17 -30.5q0 -30 -26 -58t-49 -41.5t-26 -13.5q-7 0 -7 13v2z" />
<glyph unicode="&#x327;" horiz-adv-x="0" d="M-291 -190q0 10 8 10l8 -4q8 -3 21 -6.5t27 -3.5q69 0 69 49q0 18 -11 31.5t-36 13.5q-8 0 -16 -1.5t-13.5 -3t-6.5 -1.5q-7 0 -7 4q0 1 11.5 21l25.5 45.5t19 35.5h19q-37 -66 -37 -67q0 -2 5 -2q8 2 24 2q35 0 56 -19t21 -45q0 -37 -32 -61.5t-80 -24.5q-22 0 -40.5 6 t-26.5 12t-8 9z" />
<glyph unicode="&#x328;" horiz-adv-x="0" d="M-303 -203q0 31 25 70t50 65t69 68h30q-43 -38 -75 -86.5t-32 -95.5q0 -24 14.5 -44.5t34.5 -20.5t42 11t36 22l14 11q1 0 5 -6t4 -7q0 -3 -19 -19t-55 -34t-72 -18q-30 0 -50.5 26t-20.5 58z" />
<glyph unicode="&#x1e02;" horiz-adv-x="571" d="M273 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h43q78 514 82 595q1 9 -1 11.5t-9 2.5h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l51 -1q50 -2 71 -2q16 0 60.5 1.5t49.5 1.5 q198 0 198 -149q0 -29 -10.5 -54.5t-27.5 -43t-38 -32t-41.5 -23t-37.5 -14.5t-28 -9l-10 -3l20 -3q21 -2 50 -11.5t58 -26t49.5 -51t20.5 -80.5q0 -168 -289 -168q-11 0 -47.5 1.5t-52.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5zM166 48q0 -10 6 -13t25 -4h3 q14 -1 45 -1q92 0 145.5 37.5t53.5 113.5q0 71 -50.5 106.5t-131.5 35.5h-31q-19 0 -23 -2t-6 -10q-8 -36 -35 -251q-1 -5 -1 -12zM208 364q-2 -17 2 -19q3 -1 10 -1h16h21t20.5 -0.5t9.5 -0.5q21 0 55 17q100 51 100 141q0 62 -41 99t-110 37h-16q-16 0 -22 -5.5t-10 -25.5 q-9 -56 -35 -242z" />
<glyph unicode="&#x1e03;" horiz-adv-x="453" d="M156 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 12q0 4 13 23q5 7 8 19q30 158 58.5 349t28.5 220q0 7 -7 7q-4 0 -41 -11t-41 -11q-9 0 -9 25q0 10 5 11q155 38 164 38q12 0 12 -10q0 -6 -17.5 -117.5t-22.5 -140.5 l-49 -251q51 85 87 133q38 51 64.5 71.5t71.5 20.5q41 0 64 -23q14 -14 14 -42q0 -72 -28.5 -137t-69.5 -106t-84 -64.5t-76 -23.5q-20 0 -40 7t-32.5 14t-15.5 7q-4 0 -20 -8q-20 -8 -27 -8q-10 0 -10 8zM112 80q0 -25 17 -42.5t51 -17.5q41 0 84.5 51t69 112.5t25.5 98.5 q0 23 -10 41t-32 18q-41 0 -83 -59l-48.5 -68l-36.5 -54.5t-28.5 -49t-8.5 -30.5z" />
<glyph unicode="&#x1e0a;" horiz-adv-x="742" d="M314 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM19 10q0 11 3 13t14 2h43q5 0 42.5 261.5t45.5 338.5q2 11 -4 11l-70 -2q-5 0 -7.5 0.5t-4 3t-1.5 8.5v6t0.5 4.5t2 3.5t4 1.5t6.5 0.5h24t51.5 -0.5t43.5 -0.5 q33 0 75.5 1t56.5 1q165 0 261.5 -80t96.5 -248q0 -158 -102 -247.5t-248 -91.5q-32 0 -112 2t-113 2q-16 0 -55 -2t-42 -2q-8 0 -9.5 2t-1.5 12zM171 46q0 -13 6 -17t59 -4q97 0 170 27t111 64t61.5 88t29.5 87.5t6 73.5q0 123 -74.5 196.5t-223.5 73.5q-49 0 -63 -4 l-9 -56l-20 -137.5l-24 -165t-20.5 -148.5t-8.5 -78z" />
<glyph unicode="&#x1e0b;" horiz-adv-x="473" d="M386 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 74q0 34 14.5 83.5t40 100t68 86t92.5 35.5q17 0 33.5 -3t25 -6.5t18 -8.5t10.5 -5q9 -4 12 -2t5 12q6 31 15 91.5l15.5 107t6.5 47.5q5 17 -4 17q-2 0 -44 -10.5 t-45 -10.5q-5 0 -3 21q1 8 2.5 9.5t7.5 3.5q39 8 76 17.5t55 14.5t20 5q11 0 11 -15q0 -3 -50 -288t-50 -316q0 -15 13 -15t35.5 18.5t39.5 36.5t18 18q3 0 6.5 -3t3.5 -5q0 -5 -22 -32t-61.5 -56t-75.5 -29q-12 0 -19.5 9.5t-7.5 25.5q0 18 10.5 70.5t20.5 95.5l10 43 q-38 -72 -89 -139l-30.5 -39t-29 -30.5t-37 -25t-40.5 -7.5q-10 0 -19.5 2t-24.5 9t-24 24t-9 43zM91 102q0 -56 46 -56q41 0 138 140q54 82 54 118q0 14 -29 33.5t-60 19.5q-41 0 -77 -49t-54 -107t-18 -99z" />
<glyph unicode="&#x1e1e;" horiz-adv-x="541" d="M302 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h43q83 519 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l47 -1q46 -2 67 -2q28 0 108.5 1.5t100.5 1.5q49 0 58 2t11 11 q1 12 13 12q11 0 14 -2t3 -9q0 -4 -4 -41t-5 -84q0 -6 -3 -8t-13 -2q-15 0 -15 14q0 2 3 36t3 37q0 7 -237 7q-5 0 -41 -270q-2 -8 -0.5 -11.5t3.5 -4t11 -0.5h156q45 0 47 13l8 43q1 7 16 7q13 0 13 -6q0 -1 -14 -77q-3 -14 -5.5 -30.5t-4.5 -31t-2 -17.5q-1 -7 -13 -7 q-17 0 -17 8q9 54 9 57q0 8 -10 11t-40 3h-143q-9 0 -12 -0.5t-5 -2.5t-3 -7q-2 -13 -18.5 -130.5t-20.5 -148.5q-2 -9 8 -9h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -47.5 1.5t-52.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x1e1f;" horiz-adv-x="284" d="M309 789q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM-125 -240q0 13 17 27t32 14q12 0 37.5 -12t43.5 -12q9 0 17.5 6.5t14 19t10 25t8.5 31.5t6 31.5t4.5 31t3.5 24.5l23.5 161.5t21.5 160t8 68.5q0 11 -4 11h-76q-7 0 -7 6 q0 5 2 13q1 6 7 6h73q7 0 8 1.5t2 10.5q9 98 42 157q46 80 101 112q48 28 91 28q24 0 48.5 -12.5t24.5 -23.5q0 -13 -19 -27t-35 -14q-12 0 -37.5 18.5t-43.5 18.5q-75 0 -109 -254q-1 -6 -1 -9q-1 -3 2 -4.5t6 -1.5h82q5 0 5 -2q0 -8 -2 -14q-2 -9 -7 -9h-80q-7 0 -7.5 -1 t-2.5 -10q-2 -11 -13 -91l-23.5 -164.5l-20.5 -134.5q-3 -17 -11 -44.5t-31 -70.5t-52 -65q-2 -1 -8.5 -6t-9.5 -7.5t-10 -7t-11.5 -6.5t-11.5 -5.5t-13 -5t-13 -3t-14 -1.5q-24 0 -46 12.5t-22 23.5z" />
<glyph unicode="&#x1e22;" horiz-adv-x="795" d="M412 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 13q0 9 3 11.5t15 2.5h53q7 0 48 282t41 314q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 47.5 -1.5t58.5 -1.5q16 0 53 1.5t48 1.5q10 0 12 -2.5 t2 -15.5q0 -9 -3 -10.5t-15 -1.5h-50q-8 0 -47 -270q-2 -11 -0.5 -15t12.5 -4h332q8 0 11 0.5t5.5 3t3.5 8.5q30 232 30 261q0 16 -9 16h-61q-12 0 -12 15q0 7 2.5 10.5t5.5 4t11 0.5q6 0 48 -1.5t59 -1.5q16 0 52.5 1.5t47.5 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5 t-15.5 -1.5h-50q-10 0 -47 -288.5t-37 -310.5q0 -13 8 -13h57q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54.5 1.5t-59.5 1.5t-50 -1.5t-45 -1.5q-10 0 -12 2.5t-2 15.5q0 9 2.5 10.5t15.5 1.5h53q5 0 44 287q1 8 -1.5 10t-13.5 2h-334q-9 0 -12.5 -3t-4.5 -13 q-32 -235 -32 -270q0 -13 8 -13h59q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -54 1.5t-59 1.5t-53.5 -1.5t-48.5 -1.5q-9 0 -11.5 3t-2.5 13z" />
<glyph unicode="&#x1e23;" horiz-adv-x="468" d="M156 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM25 6q0 2 7 33.5t18 88l23.5 127t26 168.5t23.5 196q2 19 -4 19q-10 0 -49 -14l-38 -13q-3 0 -3 14q0 13 7 16q30 11 83 22.5t72 11.5q6 0 6 -15q-5 -101 -93 -537 q47 110 115 192q56 68 124 68q26 0 42.5 -12t16.5 -36q0 -37 -33.5 -147.5t-33.5 -120.5q0 -22 21 -22q11 0 34 21.5t41.5 43.5t19.5 22q2 0 7 -4t5 -6q0 -5 -22 -33.5t-60.5 -58.5t-72.5 -30q-18 0 -29.5 10.5t-11.5 27.5q0 14 36.5 127.5t36.5 141.5q0 17 -9 28t-25 11 q-33 0 -66.5 -40t-74.5 -107q-46 -77 -54 -108l-20 -82q-2 -11 -58 -11q-8 0 -8 8z" />
<glyph unicode="&#x1e40;" horiz-adv-x="883" d="M465 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h48l46 207.5l61 273t26 123.5q0 8 -25 8h-46q-8 0 -9.5 2t-1.5 11q0 11 2 14t9 3q6 0 50 -1.5t55 -1.5q13 0 29.5 1.5t17.5 1.5q17 0 20 -13 l101 -509q5 -24 10 -24t16 24q168 351 252 505q8 14 21 14h44q16 0 45 1.5t40 1.5q10 0 12 -2.5t2 -15.5q0 -9 -2.5 -10.5t-15.5 -1.5h-46l-7 -59l-15.5 -143l-19 -172.5t-16 -155.5t-6.5 -82h77q8 0 10.5 -2t2.5 -11q0 -11 -2 -14t-9 -3q-11 0 -58.5 1.5t-63.5 1.5 q-18 0 -56 -1.5t-40 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5t15 1.5h39q21 3 80 594q-188 -358 -253 -497q-9 -20 -19.5 -33t-26.5 -30t-29 -34q-10 -12 -16 -12q-13 0 -16 21q-12 72 -39.5 217l-49.5 255l-22 109q-32 -121 -56 -240q-63 -303 -63 -350h65q8 0 9.5 -2 t1.5 -11q0 -11 -2 -14t-9 -3q-2 0 -36 1.5t-52 1.5q-17 0 -42 -1.5t-30 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph unicode="&#x1e41;" horiz-adv-x="739" d="M429 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM15 255q0 11 69 64.5t101 53.5q18 0 18 -19q0 -28 -5 -63.5t-16 -95.5t-14 -78q114 262 225 262q16 0 25 -14t9 -33q0 -82 -57 -251q2 4 20 37.5l29.5 53.5l32.5 55.5 t39.5 57.5t41 46t45.5 36t45 12q51 0 51 -34q0 -28 -36.5 -141t-36.5 -131q0 -24 18 -24q12 0 53 41l40 41q3 0 7.5 -5t4.5 -7q0 -4 -28.5 -33.5t-69 -59.5t-65.5 -30q-15 0 -25 8.5t-10 20.5q0 17 39 136.5t39 152.5q0 8 -5.5 15t-15.5 7q-39 0 -125 -133q-64 -98 -90 -188 q-3 -10 -14 -12q-24 -3 -42 -3q-8 0 -8 7l29 110q29 110 29 179q0 37 -21 37q-18 0 -37 -25q-63 -76 -108 -167q-17 -34 -41 -118q-5 -17 -11 -20q-36 -14 -49 -14q-7 0 -5 10q12 51 28.5 151.5t16.5 145.5q0 17 -14 17q-11 0 -33.5 -18.5t-41 -37.5t-19.5 -19q-12 0 -12 17 z" />
<glyph unicode="&#x1e56;" horiz-adv-x="570" d="M283 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 15q0 9 3 10.5t15 1.5h43q83 569 83 599q0 10 -3 10h-55q-7 0 -10.5 0.5t-6 4t-2.5 10.5q0 14 12 14l44 -1q44 -2 65 -2q16 0 63 2.5t54 2.5q99 0 154.5 -47.5 t55.5 -123.5q0 -44 -14.5 -78.5t-38 -55.5t-56 -35t-65.5 -19.5t-70 -5.5q-16 0 -44.5 1t-31.5 1q-16 0 -18 -9q-9 -48 -33 -259q-2 -9 8 -9h65q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -47.5 1.5t-52.5 1.5t-54 -1.5t-49 -1.5q-10 0 -12 2.5t-2 15.5zM202 335 q0 -12 31 -12q59 0 107.5 15.5t83 54.5t34.5 97q0 74 -42.5 113.5t-124.5 39.5q-44 0 -45 -5q-22 -138 -42 -284q-2 -18 -2 -19z" />
<glyph unicode="&#x1e57;" horiz-adv-x="486" d="M295 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM10 225l11 18.5t29.5 40.5t44 51.5t51 41t55.5 18.5q17 0 17 -31q0 -21 -8 -79t-16 -106l-8 -48q43 107 100 194q37 57 99 57q44 0 60 -23.5t16 -67.5q0 -110 -74 -204 t-151 -94q-11 0 -32 3.5t-24 3.5q-12 0 -13 -8l-32 -209q-5 -23 9 -24q16 -2 40 -4q14 -1 19.5 -1.5t11 -2t7 -4t1.5 -6.5q0 -14 -4.5 -17.5t-15.5 -3.5q-1 0 -27 3.5t-67.5 7t-79.5 3.5q-17 0 -17 10q0 14 3.5 18t15.5 4h16q12 0 16 3.5t6 17.5q47 272 62.5 371t15.5 146 q0 18 -12 18q-15 0 -41 -28t-46.5 -56t-21.5 -28q-4 0 -10 5.5t-6 9.5zM181 51q0 -32 64 -32q33 0 69.5 42.5t60.5 103.5t24 113q0 64 -44 64q-15 0 -29.5 -9.5t-29 -30t-22.5 -34t-22 -41.5l-16 -32q-55 -105 -55 -144z" />
<glyph unicode="&#x1e60;" horiz-adv-x="505" d="M273 790q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM40 67q0 15 17 100q1 3 2.5 11.5t3 15t2.5 7.5t5 1q23 0 23 -10q0 -2 -7.5 -45.5t-7.5 -46.5q0 -18 64.5 -51t122.5 -33q56 0 93 35t37 88q0 42 -31.5 72.5t-76.5 52 l-90 45t-76.5 65t-31.5 99.5q0 86 57.5 141t147.5 55q20 0 41 -6t37.5 -14t30 -16t21.5 -14l8 -6l8 32q2 10 9 10h3q18 -3 18 -7q0 -3 -31 -167q-2 -12 -15 -12q-16 0 -16 12l4 14q4 14 7.5 31t3.5 24q0 2 -6 11.5t-18.5 22.5t-28.5 25t-39.5 20.5t-47.5 8.5 q-57 0 -90.5 -36.5t-33.5 -95.5q0 -39 22.5 -67.5t55.5 -44l72.5 -35t72.5 -39t55.5 -57t22.5 -88.5q0 -85 -66 -136.5t-144 -51.5q-55 0 -106.5 16.5t-77.5 35t-26 28.5z" />
<glyph unicode="&#x1e61;" horiz-adv-x="336" d="M178 540q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 61q0 11 8.5 18t15.5 7q5 0 8.5 -0.5t7.5 -2t6 -2.5t5.5 -4t5 -4t5.5 -5.5t5 -5.5l13 -13.5l11.5 -12t9.5 -8t12 -6t13 -1.5q30 0 50.5 20t20.5 53q0 20 -22.5 44 t-49.5 42.5t-49.5 46.5t-22.5 56q0 47 39 81.5t92 34.5q31 0 52 -8t30 -20t12 -21t3 -15q0 -17 -18 -17q-29 0 -48 35q-15 27 -32 27q-27 0 -48 -15t-21 -48q0 -26 15 -47.5t36 -37l42.5 -31.5t36.5 -40t15 -54q0 -45 -39 -78.5t-92 -33.5q-46 0 -87 21.5t-41 44.5z" />
<glyph unicode="&#x1e6a;" horiz-adv-x="681" d="M330 774q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM20 546q0 1 6 16.5t16.5 46.5l20.5 63q3 9 7 11.5t15 2.5q10 0 10 -12v-5q0 -8 106 -8h326q103 0 104 11q1 14 14 14q11 0 13.5 -2t2.5 -9q0 -8 -1.5 -23t-3.5 -44t-4 -63 q0 -10 -19 -10q-8 0 -9.5 2.5t-1.5 11.5q0 2 3 38.5t3 39.5q0 6 -107 6h-106q-9 0 -13 -20l-27 -188l-37 -262t-17 -122q0 -14 8 -14h64q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-11 0 -57.5 1.5t-62.5 1.5q-17 0 -61 -1.5t-50 -1.5q-10 0 -12 2.5t-2 15.5q0 9 3 10.5 t15 1.5h54q10 0 94 569q3 24 3 26q0 11 -6 11h-137q-92 0 -95 -11l-24 -70q-4 -11 -6.5 -14t-9.5 -3q-19 0 -19 11z" />
<glyph unicode="&#x1e6b;" horiz-adv-x="284" d="M136 580q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM35 346q0 1 0.5 9t0.5 10q0 7 8 7h61q9 0 11 8q10 55 16 101q2 10 4.5 13t13.5 4q5 1 21 1q28 0 28 -5q0 -1 -5.5 -25l-11.5 -51.5t-7 -35.5q-1 -7 0.5 -8.5t9.5 -1.5h73 q9 0 9 -8q0 -22 -13 -22h-73h-7t-3.5 -1.5t-1.5 -2.5t-1 -6q-41 -220 -41 -247q0 -21 19 -21q11 0 37 22.5t48.5 45t23.5 22.5q2 0 8 -4.5t6 -6.5q0 -4 -31.5 -39t-76.5 -70.5t-72 -35.5q-35 0 -35 34q0 10 26.5 153.5t26.5 145.5v4q1 5 -0.5 6t-8.5 1h-47q-16 0 -16 4z" />
<glyph unicode="&#x2000;" horiz-adv-x="500" />
<glyph unicode="&#x2001;" horiz-adv-x="1000" />
<glyph unicode="&#x2002;" horiz-adv-x="500" />
<glyph unicode="&#x2003;" horiz-adv-x="1000" />
<glyph unicode="&#x2004;" horiz-adv-x="333" />
<glyph unicode="&#x2005;" horiz-adv-x="250" />
<glyph unicode="&#x2006;" horiz-adv-x="166" />
<glyph unicode="&#x2007;" horiz-adv-x="500" />
<glyph unicode="&#x2008;" horiz-adv-x="210" />
<glyph unicode="&#x2009;" horiz-adv-x="166" />
<glyph unicode="&#x200a;" horiz-adv-x="100" />
<glyph unicode="&#x200b;" horiz-adv-x="0" />
<glyph unicode="&#x200c;" horiz-adv-x="0" />
<glyph unicode="&#x200d;" horiz-adv-x="0" />
<glyph unicode="&#x200e;" horiz-adv-x="0" />
<glyph unicode="&#x200f;" horiz-adv-x="0" />
<glyph unicode="&#x2010;" horiz-adv-x="268" d="M30 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="&#x2011;" horiz-adv-x="268" d="M30 201q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph unicode="&#x2012;" horiz-adv-x="500" d="M98 201q0 12 6 25.5t12 14.5t141 4t143 3q2 0 2 -9q0 -33 -8 -33q-9 -1 -145 -4.5t-147 -3.5q-4 0 -4 3z" />
<glyph unicode="&#x2013;" horiz-adv-x="500" d="M10 195q0 12 2 14.5t11 2.5h451q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-444q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph unicode="&#x2014;" horiz-adv-x="750" d="M10 195q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph unicode="&#x2015;" horiz-adv-x="750" d="M10 195q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph unicode="&#x2018;" horiz-adv-x="229" d="M70 520q0 34 25 73t49 61.5t28 22.5q3 0 10 -7.5t7 -10.5q0 -1 -16 -16t-32 -35.5t-16 -35.5q0 -13 10.5 -41.5t10.5 -41.5q0 -19 -18 -36.5t-29 -17.5q-10 0 -19.5 31.5t-9.5 53.5z" />
<glyph unicode="&#x2019;" horiz-adv-x="249" d="M60 453q0 1 16 16t32 35.5t16 35.5q0 13 -10.5 41.5t-10.5 41.5q0 19 18 36.5t29 17.5q10 0 19.5 -31.5t9.5 -53.5q0 -34 -25 -73t-49 -61.5t-28 -22.5q-3 0 -10 7.5t-7 10.5z" />
<glyph unicode="&#x201a;" horiz-adv-x="249" d="M60 -112q0 1 16 16t32 35.5t16 35.5q0 13 -10.5 41.5t-10.5 41.5q0 19 18 36.5t29 17.5q10 0 19.5 -31.5t9.5 -53.5q0 -34 -25 -73t-49 -61.5t-28 -22.5q-3 0 -10 7.5t-7 10.5z" />
<glyph unicode="&#x201b;" horiz-adv-x="249" d="M70 592q0 22 9.5 53.5t19.5 31.5q11 0 29 -17.5t18 -36.5q0 -13 -10.5 -41.5t-10.5 -41.5q0 -15 16 -35.5t32 -35.5t16 -16q0 -3 -7 -10.5t-10 -7.5q-4 0 -28 22.5t-49 61.5t-25 73z" />
<glyph unicode="&#x201c;" horiz-adv-x="414" d="M70 520q0 34 25 73t49 61.5t28 22.5q3 0 10 -7.5t7 -10.5q0 -1 -16 -16t-32 -35.5t-16 -35.5q0 -13 10.5 -41.5t10.5 -41.5q0 -19 -18 -36.5t-29 -17.5q-10 0 -19.5 31.5t-9.5 53.5zM255 520q0 34 25 73t49 61.5t28 22.5q3 0 10 -7.5t7 -10.5q0 -1 -16 -16t-32 -35.5 t-16 -35.5q0 -13 10.5 -41.5t10.5 -41.5q0 -19 -18 -36.5t-29 -17.5q-10 0 -19.5 31.5t-9.5 53.5z" />
<glyph unicode="&#x201d;" horiz-adv-x="434" d="M60 453q0 1 16 16t32 35.5t16 35.5q0 13 -10.5 41.5t-10.5 41.5q0 19 18 36.5t29 17.5q10 0 19.5 -31.5t9.5 -53.5q0 -34 -25 -73t-49 -61.5t-28 -22.5q-3 0 -10 7.5t-7 10.5zM245 453q0 1 16 16t32 35.5t16 35.5q0 13 -10.5 41.5t-10.5 41.5q0 19 18 36.5t29 17.5 q10 0 19.5 -31.5t9.5 -53.5q0 -34 -25 -73t-49 -61.5t-28 -22.5q-3 0 -10 7.5t-7 10.5z" />
<glyph unicode="&#x201e;" horiz-adv-x="434" d="M60 -112q0 1 16 16t32 35.5t16 35.5q0 13 -10.5 41.5t-10.5 41.5q0 19 18 36.5t29 17.5q10 0 19.5 -31.5t9.5 -53.5q0 -34 -25 -73t-49 -61.5t-28 -22.5q-3 0 -10 7.5t-7 10.5zM245 -112q0 1 16 16t32 35.5t16 35.5q0 13 -10.5 41.5t-10.5 41.5q0 19 18 36.5t29 17.5 q10 0 19.5 -31.5t9.5 -53.5q0 -34 -25 -73t-49 -61.5t-28 -22.5q-3 0 -10 7.5t-7 10.5z" />
<glyph unicode="&#x201f;" horiz-adv-x="434" d="M70 592q0 22 9.5 53.5t19.5 31.5q11 0 29 -17.5t18 -36.5q0 -13 -10.5 -41.5t-10.5 -41.5q0 -15 16 -35.5t32 -35.5t16 -16q0 -3 -7 -10.5t-10 -7.5q-4 0 -28 22.5t-49 61.5t-25 73zM255 592q0 22 9.5 53.5t19.5 31.5q11 0 29 -17.5t18 -36.5q0 -13 -10.5 -41.5 t-10.5 -41.5q0 -15 16 -35.5t32 -35.5t16 -16q0 -3 -7 -10.5t-10 -7.5q-4 0 -28 22.5t-49 61.5t-25 73z" />
<glyph unicode="&#x2020;" horiz-adv-x="463" d="M25 423q0 17 15.5 25t36.5 8q27 0 64 -9.5t58 -9.5q9 0 16.5 6.5t7.5 15.5q0 3 -16 76t-16 92t11 34t29 15q20 0 30.5 -15t10.5 -33q0 -24 -11.5 -96t-11.5 -78q0 -8 8 -14t17 -6q21 0 61.5 11t52.5 11q50 0 50 -33t-48 -33q-17 0 -58.5 13t-51.5 13q-8 0 -15 -5.5 t-7 -12.5q0 -10 5 -25.5t5 -19.5q0 -2 -1 -19t-2.5 -54.5t-3 -96t-2.5 -163.5t-1 -237q0 -10 -17 -10h-6q-17 0 -17 10q0 131 -2 236.5t-5 164t-5.5 96.5t-4.5 54.5t-2 18.5t6 20.5t6 24.5q0 16 -15 16q-6 0 -48 -12t-71 -12q-52 0 -52 33z" />
<glyph unicode="&#x2021;" horiz-adv-x="401" d="M25 -36q0 26 39 26q14 0 52 -10t46 -10q6 0 11.5 4t5.5 10q0 8 -3.5 15.5t-3.5 10.5q0 1 9.5 81t9.5 115q0 6 9 6t9 -6q0 -26 4 -72.5t8 -83.5t4 -40q0 -2 -4 -12t-4 -14q0 -13 12 -13q5 0 43.5 9.5t61.5 9.5q42 0 42 -26t-42 -26q-22 0 -56.5 7.5t-51.5 7.5 q-8 0 -13.5 -5.5t-5.5 -12.5q0 -2 12 -51.5t12 -64.5t-7.5 -27t-22.5 -12q-16 0 -23.5 12t-7.5 26q0 19 8 67.5t8 53.5q0 6 -6.5 11t-13.5 5q-17 0 -54 -8.5t-47 -8.5q-40 0 -40 26zM25 492q0 26 42 26q22 0 56.5 -7.5t51.5 -7.5q8 0 13.5 5.5t5.5 12.5q0 2 -12 49t-12 62 t7.5 27t22.5 12q16 0 23.5 -12t7.5 -26q0 -19 -8 -65t-8 -51q0 -6 6.5 -11t13.5 -5q17 0 54 8.5t47 8.5q40 0 40 -26t-39 -26q-14 0 -52 10t-46 10q-6 0 -11.5 -4t-5.5 -10q0 -8 3.5 -15.5t3.5 -10.5q0 -1 -8 -76t-8 -110q0 -7 -10 -7q-9 0 -9 7q0 26 -4.5 70t-9 78.5 t-4.5 37.5q0 2 4 12t4 14q0 13 -12 13q-5 0 -43.5 -9.5t-61.5 -9.5q-42 0 -42 26z" />
<glyph unicode="&#x2022;" horiz-adv-x="356" d="M60 327q0 49 34.5 83.5t83.5 34.5t83.5 -34.5t34.5 -83.5t-34.5 -83.5t-83.5 -34.5t-83.5 34.5t-34.5 83.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="630" d="M480 38q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5zM270 38q0 19 15.5 35.5t30.5 16.5q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5zM60 38q0 19 15.5 35.5t30.5 16.5 q14 0 29 -16t15 -31q0 -23 -14.5 -37t-25.5 -14q-19 0 -34.5 16.5t-15.5 29.5z" />
<glyph unicode="&#x202f;" horiz-adv-x="166" />
<glyph unicode="&#x2030;" horiz-adv-x="952" d="M50 362q0 62 52.5 131.5t124.5 69.5q40 0 71 -31q24 -24 58 -24q46 0 93 28q17 10 31.5 22t35.5 33.5l22 22.5t4.5 5t7.5 8l3 4q6 0 12 -4t6 -8q0 -3 -5 -11q-360 -527 -434 -643q-4 -6 -19 -6q-16 0 -16 10q0 2 2 6l80 114l169.5 245.5t112.5 170.5q9 15 8 16 q-2 1 -8 -2q-47 -28 -105 -28q-16 0 -35 3v-16v-14q0 -17 -1 -25q-6 -72 -57.5 -130.5t-112.5 -58.5q-47 0 -73.5 32t-26.5 80zM99 336q0 -29 13.5 -50t40.5 -21q51 0 95 58.5t44 137.5q0 70 -52 70q-46 0 -93.5 -64t-47.5 -131zM336 103q0 71 56 137t125 66q42 0 66 -29.5 t24 -79.5q0 -79 -53 -142.5t-118 -63.5q-47 0 -73.5 31.5t-26.5 80.5zM385 78q0 -30 13 -50.5t41 -20.5q51 0 95 58.5t44 136.5q0 71 -53 71q-45 0 -92.5 -64t-47.5 -131zM631 103q0 71 56 137t125 66q42 0 66 -29.5t24 -79.5q0 -79 -53 -142.5t-118 -63.5q-47 0 -73.5 31.5 t-26.5 80.5zM680 78q0 -30 13 -50.5t41 -20.5q51 0 95 58.5t44 136.5q0 71 -53 71q-45 0 -92.5 -64t-47.5 -131z" />
<glyph unicode="&#x2032;" horiz-adv-x="131" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="&#x2033;" horiz-adv-x="261" d="M30 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14zM160 511q0 1 2 32.5l4.5 68.5t3.5 47q4 29 32 29q29 0 29 -25q0 -4 -2 -14l-12.5 -43 l-17.5 -57.5t-10 -32.5q-1 -3 -2 -7t-1.5 -5l-1.5 -3t-2.5 -2.5t-3.5 -1t-6 -0.5q-12 0 -12 14z" />
<glyph unicode="&#x2039;" horiz-adv-x="258" d="M50 193q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -4 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph unicode="&#x203a;" horiz-adv-x="258" d="M60 74q0 4 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph unicode="&#x203e;" horiz-adv-x="400" />
<glyph unicode="&#x2044;" horiz-adv-x="144" d="M-150 -8q0 1 4 9l408 657q7 10 23 10q17 0 17 -6q0 -2 -1 -4l-410 -659q-3 -5 -4 -6t-3.5 -3t-6 -2.5t-9.5 -0.5q-18 0 -18 5z" />
<glyph unicode="&#x2053;" horiz-adv-x="793" d="M45 117q0 5 4 17q6 23 17 46t31.5 51.5t54.5 46.5t76 18q48 0 101.5 -22.5t93 -49.5t88 -49.5t86.5 -22.5q26 0 48.5 16t37 41.5t22 43t12.5 34.5q2 8 4.5 8.5t10.5 -1.5q11 -3 11 -7q0 -3 -1 -6q-7 -28 -19.5 -54.5t-33 -54.5t-54 -45t-73.5 -17q-50 0 -104.5 21.5 t-95 47.5t-89.5 47.5t-89 21.5q-27 0 -48 -14t-34 -36.5t-19.5 -40t-10.5 -35.5q-4 -14 -7 -14q-2 0 -10 2q-10 2 -10 7z" />
<glyph unicode="&#x205f;" horiz-adv-x="222" />
<glyph unicode="&#x2060;" horiz-adv-x="0" />
<glyph unicode="&#x20ac;" horiz-adv-x="606" d="M30 282l15 37h70q14 55 45.5 97t70 63.5t74 32t65.5 10.5q60 0 105.5 -18t90.5 -60q-4 -9 -18 -38q-23 29 -67 54.5t-107 25.5q-33 0 -63 -7t-61.5 -24.5t-56.5 -52t-39 -83.5h358l-15 -37h-348q-2 -12 -2 -27l2 -27h325l-16 -38h-303q31 -81 91.5 -123.5t126.5 -42.5 q101 0 173 72v-48q-77 -61 -170 -61q-48 0 -97 17t-97.5 65t-66.5 121h-82l15 38h61q-2 12 -2 27l2 27h-79z" />
<glyph unicode="&#x2122;" horiz-adv-x="797" d="M40 579q0 1 1.5 10.5t3.5 23.5t3 24q2 11 9 11q11 0 11 -10q7 -1 43 -1h161q37 0 45 2q3 9 11 9q9 0 9 -10q0 -1 -1 -19.5t-1 -39.5q0 -9 -9 -9q-11 0 -11 11l1 14v19q-18 2 -46 2h-50q-2 -10 -2 -67v-7q0 -7 -0.5 -19t-1 -26.5t-0.5 -31.5t-0.5 -33.5t-0.5 -32.5v-27 v-25h30q9 0 9 -9q0 -11 -9 -11q-5 0 -26.5 1t-28.5 1t-28 -1t-26 -1q-11 0 -11 11q0 9 13 9h24q5 35 5 232q0 33 -1 37h-62q-27 0 -39 -3l-3 -31q-2 -12 -11 -12q-11 0 -11 9zM373 337q0 10 13 10h21q0 3 0.5 9.5t1 17t0.5 18.5q8 224 8 228h-30q-10 0 -10 11q0 9 10 9 q3 0 23 -0.5t25 -0.5q6 0 16 0.5t11 0.5q9 0 13 -9l97 -243l92 237q6 14 16 14h16q7 0 23.5 0.5t21.5 0.5q11 0 11 -10t-13 -10h-18q-1 -6 -1 -34v-41q0 -160 6 -198h21q10 0 10 -10t-9 -10q-5 0 -23.5 1t-25.5 1t-24.5 -1t-22.5 -1q-12 0 -12 10t13 10h18q2 10 2 79 q0 88 -2 166l-83 -211q-5 -12 -12.5 -23t-12.5 -21q-7 -11 -11 -11q-7 0 -12 15l-105 259q-4 -122 -4 -208q0 -39 1 -45h29q10 0 10 -10t-10 -10q-5 0 -19 1t-21 1t-19.5 -1t-17.5 -1q-11 0 -11 10z" />
<glyph unicode="&#x2212;" horiz-adv-x="527" d="M31 212q0 8 0.5 11.5t4.5 6t13 2.5h431q8 0 11.5 -2.5t4 -6t0.5 -12.5q0 -14 -3 -18.5t-18 -4.5h-427q-9 0 -12.5 3t-4 6.5t-0.5 14.5z" />
<glyph unicode="&#xe000;" horiz-adv-x="395" d="M0 395h395v-395h-395v395z" />
<glyph unicode="&#xfeff;" horiz-adv-x="0" />
<glyph horiz-adv-x="500" d="M40 231q0 175 78 282t182 107q76 0 122 -69.5t46 -178.5q0 -103 -30.5 -192t-89 -144.5t-131.5 -55.5q-84 0 -130.5 69t-46.5 182zM103 187q0 -86 32 -133t82 -47q59 0 105 66.5t67 153.5t21 169q0 79 -29.5 131.5t-86.5 52.5q-52 0 -96.5 -58t-69.5 -148t-25 -187z" />
<glyph horiz-adv-x="500" d="M130 15q0 9 3 10.5t15 1.5h54q12 73 45 302.5t33 252.5v2q-3 0 -40 -7t-39 -7q-8 0 -8 9v13q0 10 10 11q17 2 54 8.5l66.5 12t31.5 5.5q9 0 9 -10q0 -4 -6.5 -40.5l-15.5 -91.5t-14 -92l-54 -368h66q8 0 9.5 -2t1.5 -11q0 -11 -2 -14t-9 -3q-6 0 -43 1.5t-54 1.5 q-16 0 -52 -1.5t-47 -1.5q-10 0 -12 2.5t-2 15.5z" />
<glyph horiz-adv-x="500" d="M48 11q0 7 49 71t55 69q9 8 42.5 35t59 50t55 56.5t46 72t16.5 77.5q0 51 -28.5 88.5t-84.5 37.5q-27 0 -53.5 -10t-45 -24.5t-33 -29.5t-22.5 -25t-9 -10q-5 0 -12.5 6t-7.5 11q0 7 17.5 27.5t45 45t68.5 43t80 18.5q69 0 112.5 -44t43.5 -109q0 -49 -23.5 -99.5 t-57.5 -87.5q-30 -32 -68 -62.5t-74.5 -54.5t-44.5 -31q-8 -6 -23.5 -24l-28 -33t-12.5 -16t7 -1h288q2 0 12.5 33t12.5 33q22 0 22 -5q0 -3 -5.5 -21.5l-14 -45.5t-12.5 -46q-1 -6 -11 -6h-347q-14 0 -14 11z" />
<glyph horiz-adv-x="500" d="M60 30q0 8 14 15.5t24 7.5q18 0 43 -19q34 -25 69 -25q63 0 103.5 43t40.5 109q0 38 -23.5 67.5t-59.5 40.5q-25 8 -57 8q-8 0 -23 -0.5t-23 -0.5q-11 0 -11 18t5 18q100 10 146 56q40 40 40 108q0 46 -23.5 79t-68.5 33q-31 0 -58.5 -12.5t-42 -25t-15.5 -12.5 q-6 0 -12 6t-5 12q1 8 19.5 23.5t54.5 30.5t74 15q64 0 102 -39t38 -91q0 -37 -15.5 -68.5t-37.5 -51t-44.5 -34t-38 -22t-15.5 -8.5l16 -3q17 -3 40.5 -11.5t47 -23t40 -43.5t16.5 -67q0 -84 -65.5 -132t-155.5 -48q-39 0 -89 16.5t-50 30.5z" />
<glyph horiz-adv-x="500" d="M42 209q0 18 28 55q22 30 66.5 82.5l101 117l82.5 95.5q9 10 22.5 19t16.5 12q40 38 47 38q6 0 6 -14q0 -3 -0.5 -8t-0.5 -7l-48 -326q-2 -13 0.5 -15.5t14.5 -2.5h65q7 0 7 -10v-34q0 -7 -1.5 -8.5t-10.5 -1.5h-78q-9 0 -10.5 -1t-2.5 -8q-1 -3 -1 -5q-25 -164 -25 -185 q0 -6 -10 -9q-21 -7 -53 -7q-8 0 -5 13l36 187q3 7 1 10.5t-5 4t-12 0.5h-213q-18 0 -18 8zM98 259q0 -4 22 -4h167q13 0 14.5 2t4.5 18q5 22 19.5 128.5t14.5 130.5q0 6 -1 6q-2 0 -42 -46.5l-98.5 -115l-84.5 -97.5q-16 -16 -16 -22z" />
<glyph horiz-adv-x="500" d="M57 1q0 17 10 17q7 0 28 -1.5t39 -1.5q81 0 140 41t59 131q0 35 -16.5 63t-46.5 47t-63 32t-76 23q-19 4 -19 12q0 4 3 13q8 22 33.5 118t34.5 125q3 5 16 5q3 0 82.5 -7.5t125.5 -7.5q6 0 8 4t6 19q2 5 5 5q18 0 18 -5q0 -4 -2 -14t-6 -26t-6 -27q-6 -25 -19 -25 q-9 0 -106.5 11.5t-102.5 11.5q-7 0 -8 -4v-2q-7 -24 -35 -127q-4 -18 -4 -19q0 -7 14 -11q1 0 22 -6t29.5 -9t31.5 -10.5t35.5 -15l32.5 -19t31 -24.5t23 -29.5t17.5 -37t5.5 -43.5q0 -53 -20.5 -94t-50.5 -63.5t-70 -37t-73.5 -19t-66.5 -4.5q-34 0 -54 6q-5 2 -5 6z" />
<glyph horiz-adv-x="500" d="M50 170q0 77 18.5 144t48 113t67 83.5t74.5 60t73 37.5t59.5 21t35.5 6q3 0 5.5 -9t2.5 -15q0 -2 -19 -6t-59.5 -23t-82.5 -52q-84 -67 -122 -175q-5 -12 -5 -18q0 -5 19 3q57 20 97 20q73 0 116 -45t43 -115q0 -103 -57.5 -162.5t-147.5 -59.5q-76 0 -121 51.5 t-45 140.5zM108 148q0 -65 29 -104.5t77 -39.5q64 0 102.5 60.5t38.5 140.5q0 63 -32 96t-88 33q-35 0 -66.5 -16t-38.5 -32q-22 -54 -22 -138z" />
<glyph horiz-adv-x="500" d="M63 506q0 4 5.5 20.5t13.5 44t14 53.5q6 27 11 27q20 0 20 -8q0 -3 -2 -13.5t-2 -14.5q0 -2 51 -2h275q13 0 13 -9q0 -3 -44 -82l-99 -177t-73 -133q-34 -66 -50.5 -111t-31.5 -109q-5 -17 -12 -17q-8 0 -20.5 5.5t-12.5 13.5q0 73 144 316l132 224q5 8 5 13q0 8 -14 8 h-198q-82 0 -85 -9l-13 -40q-6 -8 -10 -9q-17 0 -17 9z" />
<glyph horiz-adv-x="500" d="M56 126q0 37 16 69.5t39 53t46.5 35.5t39.5 23t16 9t-11 9.5t-26.5 24t-30.5 35t-26 46.5t-11 54q0 70 49 115t120 45q61 0 103.5 -38.5t42.5 -95.5q0 -33 -13 -63t-31.5 -49.5t-37 -34.5t-31.5 -23.5t-13 -9.5t12 -9.5t29 -23.5t34 -35t29 -50.5t12 -62.5 q0 -75 -58 -119.5t-138 -44.5q-66 0 -113.5 41t-47.5 99zM113 138q0 -58 34.5 -93t78.5 -35q50 0 88 36.5t38 93.5q0 40 -29 81t-57 62.5t-34 21.5q-4 0 -16 -6t-29.5 -19.5t-34 -32t-28 -47.5t-11.5 -62zM155 497q0 -36 30.5 -74.5t59.5 -59t34 -20.5q8 0 29 18t43 56 t22 79q0 52 -28 87t-74 35q-55 0 -85.5 -33.5t-30.5 -87.5z" />
<glyph horiz-adv-x="500" d="M52 10q0 16 11 16q108 0 180.5 59.5t114.5 181.5q2 6 -1.5 8t-10.5 -2q-58 -34 -123 -34q-66 0 -103.5 47.5t-37.5 115.5q0 103 58 165.5t145 62.5q71 0 117.5 -52.5t46.5 -145.5q0 -84 -19 -152.5t-48.5 -112.5t-70 -77t-77 -50t-76.5 -27t-62 -12.5t-39 -2.5 q-5 0 -5 12zM143 409q0 -56 27.5 -96t84.5 -40q67 0 113 36q9 7 14 52t5 82q0 66 -28 113t-77 47q-58 0 -98.5 -56.5t-40.5 -137.5z" />
<glyph horiz-adv-x="270" d="M25 282q0 4 29.5 28.5t67 48.5t54.5 24q20 0 20 -22q0 -26 -32.5 -150t-32.5 -136q0 -20 13 -20q8 0 27 16t35 32t17 16q3 0 7.5 -5t4.5 -7q0 -12 -64.5 -62.5t-86.5 -50.5q-24 0 -24 18q0 24 35.5 145t35.5 153q0 18 -12 18q-11 0 -30.5 -15t-35 -29.5t-16.5 -14.5 q-4 0 -8 4.5t-4 8.5zM128 549q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph horiz-adv-x="0" d="M-299 538q0 29 29 29q18 0 30 -25l40 -85q1 -2 1 -5t-4 -3h-18q-1 0 -7 6l-61 60q-10 10 -10 23z" />
<glyph horiz-adv-x="0" d="M-219 451l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2z" />
<glyph horiz-adv-x="0" d="M-313 451q0 1 4 5l91 92q11 11 20 11h20q7 0 9 -1.5t7 -9.5l53 -92q2 -3 2 -5t-5 -2h-12q-1 0 -7 6l-63 52q-3 3 -8 0l-85 -52q-2 -1 -4 -2.5t-3 -2.5l-2 -1h-12q-5 0 -5 2z" />
<glyph horiz-adv-x="0" d="M-290 557q0 2 5 2h12q1 0 7 -6l63 -52q3 -3 8 0l85 52q2 1 4 2.5t4 2.5l1 1h12q5 0 5 -2q0 -1 -4 -5l-91 -92q-11 -11 -20 -11h-20q-7 0 -9 1.5t-7 9.5l-53 92q-2 3 -2 5z" />
<glyph horiz-adv-x="0" d="M-300 508l2 21q1 6 2 7t7 1h181q6 0 7 -1t1 -6l-2 -23q-5 -8 -8 -8h-181q-7 0 -8.5 1t-0.5 8z" />
<glyph horiz-adv-x="0" d="M-286 530q0 28 4 28h13q1 0 1 -2q0 -31 15.5 -45t52.5 -14q53 0 77 32q4 6 7.5 13.5l5.5 11.5t3 4h13q-6 -46 -37.5 -77.5t-76.5 -31.5q-41 0 -59.5 23t-18.5 58z" />
<glyph horiz-adv-x="0" d="M-284 451l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2zM-164 451l3 6l66 85q20 25 38 25q26 0 26 -21q0 -18 -18 -31l-83 -60q-8 -6 -9 -6h-19q-4 0 -4 2z" />
<glyph horiz-adv-x="0" d="M-242 510q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph horiz-adv-x="0" d="M-311 505q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM-171 505q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph horiz-adv-x="0" d="M-304 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33zM-178 535q0 20 11 33t30 13q20 0 32 -15t12 -33q0 -20 -11.5 -33t-29.5 -13q-20 0 -32 15t-12 33z" />
<glyph horiz-adv-x="0" d="M-268 501q0 28 20 48t48 20t48 -20t20 -48t-20 -48t-48 -20t-48 20t-20 48zM-240 501q0 -17 11.5 -28.5t28.5 -11.5t28.5 11.5t11.5 28.5t-11.5 28.5t-28.5 11.5t-28.5 -11.5t-11.5 -28.5z" />
<glyph horiz-adv-x="0" d="M-308 465q2 9 11 25q15 25 32.5 38.5t30.5 13.5q16 0 42 -18t38 -18q21 0 40 33q3 7 13 7q6 0 6 -2q-1 -6 -11 -26q-29 -55 -66 -55q-17 0 -41 17.5t-39 17.5q-22 0 -38 -29q-3 -6 -12 -6q-6 0 -6 2z" />
<glyph horiz-adv-x="272" d="M55 28q0 6 18 106.5l42 243t35 234.5q2 10 -1 14t-13 1q-66 -18 -74 -18q-5 0 -3 20q1 8 2.5 9.5t7.5 3.5q39 9 75.5 18.5l53.5 14t19 4.5q10 0 10 -9q0 -12 -50 -305.5t-50 -296.5q0 -21 14 -21q12 0 36 21t43.5 42t20.5 21q3 0 9.5 -5.5t6.5 -7.5q0 -4 -28 -34.5 t-71.5 -62t-73.5 -31.5q-29 0 -29 38z" />
<glyph horiz-adv-x="586" d="M20 15q0 9 2.5 10.5t14.5 1.5h52q1 0 20 142.5l38 292t19 164.5q0 13 -2 13h-58q-10 0 -13 2.5t-3 12.5t3.5 12.5t16.5 2.5q6 0 43.5 -1.5t54.5 -1.5q16 0 57.5 1.5t52.5 1.5q12 0 14.5 -2t2.5 -13q0 -9 -3 -12t-15 -3h-62l-19 -144l-39 -290t-19 -152q0 -22 17 -22 q231 0 291 6q12 1 15 4t8 19l25 77q3 8 11 8q21 0 21 -10q0 -3 -5 -19l-14.5 -47t-17.5 -61q-2 -11 -20 -11q-11 0 -185.5 1.5t-190.5 1.5t-52.5 -1.5t-47.5 -1.5q-10 0 -11.5 2.5t-1.5 15.5z" />
<glyph horiz-adv-x="268" d="M30 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="268" d="M30 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="268" d="M30 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="268" d="M30 291q0 12 6 25.5t12 14.5t91.5 4t91.5 3q2 0 2 -9q0 -33 -8 -33q-104 -8 -191 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="500" d="M10 295q0 12 2 14.5t11 2.5h451q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-444q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph horiz-adv-x="750" d="M10 295q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph horiz-adv-x="750" d="M10 295q0 12 2 14.5t11 2.5h701q11 0 13.5 -2t2.5 -10v-12q0 -9 -2.5 -11t-13.5 -2h-694q-15 0 -17.5 2.5t-2.5 17.5z" />
<glyph horiz-adv-x="408" d="M50 318q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -3 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55zM200 318q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -3 -31 -58t-31 -61t31 -61t31 -58 q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph horiz-adv-x="408" d="M60 199q0 3 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5zM210 199q0 3 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55 l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph horiz-adv-x="258" d="M50 318q0 4 55 55l36 34.5l31 30.5l12 11q2 0 8 -5.5t6 -6.5q0 -3 -31 -58t-31 -61t31 -61t31 -58q0 -1 -6 -6.5t-8 -5.5l-12 11l-31 30.5l-36 34.5q-55 51 -55 55z" />
<glyph horiz-adv-x="258" d="M60 199q0 3 31 58t31 61t-31 61t-31 58q0 1 6 6.5t8 5.5l12 -11l31 -30.5l36 -34.5q55 -51 55 -55t-55 -55l-36 -34.5l-31 -30.5l-12 -11q-2 0 -8 5.5t-6 6.5z" />
<glyph horiz-adv-x="319" d="M60 315q0 73 19 142t45 114.5t53.5 80.5t45.5 51t20 16q6 0 11 -4t5 -9l-8 -8q-8 -9 -20.5 -25.5t-27.5 -39t-30 -54.5t-27.5 -68.5t-20.5 -84.5t-8 -99q0 -79 14 -150t34.5 -117.5t41 -80.5t34.5 -53t14 -22q0 -14 -16 -14q-4 0 -22.5 21.5t-45 62.5t-51.5 91.5 t-42.5 117.5t-17.5 132z" />
<glyph horiz-adv-x="319" d="M60 -97l8 9q8 8 20.5 24.5t27.5 39t30 54.5t27.5 68.5t20.5 84.5t8 99q0 79 -14 150t-34.5 117.5t-41 80.5t-34.5 53t-14 22q0 14 16 14q4 0 22.5 -21.5t45 -62.5t51.5 -91.5t42.5 -117.5t17.5 -132q0 -73 -19 -142t-45 -114.5t-53.5 -80.5t-45.5 -51t-20 -16q-6 0 -11 4 t-5 9z" />
<glyph horiz-adv-x="296" d="M80 -96v801q0 9 2 12t10 3h151q9 0 11 -1.5t2 -7.5v-14q0 -9 -2 -11t-11 -2h-105q-9 0 -11 -2t-2 -10v-735q0 -12 13 -12h105q6 0 8.5 -0.5t3.5 -3t1 -9.5v-12q0 -6 -2 -8.5t-11 -2.5h-150q-9 0 -11 2.5t-2 12.5z" />
<glyph horiz-adv-x="296" d="M40 -88q0 9 2 11t11 2h105q9 0 11 2t2 10v735v6t-1.5 3.5t-4 2t-7.5 0.5h-105q-6 0 -8.5 0.5t-3.5 3t-1 9.5v12q0 7 2 9t11 2h150q9 0 11 -2.5t2 -12.5v-801q0 -9 -2 -12t-10 -3h-151q-9 0 -11 1.5t-2 7.5v14z" />
<glyph horiz-adv-x="307" d="M40 304q0 6 5.5 9t14.5 4t18.5 7.5t18.5 18t14.5 38t5.5 65.5v80q0 36 0.5 53.5t3 42.5t8 36.5t15 26t24.5 20t36.5 10t50.5 4.5q8 0 10 -2t2 -11t-2.5 -11t-11.5 -2q-43 0 -63.5 -19t-20.5 -73v-149q0 -72 -9.5 -100t-48.5 -41q-15 -6 -15 -7t15 -7q39 -13 48.5 -41 t9.5 -100v-149q0 -54 20.5 -73t63.5 -19q6 0 8.5 -0.5t4 -3.5t1.5 -9q0 -9 -2 -11t-10 -2q-29 0 -50.5 4.5t-36.5 10t-24.5 20t-15 26t-8 36.5t-3 42.5t-0.5 53.5v80q0 39 -5.5 65.5t-14.5 38t-18.5 18t-18.5 7.5t-14.5 4t-5.5 9z" />
<glyph horiz-adv-x="307" d="M40 -98q0 9 3 11t11 2q43 0 63.5 19t20.5 73v149q0 72 9.5 100t48.5 41q15 6 15 7t-15 7q-39 13 -48.5 41t-9.5 100v149q0 54 -20.5 73t-63.5 19q-6 0 -8.5 0.5t-4 3.5t-1.5 9q0 9 2 11t10 2q29 0 50.5 -4.5t36.5 -10t24.5 -20t15 -26t8 -36.5t3 -42.5t0.5 -53.5v-80 q0 -39 5.5 -65.5t14.5 -38t18.5 -18t18.5 -7.5t14.5 -4t5.5 -9t-5.5 -9t-14.5 -4t-18.5 -7.5t-18.5 -18t-14.5 -38t-5.5 -65.5v-80q0 -36 -0.5 -53.5t-3 -42.5t-8 -36.5t-15 -26t-24.5 -20t-36.5 -10t-50.5 -4.5q-8 0 -10 2t-2 11z" />
<glyph d="M22 155q0 115 58 185.5t129 70.5q53 0 89.5 -45.5t36.5 -116.5q0 -104 -53 -183t-128 -79q-58 0 -95 47.5t-37 120.5zM79 126q0 -56 21 -83t54 -27q57 0 92 80.5t35 168.5q0 52 -19 83.5t-57 31.5q-52 0 -89 -77.5t-37 -176.5z" />
<glyph d="M78 10q0 15 13 15h56q7 45 26 190.5t19 160.5q-5 -1 -32 -6t-28 -5q-7 0 -7 9v8q0 8 8 9q12 1 41 6l53 9t26 4q7 0 7 -8q0 -3 -3.5 -24l-9.5 -57.5t-9 -58.5l-35 -237h58q8 0 8 -16q0 -8 -1 -9.5t-7 -1.5q-4 0 -37.5 1t-44.5 1t-47.5 -1t-43.5 -1t-8.5 2t-1.5 10z" />
<glyph d="M41 7q0 6 27 43t31 40q154 139 154 206q0 30 -19 50.5t-55 20.5q-31 0 -56.5 -16.5t-38.5 -32.5t-14 -16q-3 0 -9 4.5t-6 8.5q0 7 19 29t54.5 44t70.5 22q49 0 79 -30.5t30 -77.5q0 -52 -51 -108q-21 -23 -45.5 -43.5t-49.5 -39l-29 -21.5l-38 -43h182l6 17l11 29.5 t7 13.5q18 0 18 -5q0 -2 -5.5 -19.5l-13.5 -41t-11 -36.5q-1 -5 -9 -5h-228q-11 0 -11 7z" />
<glyph d="M49 27q0 6 10.5 12t19.5 6q15 0 35 -15.5t35 -15.5q39 0 63.5 26.5t24.5 67.5q0 76 -86 76q-5 0 -17.5 -1t-17.5 -1q-7 0 -7 13q0 15 4 15q36 4 53 11q70 27 70 94q0 30 -16.5 47.5t-41.5 17.5q-20 0 -38 -8.5t-29 -17t-12 -8.5q-3 0 -8 4t-4 8q1 5 14 17t38 23.5 t49 11.5q48 0 75.5 -26.5t27.5 -61.5q0 -19 -8 -35.5t-18.5 -27.5t-26 -21t-26 -14.5l-22.5 -9.5l-13 -5l13 -3q13 -3 23.5 -6t26 -10.5t26 -17t18.5 -25.5t8 -35q0 -57 -46 -89t-105 -32q-25 0 -58.5 13t-33.5 23z" />
<glyph d="M24 141q0 15 17 38q18 25 78.5 88.5t82.5 90.5q6 7 15 13t11 8q35 35 40 35q7 0 7 -14l-30 -216q-1 -8 0.5 -9.5t8.5 -1.5h37q6 0 6 -8v-23q0 -5 -1.5 -6t-7.5 -1h-46q-3 0 -4 -0.5t-2.5 -2.5t-1.5 -6q-18 -120 -18 -126q0 -3 -1.5 -4.5t-4.5 -1.5l-2 -1q-16 -4 -41 -4 q-6 0 -4 10l23 126q1 7 -0.5 8.5t-9.5 1.5h-139q-13 0 -13 6zM64 175q0 -2 14 -2h108q6 0 7.5 1.5t3.5 11.5q21 126 21 158q-21 -16 -143 -155q-11 -11 -11 -14z" />
<glyph d="M43 -2q0 11 7 11q4 0 18.5 -1t26.5 -1q42 0 80.5 29t38.5 78q0 86 -121 106q-14 3 -14 9l2 8q5 13 21 76t23 85q0 4 11 4q2 0 54.5 -5.5t82.5 -5.5q4 0 8 14q2 4 5 4q12 0 12 -4q0 -3 -2 -11t-5 -19t-5 -19q-4 -18 -14 -18q-5 0 -70.5 7.5t-68.5 7.5q-2 0 -4 -4 q-2 -5 -18 -67q0 -3 -1.5 -7t-1.5 -6q0 -4 8 -6q154 -36 154 -128q0 -42 -20 -73t-51 -46.5t-60.5 -23t-55.5 -7.5q-27 0 -37 3q-3 1 -3 10z" />
<glyph d="M45 120q0 86 47 157q45 67 115 101.5t102 34.5q7 0 7 -18q0 -1 -7 -3t-22 -7t-30 -11q-101 -43 -136 -147q-4 -12 -3.5 -12.5t11.5 2.5q37 14 60 14q52 0 83 -31.5t31 -80.5q0 -67 -41 -101t-96 -34q-56 0 -88.5 39.5t-32.5 96.5zM93 108q0 -48 22 -75.5t58 -27.5 q80 0 80 118q0 40 -26 64t-52 24q-24 0 -44 -10.5t-25 -21.5q-13 -32 -13 -71z" />
<glyph d="M58 314q0 3 4 16.5l10.5 34.5t10.5 39q4 20 9 20q17 0 17 -7q0 -2 -2.5 -9.5t-2.5 -9.5q3 -1 35 -1h182q10 0 10 -7q0 -3 -31 -58l-69.5 -124t-50.5 -93q-27 -51 -32.5 -63.5t-21.5 -57.5q-5 -13 -9 -13q-6 0 -16 4.5t-10 10.5q0 14 14.5 46t40 75l48.5 80.5l50.5 81.5 l36.5 58q4 8 4 9q0 4 -9 4h-127q-56 0 -58 -5l-9 -31q-2 -7 -8 -7q-16 0 -16 7z" />
<glyph d="M54 75q0 18 7 35.5t17 29t24 22.5t24 17t21 11.5t12 6.5q-1 1 -9 7t-14.5 12t-16 16.5t-16 21t-11.5 25t-5 28.5q0 46 35.5 76t84.5 30q41 0 70 -26.5t29 -64.5q0 -17 -5.5 -33t-13.5 -27t-19 -21.5t-19 -16t-17 -11t-10 -6.5l6 -5q7 -4 11.5 -7.5l13 -10.5t14.5 -13.5 t13 -16.5t12 -19.5t8 -22t3 -25.5q0 -50 -41 -78.5t-97 -28.5q-45 0 -78 28t-33 67zM98 85q0 -38 22.5 -58.5t51.5 -20.5q34 0 58 20.5t24 56.5q0 26 -19 51.5t-36.5 39t-22.5 14.5q-7 -1 -23.5 -11t-35.5 -35.5t-19 -56.5zM130 315q0 -23 18.5 -47t35 -36t22.5 -14 q5 1 18.5 11.5t27.5 33.5t14 49q0 33 -17 55.5t-46 22.5q-35 0 -54 -22.5t-19 -52.5z" />
<glyph d="M48 -4q0 9 7 10q148 11 200 164q1 2 0 3.5t-3 1.5t-5 -2q-35 -21 -85 -21q-45 0 -72 33.5t-27 79.5q0 67 44 106.5t97 39.5q54 0 85 -38.5t31 -100.5q0 -61 -17 -110.5t-44.5 -79.5t-58 -51t-62.5 -30.5t-52.5 -13.5t-33.5 -4q-4 0 -4 13zM110 271q0 -38 18 -66t54 -28 q50 0 78 23q13 10 13 80q0 110 -71 110q-38 0 -65 -33.5t-27 -85.5z" />
<glyph d="M22 405q0 115 58 185.5t129 70.5q53 0 89.5 -45.5t36.5 -116.5q0 -104 -53 -183t-128 -79q-58 0 -95 47.5t-37 120.5zM79 376q0 -56 21 -83t54 -27q57 0 92 80.5t35 168.5q0 52 -19 83.5t-57 31.5q-52 0 -89 -77.5t-37 -176.5z" />
<glyph d="M78 260q0 15 13 15h56q7 45 26 190.5t19 160.5q-5 -1 -32 -6t-28 -5q-7 0 -7 9v8q0 8 8 9q12 1 41 6l53 9t26 4q7 0 7 -8q0 -3 -3.5 -24l-9.5 -57.5t-9 -58.5l-35 -237h58q8 0 8 -16q0 -8 -1 -9.5t-7 -1.5q-4 0 -37.5 1t-44.5 1t-47.5 -1t-43.5 -1t-8.5 2t-1.5 10z" />
<glyph d="M41 257q0 6 27 43t31 40q154 139 154 206q0 30 -19 50.5t-55 20.5q-31 0 -56.5 -16.5t-38.5 -32.5t-14 -16q-3 0 -9 4.5t-6 8.5q0 7 19 29t54.5 44t70.5 22q49 0 79 -30.5t30 -77.5q0 -52 -51 -108q-21 -23 -45.5 -43.5t-49.5 -39l-29 -21.5l-38 -43h182l6 17l11 29.5 t7 13.5q18 0 18 -5q0 -2 -5.5 -19.5l-13.5 -41t-11 -36.5q-1 -5 -9 -5h-228q-11 0 -11 7z" />
<glyph d="M49 277q0 6 10.5 12t19.5 6q15 0 35 -15.5t35 -15.5q39 0 63.5 26.5t24.5 67.5q0 76 -86 76q-5 0 -17.5 -1t-17.5 -1q-7 0 -7 13q0 15 4 15q36 4 53 11q70 27 70 94q0 30 -16.5 47.5t-41.5 17.5q-20 0 -38 -8.5t-29 -17t-12 -8.5q-3 0 -8 4t-4 8q1 5 14 17t38 23.5 t49 11.5q48 0 75.5 -26.5t27.5 -61.5q0 -19 -8 -35.5t-18.5 -27.5t-26 -21t-26 -14.5l-22.5 -9.5l-13 -5l13 -3q13 -3 23.5 -6t26 -10.5t26 -17t18.5 -25.5t8 -35q0 -57 -46 -89t-105 -32q-25 0 -58.5 13t-33.5 23z" />
<glyph d="M24 391q0 15 17 38q18 25 78.5 88.5t82.5 90.5q6 7 15 13t11 8q35 35 40 35q7 0 7 -14l-30 -216q-1 -8 0.5 -9.5t8.5 -1.5h37q6 0 6 -8v-23q0 -5 -1.5 -6t-7.5 -1h-46q-3 0 -4 -0.5t-2.5 -2.5t-1.5 -6q-18 -120 -18 -126q0 -3 -1.5 -4.5t-4.5 -1.5l-2 -1q-16 -4 -41 -4 q-6 0 -4 10l23 126q1 7 -0.5 8.5t-9.5 1.5h-139q-13 0 -13 6zM64 425q0 -2 14 -2h108q6 0 7.5 1.5t3.5 11.5q21 126 21 158q-21 -16 -143 -155q-11 -11 -11 -14z" />
<glyph d="M43 248q0 11 7 11q4 0 18.5 -1t26.5 -1q42 0 80.5 29t38.5 78q0 86 -121 106q-14 3 -14 9l2 8q5 13 21 76t23 85q0 4 11 4q2 0 54.5 -5.5t82.5 -5.5q4 0 8 14q2 4 5 4q12 0 12 -4q0 -3 -2 -11t-5 -19t-5 -19q-4 -18 -14 -18q-5 0 -70.5 7.5t-68.5 7.5q-2 0 -4 -4 q-2 -5 -18 -67q0 -3 -1.5 -7t-1.5 -6q0 -4 8 -6q154 -36 154 -128q0 -42 -20 -73t-51 -46.5t-60.5 -23t-55.5 -7.5q-27 0 -37 3q-3 1 -3 10z" />
<glyph d="M45 370q0 86 47 157q45 67 115 101.5t102 34.5q7 0 7 -18q0 -1 -7 -3t-22 -7t-30 -11q-101 -43 -136 -147q-4 -12 -3.5 -12.5t11.5 2.5q37 14 60 14q52 0 83 -31.5t31 -80.5q0 -67 -41 -101t-96 -34q-56 0 -88.5 39.5t-32.5 96.5zM93 358q0 -48 22 -75.5t58 -27.5 q80 0 80 118q0 40 -26 64t-52 24q-24 0 -44 -10.5t-25 -21.5q-13 -32 -13 -71z" />
<glyph d="M58 564q0 3 4 16.5l10.5 34.5t10.5 39q4 20 9 20q17 0 17 -7q0 -2 -2.5 -9.5t-2.5 -9.5q3 -1 35 -1h182q10 0 10 -7q0 -3 -31 -58l-69.5 -124t-50.5 -93q-27 -51 -32.5 -63.5t-21.5 -57.5q-5 -13 -9 -13q-6 0 -16 4.5t-10 10.5q0 14 14.5 46t40 75l48.5 80.5l50.5 81.5 l36.5 58q4 8 4 9q0 4 -9 4h-127q-56 0 -58 -5l-9 -31q-2 -7 -8 -7q-16 0 -16 7z" />
<glyph d="M54 325q0 18 7 35.5t17 29t24 22.5t24 17t21 11.5t12 6.5q-1 1 -9 7t-14.5 12t-16 16.5t-16 21t-11.5 25t-5 28.5q0 46 35.5 76t84.5 30q41 0 70 -26.5t29 -64.5q0 -17 -5.5 -33t-13.5 -27t-19 -21.5t-19 -16t-17 -11t-10 -6.5l6 -5q7 -4 11.5 -7.5l13 -10.5t14.5 -13.5 t13 -16.5t12 -19.5t8 -22t3 -25.5q0 -50 -41 -78.5t-97 -28.5q-45 0 -78 28t-33 67zM98 335q0 -38 22.5 -58.5t51.5 -20.5q34 0 58 20.5t24 56.5q0 26 -19 51.5t-36.5 39t-22.5 14.5q-7 -1 -23.5 -11t-35.5 -35.5t-19 -56.5zM130 565q0 -23 18.5 -47t35 -36t22.5 -14 q5 1 18.5 11.5t27.5 33.5t14 49q0 33 -17 55.5t-46 22.5q-35 0 -54 -22.5t-19 -52.5z" />
<glyph d="M48 246q0 9 7 10q148 11 200 164q1 2 0 3.5t-3 1.5t-5 -2q-35 -21 -85 -21q-45 0 -72 33.5t-27 79.5q0 67 44 106.5t97 39.5q54 0 85 -38.5t31 -100.5q0 -61 -17 -110.5t-44.5 -79.5t-58 -51t-62.5 -30.5t-52.5 -13.5t-33.5 -4q-4 0 -4 13zM110 521q0 -38 18 -66t54 -28 q50 0 78 23q13 10 13 80q0 110 -71 110q-38 0 -65 -33.5t-27 -85.5z" />
<glyph d="M22 5q0 115 58 185.5t129 70.5q53 0 89.5 -45.5t36.5 -116.5q0 -104 -53 -183t-128 -79q-58 0 -95 47.5t-37 120.5zM79 -24q0 -56 21 -83t54 -27q57 0 92 80.5t35 168.5q0 52 -19 83.5t-57 31.5q-52 0 -89 -77.5t-37 -176.5z" />
<glyph d="M78 -140q0 15 13 15h56q7 45 26 190.5t19 160.5q-5 -1 -32 -6t-28 -5q-7 0 -7 9v8q0 8 8 9q12 1 41 6l53 9t26 4q7 0 7 -8q0 -3 -3.5 -24l-9.5 -57.5t-9 -58.5l-35 -237h58q8 0 8 -16q0 -8 -1 -9.5t-7 -1.5q-4 0 -37.5 1t-44.5 1t-47.5 -1t-43.5 -1t-8.5 2t-1.5 10z" />
<glyph d="M41 -143q0 6 27 43t31 40q154 139 154 206q0 30 -19 50.5t-55 20.5q-31 0 -56.5 -16.5t-38.5 -32.5t-14 -16q-3 0 -9 4.5t-6 8.5q0 7 19 29t54.5 44t70.5 22q49 0 79 -30.5t30 -77.5q0 -52 -51 -108q-21 -23 -45.5 -43.5t-49.5 -39l-29 -21.5l-38 -43h182l6 17l11 29.5 t7 13.5q18 0 18 -5q0 -2 -5.5 -19.5l-13.5 -41t-11 -36.5q-1 -5 -9 -5h-228q-11 0 -11 7z" />
<glyph d="M49 -123q0 6 10.5 12t19.5 6q15 0 35 -15.5t35 -15.5q39 0 63.5 26.5t24.5 67.5q0 76 -86 76q-5 0 -17.5 -1t-17.5 -1q-7 0 -7 13q0 15 4 15q36 4 53 11q70 27 70 94q0 30 -16.5 47.5t-41.5 17.5q-20 0 -38 -8.5t-29 -17t-12 -8.5q-3 0 -8 4t-4 8q1 5 14 17t38 23.5 t49 11.5q48 0 75.5 -26.5t27.5 -61.5q0 -19 -8 -35.5t-18.5 -27.5t-26 -21t-26 -14.5l-22.5 -9.5l-13 -5l13 -3q13 -3 23.5 -6t26 -10.5t26 -17t18.5 -25.5t8 -35q0 -57 -46 -89t-105 -32q-25 0 -58.5 13t-33.5 23z" />
<glyph d="M24 -9q0 15 17 38q18 25 78.5 88.5t82.5 90.5q6 7 15 13t11 8q35 35 40 35q7 0 7 -14l-30 -216q-1 -8 0.5 -9.5t8.5 -1.5h37q6 0 6 -8v-23q0 -5 -1.5 -6t-7.5 -1h-46q-3 0 -4 -0.5t-2.5 -2.5t-1.5 -6q-18 -120 -18 -126q0 -3 -1.5 -4.5t-4.5 -1.5l-2 -1q-16 -4 -41 -4 q-6 0 -4 10l23 126q1 7 -0.5 8.5t-9.5 1.5h-139q-13 0 -13 6zM64 25q0 -2 14 -2h108q6 0 7.5 1.5t3.5 11.5q21 126 21 158q-21 -16 -143 -155q-11 -11 -11 -14z" />
<glyph d="M43 -152q0 11 7 11q4 0 18.5 -1t26.5 -1q42 0 80.5 29t38.5 78q0 86 -121 106q-14 3 -14 9l2 8q5 13 21 76t23 85q0 4 11 4q2 0 54.5 -5.5t82.5 -5.5q4 0 8 14q2 4 5 4q12 0 12 -4q0 -3 -2 -11t-5 -19t-5 -19q-4 -18 -14 -18q-5 0 -70.5 7.5t-68.5 7.5q-2 0 -4 -4 q-2 -5 -18 -67q0 -3 -1.5 -7t-1.5 -6q0 -4 8 -6q154 -36 154 -128q0 -42 -20 -73t-51 -46.5t-60.5 -23t-55.5 -7.5q-27 0 -37 3q-3 1 -3 10z" />
<glyph d="M45 -30q0 86 47 157q45 67 115 101.5t102 34.5q7 0 7 -18q0 -1 -7 -3t-22 -7t-30 -11q-101 -43 -136 -147q-4 -12 -3.5 -12.5t11.5 2.5q37 14 60 14q52 0 83 -31.5t31 -80.5q0 -67 -41 -101t-96 -34q-56 0 -88.5 39.5t-32.5 96.5zM93 -42q0 -48 22 -75.5t58 -27.5 q80 0 80 118q0 40 -26 64t-52 24q-24 0 -44 -10.5t-25 -21.5q-13 -32 -13 -71z" />
<glyph d="M58 164q0 3 4 16.5l10.5 34.5t10.5 39q4 20 9 20q17 0 17 -7q0 -2 -2.5 -9.5t-2.5 -9.5q3 -1 35 -1h182q10 0 10 -7q0 -3 -31 -58l-69.5 -124t-50.5 -93q-27 -51 -32.5 -63.5t-21.5 -57.5q-5 -13 -9 -13q-6 0 -16 4.5t-10 10.5q0 14 14.5 46t40 75l48.5 80.5l50.5 81.5 l36.5 58q4 8 4 9q0 4 -9 4h-127q-56 0 -58 -5l-9 -31q-2 -7 -8 -7q-16 0 -16 7z" />
<glyph d="M54 -75q0 18 7 35.5t17 29t24 22.5t24 17t21 11.5t12 6.5q-1 1 -9 7t-14.5 12t-16 16.5t-16 21t-11.5 25t-5 28.5q0 46 35.5 76t84.5 30q41 0 70 -26.5t29 -64.5q0 -17 -5.5 -33t-13.5 -27t-19 -21.5t-19 -16t-17 -11t-10 -6.5l6 -5q7 -4 11.5 -7.5l13 -10.5t14.5 -13.5 t13 -16.5t12 -19.5t8 -22t3 -25.5q0 -50 -41 -78.5t-97 -28.5q-45 0 -78 28t-33 67zM98 -65q0 -38 22.5 -58.5t51.5 -20.5q34 0 58 20.5t24 56.5q0 26 -19 51.5t-36.5 39t-22.5 14.5q-7 -1 -23.5 -11t-35.5 -35.5t-19 -56.5zM130 165q0 -23 18.5 -47t35 -36t22.5 -14 q5 1 18.5 11.5t27.5 33.5t14 49q0 33 -17 55.5t-46 22.5q-35 0 -54 -22.5t-19 -52.5z" />
<glyph d="M48 -154q0 9 7 10q148 11 200 164q1 2 0 3.5t-3 1.5t-5 -2q-35 -21 -85 -21q-45 0 -72 33.5t-27 79.5q0 67 44 106.5t97 39.5q54 0 85 -38.5t31 -100.5q0 -61 -17 -110.5t-44.5 -79.5t-58 -51t-62.5 -30.5t-52.5 -13.5t-33.5 -4q-4 0 -4 13zM110 121q0 -38 18 -66t54 -28 q50 0 78 23q13 10 13 80q0 110 -71 110q-38 0 -65 -33.5t-27 -85.5z" />
<glyph d="M22 505q0 115 58 185.5t129 70.5q53 0 89.5 -45.5t36.5 -116.5q0 -104 -53 -183t-128 -79q-58 0 -95 47.5t-37 120.5zM79 476q0 -56 21 -83t54 -27q57 0 92 80.5t35 168.5q0 52 -19 83.5t-57 31.5q-52 0 -89 -77.5t-37 -176.5z" />
<glyph d="M78 360q0 15 13 15h56q7 45 26 190.5t19 160.5q-5 -1 -32 -6t-28 -5q-7 0 -7 9v8q0 8 8 9q12 1 41 6l53 9t26 4q7 0 7 -8q0 -3 -3.5 -24l-9.5 -57.5t-9 -58.5l-35 -237h58q8 0 8 -16q0 -8 -1 -9.5t-7 -1.5q-4 0 -37.5 1t-44.5 1t-47.5 -1t-43.5 -1t-8.5 2t-1.5 10z" />
<glyph d="M41 357q0 6 27 43t31 40q154 139 154 206q0 30 -19 50.5t-55 20.5q-31 0 -56.5 -16.5t-38.5 -32.5t-14 -16q-3 0 -9 4.5t-6 8.5q0 7 19 29t54.5 44t70.5 22q49 0 79 -30.5t30 -77.5q0 -52 -51 -108q-21 -23 -45.5 -43.5t-49.5 -39l-29 -21.5l-38 -43h182l6 17l11 29.5 t7 13.5q18 0 18 -5q0 -2 -5.5 -19.5l-13.5 -41t-11 -36.5q-1 -5 -9 -5h-228q-11 0 -11 7z" />
<glyph d="M49 377q0 6 10.5 12t19.5 6q15 0 35 -15.5t35 -15.5q39 0 63.5 26.5t24.5 67.5q0 76 -86 76q-5 0 -17.5 -1t-17.5 -1q-7 0 -7 13q0 15 4 15q36 4 53 11q70 27 70 94q0 30 -16.5 47.5t-41.5 17.5q-20 0 -38 -8.5t-29 -17t-12 -8.5q-3 0 -8 4t-4 8q1 5 14 17t38 23.5 t49 11.5q48 0 75.5 -26.5t27.5 -61.5q0 -19 -8 -35.5t-18.5 -27.5t-26 -21t-26 -14.5l-22.5 -9.5l-13 -5l13 -3q13 -3 23.5 -6t26 -10.5t26 -17t18.5 -25.5t8 -35q0 -57 -46 -89t-105 -32q-25 0 -58.5 13t-33.5 23z" />
<glyph d="M24 491q0 15 17 38q18 25 78.5 88.5t82.5 90.5q6 7 15 13t11 8q35 35 40 35q7 0 7 -14l-30 -216q-1 -8 0.5 -9.5t8.5 -1.5h37q6 0 6 -8v-23q0 -5 -1.5 -6t-7.5 -1h-46q-3 0 -4 -0.5t-2.5 -2.5t-1.5 -6q-18 -120 -18 -126q0 -3 -1.5 -4.5t-4.5 -1.5l-2 -1q-16 -4 -41 -4 q-6 0 -4 10l23 126q1 7 -0.5 8.5t-9.5 1.5h-139q-13 0 -13 6zM64 525q0 -2 14 -2h108q6 0 7.5 1.5t3.5 11.5q21 126 21 158q-21 -16 -143 -155q-11 -11 -11 -14z" />
<glyph d="M43 348q0 11 7 11q4 0 18.5 -1t26.5 -1q42 0 80.5 29t38.5 78q0 86 -121 106q-14 3 -14 9l2 8q5 13 21 76t23 85q0 4 11 4q2 0 54.5 -5.5t82.5 -5.5q4 0 8 14q2 4 5 4q12 0 12 -4q0 -3 -2 -11t-5 -19t-5 -19q-4 -18 -14 -18q-5 0 -70.5 7.5t-68.5 7.5q-2 0 -4 -4 q-2 -5 -18 -67q0 -3 -1.5 -7t-1.5 -6q0 -4 8 -6q154 -36 154 -128q0 -42 -20 -73t-51 -46.5t-60.5 -23t-55.5 -7.5q-27 0 -37 3q-3 1 -3 10z" />
<glyph d="M45 470q0 86 47 157q45 67 115 101.5t102 34.5q7 0 7 -18q0 -1 -7 -3t-22 -7t-30 -11q-101 -43 -136 -147q-4 -12 -3.5 -12.5t11.5 2.5q37 14 60 14q52 0 83 -31.5t31 -80.5q0 -67 -41 -101t-96 -34q-56 0 -88.5 39.5t-32.5 96.5zM93 458q0 -48 22 -75.5t58 -27.5 q80 0 80 118q0 40 -26 64t-52 24q-24 0 -44 -10.5t-25 -21.5q-13 -32 -13 -71z" />
<glyph d="M58 664q0 3 4 16.5l10.5 34.5t10.5 39q4 20 9 20q17 0 17 -7q0 -2 -2.5 -9.5t-2.5 -9.5q3 -1 35 -1h182q10 0 10 -7q0 -3 -31 -58l-69.5 -124t-50.5 -93q-27 -51 -32.5 -63.5t-21.5 -57.5q-5 -13 -9 -13q-6 0 -16 4.5t-10 10.5q0 14 14.5 46t40 75l48.5 80.5l50.5 81.5 l36.5 58q4 8 4 9q0 4 -9 4h-127q-56 0 -58 -5l-9 -31q-2 -7 -8 -7q-16 0 -16 7z" />
<glyph d="M54 425q0 18 7 35.5t17 29t24 22.5t24 17t21 11.5t12 6.5q-1 1 -9 7t-14.5 12t-16 16.5t-16 21t-11.5 25t-5 28.5q0 46 35.5 76t84.5 30q41 0 70 -26.5t29 -64.5q0 -17 -5.5 -33t-13.5 -27t-19 -21.5t-19 -16t-17 -11t-10 -6.5l6 -5q7 -4 11.5 -7.5l13 -10.5t14.5 -13.5 t13 -16.5t12 -19.5t8 -22t3 -25.5q0 -50 -41 -78.5t-97 -28.5q-45 0 -78 28t-33 67zM98 435q0 -38 22.5 -58.5t51.5 -20.5q34 0 58 20.5t24 56.5q0 26 -19 51.5t-36.5 39t-22.5 14.5q-7 -1 -23.5 -11t-35.5 -35.5t-19 -56.5zM130 665q0 -23 18.5 -47t35 -36t22.5 -14 q5 1 18.5 11.5t27.5 33.5t14 49q0 33 -17 55.5t-46 22.5q-35 0 -54 -22.5t-19 -52.5z" />
<glyph d="M48 346q0 9 7 10q148 11 200 164q1 2 0 3.5t-3 1.5t-5 -2q-35 -21 -85 -21q-45 0 -72 33.5t-27 79.5q0 67 44 106.5t97 39.5q54 0 85 -38.5t31 -100.5q0 -61 -17 -110.5t-44.5 -79.5t-58 -51t-62.5 -30.5t-52.5 -13.5t-33.5 -4q-4 0 -4 13zM110 621q0 -38 18 -66t54 -28 q50 0 78 23q13 10 13 80q0 110 -71 110q-38 0 -65 -33.5t-27 -85.5z" />
<glyph horiz-adv-x="379" d="M30 49q0 38 12.5 83.5t35 88.5t60.5 71.5t83 28.5q28 0 45 -25q3 -4 6.5 -10t6 -9.5t3.5 -3.5q2 2 7 17.5t5 18.5q4 10 34 10q14 0 14 -6q0 -3 -33.5 -121.5t-33.5 -139.5q0 -16 11 -16q7 0 29.5 23.5t23.5 23.5q3 0 6.5 -4t3.5 -9q0 -3 -18.5 -22t-45 -38.5t-42.5 -19.5 q-23 0 -23 21q0 26 44 167q-46 -80 -100 -135q-40 -40 -59 -48q-10 -4 -22 -4q-26 0 -39.5 16.5t-13.5 41.5zM85 80q0 -44 23 -44q21 0 68 52t81 107q12 18 12 44q0 21 -23 34t-45 13q-39 0 -77.5 -75t-38.5 -131z" />
<glyph horiz-adv-x="408" d="M45 10q0 4 2 7.5t5 7.5l4 4q2 2 5 16q24 132 48 290t24 180q0 5 -5 5q-2 0 -33 -9t-34 -9q-8 0 -8 22q0 9 4 10q119 31 132 31q11 0 11 -9q0 -5 -14.5 -96.5t-19.5 -116.5q-27 -155 -38 -203q39 67 69 106q31 42 54.5 58.5t61.5 16.5q65 0 65 -54q0 -111 -76.5 -193 t-140.5 -82q-17 0 -32.5 6t-24.5 12t-11 6q-1 0 -3.5 -1t-6 -3t-6.5 -3q-14 -7 -23 -7t-9 8zM115 66q0 -20 14 -34t41 -14q34 0 70.5 42t57.5 92t21 81q0 48 -34 48q-35 0 -69 -48q-101 -139 -101 -167z" />
<glyph horiz-adv-x="357" d="M35 106q0 95 59 156.5t125 61.5q41 0 65 -20t24 -53q0 -18 -10 -29.5t-26 -11.5q-19 0 -19 31q0 3 0.5 10t0.5 10q0 16 -9.5 27.5t-28.5 11.5q-50 0 -87 -55q-38 -56 -38 -126q0 -14 1.5 -23.5t8.5 -26t26.5 -26t49.5 -9.5q32 0 63.5 16t50.5 32t20 16q3 0 7 -4t4 -8 q0 -5 -25 -27t-68 -45t-80 -23q-61 0 -87.5 33.5t-26.5 81.5z" />
<glyph horiz-adv-x="424" d="M35 61q0 28 12 69t33.5 83t57.5 71.5t77 29.5q15 0 28.5 -2.5t20.5 -5.5t15 -7t9 -4q8 -3 9.5 -2t3.5 10q5 25 12 75.5l12.5 89t5.5 39.5q4 12 -2 12q-1 0 -36.5 -8.5t-37.5 -8.5q-6 0 -3 18q1 10 9 13q32 7 63 14.5t46 11.5t16 4q10 0 10 -13q0 -3 -41.5 -239.5 t-41.5 -261.5q0 -11 10 -11q11 0 29 15t32.5 30t15.5 15q9 0 9 -7q0 -5 -18 -27.5t-51 -46.5t-63 -24q-10 0 -17 8.5t-7 22.5q0 28 33 165q-42 -72 -71 -109q-22 -29 -34 -42.5t-34.5 -27.5t-46.5 -14q-8 0 -16 1.5t-20.5 7t-20.5 20t-8 36.5zM92 85q0 -24 8 -35t28 -11 q35 0 115 115q46 69 46 97q0 11 -24 27.5t-50 16.5q-34 0 -64 -40.5t-44.5 -88t-14.5 -81.5z" />
<glyph horiz-adv-x="357" d="M35 87q0 95 61 166t143 71q78 0 78 -55q0 -36 -29.5 -64t-73.5 -45q-55 -20 -117 -20q-5 0 -5 -38q0 -72 78 -72q34 0 67.5 18t52.5 35.5t20 17.5q3 0 7.5 -4.5t4.5 -6.5q0 -4 -23.5 -26t-69 -45.5t-89.5 -23.5q-46 0 -75.5 23t-29.5 69zM104 165q0 -4 7 -4 q62 0 106 29.5t44 79.5q0 15 -11 23.5t-29 8.5q-68 0 -106 -99q-11 -29 -11 -38z" />
<glyph horiz-adv-x="250" d="M-92 -199q0 12 14 23.5t27 11.5q10 0 31 -9.5t36 -9.5q8 0 14.5 5t11 15.5l8.5 20.5t7 26l5 26t4 25.5t3 20.5q9 54 19.5 133t17 132.5t6.5 56.5q0 8 -6 8h-59q-7 0 -7 7q0 4 2 10q1 5 7 5h57q4 0 5.5 0.5t3 2.5t1.5 7q9 80 36 130q37 67 84 94q37 22 77 22q21 0 41 -10 t20 -20q0 -12 -16.5 -24t-29.5 -12q-11 0 -31.5 15.5t-35.5 15.5q-61 0 -91 -216q0 -5 6 -5h69q5 0 5 -2q0 -20 -8 -20h-68h-2q-3 0 -4 -3l-0.5 -2t-0.5 -3t-19 -133.5t-29 -188.5q-3 -17 -9 -38t-25 -58t-44 -55q-48 -35 -76 -35q-20 0 -38.5 10.5t-18.5 20.5z" />
<glyph horiz-adv-x="377" d="M4 -130q0 33 25 56.5t52 35.5q9 4 9 5t-2 2t-6 2.5t-7 3.5q-21 14 -21 28q0 6 14.5 29.5t22.5 26.5l51 18l4 2q0 1 -5 2q-82 27 -82 109q0 59 43 100t105 41q12 0 24 -2.5t20 -6.5t15.5 -8.5t11.5 -8.5t8 -7l4 -4q2 2 11.5 22.5t11.5 23.5q5 9 18 9q23 0 23 -10 t-9.5 -27.5t-19.5 -31.5t-10 -15q0 -2 1 -5q2 -4 2 -6q6 -22 6 -33q0 -60 -44 -101q-22 -20 -42.5 -28.5t-62.5 -20.5q-77 -21 -77 -38q0 -4 2.5 -7t8 -6t11 -5t15 -4.5t18 -4l20.5 -3.5l21 -3.5t22.5 -4t22.5 -3.5q53 -8 81 -25t28 -55q0 -63 -56 -92t-145 -29 q-143 0 -143 79zM41 -125q0 -32 44 -44.5t95 -12.5q52 0 84 18t32 54q0 25 -22 37t-64 19q-84 15 -90 15q-4 0 -26 -10q-53 -27 -53 -76zM112 189q0 -49 20.5 -70.5t41.5 -21.5q33 0 65 39t32 94q0 30 -19 55t-46 25q-41 0 -67.5 -40t-26.5 -81z" />
<glyph horiz-adv-x="431" d="M40 5q0 2 5.5 27.5t14.5 72.5l19.5 105.5t22 139.5t19.5 162q2 15 -3 15q-8 0 -39.5 -11.5t-32.5 -11.5q-3 0 -3 13q0 10 6 14q24 9 69 18.5t61 9.5q6 0 6 -13q-4 -75 -76 -436q39 89 92 152q46 56 105 56q50 0 50 -41q0 -31 -27.5 -122.5t-27.5 -99.5q0 -17 15 -17 q9 0 28 18t34.5 36t16.5 18q3 0 7 -4t4 -6q0 -4 -18 -28t-50 -48.5t-61 -24.5q-14 0 -24.5 9.5t-10.5 23.5q0 12 30.5 105.5t30.5 116.5q0 13 -8 22.5t-20 9.5q-27 0 -55 -33.5t-62 -88.5q-4 -7 -13.5 -22.5l-14.5 -24t-10.5 -20.5t-7.5 -22l-15 -67q-2 -11 -50 -11 q-7 0 -7 8z" />
<glyph horiz-adv-x="235" d="M30 233q0 7 53 46t73 39q7 0 12.5 -5t5.5 -15q0 -22 -27.5 -124t-27.5 -112q0 -16 10 -16q9 0 36.5 26.5t28.5 26.5q3 0 7 -3.5t4 -6.5q0 -11 -53.5 -53t-71.5 -42q-22 0 -22 16q0 21 30 120.5t30 125.5q0 15 -9 15q-13 0 -40 -24.5t-28 -24.5q-4 0 -7.5 4t-3.5 7z M116 453q0 17 9 28t25 11q17 0 27 -13t10 -28q0 -17 -9.5 -27.5t-24.5 -10.5q-17 0 -27 12.5t-10 27.5z" />
<glyph horiz-adv-x="239" d="M-61 -183q0 13 8.5 22t21.5 9q15 0 31.5 -10t30.5 -10q15 0 22.5 20.5t17.5 66.5q16 75 35.5 199t19.5 142q0 15 -9 15q-13 0 -47 -37l-34 -37q-3 0 -7 3t-4 7t25 30.5t59.5 53.5t55.5 27q7 0 12.5 -5.5t5.5 -15.5q0 -19 -45 -300q-19 -130 -80 -177q-44 -32 -73 -32 q-21 0 -33.5 9t-12.5 20zM125 478q0 17 10 28t26 11q17 0 26.5 -12.5t9.5 -27.5q0 -17 -9.5 -28.5t-24.5 -11.5q-17 0 -27.5 13t-10.5 28z" />
<glyph horiz-adv-x="421" d="M35 -4q0 3 17.5 85t40 208.5t32.5 225.5q0 7 -5 7q-14 0 -62 -16q-8 -2 -8 7q0 16 7 18q34 8 64.5 16.5l44 12t16.5 3.5q13 0 13 -10q0 -7 -16.5 -88l-37.5 -183t-26 -128q36 64 57 92q28 36 56 53t70 17q50 0 50 -31q0 -35 -27.5 -65t-56.5 -44t-55 -20q-2 0 -8 -1 t-8 -2q14 -7 22 -14q43 -43 61 -64q14 -17 20.5 -24t18 -13t25.5 -6q27 0 27 21q0 3 -0.5 9t-0.5 8q0 11 6 11q19 0 19 -37q0 -19 -32 -33t-60 -14q-19 0 -37 17q-9 9 -19 20.5t-25 31.5t-21 27l-19.5 23.5l-17 20t-5.5 8.5q0 4 14 18q2 2 10 2q11 0 22 4q31 14 59.5 45 t28.5 58q0 15 -25 15q-23 0 -52 -27q-20 -17 -84 -113q-14 -23 -20 -48q-10 -44 -16 -81q-2 -12 -4 -15.5t-6 -3.5l-18 -3q-19 -2 -24 -2t-5 2z" />
<glyph horiz-adv-x="252" d="M55 24q0 5 15 88t34.5 201t28.5 193q2 8 0.5 11t-9.5 1q-54 -15 -62 -15q-6 0 -4 17q1 9 9 12q32 7 62 15t43.5 12t15.5 4q9 0 9 -8q0 -10 -41.5 -253t-41.5 -246q0 -17 11 -17q10 0 30 17.5t36 35t17 17.5q3 0 8.5 -4.5t5.5 -6.5q0 -4 -23 -29.5t-58 -51.5t-61 -26 q-25 0 -25 33z" />
<glyph horiz-adv-x="650" d="M30 211q0 10 57 54t84 44q17 0 17 -16q0 -17 -3 -41.5t-6.5 -44t-10 -53t-9.5 -50.5q93 210 185 210q14 0 22 -11.5t8 -27.5q0 -66 -44 -198q69 129 111 179q51 58 94 58t43 -28q0 -24 -30 -118t-30 -108q0 -19 14 -19q10 0 43 34t34 34q3 0 7 -4t4 -7q0 -4 -24 -28.5 t-57.5 -49t-54.5 -24.5q-13 0 -21.5 7.5t-8.5 17.5q0 15 32 113.5t32 125.5q0 17 -15 17q-32 0 -104 -109q-55 -83 -75 -155q-3 -9 -12 -11q-20 -3 -35 -3q-8 0 -8 7l24 91q24 91 24 148q0 30 -16 30q-19 0 -54.5 -51t-64.5 -108q-17 -32 -35 -98q-5 -14 -9 -16 q-30 -12 -41 -12q-7 0 -5 9q10 39 23 123.5t13 122.5q0 13 -10 13q-12 0 -44 -31t-33 -31q-11 0 -11 15z" />
<glyph horiz-adv-x="465" d="M30 237q0 2 24.5 22t60.5 40.5t58 20.5q19 0 19 -18q0 -17 -5 -44t-9.5 -46t-15.5 -57.5t-14 -50.5q60 105 110.5 160.5t96.5 55.5q43 0 43 -37q0 -25 -32 -120.5t-32 -104.5q0 -16 15 -16q11 0 28.5 15t31.5 30.5t15 15.5q3 0 7 -3t4 -6q0 -4 -20 -26.5t-53.5 -45 t-60.5 -22.5t-27 34q0 24 33 113t33 114q0 23 -18 23q-21 0 -64.5 -54.5t-83.5 -117.5q-20 -31 -37 -93q0 -1 -1.5 -5.5l-2.5 -7.5t-3.5 -6t-5.5 -3q-26 -3 -40 -3q-7 0 -5 9q49 196 49 258q0 15 -10 15q-11 0 -43 -26.5t-33 -26.5q-4 0 -8 4.5t-4 9.5z" />
<glyph horiz-adv-x="377" d="M30 114q0 92 54.5 153.5t137.5 61.5q59 0 87 -42t28 -90q0 -78 -56.5 -141.5t-133.5 -63.5q-56 0 -86.5 35.5t-30.5 86.5zM83 121q0 -107 65 -107q37 0 69.5 39t49 88t16.5 89q0 29 -15.5 53.5t-54.5 24.5q-47 0 -88.5 -64.5t-41.5 -122.5z" />
<glyph horiz-adv-x="432" d="M20 186v1q3 6 9 15.5t24.5 33.5t37 43t43 34t46.5 15q15 0 15 -27q0 -45 -26 -184q32 77 81 152q31 48 83 48q37 0 50.5 -20.5t13.5 -56.5q0 -91 -61.5 -169t-126.5 -78q-9 0 -26.5 3t-20.5 3q-9 0 -10 -6l-27 -172q-2 -18 7 -19l16 -2t13.5 -1t11 -1t9 -1t6.5 -1t5 -2 t3.5 -2t2 -3t0.5 -4q0 -12 -4 -14.5t-14 -2.5q-1 0 -23 3t-56.5 5.5t-65.5 2.5q-14 0 -14 9q0 11 3 15t13 4h13q9 0 12.5 3t5.5 14q64 368 64 427q0 14 -9 14q-17 0 -54 -47l-36 -46q-4 0 -9 5t-5 9zM164 42q0 -25 53 -25q42 0 84.5 73t42.5 140q0 52 -36 52q-12 0 -24.5 -8 t-24 -24.5t-18.5 -28t-17.5 -33.5t-13.5 -27q-46 -85 -46 -119z" />
<glyph horiz-adv-x="397" d="M30 61q0 30 14.5 72t39.5 83.5t66 70.5t88 29q36 0 72 -17l11 -4q7 0 18.5 7t17.5 9q4 1 7 -1.5t3 -7.5t-22 -51q-4 -8 -6 -21l-31.5 -175.5l-32 -180.5t-11.5 -69q0 -8 11 -8h21q13 0 21 -1q12 -1 12 -15v-3v-6t-1.5 -4t-4 -2.5t-7.5 -0.5q-1 0 -11 0.5t-26.5 1 t-32.5 0.5q-11 0 -28.5 -1.5t-30.5 -3t-14 -1.5q-4 0 -6 0.5t-4 3t-2 7.5q1 11 4 13.5t14 4.5q20 4 22 8q2 3 4 13q46 203 77 378q-26 -54 -66 -109q-63 -87 -115 -87q-8 0 -17.5 2t-22.5 8.5t-22 21t-9 36.5zM85 82q0 -22 11 -35t26 -13q35 0 119 120q53 80 53 109 q0 9 -15.5 21.5t-40.5 12.5q-51 0 -102 -81t-51 -134z" />
<glyph horiz-adv-x="295" d="M25 240q0 10 42 45t66 35q16 0 16 -18q0 -23 -22 -144h2q2 6 12.5 34.5t19.5 49.5t19 38q25 46 61 46q15 0 27 -8t12 -22q0 -32 -19 -32q-9 0 -23.5 7.5t-22.5 7.5q-11 0 -20 -14q-14 -21 -46 -103q-3 -8 -6 -19t-4 -12q-7 -29 -14.5 -68.5t-11.5 -56.5q-1 -4 -18.5 -7 t-26.5 -3q-10 0 -10 4q0 2 10 53l20.5 109.5t10.5 79.5q0 31 -10 31q-13 0 -34 -21l-21 -22q-9 0 -9 10z" />
<glyph horiz-adv-x="289" d="M20 50q0 9 7 15.5t13 6.5q17 0 37 -20l10 -10.5t10 -10l8 -6.5t9.5 -5t10.5 -1q25 0 41 16t16 43q0 16 -18.5 35.5t-41 35t-41 38.5t-18.5 47q0 40 32.5 68.5t77.5 28.5q33 0 53 -12.5t24 -23t4 -18.5q0 -15 -16 -15q-24 0 -40 30q-12 21 -26 21q-22 0 -39 -12t-17 -39 q0 -26 19 -47t41 -34t41 -37t19 -55q0 -38 -32.5 -66t-77.5 -28q-38 0 -72 17.5t-34 37.5z" />
<glyph horiz-adv-x="256" d="M35 287q0 1 0.5 7t0.5 8q0 6 8 6h50q7 0 8 6q2 10 6.5 44.5t5.5 38.5q1 5 2.5 8t4.5 4.5t10 2.5q4 1 17 1q25 0 25 -5q0 -1 -4.5 -20.5l-9.5 -42.5t-6 -29t0 -7t7 -1h60q9 0 9 -7q0 -19 -12 -19h-60h-3q-5 0 -6 -4q-1 -2 -1 -3q-35 -191 -35 -205q0 -16 15 -16 q11 0 51 37l40 37q2 0 7.5 -4t5.5 -6q0 -4 -26.5 -33t-64.5 -58.5t-60 -29.5q-30 0 -30 30q0 8 22 126.5t22 120.5q-5 8 -6 8h-40q-13 0 -13 5z" />
<glyph horiz-adv-x="445" d="M25 212q0 2 10 16t26.5 34t31.5 36q26 26 59 26q47 0 47 -30q0 -11 -26.5 -110t-26.5 -120q0 -19 22 -19q27 0 73 65q59 82 84 164q1 3 10 45q1 5 45 10q8 0 8 -9q0 -4 -22.5 -120.5t-22.5 -125.5q0 -20 15 -20q12 0 40 37l29 37q8 0 8 -7q0 -5 -18.5 -34t-48 -58.5 t-51.5 -29.5q-12 0 -20.5 7t-8.5 17q0 18 18.5 99.5t21.5 102.5q-23 -48 -55 -98q-88 -132 -145 -132q-46 0 -46 36q0 9 25 104t25 126q0 23 -16 23q-12 0 -45 -40l-33 -41q-4 0 -8.5 3t-4.5 6z" />
<glyph horiz-adv-x="396" d="M30 247q0 10 37.5 44t57.5 34q23 0 36 -8q20 -11 26.5 -18t6.5 -20q0 -32 -11 -108t-11 -88q0 -9 12 -19t16 -10q12 0 20 9q6 7 26 33q83 111 83 178q0 32 -19 32q-9 0 -20.5 -2t-19.5 -4t-9 -2q-6 0 -6 15q0 5 32 12.5t50 7.5q34 0 34 -35q0 -14 -2.5 -28t-8.5 -29.5 l-11 -27.5t-16.5 -30.5l-17 -28t-21 -30.5l-21 -28l-23 -29.5l-21.5 -27.5q-9 -12 -19 -28t-21 -16q-17 0 -36 17q-19 14 -26 27t-7 41q0 15 8.5 85.5t8.5 98.5q0 14 -7 18q-10 7 -19 7q-12 0 -27.5 -13.5t-26.5 -27t-12 -13.5q-4 0 -9.5 4.5t-5.5 7.5z" />
<glyph horiz-adv-x="589" d="M25 250q0 9 41.5 39.5t61.5 30.5q14 0 38 -15q27 -18 27 -39q0 -25 -5.5 -70t-10.5 -80.5t-5 -36.5q0 -10 10 -22t16 -12q8 0 19 15q8 11 39.5 57.5t40.5 57.5q10 12 19 38.5t9 37.5q0 9 -16 25q-5 5 -11.5 10l-9 7t-2.5 4q0 8 11.5 19.5t20.5 11.5q14 0 37.5 -19.5 t23.5 -31.5q0 -13 -12.5 -97.5t-12.5 -100.5q0 -13 11 -24t20 -11q7 0 24 21q49 56 73 91q36 52 37 116q0 26 -17 26q-9 0 -24.5 -2t-27.5 -4.5t-13 -2.5q-6 0 -6 14q0 5 45 14.5t53 9.5q35 0 35 -33q0 -58 -57 -143q-10 -15 -21 -29t-26 -31.5t-22 -25l-27 -29t-24 -25.5 q-9 -9 -15 -9q-29 0 -49 19.5t-20 45.5q0 19 23 122q-70 -108 -101 -147q-3 -4 -11 -15.5t-11 -15.5q-10 -13 -18 -13q-13 0 -35 19q-19 14 -24.5 23.5t-5.5 30.5q0 11 9.5 70t9.5 105q0 10 -12.5 24t-22.5 14q-12 0 -27.5 -12t-26.5 -24t-12 -12q-5 0 -9 5.5t-4 8.5z" />
<glyph horiz-adv-x="413" d="M25 19q0 28 22 76q3 4 7 4q13 0 13 -7l-5 -14q-4 -13 -4 -24q0 -18 17 -18q18 0 54 39t61 73q4 7 1 17q-44 122 -82 122q-15 0 -37.5 -24t-24.5 -24q-3 0 -6.5 4.5t-3.5 7.5q0 4 12.5 20.5t37 33.5t49.5 17q19 0 31.5 -5t23.5 -22t16.5 -28.5t17.5 -43.5q5 -12 7 -18 l4 -6l5 8q3 4 18 28.5t23 35t22 27t28 24t28 7.5q21 0 21 -34q0 -17 -5 -47q-1 -4 -9 -4t-8 4q0 5 0.5 14t0.5 13q0 20 -13 20q-26 0 -100 -110q-5 -8 -2 -16q44 -125 72 -125q14 0 33 27l19 27q14 0 14 -7q0 -16 -32.5 -55.5t-60.5 -39.5q-10 0 -18 3t-15 11.5t-12 15.5 t-11 22t-9 24t-10 28.5t-10 29.5q-2 1 -2.5 1t-4.5 -4q-2 -3 -36 -46.5t-59 -64t-49 -20.5q-29 0 -29 23z" />
<glyph horiz-adv-x="376" d="M0 -217q0 9 3.5 16t11 11.5t14 7t17.5 5.5t16 5q28 11 44 40q49 90 49 146q0 100 -12.5 182t-44.5 82q-14 0 -29.5 -12.5t-25.5 -25t-12 -12.5q-12 0 -12 8q0 4 14 22.5t40 38.5t51 20t40 -14.5t23 -56.5t10.5 -69t5.5 -100q1 -25 2 -38q2 4 22.5 41t28 52t20.5 44.5 t20 52.5q9 29 15 83q1 15 10 15q10 0 20 -6t10 -16q0 -4 -2 -14q-2 -16 -11.5 -40.5t-22 -51.5t-27 -55l-29.5 -54.5l-26.5 -46.5l-20.5 -35l-9 -15l-23 -43.5l-37 -69l-34 -60.5q-12 -19 -32 -31q-47 -29 -61 -29q-7 0 -11.5 7.5t-4.5 15.5z" />
<glyph horiz-adv-x="353" d="M30 2q0 5 3 11t6.5 9.5t9 9.5t7.5 8l197 220l2 4q-8 -2 -13 -2q-19 0 -63 13.5t-56 13.5q-13 0 -25.5 -10t-20.5 -20t-9 -10q-12 0 -12 7q0 4 11.5 20.5t32.5 34.5t41 18q19 0 70 -18t67 -18q6 0 18 15t23 15q6 0 10 -4.5t4 -10.5q0 -10 -9 -18t-22 -14.5t-17 -10.5 l-183 -202q-4 -4 -4 -6t12 -2q30 -2 96 -7t83 -5q7 0 9.5 3t2.5 11l-1 11v12q0 7 9 7t9 -6q7 -68 7 -71q0 -13 -31 -13h-5q-19 0 -104.5 7t-120.5 7q-3 0 -9.5 -10t-13.5 -10q-11 0 -11 11z" />
<glyph horiz-adv-x="201" d="M30 205q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 -94l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="201" d="M30 455q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 156l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="201" d="M30 55q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 -244l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="201" d="M30 555q0 53 15 103t36 83t43.5 58.5t36.5 37.5t16 12q5 0 9.5 -3t4.5 -7l-7 -7q-6 -6 -16 -17.5t-22 -28t-24 -39.5t-22 -49.5t-16.5 -61.5t-6.5 -72q0 -57 11.5 -109t27.5 -85.5t32 -58t27.5 -38.5t11.5 -16q0 -10 -13 -10q-3 0 -18 15.5t-36.5 45.5t-41.5 66.5t-34 85 t-14 95.5z" />
<glyph horiz-adv-x="201" d="M10 256l6 6q7 7 17 18.5t22 28t24 40t22 50t16.5 61.5t6.5 72q0 57 -11.5 108.5t-28 85t-32.5 58.5t-27.5 38.5t-11.5 15.5q0 11 14 11q3 0 18 -15.5t36.5 -45.5t41.5 -67t34 -85.5t14 -95.5q0 -53 -15 -103t-36.5 -83t-43.5 -58t-36.5 -37t-16.5 -12q-13 0 -13 9z" />
<glyph horiz-adv-x="246" d="M90 -95v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 -86q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="246" d="M90 155v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 164q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="246" d="M90 -245v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 -236q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="246" d="M90 255v583q0 11 11 11h124q7 0 9 -1.5t2 -6.5v-12q0 -8 -2 -9.5t-9 -1.5h-84q-7 0 -8.5 -1.5t-1.5 -7.5v-526q0 -4 0.5 -5.5t2.5 -2.5t7 -1h84q5 0 7 -0.5t3 -2.5t1 -7v-11q0 -6 -2 -7.5t-9 -1.5h-124q-8 0 -9.5 1.5t-1.5 9.5z" />
<glyph horiz-adv-x="246" d="M10 264q0 7 1.5 8.5t8.5 1.5h84q7 0 9 1.5t2 7.5v526q0 6 -2 7.5t-9 1.5h-84q-7 0 -8.5 1.5t-1.5 9.5v11q0 4 0.5 5.5t2.5 2.5t7 1h124q8 0 10 -1.5t2 -9.5v-583q0 -11 -11 -11h-125q-8 0 -9 1t-1 6v13z" />
<glyph horiz-adv-x="186" d="M0 -109q0 1 5 5l15 11.5t18 15.5q41 41 41 69q0 14 -13 30q-5 7 -14 16t-14 14.5t-5 7.5q0 5 17.5 14.5t28.5 9.5t30 -20.5t19 -48.5q0 -24 -28 -59.5t-55 -59t-30 -23.5q-4 0 -9.5 6.5t-5.5 11.5z" />
<glyph horiz-adv-x="152" d="M25 33q0 17 14.5 32t27.5 15q12 0 26 -14.5t14 -27.5q0 -21 -13 -33.5t-23 -12.5q-17 0 -31.5 14.5t-14.5 26.5z" />
<glyph horiz-adv-x="186" d="M0 141q0 1 5 5l15 11.5t18 15.5q41 41 41 69q0 14 -13 30q-5 7 -14 16t-14 14.5t-5 7.5q0 5 17.5 14.5t28.5 9.5t30 -20.5t19 -48.5q0 -24 -28 -59.5t-55 -59t-30 -23.5q-4 0 -9.5 6.5t-5.5 11.5z" />
<glyph horiz-adv-x="152" d="M25 283q0 17 14.5 32t27.5 15q12 0 26 -14.5t14 -27.5q0 -21 -13 -33.5t-23 -12.5q-17 0 -31.5 14.5t-14.5 26.5z" />
<glyph horiz-adv-x="186" d="M0 -259q0 1 5 5l15 11.5t18 15.5q41 41 41 69q0 14 -13 30q-5 7 -14 16t-14 14.5t-5 7.5q0 5 17.5 14.5t28.5 9.5t30 -20.5t19 -48.5q0 -24 -28 -59.5t-55 -59t-30 -23.5q-4 0 -9.5 6.5t-5.5 11.5z" />
<glyph horiz-adv-x="152" d="M25 -117q0 17 14.5 32t27.5 15q12 0 26 -14.5t14 -27.5q0 -21 -13 -33.5t-23 -12.5q-17 0 -31.5 14.5t-14.5 26.5z" />
<glyph horiz-adv-x="186" d="M0 241q0 1 5 5l15 11.5t18 15.5q41 41 41 69q0 14 -13 30q-5 7 -14 16t-14 14.5t-5 7.5q0 5 17.5 14.5t28.5 9.5t30 -20.5t19 -48.5q0 -24 -28 -59.5t-55 -59t-30 -23.5q-4 0 -9.5 6.5t-5.5 11.5z" />
<glyph horiz-adv-x="152" d="M25 383q0 17 14.5 32t27.5 15q12 0 26 -14.5t14 -27.5q0 -21 -13 -33.5t-23 -12.5q-17 0 -31.5 14.5t-14.5 26.5z" />
<glyph horiz-adv-x="223" d="M20 168q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="223" d="M20 418q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="223" d="M20 18q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="223" d="M20 518q0 11 5 23.5t11 13.5q5 1 82 3.5t83 2.5q2 0 2 -8q0 -30 -7 -30q-96 -8 -172 -8q-4 0 -4 3z" />
<glyph horiz-adv-x="350" d="M37 58q0 9 9.5 13.5t17.5 4.5q4 0 7 -2.5t5 -5t5.5 -8.5t5.5 -9q21 -30 55 -32q4 0 4.5 0.5t0.5 4.5l14 152q1 9 -6 12q-22 11 -34.5 18.5t-29 20.5t-24 30t-7.5 38q0 46 35 77.5t82 36.5q4 0 4 4l3 34q1 10 10 10h6q9 0 7 -10l-3 -33q0 -4 2 -4q39 -3 63.5 -24t24.5 -41 q0 -10 -10 -16.5t-17 -6.5q-8 0 -10 9.5t-2.5 21t-12 22.5t-36.5 13q-5 0 -5 -3l-13 -150q-1 -9 2 -10q2 0 3 -1q23 -11 35 -18t29 -20.5t25 -30t8 -37.5q0 -52 -31.5 -84t-84.5 -37q-5 0 -6 -0.5t-1 -4.5l-7 -80q-1 -11 -12 -11t-10 11l7 80q0 4 -0.5 4.5t-5.5 0.5 q-41 3 -71.5 21t-30.5 40zM105 302q0 -24 15 -38t43 -27q2 -1 2.5 -0.5t0.5 4.5l13 144q0 3 -6 2q-16 -3 -27 -11q-41 -23 -41 -74zM170 27q-1 -6 1.5 -7t7.5 1q28 8 46.5 31t18.5 51q0 40 -57 70l-4 -1z" />
<glyph horiz-adv-x="350" d="M37 308q0 9 9.5 13.5t17.5 4.5q4 0 7 -2.5t5 -5t5.5 -8.5t5.5 -9q21 -30 55 -32q4 0 4.5 0.5t0.5 4.5l14 152q1 9 -6 12q-22 11 -34.5 18.5t-29 20.5t-24 30t-7.5 38q0 46 35 77.5t82 36.5q4 0 4 4l3 34q1 10 10 10h6q9 0 7 -10l-3 -33q0 -4 2 -4q39 -3 63.5 -24 t24.5 -41q0 -10 -10 -16.5t-17 -6.5q-8 0 -10 9.5t-2.5 21t-12 22.5t-36.5 13q-5 0 -5 -3l-13 -150q-1 -9 2 -10q2 0 3 -1q23 -11 35 -18t29 -20.5t25 -30t8 -37.5q0 -52 -31.5 -84t-84.5 -37q-5 0 -6 -0.5t-1 -4.5l-7 -80q-1 -11 -12 -11t-10 11l7 80q0 4 -0.5 4.5 t-5.5 0.5q-41 3 -71.5 21t-30.5 40zM105 552q0 -24 15 -38t43 -27q2 -1 2.5 -0.5t0.5 4.5l13 144q0 3 -6 2q-16 -3 -27 -11q-41 -23 -41 -74zM170 277q-1 -6 1.5 -7t7.5 1q28 8 46.5 31t18.5 51q0 40 -57 70l-4 -1z" />
<glyph horiz-adv-x="350" d="M37 -92q0 9 9.5 13.5t17.5 4.5q4 0 7 -2.5t5 -5t5.5 -8.5t5.5 -9q21 -30 55 -32q4 0 4.5 0.5t0.5 4.5l14 152q1 9 -6 12q-22 11 -34.5 18.5t-29 20.5t-24 30t-7.5 38q0 46 35 77.5t82 36.5q4 0 4 4l3 34q1 10 10 10h6q9 0 7 -10l-3 -33q0 -4 2 -4q39 -3 63.5 -24 t24.5 -41q0 -10 -10 -16.5t-17 -6.5q-8 0 -10 9.5t-2.5 21t-12 22.5t-36.5 13q-5 0 -5 -3l-13 -150q-1 -9 2 -10q2 0 3 -1q23 -11 35 -18t29 -20.5t25 -30t8 -37.5q0 -52 -31.5 -84t-84.5 -37q-5 0 -6 -0.5t-1 -4.5l-7 -80q-1 -11 -12 -11t-10 11l7 80q0 4 -0.5 4.5 t-5.5 0.5q-41 3 -71.5 21t-30.5 40zM105 152q0 -24 15 -38t43 -27q2 -1 2.5 -0.5t0.5 4.5l13 144q0 3 -6 2q-16 -3 -27 -11q-41 -23 -41 -74zM170 -123q-1 -6 1.5 -7t7.5 1q28 8 46.5 31t18.5 51q0 40 -57 70l-4 -1z" />
<glyph horiz-adv-x="350" d="M37 408q0 9 9.5 13.5t17.5 4.5q4 0 7 -2.5t5 -5t5.5 -8.5t5.5 -9q21 -30 55 -32q4 0 4.5 0.5t0.5 4.5l14 152q1 9 -6 12q-22 11 -34.5 18.5t-29 20.5t-24 30t-7.5 38q0 46 35 77.5t82 36.5q4 0 4 4l3 34q1 10 10 10h6q9 0 7 -10l-3 -33q0 -4 2 -4q39 -3 63.5 -24 t24.5 -41q0 -10 -10 -16.5t-17 -6.5q-8 0 -10 9.5t-2.5 21t-12 22.5t-36.5 13q-5 0 -5 -3l-13 -150q-1 -9 2 -10q2 0 3 -1q23 -11 35 -18t29 -20.5t25 -30t8 -37.5q0 -52 -31.5 -84t-84.5 -37q-5 0 -6 -0.5t-1 -4.5l-7 -80q-1 -11 -12 -11t-10 11l7 80q0 4 -0.5 4.5 t-5.5 0.5q-41 3 -71.5 21t-30.5 40zM105 652q0 -24 15 -38t43 -27q2 -1 2.5 -0.5t0.5 4.5l13 144q0 3 -6 2q-16 -3 -27 -11q-41 -23 -41 -74zM170 377q-1 -6 1.5 -7t7.5 1q28 8 46.5 31t18.5 51q0 40 -57 70l-4 -1z" />
<glyph d="M60 114q0 74 44.5 121.5t98.5 51.5q5 0 7 10q2 11 4 24t3.5 21t2.5 11q0 2 3 2h7q6 0 6 -2l-11 -56q-2 -10 8 -11q23 -5 39.5 -22.5t16.5 -38.5q0 -13 -8 -18q-14 -10 -22 -10q-7 0 -9 6q0 4 -1 12l-1.5 12t-1.5 11t-2.5 10.5l-3.5 8t-5 7.5t-7 4q-6 2 -8 -6l-38 -224 q0 -8 2 -9q4 -3 23 -3q17 1 33.5 7t25.5 11l9 6q5 0 5 -6q0 -1 -7 -8q-41 -41 -92 -41q-8 0 -9 -8q-13 -69 -16 -79h-14q3 18 14 78q3 11 -6 12q-42 9 -66 40t-24 76zM107 135q0 -72 50 -99q1 -1 4 -1q4 0 4 5l38 219q0 9 -5 9q-38 -3 -64.5 -45t-26.5 -88z" />
<glyph d="M60 364q0 74 44.5 121.5t98.5 51.5q5 0 7 10q2 11 4 24t3.5 21t2.5 11q0 2 3 2h7q6 0 6 -2l-11 -56q-2 -10 8 -11q23 -5 39.5 -22.5t16.5 -38.5q0 -13 -8 -18q-14 -10 -22 -10q-7 0 -9 6q0 4 -1 12l-1.5 12t-1.5 11t-2.5 10.5l-3.5 8t-5 7.5t-7 4q-6 2 -8 -6l-38 -224 q0 -8 2 -9q4 -3 23 -3q17 1 33.5 7t25.5 11l9 6q5 0 5 -6q0 -1 -7 -8q-41 -41 -92 -41q-8 0 -9 -8q-13 -69 -16 -79h-14q3 18 14 78q3 11 -6 12q-42 9 -66 40t-24 76zM107 385q0 -72 50 -99q1 -1 4 -1q4 0 4 5l38 219q0 9 -5 9q-38 -3 -64.5 -45t-26.5 -88z" />
<glyph d="M60 -36q0 74 44.5 121.5t98.5 51.5q5 0 7 10q2 11 4 24t3.5 21t2.5 11q0 2 3 2h7q6 0 6 -2l-11 -56q-2 -10 8 -11q23 -5 39.5 -22.5t16.5 -38.5q0 -13 -8 -18q-14 -10 -22 -10q-7 0 -9 6q0 4 -1 12l-1.5 12t-1.5 11t-2.5 10.5l-3.5 8t-5 7.5t-7 4q-6 2 -8 -6l-38 -224 q0 -8 2 -9q4 -3 23 -3q17 1 33.5 7t25.5 11l9 6q5 0 5 -6q0 -1 -7 -8q-41 -41 -92 -41q-8 0 -9 -8q-13 -69 -16 -79h-14q3 18 14 78q3 11 -6 12q-42 9 -66 40t-24 76zM107 -15q0 -72 50 -99q1 -1 4 -1q4 0 4 5l38 219q0 9 -5 9q-38 -3 -64.5 -45t-26.5 -88z" />
<glyph d="M60 464q0 74 44.5 121.5t98.5 51.5q5 0 7 10q2 11 4 24t3.5 21t2.5 11q0 2 3 2h7q6 0 6 -2l-11 -56q-2 -10 8 -11q23 -5 39.5 -22.5t16.5 -38.5q0 -13 -8 -18q-14 -10 -22 -10q-7 0 -9 6q0 4 -1 12l-1.5 12t-1.5 11t-2.5 10.5l-3.5 8t-5 7.5t-7 4q-6 2 -8 -6l-38 -224 q0 -8 2 -9q4 -3 23 -3q17 1 33.5 7t25.5 11l9 6q5 0 5 -6q0 -1 -7 -8q-41 -41 -92 -41q-8 0 -9 -8q-13 -69 -16 -79h-14q3 18 14 78q3 11 -6 12q-42 9 -66 40t-24 76zM107 485q0 -72 50 -99q1 -1 4 -1q4 0 4 5l38 219q0 9 -5 9q-38 -3 -64.5 -45t-26.5 -88z" />
<glyph horiz-adv-x="379" d="M30 299q0 38 12.5 83.5t35 88.5t60.5 71.5t83 28.5q28 0 45 -25q3 -4 6.5 -10t6 -9.5t3.5 -3.5q2 2 7 17.5t5 18.5q4 10 34 10q14 0 14 -6q0 -3 -33.5 -121.5t-33.5 -139.5q0 -16 11 -16q7 0 29.5 23.5t23.5 23.5q3 0 6.5 -4t3.5 -9q0 -3 -18.5 -22t-45 -38.5 t-42.5 -19.5q-23 0 -23 21q0 26 44 167q-46 -80 -100 -135q-40 -40 -59 -48q-10 -4 -22 -4q-26 0 -39.5 16.5t-13.5 41.5zM85 330q0 -44 23 -44q21 0 68 52t81 107q12 18 12 44q0 21 -23 34t-45 13q-39 0 -77.5 -75t-38.5 -131z" />
<glyph horiz-adv-x="408" d="M45 260q0 4 2 7.5t5 7.5l4 4q2 2 5 16q24 132 48 290t24 180q0 5 -5 5q-2 0 -33 -9t-34 -9q-8 0 -8 22q0 9 4 10q119 31 132 31q11 0 11 -9q0 -5 -14.5 -96.5t-19.5 -116.5q-27 -155 -38 -203q39 67 69 106q31 42 54.5 58.5t61.5 16.5q65 0 65 -54q0 -111 -76.5 -193 t-140.5 -82q-17 0 -32.5 6t-24.5 12t-11 6q-1 0 -3.5 -1t-6 -3t-6.5 -3q-14 -7 -23 -7t-9 8zM115 316q0 -20 14 -34t41 -14q34 0 70.5 42t57.5 92t21 81q0 48 -34 48q-35 0 -69 -48q-101 -139 -101 -167z" />
<glyph horiz-adv-x="357" d="M35 356q0 95 59 156.5t125 61.5q41 0 65 -20t24 -53q0 -18 -10 -29.5t-26 -11.5q-19 0 -19 31q0 3 0.5 10t0.5 10q0 16 -9.5 27.5t-28.5 11.5q-50 0 -87 -55q-38 -56 -38 -126q0 -14 1.5 -23.5t8.5 -26t26.5 -26t49.5 -9.5q32 0 63.5 16t50.5 32t20 16q3 0 7 -4t4 -8 q0 -5 -25 -27t-68 -45t-80 -23q-61 0 -87.5 33.5t-26.5 81.5z" />
<glyph horiz-adv-x="424" d="M35 311q0 28 12 69t33.5 83t57.5 71.5t77 29.5q15 0 28.5 -2.5t20.5 -5.5t15 -7t9 -4q8 -3 9.5 -2t3.5 10q5 25 12 75.5l12.5 89t5.5 39.5q4 12 -2 12q-1 0 -36.5 -8.5t-37.5 -8.5q-6 0 -3 18q1 10 9 13q32 7 63 14.5t46 11.5t16 4q10 0 10 -13q0 -3 -41.5 -239.5 t-41.5 -261.5q0 -11 10 -11q11 0 29 15t32.5 30t15.5 15q9 0 9 -7q0 -5 -18 -27.5t-51 -46.5t-63 -24q-10 0 -17 8.5t-7 22.5q0 28 33 165q-42 -72 -71 -109q-22 -29 -34 -42.5t-34.5 -27.5t-46.5 -14q-8 0 -16 1.5t-20.5 7t-20.5 20t-8 36.5zM92 335q0 -24 8 -35t28 -11 q35 0 115 115q46 69 46 97q0 11 -24 27.5t-50 16.5q-34 0 -64 -40.5t-44.5 -88t-14.5 -81.5z" />
<glyph horiz-adv-x="357" d="M35 337q0 95 61 166t143 71q78 0 78 -55q0 -36 -29.5 -64t-73.5 -45q-55 -20 -117 -20q-5 0 -5 -38q0 -72 78 -72q34 0 67.5 18t52.5 35.5t20 17.5q3 0 7.5 -4.5t4.5 -6.5q0 -4 -23.5 -26t-69 -45.5t-89.5 -23.5q-46 0 -75.5 23t-29.5 69zM104 415q0 -4 7 -4 q62 0 106 29.5t44 79.5q0 15 -11 23.5t-29 8.5q-68 0 -106 -99q-11 -29 -11 -38z" />
<glyph horiz-adv-x="250" d="M-92 51q0 12 14 23.5t27 11.5q10 0 31 -9.5t36 -9.5q8 0 14.5 5t11 15.5l8.5 20.5t7 26l5 26t4 25.5t3 20.5q9 54 19.5 133t17 132.5t6.5 56.5q0 8 -6 8h-59q-7 0 -7 7q0 4 2 10q1 5 7 5h57q4 0 5.5 0.5t3 2.5t1.5 7q9 80 36 130q37 67 84 94q37 22 77 22q21 0 41 -10 t20 -20q0 -12 -16.5 -24t-29.5 -12q-11 0 -31.5 15.5t-35.5 15.5q-61 0 -91 -216q0 -5 6 -5h69q5 0 5 -2q0 -20 -8 -20h-68h-2q-3 0 -4 -3l-0.5 -2t-0.5 -3t-19 -133.5t-29 -188.5q-3 -17 -9 -38t-25 -58t-44 -55q-48 -35 -76 -35q-20 0 -38.5 10.5t-18.5 20.5z" />
<glyph horiz-adv-x="377" d="M4 120q0 33 25 56.5t52 35.5q9 4 9 5t-2 2t-6 2.5t-7 3.5q-21 14 -21 28q0 6 14.5 29.5t22.5 26.5l51 18l4 2q0 1 -5 2q-82 27 -82 109q0 59 43 100t105 41q12 0 24 -2.5t20 -6.5t15.5 -8.5t11.5 -8.5t8 -7l4 -4q2 2 11.5 22.5t11.5 23.5q5 9 18 9q23 0 23 -10 t-9.5 -27.5t-19.5 -31.5t-10 -15q0 -2 1 -5q2 -4 2 -6q6 -22 6 -33q0 -60 -44 -101q-22 -20 -42.5 -28.5t-62.5 -20.5q-77 -21 -77 -38q0 -4 2.5 -7t8 -6t11 -5t15 -4.5t18 -4l20.5 -3.5l21 -3.5t22.5 -4t22.5 -3.5q53 -8 81 -25t28 -55q0 -63 -56 -92t-145 -29 q-143 0 -143 79zM41 125q0 -32 44 -44.5t95 -12.5q52 0 84 18t32 54q0 25 -22 37t-64 19q-84 15 -90 15q-4 0 -26 -10q-53 -27 -53 -76zM112 439q0 -49 20.5 -70.5t41.5 -21.5q33 0 65 39t32 94q0 30 -19 55t-46 25q-41 0 -67.5 -40t-26.5 -81z" />
<glyph horiz-adv-x="431" d="M40 255q0 2 5.5 27.5t14.5 72.5l19.5 105.5t22 139.5t19.5 162q2 15 -3 15q-8 0 -39.5 -11.5t-32.5 -11.5q-3 0 -3 13q0 10 6 14q24 9 69 18.5t61 9.5q6 0 6 -13q-4 -75 -76 -436q39 89 92 152q46 56 105 56q50 0 50 -41q0 -31 -27.5 -122.5t-27.5 -99.5q0 -17 15 -17 q9 0 28 18t34.5 36t16.5 18q3 0 7 -4t4 -6q0 -4 -18 -28t-50 -48.5t-61 -24.5q-14 0 -24.5 9.5t-10.5 23.5q0 12 30.5 105.5t30.5 116.5q0 13 -8 22.5t-20 9.5q-27 0 -55 -33.5t-62 -88.5q-4 -7 -13.5 -22.5l-14.5 -24t-10.5 -20.5t-7.5 -22l-15 -67q-2 -11 -50 -11 q-7 0 -7 8z" />
<glyph horiz-adv-x="235" d="M30 483q0 7 53 46t73 39q7 0 12.5 -5t5.5 -15q0 -22 -27.5 -124t-27.5 -112q0 -16 10 -16q9 0 36.5 26.5t28.5 26.5q3 0 7 -3.5t4 -6.5q0 -11 -53.5 -53t-71.5 -42q-22 0 -22 16q0 21 30 120.5t30 125.5q0 15 -9 15q-13 0 -40 -24.5t-28 -24.5q-4 0 -7.5 4t-3.5 7z M116 703q0 17 9 28t25 11q17 0 27 -13t10 -28q0 -17 -9.5 -27.5t-24.5 -10.5q-17 0 -27 12.5t-10 27.5z" />
<glyph horiz-adv-x="239" d="M-61 67q0 13 8.5 22t21.5 9q15 0 31.5 -10t30.5 -10q15 0 22.5 20.5t17.5 66.5q16 75 35.5 199t19.5 142q0 15 -9 15q-13 0 -47 -37l-34 -37q-3 0 -7 3t-4 7t25 30.5t59.5 53.5t55.5 27q7 0 12.5 -5.5t5.5 -15.5q0 -19 -45 -300q-19 -130 -80 -177q-44 -32 -73 -32 q-21 0 -33.5 9t-12.5 20zM125 728q0 17 10 28t26 11q17 0 26.5 -12.5t9.5 -27.5q0 -17 -9.5 -28.5t-24.5 -11.5q-17 0 -27.5 13t-10.5 28z" />
<glyph horiz-adv-x="421" d="M35 246q0 3 17.5 85t40 208.5t32.5 225.5q0 7 -5 7q-14 0 -62 -16q-8 -2 -8 7q0 16 7 18q34 8 64.5 16.5l44 12t16.5 3.5q13 0 13 -10q0 -7 -16.5 -88l-37.5 -183t-26 -128q36 64 57 92q28 36 56 53t70 17q50 0 50 -31q0 -35 -27.5 -65t-56.5 -44t-55 -20q-2 0 -8 -1 t-8 -2q14 -7 22 -14q43 -43 61 -64q14 -17 20.5 -24t18 -13t25.5 -6q27 0 27 21q0 3 -0.5 9t-0.5 8q0 11 6 11q19 0 19 -37q0 -19 -32 -33t-60 -14q-19 0 -37 17q-9 9 -19 20.5t-25 31.5t-21 27l-19.5 23.5l-17 20t-5.5 8.5q0 4 14 18q2 2 10 2q11 0 22 4q31 14 59.5 45 t28.5 58q0 15 -25 15q-23 0 -52 -27q-20 -17 -84 -113q-14 -23 -20 -48q-10 -44 -16 -81q-2 -12 -4 -15.5t-6 -3.5l-18 -3q-19 -2 -24 -2t-5 2z" />
<glyph horiz-adv-x="252" d="M55 274q0 5 15 88t34.5 201t28.5 193q2 8 0.5 11t-9.5 1q-54 -15 -62 -15q-6 0 -4 17q1 9 9 12q32 7 62 15t43.5 12t15.5 4q9 0 9 -8q0 -10 -41.5 -253t-41.5 -246q0 -17 11 -17q10 0 30 17.5t36 35t17 17.5q3 0 8.5 -4.5t5.5 -6.5q0 -4 -23 -29.5t-58 -51.5t-61 -26 q-25 0 -25 33z" />
<glyph horiz-adv-x="650" d="M30 461q0 10 57 54t84 44q17 0 17 -16q0 -17 -3 -41.5t-6.5 -44t-10 -53t-9.5 -50.5q93 210 185 210q14 0 22 -11.5t8 -27.5q0 -66 -44 -198q69 129 111 179q51 58 94 58t43 -28q0 -24 -30 -118t-30 -108q0 -19 14 -19q10 0 43 34t34 34q3 0 7 -4t4 -7q0 -4 -24 -28.5 t-57.5 -49t-54.5 -24.5q-13 0 -21.5 7.5t-8.5 17.5q0 15 32 113.5t32 125.5q0 17 -15 17q-32 0 -104 -109q-55 -83 -75 -155q-3 -9 -12 -11q-20 -3 -35 -3q-8 0 -8 7l24 91q24 91 24 148q0 30 -16 30q-19 0 -54.5 -51t-64.5 -108q-17 -32 -35 -98q-5 -14 -9 -16 q-30 -12 -41 -12q-7 0 -5 9q10 39 23 123.5t13 122.5q0 13 -10 13q-12 0 -44 -31t-33 -31q-11 0 -11 15z" />
<glyph horiz-adv-x="465" d="M30 487q0 2 24.5 22t60.5 40.5t58 20.5q19 0 19 -18q0 -17 -5 -44t-9.5 -46t-15.5 -57.5t-14 -50.5q60 105 110.5 160.5t96.5 55.5q43 0 43 -37q0 -25 -32 -120.5t-32 -104.5q0 -16 15 -16q11 0 28.5 15t31.5 30.5t15 15.5q3 0 7 -3t4 -6q0 -4 -20 -26.5t-53.5 -45 t-60.5 -22.5t-27 34q0 24 33 113t33 114q0 23 -18 23q-21 0 -64.5 -54.5t-83.5 -117.5q-20 -31 -37 -93q0 -1 -1.5 -5.5l-2.5 -7.5t-3.5 -6t-5.5 -3q-26 -3 -40 -3q-7 0 -5 9q49 196 49 258q0 15 -10 15q-11 0 -43 -26.5t-33 -26.5q-4 0 -8 4.5t-4 9.5z" />
<glyph horiz-adv-x="377" d="M30 364q0 92 54.5 153.5t137.5 61.5q59 0 87 -42t28 -90q0 -78 -56.5 -141.5t-133.5 -63.5q-56 0 -86.5 35.5t-30.5 86.5zM83 371q0 -107 65 -107q37 0 69.5 39t49 88t16.5 89q0 29 -15.5 53.5t-54.5 24.5q-47 0 -88.5 -64.5t-41.5 -122.5z" />
<glyph horiz-adv-x="432" d="M20 436v1q3 6 9 15.5t24.5 33.5t37 43t43 34t46.5 15q15 0 15 -27q0 -45 -26 -184q32 77 81 152q31 48 83 48q37 0 50.5 -20.5t13.5 -56.5q0 -91 -61.5 -169t-126.5 -78q-9 0 -26.5 3t-20.5 3q-9 0 -10 -6l-27 -172q-2 -18 7 -19l16 -2t13.5 -1t11 -1t9 -1t6.5 -1t5 -2 t3.5 -2t2 -3t0.5 -4q0 -12 -4 -14.5t-14 -2.5q-1 0 -23 3t-56.5 5.5t-65.5 2.5q-14 0 -14 9q0 11 3 15t13 4h13q9 0 12.5 3t5.5 14q64 368 64 427q0 14 -9 14q-17 0 -54 -47l-36 -46q-4 0 -9 5t-5 9zM164 292q0 -25 53 -25q42 0 84.5 73t42.5 140q0 52 -36 52 q-12 0 -24.5 -8t-24 -24.5t-18.5 -28t-17.5 -33.5t-13.5 -27q-46 -85 -46 -119z" />
<glyph horiz-adv-x="397" d="M30 311q0 30 14.5 72t39.5 83.5t66 70.5t88 29q36 0 72 -17l11 -4q7 0 18.5 7t17.5 9q4 1 7 -1.5t3 -7.5t-22 -51q-4 -8 -6 -21l-31.5 -175.5l-32 -180.5t-11.5 -69q0 -8 11 -8h21q13 0 21 -1q12 -1 12 -15v-3v-6t-1.5 -4t-4 -2.5t-7.5 -0.5q-1 0 -11 0.5t-26.5 1 t-32.5 0.5q-11 0 -28.5 -1.5t-30.5 -3t-14 -1.5q-4 0 -6 0.5t-4 3t-2 7.5q1 11 4 13.5t14 4.5q20 4 22 8q2 3 4 13q46 203 77 378q-26 -54 -66 -109q-63 -87 -115 -87q-8 0 -17.5 2t-22.5 8.5t-22 21t-9 36.5zM85 332q0 -22 11 -35t26 -13q35 0 119 120q53 80 53 109 q0 9 -15.5 21.5t-40.5 12.5q-51 0 -102 -81t-51 -134z" />
<glyph horiz-adv-x="295" d="M25 490q0 10 42 45t66 35q16 0 16 -18q0 -23 -22 -144h2q2 6 12.5 34.5t19.5 49.5t19 38q25 46 61 46q15 0 27 -8t12 -22q0 -32 -19 -32q-9 0 -23.5 7.5t-22.5 7.5q-11 0 -20 -14q-14 -21 -46 -103q-3 -8 -6 -19t-4 -12q-7 -29 -14.5 -68.5t-11.5 -56.5q-1 -4 -18.5 -7 t-26.5 -3q-10 0 -10 4q0 2 10 53l20.5 109.5t10.5 79.5q0 31 -10 31q-13 0 -34 -21l-21 -22q-9 0 -9 10z" />
<glyph horiz-adv-x="289" d="M20 300q0 9 7 15.5t13 6.5q17 0 37 -20l10 -10.5t10 -10l8 -6.5t9.5 -5t10.5 -1q25 0 41 16t16 43q0 16 -18.5 35.5t-41 35t-41 38.5t-18.5 47q0 40 32.5 68.5t77.5 28.5q33 0 53 -12.5t24 -23t4 -18.5q0 -15 -16 -15q-24 0 -40 30q-12 21 -26 21q-22 0 -39 -12t-17 -39 q0 -26 19 -47t41 -34t41 -37t19 -55q0 -38 -32.5 -66t-77.5 -28q-38 0 -72 17.5t-34 37.5z" />
<glyph horiz-adv-x="256" d="M35 537q0 1 0.5 7t0.5 8q0 6 8 6h50q7 0 8 6q2 10 6.5 44.5t5.5 38.5q1 5 2.5 8t4.5 4.5t10 2.5q4 1 17 1q25 0 25 -5q0 -1 -4.5 -20.5l-9.5 -42.5t-6 -29t0 -7t7 -1h60q9 0 9 -7q0 -19 -12 -19h-60h-3q-5 0 -6 -4q-1 -2 -1 -3q-35 -191 -35 -205q0 -16 15 -16 q11 0 51 37l40 37q2 0 7.5 -4t5.5 -6q0 -4 -26.5 -33t-64.5 -58.5t-60 -29.5q-30 0 -30 30q0 8 22 126.5t22 120.5q-5 8 -6 8h-40q-13 0 -13 5z" />
<glyph horiz-adv-x="445" d="M25 462q0 2 10 16t26.5 34t31.5 36q26 26 59 26q47 0 47 -30q0 -11 -26.5 -110t-26.5 -120q0 -19 22 -19q27 0 73 65q59 82 84 164q1 3 10 45q1 5 45 10q8 0 8 -9q0 -4 -22.5 -120.5t-22.5 -125.5q0 -20 15 -20q12 0 40 37l29 37q8 0 8 -7q0 -5 -18.5 -34t-48 -58.5 t-51.5 -29.5q-12 0 -20.5 7t-8.5 17q0 18 18.5 99.5t21.5 102.5q-23 -48 -55 -98q-88 -132 -145 -132q-46 0 -46 36q0 9 25 104t25 126q0 23 -16 23q-12 0 -45 -40l-33 -41q-4 0 -8.5 3t-4.5 6z" />
<glyph horiz-adv-x="396" d="M30 497q0 10 37.5 44t57.5 34q23 0 36 -8q20 -11 26.5 -18t6.5 -20q0 -32 -11 -108t-11 -88q0 -9 12 -19t16 -10q12 0 20 9q6 7 26 33q83 111 83 178q0 32 -19 32q-9 0 -20.5 -2t-19.5 -4t-9 -2q-6 0 -6 15q0 5 32 12.5t50 7.5q34 0 34 -35q0 -14 -2.5 -28t-8.5 -29.5 l-11 -27.5t-16.5 -30.5l-17 -28t-21 -30.5l-21 -28l-23 -29.5l-21.5 -27.5q-9 -12 -19 -28t-21 -16q-17 0 -36 17q-19 14 -26 27t-7 41q0 15 8.5 85.5t8.5 98.5q0 14 -7 18q-10 7 -19 7q-12 0 -27.5 -13.5t-26.5 -27t-12 -13.5q-4 0 -9.5 4.5t-5.5 7.5z" />
<glyph horiz-adv-x="589" d="M25 500q0 9 41.5 39.5t61.5 30.5q14 0 38 -15q27 -18 27 -39q0 -25 -5.5 -70t-10.5 -80.5t-5 -36.5q0 -10 10 -22t16 -12q8 0 19 15q8 11 39.5 57.5t40.5 57.5q10 12 19 38.5t9 37.5q0 9 -16 25q-5 5 -11.5 10l-9 7t-2.5 4q0 8 11.5 19.5t20.5 11.5q14 0 37.5 -19.5 t23.5 -31.5q0 -13 -12.5 -97.5t-12.5 -100.5q0 -13 11 -24t20 -11q7 0 24 21q49 56 73 91q36 52 37 116q0 26 -17 26q-9 0 -24.5 -2t-27.5 -4.5t-13 -2.5q-6 0 -6 14q0 5 45 14.5t53 9.5q35 0 35 -33q0 -58 -57 -143q-10 -15 -21 -29t-26 -31.5t-22 -25l-27 -29t-24 -25.5 q-9 -9 -15 -9q-29 0 -49 19.5t-20 45.5q0 19 23 122q-70 -108 -101 -147q-3 -4 -11 -15.5t-11 -15.5q-10 -13 -18 -13q-13 0 -35 19q-19 14 -24.5 23.5t-5.5 30.5q0 11 9.5 70t9.5 105q0 10 -12.5 24t-22.5 14q-12 0 -27.5 -12t-26.5 -24t-12 -12q-5 0 -9 5.5t-4 8.5z" />
<glyph horiz-adv-x="413" d="M25 269q0 28 22 76q3 4 7 4q13 0 13 -7l-5 -14q-4 -13 -4 -24q0 -18 17 -18q18 0 54 39t61 73q4 7 1 17q-44 122 -82 122q-15 0 -37.5 -24t-24.5 -24q-3 0 -6.5 4.5t-3.5 7.5q0 4 12.5 20.5t37 33.5t49.5 17q19 0 31.5 -5t23.5 -22t16.5 -28.5t17.5 -43.5q5 -12 7 -18 l4 -6l5 8q3 4 18 28.5t23 35t22 27t28 24t28 7.5q21 0 21 -34q0 -17 -5 -47q-1 -4 -9 -4t-8 4q0 5 0.5 14t0.5 13q0 20 -13 20q-26 0 -100 -110q-5 -8 -2 -16q44 -125 72 -125q14 0 33 27l19 27q14 0 14 -7q0 -16 -32.5 -55.5t-60.5 -39.5q-10 0 -18 3t-15 11.5t-12 15.5 t-11 22t-9 24t-10 28.5t-10 29.5q-2 1 -2.5 1t-4.5 -4q-2 -3 -36 -46.5t-59 -64t-49 -20.5q-29 0 -29 23z" />
<glyph horiz-adv-x="376" d="M0 33q0 9 3.5 16t11 11.5t14 7t17.5 5.5t16 5q28 11 44 40q49 90 49 146q0 100 -12.5 182t-44.5 82q-15 0 -30 -12.5t-25 -25t-12 -12.5q-12 0 -12 8q0 4 14 22.5t40 38.5t51 20t40 -14.5t23 -56.5t10.5 -69t5.5 -100q1 -25 2 -38q2 4 22.5 41t28 52t20.5 44.5t20 52.5 q9 29 15 83q1 15 10 15q10 0 20 -6t10 -16q0 -4 -2 -14q-2 -16 -11.5 -40.5t-22 -51.5t-27 -55l-29.5 -54.5l-26.5 -46.5l-20.5 -35l-9 -15l-23 -43.5l-37 -69l-34 -60.5q-12 -19 -32 -31q-47 -29 -61 -29q-7 0 -11.5 7.5t-4.5 15.5z" />
<glyph horiz-adv-x="353" d="M30 252q0 5 3 11t6.5 9.5t9 9.5t7.5 8l197 220l2 4q-8 -2 -13 -2q-19 0 -63 13.5t-56 13.5q-13 0 -25.5 -10t-20.5 -20t-9 -10q-12 0 -12 7q0 4 11.5 20.5t32.5 34.5t41 18q19 0 70 -18t67 -18q6 0 18 15t23 15q6 0 10 -4.5t4 -10.5q0 -10 -9 -18t-22 -14.5t-17 -10.5 l-183 -202q-4 -4 -4 -6t12 -2q30 -2 96 -7t83 -5q7 0 9.5 3t2.5 11l-1 11v12q0 7 9 7t9 -6q7 -68 7 -71q0 -13 -31 -13h-5q-19 0 -104.5 7t-120.5 7q-3 0 -9.5 -10t-13.5 -10q-11 0 -11 11z" />
<glyph horiz-adv-x="379" d="M30 -101q0 38 12.5 83.5t35 88.5t60.5 71.5t83 28.5q28 0 45 -25q3 -4 6.5 -10t6 -9.5t3.5 -3.5q2 2 7 17.5t5 18.5q4 10 34 10q14 0 14 -6q0 -3 -33.5 -121.5t-33.5 -139.5q0 -16 11 -16q7 0 29.5 23.5t23.5 23.5q3 0 6.5 -4t3.5 -9q0 -3 -18.5 -22t-45 -38.5 t-42.5 -19.5q-23 0 -23 21q0 26 44 167q-46 -80 -100 -135q-40 -40 -59 -48q-10 -4 -22 -4q-26 0 -39.5 16.5t-13.5 41.5zM85 -70q0 -44 23 -44q21 0 68 52t81 107q12 18 12 44q0 21 -23 34t-45 13q-39 0 -77.5 -75t-38.5 -131z" />
<glyph horiz-adv-x="408" d="M45 -140q0 4 2 7.5t5 7.5l4 4q2 2 5 16q24 132 48 290t24 180q0 5 -5 5q-2 0 -33 -9t-34 -9q-8 0 -8 22q0 9 4 10q119 31 132 31q11 0 11 -9q0 -5 -14.5 -96.5t-19.5 -116.5q-27 -155 -38 -203q39 67 69 106q31 42 54.5 58.5t61.5 16.5q65 0 65 -54q0 -111 -76.5 -193 t-140.5 -82q-17 0 -32.5 6t-24.5 12t-11 6q-1 0 -3.5 -1t-6 -3t-6.5 -3q-14 -7 -23 -7t-9 8zM115 -84q0 -20 14 -34t41 -14q34 0 70.5 42t57.5 92t21 81q0 48 -34 48q-35 0 -69 -48q-101 -139 -101 -167z" />
<glyph horiz-adv-x="357" d="M35 -44q0 95 59 156.5t125 61.5q41 0 65 -20t24 -53q0 -18 -10 -29.5t-26 -11.5q-19 0 -19 31q0 3 0.5 10t0.5 10q0 16 -9.5 27.5t-28.5 11.5q-50 0 -87 -55q-38 -56 -38 -126q0 -14 1.5 -23.5t8.5 -26t26.5 -26t49.5 -9.5q32 0 63.5 16t50.5 32t20 16q3 0 7 -4t4 -8 q0 -5 -25 -27t-68 -45t-80 -23q-61 0 -87.5 33.5t-26.5 81.5z" />
<glyph horiz-adv-x="424" d="M35 -89q0 28 12 69t33.5 83t57.5 71.5t77 29.5q15 0 28.5 -2.5t20.5 -5.5t15 -7t9 -4q8 -3 9.5 -2t3.5 10q5 25 12 75.5l12.5 89t5.5 39.5q4 12 -2 12q-1 0 -36.5 -8.5t-37.5 -8.5q-6 0 -3 18q1 10 9 13q32 7 63 14.5t46 11.5t16 4q10 0 10 -13q0 -3 -41.5 -239.5 t-41.5 -261.5q0 -11 10 -11q11 0 29 15t32.5 30t15.5 15q9 0 9 -7q0 -5 -18 -27.5t-51 -46.5t-63 -24q-10 0 -17 8.5t-7 22.5q0 28 33 165q-42 -72 -71 -109q-22 -29 -34 -42.5t-34.5 -27.5t-46.5 -14q-8 0 -16 1.5t-20.5 7t-20.5 20t-8 36.5zM92 -65q0 -24 8 -35t28 -11 q35 0 115 115q46 69 46 97q0 11 -24 27.5t-50 16.5q-34 0 -64 -40.5t-44.5 -88t-14.5 -81.5z" />
<glyph horiz-adv-x="357" d="M35 -63q0 95 61 166t143 71q78 0 78 -55q0 -36 -29.5 -64t-73.5 -45q-55 -20 -117 -20q-5 0 -5 -38q0 -72 78 -72q34 0 67.5 18t52.5 35.5t20 17.5q3 0 7.5 -4.5t4.5 -6.5q0 -4 -23.5 -26t-69 -45.5t-89.5 -23.5q-46 0 -75.5 23t-29.5 69zM104 15q0 -4 7 -4 q62 0 106 29.5t44 79.5q0 15 -11 23.5t-29 8.5q-68 0 -106 -99q-11 -29 -11 -38z" />
<glyph horiz-adv-x="250" d="M-92 -349q0 12 14 23.5t27 11.5q10 0 31 -9.5t36 -9.5q8 0 14.5 5t11 15.5l8.5 20.5t7 26l5 26t4 25.5t3 20.5q9 54 19.5 133t17 132.5t6.5 56.5q0 8 -6 8h-59q-7 0 -7 7q0 4 2 10q1 5 7 5h57q4 0 5.5 0.5t3 2.5t1.5 7q9 80 36 130q37 67 84 94q37 22 77 22q21 0 41 -10 t20 -20q0 -12 -16.5 -24t-29.5 -12q-11 0 -31.5 15.5t-35.5 15.5q-61 0 -91 -216q0 -5 6 -5h69q5 0 5 -2q0 -20 -8 -20h-68h-2q-3 0 -4 -3l-0.5 -2t-0.5 -3t-19 -133.5t-29 -188.5q-3 -17 -9 -38t-25 -58t-44 -55q-48 -35 -76 -35q-20 0 -38.5 10.5t-18.5 20.5z" />
<glyph horiz-adv-x="377" d="M4 -280q0 33 25 56.5t52 35.5q9 4 9 5t-2 2t-6 2.5t-7 3.5q-21 14 -21 28q0 6 14.5 29.5t22.5 26.5l51 18l4 2q0 1 -5 2q-82 27 -82 109q0 59 43 100t105 41q12 0 24 -2.5t20 -6.5t15.5 -8.5t11.5 -8.5t8 -7l4 -4q2 2 11.5 22.5t11.5 23.5q5 9 18 9q23 0 23 -10 t-9.5 -27.5t-19.5 -31.5t-10 -15q0 -2 1 -5q2 -4 2 -6q6 -22 6 -33q0 -60 -44 -101q-22 -20 -42.5 -28.5t-62.5 -20.5q-77 -21 -77 -38q0 -4 2.5 -7t8 -6t11 -5t15 -4.5t18 -4l20.5 -3.5l21 -3.5t22.5 -4t22.5 -3.5q53 -8 81 -25t28 -55q0 -63 -56 -92t-145 -29 q-143 0 -143 79zM41 -275q0 -32 44 -44.5t95 -12.5q52 0 84 18t32 54q0 25 -22 37t-64 19q-84 15 -90 15q-4 0 -26 -10q-53 -27 -53 -76zM112 39q0 -49 20.5 -70.5t41.5 -21.5q33 0 65 39t32 94q0 30 -19 55t-46 25q-41 0 -67.5 -40t-26.5 -81z" />
<glyph horiz-adv-x="431" d="M40 -145q0 2 5.5 27.5t14.5 72.5l19.5 105.5t22 139.5t19.5 162q2 15 -3 15q-8 0 -39.5 -11.5t-32.5 -11.5q-3 0 -3 13q0 10 6 14q24 9 69 18.5t61 9.5q6 0 6 -13q-4 -75 -76 -436q39 89 92 152q46 56 105 56q50 0 50 -41q0 -31 -27.5 -122.5t-27.5 -99.5q0 -17 15 -17 q9 0 28 18t34.5 36t16.5 18q3 0 7 -4t4 -6q0 -4 -18 -28t-50 -48.5t-61 -24.5q-14 0 -24.5 9.5t-10.5 23.5q0 12 30.5 105.5t30.5 116.5q0 13 -8 22.5t-20 9.5q-27 0 -55 -33.5t-62 -88.5q-4 -7 -13.5 -22.5l-14.5 -24t-10.5 -20.5t-7.5 -22l-15 -67q-2 -11 -50 -11 q-7 0 -7 8z" />
<glyph horiz-adv-x="235" d="M30 83q0 7 53 46t73 39q7 0 12.5 -5t5.5 -15q0 -22 -27.5 -124t-27.5 -112q0 -16 10 -16q9 0 36.5 26.5t28.5 26.5q3 0 7 -3.5t4 -6.5q0 -11 -53.5 -53t-71.5 -42q-22 0 -22 16q0 21 30 120.5t30 125.5q0 15 -9 15q-13 0 -40 -24.5t-28 -24.5q-4 0 -7.5 4t-3.5 7z M116 303q0 17 9 28t25 11q17 0 27 -13t10 -28q0 -17 -9.5 -27.5t-24.5 -10.5q-17 0 -27 12.5t-10 27.5z" />
<glyph horiz-adv-x="239" d="M-61 -333q0 13 8.5 22t21.5 9q15 0 31.5 -10t30.5 -10q15 0 22.5 20.5t17.5 66.5q16 75 35.5 199t19.5 142q0 15 -9 15q-13 0 -47 -37l-34 -37q-3 0 -7 3t-4 7t25 30.5t59.5 53.5t55.5 27q7 0 12.5 -5.5t5.5 -15.5q0 -19 -45 -300q-19 -130 -80 -177q-44 -32 -73 -32 q-21 0 -33.5 9t-12.5 20zM125 328q0 17 10 28t26 11q17 0 26.5 -12.5t9.5 -27.5q0 -17 -9.5 -28.5t-24.5 -11.5q-17 0 -27.5 13t-10.5 28z" />
<glyph horiz-adv-x="421" d="M35 -154q0 3 17.5 85t40 208.5t32.5 225.5q0 7 -5 7q-14 0 -62 -16q-8 -2 -8 7q0 16 7 18q34 8 64.5 16.5l44 12t16.5 3.5q13 0 13 -10q0 -7 -16.5 -88l-37.5 -183t-26 -128q36 64 57 92q28 36 56 53t70 17q50 0 50 -31q0 -35 -27.5 -65t-56.5 -44t-55 -20q-2 0 -8 -1 t-8 -2q14 -7 22 -14q43 -43 61 -64q14 -17 20.5 -24t18 -13t25.5 -6q27 0 27 21q0 3 -0.5 9t-0.5 8q0 11 6 11q19 0 19 -37q0 -19 -32 -33t-60 -14q-19 0 -37 17q-9 9 -19 20.5t-25 31.5t-21 27l-19.5 23.5l-17 20t-5.5 8.5q0 4 14 18q2 2 10 2q11 0 22 4q31 14 59.5 45 t28.5 58q0 15 -25 15q-23 0 -52 -27q-20 -17 -84 -113q-14 -23 -20 -48q-10 -44 -16 -81q-2 -12 -4 -15.5t-6 -3.5l-18 -3q-19 -2 -24 -2t-5 2z" />
<glyph horiz-adv-x="252" d="M55 -126q0 5 15 88t34.5 201t28.5 193q2 8 0.5 11t-9.5 1q-54 -15 -62 -15q-6 0 -4 17q1 9 9 12q32 7 62 15t43.5 12t15.5 4q9 0 9 -8q0 -10 -41.5 -253t-41.5 -246q0 -17 11 -17q10 0 30 17.5t36 35t17 17.5q3 0 8.5 -4.5t5.5 -6.5q0 -4 -23 -29.5t-58 -51.5t-61 -26 q-25 0 -25 33z" />
<glyph horiz-adv-x="650" d="M30 61q0 10 57 54t84 44q17 0 17 -16q0 -17 -3 -41.5t-6.5 -44t-10 -53t-9.5 -50.5q93 210 185 210q14 0 22 -11.5t8 -27.5q0 -66 -44 -198q69 129 111 179q51 58 94 58t43 -28q0 -24 -30 -118t-30 -108q0 -19 14 -19q10 0 43 34t34 34q3 0 7 -4t4 -7q0 -4 -24 -28.5 t-57.5 -49t-54.5 -24.5q-13 0 -21.5 7.5t-8.5 17.5q0 15 32 113.5t32 125.5q0 17 -15 17q-32 0 -104 -109q-55 -83 -75 -155q-3 -9 -12 -11q-20 -3 -35 -3q-8 0 -8 7l24 91q24 91 24 148q0 30 -16 30q-19 0 -54.5 -51t-64.5 -108q-17 -32 -35 -98q-5 -14 -9 -16 q-30 -12 -41 -12q-7 0 -5 9q10 39 23 123.5t13 122.5q0 13 -10 13q-12 0 -44 -31t-33 -31q-11 0 -11 15z" />
<glyph horiz-adv-x="465" d="M30 87q0 2 24.5 22t60.5 40.5t58 20.5q19 0 19 -18q0 -17 -5 -44t-9.5 -46t-15.5 -57.5t-14 -50.5q60 105 110.5 160.5t96.5 55.5q43 0 43 -37q0 -25 -32 -120.5t-32 -104.5q0 -16 15 -16q11 0 28.5 15t31.5 30.5t15 15.5q3 0 7 -3t4 -6q0 -4 -20 -26.5t-53.5 -45 t-60.5 -22.5t-27 34q0 24 33 113t33 114q0 23 -18 23q-21 0 -64.5 -54.5t-83.5 -117.5q-20 -31 -37 -93q0 -1 -1.5 -5.5l-2.5 -7.5t-3.5 -6t-5.5 -3q-26 -3 -40 -3q-7 0 -5 9q49 196 49 258q0 15 -10 15q-11 0 -43 -26.5t-33 -26.5q-4 0 -8 4.5t-4 9.5z" />
<glyph horiz-adv-x="377" d="M30 -36q0 92 54.5 153.5t137.5 61.5q59 0 87 -42t28 -90q0 -78 -56.5 -141.5t-133.5 -63.5q-56 0 -86.5 35.5t-30.5 86.5zM83 -29q0 -107 65 -107q37 0 69.5 39t49 88t16.5 89q0 29 -15.5 53.5t-54.5 24.5q-47 0 -88.5 -64.5t-41.5 -122.5z" />
<glyph horiz-adv-x="432" d="M20 36v1q3 6 9 15.5t24.5 33.5t37 43t43 34t46.5 15q15 0 15 -27q0 -45 -26 -184q32 77 81 152q31 48 83 48q37 0 50.5 -20.5t13.5 -56.5q0 -91 -61.5 -169t-126.5 -78q-9 0 -26.5 3t-20.5 3q-9 0 -10 -6l-27 -172q-2 -18 7 -19l16 -2t13.5 -1t11 -1t9 -1t6.5 -1t5 -2 t3.5 -2t2 -3t0.5 -4q0 -12 -4 -14.5t-14 -2.5q-1 0 -23 3t-56.5 5.5t-65.5 2.5q-14 0 -14 9q0 11 3 15t13 4h13q9 0 12.5 3t5.5 14q64 368 64 427q0 14 -9 14q-17 0 -54 -47l-36 -46q-4 0 -9 5t-5 9zM164 -108q0 -25 53 -25q42 0 84.5 73t42.5 140q0 52 -36 52 q-12 0 -24.5 -8t-24 -24.5t-18.5 -28t-17.5 -33.5t-13.5 -27q-46 -85 -46 -119z" />
<glyph horiz-adv-x="397" d="M30 -89q0 30 14.5 72t39.5 83.5t66 70.5t88 29q36 0 72 -17l11 -4q7 0 18.5 7t17.5 9q4 1 7 -1.5t3 -7.5t-22 -51q-4 -8 -6 -21l-31.5 -175.5l-32 -180.5t-11.5 -69q0 -8 11 -8h21q13 0 21 -1q12 -1 12 -15v-3v-6t-1.5 -4t-4 -2.5t-7.5 -0.5q-1 0 -11 0.5t-26.5 1 t-32.5 0.5q-11 0 -28.5 -1.5t-30.5 -3t-14 -1.5q-4 0 -6 0.5t-4 3t-2 7.5q1 11 4 13.5t14 4.5q20 4 22 8q2 3 4 13q46 203 77 378q-26 -54 -66 -109q-63 -87 -115 -87q-8 0 -17.5 2t-22.5 8.5t-22 21t-9 36.5zM85 -68q0 -22 11 -35t26 -13q35 0 119 120q53 80 53 109 q0 9 -15.5 21.5t-40.5 12.5q-51 0 -102 -81t-51 -134z" />
<glyph horiz-adv-x="295" d="M25 90q0 10 42 45t66 35q16 0 16 -18q0 -23 -22 -144h2q2 6 12.5 34.5t19.5 49.5t19 38q25 46 61 46q15 0 27 -8t12 -22q0 -32 -19 -32q-9 0 -23.5 7.5t-22.5 7.5q-11 0 -20 -14q-14 -21 -46 -103q-3 -8 -6 -19t-4 -12q-7 -29 -14.5 -68.5t-11.5 -56.5q-1 -4 -18.5 -7 t-26.5 -3q-10 0 -10 4q0 2 10 53l20.5 109.5t10.5 79.5q0 31 -10 31q-13 0 -34 -21l-21 -22q-9 0 -9 10z" />
<glyph horiz-adv-x="289" d="M20 -100q0 9 7 15.5t13 6.5q17 0 37 -20l10 -10.5t10 -10l8 -6.5t9.5 -5t10.5 -1q25 0 41 16t16 43q0 16 -18.5 35.5t-41 35t-41 38.5t-18.5 47q0 40 32.5 68.5t77.5 28.5q33 0 53 -12.5t24 -23t4 -18.5q0 -15 -16 -15q-24 0 -40 30q-12 21 -26 21q-22 0 -39 -12t-17 -39 q0 -26 19 -47t41 -34t41 -37t19 -55q0 -38 -32.5 -66t-77.5 -28q-38 0 -72 17.5t-34 37.5z" />
<glyph horiz-adv-x="256" d="M35 137q0 1 0.5 7t0.5 8q0 6 8 6h50q7 0 8 6q2 10 6.5 44.5t5.5 38.5q1 5 2.5 8t4.5 4.5t10 2.5q4 1 17 1q25 0 25 -5q0 -1 -4.5 -20.5l-9.5 -42.5t-6 -29t0 -7t7 -1h60q9 0 9 -7q0 -19 -12 -19h-60h-3q-5 0 -6 -4q-1 -2 -1 -3q-35 -191 -35 -205q0 -16 15 -16 q11 0 51 37l40 37q2 0 7.5 -4t5.5 -6q0 -4 -26.5 -33t-64.5 -58.5t-60 -29.5q-30 0 -30 30q0 8 22 126.5t22 120.5q-5 8 -6 8h-40q-13 0 -13 5z" />
<glyph horiz-adv-x="445" d="M25 62q0 2 10 16t26.5 34t31.5 36q26 26 59 26q47 0 47 -30q0 -11 -26.5 -110t-26.5 -120q0 -19 22 -19q27 0 73 65q59 82 84 164q1 3 10 45q1 5 45 10q8 0 8 -9q0 -4 -22.5 -120.5t-22.5 -125.5q0 -20 15 -20q12 0 40 37l29 37q8 0 8 -7q0 -5 -18.5 -34t-48 -58.5 t-51.5 -29.5q-12 0 -20.5 7t-8.5 17q0 18 18.5 99.5t21.5 102.5q-23 -48 -55 -98q-88 -132 -145 -132q-46 0 -46 36q0 9 25 104t25 126q0 23 -16 23q-12 0 -45 -40l-33 -41q-4 0 -8.5 3t-4.5 6z" />
<glyph horiz-adv-x="396" d="M30 97q0 10 37.5 44t57.5 34q23 0 36 -8q20 -11 26.5 -18t6.5 -20q0 -32 -11 -108t-11 -88q0 -9 12 -19t16 -10q12 0 20 9q6 7 26 33q83 111 83 178q0 32 -19 32q-9 0 -20.5 -2t-19.5 -4t-9 -2q-6 0 -6 15q0 5 32 12.5t50 7.5q34 0 34 -35q0 -14 -2.5 -28t-8.5 -29.5 l-11 -27.5t-16.5 -30.5l-17 -28t-21 -30.5l-21 -28l-23 -29.5l-21.5 -27.5q-9 -12 -19 -28t-21 -16q-17 0 -36 17q-19 14 -26 27t-7 41q0 15 8.5 85.5t8.5 98.5q0 14 -7 18q-10 7 -19 7q-12 0 -27.5 -13.5t-26.5 -27t-12 -13.5q-4 0 -9.5 4.5t-5.5 7.5z" />
<glyph horiz-adv-x="589" d="M25 100q0 9 41.5 39.5t61.5 30.5q14 0 38 -15q27 -18 27 -39q0 -25 -5.5 -70t-10.5 -80.5t-5 -36.5q0 -10 10 -22t16 -12q8 0 19 15q8 11 39.5 57.5t40.5 57.5q10 12 19 38.5t9 37.5q0 9 -16 25q-5 5 -11.5 10l-9 7t-2.5 4q0 8 11.5 19.5t20.5 11.5q14 0 37.5 -19.5 t23.5 -31.5q0 -13 -12.5 -97.5t-12.5 -100.5q0 -13 11 -24t20 -11q7 0 24 21q49 56 73 91q36 52 37 116q0 26 -17 26q-9 0 -24.5 -2t-27.5 -4.5t-13 -2.5q-6 0 -6 14q0 5 45 14.5t53 9.5q35 0 35 -33q0 -58 -57 -143q-10 -15 -21 -29t-26 -31.5t-22 -25l-27 -29t-24 -25.5 q-9 -9 -15 -9q-29 0 -49 19.5t-20 45.5q0 19 23 122q-70 -108 -101 -147q-3 -4 -11 -15.5t-11 -15.5q-10 -13 -18 -13q-13 0 -35 19q-19 14 -24.5 23.5t-5.5 30.5q0 11 9.5 70t9.5 105q0 10 -12.5 24t-22.5 14q-12 0 -27.5 -12t-26.5 -24t-12 -12q-5 0 -9 5.5t-4 8.5z" />
<glyph horiz-adv-x="413" d="M25 -131q0 28 22 76q3 4 7 4q13 0 13 -7l-5 -14q-4 -13 -4 -24q0 -18 17 -18q18 0 54 39t61 73q4 7 1 17q-44 122 -82 122q-15 0 -37.5 -24t-24.5 -24q-3 0 -6.5 4.5t-3.5 7.5q0 4 12.5 20.5t37 33.5t49.5 17q19 0 31.5 -5t23.5 -22t16.5 -28.5t17.5 -43.5q5 -12 7 -18 l4 -6l5 8q3 4 18 28.5t23 35t22 27t28 24t28 7.5q21 0 21 -34q0 -17 -5 -47q-1 -4 -9 -4t-8 4q0 5 0.5 14t0.5 13q0 20 -13 20q-26 0 -100 -110q-5 -8 -2 -16q44 -125 72 -125q14 0 33 27l19 27q14 0 14 -7q0 -16 -32.5 -55.5t-60.5 -39.5q-10 0 -18 3t-15 11.5t-12 15.5 t-11 22t-9 24t-10 28.5t-10 29.5q-2 1 -2.5 1t-4.5 -4q-2 -3 -36 -46.5t-59 -64t-49 -20.5q-29 0 -29 23z" />
<glyph horiz-adv-x="376" d="M0 -367q0 9 3.5 16t11 11.5t14 7t17.5 5.5t16 5q28 11 44 40q49 90 49 146q0 100 -12.5 182t-44.5 82q-15 0 -30 -12.5t-25 -25t-12 -12.5q-12 0 -12 8q0 4 14 22.5t40 38.5t51 20t40 -14.5t23 -56.5t10.5 -69t5.5 -100q1 -25 2 -38q2 4 22.5 41t28 52t20.5 44.5t20 52.5 q9 29 15 83q1 15 10 15q10 0 20 -6t10 -16q0 -4 -2 -14q-2 -16 -11.5 -40.5t-22 -51.5t-27 -55l-29.5 -54.5l-26.5 -46.5l-20.5 -35l-9 -15l-23 -43.5l-37 -69l-34 -60.5q-12 -19 -32 -31q-47 -29 -61 -29q-7 0 -11.5 7.5t-4.5 15.5z" />
<glyph horiz-adv-x="353" d="M30 -148q0 5 3 11t6.5 9.5t9 9.5t7.5 8l197 220l2 4q-8 -2 -13 -2q-19 0 -63 13.5t-56 13.5q-13 0 -25.5 -10t-20.5 -20t-9 -10q-12 0 -12 7q0 4 11.5 20.5t32.5 34.5t41 18q19 0 70 -18t67 -18q6 0 18 15t23 15q6 0 10 -4.5t4 -10.5q0 -10 -9 -18t-22 -14.5t-17 -10.5 l-183 -202q-4 -4 -4 -6t12 -2q30 -2 96 -7t83 -5q7 0 9.5 3t2.5 11l-1 11v12q0 7 9 7t9 -6q7 -68 7 -71q0 -13 -31 -13h-5q-19 0 -104.5 7t-120.5 7q-3 0 -9.5 -10t-13.5 -10q-11 0 -11 11z" />
<glyph horiz-adv-x="379" d="M30 399q0 38 12.5 83.5t35 88.5t60.5 71.5t83 28.5q28 0 45 -25q3 -4 6.5 -10t6 -9.5t3.5 -3.5q2 2 7 17.5t5 18.5q4 10 34 10q14 0 14 -6q0 -3 -33.5 -121.5t-33.5 -139.5q0 -16 11 -16q7 0 29.5 23.5t23.5 23.5q3 0 6.5 -4t3.5 -9q0 -3 -18.5 -22t-45 -38.5 t-42.5 -19.5q-23 0 -23 21q0 26 44 167q-46 -80 -100 -135q-40 -40 -59 -48q-10 -4 -22 -4q-26 0 -39.5 16.5t-13.5 41.5zM85 430q0 -44 23 -44q21 0 68 52t81 107q12 18 12 44q0 21 -23 34t-45 13q-39 0 -77.5 -75t-38.5 -131z" />
<glyph horiz-adv-x="408" d="M45 360q0 4 2 7.5t5 7.5l4 4q2 2 5 16q24 132 48 290t24 180q0 5 -5 5q-2 0 -33 -9t-34 -9q-8 0 -8 22q0 9 4 10q119 31 132 31q11 0 11 -9q0 -5 -14.5 -96.5t-19.5 -116.5q-27 -155 -38 -203q39 67 69 106q31 42 54.5 58.5t61.5 16.5q65 0 65 -54q0 -111 -76.5 -193 t-140.5 -82q-17 0 -32.5 6t-24.5 12t-11 6q-1 0 -3.5 -1t-6 -3t-6.5 -3q-14 -7 -23 -7t-9 8zM115 416q0 -20 14 -34t41 -14q34 0 70.5 42t57.5 92t21 81q0 48 -34 48q-35 0 -69 -48q-101 -139 -101 -167z" />
<glyph horiz-adv-x="357" d="M35 456q0 95 59 156.5t125 61.5q41 0 65 -20t24 -53q0 -18 -10 -29.5t-26 -11.5q-19 0 -19 31q0 3 0.5 10t0.5 10q0 16 -9.5 27.5t-28.5 11.5q-50 0 -87 -55q-38 -56 -38 -126q0 -14 1.5 -23.5t8.5 -26t26.5 -26t49.5 -9.5q32 0 63.5 16t50.5 32t20 16q3 0 7 -4t4 -8 q0 -5 -25 -27t-68 -45t-80 -23q-61 0 -87.5 33.5t-26.5 81.5z" />
<glyph horiz-adv-x="424" d="M35 411q0 28 12 69t33.5 83t57.5 71.5t77 29.5q15 0 28.5 -2.5t20.5 -5.5t15 -7t9 -4q8 -3 9.5 -2t3.5 10q5 25 12 75.5l12.5 89t5.5 39.5q4 12 -2 12q-1 0 -36.5 -8.5t-37.5 -8.5q-6 0 -3 18q1 10 9 13q32 7 63 14.5t46 11.5t16 4q10 0 10 -13q0 -3 -41.5 -239.5 t-41.5 -261.5q0 -11 10 -11q11 0 29 15t32.5 30t15.5 15q9 0 9 -7q0 -5 -18 -27.5t-51 -46.5t-63 -24q-10 0 -17 8.5t-7 22.5q0 28 33 165q-42 -72 -71 -109q-22 -29 -34 -42.5t-34.5 -27.5t-46.5 -14q-8 0 -16 1.5t-20.5 7t-20.5 20t-8 36.5zM92 435q0 -24 8 -35t28 -11 q35 0 115 115q46 69 46 97q0 11 -24 27.5t-50 16.5q-34 0 -64 -40.5t-44.5 -88t-14.5 -81.5z" />
<glyph horiz-adv-x="357" d="M35 437q0 95 61 166t143 71q78 0 78 -55q0 -36 -29.5 -64t-73.5 -45q-55 -20 -117 -20q-5 0 -5 -38q0 -72 78 -72q34 0 67.5 18t52.5 35.5t20 17.5q3 0 7.5 -4.5t4.5 -6.5q0 -4 -23.5 -26t-69 -45.5t-89.5 -23.5q-46 0 -75.5 23t-29.5 69zM104 515q0 -4 7 -4 q62 0 106 29.5t44 79.5q0 15 -11 23.5t-29 8.5q-68 0 -106 -99q-11 -29 -11 -38z" />
<glyph horiz-adv-x="250" d="M-92 151q0 12 14 23.5t27 11.5q10 0 31 -9.5t36 -9.5q8 0 14.5 5t11 15.5l8.5 20.5t7 26l5 26t4 25.5t3 20.5q9 54 19.5 133t17 132.5t6.5 56.5q0 8 -6 8h-59q-7 0 -7 7q0 4 2 10q1 5 7 5h57q4 0 5.5 0.5t3 2.5t1.5 7q9 80 36 130q37 67 84 94q37 22 77 22q21 0 41 -10 t20 -20q0 -12 -16.5 -24t-29.5 -12q-11 0 -31.5 15.5t-35.5 15.5q-61 0 -91 -216q0 -5 6 -5h69q5 0 5 -2q0 -20 -8 -20h-68h-2q-3 0 -4 -3l-0.5 -2t-0.5 -3t-19 -133.5t-29 -188.5q-3 -17 -9 -38t-25 -58t-44 -55q-48 -35 -76 -35q-20 0 -38.5 10.5t-18.5 20.5z" />
<glyph horiz-adv-x="377" d="M4 220q0 33 25 56.5t52 35.5q9 4 9 5t-2 2t-6 2.5t-7 3.5q-21 14 -21 28q0 6 14.5 29.5t22.5 26.5l51 18l4 2q0 1 -5 2q-82 27 -82 109q0 59 43 100t105 41q12 0 24 -2.5t20 -6.5t15.5 -8.5t11.5 -8.5t8 -7l4 -4q2 2 11.5 22.5t11.5 23.5q5 9 18 9q23 0 23 -10 t-9.5 -27.5t-19.5 -31.5t-10 -15q0 -2 1 -5q2 -4 2 -6q6 -22 6 -33q0 -60 -44 -101q-22 -20 -42.5 -28.5t-62.5 -20.5q-77 -21 -77 -38q0 -4 2.5 -7t8 -6t11 -5t15 -4.5t18 -4l20.5 -3.5l21 -3.5t22.5 -4t22.5 -3.5q53 -8 81 -25t28 -55q0 -63 -56 -92t-145 -29 q-143 0 -143 79zM41 225q0 -32 44 -44.5t95 -12.5q52 0 84 18t32 54q0 25 -22 37t-64 19q-84 15 -90 15q-4 0 -26 -10q-53 -27 -53 -76zM112 539q0 -49 20.5 -70.5t41.5 -21.5q33 0 65 39t32 94q0 30 -19 55t-46 25q-41 0 -67.5 -40t-26.5 -81z" />
<glyph horiz-adv-x="431" d="M40 355q0 2 5.5 27.5t14.5 72.5l19.5 105.5t22 139.5t19.5 162q2 15 -3 15q-8 0 -39.5 -11.5t-32.5 -11.5q-3 0 -3 13q0 10 6 14q24 9 69 18.5t61 9.5q6 0 6 -13q-4 -75 -76 -436q39 89 92 152q46 56 105 56q50 0 50 -41q0 -31 -27.5 -122.5t-27.5 -99.5q0 -17 15 -17 q9 0 28 18t34.5 36t16.5 18q3 0 7 -4t4 -6q0 -4 -18 -28t-50 -48.5t-61 -24.5q-14 0 -24.5 9.5t-10.5 23.5q0 12 30.5 105.5t30.5 116.5q0 13 -8 22.5t-20 9.5q-27 0 -55 -33.5t-62 -88.5q-4 -7 -13.5 -22.5l-14.5 -24t-10.5 -20.5t-7.5 -22l-15 -67q-2 -11 -50 -11 q-7 0 -7 8z" />
<glyph horiz-adv-x="235" d="M30 583q0 7 53 46t73 39q7 0 12.5 -5t5.5 -15q0 -22 -27.5 -124t-27.5 -112q0 -16 10 -16q9 0 36.5 26.5t28.5 26.5q3 0 7 -3.5t4 -6.5q0 -11 -53.5 -53t-71.5 -42q-22 0 -22 16q0 21 30 120.5t30 125.5q0 15 -9 15q-13 0 -40 -24.5t-28 -24.5q-4 0 -7.5 4t-3.5 7z M116 803q0 17 9 28t25 11q17 0 27 -13t10 -28q0 -17 -9.5 -27.5t-24.5 -10.5q-17 0 -27 12.5t-10 27.5z" />
<glyph horiz-adv-x="239" d="M-61 167q0 13 8.5 22t21.5 9q15 0 31.5 -10t30.5 -10q15 0 22.5 20.5t17.5 66.5q16 75 35.5 199t19.5 142q0 15 -9 15q-13 0 -47 -37l-34 -37q-3 0 -7 3t-4 7t25 30.5t59.5 53.5t55.5 27q7 0 12.5 -5.5t5.5 -15.5q0 -19 -45 -300q-19 -130 -80 -177q-44 -32 -73 -32 q-21 0 -33.5 9t-12.5 20zM125 828q0 17 10 28t26 11q17 0 26.5 -12.5t9.5 -27.5q0 -17 -9.5 -28.5t-24.5 -11.5q-17 0 -27.5 13t-10.5 28z" />
<glyph horiz-adv-x="421" d="M35 346q0 3 17.5 85t40 208.5t32.5 225.5q0 7 -5 7q-14 0 -62 -16q-8 -2 -8 7q0 16 7 18q34 8 64.5 16.5l44 12t16.5 3.5q13 0 13 -10q0 -7 -16.5 -88l-37.5 -183t-26 -128q36 64 57 92q28 36 56 53t70 17q50 0 50 -31q0 -35 -27.5 -65t-56.5 -44t-55 -20q-2 0 -8 -1 t-8 -2q14 -7 22 -14q43 -43 61 -64q14 -17 20.5 -24t18 -13t25.5 -6q27 0 27 21q0 3 -0.5 9t-0.5 8q0 11 6 11q19 0 19 -37q0 -19 -32 -33t-60 -14q-19 0 -37 17q-9 9 -19 20.5t-25 31.5t-21 27l-19.5 23.5l-17 20t-5.5 8.5q0 4 14 18q2 2 10 2q11 0 22 4q31 14 59.5 45 t28.5 58q0 15 -25 15q-23 0 -52 -27q-20 -17 -84 -113q-14 -23 -20 -48q-10 -44 -16 -81q-2 -12 -4 -15.5t-6 -3.5l-18 -3q-19 -2 -24 -2t-5 2z" />
<glyph horiz-adv-x="252" d="M55 374q0 5 15 88t34.5 201t28.5 193q2 8 0.5 11t-9.5 1q-54 -15 -62 -15q-6 0 -4 17q1 9 9 12q32 7 62 15t43.5 12t15.5 4q9 0 9 -8q0 -10 -41.5 -253t-41.5 -246q0 -17 11 -17q10 0 30 17.5t36 35t17 17.5q3 0 8.5 -4.5t5.5 -6.5q0 -4 -23 -29.5t-58 -51.5t-61 -26 q-25 0 -25 33z" />
<glyph horiz-adv-x="650" d="M30 561q0 10 57 54t84 44q17 0 17 -16q0 -17 -3 -41.5t-6.5 -44t-10 -53t-9.5 -50.5q93 210 185 210q14 0 22 -11.5t8 -27.5q0 -66 -44 -198q69 129 111 179q51 58 94 58t43 -28q0 -24 -30 -118t-30 -108q0 -19 14 -19q10 0 43 34t34 34q3 0 7 -4t4 -7q0 -4 -24 -28.5 t-57.5 -49t-54.5 -24.5q-13 0 -21.5 7.5t-8.5 17.5q0 15 32 113.5t32 125.5q0 17 -15 17q-32 0 -104 -109q-55 -83 -75 -155q-3 -9 -12 -11q-20 -3 -35 -3q-8 0 -8 7l24 91q24 91 24 148q0 30 -16 30q-19 0 -54.5 -51t-64.5 -108q-17 -32 -35 -98q-5 -14 -9 -16 q-30 -12 -41 -12q-7 0 -5 9q10 39 23 123.5t13 122.5q0 13 -10 13q-12 0 -44 -31t-33 -31q-11 0 -11 15z" />
<glyph horiz-adv-x="465" d="M30 587q0 2 24.5 22t60.5 40.5t58 20.5q19 0 19 -18q0 -17 -5 -44t-9.5 -46t-15.5 -57.5t-14 -50.5q60 105 110.5 160.5t96.5 55.5q43 0 43 -37q0 -25 -32 -120.5t-32 -104.5q0 -16 15 -16q11 0 28.5 15t31.5 30.5t15 15.5q3 0 7 -3t4 -6q0 -4 -20 -26.5t-53.5 -45 t-60.5 -22.5t-27 34q0 24 33 113t33 114q0 23 -18 23q-21 0 -64.5 -54.5t-83.5 -117.5q-20 -31 -37 -93q0 -1 -1.5 -5.5l-2.5 -7.5t-3.5 -6t-5.5 -3q-26 -3 -40 -3q-7 0 -5 9q49 196 49 258q0 15 -10 15q-11 0 -43 -26.5t-33 -26.5q-4 0 -8 4.5t-4 9.5z" />
<glyph horiz-adv-x="377" d="M30 464q0 92 54.5 153.5t137.5 61.5q59 0 87 -42t28 -90q0 -78 -56.5 -141.5t-133.5 -63.5q-56 0 -86.5 35.5t-30.5 86.5zM83 471q0 -107 65 -107q37 0 69.5 39t49 88t16.5 89q0 29 -15.5 53.5t-54.5 24.5q-47 0 -88.5 -64.5t-41.5 -122.5z" />
<glyph horiz-adv-x="432" d="M20 536v1q3 6 9 15.5t24.5 33.5t37 43t43 34t46.5 15q15 0 15 -27q0 -45 -26 -184q32 77 81 152q31 48 83 48q37 0 50.5 -20.5t13.5 -56.5q0 -91 -61.5 -169t-126.5 -78q-9 0 -26.5 3t-20.5 3q-9 0 -10 -6l-27 -172q-2 -18 7 -19l16 -2t13.5 -1t11 -1t9 -1t6.5 -1t5 -2 t3.5 -2t2 -3t0.5 -4q0 -12 -4 -14.5t-14 -2.5q-1 0 -23 3t-56.5 5.5t-65.5 2.5q-14 0 -14 9q0 11 3 15t13 4h13q9 0 12.5 3t5.5 14q64 368 64 427q0 14 -9 14q-17 0 -54 -47l-36 -46q-4 0 -9 5t-5 9zM164 392q0 -25 53 -25q42 0 84.5 73t42.5 140q0 52 -36 52 q-12 0 -24.5 -8t-24 -24.5t-18.5 -28t-17.5 -33.5t-13.5 -27q-46 -85 -46 -119z" />
<glyph horiz-adv-x="397" d="M30 411q0 30 14.5 72t39.5 83.5t66 70.5t88 29q36 0 72 -17l11 -4q7 0 18.5 7t17.5 9q4 1 7 -1.5t3 -7.5t-22 -51q-4 -8 -6 -21l-31.5 -175.5l-32 -180.5t-11.5 -69q0 -8 11 -8h21q13 0 21 -1q12 -1 12 -15v-3v-6t-1.5 -4t-4 -2.5t-7.5 -0.5q-1 0 -11 0.5t-26.5 1 t-32.5 0.5q-11 0 -28.5 -1.5t-30.5 -3t-14 -1.5q-4 0 -6 0.5t-4 3t-2 7.5q1 11 4 13.5t14 4.5q20 4 22 8q2 3 4 13q46 203 77 378q-26 -54 -66 -109q-63 -87 -115 -87q-8 0 -17.5 2t-22.5 8.5t-22 21t-9 36.5zM85 432q0 -22 11 -35t26 -13q35 0 119 120q53 80 53 109 q0 9 -15.5 21.5t-40.5 12.5q-51 0 -102 -81t-51 -134z" />
<glyph horiz-adv-x="295" d="M25 590q0 10 42 45t66 35q16 0 16 -18q0 -23 -22 -144h2q2 6 12.5 34.5t19.5 49.5t19 38q25 46 61 46q15 0 27 -8t12 -22q0 -32 -19 -32q-9 0 -23.5 7.5t-22.5 7.5q-11 0 -20 -14q-14 -21 -46 -103q-3 -8 -6 -19t-4 -12q-7 -29 -14.5 -68.5t-11.5 -56.5q-1 -4 -18.5 -7 t-26.5 -3q-10 0 -10 4q0 2 10 53l20.5 109.5t10.5 79.5q0 31 -10 31q-13 0 -34 -21l-21 -22q-9 0 -9 10z" />
<glyph horiz-adv-x="289" d="M20 400q0 9 7 15.5t13 6.5q17 0 37 -20l10 -10.5t10 -10l8 -6.5t9.5 -5t10.5 -1q25 0 41 16t16 43q0 16 -18.5 35.5t-41 35t-41 38.5t-18.5 47q0 40 32.5 68.5t77.5 28.5q33 0 53 -12.5t24 -23t4 -18.5q0 -15 -16 -15q-24 0 -40 30q-12 21 -26 21q-22 0 -39 -12t-17 -39 q0 -26 19 -47t41 -34t41 -37t19 -55q0 -38 -32.5 -66t-77.5 -28q-38 0 -72 17.5t-34 37.5z" />
<glyph horiz-adv-x="256" d="M35 637q0 1 0.5 7t0.5 8q0 6 8 6h50q7 0 8 6q2 10 6.5 44.5t5.5 38.5q1 5 2.5 8t4.5 4.5t10 2.5q4 1 17 1q25 0 25 -5q0 -1 -4.5 -20.5l-9.5 -42.5t-6 -29t0 -7t7 -1h60q9 0 9 -7q0 -19 -12 -19h-60h-3q-5 0 -6 -4q-1 -2 -1 -3q-35 -191 -35 -205q0 -16 15 -16 q11 0 51 37l40 37q2 0 7.5 -4t5.5 -6q0 -4 -26.5 -33t-64.5 -58.5t-60 -29.5q-30 0 -30 30q0 8 22 126.5t22 120.5q-5 8 -6 8h-40q-13 0 -13 5z" />
<glyph horiz-adv-x="445" d="M25 562q0 2 10 16t26.5 34t31.5 36q26 26 59 26q47 0 47 -30q0 -11 -26.5 -110t-26.5 -120q0 -19 22 -19q27 0 73 65q59 82 84 164q1 3 10 45q1 5 45 10q8 0 8 -9q0 -4 -22.5 -120.5t-22.5 -125.5q0 -20 15 -20q12 0 40 37l29 37q8 0 8 -7q0 -5 -18.5 -34t-48 -58.5 t-51.5 -29.5q-12 0 -20.5 7t-8.5 17q0 18 18.5 99.5t21.5 102.5q-23 -48 -55 -98q-88 -132 -145 -132q-46 0 -46 36q0 9 25 104t25 126q0 23 -16 23q-12 0 -45 -40l-33 -41q-4 0 -8.5 3t-4.5 6z" />
<glyph horiz-adv-x="396" d="M30 597q0 10 37.5 44t57.5 34q23 0 36 -8q20 -11 26.5 -18t6.5 -20q0 -32 -11 -108t-11 -88q0 -9 12 -19t16 -10q12 0 20 9q6 7 26 33q83 111 83 178q0 32 -19 32q-9 0 -20.5 -2t-19.5 -4t-9 -2q-6 0 -6 15q0 5 32 12.5t50 7.5q34 0 34 -35q0 -14 -2.5 -28t-8.5 -29.5 l-11 -27.5t-16.5 -30.5l-17 -28t-21 -30.5l-21 -28l-23 -29.5l-21.5 -27.5q-9 -12 -19 -28t-21 -16q-17 0 -36 17q-19 14 -26 27t-7 41q0 15 8.5 85.5t8.5 98.5q0 14 -7 18q-10 7 -19 7q-12 0 -27.5 -13.5t-26.5 -27t-12 -13.5q-4 0 -9.5 4.5t-5.5 7.5z" />
<glyph horiz-adv-x="589" d="M25 600q0 9 41.5 39.5t61.5 30.5q14 0 38 -15q27 -18 27 -39q0 -25 -5.5 -70t-10.5 -80.5t-5 -36.5q0 -10 10 -22t16 -12q8 0 19 15q8 11 39.5 57.5t40.5 57.5q10 12 19 38.5t9 37.5q0 9 -16 25q-5 5 -11.5 10l-9 7t-2.5 4q0 8 11.5 19.5t20.5 11.5q14 0 37.5 -19.5 t23.5 -31.5q0 -13 -12.5 -97.5t-12.5 -100.5q0 -13 11 -24t20 -11q7 0 24 21q49 56 73 91q36 52 37 116q0 26 -17 26q-9 0 -24.5 -2t-27.5 -4.5t-13 -2.5q-6 0 -6 14q0 5 45 14.5t53 9.5q35 0 35 -33q0 -58 -57 -143q-10 -15 -21 -29t-26 -31.5t-22 -25l-27 -29t-24 -25.5 q-9 -9 -15 -9q-29 0 -49 19.5t-20 45.5q0 19 23 122q-70 -108 -101 -147q-3 -4 -11 -15.5t-11 -15.5q-10 -13 -18 -13q-13 0 -35 19q-19 14 -24.5 23.5t-5.5 30.5q0 11 9.5 70t9.5 105q0 10 -12.5 24t-22.5 14q-12 0 -27.5 -12t-26.5 -24t-12 -12q-5 0 -9 5.5t-4 8.5z" />
<glyph horiz-adv-x="413" d="M25 369q0 28 22 76q3 4 7 4q13 0 13 -7l-5 -14q-4 -13 -4 -24q0 -18 17 -18q18 0 54 39t61 73q4 7 1 17q-44 122 -82 122q-15 0 -37.5 -24t-24.5 -24q-3 0 -6.5 4.5t-3.5 7.5q0 4 12.5 20.5t37 33.5t49.5 17q19 0 31.5 -5t23.5 -22t16.5 -28.5t17.5 -43.5q5 -12 7 -18 l4 -6l5 8q3 4 18 28.5t23 35t22 27t28 24t28 7.5q21 0 21 -34q0 -17 -5 -47q-1 -4 -9 -4t-8 4q0 5 0.5 14t0.5 13q0 20 -13 20q-26 0 -100 -110q-5 -8 -2 -16q44 -125 72 -125q14 0 33 27l19 27q14 0 14 -7q0 -16 -32.5 -55.5t-60.5 -39.5q-10 0 -18 3t-15 11.5t-12 15.5 t-11 22t-9 24t-10 28.5t-10 29.5q-2 1 -2.5 1t-4.5 -4q-2 -3 -36 -46.5t-59 -64t-49 -20.5q-29 0 -29 23z" />
<glyph horiz-adv-x="376" d="M0 133q0 9 3.5 16t11 11.5t14 7t17.5 5.5t16 5q28 11 44 40q49 90 49 146q0 100 -12.5 182t-44.5 82q-15 0 -30 -12.5t-25 -25t-12 -12.5q-12 0 -12 8q0 4 14 22.5t40 38.5t51 20t40 -14.5t23 -56.5t10.5 -69t5.5 -100q1 -25 2 -38q2 4 22.5 41t28 52t20.5 44.5t20 52.5 q9 29 15 83q1 15 10 15q10 0 20 -6t10 -16q0 -4 -2 -14q-2 -16 -11.5 -40.5t-22 -51.5t-27 -55l-29.5 -54.5l-26.5 -46.5l-20.5 -35l-9 -15l-23 -43.5l-37 -69l-34 -60.5q-12 -19 -32 -31q-47 -29 -61 -29q-7 0 -11.5 7.5t-4.5 15.5z" />
<glyph horiz-adv-x="353" d="M30 352q0 5 3 11t6.5 9.5t9 9.5t7.5 8l197 220l2 4q-8 -2 -13 -2q-19 0 -63 13.5t-56 13.5q-13 0 -25.5 -10t-20.5 -20t-9 -10q-12 0 -12 7q0 4 11.5 20.5t32.5 34.5t41 18q19 0 70 -18t67 -18q6 0 18 15t23 15q6 0 10 -4.5t4 -10.5q0 -10 -9 -18t-22 -14.5t-17 -10.5 l-183 -202q-4 -4 -4 -6t12 -2q30 -2 96 -7t83 -5q7 0 9.5 3t2.5 11l-1 11v12q0 7 9 7t9 -6q7 -68 7 -71q0 -13 -31 -13h-5q-19 0 -104.5 7t-120.5 7q-3 0 -9.5 -10t-13.5 -10q-11 0 -11 11z" />
<glyph horiz-adv-x="500" d="M98 291q0 12 6 25.5t12 14.5t141 4t143 3q2 0 2 -9q0 -33 -8 -33q-9 -1 -145 -4.5t-147 -3.5q-4 0 -4 3z" />
<glyph horiz-adv-x="467" d="M45 164q0 86 57.5 144t144.5 58q79 0 127 -48.5t48 -119.5q0 -85 -58 -144t-141 -59q-76 0 -127 46.5t-51 122.5zM90 156q0 -62 34.5 -95.5t89.5 -33.5q62 0 111 51.5t49 128.5q0 59 -36 94t-91 35q-63 0 -110 -57.5t-47 -122.5z" />
<glyph horiz-adv-x="363" d="M60 12q0 7 2.5 10t11.5 3h40h5t3 1.5t1.5 2t1 3.5t0.5 5q9 47 21.5 122t20.5 129t8 58q0 11 -3 11q-1 1 -5 1h-53q-11 0 -11 13q0 8 1.5 11t9.5 3q9 0 44.5 -1t48.5 -1t47 1t43 1q8 0 9.5 -2.5t1.5 -11.5q0 -7 -2.5 -10t-11.5 -3h-39q-8 0 -9.5 -2t-3.5 -10 q-30 -197 -45 -309q-1 -7 2 -9.5t11 -2.5h50q11 0 11 -13q0 -8 -1.5 -11t-9.5 -3q-9 0 -46 1t-50 1t-48.5 -1t-44.5 -1q-8 0 -9.5 2.5t-1.5 11.5z" />
<glyph horiz-adv-x="453" d="M45 11q0 7 12 17q13 12 69.5 50.5t86.5 65.5q73 65 73 122q0 40 -22.5 66.5t-61.5 26.5q-29 0 -58 -20.5t-46 -40.5l-17 -20q-5 0 -11.5 5.5t-6.5 10.5q0 7 22.5 30t64 46.5t80.5 23.5q61 0 93 -30t32 -84q0 -86 -197 -201q-28 -16 -28 -20q0 -1 7 -1h248q6 0 20 24 t15 24q4 0 11 -3t7 -5q0 -3 -7 -17l-18 -36.5t-18 -38.5q-2 -6 -11 -6h-324q-15 0 -15 11z" />
<glyph horiz-adv-x="409" d="M5 -146q0 12 35 12q24 0 34 -11q37 -44 80 -44q55 0 99.5 47.5t44.5 106.5q0 56 -37.5 83.5t-103.5 27.5q-13 0 -34 -2l-21 -1q-17 0 -17 11t3 14t16 7q172 49 172 167q0 39 -22.5 63t-60.5 24q-29 0 -55 -8.5t-40.5 -17.5t-15.5 -9q-4 0 -7.5 6t-3.5 11q0 4 21 15 t55.5 21t64.5 10q55 0 88.5 -27.5t33.5 -78.5q0 -27 -12.5 -52t-31 -42t-36.5 -29.5t-30.5 -19.5t-12.5 -8t16 -4t38.5 -11t44.5 -22.5t38 -44t16 -69.5q0 -78 -68 -135.5t-152 -57.5q-34 0 -62.5 8t-44 20t-24 22.5t-8.5 17.5z" />
<glyph horiz-adv-x="484" d="M25 8q0 21 44 78l18 20t16 18q34 41 163 174q15 17 55 55.5t48 38.5q14 0 10 -24l-50 -296q-2 -13 0.5 -15.5t14.5 -2.5h83q7 0 7 -10v-34q0 -8 -1.5 -9t-10.5 -1h-97q-9 0 -10 -1t-2 -7q-1 -4 -1 -6q-3 -27 -9 -71l-10 -75t-4 -33q0 -5 -2.5 -7t-12.5 -4l-42 -8 q-6 -1 -11 4t-3 17l34 180q2 4 1 6t-1.5 3.5t-3 2t-4 0t-5.5 -0.5h-7h-189q-18 0 -18 8zM81 60q0 -6 25 -6h147q13 0 15 2.5t4 17.5l35 216q1 8 -3 9.5t-9 -4.5l-197 -210q-17 -17 -17 -25z" />
<glyph horiz-adv-x="388" d="M-10 -199q0 10 7 10q42 3 79.5 14t72.5 31.5t55.5 56t20.5 82.5q0 38 -26.5 71.5t-58.5 52.5l-58.5 36t-26.5 25q0 6 11 36l28.5 76.5t27.5 79.5q2 6 15 6q4 0 83 -7.5t85 -7.5q20 0 24 4l2 4l12 24q6 0 13 -2.5t7 -5.5q0 -1 -25 -68q-6 -16 -11 -18q-3 -1 -9 -1t-28 3 t-62 9t-72 10q-23 2 -28 -7q-12 -24 -23 -55.5t-11 -37.5q0 -4 20 -14.5t48 -27.5t56.5 -39.5t48.5 -57.5t20 -74q0 -65 -48 -117.5t-113.5 -78t-127.5 -25.5q-8 0 -8 13z" />
<glyph horiz-adv-x="471" d="M55 187q0 107 56 204.5t138 169.5q54 47 112 76.5t75 29.5q10 0 10 -19q0 -3 -8 -6q-81 -32 -130 -80q-94 -91 -135 -173q-14 -30 -14 -36q0 -1 6.5 0t20.5 4q37 7 65 7q79 0 125.5 -45t46.5 -128q0 -89 -58.5 -142.5t-142.5 -53.5q-32 0 -59.5 8.5t-53 29t-40 60 t-14.5 94.5zM116 173q0 -31 8.5 -62t37 -59t71.5 -28q54 0 87.5 51.5t33.5 121.5q0 146 -120 146q-19 0 -48 -6.5t-35 -14.5q-35 -47 -35 -149z" />
<glyph horiz-adv-x="452" d="M45 286q0 4 6 20t14 43.5t13 54.5q3 20 12 20q17 0 17 -9q0 -3 -1 -9.5t-1 -10.5q0 -2 51 -2h268q13 0 13 -9q0 -6 -41.5 -76.5l-100 -166l-73.5 -121.5q-80 -137 -109 -215q-5 -15 -12 -15q-11 0 -21 6t-10 14q0 28 56 122.5t143.5 226t102.5 155.5q5 8 5 13q0 8 -14 8 h-193q-82 0 -85 -9l-13 -40q-6 -8 -10 -9q-17 0 -17 9z" />
<glyph horiz-adv-x="415" d="M45 130q0 34 14.5 66t35 54.5t41.5 39.5t35.5 27t14.5 12q0 1 -10.5 10.5t-25 25t-29 35.5t-25 47t-10.5 53q0 71 48 116t124 45q62 0 99.5 -35.5t37.5 -98.5q0 -29 -13.5 -58t-32.5 -49.5t-38.5 -37t-33 -26.5t-13.5 -12q0 -1 11.5 -11.5t28 -28.5t32.5 -40t27.5 -53 t11.5 -61q0 -67 -52.5 -110t-129.5 -43q-68 0 -108 33.5t-40 99.5zM99 145q0 -55 30.5 -89t72.5 -34q48 0 81 35.5t33 82.5q0 22 -11.5 48.5t-27.5 48t-33.5 39.5t-29.5 28.5t-14 10.5q-7 0 -30 -20.5t-47 -62.5t-24 -87zM139 534q0 -36 25.5 -79.5t51 -69.5t30.5 -26 q7 0 30.5 21.5t46.5 62.5t23 82q0 48 -28 80.5t-74 32.5q-48 0 -76.5 -32t-28.5 -72z" />
<glyph horiz-adv-x="437" d="M-6 -185q0 2 32 13q114 40 235 186q20 23 20 32q-2 1 -5 0.5t-12 -4t-12 -4.5q-41 -13 -74 -13q-62 0 -100 45.5t-38 121.5q0 89 62 145.5t146 56.5q70 0 109.5 -52.5t39.5 -138.5q0 -77 -39 -150.5t-101 -125.5q-49 -41 -111.5 -74t-99 -45.5t-43.5 -12.5q-9 0 -9 20z M99 173q0 -55 26.5 -88t79.5 -33q44 0 74 13q25 11 42.5 64t17.5 111q0 61 -25.5 94.5t-66.5 33.5q-66 0 -107 -60.5t-41 -134.5z" />
</font>
</defs></svg>

Before

Width:  |  Height:  |  Size: 327 KiB

@ -1 +0,0 @@
Subproject commit 6ed6e1208d82d015624fdc9e86bd70500d761a39

View File

@ -1,601 +0,0 @@
/**
* Package: svedit.history
*
* Licensed under the Apache License, Version 2
*
* Copyright(c) 2010 Jeff Schiller
*/
// Dependencies:
// 1) jQuery
// 2) svgtransformlist.js
// 3) svgutils.js
var svgedit = svgedit || {};
(function() {
if (!svgedit.history) {
svgedit.history = {};
}
// Group: Undo/Redo history management
svgedit.history.HistoryEventTypes = {
BEFORE_APPLY: 'before_apply',
AFTER_APPLY: 'after_apply',
BEFORE_UNAPPLY: 'before_unapply',
AFTER_UNAPPLY: 'after_unapply'
};
var removedElements = {};
/**
* Interface: svgedit.history.HistoryCommand
* An interface that all command objects must implement.
*
* interface svgedit.history.HistoryCommand {
* void apply(svgedit.history.HistoryEventHandler);
* void unapply(svgedit.history.HistoryEventHandler);
* Element[] elements();
* String getText();
*
* static String type();
* }
*
* Interface: svgedit.history.HistoryEventHandler
* An interface for objects that will handle history events.
*
* interface svgedit.history.HistoryEventHandler {
* void handleHistoryEvent(eventType, command);
* }
*
* eventType is a string conforming to one of the HistoryEvent types.
* command is an object fulfilling the HistoryCommand interface.
*/
// Class: svgedit.history.MoveElementCommand
// implements svgedit.history.HistoryCommand
// History command for an element that had its DOM position changed
//
// Parameters:
// elem - The DOM element that was moved
// oldNextSibling - The element's next sibling before it was moved
// oldParent - The element's parent before it was moved
// text - An optional string visible to user related to this change
svgedit.history.MoveElementCommand = function(elem, oldNextSibling, oldParent, text) {
this.elem = elem;
this.text = text ? ("Move " + elem.tagName + " to " + text) : ("Move " + elem.tagName);
this.oldNextSibling = oldNextSibling;
this.oldParent = oldParent;
this.newNextSibling = elem.nextSibling;
this.newParent = elem.parentNode;
};
svgedit.history.MoveElementCommand.type = function() { return 'svgedit.history.MoveElementCommand'; }
svgedit.history.MoveElementCommand.prototype.type = svgedit.history.MoveElementCommand.type;
// Function: svgedit.history.MoveElementCommand.getText
svgedit.history.MoveElementCommand.prototype.getText = function() {
return this.text;
};
// Function: svgedit.history.MoveElementCommand.apply
// Re-positions the element
svgedit.history.MoveElementCommand.prototype.apply = function(handler) {
// TODO(codedread): Refactor this common event code into a base HistoryCommand class.
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_APPLY, this);
}
this.elem = this.newParent.insertBefore(this.elem, this.newNextSibling);
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_APPLY, this);
}
};
// Function: svgedit.history.MoveElementCommand.unapply
// Positions the element back to its original location
svgedit.history.MoveElementCommand.prototype.unapply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_UNAPPLY, this);
}
this.elem = this.oldParent.insertBefore(this.elem, this.oldNextSibling);
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_UNAPPLY, this);
}
};
// Function: svgedit.history.MoveElementCommand.elements
// Returns array with element associated with this command
svgedit.history.MoveElementCommand.prototype.elements = function() {
return [this.elem];
};
// Class: svgedit.history.InsertElementCommand
// implements svgedit.history.HistoryCommand
// History command for an element that was added to the DOM
//
// Parameters:
// elem - The newly added DOM element
// text - An optional string visible to user related to this change
svgedit.history.InsertElementCommand = function(elem, text) {
this.elem = elem;
this.text = text || ("Create " + elem.tagName);
this.parent = elem.parentNode;
this.nextSibling = this.elem.nextSibling;
};
svgedit.history.InsertElementCommand.type = function() { return 'svgedit.history.InsertElementCommand'; }
svgedit.history.InsertElementCommand.prototype.type = svgedit.history.InsertElementCommand.type;
// Function: svgedit.history.InsertElementCommand.getText
svgedit.history.InsertElementCommand.prototype.getText = function() {
return this.text;
};
// Function: svgedit.history.InsertElementCommand.apply
// Re-Inserts the new element
svgedit.history.InsertElementCommand.prototype.apply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_APPLY, this);
}
this.elem = this.parent.insertBefore(this.elem, this.nextSibling);
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_APPLY, this);
}
};
// Function: svgedit.history.InsertElementCommand.unapply
// Removes the element
svgedit.history.InsertElementCommand.prototype.unapply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_UNAPPLY, this);
}
this.parent = this.elem.parentNode;
this.elem = this.elem.parentNode.removeChild(this.elem);
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_UNAPPLY, this);
}
};
// Function: svgedit.history.InsertElementCommand.elements
// Returns array with element associated with this command
svgedit.history.InsertElementCommand.prototype.elements = function() {
return [this.elem];
};
// Class: svgedit.history.RemoveElementCommand
// implements svgedit.history.HistoryCommand
// History command for an element removed from the DOM
//
// Parameters:
// elem - The removed DOM element
// oldNextSibling - the DOM element's nextSibling when it was in the DOM
// oldParent - The DOM element's parent
// text - An optional string visible to user related to this change
svgedit.history.RemoveElementCommand = function(elem, oldNextSibling, oldParent, text) {
this.elem = elem;
this.text = text || ("Delete " + elem.tagName);
this.nextSibling = oldNextSibling;
this.parent = oldParent;
// special hack for webkit: remove this element's entry in the svgTransformLists map
svgedit.transformlist.removeElementFromListMap(elem);
};
svgedit.history.RemoveElementCommand.type = function() { return 'svgedit.history.RemoveElementCommand'; }
svgedit.history.RemoveElementCommand.prototype.type = svgedit.history.RemoveElementCommand.type;
// Function: svgedit.history.RemoveElementCommand.getText
svgedit.history.RemoveElementCommand.prototype.getText = function() {
return this.text;
};
// Function: RemoveElementCommand.apply
// Re-removes the new element
svgedit.history.RemoveElementCommand.prototype.apply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_APPLY, this);
}
svgedit.transformlist.removeElementFromListMap(this.elem);
this.parent = this.elem.parentNode;
this.elem = this.parent.removeChild(this.elem);
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_APPLY, this);
}
};
// Function: RemoveElementCommand.unapply
// Re-adds the new element
svgedit.history.RemoveElementCommand.prototype.unapply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_UNAPPLY, this);
}
svgedit.transformlist.removeElementFromListMap(this.elem);
if(this.nextSibling == null) {
if(window.console) console.log('Error: reference element was lost');
}
this.parent.insertBefore(this.elem, this.nextSibling);
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_UNAPPLY, this);
}
};
// Function: RemoveElementCommand.elements
// Returns array with element associated with this command
svgedit.history.RemoveElementCommand.prototype.elements = function() {
return [this.elem];
};
// Class: svgedit.history.ChangeElementCommand
// implements svgedit.history.HistoryCommand
// History command to make a change to an element.
// Usually an attribute change, but can also be textcontent.
//
// Parameters:
// elem - The DOM element that was changed
// attrs - An object with the attributes to be changed and the values they had *before* the change
// text - An optional string visible to user related to this change
svgedit.history.ChangeElementCommand = function(elem, attrs, text) {
this.elem = elem;
this.text = text ? ("Change " + elem.tagName + " " + text) : ("Change " + elem.tagName);
this.newValues = {};
this.oldValues = attrs;
for (var attr in attrs) {
if (attr == "#text") this.newValues[attr] = elem.textContent;
else if (attr == "#href") this.newValues[attr] = svgedit.utilities.getHref(elem);
else this.newValues[attr] = elem.getAttribute(attr);
}
};
svgedit.history.ChangeElementCommand.type = function() { return 'svgedit.history.ChangeElementCommand'; }
svgedit.history.ChangeElementCommand.prototype.type = svgedit.history.ChangeElementCommand.type;
// Function: svgedit.history.ChangeElementCommand.getText
svgedit.history.ChangeElementCommand.prototype.getText = function() {
return this.text;
};
// Function: svgedit.history.ChangeElementCommand.apply
// Performs the stored change action
svgedit.history.ChangeElementCommand.prototype.apply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_APPLY, this);
}
var bChangedTransform = false;
for(var attr in this.newValues ) {
if (this.newValues[attr]) {
if (attr == "#text") this.elem.textContent = this.newValues[attr];
else if (attr == "#href") svgedit.utilities.setHref(this.elem, this.newValues[attr])
else this.elem.setAttribute(attr, this.newValues[attr]);
}
else {
if (attr == "#text") {
this.elem.textContent = "";
}
else {
this.elem.setAttribute(attr, "");
this.elem.removeAttribute(attr);
}
}
if (attr == "transform") { bChangedTransform = true; }
}
// relocate rotational transform, if necessary
if(!bChangedTransform) {
var angle = svgedit.utilities.getRotationAngle(this.elem);
if (angle) {
var bbox = elem.getBBox();
var cx = bbox.x + bbox.width/2,
cy = bbox.y + bbox.height/2;
var rotate = ["rotate(", angle, " ", cx, ",", cy, ")"].join('');
if (rotate != elem.getAttribute("transform")) {
elem.setAttribute("transform", rotate);
}
}
}
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_APPLY, this);
}
return true;
};
// Function: svgedit.history.ChangeElementCommand.unapply
// Reverses the stored change action
svgedit.history.ChangeElementCommand.prototype.unapply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_UNAPPLY, this);
}
var bChangedTransform = false;
for(var attr in this.oldValues ) {
if (this.oldValues[attr]) {
if (attr == "#text") this.elem.textContent = this.oldValues[attr];
else if (attr == "#href") svgedit.utilities.setHref(this.elem, this.oldValues[attr]);
else this.elem.setAttribute(attr, this.oldValues[attr]);
}
else {
if (attr == "#text") {
this.elem.textContent = "";
}
else this.elem.removeAttribute(attr);
}
if (attr == "transform") { bChangedTransform = true; }
}
// relocate rotational transform, if necessary
if(!bChangedTransform) {
var angle = svgedit.utilities.getRotationAngle(this.elem);
if (angle) {
var bbox = elem.getBBox();
var cx = bbox.x + bbox.width/2,
cy = bbox.y + bbox.height/2;
var rotate = ["rotate(", angle, " ", cx, ",", cy, ")"].join('');
if (rotate != elem.getAttribute("transform")) {
elem.setAttribute("transform", rotate);
}
}
}
// Remove transformlist to prevent confusion that causes bugs like 575.
svgedit.transformlist.removeElementFromListMap(this.elem);
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_UNAPPLY, this);
}
return true;
};
// Function: ChangeElementCommand.elements
// Returns array with element associated with this command
svgedit.history.ChangeElementCommand.prototype.elements = function() {
return [this.elem];
};
// TODO: create a 'typing' command object that tracks changes in text
// if a new Typing command is created and the top command on the stack is also a Typing
// and they both affect the same element, then collapse the two commands into one
// Class: svgedit.history.BatchCommand
// implements svgedit.history.HistoryCommand
// History command that can contain/execute multiple other commands
//
// Parameters:
// text - An optional string visible to user related to this change
svgedit.history.BatchCommand = function(text) {
this.text = text || "Batch Command";
this.stack = [];
};
svgedit.history.BatchCommand.type = function() { return 'svgedit.history.BatchCommand'; }
svgedit.history.BatchCommand.prototype.type = svgedit.history.BatchCommand.type;
// Function: svgedit.history.BatchCommand.getText
svgedit.history.BatchCommand.prototype.getText = function() {
return this.text;
};
// Function: svgedit.history.BatchCommand.apply
// Runs "apply" on all subcommands
svgedit.history.BatchCommand.prototype.apply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_APPLY, this);
}
var len = this.stack.length;
for (var i = 0; i < len; ++i) {
this.stack[i].apply(handler);
}
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_APPLY, this);
}
};
// Function: svgedit.history.BatchCommand.unapply
// Runs "unapply" on all subcommands
svgedit.history.BatchCommand.prototype.unapply = function(handler) {
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.BEFORE_UNAPPLY, this);
}
for (var i = this.stack.length-1; i >= 0; i--) {
this.stack[i].unapply(handler);
}
if (handler) {
handler.handleHistoryEvent(svgedit.history.HistoryEventTypes.AFTER_UNAPPLY, this);
}
};
// Function: svgedit.history.BatchCommand.elements
// Iterate through all our subcommands and returns all the elements we are changing
svgedit.history.BatchCommand.prototype.elements = function() {
var elems = [];
var cmd = this.stack.length;
while (cmd--) {
var thisElems = this.stack[cmd].elements();
var elem = thisElems.length;
while (elem--) {
if (elems.indexOf(thisElems[elem]) == -1) elems.push(thisElems[elem]);
}
}
return elems;
};
// Function: svgedit.history.BatchCommand.addSubCommand
// Adds a given command to the history stack
//
// Parameters:
// cmd - The undo command object to add
svgedit.history.BatchCommand.prototype.addSubCommand = function(cmd) {
this.stack.push(cmd);
};
// Function: svgedit.history.BatchCommand.isEmpty
// Returns a boolean indicating whether or not the batch command is empty
svgedit.history.BatchCommand.prototype.isEmpty = function() {
return this.stack.length == 0;
};
// Class: svgedit.history.UndoManager
// Parameters:
// historyEventHandler - an object that conforms to the HistoryEventHandler interface
// (see above)
svgedit.history.UndoManager = function(historyEventHandler) {
this.handler_ = historyEventHandler || null;
this.undoStackPointer = 0;
this.undoStack = [];
// this is the stack that stores the original values, the elements and
// the attribute name for begin/finish
this.undoChangeStackPointer = -1;
this.undoableChangeStack = [];
};
// Function: svgedit.history.UndoManager.resetUndoStack
// Resets the undo stack, effectively clearing the undo/redo history
svgedit.history.UndoManager.prototype.resetUndoStack = function() {
this.undoStack = [];
this.undoStackPointer = 0;
};
// Function: svgedit.history.UndoManager.getUndoStackSize
// Returns:
// Integer with the current size of the undo history stack
svgedit.history.UndoManager.prototype.getUndoStackSize = function() {
return this.undoStackPointer;
};
// Function: svgedit.history.UndoManager.getRedoStackSize
// Returns:
// Integer with the current size of the redo history stack
svgedit.history.UndoManager.prototype.getRedoStackSize = function() {
return this.undoStack.length - this.undoStackPointer;
};
// Function: svgedit.history.UndoManager.getNextUndoCommandText
// Returns:
// String associated with the next undo command
svgedit.history.UndoManager.prototype.getNextUndoCommandText = function() {
return this.undoStackPointer > 0 ? this.undoStack[this.undoStackPointer-1].getText() : "";
};
// Function: svgedit.history.UndoManager.getNextRedoCommandText
// Returns:
// String associated with the next redo command
svgedit.history.UndoManager.prototype.getNextRedoCommandText = function() {
return this.undoStackPointer < this.undoStack.length ? this.undoStack[this.undoStackPointer].getText() : "";
};
// Function: svgedit.history.UndoManager.undo
// Performs an undo step
svgedit.history.UndoManager.prototype.undo = function() {
if (this.undoStackPointer > 0) {
var cmd = this.undoStack[--this.undoStackPointer];
cmd.unapply(this.handler_);
}
};
// Function: svgedit.history.UndoManager.redo
// Performs a redo step
svgedit.history.UndoManager.prototype.redo = function() {
if (this.undoStackPointer < this.undoStack.length && this.undoStack.length > 0) {
var cmd = this.undoStack[this.undoStackPointer++];
cmd.apply(this.handler_);
}
};
// Function: svgedit.history.UndoManager.addCommandToHistory
// Adds a command object to the undo history stack
//
// Parameters:
// cmd - The command object to add
svgedit.history.UndoManager.prototype.addCommandToHistory = function(cmd) {
// FIXME: we MUST compress consecutive text changes to the same element
// (right now each keystroke is saved as a separate command that includes the
// entire text contents of the text element)
// TODO: consider limiting the history that we store here (need to do some slicing)
// if our stack pointer is not at the end, then we have to remove
// all commands after the pointer and insert the new command
if (this.undoStackPointer < this.undoStack.length && this.undoStack.length > 0) {
this.undoStack = this.undoStack.splice(0, this.undoStackPointer);
}
this.undoStack.push(cmd);
this.undoStackPointer = this.undoStack.length;
};
// Function: svgedit.history.UndoManager.beginUndoableChange
// This function tells the canvas to remember the old values of the
// attrName attribute for each element sent in. The elements and values
// are stored on a stack, so the next call to finishUndoableChange() will
// pop the elements and old values off the stack, gets the current values
// from the DOM and uses all of these to construct the undo-able command.
//
// Parameters:
// attrName - The name of the attribute being changed
// elems - Array of DOM elements being changed
svgedit.history.UndoManager.prototype.beginUndoableChange = function(attrName, elems) {
var p = ++this.undoChangeStackPointer;
var i = elems.length;
var oldValues = new Array(i), elements = new Array(i);
while (i--) {
var elem = elems[i];
if (elem == null) continue;
elements[i] = elem;
oldValues[i] = elem.getAttribute(attrName);
}
this.undoableChangeStack[p] = {'attrName': attrName,
'oldValues': oldValues,
'elements': elements};
};
// Function: svgedit.history.UndoManager.finishUndoableChange
// This function returns a BatchCommand object which summarizes the
// change since beginUndoableChange was called. The command can then
// be added to the command history
//
// Returns:
// Batch command object with resulting changes
svgedit.history.UndoManager.prototype.finishUndoableChange = function() {
var p = this.undoChangeStackPointer--;
var changeset = this.undoableChangeStack[p];
var i = changeset['elements'].length;
var attrName = changeset['attrName'];
var batchCmd = new svgedit.history.BatchCommand("Change " + attrName);
while (i--) {
var elem = changeset['elements'][i];
if (elem == null) continue;
var changes = {};
changes[attrName] = changeset['oldValues'][i];
if (changes[attrName] != elem.getAttribute(attrName)) {
batchCmd.addSubCommand(new svgedit.history.ChangeElementCommand(elem, changes, attrName));
}
}
this.undoableChangeStack[p] = null;
return batchCmd;
};
})();

View File

@ -1,61 +0,0 @@
filename origin
align-bottom.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-vertical-bottom.png
align-bottom.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-vertical-bottom.svg
align-center.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-horizontal-center.png
align-center.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-horizontal-center.svg
align-left.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-horizontal-left.png
align-left.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-horizontal-left.svg
align-middle.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-vertical-center.png
align-middle.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-vertical-center.svg
align-right.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-horizontal-right.png
align-right.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-horizontal-right.svg
align-top.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-vertical-top.png
align-top.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/actions/align-vertical-top.svg
bold.png
cancel.png
circle.png
clear.png
clone.png
copy.png
cut.png
delete.png
document-properties.png
dropdown.gif
ellipse.png
eye.png
flyouth.png
flyup.gif
freehand-circle.png
freehand-square.png
go-down.png
go-up.png
image.png
italic.png
line.png
logo.png
logo.svg
move_bottom.png
move_top.png
none.png
open.png
paste.png
path.png
polygon.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/tools/draw-polygon.png
polygon.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/tools/draw-polygon.svg
rect.png
redo.png
rotate.png
save.png
select.png
sep.png
shape_group.png
shape_ungroup.png
source.png
square.png
text.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/tools/draw-text.png
text.svg http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/tools/draw-text.svg
undo.png
view-refresh.png
wave.png
zoom.png http://tango.freedesktop.org/static/cvs/tango-art-libre/22x22/tools/page-magnifier.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 291 B

View File

@ -1,277 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
id="svg5741"
sodipodi:version="0.32"
inkscape:version="0.44+devel"
version="1.0"
sodipodi:docbase="/home/andreas/project/inkscape/22x22/actions"
sodipodi:docname="align-bottom-vertical.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/andreas/project/inkscape/22x22/actions/align-bottom-vertical.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="true">
<defs
id="defs5743">
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2968"
id="linearGradient6938"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient6936"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2986"
id="linearGradient6934"
gradientUnits="userSpaceOnUse"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2980"
id="linearGradient6932"
gradientUnits="userSpaceOnUse"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
id="linearGradient2968"
inkscape:collect="always">
<stop
id="stop2970"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2972"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2968"
id="linearGradient6930"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2974"
inkscape:collect="always">
<stop
id="stop2976"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2978"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient6928"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
id="linearGradient2986"
inkscape:collect="always">
<stop
id="stop2988"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2990"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2986"
id="linearGradient6926"
gradientUnits="userSpaceOnUse"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2980"
inkscape:collect="always">
<stop
id="stop2982"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2984"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2980"
id="linearGradient6924"
gradientUnits="userSpaceOnUse"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.197802"
inkscape:cx="8"
inkscape:cy="9.8019802"
inkscape:current-layer="g6828"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
width="22px"
height="22px"
inkscape:window-width="1078"
inkscape:window-height="786"
inkscape:window-x="243"
inkscape:window-y="71" />
<metadata
id="metadata5746">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g6828"
transform="translate(30.00011,90.000366)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<g
style="display:inline"
id="g6838"
transform="translate(-30.00009,-1.0002798)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3052"
width="12"
height="7"
x="69.500122"
y="12.5"
transform="matrix(0,-1,1,0,0,0)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3054"
width="10"
height="5.0000305"
x="70.500122"
y="13.5"
transform="matrix(0,-1,1,0,0,0)"
rx="0"
ry="0"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="g3056"
transform="translate(-127,-559)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
transform="matrix(0,-1,1,0,0,0)"
y="129.49626"
x="-489.49979"
height="7.0035982"
width="17.999748"
id="rect3058"
style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00024867;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
<rect
transform="matrix(0,-1,1,0,0,0)"
y="130.50006"
x="-488.50009"
height="4.9998937"
width="15.999757"
id="rect3060"
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00024891;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
rx="0"
ry="0" />
</g>
<g
id="g3294"
transform="translate(-187,-560)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
y="489.5"
x="196.49989"
height="1.9999999"
width="3.0000916"
id="rect3296"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:url(#linearGradient6932);fill-opacity:1;stroke:url(#linearGradient6934);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 197.49998,491.5 L 186.49989,491.5 L 186.49989,489.5 L 197.49998,489.5"
id="path3298"
sodipodi:nodetypes="cccc" />
<path
style="fill:url(#linearGradient6936);fill-opacity:1;stroke:url(#linearGradient6938);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 198.49989,489.5 L 209.49998,489.5 L 209.49998,491.5 L 198.49989,491.5"
id="path3300"
sodipodi:nodetypes="cccc" />
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 B

View File

@ -1,252 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
id="svg10958"
sodipodi:version="0.32"
inkscape:version="0.44+devel"
version="1.0"
sodipodi:docbase="/home/andreas/project/inkscape/22x22/actions"
sodipodi:docname="align-horisontal-center.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/andreas/project/inkscape/22x22/actions/align-horisontal-center.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="true">
<defs
id="defs10960">
<linearGradient
id="linearGradient2968"
inkscape:collect="always">
<stop
id="stop2970"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2972"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2968"
id="linearGradient4708"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-395.9999,-981)"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2974"
inkscape:collect="always">
<stop
id="stop2976"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2978"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient4706"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-395.9999,-981)"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
id="linearGradient2986"
inkscape:collect="always">
<stop
id="stop2988"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2990"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2986"
id="linearGradient4704"
gradientUnits="userSpaceOnUse"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2980"
inkscape:collect="always">
<stop
id="stop2982"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2984"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2980"
id="linearGradient4702"
gradientUnits="userSpaceOnUse"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.197802"
inkscape:cx="16"
inkscape:cy="11.460711"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
width="22px"
height="22px"
inkscape:window-width="797"
inkscape:window-height="628"
inkscape:window-x="0"
inkscape:window-y="47" />
<metadata
id="metadata10963">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g4044"
transform="matrix(0,-1,1,0,-59.999911,-168.00002)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
id="rect3851"
width="12"
height="7"
x="-76.499878"
y="-177.5"
transform="matrix(0,-1,1,0,0,0)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
transform="translate(-317,-410)"
id="g3853"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
style="display:inline">
<rect
transform="matrix(0,-1,1,0,0,0)"
y="129.49626"
x="-489.49979"
height="7.0035982"
width="17.999748"
id="rect3855"
style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00024867;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
<rect
transform="matrix(0,-1,1,0,0,0)"
y="130.50006"
x="-488.50009"
height="4.9998937"
width="15.999757"
id="rect3857"
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00024891;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
rx="0"
ry="0" />
</g>
<rect
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
id="rect3859"
width="10"
height="5.0000305"
x="-75.499878"
y="-176.5"
transform="matrix(0,-1,1,0,0,0)"
rx="0"
ry="0"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="g3861"
transform="translate(-377,-420)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
style="display:inline">
<rect
y="489.5"
x="186.49989"
height="1.9999999"
width="3.0000916"
id="rect3863"
style="fill:url(#linearGradient4702);fill-opacity:1;stroke:url(#linearGradient4704);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
y="489.5"
x="191.49989"
height="1.9999999"
width="3.0000916"
id="rect3865"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
y="489.5"
x="196.49989"
height="1.9999999"
width="3.0000916"
id="rect3867"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
y="489.5"
x="201.49989"
height="1.9999999"
width="3.0000916"
id="rect3869"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
transform="scale(-1,-1)"
y="-491.5"
x="-209.49998"
height="1.9999999"
width="3.0000916"
id="rect3871"
style="fill:url(#linearGradient4706);fill-opacity:1;stroke:url(#linearGradient4708);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 305 B

View File

@ -1,235 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
id="svg11272"
sodipodi:version="0.32"
inkscape:version="0.44+devel"
version="1.0"
sodipodi:docbase="/home/andreas/project/inkscape/22x22/actions"
sodipodi:docname="align-horisontal-left.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/andreas/project/inkscape/22x22/actions/align-horisontal-left.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="true">
<defs
id="defs11274">
<linearGradient
id="linearGradient2968"
inkscape:collect="always">
<stop
id="stop2970"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2972"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2968"
id="linearGradient4716"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2974"
inkscape:collect="always">
<stop
id="stop2976"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2978"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient4714"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
id="linearGradient2986"
inkscape:collect="always">
<stop
id="stop2988"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2990"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2986"
id="linearGradient4712"
gradientUnits="userSpaceOnUse"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2980"
inkscape:collect="always">
<stop
id="stop2982"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2984"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2980"
id="linearGradient4710"
gradientUnits="userSpaceOnUse"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.197802"
inkscape:cx="16"
inkscape:cy="14.269093"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
width="22px"
height="22px"
inkscape:window-width="797"
inkscape:window-height="628"
inkscape:window-x="0"
inkscape:window-y="47" />
<metadata
id="metadata11277">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g4065"
transform="matrix(0,-1,1,0,8.9287758e-5,51.99998)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<g
id="g3883"
transform="translate(-127,-473)"
style="fill:#d3d7cf;stroke:#888a85;display:inline"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
transform="matrix(0,1,1,0,0,0)"
y="169.5"
x="475.50012"
height="7"
width="12"
id="rect3885"
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="0"
rx="0"
transform="matrix(0,1,1,0,0,0)"
y="170.5"
x="476.50012"
height="5.0000305"
width="10"
id="rect3887"
style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g3889"
transform="translate(-97,-469)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
style="display:inline">
<rect
transform="matrix(0,-1,1,0,0,0)"
y="129.49626"
x="-489.49979"
height="7.0035982"
width="17.999748"
id="rect3891"
style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00024867;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
<rect
transform="matrix(0,-1,1,0,0,0)"
y="130.50006"
x="-488.50009"
height="4.9998937"
width="15.999757"
id="rect3893"
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00024891;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
rx="0"
ry="0" />
</g>
<g
id="g3903"
transform="translate(-157,-488)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
style="display:inline">
<rect
y="489.5"
x="196.49989"
height="1.9999999"
width="3.0000916"
id="rect3905"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:url(#linearGradient4710);fill-opacity:1;stroke:url(#linearGradient4712);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 197.49998,491.5 L 186.49989,491.5 L 186.49989,489.5 L 197.49998,489.5"
id="path3907"
sodipodi:nodetypes="cccc" />
<path
style="fill:url(#linearGradient4714);fill-opacity:1;stroke:url(#linearGradient4716);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 198.49989,489.5 L 209.49998,489.5 L 209.49998,491.5 L 198.49989,491.5"
id="path3909"
sodipodi:nodetypes="cccc" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 459 B

View File

@ -1,250 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
id="svg10625"
sodipodi:version="0.32"
inkscape:version="0.44+devel"
version="1.0"
sodipodi:docbase="/home/andreas/project/inkscape/22x22/actions"
sodipodi:docname="align-vertical-center.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/andreas/project/inkscape/22x22/actions/align-vertical-center.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="true">
<defs
id="defs10627">
<linearGradient
id="linearGradient2968"
inkscape:collect="always">
<stop
id="stop2970"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2972"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2968"
id="linearGradient6962"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-395.9999,-981)"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2974"
inkscape:collect="always">
<stop
id="stop2976"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2978"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient6960"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-395.9999,-981)"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
id="linearGradient2986"
inkscape:collect="always">
<stop
id="stop2988"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2990"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2986"
id="linearGradient6958"
gradientUnits="userSpaceOnUse"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2980"
inkscape:collect="always">
<stop
id="stop2982"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2984"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2980"
id="linearGradient6956"
gradientUnits="userSpaceOnUse"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.197802"
inkscape:cx="16"
inkscape:cy="16"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
width="22px"
height="22px"
inkscape:window-width="797"
inkscape:window-height="628"
inkscape:window-x="0"
inkscape:window-y="47" />
<metadata
id="metadata10630">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g6849"
transform="translate(-29.999893,91.000089)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1933"
width="12"
height="7"
x="73.500122"
y="42.5"
transform="matrix(0,-1,1,0,0,0)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
transform="translate(-97,-560)"
id="g2063"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
transform="matrix(0,-1,1,0,0,0)"
y="129.49626"
x="-489.49979"
height="7.0035982"
width="17.999748"
id="rect1935"
style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00024867;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
<rect
transform="matrix(0,-1,1,0,0,0)"
y="130.50006"
x="-488.50009"
height="4.9998937"
width="15.999757"
id="rect1937"
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00024891;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
rx="0"
ry="0" />
</g>
<rect
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect1939"
width="10"
height="5.0000305"
x="74.500122"
y="43.5"
transform="matrix(0,-1,1,0,0,0)"
rx="0"
ry="0"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="g2992"
transform="translate(-157,-570)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
y="489.5"
x="186.49989"
height="1.9999999"
width="3.0000916"
id="rect2994"
style="fill:url(#linearGradient6956);fill-opacity:1;stroke:url(#linearGradient6958);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
y="489.5"
x="191.49989"
height="1.9999999"
width="3.0000916"
id="rect2996"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
y="489.5"
x="196.49989"
height="1.9999999"
width="3.0000916"
id="rect2998"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
y="489.5"
x="201.49989"
height="1.9999999"
width="3.0000916"
id="rect3000"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
transform="scale(-1,-1)"
y="-491.5"
x="-209.49998"
height="1.9999999"
width="3.0000916"
id="rect3002"
style="fill:url(#linearGradient6960);fill-opacity:1;stroke:url(#linearGradient6962);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 339 B

View File

@ -1,233 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
id="svg11187"
sodipodi:version="0.32"
inkscape:version="0.44+devel"
version="1.0"
sodipodi:docbase="/home/andreas/project/inkscape/22x22/actions"
sodipodi:docname="align-horisontal-right.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="TRUE"
inkscape:export-filename="/home/andreas/project/inkscape/22x22/actions/align-horisontal-right.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<defs
id="defs11189">
<linearGradient
id="linearGradient2968"
inkscape:collect="always">
<stop
id="stop2970"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2972"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2968"
id="linearGradient4732"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2974"
inkscape:collect="always">
<stop
id="stop2976"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2978"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient4730"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
id="linearGradient2986"
inkscape:collect="always">
<stop
id="stop2988"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2990"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2986"
id="linearGradient4728"
gradientUnits="userSpaceOnUse"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2980"
inkscape:collect="always">
<stop
id="stop2982"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2984"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2980"
id="linearGradient4726"
gradientUnits="userSpaceOnUse"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.197802"
inkscape:cx="16"
inkscape:cy="16"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
width="22px"
height="22px"
inkscape:window-width="797"
inkscape:window-height="628"
inkscape:window-x="0"
inkscape:window-y="47" />
<metadata
id="metadata11192">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g4025"
transform="matrix(0,-1,1,0,-60.999914,-198.00011)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
id="rect3873"
width="12"
height="7"
x="-80.499878"
y="-207.5"
transform="matrix(0,-1,1,0,0,0)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<rect
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
id="rect3875"
width="10"
height="5.0000305"
x="-79.499878"
y="-206.5"
transform="matrix(0,-1,1,0,0,0)"
rx="0"
ry="0"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90" />
<g
id="g3877"
transform="translate(-347,-409)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
style="display:inline">
<rect
transform="matrix(0,-1,1,0,0,0)"
y="129.49626"
x="-489.49979"
height="7.0035982"
width="17.999748"
id="rect3879"
style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00024867;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
<rect
transform="matrix(0,-1,1,0,0,0)"
y="130.50006"
x="-488.50009"
height="4.9998937"
width="15.999757"
id="rect3881"
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00024891;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
rx="0"
ry="0" />
</g>
<g
id="g3919"
transform="translate(-407,-410)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
style="display:inline">
<rect
y="489.5"
x="196.49989"
height="1.9999999"
width="3.0000916"
id="rect3921"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:url(#linearGradient4726);fill-opacity:1;stroke:url(#linearGradient4728);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 197.49998,491.5 L 186.49989,491.5 L 186.49989,489.5 L 197.49998,489.5"
id="path3923"
sodipodi:nodetypes="cccc" />
<path
style="fill:url(#linearGradient4730);fill-opacity:1;stroke:url(#linearGradient4732);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 198.49989,489.5 L 209.49998,489.5 L 209.49998,491.5 L 198.49989,491.5"
id="path3925"
sodipodi:nodetypes="cccc" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 287 B

View File

@ -1,233 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
id="svg10699"
sodipodi:version="0.32"
inkscape:version="0.44+devel"
version="1.0"
sodipodi:docbase="/home/andreas/project/inkscape/22x22/actions"
sodipodi:docname="align-vertical-bottom.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/andreas/project/inkscape/22x22/actions/align-vertical-bottom.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="true">
<defs
id="defs10701">
<linearGradient
id="linearGradient2968"
inkscape:collect="always">
<stop
id="stop2970"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2972"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2968"
id="linearGradient6954"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2974"
inkscape:collect="always">
<stop
id="stop2976"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2978"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient6952"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,-1,395.9999,981)"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
<linearGradient
id="linearGradient2986"
inkscape:collect="always">
<stop
id="stop2988"
offset="0"
style="stop-color:#ce5c00;stop-opacity:1" />
<stop
id="stop2990"
offset="1"
style="stop-color:#ce5c00;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2986"
id="linearGradient6950"
gradientUnits="userSpaceOnUse"
x1="187.60938"
y1="489.35938"
x2="186.93732"
y2="489.35938" />
<linearGradient
id="linearGradient2980"
inkscape:collect="always">
<stop
id="stop2982"
offset="0"
style="stop-color:#fcaf3e;stop-opacity:1" />
<stop
id="stop2984"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2980"
id="linearGradient6948"
gradientUnits="userSpaceOnUse"
x1="187.81554"
y1="489.54688"
x2="187.1716"
y2="489.54688" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.197802"
inkscape:cx="16"
inkscape:cy="16"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:document-units="px"
width="22px"
height="22px"
inkscape:window-width="797"
inkscape:window-height="628"
inkscape:window-x="0"
inkscape:window-y="47" />
<metadata
id="metadata10704">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<g
style="display:inline"
id="g6862"
transform="translate(-59.99998,90)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<g
id="g3084"
transform="translate(-97,-563)"
style="fill:#d3d7cf;stroke:#888a85"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
transform="matrix(0,1,1,0,0,0)"
y="169.5"
x="475.50012"
height="7"
width="12"
id="rect3086"
style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
ry="0"
rx="0"
transform="matrix(0,1,1,0,0,0)"
y="170.5"
x="476.50012"
height="5.0000305"
width="10"
id="rect3088"
style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g3090"
transform="translate(-67,-559)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
transform="matrix(0,-1,1,0,0,0)"
y="129.49626"
x="-489.49979"
height="7.0035982"
width="17.999748"
id="rect3092"
style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00024867;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline" />
<rect
transform="matrix(0,-1,1,0,0,0)"
y="130.50006"
x="-488.50009"
height="4.9998937"
width="15.999757"
id="rect3094"
style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00024891;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:inline"
rx="0"
ry="0" />
</g>
<g
id="g3262"
transform="translate(-127,-578)"
inkscape:export-filename="/home/lapo/Desktop/align-distribute.tar.gz_FILES/align-stuff.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<rect
y="489.5"
x="196.49989"
height="1.9999999"
width="3.0000916"
id="rect3264"
style="fill:#fcaf3e;fill-opacity:1;stroke:#ce5c00;stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
style="fill:url(#linearGradient6948);fill-opacity:1;stroke:url(#linearGradient6950);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 197.49998,491.5 L 186.49989,491.5 L 186.49989,489.5 L 197.49998,489.5"
id="path3266"
sodipodi:nodetypes="cccc" />
<path
style="fill:url(#linearGradient6952);fill-opacity:1;stroke:url(#linearGradient6954);stroke-width:0.99999976;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
d="M 198.49989,489.5 L 209.49998,489.5 L 209.49998,491.5 L 198.49989,491.5"
id="path3268"
sodipodi:nodetypes="cccc" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Some files were not shown because too many files have changed in this diff Show More