HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<head>
<script>
/*
Random path and shape generator, flattener test base: https://jsfiddle.net/fjm9423q/embedded/result/
Basic usage example: https://jsfiddle.net/nrjvmqur/embedded/result/
Basic usage: flatten(document.getElementById('svg'));
What it does: Flattens elements (converts elements to paths and flattens transformations).
If the argument element (whose id is above 'svg') has children, or it's descendants has children,
these children elements are flattened also.
If you want to modify path coordinates using non-affine methods (eg. perspective distort),
you can convert all segments to cubic curves using:
flatten(document.getElementById('svg'), true);
There are also arguments 'toAbsolute' (convert coordinates to absolute) and 'dec',
number of digits after decimal separator.
*/
/*
The MIT License (MIT)
Copyright (c) 2014 Timo (https://github.com/timo22345)
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.
*/
SVGElement.prototype.getTransformToElement = SVGElement.prototype.getTransformToElement || function(toElement) {
return toElement.getScreenCTM().inverse().multiply(this.getScreenCTM());
};
(function ()
{
var p2s = /,?([achlmqrstvxz]),?/gi;
var convertToString = function (arr)
{
return arr.join(',').replace(p2s, '$1');
};
// Flattens transformations of element or it's children and sub-children
// elem: DOM element
// toCubics: converts all segments to cubics
// toAbsolute: converts all segments to Absolute
// dec: number of digits after decimal separator
// Returns: no return value
function flatten(elem, toCubics, toAbsolute, rectAsArgs, dec)
{
if (!elem) return;
if (typeof (rectAsArgs) == 'undefined') rectAsArgs = false;
if (typeof (toCubics) == 'undefined') toCubics = false;
if (typeof (toAbsolute) == 'undefined') toAbsolute = false;
if (typeof (dec) == 'undefined') dec = false;
if (elem && elem.children && elem.children.length)
{
for (var i = 0, ilen = elem.children.length; i < ilen; i++)
{
//console.log(elem.children[i]);
flatten(elem.children[i], toCubics, toAbsolute, rectAsArgs, dec);
}
elem.removeAttribute('transform');
return;
}
if (!(elem instanceof SVGCircleElement ||
elem instanceof SVGRectElement ||
elem instanceof SVGEllipseElement ||
elem instanceof SVGLineElement ||
elem instanceof SVGPolygonElement ||
elem instanceof SVGPolylineElement ||
elem instanceof SVGPathElement)) return;
path_elem = convertToPath(elem, rectAsArgs);
//console.log('path_elem', $(path_elem).wrap('<div />').parent().html() );
//$(path_elem).unwrap();
if (!path_elem || path_elem.getAttribute(d) == '') return 'M 0 0';
// Rounding coordinates to dec decimals
if (dec || dec === 0)
{
if (dec > 15) dec = 15;
else if (dec < 0) dec = 0;
}
else dec = false;
function r(num)
{
if (dec !== false) return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec);
else return num;
}
var arr;
//var pathDOM = path_elem.node;
var pathDOM = path_elem;
var d = pathDOM.getAttribute('d').trim();
// If you want to retain current path commans, set toCubics to false
if (!toCubics)
{ // Set to false to prevent possible re-normalization.
arr = parsePathString(d); // str to array
var arr_orig = arr;
arr = pathToAbsolute(arr); // mahvstcsqz -> uppercase
}
// If you want to modify path data using nonAffine methods,
// set toCubics to true
else
{
arr = path2curve(d); // mahvstcsqz -> MC
var arr_orig = arr;
}
var svgDOM = pathDOM.ownerSVGElement;
// Get the relation matrix that converts path coordinates
// to SVGroot's coordinate space
var matrix = pathDOM.getTransformToElement(svgDOM);
// The following code can bake transformations
// both normalized and non-normalized data
// Coordinates have to be Absolute in the following
var i = 0,
j, m = arr.length,
letter = '',
letter_orig = '',
x = 0,
y = 0,
point, newcoords = [],
newcoords_orig = [],
pt = svgDOM.createSVGPoint(),
subpath_start = {}, prevX = 0,
prevY = 0;
subpath_start.x = null;
subpath_start.y = null;
for (; i < m; i++)
{
letter = arr[i][0].toUpperCase();
letter_orig = arr_orig[i][0];
newcoords[i] = [];
newcoords[i][0] = arr[i][0];
if (letter == 'A')
{
x = arr[i][6];
y = arr[i][7];
pt.x = arr[i][6];
pt.y = arr[i][7];
newcoords[i] = arc_transform(arr[i][1], arr[i][2], arr[i][3], arr[i][4], arr[i][5], pt, matrix);
// rounding arc parameters
// x,y are rounded normally
// other parameters at least to 5 decimals
// because they affect more than x,y rounding
newcoords[i][1] = newcoords[i][1]; //rx
newcoords[i][2] = newcoords[i][2]; //ry
newcoords[i][3] = newcoords[i][3]; //x-axis-rotation
newcoords[i][6] = newcoords[i][6]; //x
newcoords[i][7] = newcoords[i][7]; //y
}
else if (letter != 'Z')
{
// parse other segs than Z and A
for (j = 1; j < arr[i].length; j = j + 2)
{
if (letter == 'V') y = arr[i][j];
else if (letter == 'H') x = arr[i][j];
else
{
x = arr[i][j];
y = arr[i][j + 1];
}
pt.x = x;
pt.y = y;
point = pt.matrixTransform(matrix);
if (letter == 'V' || letter == 'H')
{
newcoords[i][0] = 'L';
newcoords[i][j] = point.x;
newcoords[i][j + 1] = point.y;
}
else
{
newcoords[i][j] = point.x;
newcoords[i][j + 1] = point.y;
}
}
}
if ((letter != 'Z' && subpath_start.x === null) || letter == 'M')
{
subpath_start.x = x;
subpath_start.y = y;
}
if (letter == 'Z')
{
x = subpath_start.x;
y = subpath_start.y;
}
}
// Convert all that was relative back to relative
// This could be combined to above, but to make code more readable
// this is made separately.
var prevXtmp = 0;
var prevYtmp = 0;
subpath_start.x = '';
for (i = 0; i < newcoords.length; i++)
{
letter_orig = arr_orig[i][0];
if (letter_orig == 'A' || letter_orig == 'M' || letter_orig == 'L' || letter_orig == 'C' || letter_orig == 'S' || letter_orig == 'Q' || letter_orig == 'T' || letter_orig == 'H' || letter_orig == 'V')
{
var len = newcoords[i].length;
var lentmp = len;
if (letter_orig == 'A')
{
newcoords[i][6] = r(newcoords[i][6]);
newcoords[i][7] = r(newcoords[i][7]);
}
else
{
lentmp--;
while (--lentmp) newcoords[i][lentmp] = r(newcoords[i][lentmp]);
}
prevX = newcoords[i][len - 2];
prevY = newcoords[i][len - 1];
}
else
if (letter_orig == 'a')
{
prevXtmp = newcoords[i][6];
prevYtmp = newcoords[i][7];
newcoords[i][0] = letter_orig;
newcoords[i][6] = r(newcoords[i][6] - prevX);
newcoords[i][7] = r(newcoords[i][7] - prevY);
prevX = prevXtmp;
prevY = prevYtmp;
}
else
if (letter_orig == 'm' || letter_orig == 'l' || letter_orig == 'c' || letter_orig == 's' || letter_orig == 'q' || letter_orig == 't' || letter_orig == 'h' || letter_orig == 'v')
{
var len = newcoords[i].length;
prevXtmp = newcoords[i][len - 2];
prevYtmp = newcoords[i][len - 1];
for (j = 1; j < len; j = j + 2)
{
if (letter_orig == 'h' || letter_orig == 'v')
newcoords[i][0] = 'l';
else newcoords[i][0] = letter_orig;
newcoords[i][j] = r(newcoords[i][j] - prevX);
newcoords[i][j + 1] = r(newcoords[i][j + 1] - prevY);
}
prevX = prevXtmp;
prevY = prevYtmp;
}
if ((letter_orig.toLowerCase() != 'z' && subpath_start.x == '') || letter_orig.toLowerCase() == 'm')
{
subpath_start.x = prevX;
subpath_start.y = prevY;
}
if (letter_orig.toLowerCase() == 'z')
{
prevX = subpath_start.x;
prevY = subpath_start.y;
}
}
if (toAbsolute) newcoords = pathToAbsolute(newcoords);
path_elem.setAttribute('d', convertToString(newcoords));
path_elem.removeAttribute('transform');
}
// Converts all shapes to path retaining attributes.
// oldElem - DOM element to be replaced by path. Can be one of the following:
// ellipse, circle, path, line, polyline, polygon and rect.
// rectAsArgs - Boolean. If true, rect roundings will be as arcs. Otherwise as cubics.
// Return value: path element.
// Source: https://github.com/duopixel/Method-Draw/blob/master/editor/src/svgcanvas.js
// Modifications: Timo (https://github.com/timo22345)
function convertToPath(oldElem, rectAsArgs)
{
if (!oldElem) return;
// Create new path element
var path = document.createElementNS(oldElem.ownerSVGElement.namespaceURI, 'path');
// All attributes that path element can have
var attrs = ['requiredFeatures', 'requiredExtensions', 'systemLanguage', 'id', 'xml:base', 'xml:lang', 'xml:space', 'onfocusin', 'onfocusout', 'onactivate', 'onclick', 'onmousedown', 'onmouseup', 'onmouseover', 'onmousemove', 'onmouseout', 'onload', 'alignment-baseline', 'baseline-shift', 'clip', 'clip-path', 'clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cursor', 'direction', 'display', 'dominant-baseline', 'enable-background', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'glyph-orientation-horizontal', 'glyph-orientation-vertical', 'image-rendering', 'kerning', 'letter-spacing', 'lighting-color', 'marker-end', 'marker-mid', 'marker-start', 'mask', 'opacity', 'overflow', 'pointer-events', 'shape-rendering', 'stop-color', 'stop-opacity', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'text-anchor', 'text-decoration', 'text-rendering', 'unicode-bidi', 'visibility', 'word-spacing', 'writing-mode', 'class', 'style', 'externalResourcesRequired', 'transform', 'd', 'pathLength'];
// Copy attributes of oldElem to path
var attrName, attrValue;
for (var i = 0, ilen = attrs.length; i < ilen; i++)
{
var attrName = attrs[i];
var attrValue = oldElem.getAttribute(attrName);
if (attrValue) path.setAttribute(attrName, attrValue);
}
var d = '';
var valid = function (val)
{
return !(typeof (val) !== 'number' || val == Infinity || val < 0);
}
// Possibly the cubed root of 6, but 1.81 works best
var num = 1.81;
var tag = oldElem.tagName;
switch (tag)
{
case 'ellipse':
case 'circle':
var rx = +oldElem.getAttribute('rx'),
ry = +oldElem.getAttribute('ry'),
cx = +oldElem.getAttribute('cx'),
cy = +oldElem.getAttribute('cy');
if (tag == 'circle')
{
rx = ry = +oldElem.getAttribute('r');
}
d += convertToString([
['M', (cx - rx), (cy)],
['C', (cx - rx), (cy - ry / num), (cx - rx / num), (cy - ry), (cx), (cy - ry)],
['C', (cx + rx / num), (cy - ry), (cx + rx), (cy - ry / num), (cx + rx), (cy)],
['C', (cx + rx), (cy + ry / num), (cx + rx / num), (cy + ry), (cx), (cy + ry)],
['C', (cx - rx / num), (cy + ry), (cx - rx), (cy + ry / num), (cx - rx), (cy)],
['Z']
]);
break;
case 'path':
d = oldElem.getAttribute('d');
break;
case 'line':
var x1 = oldElem.getAttribute('x1'),
y1 = oldElem.getAttribute('y1');
x2 = oldElem.getAttribute('x2');
y2 = oldElem.getAttribute('y2');
d = 'M' + x1 + ',' + y1 + 'L' + x2 + ',' + y2;
break;
case 'polyline':
d = 'M' + oldElem.getAttribute('points');
break;
case 'polygon':
d = 'M' + oldElem.getAttribute('points') + 'Z';
break;
case 'rect':
var rx = +oldElem.getAttribute('rx'),
ry = +oldElem.getAttribute('ry'),
b = oldElem.getBBox(),
x = b.x,
y = b.y,
w = b.width,
h = b.height;
// Validity checks from http://www.w3.org/TR/SVG/shapes.html#RectElement:
// If neither ‘rx’ nor ‘ry’ are properly specified, then set both rx and ry to 0. (This will result in square corners.)
if (!valid(rx) && !valid(ry)) rx = ry = 0;
// Otherwise, if a properly specified value is provided for ‘rx’, but not for ‘ry’, then set both rx and ry to the value of ‘rx’.
else if (valid(rx) && !valid(ry)) ry = rx;
// Otherwise, if a properly specified value is provided for ‘ry’, but not for ‘rx’, then set both rx and ry to the value of ‘ry’.
else if (valid(ry) && !valid(rx)) rx = ry;
else
{
// If rx is greater than half of ‘width’, then set rx to half of ‘width’.
if (rx > w / 2) rx = w / 2;
// If ry is greater than half of ‘height’, then set ry to half of ‘height’.
if (ry > h / 2) ry = h / 2;
}
if (!rx && !ry)
{
d += convertToString([
['M', x, y],
['L', x + w, y],
['L', x + w, y + h],
['L', x, y + h],
['L', x, y],
['Z']
]);
}
else if (rectAsArgs)
{
d += convertToString([
['M', x + rx, y],
['H', x + w - rx],
['A', rx, ry, 0, 0, 1, x + w, y + ry],
['V', y + h - ry],
['A', rx, ry, 0, 0, 1, x + w - rx, y + h],
['H', x + rx],
['A', rx, ry, 0, 0, 1, x, y + h - ry],
['V', y + ry],
['A', rx, ry, 0, 0, 1, x + rx, y]
]);
}
else
{
var num = 2.19;
if (!ry) ry = rx
d += convertToString([
['M', x, y + ry],
['C', x, y + ry / num, x + rx / num, y, x + rx, y],
['L', x + w - rx, y],
['C', x + w - rx / num, y, x + w, y + ry / num, x + w, y + ry],
['L', x + w, y + h - ry],
['C', x + w, y + h - ry / num, x + w - rx / num, y + h, x + w - rx, y + h],
['L', x + rx, y + h],
['C', x + rx / num, y + h, x, y + h - ry / num, x, y + h - ry],
['L', x, y + ry],
['Z']
]);
}
break;
default:
//path.parentNode.removeChild(path);
break;
}
if (d) path.setAttribute('d', d);
// Replace the current element with the converted one
oldElem.parentNode.replaceChild(path, oldElem);
return path;
};
// This is needed to flatten transformations of elliptical arcs
// Note! This is not needed if Raphael.path2curve is used
function arc_transform(a_rh, a_rv, a_offsetrot, large_arc_flag, sweep_flag, endpoint, matrix, svgDOM)
{
function NEARZERO(B)
{
if (Math.abs(B) < 0.0000000000000001) return true;
else return false;
}
var rh, rv, rot;
var m = []; // matrix representation of transformed ellipse
var s, c; // sin and cos helpers (the former offset rotation)
var A, B, C; // ellipse implicit equation:
var ac, A2, C2; // helpers for angle and halfaxis-extraction.
rh = a_rh;
rv = a_rv;
a_offsetrot = a_offsetrot * (Math.PI / 180); // deg->rad
rot = a_offsetrot;
s = parseFloat(Math.sin(rot));
c = parseFloat(Math.cos(rot));
// build ellipse representation matrix (unit circle transformation).
// the 2x2 matrix multiplication with the upper 2x2 of a_mat is inlined.
m[0] = matrix.a * +rh * c + matrix.c * rh * s;
m[1] = matrix.b * +rh * c + matrix.d * rh * s;
m[2] = matrix.a * -rv * s + matrix.c * rv * c;
m[3] = matrix.b * -rv * s + matrix.d * rv * c;
// to implict equation (centered)
A = (m[0] * m[0]) + (m[2] * m[2]);
C = (m[1] * m[1]) + (m[3] * m[3]);
B = (m[0] * m[1] + m[2] * m[3]) * 2.0;
// precalculate distance A to C
ac = A - C;
// convert implicit equation to angle and halfaxis:
if (NEARZERO(B))
{
a_offsetrot = 0;
A2 = A;
C2 = C;
}
else
{
if (NEARZERO(ac))
{
A2 = A + B * 0.5;
C2 = A - B * 0.5;
a_offsetrot = Math.PI / 4.0;
}
else
{
// Precalculate radical:
var K = 1 + B * B / (ac * ac);
// Clamp (precision issues might need this.. not likely, but better save than sorry)
if (K < 0) K = 0;
else K = Math.sqrt(K);
A2 = 0.5 * (A + C + K * ac);
C2 = 0.5 * (A + C - K * ac);
a_offsetrot = 0.5 * Math.atan2(B, ac);
}
}
// This can get slightly below zero due to rounding issues.
// it's save to clamp to zero in this case (this yields a zero length halfaxis)
if (A2 < 0) A2 = 0;
else A2 = Math.sqrt(A2);
if (C2 < 0) C2 = 0;
else C2 = Math.sqrt(C2);
// now A2 and C2 are half-axis:
if (ac <= 0)
{
a_rv = A2;
a_rh = C2;
}
else
{
a_rv = C2;
a_rh = A2;
}
// If the transformation matrix contain a mirror-component
// winding order of the ellise needs to be changed.
if ((matrix.a * matrix.d) - (matrix.b * matrix.c) < 0)
{
if (!sweep_flag) sweep_flag = 1;
else sweep_flag = 0;
}
// Finally, transform arc endpoint. This takes care about the
// translational part which we ignored at the whole math-showdown above.
endpoint = endpoint.matrixTransform(matrix);
// Radians back to degrees
a_offsetrot = a_offsetrot * 180 / Math.PI;
var r = ['A', a_rh, a_rv, a_offsetrot, large_arc_flag, sweep_flag, endpoint.x, endpoint.y];
return r;
}
// Parts of Raphaël 2.1.0 (MIT licence: http://raphaeljs.com/license.html)
// Contains eg. bugfixed path2curve() function
var R = {};
var has = 'hasOwnProperty';
var Str = String;
var array = 'array';
var isnan = {
'NaN': 1,
'Infinity': 1,
'-Infinity': 1
};
var lowerCase = Str.prototype.toLowerCase;
var upperCase = Str.prototype.toUpperCase;
var objectToString = Object.prototype.toString;
var concat = 'concat';
var split = 'split';
var apply = 'apply';
var math = Math,
mmax = math.max,
mmin = math.min,
abs = math.abs,
pow = math.pow,
PI = math.PI,
round = math.round,
toFloat = parseFloat,
toInt = parseInt;
var p2s = /,?([achlmqrstvxz]),?/gi;
var pathCommand = /([achlmrqstvz])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/ig;
var pathValues = /(-?\d*\.?\d*(?:e[\-+]?\d+)?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/ig;
R.is = function (o, type)
{
type = lowerCase.call(type);
if (type == 'finite')
{
return !isnan[has](+o);
}
if (type == 'array')
{
return o instanceof Array;
}
return type == 'null' && o === null || type == typeof o && o !== null || type == 'object' && o === Object(o) || type == 'array' && Array.isArray && Array.isArray(o) || objectToString.call(o).slice(8, -1).toLowerCase() == type
};
function clone(obj)
{
if (Object(obj) !== obj)
{
return obj;
}
var res = new obj.constructor;
for (var key in obj)
{
if (obj[has](key))
{
res[key] = clone(obj[key]);
}
}
return res;
}
R._path2string = function ()
{
return this.join(',').replace(p2s, '$1');
};
function repush(array, item)
{
for (var i = 0, ii = array.length; i < ii; i++)
if (array[i] === item)
{
return array.push(array.splice(i, 1)[0]);
}
}
var pathClone = function (pathArray)
{
var res = clone(pathArray);
res.toString = R._path2string;
return res;
};
var paths = function (ps)
{
var p = paths.ps = paths.ps ||
{};
if (p[ps]) p[ps].sleep = 100;
else p[ps] = {
sleep: 100
};
setTimeout(function ()
{
for (var key in p)
{
if (p[has](key) && key != ps)
{
p[key].sleep--;
!p[key].sleep && delete p[key];
}
}
});
return p[ps];
};
function catmullRom2bezier(crp, z)
{
var d = [];
for (var i = 0, iLen = crp.length; iLen - 2 * !z > i; i += 2)
{
var p = [
{
x: +crp[i - 2],
y: +crp[i - 1]
},
{
x: +crp[i],
y: +crp[i + 1]
},
{
x: +crp[i + 2],
y: +crp[i + 3]
},
{
x: +crp[i + 4],
y: +crp[i + 5]
}];
if (z)
{
if (!i)
{
p[0] = {
x: +crp[iLen - 2],
y: +crp[iLen - 1]
};
}
else
{
if (iLen - 4 == i)
{
p[3] = {
x: +crp[0],
y: +crp[1]
};
}
else
{
if (iLen - 2 == i)
{
p[2] = {
x: +crp[0],
y: +crp[1]
};
p[3] = {
x: +crp[2],
y: +crp[3]
};
}
}
}
}
else
{
if (iLen - 4 == i)
{
p[3] = p[2];
}
else
{
if (!i)
{
p[0] = {
x: +crp[i],
y: +crp[i + 1]
};
}
}
}
d.push(['C', (-p[0].x + 6 * p[1].x + p[2].x) / 6, (-p[0].y + 6 * p[1].y + p[2].y) / 6, (p[1].x + 6 * p[2].x - p[3].x) / 6, (p[1].y + 6 * p[2].y - p[3].y) / 6, p[2].x, p[2].y])
}
return d
};
var parsePathString = function (pathString)
{
if (!pathString) return null;
var pth = paths(pathString);
if (pth.arr) return pathClone(pth.arr)
var paramCounts = {
a: 7,
c: 6,
h: 1,
l: 2,
m: 2,
r: 4,
q: 4,
s: 4,
t: 2,
v: 1,
z: 0
}, data = [];
if (R.is(pathString, array) && R.is(pathString[0], array)) data = pathClone(pathString);
if (!data.length)
{
Str(pathString).replace(pathCommand, function (a, b, c)
{
var params = [],
name = b.toLowerCase();
c.replace(pathValues, function (a, b)
{
b && params.push(+b);
});
if (name == 'm' && params.length > 2)
{
data.push([b][concat](params.splice(0, 2)));
name = 'l';
b = b == 'm' ? 'l' : 'L'
}
if (name == 'r') data.push([b][concat](params))
else
{
while (params.length >= paramCounts[name])
{
data.push([b][concat](params.splice(0, paramCounts[name])));
if (!paramCounts[name]) break;
}
}
})
}
data.toString = R._path2string;
pth.arr = pathClone(data);
return data;
};
function repush(array, item)
{
for (var i = 0, ii = array.length; i < ii; i++)
if (array[i] === item)
{
return array.push(array.splice(i, 1)[0]);
}
}
var pathToAbsolute = cacher(function (pathArray)
{
//var pth = paths(pathArray); // Timo: commented to prevent multiple caching
// for some reason only FF proceed correctly
// when not cached using cacher() around
// this function.
//if (pth.abs) return pathClone(pth.abs)
if (!R.is(pathArray, array) || !R.is(pathArray && pathArray[0], array))
pathArray = parsePathString(pathArray)
if (!pathArray || !pathArray.length) return [['M', 0, 0]];
var res = [],
x = 0,
y = 0,
mx = 0,
my = 0,
start = 0;
if (pathArray[0][0] == 'M')
{
x = +pathArray[0][1];
y = +pathArray[0][2];
mx = x;
my = y;
start++;
res[0] = ['M', x, y];
}
var crz = pathArray.length == 3 && pathArray[0][0] == 'M' && pathArray[1][0].toUpperCase() == 'R' && pathArray[2][0].toUpperCase() == 'Z';
for (var r, pa, i = start, ii = pathArray.length; i < ii; i++)
{
res.push(r = []);
pa = pathArray[i];
if (pa[0] != upperCase.call(pa[0]))
{
r[0] = upperCase.call(pa[0]);
switch (r[0])
{
case 'A':
r[1] = pa[1];
r[2] = pa[2];
r[3] = pa[3];
r[4] = pa[4];
r[5] = pa[5];
r[6] = +(pa[6] + x);
r[7] = +(pa[7] + y);
break;
case 'V':
r[1] = +pa[1] + y;
break;
case 'H':
r[1] = +pa[1] + x;
break;
case 'R':
var dots = [x, y][concat](pa.slice(1));
for (var j = 2, jj = dots.length; j < jj; j++)
{
dots[j] = +dots[j] + x;
dots[++j] = +dots[j] + y
}
res.pop();
res = res[concat](catmullRom2bezier(dots, crz));
break;
case 'M':
mx = +pa[1] + x;
my = +pa[2] + y;
default:
for (j = 1, jj = pa.length; j < jj; j++)
r[j] = +pa[j] + (j % 2 ? x : y)
}
}
else
{
if (pa[0] == 'R')
{
dots = [x, y][concat](pa.slice(1));
res.pop();
res = res[concat](catmullRom2bezier(dots, crz));
r = ['R'][concat](pa.slice(-2));
}
else
{
for (var k = 0, kk = pa.length; k < kk; k++)
r[k] = pa[k]
}
}
switch (r[0])
{
case 'Z':
x = mx;
y = my;
break;
case 'H':
x = r[1];
break;
case 'V':
y = r[1];
break;
case 'M':
mx = r[r.length - 2];
my = r[r.length - 1];
default:
x = r[r.length - 2];
y = r[r.length - 1];
}
}
res.toString = R._path2string;
//pth.abs = pathClone(res);
return res;
});
function cacher(f, scope, postprocessor)
{
function newf()
{
var arg = Array.prototype.slice.call(arguments, 0),
args = arg.join('\u2400'),
cache = newf.cache = newf.cache ||
{}, count = newf.count = newf.count || [];
if (cache.hasOwnProperty(args))
{
for (var i = 0, ii = count.length; i < ii; i++)
if (count[i] === args)
{
count.push(count.splice(i, 1)[0]);
}
return postprocessor ? postprocessor(cache[args]) : cache[args];
}
count.length >= 1E3 && delete cache[count.shift()];
count.push(args);
cache[args] = f.apply(scope, arg);
return postprocessor ? postprocessor(cache[args]) : cache[args];
}
return newf;
}
var l2c = function (x1, y1, x2, y2)
{
return [x1, y1, x2, y2, x2, y2];
},
q2c = function (x1, y1, ax, ay, x2, y2)
{
var _13 = 1 / 3,
_23 = 2 / 3;
return [_13 * x1 + _23 * ax, _13 * y1 + _23 * ay, _13 * x2 + _23 * ax, _13 * y2 + _23 * ay, x2, y2]
},
a2c = cacher(function (x1, y1, rx, ry, angle, large_arc_flag, sweep_flag, x2, y2, recursive)
{
var _120 = PI * 120 / 180,
rad = PI / 180 * (+angle || 0),
res = [],
xy,
rotate = cacher(function (x, y, rad)
{
var X = x * Math.cos(rad) - y * Math.sin(rad),
Y = x * Math.sin(rad) + y * Math.cos(rad);
return {
x: X,
y: Y
};
});
if (!recursive)
{
xy = rotate(x1, y1, -rad);
x1 = xy.x;
y1 = xy.y;
xy = rotate(x2, y2, -rad);
x2 = xy.x;
y2 = xy.y;
var cos = Math.cos(PI / 180 * angle),
sin = Math.sin(PI / 180 * angle),
x = (x1 - x2) / 2,
y = (y1 - y2) / 2;
var h = x * x / (rx * rx) + y * y / (ry * ry);
if (h > 1)
{
h = Math.sqrt(h);
rx = h * rx;
ry = h * ry;
}
var rx2 = rx * rx,
ry2 = ry * ry,
k = (large_arc_flag == sweep_flag ? -1 : 1) * Math.sqrt(Math.abs((rx2 * ry2 - rx2 * y * y - ry2 * x * x) / (rx2 * y * y + ry2 * x * x))),
cx = k * rx * y / ry + (x1 + x2) / 2,
cy = k * -ry * x / rx + (y1 + y2) / 2,
f1 = Math.asin(((y1 - cy) / ry).toFixed(9)),
f2 = Math.asin(((y2 - cy) / ry).toFixed(9));
f1 = x1 < cx ? PI - f1 : f1;
f2 = x2 < cx ? PI - f2 : f2;
f1 < 0 && (f1 = PI * 2 + f1);
f2 < 0 && (f2 = PI * 2 + f2);
if (sweep_flag && f1 > f2)
{
f1 = f1 - PI * 2;
}
if (!sweep_flag && f2 > f1)
{
f2 = f2 - PI * 2;
}
}
else
{
f1 = recursive[0];
f2 = recursive[1];
cx = recursive[2];
cy = recursive[3];
}
var df = f2 - f1;
if (Math.abs(df) > _120)
{
var f2old = f2,
x2old = x2,
y2old = y2;
f2 = f1 + _120 * (sweep_flag && f2 > f1 ? 1 : -1);
x2 = cx + rx * Math.cos(f2);
y2 = cy + ry * Math.sin(f2);
res = a2c(x2, y2, rx, ry, angle, 0, sweep_flag, x2old, y2old, [f2, f2old, cx, cy])
}
df = f2 - f1;
var c1 = Math.cos(f1),
s1 = Math.sin(f1),
c2 = Math.cos(f2),
s2 = Math.sin(f2),
t = Math.tan(df / 4),
hx = 4 / 3 * rx * t,
hy = 4 / 3 * ry * t,
m1 = [x1, y1],
m2 = [x1 + hx * s1, y1 - hy * c1],
m3 = [x2 + hx * s2, y2 - hy * c2],
m4 = [x2, y2];
m2[0] = 2 * m1[0] - m2[0];
m2[1] = 2 * m1[1] - m2[1];
if (recursive) return [m2, m3, m4].concat(res);
else
{
res = [m2, m3, m4].concat(res).join().split(',');
var newres = [];
for (var i = 0, ii = res.length; i < ii; i++)
newres[i] = i % 2 ? rotate(res[i - 1], res[i], rad).y : rotate(res[i], res[i + 1], rad).x
return newres
}
});
var path2curve = cacher(function (path, path2)
{
var pth = !path2 && paths(path);
if (!path2 && pth.curve) return pathClone(pth.curve)
var p = pathToAbsolute(path),
p2 = path2 && pathToAbsolute(path2),
attrs = {
x: 0,
y: 0,
bx: 0,
by: 0,
X: 0,
Y: 0,
qx: null,
qy: null
},
attrs2 = {
x: 0,
y: 0,
bx: 0,
by: 0,
X: 0,
Y: 0,
qx: null,
qy: null
},
processPath = function (path, d, pcom)
{
var nx, ny;
if (!path)
{
return ['C', d.x, d.y, d.x, d.y, d.x, d.y];
}!(path[0] in
{
T: 1,
Q: 1
}) && (d.qx = d.qy = null);
switch (path[0])
{
case 'M':
d.X = path[1];
d.Y = path[2];
break;
case 'A':
path = ['C'][concat](a2c[apply](0, [d.x, d.y][concat](path.slice(1))));
break;
case 'S':
if (pcom == 'C' || pcom == 'S')
{
nx = d.x * 2 - d.bx;
ny = d.y * 2 - d.by;
}
else
{
nx = d.x;
ny = d.y;
}
path = ['C', nx, ny][concat](path.slice(1));
break;
case 'T':
if (pcom == 'Q' || pcom == 'T')
{
d.qx = d.x * 2 - d.qx;
d.qy = d.y * 2 - d.qy;
}
else
{
d.qx = d.x;
d.qy = d.y;
}
path = ['C'][concat](q2c(d.x, d.y, d.qx, d.qy, path[1], path[2]));
break;
case 'Q':
d.qx = path[1];
d.qy = path[2];
path = ['C'][concat](q2c(d.x, d.y, path[1], path[2], path[3], path[4]));
break;
case 'L':
path = ['C'][concat](l2c(d.x, d.y, path[1], path[2]));
break;
case 'H':
path = ['C'][concat](l2c(d.x, d.y, path[1], d.y));
break;
case 'V':
path = ['C'][concat](l2c(d.x, d.y, d.x, path[1]));
break;
case 'Z':
path = ['C'][concat](l2c(d.x, d.y, d.X, d.Y));
break
}
return path
},
fixArc = function (pp, i)
{
if (pp[i].length > 7)
{
pp[i].shift();
var pi = pp[i];
while (pi.length)
{
pcoms1[i] = 'A';
p2 && (pcoms2[i] = 'A');
pp.splice(i++, 0, ['C'][concat](pi.splice(0, 6)));
}
pp.splice(i, 1);
ii = mmax(p.length, p2 && p2.length || 0);
}
},
fixM = function (path1, path2, a1, a2, i)
{
if (path1 && path2 && path1[i][0] == 'M' && path2[i][0] != 'M')
{
path2.splice(i, 0, ['M', a2.x, a2.y]);
a1.bx = 0;
a1.by = 0;
a1.x = path1[i][1];
a1.y = path1[i][2];
ii = mmax(p.length, p2 && p2.length || 0);
}
},
pcoms1 = [],
pcoms2 = [],
pfirst = '',
pcom = '';
for (var i = 0, ii = mmax(p.length, p2 && p2.length || 0); i < ii; i++)
{
p[i] && (pfirst = p[i][0]);
if (pfirst != 'C')
{
pcoms1[i] = pfirst;
i && (pcom = pcoms1[i - 1]);
}
p[i] = processPath(p[i], attrs, pcom);
if (pcoms1[i] != 'A' && pfirst == 'C') pcoms1[i] = 'C';
fixArc(p, i);
if (p2)
{
p2[i] && (pfirst = p2[i][0]);
if (pfirst != 'C')
{
pcoms2[i] = pfirst;
i && (pcom = pcoms2[i - 1]);
}
p2[i] = processPath(p2[i], attrs2, pcom);
if (pcoms2[i] != 'A' && pfirst == 'C') pcoms2[i] = 'C'
fixArc(p2, i);
}
fixM(p, p2, attrs, attrs2, i);
fixM(p2, p, attrs2, attrs, i);
var seg = p[i],
seg2 = p2 && p2[i],
seglen = seg.length,
seg2len = p2 && seg2.length;
attrs.x = seg[seglen - 2];
attrs.y = seg[seglen - 1];
attrs.bx = toFloat(seg[seglen - 4]) || attrs.x;
attrs.by = toFloat(seg[seglen - 3]) || attrs.y;
attrs2.bx = p2 && (toFloat(seg2[seg2len - 4]) || attrs2.x);
attrs2.by = p2 && (toFloat(seg2[seg2len - 3]) || attrs2.y);
attrs2.x = p2 && seg2[seg2len - 2];
attrs2.y = p2 && seg2[seg2len - 1];
}
if (!p2) pth.curve = pathClone(p);
return p2 ? [p, p2] : p
}, null, pathClone);
// Export function
window.flatten = flatten;
})();
</script>
</head>
<h1> Converted SVG</h1>
<p> Converts complex svg's into simple path based svg</p>
<hr>
<?---* Input the SVG here add id="svg" and it will be converted ---?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="137" height="45" viewBox="0 0 137 45" id="svg" >
<defs>
<rect id="warning-button-(left-capsule)-a" width="137" height="45"/>
</defs>
<g fill="none" fill-rule="evenodd">
<mask id="warning-button-(left-capsule)-b" fill="#fff">
<use xlink:href="#warning-button-(left-capsule)-a"/>
</mask>
<rect width="273" height="45" fill="#FFAE00" mask="url(#warning-button-(left-capsule)-b)" rx="22.5" transform="matrix(-1 0 0 1 273 0)"/>
<path fill="#FFF" d="M32.099201,17.7184003 L32.099201,28 L38.8384008,28 L38.8384008,27.1648 L33.078401,27.1648 L33.078401,17.7184003 L32.099201,17.7184003 Z M45.0016007,23.7664001 C44.9920006,23.4207984 44.9320012,23.0896017 44.8216007,22.7728001 C44.7112001,22.4559986 44.5552017,22.1752014 44.3536007,21.9304002 C44.1519997,21.6855989 43.9072021,21.4888009 43.6192007,21.3400002 C43.3311993,21.1911994 43.0048025,21.1168002 42.6400007,21.1168002 C42.2655989,21.1168002 41.9344022,21.1911994 41.6464008,21.3400002 C41.3583993,21.4888009 41.1136018,21.6855989 40.9120008,21.9304002 C40.7103998,22.1752014 40.5496014,22.4583985 40.4296008,22.7800001 C40.3096002,23.1016017 40.230401,23.4303984 40.1920008,23.7664001 L45.0016007,23.7664001 Z M40.1920008,24.5296001 C40.1920008,24.8560017 40.2376003,25.1943983 40.3288008,25.5448001 C40.4200012,25.8952018 40.5663998,26.2095987 40.7680008,26.488 C40.9696018,26.7664014 41.2239992,26.9967991 41.5312008,27.1792 C41.8384023,27.3616009 42.2079986,27.4528 42.6400007,27.4528 C43.302404,27.4528 43.8207988,27.2800017 44.1952007,26.9344 C44.5696025,26.5887983 44.8287999,26.1280029 44.9728007,25.5520001 L45.8800006,25.5520001 C45.6879997,26.3968043 45.3352032,27.0495977 44.8216007,27.5104 C44.3079981,27.9712023 43.5808054,28.2016 42.6400007,28.2016 C42.0543978,28.2016 41.5480029,28.098401 41.1208008,27.892 C40.6935986,27.685599 40.3456021,27.4024018 40.0768008,27.0424 C39.8079995,26.6823982 39.6088015,26.2648024 39.4792008,25.7896001 C39.3496002,25.3143977 39.2848008,24.8128027 39.2848008,24.2848001 C39.2848008,23.7951977 39.3496002,23.3152025 39.4792008,22.8448001 C39.6088015,22.3743978 39.8079995,21.954402 40.0768008,21.5848002 C40.3456021,21.2151983 40.6935986,20.9176013 41.1208008,20.6920002 C41.5480029,20.4663991 42.0543978,20.3536002 42.6400007,20.3536002 C43.2352037,20.3536002 43.7439986,20.473599 44.1664007,20.7136002 C44.5888028,20.9536014 44.9319993,21.2679982 45.1960007,21.6568002 C45.460002,22.0456021 45.6496001,22.4919976 45.7648006,22.9960001 C45.8800012,23.5000026 45.9280007,24.0111975 45.9088006,24.5296001 L40.1920008,24.5296001 Z M49.9984005,21.3328002 L48.5296006,21.3328002 L48.5296006,28 L47.6224006,28 L47.6224006,21.3328002 L46.3552006,21.3328002 L46.3552006,20.5696002 L47.6224006,20.5696002 L47.6224006,19.8928002 C47.6224006,19.5759986 47.6464004,19.2832016 47.6944006,19.0144002 C47.7424008,18.7455989 47.8335999,18.5152012 47.9680006,18.3232003 C48.1024013,18.1311993 48.2871994,17.9824008 48.5224006,17.8768003 C48.7576017,17.7711997 49.0575987,17.7184003 49.4224005,17.7184003 C49.5568012,17.7184003 49.6816,17.7232002 49.7968005,17.7328003 C49.9120011,17.7424003 50.0415998,17.7568002 50.1856005,17.7760003 L50.1856005,18.5536003 C50.0607999,18.5344002 49.9456011,18.5176003 49.8400005,18.5032003 C49.7344,18.4888002 49.6288011,18.4816003 49.5232005,18.4816003 C49.2735993,18.4816003 49.0816012,18.5199999 48.9472006,18.5968002 C48.8127999,18.6736006 48.7144009,18.7767996 48.6520006,18.9064002 C48.5896003,19.0360009 48.5536006,19.1871994 48.5440006,19.3600002 C48.5344005,19.5328011 48.5296006,19.7199992 48.5296006,19.9216002 L48.5296006,20.5696002 L49.9984005,20.5696002 L49.9984005,21.3328002 Z M52.3024005,20.5696002 L53.8144004,20.5696002 L53.8144004,21.3328002 L52.3024005,21.3328002 L52.3024005,26.344 C52.3024005,26.6416015 52.3432001,26.8743992 52.4248005,27.0424 C52.5064009,27.2104009 52.7103988,27.3039999 53.0368004,27.3232 C53.2960017,27.3232 53.5551991,27.3088002 53.8144004,27.28 L53.8144004,28.0432 C53.6799998,28.0432 53.5456011,28.048 53.4112004,28.0576 C53.2767998,28.0672 53.1424011,28.072 53.0080005,28.072 C52.4031974,28.072 51.9808017,27.9544012 51.7408005,27.7192 C51.5007993,27.4839988 51.3856004,27.0496032 51.3952005,26.416 L51.3952005,21.3328002 L50.0992005,21.3328002 L50.0992005,20.5696002 L51.3952005,20.5696002 L51.3952005,18.3376003 L52.3024005,18.3376003 L52.3024005,20.5696002 Z M66.8176001,20.8288002 L67.7968001,20.8288002 C67.7295997,20.2911975 67.5688013,19.8160023 67.3144001,19.4032002 C67.0599988,18.9903982 66.743202,18.6424017 66.3640001,18.3592003 C65.9847982,18.0759988 65.5624024,17.862401 65.0968001,17.7184003 C64.6311978,17.5743996 64.1536026,17.5024003 63.6640002,17.5024003 C62.8575962,17.5024003 62.1496033,17.6487988 61.5400002,17.9416003 C60.9303972,18.2344017 60.4240023,18.6279978 60.0208003,19.1224002 C59.6175983,19.6168027 59.3152013,20.185597 59.1136003,20.8288002 C58.9119993,21.4720034 58.8112003,22.1487966 58.8112003,22.8592001 C58.8112003,23.5696037 58.9119993,24.2463969 59.1136003,24.8896001 C59.3152013,25.5328033 59.6175983,26.0991976 60.0208003,26.5888 C60.4240023,27.0784025 60.9303972,27.4695986 61.5400002,27.7624 C62.1496033,28.0552015 62.8575962,28.2016 63.6640002,28.2016 C64.2688032,28.2016 64.8183977,28.105601 65.3128001,27.9136 C65.8072026,27.721599 66.2367983,27.4480018 66.6016001,27.0928 C66.9664019,26.7375983 67.2639989,26.3056026 67.4944001,25.7968001 C67.7248012,25.2879975 67.8735997,24.7168033 67.9408001,24.0832001 L66.9616001,24.0832001 C66.9135998,24.5440024 66.8032009,24.9735981 66.6304001,25.3720001 C66.4575992,25.7704021 66.2320015,26.1183986 65.9536001,26.416 C65.6751987,26.7136015 65.344002,26.9487992 64.9600001,27.1216 C64.5759982,27.2944009 64.1440026,27.3808 63.6640002,27.3808 C62.9823968,27.3808 62.3968026,27.2512013 61.9072002,26.992 C61.4175978,26.7327987 61.0168018,26.3896022 60.7048002,25.9624001 C60.3927987,25.5351979 60.162401,25.0504028 60.0136003,24.5080001 C59.8647995,23.9655974 59.7904003,23.4160029 59.7904003,22.8592001 C59.7904003,22.2927973 59.8647995,21.7408029 60.0136003,21.2032002 C60.162401,20.6655975 60.3927987,20.1832023 60.7048002,19.7560002 C61.0168018,19.3287981 61.4175978,18.9856015 61.9072002,18.7264002 C62.3968026,18.467199 62.9823968,18.3376003 63.6640002,18.3376003 C64.038402,18.3376003 64.3959984,18.3927997 64.7368001,18.5032003 C65.0776018,18.6136008 65.3895987,18.7743992 65.6728001,18.9856002 C65.9560015,19.1968013 66.1959991,19.4583987 66.3928001,19.7704002 C66.5896011,20.0824018 66.7311997,20.4351982 66.8176001,20.8288002 Z M69.1792,22.8448001 C69.2080002,22.412798 69.2991993,22.0384017 69.4528,21.7216002 C69.6064008,21.4047986 69.8151987,21.1456012 70.0792,20.9440002 C70.3432013,20.7423992 70.6527982,20.5936007 71.008,20.4976002 C71.3632017,20.4015997 71.7567978,20.3536002 72.1887999,20.3536002 C72.5152016,20.3536002 72.8415983,20.3847999 73.1679999,20.4472002 C73.4944015,20.5096005 73.7871986,20.6271993 74.0463999,20.8000002 C74.3056012,20.9728011 74.5167991,21.2151986 74.6799999,21.5272002 C74.8432007,21.8392017 74.9247999,22.2447977 74.9247999,22.7440001 L74.9247999,26.6896 C74.9247999,27.0544018 75.1023981,27.2368 75.4575999,27.2368 C75.5632004,27.2368 75.6591994,27.2176002 75.7455998,27.1792 L75.7455998,27.9424 C75.6399993,27.9616001 75.5464003,27.976 75.4647999,27.9856 C75.3831994,27.9952 75.2800005,28 75.1551999,28 C74.9247987,28 74.7400006,27.9688003 74.6007999,27.9064 C74.4615992,27.8439997 74.3536003,27.7552006 74.2767999,27.64 C74.1999995,27.5247994 74.1496,27.3880008 74.1255999,27.2296 C74.1015998,27.0711992 74.0895999,26.896001 74.0895999,26.704 L74.0607999,26.704 C73.8975991,26.9440012 73.7320007,27.1575991 73.5639999,27.3448 C73.3959991,27.5320009 73.2088009,27.6879994 73.0023999,27.8128 C72.7959989,27.9376006 72.5608013,28.0335997 72.2967999,28.1008 C72.0327986,28.1680003 71.7184018,28.2016 71.3536,28.2016 C71.0079982,28.2016 70.6840015,28.1608004 70.3816,28.0792 C70.0791985,27.9975996 69.8152011,27.8680009 69.5896,27.6904 C69.3639989,27.5127991 69.1864007,27.2872014 69.0568,27.0136 C68.9271994,26.7399987 68.8624,26.4160019 68.8624,26.0416001 C68.8624,25.5231975 68.9775989,25.1176015 69.208,24.8248001 C69.4384012,24.5319986 69.7431981,24.3088009 70.1224,24.1552001 C70.5016019,24.0015993 70.9287976,23.8936004 71.404,23.8312001 C71.8792023,23.7687998 72.3615975,23.7088004 72.8511999,23.6512001 C73.0432009,23.632 73.2111992,23.6080003 73.3551999,23.5792001 C73.4992006,23.5504 73.6191994,23.5000005 73.7151999,23.4280001 C73.8112004,23.3559998 73.8855996,23.2576007 73.9383999,23.1328001 C73.9912002,23.0079995 74.0175999,22.8448011 74.0175999,22.6432001 C74.0175999,22.3359986 73.9672004,22.0840011 73.8663999,21.8872002 C73.7655994,21.6903992 73.6264008,21.5344007 73.4487999,21.4192002 C73.271199,21.3039996 73.0648011,21.2248004 72.8295999,21.1816002 C72.5943988,21.1384 72.3424013,21.1168002 72.0735999,21.1168002 C71.4975971,21.1168002 71.0272018,21.2535988 70.6624,21.5272002 C70.2975982,21.8008015 70.1056001,22.2399971 70.0864,22.8448001 L69.1792,22.8448001 Z M74.0175999,23.9392001 L73.9887999,23.9392001 C73.9311996,24.0448006 73.8208007,24.1215999 73.6575999,24.1696001 C73.4943991,24.2176003 73.3504005,24.2512 73.2255999,24.2704001 C72.841598,24.3376004 72.445602,24.3975998 72.0375999,24.4504001 C71.6295979,24.5032004 71.2576016,24.5823996 70.9216,24.6880001 C70.5855983,24.7936006 70.3096011,24.9447991 70.0936,25.1416001 C69.8775989,25.3384011 69.7696,25.6191982 69.7696,25.9840001 C69.7696,26.2144012 69.8151995,26.4183992 69.9064,26.596 C69.9976005,26.7736009 70.1199992,26.9271994 70.2736,27.0568 C70.4272008,27.1864007 70.604799,27.2847997 70.8064,27.352 C71.008001,27.4192004 71.2143989,27.4528 71.4256,27.4528 C71.7712017,27.4528 72.1023984,27.4000005 72.4191999,27.2944 C72.7360015,27.1887995 73.0119987,27.035201 73.2471999,26.8336 C73.4824011,26.631999 73.6695992,26.3872015 73.8087999,26.0992001 C73.9480006,25.8111986 74.0175999,25.4848019 74.0175999,25.1200001 L74.0175999,23.9392001 Z M76.7391998,20.5696002 L77.5743998,20.5696002 L77.5743998,21.9808002 L77.6031998,21.9808002 C77.8144008,21.4623976 78.1575974,21.0616016 78.6327998,20.7784002 C79.1080021,20.4951988 79.6479967,20.3536002 80.2527997,20.3536002 C80.8192025,20.3536002 81.3111976,20.4591991 81.7287997,20.6704002 C82.1464018,20.8816012 82.4943983,21.1671984 82.7727997,21.5272002 C83.051201,21.887202 83.257599,22.3047978 83.3919996,22.7800001 C83.5264003,23.2552025 83.5935996,23.7567975 83.5935996,24.2848001 C83.5935996,24.8128027 83.5264003,25.3143977 83.3919996,25.7896001 C83.257599,26.2648024 83.051201,26.6823982 82.7727997,27.0424 C82.4943983,27.4024018 82.1464018,27.685599 81.7287997,27.892 C81.3111976,28.098401 80.8192025,28.2016 80.2527997,28.2016 C79.9839984,28.2016 79.7152011,28.1680003 79.4463997,28.1008 C79.1775984,28.0335997 78.9280009,27.9328007 78.6975998,27.7984 C78.4671986,27.6639993 78.2632007,27.496001 78.0855998,27.2944 C77.9079989,27.092799 77.7712003,26.8576014 77.6751998,26.5888 L77.6463998,26.5888 L77.6463998,30.7359999 L76.7391998,30.7359999 L76.7391998,20.5696002 Z M82.6863997,24.2848001 C82.6863997,23.9007982 82.6408001,23.519202 82.5495997,23.1400001 C82.4583992,22.7607982 82.3144007,22.4224016 82.1175997,22.1248002 C81.9207987,21.8271987 81.6688012,21.5848011 81.3615997,21.3976002 C81.0543982,21.2103992 80.6848019,21.1168002 80.2527997,21.1168002 C79.7535972,21.1168002 79.3360014,21.2031993 78.9999998,21.3760002 C78.6639981,21.548801 78.3952008,21.7791987 78.1935998,22.0672002 C77.9919988,22.3552016 77.8504002,22.6911982 77.7687998,23.0752001 C77.6871994,23.459202 77.6463998,23.862398 77.6463998,24.2848001 C77.6463998,24.668802 77.6919993,25.0503982 77.7831998,25.4296001 C77.8744002,25.808802 78.0231988,26.1471986 78.2295998,26.4448 C78.4360008,26.7424015 78.7047981,26.9847991 79.0359998,27.172 C79.3672014,27.359201 79.7727973,27.4528 80.2527997,27.4528 C80.6848019,27.4528 81.0543982,27.359201 81.3615997,27.172 C81.6688012,26.9847991 81.9207987,26.7424015 82.1175997,26.4448 C82.3144007,26.1471986 82.4583992,25.808802 82.5495997,25.4296001 C82.6408001,25.0503982 82.6863997,24.668802 82.6863997,24.2848001 Z M89.4543995,22.7440001 L90.3615995,22.7440001 C90.3423994,22.3407981 90.2608002,21.9904016 90.1167995,21.6928002 C89.9727988,21.3951987 89.7784007,21.1456012 89.5335995,20.9440002 C89.2887983,20.7423992 89.0056011,20.5936007 88.6839995,20.4976002 C88.3623979,20.4015997 88.0144014,20.3536002 87.6399995,20.3536002 C87.3135979,20.3536002 86.9848012,20.3919998 86.6535996,20.4688002 C86.3223979,20.5456006 86.0224009,20.6655994 85.7535996,20.8288002 C85.4847982,20.992001 85.2664004,21.2079988 85.0983996,21.4768002 C84.9303988,21.7456015 84.8463996,22.0671983 84.8463996,22.4416001 C84.8463996,22.7584017 84.8991991,23.0247991 85.0047996,23.2408001 C85.1104001,23.4568012 85.2567987,23.6391994 85.4439996,23.7880001 C85.6312005,23.9368009 85.8495983,24.0615996 86.0991996,24.1624001 C86.3488008,24.2632006 86.6223981,24.3519997 86.9199996,24.4288001 L88.0863995,24.6880001 C88.2880005,24.7360003 88.4871985,24.7935997 88.6839995,24.8608001 C88.8808005,24.9280004 89.0559987,25.0119996 89.2095995,25.1128001 C89.3632003,25.2136006 89.485599,25.3383993 89.5767995,25.4872001 C89.6679999,25.6360008 89.7135995,25.820799 89.7135995,26.0416001 C89.7135995,26.3008013 89.6488001,26.5191992 89.5191995,26.6968 C89.3895988,26.8744009 89.2240005,27.0207994 89.0223995,27.136 C88.8207985,27.2512006 88.6024007,27.3327998 88.3671995,27.3808 C88.1319983,27.4288003 87.9040006,27.4528 87.6831995,27.4528 C87.0783965,27.4528 86.5720016,27.2968016 86.1639996,26.9848 C85.7559975,26.6727985 85.5327998,26.2096031 85.4943996,25.5952001 L84.5871996,25.5952001 C84.664,26.5072046 84.9735969,27.169598 85.5159996,27.5824 C86.0584023,27.9952021 86.7663952,28.2016 87.6399995,28.2016 C87.9856013,28.2016 88.3359977,28.1632004 88.6911995,28.0864 C89.0464013,28.0095996 89.3655981,27.8824009 89.6487995,27.7048 C89.9320009,27.5271991 90.1647986,27.2968014 90.3471995,27.0136 C90.5296004,26.7303986 90.6207995,26.3872021 90.6207995,25.9840001 C90.6207995,25.6575984 90.5584001,25.3744013 90.4335995,25.1344001 C90.3087988,24.8943989 90.1480005,24.6928009 89.9511995,24.5296001 C89.7543985,24.3663993 89.5288008,24.2344006 89.2743995,24.1336001 C89.0199982,24.0327996 88.7632008,23.9632003 88.5039995,23.9248001 L87.2943995,23.6512001 C87.1407988,23.6127999 86.9728005,23.5624004 86.7903996,23.5000001 C86.6079986,23.4375998 86.4400003,23.3584006 86.2863996,23.2624001 C86.1327988,23.1663996 86.0056001,23.0488008 85.9047996,22.9096001 C85.8039991,22.7703994 85.7535996,22.6000012 85.7535996,22.3984001 C85.7535996,22.158399 85.8063991,21.956801 85.9119996,21.7936002 C86.0176001,21.6303994 86.1567987,21.4984007 86.3295996,21.3976002 C86.5024004,21.2967997 86.6919985,21.2248004 86.8983996,21.1816002 C87.1048006,21.1384 87.3087985,21.1168002 87.5103995,21.1168002 C87.7696008,21.1168002 88.0143984,21.1479999 88.2447995,21.2104002 C88.4752007,21.2728005 88.6791986,21.3711995 88.8567995,21.5056002 C89.0344004,21.6400008 89.175999,21.8103991 89.2815995,22.0168002 C89.3872,22.2232012 89.4447994,22.4655988 89.4543995,22.7440001 Z M97.9503993,28 L97.9503993,20.5696002 L97.0431993,20.5696002 L97.0431993,24.4720001 C97.0431993,24.846402 96.9999997,25.2135983 96.9135993,25.5736001 C96.8271989,25.9336019 96.6928002,26.2527987 96.5103993,26.5312 C96.3279984,26.8096014 96.0976007,27.0327992 95.8191993,27.2008 C95.5407979,27.3688009 95.2048013,27.4528 94.8111993,27.4528 C94.0911958,27.4528 93.5848008,27.2800017 93.2919994,26.9344 C92.9991979,26.5887983 92.8431995,26.0800034 92.8239994,25.4080001 L92.8239994,20.5696002 L91.9167994,20.5696002 L91.9167994,25.3936001 C91.9167994,25.8352023 91.9647989,26.2287983 92.0607994,26.5744 C92.1567999,26.9200018 92.3079984,27.2127988 92.5143994,27.4528 C92.7208004,27.6928012 92.9895977,27.8775994 93.3207994,28.0072 C93.652001,28.1368006 94.052797,28.2016 94.5231994,28.2016 C95.0800021,28.2016 95.586397,28.0696013 96.0423993,27.8056 C96.4984016,27.5415987 96.8463981,27.1600025 97.0863993,26.6608 L97.1151993,26.6608 L97.1151993,28 L97.9503993,28 Z M99.6783992,17.7184003 L99.6783992,28 L100.585599,28 L100.585599,17.7184003 L99.6783992,17.7184003 Z M107.670399,23.7664001 C107.660799,23.4207984 107.6008,23.0896017 107.490399,22.7728001 C107.379998,22.4559986 107.224,22.1752014 107.022399,21.9304002 C106.820798,21.6855989 106.576,21.4888009 106.287999,21.3400002 C105.999998,21.1911994 105.673601,21.1168002 105.308799,21.1168002 C104.934397,21.1168002 104.603201,21.1911994 104.315199,21.3400002 C104.027198,21.4888009 103.7824,21.6855989 103.580799,21.9304002 C103.379198,22.1752014 103.2184,22.4583985 103.098399,22.7800001 C102.978399,23.1016017 102.899199,23.4303984 102.860799,23.7664001 L107.670399,23.7664001 Z M102.860799,24.5296001 C102.860799,24.8560017 102.906399,25.1943983 102.997599,25.5448001 C103.0888,25.8952018 103.235198,26.2095987 103.436799,26.488 C103.6384,26.7664014 103.892798,26.9967991 104.199999,27.1792 C104.507201,27.3616009 104.876797,27.4528 105.308799,27.4528 C105.971202,27.4528 106.489597,27.2800017 106.863999,26.9344 C107.238401,26.5887983 107.497598,26.1280029 107.641599,25.5520001 L108.548799,25.5520001 C108.356798,26.3968043 108.004002,27.0495977 107.490399,27.5104 C106.976796,27.9712023 106.249604,28.2016 105.308799,28.2016 C104.723196,28.2016 104.216801,28.098401 103.789599,27.892 C103.362397,27.685599 103.0144,27.4024018 102.745599,27.0424 C102.476798,26.6823982 102.2776,26.2648024 102.147999,25.7896001 C102.018399,25.3143977 101.953599,24.8128027 101.953599,24.2848001 C101.953599,23.7951977 102.018399,23.3152025 102.147999,22.8448001 C102.2776,22.3743978 102.476798,21.954402 102.745599,21.5848002 C103.0144,21.2151983 103.362397,20.9176013 103.789599,20.6920002 C104.216801,20.4663991 104.723196,20.3536002 105.308799,20.3536002 C105.904002,20.3536002 106.412797,20.473599 106.835199,20.7136002 C107.257601,20.9536014 107.600798,21.2679982 107.864799,21.6568002 C108.1288,22.0456021 108.318398,22.4919976 108.433599,22.9960001 C108.5488,23.5000026 108.596799,24.0111975 108.577599,24.5296001 L102.860799,24.5296001 Z" mask="url(#warning-button-(left-capsule)-b)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" id="svg" >
<g fill="none" fill-rule="evenodd">
<circle cx="10" cy="10" r="10" fill="#EC5840"/>
<path fill="#FFF" d="M9.31919995,11.1679999 L11.6424,11.1679999 L10.5,7.97119976 L10.4808,7.97119976 L9.31919995,11.1679999 Z M10.0008,7.14559973 L11.0088,7.14559973 L13.6872001,14 L12.6792001,14 L11.9304001,11.9359999 L9.03119994,11.9359999 L8.26319991,14 L7.33199987,14 L10.0008,7.14559973 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" id="svg" >
<g fill="none" fill-rule="evenodd">
<circle cx="10" cy="10" r="10" fill="#777"/>
<path fill="#FFF" d="M7.75359991,9.60319983 L8.56959994,9.60319983 C8.56319991,9.39839879 8.5839997,9.19520082 8.63199995,8.9935998 C8.68000019,8.79199879 8.75839941,8.61120059 8.86719995,8.45119978 C8.9760005,8.29119897 9.11519912,8.16160026 9.28479997,8.06239976 C9.45440083,7.96319926 9.6575988,7.91359976 9.8944,7.91359976 C10.0736009,7.91359976 10.2431992,7.94239947 10.4032,7.99999976 C10.5632008,8.05760005 10.7023994,8.14079922 10.8208,8.24959977 C10.9392006,8.35840032 11.0335997,8.48799903 11.104,8.63839979 C11.1744004,8.78880054 11.2096,8.95679887 11.2096,9.14239981 C11.2096,9.379201 11.1728004,9.58719893 11.0992,9.76639983 C11.0255997,9.94560073 10.9168008,10.1119991 10.7728,10.2655999 C10.6287993,10.4192006 10.4480011,10.5711991 10.2304,10.7215999 C10.0127989,10.8720006 9.76000143,11.036799 9.47199998,11.2159999 C9.23519879,11.3568006 9.00800105,11.5071991 8.79039995,11.6671999 C8.57279886,11.8272007 8.3776008,12.0127989 8.20479993,12.2239999 C8.03199906,12.435201 7.88960048,12.6831985 7.77759991,12.968 C7.66559935,13.2528014 7.59360006,13.596798 7.5615999,14 L12.0064001,14 L12.0064001,13.28 L8.51199994,13.28 C8.55040013,13.0687989 8.63199932,12.8816008 8.75679995,12.7183999 C8.88160058,12.5551991 9.03199908,12.4032006 9.20799997,12.2623999 C9.38400086,12.1215992 9.57759893,11.9888005 9.78879999,11.8639999 C10.0000011,11.7391993 10.211199,11.6128005 10.4224,11.4847999 C10.6336011,11.3503992 10.838399,11.2096006 11.0368,11.0623999 C11.235201,10.9151991 11.4111993,10.7504008 11.5648001,10.5679999 C11.7184008,10.3855989 11.8415996,10.179201 11.9344001,9.94879984 C12.0272005,9.71839868 12.0736001,9.45280132 12.0736001,9.15199981 C12.0736001,8.83199819 12.0176006,8.550401 11.9056001,8.30719977 C11.7935995,8.06399855 11.641601,7.86080057 11.4496001,7.69759975 C11.2575991,7.53439893 11.0320013,7.40960017 10.7728,7.32319973 C10.5135987,7.2367993 10.2368015,7.19359973 9.9424,7.19359973 C9.58399819,7.19359973 9.26400138,7.25439912 8.98239996,7.37599974 C8.70079854,7.49760035 8.46560088,7.66559868 8.27679993,7.87999976 C8.08799898,8.09440084 7.94880037,8.3487983 7.85919991,8.64319979 C7.76959946,8.93760127 7.73439981,9.25759808 7.75359991,9.60319983 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" id="svg" >
<g fill="none" fill-rule="evenodd">
<circle cx="10" cy="10" r="10" fill="#3ADB76"/>
<path fill="#FFF" d="M9.42399998,10.1119998 L9.42399998,10.8031999 C9.57760075,10.7839998 9.74079913,10.7743999 9.9136,10.7743999 C10.118401,10.7743999 10.3087991,10.8015996 10.4848,10.8559999 C10.6608009,10.9104001 10.8127994,10.9935993 10.9408,11.1055999 C11.0688007,11.2176004 11.1711997,11.3551991 11.248,11.5183999 C11.3248004,11.6816007 11.3632001,11.8687989 11.3632001,12.0799999 C11.3632001,12.284801 11.3232005,12.4687991 11.2432,12.6319999 C11.1631996,12.7952008 11.0560007,12.9327994 10.9216,13.0448 C10.7871994,13.1568005 10.6304009,13.2431997 10.4512,13.304 C10.2719991,13.3648003 10.083201,13.3952 9.8848,13.3952 C9.41759764,13.3952 9.06240118,13.2560014 8.81919995,12.9776 C8.57599873,12.6991986 8.448,12.3392021 8.43519994,11.8975999 L7.61919991,11.8975999 C7.61279987,12.2496017 7.66239938,12.5631986 7.76799991,12.8384 C7.87360044,13.1136013 8.02559893,13.345599 8.22399993,13.5344 C8.42240093,13.7232009 8.66239854,13.8655995 8.94399996,13.9616 C9.22560138,14.0576005 9.53919825,14.1056 9.8848,14.1056 C10.2048016,14.1056 10.5071986,14.0624004 10.792,13.976 C11.0768015,13.8895996 11.324799,13.7600009 11.5360001,13.5872 C11.7472011,13.4143991 11.9151995,13.1984013 12.0400001,12.9392 C12.1648007,12.6799987 12.2272001,12.3808016 12.2272001,12.0415999 C12.2272001,11.6319979 12.1264011,11.2768014 11.9248001,10.9759999 C11.7231991,10.6751984 11.4144021,10.4800003 10.9984,10.3903999 L10.9984,10.3711999 C11.2672014,10.2495992 11.4911992,10.070401 11.6704001,9.83359983 C11.849601,9.59679864 11.9392001,9.32480135 11.9392001,9.0175998 C11.9392001,8.70399822 11.8864006,8.43200093 11.7808001,8.20159977 C11.6751995,7.97119861 11.529601,7.78240049 11.3440001,7.63519975 C11.1583991,7.48799901 10.9392013,7.3776001 10.6864,7.30399973 C10.4335988,7.23039936 10.1600015,7.19359973 9.86559999,7.19359973 C9.52639829,7.19359973 9.22720127,7.24799919 8.96799996,7.35679974 C8.70879865,7.46560028 8.4928008,7.61599879 8.31999993,7.80799975 C8.14719906,8.00000072 8.01440039,8.23039843 7.92159992,8.49919978 C7.82879945,8.76800114 7.77599998,9.06559817 7.76319991,9.39199982 L8.57919994,9.39199982 C8.57919994,9.19359882 8.60479969,9.0048007 8.65599995,8.82559979 C8.7072002,8.64639889 8.78559942,8.48960045 8.89119996,8.35519978 C8.99680049,8.2207991 9.13119915,8.11360017 9.29439997,8.03359976 C9.45760079,7.95359936 9.6479989,7.91359976 9.86559999,7.91359976 C10.2112017,7.91359976 10.4991989,8.00479885 10.7296,8.18719977 C10.9600012,8.36960069 11.0752,8.64319796 11.0752,9.0079998 C11.0752,9.1872007 11.0400004,9.34719911 10.9696,9.48799982 C10.8991997,9.62880053 10.8048006,9.74559937 10.6864,9.83839983 C10.5679994,9.9312003 10.4304008,10.0015996 10.2736,10.0495998 C10.1167992,10.0976001 9.95200086,10.1215998 9.77919999,10.1215998 L9.51039998,10.1215998 C9.48479985,10.1215998 9.45600014,10.1183999 9.42399998,10.1119998 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="313" height="23" viewBox="0 0 313 23" id="svg" >
<g fill="none" fill-rule="evenodd">
<path fill="#0A0A0A" d="M74.422,14.08 L78.356,14.08 L76.424,8.956 L74.422,14.08 Z M75.934,8.004 L76.998,8.004 L80.918,18 L79.896,18 L78.678,14.892 L74.128,14.892 L72.924,18 L71.916,18 L75.934,8.004 Z M81.674,8.004 L81.674,18 L82.556,18 L82.556,8.004 L81.674,8.004 Z M84.264,8.004 L84.264,18 L85.146,18 L85.146,8.004 L84.264,8.004 Z M115.666,14.08 L119.6,14.08 L117.668,8.956 L115.666,14.08 Z M117.178,8.004 L118.242,8.004 L122.162,18 L121.14,18 L119.922,14.892 L115.372,14.892 L114.168,18 L113.16,18 L117.178,8.004 Z M128,13.044 L128.882,13.044 C128.779333,12.2133292 128.459669,11.5926687 127.923,11.182 C127.386331,10.7713313 126.730671,10.566 125.956,10.566 C125.405331,10.566 124.917669,10.6686656 124.493,10.874 C124.068331,11.0793344 123.711335,11.3546649 123.422,11.7 C123.132665,12.0453351 122.913334,12.4489977 122.764,12.911 C122.614666,13.3730023 122.54,13.8653307 122.54,14.388 C122.54,14.9106693 122.614666,15.4029977 122.764,15.865 C122.913334,16.3270023 123.132665,16.7306649 123.422,17.076 C123.711335,17.4213351 124.068331,17.6943323 124.493,17.895 C124.917669,18.0956677 125.405331,18.196 125.956,18.196 C126.777337,18.196 127.449331,17.9510025 127.972,17.461 C128.494669,16.9709975 128.816666,16.2873377 128.938,15.41 L128.056,15.41 C128.028,15.7086682 127.953334,15.9839987 127.832,16.236 C127.710666,16.4880013 127.556668,16.7049991 127.37,16.887 C127.183332,17.0690009 126.968668,17.2113328 126.726,17.314 C126.483332,17.4166672 126.226668,17.468 125.956,17.468 C125.535998,17.468 125.167335,17.3793342 124.85,17.202 C124.532665,17.0246658 124.269001,16.7913348 124.059,16.502 C123.848999,16.2126652 123.690334,15.8836685 123.583,15.515 C123.475666,15.1463315 123.422,14.7706686 123.422,14.388 C123.422,14.0053314 123.475666,13.6296685 123.583,13.261 C123.690334,12.8923315 123.848999,12.5633348 124.059,12.274 C124.269001,11.9846652 124.532665,11.7513342 124.85,11.574 C125.167335,11.3966658 125.535998,11.308 125.956,11.308 C126.544003,11.308 127.001332,11.4619985 127.328,11.77 C127.654668,12.0780015 127.878666,12.502664 128,13.044 Z M131.57,10.776 L131.57,8.606 L130.688,8.606 L130.688,10.776 L129.428,10.776 L129.428,11.518 L130.688,11.518 L130.688,16.46 C130.678667,17.0760031 130.790665,17.4983322 131.024,17.727 C131.257335,17.9556678 131.667997,18.07 132.256,18.07 C132.386667,18.07 132.517333,18.0653334 132.648,18.056 C132.778667,18.0466666 132.909333,18.042 133.04,18.042 L133.04,17.3 C132.787999,17.3280001 132.536001,17.342 132.284,17.342 C131.966665,17.3233332 131.768334,17.2323341 131.689,17.069 C131.609666,16.9056658 131.57,16.6793348 131.57,16.39 L131.57,11.518 L133.04,11.518 L133.04,10.776 L131.57,10.776 Z M134.328,8.004 L134.328,9.418 L135.21,9.418 L135.21,8.004 L134.328,8.004 Z M134.328,10.776 L134.328,18 L135.21,18 L135.21,10.776 L134.328,10.776 Z M136.092,10.776 L138.878,18 L139.816,18 L142.518,10.776 L141.608,10.776 L139.368,17.118 L139.34,17.118 L137.072,10.776 L136.092,10.776 Z M148.58,13.884 C148.570667,13.5479983 148.512334,13.2260015 148.405,12.918 C148.297666,12.6099985 148.146001,12.3370012 147.95,12.099 C147.753999,11.8609988 147.516001,11.6696674 147.236,11.525 C146.955999,11.3803326 146.638668,11.308 146.284,11.308 C145.919998,11.308 145.598001,11.3803326 145.318,11.525 C145.037999,11.6696674 144.800001,11.8609988 144.604,12.099 C144.407999,12.3370012 144.251667,12.6123318 144.135,12.925 C144.018333,13.2376682 143.941334,13.5573317 143.904,13.884 L148.58,13.884 Z M143.904,14.626 C143.904,14.9433349 143.948333,15.2723316 144.037,15.613 C144.125667,15.9536684 144.267999,16.259332 144.464,16.53 C144.660001,16.800668 144.907332,17.0246658 145.206,17.202 C145.504668,17.3793342 145.863998,17.468 146.284,17.468 C146.928003,17.468 147.431998,17.3000017 147.796,16.964 C148.160002,16.6279983 148.411999,16.1800028 148.552,15.62 L149.434,15.62 C149.247332,16.4413374 148.904336,17.0759978 148.405,17.524 C147.905664,17.9720022 147.198671,18.196 146.284,18.196 C145.714664,18.196 145.222335,18.0956677 144.807,17.895 C144.391665,17.6943323 144.053335,17.4190017 143.792,17.069 C143.530665,16.7189982 143.337001,16.3130023 143.211,15.851 C143.084999,15.3889977 143.022,14.9013359 143.022,14.388 C143.022,13.9119976 143.084999,13.4453356 143.211,12.988 C143.337001,12.5306644 143.530665,12.1223351 143.792,11.763 C144.053335,11.4036649 144.391665,11.1143344 144.807,10.895 C145.222335,10.6756656 145.714664,10.566 146.284,10.566 C146.86267,10.566 147.357331,10.6826655 147.768,10.916 C148.178669,11.1493345 148.512332,11.4549981 148.769,11.833 C149.025668,12.2110019 149.209999,12.6449975 149.322,13.135 C149.434001,13.6250025 149.480667,14.1219975 149.462,14.626 L143.904,14.626 Z M171.232,12.904 L174.508,12.904 C175.17067,12.904 175.707331,12.7360017 176.118,12.4 C176.528669,12.0639983 176.734,11.5506701 176.734,10.86 C176.734,10.1693299 176.528669,9.65600168 176.118,9.32 C175.707331,8.98399832 175.17067,8.816 174.508,8.816 L171.232,8.816 L171.232,12.904 Z M170.28,8.004 L174.718,8.004 C175.166002,8.004 175.571998,8.06699937 175.936,8.193 C176.300002,8.31900063 176.612665,8.50566543 176.874,8.753 C177.135335,9.00033457 177.335999,9.30133156 177.476,9.656 C177.616001,10.0106684 177.686,10.4119978 177.686,10.86 C177.686,11.3080022 177.616001,11.7093316 177.476,12.064 C177.335999,12.4186684 177.135335,12.7196654 176.874,12.967 C176.612665,13.2143346 176.300002,13.4009994 175.936,13.527 C175.571998,13.6530006 175.166002,13.716 174.718,13.716 L171.232,13.716 L171.232,18 L170.28,18 L170.28,8.004 Z M184.126,13.884 C184.116667,13.5479983 184.058334,13.2260015 183.951,12.918 C183.843666,12.6099985 183.692001,12.3370012 183.496,12.099 C183.299999,11.8609988 183.062001,11.6696674 182.782,11.525 C182.501999,11.3803326 182.184668,11.308 181.83,11.308 C181.465998,11.308 181.144001,11.3803326 180.864,11.525 C180.583999,11.6696674 180.346001,11.8609988 180.15,12.099 C179.953999,12.3370012 179.797667,12.6123318 179.681,12.925 C179.564333,13.2376682 179.487334,13.5573317 179.45,13.884 L184.126,13.884 Z M179.45,14.626 C179.45,14.9433349 179.494333,15.2723316 179.583,15.613 C179.671667,15.9536684 179.813999,16.259332 180.01,16.53 C180.206001,16.800668 180.453332,17.0246658 180.752,17.202 C181.050668,17.3793342 181.409998,17.468 181.83,17.468 C182.474003,17.468 182.977998,17.3000017 183.342,16.964 C183.706002,16.6279983 183.957999,16.1800028 184.098,15.62 L184.98,15.62 C184.793332,16.4413374 184.450336,17.0759978 183.951,17.524 C183.451664,17.9720022 182.744671,18.196 181.83,18.196 C181.260664,18.196 180.768335,18.0956677 180.353,17.895 C179.937665,17.6943323 179.599335,17.4190017 179.338,17.069 C179.076665,16.7189982 178.883001,16.3130023 178.757,15.851 C178.630999,15.3889977 178.568,14.9013359 178.568,14.388 C178.568,13.9119976 178.630999,13.4453356 178.757,12.988 C178.883001,12.5306644 179.076665,12.1223351 179.338,11.763 C179.599335,11.4036649 179.937665,11.1143344 180.353,10.895 C180.768335,10.6756656 181.260664,10.566 181.83,10.566 C182.40867,10.566 182.903331,10.6826655 183.314,10.916 C183.724669,11.1493345 184.058332,11.4549981 184.315,11.833 C184.571668,12.2110019 184.755999,12.6449975 184.868,13.135 C184.980001,13.6250025 185.026667,14.1219975 185.008,14.626 L179.45,14.626 Z M186.184,10.776 L186.184,18 L187.066,18 L187.066,13.786 C187.075333,13.4313316 187.133666,13.1023349 187.241,12.799 C187.348334,12.4956652 187.497666,12.2343344 187.689,12.015 C187.880334,11.7956656 188.113665,11.6230006 188.389,11.497 C188.664335,11.3709994 188.979332,11.308 189.334,11.308 C189.688668,11.308 189.984999,11.3639994 190.223,11.476 C190.461001,11.5880006 190.649999,11.741999 190.79,11.938 C190.930001,12.134001 191.028,12.3649987 191.084,12.631 C191.14,12.8970013 191.168,13.1839985 191.168,13.492 L191.168,18 L192.05,18 L192.05,13.352 C192.05,12.9226645 192.008,12.5353351 191.924,12.19 C191.84,11.8446649 191.695334,11.5530012 191.49,11.315 C191.284666,11.0769988 191.011668,10.8926673 190.671,10.762 C190.330332,10.6313327 189.908003,10.566 189.404,10.566 C188.890664,10.566 188.419335,10.6989987 187.99,10.965 C187.560665,11.2310013 187.262001,11.5833311 187.094,12.022 L187.066,12.022 L187.066,10.776 L186.184,10.776 Z M200.072,18 L199.26,18 L199.26,16.628 L199.232,16.628 C199.138666,16.8613345 199.001001,17.075999 198.819,17.272 C198.636999,17.468001 198.429334,17.633666 198.196,17.769 C197.962665,17.904334 197.713001,18.009333 197.447,18.084 C197.180999,18.158667 196.917335,18.196 196.656,18.196 C196.105331,18.196 195.627002,18.0956677 195.221,17.895 C194.814998,17.6943323 194.476668,17.4190017 194.206,17.069 C193.935332,16.7189982 193.734667,16.3130023 193.604,15.851 C193.473333,15.3889977 193.408,14.9013359 193.408,14.388 C193.408,13.8746641 193.473333,13.3870023 193.604,12.925 C193.734667,12.4629977 193.935332,12.0570017 194.206,11.707 C194.476668,11.3569983 194.814998,11.0793344 195.221,10.874 C195.627002,10.6686656 196.105331,10.566 196.656,10.566 C196.926668,10.566 197.190332,10.5986663 197.447,10.664 C197.703668,10.7293337 197.943999,10.829666 198.168,10.965 C198.392001,11.100334 198.590332,11.265999 198.763,11.462 C198.935668,11.658001 199.068666,11.8866654 199.162,12.148 L199.19,12.148 L199.19,8.004 L200.072,8.004 L200.072,18 Z M194.29,14.388 C194.29,14.7613352 194.334333,15.1323315 194.423,15.501 C194.511667,15.8696685 194.651666,16.1986652 194.843,16.488 C195.034334,16.7773348 195.279332,17.0129991 195.578,17.195 C195.876668,17.3770009 196.235998,17.468 196.656,17.468 C197.122669,17.468 197.516998,17.3770009 197.839,17.195 C198.161002,17.0129991 198.422332,16.7773348 198.623,16.488 C198.823668,16.1986652 198.968333,15.8696685 199.057,15.501 C199.145667,15.1323315 199.19,14.7613352 199.19,14.388 C199.19,14.0146648 199.145667,13.6436685 199.057,13.275 C198.968333,12.9063315 198.823668,12.5773348 198.623,12.288 C198.422332,11.9986652 198.161002,11.7630009 197.839,11.581 C197.516998,11.3989991 197.122669,11.308 196.656,11.308 C196.235998,11.308 195.876668,11.3989991 195.578,11.581 C195.279332,11.7630009 195.034334,11.9986652 194.843,12.288 C194.651666,12.5773348 194.511667,12.9063315 194.423,13.275 C194.334333,13.6436685 194.29,14.0146648 194.29,14.388 Z M201.766,8.004 L201.766,9.418 L202.648,9.418 L202.648,8.004 L201.766,8.004 Z M201.766,10.776 L201.766,18 L202.648,18 L202.648,10.776 L201.766,10.776 Z M204.328,10.776 L204.328,18 L205.21,18 L205.21,13.786 C205.219333,13.4313316 205.277666,13.1023349 205.385,12.799 C205.492334,12.4956652 205.641666,12.2343344 205.833,12.015 C206.024334,11.7956656 206.257665,11.6230006 206.533,11.497 C206.808335,11.3709994 207.123332,11.308 207.478,11.308 C207.832668,11.308 208.128999,11.3639994 208.367,11.476 C208.605001,11.5880006 208.793999,11.741999 208.934,11.938 C209.074001,12.134001 209.172,12.3649987 209.228,12.631 C209.284,12.8970013 209.312,13.1839985 209.312,13.492 L209.312,18 L210.194,18 L210.194,13.352 C210.194,12.9226645 210.152,12.5353351 210.068,12.19 C209.984,11.8446649 209.839334,11.5530012 209.634,11.315 C209.428666,11.0769988 209.155668,10.8926673 208.815,10.762 C208.474332,10.6313327 208.052003,10.566 207.548,10.566 C207.034664,10.566 206.563335,10.6989987 206.134,10.965 C205.704665,11.2310013 205.406001,11.5833311 205.238,12.022 L205.21,12.022 L205.21,10.776 L204.328,10.776 Z M217.964,17.412 C217.964,17.9440027 217.905667,18.4246645 217.789,18.854 C217.672333,19.2833355 217.488001,19.6473318 217.236,19.946 C216.983999,20.2446682 216.655002,20.4733325 216.249,20.632 C215.842998,20.7906675 215.346003,20.87 214.758,20.87 C214.393998,20.87 214.039335,20.8280004 213.694,20.744 C213.348665,20.6599996 213.038335,20.5293342 212.763,20.352 C212.487665,20.1746658 212.259001,19.9483347 212.077,19.673 C211.894999,19.3976653 211.79,19.0686686 211.762,18.686 L212.644,18.686 C212.690667,18.956668 212.781666,19.1829991 212.917,19.365 C213.052334,19.5470009 213.215666,19.6939994 213.407,19.806 C213.598334,19.9180006 213.810665,19.9996664 214.044,20.051 C214.277334,20.1023336 214.515332,20.128 214.758,20.128 C215.579337,20.128 216.171998,19.894669 216.536,19.428 C216.900002,18.961331 217.082,18.2893377 217.082,17.412 L217.082,16.432 L217.054,16.432 C216.848666,16.8800022 216.547669,17.239332 216.151,17.51 C215.754331,17.780668 215.290003,17.916 214.758,17.916 C214.17933,17.916 213.684669,17.8203343 213.274,17.629 C212.863331,17.4376657 212.525001,17.1740017 212.259,16.838 C211.992999,16.5019983 211.799334,16.1076689 211.678,15.655 C211.556666,15.2023311 211.496,14.7193359 211.496,14.206 C211.496,13.7113309 211.568333,13.2423355 211.713,12.799 C211.857667,12.3556644 212.067665,11.968335 212.343,11.637 C212.618335,11.305665 212.958998,11.0443343 213.365,10.853 C213.771002,10.6616657 214.235331,10.566 214.758,10.566 C215.028668,10.566 215.282999,10.603333 215.521,10.678 C215.759001,10.752667 215.975999,10.857666 216.172,10.993 C216.368001,11.128334 216.542999,11.2846658 216.697,11.462 C216.851001,11.6393342 216.97,11.825999 217.054,12.022 L217.082,12.022 L217.082,10.776 L217.964,10.776 L217.964,17.412 Z M214.758,17.174 C215.140669,17.174 215.476665,17.0923341 215.766,16.929 C216.055335,16.7656659 216.297999,16.5510013 216.494,16.285 C216.690001,16.0189987 216.837,15.7133351 216.935,15.368 C217.033,15.0226649 217.082,14.6680018 217.082,14.304 C217.082,13.9493316 217.04,13.5946684 216.956,13.24 C216.872,12.8853316 216.736668,12.5633348 216.55,12.274 C216.363332,11.9846652 216.123001,11.7513342 215.829,11.574 C215.534999,11.3966658 215.178002,11.308 214.758,11.308 C214.337998,11.308 213.978668,11.3943325 213.68,11.567 C213.381332,11.7396675 213.134001,11.9659986 212.938,12.246 C212.741999,12.5260014 212.599667,12.8456649 212.511,13.205 C212.422333,13.5643351 212.378,13.9306648 212.378,14.304 C212.378,14.6680018 212.424666,15.0226649 212.518,15.368 C212.611334,15.7133351 212.755999,16.0189987 212.952,16.285 C213.148001,16.5510013 213.395332,16.7656659 213.694,16.929 C213.992668,17.0923341 214.347331,17.174 214.758,17.174 Z M243.612,14.71 L242.66,14.71 C242.632,15.3260031 242.713666,15.8533311 242.905,16.292 C243.096334,16.7306689 243.369332,17.0899986 243.724,17.37 C244.078668,17.6500014 244.507997,17.857666 245.012,17.993 C245.516003,18.128334 246.061997,18.196 246.65,18.196 C247.238003,18.196 247.741998,18.1423339 248.162,18.035 C248.582002,17.9276661 248.934332,17.7876675 249.219,17.615 C249.503668,17.4423325 249.727666,17.2486677 249.891,17.034 C250.054334,16.8193323 250.180333,16.6070011 250.269,16.397 C250.357667,16.1869989 250.413667,15.9886676 250.437,15.802 C250.460333,15.6153324 250.472,15.4660006 250.472,15.354 C250.472,14.9433313 250.404334,14.5933348 250.269,14.304 C250.133666,14.0146652 249.947001,13.7696677 249.709,13.569 C249.470999,13.3683323 249.195668,13.200334 248.883,13.065 C248.570332,12.929666 248.236668,12.8153338 247.882,12.722 L245.446,12.12 C245.240666,12.0733331 245.047001,12.012667 244.865,11.938 C244.682999,11.863333 244.522001,11.7653339 244.382,11.644 C244.241999,11.5226661 244.132334,11.3756675 244.053,11.203 C243.973666,11.0303325 243.934,10.8273345 243.934,10.594 C243.934,10.2206648 244.003999,9.90800126 244.144,9.656 C244.284001,9.40399874 244.468332,9.20100077 244.697,9.047 C244.925668,8.89299923 245.191665,8.78100035 245.495,8.711 C245.798335,8.64099965 246.113332,8.606 246.44,8.606 C246.794668,8.606 247.132998,8.65499951 247.455,8.753 C247.777002,8.85100049 248.061665,8.99566571 248.309,9.187 C248.556335,9.37833429 248.756999,9.61633191 248.911,9.901 C249.065001,10.1856681 249.151333,10.5193314 249.17,10.902 L250.122,10.902 C250.122,10.3886641 250.021668,9.93833527 249.821,9.551 C249.620332,9.16366473 249.352002,8.83933464 249.016,8.578 C248.679998,8.31666536 248.288002,8.12066732 247.84,7.99 C247.391998,7.85933268 246.920669,7.794 246.426,7.794 C245.725996,7.794 245.152002,7.89433233 244.704,8.095 C244.255998,8.29566767 243.903668,8.54066522 243.647,8.83 C243.390332,9.11933478 243.215334,9.4273317 243.122,9.754 C243.028666,10.0806683 242.982,10.3653321 242.982,10.608 C242.982,11.000002 243.044999,11.331332 243.171,11.602 C243.297001,11.872668 243.462666,12.1013324 243.668,12.288 C243.873334,12.4746676 244.113665,12.6239994 244.389,12.736 C244.664335,12.8480006 244.946665,12.941333 245.236,13.016 L247.462,13.562 C247.695334,13.6180003 247.933332,13.6903329 248.176,13.779 C248.418668,13.8676671 248.640332,13.9819993 248.841,14.122 C249.041668,14.2620007 249.204999,14.4346656 249.331,14.64 C249.457001,14.8453344 249.52,15.0879986 249.52,15.368 C249.52,15.7320018 249.431334,16.042332 249.254,16.299 C249.076666,16.555668 248.855001,16.7656658 248.589,16.929 C248.322999,17.0923341 248.036002,17.211333 247.728,17.286 C247.419998,17.360667 247.135335,17.398 246.874,17.398 C246.416664,17.398 245.987335,17.3536671 245.586,17.265 C245.184665,17.1763329 244.837001,17.0293344 244.543,16.824 C244.248999,16.6186656 244.018001,16.3433351 243.85,15.998 C243.681999,15.6526649 243.602667,15.2233359 243.612,14.71 Z M257.668,18 L257.668,10.776 L256.786,10.776 L256.786,14.57 C256.786,14.9340018 256.744,15.2909982 256.66,15.641 C256.576,15.9910017 256.445334,16.301332 256.268,16.572 C256.090666,16.842668 255.866668,17.0596659 255.596,17.223 C255.325332,17.3863341 254.998669,17.468 254.616,17.468 C253.915996,17.468 253.423668,17.3000017 253.139,16.964 C252.854332,16.6279983 252.702667,16.1333366 252.684,15.48 L252.684,10.776 L251.802,10.776 L251.802,15.466 C251.802,15.8953355 251.848666,16.2779983 251.942,16.614 C252.035334,16.9500017 252.182332,17.2346655 252.383,17.468 C252.583668,17.7013345 252.844998,17.8809994 253.167,18.007 C253.489002,18.1330006 253.878664,18.196 254.336,18.196 C254.877336,18.196 255.369664,18.067668 255.813,17.811 C256.256336,17.554332 256.594665,17.1833358 256.828,16.698 L256.856,16.698 L256.856,18 L257.668,18 Z M263.66,12.89 L264.542,12.89 C264.523333,12.497998 264.444001,12.1573348 264.304,11.868 C264.163999,11.5786652 263.975001,11.336001 263.737,11.14 C263.498999,10.943999 263.223668,10.7993338 262.911,10.706 C262.598332,10.6126662 262.260002,10.566 261.896,10.566 C261.578665,10.566 261.259002,10.603333 260.937,10.678 C260.614998,10.752667 260.323335,10.8693325 260.062,11.028 C259.800665,11.1866675 259.588334,11.3966654 259.425,11.658 C259.261666,11.9193346 259.18,12.2319982 259.18,12.596 C259.18,12.9040015 259.231333,13.162999 259.334,13.373 C259.436667,13.5830011 259.578999,13.7603326 259.761,13.905 C259.943001,14.0496674 260.155332,14.1709995 260.398,14.269 C260.640668,14.3670005 260.906665,14.453333 261.196,14.528 L262.33,14.78 C262.526001,14.8266669 262.719666,14.8826663 262.911,14.948 C263.102334,15.0133337 263.272666,15.0949995 263.422,15.193 C263.571334,15.2910005 263.690333,15.4123326 263.779,15.557 C263.867667,15.7016674 263.912,15.8813323 263.912,16.096 C263.912,16.3480013 263.849001,16.5603325 263.723,16.733 C263.596999,16.9056675 263.436001,17.0479994 263.24,17.16 C263.043999,17.2720006 262.831668,17.3513331 262.603,17.398 C262.374332,17.4446669 262.152668,17.468 261.938,17.468 C261.349997,17.468 260.857669,17.3163349 260.461,17.013 C260.064331,16.7096651 259.847334,16.2593363 259.81,15.662 L258.928,15.662 C259.002667,16.5486711 259.303664,17.1926647 259.831,17.594 C260.358336,17.9953353 261.046662,18.196 261.896,18.196 C262.232002,18.196 262.572665,18.158667 262.918,18.084 C263.263335,18.009333 263.573665,17.8856675 263.849,17.713 C264.124335,17.5403325 264.350666,17.3163347 264.528,17.041 C264.705334,16.7656653 264.794,16.432002 264.794,16.04 C264.794,15.7226651 264.733334,15.4473345 264.612,15.214 C264.490666,14.9806655 264.334334,14.7846675 264.143,14.626 C263.951666,14.4673325 263.732335,14.3390005 263.485,14.241 C263.237665,14.1429995 262.988001,14.0753335 262.736,14.038 L261.56,13.772 C261.410666,13.7346665 261.247334,13.685667 261.07,13.625 C260.892666,13.564333 260.729334,13.4873338 260.58,13.394 C260.430666,13.3006662 260.307,13.186334 260.209,13.051 C260.111,12.915666 260.062,12.750001 260.062,12.554 C260.062,12.3206655 260.113333,12.1246675 260.216,11.966 C260.318667,11.8073325 260.453999,11.6790005 260.622,11.581 C260.790001,11.4829995 260.974332,11.4130002 261.175,11.371 C261.375668,11.3289998 261.573999,11.308 261.77,11.308 C262.022001,11.308 262.259999,11.338333 262.484,11.399 C262.708001,11.459667 262.906332,11.5553327 263.079,11.686 C263.251668,11.8166673 263.389333,11.9823323 263.492,12.183 C263.594667,12.3836677 263.650667,12.619332 263.66,12.89 Z M266.068,10.776 L266.88,10.776 L266.88,12.148 L266.908,12.148 C267.113334,11.6439975 267.446998,11.2543347 267.909,10.979 C268.371002,10.7036653 268.895997,10.566 269.484,10.566 C270.034669,10.566 270.512998,10.6686656 270.919,10.874 C271.325002,11.0793344 271.663332,11.3569983 271.934,11.707 C272.204668,12.0570017 272.405333,12.4629977 272.536,12.925 C272.666667,13.3870023 272.732,13.8746641 272.732,14.388 C272.732,14.9013359 272.666667,15.3889977 272.536,15.851 C272.405333,16.3130023 272.204668,16.7189982 271.934,17.069 C271.663332,17.4190017 271.325002,17.6943323 270.919,17.895 C270.512998,18.0956677 270.034669,18.196 269.484,18.196 C269.222665,18.196 268.961335,18.1633337 268.7,18.098 C268.438665,18.0326663 268.196001,17.9346673 267.972,17.804 C267.747999,17.6733327 267.549668,17.510001 267.377,17.314 C267.204332,17.117999 267.071334,16.8893346 266.978,16.628 L266.95,16.628 L266.95,20.66 L266.068,20.66 L266.068,10.776 Z M271.85,14.388 C271.85,14.0146648 271.805667,13.6436685 271.717,13.275 C271.628333,12.9063315 271.488334,12.5773348 271.297,12.288 C271.105666,11.9986652 270.860668,11.7630009 270.562,11.581 C270.263332,11.3989991 269.904002,11.308 269.484,11.308 C268.998664,11.308 268.592668,11.3919992 268.266,11.56 C267.939332,11.7280008 267.678001,11.9519986 267.482,12.232 C267.285999,12.5120014 267.148334,12.8386648 267.069,13.212 C266.989666,13.5853352 266.95,13.9773313 266.95,14.388 C266.95,14.7613352 266.994333,15.1323315 267.083,15.501 C267.171667,15.8696685 267.316332,16.1986652 267.517,16.488 C267.717668,16.7773348 267.978998,17.0129991 268.301,17.195 C268.623002,17.3770009 269.017331,17.468 269.484,17.468 C269.904002,17.468 270.263332,17.3770009 270.562,17.195 C270.860668,17.0129991 271.105666,16.7773348 271.297,16.488 C271.488334,16.1986652 271.628333,15.8696685 271.717,15.501 C271.805667,15.1323315 271.85,14.7613352 271.85,14.388 Z M279.298,13.884 C279.288667,13.5479983 279.230334,13.2260015 279.123,12.918 C279.015666,12.6099985 278.864001,12.3370012 278.668,12.099 C278.471999,11.8609988 278.234001,11.6696674 277.954,11.525 C277.673999,11.3803326 277.356668,11.308 277.002,11.308 C276.637998,11.308 276.316001,11.3803326 276.036,11.525 C275.755999,11.6696674 275.518001,11.8609988 275.322,12.099 C275.125999,12.3370012 274.969667,12.6123318 274.853,12.925 C274.736333,13.2376682 274.659334,13.5573317 274.622,13.884 L279.298,13.884 Z M274.622,14.626 C274.622,14.9433349 274.666333,15.2723316 274.755,15.613 C274.843667,15.9536684 274.985999,16.259332 275.182,16.53 C275.378001,16.800668 275.625332,17.0246658 275.924,17.202 C276.222668,17.3793342 276.581998,17.468 277.002,17.468 C277.646003,17.468 278.149998,17.3000017 278.514,16.964 C278.878002,16.6279983 279.129999,16.1800028 279.27,15.62 L280.152,15.62 C279.965332,16.4413374 279.622336,17.0759978 279.123,17.524 C278.623664,17.9720022 277.916671,18.196 277.002,18.196 C276.432664,18.196 275.940335,18.0956677 275.525,17.895 C275.109665,17.6943323 274.771335,17.4190017 274.51,17.069 C274.248665,16.7189982 274.055001,16.3130023 273.929,15.851 C273.802999,15.3889977 273.74,14.9013359 273.74,14.388 C273.74,13.9119976 273.802999,13.4453356 273.929,12.988 C274.055001,12.5306644 274.248665,12.1223351 274.51,11.763 C274.771335,11.4036649 275.109665,11.1143344 275.525,10.895 C275.940335,10.6756656 276.432664,10.566 277.002,10.566 C277.58067,10.566 278.075331,10.6826655 278.486,10.916 C278.896669,11.1493345 279.230332,11.4549981 279.487,11.833 C279.743668,12.2110019 279.927999,12.6449975 280.04,13.135 C280.152001,13.6250025 280.198667,14.1219975 280.18,14.626 L274.622,14.626 Z M281.356,10.776 L281.356,18 L282.238,18 L282.238,13.786 C282.247333,13.4313316 282.305666,13.1023349 282.413,12.799 C282.520334,12.4956652 282.669666,12.2343344 282.861,12.015 C283.052334,11.7956656 283.285665,11.6230006 283.561,11.497 C283.836335,11.3709994 284.151332,11.308 284.506,11.308 C284.860668,11.308 285.156999,11.3639994 285.395,11.476 C285.633001,11.5880006 285.821999,11.741999 285.962,11.938 C286.102001,12.134001 286.2,12.3649987 286.256,12.631 C286.312,12.8970013 286.34,13.1839985 286.34,13.492 L286.34,18 L287.222,18 L287.222,13.352 C287.222,12.9226645 287.18,12.5353351 287.096,12.19 C287.012,11.8446649 286.867334,11.5530012 286.662,11.315 C286.456666,11.0769988 286.183668,10.8926673 285.843,10.762 C285.502332,10.6313327 285.080003,10.566 284.576,10.566 C284.062664,10.566 283.591335,10.6989987 283.162,10.965 C282.732665,11.2310013 282.434001,11.5833311 282.266,12.022 L282.238,12.022 L282.238,10.776 L281.356,10.776 Z M295.244,18 L294.432,18 L294.432,16.628 L294.404,16.628 C294.310666,16.8613345 294.173001,17.075999 293.991,17.272 C293.808999,17.468001 293.601334,17.633666 293.368,17.769 C293.134665,17.904334 292.885001,18.009333 292.619,18.084 C292.352999,18.158667 292.089335,18.196 291.828,18.196 C291.277331,18.196 290.799002,18.0956677 290.393,17.895 C289.986998,17.6943323 289.648668,17.4190017 289.378,17.069 C289.107332,16.7189982 288.906667,16.3130023 288.776,15.851 C288.645333,15.3889977 288.58,14.9013359 288.58,14.388 C288.58,13.8746641 288.645333,13.3870023 288.776,12.925 C288.906667,12.4629977 289.107332,12.0570017 289.378,11.707 C289.648668,11.3569983 289.986998,11.0793344 290.393,10.874 C290.799002,10.6686656 291.277331,10.566 291.828,10.566 C292.098668,10.566 292.362332,10.5986663 292.619,10.664 C292.875668,10.7293337 293.115999,10.829666 293.34,10.965 C293.564001,11.100334 293.762332,11.265999 293.935,11.462 C294.107668,11.658001 294.240666,11.8866654 294.334,12.148 L294.362,12.148 L294.362,8.004 L295.244,8.004 L295.244,18 Z M289.462,14.388 C289.462,14.7613352 289.506333,15.1323315 289.595,15.501 C289.683667,15.8696685 289.823666,16.1986652 290.015,16.488 C290.206334,16.7773348 290.451332,17.0129991 290.75,17.195 C291.048668,17.3770009 291.407998,17.468 291.828,17.468 C292.294669,17.468 292.688998,17.3770009 293.011,17.195 C293.333002,17.0129991 293.594332,16.7773348 293.795,16.488 C293.995668,16.1986652 294.140333,15.8696685 294.229,15.501 C294.317667,15.1323315 294.362,14.7613352 294.362,14.388 C294.362,14.0146648 294.317667,13.6436685 294.229,13.275 C294.140333,12.9063315 293.995668,12.5773348 293.795,12.288 C293.594332,11.9986652 293.333002,11.7630009 293.011,11.581 C292.688998,11.3989991 292.294669,11.308 291.828,11.308 C291.407998,11.308 291.048668,11.3989991 290.75,11.581 C290.451332,11.7630009 290.206334,11.9986652 290.015,12.288 C289.823666,12.5773348 289.683667,12.9063315 289.595,13.275 C289.506333,13.6436685 289.462,14.0146648 289.462,14.388 Z M302.118,13.884 C302.108667,13.5479983 302.050334,13.2260015 301.943,12.918 C301.835666,12.6099985 301.684001,12.3370012 301.488,12.099 C301.291999,11.8609988 301.054001,11.6696674 300.774,11.525 C300.493999,11.3803326 300.176668,11.308 299.822,11.308 C299.457998,11.308 299.136001,11.3803326 298.856,11.525 C298.575999,11.6696674 298.338001,11.8609988 298.142,12.099 C297.945999,12.3370012 297.789667,12.6123318 297.673,12.925 C297.556333,13.2376682 297.479334,13.5573317 297.442,13.884 L302.118,13.884 Z M297.442,14.626 C297.442,14.9433349 297.486333,15.2723316 297.575,15.613 C297.663667,15.9536684 297.805999,16.259332 298.002,16.53 C298.198001,16.800668 298.445332,17.0246658 298.744,17.202 C299.042668,17.3793342 299.401998,17.468 299.822,17.468 C300.466003,17.468 300.969998,17.3000017 301.334,16.964 C301.698002,16.6279983 301.949999,16.1800028 302.09,15.62 L302.972,15.62 C302.785332,16.4413374 302.442336,17.0759978 301.943,17.524 C301.443664,17.9720022 300.736671,18.196 299.822,18.196 C299.252664,18.196 298.760335,18.0956677 298.345,17.895 C297.929665,17.6943323 297.591335,17.4190017 297.33,17.069 C297.068665,16.7189982 296.875001,16.3130023 296.749,15.851 C296.622999,15.3889977 296.56,14.9013359 296.56,14.388 C296.56,13.9119976 296.622999,13.4453356 296.749,12.988 C296.875001,12.5306644 297.068665,12.1223351 297.33,11.763 C297.591335,11.4036649 297.929665,11.1143344 298.345,10.895 C298.760335,10.6756656 299.252664,10.566 299.822,10.566 C300.40067,10.566 300.895331,10.6826655 301.306,10.916 C301.716669,11.1493345 302.050332,11.4549981 302.307,11.833 C302.563668,12.2110019 302.747999,12.6449975 302.86,13.135 C302.972001,13.6250025 303.018667,14.1219975 303,14.626 L297.442,14.626 Z M310.546,18 L309.734,18 L309.734,16.628 L309.706,16.628 C309.612666,16.8613345 309.475001,17.075999 309.293,17.272 C309.110999,17.468001 308.903334,17.633666 308.67,17.769 C308.436665,17.904334 308.187001,18.009333 307.921,18.084 C307.654999,18.158667 307.391335,18.196 307.13,18.196 C306.579331,18.196 306.101002,18.0956677 305.695,17.895 C305.288998,17.6943323 304.950668,17.4190017 304.68,17.069 C304.409332,16.7189982 304.208667,16.3130023 304.078,15.851 C303.947333,15.3889977 303.882,14.9013359 303.882,14.388 C303.882,13.8746641 303.947333,13.3870023 304.078,12.925 C304.208667,12.4629977 304.409332,12.0570017 304.68,11.707 C304.950668,11.3569983 305.288998,11.0793344 305.695,10.874 C306.101002,10.6686656 306.579331,10.566 307.13,10.566 C307.400668,10.566 307.664332,10.5986663 307.921,10.664 C308.177668,10.7293337 308.417999,10.829666 308.642,10.965 C308.866001,11.100334 309.064332,11.265999 309.237,11.462 C309.409668,11.658001 309.542666,11.8866654 309.636,12.148 L309.664,12.148 L309.664,8.004 L310.546,8.004 L310.546,18 Z M304.764,14.388 C304.764,14.7613352 304.808333,15.1323315 304.897,15.501 C304.985667,15.8696685 305.125666,16.1986652 305.317,16.488 C305.508334,16.7773348 305.753332,17.0129991 306.052,17.195 C306.350668,17.3770009 306.709998,17.468 307.13,17.468 C307.596669,17.468 307.990998,17.3770009 308.313,17.195 C308.635002,17.0129991 308.896332,16.7773348 309.097,16.488 C309.297668,16.1986652 309.442333,15.8696685 309.531,15.501 C309.619667,15.1323315 309.664,14.7613352 309.664,14.388 C309.664,14.0146648 309.619667,13.6436685 309.531,13.275 C309.442333,12.9063315 309.297668,12.5773348 309.097,12.288 C308.896332,11.9986652 308.635002,11.7630009 308.313,11.581 C307.990998,11.3989991 307.596669,11.308 307.13,11.308 C306.709998,11.308 306.350668,11.3989991 306.052,11.581 C305.753332,11.7630009 305.508334,11.9986652 305.317,12.288 C305.125666,12.5773348 304.985667,12.9063315 304.897,13.275 C304.808333,13.6436685 304.764,14.0146648 304.764,14.388 Z"/>
<rect width="42" height="23" x="57" fill="#2199E8" rx="3"/>
<text fill="#FFF" font-family="HelveticaNeue-Light, Helvetica Neue" font-size="12" font-weight="300" letter-spacing=".917">
<tspan x="71" y="16">All</tspan>
</text>
<path fill="#0A0A0A" d="M1.008,8.004 L1.008,18 L1.96,18 L1.96,13.24 L6.748,13.24 L6.748,12.428 L1.96,12.428 L1.96,8.816 L7.35,8.816 L7.35,8.004 L1.008,8.004 Z M8.596,8.004 L8.596,18 L9.548,18 L9.548,8.004 L8.596,8.004 Z M11.634,8.004 L12.586,8.004 L12.586,17.188 L18.186,17.188 L18.186,18 L11.634,18 L11.634,8.004 Z M18.088,8.004 L25.998,8.004 L25.998,8.816 L22.512,8.816 L22.512,18 L21.56,18 L21.56,8.816 L18.088,8.816 L18.088,8.004 Z M26.936,8.004 L26.936,18 L33.908,18 L33.908,17.188 L27.888,17.188 L27.888,13.24 L33.46,13.24 L33.46,12.428 L27.888,12.428 L27.888,8.816 L33.838,8.816 L33.838,8.004 L26.936,8.004 Z M36.19,12.75 L39.746,12.75 C40.0353348,12.75 40.3106654,12.7056671 40.572,12.617 C40.8333346,12.5283329 41.061999,12.4000008 41.258,12.232 C41.454001,12.0639992 41.6103327,11.8610012 41.727,11.623 C41.8436673,11.3849988 41.902,11.1120015 41.902,10.804 C41.902,10.1879969 41.7246684,9.70266844 41.37,9.348 C41.0153316,8.99333156 40.4740036,8.816 39.746,8.816 L36.19,8.816 L36.19,12.75 Z M35.238,8.004 L39.816,8.004 C40.2266687,8.004 40.6163315,8.05533282 40.985,8.158 C41.3536685,8.26066718 41.6756653,8.41699895 41.951,8.627 C42.2263347,8.83700105 42.4456658,9.10766501 42.609,9.439 C42.7723341,9.77033499 42.854,10.1599978 42.854,10.608 C42.854,11.2426698 42.6906683,11.793331 42.364,12.26 C42.0373317,12.726669 41.5520032,13.0253327 40.908,13.156 L40.908,13.184 C41.2346683,13.2306669 41.5053323,13.3169994 41.72,13.443 C41.9346677,13.5690006 42.109666,13.729999 42.245,13.926 C42.380334,14.122001 42.478333,14.348332 42.539,14.605 C42.599667,14.8616679 42.6393332,15.1393318 42.658,15.438 C42.6673334,15.6060008 42.6766666,15.8113321 42.686,16.054 C42.6953334,16.2966679 42.7139999,16.5416654 42.742,16.789 C42.7700001,17.0363346 42.814333,17.2696656 42.875,17.489 C42.935667,17.7083344 43.0173328,17.8786661 43.12,18 L42.07,18 C42.0139997,17.9066662 41.9696668,17.792334 41.937,17.657 C41.9043332,17.521666 41.8810001,17.3816674 41.867,17.237 C41.8529999,17.0923326 41.8413334,16.9500007 41.832,16.81 C41.8226666,16.6699993 41.8133334,16.5486672 41.804,16.446 C41.7853332,16.0913316 41.7550002,15.7390017 41.713,15.389 C41.6709998,15.0389983 41.582334,14.7263347 41.447,14.451 C41.311666,14.1756653 41.1156679,13.9540008 40.859,13.786 C40.602332,13.6179992 40.2500022,13.5433332 39.802,13.562 L36.19,13.562 L36.19,18 L35.238,18 L35.238,8.004 Z M44.926,18 L46.102,18 L46.102,16.516 L44.926,16.516 L44.926,18 Z M44.926,12.484 L46.102,12.484 L46.102,11 L44.926,11 L44.926,12.484 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1001" height="56" viewBox="0 0 1001 56" id="svg" >
<defs>
<rect id="-top-bar-(search)-a" width="122" height="44"/>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="1001" height="56" fill="#EEE"/>
<path fill="#0A0A0A" d="M7.856,6.92 L9.296,6.92 C9.27466656,6.29066352 9.15466776,5.7493356 8.936,5.296 C8.71733224,4.8426644 8.41866856,4.46666816 8.04,4.168 C7.66133144,3.86933184 7.22133584,3.65066736 6.72,3.512 C6.21866416,3.37333264 5.6746696,3.304 5.088,3.304 C4.56533072,3.304 4.05600248,3.370666 3.56,3.504 C3.06399752,3.637334 2.62133528,3.83999864 2.232,4.112 C1.84266472,4.38400136 1.53066784,4.73066456 1.296,5.152 C1.06133216,5.57333544 0.944,6.07199712 0.944,6.648 C0.944,7.17066928 1.04799896,7.6053316 1.256,7.952 C1.46400104,8.2986684 1.7413316,8.58133224 2.088,8.8 C2.4346684,9.01866776 2.82666448,9.194666 3.264,9.328 C3.70133552,9.461334 4.1466644,9.57866616 4.6,9.68 C5.0533356,9.78133384 5.49866448,9.87999952 5.936,9.976 C6.37333552,10.0720005 6.7653316,10.1973326 7.112,10.352 C7.4586684,10.5066674 7.73599896,10.7066654 7.944,10.952 C8.15200104,11.1973346 8.256,11.5173314 8.256,11.912 C8.256,12.3280021 8.17066752,12.669332 8,12.936 C7.82933248,13.202668 7.60533472,13.4133326 7.328,13.568 C7.05066528,13.7226674 6.7386684,13.8319997 6.392,13.896 C6.0453316,13.9600003 5.70133504,13.992 5.36,13.992 C4.9333312,13.992 4.51733536,13.9386672 4.112,13.832 C3.70666464,13.7253328 3.35200152,13.5600011 3.048,13.336 C2.74399848,13.1119989 2.4986676,12.8266684 2.312,12.48 C2.1253324,12.1333316 2.032,11.7200024 2.032,11.24 L0.592,11.24 C0.592,11.9333368 0.71733208,12.5333308 0.968,13.04 C1.21866792,13.5466692 1.55999784,13.962665 1.992,14.288 C2.42400216,14.613335 2.92533048,14.8559992 3.496,15.016 C4.06666952,15.1760008 4.6719968,15.256 5.312,15.256 C5.83466928,15.256 6.35999736,15.1946673 6.888,15.072 C7.41600264,14.9493327 7.8933312,14.7520014 8.32,14.48 C8.7466688,14.2079986 9.09599864,13.8560022 9.368,13.424 C9.64000136,12.9919978 9.776,12.472003 9.776,11.864 C9.776,11.2986638 9.67200104,10.8293352 9.464,10.456 C9.25599896,10.0826648 8.9786684,9.77333456 8.632,9.528 C8.2853316,9.28266544 7.89333552,9.08800072 7.456,8.944 C7.01866448,8.79999928 6.5733356,8.6746672 6.12,8.568 C5.6666644,8.4613328 5.22133552,8.36266712 4.784,8.272 C4.34666448,8.18133288 3.9546684,8.06666736 3.608,7.928 C3.2613316,7.78933264 2.98400104,7.61066776 2.776,7.392 C2.56799896,7.17333224 2.464,6.88800176 2.464,6.536 C2.464,6.1626648 2.53599928,5.85066792 2.68,5.6 C2.82400072,5.34933208 3.0159988,5.14933408 3.256,5 C3.4960012,4.85066592 3.77066512,4.74400032 4.08,4.68 C4.38933488,4.61599968 4.7039984,4.584 5.024,4.584 C5.81333728,4.584 6.4613308,4.76799816 6.968,5.136 C7.4746692,5.50400184 7.77066624,6.09866256 7.856,6.92 Z M17.136,10.072 C17.1146666,9.7519984 17.0426673,9.44800144 16.92,9.16 C16.7973327,8.87199856 16.632001,8.62400104 16.424,8.416 C16.215999,8.20799896 15.9706681,8.04266728 15.688,7.92 C15.4053319,7.79733272 15.093335,7.736 14.752,7.736 C14.3999982,7.736 14.0826681,7.79733272 13.8,7.92 C13.5173319,8.04266728 13.2746677,8.2106656 13.072,8.424 C12.8693323,8.6373344 12.7093339,8.88533192 12.592,9.168 C12.4746661,9.45066808 12.4053334,9.7519984 12.384,10.072 L17.136,10.072 Z M18.448,12.376 C18.2666658,13.3040046 17.8666698,14.0026643 17.248,14.472 C16.6293302,14.9413357 15.8506714,15.176 14.912,15.176 C14.2506634,15.176 13.6773358,15.0693344 13.192,14.856 C12.7066642,14.6426656 12.2986683,14.3440019 11.968,13.96 C11.6373317,13.5759981 11.3893342,13.117336 11.224,12.584 C11.0586658,12.050664 10.9653334,11.4693365 10.944,10.84 C10.944,10.2106635 11.039999,9.63466928 11.232,9.112 C11.424001,8.58933072 11.6933316,8.13600192 12.04,7.752 C12.3866684,7.36799808 12.797331,7.0693344 13.272,6.856 C13.746669,6.6426656 14.2666638,6.536 14.832,6.536 C15.5680037,6.536 16.1786642,6.68799848 16.664,6.992 C17.1493358,7.29600152 17.5386652,7.68266432 17.832,8.152 C18.1253348,8.62133568 18.3279994,9.13333056 18.44,9.688 C18.5520006,10.2426694 18.5973334,10.7706642 18.576,11.272 L12.384,11.272 C12.3733333,11.6346685 12.4159995,11.978665 12.512,12.304 C12.6080005,12.629335 12.7626656,12.9173321 12.976,13.168 C13.1893344,13.4186679 13.4613317,13.6186659 13.792,13.768 C14.1226683,13.9173341 14.5119978,13.992 14.96,13.992 C15.5360029,13.992 16.0079982,13.858668 16.376,13.592 C16.7440018,13.325332 16.9866661,12.9200027 17.104,12.376 L18.448,12.376 Z M22.208,10.648 L19.104,15 L20.752,15 L23.056,11.576 L25.36,15 L27.104,15 L23.904,10.536 L26.752,6.728 L25.12,6.728 L23.056,9.624 L21.072,6.728 L19.328,6.728 L22.208,10.648 Z M31.52,16.104 C31.3599992,16.5093354 31.2026674,16.8506653 31.048,17.128 C30.8933326,17.4053347 30.7226676,17.6319991 30.536,17.808 C30.3493324,17.9840009 30.1413345,18.1119996 29.912,18.192 C29.6826655,18.2720004 29.4186682,18.312 29.12,18.312 C28.9599992,18.312 28.8000008,18.3013334 28.64,18.28 C28.4799992,18.2586666 28.3253341,18.2213336 28.176,18.168 L28.176,16.92 C28.2933339,16.9733336 28.4293326,17.0186665 28.584,17.056 C28.7386674,17.0933335 28.8693328,17.112 28.976,17.112 C29.2533347,17.112 29.4853324,17.045334 29.672,16.912 C29.8586676,16.778666 29.9999995,16.5893346 30.096,16.344 L30.656,14.952 L27.376,6.728 L28.912,6.728 L31.328,13.496 L31.36,13.496 L33.68,6.728 L35.12,6.728 L31.52,16.104 Z M43.536,4.856 L39.728,4.856 L39.728,3.576 L48.864,3.576 L48.864,4.856 L45.056,4.856 L45.056,15 L43.536,15 L43.536,4.856 Z M49.12,10.872 C49.12,11.3733358 49.186666,11.8186647 49.32,12.208 C49.453334,12.5973353 49.6373322,12.9226654 49.872,13.184 C50.1066678,13.4453346 50.3813318,13.6453326 50.696,13.784 C51.0106682,13.9226674 51.3439982,13.992 51.696,13.992 C52.0480018,13.992 52.3813318,13.9226674 52.696,13.784 C53.0106682,13.6453326 53.2853322,13.4453346 53.52,13.184 C53.7546678,12.9226654 53.938666,12.5973353 54.072,12.208 C54.205334,11.8186647 54.272,11.3733358 54.272,10.872 C54.272,10.3706642 54.205334,9.92533528 54.072,9.536 C53.938666,9.14666472 53.7546678,8.818668 53.52,8.552 C53.2853322,8.285332 53.0106682,8.08266736 52.696,7.944 C52.3813318,7.80533264 52.0480018,7.736 51.696,7.736 C51.3439982,7.736 51.0106682,7.80533264 50.696,7.944 C50.3813318,8.08266736 50.1066678,8.285332 49.872,8.552 C49.6373322,8.818668 49.453334,9.14666472 49.32,9.536 C49.186666,9.92533528 49.12,10.3706642 49.12,10.872 Z M47.68,10.872 C47.68,10.263997 47.7653325,9.69600264 47.936,9.168 C48.1066675,8.63999736 48.362665,8.18133528 48.704,7.792 C49.045335,7.40266472 49.4666642,7.09600112 49.968,6.872 C50.4693358,6.64799888 51.0453301,6.536 51.696,6.536 C52.3573366,6.536 52.9359975,6.64799888 53.432,6.872 C53.9280025,7.09600112 54.346665,7.40266472 54.688,7.792 C55.029335,8.18133528 55.2853325,8.63999736 55.456,9.168 C55.6266675,9.69600264 55.712,10.263997 55.712,10.872 C55.712,11.480003 55.6266675,12.0453307 55.456,12.568 C55.2853325,13.0906693 55.029335,13.5466647 54.688,13.936 C54.346665,14.3253353 53.9280025,14.6293322 53.432,14.848 C52.9359975,15.0666678 52.3573366,15.176 51.696,15.176 C51.0453301,15.176 50.4693358,15.0666678 49.968,14.848 C49.4666642,14.6293322 49.045335,14.3253353 48.704,13.936 C48.362665,13.5466647 48.1066675,13.0906693 47.936,12.568 C47.7653325,12.0453307 47.68,11.480003 47.68,10.872 Z M57.36,6.728 L58.72,6.728 L58.72,7.848 L58.752,7.848 C58.9760011,7.38933104 59.3279976,7.05600104 59.808,6.848 C60.2880024,6.63999896 60.8159971,6.536 61.392,6.536 C62.0320032,6.536 62.589331,6.65333216 63.064,6.888 C63.5386691,7.12266784 63.9333318,7.439998 64.248,7.84 C64.5626683,8.240002 64.7999992,8.70133072 64.96,9.224 C65.1200008,9.74666928 65.2,10.3013304 65.2,10.888 C65.2,11.4746696 65.1226675,12.0293307 64.968,12.552 C64.8133326,13.0746693 64.5786683,13.5306647 64.264,13.92 C63.9493318,14.3093353 63.5546691,14.6159989 63.08,14.84 C62.605331,15.0640011 62.0533365,15.176 61.424,15.176 C61.2213323,15.176 60.9946679,15.1546669 60.744,15.112 C60.4933321,15.0693331 60.2453346,15.0000005 60,14.904 C59.7546655,14.8079995 59.5226678,14.6773342 59.304,14.512 C59.0853323,14.3466658 58.9013341,14.1413346 58.752,13.896 L58.72,13.896 L58.72,18.152 L57.36,18.152 L57.36,6.728 Z M63.76,10.792 C63.76,10.4079981 63.7093339,10.0320018 63.608,9.664 C63.5066662,9.29599816 63.3520011,8.96800144 63.144,8.68 C62.935999,8.39199856 62.669335,8.16266752 62.344,7.992 C62.0186651,7.82133248 61.6373355,7.736 61.2,7.736 C60.7413311,7.736 60.3520016,7.82666576 60.032,8.008 C59.7119984,8.18933424 59.4506677,8.4266652 59.248,8.72 C59.0453323,9.0133348 58.8986671,9.3466648 58.808,9.72 C58.7173329,10.0933352 58.672,10.4719981 58.672,10.856 C58.672,11.2613354 58.7199995,11.6533314 58.816,12.032 C58.9120005,12.4106686 59.063999,12.7439986 59.272,13.032 C59.4800011,13.3200014 59.7493317,13.5519991 60.08,13.728 C60.4106683,13.9040009 60.8106643,13.992 61.28,13.992 C61.7493357,13.992 62.1413318,13.9013342 62.456,13.72 C62.7706683,13.5386658 63.0239991,13.2986682 63.216,13 C63.408001,12.7013318 63.5466663,12.3600019 63.632,11.976 C63.7173338,11.5919981 63.76,11.1973354 63.76,10.792 Z M72.992,8.488 L76.032,8.488 C76.8960043,8.488 77.5173315,8.33600152 77.896,8.032 C78.2746686,7.72799848 78.464,7.27200304 78.464,6.664 C78.464,6.25866464 78.4000007,5.93866784 78.272,5.704 C78.1439994,5.46933216 77.9680011,5.28800064 77.744,5.16 C77.5199989,5.03199936 77.2613348,4.94933352 76.968,4.912 C76.6746652,4.87466648 76.3626683,4.856 76.032,4.856 L72.992,4.856 L72.992,8.488 Z M71.472,3.576 L75.616,3.576 C75.8613346,3.576 76.1253319,3.57866664 76.408,3.584 C76.6906681,3.58933336 76.9706653,3.6053332 77.248,3.632 C77.5253347,3.6586668 77.7839988,3.6986664 78.024,3.752 C78.2640012,3.8053336 78.4693325,3.8853328 78.64,3.992 C79.0133352,4.21600112 79.3306654,4.52533136 79.592,4.92 C79.8533347,5.31466864 79.984,5.79999712 79.984,6.376 C79.984,6.98400304 79.8373348,7.50933112 79.544,7.952 C79.2506652,8.39466888 78.8320027,8.7226656 78.288,8.936 L78.288,8.968 C78.9920035,9.11733408 79.5306648,9.43733088 79.904,9.928 C80.2773352,10.4186691 80.464,11.0159965 80.464,11.72 C80.464,12.1360021 80.3893341,12.5413314 80.24,12.936 C80.0906659,13.3306686 79.8693348,13.6799985 79.576,13.984 C79.2826652,14.2880015 78.9200022,14.5333324 78.488,14.72 C78.0559979,14.9066676 77.5573362,15 76.992,15 L71.472,15 L71.472,3.576 Z M72.992,13.72 L76.8,13.72 C77.4720034,13.72 77.9973315,13.5386685 78.376,13.176 C78.7546686,12.8133315 78.944,12.3120032 78.944,11.672 C78.944,11.2986648 78.8746674,10.9893346 78.736,10.744 C78.5973327,10.4986654 78.4133345,10.3040007 78.184,10.16 C77.9546655,10.0159993 77.6906682,9.91466696 77.392,9.856 C77.0933319,9.79733304 76.7840016,9.768 76.464,9.768 L72.992,9.768 L72.992,13.72 Z M89.536,14.968 C89.3013322,15.1066674 88.9760021,15.176 88.56,15.176 C88.2079983,15.176 87.9280011,15.0773343 87.72,14.88 C87.511999,14.6826657 87.408,14.3600022 87.408,13.912 C87.0346648,14.3600022 86.6000025,14.6826657 86.104,14.88 C85.6079975,15.0773343 85.0720029,15.176 84.496,15.176 C84.1226648,15.176 83.7680017,15.1333338 83.432,15.048 C83.0959983,14.9626662 82.8053346,14.8293342 82.56,14.648 C82.3146655,14.4666658 82.1200007,14.2293348 81.976,13.936 C81.8319993,13.6426652 81.76,13.2880021 81.76,12.872 C81.76,12.4026643 81.8399992,12.0186682 82,11.72 C82.1600008,11.4213318 82.3706654,11.1786676 82.632,10.992 C82.8933347,10.8053324 83.1919983,10.6640005 83.528,10.568 C83.8640017,10.4719995 84.2079983,10.3920003 84.56,10.328 C84.9333352,10.253333 85.2879983,10.1973335 85.624,10.16 C85.9600017,10.1226665 86.2559987,10.0693337 86.512,10 C86.7680013,9.93066632 86.9706659,9.829334 87.12,9.696 C87.2693341,9.562666 87.344,9.36800128 87.344,9.112 C87.344,8.81333184 87.2880006,8.57333424 87.176,8.392 C87.0639995,8.21066576 86.9200009,8.07200048 86.744,7.976 C86.5679991,7.87999952 86.3706678,7.81600016 86.152,7.784 C85.9333323,7.75199984 85.7173344,7.736 85.504,7.736 C84.9279971,7.736 84.4480019,7.84533224 84.064,8.064 C83.6799981,8.28266776 83.4720002,8.69599696 83.44,9.304 L82.08,9.304 C82.1013335,8.79199744 82.2079991,8.36000176 82.4,8.008 C82.592001,7.65599824 82.8479984,7.37066776 83.168,7.152 C83.4880016,6.93333224 83.8533313,6.77600048 84.264,6.68 C84.6746687,6.58399952 85.1146643,6.536 85.584,6.536 C85.9573352,6.536 86.3279982,6.5626664 86.696,6.616 C87.0640019,6.6693336 87.3973319,6.77866584 87.696,6.944 C87.9946682,7.10933416 88.2346658,7.34133184 88.416,7.64 C88.5973343,7.93866816 88.688,8.3279976 88.688,8.808 L88.688,13.064 C88.688,13.3840016 88.7066665,13.6186659 88.744,13.768 C88.7813335,13.9173341 88.9066656,13.992 89.12,13.992 C89.2373339,13.992 89.3759992,13.9653336 89.536,13.912 L89.536,14.968 Z M87.328,10.728 C87.1573325,10.8560006 86.9333347,10.949333 86.656,11.008 C86.3786653,11.066667 86.0880015,11.1146665 85.784,11.152 C85.4799985,11.1893335 85.1733349,11.2319998 84.864,11.28 C84.5546651,11.3280002 84.2773346,11.4053328 84.032,11.512 C83.7866655,11.6186672 83.5866675,11.7706657 83.432,11.968 C83.2773326,12.1653343 83.2,12.434665 83.2,12.776 C83.2,13.0000011 83.2453329,13.1893326 83.336,13.344 C83.4266671,13.4986674 83.5439993,13.6239995 83.688,13.72 C83.8320007,13.8160005 83.9999991,13.8853331 84.192,13.928 C84.384001,13.9706669 84.5866656,13.992 84.8,13.992 C85.2480023,13.992 85.6319984,13.9306673 85.952,13.808 C86.2720016,13.6853327 86.5333323,13.5306676 86.736,13.344 C86.9386677,13.1573324 87.0879995,12.9546678 87.184,12.736 C87.2800005,12.5173322 87.328,12.312001 87.328,12.12 L87.328,10.728 Z M90.752,6.728 L90.752,15 L92.112,15 L92.112,11.32 C92.112,10.786664 92.1653328,10.3146687 92.272,9.904 C92.3786672,9.49333128 92.5493322,9.14400144 92.784,8.856 C93.0186679,8.56799856 93.3279981,8.34933408 93.712,8.2 C94.0960019,8.05066592 94.5599973,7.976 95.104,7.976 L95.104,6.536 C94.3679963,6.51466656 93.7600024,6.6639984 93.28,6.984 C92.7999976,7.3040016 92.3946683,7.79999664 92.064,8.472 L92.032,8.472 L92.032,6.728 L90.752,6.728 Z" transform="translate(15 18)"/>
<g fill="#2199E8" transform="translate(656 21)">
<path d="M4.64999952,4.004 L4.64999952,14 L5.60199952,14 L5.60199952,4.004 L4.64999952,4.004 Z M10.253333,6.776 L10.253333,4.606 L9.37133302,4.606 L9.37133302,6.776 L8.11133302,6.776 L8.11133302,7.518 L9.37133302,7.518 L9.37133302,12.46 C9.36199964,13.0760031 9.47399852,13.4983322 9.70733302,13.727 C9.94066752,13.9556678 10.3513301,14.07 10.939333,14.07 C11.0700003,14.07 11.2006657,14.0653334 11.331333,14.056 C11.4620003,14.0466666 11.5926657,14.042 11.723333,14.042 L11.723333,13.3 C11.4713318,13.3280001 11.2193343,13.342 10.967333,13.342 C10.6499981,13.3233332 10.4516667,13.2323341 10.372333,13.069 C10.2929993,12.9056659 10.253333,12.6793348 10.253333,12.39 L10.253333,7.518 L11.723333,7.518 L11.723333,6.776 L10.253333,6.776 Z M19.5246665,9.884 C19.5153331,9.54799832 19.4570004,9.22600154 19.3496665,8.918 C19.2423326,8.60999846 19.0906675,8.33700119 18.8946665,8.099 C18.6986655,7.86099881 18.4606679,7.66966739 18.1806665,7.525 C17.9006651,7.38033261 17.5833349,7.308 17.2286665,7.308 C16.8646647,7.308 16.5426679,7.38033261 16.2626665,7.525 C15.9826651,7.66966739 15.7446675,7.86099881 15.5486665,8.099 C15.3526655,8.33700119 15.1963338,8.61233177 15.0796665,8.925 C14.9629993,9.23766823 14.886,9.5573317 14.8486665,9.884 L19.5246665,9.884 Z M14.8486665,10.626 C14.8486665,10.9433349 14.8929994,11.2723316 14.9816665,11.613 C15.0703336,11.9536684 15.2126655,12.259332 15.4086665,12.53 C15.6046675,12.800668 15.8519983,13.0246658 16.1506665,13.202 C16.4493347,13.3793342 16.8086644,13.468 17.2286665,13.468 C17.8726697,13.468 18.3766647,13.3000017 18.7406665,12.964 C19.1046683,12.6279983 19.3566658,12.1800028 19.4966665,11.62 L20.3786665,11.62 C20.1919989,12.4413374 19.8490023,13.0759978 19.3496665,13.524 C18.8503307,13.9720022 18.1433377,14.196 17.2286665,14.196 C16.6593303,14.196 16.1670019,14.0956677 15.7516665,13.895 C15.3363311,13.6943323 14.9980011,13.4190018 14.7366665,13.069 C14.4753319,12.7189983 14.2816671,12.3130023 14.1556665,11.851 C14.0296659,11.3889977 13.9666665,10.9013359 13.9666665,10.388 C13.9666665,9.91199762 14.0296659,9.44533562 14.1556665,8.988 C14.2816671,8.53066438 14.4753319,8.12233513 14.7366665,7.763 C14.9980011,7.40366487 15.3363311,7.11433443 15.7516665,6.895 C16.1670019,6.67566557 16.6593303,6.566 17.2286665,6.566 C17.8073361,6.566 18.3019978,6.6826655 18.7126665,6.916 C19.1233352,7.1493345 19.4569986,7.45499811 19.7136665,7.833 C19.9703345,8.21100189 20.1546659,8.64499755 20.2666665,9.135 C20.3786671,9.62500245 20.4253333,10.1219975 20.4066665,10.626 L14.8486665,10.626 Z M22.93,6.776 L22.93,14 L23.812,14 L23.812,9.968 C23.812,9.58533142 23.8539996,9.23300161 23.938,8.911 C24.0220004,8.58899839 24.1503325,8.30900119 24.323,8.071 C24.4956675,7.83299881 24.7196653,7.64633401 24.995,7.511 C25.2703347,7.37566599 25.5946648,7.308 25.968,7.308 C26.2480014,7.308 26.485999,7.3546662 26.682,7.448 C26.878001,7.5413338 27.0343328,7.66966585 27.151,7.833 C27.2676673,7.99633415 27.3516664,8.18766557 27.403,8.407 C27.4543336,8.62633443 27.48,8.85733212 27.48,9.1 L27.48,14 L28.362,14 L28.362,9.912 C28.362,9.57599832 28.392333,9.25166823 28.453,8.939 C28.513667,8.62633177 28.6186659,8.34866788 28.768,8.106 C28.9173341,7.86333212 29.1179987,7.66966739 29.37,7.525 C29.6220013,7.38033261 29.9393314,7.308 30.322,7.308 C30.9566698,7.308 31.3999987,7.46433177 31.652,7.777 C31.9040013,8.08966823 32.03,8.54466368 32.03,9.142 L32.03,14 L32.912,14 L32.912,9.1 C32.912,7.41065822 32.114008,6.566 30.518,6.566 C30.0419976,6.566 29.5940021,6.6826655 29.174,6.916 C28.7539979,7.1493345 28.4366677,7.50399762 28.222,7.98 C28.0913327,7.50399762 27.8323353,7.1493345 27.445,6.916 C27.0576647,6.6826655 26.6260024,6.566 26.15,6.566 C25.5619971,6.566 25.0790019,6.69199874 24.701,6.944 C24.3229981,7.19600126 24.0173345,7.54599776 23.784,7.994 L23.742,7.994 L23.742,6.776 L22.93,6.776 Z M41.668667,6.09 L41.668667,6.72 L44.258667,6.72 L44.258667,14 L45.140667,14 L45.140667,4.2 L44.426667,4.2 C44.3613333,4.64800224 44.2516678,4.99566543 44.097667,5.243 C43.9436662,5.49033457 43.7523348,5.67466606 43.523667,5.796 C43.2949992,5.91733394 43.0243352,5.99433317 42.711667,6.027 C42.3989988,6.05966683 42.0513356,6.08066662 41.668667,6.09 Z"/>
<polygon points="54.737 4.75 64.263 4.75 59.5 10"/>
</g>
<path fill="#2199E8" d="M16.2006656,14 L16.2006656,8.918 L11.9586656,8.918 L11.9586656,9.73 L15.3606656,9.73 C15.3699989,10.2620027 15.2999996,10.7519978 15.1506656,11.2 C15.0013315,11.6480022 14.7773337,12.0353317 14.4786656,12.362 C14.1799974,12.6886683 13.8136677,12.9429991 13.3796656,13.125 C12.9456634,13.3070009 12.453335,13.398 11.9026656,13.398 C11.2399956,13.398 10.6706679,13.2720013 10.1946656,13.02 C9.71866317,12.7679987 9.3290004,12.4343354 9.02566555,12.019 C8.7223307,11.6036646 8.49833294,11.132336 8.35366555,10.605 C8.20899816,10.077664 8.13666555,9.54333604 8.13666555,9.002 C8.13666555,8.45133058 8.20899816,7.91466928 8.35366555,7.392 C8.49833294,6.86933072 8.7223307,6.40033541 9.02566555,5.985 C9.3290004,5.56966459 9.71866317,5.23600126 10.1946656,4.984 C10.6706679,4.73199874 11.2399956,4.606 11.9026656,4.606 C12.3786679,4.606 12.807997,4.68299923 13.1906656,4.837 C13.5733341,4.99100077 13.9023308,5.18933212 14.1776656,5.432 C14.4530003,5.67466788 14.6723314,5.94299853 14.8356656,6.237 C14.9989997,6.53100147 15.0946654,6.82266522 15.1226656,7.112 L16.0746656,7.112 C15.9813318,6.56133058 15.8086668,6.08066872 15.5566656,5.67 C15.3046643,5.25933128 14.9966674,4.9140014 14.6326656,4.634 C14.2686637,4.3539986 13.8533346,4.1440007 13.3866656,4.004 C12.9199966,3.8639993 12.4253348,3.794 11.9026656,3.794 C11.1186616,3.794 10.4303352,3.93633191 9.83766555,4.221 C9.24499592,4.50566809 8.75266751,4.88833093 8.36066555,5.369 C7.96866359,5.84966907 7.67466653,6.40266354 7.47866555,7.028 C7.28266457,7.65333646 7.18466555,8.31132988 7.18466555,9.002 C7.18466555,9.69267012 7.28266457,10.3506635 7.47866555,10.976 C7.67466653,11.6013365 7.96866359,12.1519976 8.36066555,12.628 C8.75266751,13.1040024 9.24499592,13.4843319 9.83766555,13.769 C10.4303352,14.0536681 11.1186616,14.196 11.9026656,14.196 C12.2666674,14.196 12.6189972,14.158667 12.9596656,14.084 C13.3003339,14.009333 13.6199974,13.8903341 13.9186656,13.727 C14.2173337,13.5636658 14.490331,13.353668 14.7376656,13.097 C14.9850001,12.8403321 15.1926647,12.5346684 15.3606656,12.18 L15.3886656,12.18 L15.5146656,14 L16.2006656,14 Z M24.393999,9.884 C24.3846657,9.54799832 24.3263329,9.22600154 24.218999,8.918 C24.1116652,8.60999846 23.96,8.33700119 23.763999,8.099 C23.5679981,7.86099881 23.3300004,7.66966739 23.049999,7.525 C22.7699976,7.38033261 22.4526675,7.308 22.097999,7.308 C21.7339972,7.308 21.4120004,7.38033261 21.131999,7.525 C20.8519976,7.66966739 20.614,7.86099881 20.417999,8.099 C20.2219981,8.33700119 20.0656663,8.61233177 19.948999,8.925 C19.8323318,9.23766823 19.7553326,9.5573317 19.717999,9.884 L24.393999,9.884 Z M19.717999,10.626 C19.717999,10.9433349 19.7623319,11.2723316 19.850999,11.613 C19.9396662,11.9536684 20.0819981,12.259332 20.277999,12.53 C20.474,12.800668 20.7213309,13.0246658 21.019999,13.202 C21.3186672,13.3793342 21.6779969,13.468 22.097999,13.468 C22.7420023,13.468 23.2459972,13.3000017 23.609999,12.964 C23.9740009,12.6279983 24.2259983,12.1800028 24.365999,11.62 L25.247999,11.62 C25.0613314,12.4413374 24.7183349,13.0759978 24.218999,13.524 C23.7196632,13.9720022 23.0126703,14.196 22.097999,14.196 C21.5286629,14.196 21.0363345,14.0956677 20.620999,13.895 C20.2056636,13.6943323 19.8673337,13.4190018 19.605999,13.069 C19.3446644,12.7189983 19.1509997,12.3130023 19.024999,11.851 C18.8989984,11.3889977 18.835999,10.9013359 18.835999,10.388 C18.835999,9.91199762 18.8989984,9.44533562 19.024999,8.988 C19.1509997,8.53066438 19.3446644,8.12233513 19.605999,7.763 C19.8673337,7.40366487 20.2056636,7.11433443 20.620999,6.895 C21.0363345,6.67566557 21.5286629,6.566 22.097999,6.566 C22.6766686,6.566 23.1713303,6.6826655 23.581999,6.916 C23.9926678,7.1493345 24.3263311,7.45499811 24.582999,7.833 C24.839667,8.21100189 25.0239985,8.64499755 25.135999,9.135 C25.2479996,9.62500245 25.2946658,10.1219975 25.275999,10.626 L19.717999,10.626 Z M27.7853325,6.776 L27.7853325,14 L28.6673325,14 L28.6673325,9.786 C28.6766659,9.43133156 28.7349987,9.10233485 28.8423325,8.799 C28.9496664,8.49566515 29.0989982,8.23433443 29.2903325,8.015 C29.4816668,7.79566557 29.7149978,7.62300063 29.9903325,7.497 C30.2656672,7.37099937 30.5806641,7.308 30.9353325,7.308 C31.290001,7.308 31.5863313,7.36399944 31.8243325,7.476 C32.0623337,7.58800056 32.2513318,7.74199902 32.3913325,7.938 C32.5313332,8.13400098 32.6293323,8.36499867 32.6853325,8.631 C32.7413328,8.89700133 32.7693325,9.18399846 32.7693325,9.492 L32.7693325,14 L33.6513325,14 L33.6513325,9.352 C33.6513325,8.92266452 33.609333,8.53533506 33.5253325,8.19 C33.4413321,7.84466494 33.2966669,7.55300119 33.0913325,7.315 C32.8859982,7.07699881 32.6130009,6.89266732 32.2723325,6.762 C31.9316642,6.63133268 31.5093351,6.566 31.0053325,6.566 C30.4919966,6.566 30.020668,6.69899867 29.5913325,6.965 C29.1619971,7.23100133 28.8633334,7.58333114 28.6953325,8.022 L28.6673325,8.022 L28.6673325,6.776 L27.7853325,6.776 Z M41.844666,9.884 C41.8353327,9.54799832 41.7769999,9.22600154 41.669666,8.918 C41.5623322,8.60999846 41.410667,8.33700119 41.214666,8.099 C41.0186651,7.86099881 40.7806674,7.66966739 40.500666,7.525 C40.2206646,7.38033261 39.9033345,7.308 39.548666,7.308 C39.1846642,7.308 38.8626674,7.38033261 38.582666,7.525 C38.3026646,7.66966739 38.064667,7.86099881 37.868666,8.099 C37.6726651,8.33700119 37.5163333,8.61233177 37.399666,8.925 C37.2829988,9.23766823 37.2059996,9.5573317 37.168666,9.884 L41.844666,9.884 Z M37.168666,10.626 C37.168666,10.9433349 37.2129989,11.2723316 37.301666,11.613 C37.3903331,11.9536684 37.5326651,12.259332 37.728666,12.53 C37.924667,12.800668 38.1719979,13.0246658 38.470666,13.202 C38.7693342,13.3793342 39.1286639,13.468 39.548666,13.468 C40.1926693,13.468 40.6966642,13.3000017 41.060666,12.964 C41.4246679,12.6279983 41.6766653,12.1800028 41.816666,11.62 L42.698666,11.62 C42.5119984,12.4413374 42.1690019,13.0759978 41.669666,13.524 C41.1703302,13.9720022 40.4633373,14.196 39.548666,14.196 C38.9793299,14.196 38.4870014,14.0956677 38.071666,13.895 C37.6563306,13.6943323 37.3180007,13.4190018 37.056666,13.069 C36.7953314,12.7189983 36.6016667,12.3130023 36.475666,11.851 C36.3496654,11.3889977 36.286666,10.9013359 36.286666,10.388 C36.286666,9.91199762 36.3496654,9.44533562 36.475666,8.988 C36.6016667,8.53066438 36.7953314,8.12233513 37.056666,7.763 C37.3180007,7.40366487 37.6563306,7.11433443 38.071666,6.895 C38.4870014,6.67566557 38.9793299,6.566 39.548666,6.566 C40.1273356,6.566 40.6219973,6.6826655 41.032666,6.916 C41.4433348,7.1493345 41.7769981,7.45499811 42.033666,7.833 C42.290334,8.21100189 42.4746655,8.64499755 42.586666,9.135 C42.6986666,9.62500245 42.7453328,10.1219975 42.726666,10.626 L37.168666,10.626 Z M45.2499995,6.776 L45.2499995,14 L46.1319995,14 L46.1319995,10.15 C46.1319995,9.76733142 46.1973322,9.41500161 46.3279995,9.093 C46.4586668,8.77099839 46.6429983,8.4933345 46.8809995,8.26 C47.1190007,8.0266655 47.4013312,7.84700063 47.7279995,7.721 C48.0546678,7.59499937 48.4186642,7.54133324 48.8199995,7.56 L48.8199995,6.678 C48.1666629,6.64999986 47.6043352,6.79466508 47.1329995,7.112 C46.6616638,7.42933492 46.3140006,7.88199706 46.0899995,8.47 L46.0619995,8.47 L46.0619995,6.776 L45.2499995,6.776 Z M51.007333,4.004 L51.007333,5.418 L51.889333,5.418 L51.889333,4.004 L51.007333,4.004 Z M51.007333,6.776 L51.007333,14 L51.889333,14 L51.889333,6.776 L51.007333,6.776 Z M60.0126665,9.044 L60.8946665,9.044 C60.7919993,8.21332918 60.4723359,7.59266872 59.9356665,7.182 C59.3989972,6.77133128 58.743337,6.566 57.9686665,6.566 C57.4179971,6.566 56.9303353,6.66866564 56.5056665,6.874 C56.0809977,7.07933436 55.7240013,7.35466494 55.4346665,7.7 C55.1453317,8.04533506 54.9260006,8.44899769 54.7766665,8.911 C54.6273324,9.37300231 54.5526665,9.86533072 54.5526665,10.388 C54.5526665,10.9106693 54.6273324,11.4029977 54.7766665,11.865 C54.9260006,12.3270023 55.1453317,12.7306649 55.4346665,13.076 C55.7240013,13.4213351 56.0809977,13.6943323 56.5056665,13.895 C56.9303353,14.0956677 57.4179971,14.196 57.9686665,14.196 C58.7900039,14.196 59.4619972,13.9510025 59.9846665,13.461 C60.5073358,12.9709975 60.8293326,12.2873377 60.9506665,11.41 L60.0686665,11.41 C60.0406664,11.7086682 59.9660004,11.9839987 59.8446665,12.236 C59.7233326,12.4880013 59.5693341,12.7049991 59.3826665,12.887 C59.1959989,13.0690009 58.9813344,13.2113328 58.7386665,13.314 C58.4959986,13.4166672 58.2393345,13.468 57.9686665,13.468 C57.5486644,13.468 57.1800014,13.3793342 56.8626665,13.202 C56.5453316,13.0246658 56.2816676,12.7913348 56.0716665,12.502 C55.8616655,12.2126652 55.7030004,11.8836685 55.5956665,11.515 C55.4883326,11.1463315 55.4346665,10.7706686 55.4346665,10.388 C55.4346665,10.0053314 55.4883326,9.62966851 55.5956665,9.261 C55.7030004,8.89233149 55.8616655,8.56333478 56.0716665,8.274 C56.2816676,7.98466522 56.5453316,7.75133422 56.8626665,7.574 C57.1800014,7.39666578 57.5486644,7.308 57.9686665,7.308 C58.5566694,7.308 59.0139982,7.46199846 59.3406665,7.77 C59.6673348,8.07800154 59.8913326,8.50266396 60.0126665,9.044 Z M69.8613335,8.386 L73.1373335,8.386 C73.5200021,8.386 73.8513321,8.34166711 74.1313335,8.253 C74.4113349,8.16433289 74.6446659,8.04300077 74.8313335,7.889 C75.0180011,7.73499923 75.1579997,7.55533436 75.2513335,7.35 C75.3446673,7.14466564 75.3913335,6.9253345 75.3913335,6.692 C75.3913335,5.44132708 74.6400077,4.816 73.1373335,4.816 L69.8613335,4.816 L69.8613335,8.386 Z M68.9093335,4.004 L73.1373335,4.004 C73.5573356,4.004 73.9609982,4.04366627 74.3483335,4.123 C74.7356688,4.20233373 75.076332,4.33766571 75.3703335,4.529 C75.664335,4.72033429 75.8999993,4.97233177 76.0773335,5.285 C76.2546677,5.59766823 76.3433335,5.987331 76.3433335,6.454 C76.3433335,6.71533464 76.3013339,6.96966543 76.2173335,7.217 C76.1333331,7.46433457 76.0143343,7.68833233 75.8603335,7.889 C75.7063327,8.08966767 75.5243345,8.2599993 75.3143335,8.4 C75.1043324,8.5400007 74.8686681,8.63799972 74.6073335,8.694 L74.6073335,8.722 C75.2513367,8.80600042 75.7646649,9.06966445 76.1473335,9.513 C76.5300021,9.95633555 76.7213335,10.5046634 76.7213335,11.158 C76.7213335,11.3166675 76.7073336,11.4963323 76.6793335,11.697 C76.6513334,11.8976677 76.5953339,12.1029989 76.5113335,12.313 C76.4273331,12.523001 76.306001,12.7306656 76.1473335,12.936 C75.988666,13.1413344 75.7763348,13.3209992 75.5103335,13.475 C75.2443322,13.6290008 74.9176688,13.7549995 74.5303335,13.853 C74.1429982,13.9510005 73.6786695,14 73.1373335,14 L68.9093335,14 L68.9093335,4.004 Z M69.8613335,13.188 L73.1373335,13.188 C73.4920019,13.188 73.8279986,13.157667 74.1453335,13.097 C74.4626684,13.036333 74.7426656,12.9266675 74.9853335,12.768 C75.2280014,12.6093325 75.4193328,12.3970013 75.5593335,12.131 C75.6993342,11.8649987 75.7693335,11.5313353 75.7693335,11.13 C75.7693335,10.4859968 75.5430024,10.0030016 75.0903335,9.681 C74.6376646,9.35899839 73.9866711,9.198 73.1373335,9.198 L69.8613335,9.198 L69.8613335,13.188 Z M85.264667,14 L85.264667,6.776 L84.382667,6.776 L84.382667,10.57 C84.382667,10.9340018 84.3406674,11.2909982 84.256667,11.641 C84.1726666,11.9910017 84.0420012,12.301332 83.864667,12.572 C83.6873328,12.842668 83.463335,13.0596659 83.192667,13.223 C82.921999,13.3863341 82.5953356,13.468 82.212667,13.468 C81.5126635,13.468 81.0203351,13.3000017 80.735667,12.964 C80.4509989,12.6279983 80.2993337,12.1333366 80.280667,11.48 L80.280667,6.776 L79.398667,6.776 L79.398667,11.466 C79.398667,11.8953355 79.4453332,12.2779983 79.538667,12.614 C79.6320008,12.9500017 79.7789993,13.2346655 79.979667,13.468 C80.1803347,13.7013345 80.4416654,13.8809994 80.763667,14.007 C81.0856686,14.1330006 81.4753314,14.196 81.932667,14.196 C82.474003,14.196 82.9663314,14.067668 83.409667,13.811 C83.8530025,13.554332 84.1913325,13.1833358 84.424667,12.698 L84.452667,12.698 L84.452667,14 L85.264667,14 Z M89.6640005,6.776 L89.6640005,4.606 L88.7820005,4.606 L88.7820005,6.776 L87.5220005,6.776 L87.5220005,7.518 L88.7820005,7.518 L88.7820005,12.46 C88.7726671,13.0760031 88.884666,13.4983322 89.1180005,13.727 C89.351335,13.9556678 89.7619975,14.07 90.3500005,14.07 C90.4806678,14.07 90.6113332,14.0653334 90.7420005,14.056 C90.8726678,14.0466666 91.0033332,14.042 91.1340005,14.042 L91.1340005,13.3 C90.8819992,13.3280001 90.6300017,13.342 90.3780005,13.342 C90.0606656,13.3233332 89.8623342,13.2323341 89.7830005,13.069 C89.7036667,12.9056659 89.6640005,12.6793348 89.6640005,12.39 L89.6640005,7.518 L91.1340005,7.518 L91.1340005,6.776 L89.6640005,6.776 Z M95.141334,6.776 L95.141334,4.606 L94.259334,4.606 L94.259334,6.776 L92.999334,6.776 L92.999334,7.518 L94.259334,7.518 L94.259334,12.46 C94.2500006,13.0760031 94.3619995,13.4983322 94.595334,13.727 C94.8286685,13.9556678 95.239331,14.07 95.827334,14.07 C95.9580013,14.07 96.0886666,14.0653334 96.219334,14.056 C96.3500013,14.0466666 96.4806666,14.042 96.611334,14.042 L96.611334,13.3 C96.3593327,13.3280001 96.1073352,13.342 95.855334,13.342 C95.537999,13.3233332 95.3396677,13.2323341 95.260334,13.069 C95.1810002,12.9056659 95.141334,12.6793348 95.141334,12.39 L95.141334,7.518 L96.611334,7.518 L96.611334,6.776 L95.141334,6.776 Z M102.270667,7.308 C101.850665,7.308 101.482002,7.39666578 101.164667,7.574 C100.847333,7.75133422 100.583669,7.98466522 100.373667,8.274 C100.163666,8.56333478 100.005001,8.89233149 99.8976675,9.261 C99.7903336,9.62966851 99.7366675,10.0053314 99.7366675,10.388 C99.7366675,10.7706686 99.7903336,11.1463315 99.8976675,11.515 C100.005001,11.8836685 100.163666,12.2126652 100.373667,12.502 C100.583669,12.7913348 100.847333,13.0246658 101.164667,13.202 C101.482002,13.3793342 101.850665,13.468 102.270667,13.468 C102.69067,13.468 103.059333,13.3793342 103.376667,13.202 C103.694002,13.0246658 103.957666,12.7913348 104.167667,12.502 C104.377669,12.2126652 104.536334,11.8836685 104.643667,11.515 C104.751001,11.1463315 104.804667,10.7706686 104.804667,10.388 C104.804667,10.0053314 104.751001,9.62966851 104.643667,9.261 C104.536334,8.89233149 104.377669,8.56333478 104.167667,8.274 C103.957666,7.98466522 103.694002,7.75133422 103.376667,7.574 C103.059333,7.39666578 102.69067,7.308 102.270667,7.308 Z M102.270667,6.566 C102.821337,6.566 103.308999,6.66866564 103.733667,6.874 C104.158336,7.07933436 104.515333,7.35466494 104.804667,7.7 C105.094002,8.04533506 105.313333,8.44899769 105.462667,8.911 C105.612002,9.37300231 105.686667,9.86533072 105.686667,10.388 C105.686667,10.9106693 105.612002,11.4029977 105.462667,11.865 C105.313333,12.3270023 105.094002,12.7306649 104.804667,13.076 C104.515333,13.4213351 104.158336,13.6943323 103.733667,13.895 C103.308999,14.0956677 102.821337,14.196 102.270667,14.196 C101.719998,14.196 101.232336,14.0956677 100.807667,13.895 C100.382999,13.6943323 100.026002,13.4213351 99.7366675,13.076 C99.4473327,12.7306649 99.2280015,12.3270023 99.0786675,11.865 C98.9293334,11.4029977 98.8546675,10.9106693 98.8546675,10.388 C98.8546675,9.86533072 98.9293334,9.37300231 99.0786675,8.911 C99.2280015,8.44899769 99.4473327,8.04533506 99.7366675,7.7 C100.026002,7.35466494 100.382999,7.07933436 100.807667,6.874 C101.232336,6.66866564 101.719998,6.566 102.270667,6.566 Z M108.322001,6.776 L108.322001,14 L109.204001,14 L109.204001,9.786 C109.213334,9.43133156 109.271667,9.10233485 109.379001,8.799 C109.486335,8.49566515 109.635667,8.23433443 109.827001,8.015 C110.018335,7.79566557 110.251666,7.62300063 110.527001,7.497 C110.802336,7.37099937 111.117333,7.308 111.472001,7.308 C111.826669,7.308 112.123,7.36399944 112.361001,7.476 C112.599002,7.58800056 112.788,7.74199902 112.928001,7.938 C113.068002,8.13400098 113.166001,8.36499867 113.222001,8.631 C113.278001,8.89700133 113.306001,9.18399846 113.306001,9.492 L113.306001,14 L114.188001,14 L114.188001,9.352 C114.188001,8.92266452 114.146001,8.53533506 114.062001,8.19 C113.978001,7.84466494 113.833335,7.55300119 113.628001,7.315 C113.422667,7.07699881 113.149669,6.89266732 112.809001,6.762 C112.468333,6.63133268 112.046003,6.566 111.542001,6.566 C111.028665,6.566 110.557336,6.69899867 110.128001,6.965 C109.698665,7.23100133 109.400002,7.58333114 109.232001,8.022 L109.204001,8.022 L109.204001,6.776 L108.322001,6.776 Z" transform="translate(746 20)"/>
<g transform="translate(894 6)">
<rect width="92" height="43" fill="#2199E8"/>
<text fill="#FFF" font-family="HelveticaNeue-Light, Helvetica Neue" font-size="14.4" font-weight="300">
<tspan x="12.392" y="27">Get Lucky</tspan>
</text>
</g>
<g transform="translate(269 7)">
<rect width="92" height="43" fill="#2199E8"/>
<path fill="#FFF" d="M33.1080004,16.7184003 L33.1080004,17.5536003 L36.6792003,17.5536003 L36.6792003,27 L37.6584002,27 L37.6584002,17.5536003 L41.2440001,17.5536003 L41.2440001,16.7184003 L33.1080004,16.7184003 Z M47.3784,22.7664001 C47.3687999,22.4207984 47.3088005,22.0896017 47.1984,21.7728001 C47.0879994,21.4559986 46.932001,21.1752014 46.7304,20.9304002 C46.528799,20.6855989 46.2840014,20.4888009 45.996,20.3400002 C45.7079986,20.1911994 45.3816019,20.1168002 45.0168,20.1168002 C44.6423982,20.1168002 44.3112015,20.1911994 44.0232001,20.3400002 C43.7351986,20.4888009 43.4904011,20.6855989 43.2888001,20.9304002 C43.0871991,21.1752014 42.9264007,21.4583985 42.8064001,21.7800001 C42.6863995,22.1016017 42.6072003,22.4303984 42.5688001,22.7664001 L47.3784,22.7664001 Z M42.5688001,23.5296001 C42.5688001,23.8560017 42.6143996,24.1943983 42.7056001,24.5448001 C42.7968006,24.8952018 42.9431991,25.2095987 43.1448001,25.488 C43.3464011,25.7664014 43.6007985,25.9967991 43.9080001,26.1792 C44.2152016,26.3616009 44.5847979,26.4528 45.0168,26.4528 C45.6792033,26.4528 46.1975981,26.2800017 46.572,25.9344 C46.9464019,25.5887983 47.2055993,25.1280029 47.3496,24.5520001 L48.2568,24.5520001 C48.064799,25.3968043 47.7120025,26.0495977 47.1984,26.5104 C46.6847974,26.9712023 45.9576047,27.2016 45.0168,27.2016 C44.4311971,27.2016 43.9248022,27.098401 43.4976001,26.892 C43.070398,26.685599 42.7224014,26.4024018 42.4536001,26.0424 C42.1847988,25.6823982 41.9856008,25.2648024 41.8560001,24.7896001 C41.7263995,24.3143977 41.6616001,23.8128027 41.6616001,23.2848001 C41.6616001,22.7951977 41.7263995,22.3152025 41.8560001,21.8448001 C41.9856008,21.3743978 42.1847988,20.954402 42.4536001,20.5848002 C42.7224014,20.2151983 43.070398,19.9176013 43.4976001,19.6920002 C43.9248022,19.4663991 44.4311971,19.3536002 45.0168,19.3536002 C45.612003,19.3536002 46.1207979,19.473599 46.5432,19.7136002 C46.9656021,19.9536014 47.3087987,20.2679982 47.5728,20.6568002 C47.8368013,21.0456021 48.0263994,21.4919976 48.1416,21.9960001 C48.2568005,22.5000026 48.3048,23.0111975 48.2856,23.5296001 L42.5688001,23.5296001 Z M53.9591998,21.7440001 L54.8663998,21.7440001 C54.8471997,21.3407981 54.7656005,20.9904016 54.6215998,20.6928002 C54.4775991,20.3951987 54.283201,20.1456012 54.0383998,19.9440002 C53.7935986,19.7423992 53.5104014,19.5936007 53.1887998,19.4976002 C52.8671982,19.4015997 52.5192017,19.3536002 52.1447999,19.3536002 C51.8183982,19.3536002 51.4896015,19.3919998 51.1583999,19.4688002 C50.8271982,19.5456006 50.5272012,19.6655994 50.2583999,19.8288002 C49.9895986,19.992001 49.7712008,20.2079988 49.6031999,20.4768002 C49.4351991,20.7456015 49.3511999,21.0671983 49.3511999,21.4416001 C49.3511999,21.7584017 49.4039994,22.0247991 49.5095999,22.2408001 C49.6152004,22.4568012 49.761599,22.6391994 49.9487999,22.7880001 C50.1360008,22.9368009 50.3543986,23.0615996 50.6039999,23.1624001 C50.8536011,23.2632006 51.1271984,23.3519997 51.4247999,23.4288001 L52.5911998,23.6880001 C52.7928008,23.7360003 52.9919988,23.7935997 53.1887998,23.8608001 C53.3856008,23.9280004 53.560799,24.0119996 53.7143998,24.1128001 C53.8680006,24.2136006 53.9903993,24.3383993 54.0815998,24.4872001 C54.1728003,24.6360008 54.2183998,24.820799 54.2183998,25.0416001 C54.2183998,25.3008013 54.1536004,25.5191992 54.0239998,25.6968 C53.8943992,25.8744009 53.7288008,26.0207994 53.5271998,26.136 C53.3255988,26.2512006 53.107201,26.3327998 52.8719998,26.3808 C52.6367987,26.4288003 52.4088009,26.4528 52.1879998,26.4528 C51.5831968,26.4528 51.0768019,26.2968016 50.6687999,25.9848 C50.2607979,25.6727985 50.0376001,25.2096031 49.9991999,24.5952001 L49.0919999,24.5952001 C49.1688003,25.5072046 49.4783972,26.169598 50.0207999,26.5824 C50.5632026,26.9952021 51.2711955,27.2016 52.1447999,27.2016 C52.4904016,27.2016 52.8407981,27.1632004 53.1959998,27.0864 C53.5512016,27.0095996 53.8703984,26.8824009 54.1535998,26.7048 C54.4368012,26.5271991 54.6695989,26.2968014 54.8519998,26.0136 C55.0344007,25.7303986 55.1255998,25.3872021 55.1255998,24.9840001 C55.1255998,24.6575984 55.0632004,24.3744013 54.9383998,24.1344001 C54.8135992,23.8943989 54.6528008,23.6928009 54.4559998,23.5296001 C54.2591988,23.3663993 54.0336011,23.2344006 53.7791998,23.1336001 C53.5247985,23.0327996 53.2680011,22.9632003 53.0087998,22.9248001 L51.7991999,22.6512001 C51.6455991,22.6127999 51.4776008,22.5624004 51.2951999,22.5000001 C51.112799,22.4375998 50.9448007,22.3584006 50.7911999,22.2624001 C50.6375991,22.1663996 50.5104004,22.0488008 50.4095999,21.9096001 C50.3087994,21.7703994 50.2583999,21.6000012 50.2583999,21.3984001 C50.2583999,21.158399 50.3111994,20.956801 50.4167999,20.7936002 C50.5224004,20.6303994 50.661599,20.4984007 50.8343999,20.3976002 C51.0072007,20.2967997 51.1967988,20.2248004 51.4031999,20.1816002 C51.6096009,20.1384 51.8135989,20.1168002 52.0151999,20.1168002 C52.2744011,20.1168002 52.5191987,20.1479999 52.7495998,20.2104002 C52.980001,20.2728005 53.1839989,20.3711995 53.3615998,20.5056002 C53.5392007,20.6400008 53.6807993,20.8103991 53.7863998,21.0168002 C53.8920003,21.2232012 53.9495998,21.4655988 53.9591998,21.7440001 Z M57.8759997,19.5696002 L57.8759997,17.3376003 L56.9687997,17.3376003 L56.9687997,19.5696002 L55.6727998,19.5696002 L55.6727998,20.3328002 L56.9687997,20.3328002 L56.9687997,25.416 C56.9591997,26.0496032 57.0743985,26.4839988 57.3143997,26.7192 C57.5544009,26.9544012 57.9767967,27.072 58.5815997,27.072 C58.7160003,27.072 58.850399,27.0672 58.9847997,27.0576 C59.1192003,27.048 59.253599,27.0432 59.3879997,27.0432 L59.3879997,26.28 C59.1287984,26.3088002 58.869601,26.3232 58.6103997,26.3232 C58.2839981,26.3039999 58.0800001,26.2104009 57.9983997,26.0424 C57.9167993,25.8743992 57.8759997,25.6416015 57.8759997,25.344 L57.8759997,20.3328002 L59.3879997,20.3328002 L59.3879997,19.5696002 L57.8759997,19.5696002 Z"/>
</g>
<g transform="translate(139 6)">
<use fill="#FFF" xlink:href="#-top-bar-(search)-a"/>
<rect width="121" height="43" x=".5" y=".5" stroke="#CCC"/>
<path fill="#8F8F8F" fill-opacity=".75" d="M11.152,17.576 L11.152,29 L12.24,29 L12.24,23.56 L17.712,23.56 L17.712,22.632 L12.24,22.632 L12.24,18.504 L18.4,18.504 L18.4,17.576 L11.152,17.576 Z M20.9013335,17.576 L20.9013335,19.192 L21.9093335,19.192 L21.9093335,17.576 L20.9013335,17.576 Z M20.9013335,20.744 L20.9013335,29 L21.9093335,29 L21.9093335,20.744 L20.9013335,20.744 Z M25.162667,20.744 L25.162667,29 L26.170667,29 L26.170667,24.184 C26.1813337,23.7786646 26.2479997,23.4026684 26.370667,23.056 C26.4933343,22.7093316 26.6639992,22.4106679 26.882667,22.16 C27.1013347,21.9093321 27.3679987,21.7120007 27.682667,21.568 C27.9973352,21.4239993 28.3573316,21.352 28.762667,21.352 C29.1680023,21.352 29.5066656,21.4159994 29.778667,21.544 C30.0506683,21.6720006 30.2666662,21.8479989 30.426667,22.072 C30.5866678,22.2960011 30.6986667,22.5599985 30.762667,22.864 C30.8266673,23.1680015 30.858667,23.4959982 30.858667,23.848 L30.858667,29 L31.866667,29 L31.866667,23.688 C31.866667,23.1973309 31.8186675,22.7546686 31.722667,22.36 C31.6266665,21.9653314 31.4613348,21.6320014 31.226667,21.36 C30.9919991,21.0879986 30.6800023,20.8773341 30.290667,20.728 C29.9013317,20.5786659 29.4186699,20.504 28.842667,20.504 C28.2559974,20.504 27.7173361,20.6559985 27.226667,20.96 C26.7359979,21.2640015 26.3946679,21.6666642 26.202667,22.168 L26.170667,22.168 L26.170667,20.744 L25.162667,20.744 Z M42.3680005,29 L41.4400005,29 L41.4400005,27.432 L41.4080005,27.432 C41.3013333,27.698668 41.1440015,27.9439989 40.9360005,28.168 C40.7279994,28.3920011 40.4906685,28.5813326 40.2240005,28.736 C39.9573325,28.8906674 39.672002,29.0106662 39.3680005,29.096 C39.063999,29.1813338 38.7626686,29.224 38.4640005,29.224 C37.834664,29.224 37.2880028,29.1093345 36.8240005,28.88 C36.3599982,28.6506655 35.9733354,28.336002 35.6640005,27.936 C35.3546656,27.535998 35.1253346,27.0720026 34.9760005,26.544 C34.8266664,26.0159974 34.7520005,25.4586696 34.7520005,24.872 C34.7520005,24.2853304 34.8266664,23.7280026 34.9760005,23.2 C35.1253346,22.6719974 35.3546656,22.208002 35.6640005,21.808 C35.9733354,21.407998 36.3599982,21.0906678 36.8240005,20.856 C37.2880028,20.6213322 37.834664,20.504 38.4640005,20.504 C38.7733354,20.504 39.0746657,20.541333 39.3680005,20.616 C39.6613353,20.690667 39.9359992,20.8053326 40.1920005,20.96 C40.4480018,21.1146674 40.6746662,21.3039989 40.8720005,21.528 C41.0693348,21.7520011 41.2213333,22.0133318 41.3280005,22.312 L41.3600005,22.312 L41.3600005,17.576 L42.3680005,17.576 L42.3680005,29 Z M35.7600005,24.872 C35.7600005,25.2986688 35.8106666,25.7226646 35.9120005,26.144 C36.0133343,26.5653354 36.1733327,26.9413317 36.3920005,27.272 C36.6106682,27.6026683 36.8906654,27.871999 37.2320005,28.08 C37.5733355,28.288001 37.9839981,28.392 38.4640005,28.392 C38.9973365,28.392 39.4479986,28.288001 39.8160005,28.08 C40.1840023,27.871999 40.482666,27.6026683 40.7120005,27.272 C40.941335,26.9413317 41.1066666,26.5653354 41.2080005,26.144 C41.3093343,25.7226646 41.3600005,25.2986688 41.3600005,24.872 C41.3600005,24.4453312 41.3093343,24.0213354 41.2080005,23.6 C41.1066666,23.1786646 40.941335,22.8026683 40.7120005,22.472 C40.482666,22.1413317 40.1840023,21.872001 39.8160005,21.664 C39.4479986,21.455999 38.9973365,21.352 38.4640005,21.352 C37.9839981,21.352 37.5733355,21.455999 37.2320005,21.664 C36.8906654,21.872001 36.6106682,22.1413317 36.3920005,22.472 C36.1733327,22.8026683 36.0133343,23.1786646 35.9120005,23.6 C35.8106666,24.0213354 35.7600005,24.4453312 35.7600005,24.872 Z M52.1066675,25.24 L51.0186675,25.24 C50.9866673,25.9440035 51.0799997,26.5466642 51.2986675,27.048 C51.5173352,27.5493358 51.8293321,27.9599984 52.2346675,28.28 C52.6400028,28.6000016 53.1306646,28.8373326 53.7066675,28.992 C54.2826703,29.1466674 54.9066641,29.224 55.5786675,29.224 C56.2506708,29.224 56.8266651,29.1626673 57.3066675,29.04 C57.7866699,28.9173327 58.1893325,28.7573343 58.5146675,28.56 C58.8400024,28.3626657 59.0959999,28.1413346 59.2826675,27.896 C59.4693351,27.6506654 59.6133336,27.4080012 59.7146675,27.168 C59.8160013,26.9279988 59.8800007,26.7013344 59.9066675,26.488 C59.9333343,26.2746656 59.9466675,26.1040006 59.9466675,25.976 C59.9466675,25.5066643 59.8693349,25.1066683 59.7146675,24.776 C59.56,24.4453317 59.3466688,24.1653345 59.0746675,23.936 C58.8026661,23.7066655 58.4880026,23.5146674 58.1306675,23.36 C57.7733323,23.2053326 57.3920028,23.0746672 56.9866675,22.968 L54.2026675,22.28 C53.9679996,22.2266664 53.7466685,22.1573338 53.5386675,22.072 C53.3306664,21.9866662 53.1466683,21.8746674 52.9866675,21.736 C52.8266667,21.5973326 52.7013346,21.4293343 52.6106675,21.232 C52.5200003,21.0346657 52.4746675,20.802668 52.4746675,20.536 C52.4746675,20.1093312 52.5546667,19.7520014 52.7146675,19.464 C52.8746683,19.1759986 53.0853328,18.9440009 53.3466675,18.768 C53.6080021,18.5919991 53.9119991,18.4640004 54.2586675,18.384 C54.6053359,18.3039996 54.9653323,18.264 55.3386675,18.264 C55.7440028,18.264 56.1306656,18.3199994 56.4986675,18.432 C56.8666693,18.5440006 57.1919994,18.7093322 57.4746675,18.928 C57.7573355,19.1466678 57.9866666,19.418665 58.1626675,19.744 C58.3386683,20.069335 58.437334,20.4506645 58.4586675,20.888 L59.5466675,20.888 C59.5466675,20.3013304 59.4320019,19.7866689 59.2026675,19.344 C58.973333,18.9013311 58.6666694,18.5306682 58.2826675,18.232 C57.8986655,17.9333318 57.45067,17.7093341 56.9386675,17.56 C56.4266649,17.4106659 55.8880036,17.336 55.3226675,17.336 C54.5226635,17.336 53.86667,17.4506655 53.3546675,17.68 C52.8426649,17.9093345 52.4400023,18.1893317 52.1466675,18.52 C51.8533327,18.8506683 51.6533347,19.2026648 51.5466675,19.576 C51.4400003,19.9493352 51.3866675,20.2746653 51.3866675,20.552 C51.3866675,21.0000022 51.4586667,21.3786651 51.6026675,21.688 C51.7466682,21.9973349 51.9359996,22.2586656 52.1706675,22.472 C52.4053353,22.6853344 52.6799992,22.8559994 52.9946675,22.984 C53.3093357,23.1120006 53.6319991,23.2186662 53.9626675,23.304 L56.5066675,23.928 C56.7733355,23.9920003 57.0453327,24.0746662 57.3226675,24.176 C57.6000022,24.2773338 57.853333,24.4079992 58.0826675,24.568 C58.3120019,24.7280008 58.4986667,24.9253322 58.6426675,25.16 C58.7866682,25.3946678 58.8586675,25.6719984 58.8586675,25.992 C58.8586675,26.4080021 58.7573351,26.7626652 58.5546675,27.056 C58.3519998,27.3493348 58.098669,27.5893324 57.7946675,27.776 C57.4906659,27.9626676 57.1626692,28.0986662 56.8106675,28.184 C56.4586657,28.2693338 56.1333356,28.312 55.8346675,28.312 C55.3119982,28.312 54.8213364,28.2613338 54.3626675,28.16 C53.9039985,28.0586662 53.5066691,27.8906678 53.1706675,27.656 C52.8346658,27.4213322 52.5706684,27.1066686 52.3786675,26.712 C52.1866665,26.3173314 52.0960007,25.8266696 52.1066675,25.24 Z M64.416001,20.744 L64.416001,18.264 L63.408001,18.264 L63.408001,20.744 L61.968001,20.744 L61.968001,21.592 L63.408001,21.592 L63.408001,27.24 C63.3973342,27.9440035 63.525333,28.4266654 63.792001,28.688 C64.058669,28.9493346 64.5279976,29.08 65.200001,29.08 C65.349335,29.08 65.4986669,29.0746667 65.648001,29.064 C65.797335,29.0533333 65.9466669,29.048 66.096001,29.048 L66.096001,28.2 C65.8079995,28.2320002 65.5200024,28.248 65.232001,28.248 C64.8693325,28.2266666 64.6426681,28.1226676 64.552001,27.936 C64.4613338,27.7493324 64.416001,27.4906683 64.416001,27.16 L64.416001,21.592 L66.096001,21.592 L66.096001,20.744 L64.416001,20.744 Z M75.5733344,29 L75.5733344,20.744 L74.5653344,20.744 L74.5653344,25.08 C74.5653344,25.4960021 74.5173349,25.903998 74.4213344,26.304 C74.325334,26.704002 74.1760021,27.0586651 73.9733344,27.368 C73.7706668,27.6773349 73.5146693,27.9253324 73.2053344,28.112 C72.8959996,28.2986676 72.52267,28.392 72.0853344,28.392 C71.2853304,28.392 70.7226694,28.2000019 70.3973344,27.816 C70.0719995,27.4319981 69.8986679,26.8666704 69.8773344,26.12 L69.8773344,20.744 L68.8693344,20.744 L68.8693344,26.104 C68.8693344,26.5946691 68.9226672,27.0319981 69.0293344,27.416 C69.1360016,27.8000019 69.304,28.125332 69.5333344,28.392 C69.7626689,28.658668 70.0613326,28.8639993 70.4293344,29.008 C70.7973363,29.1520007 71.2426652,29.224 71.7653344,29.224 C72.3840042,29.224 72.9466652,29.0773348 73.4533344,28.784 C73.9600036,28.4906652 74.3466664,28.0666694 74.6133344,27.512 L74.6453344,27.512 L74.6453344,29 L75.5733344,29 Z M81.9946679,21.592 L81.9946679,20.744 L80.3626679,20.744 L80.3626679,20.024 C80.3626679,19.7999989 80.3680012,19.592001 80.3786679,19.4 C80.3893347,19.207999 80.4293343,19.0400007 80.4986679,18.896 C80.5680016,18.7519993 80.6773339,18.6373338 80.8266679,18.552 C80.976002,18.4666662 81.1893332,18.424 81.4666679,18.424 C81.5840019,18.424 81.701334,18.4319999 81.8186679,18.448 C81.9360019,18.4640001 82.0640006,18.4826666 82.2026679,18.504 L82.2026679,17.64 C82.0426671,17.6186666 81.8986686,17.6026667 81.7706679,17.592 C81.6426673,17.5813333 81.504002,17.576 81.3546679,17.576 C80.9493326,17.576 80.6160026,17.6346661 80.3546679,17.752 C80.0933333,17.8693339 79.888002,18.0346656 79.7386679,18.248 C79.5893339,18.4613344 79.4880015,18.7173318 79.4346679,19.016 C79.3813343,19.3146682 79.3546679,19.6399982 79.3546679,19.992 L79.3546679,20.744 L77.9466679,20.744 L77.9466679,21.592 L79.3546679,21.592 L79.3546679,29 L80.3626679,29 L80.3626679,21.592 L81.9946679,21.592 Z M87.1840014,21.592 L87.1840014,20.744 L85.5520014,20.744 L85.5520014,20.024 C85.5520014,19.7999989 85.5573347,19.592001 85.5680014,19.4 C85.5786682,19.207999 85.6186678,19.0400007 85.6880014,18.896 C85.7573351,18.7519993 85.8666674,18.6373338 86.0160014,18.552 C86.1653355,18.4666662 86.3786667,18.424 86.6560014,18.424 C86.7733354,18.424 86.8906675,18.4319999 87.0080014,18.448 C87.1253354,18.4640001 87.2533341,18.4826666 87.3920014,18.504 L87.3920014,17.64 C87.2320006,17.6186666 87.0880021,17.6026667 86.9600014,17.592 C86.8320008,17.5813333 86.6933355,17.576 86.5440014,17.576 C86.1386661,17.576 85.8053361,17.6346661 85.5440014,17.752 C85.2826668,17.8693339 85.0773355,18.0346656 84.9280014,18.248 C84.7786674,18.4613344 84.677335,18.7173318 84.6240014,19.016 C84.5706678,19.3146682 84.5440014,19.6399982 84.5440014,19.992 L84.5440014,20.744 L83.1360014,20.744 L83.1360014,21.592 L84.5440014,21.592 L84.5440014,29 L85.5520014,29 L85.5520014,21.592 L87.1840014,21.592 Z"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14" id="svg" >
<g fill="none" fill-rule="evenodd" stroke="#979797" stroke-linecap="square" stroke-width="2">
<path d="M.5 13.5L13.0099964.990004003M13.509996 13.5099964L1 1"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="20" viewBox="0 0 40 20" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="40" height="20" fill="#CACACA"/>
<rect width="15" height="15" x="2.5" y="2.5" fill="#FFF"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="20" viewBox="0 0 40 20" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="40" height="20" fill="#2199E8"/>
<rect width="15" height="15" x="22.5" y="2.5" fill="#FFF"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="173" height="45" viewBox="0 0 173 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="173" height="45" fill="#EC5840"/>
<polygon fill="#FFF" points="139 21 151 21 145 27"/>
<path fill="#FFF" d="M16.199,18.004 L19.657,18.004 C21.1783409,18.0413335 22.3239961,18.4683293 23.094,19.285 C23.8640038,20.1016708 24.249,21.3406584 24.249,23.002 C24.249,24.6633416 23.8640038,25.9023293 23.094,26.719 C22.3239961,27.5356708 21.1783409,27.9626665 19.657,28 L16.199,28 L16.199,18.004 Z M17.151,27.188 L19.181,27.188 C19.8996703,27.188 20.5179974,27.1110008 21.036,26.957 C21.5540026,26.8029992 21.9809983,26.5580017 22.317,26.222 C22.6530017,25.8859983 22.9003325,25.4520027 23.059,24.92 C23.2176675,24.3879973 23.297,23.7486704 23.297,23.002 C23.297,22.2553296 23.2176675,21.6160027 23.059,21.084 C22.9003325,20.5519973 22.6530017,20.1180017 22.317,19.782 C21.9809983,19.4459983 21.5540026,19.2010008 21.036,19.047 C20.5179974,18.8929992 19.8996703,18.816 19.181,18.816 L17.151,18.816 L17.151,27.188 Z M25.621,20.776 L25.621,28 L26.503,28 L26.503,24.15 C26.503,23.7673314 26.5683327,23.4150016 26.699,23.093 C26.8296673,22.7709984 27.0139988,22.4933345 27.252,22.26 C27.4900012,22.0266655 27.7723317,21.8470006 28.099,21.721 C28.4256683,21.5949994 28.7896647,21.5413332 29.191,21.56 L29.191,20.678 C28.5376634,20.6499999 27.9753357,20.7946651 27.504,21.112 C27.0326643,21.4293349 26.6850011,21.8819971 26.461,22.47 L26.433,22.47 L26.433,20.776 L25.621,20.776 Z M32.831,21.308 C32.4109979,21.308 32.0423349,21.3966658 31.725,21.574 C31.4076651,21.7513342 31.144001,21.9846652 30.934,22.274 C30.7239989,22.5633348 30.5653339,22.8923315 30.458,23.261 C30.3506661,23.6296685 30.297,24.0053314 30.297,24.388 C30.297,24.7706686 30.3506661,25.1463315 30.458,25.515 C30.5653339,25.8836685 30.7239989,26.2126652 30.934,26.502 C31.144001,26.7913348 31.4076651,27.0246658 31.725,27.202 C32.0423349,27.3793342 32.4109979,27.468 32.831,27.468 C33.2510021,27.468 33.6196651,27.3793342 33.937,27.202 C34.2543349,27.0246658 34.5179989,26.7913348 34.728,26.502 C34.938001,26.2126652 35.0966661,25.8836685 35.204,25.515 C35.3113339,25.1463315 35.365,24.7706686 35.365,24.388 C35.365,24.0053314 35.3113339,23.6296685 35.204,23.261 C35.0966661,22.8923315 34.938001,22.5633348 34.728,22.274 C34.5179989,21.9846652 34.2543349,21.7513342 33.937,21.574 C33.6196651,21.3966658 33.2510021,21.308 32.831,21.308 Z M32.831,20.566 C33.3816694,20.566 33.8693312,20.6686656 34.294,20.874 C34.7186688,21.0793344 35.0756652,21.3546649 35.365,21.7 C35.6543348,22.0453351 35.8736659,22.4489977 36.023,22.911 C36.1723341,23.3730023 36.247,23.8653307 36.247,24.388 C36.247,24.9106693 36.1723341,25.4029977 36.023,25.865 C35.8736659,26.3270023 35.6543348,26.7306649 35.365,27.076 C35.0756652,27.4213351 34.7186688,27.6943323 34.294,27.895 C33.8693312,28.0956677 33.3816694,28.196 32.831,28.196 C32.2803306,28.196 31.7926688,28.0956677 31.368,27.895 C30.9433312,27.6943323 30.5863348,27.4213351 30.297,27.076 C30.0076652,26.7306649 29.7883341,26.3270023 29.639,25.865 C29.4896659,25.4029977 29.415,24.9106693 29.415,24.388 C29.415,23.8653307 29.4896659,23.3730023 29.639,22.911 C29.7883341,22.4489977 30.0076652,22.0453351 30.297,21.7 C30.5863348,21.3546649 30.9433312,21.0793344 31.368,20.874 C31.7926688,20.6686656 32.2803306,20.566 32.831,20.566 Z M37.563,20.776 L38.375,20.776 L38.375,22.148 L38.403,22.148 C38.6083344,21.6439975 38.9419977,21.2543347 39.404,20.979 C39.8660023,20.7036653 40.3909971,20.566 40.979,20.566 C41.5296694,20.566 42.007998,20.6686656 42.414,20.874 C42.820002,21.0793344 43.158332,21.3569983 43.429,21.707 C43.699668,22.0570017 43.9003327,22.4629977 44.031,22.925 C44.1616673,23.3870023 44.227,23.8746641 44.227,24.388 C44.227,24.9013359 44.1616673,25.3889977 44.031,25.851 C43.9003327,26.3130023 43.699668,26.7189982 43.429,27.069 C43.158332,27.4190017 42.820002,27.6943323 42.414,27.895 C42.007998,28.0956677 41.5296694,28.196 40.979,28.196 C40.7176654,28.196 40.4563346,28.1633337 40.195,28.098 C39.9336654,28.0326663 39.6910011,27.9346673 39.467,27.804 C39.2429989,27.6733327 39.0446675,27.510001 38.872,27.314 C38.6993325,27.117999 38.5663338,26.8893346 38.473,26.628 L38.445,26.628 L38.445,30.66 L37.563,30.66 L37.563,20.776 Z M43.345,24.388 C43.345,24.0146648 43.3006671,23.6436685 43.212,23.275 C43.1233329,22.9063315 42.9833343,22.5773348 42.792,22.288 C42.6006657,21.9986652 42.3556682,21.7630009 42.057,21.581 C41.7583318,21.3989991 41.3990021,21.308 40.979,21.308 C40.4936642,21.308 40.0876683,21.3919992 39.761,21.56 C39.4343317,21.7280008 39.173001,21.9519986 38.977,22.232 C38.780999,22.5120014 38.6433337,22.8386648 38.564,23.212 C38.4846663,23.5853352 38.445,23.9773313 38.445,24.388 C38.445,24.7613352 38.4893329,25.1323315 38.578,25.501 C38.6666671,25.8696685 38.8113323,26.1986652 39.012,26.488 C39.2126677,26.7773348 39.4739984,27.0129991 39.796,27.195 C40.1180016,27.3770009 40.512331,27.468 40.979,27.468 C41.3990021,27.468 41.7583318,27.3770009 42.057,27.195 C42.3556682,27.0129991 42.6006657,26.7773348 42.792,26.488 C42.9833343,26.1986652 43.1233329,25.8696685 43.212,25.501 C43.3006671,25.1323315 43.345,24.7613352 43.345,24.388 Z M51.955,28 L51.143,28 L51.143,26.628 L51.115,26.628 C51.0216662,26.8613345 50.8840009,27.075999 50.702,27.272 C50.5199991,27.468001 50.3123345,27.633666 50.079,27.769 C49.8456655,27.904334 49.5960013,28.009333 49.33,28.084 C49.0639987,28.158667 48.8003346,28.196 48.539,28.196 C47.9883306,28.196 47.510002,28.0956677 47.104,27.895 C46.697998,27.6943323 46.359668,27.4190017 46.089,27.069 C45.818332,26.7189982 45.6176673,26.3130023 45.487,25.851 C45.3563327,25.3889977 45.291,24.9013359 45.291,24.388 C45.291,23.8746641 45.3563327,23.3870023 45.487,22.925 C45.6176673,22.4629977 45.818332,22.0570017 46.089,21.707 C46.359668,21.3569983 46.697998,21.0793344 47.104,20.874 C47.510002,20.6686656 47.9883306,20.566 48.539,20.566 C48.809668,20.566 49.073332,20.5986663 49.33,20.664 C49.5866679,20.7293337 49.8269989,20.829666 50.051,20.965 C50.2750011,21.100334 50.4733325,21.265999 50.646,21.462 C50.8186675,21.658001 50.9516662,21.8866654 51.045,22.148 L51.073,22.148 L51.073,18.004 L51.955,18.004 L51.955,28 Z M46.173,24.388 C46.173,24.7613352 46.2173329,25.1323315 46.306,25.501 C46.3946671,25.8696685 46.5346657,26.1986652 46.726,26.488 C46.9173343,26.7773348 47.1623318,27.0129991 47.461,27.195 C47.7596682,27.3770009 48.1189979,27.468 48.539,27.468 C49.005669,27.468 49.3999984,27.3770009 49.722,27.195 C50.0440016,27.0129991 50.3053323,26.7773348 50.506,26.488 C50.7066677,26.1986652 50.8513329,25.8696685 50.94,25.501 C51.0286671,25.1323315 51.073,24.7613352 51.073,24.388 C51.073,24.0146648 51.0286671,23.6436685 50.94,23.275 C50.8513329,22.9063315 50.7066677,22.5773348 50.506,22.288 C50.3053323,21.9986652 50.0440016,21.7630009 49.722,21.581 C49.3999984,21.3989991 49.005669,21.308 48.539,21.308 C48.1189979,21.308 47.7596682,21.3989991 47.461,21.581 C47.1623318,21.7630009 46.9173343,21.9986652 46.726,22.288 C46.5346657,22.5773348 46.3946671,22.9063315 46.306,23.275 C46.2173329,23.6436685 46.173,24.0146648 46.173,24.388 Z M56.687,21.308 C56.2669979,21.308 55.8983349,21.3966658 55.581,21.574 C55.2636651,21.7513342 55.000001,21.9846652 54.79,22.274 C54.5799989,22.5633348 54.4213339,22.8923315 54.314,23.261 C54.2066661,23.6296685 54.153,24.0053314 54.153,24.388 C54.153,24.7706686 54.2066661,25.1463315 54.314,25.515 C54.4213339,25.8836685 54.5799989,26.2126652 54.79,26.502 C55.000001,26.7913348 55.2636651,27.0246658 55.581,27.202 C55.8983349,27.3793342 56.2669979,27.468 56.687,27.468 C57.1070021,27.468 57.4756651,27.3793342 57.793,27.202 C58.1103349,27.0246658 58.3739989,26.7913348 58.584,26.502 C58.794001,26.2126652 58.9526661,25.8836685 59.06,25.515 C59.1673339,25.1463315 59.221,24.7706686 59.221,24.388 C59.221,24.0053314 59.1673339,23.6296685 59.06,23.261 C58.9526661,22.8923315 58.794001,22.5633348 58.584,22.274 C58.3739989,21.9846652 58.1103349,21.7513342 57.793,21.574 C57.4756651,21.3966658 57.1070021,21.308 56.687,21.308 Z M56.687,20.566 C57.2376694,20.566 57.7253312,20.6686656 58.15,20.874 C58.5746688,21.0793344 58.9316652,21.3546649 59.221,21.7 C59.5103348,22.0453351 59.7296659,22.4489977 59.879,22.911 C60.0283341,23.3730023 60.103,23.8653307 60.103,24.388 C60.103,24.9106693 60.0283341,25.4029977 59.879,25.865 C59.7296659,26.3270023 59.5103348,26.7306649 59.221,27.076 C58.9316652,27.4213351 58.5746688,27.6943323 58.15,27.895 C57.7253312,28.0956677 57.2376694,28.196 56.687,28.196 C56.1363306,28.196 55.6486688,28.0956677 55.224,27.895 C54.7993312,27.6943323 54.4423348,27.4213351 54.153,27.076 C53.8636652,26.7306649 53.6443341,26.3270023 53.495,25.865 C53.3456659,25.4029977 53.271,24.9106693 53.271,24.388 C53.271,23.8653307 53.3456659,23.3730023 53.495,22.911 C53.6443341,22.4489977 53.8636652,22.0453351 54.153,21.7 C54.4423348,21.3546649 54.7993312,21.0793344 55.224,20.874 C55.6486688,20.6686656 56.1363306,20.566 56.687,20.566 Z M60.691,20.776 L63.015,28 L63.981,28 L65.745,21.924 L65.773,21.924 L67.551,28 L68.517,28 L70.841,20.776 L69.903,20.776 L68.055,26.964 L68.027,26.964 L66.263,20.776 L65.269,20.776 L63.505,26.964 L63.477,26.964 L61.629,20.776 L60.691,20.776 Z M71.779,20.776 L71.779,28 L72.661,28 L72.661,23.786 C72.6703334,23.4313316 72.7286661,23.1023348 72.836,22.799 C72.9433339,22.4956652 73.0926657,22.2343344 73.284,22.015 C73.4753343,21.7956656 73.7086653,21.6230006 73.984,21.497 C74.2593347,21.3709994 74.5743316,21.308 74.929,21.308 C75.2836684,21.308 75.5799988,21.3639994 75.818,21.476 C76.0560012,21.5880006 76.2449993,21.741999 76.385,21.938 C76.5250007,22.134001 76.6229997,22.3649987 76.679,22.631 C76.7350003,22.8970013 76.763,23.1839985 76.763,23.492 L76.763,28 L77.645,28 L77.645,23.352 C77.645,22.9226645 77.6030004,22.5353351 77.519,22.19 C77.4349996,21.8446649 77.2903344,21.5530012 77.085,21.315 C76.8796656,21.0769988 76.6066684,20.8926673 76.266,20.762 C75.9253316,20.6313327 75.5030025,20.566 74.999,20.566 C74.4856641,20.566 74.0143355,20.6989987 73.585,20.965 C73.1556645,21.2310013 72.8570008,21.5833311 72.689,22.022 L72.661,22.022 L72.661,20.776 L71.779,20.776 Z M84.323,22.386 L87.599,22.386 C87.9816686,22.386 88.3129986,22.3416671 88.593,22.253 C88.8730014,22.1643329 89.1063324,22.0430008 89.293,21.889 C89.4796676,21.7349992 89.6196662,21.5553344 89.713,21.35 C89.8063338,21.1446656 89.853,20.9253345 89.853,20.692 C89.853,19.4413271 89.1016742,18.816 87.599,18.816 L84.323,18.816 L84.323,22.386 Z M83.371,18.004 L87.599,18.004 C88.0190021,18.004 88.4226647,18.0436663 88.81,18.123 C89.1973353,18.2023337 89.5379985,18.3376657 89.832,18.529 C90.1260015,18.7203343 90.3616658,18.9723318 90.539,19.285 C90.7163342,19.5976682 90.805,19.987331 90.805,20.454 C90.805,20.7153346 90.7630004,20.9696654 90.679,21.217 C90.5949996,21.4643346 90.4760008,21.6883323 90.322,21.889 C90.1679992,22.0896677 89.986001,22.2599993 89.776,22.4 C89.5659989,22.5400007 89.3303346,22.6379997 89.069,22.694 L89.069,22.722 C89.7130032,22.8060004 90.2263314,23.0696644 90.609,23.513 C90.9916686,23.9563355 91.183,24.5046634 91.183,25.158 C91.183,25.3166675 91.1690001,25.4963323 91.141,25.697 C91.1129999,25.8976677 91.0570004,26.1029989 90.973,26.313 C90.8889996,26.5230011 90.7676675,26.7306656 90.609,26.936 C90.4503325,27.1413344 90.2380013,27.3209992 89.972,27.475 C89.7059987,27.6290008 89.3793353,27.7549995 88.992,27.853 C88.6046647,27.9510005 88.140336,28 87.599,28 L83.371,28 L83.371,18.004 Z M84.323,27.188 L87.599,27.188 C87.9536684,27.188 88.2896651,27.157667 88.607,27.097 C88.9243349,27.036333 89.2043321,26.9266675 89.447,26.768 C89.6896679,26.6093325 89.8809993,26.3970013 90.021,26.131 C90.1610007,25.8649987 90.231,25.5313353 90.231,25.13 C90.231,24.4859968 90.0046689,24.0030016 89.552,23.681 C89.0993311,23.3589984 88.4483376,23.198 87.599,23.198 L84.323,23.198 L84.323,27.188 Z M98.393,28 L98.393,20.776 L97.511,20.776 L97.511,24.57 C97.511,24.9340018 97.4690004,25.2909983 97.385,25.641 C97.3009996,25.9910018 97.1703342,26.301332 96.993,26.572 C96.8156658,26.842668 96.591668,27.0596659 96.321,27.223 C96.050332,27.3863341 95.7236686,27.468 95.341,27.468 C94.6409965,27.468 94.1486681,27.3000017 93.864,26.964 C93.5793319,26.6279983 93.4276668,26.1333366 93.409,25.48 L93.409,20.776 L92.527,20.776 L92.527,25.466 C92.527,25.8953355 92.5736662,26.2779983 92.667,26.614 C92.7603338,26.9500017 92.9073323,27.2346655 93.108,27.468 C93.3086677,27.7013345 93.5699984,27.8809994 93.892,28.007 C94.2140016,28.1330006 94.6036644,28.196 95.061,28.196 C95.602336,28.196 96.0946644,28.067668 96.538,27.811 C96.9813355,27.554332 97.3196655,27.1833358 97.553,26.698 L97.581,26.698 L97.581,28 L98.393,28 Z M101.459,20.776 L101.459,18.606 L100.577,18.606 L100.577,20.776 L99.317,20.776 L99.317,21.518 L100.577,21.518 L100.577,26.46 C100.567667,27.0760031 100.679665,27.4983322 100.913,27.727 C101.146334,27.9556678 101.556997,28.07 102.145,28.07 C102.275667,28.07 102.406333,28.0653334 102.537,28.056 C102.667667,28.0466666 102.798333,28.042 102.929,28.042 L102.929,27.3 C102.676999,27.3280001 102.425001,27.342 102.173,27.342 C101.855665,27.3233332 101.657334,27.2323341 101.578,27.069 C101.498666,26.9056658 101.459,26.6793348 101.459,26.39 L101.459,21.518 L102.929,21.518 L102.929,20.776 L101.459,20.776 Z M105.603,20.776 L105.603,18.606 L104.721,18.606 L104.721,20.776 L103.461,20.776 L103.461,21.518 L104.721,21.518 L104.721,26.46 C104.711667,27.0760031 104.823665,27.4983322 105.057,27.727 C105.290334,27.9556678 105.700997,28.07 106.289,28.07 C106.419667,28.07 106.550333,28.0653334 106.681,28.056 C106.811667,28.0466666 106.942333,28.042 107.073,28.042 L107.073,27.3 C106.820999,27.3280001 106.569001,27.342 106.317,27.342 C105.999665,27.3233332 105.801334,27.2323341 105.722,27.069 C105.642666,26.9056658 105.603,26.6793348 105.603,26.39 L105.603,21.518 L107.073,21.518 L107.073,20.776 L105.603,20.776 Z M111.399,21.308 C110.978998,21.308 110.610335,21.3966658 110.293,21.574 C109.975665,21.7513342 109.712001,21.9846652 109.502,22.274 C109.291999,22.5633348 109.133334,22.8923315 109.026,23.261 C108.918666,23.6296685 108.865,24.0053314 108.865,24.388 C108.865,24.7706686 108.918666,25.1463315 109.026,25.515 C109.133334,25.8836685 109.291999,26.2126652 109.502,26.502 C109.712001,26.7913348 109.975665,27.0246658 110.293,27.202 C110.610335,27.3793342 110.978998,27.468 111.399,27.468 C111.819002,27.468 112.187665,27.3793342 112.505,27.202 C112.822335,27.0246658 113.085999,26.7913348 113.296,26.502 C113.506001,26.2126652 113.664666,25.8836685 113.772,25.515 C113.879334,25.1463315 113.933,24.7706686 113.933,24.388 C113.933,24.0053314 113.879334,23.6296685 113.772,23.261 C113.664666,22.8923315 113.506001,22.5633348 113.296,22.274 C113.085999,21.9846652 112.822335,21.7513342 112.505,21.574 C112.187665,21.3966658 111.819002,21.308 111.399,21.308 Z M111.399,20.566 C111.949669,20.566 112.437331,20.6686656 112.862,20.874 C113.286669,21.0793344 113.643665,21.3546649 113.933,21.7 C114.222335,22.0453351 114.441666,22.4489977 114.591,22.911 C114.740334,23.3730023 114.815,23.8653307 114.815,24.388 C114.815,24.9106693 114.740334,25.4029977 114.591,25.865 C114.441666,26.3270023 114.222335,26.7306649 113.933,27.076 C113.643665,27.4213351 113.286669,27.6943323 112.862,27.895 C112.437331,28.0956677 111.949669,28.196 111.399,28.196 C110.848331,28.196 110.360669,28.0956677 109.936,27.895 C109.511331,27.6943323 109.154335,27.4213351 108.865,27.076 C108.575665,26.7306649 108.356334,26.3270023 108.207,25.865 C108.057666,25.4029977 107.983,24.9106693 107.983,24.388 C107.983,23.8653307 108.057666,23.3730023 108.207,22.911 C108.356334,22.4489977 108.575665,22.0453351 108.865,21.7 C109.154335,21.3546649 109.511331,21.0793344 109.936,20.874 C110.360669,20.6686656 110.848331,20.566 111.399,20.566 Z M116.117,20.776 L116.117,28 L116.999,28 L116.999,23.786 C117.008333,23.4313316 117.066666,23.1023348 117.174,22.799 C117.281334,22.4956652 117.430666,22.2343344 117.622,22.015 C117.813334,21.7956656 118.046665,21.6230006 118.322,21.497 C118.597335,21.3709994 118.912332,21.308 119.267,21.308 C119.621668,21.308 119.917999,21.3639994 120.156,21.476 C120.394001,21.5880006 120.582999,21.741999 120.723,21.938 C120.863001,22.134001 120.961,22.3649987 121.017,22.631 C121.073,22.8970013 121.101,23.1839985 121.101,23.492 L121.101,28 L121.983,28 L121.983,23.352 C121.983,22.9226645 121.941,22.5353351 121.857,22.19 C121.773,21.8446649 121.628334,21.5530012 121.423,21.315 C121.217666,21.0769988 120.944668,20.8926673 120.604,20.762 C120.263332,20.6313327 119.841003,20.566 119.337,20.566 C118.823664,20.566 118.352335,20.6989987 117.923,20.965 C117.493665,21.2310013 117.195001,21.5833311 117.027,22.022 L116.999,22.022 L116.999,20.776 L116.117,20.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="104" height="43" viewBox="0 0 104 43" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="104" height="43" fill="#EC5840"/>
<path fill="#FFF" d="M30.0072006,17.7184003 L30.0072006,28 L30.9864006,28 L30.9864006,17.7184003 L30.0072006,17.7184003 Z M32.9448005,20.5696002 L32.9448005,28 L33.8520005,28 L33.8520005,23.6656001 C33.8616005,23.3007983 33.9215999,22.9624017 34.0320005,22.6504001 C34.142401,22.3383986 34.2959995,22.0696013 34.4928005,21.8440002 C34.6896015,21.618399 34.929599,21.4408008 35.2128005,21.3112002 C35.4960019,21.1815995 35.8199986,21.1168002 36.1848004,21.1168002 C36.5496022,21.1168002 36.8543992,21.1743996 37.0992004,21.2896002 C37.3440016,21.4048008 37.5383997,21.5631992 37.6824004,21.7648002 C37.8264011,21.9664012 37.9272001,22.2039988 37.9848004,22.4776001 C38.0424007,22.7512015 38.0712004,23.0463985 38.0712004,23.3632001 L38.0712004,28 L38.9784004,28 L38.9784004,23.2192001 C38.9784004,22.7775979 38.9352008,22.3792019 38.8488004,22.0240002 C38.7623999,21.6687984 38.6136014,21.3688014 38.4024004,21.1240002 C38.1911993,20.879199 37.9104021,20.6896009 37.5600004,20.5552002 C37.2095987,20.4207995 36.775203,20.3536002 36.2568004,20.3536002 C35.7287978,20.3536002 35.2440027,20.4903988 34.8024005,20.7640002 C34.3607983,21.0376016 34.0536014,21.3999979 33.8808005,21.8512002 L33.8520005,21.8512002 L33.8520005,20.5696002 L32.9448005,20.5696002 Z M44.8680002,17.7184003 L44.8680002,28 L45.8472002,28 L45.8472002,23.1040001 L50.772,23.1040001 L50.772,22.2688002 L45.8472002,22.2688002 L45.8472002,18.5536003 L51.3912,18.5536003 L51.3912,17.7184003 L44.8680002,17.7184003 Z M55.5671999,21.1168002 C55.1351978,21.1168002 54.7560016,21.2079993 54.4295999,21.3904002 C54.1031983,21.5728011 53.832001,21.8127987 53.616,22.1104002 C53.3999989,22.4080016 53.2368005,22.7463982 53.1264,23.1256001 C53.0159994,23.504802 52.9608,23.8911981 52.9608,24.2848001 C52.9608,24.6784021 53.0159994,25.0647982 53.1264,25.4440001 C53.2368005,25.823202 53.3999989,26.1615986 53.616,26.4592 C53.832001,26.7568015 54.1031983,26.9967991 54.4295999,27.1792 C54.7560016,27.3616009 55.1351978,27.4528 55.5671999,27.4528 C55.9992021,27.4528 56.3783983,27.3616009 56.7047999,27.1792 C57.0312015,26.9967991 57.3023988,26.7568015 57.5183999,26.4592 C57.7344009,26.1615986 57.8975993,25.823202 58.0079999,25.4440001 C58.1184004,25.0647982 58.1735998,24.6784021 58.1735998,24.2848001 C58.1735998,23.8911981 58.1184004,23.504802 58.0079999,23.1256001 C57.8975993,22.7463982 57.7344009,22.4080016 57.5183999,22.1104002 C57.3023988,21.8127987 57.0312015,21.5728011 56.7047999,21.3904002 C56.3783983,21.2079993 55.9992021,21.1168002 55.5671999,21.1168002 Z M55.5671999,20.3536002 C56.1336027,20.3536002 56.6351977,20.4591991 57.0719999,20.6704002 C57.5088021,20.8816012 57.8759984,21.1647984 58.1735998,21.5200002 C58.4712013,21.8752019 58.6967991,22.2903978 58.8503998,22.7656001 C59.0040006,23.2408025 59.0807998,23.7471974 59.0807998,24.2848001 C59.0807998,24.8224028 59.0040006,25.3287977 58.8503998,25.8040001 C58.6967991,26.2792024 58.4712013,26.6943983 58.1735998,27.0496 C57.8759984,27.4048018 57.5088021,27.685599 57.0719999,27.892 C56.6351977,28.098401 56.1336027,28.2016 55.5671999,28.2016 C55.0007971,28.2016 54.4992021,28.098401 54.0624,27.892 C53.6255978,27.685599 53.2584015,27.4048018 52.9608,27.0496 C52.6631985,26.6943983 52.4376008,26.2792024 52.284,25.8040001 C52.1303992,25.3287977 52.0536,24.8224028 52.0536,24.2848001 C52.0536,23.7471974 52.1303992,23.2408025 52.284,22.7656001 C52.4376008,22.2903978 52.6631985,21.8752019 52.9608,21.5200002 C53.2584015,21.1647984 53.6255978,20.8816012 54.0624,20.6704002 C54.4992021,20.4591991 55.0007971,20.3536002 55.5671999,20.3536002 Z M60.4343998,20.5696002 L60.4343998,28 L61.3415998,28 L61.3415998,24.0400001 C61.3415998,23.6463981 61.4087991,23.2840018 61.5431998,22.9528001 C61.6776004,22.6215985 61.8671985,22.3360014 62.1119997,22.0960002 C62.356801,21.855999 62.6471981,21.6712008 62.9831997,21.5416002 C63.3192014,21.4119995 63.6935976,21.3568001 64.1063997,21.3760002 L64.1063997,20.4688002 C63.4343964,20.4400001 62.8560021,20.5887986 62.3711997,20.9152002 C61.8863973,21.2416018 61.5288009,21.7071971 61.2983998,22.3120002 L61.2695998,22.3120002 L61.2695998,20.5696002 L60.4343998,20.5696002 Z M64.9703997,20.5696002 L64.9703997,28 L65.8775996,28 L65.8775996,23.8528001 C65.8775996,23.4591982 65.9207992,23.0968018 66.0071996,22.7656001 C66.0936001,22.4343985 66.2255987,22.1464014 66.4031996,21.9016002 C66.5808005,21.6567989 66.8111982,21.4648009 67.0943996,21.3256002 C67.377601,21.1863995 67.7111977,21.1168002 68.0951996,21.1168002 C68.383201,21.1168002 68.6279986,21.1647997 68.8295996,21.2608002 C69.0312006,21.3568007 69.191999,21.4887993 69.3119996,21.6568002 C69.4320002,21.824801 69.5183993,22.021599 69.5711995,22.2472002 C69.6239998,22.4728013 69.6503995,22.7103989 69.6503995,22.9600001 L69.6503995,28 L70.5575995,28 L70.5575995,23.7952001 C70.5575995,23.4495984 70.5887992,23.1160017 70.6511995,22.7944001 C70.7135998,22.4727985 70.8215987,22.1872014 70.9751995,21.9376002 C71.1288003,21.6879989 71.3351982,21.4888009 71.5943995,21.3400002 C71.8536008,21.1911994 72.1799975,21.1168002 72.5735995,21.1168002 C73.2264027,21.1168002 73.6823981,21.2775986 73.9415994,21.5992002 C74.2008007,21.9208018 74.3303994,22.3887971 74.3303994,23.0032001 L74.3303994,28 L75.2375994,28 L75.2375994,22.9600001 C75.2375994,21.2223915 74.4168076,20.3536002 72.7751995,20.3536002 C72.285597,20.3536002 71.8248016,20.473599 71.3927995,20.7136002 C70.9607974,20.9536014 70.6344006,21.3183977 70.4135995,21.8080002 C70.2791989,21.3183977 70.0128015,20.9536014 69.6143995,20.7136002 C69.2159976,20.473599 68.772002,20.3536002 68.2823996,20.3536002 C67.6775966,20.3536002 67.1808016,20.4831989 66.7919996,20.7424002 C66.4031977,21.0016015 66.0888008,21.3615979 65.8487996,21.8224002 L65.8055996,21.8224002 L65.8055996,20.5696002 L64.9703997,20.5696002 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="45" height="45" fill="none" stroke="#2199E8"/>
<path fill="#2199E8" d="M12.3683446,9.60263939 L9.11687347,6.35151495 L12.3673045,3.10073722 C12.5020024,2.96603936 12.5020024,2.74778375 12.3673045,2.61308589 L10.0902692,0.335530545 C9.95557135,0.200832683 9.73714239,0.200832683 9.60244453,0.335530545 L6.35149344,3.58630828 L3.10106242,0.335530545 C2.97173861,0.206033373 2.74273491,0.206033373 2.61323774,0.335530545 L0.335682392,2.61273918 C0.271020485,2.67740108 0.234615657,2.76529274 0.234615657,2.85665152 C0.234615657,2.9480103 0.271020485,3.03590196 0.335682392,3.10056386 L3.58663348,6.35151495 L0.335162323,9.60281275 C0.270500416,9.66764801 0.234095588,9.75536631 0.234095588,9.84672509 C0.234095588,9.93825723 0.270500416,10.0261489 0.335162323,10.0906374 L2.61237096,12.3680194 C2.67703286,12.4326813 2.76509787,12.4690862 2.85680337,12.4690862 C2.94781544,12.4690862 3.03553373,12.4326813 3.10019564,12.3680194 L6.35149344,9.11672163 L9.6029646,12.3678461 C9.67040021,12.4351083 9.75829186,12.4689128 9.84687694,12.4689128 C9.93546202,12.4689128 10.023527,12.4351083 10.0909626,12.3678461 L12.368518,10.0904641 C12.5030425,9.95576622 12.5030425,9.73751061 12.3683446,9.60263939 L12.3683446,9.60263939 Z" transform="translate(16 16)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="138" height="45" viewBox="0 0 138 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="138" height="45" fill="#2199E8"/>
<rect width="138" height="45" fill="#FFF" opacity=".302"/>
<path fill="#FFF" d="M44.454,18.004 L47.912,18.004 C49.4333409,18.0413335 50.5789962,18.4683293 51.349,19.285 C52.1190038,20.1016708 52.504,21.3406584 52.504,23.002 C52.504,24.6633416 52.1190038,25.9023293 51.349,26.719 C50.5789962,27.5356708 49.4333409,27.9626665 47.912,28 L44.454,28 L44.454,18.004 Z M45.406,27.188 L47.436,27.188 C48.1546703,27.188 48.7729974,27.1110008 49.291,26.957 C49.8090026,26.8029992 50.2359983,26.5580017 50.572,26.222 C50.9080017,25.8859983 51.1553325,25.4520027 51.314,24.92 C51.4726675,24.3879973 51.552,23.7486704 51.552,23.002 C51.552,22.2553296 51.4726675,21.6160027 51.314,21.084 C51.1553325,20.5519973 50.9080017,20.1180017 50.572,19.782 C50.2359983,19.4459983 49.8090026,19.2010008 49.291,19.047 C48.7729974,18.8929992 48.1546703,18.816 47.436,18.816 L45.406,18.816 L45.406,27.188 Z M53.89,18.004 L53.89,19.418 L54.772,19.418 L54.772,18.004 L53.89,18.004 Z M53.89,20.776 L53.89,28 L54.772,28 L54.772,20.776 L53.89,20.776 Z M60.792,22.89 L61.674,22.89 C61.6553332,22.497998 61.5760007,22.1573348 61.436,21.868 C61.2959993,21.5786652 61.1070012,21.336001 60.869,21.14 C60.6309988,20.943999 60.3556682,20.7993338 60.043,20.706 C59.7303318,20.6126662 59.3920018,20.566 59.028,20.566 C58.7106651,20.566 58.3910016,20.603333 58.069,20.678 C57.7469984,20.752667 57.4553346,20.8693325 57.194,21.028 C56.9326654,21.1866675 56.7203341,21.3966654 56.557,21.658 C56.3936659,21.9193346 56.312,22.2319982 56.312,22.596 C56.312,22.9040015 56.3633328,23.162999 56.466,23.373 C56.5686672,23.5830011 56.7109991,23.7603326 56.893,23.905 C57.0750009,24.0496674 57.2873321,24.1709995 57.53,24.269 C57.7726679,24.3670005 58.0386652,24.453333 58.328,24.528 L59.462,24.78 C59.658001,24.8266669 59.8516657,24.8826663 60.043,24.948 C60.2343343,25.0133337 60.4046659,25.0949995 60.554,25.193 C60.7033341,25.2910005 60.8223329,25.4123326 60.911,25.557 C60.9996671,25.7016674 61.044,25.8813323 61.044,26.096 C61.044,26.3480013 60.9810006,26.5603325 60.855,26.733 C60.7289994,26.9056675 60.568001,27.0479994 60.372,27.16 C60.175999,27.2720006 59.9636678,27.3513331 59.735,27.398 C59.5063322,27.4446669 59.2846677,27.468 59.07,27.468 C58.4819971,27.468 57.9896686,27.3163349 57.593,27.013 C57.1963314,26.7096651 56.9793335,26.2593363 56.942,25.662 L56.06,25.662 C56.134667,26.5486711 56.435664,27.1926647 56.963,27.594 C57.490336,27.9953353 58.1786624,28.196 59.028,28.196 C59.3640017,28.196 59.7046649,28.158667 60.05,28.084 C60.3953351,28.009333 60.7056653,27.8856675 60.981,27.713 C61.2563347,27.5403325 61.4826658,27.3163347 61.66,27.041 C61.8373342,26.7656653 61.926,26.432002 61.926,26.04 C61.926,25.7226651 61.8653339,25.4473345 61.744,25.214 C61.6226661,24.9806655 61.4663343,24.7846675 61.275,24.626 C61.0836657,24.4673325 60.8643346,24.3390005 60.617,24.241 C60.3696654,24.1429995 60.1200013,24.0753335 59.868,24.038 L58.692,23.772 C58.5426659,23.7346665 58.3793342,23.685667 58.202,23.625 C58.0246658,23.564333 57.8613341,23.4873338 57.712,23.394 C57.5626659,23.3006662 57.4390005,23.186334 57.341,23.051 C57.2429995,22.915666 57.194,22.750001 57.194,22.554 C57.194,22.3206655 57.2453328,22.1246675 57.348,21.966 C57.4506672,21.8073325 57.5859992,21.6790005 57.754,21.581 C57.9220008,21.4829995 58.1063323,21.4130002 58.307,21.371 C58.5076677,21.3289998 58.705999,21.308 58.902,21.308 C59.1540013,21.308 59.3919989,21.338333 59.616,21.399 C59.8400011,21.459667 60.0383325,21.5553327 60.211,21.686 C60.3836675,21.8166673 60.5213328,21.9823323 60.624,22.183 C60.7266672,22.3836677 60.7826666,22.619332 60.792,22.89 Z M63.116,22.988 C63.1440001,22.5679979 63.2326659,22.2040015 63.382,21.896 C63.5313341,21.5879985 63.734332,21.336001 63.991,21.14 C64.2476679,20.943999 64.5486649,20.7993338 64.894,20.706 C65.2393351,20.6126662 65.6219979,20.566 66.042,20.566 C66.3593349,20.566 66.6766651,20.596333 66.994,20.657 C67.3113349,20.717667 67.5959987,20.8319992 67.848,21 C68.1000013,21.1680008 68.3053325,21.4036651 68.464,21.707 C68.6226675,22.0103348 68.702,22.4046642 68.702,22.89 L68.702,26.726 C68.702,27.0806684 68.8746649,27.258 69.22,27.258 C69.3226672,27.258 69.4159996,27.2393335 69.5,27.202 L69.5,27.944 C69.3973328,27.9626668 69.3063337,27.9766666 69.227,27.986 C69.1476663,27.9953334 69.0473339,28 68.926,28 C68.7019989,28 68.522334,27.969667 68.387,27.909 C68.251666,27.848333 68.146667,27.7620006 68.072,27.65 C67.997333,27.5379994 67.9483335,27.4050008 67.925,27.251 C67.9016666,27.0969992 67.89,26.9266676 67.89,26.74 L67.862,26.74 C67.7033325,26.9733345 67.5423342,27.1809991 67.379,27.363 C67.2156658,27.5450009 67.0336677,27.6966661 66.833,27.818 C66.6323323,27.9393339 66.4036679,28.0326663 66.147,28.098 C65.890332,28.1633337 65.5846684,28.196 65.23,28.196 C64.8939983,28.196 64.5790015,28.1563337 64.285,28.077 C63.9909985,27.9976663 63.7343344,27.8716675 63.515,27.699 C63.2956656,27.5263325 63.1230006,27.3070013 62.997,27.041 C62.8709994,26.7749987 62.808,26.4600018 62.808,26.096 C62.808,25.5919975 62.9199989,25.1976681 63.144,24.913 C63.3680011,24.6283319 63.6643315,24.4113341 64.033,24.262 C64.4016685,24.1126659 64.8169977,24.007667 65.279,23.947 C65.7410023,23.886333 66.2099976,23.8280003 66.686,23.772 C66.8726676,23.7533332 67.0359993,23.7300001 67.176,23.702 C67.3160007,23.6739999 67.4326662,23.6250004 67.526,23.555 C67.6193338,23.4849996 67.6916664,23.3893339 67.743,23.268 C67.7943336,23.1466661 67.82,22.988001 67.82,22.792 C67.82,22.4933318 67.7710005,22.2483343 67.673,22.057 C67.5749995,21.8656657 67.4396675,21.7140006 67.267,21.602 C67.0943325,21.4899994 66.8936678,21.4130002 66.665,21.371 C66.4363322,21.3289998 66.1913346,21.308 65.93,21.308 C65.3699972,21.308 64.9126684,21.4409987 64.558,21.707 C64.2033316,21.9730013 64.0166668,22.3999971 63.998,22.988 L63.116,22.988 Z M67.82,24.052 L67.792,24.052 C67.7359997,24.1546672 67.6286675,24.2293331 67.47,24.276 C67.3113325,24.3226669 67.1713339,24.3553332 67.05,24.374 C66.6766648,24.4393337 66.2916686,24.4976664 65.895,24.549 C65.4983314,24.6003336 65.1366683,24.6773328 64.81,24.78 C64.4833317,24.8826672 64.215001,25.0296657 64.005,25.221 C63.794999,25.4123343 63.69,25.6853316 63.69,26.04 C63.69,26.2640011 63.7343329,26.4623325 63.823,26.635 C63.9116671,26.8076675 64.0306659,26.9569994 64.18,27.083 C64.3293341,27.2090006 64.501999,27.3046663 64.698,27.37 C64.894001,27.4353337 65.0946656,27.468 65.3,27.468 C65.6360017,27.468 65.9579985,27.4166672 66.266,27.314 C66.5740015,27.2113328 66.8423322,27.062001 67.071,26.866 C67.2996678,26.669999 67.481666,26.4320014 67.617,26.152 C67.752334,25.8719986 67.82,25.5546684 67.82,25.2 L67.82,24.052 Z M70.466,18.004 L71.348,18.004 L71.348,22.148 L71.376,22.148 C71.4693338,21.8866654 71.6023325,21.658001 71.775,21.462 C71.9476675,21.265999 72.1459989,21.100334 72.37,20.965 C72.5940011,20.829666 72.8366654,20.7293337 73.098,20.664 C73.3593346,20.5986663 73.6206654,20.566 73.882,20.566 C74.4326694,20.566 74.910998,20.6686656 75.317,20.874 C75.723002,21.0793344 76.061332,21.3569983 76.332,21.707 C76.602668,22.0570017 76.8033327,22.4629977 76.934,22.925 C77.0646673,23.3870023 77.13,23.8746641 77.13,24.388 C77.13,24.9013359 77.0646673,25.3889977 76.934,25.851 C76.8033327,26.3130023 76.602668,26.7189982 76.332,27.069 C76.061332,27.4190017 75.723002,27.6943323 75.317,27.895 C74.910998,28.0956677 74.4326694,28.196 73.882,28.196 C73.2939971,28.196 72.7690023,28.060668 72.307,27.79 C71.8449977,27.519332 71.5113344,27.1320025 71.306,26.628 L71.278,26.628 L71.278,28 L70.466,28 L70.466,18.004 Z M76.248,24.388 C76.248,24.0146648 76.2036671,23.6436685 76.115,23.275 C76.0263329,22.9063315 75.8863343,22.5773348 75.695,22.288 C75.5036657,21.9986652 75.2586682,21.7630009 74.96,21.581 C74.6613318,21.3989991 74.3020021,21.308 73.882,21.308 C73.415331,21.308 73.0210016,21.3989991 72.699,21.581 C72.3769984,21.7630009 72.1156677,21.9986652 71.915,22.288 C71.7143323,22.5773348 71.5696671,22.9063315 71.481,23.275 C71.3923329,23.6436685 71.348,24.0146648 71.348,24.388 C71.348,24.7613352 71.3923329,25.1323315 71.481,25.501 C71.5696671,25.8696685 71.7143323,26.1986652 71.915,26.488 C72.1156677,26.7773348 72.3769984,27.0129991 72.699,27.195 C73.0210016,27.3770009 73.415331,27.468 73.882,27.468 C74.3020021,27.468 74.6613318,27.3770009 74.96,27.195 C75.2586682,27.0129991 75.5036657,26.7773348 75.695,26.488 C75.8863343,26.1986652 76.0263329,25.8696685 76.115,25.501 C76.2036671,25.1323315 76.248,24.7613352 76.248,24.388 Z M78.516,18.004 L78.516,28 L79.398,28 L79.398,18.004 L78.516,18.004 Z M86.286,23.884 C86.2766666,23.5479983 86.2183339,23.2260015 86.111,22.918 C86.0036661,22.6099985 85.852001,22.3370012 85.656,22.099 C85.459999,21.8609988 85.2220014,21.6696674 84.942,21.525 C84.6619986,21.3803326 84.3446684,21.308 83.99,21.308 C83.6259982,21.308 83.3040014,21.3803326 83.024,21.525 C82.7439986,21.6696674 82.506001,21.8609988 82.31,22.099 C82.113999,22.3370012 81.9576673,22.6123318 81.841,22.925 C81.7243328,23.2376682 81.6473335,23.5573317 81.61,23.884 L86.286,23.884 Z M81.61,24.626 C81.61,24.9433349 81.6543329,25.2723316 81.743,25.613 C81.8316671,25.9536684 81.973999,26.259332 82.17,26.53 C82.366001,26.800668 82.6133318,27.0246658 82.912,27.202 C83.2106682,27.3793342 83.5699979,27.468 83.99,27.468 C84.6340032,27.468 85.1379982,27.3000017 85.502,26.964 C85.8660018,26.6279983 86.1179993,26.1800028 86.258,25.62 L87.14,25.62 C86.9533324,26.4413374 86.6103358,27.0759978 86.111,27.524 C85.6116642,27.9720022 84.9046712,28.196 83.99,28.196 C83.4206638,28.196 82.9283354,28.0956677 82.513,27.895 C82.0976646,27.6943323 81.7593346,27.4190017 81.498,27.069 C81.2366654,26.7189982 81.0430006,26.3130023 80.917,25.851 C80.7909994,25.3889977 80.728,24.9013359 80.728,24.388 C80.728,23.9119976 80.7909994,23.4453356 80.917,22.988 C81.0430006,22.5306644 81.2366654,22.1223351 81.498,21.763 C81.7593346,21.4036649 82.0976646,21.1143344 82.513,20.895 C82.9283354,20.6756656 83.4206638,20.566 83.99,20.566 C84.5686696,20.566 85.0633313,20.6826655 85.474,20.916 C85.8846687,21.1493345 86.218332,21.4549981 86.475,21.833 C86.731668,22.2110019 86.9159994,22.6449975 87.028,23.135 C87.1400006,23.6250025 87.1866668,24.1219975 87.168,24.626 L81.61,24.626 Z M94.714,28 L93.902,28 L93.902,26.628 L93.874,26.628 C93.7806662,26.8613345 93.6430009,27.075999 93.461,27.272 C93.2789991,27.468001 93.0713345,27.633666 92.838,27.769 C92.6046655,27.904334 92.3550013,28.009333 92.089,28.084 C91.8229987,28.158667 91.5593346,28.196 91.298,28.196 C90.7473306,28.196 90.269002,28.0956677 89.863,27.895 C89.456998,27.6943323 89.118668,27.4190017 88.848,27.069 C88.577332,26.7189982 88.3766673,26.3130023 88.246,25.851 C88.1153327,25.3889977 88.05,24.9013359 88.05,24.388 C88.05,23.8746641 88.1153327,23.3870023 88.246,22.925 C88.3766673,22.4629977 88.577332,22.0570017 88.848,21.707 C89.118668,21.3569983 89.456998,21.0793344 89.863,20.874 C90.269002,20.6686656 90.7473306,20.566 91.298,20.566 C91.568668,20.566 91.832332,20.5986663 92.089,20.664 C92.3456679,20.7293337 92.5859989,20.829666 92.81,20.965 C93.0340011,21.100334 93.2323325,21.265999 93.405,21.462 C93.5776675,21.658001 93.7106662,21.8866654 93.804,22.148 L93.832,22.148 L93.832,18.004 L94.714,18.004 L94.714,28 Z M88.932,24.388 C88.932,24.7613352 88.9763329,25.1323315 89.065,25.501 C89.1536671,25.8696685 89.2936657,26.1986652 89.485,26.488 C89.6763343,26.7773348 89.9213318,27.0129991 90.22,27.195 C90.5186682,27.3770009 90.8779979,27.468 91.298,27.468 C91.764669,27.468 92.1589984,27.3770009 92.481,27.195 C92.8030016,27.0129991 93.0643323,26.7773348 93.265,26.488 C93.4656677,26.1986652 93.6103329,25.8696685 93.699,25.501 C93.7876671,25.1323315 93.832,24.7613352 93.832,24.388 C93.832,24.0146648 93.7876671,23.6436685 93.699,23.275 C93.6103329,22.9063315 93.4656677,22.5773348 93.265,22.288 C93.0643323,21.9986652 92.8030016,21.7630009 92.481,21.581 C92.1589984,21.3989991 91.764669,21.308 91.298,21.308 C90.8779979,21.308 90.5186682,21.3989991 90.22,21.581 C89.9213318,21.7630009 89.6763343,21.9986652 89.485,22.288 C89.2936657,22.5773348 89.1536671,22.9063315 89.065,23.275 C88.9763329,23.6436685 88.932,24.0146648 88.932,24.388 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="173" height="45" viewBox="0 0 173 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="173" height="45" fill="#2199E8"/>
<g transform="translate(126)">
<polygon fill="#FFF" points="18 21 30 21 24 27"/>
<path stroke="#FFF" stroke-linecap="square" d="M1.5,0.5 L1.5,44.5"/>
</g>
<path fill="#FFF" d="M30.697,24.71 L29.745,24.71 C29.7169999,25.3260031 29.7986657,25.8533311 29.99,26.292 C30.1813343,26.7306689 30.4543316,27.0899986 30.809,27.37 C31.1636684,27.6500014 31.5929975,27.857666 32.097,27.993 C32.6010025,28.128334 33.1469971,28.196 33.735,28.196 C34.3230029,28.196 34.8269979,28.1423339 35.247,28.035 C35.6670021,27.9276661 36.0193319,27.7876675 36.304,27.615 C36.5886681,27.4423325 36.8126659,27.2486677 36.976,27.034 C37.1393341,26.8193323 37.2653329,26.6070011 37.354,26.397 C37.4426671,26.1869989 37.4986665,25.9886676 37.522,25.802 C37.5453335,25.6153324 37.557,25.4660006 37.557,25.354 C37.557,24.9433313 37.489334,24.5933348 37.354,24.304 C37.218666,24.0146652 37.0320012,23.7696677 36.794,23.569 C36.5559988,23.3683323 36.2806682,23.200334 35.968,23.065 C35.6553318,22.929666 35.3216684,22.8153338 34.967,22.722 L32.531,22.12 C32.3256656,22.0733331 32.1320009,22.012667 31.95,21.938 C31.7679991,21.863333 31.6070007,21.7653339 31.467,21.644 C31.3269993,21.5226661 31.2173337,21.3756675 31.138,21.203 C31.0586663,21.0303325 31.019,20.8273345 31.019,20.594 C31.019,20.2206648 31.0889993,19.9080013 31.229,19.656 C31.3690007,19.4039987 31.5533322,19.2010008 31.782,19.047 C32.0106678,18.8929992 32.2766651,18.7810003 32.58,18.711 C32.8833348,18.6409996 33.1983317,18.606 33.525,18.606 C33.8796684,18.606 34.2179984,18.6549995 34.54,18.753 C34.8620016,18.8510005 35.1466654,18.9956657 35.394,19.187 C35.6413346,19.3783343 35.8419992,19.6163319 35.996,19.901 C36.1500008,20.1856681 36.2363332,20.5193314 36.255,20.902 L37.207,20.902 C37.207,20.3886641 37.1066677,19.9383353 36.906,19.551 C36.7053323,19.1636647 36.4370017,18.8393346 36.101,18.578 C35.7649983,18.3166654 35.3730022,18.1206673 34.925,17.99 C34.4769978,17.8593327 34.0056691,17.794 33.511,17.794 C32.8109965,17.794 32.2370022,17.8943323 31.789,18.095 C31.3409978,18.2956677 30.9886679,18.5406652 30.732,18.83 C30.475332,19.1193348 30.3003338,19.4273317 30.207,19.754 C30.1136662,20.0806683 30.067,20.3653321 30.067,20.608 C30.067,21.000002 30.1299994,21.331332 30.256,21.602 C30.3820006,21.872668 30.5476656,22.1013324 30.753,22.288 C30.9583344,22.4746676 31.1986653,22.6239994 31.474,22.736 C31.7493347,22.8480006 32.0316652,22.941333 32.321,23.016 L34.547,23.562 C34.7803345,23.6180003 35.0183321,23.6903329 35.261,23.779 C35.5036679,23.8676671 35.7253323,23.9819993 35.926,24.122 C36.1266677,24.2620007 36.2899994,24.4346656 36.416,24.64 C36.5420006,24.8453344 36.605,25.0879986 36.605,25.368 C36.605,25.7320018 36.5163342,26.042332 36.339,26.299 C36.1616658,26.555668 35.9400013,26.7656658 35.674,26.929 C35.4079987,27.0923341 35.1210015,27.211333 34.813,27.286 C34.5049985,27.360667 34.2203346,27.398 33.959,27.398 C33.5016644,27.398 33.0723353,27.3536671 32.671,27.265 C32.2696647,27.1763329 31.9220015,27.0293344 31.628,26.824 C31.3339985,26.6186656 31.1030008,26.3433351 30.935,25.998 C30.7669992,25.6526649 30.6876666,25.2233359 30.697,24.71 Z M38.901,20.776 L39.713,20.776 L39.713,22.148 L39.741,22.148 C39.9463344,21.6439975 40.2799977,21.2543347 40.742,20.979 C41.2040023,20.7036653 41.7289971,20.566 42.317,20.566 C42.8676694,20.566 43.345998,20.6686656 43.752,20.874 C44.158002,21.0793344 44.496332,21.3569983 44.767,21.707 C45.037668,22.0570017 45.2383327,22.4629977 45.369,22.925 C45.4996673,23.3870023 45.565,23.8746641 45.565,24.388 C45.565,24.9013359 45.4996673,25.3889977 45.369,25.851 C45.2383327,26.3130023 45.037668,26.7189982 44.767,27.069 C44.496332,27.4190017 44.158002,27.6943323 43.752,27.895 C43.345998,28.0956677 42.8676694,28.196 42.317,28.196 C42.0556654,28.196 41.7943346,28.1633337 41.533,28.098 C41.2716654,28.0326663 41.0290011,27.9346673 40.805,27.804 C40.5809989,27.6733327 40.3826675,27.510001 40.21,27.314 C40.0373325,27.117999 39.9043338,26.8893346 39.811,26.628 L39.783,26.628 L39.783,30.66 L38.901,30.66 L38.901,20.776 Z M44.683,24.388 C44.683,24.0146648 44.6386671,23.6436685 44.55,23.275 C44.4613329,22.9063315 44.3213343,22.5773348 44.13,22.288 C43.9386657,21.9986652 43.6936682,21.7630009 43.395,21.581 C43.0963318,21.3989991 42.7370021,21.308 42.317,21.308 C41.8316642,21.308 41.4256683,21.3919992 41.099,21.56 C40.7723317,21.7280008 40.511001,21.9519986 40.315,22.232 C40.118999,22.5120014 39.9813337,22.8386648 39.902,23.212 C39.8226663,23.5853352 39.783,23.9773313 39.783,24.388 C39.783,24.7613352 39.8273329,25.1323315 39.916,25.501 C40.0046671,25.8696685 40.1493323,26.1986652 40.35,26.488 C40.5506677,26.7773348 40.8119984,27.0129991 41.134,27.195 C41.4560016,27.3770009 41.850331,27.468 42.317,27.468 C42.7370021,27.468 43.0963318,27.3770009 43.395,27.195 C43.6936682,27.0129991 43.9386657,26.7773348 44.13,26.488 C44.3213343,26.1986652 44.4613329,25.8696685 44.55,25.501 C44.6386671,25.1323315 44.683,24.7613352 44.683,24.388 Z M46.951,18.004 L46.951,28 L47.833,28 L47.833,18.004 L46.951,18.004 Z M49.541,18.004 L49.541,19.418 L50.423,19.418 L50.423,18.004 L49.541,18.004 Z M49.541,20.776 L49.541,28 L50.423,28 L50.423,20.776 L49.541,20.776 Z M53.517,20.776 L53.517,18.606 L52.635,18.606 L52.635,20.776 L51.375,20.776 L51.375,21.518 L52.635,21.518 L52.635,26.46 C52.6256666,27.0760031 52.7376655,27.4983322 52.971,27.727 C53.2043345,27.9556678 53.6149971,28.07 54.203,28.07 C54.3336673,28.07 54.4643327,28.0653334 54.595,28.056 C54.7256673,28.0466666 54.8563327,28.042 54.987,28.042 L54.987,27.3 C54.7349987,27.3280001 54.4830013,27.342 54.231,27.342 C53.9136651,27.3233332 53.7153337,27.2323341 53.636,27.069 C53.5566663,26.9056658 53.517,26.6793348 53.517,26.39 L53.517,21.518 L54.987,21.518 L54.987,20.776 L53.517,20.776 Z M61.273,22.386 L64.549,22.386 C64.9316686,22.386 65.2629986,22.3416671 65.543,22.253 C65.8230014,22.1643329 66.0563324,22.0430008 66.243,21.889 C66.4296676,21.7349992 66.5696662,21.5553344 66.663,21.35 C66.7563338,21.1446656 66.803,20.9253345 66.803,20.692 C66.803,19.4413271 66.0516742,18.816 64.549,18.816 L61.273,18.816 L61.273,22.386 Z M60.321,18.004 L64.549,18.004 C64.9690021,18.004 65.3726647,18.0436663 65.76,18.123 C66.1473353,18.2023337 66.4879985,18.3376657 66.782,18.529 C67.0760015,18.7203343 67.3116658,18.9723318 67.489,19.285 C67.6663342,19.5976682 67.755,19.987331 67.755,20.454 C67.755,20.7153346 67.7130004,20.9696654 67.629,21.217 C67.5449996,21.4643346 67.4260008,21.6883323 67.272,21.889 C67.1179992,22.0896677 66.9360011,22.2599993 66.726,22.4 C66.5159989,22.5400007 66.2803346,22.6379997 66.019,22.694 L66.019,22.722 C66.6630032,22.8060004 67.1763314,23.0696644 67.559,23.513 C67.9416686,23.9563355 68.133,24.5046634 68.133,25.158 C68.133,25.3166675 68.1190001,25.4963323 68.091,25.697 C68.0629999,25.8976677 68.0070004,26.1029989 67.923,26.313 C67.8389996,26.5230011 67.7176675,26.7306656 67.559,26.936 C67.4003325,27.1413344 67.1880013,27.3209992 66.922,27.475 C66.6559987,27.6290008 66.3293353,27.7549995 65.942,27.853 C65.5546647,27.9510005 65.090336,28 64.549,28 L60.321,28 L60.321,18.004 Z M61.273,27.188 L64.549,27.188 C64.9036684,27.188 65.2396651,27.157667 65.557,27.097 C65.8743349,27.036333 66.1543321,26.9266675 66.397,26.768 C66.6396679,26.6093325 66.8309993,26.3970013 66.971,26.131 C67.1110007,25.8649987 67.181,25.5313353 67.181,25.13 C67.181,24.4859968 66.9546689,24.0030016 66.502,23.681 C66.0493311,23.3589984 65.3983376,23.198 64.549,23.198 L61.273,23.198 L61.273,27.188 Z M75.343,28 L75.343,20.776 L74.461,20.776 L74.461,24.57 C74.461,24.9340018 74.4190004,25.2909983 74.335,25.641 C74.2509996,25.9910018 74.1203342,26.301332 73.943,26.572 C73.7656658,26.842668 73.541668,27.0596659 73.271,27.223 C73.000332,27.3863341 72.6736686,27.468 72.291,27.468 C71.5909965,27.468 71.0986681,27.3000017 70.814,26.964 C70.5293319,26.6279983 70.3776668,26.1333366 70.359,25.48 L70.359,20.776 L69.477,20.776 L69.477,25.466 C69.477,25.8953355 69.5236662,26.2779983 69.617,26.614 C69.7103338,26.9500017 69.8573323,27.2346655 70.058,27.468 C70.2586677,27.7013345 70.5199984,27.8809994 70.842,28.007 C71.1640016,28.1330006 71.5536644,28.196 72.011,28.196 C72.552336,28.196 73.0446644,28.067668 73.488,27.811 C73.9313356,27.554332 74.2696655,27.1833358 74.503,26.698 L74.531,26.698 L74.531,28 L75.343,28 Z M78.409,20.776 L78.409,18.606 L77.527,18.606 L77.527,20.776 L76.267,20.776 L76.267,21.518 L77.527,21.518 L77.527,26.46 C77.5176666,27.0760031 77.6296655,27.4983322 77.863,27.727 C78.0963345,27.9556678 78.5069971,28.07 79.095,28.07 C79.2256673,28.07 79.3563327,28.0653334 79.487,28.056 C79.6176673,28.0466666 79.7483327,28.042 79.879,28.042 L79.879,27.3 C79.6269987,27.3280001 79.3750013,27.342 79.123,27.342 C78.8056651,27.3233332 78.6073337,27.2323341 78.528,27.069 C78.4486663,26.9056658 78.409,26.6793348 78.409,26.39 L78.409,21.518 L79.879,21.518 L79.879,20.776 L78.409,20.776 Z M82.553,20.776 L82.553,18.606 L81.671,18.606 L81.671,20.776 L80.411,20.776 L80.411,21.518 L81.671,21.518 L81.671,26.46 C81.6616666,27.0760031 81.7736655,27.4983322 82.007,27.727 C82.2403345,27.9556678 82.6509971,28.07 83.239,28.07 C83.3696673,28.07 83.5003327,28.0653334 83.631,28.056 C83.7616673,28.0466666 83.8923327,28.042 84.023,28.042 L84.023,27.3 C83.7709987,27.3280001 83.5190013,27.342 83.267,27.342 C82.9496651,27.3233332 82.7513337,27.2323341 82.672,27.069 C82.5926663,26.9056658 82.553,26.6793348 82.553,26.39 L82.553,21.518 L84.023,21.518 L84.023,20.776 L82.553,20.776 Z M88.349,21.308 C87.9289979,21.308 87.5603349,21.3966658 87.243,21.574 C86.9256651,21.7513342 86.6620011,21.9846652 86.452,22.274 C86.241999,22.5633348 86.0833339,22.8923315 85.976,23.261 C85.8686661,23.6296685 85.815,24.0053314 85.815,24.388 C85.815,24.7706686 85.8686661,25.1463315 85.976,25.515 C86.0833339,25.8836685 86.241999,26.2126652 86.452,26.502 C86.6620011,26.7913348 86.9256651,27.0246658 87.243,27.202 C87.5603349,27.3793342 87.9289979,27.468 88.349,27.468 C88.7690021,27.468 89.1376651,27.3793342 89.455,27.202 C89.7723349,27.0246658 90.035999,26.7913348 90.246,26.502 C90.4560011,26.2126652 90.6146661,25.8836685 90.722,25.515 C90.8293339,25.1463315 90.883,24.7706686 90.883,24.388 C90.883,24.0053314 90.8293339,23.6296685 90.722,23.261 C90.6146661,22.8923315 90.4560011,22.5633348 90.246,22.274 C90.035999,21.9846652 89.7723349,21.7513342 89.455,21.574 C89.1376651,21.3966658 88.7690021,21.308 88.349,21.308 Z M88.349,20.566 C88.8996694,20.566 89.3873312,20.6686656 89.812,20.874 C90.2366688,21.0793344 90.5936652,21.3546649 90.883,21.7 C91.1723348,22.0453351 91.3916659,22.4489977 91.541,22.911 C91.6903341,23.3730023 91.765,23.8653307 91.765,24.388 C91.765,24.9106693 91.6903341,25.4029977 91.541,25.865 C91.3916659,26.3270023 91.1723348,26.7306649 90.883,27.076 C90.5936652,27.4213351 90.2366688,27.6943323 89.812,27.895 C89.3873312,28.0956677 88.8996694,28.196 88.349,28.196 C87.7983306,28.196 87.3106688,28.0956677 86.886,27.895 C86.4613312,27.6943323 86.1043348,27.4213351 85.815,27.076 C85.5256652,26.7306649 85.3063341,26.3270023 85.157,25.865 C85.0076659,25.4029977 84.933,24.9106693 84.933,24.388 C84.933,23.8653307 85.0076659,23.3730023 85.157,22.911 C85.3063341,22.4489977 85.5256652,22.0453351 85.815,21.7 C86.1043348,21.3546649 86.4613312,21.0793344 86.886,20.874 C87.3106688,20.6686656 87.7983306,20.566 88.349,20.566 Z M93.067,20.776 L93.067,28 L93.949,28 L93.949,23.786 C93.9583334,23.4313316 94.0166661,23.1023348 94.124,22.799 C94.2313339,22.4956652 94.3806657,22.2343344 94.572,22.015 C94.7633343,21.7956656 94.9966653,21.6230006 95.272,21.497 C95.5473347,21.3709994 95.8623316,21.308 96.217,21.308 C96.5716684,21.308 96.8679988,21.3639994 97.106,21.476 C97.3440012,21.5880006 97.5329993,21.741999 97.673,21.938 C97.8130007,22.134001 97.9109997,22.3649987 97.967,22.631 C98.0230003,22.8970013 98.051,23.1839985 98.051,23.492 L98.051,28 L98.933,28 L98.933,23.352 C98.933,22.9226645 98.8910004,22.5353351 98.807,22.19 C98.7229996,21.8446649 98.5783344,21.5530012 98.373,21.315 C98.1676656,21.0769988 97.8946684,20.8926673 97.554,20.762 C97.2133316,20.6313327 96.7910025,20.566 96.287,20.566 C95.7736641,20.566 95.3023355,20.6989987 94.873,20.965 C94.4436645,21.2310013 94.1450008,21.5833311 93.977,22.022 L93.949,22.022 L93.949,20.776 L93.067,20.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="166" height="54" viewBox="0 0 166 54" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="166" height="54" fill="#777"/>
<path fill="#FFF" d="M30.508,28.77 L29.284,28.77 C29.2479998,29.562004 29.3529988,30.2399972 29.599,30.804 C29.8450012,31.3680028 30.1959977,31.8299982 30.652,32.19 C31.1080023,32.5500018 31.6599968,32.8169991 32.308,32.991 C32.9560032,33.1650009 33.6579962,33.252 34.414,33.252 C35.1700038,33.252 35.8179973,33.1830007 36.358,33.045 C36.8980027,32.9069993 37.3509982,32.7270011 37.717,32.505 C38.0830018,32.2829989 38.370999,32.0340014 38.581,31.758 C38.791001,31.4819986 38.9529994,31.2090014 39.067,30.939 C39.1810006,30.6689986 39.2529998,30.4140012 39.283,30.174 C39.3130001,29.9339988 39.328,29.7420007 39.328,29.598 C39.328,29.0699974 39.2410009,28.6200019 39.067,28.248 C38.8929991,27.8759981 38.6530015,27.5610013 38.347,27.303 C38.0409985,27.0449987 37.687002,26.8290009 37.285,26.655 C36.882998,26.4809991 36.4540023,26.3340006 35.998,26.214 L32.866,25.44 C32.6019987,25.3799997 32.3530012,25.3020005 32.119,25.206 C31.8849988,25.1099995 31.6780009,24.9840008 31.498,24.828 C31.3179991,24.6719992 31.1770005,24.4830011 31.075,24.261 C30.9729995,24.0389989 30.922,23.7780015 30.922,23.478 C30.922,22.9979976 31.0119991,22.5960016 31.192,22.272 C31.3720009,21.9479984 31.6089985,21.687001 31.903,21.489 C32.1970015,21.290999 32.538998,21.1470005 32.929,21.057 C33.319002,20.9669995 33.7239979,20.922 34.144,20.922 C34.6000023,20.922 35.0349979,20.9849994 35.449,21.111 C35.8630021,21.2370006 36.2289984,21.4229988 36.547,21.669 C36.8650016,21.9150012 37.122999,22.2209982 37.321,22.587 C37.519001,22.9530018 37.6299999,23.3819975 37.654,23.874 L38.878,23.874 C38.878,23.2139967 38.7490013,22.6350025 38.491,22.137 C38.2329987,21.6389975 37.8880022,21.2220017 37.456,20.886 C37.0239978,20.5499983 36.5200029,20.2980008 35.944,20.13 C35.3679971,19.9619992 34.7620032,19.878 34.126,19.878 C33.2259955,19.878 32.4880029,20.0069987 31.912,20.265 C31.3359971,20.5230013 30.8830016,20.8379981 30.553,21.21 C30.2229983,21.5820019 29.9980006,21.9779979 29.878,22.398 C29.7579994,22.8180021 29.698,23.1839984 29.698,23.496 C29.698,24.0000025 29.7789992,24.4259983 29.941,24.774 C30.1030008,25.1220017 30.3159987,25.4159988 30.58,25.656 C30.8440013,25.8960012 31.1529982,26.0879993 31.507,26.232 C31.8610018,26.3760007 32.2239981,26.4959995 32.596,26.592 L35.458,27.294 C35.7580015,27.3660004 36.0639984,27.4589994 36.376,27.573 C36.6880016,27.6870006 36.9729987,27.8339991 37.231,28.014 C37.4890013,28.1940009 37.6989992,28.4159987 37.861,28.68 C38.0230008,28.9440013 38.104,29.2559982 38.104,29.616 C38.104,30.0840023 37.9900011,30.4829983 37.762,30.813 C37.5339989,31.1430017 37.2490017,31.412999 36.907,31.623 C36.5649983,31.8330011 36.196002,31.9859995 35.8,32.082 C35.403998,32.1780005 35.0380017,32.226 34.702,32.226 C34.1139971,32.226 33.5620026,32.1690006 33.046,32.055 C32.5299974,31.9409994 32.0830019,31.7520013 31.705,31.488 C31.3269981,31.2239987 31.0300011,30.8700022 30.814,30.426 C30.5979989,29.9819978 30.4959999,29.4300033 30.508,28.77 Z M44.98,24.396 C44.4399973,24.396 43.966002,24.5099989 43.558,24.738 C43.149998,24.9660011 42.8110013,25.2659981 42.541,25.638 C42.2709986,26.0100019 42.0670007,26.4329976 41.929,26.907 C41.7909993,27.3810024 41.722,27.8639975 41.722,28.356 C41.722,28.8480025 41.7909993,29.3309976 41.929,29.805 C42.0670007,30.2790024 42.2709986,30.7019981 42.541,31.074 C42.8110013,31.4460019 43.149998,31.7459989 43.558,31.974 C43.966002,32.2020011 44.4399973,32.316 44.98,32.316 C45.5200027,32.316 45.993998,32.2020011 46.402,31.974 C46.810002,31.7459989 47.1489986,31.4460019 47.419,31.074 C47.6890013,30.7019981 47.8929993,30.2790024 48.031,29.805 C48.1690007,29.3309976 48.238,28.8480025 48.238,28.356 C48.238,27.8639975 48.1690007,27.3810024 48.031,26.907 C47.8929993,26.4329976 47.6890013,26.0100019 47.419,25.638 C47.1489986,25.2659981 46.810002,24.9660011 46.402,24.738 C45.993998,24.5099989 45.5200027,24.396 44.98,24.396 Z M44.98,23.442 C45.6880035,23.442 46.3149973,23.5739987 46.861,23.838 C47.4070027,24.1020013 47.8659981,24.4559978 48.238,24.9 C48.6100019,25.3440022 48.891999,25.862997 49.084,26.457 C49.276001,27.051003 49.372,27.6839966 49.372,28.356 C49.372,29.0280034 49.276001,29.660997 49.084,30.255 C48.891999,30.849003 48.6100019,31.3679978 48.238,31.812 C47.8659981,32.2560022 47.4070027,32.6069987 46.861,32.865 C46.3149973,33.1230013 45.6880035,33.252 44.98,33.252 C44.2719965,33.252 43.6450027,33.1230013 43.099,32.865 C42.5529973,32.6069987 42.0940019,32.2560022 41.722,31.812 C41.3499981,31.3679978 41.068001,30.849003 40.876,30.255 C40.683999,29.660997 40.588,29.0280034 40.588,28.356 C40.588,27.6839966 40.683999,27.051003 40.876,26.457 C41.068001,25.862997 41.3499981,25.3440022 41.722,24.9 C42.0940019,24.4559978 42.5529973,24.1020013 43.099,23.838 C43.6450027,23.5739987 44.2719965,23.442 44.98,23.442 Z M56.86,28.77 L55.636,28.77 C55.5999998,29.562004 55.7049988,30.2399972 55.951,30.804 C56.1970012,31.3680028 56.5479977,31.8299982 57.004,32.19 C57.4600023,32.5500018 58.0119968,32.8169991 58.66,32.991 C59.3080032,33.1650009 60.0099962,33.252 60.766,33.252 C61.5220038,33.252 62.1699973,33.1830007 62.71,33.045 C63.2500027,32.9069993 63.7029982,32.7270011 64.069,32.505 C64.4350018,32.2829989 64.722999,32.0340014 64.933,31.758 C65.1430011,31.4819986 65.3049994,31.2090014 65.419,30.939 C65.5330006,30.6689986 65.6049999,30.4140012 65.635,30.174 C65.6650001,29.9339988 65.68,29.7420007 65.68,29.598 C65.68,29.0699974 65.5930009,28.6200019 65.419,28.248 C65.2449991,27.8759981 65.0050015,27.5610013 64.699,27.303 C64.3929985,27.0449987 64.039002,26.8290009 63.637,26.655 C63.234998,26.4809991 62.8060023,26.3340006 62.35,26.214 L59.218,25.44 C58.9539987,25.3799997 58.7050012,25.3020005 58.471,25.206 C58.2369988,25.1099995 58.0300009,24.9840008 57.85,24.828 C57.6699991,24.6719992 57.5290005,24.4830011 57.427,24.261 C57.3249995,24.0389989 57.274,23.7780015 57.274,23.478 C57.274,22.9979976 57.3639991,22.5960016 57.544,22.272 C57.7240009,21.9479984 57.9609985,21.687001 58.255,21.489 C58.5490015,21.290999 58.8909981,21.1470005 59.281,21.057 C59.671002,20.9669995 60.0759979,20.922 60.496,20.922 C60.9520023,20.922 61.3869979,20.9849994 61.801,21.111 C62.2150021,21.2370006 62.5809984,21.4229988 62.899,21.669 C63.2170016,21.9150012 63.474999,22.2209982 63.673,22.587 C63.871001,22.9530018 63.9819999,23.3819975 64.006,23.874 L65.23,23.874 C65.23,23.2139967 65.1010013,22.6350025 64.843,22.137 C64.5849987,21.6389975 64.2400022,21.2220017 63.808,20.886 C63.3759978,20.5499983 62.8720029,20.2980008 62.296,20.13 C61.7199971,19.9619992 61.1140032,19.878 60.478,19.878 C59.5779955,19.878 58.8400029,20.0069987 58.264,20.265 C57.6879971,20.5230013 57.2350017,20.8379981 56.905,21.21 C56.5749984,21.5820019 56.3500006,21.9779979 56.23,22.398 C56.1099994,22.8180021 56.05,23.1839984 56.05,23.496 C56.05,24.0000025 56.1309992,24.4259983 56.293,24.774 C56.4550008,25.1220017 56.6679987,25.4159988 56.932,25.656 C57.1960013,25.8960012 57.5049982,26.0879993 57.859,26.232 C58.2130018,26.3760007 58.5759981,26.4959995 58.948,26.592 L61.81,27.294 C62.1100015,27.3660004 62.4159984,27.4589994 62.728,27.573 C63.0400016,27.6870006 63.3249987,27.8339991 63.583,28.014 C63.8410013,28.1940009 64.0509992,28.4159987 64.213,28.68 C64.3750008,28.9440013 64.456,29.2559982 64.456,29.616 C64.456,30.0840023 64.3420011,30.4829983 64.114,30.813 C63.8859989,31.1430017 63.6010017,31.412999 63.259,31.623 C62.9169983,31.8330011 62.548002,31.9859995 62.152,32.082 C61.755998,32.1780005 61.3900017,32.226 61.054,32.226 C60.4659971,32.226 59.9140026,32.1690006 59.398,32.055 C58.8819974,31.9409994 58.4350019,31.7520013 58.057,31.488 C57.6789981,31.2239987 57.3820011,30.8700022 57.166,30.426 C56.9499989,29.9819978 56.8479999,29.4300033 56.86,28.77 Z M74.086,27.708 C74.0739999,27.2759978 73.9990007,26.862002 73.861,26.466 C73.7229993,26.069998 73.5280013,25.7190015 73.276,25.413 C73.0239987,25.1069985 72.7180018,24.8610009 72.358,24.675 C71.9979982,24.4889991 71.5900023,24.396 71.134,24.396 C70.6659977,24.396 70.2520018,24.4889991 69.892,24.675 C69.5319982,24.8610009 69.2260013,25.1069985 68.974,25.413 C68.7219987,25.7190015 68.5210007,26.072998 68.371,26.475 C68.2209993,26.877002 68.1220002,27.2879979 68.074,27.708 L74.086,27.708 Z M68.074,28.662 C68.074,29.070002 68.1309994,29.4929978 68.245,29.931 C68.3590006,30.3690022 68.5419987,30.7619983 68.794,31.11 C69.0460013,31.4580017 69.3639981,31.7459989 69.748,31.974 C70.1320019,32.2020011 70.5939973,32.316 71.134,32.316 C71.9620041,32.316 72.6099977,32.1000022 73.078,31.668 C73.5460023,31.2359978 73.8699991,30.6600036 74.05,29.94 L75.184,29.94 C74.9439988,30.9960053 74.5030032,31.8119971 73.861,32.388 C73.2189968,32.9640029 72.3100059,33.252 71.134,33.252 C70.4019963,33.252 69.7690027,33.1230013 69.235,32.865 C68.7009973,32.6069987 68.2660017,32.2530023 67.93,31.803 C67.5939983,31.3529978 67.3450008,30.831003 67.183,30.237 C67.0209992,29.642997 66.94,29.0160033 66.94,28.356 C66.94,27.7439969 67.0209992,27.1440029 67.183,26.556 C67.3450008,25.9679971 67.5939983,25.4430023 67.93,24.981 C68.2660017,24.5189977 68.7009973,24.1470014 69.235,23.865 C69.7690027,23.5829986 70.4019963,23.442 71.134,23.442 C71.8780037,23.442 72.5139974,23.5919985 73.042,23.892 C73.5700026,24.1920015 73.9989983,24.5849976 74.329,25.071 C74.6590017,25.5570024 74.8959993,26.1149969 75.04,26.745 C75.1840007,27.3750031 75.2440001,28.0139968 75.22,28.662 L68.074,28.662 Z M83.302,26.628 L84.436,26.628 C84.3039993,25.5599947 83.8930035,24.7620026 83.203,24.234 C82.5129965,23.7059974 81.670005,23.442 80.674,23.442 C79.9659965,23.442 79.3390027,23.5739987 78.793,23.838 C78.2469973,24.1020013 77.7880019,24.4559978 77.416,24.9 C77.0439981,25.3440022 76.762001,25.862997 76.57,26.457 C76.377999,27.051003 76.282,27.6839966 76.282,28.356 C76.282,29.0280034 76.377999,29.660997 76.57,30.255 C76.762001,30.849003 77.0439981,31.3679978 77.416,31.812 C77.7880019,32.2560022 78.2469973,32.6069987 78.793,32.865 C79.3390027,33.1230013 79.9659965,33.252 80.674,33.252 C81.7300053,33.252 82.5939966,32.9370032 83.266,32.307 C83.9380034,31.6769969 84.3519992,30.7980056 84.508,29.67 L83.374,29.67 C83.3379998,30.0540019 83.2420008,30.4079984 83.086,30.732 C82.9299992,31.0560016 82.7320012,31.3349988 82.492,31.569 C82.2519988,31.8030012 81.9760016,31.9859993 81.664,32.118 C81.3519984,32.2500007 81.0220017,32.316 80.674,32.316 C80.1339973,32.316 79.660002,32.2020011 79.252,31.974 C78.843998,31.7459989 78.5050013,31.4460019 78.235,31.074 C77.9649986,30.7019981 77.7610007,30.2790024 77.623,29.805 C77.4849993,29.3309976 77.416,28.8480025 77.416,28.356 C77.416,27.8639975 77.4849993,27.3810024 77.623,26.907 C77.7610007,26.4329976 77.9649986,26.0100019 78.235,25.638 C78.5050013,25.2659981 78.843998,24.9660011 79.252,24.738 C79.660002,24.5099989 80.1339973,24.396 80.674,24.396 C81.4300038,24.396 82.0179979,24.593998 82.438,24.99 C82.8580021,25.386002 83.1459992,25.9319965 83.302,26.628 Z M90.016,24.396 C89.4759973,24.396 89.002002,24.5099989 88.594,24.738 C88.185998,24.9660011 87.8470013,25.2659981 87.577,25.638 C87.3069986,26.0100019 87.1030007,26.4329976 86.965,26.907 C86.8269993,27.3810024 86.758,27.8639975 86.758,28.356 C86.758,28.8480025 86.8269993,29.3309976 86.965,29.805 C87.1030007,30.2790024 87.3069986,30.7019981 87.577,31.074 C87.8470013,31.4460019 88.185998,31.7459989 88.594,31.974 C89.002002,32.2020011 89.4759973,32.316 90.016,32.316 C90.5560027,32.316 91.029998,32.2020011 91.438,31.974 C91.846002,31.7459989 92.1849987,31.4460019 92.455,31.074 C92.7250014,30.7019981 92.9289993,30.2790024 93.067,29.805 C93.2050007,29.3309976 93.274,28.8480025 93.274,28.356 C93.274,27.8639975 93.2050007,27.3810024 93.067,26.907 C92.9289993,26.4329976 92.7250014,26.0100019 92.455,25.638 C92.1849987,25.2659981 91.846002,24.9660011 91.438,24.738 C91.029998,24.5099989 90.5560027,24.396 90.016,24.396 Z M90.016,23.442 C90.7240035,23.442 91.3509973,23.5739987 91.897,23.838 C92.4430027,24.1020013 92.9019981,24.4559978 93.274,24.9 C93.6460019,25.3440022 93.927999,25.862997 94.12,26.457 C94.312001,27.051003 94.408,27.6839966 94.408,28.356 C94.408,29.0280034 94.312001,29.660997 94.12,30.255 C93.927999,30.849003 93.6460019,31.3679978 93.274,31.812 C92.9019981,32.2560022 92.4430027,32.6069987 91.897,32.865 C91.3509973,33.1230013 90.7240035,33.252 90.016,33.252 C89.3079965,33.252 88.6810027,33.1230013 88.135,32.865 C87.5889973,32.6069987 87.1300019,32.2560022 86.758,31.812 C86.3859981,31.3679978 86.104001,30.849003 85.912,30.255 C85.719999,29.660997 85.624,29.0280034 85.624,28.356 C85.624,27.6839966 85.719999,27.051003 85.912,26.457 C86.104001,25.862997 86.3859981,25.3440022 86.758,24.9 C87.1300019,24.4559978 87.5889973,24.1020013 88.135,23.838 C88.6810027,23.5739987 89.3079965,23.442 90.016,23.442 Z M96.082,23.712 L96.082,33 L97.216,33 L97.216,27.582 C97.2280001,27.1259977 97.3029993,26.703002 97.441,26.313 C97.5790007,25.922998 97.7709988,25.5870014 98.017,25.305 C98.2630012,25.0229986 98.5629982,24.8010008 98.917,24.639 C99.2710018,24.4769992 99.6759977,24.396 100.132,24.396 C100.588002,24.396 100.968998,24.4679993 101.275,24.612 C101.581002,24.7560007 101.823999,24.9539987 102.004,25.206 C102.184001,25.4580013 102.31,25.7549983 102.382,26.097 C102.454,26.4390017 102.49,26.807998 102.49,27.204 L102.49,33 L103.624,33 L103.624,27.024 C103.624,26.4719972 103.570001,25.9740022 103.462,25.53 C103.353999,25.0859978 103.168001,24.7110015 102.904,24.405 C102.639999,24.0989985 102.289002,23.8620008 101.851,23.694 C101.412998,23.5259992 100.870003,23.442 100.222,23.442 C99.5619967,23.442 98.9560028,23.6129983 98.404,23.955 C97.8519972,24.2970017 97.4680011,24.7499972 97.252,25.314 L97.216,25.314 L97.216,23.712 L96.082,23.712 Z M113.938,33 L112.894,33 L112.894,31.236 L112.858,31.236 C112.737999,31.5360015 112.561001,31.8119987 112.327,32.064 C112.092999,32.3160013 111.826002,32.5289991 111.526,32.703 C111.225999,32.8770009 110.905002,33.0119995 110.563,33.108 C110.220998,33.2040005 109.882002,33.252 109.546,33.252 C108.837996,33.252 108.223003,33.1230013 107.701,32.865 C107.178997,32.6069987 106.744002,32.2530023 106.396,31.803 C106.047998,31.3529978 105.790001,30.831003 105.622,30.237 C105.453999,29.642997 105.37,29.0160033 105.37,28.356 C105.37,27.6959967 105.453999,27.069003 105.622,26.475 C105.790001,25.880997 106.047998,25.3590022 106.396,24.909 C106.744002,24.4589977 107.178997,24.1020013 107.701,23.838 C108.223003,23.5739987 108.837996,23.442 109.546,23.442 C109.894002,23.442 110.232998,23.4839996 110.563,23.568 C110.893002,23.6520004 111.201999,23.7809991 111.49,23.955 C111.778001,24.1290009 112.032999,24.3419987 112.255,24.594 C112.477001,24.8460013 112.647999,25.1399983 112.768,25.476 L112.804,25.476 L112.804,20.148 L113.938,20.148 L113.938,33 Z M106.504,28.356 C106.504,28.8360024 106.560999,29.3129976 106.675,29.787 C106.789001,30.2610024 106.968999,30.6839981 107.215,31.056 C107.461001,31.4280019 107.775998,31.7309988 108.16,31.965 C108.544002,32.1990012 109.005997,32.316 109.546,32.316 C110.146003,32.316 110.652998,32.1990012 111.067,31.965 C111.481002,31.7309988 111.816999,31.4280019 112.075,31.056 C112.333001,30.6839981 112.518999,30.2610024 112.633,29.787 C112.747001,29.3129976 112.804,28.8360024 112.804,28.356 C112.804,27.8759976 112.747001,27.3990024 112.633,26.925 C112.518999,26.4509976 112.333001,26.0280019 112.075,25.656 C111.816999,25.2839981 111.481002,24.9810012 111.067,24.747 C110.652998,24.5129988 110.146003,24.396 109.546,24.396 C109.005997,24.396 108.544002,24.5129988 108.16,24.747 C107.775998,24.9810012 107.461001,25.2839981 107.215,25.656 C106.968999,26.0280019 106.789001,26.4509976 106.675,26.925 C106.560999,27.3990024 106.504,27.8759976 106.504,28.356 Z M115.99,26.556 C116.026,26.0159973 116.139999,25.548002 116.332,25.152 C116.524001,24.755998 116.784998,24.4320013 117.115,24.18 C117.445002,23.9279987 117.831998,23.7420006 118.276,23.622 C118.720002,23.5019994 119.211997,23.442 119.752,23.442 C120.160002,23.442 120.567998,23.4809996 120.976,23.559 C121.384002,23.6370004 121.749998,23.7839989 122.074,24 C122.398002,24.2160011 122.661999,24.5189981 122.866,24.909 C123.070001,25.299002 123.172,25.8059969 123.172,26.43 L123.172,31.362 C123.172,31.8180023 123.393998,32.046 123.838,32.046 C123.970001,32.046 124.089999,32.0220002 124.198,31.974 L124.198,32.928 C124.065999,32.9520001 123.949001,32.9699999 123.847,32.982 C123.744999,32.9940001 123.616001,33 123.46,33 C123.171999,33 122.941001,32.9610004 122.767,32.883 C122.592999,32.8049996 122.458,32.6940007 122.362,32.55 C122.266,32.4059993 122.203,32.235001 122.173,32.037 C122.143,31.838999 122.128,31.6200012 122.128,31.38 L122.092,31.38 C121.887999,31.6800015 121.681001,31.9469988 121.471,32.181 C121.260999,32.4150012 121.027001,32.6099992 120.769,32.766 C120.510999,32.9220008 120.217002,33.0419996 119.887,33.126 C119.556998,33.2100004 119.164002,33.252 118.708,33.252 C118.275998,33.252 117.871002,33.2010005 117.493,33.099 C117.114998,32.9969995 116.785001,32.8350011 116.503,32.613 C116.220999,32.3909989 115.999001,32.1090017 115.837,31.767 C115.674999,31.4249983 115.594,31.0200023 115.594,30.552 C115.594,29.9039968 115.737999,29.3970018 116.026,29.031 C116.314001,28.6649982 116.694998,28.386001 117.169,28.194 C117.643002,28.001999 118.176997,27.8670004 118.771,27.789 C119.365003,27.7109996 119.967997,27.6360004 120.58,27.564 C120.820001,27.5399999 121.029999,27.5100002 121.21,27.474 C121.390001,27.4379998 121.539999,27.3750004 121.66,27.285 C121.780001,27.1949995 121.873,27.0720008 121.939,26.916 C122.005,26.7599992 122.038,26.5560013 122.038,26.304 C122.038,25.9199981 121.975001,25.6050012 121.849,25.359 C121.722999,25.1129988 121.549001,24.9180007 121.327,24.774 C121.104999,24.6299993 120.847001,24.5310003 120.553,24.477 C120.258999,24.4229997 119.944002,24.396 119.608,24.396 C118.887996,24.396 118.300002,24.5669983 117.844,24.909 C117.387998,25.2510017 117.148,25.7999962 117.124,26.556 L115.99,26.556 Z M122.038,27.924 L122.002,27.924 C121.93,28.0560007 121.792001,28.1519997 121.588,28.212 C121.383999,28.2720003 121.204001,28.3139999 121.048,28.338 C120.567998,28.4220004 120.073003,28.4969997 119.563,28.563 C119.052997,28.6290003 118.588002,28.7279993 118.168,28.86 C117.747998,28.9920007 117.403001,29.1809988 117.133,29.427 C116.862999,29.6730012 116.728,30.0239977 116.728,30.48 C116.728,30.7680014 116.784999,31.0229989 116.899,31.245 C117.013001,31.4670011 117.165999,31.6589992 117.358,31.821 C117.550001,31.9830008 117.771999,32.1059996 118.024,32.19 C118.276001,32.2740004 118.533999,32.316 118.798,32.316 C119.230002,32.316 119.643998,32.2500007 120.04,32.118 C120.436002,31.9859993 120.780999,31.7940013 121.075,31.542 C121.369001,31.2899987 121.602999,30.9840018 121.777,30.624 C121.951001,30.2639982 122.038,29.8560023 122.038,29.4 L122.038,27.924 Z M125.44,23.712 L125.44,33 L126.574,33 L126.574,28.05 C126.574,27.5579975 126.657999,27.1050021 126.826,26.691 C126.994001,26.2769979 127.230998,25.9200015 127.537,25.62 C127.843002,25.3199985 128.205998,25.0890008 128.626,24.927 C129.046002,24.7649992 129.513997,24.6959999 130.03,24.72 L130.03,23.586 C129.189996,23.5499998 128.467003,23.735998 127.861,24.144 C127.254997,24.552002 126.808001,25.1339962 126.52,25.89 L126.484,25.89 L126.484,23.712 L125.44,23.712 Z M130.066,23.712 L133.774,32.964 L133.378,34.008 C133.282,34.2240011 133.192,34.4219991 133.108,34.602 C133.024,34.7820009 132.922001,34.9349994 132.802,35.061 C132.681999,35.1870006 132.541001,35.2859996 132.379,35.358 C132.216999,35.4300004 132.010001,35.466 131.758,35.466 C131.625999,35.466 131.497001,35.4570001 131.371,35.439 C131.244999,35.4209999 131.116001,35.4000001 130.984,35.376 L130.984,36.33 C131.08,36.3660002 131.190999,36.387 131.317,36.393 C131.443001,36.399 131.619999,36.4079999 131.848,36.42 C132.208002,36.42 132.504999,36.3870003 132.739,36.321 C132.973001,36.2549997 133.176999,36.1470008 133.351,35.997 C133.525001,35.8469992 133.683999,35.6430013 133.828,35.385 C133.972001,35.1269987 134.127999,34.800002 134.296,34.404 L138.328,23.712 L137.194,23.712 L134.332,31.632 L131.272,23.712 L130.066,23.712 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="93" height="30" viewBox="0 0 93 30" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="93" height="30" fill="#777"/>
<path fill="#FFF" d="M31.895,16.65 L31.215,16.65 C31.1949999,17.0900022 31.2533326,17.4666651 31.39,17.78 C31.5266673,18.0933349 31.7216654,18.349999 31.975,18.55 C32.2283346,18.750001 32.5349982,18.8983328 32.895,18.995 C33.2550018,19.0916671 33.6449979,19.14 34.065,19.14 C34.4850021,19.14 34.8449985,19.101667 35.145,19.025 C35.4450015,18.948333 35.6966656,18.848334 35.9,18.725 C36.1033343,18.601666 36.2633327,18.4633341 36.38,18.31 C36.4966672,18.1566659 36.5866663,18.0050008 36.65,17.855 C36.7133336,17.7049993 36.7533332,17.563334 36.77,17.43 C36.7866667,17.296666 36.795,17.1900004 36.795,17.11 C36.795,16.8166652 36.7466671,16.5666677 36.65,16.36 C36.5533328,16.1533323 36.4200008,15.978334 36.25,15.835 C36.0799991,15.691666 35.8833344,15.5716671 35.66,15.475 C35.4366656,15.3783328 35.1983346,15.296667 34.945,15.23 L33.205,14.8 C33.0583326,14.7666665 32.9200006,14.7233336 32.79,14.67 C32.6599993,14.6166664 32.5450005,14.5466671 32.445,14.46 C32.3449995,14.3733329 32.2666669,14.268334 32.21,14.145 C32.153333,14.0216661 32.125,13.8766675 32.125,13.71 C32.125,13.443332 32.1749995,13.2200009 32.275,13.04 C32.3750005,12.8599991 32.5066658,12.7150005 32.67,12.605 C32.8333341,12.4949994 33.0233322,12.4150003 33.24,12.365 C33.4566677,12.3149998 33.6816655,12.29 33.915,12.29 C34.1683346,12.29 34.4099988,12.3249996 34.64,12.395 C34.8700011,12.4650004 35.0733324,12.5683327 35.25,12.705 C35.4266675,12.8416673 35.5699994,13.0116656 35.68,13.215 C35.7900005,13.4183343 35.8516666,13.6566653 35.865,13.93 L36.545,13.93 C36.545,13.5633315 36.473334,13.241668 36.33,12.965 C36.1866659,12.688332 35.9950012,12.4566676 35.755,12.27 C35.5149988,12.0833324 35.2350016,11.9433338 34.915,11.85 C34.5949984,11.7566662 34.2583351,11.71 33.905,11.71 C33.4049975,11.71 32.9950016,11.781666 32.675,11.925 C32.3549984,12.0683341 32.1033342,12.2433323 31.92,12.45 C31.7366657,12.6566677 31.611667,12.8766655 31.545,13.11 C31.478333,13.3433345 31.445,13.5466658 31.445,13.72 C31.445,14.0000014 31.4899995,14.2366657 31.58,14.43 C31.6700004,14.6233343 31.7883326,14.786666 31.935,14.92 C32.0816674,15.053334 32.2533323,15.1599996 32.45,15.24 C32.6466676,15.3200004 32.8483323,15.3866664 33.055,15.44 L34.645,15.83 C34.8116675,15.8700002 34.9816658,15.9216664 35.155,15.985 C35.3283342,16.0483337 35.4866659,16.1299995 35.63,16.23 C35.773334,16.3300005 35.8899995,16.4533326 35.98,16.6 C36.0700004,16.7466674 36.115,16.919999 36.115,17.12 C36.115,17.3800013 36.0516673,17.6016658 35.925,17.785 C35.7983327,17.9683342 35.6400009,18.1183328 35.45,18.235 C35.259999,18.3516672 35.0550011,18.4366664 34.835,18.49 C34.6149989,18.5433336 34.4116676,18.57 34.225,18.57 C33.8983317,18.57 33.5916681,18.5383336 33.305,18.475 C33.0183319,18.4116664 32.770001,18.3066674 32.56,18.16 C32.3499989,18.0133326 32.1850006,17.8166679 32.065,17.57 C31.9449994,17.3233321 31.8883333,17.0166685 31.895,16.65 Z M39.935,14.22 C39.6349985,14.22 39.3716678,14.2833327 39.145,14.41 C38.9183322,14.5366673 38.7300007,14.7033323 38.58,14.91 C38.4299992,15.1166677 38.316667,15.3516654 38.24,15.615 C38.1633329,15.8783346 38.125,16.1466653 38.125,16.42 C38.125,16.6933347 38.1633329,16.9616654 38.24,17.225 C38.316667,17.4883346 38.4299992,17.7233323 38.58,17.93 C38.7300007,18.1366677 38.9183322,18.3033327 39.145,18.43 C39.3716678,18.5566673 39.6349985,18.62 39.935,18.62 C40.2350015,18.62 40.4983322,18.5566673 40.725,18.43 C40.9516678,18.3033327 41.1399992,18.1366677 41.29,17.93 C41.4400007,17.7233323 41.5533329,17.4883346 41.63,17.225 C41.7066671,16.9616654 41.745,16.6933347 41.745,16.42 C41.745,16.1466653 41.7066671,15.8783346 41.63,15.615 C41.5533329,15.3516654 41.4400007,15.1166677 41.29,14.91 C41.1399992,14.7033323 40.9516678,14.5366673 40.725,14.41 C40.4983322,14.2833327 40.2350015,14.22 39.935,14.22 Z M39.935,13.69 C40.3283353,13.69 40.6766651,13.7633326 40.98,13.91 C41.2833348,14.0566674 41.5383323,14.2533321 41.745,14.5 C41.9516677,14.7466679 42.1083328,15.0349984 42.215,15.365 C42.3216672,15.6950017 42.375,16.0466648 42.375,16.42 C42.375,16.7933352 42.3216672,17.1449984 42.215,17.475 C42.1083328,17.8050017 41.9516677,18.0933321 41.745,18.34 C41.5383323,18.5866679 41.2833348,18.781666 40.98,18.925 C40.6766651,19.0683341 40.3283353,19.14 39.935,19.14 C39.5416647,19.14 39.1933348,19.0683341 38.89,18.925 C38.5866652,18.781666 38.3316677,18.5866679 38.125,18.34 C37.9183323,18.0933321 37.7616672,17.8050017 37.655,17.475 C37.5483328,17.1449984 37.495,16.7933352 37.495,16.42 C37.495,16.0466648 37.5483328,15.6950017 37.655,15.365 C37.7616672,15.0349984 37.9183323,14.7466679 38.125,14.5 C38.3316677,14.2533321 38.5866652,14.0566674 38.89,13.91 C39.1933348,13.7633326 39.5416647,13.69 39.935,13.69 Z M45.455,11.86 L45.455,12.44 L47.935,12.44 L47.935,19 L48.615,19 L48.615,12.44 L51.105,12.44 L51.105,11.86 L45.455,11.86 Z M51.905,11.86 L51.905,12.87 L52.535,12.87 L52.535,11.86 L51.905,11.86 Z M51.905,13.84 L51.905,19 L52.535,19 L52.535,13.84 L51.905,13.84 Z M53.735,13.84 L53.735,19 L54.365,19 L54.365,15.99 C54.3716667,15.7366654 54.4133329,15.5016677 54.49,15.285 C54.566667,15.0683322 54.6733326,14.8816675 54.81,14.725 C54.9466673,14.5683326 55.1133324,14.4450005 55.31,14.355 C55.5066676,14.2649995 55.7316654,14.22 55.985,14.22 C56.2383346,14.22 56.4499991,14.2599996 56.62,14.34 C56.7900008,14.4200004 56.9249995,14.5299993 57.025,14.67 C57.1250005,14.8100007 57.1949998,14.974999 57.235,15.165 C57.2750002,15.3550009 57.295,15.5599989 57.295,15.78 L57.295,19 L57.925,19 L57.925,15.68 C57.925,15.3733318 57.8950003,15.0966679 57.835,14.85 C57.7749997,14.6033321 57.6716674,14.3950008 57.525,14.225 C57.3783326,14.0549991 57.1833345,13.9233338 56.94,13.83 C56.6966654,13.7366662 56.3950018,13.69 56.035,13.69 C55.6683315,13.69 55.3316682,13.784999 55.025,13.975 C54.7183318,14.1650009 54.5050006,14.4166651 54.385,14.73 L54.365,14.73 L54.365,13.84 L53.735,13.84 Z M58.535,13.84 L60.595,18.98 L60.375,19.56 C60.3216664,19.6800006 60.2716669,19.7899995 60.225,19.89 C60.1783331,19.9900005 60.121667,20.0749997 60.055,20.145 C59.988333,20.2150004 59.9100005,20.2699998 59.82,20.31 C59.7299996,20.3500002 59.6150007,20.37 59.475,20.37 C59.4016663,20.37 59.3300004,20.365 59.26,20.355 C59.1899997,20.345 59.1183337,20.3333334 59.045,20.32 L59.045,20.85 C59.0983336,20.8700001 59.1599997,20.8816666 59.23,20.885 C59.3000004,20.8883333 59.3983327,20.8933333 59.525,20.9 C59.725001,20.9 59.8899993,20.8816669 60.02,20.845 C60.1500006,20.8083331 60.2633328,20.7483338 60.36,20.665 C60.4566672,20.5816662 60.5449996,20.468334 60.625,20.325 C60.7050004,20.1816659 60.7916662,20.0000011 60.885,19.78 L63.125,13.84 L62.495,13.84 L60.905,18.24 L59.205,13.84 L58.535,13.84 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="45" height="45" fill="#3ADB76"/>
<path fill="#FFF" d="M12.3683446,9.60263939 L9.11687347,6.35151495 L12.3673045,3.10073722 C12.5020024,2.96603936 12.5020024,2.74778375 12.3673045,2.61308589 L10.0902692,0.335530545 C9.95557135,0.200832683 9.73714239,0.200832683 9.60244453,0.335530545 L6.35149344,3.58630828 L3.10106242,0.335530545 C2.97173861,0.206033373 2.74273491,0.206033373 2.61323774,0.335530545 L0.335682392,2.61273918 C0.271020485,2.67740108 0.234615657,2.76529274 0.234615657,2.85665152 C0.234615657,2.9480103 0.271020485,3.03590196 0.335682392,3.10056386 L3.58663348,6.35151495 L0.335162323,9.60281275 C0.270500416,9.66764801 0.234095588,9.75536631 0.234095588,9.84672509 C0.234095588,9.93825723 0.270500416,10.0261489 0.335162323,10.0906374 L2.61237096,12.3680194 C2.67703286,12.4326813 2.76509787,12.4690862 2.85680337,12.4690862 C2.94781544,12.4690862 3.03553373,12.4326813 3.10019564,12.3680194 L6.35149344,9.11672163 L9.6029646,12.3678461 C9.67040021,12.4351083 9.75829186,12.4689128 9.84687694,12.4689128 C9.93546202,12.4689128 10.023527,12.4351083 10.0909626,12.3678461 L12.368518,10.0904641 C12.5030425,9.95576622 12.5030425,9.73751061 12.3683446,9.60263939 L12.3683446,9.60263939 Z" transform="translate(16 16)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="138" height="45" viewBox="0 0 138 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="138" height="45" fill="#3ADB76"/>
<rect width="138" height="45" fill="#FFF" opacity=".302"/>
<path fill="#FFF" d="M44.454,18.004 L47.912,18.004 C49.4333409,18.0413335 50.5789962,18.4683293 51.349,19.285 C52.1190038,20.1016708 52.504,21.3406584 52.504,23.002 C52.504,24.6633416 52.1190038,25.9023293 51.349,26.719 C50.5789962,27.5356708 49.4333409,27.9626665 47.912,28 L44.454,28 L44.454,18.004 Z M45.406,27.188 L47.436,27.188 C48.1546703,27.188 48.7729974,27.1110008 49.291,26.957 C49.8090026,26.8029992 50.2359983,26.5580017 50.572,26.222 C50.9080017,25.8859983 51.1553325,25.4520027 51.314,24.92 C51.4726675,24.3879973 51.552,23.7486704 51.552,23.002 C51.552,22.2553296 51.4726675,21.6160027 51.314,21.084 C51.1553325,20.5519973 50.9080017,20.1180017 50.572,19.782 C50.2359983,19.4459983 49.8090026,19.2010008 49.291,19.047 C48.7729974,18.8929992 48.1546703,18.816 47.436,18.816 L45.406,18.816 L45.406,27.188 Z M53.89,18.004 L53.89,19.418 L54.772,19.418 L54.772,18.004 L53.89,18.004 Z M53.89,20.776 L53.89,28 L54.772,28 L54.772,20.776 L53.89,20.776 Z M60.792,22.89 L61.674,22.89 C61.6553332,22.497998 61.5760007,22.1573348 61.436,21.868 C61.2959993,21.5786652 61.1070012,21.336001 60.869,21.14 C60.6309988,20.943999 60.3556682,20.7993338 60.043,20.706 C59.7303318,20.6126662 59.3920018,20.566 59.028,20.566 C58.7106651,20.566 58.3910016,20.603333 58.069,20.678 C57.7469984,20.752667 57.4553346,20.8693325 57.194,21.028 C56.9326654,21.1866675 56.7203341,21.3966654 56.557,21.658 C56.3936659,21.9193346 56.312,22.2319982 56.312,22.596 C56.312,22.9040015 56.3633328,23.162999 56.466,23.373 C56.5686672,23.5830011 56.7109991,23.7603326 56.893,23.905 C57.0750009,24.0496674 57.2873321,24.1709995 57.53,24.269 C57.7726679,24.3670005 58.0386652,24.453333 58.328,24.528 L59.462,24.78 C59.658001,24.8266669 59.8516657,24.8826663 60.043,24.948 C60.2343343,25.0133337 60.4046659,25.0949995 60.554,25.193 C60.7033341,25.2910005 60.8223329,25.4123326 60.911,25.557 C60.9996671,25.7016674 61.044,25.8813323 61.044,26.096 C61.044,26.3480013 60.9810006,26.5603325 60.855,26.733 C60.7289994,26.9056675 60.568001,27.0479994 60.372,27.16 C60.175999,27.2720006 59.9636678,27.3513331 59.735,27.398 C59.5063322,27.4446669 59.2846677,27.468 59.07,27.468 C58.4819971,27.468 57.9896686,27.3163349 57.593,27.013 C57.1963314,26.7096651 56.9793335,26.2593363 56.942,25.662 L56.06,25.662 C56.134667,26.5486711 56.435664,27.1926647 56.963,27.594 C57.490336,27.9953353 58.1786624,28.196 59.028,28.196 C59.3640017,28.196 59.7046649,28.158667 60.05,28.084 C60.3953351,28.009333 60.7056653,27.8856675 60.981,27.713 C61.2563347,27.5403325 61.4826658,27.3163347 61.66,27.041 C61.8373342,26.7656653 61.926,26.432002 61.926,26.04 C61.926,25.7226651 61.8653339,25.4473345 61.744,25.214 C61.6226661,24.9806655 61.4663343,24.7846675 61.275,24.626 C61.0836657,24.4673325 60.8643346,24.3390005 60.617,24.241 C60.3696654,24.1429995 60.1200013,24.0753335 59.868,24.038 L58.692,23.772 C58.5426659,23.7346665 58.3793342,23.685667 58.202,23.625 C58.0246658,23.564333 57.8613341,23.4873338 57.712,23.394 C57.5626659,23.3006662 57.4390005,23.186334 57.341,23.051 C57.2429995,22.915666 57.194,22.750001 57.194,22.554 C57.194,22.3206655 57.2453328,22.1246675 57.348,21.966 C57.4506672,21.8073325 57.5859992,21.6790005 57.754,21.581 C57.9220008,21.4829995 58.1063323,21.4130002 58.307,21.371 C58.5076677,21.3289998 58.705999,21.308 58.902,21.308 C59.1540013,21.308 59.3919989,21.338333 59.616,21.399 C59.8400011,21.459667 60.0383325,21.5553327 60.211,21.686 C60.3836675,21.8166673 60.5213328,21.9823323 60.624,22.183 C60.7266672,22.3836677 60.7826666,22.619332 60.792,22.89 Z M63.116,22.988 C63.1440001,22.5679979 63.2326659,22.2040015 63.382,21.896 C63.5313341,21.5879985 63.734332,21.336001 63.991,21.14 C64.2476679,20.943999 64.5486649,20.7993338 64.894,20.706 C65.2393351,20.6126662 65.6219979,20.566 66.042,20.566 C66.3593349,20.566 66.6766651,20.596333 66.994,20.657 C67.3113349,20.717667 67.5959987,20.8319992 67.848,21 C68.1000013,21.1680008 68.3053325,21.4036651 68.464,21.707 C68.6226675,22.0103348 68.702,22.4046642 68.702,22.89 L68.702,26.726 C68.702,27.0806684 68.8746649,27.258 69.22,27.258 C69.3226672,27.258 69.4159996,27.2393335 69.5,27.202 L69.5,27.944 C69.3973328,27.9626668 69.3063337,27.9766666 69.227,27.986 C69.1476663,27.9953334 69.0473339,28 68.926,28 C68.7019989,28 68.522334,27.969667 68.387,27.909 C68.251666,27.848333 68.146667,27.7620006 68.072,27.65 C67.997333,27.5379994 67.9483335,27.4050008 67.925,27.251 C67.9016666,27.0969992 67.89,26.9266676 67.89,26.74 L67.862,26.74 C67.7033325,26.9733345 67.5423342,27.1809991 67.379,27.363 C67.2156658,27.5450009 67.0336677,27.6966661 66.833,27.818 C66.6323323,27.9393339 66.4036679,28.0326663 66.147,28.098 C65.890332,28.1633337 65.5846684,28.196 65.23,28.196 C64.8939983,28.196 64.5790015,28.1563337 64.285,28.077 C63.9909985,27.9976663 63.7343344,27.8716675 63.515,27.699 C63.2956656,27.5263325 63.1230006,27.3070013 62.997,27.041 C62.8709994,26.7749987 62.808,26.4600018 62.808,26.096 C62.808,25.5919975 62.9199989,25.1976681 63.144,24.913 C63.3680011,24.6283319 63.6643315,24.4113341 64.033,24.262 C64.4016685,24.1126659 64.8169977,24.007667 65.279,23.947 C65.7410023,23.886333 66.2099976,23.8280003 66.686,23.772 C66.8726676,23.7533332 67.0359993,23.7300001 67.176,23.702 C67.3160007,23.6739999 67.4326662,23.6250004 67.526,23.555 C67.6193338,23.4849996 67.6916664,23.3893339 67.743,23.268 C67.7943336,23.1466661 67.82,22.988001 67.82,22.792 C67.82,22.4933318 67.7710005,22.2483343 67.673,22.057 C67.5749995,21.8656657 67.4396675,21.7140006 67.267,21.602 C67.0943325,21.4899994 66.8936678,21.4130002 66.665,21.371 C66.4363322,21.3289998 66.1913346,21.308 65.93,21.308 C65.3699972,21.308 64.9126684,21.4409987 64.558,21.707 C64.2033316,21.9730013 64.0166668,22.3999971 63.998,22.988 L63.116,22.988 Z M67.82,24.052 L67.792,24.052 C67.7359997,24.1546672 67.6286675,24.2293331 67.47,24.276 C67.3113325,24.3226669 67.1713339,24.3553332 67.05,24.374 C66.6766648,24.4393337 66.2916686,24.4976664 65.895,24.549 C65.4983314,24.6003336 65.1366683,24.6773328 64.81,24.78 C64.4833317,24.8826672 64.215001,25.0296657 64.005,25.221 C63.794999,25.4123343 63.69,25.6853316 63.69,26.04 C63.69,26.2640011 63.7343329,26.4623325 63.823,26.635 C63.9116671,26.8076675 64.0306659,26.9569994 64.18,27.083 C64.3293341,27.2090006 64.501999,27.3046663 64.698,27.37 C64.894001,27.4353337 65.0946656,27.468 65.3,27.468 C65.6360017,27.468 65.9579985,27.4166672 66.266,27.314 C66.5740015,27.2113328 66.8423322,27.062001 67.071,26.866 C67.2996678,26.669999 67.481666,26.4320014 67.617,26.152 C67.752334,25.8719986 67.82,25.5546684 67.82,25.2 L67.82,24.052 Z M70.466,18.004 L71.348,18.004 L71.348,22.148 L71.376,22.148 C71.4693338,21.8866654 71.6023325,21.658001 71.775,21.462 C71.9476675,21.265999 72.1459989,21.100334 72.37,20.965 C72.5940011,20.829666 72.8366654,20.7293337 73.098,20.664 C73.3593346,20.5986663 73.6206654,20.566 73.882,20.566 C74.4326694,20.566 74.910998,20.6686656 75.317,20.874 C75.723002,21.0793344 76.061332,21.3569983 76.332,21.707 C76.602668,22.0570017 76.8033327,22.4629977 76.934,22.925 C77.0646673,23.3870023 77.13,23.8746641 77.13,24.388 C77.13,24.9013359 77.0646673,25.3889977 76.934,25.851 C76.8033327,26.3130023 76.602668,26.7189982 76.332,27.069 C76.061332,27.4190017 75.723002,27.6943323 75.317,27.895 C74.910998,28.0956677 74.4326694,28.196 73.882,28.196 C73.2939971,28.196 72.7690023,28.060668 72.307,27.79 C71.8449977,27.519332 71.5113344,27.1320025 71.306,26.628 L71.278,26.628 L71.278,28 L70.466,28 L70.466,18.004 Z M76.248,24.388 C76.248,24.0146648 76.2036671,23.6436685 76.115,23.275 C76.0263329,22.9063315 75.8863343,22.5773348 75.695,22.288 C75.5036657,21.9986652 75.2586682,21.7630009 74.96,21.581 C74.6613318,21.3989991 74.3020021,21.308 73.882,21.308 C73.415331,21.308 73.0210016,21.3989991 72.699,21.581 C72.3769984,21.7630009 72.1156677,21.9986652 71.915,22.288 C71.7143323,22.5773348 71.5696671,22.9063315 71.481,23.275 C71.3923329,23.6436685 71.348,24.0146648 71.348,24.388 C71.348,24.7613352 71.3923329,25.1323315 71.481,25.501 C71.5696671,25.8696685 71.7143323,26.1986652 71.915,26.488 C72.1156677,26.7773348 72.3769984,27.0129991 72.699,27.195 C73.0210016,27.3770009 73.415331,27.468 73.882,27.468 C74.3020021,27.468 74.6613318,27.3770009 74.96,27.195 C75.2586682,27.0129991 75.5036657,26.7773348 75.695,26.488 C75.8863343,26.1986652 76.0263329,25.8696685 76.115,25.501 C76.2036671,25.1323315 76.248,24.7613352 76.248,24.388 Z M78.516,18.004 L78.516,28 L79.398,28 L79.398,18.004 L78.516,18.004 Z M86.286,23.884 C86.2766666,23.5479983 86.2183339,23.2260015 86.111,22.918 C86.0036661,22.6099985 85.852001,22.3370012 85.656,22.099 C85.459999,21.8609988 85.2220014,21.6696674 84.942,21.525 C84.6619986,21.3803326 84.3446684,21.308 83.99,21.308 C83.6259982,21.308 83.3040014,21.3803326 83.024,21.525 C82.7439986,21.6696674 82.506001,21.8609988 82.31,22.099 C82.113999,22.3370012 81.9576673,22.6123318 81.841,22.925 C81.7243328,23.2376682 81.6473335,23.5573317 81.61,23.884 L86.286,23.884 Z M81.61,24.626 C81.61,24.9433349 81.6543329,25.2723316 81.743,25.613 C81.8316671,25.9536684 81.973999,26.259332 82.17,26.53 C82.366001,26.800668 82.6133318,27.0246658 82.912,27.202 C83.2106682,27.3793342 83.5699979,27.468 83.99,27.468 C84.6340032,27.468 85.1379982,27.3000017 85.502,26.964 C85.8660018,26.6279983 86.1179993,26.1800028 86.258,25.62 L87.14,25.62 C86.9533324,26.4413374 86.6103358,27.0759978 86.111,27.524 C85.6116642,27.9720022 84.9046712,28.196 83.99,28.196 C83.4206638,28.196 82.9283354,28.0956677 82.513,27.895 C82.0976646,27.6943323 81.7593346,27.4190017 81.498,27.069 C81.2366654,26.7189982 81.0430006,26.3130023 80.917,25.851 C80.7909994,25.3889977 80.728,24.9013359 80.728,24.388 C80.728,23.9119976 80.7909994,23.4453356 80.917,22.988 C81.0430006,22.5306644 81.2366654,22.1223351 81.498,21.763 C81.7593346,21.4036649 82.0976646,21.1143344 82.513,20.895 C82.9283354,20.6756656 83.4206638,20.566 83.99,20.566 C84.5686696,20.566 85.0633313,20.6826655 85.474,20.916 C85.8846687,21.1493345 86.218332,21.4549981 86.475,21.833 C86.731668,22.2110019 86.9159994,22.6449975 87.028,23.135 C87.1400006,23.6250025 87.1866668,24.1219975 87.168,24.626 L81.61,24.626 Z M94.714,28 L93.902,28 L93.902,26.628 L93.874,26.628 C93.7806662,26.8613345 93.6430009,27.075999 93.461,27.272 C93.2789991,27.468001 93.0713345,27.633666 92.838,27.769 C92.6046655,27.904334 92.3550013,28.009333 92.089,28.084 C91.8229987,28.158667 91.5593346,28.196 91.298,28.196 C90.7473306,28.196 90.269002,28.0956677 89.863,27.895 C89.456998,27.6943323 89.118668,27.4190017 88.848,27.069 C88.577332,26.7189982 88.3766673,26.3130023 88.246,25.851 C88.1153327,25.3889977 88.05,24.9013359 88.05,24.388 C88.05,23.8746641 88.1153327,23.3870023 88.246,22.925 C88.3766673,22.4629977 88.577332,22.0570017 88.848,21.707 C89.118668,21.3569983 89.456998,21.0793344 89.863,20.874 C90.269002,20.6686656 90.7473306,20.566 91.298,20.566 C91.568668,20.566 91.832332,20.5986663 92.089,20.664 C92.3456679,20.7293337 92.5859989,20.829666 92.81,20.965 C93.0340011,21.100334 93.2323325,21.265999 93.405,21.462 C93.5776675,21.658001 93.7106662,21.8866654 93.804,22.148 L93.832,22.148 L93.832,18.004 L94.714,18.004 L94.714,28 Z M88.932,24.388 C88.932,24.7613352 88.9763329,25.1323315 89.065,25.501 C89.1536671,25.8696685 89.2936657,26.1986652 89.485,26.488 C89.6763343,26.7773348 89.9213318,27.0129991 90.22,27.195 C90.5186682,27.3770009 90.8779979,27.468 91.298,27.468 C91.764669,27.468 92.1589984,27.3770009 92.481,27.195 C92.8030016,27.0129991 93.0643323,26.7773348 93.265,26.488 C93.4656677,26.1986652 93.6103329,25.8696685 93.699,25.501 C93.7876671,25.1323315 93.832,24.7613352 93.832,24.388 C93.832,24.0146648 93.7876671,23.6436685 93.699,23.275 C93.6103329,22.9063315 93.4656677,22.5773348 93.265,22.288 C93.0643323,21.9986652 92.8030016,21.7630009 92.481,21.581 C92.1589984,21.3989991 91.764669,21.308 91.298,21.308 C90.8779979,21.308 90.5186682,21.3989991 90.22,21.581 C89.9213318,21.7630009 89.6763343,21.9986652 89.485,22.288 C89.2936657,22.5773348 89.1536671,22.9063315 89.065,23.275 C88.9763329,23.6436685 88.932,24.0146648 88.932,24.388 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="173" height="45" viewBox="0 0 173 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="173" height="45" fill="#3ADB76"/>
<polygon fill="#FFF" points="139 21 151 21 145 27"/>
<path fill="#FFF" d="M18.699,18.004 L22.157,18.004 C23.6783409,18.0413335 24.8239961,18.4683293 25.594,19.285 C26.3640038,20.1016708 26.749,21.3406584 26.749,23.002 C26.749,24.6633416 26.3640038,25.9023293 25.594,26.719 C24.8239961,27.5356708 23.6783409,27.9626665 22.157,28 L18.699,28 L18.699,18.004 Z M19.651,27.188 L21.681,27.188 C22.3996703,27.188 23.0179974,27.1110008 23.536,26.957 C24.0540026,26.8029992 24.4809983,26.5580017 24.817,26.222 C25.1530017,25.8859983 25.4003325,25.4520027 25.559,24.92 C25.7176675,24.3879973 25.797,23.7486704 25.797,23.002 C25.797,22.2553296 25.7176675,21.6160027 25.559,21.084 C25.4003325,20.5519973 25.1530017,20.1180017 24.817,19.782 C24.4809983,19.4459983 24.0540026,19.2010008 23.536,19.047 C23.0179974,18.8929992 22.3996703,18.816 21.681,18.816 L19.651,18.816 L19.651,27.188 Z M28.121,20.776 L28.121,28 L29.003,28 L29.003,24.15 C29.003,23.7673314 29.0683327,23.4150016 29.199,23.093 C29.3296673,22.7709984 29.5139988,22.4933345 29.752,22.26 C29.9900012,22.0266655 30.2723317,21.8470006 30.599,21.721 C30.9256683,21.5949994 31.2896647,21.5413332 31.691,21.56 L31.691,20.678 C31.0376634,20.6499999 30.4753357,20.7946651 30.004,21.112 C29.5326643,21.4293349 29.1850011,21.8819971 28.961,22.47 L28.933,22.47 L28.933,20.776 L28.121,20.776 Z M35.331,21.308 C34.9109979,21.308 34.5423349,21.3966658 34.225,21.574 C33.9076651,21.7513342 33.644001,21.9846652 33.434,22.274 C33.2239989,22.5633348 33.0653339,22.8923315 32.958,23.261 C32.8506661,23.6296685 32.797,24.0053314 32.797,24.388 C32.797,24.7706686 32.8506661,25.1463315 32.958,25.515 C33.0653339,25.8836685 33.2239989,26.2126652 33.434,26.502 C33.644001,26.7913348 33.9076651,27.0246658 34.225,27.202 C34.5423349,27.3793342 34.9109979,27.468 35.331,27.468 C35.7510021,27.468 36.1196651,27.3793342 36.437,27.202 C36.7543349,27.0246658 37.0179989,26.7913348 37.228,26.502 C37.438001,26.2126652 37.5966661,25.8836685 37.704,25.515 C37.8113339,25.1463315 37.865,24.7706686 37.865,24.388 C37.865,24.0053314 37.8113339,23.6296685 37.704,23.261 C37.5966661,22.8923315 37.438001,22.5633348 37.228,22.274 C37.0179989,21.9846652 36.7543349,21.7513342 36.437,21.574 C36.1196651,21.3966658 35.7510021,21.308 35.331,21.308 Z M35.331,20.566 C35.8816694,20.566 36.3693312,20.6686656 36.794,20.874 C37.2186688,21.0793344 37.5756652,21.3546649 37.865,21.7 C38.1543348,22.0453351 38.3736659,22.4489977 38.523,22.911 C38.6723341,23.3730023 38.747,23.8653307 38.747,24.388 C38.747,24.9106693 38.6723341,25.4029977 38.523,25.865 C38.3736659,26.3270023 38.1543348,26.7306649 37.865,27.076 C37.5756652,27.4213351 37.2186688,27.6943323 36.794,27.895 C36.3693312,28.0956677 35.8816694,28.196 35.331,28.196 C34.7803306,28.196 34.2926688,28.0956677 33.868,27.895 C33.4433312,27.6943323 33.0863348,27.4213351 32.797,27.076 C32.5076652,26.7306649 32.2883341,26.3270023 32.139,25.865 C31.9896659,25.4029977 31.915,24.9106693 31.915,24.388 C31.915,23.8653307 31.9896659,23.3730023 32.139,22.911 C32.2883341,22.4489977 32.5076652,22.0453351 32.797,21.7 C33.0863348,21.3546649 33.4433312,21.0793344 33.868,20.874 C34.2926688,20.6686656 34.7803306,20.566 35.331,20.566 Z M40.063,20.776 L40.875,20.776 L40.875,22.148 L40.903,22.148 C41.1083344,21.6439975 41.4419977,21.2543347 41.904,20.979 C42.3660023,20.7036653 42.8909971,20.566 43.479,20.566 C44.0296694,20.566 44.507998,20.6686656 44.914,20.874 C45.320002,21.0793344 45.658332,21.3569983 45.929,21.707 C46.199668,22.0570017 46.4003327,22.4629977 46.531,22.925 C46.6616673,23.3870023 46.727,23.8746641 46.727,24.388 C46.727,24.9013359 46.6616673,25.3889977 46.531,25.851 C46.4003327,26.3130023 46.199668,26.7189982 45.929,27.069 C45.658332,27.4190017 45.320002,27.6943323 44.914,27.895 C44.507998,28.0956677 44.0296694,28.196 43.479,28.196 C43.2176654,28.196 42.9563346,28.1633337 42.695,28.098 C42.4336654,28.0326663 42.1910011,27.9346673 41.967,27.804 C41.7429989,27.6733327 41.5446675,27.510001 41.372,27.314 C41.1993325,27.117999 41.0663338,26.8893346 40.973,26.628 L40.945,26.628 L40.945,30.66 L40.063,30.66 L40.063,20.776 Z M45.845,24.388 C45.845,24.0146648 45.8006671,23.6436685 45.712,23.275 C45.6233329,22.9063315 45.4833343,22.5773348 45.292,22.288 C45.1006657,21.9986652 44.8556682,21.7630009 44.557,21.581 C44.2583318,21.3989991 43.8990021,21.308 43.479,21.308 C42.9936642,21.308 42.5876683,21.3919992 42.261,21.56 C41.9343317,21.7280008 41.673001,21.9519986 41.477,22.232 C41.280999,22.5120014 41.1433337,22.8386648 41.064,23.212 C40.9846663,23.5853352 40.945,23.9773313 40.945,24.388 C40.945,24.7613352 40.9893329,25.1323315 41.078,25.501 C41.1666671,25.8696685 41.3113323,26.1986652 41.512,26.488 C41.7126677,26.7773348 41.9739984,27.0129991 42.296,27.195 C42.6180016,27.3770009 43.012331,27.468 43.479,27.468 C43.8990021,27.468 44.2583318,27.3770009 44.557,27.195 C44.8556682,27.0129991 45.1006657,26.7773348 45.292,26.488 C45.4833343,26.1986652 45.6233329,25.8696685 45.712,25.501 C45.8006671,25.1323315 45.845,24.7613352 45.845,24.388 Z M54.455,28 L53.643,28 L53.643,26.628 L53.615,26.628 C53.5216662,26.8613345 53.3840009,27.075999 53.202,27.272 C53.0199991,27.468001 52.8123345,27.633666 52.579,27.769 C52.3456655,27.904334 52.0960013,28.009333 51.83,28.084 C51.5639987,28.158667 51.3003346,28.196 51.039,28.196 C50.4883306,28.196 50.010002,28.0956677 49.604,27.895 C49.197998,27.6943323 48.859668,27.4190017 48.589,27.069 C48.318332,26.7189982 48.1176673,26.3130023 47.987,25.851 C47.8563327,25.3889977 47.791,24.9013359 47.791,24.388 C47.791,23.8746641 47.8563327,23.3870023 47.987,22.925 C48.1176673,22.4629977 48.318332,22.0570017 48.589,21.707 C48.859668,21.3569983 49.197998,21.0793344 49.604,20.874 C50.010002,20.6686656 50.4883306,20.566 51.039,20.566 C51.309668,20.566 51.573332,20.5986663 51.83,20.664 C52.0866679,20.7293337 52.3269989,20.829666 52.551,20.965 C52.7750011,21.100334 52.9733325,21.265999 53.146,21.462 C53.3186675,21.658001 53.4516662,21.8866654 53.545,22.148 L53.573,22.148 L53.573,18.004 L54.455,18.004 L54.455,28 Z M48.673,24.388 C48.673,24.7613352 48.7173329,25.1323315 48.806,25.501 C48.8946671,25.8696685 49.0346657,26.1986652 49.226,26.488 C49.4173343,26.7773348 49.6623318,27.0129991 49.961,27.195 C50.2596682,27.3770009 50.6189979,27.468 51.039,27.468 C51.505669,27.468 51.8999984,27.3770009 52.222,27.195 C52.5440016,27.0129991 52.8053323,26.7773348 53.006,26.488 C53.2066677,26.1986652 53.3513329,25.8696685 53.44,25.501 C53.5286671,25.1323315 53.573,24.7613352 53.573,24.388 C53.573,24.0146648 53.5286671,23.6436685 53.44,23.275 C53.3513329,22.9063315 53.2066677,22.5773348 53.006,22.288 C52.8053323,21.9986652 52.5440016,21.7630009 52.222,21.581 C51.8999984,21.3989991 51.505669,21.308 51.039,21.308 C50.6189979,21.308 50.2596682,21.3989991 49.961,21.581 C49.6623318,21.7630009 49.4173343,21.9986652 49.226,22.288 C49.0346657,22.5773348 48.8946671,22.9063315 48.806,23.275 C48.7173329,23.6436685 48.673,24.0146648 48.673,24.388 Z M59.187,21.308 C58.7669979,21.308 58.3983349,21.3966658 58.081,21.574 C57.7636651,21.7513342 57.500001,21.9846652 57.29,22.274 C57.0799989,22.5633348 56.9213339,22.8923315 56.814,23.261 C56.7066661,23.6296685 56.653,24.0053314 56.653,24.388 C56.653,24.7706686 56.7066661,25.1463315 56.814,25.515 C56.9213339,25.8836685 57.0799989,26.2126652 57.29,26.502 C57.500001,26.7913348 57.7636651,27.0246658 58.081,27.202 C58.3983349,27.3793342 58.7669979,27.468 59.187,27.468 C59.6070021,27.468 59.9756651,27.3793342 60.293,27.202 C60.6103349,27.0246658 60.8739989,26.7913348 61.084,26.502 C61.294001,26.2126652 61.4526661,25.8836685 61.56,25.515 C61.6673339,25.1463315 61.721,24.7706686 61.721,24.388 C61.721,24.0053314 61.6673339,23.6296685 61.56,23.261 C61.4526661,22.8923315 61.294001,22.5633348 61.084,22.274 C60.8739989,21.9846652 60.6103349,21.7513342 60.293,21.574 C59.9756651,21.3966658 59.6070021,21.308 59.187,21.308 Z M59.187,20.566 C59.7376694,20.566 60.2253312,20.6686656 60.65,20.874 C61.0746688,21.0793344 61.4316652,21.3546649 61.721,21.7 C62.0103348,22.0453351 62.2296659,22.4489977 62.379,22.911 C62.5283341,23.3730023 62.603,23.8653307 62.603,24.388 C62.603,24.9106693 62.5283341,25.4029977 62.379,25.865 C62.2296659,26.3270023 62.0103348,26.7306649 61.721,27.076 C61.4316652,27.4213351 61.0746688,27.6943323 60.65,27.895 C60.2253312,28.0956677 59.7376694,28.196 59.187,28.196 C58.6363306,28.196 58.1486688,28.0956677 57.724,27.895 C57.2993312,27.6943323 56.9423348,27.4213351 56.653,27.076 C56.3636652,26.7306649 56.1443341,26.3270023 55.995,25.865 C55.8456659,25.4029977 55.771,24.9106693 55.771,24.388 C55.771,23.8653307 55.8456659,23.3730023 55.995,22.911 C56.1443341,22.4489977 56.3636652,22.0453351 56.653,21.7 C56.9423348,21.3546649 57.2993312,21.0793344 57.724,20.874 C58.1486688,20.6686656 58.6363306,20.566 59.187,20.566 Z M63.191,20.776 L65.515,28 L66.481,28 L68.245,21.924 L68.273,21.924 L70.051,28 L71.017,28 L73.341,20.776 L72.403,20.776 L70.555,26.964 L70.527,26.964 L68.763,20.776 L67.769,20.776 L66.005,26.964 L65.977,26.964 L64.129,20.776 L63.191,20.776 Z M74.279,20.776 L74.279,28 L75.161,28 L75.161,23.786 C75.1703334,23.4313316 75.2286661,23.1023348 75.336,22.799 C75.4433339,22.4956652 75.5926657,22.2343344 75.784,22.015 C75.9753343,21.7956656 76.2086653,21.6230006 76.484,21.497 C76.7593347,21.3709994 77.0743316,21.308 77.429,21.308 C77.7836684,21.308 78.0799988,21.3639994 78.318,21.476 C78.5560012,21.5880006 78.7449993,21.741999 78.885,21.938 C79.0250007,22.134001 79.1229997,22.3649987 79.179,22.631 C79.2350003,22.8970013 79.263,23.1839985 79.263,23.492 L79.263,28 L80.145,28 L80.145,23.352 C80.145,22.9226645 80.1030004,22.5353351 80.019,22.19 C79.9349996,21.8446649 79.7903344,21.5530012 79.585,21.315 C79.3796656,21.0769988 79.1066684,20.8926673 78.766,20.762 C78.4253316,20.6313327 78.0030025,20.566 77.499,20.566 C76.9856641,20.566 76.5143355,20.6989987 76.085,20.965 C75.6556645,21.2310013 75.3570008,21.5833311 75.189,22.022 L75.161,22.022 L75.161,20.776 L74.279,20.776 Z M86.823,22.386 L90.099,22.386 C90.4816686,22.386 90.8129986,22.3416671 91.093,22.253 C91.3730014,22.1643329 91.6063324,22.0430008 91.793,21.889 C91.9796676,21.7349992 92.1196662,21.5553344 92.213,21.35 C92.3063338,21.1446656 92.353,20.9253345 92.353,20.692 C92.353,19.4413271 91.6016742,18.816 90.099,18.816 L86.823,18.816 L86.823,22.386 Z M85.871,18.004 L90.099,18.004 C90.5190021,18.004 90.9226647,18.0436663 91.31,18.123 C91.6973353,18.2023337 92.0379985,18.3376657 92.332,18.529 C92.6260015,18.7203343 92.8616658,18.9723318 93.039,19.285 C93.2163342,19.5976682 93.305,19.987331 93.305,20.454 C93.305,20.7153346 93.2630004,20.9696654 93.179,21.217 C93.0949996,21.4643346 92.9760008,21.6883323 92.822,21.889 C92.6679992,22.0896677 92.486001,22.2599993 92.276,22.4 C92.0659989,22.5400007 91.8303346,22.6379997 91.569,22.694 L91.569,22.722 C92.2130032,22.8060004 92.7263314,23.0696644 93.109,23.513 C93.4916686,23.9563355 93.683,24.5046634 93.683,25.158 C93.683,25.3166675 93.6690001,25.4963323 93.641,25.697 C93.6129999,25.8976677 93.5570004,26.1029989 93.473,26.313 C93.3889996,26.5230011 93.2676675,26.7306656 93.109,26.936 C92.9503325,27.1413344 92.7380013,27.3209992 92.472,27.475 C92.2059987,27.6290008 91.8793353,27.7549995 91.492,27.853 C91.1046647,27.9510005 90.640336,28 90.099,28 L85.871,28 L85.871,18.004 Z M86.823,27.188 L90.099,27.188 C90.4536684,27.188 90.7896651,27.157667 91.107,27.097 C91.4243349,27.036333 91.7043321,26.9266675 91.947,26.768 C92.1896679,26.6093325 92.3809993,26.3970013 92.521,26.131 C92.6610007,25.8649987 92.731,25.5313353 92.731,25.13 C92.731,24.4859968 92.5046689,24.0030016 92.052,23.681 C91.5993311,23.3589984 90.9483376,23.198 90.099,23.198 L86.823,23.198 L86.823,27.188 Z M100.893,28 L100.893,20.776 L100.011,20.776 L100.011,24.57 C100.011,24.9340018 99.9690004,25.2909983 99.885,25.641 C99.8009996,25.9910018 99.6703342,26.301332 99.493,26.572 C99.3156658,26.842668 99.091668,27.0596659 98.821,27.223 C98.550332,27.3863341 98.2236686,27.468 97.841,27.468 C97.1409965,27.468 96.6486681,27.3000017 96.364,26.964 C96.0793319,26.6279983 95.9276668,26.1333366 95.909,25.48 L95.909,20.776 L95.027,20.776 L95.027,25.466 C95.027,25.8953355 95.0736662,26.2779983 95.167,26.614 C95.2603338,26.9500017 95.4073323,27.2346655 95.608,27.468 C95.8086677,27.7013345 96.0699984,27.8809994 96.392,28.007 C96.7140016,28.1330006 97.1036644,28.196 97.561,28.196 C98.102336,28.196 98.5946644,28.067668 99.038,27.811 C99.4813355,27.554332 99.8196655,27.1833358 100.053,26.698 L100.081,26.698 L100.081,28 L100.893,28 Z M103.959,20.776 L103.959,18.606 L103.077,18.606 L103.077,20.776 L101.817,20.776 L101.817,21.518 L103.077,21.518 L103.077,26.46 C103.067667,27.0760031 103.179665,27.4983322 103.413,27.727 C103.646334,27.9556678 104.056997,28.07 104.645,28.07 C104.775667,28.07 104.906333,28.0653334 105.037,28.056 C105.167667,28.0466666 105.298333,28.042 105.429,28.042 L105.429,27.3 C105.176999,27.3280001 104.925001,27.342 104.673,27.342 C104.355665,27.3233332 104.157334,27.2323341 104.078,27.069 C103.998666,26.9056658 103.959,26.6793348 103.959,26.39 L103.959,21.518 L105.429,21.518 L105.429,20.776 L103.959,20.776 Z M108.103,20.776 L108.103,18.606 L107.221,18.606 L107.221,20.776 L105.961,20.776 L105.961,21.518 L107.221,21.518 L107.221,26.46 C107.211667,27.0760031 107.323665,27.4983322 107.557,27.727 C107.790334,27.9556678 108.200997,28.07 108.789,28.07 C108.919667,28.07 109.050333,28.0653334 109.181,28.056 C109.311667,28.0466666 109.442333,28.042 109.573,28.042 L109.573,27.3 C109.320999,27.3280001 109.069001,27.342 108.817,27.342 C108.499665,27.3233332 108.301334,27.2323341 108.222,27.069 C108.142666,26.9056658 108.103,26.6793348 108.103,26.39 L108.103,21.518 L109.573,21.518 L109.573,20.776 L108.103,20.776 Z M113.899,21.308 C113.478998,21.308 113.110335,21.3966658 112.793,21.574 C112.475665,21.7513342 112.212001,21.9846652 112.002,22.274 C111.791999,22.5633348 111.633334,22.8923315 111.526,23.261 C111.418666,23.6296685 111.365,24.0053314 111.365,24.388 C111.365,24.7706686 111.418666,25.1463315 111.526,25.515 C111.633334,25.8836685 111.791999,26.2126652 112.002,26.502 C112.212001,26.7913348 112.475665,27.0246658 112.793,27.202 C113.110335,27.3793342 113.478998,27.468 113.899,27.468 C114.319002,27.468 114.687665,27.3793342 115.005,27.202 C115.322335,27.0246658 115.585999,26.7913348 115.796,26.502 C116.006001,26.2126652 116.164666,25.8836685 116.272,25.515 C116.379334,25.1463315 116.433,24.7706686 116.433,24.388 C116.433,24.0053314 116.379334,23.6296685 116.272,23.261 C116.164666,22.8923315 116.006001,22.5633348 115.796,22.274 C115.585999,21.9846652 115.322335,21.7513342 115.005,21.574 C114.687665,21.3966658 114.319002,21.308 113.899,21.308 Z M113.899,20.566 C114.449669,20.566 114.937331,20.6686656 115.362,20.874 C115.786669,21.0793344 116.143665,21.3546649 116.433,21.7 C116.722335,22.0453351 116.941666,22.4489977 117.091,22.911 C117.240334,23.3730023 117.315,23.8653307 117.315,24.388 C117.315,24.9106693 117.240334,25.4029977 117.091,25.865 C116.941666,26.3270023 116.722335,26.7306649 116.433,27.076 C116.143665,27.4213351 115.786669,27.6943323 115.362,27.895 C114.937331,28.0956677 114.449669,28.196 113.899,28.196 C113.348331,28.196 112.860669,28.0956677 112.436,27.895 C112.011331,27.6943323 111.654335,27.4213351 111.365,27.076 C111.075665,26.7306649 110.856334,26.3270023 110.707,25.865 C110.557666,25.4029977 110.483,24.9106693 110.483,24.388 C110.483,23.8653307 110.557666,23.3730023 110.707,22.911 C110.856334,22.4489977 111.075665,22.0453351 111.365,21.7 C111.654335,21.3546649 112.011331,21.0793344 112.436,20.874 C112.860669,20.6686656 113.348331,20.566 113.899,20.566 Z M118.617,20.776 L118.617,28 L119.499,28 L119.499,23.786 C119.508333,23.4313316 119.566666,23.1023348 119.674,22.799 C119.781334,22.4956652 119.930666,22.2343344 120.122,22.015 C120.313334,21.7956656 120.546665,21.6230006 120.822,21.497 C121.097335,21.3709994 121.412332,21.308 121.767,21.308 C122.121668,21.308 122.417999,21.3639994 122.656,21.476 C122.894001,21.5880006 123.082999,21.741999 123.223,21.938 C123.363001,22.134001 123.461,22.3649987 123.517,22.631 C123.573,22.8970013 123.601,23.1839985 123.601,23.492 L123.601,28 L124.483,28 L124.483,23.352 C124.483,22.9226645 124.441,22.5353351 124.357,22.19 C124.273,21.8446649 124.128334,21.5530012 123.923,21.315 C123.717666,21.0769988 123.444668,20.8926673 123.104,20.762 C122.763332,20.6313327 122.341003,20.566 121.837,20.566 C121.323664,20.566 120.852335,20.6989987 120.423,20.965 C119.993665,21.2310013 119.695001,21.5833311 119.527,22.022 L119.499,22.022 L119.499,20.776 L118.617,20.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="104" height="43" viewBox="0 0 104 43" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="104" height="43" fill="#3ADB76"/>
<path fill="#FFF" d="M30.5072006,16.7184003 L30.5072006,27 L31.4864006,27 L31.4864006,16.7184003 L30.5072006,16.7184003 Z M33.4448005,19.5696002 L33.4448005,27 L34.3520005,27 L34.3520005,22.6656001 C34.3616005,22.3007983 34.4215999,21.9624017 34.5320005,21.6504001 C34.642401,21.3383986 34.7959995,21.0696013 34.9928005,20.8440002 C35.1896015,20.618399 35.429599,20.4408008 35.7128005,20.3112002 C35.9960019,20.1815995 36.3199986,20.1168002 36.6848004,20.1168002 C37.0496022,20.1168002 37.3543992,20.1743996 37.5992004,20.2896002 C37.8440016,20.4048008 38.0383997,20.5631992 38.1824004,20.7648002 C38.3264011,20.9664012 38.4272001,21.2039988 38.4848004,21.4776001 C38.5424007,21.7512015 38.5712004,22.0463985 38.5712004,22.3632001 L38.5712004,27 L39.4784004,27 L39.4784004,22.2192001 C39.4784004,21.7775979 39.4352008,21.3792019 39.3488004,21.0240002 C39.2623999,20.6687984 39.1136014,20.3688014 38.9024004,20.1240002 C38.6911993,19.879199 38.4104021,19.6896009 38.0600004,19.5552002 C37.7095987,19.4207995 37.275203,19.3536002 36.7568004,19.3536002 C36.2287978,19.3536002 35.7440027,19.4903988 35.3024005,19.7640002 C34.8607983,20.0376016 34.5536014,20.3999979 34.3808005,20.8512002 L34.3520005,20.8512002 L34.3520005,19.5696002 L33.4448005,19.5696002 Z M45.3680002,16.7184003 L45.3680002,27 L46.3472002,27 L46.3472002,22.1040001 L51.272,22.1040001 L51.272,21.2688002 L46.3472002,21.2688002 L46.3472002,17.5536003 L51.8912,17.5536003 L51.8912,16.7184003 L45.3680002,16.7184003 Z M56.0671999,20.1168002 C55.6351978,20.1168002 55.2560016,20.2079993 54.9295999,20.3904002 C54.6031983,20.5728011 54.332001,20.8127987 54.116,21.1104002 C53.8999989,21.4080016 53.7368005,21.7463982 53.6264,22.1256001 C53.5159994,22.504802 53.4608,22.8911981 53.4608,23.2848001 C53.4608,23.6784021 53.5159994,24.0647982 53.6264,24.4440001 C53.7368005,24.823202 53.8999989,25.1615986 54.116,25.4592 C54.332001,25.7568015 54.6031983,25.9967991 54.9295999,26.1792 C55.2560016,26.3616009 55.6351978,26.4528 56.0671999,26.4528 C56.4992021,26.4528 56.8783983,26.3616009 57.2047999,26.1792 C57.5312015,25.9967991 57.8023988,25.7568015 58.0183999,25.4592 C58.2344009,25.1615986 58.3975993,24.823202 58.5079999,24.4440001 C58.6184004,24.0647982 58.6735998,23.6784021 58.6735998,23.2848001 C58.6735998,22.8911981 58.6184004,22.504802 58.5079999,22.1256001 C58.3975993,21.7463982 58.2344009,21.4080016 58.0183999,21.1104002 C57.8023988,20.8127987 57.5312015,20.5728011 57.2047999,20.3904002 C56.8783983,20.2079993 56.4992021,20.1168002 56.0671999,20.1168002 Z M56.0671999,19.3536002 C56.6336027,19.3536002 57.1351977,19.4591991 57.5719999,19.6704002 C58.0088021,19.8816012 58.3759984,20.1647984 58.6735998,20.5200002 C58.9712013,20.8752019 59.1967991,21.2903978 59.3503998,21.7656001 C59.5040006,22.2408025 59.5807998,22.7471974 59.5807998,23.2848001 C59.5807998,23.8224028 59.5040006,24.3287977 59.3503998,24.8040001 C59.1967991,25.2792024 58.9712013,25.6943983 58.6735998,26.0496 C58.3759984,26.4048018 58.0088021,26.685599 57.5719999,26.892 C57.1351977,27.098401 56.6336027,27.2016 56.0671999,27.2016 C55.5007971,27.2016 54.9992021,27.098401 54.5624,26.892 C54.1255978,26.685599 53.7584015,26.4048018 53.4608,26.0496 C53.1631985,25.6943983 52.9376008,25.2792024 52.784,24.8040001 C52.6303992,24.3287977 52.5536,23.8224028 52.5536,23.2848001 C52.5536,22.7471974 52.6303992,22.2408025 52.784,21.7656001 C52.9376008,21.2903978 53.1631985,20.8752019 53.4608,20.5200002 C53.7584015,20.1647984 54.1255978,19.8816012 54.5624,19.6704002 C54.9992021,19.4591991 55.5007971,19.3536002 56.0671999,19.3536002 Z M60.9343998,19.5696002 L60.9343998,27 L61.8415998,27 L61.8415998,23.0400001 C61.8415998,22.6463981 61.9087991,22.2840018 62.0431998,21.9528001 C62.1776004,21.6215985 62.3671985,21.3360014 62.6119997,21.0960002 C62.856801,20.855999 63.1471981,20.6712008 63.4831997,20.5416002 C63.8192014,20.4119995 64.1935976,20.3568001 64.6063997,20.3760002 L64.6063997,19.4688002 C63.9343964,19.4400001 63.3560021,19.5887986 62.8711997,19.9152002 C62.3863973,20.2416018 62.0288009,20.7071971 61.7983998,21.3120002 L61.7695998,21.3120002 L61.7695998,19.5696002 L60.9343998,19.5696002 Z M65.4703997,19.5696002 L65.4703997,27 L66.3775996,27 L66.3775996,22.8528001 C66.3775996,22.4591982 66.4207992,22.0968018 66.5071996,21.7656001 C66.5936001,21.4343985 66.7255987,21.1464014 66.9031996,20.9016002 C67.0808005,20.6567989 67.3111982,20.4648009 67.5943996,20.3256002 C67.877601,20.1863995 68.2111977,20.1168002 68.5951996,20.1168002 C68.883201,20.1168002 69.1279986,20.1647997 69.3295996,20.2608002 C69.5312006,20.3568007 69.691999,20.4887993 69.8119996,20.6568002 C69.9320002,20.824801 70.0183993,21.021599 70.0711995,21.2472002 C70.1239998,21.4728013 70.1503995,21.7103989 70.1503995,21.9600001 L70.1503995,27 L71.0575995,27 L71.0575995,22.7952001 C71.0575995,22.4495984 71.0887992,22.1160017 71.1511995,21.7944001 C71.2135998,21.4727985 71.3215987,21.1872014 71.4751995,20.9376002 C71.6288003,20.6879989 71.8351982,20.4888009 72.0943995,20.3400002 C72.3536008,20.1911994 72.6799975,20.1168002 73.0735995,20.1168002 C73.7264027,20.1168002 74.1823981,20.2775986 74.4415994,20.5992002 C74.7008007,20.9208018 74.8303994,21.3887971 74.8303994,22.0032001 L74.8303994,27 L75.7375994,27 L75.7375994,21.9600001 C75.7375994,20.2223915 74.9168076,19.3536002 73.2751995,19.3536002 C72.785597,19.3536002 72.3248016,19.473599 71.8927995,19.7136002 C71.4607974,19.9536014 71.1344006,20.3183977 70.9135995,20.8080002 C70.7791989,20.3183977 70.5128015,19.9536014 70.1143995,19.7136002 C69.7159976,19.473599 69.272002,19.3536002 68.7823996,19.3536002 C68.1775966,19.3536002 67.6808016,19.4831989 67.2919996,19.7424002 C66.9031977,20.0016015 66.5888008,20.3615979 66.3487996,20.8224002 L66.3055996,20.8224002 L66.3055996,19.5696002 L65.4703997,19.5696002 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="138" height="45" viewBox="0 0 138 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="138" height="45" fill="none" stroke="#3ADB76"/>
<path fill="#3ADB76" d="M50.019,18.004 L50.019,28 L50.971,28 L50.971,23.156 L56.907,23.156 L56.907,28 L57.859,28 L57.859,18.004 L56.907,18.004 L56.907,22.344 L50.971,22.344 L50.971,18.004 L50.019,18.004 Z M62.759,21.308 C62.3389979,21.308 61.9703349,21.3966658 61.653,21.574 C61.3356651,21.7513342 61.072001,21.9846652 60.862,22.274 C60.6519989,22.5633348 60.4933339,22.8923315 60.386,23.261 C60.2786661,23.6296685 60.225,24.0053314 60.225,24.388 C60.225,24.7706686 60.2786661,25.1463315 60.386,25.515 C60.4933339,25.8836685 60.6519989,26.2126652 60.862,26.502 C61.072001,26.7913348 61.3356651,27.0246658 61.653,27.202 C61.9703349,27.3793342 62.3389979,27.468 62.759,27.468 C63.1790021,27.468 63.5476651,27.3793342 63.865,27.202 C64.1823349,27.0246658 64.445999,26.7913348 64.656,26.502 C64.866001,26.2126652 65.0246661,25.8836685 65.132,25.515 C65.2393339,25.1463315 65.293,24.7706686 65.293,24.388 C65.293,24.0053314 65.2393339,23.6296685 65.132,23.261 C65.0246661,22.8923315 64.866001,22.5633348 64.656,22.274 C64.445999,21.9846652 64.1823349,21.7513342 63.865,21.574 C63.5476651,21.3966658 63.1790021,21.308 62.759,21.308 Z M62.759,20.566 C63.3096694,20.566 63.7973312,20.6686656 64.222,20.874 C64.6466688,21.0793344 65.0036652,21.3546649 65.293,21.7 C65.5823348,22.0453351 65.8016659,22.4489977 65.951,22.911 C66.1003341,23.3730023 66.175,23.8653307 66.175,24.388 C66.175,24.9106693 66.1003341,25.4029977 65.951,25.865 C65.8016659,26.3270023 65.5823348,26.7306649 65.293,27.076 C65.0036652,27.4213351 64.6466688,27.6943323 64.222,27.895 C63.7973312,28.0956677 63.3096694,28.196 62.759,28.196 C62.2083306,28.196 61.7206688,28.0956677 61.296,27.895 C60.8713312,27.6943323 60.5143348,27.4213351 60.225,27.076 C59.9356652,26.7306649 59.7163341,26.3270023 59.567,25.865 C59.4176659,25.4029977 59.343,24.9106693 59.343,24.388 C59.343,23.8653307 59.4176659,23.3730023 59.567,22.911 C59.7163341,22.4489977 59.9356652,22.0453351 60.225,21.7 C60.5143348,21.3546649 60.8713312,21.0793344 61.296,20.874 C61.7206688,20.6686656 62.2083306,20.566 62.759,20.566 Z M67.505,18.004 L67.505,28 L68.387,28 L68.387,18.004 L67.505,18.004 Z M70.095,18.004 L70.095,28 L70.977,28 L70.977,18.004 L70.095,18.004 Z M75.723,21.308 C75.3029979,21.308 74.9343349,21.3966658 74.617,21.574 C74.2996651,21.7513342 74.036001,21.9846652 73.826,22.274 C73.615999,22.5633348 73.4573339,22.8923315 73.35,23.261 C73.2426661,23.6296685 73.189,24.0053314 73.189,24.388 C73.189,24.7706686 73.2426661,25.1463315 73.35,25.515 C73.4573339,25.8836685 73.615999,26.2126652 73.826,26.502 C74.036001,26.7913348 74.2996651,27.0246658 74.617,27.202 C74.9343349,27.3793342 75.3029979,27.468 75.723,27.468 C76.1430021,27.468 76.5116651,27.3793342 76.829,27.202 C77.1463349,27.0246658 77.409999,26.7913348 77.62,26.502 C77.830001,26.2126652 77.9886661,25.8836685 78.096,25.515 C78.2033339,25.1463315 78.257,24.7706686 78.257,24.388 C78.257,24.0053314 78.2033339,23.6296685 78.096,23.261 C77.9886661,22.8923315 77.830001,22.5633348 77.62,22.274 C77.409999,21.9846652 77.1463349,21.7513342 76.829,21.574 C76.5116651,21.3966658 76.1430021,21.308 75.723,21.308 Z M75.723,20.566 C76.2736694,20.566 76.7613312,20.6686656 77.186,20.874 C77.6106688,21.0793344 77.9676652,21.3546649 78.257,21.7 C78.5463348,22.0453351 78.7656659,22.4489977 78.915,22.911 C79.0643341,23.3730023 79.139,23.8653307 79.139,24.388 C79.139,24.9106693 79.0643341,25.4029977 78.915,25.865 C78.7656659,26.3270023 78.5463348,26.7306649 78.257,27.076 C77.9676652,27.4213351 77.6106688,27.6943323 77.186,27.895 C76.7613312,28.0956677 76.2736694,28.196 75.723,28.196 C75.1723306,28.196 74.6846688,28.0956677 74.26,27.895 C73.8353312,27.6943323 73.4783348,27.4213351 73.189,27.076 C72.8996652,26.7306649 72.6803341,26.3270023 72.531,25.865 C72.3816659,25.4029977 72.307,24.9106693 72.307,24.388 C72.307,23.8653307 72.3816659,23.3730023 72.531,22.911 C72.6803341,22.4489977 72.8996652,22.0453351 73.189,21.7 C73.4783348,21.3546649 73.8353312,21.0793344 74.26,20.874 C74.6846688,20.6686656 75.1723306,20.566 75.723,20.566 Z M79.727,20.776 L82.051,28 L83.017,28 L84.781,21.924 L84.809,21.924 L86.587,28 L87.553,28 L89.877,20.776 L88.939,20.776 L87.091,26.964 L87.063,26.964 L85.299,20.776 L84.305,20.776 L82.541,26.964 L82.513,26.964 L80.665,20.776 L79.727,20.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="137" height="45" viewBox="0 0 137 45" id="svg" >
<defs>
<rect id="-success-(right-capsule)-a" width="137" height="45"/>
</defs>
<g fill="none" fill-rule="evenodd">
<mask id="-success-(right-capsule)-b" fill="#fff">
<use xlink:href="#-success-(right-capsule)-a"/>
</mask>
<rect width="273" height="45" x="-136" fill="#3ADB76" mask="url(#-success-(right-capsule)-b)" rx="22.5"/>
<path fill="#FFF" d="M28.194,22.75 L31.75,22.75 C32.0393348,22.75 32.3146654,22.7056671 32.576,22.617 C32.8373346,22.5283329 33.065999,22.4000008 33.262,22.232 C33.458001,22.0639992 33.6143328,21.8610012 33.731,21.623 C33.8476673,21.3849988 33.906,21.1120015 33.906,20.804 C33.906,20.1879969 33.7286684,19.7026684 33.374,19.348 C33.0193316,18.9933316 32.4780036,18.816 31.75,18.816 L28.194,18.816 L28.194,22.75 Z M27.242,18.004 L31.82,18.004 C32.2306687,18.004 32.6203315,18.0553328 32.989,18.158 C33.3576685,18.2606672 33.6796653,18.4169989 33.955,18.627 C34.2303347,18.8370011 34.4496659,19.107665 34.613,19.439 C34.7763342,19.770335 34.858,20.1599978 34.858,20.608 C34.858,21.2426698 34.6946683,21.793331 34.368,22.26 C34.0413317,22.726669 33.5560032,23.0253327 32.912,23.156 L32.912,23.184 C33.2386683,23.2306669 33.5093323,23.3169994 33.724,23.443 C33.9386677,23.5690006 34.113666,23.729999 34.249,23.926 C34.384334,24.122001 34.482333,24.348332 34.543,24.605 C34.603667,24.861668 34.6433332,25.1393318 34.662,25.438 C34.6713334,25.6060008 34.6806666,25.8113321 34.69,26.054 C34.6993334,26.2966679 34.7179999,26.5416654 34.746,26.789 C34.7740001,27.0363346 34.818333,27.2696656 34.879,27.489 C34.939667,27.7083344 35.0213328,27.8786661 35.124,28 L34.074,28 C34.0179997,27.9066662 33.9736668,27.792334 33.941,27.657 C33.9083332,27.521666 33.8850001,27.3816674 33.871,27.237 C33.8569999,27.0923326 33.8453334,26.9500007 33.836,26.81 C33.8266666,26.6699993 33.8173334,26.5486672 33.808,26.446 C33.7893332,26.0913316 33.7590002,25.7390017 33.717,25.389 C33.6749998,25.0389982 33.586334,24.7263347 33.451,24.451 C33.315666,24.1756653 33.119668,23.9540008 32.863,23.786 C32.606332,23.6179992 32.2540022,23.5433332 31.806,23.562 L28.194,23.562 L28.194,28 L27.242,28 L27.242,18.004 Z M36.426,18.004 L36.426,19.418 L37.308,19.418 L37.308,18.004 L36.426,18.004 Z M36.426,20.776 L36.426,28 L37.308,28 L37.308,20.776 L36.426,20.776 Z M45.106,27.412 C45.106,27.9440027 45.0476673,28.4246645 44.931,28.854 C44.8143328,29.2833355 44.6300013,29.6473318 44.378,29.946 C44.1259987,30.2446682 43.797002,30.4733325 43.391,30.632 C42.984998,30.7906675 42.4880029,30.87 41.9,30.87 C41.5359982,30.87 41.1813351,30.8280004 40.836,30.744 C40.4906649,30.6599996 40.1803347,30.5293342 39.905,30.352 C39.6296653,30.1746658 39.4010009,29.9483347 39.219,29.673 C39.0369991,29.3976653 38.9320001,29.0686686 38.904,28.686 L39.786,28.686 C39.8326669,28.956668 39.923666,29.1829991 40.059,29.365 C40.194334,29.5470009 40.3576657,29.6939994 40.549,29.806 C40.7403343,29.9180006 40.9526655,29.9996664 41.186,30.051 C41.4193345,30.1023336 41.6573321,30.128 41.9,30.128 C42.7213374,30.128 43.3139982,29.894669 43.678,29.428 C44.0420018,28.961331 44.224,28.2893377 44.224,27.412 L44.224,26.432 L44.196,26.432 C43.9906656,26.8800022 43.6896687,27.239332 43.293,27.51 C42.8963314,27.780668 42.4320027,27.916 41.9,27.916 C41.3213304,27.916 40.8266687,27.8203343 40.416,27.629 C40.0053313,27.4376657 39.6670013,27.1740017 39.401,26.838 C39.1349987,26.5019983 38.9413339,26.1076689 38.82,25.655 C38.6986661,25.2023311 38.638,24.7193359 38.638,24.206 C38.638,23.7113309 38.7103326,23.2423355 38.855,22.799 C38.9996674,22.3556644 39.2096653,21.968335 39.485,21.637 C39.7603347,21.305665 40.100998,21.0443343 40.507,20.853 C40.913002,20.6616657 41.3773307,20.566 41.9,20.566 C42.170668,20.566 42.4249988,20.603333 42.663,20.678 C42.9010012,20.752667 43.117999,20.857666 43.314,20.993 C43.510001,21.128334 43.6849992,21.2846658 43.839,21.462 C43.9930008,21.6393342 44.1119996,21.825999 44.196,22.022 L44.224,22.022 L44.224,20.776 L45.106,20.776 L45.106,27.412 Z M41.9,27.174 C42.2826686,27.174 42.6186652,27.0923341 42.908,26.929 C43.1973348,26.7656658 43.439999,26.5510013 43.636,26.285 C43.832001,26.0189987 43.9789995,25.7133351 44.077,25.368 C44.1750005,25.0226649 44.224,24.6680018 44.224,24.304 C44.224,23.9493316 44.1820004,23.5946684 44.098,23.24 C44.0139996,22.8853316 43.8786676,22.5633348 43.692,22.274 C43.5053324,21.9846652 43.2650015,21.7513342 42.971,21.574 C42.6769985,21.3966658 42.3200021,21.308 41.9,21.308 C41.4799979,21.308 41.1206682,21.3943325 40.822,21.567 C40.5233318,21.7396675 40.276001,21.9659986 40.08,22.246 C39.883999,22.5260014 39.7416671,22.8456649 39.653,23.205 C39.5643329,23.5643351 39.52,23.9306648 39.52,24.304 C39.52,24.6680018 39.5666662,25.0226649 39.66,25.368 C39.7533338,25.7133351 39.897999,26.0189987 40.094,26.285 C40.290001,26.5510013 40.5373318,26.7656658 40.836,26.929 C41.1346682,27.0923341 41.4893313,27.174 41.9,27.174 Z M46.772,18.004 L46.772,28 L47.654,28 L47.654,23.786 C47.6633334,23.4313316 47.7216661,23.1023348 47.829,22.799 C47.9363339,22.4956652 48.0856657,22.2343344 48.277,22.015 C48.4683343,21.7956656 48.7016653,21.6230006 48.977,21.497 C49.2523347,21.3709994 49.5673316,21.308 49.922,21.308 C50.2766684,21.308 50.5729988,21.3639994 50.811,21.476 C51.0490012,21.5880006 51.2379993,21.741999 51.378,21.938 C51.5180007,22.134001 51.6159997,22.3649987 51.672,22.631 C51.7280003,22.8970013 51.756,23.1839985 51.756,23.492 L51.756,28 L52.638,28 L52.638,23.352 C52.638,22.9226645 52.5960004,22.5353351 52.512,22.19 C52.4279996,21.8446649 52.2833344,21.5530012 52.078,21.315 C51.8726656,21.0769988 51.5996684,20.8926673 51.259,20.762 C50.9183316,20.6313327 50.4960025,20.566 49.992,20.566 C49.4786641,20.566 49.0073355,20.6989987 48.578,20.965 C48.1486645,21.2310013 47.8500008,21.5833311 47.682,22.022 L47.654,22.022 L47.654,18.004 L46.772,18.004 Z M55.704,20.776 L55.704,18.606 L54.822,18.606 L54.822,20.776 L53.562,20.776 L53.562,21.518 L54.822,21.518 L54.822,26.46 C54.8126666,27.0760031 54.9246655,27.4983322 55.158,27.727 C55.3913345,27.9556678 55.8019971,28.07 56.39,28.07 C56.5206673,28.07 56.6513327,28.0653334 56.782,28.056 C56.9126673,28.0466666 57.0433327,28.042 57.174,28.042 L57.174,27.3 C56.9219987,27.3280001 56.6700013,27.342 56.418,27.342 C56.1006651,27.3233332 55.9023337,27.2323341 55.823,27.069 C55.7436663,26.9056658 55.704,26.6793348 55.704,26.39 L55.704,21.518 L57.174,21.518 L57.174,20.776 L55.704,20.776 Z M69.816,21.028 L70.768,21.028 C70.7026663,20.5053307 70.5463346,20.0433353 70.299,19.642 C70.0516654,19.2406647 69.7436685,18.9023347 69.375,18.627 C69.0063315,18.3516653 68.5956689,18.1440007 68.143,18.004 C67.6903311,17.8639993 67.2260024,17.794 66.75,17.794 C65.9659961,17.794 65.2776696,17.9363319 64.685,18.221 C64.0923304,18.5056681 63.600002,18.8883309 63.208,19.369 C62.815998,19.8496691 62.522001,20.4026635 62.326,21.028 C62.129999,21.6533365 62.032,22.3113299 62.032,23.002 C62.032,23.6926701 62.129999,24.3506635 62.326,24.976 C62.522001,25.6013365 62.815998,26.1519976 63.208,26.628 C63.600002,27.1040024 64.0923304,27.4843319 64.685,27.769 C65.2776696,28.0536681 65.9659961,28.196 66.75,28.196 C67.3380029,28.196 67.8723309,28.1026676 68.353,27.916 C68.8336691,27.7293324 69.2513316,27.4633351 69.606,27.118 C69.9606684,26.7726649 70.2499989,26.3526691 70.474,25.858 C70.6980011,25.3633309 70.8426663,24.8080031 70.908,24.192 L69.956,24.192 C69.9093331,24.6400022 69.8020008,25.0576647 69.634,25.445 C69.4659992,25.8323353 69.246668,26.1706652 68.976,26.46 C68.705332,26.7493348 68.3833352,26.9779992 68.01,27.146 C67.6366648,27.3140008 67.216669,27.398 66.75,27.398 C66.08733,27.398 65.5180024,27.2720013 65.042,27.02 C64.5659976,26.7679987 64.1763349,26.4343354 63.873,26.019 C63.5696652,25.6036646 63.3456674,25.132336 63.201,24.605 C63.0563326,24.077664 62.984,23.543336 62.984,23.002 C62.984,22.4513306 63.0563326,21.9146693 63.201,21.392 C63.3456674,20.8693307 63.5696652,20.4003354 63.873,19.985 C64.1763349,19.5696646 64.5659976,19.2360013 65.042,18.984 C65.5180024,18.7319987 66.08733,18.606 66.75,18.606 C67.1140018,18.606 67.461665,18.6596661 67.793,18.767 C68.124335,18.8743339 68.4276653,19.0306656 68.703,19.236 C68.9783347,19.4413344 69.2116657,19.6956651 69.403,19.999 C69.5943343,20.3023349 69.7319996,20.6453314 69.816,21.028 Z M72.112,22.988 C72.1400001,22.5679979 72.2286659,22.2040015 72.378,21.896 C72.5273341,21.5879985 72.7303321,21.336001 72.987,21.14 C73.243668,20.943999 73.5446649,20.7993338 73.89,20.706 C74.2353351,20.6126662 74.6179979,20.566 75.038,20.566 C75.3553349,20.566 75.6726651,20.596333 75.99,20.657 C76.3073349,20.717667 76.5919987,20.8319992 76.844,21 C77.0960013,21.1680008 77.3013325,21.4036651 77.46,21.707 C77.6186675,22.0103348 77.698,22.4046642 77.698,22.89 L77.698,26.726 C77.698,27.0806684 77.8706649,27.258 78.216,27.258 C78.3186672,27.258 78.4119996,27.2393335 78.496,27.202 L78.496,27.944 C78.3933328,27.9626668 78.3023337,27.9766666 78.223,27.986 C78.1436663,27.9953334 78.0433339,28 77.922,28 C77.6979989,28 77.518334,27.969667 77.383,27.909 C77.247666,27.848333 77.142667,27.7620006 77.068,27.65 C76.993333,27.5379994 76.9443335,27.4050008 76.921,27.251 C76.8976666,27.0969992 76.886,26.9266676 76.886,26.74 L76.858,26.74 C76.6993325,26.9733345 76.5383342,27.1809991 76.375,27.363 C76.2116659,27.5450009 76.0296677,27.6966661 75.829,27.818 C75.6283323,27.9393339 75.399668,28.0326663 75.143,28.098 C74.8863321,28.1633337 74.5806684,28.196 74.226,28.196 C73.8899983,28.196 73.5750015,28.1563337 73.281,28.077 C72.9869985,27.9976663 72.7303344,27.8716675 72.511,27.699 C72.2916656,27.5263325 72.1190006,27.3070013 71.993,27.041 C71.8669994,26.7749987 71.804,26.4600018 71.804,26.096 C71.804,25.5919975 71.9159989,25.1976681 72.14,24.913 C72.3640011,24.6283319 72.6603315,24.4113341 73.029,24.262 C73.3976685,24.1126659 73.8129977,24.007667 74.275,23.947 C74.7370023,23.886333 75.2059976,23.8280003 75.682,23.772 C75.8686676,23.7533332 76.0319993,23.7300001 76.172,23.702 C76.3120007,23.6739999 76.4286662,23.6250004 76.522,23.555 C76.6153338,23.4849996 76.6876664,23.3893339 76.739,23.268 C76.7903336,23.1466661 76.816,22.988001 76.816,22.792 C76.816,22.4933318 76.7670005,22.2483343 76.669,22.057 C76.5709995,21.8656657 76.4356675,21.7140006 76.263,21.602 C76.0903325,21.4899994 75.8896678,21.4130002 75.661,21.371 C75.4323322,21.3289998 75.1873346,21.308 74.926,21.308 C74.3659972,21.308 73.9086684,21.4409987 73.554,21.707 C73.1993316,21.9730013 73.0126668,22.3999971 72.994,22.988 L72.112,22.988 Z M76.816,24.052 L76.788,24.052 C76.7319997,24.1546672 76.6246675,24.2293331 76.466,24.276 C76.3073325,24.3226669 76.1673339,24.3553332 76.046,24.374 C75.6726648,24.4393337 75.2876687,24.4976664 74.891,24.549 C74.4943314,24.6003336 74.1326683,24.6773328 73.806,24.78 C73.4793317,24.8826672 73.2110011,25.0296657 73.001,25.221 C72.790999,25.4123343 72.686,25.6853316 72.686,26.04 C72.686,26.2640011 72.7303329,26.4623325 72.819,26.635 C72.9076671,26.8076675 73.0266659,26.9569994 73.176,27.083 C73.3253341,27.2090006 73.497999,27.3046663 73.694,27.37 C73.890001,27.4353337 74.0906656,27.468 74.296,27.468 C74.6320017,27.468 74.9539985,27.4166672 75.262,27.314 C75.5700015,27.2113328 75.8383322,27.062001 76.067,26.866 C76.2956678,26.669999 76.477666,26.4320014 76.613,26.152 C76.748334,25.8719986 76.816,25.5546684 76.816,25.2 L76.816,24.052 Z M79.462,20.776 L80.274,20.776 L80.274,22.148 L80.302,22.148 C80.5073344,21.6439975 80.8409977,21.2543347 81.303,20.979 C81.7650023,20.7036653 82.2899971,20.566 82.878,20.566 C83.4286694,20.566 83.906998,20.6686656 84.313,20.874 C84.719002,21.0793344 85.057332,21.3569983 85.328,21.707 C85.598668,22.0570017 85.7993327,22.4629977 85.93,22.925 C86.0606673,23.3870023 86.126,23.8746641 86.126,24.388 C86.126,24.9013359 86.0606673,25.3889977 85.93,25.851 C85.7993327,26.3130023 85.598668,26.7189982 85.328,27.069 C85.057332,27.4190017 84.719002,27.6943323 84.313,27.895 C83.906998,28.0956677 83.4286694,28.196 82.878,28.196 C82.6166654,28.196 82.3553346,28.1633337 82.094,28.098 C81.8326654,28.0326663 81.5900011,27.9346673 81.366,27.804 C81.1419989,27.6733327 80.9436675,27.510001 80.771,27.314 C80.5983325,27.117999 80.4653338,26.8893346 80.372,26.628 L80.344,26.628 L80.344,30.66 L79.462,30.66 L79.462,20.776 Z M85.244,24.388 C85.244,24.0146648 85.1996671,23.6436685 85.111,23.275 C85.0223329,22.9063315 84.8823343,22.5773348 84.691,22.288 C84.4996657,21.9986652 84.2546682,21.7630009 83.956,21.581 C83.6573318,21.3989991 83.2980021,21.308 82.878,21.308 C82.3926642,21.308 81.9866683,21.3919992 81.66,21.56 C81.3333317,21.7280008 81.072001,21.9519986 80.876,22.232 C80.679999,22.5120014 80.5423337,22.8386648 80.463,23.212 C80.3836663,23.5853352 80.344,23.9773313 80.344,24.388 C80.344,24.7613352 80.3883329,25.1323315 80.477,25.501 C80.5656671,25.8696685 80.7103323,26.1986652 80.911,26.488 C81.1116677,26.7773348 81.3729984,27.0129991 81.695,27.195 C82.0170016,27.3770009 82.411331,27.468 82.878,27.468 C83.2980021,27.468 83.6573318,27.3770009 83.956,27.195 C84.2546682,27.0129991 84.4996657,26.7773348 84.691,26.488 C84.8823343,26.1986652 85.0223329,25.8696685 85.111,25.501 C85.1996671,25.1323315 85.244,24.7613352 85.244,24.388 Z M91.824,22.89 L92.706,22.89 C92.6873332,22.497998 92.6080007,22.1573348 92.468,21.868 C92.3279993,21.5786652 92.1390012,21.336001 91.901,21.14 C91.6629988,20.943999 91.3876682,20.7993338 91.075,20.706 C90.7623318,20.6126662 90.4240018,20.566 90.06,20.566 C89.7426651,20.566 89.4230016,20.603333 89.101,20.678 C88.7789984,20.752667 88.4873346,20.8693325 88.226,21.028 C87.9646654,21.1866675 87.7523342,21.3966654 87.589,21.658 C87.4256659,21.9193346 87.344,22.2319982 87.344,22.596 C87.344,22.9040015 87.3953328,23.162999 87.498,23.373 C87.6006672,23.5830011 87.7429991,23.7603326 87.925,23.905 C88.1070009,24.0496674 88.3193321,24.1709995 88.562,24.269 C88.8046679,24.3670005 89.0706652,24.453333 89.36,24.528 L90.494,24.78 C90.690001,24.8266669 90.8836657,24.8826663 91.075,24.948 C91.2663343,25.0133337 91.4366659,25.0949995 91.586,25.193 C91.7353341,25.2910005 91.8543329,25.4123326 91.943,25.557 C92.0316671,25.7016674 92.076,25.8813323 92.076,26.096 C92.076,26.3480013 92.0130006,26.5603325 91.887,26.733 C91.7609994,26.9056675 91.600001,27.0479994 91.404,27.16 C91.207999,27.2720006 90.9956678,27.3513331 90.767,27.398 C90.5383322,27.4446669 90.3166677,27.468 90.102,27.468 C89.5139971,27.468 89.0216687,27.3163349 88.625,27.013 C88.2283314,26.7096651 88.0113335,26.2593363 87.974,25.662 L87.092,25.662 C87.166667,26.5486711 87.467664,27.1926647 87.995,27.594 C88.522336,27.9953353 89.2106624,28.196 90.06,28.196 C90.3960017,28.196 90.7366649,28.158667 91.082,28.084 C91.4273351,28.009333 91.7376653,27.8856675 92.013,27.713 C92.2883347,27.5403325 92.5146658,27.3163347 92.692,27.041 C92.8693342,26.7656653 92.958,26.432002 92.958,26.04 C92.958,25.7226651 92.8973339,25.4473345 92.776,25.214 C92.6546661,24.9806655 92.4983343,24.7846675 92.307,24.626 C92.1156657,24.4673325 91.8963346,24.3390005 91.649,24.241 C91.4016654,24.1429995 91.1520013,24.0753335 90.9,24.038 L89.724,23.772 C89.5746659,23.7346665 89.4113342,23.685667 89.234,23.625 C89.0566658,23.564333 88.8933341,23.4873338 88.744,23.394 C88.5946659,23.3006662 88.4710005,23.186334 88.373,23.051 C88.2749995,22.915666 88.226,22.750001 88.226,22.554 C88.226,22.3206655 88.2773328,22.1246675 88.38,21.966 C88.4826672,21.8073325 88.6179992,21.6790005 88.786,21.581 C88.9540008,21.4829995 89.1383323,21.4130002 89.339,21.371 C89.5396677,21.3289998 89.737999,21.308 89.934,21.308 C90.1860013,21.308 90.4239989,21.338333 90.648,21.399 C90.8720011,21.459667 91.0703325,21.5553327 91.243,21.686 C91.4156675,21.8166673 91.5533328,21.9823323 91.656,22.183 C91.7586672,22.3836677 91.8146666,22.619332 91.824,22.89 Z M100.084,28 L100.084,20.776 L99.202,20.776 L99.202,24.57 C99.202,24.9340018 99.1600004,25.2909983 99.076,25.641 C98.9919996,25.9910018 98.8613342,26.301332 98.684,26.572 C98.5066658,26.842668 98.282668,27.0596659 98.012,27.223 C97.741332,27.3863341 97.4146686,27.468 97.032,27.468 C96.3319965,27.468 95.8396681,27.3000017 95.555,26.964 C95.2703319,26.6279983 95.1186668,26.1333366 95.1,25.48 L95.1,20.776 L94.218,20.776 L94.218,25.466 C94.218,25.8953355 94.2646662,26.2779983 94.358,26.614 C94.4513338,26.9500017 94.5983323,27.2346655 94.799,27.468 C94.9996677,27.7013345 95.2609984,27.8809994 95.583,28.007 C95.9050016,28.1330006 96.2946644,28.196 96.752,28.196 C97.293336,28.196 97.7856645,28.067668 98.229,27.811 C98.6723356,27.554332 99.0106655,27.1833358 99.244,26.698 L99.272,26.698 L99.272,28 L100.084,28 Z M101.764,18.004 L101.764,28 L102.646,28 L102.646,18.004 L101.764,18.004 Z M109.534,23.884 C109.524667,23.5479983 109.466334,23.2260015 109.359,22.918 C109.251666,22.6099985 109.100001,22.3370012 108.904,22.099 C108.707999,21.8609988 108.470001,21.6696674 108.19,21.525 C107.909999,21.3803326 107.592668,21.308 107.238,21.308 C106.873998,21.308 106.552001,21.3803326 106.272,21.525 C105.991999,21.6696674 105.754001,21.8609988 105.558,22.099 C105.361999,22.3370012 105.205667,22.6123318 105.089,22.925 C104.972333,23.2376682 104.895334,23.5573317 104.858,23.884 L109.534,23.884 Z M104.858,24.626 C104.858,24.9433349 104.902333,25.2723316 104.991,25.613 C105.079667,25.9536684 105.221999,26.259332 105.418,26.53 C105.614001,26.800668 105.861332,27.0246658 106.16,27.202 C106.458668,27.3793342 106.817998,27.468 107.238,27.468 C107.882003,27.468 108.385998,27.3000017 108.75,26.964 C109.114002,26.6279983 109.365999,26.1800028 109.506,25.62 L110.388,25.62 C110.201332,26.4413374 109.858336,27.0759978 109.359,27.524 C108.859664,27.9720022 108.152671,28.196 107.238,28.196 C106.668664,28.196 106.176335,28.0956677 105.761,27.895 C105.345665,27.6943323 105.007335,27.4190017 104.746,27.069 C104.484665,26.7189982 104.291001,26.3130023 104.165,25.851 C104.038999,25.3889977 103.976,24.9013359 103.976,24.388 C103.976,23.9119976 104.038999,23.4453356 104.165,22.988 C104.291001,22.5306644 104.484665,22.1223351 104.746,21.763 C105.007335,21.4036649 105.345665,21.1143344 105.761,20.895 C106.176335,20.6756656 106.668664,20.566 107.238,20.566 C107.81667,20.566 108.311331,20.6826655 108.722,20.916 C109.132669,21.1493345 109.466332,21.4549981 109.723,21.833 C109.979668,22.2110019 110.163999,22.6449975 110.276,23.135 C110.388001,23.6250025 110.434667,24.1219975 110.416,24.626 L104.858,24.626 Z" mask="url(#-success-(right-capsule)-b)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="138" height="45" viewBox="0 0 138 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="138" height="45" fill="#3ADB76"/>
<path fill="#FFF" d="M44.654,24.71 L43.702,24.71 C43.6739999,25.3260031 43.7556657,25.8533311 43.947,26.292 C44.1383343,26.7306689 44.4113316,27.0899986 44.766,27.37 C45.1206684,27.6500014 45.5499975,27.857666 46.054,27.993 C46.5580025,28.128334 47.1039971,28.196 47.692,28.196 C48.2800029,28.196 48.7839979,28.1423339 49.204,28.035 C49.6240021,27.9276661 49.9763319,27.7876675 50.261,27.615 C50.5456681,27.4423325 50.7696658,27.2486677 50.933,27.034 C51.0963341,26.8193323 51.2223329,26.6070011 51.311,26.397 C51.3996671,26.1869989 51.4556665,25.9886676 51.479,25.802 C51.5023334,25.6153324 51.514,25.4660006 51.514,25.354 C51.514,24.9433313 51.446334,24.5933348 51.311,24.304 C51.175666,24.0146652 50.9890012,23.7696677 50.751,23.569 C50.5129988,23.3683323 50.2376682,23.200334 49.925,23.065 C49.6123318,22.929666 49.2786684,22.8153338 48.924,22.722 L46.488,22.12 C46.2826656,22.0733331 46.0890009,22.012667 45.907,21.938 C45.7249991,21.863333 45.5640007,21.7653339 45.424,21.644 C45.2839993,21.5226661 45.1743337,21.3756675 45.095,21.203 C45.0156663,21.0303325 44.976,20.8273345 44.976,20.594 C44.976,20.2206648 45.0459993,19.9080013 45.186,19.656 C45.3260007,19.4039987 45.5103322,19.2010008 45.739,19.047 C45.9676678,18.8929992 46.2336651,18.7810003 46.537,18.711 C46.8403348,18.6409996 47.1553317,18.606 47.482,18.606 C47.8366684,18.606 48.1749984,18.6549995 48.497,18.753 C48.8190016,18.8510005 49.1036654,18.9956657 49.351,19.187 C49.5983346,19.3783343 49.7989992,19.6163319 49.953,19.901 C50.1070008,20.1856681 50.1933332,20.5193314 50.212,20.902 L51.164,20.902 C51.164,20.3886641 51.0636677,19.9383353 50.863,19.551 C50.6623323,19.1636647 50.3940017,18.8393346 50.058,18.578 C49.7219983,18.3166654 49.3300022,18.1206673 48.882,17.99 C48.4339978,17.8593327 47.9626691,17.794 47.468,17.794 C46.7679965,17.794 46.1940022,17.8943323 45.746,18.095 C45.2979978,18.2956677 44.945668,18.5406652 44.689,18.83 C44.432332,19.1193348 44.2573338,19.4273317 44.164,19.754 C44.0706662,20.0806683 44.024,20.3653321 44.024,20.608 C44.024,21.000002 44.0869994,21.331332 44.213,21.602 C44.3390006,21.872668 44.5046656,22.1013324 44.71,22.288 C44.9153344,22.4746676 45.1556653,22.6239994 45.431,22.736 C45.7063347,22.8480006 45.9886652,22.941333 46.278,23.016 L48.504,23.562 C48.7373345,23.6180003 48.9753321,23.6903329 49.218,23.779 C49.4606679,23.8676671 49.6823323,23.9819993 49.883,24.122 C50.0836677,24.2620007 50.2469994,24.4346656 50.373,24.64 C50.4990006,24.8453344 50.562,25.0879986 50.562,25.368 C50.562,25.7320018 50.4733342,26.042332 50.296,26.299 C50.1186658,26.555668 49.8970013,26.7656658 49.631,26.929 C49.3649987,27.0923341 49.0780015,27.211333 48.77,27.286 C48.4619985,27.360667 48.1773346,27.398 47.916,27.398 C47.4586644,27.398 47.0293353,27.3536671 46.628,27.265 C46.2266647,27.1763329 45.8790015,27.0293344 45.585,26.824 C45.2909985,26.6186656 45.0600008,26.3433351 44.892,25.998 C44.7239992,25.6526649 44.6446666,25.2233359 44.654,24.71 Z M58.71,28 L58.71,20.776 L57.828,20.776 L57.828,24.57 C57.828,24.9340018 57.7860004,25.2909983 57.702,25.641 C57.6179996,25.9910018 57.4873342,26.301332 57.31,26.572 C57.1326658,26.842668 56.908668,27.0596659 56.638,27.223 C56.367332,27.3863341 56.0406686,27.468 55.658,27.468 C54.9579965,27.468 54.4656681,27.3000017 54.181,26.964 C53.8963319,26.6279983 53.7446668,26.1333366 53.726,25.48 L53.726,20.776 L52.844,20.776 L52.844,25.466 C52.844,25.8953355 52.8906662,26.2779983 52.984,26.614 C53.0773338,26.9500017 53.2243323,27.2346655 53.425,27.468 C53.6256677,27.7013345 53.8869984,27.8809994 54.209,28.007 C54.5310016,28.1330006 54.9206644,28.196 55.378,28.196 C55.919336,28.196 56.4116644,28.067668 56.855,27.811 C57.2983355,27.554332 57.6366655,27.1833358 57.87,26.698 L57.898,26.698 L57.898,28 L58.71,28 Z M65.472,23.044 L66.354,23.044 C66.2513328,22.2133292 65.9316693,21.5926687 65.395,21.182 C64.8583306,20.7713313 64.2026705,20.566 63.428,20.566 C62.8773306,20.566 62.3896688,20.6686656 61.965,20.874 C61.5403312,21.0793344 61.1833348,21.3546649 60.894,21.7 C60.6046652,22.0453351 60.3853341,22.4489977 60.236,22.911 C60.0866659,23.3730023 60.012,23.8653307 60.012,24.388 C60.012,24.9106693 60.0866659,25.4029977 60.236,25.865 C60.3853341,26.3270023 60.6046652,26.7306649 60.894,27.076 C61.1833348,27.4213351 61.5403312,27.6943323 61.965,27.895 C62.3896688,28.0956677 62.8773306,28.196 63.428,28.196 C64.2493374,28.196 64.9213307,27.9510025 65.444,27.461 C65.9666693,26.9709975 66.2886661,26.2873377 66.41,25.41 L65.528,25.41 C65.4999999,25.7086682 65.4253339,25.9839987 65.304,26.236 C65.1826661,26.4880013 65.0286676,26.7049991 64.842,26.887 C64.6553324,27.0690009 64.4406679,27.2113328 64.198,27.314 C63.9553321,27.4166672 63.698668,27.468 63.428,27.468 C63.0079979,27.468 62.6393349,27.3793342 62.322,27.202 C62.0046651,27.0246658 61.741001,26.7913348 61.531,26.502 C61.320999,26.2126652 61.1623339,25.8836685 61.055,25.515 C60.9476661,25.1463315 60.894,24.7706686 60.894,24.388 C60.894,24.0053314 60.9476661,23.6296685 61.055,23.261 C61.1623339,22.8923315 61.320999,22.5633348 61.531,22.274 C61.741001,21.9846652 62.0046651,21.7513342 62.322,21.574 C62.6393349,21.3966658 63.0079979,21.308 63.428,21.308 C64.0160029,21.308 64.4733317,21.4619985 64.8,21.77 C65.1266683,22.0780015 65.3506661,22.502664 65.472,23.044 Z M72.738,23.044 L73.62,23.044 C73.5173328,22.2133292 73.1976693,21.5926687 72.661,21.182 C72.1243306,20.7713313 71.4686705,20.566 70.694,20.566 C70.1433306,20.566 69.6556688,20.6686656 69.231,20.874 C68.8063312,21.0793344 68.4493348,21.3546649 68.16,21.7 C67.8706652,22.0453351 67.6513341,22.4489977 67.502,22.911 C67.3526659,23.3730023 67.278,23.8653307 67.278,24.388 C67.278,24.9106693 67.3526659,25.4029977 67.502,25.865 C67.6513341,26.3270023 67.8706652,26.7306649 68.16,27.076 C68.4493348,27.4213351 68.8063312,27.6943323 69.231,27.895 C69.6556688,28.0956677 70.1433306,28.196 70.694,28.196 C71.5153374,28.196 72.1873307,27.9510025 72.71,27.461 C73.2326693,26.9709975 73.5546661,26.2873377 73.676,25.41 L72.794,25.41 C72.7659999,25.7086682 72.6913339,25.9839987 72.57,26.236 C72.4486661,26.4880013 72.2946676,26.7049991 72.108,26.887 C71.9213324,27.0690009 71.7066679,27.2113328 71.464,27.314 C71.2213321,27.4166672 70.964668,27.468 70.694,27.468 C70.2739979,27.468 69.9053349,27.3793342 69.588,27.202 C69.2706651,27.0246658 69.007001,26.7913348 68.797,26.502 C68.586999,26.2126652 68.4283339,25.8836685 68.321,25.515 C68.2136661,25.1463315 68.16,24.7706686 68.16,24.388 C68.16,24.0053314 68.2136661,23.6296685 68.321,23.261 C68.4283339,22.8923315 68.586999,22.5633348 68.797,22.274 C69.007001,21.9846652 69.2706651,21.7513342 69.588,21.574 C69.9053349,21.3966658 70.2739979,21.308 70.694,21.308 C71.2820029,21.308 71.7393317,21.4619985 72.066,21.77 C72.3926683,22.0780015 72.6166661,22.502664 72.738,23.044 Z M80.102,23.884 C80.0926666,23.5479983 80.0343339,23.2260015 79.927,22.918 C79.8196661,22.6099985 79.668001,22.3370012 79.472,22.099 C79.275999,21.8609988 79.0380014,21.6696674 78.758,21.525 C78.4779986,21.3803326 78.1606684,21.308 77.806,21.308 C77.4419982,21.308 77.1200014,21.3803326 76.84,21.525 C76.5599986,21.6696674 76.322001,21.8609988 76.126,22.099 C75.929999,22.3370012 75.7736673,22.6123318 75.657,22.925 C75.5403328,23.2376682 75.4633335,23.5573317 75.426,23.884 L80.102,23.884 Z M75.426,24.626 C75.426,24.9433349 75.4703329,25.2723316 75.559,25.613 C75.6476671,25.9536684 75.789999,26.259332 75.986,26.53 C76.182001,26.800668 76.4293318,27.0246658 76.728,27.202 C77.0266682,27.3793342 77.3859979,27.468 77.806,27.468 C78.4500032,27.468 78.9539982,27.3000017 79.318,26.964 C79.6820018,26.6279983 79.9339993,26.1800028 80.074,25.62 L80.956,25.62 C80.7693324,26.4413374 80.4263358,27.0759978 79.927,27.524 C79.4276642,27.9720022 78.7206712,28.196 77.806,28.196 C77.2366638,28.196 76.7443354,28.0956677 76.329,27.895 C75.9136646,27.6943323 75.5753346,27.4190017 75.314,27.069 C75.0526654,26.7189982 74.8590006,26.3130023 74.733,25.851 C74.6069994,25.3889977 74.544,24.9013359 74.544,24.388 C74.544,23.9119976 74.6069994,23.4453356 74.733,22.988 C74.8590006,22.5306644 75.0526654,22.1223351 75.314,21.763 C75.5753346,21.4036649 75.9136646,21.1143344 76.329,20.895 C76.7443354,20.6756656 77.2366638,20.566 77.806,20.566 C78.3846696,20.566 78.8793313,20.6826655 79.29,20.916 C79.7006687,21.1493345 80.034332,21.4549981 80.291,21.833 C80.547668,22.2110019 80.7319994,22.6449975 80.844,23.135 C80.9560006,23.6250025 81.0026668,24.1219975 80.984,24.626 L75.426,24.626 Z M86.5,22.89 L87.382,22.89 C87.3633332,22.497998 87.2840007,22.1573348 87.144,21.868 C87.0039993,21.5786652 86.8150012,21.336001 86.577,21.14 C86.3389988,20.943999 86.0636682,20.7993338 85.751,20.706 C85.4383318,20.6126662 85.1000018,20.566 84.736,20.566 C84.4186651,20.566 84.0990016,20.603333 83.777,20.678 C83.4549984,20.752667 83.1633346,20.8693325 82.902,21.028 C82.6406654,21.1866675 82.4283341,21.3966654 82.265,21.658 C82.1016658,21.9193346 82.02,22.2319982 82.02,22.596 C82.02,22.9040015 82.0713328,23.162999 82.174,23.373 C82.2766672,23.5830011 82.4189991,23.7603326 82.601,23.905 C82.7830009,24.0496674 82.9953321,24.1709995 83.238,24.269 C83.4806679,24.3670005 83.7466652,24.453333 84.036,24.528 L85.17,24.78 C85.366001,24.8266669 85.5596657,24.8826663 85.751,24.948 C85.9423343,25.0133337 86.1126659,25.0949995 86.262,25.193 C86.4113341,25.2910005 86.5303329,25.4123326 86.619,25.557 C86.7076671,25.7016674 86.752,25.8813323 86.752,26.096 C86.752,26.3480013 86.6890006,26.5603325 86.563,26.733 C86.4369994,26.9056675 86.276001,27.0479994 86.08,27.16 C85.883999,27.2720006 85.6716678,27.3513331 85.443,27.398 C85.2143322,27.4446669 84.9926677,27.468 84.778,27.468 C84.1899971,27.468 83.6976686,27.3163349 83.301,27.013 C82.9043313,26.7096651 82.6873335,26.2593363 82.65,25.662 L81.768,25.662 C81.842667,26.5486711 82.143664,27.1926647 82.671,27.594 C83.198336,27.9953353 83.8866624,28.196 84.736,28.196 C85.0720017,28.196 85.4126649,28.158667 85.758,28.084 C86.1033351,28.009333 86.4136653,27.8856675 86.689,27.713 C86.9643347,27.5403325 87.1906658,27.3163347 87.368,27.041 C87.5453342,26.7656653 87.634,26.432002 87.634,26.04 C87.634,25.7226651 87.5733339,25.4473345 87.452,25.214 C87.3306661,24.9806655 87.1743343,24.7846675 86.983,24.626 C86.7916657,24.4673325 86.5723346,24.3390005 86.325,24.241 C86.0776654,24.1429995 85.8280013,24.0753335 85.576,24.038 L84.4,23.772 C84.2506659,23.7346665 84.0873342,23.685667 83.91,23.625 C83.7326658,23.564333 83.5693341,23.4873338 83.42,23.394 C83.2706659,23.3006662 83.1470005,23.186334 83.049,23.051 C82.9509995,22.915666 82.902,22.750001 82.902,22.554 C82.902,22.3206655 82.9533328,22.1246675 83.056,21.966 C83.1586672,21.8073325 83.2939992,21.6790005 83.462,21.581 C83.6300008,21.4829995 83.8143323,21.4130002 84.015,21.371 C84.2156677,21.3289998 84.413999,21.308 84.61,21.308 C84.8620013,21.308 85.0999989,21.338333 85.324,21.399 C85.5480011,21.459667 85.7463325,21.5553327 85.919,21.686 C86.0916675,21.8166673 86.2293328,21.9823323 86.332,22.183 C86.4346672,22.3836677 86.4906666,22.619332 86.5,22.89 Z M93.234,22.89 L94.116,22.89 C94.0973332,22.497998 94.0180007,22.1573348 93.878,21.868 C93.7379993,21.5786652 93.5490012,21.336001 93.311,21.14 C93.0729988,20.943999 92.7976682,20.7993338 92.485,20.706 C92.1723318,20.6126662 91.8340018,20.566 91.47,20.566 C91.1526651,20.566 90.8330016,20.603333 90.511,20.678 C90.1889984,20.752667 89.8973346,20.8693325 89.636,21.028 C89.3746654,21.1866675 89.1623341,21.3966654 88.999,21.658 C88.8356658,21.9193346 88.754,22.2319982 88.754,22.596 C88.754,22.9040015 88.8053328,23.162999 88.908,23.373 C89.0106672,23.5830011 89.1529991,23.7603326 89.335,23.905 C89.5170009,24.0496674 89.7293321,24.1709995 89.972,24.269 C90.2146679,24.3670005 90.4806652,24.453333 90.77,24.528 L91.904,24.78 C92.100001,24.8266669 92.2936657,24.8826663 92.485,24.948 C92.6763343,25.0133337 92.8466659,25.0949995 92.996,25.193 C93.1453341,25.2910005 93.2643329,25.4123326 93.353,25.557 C93.4416671,25.7016674 93.486,25.8813323 93.486,26.096 C93.486,26.3480013 93.4230006,26.5603325 93.297,26.733 C93.1709994,26.9056675 93.010001,27.0479994 92.814,27.16 C92.617999,27.2720006 92.4056678,27.3513331 92.177,27.398 C91.9483322,27.4446669 91.7266677,27.468 91.512,27.468 C90.9239971,27.468 90.4316686,27.3163349 90.035,27.013 C89.6383314,26.7096651 89.4213335,26.2593363 89.384,25.662 L88.502,25.662 C88.576667,26.5486711 88.877664,27.1926647 89.405,27.594 C89.932336,27.9953353 90.6206624,28.196 91.47,28.196 C91.8060017,28.196 92.1466649,28.158667 92.492,28.084 C92.8373351,28.009333 93.1476653,27.8856675 93.423,27.713 C93.6983347,27.5403325 93.9246658,27.3163347 94.102,27.041 C94.2793342,26.7656653 94.368,26.432002 94.368,26.04 C94.368,25.7226651 94.3073339,25.4473345 94.186,25.214 C94.0646661,24.9806655 93.9083343,24.7846675 93.717,24.626 C93.5256657,24.4673325 93.3063346,24.3390005 93.059,24.241 C92.8116654,24.1429995 92.5620013,24.0753335 92.31,24.038 L91.134,23.772 C90.9846659,23.7346665 90.8213342,23.685667 90.644,23.625 C90.4666658,23.564333 90.3033341,23.4873338 90.154,23.394 C90.0046659,23.3006662 89.8810005,23.186334 89.783,23.051 C89.6849995,22.915666 89.636,22.750001 89.636,22.554 C89.636,22.3206655 89.6873328,22.1246675 89.79,21.966 C89.8926672,21.8073325 90.0279992,21.6790005 90.196,21.581 C90.3640008,21.4829995 90.5483323,21.4130002 90.749,21.371 C90.9496677,21.3289998 91.147999,21.308 91.344,21.308 C91.5960013,21.308 91.8339989,21.338333 92.058,21.399 C92.2820011,21.459667 92.4803325,21.5553327 92.653,21.686 C92.8256675,21.8166673 92.9633328,21.9823323 93.066,22.183 C93.1686672,22.3836677 93.2246666,22.619332 93.234,22.89 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="138" height="45" viewBox="0 0 138 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="138" height="45" fill="#777"/>
<rect width="138" height="45" fill="#FFF" opacity=".302"/>
<path fill="#FFF" d="M43.954,18.004 L47.412,18.004 C48.9333409,18.0413335 50.0789962,18.4683293 50.849,19.285 C51.6190038,20.1016708 52.004,21.3406584 52.004,23.002 C52.004,24.6633416 51.6190038,25.9023293 50.849,26.719 C50.0789962,27.5356708 48.9333409,27.9626665 47.412,28 L43.954,28 L43.954,18.004 Z M44.906,27.188 L46.936,27.188 C47.6546703,27.188 48.2729974,27.1110008 48.791,26.957 C49.3090026,26.8029992 49.7359983,26.5580017 50.072,26.222 C50.4080017,25.8859983 50.6553325,25.4520027 50.814,24.92 C50.9726675,24.3879973 51.052,23.7486704 51.052,23.002 C51.052,22.2553296 50.9726675,21.6160027 50.814,21.084 C50.6553325,20.5519973 50.4080017,20.1180017 50.072,19.782 C49.7359983,19.4459983 49.3090026,19.2010008 48.791,19.047 C48.2729974,18.8929992 47.6546703,18.816 46.936,18.816 L44.906,18.816 L44.906,27.188 Z M53.39,18.004 L53.39,19.418 L54.272,19.418 L54.272,18.004 L53.39,18.004 Z M53.39,20.776 L53.39,28 L54.272,28 L54.272,20.776 L53.39,20.776 Z M60.292,22.89 L61.174,22.89 C61.1553332,22.497998 61.0760007,22.1573348 60.936,21.868 C60.7959993,21.5786652 60.6070012,21.336001 60.369,21.14 C60.1309988,20.943999 59.8556682,20.7993338 59.543,20.706 C59.2303318,20.6126662 58.8920018,20.566 58.528,20.566 C58.2106651,20.566 57.8910016,20.603333 57.569,20.678 C57.2469984,20.752667 56.9553346,20.8693325 56.694,21.028 C56.4326654,21.1866675 56.2203341,21.3966654 56.057,21.658 C55.8936659,21.9193346 55.812,22.2319982 55.812,22.596 C55.812,22.9040015 55.8633328,23.162999 55.966,23.373 C56.0686672,23.5830011 56.2109991,23.7603326 56.393,23.905 C56.5750009,24.0496674 56.7873321,24.1709995 57.03,24.269 C57.2726679,24.3670005 57.5386652,24.453333 57.828,24.528 L58.962,24.78 C59.158001,24.8266669 59.3516657,24.8826663 59.543,24.948 C59.7343343,25.0133337 59.9046659,25.0949995 60.054,25.193 C60.2033341,25.2910005 60.3223329,25.4123326 60.411,25.557 C60.4996671,25.7016674 60.544,25.8813323 60.544,26.096 C60.544,26.3480013 60.4810006,26.5603325 60.355,26.733 C60.2289994,26.9056675 60.068001,27.0479994 59.872,27.16 C59.675999,27.2720006 59.4636678,27.3513331 59.235,27.398 C59.0063322,27.4446669 58.7846677,27.468 58.57,27.468 C57.9819971,27.468 57.4896686,27.3163349 57.093,27.013 C56.6963314,26.7096651 56.4793335,26.2593363 56.442,25.662 L55.56,25.662 C55.634667,26.5486711 55.935664,27.1926647 56.463,27.594 C56.990336,27.9953353 57.6786624,28.196 58.528,28.196 C58.8640017,28.196 59.2046649,28.158667 59.55,28.084 C59.8953351,28.009333 60.2056653,27.8856675 60.481,27.713 C60.7563347,27.5403325 60.9826658,27.3163347 61.16,27.041 C61.3373342,26.7656653 61.426,26.432002 61.426,26.04 C61.426,25.7226651 61.3653339,25.4473345 61.244,25.214 C61.1226661,24.9806655 60.9663343,24.7846675 60.775,24.626 C60.5836657,24.4673325 60.3643346,24.3390005 60.117,24.241 C59.8696654,24.1429995 59.6200013,24.0753335 59.368,24.038 L58.192,23.772 C58.0426659,23.7346665 57.8793342,23.685667 57.702,23.625 C57.5246658,23.564333 57.3613341,23.4873338 57.212,23.394 C57.0626659,23.3006662 56.9390005,23.186334 56.841,23.051 C56.7429995,22.915666 56.694,22.750001 56.694,22.554 C56.694,22.3206655 56.7453328,22.1246675 56.848,21.966 C56.9506672,21.8073325 57.0859992,21.6790005 57.254,21.581 C57.4220008,21.4829995 57.6063323,21.4130002 57.807,21.371 C58.0076677,21.3289998 58.205999,21.308 58.402,21.308 C58.6540013,21.308 58.8919989,21.338333 59.116,21.399 C59.3400011,21.459667 59.5383325,21.5553327 59.711,21.686 C59.8836675,21.8166673 60.0213328,21.9823323 60.124,22.183 C60.2266672,22.3836677 60.2826666,22.619332 60.292,22.89 Z M62.616,22.988 C62.6440001,22.5679979 62.7326659,22.2040015 62.882,21.896 C63.0313341,21.5879985 63.234332,21.336001 63.491,21.14 C63.747668,20.943999 64.0486649,20.7993338 64.394,20.706 C64.7393351,20.6126662 65.1219979,20.566 65.542,20.566 C65.8593349,20.566 66.1766651,20.596333 66.494,20.657 C66.8113349,20.717667 67.0959987,20.8319992 67.348,21 C67.6000013,21.1680008 67.8053325,21.4036651 67.964,21.707 C68.1226675,22.0103348 68.202,22.4046642 68.202,22.89 L68.202,26.726 C68.202,27.0806684 68.3746649,27.258 68.72,27.258 C68.8226672,27.258 68.9159996,27.2393335 69,27.202 L69,27.944 C68.8973328,27.9626668 68.8063337,27.9766666 68.727,27.986 C68.6476663,27.9953334 68.5473339,28 68.426,28 C68.2019989,28 68.022334,27.969667 67.887,27.909 C67.751666,27.848333 67.646667,27.7620006 67.572,27.65 C67.497333,27.5379994 67.4483335,27.4050008 67.425,27.251 C67.4016666,27.0969992 67.39,26.9266676 67.39,26.74 L67.362,26.74 C67.2033325,26.9733345 67.0423342,27.1809991 66.879,27.363 C66.7156658,27.5450009 66.5336677,27.6966661 66.333,27.818 C66.1323323,27.9393339 65.9036679,28.0326663 65.647,28.098 C65.390332,28.1633337 65.0846684,28.196 64.73,28.196 C64.3939983,28.196 64.0790015,28.1563337 63.785,28.077 C63.4909985,27.9976663 63.2343344,27.8716675 63.015,27.699 C62.7956656,27.5263325 62.6230006,27.3070013 62.497,27.041 C62.3709994,26.7749987 62.308,26.4600018 62.308,26.096 C62.308,25.5919975 62.4199989,25.1976681 62.644,24.913 C62.8680011,24.6283319 63.1643315,24.4113341 63.533,24.262 C63.9016685,24.1126659 64.3169977,24.007667 64.779,23.947 C65.2410023,23.886333 65.7099976,23.8280003 66.186,23.772 C66.3726676,23.7533332 66.5359993,23.7300001 66.676,23.702 C66.8160007,23.6739999 66.9326662,23.6250004 67.026,23.555 C67.1193338,23.4849996 67.1916664,23.3893339 67.243,23.268 C67.2943336,23.1466661 67.32,22.988001 67.32,22.792 C67.32,22.4933318 67.2710005,22.2483343 67.173,22.057 C67.0749995,21.8656657 66.9396675,21.7140006 66.767,21.602 C66.5943325,21.4899994 66.3936678,21.4130002 66.165,21.371 C65.9363322,21.3289998 65.6913346,21.308 65.43,21.308 C64.8699972,21.308 64.4126684,21.4409987 64.058,21.707 C63.7033316,21.9730013 63.5166668,22.3999971 63.498,22.988 L62.616,22.988 Z M67.32,24.052 L67.292,24.052 C67.2359997,24.1546672 67.1286675,24.2293331 66.97,24.276 C66.8113325,24.3226669 66.6713339,24.3553332 66.55,24.374 C66.1766648,24.4393337 65.7916686,24.4976664 65.395,24.549 C64.9983314,24.6003336 64.6366683,24.6773328 64.31,24.78 C63.9833317,24.8826672 63.715001,25.0296657 63.505,25.221 C63.294999,25.4123343 63.19,25.6853316 63.19,26.04 C63.19,26.2640011 63.2343329,26.4623325 63.323,26.635 C63.4116671,26.8076675 63.5306659,26.9569994 63.68,27.083 C63.8293341,27.2090006 64.001999,27.3046663 64.198,27.37 C64.394001,27.4353337 64.5946656,27.468 64.8,27.468 C65.1360017,27.468 65.4579985,27.4166672 65.766,27.314 C66.0740015,27.2113328 66.3423322,27.062001 66.571,26.866 C66.7996678,26.669999 66.981666,26.4320014 67.117,26.152 C67.252334,25.8719986 67.32,25.5546684 67.32,25.2 L67.32,24.052 Z M69.966,18.004 L70.848,18.004 L70.848,22.148 L70.876,22.148 C70.9693338,21.8866654 71.1023325,21.658001 71.275,21.462 C71.4476675,21.265999 71.6459989,21.100334 71.87,20.965 C72.0940011,20.829666 72.3366654,20.7293337 72.598,20.664 C72.8593346,20.5986663 73.1206654,20.566 73.382,20.566 C73.9326694,20.566 74.410998,20.6686656 74.817,20.874 C75.223002,21.0793344 75.561332,21.3569983 75.832,21.707 C76.102668,22.0570017 76.3033327,22.4629977 76.434,22.925 C76.5646673,23.3870023 76.63,23.8746641 76.63,24.388 C76.63,24.9013359 76.5646673,25.3889977 76.434,25.851 C76.3033327,26.3130023 76.102668,26.7189982 75.832,27.069 C75.561332,27.4190017 75.223002,27.6943323 74.817,27.895 C74.410998,28.0956677 73.9326694,28.196 73.382,28.196 C72.7939971,28.196 72.2690023,28.060668 71.807,27.79 C71.3449977,27.519332 71.0113344,27.1320025 70.806,26.628 L70.778,26.628 L70.778,28 L69.966,28 L69.966,18.004 Z M75.748,24.388 C75.748,24.0146648 75.7036671,23.6436685 75.615,23.275 C75.5263329,22.9063315 75.3863343,22.5773348 75.195,22.288 C75.0036657,21.9986652 74.7586682,21.7630009 74.46,21.581 C74.1613318,21.3989991 73.8020021,21.308 73.382,21.308 C72.915331,21.308 72.5210016,21.3989991 72.199,21.581 C71.8769984,21.7630009 71.6156677,21.9986652 71.415,22.288 C71.2143323,22.5773348 71.0696671,22.9063315 70.981,23.275 C70.8923329,23.6436685 70.848,24.0146648 70.848,24.388 C70.848,24.7613352 70.8923329,25.1323315 70.981,25.501 C71.0696671,25.8696685 71.2143323,26.1986652 71.415,26.488 C71.6156677,26.7773348 71.8769984,27.0129991 72.199,27.195 C72.5210016,27.3770009 72.915331,27.468 73.382,27.468 C73.8020021,27.468 74.1613318,27.3770009 74.46,27.195 C74.7586682,27.0129991 75.0036657,26.7773348 75.195,26.488 C75.3863343,26.1986652 75.5263329,25.8696685 75.615,25.501 C75.7036671,25.1323315 75.748,24.7613352 75.748,24.388 Z M78.016,18.004 L78.016,28 L78.898,28 L78.898,18.004 L78.016,18.004 Z M85.786,23.884 C85.7766666,23.5479983 85.7183339,23.2260015 85.611,22.918 C85.5036661,22.6099985 85.352001,22.3370012 85.156,22.099 C84.959999,21.8609988 84.7220014,21.6696674 84.442,21.525 C84.1619986,21.3803326 83.8446684,21.308 83.49,21.308 C83.1259982,21.308 82.8040014,21.3803326 82.524,21.525 C82.2439986,21.6696674 82.006001,21.8609988 81.81,22.099 C81.613999,22.3370012 81.4576673,22.6123318 81.341,22.925 C81.2243328,23.2376682 81.1473335,23.5573317 81.11,23.884 L85.786,23.884 Z M81.11,24.626 C81.11,24.9433349 81.1543329,25.2723316 81.243,25.613 C81.3316671,25.9536684 81.473999,26.259332 81.67,26.53 C81.866001,26.800668 82.1133318,27.0246658 82.412,27.202 C82.7106682,27.3793342 83.0699979,27.468 83.49,27.468 C84.1340032,27.468 84.6379982,27.3000017 85.002,26.964 C85.3660018,26.6279983 85.6179993,26.1800028 85.758,25.62 L86.64,25.62 C86.4533324,26.4413374 86.1103358,27.0759978 85.611,27.524 C85.1116642,27.9720022 84.4046712,28.196 83.49,28.196 C82.9206638,28.196 82.4283354,28.0956677 82.013,27.895 C81.5976646,27.6943323 81.2593346,27.4190017 80.998,27.069 C80.7366654,26.7189982 80.5430006,26.3130023 80.417,25.851 C80.2909994,25.3889977 80.228,24.9013359 80.228,24.388 C80.228,23.9119976 80.2909994,23.4453356 80.417,22.988 C80.5430006,22.5306644 80.7366654,22.1223351 80.998,21.763 C81.2593346,21.4036649 81.5976646,21.1143344 82.013,20.895 C82.4283354,20.6756656 82.9206638,20.566 83.49,20.566 C84.0686696,20.566 84.5633313,20.6826655 84.974,20.916 C85.3846687,21.1493345 85.718332,21.4549981 85.975,21.833 C86.231668,22.2110019 86.4159994,22.6449975 86.528,23.135 C86.6400006,23.6250025 86.6866668,24.1219975 86.668,24.626 L81.11,24.626 Z M94.214,28 L93.402,28 L93.402,26.628 L93.374,26.628 C93.2806662,26.8613345 93.1430009,27.075999 92.961,27.272 C92.7789991,27.468001 92.5713345,27.633666 92.338,27.769 C92.1046655,27.904334 91.8550013,28.009333 91.589,28.084 C91.3229987,28.158667 91.0593346,28.196 90.798,28.196 C90.2473306,28.196 89.769002,28.0956677 89.363,27.895 C88.956998,27.6943323 88.618668,27.4190017 88.348,27.069 C88.077332,26.7189982 87.8766673,26.3130023 87.746,25.851 C87.6153327,25.3889977 87.55,24.9013359 87.55,24.388 C87.55,23.8746641 87.6153327,23.3870023 87.746,22.925 C87.8766673,22.4629977 88.077332,22.0570017 88.348,21.707 C88.618668,21.3569983 88.956998,21.0793344 89.363,20.874 C89.769002,20.6686656 90.2473306,20.566 90.798,20.566 C91.068668,20.566 91.332332,20.5986663 91.589,20.664 C91.8456679,20.7293337 92.0859989,20.829666 92.31,20.965 C92.5340011,21.100334 92.7323325,21.265999 92.905,21.462 C93.0776675,21.658001 93.2106662,21.8866654 93.304,22.148 L93.332,22.148 L93.332,18.004 L94.214,18.004 L94.214,28 Z M88.432,24.388 C88.432,24.7613352 88.4763329,25.1323315 88.565,25.501 C88.6536671,25.8696685 88.7936657,26.1986652 88.985,26.488 C89.1763343,26.7773348 89.4213318,27.0129991 89.72,27.195 C90.0186682,27.3770009 90.3779979,27.468 90.798,27.468 C91.264669,27.468 91.6589984,27.3770009 91.981,27.195 C92.3030016,27.0129991 92.5643323,26.7773348 92.765,26.488 C92.9656677,26.1986652 93.1103329,25.8696685 93.199,25.501 C93.2876671,25.1323315 93.332,24.7613352 93.332,24.388 C93.332,24.0146648 93.2876671,23.6436685 93.199,23.275 C93.1103329,22.9063315 92.9656677,22.5773348 92.765,22.288 C92.5643323,21.9986652 92.3030016,21.7630009 91.981,21.581 C91.6589984,21.3989991 91.264669,21.308 90.798,21.308 C90.3779979,21.308 90.0186682,21.3989991 89.72,21.581 C89.4213318,21.7630009 89.1763343,21.9986652 88.985,22.288 C88.7936657,22.5773348 88.6536671,22.9063315 88.565,23.275 C88.4763329,23.6436685 88.432,24.0146648 88.432,24.388 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="137" height="45" viewBox="0 0 137 45" id="svg" >
<defs>
<rect id="-success-(left-capsule)-a" width="137" height="45"/>
</defs>
<g fill="none" fill-rule="evenodd">
<mask id="-success-(left-capsule)-b" fill="#fff">
<use xlink:href="#-success-(left-capsule)-a"/>
</mask>
<rect width="273" height="45" fill="#3ADB76" mask="url(#-success-(left-capsule)-b)" rx="22.5" transform="matrix(-1 0 0 1 273 0)"/>
<path fill="#FFF" d="M31.652,18.004 L31.652,28 L38.204,28 L38.204,27.188 L32.604,27.188 L32.604,18.004 L31.652,18.004 Z M44.196,23.884 C44.1866666,23.5479983 44.1283339,23.2260015 44.021,22.918 C43.9136661,22.6099985 43.762001,22.3370012 43.566,22.099 C43.369999,21.8609988 43.1320014,21.6696674 42.852,21.525 C42.5719986,21.3803326 42.2546684,21.308 41.9,21.308 C41.5359982,21.308 41.2140014,21.3803326 40.934,21.525 C40.6539986,21.6696674 40.416001,21.8609988 40.22,22.099 C40.023999,22.3370012 39.8676673,22.6123318 39.751,22.925 C39.6343328,23.2376682 39.5573335,23.5573317 39.52,23.884 L44.196,23.884 Z M39.52,24.626 C39.52,24.9433349 39.5643329,25.2723316 39.653,25.613 C39.7416671,25.9536684 39.883999,26.259332 40.08,26.53 C40.276001,26.800668 40.5233318,27.0246658 40.822,27.202 C41.1206682,27.3793342 41.4799979,27.468 41.9,27.468 C42.5440032,27.468 43.0479982,27.3000017 43.412,26.964 C43.7760018,26.6279983 44.0279993,26.1800028 44.168,25.62 L45.05,25.62 C44.8633324,26.4413374 44.5203358,27.0759978 44.021,27.524 C43.5216642,27.9720022 42.8146712,28.196 41.9,28.196 C41.3306638,28.196 40.8383354,28.0956677 40.423,27.895 C40.0076646,27.6943323 39.6693346,27.4190017 39.408,27.069 C39.1466654,26.7189982 38.9530006,26.3130023 38.827,25.851 C38.7009994,25.3889977 38.638,24.9013359 38.638,24.388 C38.638,23.9119976 38.7009994,23.4453356 38.827,22.988 C38.9530006,22.5306644 39.1466654,22.1223351 39.408,21.763 C39.6693346,21.4036649 40.0076646,21.1143344 40.423,20.895 C40.8383354,20.6756656 41.3306638,20.566 41.9,20.566 C42.4786696,20.566 42.9733313,20.6826655 43.384,20.916 C43.7946687,21.1493345 44.1283321,21.4549981 44.385,21.833 C44.641668,22.2110019 44.8259994,22.6449975 44.938,23.135 C45.0500006,23.6250025 45.0966668,24.1219975 45.078,24.626 L39.52,24.626 Z M49.054,21.518 L47.626,21.518 L47.626,28 L46.744,28 L46.744,21.518 L45.512,21.518 L45.512,20.776 L46.744,20.776 L46.744,20.118 C46.744,19.8099985 46.7673331,19.5253346 46.814,19.264 C46.8606669,19.0026654 46.9493327,18.7786676 47.08,18.592 C47.2106673,18.4053324 47.3903322,18.2606672 47.619,18.158 C47.8476678,18.0553328 48.1393316,18.004 48.494,18.004 C48.6246673,18.004 48.7459994,18.0086666 48.858,18.018 C48.9700006,18.0273334 49.0959993,18.0413332 49.236,18.06 L49.236,18.816 C49.1146661,18.7973332 49.0026672,18.7810001 48.9,18.767 C48.7973328,18.7529999 48.6946672,18.746 48.592,18.746 C48.3493321,18.746 48.1626673,18.783333 48.032,18.858 C47.9013327,18.932667 47.805667,19.0329994 47.745,19.159 C47.684333,19.2850006 47.6493334,19.4319992 47.64,19.6 C47.6306666,19.7680008 47.626,19.949999 47.626,20.146 L47.626,20.776 L49.054,20.776 L49.054,21.518 Z M51.294,20.776 L52.764,20.776 L52.764,21.518 L51.294,21.518 L51.294,26.39 C51.294,26.6793348 51.3336663,26.9056658 51.413,27.069 C51.4923337,27.2323341 51.6906651,27.3233332 52.008,27.342 C52.2600013,27.342 52.5119987,27.3280001 52.764,27.3 L52.764,28.042 C52.6333327,28.042 52.5026673,28.0466666 52.372,28.056 C52.2413327,28.0653334 52.1106673,28.07 51.98,28.07 C51.3919971,28.07 50.9813345,27.9556678 50.748,27.727 C50.5146655,27.4983322 50.4026666,27.0760031 50.412,26.46 L50.412,21.518 L49.152,21.518 L49.152,20.776 L50.412,20.776 L50.412,18.606 L51.294,18.606 L51.294,20.776 Z M65.406,21.028 L66.358,21.028 C66.2926663,20.5053307 66.1363346,20.0433353 65.889,19.642 C65.6416654,19.2406647 65.3336685,18.9023347 64.965,18.627 C64.5963315,18.3516653 64.1856689,18.1440007 63.733,18.004 C63.2803311,17.8639993 62.8160024,17.794 62.34,17.794 C61.5559961,17.794 60.8676696,17.9363319 60.275,18.221 C59.6823304,18.5056681 59.190002,18.8883309 58.798,19.369 C58.405998,19.8496691 58.112001,20.4026635 57.916,21.028 C57.719999,21.6533365 57.622,22.3113299 57.622,23.002 C57.622,23.6926701 57.719999,24.3506635 57.916,24.976 C58.112001,25.6013365 58.405998,26.1519976 58.798,26.628 C59.190002,27.1040024 59.6823304,27.4843319 60.275,27.769 C60.8676696,28.0536681 61.5559961,28.196 62.34,28.196 C62.9280029,28.196 63.4623309,28.1026676 63.943,27.916 C64.4236691,27.7293324 64.8413316,27.4633351 65.196,27.118 C65.5506684,26.7726649 65.8399989,26.3526691 66.064,25.858 C66.2880011,25.3633309 66.4326663,24.8080031 66.498,24.192 L65.546,24.192 C65.4993331,24.6400022 65.3920008,25.0576647 65.224,25.445 C65.0559992,25.8323353 64.836668,26.1706652 64.566,26.46 C64.295332,26.7493348 63.9733352,26.9779992 63.6,27.146 C63.2266648,27.3140008 62.806669,27.398 62.34,27.398 C61.67733,27.398 61.1080024,27.2720013 60.632,27.02 C60.1559976,26.7679987 59.7663349,26.4343354 59.463,26.019 C59.1596652,25.6036646 58.9356674,25.132336 58.791,24.605 C58.6463326,24.077664 58.574,23.543336 58.574,23.002 C58.574,22.4513306 58.6463326,21.9146693 58.791,21.392 C58.9356674,20.8693307 59.1596652,20.4003354 59.463,19.985 C59.7663349,19.5696646 60.1559976,19.2360013 60.632,18.984 C61.1080024,18.7319987 61.67733,18.606 62.34,18.606 C62.7040018,18.606 63.051665,18.6596661 63.383,18.767 C63.714335,18.8743339 64.0176653,19.0306656 64.293,19.236 C64.5683347,19.4413344 64.8016657,19.6956651 64.993,19.999 C65.1843343,20.3023349 65.3219996,20.6453314 65.406,21.028 Z M67.702,22.988 C67.7300001,22.5679979 67.8186659,22.2040015 67.968,21.896 C68.1173341,21.5879985 68.3203321,21.336001 68.577,21.14 C68.833668,20.943999 69.1346649,20.7993338 69.48,20.706 C69.8253351,20.6126662 70.2079979,20.566 70.628,20.566 C70.9453349,20.566 71.2626651,20.596333 71.58,20.657 C71.8973349,20.717667 72.1819987,20.8319992 72.434,21 C72.6860013,21.1680008 72.8913325,21.4036651 73.05,21.707 C73.2086675,22.0103348 73.288,22.4046642 73.288,22.89 L73.288,26.726 C73.288,27.0806684 73.4606649,27.258 73.806,27.258 C73.9086672,27.258 74.0019996,27.2393335 74.086,27.202 L74.086,27.944 C73.9833328,27.9626668 73.8923337,27.9766666 73.813,27.986 C73.7336663,27.9953334 73.6333339,28 73.512,28 C73.2879989,28 73.108334,27.969667 72.973,27.909 C72.837666,27.848333 72.732667,27.7620006 72.658,27.65 C72.583333,27.5379994 72.5343335,27.4050008 72.511,27.251 C72.4876666,27.0969992 72.476,26.9266676 72.476,26.74 L72.448,26.74 C72.2893325,26.9733345 72.1283342,27.1809991 71.965,27.363 C71.8016659,27.5450009 71.6196677,27.6966661 71.419,27.818 C71.2183323,27.9393339 70.989668,28.0326663 70.733,28.098 C70.476332,28.1633337 70.1706684,28.196 69.816,28.196 C69.4799983,28.196 69.1650015,28.1563337 68.871,28.077 C68.5769985,27.9976663 68.3203344,27.8716675 68.101,27.699 C67.8816656,27.5263325 67.7090006,27.3070013 67.583,27.041 C67.4569994,26.7749987 67.394,26.4600018 67.394,26.096 C67.394,25.5919975 67.5059989,25.1976681 67.73,24.913 C67.9540011,24.6283319 68.2503315,24.4113341 68.619,24.262 C68.9876685,24.1126659 69.4029977,24.007667 69.865,23.947 C70.3270023,23.886333 70.7959976,23.8280003 71.272,23.772 C71.4586676,23.7533332 71.6219993,23.7300001 71.762,23.702 C71.9020007,23.6739999 72.0186662,23.6250004 72.112,23.555 C72.2053338,23.4849996 72.2776664,23.3893339 72.329,23.268 C72.3803336,23.1466661 72.406,22.988001 72.406,22.792 C72.406,22.4933318 72.3570005,22.2483343 72.259,22.057 C72.1609995,21.8656657 72.0256675,21.7140006 71.853,21.602 C71.6803325,21.4899994 71.4796678,21.4130002 71.251,21.371 C71.0223322,21.3289998 70.7773346,21.308 70.516,21.308 C69.9559972,21.308 69.4986684,21.4409987 69.144,21.707 C68.7893316,21.9730013 68.6026668,22.3999971 68.584,22.988 L67.702,22.988 Z M72.406,24.052 L72.378,24.052 C72.3219997,24.1546672 72.2146675,24.2293331 72.056,24.276 C71.8973325,24.3226669 71.7573339,24.3553332 71.636,24.374 C71.2626648,24.4393337 70.8776687,24.4976664 70.481,24.549 C70.0843314,24.6003336 69.7226683,24.6773328 69.396,24.78 C69.0693317,24.8826672 68.8010011,25.0296657 68.591,25.221 C68.380999,25.4123343 68.276,25.6853316 68.276,26.04 C68.276,26.2640011 68.3203329,26.4623325 68.409,26.635 C68.4976671,26.8076675 68.6166659,26.9569994 68.766,27.083 C68.9153341,27.2090006 69.087999,27.3046663 69.284,27.37 C69.480001,27.4353337 69.6806656,27.468 69.886,27.468 C70.2220017,27.468 70.5439985,27.4166672 70.852,27.314 C71.1600015,27.2113328 71.4283322,27.062001 71.657,26.866 C71.8856678,26.669999 72.067666,26.4320014 72.203,26.152 C72.338334,25.8719986 72.406,25.5546684 72.406,25.2 L72.406,24.052 Z M75.052,20.776 L75.864,20.776 L75.864,22.148 L75.892,22.148 C76.0973344,21.6439975 76.4309977,21.2543347 76.893,20.979 C77.3550023,20.7036653 77.8799971,20.566 78.468,20.566 C79.0186694,20.566 79.496998,20.6686656 79.903,20.874 C80.309002,21.0793344 80.647332,21.3569983 80.918,21.707 C81.188668,22.0570017 81.3893327,22.4629977 81.52,22.925 C81.6506673,23.3870023 81.716,23.8746641 81.716,24.388 C81.716,24.9013359 81.6506673,25.3889977 81.52,25.851 C81.3893327,26.3130023 81.188668,26.7189982 80.918,27.069 C80.647332,27.4190017 80.309002,27.6943323 79.903,27.895 C79.496998,28.0956677 79.0186694,28.196 78.468,28.196 C78.2066654,28.196 77.9453346,28.1633337 77.684,28.098 C77.4226654,28.0326663 77.1800011,27.9346673 76.956,27.804 C76.7319989,27.6733327 76.5336675,27.510001 76.361,27.314 C76.1883325,27.117999 76.0553338,26.8893346 75.962,26.628 L75.934,26.628 L75.934,30.66 L75.052,30.66 L75.052,20.776 Z M80.834,24.388 C80.834,24.0146648 80.7896671,23.6436685 80.701,23.275 C80.6123329,22.9063315 80.4723343,22.5773348 80.281,22.288 C80.0896657,21.9986652 79.8446682,21.7630009 79.546,21.581 C79.2473318,21.3989991 78.8880021,21.308 78.468,21.308 C77.9826642,21.308 77.5766683,21.3919992 77.25,21.56 C76.9233317,21.7280008 76.662001,21.9519986 76.466,22.232 C76.269999,22.5120014 76.1323337,22.8386648 76.053,23.212 C75.9736663,23.5853352 75.934,23.9773313 75.934,24.388 C75.934,24.7613352 75.9783329,25.1323315 76.067,25.501 C76.1556671,25.8696685 76.3003323,26.1986652 76.501,26.488 C76.7016677,26.7773348 76.9629984,27.0129991 77.285,27.195 C77.6070016,27.3770009 78.001331,27.468 78.468,27.468 C78.8880021,27.468 79.2473318,27.3770009 79.546,27.195 C79.8446682,27.0129991 80.0896657,26.7773348 80.281,26.488 C80.4723343,26.1986652 80.6123329,25.8696685 80.701,25.501 C80.7896671,25.1323315 80.834,24.7613352 80.834,24.388 Z M87.414,22.89 L88.296,22.89 C88.2773332,22.497998 88.1980007,22.1573348 88.058,21.868 C87.9179993,21.5786652 87.7290012,21.336001 87.491,21.14 C87.2529988,20.943999 86.9776682,20.7993338 86.665,20.706 C86.3523318,20.6126662 86.0140018,20.566 85.65,20.566 C85.3326651,20.566 85.0130016,20.603333 84.691,20.678 C84.3689984,20.752667 84.0773346,20.8693325 83.816,21.028 C83.5546654,21.1866675 83.3423342,21.3966654 83.179,21.658 C83.0156659,21.9193346 82.934,22.2319982 82.934,22.596 C82.934,22.9040015 82.9853328,23.162999 83.088,23.373 C83.1906672,23.5830011 83.3329991,23.7603326 83.515,23.905 C83.6970009,24.0496674 83.9093321,24.1709995 84.152,24.269 C84.3946679,24.3670005 84.6606652,24.453333 84.95,24.528 L86.084,24.78 C86.280001,24.8266669 86.4736657,24.8826663 86.665,24.948 C86.8563343,25.0133337 87.0266659,25.0949995 87.176,25.193 C87.3253341,25.2910005 87.4443329,25.4123326 87.533,25.557 C87.6216671,25.7016674 87.666,25.8813323 87.666,26.096 C87.666,26.3480013 87.6030006,26.5603325 87.477,26.733 C87.3509994,26.9056675 87.190001,27.0479994 86.994,27.16 C86.797999,27.2720006 86.5856678,27.3513331 86.357,27.398 C86.1283322,27.4446669 85.9066677,27.468 85.692,27.468 C85.1039971,27.468 84.6116687,27.3163349 84.215,27.013 C83.8183314,26.7096651 83.6013335,26.2593363 83.564,25.662 L82.682,25.662 C82.756667,26.5486711 83.057664,27.1926647 83.585,27.594 C84.112336,27.9953353 84.8006624,28.196 85.65,28.196 C85.9860017,28.196 86.3266649,28.158667 86.672,28.084 C87.0173351,28.009333 87.3276653,27.8856675 87.603,27.713 C87.8783347,27.5403325 88.1046658,27.3163347 88.282,27.041 C88.4593342,26.7656653 88.548,26.432002 88.548,26.04 C88.548,25.7226651 88.4873339,25.4473345 88.366,25.214 C88.2446661,24.9806655 88.0883343,24.7846675 87.897,24.626 C87.7056657,24.4673325 87.4863346,24.3390005 87.239,24.241 C86.9916654,24.1429995 86.7420013,24.0753335 86.49,24.038 L85.314,23.772 C85.1646659,23.7346665 85.0013342,23.685667 84.824,23.625 C84.6466658,23.564333 84.4833341,23.4873338 84.334,23.394 C84.1846659,23.3006662 84.0610005,23.186334 83.963,23.051 C83.8649995,22.915666 83.816,22.750001 83.816,22.554 C83.816,22.3206655 83.8673328,22.1246675 83.97,21.966 C84.0726672,21.8073325 84.2079992,21.6790005 84.376,21.581 C84.5440008,21.4829995 84.7283323,21.4130002 84.929,21.371 C85.1296677,21.3289998 85.327999,21.308 85.524,21.308 C85.7760013,21.308 86.0139989,21.338333 86.238,21.399 C86.4620011,21.459667 86.6603325,21.5553327 86.833,21.686 C87.0056675,21.8166673 87.1433328,21.9823323 87.246,22.183 C87.3486672,22.3836677 87.4046666,22.619332 87.414,22.89 Z M95.674,28 L95.674,20.776 L94.792,20.776 L94.792,24.57 C94.792,24.9340018 94.7500004,25.2909983 94.666,25.641 C94.5819996,25.9910018 94.4513342,26.301332 94.274,26.572 C94.0966658,26.842668 93.872668,27.0596659 93.602,27.223 C93.331332,27.3863341 93.0046686,27.468 92.622,27.468 C91.9219965,27.468 91.4296681,27.3000017 91.145,26.964 C90.8603319,26.6279983 90.7086668,26.1333366 90.69,25.48 L90.69,20.776 L89.808,20.776 L89.808,25.466 C89.808,25.8953355 89.8546662,26.2779983 89.948,26.614 C90.0413338,26.9500017 90.1883323,27.2346655 90.389,27.468 C90.5896677,27.7013345 90.8509984,27.8809994 91.173,28.007 C91.4950016,28.1330006 91.8846644,28.196 92.342,28.196 C92.883336,28.196 93.3756645,28.067668 93.819,27.811 C94.2623356,27.554332 94.6006655,27.1833358 94.834,26.698 L94.862,26.698 L94.862,28 L95.674,28 Z M97.354,18.004 L97.354,28 L98.236,28 L98.236,18.004 L97.354,18.004 Z M105.124,23.884 C105.114667,23.5479983 105.056334,23.2260015 104.949,22.918 C104.841666,22.6099985 104.690001,22.3370012 104.494,22.099 C104.297999,21.8609988 104.060001,21.6696674 103.78,21.525 C103.499999,21.3803326 103.182668,21.308 102.828,21.308 C102.463998,21.308 102.142001,21.3803326 101.862,21.525 C101.581999,21.6696674 101.344001,21.8609988 101.148,22.099 C100.951999,22.3370012 100.795667,22.6123318 100.679,22.925 C100.562333,23.2376682 100.485334,23.5573317 100.448,23.884 L105.124,23.884 Z M100.448,24.626 C100.448,24.9433349 100.492333,25.2723316 100.581,25.613 C100.669667,25.9536684 100.811999,26.259332 101.008,26.53 C101.204001,26.800668 101.451332,27.0246658 101.75,27.202 C102.048668,27.3793342 102.407998,27.468 102.828,27.468 C103.472003,27.468 103.975998,27.3000017 104.34,26.964 C104.704002,26.6279983 104.955999,26.1800028 105.096,25.62 L105.978,25.62 C105.791332,26.4413374 105.448336,27.0759978 104.949,27.524 C104.449664,27.9720022 103.742671,28.196 102.828,28.196 C102.258664,28.196 101.766335,28.0956677 101.351,27.895 C100.935665,27.6943323 100.597335,27.4190017 100.336,27.069 C100.074665,26.7189982 99.8810006,26.3130023 99.755,25.851 C99.6289994,25.3889977 99.566,24.9013359 99.566,24.388 C99.566,23.9119976 99.6289994,23.4453356 99.755,22.988 C99.8810006,22.5306644 100.074665,22.1223351 100.336,21.763 C100.597335,21.4036649 100.935665,21.1143344 101.351,20.895 C101.766335,20.6756656 102.258664,20.566 102.828,20.566 C103.40667,20.566 103.901331,20.6826655 104.312,20.916 C104.722669,21.1493345 105.056332,21.4549981 105.313,21.833 C105.569668,22.2110019 105.753999,22.6449975 105.866,23.135 C105.978001,23.6250025 106.024667,24.1219975 106.006,24.626 L100.448,24.626 Z" mask="url(#-success-(left-capsule)-b)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="93" height="30" viewBox="0 0 93 30" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="93" height="30" fill="#FFAE00"/>
<path fill="#FFF" d="M31.895,16.65 L31.215,16.65 C31.1949999,17.0900022 31.2533326,17.4666651 31.39,17.78 C31.5266673,18.0933349 31.7216654,18.349999 31.975,18.55 C32.2283346,18.750001 32.5349982,18.8983328 32.895,18.995 C33.2550018,19.0916671 33.6449979,19.14 34.065,19.14 C34.4850021,19.14 34.8449985,19.101667 35.145,19.025 C35.4450015,18.948333 35.6966656,18.848334 35.9,18.725 C36.1033343,18.601666 36.2633327,18.4633341 36.38,18.31 C36.4966672,18.1566659 36.5866663,18.0050008 36.65,17.855 C36.7133336,17.7049993 36.7533332,17.563334 36.77,17.43 C36.7866667,17.296666 36.795,17.1900004 36.795,17.11 C36.795,16.8166652 36.7466671,16.5666677 36.65,16.36 C36.5533328,16.1533323 36.4200008,15.9783341 36.25,15.835 C36.0799991,15.691666 35.8833344,15.5716671 35.66,15.475 C35.4366656,15.3783328 35.1983346,15.296667 34.945,15.23 L33.205,14.8 C33.0583326,14.7666665 32.9200006,14.7233336 32.79,14.67 C32.6599993,14.6166664 32.5450005,14.5466671 32.445,14.46 C32.3449995,14.3733329 32.2666669,14.2683339 32.21,14.145 C32.153333,14.0216661 32.125,13.8766675 32.125,13.71 C32.125,13.443332 32.1749995,13.2200009 32.275,13.04 C32.3750005,12.8599991 32.5066658,12.7150005 32.67,12.605 C32.8333341,12.4949994 33.0233322,12.4150002 33.24,12.365 C33.4566677,12.3149997 33.6816655,12.29 33.915,12.29 C34.1683346,12.29 34.4099988,12.3249996 34.64,12.395 C34.8700011,12.4650004 35.0733324,12.5683327 35.25,12.705 C35.4266675,12.8416673 35.5699994,13.0116657 35.68,13.215 C35.7900005,13.4183343 35.8516666,13.6566653 35.865,13.93 L36.545,13.93 C36.545,13.5633315 36.473334,13.241668 36.33,12.965 C36.1866659,12.688332 35.9950012,12.4566676 35.755,12.27 C35.5149988,12.0833324 35.2350016,11.9433338 34.915,11.85 C34.5949984,11.7566662 34.2583351,11.71 33.905,11.71 C33.4049975,11.71 32.9950016,11.781666 32.675,11.925 C32.3549984,12.0683341 32.1033342,12.2433323 31.92,12.45 C31.7366657,12.6566677 31.611667,12.8766655 31.545,13.11 C31.478333,13.3433345 31.445,13.5466658 31.445,13.72 C31.445,14.0000014 31.4899995,14.2366657 31.58,14.43 C31.6700004,14.6233343 31.7883326,14.786666 31.935,14.92 C32.0816674,15.053334 32.2533323,15.1599996 32.45,15.24 C32.6466676,15.3200004 32.8483323,15.3866664 33.055,15.44 L34.645,15.83 C34.8116675,15.8700002 34.9816658,15.9216664 35.155,15.985 C35.3283342,16.0483337 35.4866659,16.1299995 35.63,16.23 C35.773334,16.3300005 35.8899995,16.4533326 35.98,16.6 C36.0700004,16.7466674 36.115,16.919999 36.115,17.12 C36.115,17.3800013 36.0516673,17.6016657 35.925,17.785 C35.7983327,17.9683342 35.6400009,18.1183328 35.45,18.235 C35.259999,18.3516672 35.0550011,18.4366664 34.835,18.49 C34.6149989,18.5433336 34.4116676,18.57 34.225,18.57 C33.8983317,18.57 33.5916681,18.5383336 33.305,18.475 C33.0183319,18.4116664 32.770001,18.3066674 32.56,18.16 C32.3499989,18.0133326 32.1850006,17.8166679 32.065,17.57 C31.9449994,17.3233321 31.8883333,17.0166685 31.895,16.65 Z M39.935,14.22 C39.6349985,14.22 39.3716678,14.2833327 39.145,14.41 C38.9183322,14.5366673 38.7300007,14.7033323 38.58,14.91 C38.4299992,15.1166677 38.316667,15.3516654 38.24,15.615 C38.1633329,15.8783346 38.125,16.1466653 38.125,16.42 C38.125,16.6933347 38.1633329,16.9616654 38.24,17.225 C38.316667,17.4883346 38.4299992,17.7233323 38.58,17.93 C38.7300007,18.1366677 38.9183322,18.3033327 39.145,18.43 C39.3716678,18.5566673 39.6349985,18.62 39.935,18.62 C40.2350015,18.62 40.4983322,18.5566673 40.725,18.43 C40.9516678,18.3033327 41.1399992,18.1366677 41.29,17.93 C41.4400007,17.7233323 41.5533329,17.4883346 41.63,17.225 C41.7066671,16.9616654 41.745,16.6933347 41.745,16.42 C41.745,16.1466653 41.7066671,15.8783346 41.63,15.615 C41.5533329,15.3516654 41.4400007,15.1166677 41.29,14.91 C41.1399992,14.7033323 40.9516678,14.5366673 40.725,14.41 C40.4983322,14.2833327 40.2350015,14.22 39.935,14.22 Z M39.935,13.69 C40.3283353,13.69 40.6766651,13.7633326 40.98,13.91 C41.2833348,14.0566674 41.5383323,14.2533321 41.745,14.5 C41.9516677,14.7466679 42.1083328,15.0349984 42.215,15.365 C42.3216672,15.6950017 42.375,16.0466648 42.375,16.42 C42.375,16.7933352 42.3216672,17.1449984 42.215,17.475 C42.1083328,17.8050017 41.9516677,18.0933321 41.745,18.34 C41.5383323,18.5866679 41.2833348,18.781666 40.98,18.925 C40.6766651,19.0683341 40.3283353,19.14 39.935,19.14 C39.5416647,19.14 39.1933348,19.0683341 38.89,18.925 C38.5866652,18.781666 38.3316677,18.5866679 38.125,18.34 C37.9183323,18.0933321 37.7616672,17.8050017 37.655,17.475 C37.5483328,17.1449984 37.495,16.7933352 37.495,16.42 C37.495,16.0466648 37.5483328,15.6950017 37.655,15.365 C37.7616672,15.0349984 37.9183323,14.7466679 38.125,14.5 C38.3316677,14.2533321 38.5866652,14.0566674 38.89,13.91 C39.1933348,13.7633326 39.5416647,13.69 39.935,13.69 Z M45.455,11.86 L45.455,12.44 L47.935,12.44 L47.935,19 L48.615,19 L48.615,12.44 L51.105,12.44 L51.105,11.86 L45.455,11.86 Z M51.905,11.86 L51.905,12.87 L52.535,12.87 L52.535,11.86 L51.905,11.86 Z M51.905,13.84 L51.905,19 L52.535,19 L52.535,13.84 L51.905,13.84 Z M53.735,13.84 L53.735,19 L54.365,19 L54.365,15.99 C54.3716667,15.7366654 54.4133329,15.5016677 54.49,15.285 C54.566667,15.0683322 54.6733326,14.8816675 54.81,14.725 C54.9466673,14.5683326 55.1133324,14.4450005 55.31,14.355 C55.5066676,14.2649995 55.7316654,14.22 55.985,14.22 C56.2383346,14.22 56.4499991,14.2599996 56.62,14.34 C56.7900008,14.4200004 56.9249995,14.5299993 57.025,14.67 C57.1250005,14.8100007 57.1949998,14.9749991 57.235,15.165 C57.2750002,15.3550009 57.295,15.5599989 57.295,15.78 L57.295,19 L57.925,19 L57.925,15.68 C57.925,15.3733318 57.8950003,15.0966679 57.835,14.85 C57.7749997,14.6033321 57.6716674,14.3950008 57.525,14.225 C57.3783326,14.0549992 57.1833345,13.9233338 56.94,13.83 C56.6966654,13.7366662 56.3950018,13.69 56.035,13.69 C55.6683315,13.69 55.3316682,13.784999 55.025,13.975 C54.7183318,14.1650009 54.5050006,14.4166651 54.385,14.73 L54.365,14.73 L54.365,13.84 L53.735,13.84 Z M58.535,13.84 L60.595,18.98 L60.375,19.56 C60.3216664,19.6800006 60.2716669,19.7899995 60.225,19.89 C60.1783331,19.9900005 60.121667,20.0749997 60.055,20.145 C59.988333,20.2150004 59.9100005,20.2699998 59.82,20.31 C59.7299996,20.3500002 59.6150007,20.37 59.475,20.37 C59.4016663,20.37 59.3300004,20.365 59.26,20.355 C59.1899997,20.345 59.1183337,20.3333334 59.045,20.32 L59.045,20.85 C59.0983336,20.8700001 59.1599997,20.8816666 59.23,20.885 C59.3000004,20.8883333 59.3983327,20.8933333 59.525,20.9 C59.725001,20.9 59.8899993,20.8816669 60.02,20.845 C60.1500006,20.8083331 60.2633328,20.7483338 60.36,20.665 C60.4566672,20.5816662 60.5449996,20.468334 60.625,20.325 C60.7050004,20.1816659 60.7916662,20.0000011 60.885,19.78 L63.125,13.84 L62.495,13.84 L60.905,18.24 L59.205,13.84 L58.535,13.84 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="32" viewBox="0 0 64 32" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="64" height="32" fill="#CACACA"/>
<rect width="24" height="24" x="4" y="4" fill="#FFF"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="84" height="42" viewBox="0 0 84 42" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="84" height="42" fill="#2199E8"/>
<rect width="32.813" height="32.813" x="47.25" y="5.25" fill="#FFF"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="76" height="23" viewBox="0 0 76 23" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="76" height="23" fill="#EC5840"/>
<path fill="#FFF" d="M9.99359958,12.2239999 L13.0911996,12.2239999 L11.5679996,7.96159988 L11.5423996,7.96159988 L9.99359958,12.2239999 Z M10.9023996,6.86079986 L12.2463996,6.86079986 L15.8175997,16 L14.4735996,16 L13.4751996,13.248 L9.60959958,13.248 L8.58559956,16 L7.34399954,16 L10.9023996,6.86079986 Z M16.5983997,6.86079986 L16.5983997,16 L17.6863997,16 L17.6863997,6.86079986 L16.5983997,6.86079986 Z M23.9711998,12.0575999 C23.954133,11.8015987 23.8965336,11.5584011 23.7983998,11.3279999 C23.700266,11.0975988 23.5680006,10.8992008 23.4015998,10.7327999 C23.2351989,10.5663991 23.0389342,10.4341337 22.8127998,10.3359999 C22.5866653,10.2378661 22.3370678,10.1887999 22.0639998,10.1887999 C21.7823984,10.1887999 21.5285342,10.2378661 21.3023998,10.3359999 C21.0762653,10.4341337 20.8821339,10.5685324 20.7199997,10.7391999 C20.5578656,10.9098674 20.4298669,11.1082655 20.3359997,11.3343999 C20.2421326,11.5605344 20.1866665,11.8015987 20.1695997,12.0575999 L23.9711998,12.0575999 Z M25.0207998,13.9008 C24.8757324,14.6432037 24.5557356,15.2021314 24.0607998,15.5776 C23.565864,15.9530685 22.9429369,16.1408 22.1919998,16.1408 C21.6629304,16.1408 21.2042684,16.0554675 20.8159997,15.8848 C20.4277311,15.7141325 20.1013344,15.4752015 19.8367997,15.168 C19.5722651,14.8607984 19.3738671,14.4938688 19.2415997,14.0672 C19.1093324,13.6405312 19.0346665,13.1754691 19.0175997,12.672 C19.0175997,12.1685308 19.094399,11.7077354 19.2479997,11.2895999 C19.4016005,10.8714645 19.617065,10.5088015 19.8943997,10.2015999 C20.1717345,9.89439837 20.5002645,9.65546743 20.8799997,9.4847999 C21.259735,9.31413238 21.6757308,9.2287999 22.1279998,9.2287999 C22.7168027,9.2287999 23.2053312,9.35039868 23.5935998,9.5935999 C23.9818684,9.83680112 24.293332,10.1461314 24.5279998,10.5215999 C24.7626676,10.8970685 24.9247994,11.3066644 25.0143998,11.7503999 C25.1040003,12.1941355 25.1402666,12.6165313 25.1231998,13.0176 L20.1695997,13.0176 C20.1610664,13.3077347 20.1951994,13.582932 20.2719997,13.8432 C20.3488001,14.1034679 20.4725322,14.3338656 20.6431997,14.5344 C20.8138673,14.7349343 21.0314651,14.8949327 21.2959998,15.0144 C21.5605344,15.1338673 21.871998,15.1936 22.2303998,15.1936 C22.6912021,15.1936 23.0687983,15.0869344 23.3631998,14.8736 C23.6576013,14.6602656 23.8517327,14.3360022 23.9455998,13.9008 L25.0207998,13.9008 Z M26.2111998,9.3823999 L26.2111998,16 L27.2991998,16 L27.2991998,13.056 C27.2991998,12.6293311 27.3418661,12.2517349 27.4271998,11.9231999 C27.5125336,11.594665 27.6490656,11.3152011 27.8367998,11.0847999 C28.0245341,10.8543988 28.2719983,10.6794672 28.5791999,10.5599999 C28.8864014,10.4405327 29.2575977,10.3807999 29.6927999,10.3807999 L29.6927999,9.2287999 C29.1039969,9.21173315 28.6176018,9.33119862 28.2335999,9.5871999 C27.8495979,9.84320119 27.5253345,10.2399972 27.2607998,10.7775999 L27.2351998,10.7775999 L27.2351998,9.3823999 L26.2111998,9.3823999 Z M32.0223999,9.3823999 L32.0223999,7.39839987 L30.9343999,7.39839987 L30.9343999,9.3823999 L29.8079999,9.3823999 L29.8079999,10.3423999 L30.9343999,10.3423999 L30.9343999,14.5536 C30.9343999,14.8608015 30.9642663,15.1082657 31.0239999,15.296 C31.0837335,15.4837343 31.1754659,15.6287995 31.2991999,15.7312 C31.4229339,15.8336005 31.5850656,15.9039998 31.7855999,15.9424 C31.9861342,15.9808002 32.2271985,16 32.5087999,16 L33.3407999,16 L33.3407999,15.04 L32.8415999,15.04 C32.6709324,15.04 32.5322671,15.0336 32.4255999,15.0208 C32.3189327,15.0079999 32.2357335,14.9802669 32.1759999,14.9376 C32.1162663,14.8949331 32.0757334,14.8352004 32.0543999,14.7584 C32.0330665,14.6815996 32.0223999,14.5792006 32.0223999,14.4512 L32.0223999,10.3423999 L33.3407999,10.3423999 L33.3407999,9.3823999 L32.0223999,9.3823999 Z M38.2816,6.86079986 L38.2816,16 L44.3360001,16 L44.3360001,14.976 L39.4976,14.976 L39.4976,6.86079986 L38.2816,6.86079986 Z M51.0816002,15.9744 C50.8938659,16.0853339 50.6336019,16.1408 50.3008002,16.1408 C50.0191988,16.1408 49.795201,16.0618675 49.6288002,15.904 C49.4623993,15.7461325 49.3792002,15.4880018 49.3792002,15.1296 C49.080532,15.4880018 48.7328021,15.7461325 48.3360002,15.904 C47.9391982,16.0618675 47.5104024,16.1408 47.0496001,16.1408 C46.750932,16.1408 46.4672015,16.106667 46.1984001,16.0384 C45.9295988,15.970133 45.6970678,15.8634674 45.5008001,15.7184 C45.3045325,15.5733326 45.1488007,15.3834678 45.0336001,15.1488 C44.9183995,14.9141321 44.8608001,14.6304016 44.8608001,14.2976 C44.8608001,13.9221314 44.9247995,13.6149345 45.0528001,13.376 C45.1808007,13.1370654 45.3493324,12.942934 45.5584001,12.7936 C45.7674678,12.6442659 46.0063988,12.5312003 46.2752001,12.4543999 C46.5440015,12.3775996 46.8191987,12.3136002 47.1008001,12.2623999 C47.3994683,12.2026663 47.6831988,12.1578668 47.9520001,12.1279999 C48.2208015,12.0981331 48.4575991,12.0554669 48.6624002,11.9999999 C48.8672012,11.944533 49.0293329,11.8634671 49.1488002,11.7567999 C49.2682674,11.6501327 49.3280002,11.494401 49.3280002,11.2895999 C49.3280002,11.0506654 49.2832006,10.8586673 49.1936002,10.7135999 C49.1039997,10.5685325 48.9888009,10.4576003 48.8480002,10.3807999 C48.7071995,10.3039995 48.5493344,10.2528 48.3744002,10.2271999 C48.1994659,10.2015998 48.0266677,10.1887999 47.8560001,10.1887999 C47.3951978,10.1887999 47.0112017,10.2762657 46.7040001,10.4511999 C46.3967986,10.6261341 46.2304003,10.9567975 46.2048001,11.4431999 L45.1168001,11.4431999 C45.1338669,11.0335979 45.2191993,10.6880013 45.3728001,10.4063999 C45.5264009,10.1247985 45.7311988,9.89653412 45.9872001,9.72159991 C46.2432014,9.5466657 46.5354652,9.42080029 46.8640001,9.3439999 C47.1925351,9.26719952 47.5445316,9.2287999 47.9200001,9.2287999 C48.2186683,9.2287999 48.5151987,9.25013302 48.8096002,9.2927999 C49.1040016,9.33546678 49.3706656,9.42293257 49.6096002,9.5551999 C49.8485347,9.68746723 50.0405328,9.87306538 50.1856002,10.1119999 C50.3306676,10.3509344 50.4032002,10.662398 50.4032002,11.0463999 L50.4032002,14.4512 C50.4032002,14.7072013 50.4181334,14.8949327 50.4480002,15.0144 C50.477867,15.1338673 50.5781327,15.1936 50.7488002,15.1936 C50.8426673,15.1936 50.9535996,15.1722669 51.0816002,15.1296 L51.0816002,15.9744 Z M49.3152002,12.5823999 C49.1786662,12.6848005 48.9994679,12.7594664 48.7776002,12.8064 C48.5557324,12.8533335 48.3232014,12.8917331 48.0800002,12.9216 C47.8367989,12.9514668 47.591468,12.9855998 47.3440001,13.024 C47.0965322,13.0624001 46.8746678,13.1242662 46.6784001,13.2096 C46.4821325,13.2949337 46.3221341,13.4165325 46.1984001,13.5744 C46.0746662,13.7322674 46.0128001,13.9477319 46.0128001,14.2208 C46.0128001,14.4000009 46.0490664,14.551466 46.1216001,14.6752 C46.1941338,14.7989339 46.2879995,14.8991996 46.4032001,14.976 C46.5184007,15.0528004 46.6527994,15.1082665 46.8064001,15.1424 C46.9600009,15.1765335 47.1221326,15.1936 47.2928001,15.1936 C47.6512019,15.1936 47.9583989,15.1445338 48.2144002,15.0464 C48.4704014,14.9482662 48.679466,14.8245341 48.8416002,14.6752 C49.0037343,14.5258659 49.1231998,14.3637342 49.2000002,14.1888 C49.2768006,14.0138658 49.3152002,13.8496007 49.3152002,13.696 L49.3152002,12.5823999 Z M52.1312002,6.86079986 L53.2192002,6.86079986 L53.2192002,10.2783999 L53.2448002,10.2783999 C53.4240011,9.91146474 53.7055983,9.64480074 54.0896002,9.4783999 C54.4736022,9.31199907 54.8959979,9.2287999 55.3568003,9.2287999 C55.8688028,9.2287999 56.314665,9.32266563 56.6944003,9.5103999 C57.0741355,9.69813418 57.3898657,9.95199831 57.6416003,10.2719999 C57.8933349,10.5920015 58.0831997,10.9610645 58.2112003,11.3791999 C58.3392009,11.7973354 58.4032003,12.2410643 58.4032003,12.7104 C58.4032003,13.1797356 58.3413343,13.6234645 58.2176003,14.0416 C58.0938663,14.4597354 57.9061349,14.8245318 57.6544003,15.136 C57.4026657,15.4474682 57.0869355,15.6927991 56.7072003,15.872 C56.327465,16.0512009 55.8858695,16.1408 55.3824003,16.1408 C55.2202661,16.1408 55.0389346,16.1237335 54.8384003,16.0896 C54.6378659,16.0554665 54.4394679,16.0000004 54.2432002,15.9232 C54.0469326,15.8463996 53.8613344,15.7418673 53.6864002,15.6096 C53.511466,15.4773327 53.3642675,15.3130676 53.2448002,15.1168 L53.2192002,15.1168 L53.2192002,16 L52.1312002,16 L52.1312002,6.86079986 Z M57.2512003,12.6335999 C57.2512003,12.3263984 57.2106674,12.0256014 57.1296003,11.7311999 C57.0485332,11.4367985 56.9248011,11.1744011 56.7584003,10.9439999 C56.5919994,10.7135988 56.3786682,10.5301339 56.1184003,10.3935999 C55.8581323,10.2570659 55.5530687,10.1887999 55.2032003,10.1887999 C54.8362651,10.1887999 54.5248015,10.2613325 54.2688002,10.4063999 C54.012799,10.5514673 53.8037344,10.7413321 53.6416002,10.9759999 C53.4794661,11.2106678 53.3621339,11.4773318 53.2896002,11.7759999 C53.2170665,12.0746681 53.1808002,12.3775984 53.1808002,12.6848 C53.1808002,13.0090682 53.2191998,13.3226651 53.2960002,13.6256 C53.3728006,13.9285348 53.4943994,14.1951988 53.6608002,14.4256 C53.8272011,14.6560011 54.0426656,14.8415993 54.3072002,14.9824 C54.5717349,15.1232007 54.8917317,15.1936 55.2672003,15.1936 C55.6426688,15.1936 55.9562657,15.1210674 56.2080003,14.976 C56.4597349,14.8309326 56.6623995,14.6389345 56.8160003,14.4 C56.9696011,14.1610654 57.0805333,13.8880015 57.1488003,13.5808 C57.2170673,13.2735984 57.2512003,12.9578682 57.2512003,12.6335999 Z M64.2784004,12.0575999 C64.2613336,11.8015987 64.2037342,11.5584011 64.1056004,11.3279999 C64.0074666,11.0975988 63.8752012,10.8992008 63.7088004,10.7327999 C63.5423995,10.5663991 63.3461348,10.4341337 63.1200004,10.3359999 C62.8938659,10.2378661 62.6442684,10.1887999 62.3712004,10.1887999 C62.089599,10.1887999 61.8357348,10.2378661 61.6096004,10.3359999 C61.3834659,10.4341337 61.1893345,10.5685324 61.0272003,10.7391999 C60.8650662,10.9098674 60.7370675,11.1082655 60.6432003,11.3343999 C60.5493332,11.5605344 60.4938671,11.8015987 60.4768003,12.0575999 L64.2784004,12.0575999 Z M65.3280004,13.9008 C65.182933,14.6432037 64.8629362,15.2021314 64.3680004,15.5776 C63.8730646,15.9530685 63.2501375,16.1408 62.4992004,16.1408 C61.970131,16.1408 61.511469,16.0554675 61.1232003,15.8848 C60.7349317,15.7141325 60.408535,15.4752015 60.1440003,15.168 C59.8794657,14.8607984 59.6810677,14.4938688 59.5488003,14.0672 C59.416533,13.6405312 59.3418671,13.1754691 59.3248003,12.672 C59.3248003,12.1685308 59.4015996,11.7077354 59.5552003,11.2895999 C59.7088011,10.8714645 59.9242656,10.5088015 60.2016003,10.2015999 C60.4789351,9.89439837 60.8074651,9.65546743 61.1872003,9.4847999 C61.5669356,9.31413238 61.9829314,9.2287999 62.4352004,9.2287999 C63.0240033,9.2287999 63.5125318,9.35039868 63.9008004,9.5935999 C64.289069,9.83680112 64.6005326,10.1461314 64.8352004,10.5215999 C65.0698682,10.8970685 65.232,11.3066644 65.3216004,11.7503999 C65.4112009,12.1941355 65.4474672,12.6165313 65.4304004,13.0176 L60.4768003,13.0176 C60.468267,13.3077347 60.5024,13.582932 60.5792003,13.8432 C60.6560007,14.1034679 60.7797328,14.3338656 60.9504003,14.5344 C61.1210679,14.7349343 61.3386657,14.8949327 61.6032004,15.0144 C61.867735,15.1338673 62.1791986,15.1936 62.5376004,15.1936 C62.9984027,15.1936 63.3759989,15.0869344 63.6704004,14.8736 C63.9648019,14.6602656 64.1589333,14.3360022 64.2528004,13.9008 L65.3280004,13.9008 Z M66.6208004,6.86079986 L66.6208004,16 L67.7088004,16 L67.7088004,6.86079986 L66.6208004,6.86079986 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="101" height="23" viewBox="0 0 101 23" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="101" height="23" fill="#3ADB76"/>
<path fill="#FFF" d="M15.4415995,9.5359999 L16.5935995,9.5359999 C16.5765327,9.03253071 16.4805337,8.59946837 16.3055995,8.23679988 C16.1306653,7.8741314 15.8917343,7.5733344 15.5887995,7.33439987 C15.2858646,7.09546534 14.9338681,6.92053375 14.5327995,6.80959986 C14.1317308,6.69866597 13.6965351,6.64319986 13.2271994,6.64319986 C12.809064,6.64319986 12.4016014,6.69653266 12.0047994,6.80319986 C11.6079974,6.90986706 11.2538676,7.07199878 10.9423994,7.28959987 C10.6309312,7.50720096 10.3813337,7.78453153 10.1935994,8.12159988 C10.0058651,8.45866824 9.91199939,8.85759759 9.91199939,9.3183999 C9.91199939,9.73653533 9.99519856,10.0842652 10.1615994,10.3615999 C10.3280002,10.6389346 10.5498647,10.8650657 10.8271994,11.0399999 C11.1045341,11.2149341 11.418131,11.3557327 11.7679994,11.4623999 C12.1178678,11.5690671 12.4741309,11.6629329 12.8367994,11.7439999 C13.1994679,11.825067 13.555731,11.9039996 13.9055994,11.9807999 C14.2554679,12.0576003 14.5690647,12.157866 14.8463995,12.2815999 C15.1237342,12.4053339 15.3455986,12.5653323 15.5119995,12.7616 C15.6784003,12.9578676 15.7615995,13.213865 15.7615995,13.5296 C15.7615995,13.8624016 15.6933335,14.1354656 15.5567995,14.3488 C15.4202655,14.5621344 15.2410672,14.730666 15.0191995,14.8544 C14.7973317,14.9781339 14.5477342,15.0655997 14.2703995,15.1168 C13.9930647,15.1680002 13.7178675,15.1936 13.4447994,15.1936 C13.1034644,15.1936 12.7706677,15.1509337 12.4463994,15.0656 C12.1221311,14.9802662 11.8384006,14.8480009 11.5951994,14.6688 C11.3519982,14.4895991 11.1557335,14.2613347 11.0063994,13.984 C10.8570653,13.7066652 10.7823994,13.3760019 10.7823994,12.992 L9.63039938,12.992 C9.63039938,13.5466694 9.73066505,14.0266646 9.93119939,14.432 C10.1317337,14.8373353 10.4047977,15.170132 10.7503994,15.4304 C11.0960011,15.690668 11.4970638,15.8847994 11.9535994,16.0128 C12.410135,16.1408006 12.8943969,16.2048 13.4063994,16.2048 C13.8245349,16.2048 14.2447973,16.1557338 14.6671995,16.0576 C15.0896016,15.9594662 15.4714644,15.8016011 15.8127995,15.584 C16.1541345,15.3663989 16.4335984,15.0848017 16.6511995,14.7392 C16.8688006,14.3935982 16.9775995,13.9776024 16.9775995,13.4912 C16.9775995,13.038931 16.8944003,12.6634681 16.7279995,12.3647999 C16.5615987,12.0661318 16.3397342,11.8186676 16.0623995,11.6223999 C15.7850648,11.4261323 15.4714679,11.2704005 15.1215995,11.1551999 C14.771731,11.0399994 14.4154679,10.9397337 14.0527994,10.8543999 C13.690131,10.7690662 13.3338679,10.6901336 12.9839994,10.6175999 C12.634131,10.5450662 12.3205341,10.4533338 12.0431994,10.3423999 C11.7658647,10.231466 11.5440002,10.0885341 11.3775994,9.91359991 C11.2111986,9.7386657 11.1279994,9.51040131 11.1279994,9.2287999 C11.1279994,8.93013173 11.1855988,8.68053423 11.3007994,8.47999989 C11.416,8.27946555 11.5695985,8.11946715 11.7615994,7.99999988 C11.9536004,7.88053262 12.1733315,7.79520013 12.4207994,7.74399988 C12.6682673,7.69279962 12.9199982,7.66719988 13.1759994,7.66719988 C13.8074693,7.66719988 14.3258641,7.81439841 14.7311995,8.10879988 C15.1365348,8.40320136 15.3733325,8.87892994 15.4415995,9.5359999 Z M23.7487996,16 L23.7487996,9.3823999 L22.6607996,9.3823999 L22.6607996,13.12 C22.6607996,13.4186681 22.6202666,13.6938654 22.5391996,13.9456 C22.4581325,14.1973346 22.3365337,14.4170657 22.1743996,14.6048 C22.0122654,14.7925343 21.8096008,14.9375995 21.5663996,15.04 C21.3231983,15.1424005 21.0352012,15.1936 20.7023995,15.1936 C20.2842641,15.1936 19.9557341,15.0741345 19.7167995,14.8352 C19.477865,14.5962655 19.3583995,14.272002 19.3583995,13.8624 L19.3583995,9.3823999 L18.2703995,9.3823999 L18.2703995,13.7344 C18.2703995,14.0928018 18.3066658,14.4191985 18.3791995,14.7136 C18.4517332,15.0080015 18.5775986,15.2618656 18.7567995,15.4752 C18.9360004,15.6885344 19.1706647,15.8527994 19.4607995,15.968 C19.7509343,16.0832006 20.1135974,16.1408 20.5487995,16.1408 C21.035202,16.1408 21.4575978,16.044801 21.8159996,15.8528 C22.1744014,15.660799 22.4687984,15.360002 22.6991996,14.9504 L22.7247996,14.9504 L22.7247996,16 L23.7487996,16 Z M29.8799997,11.5071999 L31.0063997,11.5071999 C30.9637328,11.1146646 30.8613338,10.775468 30.6991997,10.4895999 C30.5370656,10.2037318 30.3301343,9.96693418 30.0783997,9.77919991 C29.8266651,9.59146563 29.5365347,9.45280035 29.2079997,9.3631999 C28.8794647,9.27359945 28.5274682,9.2287999 28.1519997,9.2287999 C27.6314637,9.2287999 27.1749349,9.32053232 26.7823996,9.5039999 C26.3898643,9.68746749 26.0634676,9.93919831 25.8031996,10.2591999 C25.5429317,10.5792015 25.3488003,10.9546644 25.2207996,11.3855999 C25.092799,11.8165354 25.0287996,12.2794641 25.0287996,12.7744 C25.0287996,13.2693358 25.0949323,13.7237312 25.2271996,14.1376 C25.3594669,14.5514687 25.5557317,14.9077318 25.8159996,15.2064 C26.0762676,15.5050682 26.400531,15.7354659 26.7887996,15.8976 C27.1770683,16.0597341 27.6229305,16.1408 28.1263997,16.1408 C28.9712039,16.1408 29.6389306,15.9189356 30.1295997,15.4752 C30.6202688,15.0314644 30.9253324,14.4000041 31.0447997,13.5808 L29.9311997,13.5808 C29.8629327,14.0928025 29.6773345,14.4895986 29.3743997,14.7712 C29.0714648,15.0528014 28.6512024,15.1936 28.1135997,15.1936 C27.7722646,15.1936 27.4778676,15.125334 27.2303996,14.9888 C26.9829317,14.852266 26.7824004,14.6709344 26.6287996,14.4448 C26.4751989,14.2186655 26.3621333,13.9605348 26.2895996,13.6704 C26.2170659,13.3802652 26.1807996,13.0816015 26.1807996,12.7744 C26.1807996,12.4415983 26.2149326,12.1194682 26.2831996,11.8079999 C26.3514666,11.4965317 26.4645322,11.2213345 26.6223996,10.9823999 C26.7802671,10.7434654 26.991465,10.5514673 27.2559996,10.4063999 C27.5205343,10.2613325 27.8490644,10.1887999 28.2415997,10.1887999 C28.702402,10.1887999 29.0693316,10.3039988 29.3423997,10.5343999 C29.6154677,10.7648011 29.7946659,11.0890645 29.8799997,11.5071999 Z M36.7535998,11.5071999 L37.8799998,11.5071999 C37.8373329,11.1146646 37.7349339,10.775468 37.5727998,10.4895999 C37.4106657,10.2037318 37.2037344,9.96693418 36.9519998,9.77919991 C36.7002652,9.59146563 36.4101348,9.45280035 36.0815998,9.3631999 C35.7530648,9.27359945 35.4010683,9.2287999 35.0255998,9.2287999 C34.5050638,9.2287999 34.048535,9.32053232 33.6559997,9.5039999 C33.2634644,9.68746749 32.9370677,9.93919831 32.6767997,10.2591999 C32.4165318,10.5792015 32.2224004,10.9546644 32.0943997,11.3855999 C31.9663991,11.8165354 31.9023997,12.2794641 31.9023997,12.7744 C31.9023997,13.2693358 31.9685324,13.7237312 32.1007997,14.1376 C32.233067,14.5514687 32.4293318,14.9077318 32.6895997,15.2064 C32.9498677,15.5050682 33.2741311,15.7354659 33.6623997,15.8976 C34.0506684,16.0597341 34.4965306,16.1408 34.9999998,16.1408 C35.844804,16.1408 36.5125307,15.9189356 37.0031998,15.4752 C37.4938689,15.0314644 37.7989325,14.4000041 37.9183998,13.5808 L36.8047998,13.5808 C36.7365328,14.0928025 36.5509346,14.4895986 36.2479998,14.7712 C35.9450649,15.0528014 35.5248025,15.1936 34.9871998,15.1936 C34.6458647,15.1936 34.3514677,15.125334 34.1039997,14.9888 C33.8565318,14.852266 33.6560005,14.6709344 33.5023997,14.4448 C33.348799,14.2186655 33.2357334,13.9605348 33.1631997,13.6704 C33.090666,13.3802652 33.0543997,13.0816015 33.0543997,12.7744 C33.0543997,12.4415983 33.0885327,12.1194682 33.1567997,11.8079999 C33.2250667,11.4965317 33.3381323,11.2213345 33.4959997,10.9823999 C33.6538672,10.7434654 33.8650651,10.5514673 34.1295997,10.4063999 C34.3941344,10.2613325 34.7226645,10.1887999 35.1151998,10.1887999 C35.5760021,10.1887999 35.9429317,10.3039988 36.2159998,10.5343999 C36.4890678,10.7648011 36.668266,11.0890645 36.7535998,11.5071999 Z M43.7295999,12.0575999 C43.7125331,11.8015987 43.6549337,11.5584011 43.5567999,11.3279999 C43.4586661,11.0975988 43.3264007,10.8992008 43.1599999,10.7327999 C42.993599,10.5663991 42.7973343,10.4341337 42.5711999,10.3359999 C42.3450654,10.2378661 42.0954679,10.1887999 41.8223999,10.1887999 C41.5407985,10.1887999 41.2869343,10.2378661 41.0607999,10.3359999 C40.8346654,10.4341337 40.640534,10.5685324 40.4783998,10.7391999 C40.3162657,10.9098674 40.188267,11.1082655 40.0943998,11.3343999 C40.0005327,11.5605344 39.9450666,11.8015987 39.9279998,12.0575999 L43.7295999,12.0575999 Z M44.7791999,13.9008 C44.6341325,14.6432037 44.3141357,15.2021314 43.8191999,15.5776 C43.3242641,15.9530685 42.701337,16.1408 41.9503999,16.1408 C41.4213305,16.1408 40.9626685,16.0554675 40.5743998,15.8848 C40.1861312,15.7141325 39.8597345,15.4752015 39.5951998,15.168 C39.3306652,14.8607984 39.1322672,14.4938688 38.9999998,14.0672 C38.8677325,13.6405312 38.7930666,13.1754691 38.7759998,12.672 C38.7759998,12.1685308 38.8527991,11.7077354 39.0063998,11.2895999 C39.1600006,10.8714645 39.3754651,10.5088015 39.6527998,10.2015999 C39.9301346,9.89439837 40.2586646,9.65546743 40.6383998,9.4847999 C41.0181351,9.31413238 41.4341309,9.2287999 41.8863999,9.2287999 C42.4752028,9.2287999 42.9637313,9.35039868 43.3519999,9.5935999 C43.7402685,9.83680112 44.0517321,10.1461314 44.2863999,10.5215999 C44.5210677,10.8970685 44.6831995,11.3066644 44.7727999,11.7503999 C44.8624004,12.1941355 44.8986667,12.6165313 44.8815999,13.0176 L39.9279998,13.0176 C39.9194665,13.3077347 39.9535995,13.582932 40.0303998,13.8432 C40.1072002,14.1034679 40.2309323,14.3338656 40.4015998,14.5344 C40.5722674,14.7349343 40.7898652,14.8949327 41.0543999,15.0144 C41.3189345,15.1338673 41.6303981,15.1936 41.9887999,15.1936 C42.4496022,15.1936 42.8271984,15.0869344 43.1215999,14.8736 C43.4160014,14.6602656 43.6101328,14.3360022 43.7039999,13.9008 L44.7791999,13.9008 Z M46.6735999,13.9136 L45.5855999,13.9136 C45.6026667,14.323202 45.6879992,14.6709319 45.8415999,14.9568 C45.9952007,15.2426681 46.1999986,15.4730658 46.4559999,15.648 C46.7120012,15.8229342 47.0063983,15.9487996 47.3391999,16.0256 C47.6720016,16.1024004 48.0218648,16.1408 48.3888,16.1408 C48.7216016,16.1408 49.0565316,16.1088003 49.3936,16.0448 C49.7306683,15.9807997 50.0335986,15.8677341 50.3024,15.7056 C50.5712013,15.5434658 50.7887992,15.3301346 50.9552,15.0656 C51.1216008,14.8010653 51.2048,14.4682686 51.2048,14.0672 C51.2048,13.7514651 51.142934,13.4869344 51.0192,13.2736 C50.895466,13.0602656 50.7333343,12.8832007 50.5328,12.7424 C50.3322657,12.6015992 50.101868,12.4885337 49.8416,12.4031999 C49.581332,12.3178662 49.314668,12.2453336 49.0416,12.1855999 C48.7855987,12.1258663 48.5296012,12.0682669 48.2736,12.0127999 C48.0175987,11.957333 47.787201,11.889067 47.5823999,11.8079999 C47.3775989,11.7269329 47.2090673,11.6245339 47.0767999,11.5007999 C46.9445326,11.377066 46.8783999,11.2213342 46.8783999,11.0335999 C46.8783999,10.8629324 46.9210662,10.7242671 47.0063999,10.6175999 C47.0917337,10.5109327 47.2026659,10.4256002 47.3391999,10.3615999 C47.475734,10.2975996 47.6271991,10.2528 47.7936,10.2271999 C47.9600008,10.2015998 48.1242658,10.1887999 48.2864,10.1887999 C48.4656009,10.1887999 48.6426658,10.2079997 48.8176,10.2463999 C48.9925342,10.2848001 49.1525326,10.3466662 49.2976,10.4319999 C49.4426674,10.5173337 49.5621328,10.6303992 49.656,10.7711999 C49.7498671,10.9120006 49.8053332,11.0890655 49.8224,11.3023999 L50.9104,11.3023999 C50.8847999,10.9013313 50.7994674,10.5664013 50.6544,10.2975999 C50.5093326,10.0287986 50.3152012,9.81546736 50.072,9.65759991 C49.8287988,9.49973245 49.5493349,9.38880022 49.2336,9.3247999 C48.9178651,9.26079958 48.5722685,9.2287999 48.1968,9.2287999 C47.9066652,9.2287999 47.6144014,9.2650662 47.3199999,9.3375999 C47.0255985,9.4101336 46.7610678,9.52106582 46.5263999,9.67039991 C46.2917321,9.81973399 46.099734,10.0138654 45.9503999,10.2527999 C45.8010658,10.4917344 45.7263999,10.7775983 45.7263999,11.1103999 C45.7263999,11.5370687 45.8330655,11.8698654 46.0463999,12.1087999 C46.2597343,12.3477345 46.5263983,12.5333326 46.8463999,12.6656 C47.1664015,12.7978673 47.5141314,12.9002663 47.8896,12.9728 C48.2650685,13.0453337 48.6127984,13.1263995 48.9328,13.216 C49.2528016,13.3056004 49.5194656,13.4229326 49.7328,13.568 C49.9461344,13.7130674 50.0528,13.9263986 50.0528,14.208 C50.0528,14.412801 50.0016005,14.5813327 49.8992,14.7136 C49.7967995,14.8458673 49.6666674,14.946133 49.5088,15.0144 C49.3509325,15.082667 49.1781342,15.1295999 48.9904,15.1552 C48.8026657,15.1808001 48.6234675,15.1936 48.4528,15.1936 C48.2309322,15.1936 48.0154677,15.1722669 47.8064,15.1296 C47.5973322,15.0869331 47.4096008,15.0165338 47.2431999,14.9184 C47.0767991,14.8202662 46.9424005,14.6880008 46.8399999,14.5216 C46.7375994,14.3551991 46.6821333,14.1525345 46.6735999,13.9136 Z M53.0736,13.9136 L51.9856,13.9136 C52.0026668,14.323202 52.0879992,14.6709319 52.2416,14.9568 C52.3952008,15.2426681 52.5999987,15.4730658 52.856,15.648 C53.1120013,15.8229342 53.4063984,15.9487996 53.7392,16.0256 C54.0720017,16.1024004 54.4218649,16.1408 54.7888001,16.1408 C55.1216017,16.1408 55.4565317,16.1088003 55.7936001,16.0448 C56.1306684,15.9807997 56.4335987,15.8677341 56.7024001,15.7056 C56.9712014,15.5434658 57.1887993,15.3301346 57.3552001,15.0656 C57.5216009,14.8010653 57.6048001,14.4682686 57.6048001,14.0672 C57.6048001,13.7514651 57.542934,13.4869344 57.4192001,13.2736 C57.2954661,13.0602656 57.1333344,12.8832007 56.9328001,12.7424 C56.7322657,12.6015992 56.501868,12.4885337 56.2416001,12.4031999 C55.9813321,12.3178662 55.7146681,12.2453336 55.4416001,12.1855999 C55.1855988,12.1258663 54.9296013,12.0682669 54.6736001,12.0127999 C54.4175988,11.957333 54.1872011,11.889067 53.9824,11.8079999 C53.777599,11.7269329 53.6090674,11.6245339 53.4768,11.5007999 C53.3445327,11.377066 53.2784,11.2213342 53.2784,11.0335999 C53.2784,10.8629324 53.3210663,10.7242671 53.4064,10.6175999 C53.4917338,10.5109327 53.602666,10.4256002 53.7392,10.3615999 C53.8757341,10.2975996 54.0271992,10.2528 54.1936,10.2271999 C54.3600009,10.2015998 54.5242659,10.1887999 54.6864001,10.1887999 C54.865601,10.1887999 55.0426659,10.2079997 55.2176001,10.2463999 C55.3925343,10.2848001 55.5525327,10.3466662 55.6976001,10.4319999 C55.8426675,10.5173337 55.9621329,10.6303992 56.0560001,10.7711999 C56.1498672,10.9120006 56.2053333,11.0890655 56.2224001,11.3023999 L57.3104001,11.3023999 C57.2848,10.9013313 57.1994675,10.5664013 57.0544001,10.2975999 C56.9093327,10.0287986 56.7152013,9.81546736 56.4720001,9.65759991 C56.2287989,9.49973245 55.949335,9.38880022 55.6336001,9.3247999 C55.3178652,9.26079958 54.9722686,9.2287999 54.5968001,9.2287999 C54.3066653,9.2287999 54.0144015,9.2650662 53.72,9.3375999 C53.4255986,9.4101336 53.1610679,9.52106582 52.9264,9.67039991 C52.6917322,9.81973399 52.4997341,10.0138654 52.3504,10.2527999 C52.2010659,10.4917344 52.1264,10.7775983 52.1264,11.1103999 C52.1264,11.5370687 52.2330656,11.8698654 52.4464,12.1087999 C52.6597344,12.3477345 52.9263984,12.5333326 53.2464,12.6656 C53.5664016,12.7978673 53.9141315,12.9002663 54.2896,12.9728 C54.6650686,13.0453337 55.0127985,13.1263995 55.3328001,13.216 C55.6528017,13.3056004 55.9194657,13.4229326 56.1328001,13.568 C56.3461345,13.7130674 56.4528001,13.9263986 56.4528001,14.208 C56.4528001,14.412801 56.4016006,14.5813327 56.2992001,14.7136 C56.1967996,14.8458673 56.0666675,14.946133 55.9088001,15.0144 C55.7509326,15.082667 55.5781343,15.1295999 55.3904001,15.1552 C55.2026658,15.1808001 55.0234676,15.1936 54.8528001,15.1936 C54.6309323,15.1936 54.4154678,15.1722669 54.2064,15.1296 C53.9973323,15.0869331 53.8096009,15.0165338 53.6432,14.9184 C53.4767992,14.8202662 53.3424005,14.6880008 53.24,14.5216 C53.1375995,14.3551991 53.0821334,14.1525345 53.0736,13.9136 Z M62.5456002,6.86079986 L62.5456002,16 L68.6000003,16 L68.6000003,14.976 L63.7616002,14.976 L63.7616002,6.86079986 L62.5456002,6.86079986 Z M75.3456004,15.9744 C75.1578661,16.0853339 74.897602,16.1408 74.5648004,16.1408 C74.2831989,16.1408 74.0592012,16.0618675 73.8928003,15.904 C73.7263995,15.7461325 73.6432003,15.4880018 73.6432003,15.1296 C73.3445322,15.4880018 72.9968023,15.7461325 72.6000003,15.904 C72.2031983,16.0618675 71.7744026,16.1408 71.3136003,16.1408 C71.0149321,16.1408 70.7312016,16.106667 70.4624003,16.0384 C70.1935989,15.970133 69.9610679,15.8634674 69.7648003,15.7184 C69.5685326,15.5733326 69.4128009,15.3834678 69.2976003,15.1488 C69.1823997,14.9141321 69.1248003,14.6304016 69.1248003,14.2976 C69.1248003,13.9221314 69.1887996,13.6149345 69.3168003,13.376 C69.4448009,13.1370654 69.6133326,12.942934 69.8224003,12.7936 C70.031468,12.6442659 70.2703989,12.5312003 70.5392003,12.4543999 C70.8080016,12.3775996 71.0831989,12.3136002 71.3648003,12.2623999 C71.6634685,12.2026663 71.947199,12.1578668 72.2160003,12.1279999 C72.4848017,12.0981331 72.7215993,12.0554669 72.9264003,11.9999999 C73.1312014,11.944533 73.2933331,11.8634671 73.4128003,11.7567999 C73.5322676,11.6501327 73.5920003,11.494401 73.5920003,11.2895999 C73.5920003,11.0506654 73.5472008,10.8586673 73.4576003,10.7135999 C73.3679999,10.5685325 73.252801,10.4576003 73.1120003,10.3807999 C72.9711996,10.3039995 72.8133345,10.2528 72.6384003,10.2271999 C72.4634661,10.2015998 72.2906678,10.1887999 72.1200003,10.1887999 C71.659198,10.1887999 71.2752018,10.2762657 70.9680003,10.4511999 C70.6607988,10.6261341 70.4944004,10.9567975 70.4688003,11.4431999 L69.3808003,11.4431999 C69.397867,11.0335979 69.4831995,10.6880013 69.6368003,10.4063999 C69.790401,10.1247985 69.995199,9.89653412 70.2512003,9.72159991 C70.5072016,9.5466657 70.7994653,9.42080029 71.1280003,9.3439999 C71.4565353,9.26719952 71.8085318,9.2287999 72.1840003,9.2287999 C72.4826685,9.2287999 72.7791989,9.25013302 73.0736003,9.2927999 C73.3680018,9.33546678 73.6346658,9.42293257 73.8736003,9.5551999 C74.1125349,9.68746723 74.304533,9.87306538 74.4496003,10.1119999 C74.5946677,10.3509344 74.6672004,10.662398 74.6672004,11.0463999 L74.6672004,14.4512 C74.6672004,14.7072013 74.6821335,14.8949327 74.7120004,15.0144 C74.7418672,15.1338673 74.8421328,15.1936 75.0128004,15.1936 C75.1066675,15.1936 75.2175997,15.1722669 75.3456004,15.1296 L75.3456004,15.9744 Z M73.5792003,12.5823999 C73.4426663,12.6848005 73.2634681,12.7594664 73.0416003,12.8064 C72.8197325,12.8533335 72.5872015,12.8917331 72.3440003,12.9216 C72.1007991,12.9514668 71.8554682,12.9855998 71.6080003,13.024 C71.3605324,13.0624001 71.1386679,13.1242662 70.9424003,13.2096 C70.7461326,13.2949337 70.5861342,13.4165325 70.4624003,13.5744 C70.3386663,13.7322674 70.2768003,13.9477319 70.2768003,14.2208 C70.2768003,14.4000009 70.3130666,14.551466 70.3856003,14.6752 C70.458134,14.7989339 70.5519997,14.8991996 70.6672003,14.976 C70.7824009,15.0528004 70.9167995,15.1082665 71.0704003,15.1424 C71.2240011,15.1765335 71.3861328,15.1936 71.5568003,15.1936 C71.9152021,15.1936 72.222399,15.1445338 72.4784003,15.0464 C72.7344016,14.9482662 72.9434662,14.8245341 73.1056003,14.6752 C73.2677345,14.5258659 73.3871999,14.3637342 73.4640003,14.1888 C73.5408007,14.0138658 73.5792003,13.8496007 73.5792003,13.696 L73.5792003,12.5823999 Z M76.3952004,6.86079986 L77.4832004,6.86079986 L77.4832004,10.2783999 L77.5088004,10.2783999 C77.6880013,9.91146474 77.9695985,9.64480074 78.3536004,9.4783999 C78.7376023,9.31199907 79.1599981,9.2287999 79.6208004,9.2287999 C80.132803,9.2287999 80.5786652,9.32266563 80.9584004,9.5103999 C81.3381357,9.69813418 81.6538659,9.95199831 81.9056005,10.2719999 C82.1573351,10.5920015 82.3471998,10.9610645 82.4752005,11.3791999 C82.6032011,11.7973354 82.6672005,12.2410643 82.6672005,12.7104 C82.6672005,13.1797356 82.6053344,13.6234645 82.4816005,14.0416 C82.3578665,14.4597354 82.1701351,14.8245318 81.9184005,15.136 C81.6666659,15.4474682 81.3509357,15.6927991 80.9712004,15.872 C80.5914652,16.0512009 80.1498696,16.1408 79.6464004,16.1408 C79.4842663,16.1408 79.3029348,16.1237335 79.1024004,16.0896 C78.9018661,16.0554665 78.7034681,16.0000004 78.5072004,15.9232 C78.3109328,15.8463996 78.1253346,15.7418673 77.9504004,15.6096 C77.7754662,15.4773327 77.6282677,15.3130676 77.5088004,15.1168 L77.4832004,15.1168 L77.4832004,16 L76.3952004,16 L76.3952004,6.86079986 Z M81.5152005,12.6335999 C81.5152005,12.3263984 81.4746675,12.0256014 81.3936005,11.7311999 C81.3125334,11.4367985 81.1888013,11.1744011 81.0224004,10.9439999 C80.8559996,10.7135988 80.6426684,10.5301339 80.3824004,10.3935999 C80.1221325,10.2570659 79.8170688,10.1887999 79.4672004,10.1887999 C79.1002653,10.1887999 78.7888017,10.2613325 78.5328004,10.4063999 C78.2767991,10.5514673 78.0677345,10.7413321 77.9056004,10.9759999 C77.7434663,11.2106678 77.6261341,11.4773318 77.5536004,11.7759999 C77.4810667,12.0746681 77.4448004,12.3775984 77.4448004,12.6848 C77.4448004,13.0090682 77.4832,13.3226651 77.5600004,13.6256 C77.6368008,13.9285348 77.7583996,14.1951988 77.9248004,14.4256 C78.0912012,14.6560011 78.3066658,14.8415993 78.5712004,14.9824 C78.8357351,15.1232007 79.1557319,15.1936 79.5312004,15.1936 C79.906669,15.1936 80.2202658,15.1210674 80.4720004,14.976 C80.723735,14.8309326 80.9263997,14.6389345 81.0800004,14.4 C81.2336012,14.1610654 81.3445334,13.8880015 81.4128005,13.5808 C81.4810675,13.2735984 81.5152005,12.9578682 81.5152005,12.6335999 Z M88.5424006,12.0575999 C88.5253338,11.8015987 88.4677344,11.5584011 88.3696006,11.3279999 C88.2714667,11.0975988 88.1392014,10.8992008 87.9728006,10.7327999 C87.8063997,10.5663991 87.610135,10.4341337 87.3840005,10.3359999 C87.1578661,10.2378661 86.9082686,10.1887999 86.6352005,10.1887999 C86.3535991,10.1887999 86.099735,10.2378661 85.8736005,10.3359999 C85.6474661,10.4341337 85.4533347,10.5685324 85.2912005,10.7391999 C85.1290664,10.9098674 85.0010676,11.1082655 84.9072005,11.3343999 C84.8133334,11.5605344 84.7578673,11.8015987 84.7408005,12.0575999 L88.5424006,12.0575999 Z M89.5920006,13.9008 C89.4469332,14.6432037 89.1269364,15.2021314 88.6320006,15.5776 C88.1370647,15.9530685 87.5141376,16.1408 86.7632005,16.1408 C86.2341312,16.1408 85.7754691,16.0554675 85.3872005,15.8848 C84.9989319,15.7141325 84.6725352,15.4752015 84.4080005,15.168 C84.1434658,14.8607984 83.9450678,14.4938688 83.8128005,14.0672 C83.6805332,13.6405312 83.6058672,13.1754691 83.5888005,12.672 C83.5888005,12.1685308 83.6655997,11.7077354 83.8192005,11.2895999 C83.9728013,10.8714645 84.1882658,10.5088015 84.4656005,10.2015999 C84.7429352,9.89439837 85.0714653,9.65546743 85.4512005,9.4847999 C85.8309358,9.31413238 86.2469316,9.2287999 86.6992005,9.2287999 C87.2880035,9.2287999 87.7765319,9.35039868 88.1648006,9.5935999 C88.5530692,9.83680112 88.8645327,10.1461314 89.0992006,10.5215999 C89.3338684,10.8970685 89.4960001,11.3066644 89.5856006,11.7503999 C89.675201,12.1941355 89.7114673,12.6165313 89.6944006,13.0176 L84.7408005,13.0176 C84.7322671,13.3077347 84.7664001,13.582932 84.8432005,13.8432 C84.9200009,14.1034679 85.043733,14.3338656 85.2144005,14.5344 C85.385068,14.7349343 85.6026659,14.8949327 85.8672005,15.0144 C86.1317352,15.1338673 86.4431987,15.1936 86.8016005,15.1936 C87.2624028,15.1936 87.6399991,15.0869344 87.9344006,14.8736 C88.228802,14.6602656 88.4229334,14.3360022 88.5168006,13.9008 L89.5920006,13.9008 Z M90.8848006,6.86079986 L90.8848006,16 L91.9728006,16 L91.9728006,6.86079986 L90.8848006,6.86079986 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="101" height="23" viewBox="0 0 101 23" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="101" height="23" fill="#FFAE00"/>
<path fill="#FFF" d="M19.2431995,16 L21.6879996,6.86079986 L20.4719995,6.86079986 L18.6159995,14.464 L18.5903995,14.464 L16.5679995,6.86079986 L15.2495995,6.86079986 L13.2015994,14.464 L13.1759994,14.464 L11.3839994,6.86079986 L10.1423994,6.86079986 L12.4847994,16 L13.7519994,16 L15.8639995,8.31999989 L15.8895995,8.31999989 L17.9759995,16 L19.2431995,16 Z M28.0495997,15.9744 C27.8618654,16.0853339 27.6016013,16.1408 27.2687996,16.1408 C26.9871982,16.1408 26.7632005,16.0618675 26.5967996,15.904 C26.4303988,15.7461325 26.3471996,15.4880018 26.3471996,15.1296 C26.0485315,15.4880018 25.7008016,15.7461325 25.3039996,15.904 C24.9071976,16.0618675 24.4784019,16.1408 24.0175996,16.1408 C23.7189314,16.1408 23.4352009,16.106667 23.1663996,16.0384 C22.8975982,15.970133 22.6650672,15.8634674 22.4687996,15.7184 C22.2725319,15.5733326 22.1168001,15.3834678 22.0015996,15.1488 C21.886399,14.9141321 21.8287996,14.6304016 21.8287996,14.2976 C21.8287996,13.9221314 21.8927989,13.6149345 22.0207996,13.376 C22.1488002,13.1370654 22.3173319,12.942934 22.5263996,12.7936 C22.7354673,12.6442659 22.9743982,12.5312003 23.2431996,12.4543999 C23.5120009,12.3775996 23.7871982,12.3136002 24.0687996,12.2623999 C24.3674678,12.2026663 24.6511983,12.1578668 24.9199996,12.1279999 C25.188801,12.0981331 25.4255986,12.0554669 25.6303996,11.9999999 C25.8352006,11.944533 25.9973324,11.8634671 26.1167996,11.7567999 C26.2362669,11.6501327 26.2959996,11.494401 26.2959996,11.2895999 C26.2959996,11.0506654 26.2512001,10.8586673 26.1615996,10.7135999 C26.0719992,10.5685325 25.9568003,10.4576003 25.8159996,10.3807999 C25.6751989,10.3039995 25.5173338,10.2528 25.3423996,10.2271999 C25.1674654,10.2015998 24.9946671,10.1887999 24.8239996,10.1887999 C24.3631973,10.1887999 23.9792011,10.2762657 23.6719996,10.4511999 C23.3647981,10.6261341 23.1983997,10.9567975 23.1727996,11.4431999 L22.0847996,11.4431999 C22.1018663,11.0335979 22.1871988,10.6880013 22.3407996,10.4063999 C22.4944003,10.1247985 22.6991983,9.89653412 22.9551996,9.72159991 C23.2112009,9.5466657 23.5034646,9.42080029 23.8319996,9.3439999 C24.1605346,9.26719952 24.5125311,9.2287999 24.8879996,9.2287999 C25.1866678,9.2287999 25.4831981,9.25013302 25.7775996,9.2927999 C26.0720011,9.33546678 26.3386651,9.42293257 26.5775996,9.5551999 C26.8165342,9.68746723 27.0085323,9.87306538 27.1535996,10.1119999 C27.298667,10.3509344 27.3711996,10.662398 27.3711996,11.0463999 L27.3711996,14.4512 C27.3711996,14.7072013 27.3861328,14.8949327 27.4159996,15.0144 C27.4458665,15.1338673 27.5461321,15.1936 27.7167997,15.1936 C27.8106668,15.1936 27.921599,15.1722669 28.0495997,15.1296 L28.0495997,15.9744 Z M26.2831996,12.5823999 C26.1466656,12.6848005 25.9674674,12.7594664 25.7455996,12.8064 C25.5237318,12.8533335 25.2912008,12.8917331 25.0479996,12.9216 C24.8047984,12.9514668 24.5594675,12.9855998 24.3119996,13.024 C24.0645317,13.0624001 23.8426672,13.1242662 23.6463996,13.2096 C23.4501319,13.2949337 23.2901335,13.4165325 23.1663996,13.5744 C23.0426656,13.7322674 22.9807996,13.9477319 22.9807996,14.2208 C22.9807996,14.4000009 23.0170659,14.551466 23.0895996,14.6752 C23.1621333,14.7989339 23.255999,14.8991996 23.3711996,14.976 C23.4864002,15.0528004 23.6207988,15.1082665 23.7743996,15.1424 C23.9280004,15.1765335 24.0901321,15.1936 24.2607996,15.1936 C24.6192014,15.1936 24.9263983,15.1445338 25.1823996,15.0464 C25.4384009,14.9482662 25.6474655,14.8245341 25.8095996,14.6752 C25.9717338,14.5258659 26.0911992,14.3637342 26.1679996,14.1888 C26.2448,14.0138658 26.2831996,13.8496007 26.2831996,13.696 L26.2831996,12.5823999 Z M29.0223997,9.3823999 L29.0223997,16 L30.1103997,16 L30.1103997,13.056 C30.1103997,12.6293311 30.1530659,12.2517349 30.2383997,11.9231999 C30.3237335,11.594665 30.4602654,11.3152011 30.6479997,11.0847999 C30.835734,10.8543988 31.0831982,10.6794672 31.3903997,10.5599999 C31.6976012,10.4405327 32.0687975,10.3807999 32.5039997,10.3807999 L32.5039997,9.2287999 C31.9151968,9.21173315 31.4288016,9.33119862 31.0447997,9.5871999 C30.6607978,9.84320119 30.3365343,10.2399972 30.0719997,10.7775999 L30.0463997,10.7775999 L30.0463997,9.3823999 L29.0223997,9.3823999 Z M33.5535997,9.3823999 L33.5535997,16 L34.6415998,16 L34.6415998,12.2623999 C34.6415998,11.9637318 34.6821327,11.6885345 34.7631998,11.4367999 C34.8442668,11.1850653 34.9658656,10.9653342 35.1279998,10.7775999 C35.2901339,10.5898656 35.4927986,10.4448004 35.7359998,10.3423999 C35.979201,10.2399994 36.2671981,10.1887999 36.5999998,10.1887999 C37.0181352,10.1887999 37.3466653,10.3082654 37.5855998,10.5471999 C37.8245343,10.7861345 37.9439998,11.1103979 37.9439998,11.5199999 L37.9439998,16 L39.0319998,16 L39.0319998,11.6479999 C39.0319998,11.2895981 38.9957335,10.9632014 38.9231998,10.6687999 C38.8506661,10.3743984 38.7248007,10.1205343 38.5455998,9.90719991 C38.3663989,9.69386551 38.1317346,9.52746717 37.8415998,9.4079999 C37.551465,9.28853264 37.188802,9.2287999 36.7535998,9.2287999 C35.7722615,9.2287999 35.0554687,9.62986256 34.6031998,10.4319999 L34.5775998,10.4319999 L34.5775998,9.3823999 L33.5535997,9.3823999 Z M41.8223999,8.19199988 L41.8223999,6.86079986 L40.7343998,6.86079986 L40.7343998,8.19199988 L41.8223999,8.19199988 Z M40.7343998,9.3823999 L40.7343998,16 L41.8223999,16 L41.8223999,9.3823999 L40.7343998,9.3823999 Z M43.5119999,9.3823999 L43.5119999,16 L44.5999999,16 L44.5999999,12.2623999 C44.5999999,11.9637318 44.6405328,11.6885345 44.7215999,11.4367999 C44.802667,11.1850653 44.9242658,10.9653342 45.0863999,10.7775999 C45.2485341,10.5898656 45.4511987,10.4448004 45.6943999,10.3423999 C45.9376011,10.2399994 46.2255983,10.1887999 46.5583999,10.1887999 C46.9765354,10.1887999 47.3050654,10.3082654 47.5439999,10.5471999 C47.7829345,10.7861345 47.9024,11.1103979 47.9024,11.5199999 L47.9024,16 L48.9904,16 L48.9904,11.6479999 C48.9904,11.2895981 48.9541337,10.9632014 48.8816,10.6687999 C48.8090663,10.3743984 48.6832009,10.1205343 48.504,9.90719991 C48.3247991,9.69386551 48.0901347,9.52746717 47.8,9.4079999 C47.5098652,9.28853264 47.1472021,9.2287999 46.7119999,9.2287999 C45.7306617,9.2287999 45.0138688,9.62986256 44.5615999,10.4319999 L44.5359999,10.4319999 L44.5359999,9.3823999 L43.5119999,9.3823999 Z M56.3376001,15.4368 C56.3376001,16.5205388 56.0901359,17.3311973 55.5952001,17.8688 C55.1002643,18.4064027 54.3237387,18.6752 53.2656,18.6752 C52.9583985,18.6752 52.6448016,18.641067 52.3248,18.5728 C52.0047984,18.504533 51.714668,18.3936008 51.4544,18.24 C51.194132,18.0863993 50.9786675,17.8858679 50.808,17.6384 C50.6373325,17.3909321 50.5434667,17.0880018 50.5264,16.7296 L51.6144,16.7296 C51.6229334,16.9258677 51.6847994,17.092266 51.8,17.2288 C51.9152006,17.365334 52.0559992,17.4762663 52.2224,17.5616 C52.3888009,17.6469338 52.5701324,17.7087998 52.7664,17.7472 C52.9626677,17.7856002 53.1503991,17.8048 53.3296,17.8048 C53.6880018,17.8048 53.9909321,17.742934 54.2384,17.6192 C54.485868,17.4954661 54.6906659,17.3248011 54.8528001,17.1072 C55.0149342,16.8895989 55.1322664,16.6272015 55.2048001,16.32 C55.2773338,16.0127985 55.3136001,15.6757352 55.3136001,15.3088 L55.3136001,14.8736 L55.2880001,14.8736 C55.1002658,15.283202 54.8165353,15.583999 54.4368001,15.776 C54.0570648,15.968001 53.6538688,16.064 53.2272,16.064 C52.7322642,16.064 52.3013352,15.9744009 51.9344,15.7952 C51.5674648,15.6159991 51.2602679,15.3749348 51.0128,15.072 C50.7653321,14.7690651 50.5797339,14.4149353 50.456,14.0096 C50.332266,13.6042646 50.2704,13.1754689 50.2704,12.7232 C50.2704,12.3306646 50.3215995,11.9274687 50.424,11.5135999 C50.5264005,11.0997312 50.6970655,10.7242683 50.936,10.3871999 C51.1749345,10.0501316 51.4906647,9.772801 51.8832,9.5551999 C52.2757353,9.33759881 52.7578638,9.2287999 53.3296,9.2287999 C53.7477355,9.2287999 54.1317316,9.32053232 54.4816001,9.5039999 C54.8314685,9.68746749 55.1045324,9.96266474 55.3008001,10.3295999 L55.3136001,10.3295999 L55.3136001,9.3823999 L56.3376001,9.3823999 L56.3376001,15.4368 Z M53.2912,15.1168 C53.6496018,15.1168 53.9546655,15.0421341 54.2064,14.8928 C54.4581346,14.7434659 54.6607993,14.5472012 54.8144001,14.304 C54.9680008,14.0607988 55.0810664,13.7856015 55.1536001,13.4784 C55.2261338,13.1711984 55.2624001,12.8640015 55.2624001,12.5567999 C55.2624001,12.2666652 55.2282671,11.9808013 55.1600001,11.6991999 C55.0917331,11.4175985 54.9829341,11.1637344 54.8336001,10.9375999 C54.684266,10.7114655 54.4901346,10.5301339 54.2512,10.3935999 C54.0122655,10.2570659 53.7221351,10.1887999 53.3808,10.1887999 C53.0309316,10.1887999 52.7322679,10.2549326 52.4848,10.3871999 C52.2373321,10.5194672 52.0346675,10.6965321 51.8768,10.9183999 C51.7189326,11.1402677 51.6037337,11.3962651 51.5312,11.6863999 C51.4586663,11.9765347 51.4224,12.279465 51.4224,12.5951999 C51.4224,12.8938681 51.4522664,13.1925318 51.512,13.4912 C51.5717336,13.7898681 51.6741326,14.0607988 51.8192,14.304 C51.9642674,14.5472012 52.1562655,14.7434659 52.3952,14.8928 C52.6341346,15.0421341 52.9327982,15.1168 53.2912,15.1168 Z M61.7136002,6.86079986 L61.7136002,16 L67.7680002,16 L67.7680002,14.976 L62.9296002,14.976 L62.9296002,6.86079986 L61.7136002,6.86079986 Z M74.5136004,15.9744 C74.3258661,16.0853339 74.065602,16.1408 73.7328003,16.1408 C73.4511989,16.1408 73.2272012,16.0618675 73.0608003,15.904 C72.8943995,15.7461325 72.8112003,15.4880018 72.8112003,15.1296 C72.5125322,15.4880018 72.1648023,15.7461325 71.7680003,15.904 C71.3711983,16.0618675 70.9424026,16.1408 70.4816003,16.1408 C70.1829321,16.1408 69.8992016,16.106667 69.6304003,16.0384 C69.3615989,15.970133 69.1290679,15.8634674 68.9328003,15.7184 C68.7365326,15.5733326 68.5808008,15.3834678 68.4656003,15.1488 C68.3503997,14.9141321 68.2928003,14.6304016 68.2928003,14.2976 C68.2928003,13.9221314 68.3567996,13.6149345 68.4848003,13.376 C68.6128009,13.1370654 68.7813326,12.942934 68.9904003,12.7936 C69.199468,12.6442659 69.4383989,12.5312003 69.7072003,12.4543999 C69.9760016,12.3775996 70.2511989,12.3136002 70.5328003,12.2623999 C70.8314685,12.2026663 71.115199,12.1578668 71.3840003,12.1279999 C71.6528017,12.0981331 71.8895993,12.0554669 72.0944003,11.9999999 C72.2992013,11.944533 72.4613331,11.8634671 72.5808003,11.7567999 C72.7002676,11.6501327 72.7600003,11.494401 72.7600003,11.2895999 C72.7600003,11.0506654 72.7152008,10.8586673 72.6256003,10.7135999 C72.5359999,10.5685325 72.420801,10.4576003 72.2800003,10.3807999 C72.1391996,10.3039995 71.9813345,10.2528 71.8064003,10.2271999 C71.6314661,10.2015998 71.4586678,10.1887999 71.2880003,10.1887999 C70.827198,10.1887999 70.4432018,10.2762657 70.1360003,10.4511999 C69.8287987,10.6261341 69.6624004,10.9567975 69.6368003,11.4431999 L68.5488003,11.4431999 C68.565867,11.0335979 68.6511995,10.6880013 68.8048003,10.4063999 C68.958401,10.1247985 69.163199,9.89653412 69.4192003,9.72159991 C69.6752016,9.5466657 69.9674653,9.42080029 70.2960003,9.3439999 C70.6245353,9.26719952 70.9765318,9.2287999 71.3520003,9.2287999 C71.6506685,9.2287999 71.9471988,9.25013302 72.2416003,9.2927999 C72.5360018,9.33546678 72.8026658,9.42293257 73.0416003,9.5551999 C73.2805349,9.68746723 73.4725329,9.87306538 73.6176003,10.1119999 C73.7626677,10.3509344 73.8352003,10.662398 73.8352003,11.0463999 L73.8352003,14.4512 C73.8352003,14.7072013 73.8501335,14.8949327 73.8800003,15.0144 C73.9098672,15.1338673 74.0101328,15.1936 74.1808003,15.1936 C74.2746675,15.1936 74.3855997,15.1722669 74.5136004,15.1296 L74.5136004,15.9744 Z M72.7472003,12.5823999 C72.6106663,12.6848005 72.4314681,12.7594664 72.2096003,12.8064 C71.9877325,12.8533335 71.7552015,12.8917331 71.5120003,12.9216 C71.2687991,12.9514668 71.0234682,12.9855998 70.7760003,13.024 C70.5285324,13.0624001 70.3066679,13.1242662 70.1104003,13.2096 C69.9141326,13.2949337 69.7541342,13.4165325 69.6304003,13.5744 C69.5066663,13.7322674 69.4448003,13.9477319 69.4448003,14.2208 C69.4448003,14.4000009 69.4810666,14.551466 69.5536003,14.6752 C69.626134,14.7989339 69.7199997,14.8991996 69.8352003,14.976 C69.9504009,15.0528004 70.0847995,15.1082665 70.2384003,15.1424 C70.3920011,15.1765335 70.5541328,15.1936 70.7248003,15.1936 C71.0832021,15.1936 71.390399,15.1445338 71.6464003,15.0464 C71.9024016,14.9482662 72.1114662,14.8245341 72.2736003,14.6752 C72.4357345,14.5258659 72.5551999,14.3637342 72.6320003,14.1888 C72.7088007,14.0138658 72.7472003,13.8496007 72.7472003,13.696 L72.7472003,12.5823999 Z M75.5632004,6.86079986 L76.6512004,6.86079986 L76.6512004,10.2783999 L76.6768004,10.2783999 C76.8560013,9.91146474 77.1375985,9.64480074 77.5216004,9.4783999 C77.9056023,9.31199907 78.3279981,9.2287999 78.7888004,9.2287999 C79.300803,9.2287999 79.7466652,9.32266563 80.1264004,9.5103999 C80.5061357,9.69813418 80.8218659,9.95199831 81.0736004,10.2719999 C81.325335,10.5920015 81.5151998,10.9610645 81.6432005,11.3791999 C81.7712011,11.7973354 81.8352005,12.2410643 81.8352005,12.7104 C81.8352005,13.1797356 81.7733344,13.6234645 81.6496005,14.0416 C81.5258665,14.4597354 81.338135,14.8245318 81.0864004,15.136 C80.8346659,15.4474682 80.5189357,15.6927991 80.1392004,15.872 C79.7594652,16.0512009 79.3178696,16.1408 78.8144004,16.1408 C78.6522663,16.1408 78.4709347,16.1237335 78.2704004,16.0896 C78.0698661,16.0554665 77.871468,16.0000004 77.6752004,15.9232 C77.4789327,15.8463996 77.2933346,15.7418673 77.1184004,15.6096 C76.9434662,15.4773327 76.7962676,15.3130676 76.6768004,15.1168 L76.6512004,15.1168 L76.6512004,16 L75.5632004,16 L75.5632004,6.86079986 Z M80.6832004,12.6335999 C80.6832004,12.3263984 80.6426675,12.0256014 80.5616004,11.7311999 C80.4805334,11.4367985 80.3568013,11.1744011 80.1904004,10.9439999 C80.0239996,10.7135988 79.8106684,10.5301339 79.5504004,10.3935999 C79.2901325,10.2570659 78.9850688,10.1887999 78.6352004,10.1887999 C78.2682652,10.1887999 77.9568017,10.2613325 77.7008004,10.4063999 C77.4447991,10.5514673 77.2357345,10.7413321 77.0736004,10.9759999 C76.9114662,11.2106678 76.7941341,11.4773318 76.7216004,11.7759999 C76.6490667,12.0746681 76.6128004,12.3775984 76.6128004,12.6848 C76.6128004,13.0090682 76.6512,13.3226651 76.7280004,13.6256 C76.8048008,13.9285348 76.9263996,14.1951988 77.0928004,14.4256 C77.2592012,14.6560011 77.4746657,14.8415993 77.7392004,14.9824 C78.0037351,15.1232007 78.3237319,15.1936 78.6992004,15.1936 C79.074669,15.1936 79.3882658,15.1210674 79.6400004,14.976 C79.891735,14.8309326 80.0943997,14.6389345 80.2480004,14.4 C80.4016012,14.1610654 80.5125334,13.8880015 80.5808004,13.5808 C80.6490674,13.2735984 80.6832004,12.9578682 80.6832004,12.6335999 Z M87.7104005,12.0575999 C87.6933338,11.8015987 87.6357344,11.5584011 87.5376005,11.3279999 C87.4394667,11.0975988 87.3072014,10.8992008 87.1408005,10.7327999 C86.9743997,10.5663991 86.778135,10.4341337 86.5520005,10.3359999 C86.3258661,10.2378661 86.0762686,10.1887999 85.8032005,10.1887999 C85.5215991,10.1887999 85.267735,10.2378661 85.0416005,10.3359999 C84.815466,10.4341337 84.6213346,10.5685324 84.4592005,10.7391999 C84.2970664,10.9098674 84.1690676,11.1082655 84.0752005,11.3343999 C83.9813334,11.5605344 83.9258672,11.8015987 83.9088005,12.0575999 L87.7104005,12.0575999 Z M88.7600006,13.9008 C88.6149332,14.6432037 88.2949364,15.2021314 87.8000005,15.5776 C87.3050647,15.9530685 86.6821376,16.1408 85.9312005,16.1408 C85.4021312,16.1408 84.9434691,16.0554675 84.5552005,15.8848 C84.1669319,15.7141325 83.8405351,15.4752015 83.5760005,15.168 C83.3114658,14.8607984 83.1130678,14.4938688 82.9808005,14.0672 C82.8485331,13.6405312 82.7738672,13.1754691 82.7568005,12.672 C82.7568005,12.1685308 82.8335997,11.7077354 82.9872005,11.2895999 C83.1408012,10.8714645 83.3562658,10.5088015 83.6336005,10.2015999 C83.9109352,9.89439837 84.2394653,9.65546743 84.6192005,9.4847999 C84.9989357,9.31413238 85.4149316,9.2287999 85.8672005,9.2287999 C86.4560035,9.2287999 86.9445319,9.35039868 87.3328005,9.5935999 C87.7210692,9.83680112 88.0325327,10.1461314 88.2672006,10.5215999 C88.5018684,10.8970685 88.6640001,11.3066644 88.7536006,11.7503999 C88.843201,12.1941355 88.8794673,12.6165313 88.8624006,13.0176 L83.9088005,13.0176 C83.9002671,13.3077347 83.9344001,13.582932 84.0112005,13.8432 C84.0880009,14.1034679 84.211733,14.3338656 84.3824005,14.5344 C84.553068,14.7349343 84.7706658,14.8949327 85.0352005,15.0144 C85.2997352,15.1338673 85.6111987,15.1936 85.9696005,15.1936 C86.4304028,15.1936 86.8079991,15.0869344 87.1024005,14.8736 C87.396802,14.6602656 87.5909334,14.3360022 87.6848005,13.9008 L88.7600006,13.9008 Z M90.0528006,6.86079986 L90.0528006,16 L91.1408006,16 L91.1408006,6.86079986 L90.0528006,6.86079986 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="93" height="23" viewBox="0 0 93 23" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="93" height="23" fill="#2199E8"/>
<path fill="#FFF" d="M11.5183995,14.976 L13.5407995,14.976 C13.6773335,14.976 13.8479985,14.9653334 14.0527995,14.944 C14.2576005,14.9226665 14.4751984,14.8714671 14.7055995,14.7904 C14.9360007,14.7093329 15.1642651,14.5920007 15.3903995,14.4384 C15.616534,14.2847992 15.8191986,14.0757346 15.9983995,13.8112 C16.1776004,13.5466653 16.324799,13.2160019 16.4399995,12.8192 C16.5552001,12.422398 16.6127995,11.9424028 16.6127995,11.3791999 C16.6127995,10.8330639 16.5594667,10.3445354 16.4527995,9.91359991 C16.3461323,9.48266441 16.1712008,9.11573475 15.9279995,8.81279989 C15.6847983,8.50986504 15.3712014,8.27946734 14.9871995,8.12159988 C14.6031976,7.96373242 14.1296023,7.88479988 13.5663995,7.88479988 L11.5183995,7.88479988 L11.5183995,14.976 Z M10.3023995,6.86079986 L13.4383995,6.86079986 C14.8464066,6.86079986 15.9301291,7.21919629 16.6895995,7.93599988 C17.44907,8.65280347 17.8287996,9.74505923 17.8287996,11.2127999 C17.8287996,11.9808038 17.7434671,12.6613303 17.5727996,13.2544 C17.402132,13.8474696 17.1376013,14.3466646 16.7791995,14.752 C16.4207978,15.1573353 15.964269,15.4666656 15.4095995,15.68 C14.8549301,15.8933344 14.19787,16 13.4383995,16 L10.3023995,16 L10.3023995,6.86079986 Z M23.7295997,12.0575999 C23.7125329,11.8015987 23.6549335,11.5584011 23.5567997,11.3279999 C23.4586658,11.0975988 23.3264005,10.8992008 23.1599996,10.7327999 C22.9935988,10.5663991 22.7973341,10.4341337 22.5711996,10.3359999 C22.3450652,10.2378661 22.0954677,10.1887999 21.8223996,10.1887999 C21.5407982,10.1887999 21.2869341,10.2378661 21.0607996,10.3359999 C20.8346651,10.4341337 20.6405338,10.5685324 20.4783996,10.7391999 C20.3162655,10.9098674 20.1882667,11.1082655 20.0943996,11.3343999 C20.0005325,11.5605344 19.9450663,11.8015987 19.9279996,12.0575999 L23.7295997,12.0575999 Z M24.7791997,13.9008 C24.6341323,14.6432037 24.3141355,15.2021314 23.8191997,15.5776 C23.3242638,15.9530685 22.7013367,16.1408 21.9503996,16.1408 C21.4213303,16.1408 20.9626682,16.0554675 20.5743996,15.8848 C20.186131,15.7141325 19.8597343,15.4752015 19.5951996,15.168 C19.3306649,14.8607984 19.1322669,14.4938688 18.9999996,14.0672 C18.8677323,13.6405312 18.7930663,13.1754691 18.7759996,12.672 C18.7759996,12.1685308 18.8527988,11.7077354 19.0063996,11.2895999 C19.1600004,10.8714645 19.3754649,10.5088015 19.6527996,10.2015999 C19.9301343,9.89439837 20.2586644,9.65546743 20.6383996,9.4847999 C21.0181348,9.31413238 21.4341307,9.2287999 21.8863996,9.2287999 C22.4752026,9.2287999 22.963731,9.35039868 23.3519996,9.5935999 C23.7402683,9.83680112 24.0517318,10.1461314 24.2863997,10.5215999 C24.5210675,10.8970685 24.6831992,11.3066644 24.7727997,11.7503999 C24.8624001,12.1941355 24.8986664,12.6165313 24.8815997,13.0176 L19.9279996,13.0176 C19.9194662,13.3077347 19.9535992,13.582932 20.0303996,13.8432 C20.1072,14.1034679 20.2309321,14.3338656 20.4015996,14.5344 C20.5722671,14.7349343 20.789865,14.8949327 21.0543996,15.0144 C21.3189343,15.1338673 21.6303978,15.1936 21.9887996,15.1936 C22.4496019,15.1936 22.8271982,15.0869344 23.1215996,14.8736 C23.4160011,14.6602656 23.6101325,14.3360022 23.7039997,13.9008 L24.7791997,13.9008 Z M26.4559997,10.3423999 L26.4559997,16 L27.5439997,16 L27.5439997,10.3423999 L28.8239997,10.3423999 L28.8239997,9.3823999 L27.5439997,9.3823999 L27.5439997,8.46079989 C27.5439997,8.1706651 27.6165323,7.97440039 27.7615997,7.87199988 C27.9066671,7.76959937 28.1114651,7.71839988 28.3759997,7.71839988 C28.4698669,7.71839988 28.5722658,7.72479981 28.6831997,7.73759988 C28.7941336,7.75039994 28.8965326,7.77386637 28.9903997,7.80799988 L28.9903997,6.86079986 C28.8879992,6.82666636 28.7706671,6.80106661 28.6383997,6.78399986 C28.5061324,6.76693311 28.3888002,6.75839986 28.2863997,6.75839986 C27.6890634,6.75839986 27.2346679,6.89706514 26.9231997,7.17439987 C26.6117315,7.45173459 26.4559997,7.85919719 26.4559997,8.39679989 L26.4559997,9.3823999 L25.3423997,9.3823999 L25.3423997,10.3423999 L26.4559997,10.3423999 Z M35.6591998,15.9744 C35.4714656,16.0853339 35.2112015,16.1408 34.8783998,16.1408 C34.5967984,16.1408 34.3728006,16.0618675 34.2063998,15.904 C34.039999,15.7461325 33.9567998,15.4880018 33.9567998,15.1296 C33.6581316,15.4880018 33.3104018,15.7461325 32.9135998,15.904 C32.5167978,16.0618675 32.0880021,16.1408 31.6271998,16.1408 C31.3285316,16.1408 31.0448011,16.106667 30.7759998,16.0384 C30.5071984,15.970133 30.2746674,15.8634674 30.0783997,15.7184 C29.8821321,15.5733326 29.7264003,15.3834678 29.6111997,15.1488 C29.4959992,14.9141321 29.4383997,14.6304016 29.4383997,14.2976 C29.4383997,13.9221314 29.5023991,13.6149345 29.6303997,13.376 C29.7584004,13.1370654 29.926932,12.942934 30.1359997,12.7936 C30.3450675,12.6442659 30.5839984,12.5312003 30.8527998,12.4543999 C31.1216011,12.3775996 31.3967984,12.3136002 31.6783998,12.2623999 C31.9770679,12.2026663 32.2607984,12.1578668 32.5295998,12.1279999 C32.7984011,12.0981331 33.0351988,12.0554669 33.2399998,11.9999999 C33.4448008,11.944533 33.6069325,11.8634671 33.7263998,11.7567999 C33.8458671,11.6501327 33.9055998,11.494401 33.9055998,11.2895999 C33.9055998,11.0506654 33.8608003,10.8586673 33.7711998,10.7135999 C33.6815994,10.5685325 33.5664005,10.4576003 33.4255998,10.3807999 C33.2847991,10.3039995 33.126934,10.2528 32.9519998,10.2271999 C32.7770656,10.2015998 32.6042673,10.1887999 32.4335998,10.1887999 C31.9727975,10.1887999 31.5888013,10.2762657 31.2815998,10.4511999 C30.9743982,10.6261341 30.8079999,10.9567975 30.7823998,11.4431999 L29.6943997,11.4431999 C29.7114665,11.0335979 29.796799,10.6880013 29.9503997,10.4063999 C30.1040005,10.1247985 30.3087985,9.89653412 30.5647998,9.72159991 C30.820801,9.5466657 31.1130648,9.42080029 31.4415998,9.3439999 C31.7701347,9.26719952 32.1221312,9.2287999 32.4975998,9.2287999 C32.7962679,9.2287999 33.0927983,9.25013302 33.3871998,9.2927999 C33.6816013,9.33546678 33.9482653,9.42293257 34.1871998,9.5551999 C34.4261343,9.68746723 34.6181324,9.87306538 34.7631998,10.1119999 C34.9082672,10.3509344 34.9807998,10.662398 34.9807998,11.0463999 L34.9807998,14.4512 C34.9807998,14.7072013 34.995733,14.8949327 35.0255998,15.0144 C35.0554666,15.1338673 35.1557323,15.1936 35.3263998,15.1936 C35.420267,15.1936 35.5311992,15.1722669 35.6591998,15.1296 L35.6591998,15.9744 Z M33.8927998,12.5823999 C33.7562658,12.6848005 33.5770676,12.7594664 33.3551998,12.8064 C33.133332,12.8533335 32.900801,12.8917331 32.6575998,12.9216 C32.4143986,12.9514668 32.1690677,12.9855998 31.9215998,13.024 C31.6741319,13.0624001 31.4522674,13.1242662 31.2559998,13.2096 C31.0597321,13.2949337 30.8997337,13.4165325 30.7759998,13.5744 C30.6522658,13.7322674 30.5903998,13.9477319 30.5903998,14.2208 C30.5903998,14.4000009 30.6266661,14.551466 30.6991998,14.6752 C30.7717335,14.7989339 30.8655992,14.8991996 30.9807998,14.976 C31.0960003,15.0528004 31.230399,15.1082665 31.3839998,15.1424 C31.5376005,15.1765335 31.6997323,15.1936 31.8703998,15.1936 C32.2288016,15.1936 32.5359985,15.1445338 32.7919998,15.0464 C33.0480011,14.9482662 33.2570657,14.8245341 33.4191998,14.6752 C33.5813339,14.5258659 33.7007994,14.3637342 33.7775998,14.1888 C33.8544002,14.0138658 33.8927998,13.8496007 33.8927998,13.696 L33.8927998,12.5823999 Z M42.1487999,16 L42.1487999,9.3823999 L41.0607999,9.3823999 L41.0607999,13.12 C41.0607999,13.4186681 41.020267,13.6938654 40.9391999,13.9456 C40.8581328,14.1973346 40.7365341,14.4170657 40.5743999,14.6048 C40.4122658,14.7925343 40.2096011,14.9375995 39.9663999,15.04 C39.7231987,15.1424005 39.4352016,15.1936 39.1023999,15.1936 C38.6842645,15.1936 38.3557344,15.0741345 38.1167999,14.8352 C37.8778653,14.5962655 37.7583999,14.272002 37.7583999,13.8624 L37.7583999,9.3823999 L36.6703998,9.3823999 L36.6703998,13.7344 C36.6703998,14.0928018 36.7066662,14.4191985 36.7791998,14.7136 C36.8517335,15.0080015 36.977599,15.2618656 37.1567999,15.4752 C37.3360008,15.6885344 37.5706651,15.8527994 37.8607999,15.968 C38.1509347,16.0832006 38.5135977,16.1408 38.9487999,16.1408 C39.4352023,16.1408 39.8575981,16.044801 40.2159999,15.8528 C40.5744017,15.660799 40.8687988,15.360002 41.0991999,14.9504 L41.1247999,14.9504 L41.1247999,16 L42.1487999,16 Z M43.8512,6.86079986 L43.8512,16 L44.9392,16 L44.9392,6.86079986 L43.8512,6.86079986 Z M48.1392,9.3823999 L48.1392,7.39839987 L47.0512,7.39839987 L47.0512,9.3823999 L45.9248,9.3823999 L45.9248,10.3423999 L47.0512,10.3423999 L47.0512,14.5536 C47.0512,14.8608015 47.0810664,15.1082657 47.1408,15.296 C47.2005336,15.4837343 47.2922661,15.6287995 47.416,15.7312 C47.539734,15.8336005 47.7018657,15.9039998 47.9024,15.9424 C48.1029344,15.9808002 48.3439986,16 48.6256,16 L49.4576,16 L49.4576,15.04 L48.9584,15.04 C48.7877325,15.04 48.6490672,15.0336 48.5424,15.0208 C48.4357328,15.0079999 48.3525337,14.9802669 48.2928,14.9376 C48.2330664,14.8949331 48.1925335,14.8352004 48.1712,14.7584 C48.1498666,14.6815996 48.1392,14.5792006 48.1392,14.4512 L48.1392,10.3423999 L49.4576,10.3423999 L49.4576,9.3823999 L48.1392,9.3823999 Z M54.3984001,6.86079986 L54.3984001,16 L60.4528002,16 L60.4528002,14.976 L55.6144001,14.976 L55.6144001,6.86079986 L54.3984001,6.86079986 Z M67.1984003,15.9744 C67.010666,16.0853339 66.750402,16.1408 66.4176003,16.1408 C66.1359989,16.1408 65.9120011,16.0618675 65.7456003,15.904 C65.5791994,15.7461325 65.4960003,15.4880018 65.4960003,15.1296 C65.1973321,15.4880018 64.8496022,15.7461325 64.4528003,15.904 C64.0559983,16.0618675 63.6272026,16.1408 63.1664002,16.1408 C62.8677321,16.1408 62.5840016,16.106667 62.3152002,16.0384 C62.0463989,15.970133 61.8138679,15.8634674 61.6176002,15.7184 C61.4213326,15.5733326 61.2656008,15.3834678 61.1504002,15.1488 C61.0351996,14.9141321 60.9776002,14.6304016 60.9776002,14.2976 C60.9776002,13.9221314 61.0415996,13.6149345 61.1696002,13.376 C61.2976009,13.1370654 61.4661325,12.942934 61.6752002,12.7936 C61.8842679,12.6442659 62.1231989,12.5312003 62.3920002,12.4543999 C62.6608016,12.3775996 62.9359988,12.3136002 63.2176002,12.2623999 C63.5162684,12.2026663 63.7999989,12.1578668 64.0688003,12.1279999 C64.3376016,12.0981331 64.5743992,12.0554669 64.7792003,11.9999999 C64.9840013,11.944533 65.146133,11.8634671 65.2656003,11.7567999 C65.3850675,11.6501327 65.4448003,11.494401 65.4448003,11.2895999 C65.4448003,11.0506654 65.4000007,10.8586673 65.3104003,10.7135999 C65.2207998,10.5685325 65.105601,10.4576003 64.9648003,10.3807999 C64.8239996,10.3039995 64.6661345,10.2528 64.4912003,10.2271999 C64.3162661,10.2015998 64.1434678,10.1887999 63.9728003,10.1887999 C63.5119979,10.1887999 63.1280018,10.2762657 62.8208002,10.4511999 C62.5135987,10.6261341 62.3472004,10.9567975 62.3216002,11.4431999 L61.2336002,11.4431999 C61.250667,11.0335979 61.3359994,10.6880013 61.4896002,10.4063999 C61.643201,10.1247985 61.8479989,9.89653412 62.1040002,9.72159991 C62.3600015,9.5466657 62.6522653,9.42080029 62.9808002,9.3439999 C63.3093352,9.26719952 63.6613317,9.2287999 64.0368003,9.2287999 C64.3354684,9.2287999 64.6319988,9.25013302 64.9264003,9.2927999 C65.2208017,9.33546678 65.4874657,9.42293257 65.7264003,9.5551999 C65.9653348,9.68746723 66.1573329,9.87306538 66.3024003,10.1119999 C66.4474677,10.3509344 66.5200003,10.662398 66.5200003,11.0463999 L66.5200003,14.4512 C66.5200003,14.7072013 66.5349335,14.8949327 66.5648003,15.0144 C66.5946671,15.1338673 66.6949328,15.1936 66.8656003,15.1936 C66.9594674,15.1936 67.0703997,15.1722669 67.1984003,15.1296 L67.1984003,15.9744 Z M65.4320003,12.5823999 C65.2954663,12.6848005 65.116268,12.7594664 64.8944003,12.8064 C64.6725325,12.8533335 64.4400015,12.8917331 64.1968003,12.9216 C63.953599,12.9514668 63.7082682,12.9855998 63.4608002,13.024 C63.2133323,13.0624001 62.9914679,13.1242662 62.7952002,13.2096 C62.5989326,13.2949337 62.4389342,13.4165325 62.3152002,13.5744 C62.1914663,13.7322674 62.1296002,13.9477319 62.1296002,14.2208 C62.1296002,14.4000009 62.1658665,14.551466 62.2384002,14.6752 C62.3109339,14.7989339 62.4047997,14.8991996 62.5200002,14.976 C62.6352008,15.0528004 62.7695995,15.1082665 62.9232002,15.1424 C63.076801,15.1765335 63.2389327,15.1936 63.4096002,15.1936 C63.768002,15.1936 64.075199,15.1445338 64.3312003,15.0464 C64.5872015,14.9482662 64.7962661,14.8245341 64.9584003,14.6752 C65.1205344,14.5258659 65.2399999,14.3637342 65.3168003,14.1888 C65.3936007,14.0138658 65.4320003,13.8496007 65.4320003,13.696 L65.4320003,12.5823999 Z M68.2480003,6.86079986 L69.3360003,6.86079986 L69.3360003,10.2783999 L69.3616003,10.2783999 C69.5408012,9.91146474 69.8223984,9.64480074 70.2064003,9.4783999 C70.5904023,9.31199907 71.0127981,9.2287999 71.4736004,9.2287999 C71.9856029,9.2287999 72.4314651,9.32266563 72.8112004,9.5103999 C73.1909356,9.69813418 73.5066658,9.95199831 73.7584004,10.2719999 C74.010135,10.5920015 74.1999998,10.9610645 74.3280004,11.3791999 C74.456001,11.7973354 74.5200004,12.2410643 74.5200004,12.7104 C74.5200004,13.1797356 74.4581344,13.6234645 74.3344004,14.0416 C74.2106665,14.4597354 74.022935,14.8245318 73.7712004,15.136 C73.5194658,15.4474682 73.2037356,15.6927991 72.8240004,15.872 C72.4442651,16.0512009 72.0026696,16.1408 71.4992004,16.1408 C71.3370662,16.1408 71.1557347,16.1237335 70.9552004,16.0896 C70.754666,16.0554665 70.556268,16.0000004 70.3600003,15.9232 C70.1637327,15.8463996 69.9781346,15.7418673 69.8032003,15.6096 C69.6282661,15.4773327 69.4810676,15.3130676 69.3616003,15.1168 L69.3360003,15.1168 L69.3360003,16 L68.2480003,16 L68.2480003,6.86079986 Z M73.3680004,12.6335999 C73.3680004,12.3263984 73.3274675,12.0256014 73.2464004,11.7311999 C73.1653333,11.4367985 73.0416012,11.1744011 72.8752004,10.9439999 C72.7087996,10.7135988 72.4954683,10.5301339 72.2352004,10.3935999 C71.9749324,10.2570659 71.6698688,10.1887999 71.3200004,10.1887999 C70.9530652,10.1887999 70.6416016,10.2613325 70.3856003,10.4063999 C70.1295991,10.5514673 69.9205345,10.7413321 69.7584003,10.9759999 C69.5962662,11.2106678 69.478934,11.4773318 69.4064003,11.7759999 C69.3338666,12.0746681 69.2976003,12.3775984 69.2976003,12.6848 C69.2976003,13.0090682 69.3359999,13.3226651 69.4128003,13.6256 C69.4896007,13.9285348 69.6111995,14.1951988 69.7776003,14.4256 C69.9440012,14.6560011 70.1594657,14.8415993 70.4240003,14.9824 C70.688535,15.1232007 71.0085318,15.1936 71.3840004,15.1936 C71.7594689,15.1936 72.0730658,15.1210674 72.3248004,14.976 C72.576535,14.8309326 72.7791996,14.6389345 72.9328004,14.4 C73.0864012,14.1610654 73.1973334,13.8880015 73.2656004,13.5808 C73.3338674,13.2735984 73.3680004,12.9578682 73.3680004,12.6335999 Z M80.3952005,12.0575999 C80.3781337,11.8015987 80.3205343,11.5584011 80.2224005,11.3279999 C80.1242667,11.0975988 79.9920013,10.8992008 79.8256005,10.7327999 C79.6591997,10.5663991 79.4629349,10.4341337 79.2368005,10.3359999 C79.010666,10.2378661 78.7610685,10.1887999 78.4880005,10.1887999 C78.2063991,10.1887999 77.9525349,10.2378661 77.7264005,10.3359999 C77.500266,10.4341337 77.3061346,10.5685324 77.1440004,10.7391999 C76.9818663,10.9098674 76.8538676,11.1082655 76.7600004,11.3343999 C76.6661333,11.5605344 76.6106672,11.8015987 76.5936004,12.0575999 L80.3952005,12.0575999 Z M81.4448005,13.9008 C81.2997331,14.6432037 80.9797363,15.2021314 80.4848005,15.5776 C79.9898647,15.9530685 79.3669376,16.1408 78.6160005,16.1408 C78.0869312,16.1408 77.6282691,16.0554675 77.2400005,15.8848 C76.8517318,15.7141325 76.5253351,15.4752015 76.2608004,15.168 C75.9962658,14.8607984 75.7978678,14.4938688 75.6656004,14.0672 C75.5333331,13.6405312 75.4586672,13.1754691 75.4416004,12.672 C75.4416004,12.1685308 75.5183997,11.7077354 75.6720004,11.2895999 C75.8256012,10.8714645 76.0410657,10.5088015 76.3184004,10.2015999 C76.5957352,9.89439837 76.9242652,9.65546743 77.3040005,9.4847999 C77.6837357,9.31413238 78.0997315,9.2287999 78.5520005,9.2287999 C79.1408034,9.2287999 79.6293319,9.35039868 80.0176005,9.5935999 C80.4058691,9.83680112 80.7173327,10.1461314 80.9520005,10.5215999 C81.1866683,10.8970685 81.3488001,11.3066644 81.4384005,11.7503999 C81.528001,12.1941355 81.5642673,12.6165313 81.5472005,13.0176 L76.5936004,13.0176 C76.5850671,13.3077347 76.6192001,13.582932 76.6960004,13.8432 C76.7728008,14.1034679 76.8965329,14.3338656 77.0672004,14.5344 C77.237868,14.7349343 77.4554658,14.8949327 77.7200005,15.0144 C77.9845351,15.1338673 78.2959987,15.1936 78.6544005,15.1936 C79.1152028,15.1936 79.492799,15.0869344 79.7872005,14.8736 C80.081602,14.6602656 80.2757334,14.3360022 80.3696005,13.9008 L81.4448005,13.9008 Z M82.7376005,6.86079986 L82.7376005,16 L83.8256005,16 L83.8256005,6.86079986 L82.7376005,6.86079986 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="589" height="16" viewBox="0 0 589 16" id="svg" >
<g fill="none" fill-rule="evenodd" >
<rect width="589" height="16" fill="#CACACA"/>
<rect width="147" height="16" fill="#2199E8"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1000" height="42" viewBox="0 0 1000 42" id="svg" >
<defs>
<rect id="offcanvas-b" width="20" height="2.5"/>
<filter id="offcanvas-a" width="170%" height="1500%" x="-35%" y="-280%" filterUnits="objectBoundingBox">
<feOffset dy="14" in="SourceAlpha" result="shadowOffsetOuter1"/>
<feColorMatrix in="shadowOffsetOuter1" result="shadowMatrixOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
<feOffset dy="7" in="SourceAlpha" result="shadowOffsetOuter2"/>
<feColorMatrix in="shadowOffsetOuter2" result="shadowMatrixOuter2" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"/>
<feMergeNode in="shadowMatrixOuter2"/>
</feMerge>
</filter>
<rect id="offcanvas-d" width="20" height="2.5"/>
<filter id="offcanvas-c" width="170%" height="1500%" x="-35%" y="-280%" filterUnits="objectBoundingBox">
<feOffset dy="14" in="SourceAlpha" result="shadowOffsetOuter1"/>
<feColorMatrix in="shadowOffsetOuter1" result="shadowMatrixOuter1" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
<feOffset dy="7" in="SourceAlpha" result="shadowOffsetOuter2"/>
<feColorMatrix in="shadowOffsetOuter2" result="shadowMatrixOuter2" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/>
<feMerge>
<feMergeNode in="shadowMatrixOuter1"/>
<feMergeNode in="shadowMatrixOuter2"/>
</feMerge>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<rect width="1000" height="42" fill="#0A0A0A"/>
<g transform="translate(966 13)">
<use fill="#000" filter="url(#offcanvas-a)" xlink:href="#offcanvas-b"/>
<use fill="#FFF" xlink:href="#offcanvas-b"/>
</g>
<g transform="translate(14 13)">
<use fill="#000" filter="url(#offcanvas-c)" xlink:href="#offcanvas-d"/>
<use fill="#FFF" xlink:href="#offcanvas-d"/>
</g>
<path fill="#FFF" d="M49.248,16.576 L49.248,28 L50.768,28 L50.768,22.768 L56.016,22.768 L56.016,21.488 L50.768,21.488 L50.768,17.856 L56.752,17.856 L56.752,16.576 L49.248,16.576 Z M59.2,23.872 C59.2,24.3733358 59.266666,24.8186647 59.4,25.208 C59.533334,25.5973353 59.7173322,25.9226654 59.952,26.184 C60.1866678,26.4453346 60.4613318,26.6453326 60.776,26.784 C61.0906682,26.9226674 61.4239982,26.992 61.776,26.992 C62.1280018,26.992 62.4613318,26.9226674 62.776,26.784 C63.0906682,26.6453326 63.3653322,26.4453346 63.6,26.184 C63.8346678,25.9226654 64.018666,25.5973353 64.152,25.208 C64.285334,24.8186647 64.352,24.3733358 64.352,23.872 C64.352,23.3706642 64.285334,22.9253353 64.152,22.536 C64.018666,22.1466647 63.8346678,21.818668 63.6,21.552 C63.3653322,21.285332 63.0906682,21.0826674 62.776,20.944 C62.4613318,20.8053326 62.1280018,20.736 61.776,20.736 C61.4239982,20.736 61.0906682,20.8053326 60.776,20.944 C60.4613318,21.0826674 60.1866678,21.285332 59.952,21.552 C59.7173322,21.818668 59.533334,22.1466647 59.4,22.536 C59.266666,22.9253353 59.2,23.3706642 59.2,23.872 Z M57.76,23.872 C57.76,23.263997 57.8453325,22.6960026 58.016,22.168 C58.1866675,21.6399974 58.442665,21.1813353 58.784,20.792 C59.125335,20.4026647 59.5466642,20.0960011 60.048,19.872 C60.5493358,19.6479989 61.1253301,19.536 61.776,19.536 C62.4373366,19.536 63.0159975,19.6479989 63.512,19.872 C64.0080025,20.0960011 64.426665,20.4026647 64.768,20.792 C65.109335,21.1813353 65.3653325,21.6399974 65.536,22.168 C65.7066675,22.6960026 65.792,23.263997 65.792,23.872 C65.792,24.480003 65.7066675,25.0453307 65.536,25.568 C65.3653325,26.0906693 65.109335,26.5466647 64.768,26.936 C64.426665,27.3253353 64.0080025,27.6293322 63.512,27.848 C63.0159975,28.0666678 62.4373366,28.176 61.776,28.176 C61.1253301,28.176 60.5493358,28.0666678 60.048,27.848 C59.5466642,27.6293322 59.125335,27.3253353 58.784,26.936 C58.442665,26.5466647 58.1866675,26.0906693 58.016,25.568 C57.8453325,25.0453307 57.76,24.480003 57.76,23.872 Z M74.24,28 L74.24,19.728 L72.88,19.728 L72.88,24.4 C72.88,24.7733352 72.8293338,25.1173318 72.728,25.432 C72.6266662,25.7466682 72.4746677,26.0213322 72.272,26.256 C72.0693323,26.4906678 71.8160015,26.6719994 71.512,26.8 C71.2079985,26.9280006 70.8480021,26.992 70.432,26.992 C69.9093307,26.992 69.4986682,26.8426682 69.2,26.544 C68.9013318,26.2453318 68.752,25.8400026 68.752,25.328 L68.752,19.728 L67.392,19.728 L67.392,25.168 C67.392,25.6160022 67.4373329,26.0239982 67.528,26.392 C67.6186671,26.7600018 67.7759989,27.077332 68,27.344 C68.2240011,27.610668 68.5173315,27.8159993 68.88,27.96 C69.2426685,28.1040007 69.6959973,28.176 70.24,28.176 C70.848003,28.176 71.3759978,28.0560012 71.824,27.816 C72.2720022,27.5759988 72.6399986,27.2000026 72.928,26.688 L72.96,26.688 L72.96,28 L74.24,28 Z M76.288,19.728 L76.288,28 L77.648,28 L77.648,23.328 C77.648,22.9546648 77.6986662,22.6106682 77.8,22.296 C77.9013338,21.9813318 78.0533323,21.7066678 78.256,21.472 C78.4586677,21.2373322 78.7119985,21.0560006 79.016,20.928 C79.3200015,20.7999994 79.6799979,20.736 80.096,20.736 C80.6186693,20.736 81.0293318,20.8853318 81.328,21.184 C81.6266682,21.4826682 81.776,21.8879974 81.776,22.4 L81.776,28 L83.136,28 L83.136,22.56 C83.136,22.1119978 83.0906671,21.7040018 83,21.336 C82.9093329,20.9679982 82.7520011,20.650668 82.528,20.384 C82.3039989,20.117332 82.0106685,19.9093341 81.648,19.76 C81.2853315,19.6106659 80.8320027,19.536 80.288,19.536 C79.0613272,19.536 78.1653362,20.0373283 77.6,21.04 L77.568,21.04 L77.568,19.728 L76.288,19.728 Z M86.176,23.936 C86.176,24.3200019 86.2266662,24.6959982 86.328,25.064 C86.4293338,25.4320018 86.583999,25.7599986 86.792,26.048 C87.000001,26.3360014 87.266665,26.5653325 87.592,26.736 C87.917335,26.9066675 88.2986645,26.992 88.736,26.992 C89.194669,26.992 89.5839984,26.9013342 89.904,26.72 C90.2240016,26.5386658 90.4853323,26.3013348 90.688,26.008 C90.8906677,25.7146652 91.0373329,25.3813352 91.128,25.008 C91.2186671,24.6346648 91.264,24.2560019 91.264,23.872 C91.264,23.4666646 91.2160005,23.0746686 91.12,22.696 C91.0239995,22.3173314 90.872001,21.9840014 90.664,21.696 C90.455999,21.4079986 90.1866683,21.1760009 89.856,21 C89.5253317,20.8239991 89.1253357,20.736 88.656,20.736 C88.197331,20.736 87.8080016,20.8266658 87.488,21.008 C87.1679984,21.1893342 86.912001,21.4293318 86.72,21.728 C86.527999,22.0266682 86.3893338,22.3679981 86.304,22.752 C86.2186662,23.1360019 86.176,23.5306646 86.176,23.936 Z M92.576,28 L91.216,28 L91.216,26.88 L91.184,26.88 C90.9599989,27.338669 90.6080024,27.6693323 90.128,27.872 C89.6479976,28.0746677 89.1200029,28.176 88.544,28.176 C87.9039968,28.176 87.346669,28.0586678 86.872,27.824 C86.397331,27.5893322 86.0026682,27.2746686 85.688,26.88 C85.3733318,26.4853314 85.1360008,26.0266693 84.976,25.504 C84.8159992,24.9813307 84.736,24.4266696 84.736,23.84 C84.736,23.2533304 84.8133326,22.6986693 84.968,22.176 C85.1226674,21.6533307 85.3573318,21.1973353 85.672,20.808 C85.9866682,20.4186647 86.381331,20.1093345 86.856,19.88 C87.330669,19.6506655 87.8826635,19.536 88.512,19.536 C88.7253344,19.536 88.9546654,19.5573331 89.2,19.6 C89.4453346,19.6426669 89.6906654,19.7146662 89.936,19.816 C90.1813346,19.9173338 90.4133322,20.0506658 90.632,20.216 C90.8506678,20.3813342 91.0346659,20.5866654 91.184,20.832 L91.216,20.832 L91.216,16.576 L92.576,16.576 L92.576,28 Z M102,27.968 C101.765332,28.1066674 101.440002,28.176 101.024,28.176 C100.671998,28.176 100.392001,28.0773343 100.184,27.88 C99.975999,27.6826657 99.872,27.3600022 99.872,26.912 C99.4986648,27.3600022 99.0640025,27.6826657 98.568,27.88 C98.0719975,28.0773343 97.5360029,28.176 96.96,28.176 C96.5866648,28.176 96.2320017,28.1333338 95.896,28.048 C95.5599983,27.9626662 95.2693346,27.8293342 95.024,27.648 C94.7786654,27.4666658 94.5840007,27.2293348 94.44,26.936 C94.2959993,26.6426652 94.224,26.2880021 94.224,25.872 C94.224,25.4026643 94.3039992,25.0186682 94.464,24.72 C94.6240008,24.4213318 94.8346654,24.1786676 95.096,23.992 C95.3573346,23.8053324 95.6559983,23.6640005 95.992,23.568 C96.3280017,23.4719995 96.6719982,23.3920003 97.024,23.328 C97.3973352,23.253333 97.7519983,23.1973335 98.088,23.16 C98.4240017,23.1226665 98.7199987,23.0693337 98.976,23 C99.2320013,22.9306663 99.4346659,22.829334 99.584,22.696 C99.7333341,22.562666 99.808,22.3680013 99.808,22.112 C99.808,21.8133318 99.7520006,21.5733342 99.64,21.392 C99.5279994,21.2106658 99.3840009,21.0720005 99.208,20.976 C99.0319991,20.8799995 98.8346678,20.8160002 98.616,20.784 C98.3973322,20.7519998 98.1813344,20.736 97.968,20.736 C97.3919971,20.736 96.9120019,20.8453322 96.528,21.064 C96.1439981,21.2826678 95.9360002,21.695997 95.904,22.304 L94.544,22.304 C94.5653334,21.7919974 94.671999,21.3600018 94.864,21.008 C95.056001,20.6559982 95.3119984,20.3706678 95.632,20.152 C95.9520016,19.9333322 96.3173313,19.7760005 96.728,19.68 C97.1386687,19.5839995 97.5786643,19.536 98.048,19.536 C98.4213352,19.536 98.7919982,19.5626664 99.16,19.616 C99.5280018,19.6693336 99.8613318,19.7786658 100.16,19.944 C100.458668,20.1093342 100.698666,20.3413318 100.88,20.64 C101.061334,20.9386682 101.152,21.3279976 101.152,21.808 L101.152,26.064 C101.152,26.3840016 101.170666,26.6186659 101.208,26.768 C101.245334,26.9173341 101.370666,26.992 101.584,26.992 C101.701334,26.992 101.839999,26.9653336 102,26.912 L102,27.968 Z M99.792,23.728 C99.6213325,23.8560006 99.3973347,23.949333 99.12,24.008 C98.8426653,24.066667 98.5520015,24.1146665 98.248,24.152 C97.9439985,24.1893335 97.6373349,24.2319998 97.328,24.28 C97.0186651,24.3280002 96.7413346,24.4053328 96.496,24.512 C96.2506654,24.6186672 96.0506674,24.7706657 95.896,24.968 C95.7413326,25.1653343 95.664,25.434665 95.664,25.776 C95.664,26.0000011 95.7093329,26.1893326 95.8,26.344 C95.8906671,26.4986674 96.0079993,26.6239995 96.152,26.72 C96.2960007,26.8160005 96.463999,26.8853331 96.656,26.928 C96.848001,26.9706669 97.0506656,26.992 97.264,26.992 C97.7120022,26.992 98.0959984,26.9306673 98.416,26.808 C98.7360016,26.6853327 98.9973323,26.5306676 99.2,26.344 C99.4026677,26.1573324 99.5519995,25.9546678 99.648,25.736 C99.7440005,25.5173322 99.792,25.312001 99.792,25.12 L99.792,23.728 Z M105.152,19.728 L105.152,17.248 L103.792,17.248 L103.792,19.728 L102.384,19.728 L102.384,20.928 L103.792,20.928 L103.792,26.192 C103.792,26.5760019 103.829333,26.8853322 103.904,27.12 C103.978667,27.3546678 104.093333,27.5359994 104.248,27.664 C104.402667,27.7920006 104.605332,27.8799998 104.856,27.928 C105.106668,27.9760002 105.407998,28 105.76,28 L106.8,28 L106.8,26.8 L106.176,26.8 C105.962666,26.8 105.789334,26.7920001 105.656,26.776 C105.522666,26.7599999 105.418667,26.7253336 105.344,26.672 C105.269333,26.6186664 105.218667,26.5440005 105.192,26.448 C105.165333,26.3519995 105.152,26.2240008 105.152,26.064 L105.152,20.928 L106.8,20.928 L106.8,19.728 L105.152,19.728 Z M109.744,18.24 L109.744,16.576 L108.384,16.576 L108.384,18.24 L109.744,18.24 Z M108.384,19.728 L108.384,28 L109.744,28 L109.744,19.728 L108.384,19.728 Z M112.848,23.872 C112.848,24.3733358 112.914666,24.8186647 113.048,25.208 C113.181334,25.5973353 113.365332,25.9226654 113.6,26.184 C113.834668,26.4453346 114.109332,26.6453326 114.424,26.784 C114.738668,26.9226674 115.071998,26.992 115.424,26.992 C115.776002,26.992 116.109332,26.9226674 116.424,26.784 C116.738668,26.6453326 117.013332,26.4453346 117.248,26.184 C117.482668,25.9226654 117.666666,25.5973353 117.8,25.208 C117.933334,24.8186647 118,24.3733358 118,23.872 C118,23.3706642 117.933334,22.9253353 117.8,22.536 C117.666666,22.1466647 117.482668,21.818668 117.248,21.552 C117.013332,21.285332 116.738668,21.0826674 116.424,20.944 C116.109332,20.8053326 115.776002,20.736 115.424,20.736 C115.071998,20.736 114.738668,20.8053326 114.424,20.944 C114.109332,21.0826674 113.834668,21.285332 113.6,21.552 C113.365332,21.818668 113.181334,22.1466647 113.048,22.536 C112.914666,22.9253353 112.848,23.3706642 112.848,23.872 Z M111.408,23.872 C111.408,23.263997 111.493332,22.6960026 111.664,22.168 C111.834668,21.6399974 112.090665,21.1813353 112.432,20.792 C112.773335,20.4026647 113.194664,20.0960011 113.696,19.872 C114.197336,19.6479989 114.77333,19.536 115.424,19.536 C116.085337,19.536 116.663998,19.6479989 117.16,19.872 C117.656002,20.0960011 118.074665,20.4026647 118.416,20.792 C118.757335,21.1813353 119.013332,21.6399974 119.184,22.168 C119.354668,22.6960026 119.44,23.263997 119.44,23.872 C119.44,24.480003 119.354668,25.0453307 119.184,25.568 C119.013332,26.0906693 118.757335,26.5466647 118.416,26.936 C118.074665,27.3253353 117.656002,27.6293322 117.16,27.848 C116.663998,28.0666678 116.085337,28.176 115.424,28.176 C114.77333,28.176 114.197336,28.0666678 113.696,27.848 C113.194664,27.6293322 112.773335,27.3253353 112.432,26.936 C112.090665,26.5466647 111.834668,26.0906693 111.664,25.568 C111.493332,25.0453307 111.408,24.480003 111.408,23.872 Z M121.04,19.728 L121.04,28 L122.4,28 L122.4,23.328 C122.4,22.9546648 122.450666,22.6106682 122.552,22.296 C122.653334,21.9813318 122.805332,21.7066678 123.008,21.472 C123.210668,21.2373322 123.463998,21.0560006 123.768,20.928 C124.072002,20.7999994 124.431998,20.736 124.848,20.736 C125.370669,20.736 125.781332,20.8853318 126.08,21.184 C126.378668,21.4826682 126.528,21.8879974 126.528,22.4 L126.528,28 L127.888,28 L127.888,22.56 C127.888,22.1119978 127.842667,21.7040018 127.752,21.336 C127.661333,20.9679982 127.504001,20.650668 127.28,20.384 C127.055999,20.117332 126.762668,19.9093341 126.4,19.76 C126.037332,19.6106659 125.584003,19.536 125.04,19.536 C123.813327,19.536 122.917336,20.0373283 122.352,21.04 L122.32,21.04 L122.32,19.728 L121.04,19.728 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="56" viewBox="0 0 1000 56" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="1000" height="56" fill="#EEE"/>
<path fill="#2199E8" d="M4.64999952,4.004 L4.64999952,14 L5.60199952,14 L5.60199952,4.004 L4.64999952,4.004 Z M10.253333,6.776 L10.253333,4.606 L9.37133302,4.606 L9.37133302,6.776 L8.11133302,6.776 L8.11133302,7.518 L9.37133302,7.518 L9.37133302,12.46 C9.36199964,13.0760031 9.47399852,13.4983322 9.70733302,13.727 C9.94066752,13.9556678 10.3513301,14.07 10.939333,14.07 C11.0700003,14.07 11.2006657,14.0653334 11.331333,14.056 C11.4620003,14.0466666 11.5926657,14.042 11.723333,14.042 L11.723333,13.3 C11.4713318,13.3280001 11.2193343,13.342 10.967333,13.342 C10.6499981,13.3233332 10.4516667,13.2323341 10.372333,13.069 C10.2929993,12.9056659 10.253333,12.6793348 10.253333,12.39 L10.253333,7.518 L11.723333,7.518 L11.723333,6.776 L10.253333,6.776 Z M19.5246665,9.884 C19.5153331,9.54799832 19.4570004,9.22600154 19.3496665,8.918 C19.2423326,8.60999846 19.0906675,8.33700119 18.8946665,8.099 C18.6986655,7.86099881 18.4606679,7.66966739 18.1806665,7.525 C17.9006651,7.38033261 17.5833349,7.308 17.2286665,7.308 C16.8646647,7.308 16.5426679,7.38033261 16.2626665,7.525 C15.9826651,7.66966739 15.7446675,7.86099881 15.5486665,8.099 C15.3526655,8.33700119 15.1963338,8.61233177 15.0796665,8.925 C14.9629993,9.23766823 14.886,9.5573317 14.8486665,9.884 L19.5246665,9.884 Z M14.8486665,10.626 C14.8486665,10.9433349 14.8929994,11.2723316 14.9816665,11.613 C15.0703336,11.9536684 15.2126655,12.259332 15.4086665,12.53 C15.6046675,12.800668 15.8519983,13.0246658 16.1506665,13.202 C16.4493347,13.3793342 16.8086644,13.468 17.2286665,13.468 C17.8726697,13.468 18.3766647,13.3000017 18.7406665,12.964 C19.1046683,12.6279983 19.3566658,12.1800028 19.4966665,11.62 L20.3786665,11.62 C20.1919989,12.4413374 19.8490023,13.0759978 19.3496665,13.524 C18.8503307,13.9720022 18.1433377,14.196 17.2286665,14.196 C16.6593303,14.196 16.1670019,14.0956677 15.7516665,13.895 C15.3363311,13.6943323 14.9980011,13.4190018 14.7366665,13.069 C14.4753319,12.7189983 14.2816671,12.3130023 14.1556665,11.851 C14.0296659,11.3889977 13.9666665,10.9013359 13.9666665,10.388 C13.9666665,9.91199762 14.0296659,9.44533562 14.1556665,8.988 C14.2816671,8.53066438 14.4753319,8.12233513 14.7366665,7.763 C14.9980011,7.40366487 15.3363311,7.11433443 15.7516665,6.895 C16.1670019,6.67566557 16.6593303,6.566 17.2286665,6.566 C17.8073361,6.566 18.3019978,6.6826655 18.7126665,6.916 C19.1233352,7.1493345 19.4569986,7.45499811 19.7136665,7.833 C19.9703345,8.21100189 20.1546659,8.64499755 20.2666665,9.135 C20.3786671,9.62500245 20.4253333,10.1219975 20.4066665,10.626 L14.8486665,10.626 Z M22.93,6.776 L22.93,14 L23.812,14 L23.812,9.968 C23.812,9.58533142 23.8539996,9.23300161 23.938,8.911 C24.0220004,8.58899839 24.1503325,8.30900119 24.323,8.071 C24.4956675,7.83299881 24.7196653,7.64633401 24.995,7.511 C25.2703347,7.37566599 25.5946648,7.308 25.968,7.308 C26.2480014,7.308 26.485999,7.3546662 26.682,7.448 C26.878001,7.5413338 27.0343328,7.66966585 27.151,7.833 C27.2676673,7.99633415 27.3516664,8.18766557 27.403,8.407 C27.4543336,8.62633443 27.48,8.85733212 27.48,9.1 L27.48,14 L28.362,14 L28.362,9.912 C28.362,9.57599832 28.392333,9.25166823 28.453,8.939 C28.513667,8.62633177 28.6186659,8.34866788 28.768,8.106 C28.9173341,7.86333212 29.1179987,7.66966739 29.37,7.525 C29.6220013,7.38033261 29.9393314,7.308 30.322,7.308 C30.9566698,7.308 31.3999987,7.46433177 31.652,7.777 C31.9040013,8.08966823 32.03,8.54466368 32.03,9.142 L32.03,14 L32.912,14 L32.912,9.1 C32.912,7.41065822 32.114008,6.566 30.518,6.566 C30.0419976,6.566 29.5940021,6.6826655 29.174,6.916 C28.7539979,7.1493345 28.4366677,7.50399762 28.222,7.98 C28.0913327,7.50399762 27.8323353,7.1493345 27.445,6.916 C27.0576647,6.6826655 26.6260024,6.566 26.15,6.566 C25.5619971,6.566 25.0790019,6.69199874 24.701,6.944 C24.3229981,7.19600126 24.0173345,7.54599776 23.784,7.994 L23.742,7.994 L23.742,6.776 L22.93,6.776 Z M47.268667,14 L47.268667,13.188 L41.822667,13.188 C41.8786673,12.8613317 42.0186659,12.5603347 42.242667,12.285 C42.4666681,12.0096653 42.7256655,11.7553345 43.019667,11.522 C43.3136685,11.2886655 43.6193321,11.0763343 43.936667,10.885 C44.2540019,10.6936657 44.5293325,10.5186675 44.762667,10.36 C45.0893353,10.1546656 45.3996655,9.93300119 45.693667,9.695 C45.9876685,9.45699881 46.2489992,9.1980014 46.477667,8.918 C46.7063348,8.6379986 46.888333,8.33000168 47.023667,7.994 C47.159001,7.65799832 47.226667,7.28466872 47.226667,6.874 C47.226667,6.41666438 47.1496678,6.01533506 46.995667,5.67 C46.8416662,5.32466494 46.6270017,5.03766781 46.351667,4.809 C46.0763323,4.58033219 45.7543355,4.40766725 45.385667,4.291 C45.0169985,4.17433275 44.6180025,4.116 44.188667,4.116 C43.6566643,4.116 43.1923356,4.20233247 42.795667,4.375 C42.3989983,4.54766753 42.0700016,4.78799846 41.808667,5.096 C41.5473323,5.40400154 41.3536676,5.77033121 41.227667,6.195 C41.1016664,6.61966879 41.0433336,7.08399748 41.052667,7.588 L41.934667,7.588 C41.9253336,7.22399818 41.9603333,6.8786683 42.039667,6.552 C42.1190007,6.2253317 42.2473328,5.93600126 42.424667,5.684 C42.6020012,5.43199874 42.8329989,5.23133408 43.117667,5.082 C43.4023351,4.93266592 43.7453316,4.858 44.146667,4.858 C44.4453351,4.858 44.7276657,4.90233289 44.993667,4.991 C45.2596683,5.07966711 45.4929993,5.21033247 45.693667,5.383 C45.8943347,5.55566753 46.0529997,5.76566543 46.169667,6.013 C46.2863342,6.26033457 46.344667,6.54266508 46.344667,6.86 C46.344667,7.25200196 46.277001,7.59033191 46.141667,7.875 C46.006333,8.15966809 45.803335,8.43733198 45.532667,8.708 C45.261999,8.97866802 44.9563354,9.23299881 44.615667,9.471 C44.2749986,9.70900119 43.932002,9.94233219 43.586667,10.171 C43.2413319,10.3996678 42.9053353,10.6376654 42.578667,10.885 C42.2519987,11.1323346 41.9580016,11.4053318 41.696667,11.704 C41.4353323,12.0026682 41.2253344,12.3386648 41.066667,12.712 C40.9079995,13.0853352 40.8240004,13.5146642 40.814667,14 L47.268667,14 Z" transform="translate(922 20)"/>
<g fill="#2199E8" transform="translate(25 20)">
<polygon points="54.737 4.75 64.263 4.75 59.5 10"/>
<path d="M4.64999952,4.004 L4.64999952,14 L5.60199952,14 L5.60199952,4.004 L4.64999952,4.004 Z M10.253333,6.776 L10.253333,4.606 L9.37133302,4.606 L9.37133302,6.776 L8.11133302,6.776 L8.11133302,7.518 L9.37133302,7.518 L9.37133302,12.46 C9.36199964,13.0760031 9.47399852,13.4983322 9.70733302,13.727 C9.94066752,13.9556678 10.3513301,14.07 10.939333,14.07 C11.0700003,14.07 11.2006657,14.0653334 11.331333,14.056 C11.4620003,14.0466666 11.5926657,14.042 11.723333,14.042 L11.723333,13.3 C11.4713318,13.3280001 11.2193343,13.342 10.967333,13.342 C10.6499981,13.3233332 10.4516667,13.2323341 10.372333,13.069 C10.2929993,12.9056659 10.253333,12.6793348 10.253333,12.39 L10.253333,7.518 L11.723333,7.518 L11.723333,6.776 L10.253333,6.776 Z M19.5246665,9.884 C19.5153331,9.54799832 19.4570004,9.22600154 19.3496665,8.918 C19.2423326,8.60999846 19.0906675,8.33700119 18.8946665,8.099 C18.6986655,7.86099881 18.4606679,7.66966739 18.1806665,7.525 C17.9006651,7.38033261 17.5833349,7.308 17.2286665,7.308 C16.8646647,7.308 16.5426679,7.38033261 16.2626665,7.525 C15.9826651,7.66966739 15.7446675,7.86099881 15.5486665,8.099 C15.3526655,8.33700119 15.1963338,8.61233177 15.0796665,8.925 C14.9629993,9.23766823 14.886,9.5573317 14.8486665,9.884 L19.5246665,9.884 Z M14.8486665,10.626 C14.8486665,10.9433349 14.8929994,11.2723316 14.9816665,11.613 C15.0703336,11.9536684 15.2126655,12.259332 15.4086665,12.53 C15.6046675,12.800668 15.8519983,13.0246658 16.1506665,13.202 C16.4493347,13.3793342 16.8086644,13.468 17.2286665,13.468 C17.8726697,13.468 18.3766647,13.3000017 18.7406665,12.964 C19.1046683,12.6279983 19.3566658,12.1800028 19.4966665,11.62 L20.3786665,11.62 C20.1919989,12.4413374 19.8490023,13.0759978 19.3496665,13.524 C18.8503307,13.9720022 18.1433377,14.196 17.2286665,14.196 C16.6593303,14.196 16.1670019,14.0956677 15.7516665,13.895 C15.3363311,13.6943323 14.9980011,13.4190018 14.7366665,13.069 C14.4753319,12.7189983 14.2816671,12.3130023 14.1556665,11.851 C14.0296659,11.3889977 13.9666665,10.9013359 13.9666665,10.388 C13.9666665,9.91199762 14.0296659,9.44533562 14.1556665,8.988 C14.2816671,8.53066438 14.4753319,8.12233513 14.7366665,7.763 C14.9980011,7.40366487 15.3363311,7.11433443 15.7516665,6.895 C16.1670019,6.67566557 16.6593303,6.566 17.2286665,6.566 C17.8073361,6.566 18.3019978,6.6826655 18.7126665,6.916 C19.1233352,7.1493345 19.4569986,7.45499811 19.7136665,7.833 C19.9703345,8.21100189 20.1546659,8.64499755 20.2666665,9.135 C20.3786671,9.62500245 20.4253333,10.1219975 20.4066665,10.626 L14.8486665,10.626 Z M22.93,6.776 L22.93,14 L23.812,14 L23.812,9.968 C23.812,9.58533142 23.8539996,9.23300161 23.938,8.911 C24.0220004,8.58899839 24.1503325,8.30900119 24.323,8.071 C24.4956675,7.83299881 24.7196653,7.64633401 24.995,7.511 C25.2703347,7.37566599 25.5946648,7.308 25.968,7.308 C26.2480014,7.308 26.485999,7.3546662 26.682,7.448 C26.878001,7.5413338 27.0343328,7.66966585 27.151,7.833 C27.2676673,7.99633415 27.3516664,8.18766557 27.403,8.407 C27.4543336,8.62633443 27.48,8.85733212 27.48,9.1 L27.48,14 L28.362,14 L28.362,9.912 C28.362,9.57599832 28.392333,9.25166823 28.453,8.939 C28.513667,8.62633177 28.6186659,8.34866788 28.768,8.106 C28.9173341,7.86333212 29.1179987,7.66966739 29.37,7.525 C29.6220013,7.38033261 29.9393314,7.308 30.322,7.308 C30.9566698,7.308 31.3999987,7.46433177 31.652,7.777 C31.9040013,8.08966823 32.03,8.54466368 32.03,9.142 L32.03,14 L32.912,14 L32.912,9.1 C32.912,7.41065822 32.114008,6.566 30.518,6.566 C30.0419976,6.566 29.5940021,6.6826655 29.174,6.916 C28.7539979,7.1493345 28.4366677,7.50399762 28.222,7.98 C28.0913327,7.50399762 27.8323353,7.1493345 27.445,6.916 C27.0576647,6.6826655 26.6260024,6.566 26.15,6.566 C25.5619971,6.566 25.0790019,6.69199874 24.701,6.944 C24.3229981,7.19600126 24.0173345,7.54599776 23.784,7.994 L23.742,7.994 L23.742,6.776 L22.93,6.776 Z M41.668667,6.09 L41.668667,6.72 L44.258667,6.72 L44.258667,14 L45.140667,14 L45.140667,4.2 L44.426667,4.2 C44.3613333,4.64800224 44.2516678,4.99566543 44.097667,5.243 C43.9436662,5.49033457 43.7523348,5.67466606 43.523667,5.796 C43.2949992,5.91733394 43.0243352,5.99433317 42.711667,6.027 C42.3989988,6.05966683 42.0513356,6.08066662 41.668667,6.09 Z"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="280" height="14" viewBox="0 0 280 14" id="svg" >
<g fill="none" fill-rule="evenodd">
<path fill="#333" d="M238.22,7.509 L239.075,7.509 C239.027,7.16699829 238.925001,6.8655013 238.769,6.6045 C238.612999,6.34349869 238.418001,6.12600087 238.184,5.952 C237.949999,5.77799913 237.683001,5.64600045 237.383,5.556 C237.082999,5.46599955 236.765002,5.421 236.429,5.421 C235.936998,5.421 235.500502,5.50949911 235.1195,5.6865 C234.738498,5.86350088 234.420501,6.10499847 234.1655,6.411 C233.910499,6.71700153 233.717001,7.07549794 233.585,7.4865 C233.452999,7.89750205 233.387,8.33699766 233.387,8.805 C233.387,9.27300234 233.448499,9.71099796 233.5715,10.119 C233.694501,10.527002 233.878999,10.8809985 234.125,11.181 C234.371001,11.4810015 234.679998,11.7164991 235.052,11.8875 C235.424002,12.0585009 235.858998,12.144 236.357,12.144 C237.179004,12.144 237.826998,11.9190023 238.301,11.469 C238.775002,11.0189978 239.054,10.3890041 239.138,9.579 L238.283,9.579 C238.265,9.84300132 238.211,10.0889989 238.121,10.317 C238.031,10.5450011 237.906501,10.7414992 237.7475,10.9065 C237.588499,11.0715008 237.399501,11.2004995 237.1805,11.2935 C236.961499,11.3865005 236.711001,11.433 236.429,11.433 C236.044998,11.433 235.715001,11.3610007 235.439,11.217 C235.162999,11.0729993 234.936501,10.8795012 234.7595,10.6365 C234.582499,10.3934988 234.452,10.1085016 234.368,9.7815 C234.284,9.45449836 234.242,9.10800183 234.242,8.742 C234.242,8.40599832 234.284,8.08200156 234.368,7.77 C234.452,7.45799844 234.582499,7.18050121 234.7595,6.9375 C234.936501,6.69449878 235.161499,6.50100072 235.4345,6.357 C235.707501,6.21299928 236.035998,6.141 236.42,6.141 C236.870002,6.141 237.258498,6.25499886 237.5855,6.483 C237.912502,6.71100114 238.124,7.05299772 238.22,7.509 Z M241.116667,5.574 L241.116667,12 L245.373667,12 L245.373667,11.28 L241.971667,11.28 L241.971667,5.574 L241.116667,5.574 Z M247.532333,8.787 C247.532333,9.11100162 247.574333,9.43049842 247.658333,9.7455 C247.742334,10.0605016 247.874332,10.3439987 248.054333,10.596 C248.234334,10.8480013 248.465332,11.0504992 248.747333,11.2035 C249.029335,11.3565008 249.365331,11.433 249.755333,11.433 C250.145335,11.433 250.481332,11.3565008 250.763333,11.2035 C251.045335,11.0504992 251.276332,10.8480013 251.456333,10.596 C251.636334,10.3439987 251.768333,10.0605016 251.852333,9.7455 C251.936334,9.43049842 251.978333,9.11100162 251.978333,8.787 C251.978333,8.46299838 251.936334,8.14350158 251.852333,7.8285 C251.768333,7.51349842 251.636334,7.23000126 251.456333,6.978 C251.276332,6.72599874 251.045335,6.52350076 250.763333,6.3705 C250.481332,6.21749923 250.145335,6.141 249.755333,6.141 C249.365331,6.141 249.029335,6.21749923 248.747333,6.3705 C248.465332,6.52350076 248.234334,6.72599874 248.054333,6.978 C247.874332,7.23000126 247.742334,7.51349842 247.658333,7.8285 C247.574333,8.14350158 247.532333,8.46299838 247.532333,8.787 Z M246.677333,8.787 C246.677333,8.34899781 246.741833,7.92750202 246.870833,7.5225 C246.999834,7.11749797 247.193332,6.75900156 247.451333,6.447 C247.709335,6.13499844 248.030331,5.88600093 248.414333,5.7 C248.798335,5.51399907 249.245331,5.421 249.755333,5.421 C250.265336,5.421 250.712331,5.51399907 251.096333,5.7 C251.480335,5.88600093 251.801332,6.13499844 252.059333,6.447 C252.317335,6.75900156 252.510833,7.11749797 252.639833,7.5225 C252.768834,7.92750202 252.833333,8.34899781 252.833333,8.787 C252.833333,9.22500219 252.768834,9.64649797 252.639833,10.0515 C252.510833,10.456502 252.317335,10.8149984 252.059333,11.127 C251.801332,11.4390016 251.480335,11.6864991 251.096333,11.8695 C250.712331,12.0525009 250.265336,12.144 249.755333,12.144 C249.245331,12.144 248.798335,12.0525009 248.414333,11.8695 C248.030331,11.6864991 247.709335,11.4390016 247.451333,11.127 C247.193332,10.8149984 246.999834,10.456502 246.870833,10.0515 C246.741833,9.64649797 246.677333,9.22500219 246.677333,8.787 Z M254.785,5.574 L254.785,12 L255.595,12 L255.595,6.843 L255.613,6.843 L258.97,12 L259.906,12 L259.906,5.574 L259.096,5.574 L259.096,10.785 L259.078,10.785 L255.694,5.574 L254.785,5.574 Z M262.244667,5.574 L262.244667,12 L263.099667,12 L263.099667,5.574 L262.244667,5.574 Z M265.447333,5.574 L265.447333,12 L266.257333,12 L266.257333,6.843 L266.275333,6.843 L269.632333,12 L270.568333,12 L270.568333,5.574 L269.758333,5.574 L269.758333,10.785 L269.740333,10.785 L266.356333,5.574 L265.447333,5.574 Z M277.677,11.199 L277.902,12 L278.442,12 L278.442,8.616 L275.625,8.616 L275.625,9.336 L277.677,9.336 C277.689,9.63000147 277.650001,9.90449872 277.56,10.1595 C277.47,10.4145013 277.336501,10.6364991 277.1595,10.8255 C276.982499,11.0145009 276.765001,11.1629995 276.507,11.271 C276.248999,11.3790005 275.952002,11.433 275.616,11.433 C275.255998,11.433 274.939501,11.3625007 274.6665,11.2215 C274.393499,11.0804993 274.164001,10.8915012 273.978,10.6545 C273.791999,10.4174988 273.651001,10.1445015 273.555,9.8355 C273.459,9.52649845 273.411,9.20400168 273.411,8.868 C273.411,8.52599829 273.453,8.19150163 273.537,7.8645 C273.621001,7.53749836 273.751499,7.24650127 273.9285,6.9915 C274.105501,6.73649872 274.333499,6.53100078 274.6125,6.375 C274.891502,6.21899922 275.225998,6.141 275.616,6.141 C275.856001,6.141 276.082499,6.16949971 276.2955,6.2265 C276.508501,6.28350028 276.698999,6.36899943 276.867,6.483 C277.035001,6.59700057 277.176,6.74249911 277.29,6.9195 C277.404001,7.09650088 277.482,7.30799877 277.524,7.554 L278.379,7.554 C278.319,7.17599811 278.206501,6.85350133 278.0415,6.5865 C277.876499,6.31949866 277.672501,6.09900087 277.4295,5.925 C277.186499,5.75099913 276.910502,5.6235004 276.6015,5.5425 C276.292499,5.46149959 275.964002,5.421 275.616,5.421 C275.105998,5.421 274.660502,5.51549905 274.2795,5.7045 C273.898498,5.89350094 273.580501,6.14699841 273.3255,6.465 C273.070499,6.78300159 272.878501,7.15349788 272.7495,7.5765 C272.620499,7.99950211 272.556,8.44499766 272.556,8.913 C272.556,9.3330021 272.624999,9.73799805 272.763,10.128 C272.901001,10.518002 273.101999,10.8629985 273.366,11.163 C273.630001,11.4630015 273.950998,11.7014991 274.329,11.8785 C274.707002,12.0555009 275.135998,12.144 275.616,12.144 C275.994002,12.144 276.368998,12.0705007 276.741,11.9235 C277.113002,11.7764993 277.424999,11.5350017 277.677,11.199 Z"/>
<polygon fill="#CACACA" points="221.502 5.421 218.847 12.144 219.495 12.144 222.159 5.421"/>
<path fill="#CACACA" d="M135.508,11.199 L135.733,12 L136.273,12 L136.273,8.616 L133.456,8.616 L133.456,9.336 L135.508,9.336 C135.52,9.63000147 135.481,9.90449872 135.391,10.1595 C135.301,10.4145013 135.167501,10.6364991 134.9905,10.8255 C134.813499,11.0145009 134.596001,11.1629995 134.338,11.271 C134.079999,11.3790005 133.783002,11.433 133.447,11.433 C133.086998,11.433 132.770501,11.3625007 132.4975,11.2215 C132.224499,11.0804993 131.995001,10.8915012 131.809,10.6545 C131.622999,10.4174988 131.482,10.1445015 131.386,9.8355 C131.29,9.52649845 131.242,9.20400168 131.242,8.868 C131.242,8.52599829 131.284,8.19150163 131.368,7.8645 C131.452,7.53749836 131.582499,7.24650127 131.7595,6.9915 C131.936501,6.73649872 132.164499,6.53100078 132.4435,6.375 C132.722501,6.21899922 133.056998,6.141 133.447,6.141 C133.687001,6.141 133.913499,6.16949971 134.1265,6.2265 C134.339501,6.28350028 134.529999,6.36899943 134.698,6.483 C134.866001,6.59700057 135.006999,6.74249911 135.121,6.9195 C135.235001,7.09650088 135.313,7.30799877 135.355,7.554 L136.21,7.554 C136.15,7.17599811 136.037501,6.85350133 135.8725,6.5865 C135.707499,6.31949866 135.503501,6.09900087 135.2605,5.925 C135.017499,5.75099913 134.741502,5.6235004 134.4325,5.5425 C134.123498,5.46149959 133.795002,5.421 133.447,5.421 C132.936997,5.421 132.491502,5.51549905 132.1105,5.7045 C131.729498,5.89350094 131.411501,6.14699841 131.1565,6.465 C130.901499,6.78300159 130.709501,7.15349788 130.5805,7.5765 C130.451499,7.99950211 130.387,8.44499766 130.387,8.913 C130.387,9.3330021 130.455999,9.73799805 130.594,10.128 C130.732001,10.518002 130.932999,10.8629985 131.197,11.163 C131.461001,11.4630015 131.781998,11.7014991 132.16,11.8785 C132.538002,12.0555009 132.966998,12.144 133.447,12.144 C133.825002,12.144 134.199998,12.0705007 134.572,11.9235 C134.944002,11.7764993 135.255999,11.5350017 135.508,11.199 Z M138.449667,5.574 L138.449667,12 L142.913667,12 L142.913667,11.28 L139.304667,11.28 L139.304667,9.057 L142.643667,9.057 L142.643667,8.337 L139.304667,8.337 L139.304667,6.294 L142.886667,6.294 L142.886667,5.574 L138.449667,5.574 Z M144.856333,5.574 L144.856333,12 L145.666333,12 L145.666333,6.843 L145.684333,6.843 L149.041333,12 L149.977333,12 L149.977333,5.574 L149.167333,5.574 L149.167333,10.785 L149.149333,10.785 L145.765333,5.574 L144.856333,5.574 Z M152.28,5.574 L152.28,12 L156.744,12 L156.744,11.28 L153.135,11.28 L153.135,9.057 L156.474,9.057 L156.474,8.337 L153.135,8.337 L153.135,6.294 L156.717,6.294 L156.717,5.574 L152.28,5.574 Z M165.831333,7.455 L166.641333,7.455 C166.629333,7.10099823 166.561834,6.79650127 166.438833,6.5415 C166.315833,6.28649872 166.147834,6.07500084 165.934833,5.907 C165.721832,5.73899916 165.474335,5.61600039 165.192333,5.538 C164.910332,5.45999961 164.604335,5.421 164.274333,5.421 C163.980332,5.421 163.693835,5.45849962 163.414833,5.5335 C163.135832,5.60850037 162.886835,5.72249923 162.667833,5.8755 C162.448832,6.02850076 162.273334,6.22349881 162.141333,6.4605 C162.009333,6.69750118 161.943333,6.97799838 161.943333,7.302 C161.943333,7.59600147 162.001833,7.84049902 162.118833,8.0355 C162.235834,8.23050097 162.391832,8.38949938 162.586833,8.5125 C162.781834,8.63550061 163.002332,8.73449962 163.248333,8.8095 C163.494335,8.88450038 163.744832,8.95049971 163.999833,9.0075 C164.254835,9.06450028 164.505332,9.11999973 164.751333,9.174 C164.997335,9.22800027 165.217832,9.29849957 165.412833,9.3855 C165.607834,9.47250044 165.763833,9.58499931 165.880833,9.723 C165.997834,9.86100069 166.056333,10.0409989 166.056333,10.263 C166.056333,10.4970012 166.008334,10.6889993 165.912333,10.839 C165.816333,10.9890007 165.690334,11.1074996 165.534333,11.1945 C165.378333,11.2815004 165.202834,11.3429998 165.007833,11.379 C164.812832,11.4150002 164.619334,11.433 164.427333,11.433 C164.187332,11.433 163.953335,11.4030003 163.725333,11.343 C163.497332,11.2829997 163.297834,11.1900006 163.126833,11.064 C162.955833,10.9379994 162.817834,10.777501 162.712833,10.5825 C162.607833,10.387499 162.555333,10.1550013 162.555333,9.885 L161.745333,9.885 C161.745333,10.275002 161.815833,10.6124986 161.956833,10.8975 C162.097834,11.1825014 162.289832,11.4164991 162.532833,11.5995 C162.775835,11.7825009 163.057832,11.9189996 163.378833,12.009 C163.699835,12.0990005 164.040332,12.144 164.400333,12.144 C164.694335,12.144 164.989832,12.1095003 165.286833,12.0405 C165.583835,11.9714997 165.852332,11.8605008 166.092333,11.7075 C166.332335,11.5544992 166.528833,11.3565012 166.681833,11.1135 C166.834834,10.8704988 166.911333,10.5780017 166.911333,10.236 C166.911333,9.91799841 166.852834,9.65400105 166.735833,9.444 C166.618833,9.23399895 166.462834,9.06000069 166.267833,8.922 C166.072832,8.78399931 165.852335,8.6745004 165.606333,8.5935 C165.360332,8.51249959 165.109835,8.4420003 164.854833,8.382 C164.599832,8.3219997 164.349335,8.26650026 164.103333,8.2155 C163.857332,8.16449975 163.636834,8.10000039 163.441833,8.022 C163.246832,7.94399961 163.090834,7.84350061 162.973833,7.7205 C162.856833,7.59749938 162.798333,7.43700099 162.798333,7.239 C162.798333,7.02899895 162.838833,6.85350071 162.919833,6.7125 C163.000834,6.57149929 163.108833,6.45900042 163.243833,6.375 C163.378834,6.29099958 163.533333,6.23100018 163.707333,6.195 C163.881334,6.15899982 164.058333,6.141 164.238333,6.141 C164.682336,6.141 165.046832,6.24449896 165.331833,6.4515 C165.616835,6.65850103 165.783333,6.99299769 165.831333,7.455 Z M169.718,8.652 L171.392,8.652 C171.878003,8.65800003 172.233499,8.55900102 172.4585,8.355 C172.683501,8.15099898 172.796,7.85700192 172.796,7.473 C172.796,7.08899808 172.683501,6.796501 172.4585,6.5955 C172.233499,6.39449899 171.878003,6.294 171.392,6.294 L169.718,6.294 L169.718,8.652 Z M168.863,5.574 L171.68,5.574 C172.328003,5.574 172.818498,5.74049833 173.1515,6.0735 C173.484502,6.40650166 173.651,6.872997 173.651,7.473 C173.651,8.073003 173.484502,8.54099832 173.1515,8.877 C172.818498,9.21300168 172.328003,9.37800003 171.68,9.372 L169.718,9.372 L169.718,12 L168.863,12 L168.863,5.574 Z M175.611667,5.574 L175.611667,12 L179.868667,12 L179.868667,11.28 L176.466667,11.28 L176.466667,5.574 L175.611667,5.574 Z M181.568333,5.574 L181.568333,12 L182.423333,12 L182.423333,5.574 L181.568333,5.574 Z M189.298,7.509 L190.153,7.509 C190.105,7.16699829 190.003001,6.8655013 189.847,6.6045 C189.690999,6.34349869 189.496001,6.12600087 189.262,5.952 C189.027999,5.77799913 188.761002,5.64600045 188.461,5.556 C188.160999,5.46599955 187.843002,5.421 187.507,5.421 C187.014998,5.421 186.578502,5.50949911 186.1975,5.6865 C185.816498,5.86350088 185.498501,6.10499847 185.2435,6.411 C184.988499,6.71700153 184.795001,7.07549794 184.663,7.4865 C184.531,7.89750205 184.465,8.33699766 184.465,8.805 C184.465,9.27300234 184.5265,9.71099796 184.6495,10.119 C184.772501,10.527002 184.956999,10.8809985 185.203,11.181 C185.449001,11.4810015 185.757998,11.7164991 186.13,11.8875 C186.502002,12.0585009 186.936998,12.144 187.435,12.144 C188.257004,12.144 188.904998,11.9190023 189.379,11.469 C189.853003,11.0189978 190.132,10.3890041 190.216,9.579 L189.361,9.579 C189.343,9.84300132 189.289001,10.0889989 189.199,10.317 C189.109,10.5450011 188.984501,10.7414992 188.8255,10.9065 C188.666499,11.0715008 188.477501,11.2004995 188.2585,11.2935 C188.039499,11.3865005 187.789002,11.433 187.507,11.433 C187.122998,11.433 186.793002,11.3610007 186.517,11.217 C186.240999,11.0729993 186.014501,10.8795012 185.8375,10.6365 C185.660499,10.3934988 185.530001,10.1085016 185.446,9.7815 C185.362,9.45449836 185.32,9.10800183 185.32,8.742 C185.32,8.40599832 185.362,8.08200156 185.446,7.77 C185.530001,7.45799844 185.660499,7.18050121 185.8375,6.9375 C186.014501,6.69449878 186.239499,6.50100072 186.5125,6.357 C186.785502,6.21299928 187.113998,6.141 187.498,6.141 C187.948002,6.141 188.336499,6.25499886 188.6635,6.483 C188.990502,6.71100114 189.202,7.05299772 189.298,7.509 Z M192.230667,5.574 L192.230667,12 L193.085667,12 L193.085667,5.574 L192.230667,5.574 Z M195.433334,5.574 L195.433334,12 L196.243334,12 L196.243334,6.843 L196.261334,6.843 L199.618334,12 L200.554334,12 L200.554334,5.574 L199.744334,5.574 L199.744334,10.785 L199.726334,10.785 L196.342334,5.574 L195.433334,5.574 Z M207.663,11.199 L207.888,12 L208.428,12 L208.428,8.616 L205.611,8.616 L205.611,9.336 L207.663,9.336 C207.675,9.63000147 207.636001,9.90449872 207.546,10.1595 C207.456,10.4145013 207.322501,10.6364991 207.1455,10.8255 C206.968499,11.0145009 206.751002,11.1629995 206.493,11.271 C206.234999,11.3790005 205.938002,11.433 205.602,11.433 C205.241998,11.433 204.925502,11.3625007 204.6525,11.2215 C204.379499,11.0804993 204.150001,10.8915012 203.964,10.6545 C203.777999,10.4174988 203.637001,10.1445015 203.541,9.8355 C203.445,9.52649845 203.397,9.20400168 203.397,8.868 C203.397,8.52599829 203.439,8.19150163 203.523,7.8645 C203.607001,7.53749836 203.737499,7.24650127 203.9145,6.9915 C204.091501,6.73649872 204.319499,6.53100078 204.5985,6.375 C204.877502,6.21899922 205.211998,6.141 205.602,6.141 C205.842001,6.141 206.068499,6.16949971 206.2815,6.2265 C206.494501,6.28350028 206.684999,6.36899943 206.853,6.483 C207.021001,6.59700057 207.162,6.74249911 207.276,6.9195 C207.390001,7.09650088 207.468,7.30799877 207.51,7.554 L208.365,7.554 C208.305,7.17599811 208.192501,6.85350133 208.0275,6.5865 C207.862499,6.31949866 207.658501,6.09900087 207.4155,5.925 C207.172499,5.75099913 206.896502,5.6235004 206.5875,5.5425 C206.278499,5.46149959 205.950002,5.421 205.602,5.421 C205.091998,5.421 204.646502,5.51549905 204.2655,5.7045 C203.884498,5.89350094 203.566502,6.14699841 203.3115,6.465 C203.056499,6.78300159 202.864501,7.15349788 202.7355,7.5765 C202.6065,7.99950211 202.542,8.44499766 202.542,8.913 C202.542,9.3330021 202.611,9.73799805 202.749,10.128 C202.887001,10.518002 203.087999,10.8629985 203.352,11.163 C203.616002,11.4630015 203.936998,11.7014991 204.315,11.8785 C204.693002,12.0555009 205.121998,12.144 205.602,12.144 C205.980002,12.144 206.354998,12.0705007 206.727,11.9235 C207.099002,11.7764993 207.410999,11.5350017 207.663,11.199 Z"/>
<polygon fill="#CACACA" points="118.502 5.421 115.847 12.144 116.495 12.144 119.159 5.421"/>
<path fill="#2199E8" d="M54.702,5.574 L54.702,12 L55.557,12 L55.557,9.057 L58.509,9.057 L58.509,8.337 L55.557,8.337 L55.557,6.294 L58.923,6.294 L58.923,5.574 L54.702,5.574 Z M60.7846667,5.574 L60.7846667,12 L65.2486667,12 L65.2486667,11.28 L61.6396667,11.28 L61.6396667,9.057 L64.9786667,9.057 L64.9786667,8.337 L61.6396667,8.337 L61.6396667,6.294 L65.2216667,6.294 L65.2216667,5.574 L60.7846667,5.574 Z M68.3073334,9.345 L70.4853334,9.345 L69.4143334,6.348 L69.3963334,6.348 L68.3073334,9.345 Z M68.9463334,5.574 L69.8913334,5.574 L72.4023334,12 L71.4573334,12 L70.7553334,10.065 L68.0373334,10.065 L67.3173334,12 L66.4443334,12 L68.9463334,5.574 Z M74.5790001,6.294 L74.5790001,12 L75.4340001,12 L75.4340001,6.294 L77.5760001,6.294 L77.5760001,5.574 L72.4370001,5.574 L72.4370001,6.294 L74.5790001,6.294 Z M84.3336667,9.678 L84.3336667,5.574 L83.4786667,5.574 L83.4786667,9.678 C83.4786667,10.2540029 83.3361682,10.6904985 83.0511667,10.9875 C82.7661653,11.2845015 82.3506695,11.433 81.8046667,11.433 C81.2286639,11.433 80.7876683,11.2845015 80.4816667,10.9875 C80.1756652,10.6904985 80.0226667,10.2540029 80.0226667,9.678 L80.0226667,5.574 L79.1676667,5.574 L79.1676667,9.678 C79.1676667,10.5360043 79.4001644,11.161498 79.8651667,11.5545 C80.3301691,11.947502 80.9766626,12.144 81.8046667,12.144 C82.6146708,12.144 83.2386646,11.9385021 83.6766667,11.5275 C84.1146689,11.1164979 84.3336667,10.5000041 84.3336667,9.678 Z M86.6183334,5.574 L89.6423334,5.574 C90.2543365,5.574 90.7328317,5.7239985 91.0778334,6.024 C91.4228352,6.3240015 91.5953334,6.73499739 91.5953334,7.257 C91.5953334,7.64700195 91.5068343,7.98899853 91.3298334,8.283 C91.1528325,8.57700147 90.8693354,8.77799946 90.4793334,8.886 L90.4793334,8.904 C90.6653344,8.94000018 90.8168328,8.99999958 90.9338334,9.084 C91.050834,9.16800042 91.1438331,9.26849941 91.2128334,9.3855 C91.2818338,9.50250058 91.3328333,9.63299928 91.3658334,9.777 C91.3988336,9.92100072 91.4243333,10.0709992 91.4423334,10.227 C91.4543335,10.3830008 91.4633334,10.5419992 91.4693334,10.704 C91.4753335,10.8660008 91.4903333,11.0249992 91.5143334,11.181 C91.5383336,11.3370008 91.5728332,11.4854993 91.6178334,11.6265 C91.6628337,11.7675007 91.730333,11.8919995 91.8203334,12 L90.8663334,12 C90.8063331,11.9339997 90.7658335,11.8440006 90.7448334,11.73 C90.7238333,11.6159994 90.7103335,11.4885007 90.7043334,11.3475 C90.6983334,11.2064993 90.6923335,11.0550008 90.6863334,10.893 C90.6803334,10.7309992 90.6623336,10.5720008 90.6323334,10.416 C90.6083333,10.2599992 90.5783336,10.1115007 90.5423334,9.9705 C90.5063333,9.82949929 90.4493338,9.70650052 90.3713334,9.6015 C90.293333,9.49649948 90.1913341,9.41250031 90.0653334,9.3495 C89.9393328,9.28649968 89.7713345,9.255 89.5613334,9.255 L87.4733334,9.255 L87.4733334,12 L86.6183334,12 L86.6183334,5.574 Z M89.2553334,8.535 C89.4533344,8.535 89.6423325,8.52000015 89.8223334,8.49 C90.0023343,8.45999985 90.1598328,8.40150043 90.2948334,8.3145 C90.4298341,8.22749956 90.537833,8.11050073 90.6188334,7.9635 C90.6998338,7.81649926 90.7403334,7.62600117 90.7403334,7.392 C90.7403334,7.06799838 90.6503343,6.80400102 90.4703334,6.6 C90.2903325,6.39599898 89.9993354,6.294 89.5973334,6.294 L87.4733334,6.294 L87.4733334,8.535 L89.2553334,8.535 Z M93.7000001,5.574 L93.7000001,12 L98.1640001,12 L98.1640001,11.28 L94.5550001,11.28 L94.5550001,9.057 L97.8940001,9.057 L97.8940001,8.337 L94.5550001,8.337 L94.5550001,6.294 L98.1370001,6.294 L98.1370001,5.574 L93.7000001,5.574 Z M103.832667,7.455 L104.642667,7.455 C104.630667,7.10099823 104.563167,6.79650127 104.440167,6.5415 C104.317166,6.28649872 104.149168,6.07500084 103.936167,5.907 C103.723166,5.73899916 103.475668,5.61600039 103.193667,5.538 C102.911665,5.45999961 102.605668,5.421 102.275667,5.421 C101.981665,5.421 101.695168,5.45849962 101.416167,5.5335 C101.137165,5.60850037 100.888168,5.72249923 100.669167,5.8755 C100.450166,6.02850076 100.274667,6.22349881 100.142667,6.4605 C100.010666,6.69750118 99.9446668,6.97799838 99.9446668,7.302 C99.9446668,7.59600147 100.003166,7.84049902 100.120167,8.0355 C100.237167,8.23050097 100.393166,8.38949938 100.588167,8.5125 C100.783168,8.63550061 101.003666,8.73449962 101.249667,8.8095 C101.495668,8.88450038 101.746166,8.95049971 102.001167,9.0075 C102.256168,9.06450028 102.506666,9.11999973 102.752667,9.174 C102.998668,9.22800027 103.219166,9.29849957 103.414167,9.3855 C103.609168,9.47250044 103.765166,9.58499931 103.882167,9.723 C103.999167,9.86100069 104.057667,10.0409989 104.057667,10.263 C104.057667,10.4970012 104.009667,10.6889993 103.913667,10.839 C103.817666,10.9890007 103.691668,11.1074996 103.535667,11.1945 C103.379666,11.2815004 103.204168,11.3429998 103.009167,11.379 C102.814166,11.4150002 102.620668,11.433 102.428667,11.433 C102.188666,11.433 101.954668,11.4030003 101.726667,11.343 C101.498666,11.2829997 101.299168,11.1900006 101.128167,11.064 C100.957166,10.9379994 100.819167,10.777501 100.714167,10.5825 C100.609166,10.387499 100.556667,10.1550013 100.556667,9.885 L99.7466668,9.885 C99.7466668,10.275002 99.8171661,10.6124986 99.9581668,10.8975 C100.099168,11.1825014 100.291166,11.4164991 100.534167,11.5995 C100.777168,11.7825009 101.059165,11.9189996 101.380167,12.009 C101.701168,12.0990005 102.041665,12.144 102.401667,12.144 C102.695668,12.144 102.991165,12.1095003 103.288167,12.0405 C103.585168,11.9714997 103.853666,11.8605008 104.093667,11.7075 C104.333668,11.5544992 104.530166,11.3565012 104.683167,11.1135 C104.836168,10.8704988 104.912667,10.5780017 104.912667,10.236 C104.912667,9.91799841 104.854167,9.65400105 104.737167,9.444 C104.620166,9.23399895 104.464168,9.06000069 104.269167,8.922 C104.074166,8.78399931 103.853668,8.6745004 103.607667,8.5935 C103.361666,8.51249959 103.111168,8.4420003 102.856167,8.382 C102.601166,8.3219997 102.350668,8.26650026 102.104667,8.2155 C101.858666,8.16449975 101.638168,8.10000039 101.443167,8.022 C101.248166,7.94399961 101.092167,7.84350061 100.975167,7.7205 C100.858166,7.59749938 100.799667,7.43700099 100.799667,7.239 C100.799667,7.02899895 100.840166,6.85350071 100.921167,6.7125 C101.002167,6.57149929 101.110166,6.45900042 101.245167,6.375 C101.380167,6.29099958 101.534666,6.23100018 101.708667,6.195 C101.882668,6.15899982 102.059666,6.141 102.239667,6.141 C102.683669,6.141 103.048165,6.24449896 103.333167,6.4515 C103.618168,6.65850103 103.784667,6.99299769 103.832667,7.455 Z"/>
<polygon fill="#CACACA" points="42.502 5.421 39.847 12.144 40.495 12.144 43.159 5.421"/>
<path fill="#2199E8" d="M0.702,5.574 L0.702,12 L1.557,12 L1.557,9.057 L4.941,9.057 L4.941,12 L5.796,12 L5.796,5.574 L4.941,5.574 L4.941,8.337 L1.557,8.337 L1.557,5.574 L0.702,5.574 Z M8.61166669,8.787 C8.61166669,9.11100162 8.65366627,9.43049842 8.73766669,9.7455 C8.82166711,10.0605016 8.95366579,10.3439987 9.13366669,10.596 C9.31366759,10.8480013 9.54466528,11.0504992 9.82666669,11.2035 C10.1086681,11.3565008 10.4446647,11.433 10.8346667,11.433 C11.2246686,11.433 11.5606653,11.3565008 11.8426667,11.2035 C12.1246681,11.0504992 12.3556658,10.8480013 12.5356667,10.596 C12.7156676,10.3439987 12.8476663,10.0605016 12.9316667,9.7455 C13.0156671,9.43049842 13.0576667,9.11100162 13.0576667,8.787 C13.0576667,8.46299838 13.0156671,8.14350158 12.9316667,7.8285 C12.8476663,7.51349842 12.7156676,7.23000126 12.5356667,6.978 C12.3556658,6.72599874 12.1246681,6.52350076 11.8426667,6.3705 C11.5606653,6.21749923 11.2246686,6.141 10.8346667,6.141 C10.4446647,6.141 10.1086681,6.21749923 9.82666669,6.3705 C9.54466528,6.52350076 9.31366759,6.72599874 9.13366669,6.978 C8.95366579,7.23000126 8.82166711,7.51349842 8.73766669,7.8285 C8.65366627,8.14350158 8.61166669,8.46299838 8.61166669,8.787 Z M7.75666669,8.787 C7.75666669,8.34899781 7.82116604,7.92750202 7.95016669,7.5225 C8.07916733,7.11749797 8.2726654,6.75900156 8.53066669,6.447 C8.78866798,6.13499844 9.10966477,5.88600093 9.49366669,5.7 C9.87766861,5.51399907 10.3246641,5.421 10.8346667,5.421 C11.3446692,5.421 11.7916648,5.51399907 12.1756667,5.7 C12.5596686,5.88600093 12.8806654,6.13499844 13.1386667,6.447 C13.396668,6.75900156 13.590166,7.11749797 13.7191667,7.5225 C13.8481673,7.92750202 13.9126667,8.34899781 13.9126667,8.787 C13.9126667,9.22500219 13.8481673,9.64649797 13.7191667,10.0515 C13.590166,10.456502 13.396668,10.8149984 13.1386667,11.127 C12.8806654,11.4390016 12.5596686,11.6864991 12.1756667,11.8695 C11.7916648,12.0525009 11.3446692,12.144 10.8346667,12.144 C10.3246641,12.144 9.87766861,12.0525009 9.49366669,11.8695 C9.10966477,11.6864991 8.78866798,11.4390016 8.53066669,11.127 C8.2726654,10.8149984 8.07916733,10.456502 7.95016669,10.0515 C7.82116604,9.64649797 7.75666669,9.22500219 7.75666669,8.787 Z M15.8913334,5.574 L15.8913334,12 L16.7013334,12 L16.7013334,6.654 L16.7193334,6.654 L18.7263334,12 L19.4553334,12 L21.4623334,6.654 L21.4803334,6.654 L21.4803334,12 L22.2903334,12 L22.2903334,5.574 L21.1203334,5.574 L19.0863334,10.974 L17.0613334,5.574 L15.8913334,5.574 Z M24.6290001,5.574 L24.6290001,12 L29.0930001,12 L29.0930001,11.28 L25.4840001,11.28 L25.4840001,9.057 L28.8230001,9.057 L28.8230001,8.337 L25.4840001,8.337 L25.4840001,6.294 L29.0660001,6.294 L29.0660001,5.574 L24.6290001,5.574 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="589" height="16" viewBox="0 0 589 16" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="589" height="16" fill="#CACACA"/>
<rect width="442" height="16" fill="#FFAE00"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="166" height="54" viewBox="0 0 166 54" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="166" height="54" fill="#EC5840"/>
<path fill="#FFF" d="M50.182,28.77 L48.958,28.77 C48.9219998,29.562004 49.0269988,30.2399972 49.273,30.804 C49.5190012,31.3680028 49.8699977,31.8299982 50.326,32.19 C50.7820023,32.5500018 51.3339968,32.8169991 51.982,32.991 C52.6300032,33.1650009 53.3319962,33.252 54.088,33.252 C54.8440038,33.252 55.4919973,33.1830007 56.032,33.045 C56.5720027,32.9069993 57.0249982,32.7270011 57.391,32.505 C57.7570018,32.2829989 58.044999,32.0340014 58.255,31.758 C58.4650011,31.4819986 58.6269994,31.2090014 58.741,30.939 C58.8550006,30.6689986 58.9269999,30.4140012 58.957,30.174 C58.9870002,29.9339988 59.002,29.7420007 59.002,29.598 C59.002,29.0699974 58.9150009,28.6200019 58.741,28.248 C58.5669991,27.8759981 58.3270015,27.5610013 58.021,27.303 C57.7149985,27.0449987 57.361002,26.8290009 56.959,26.655 C56.556998,26.4809991 56.1280023,26.3340006 55.672,26.214 L52.54,25.44 C52.2759987,25.3799997 52.0270012,25.3020005 51.793,25.206 C51.5589988,25.1099995 51.3520009,24.9840008 51.172,24.828 C50.9919991,24.6719992 50.8510005,24.4830011 50.749,24.261 C50.6469995,24.0389989 50.596,23.7780015 50.596,23.478 C50.596,22.9979976 50.6859991,22.5960016 50.866,22.272 C51.0460009,21.9479984 51.2829985,21.687001 51.577,21.489 C51.8710015,21.290999 52.2129981,21.1470005 52.603,21.057 C52.993002,20.9669995 53.3979979,20.922 53.818,20.922 C54.2740023,20.922 54.7089979,20.9849994 55.123,21.111 C55.5370021,21.2370006 55.9029984,21.4229988 56.221,21.669 C56.5390016,21.9150012 56.796999,22.2209982 56.995,22.587 C57.193001,22.9530018 57.3039999,23.3819975 57.328,23.874 L58.552,23.874 C58.552,23.2139967 58.4230013,22.6350025 58.165,22.137 C57.9069987,21.6389975 57.5620022,21.2220017 57.13,20.886 C56.6979978,20.5499983 56.1940029,20.2980008 55.618,20.13 C55.0419971,19.9619992 54.4360032,19.878 53.8,19.878 C52.8999955,19.878 52.1620029,20.0069987 51.586,20.265 C51.0099971,20.5230013 50.5570017,20.8379981 50.227,21.21 C49.8969984,21.5820019 49.6720006,21.9779979 49.552,22.398 C49.4319994,22.8180021 49.372,23.1839984 49.372,23.496 C49.372,24.0000025 49.4529992,24.4259983 49.615,24.774 C49.7770008,25.1220017 49.9899987,25.4159988 50.254,25.656 C50.5180013,25.8960012 50.8269982,26.0879993 51.181,26.232 C51.5350018,26.3760007 51.8979981,26.4959995 52.27,26.592 L55.132,27.294 C55.4320015,27.3660004 55.7379984,27.4589994 56.05,27.573 C56.3620016,27.6870006 56.6469987,27.8339991 56.905,28.014 C57.1630013,28.1940009 57.3729992,28.4159987 57.535,28.68 C57.6970008,28.9440013 57.778,29.2559982 57.778,29.616 C57.778,30.0840023 57.6640011,30.4829983 57.436,30.813 C57.2079989,31.1430017 56.9230017,31.412999 56.581,31.623 C56.2389983,31.8330011 55.870002,31.9859995 55.474,32.082 C55.077998,32.1780005 54.7120017,32.226 54.376,32.226 C53.7879971,32.226 53.2360026,32.1690006 52.72,32.055 C52.2039974,31.9409994 51.7570019,31.7520013 51.379,31.488 C51.0009981,31.2239987 50.7040011,30.8700022 50.488,30.426 C50.2719989,29.9819978 50.1699999,29.4300033 50.182,28.77 Z M64.654,24.396 C64.1139973,24.396 63.640002,24.5099989 63.232,24.738 C62.823998,24.9660011 62.4850014,25.2659981 62.215,25.638 C61.9449987,26.0100019 61.7410007,26.4329976 61.603,26.907 C61.4649993,27.3810024 61.396,27.8639975 61.396,28.356 C61.396,28.8480025 61.4649993,29.3309976 61.603,29.805 C61.7410007,30.2790024 61.9449987,30.7019981 62.215,31.074 C62.4850014,31.4460019 62.823998,31.7459989 63.232,31.974 C63.640002,32.2020011 64.1139973,32.316 64.654,32.316 C65.1940027,32.316 65.667998,32.2020011 66.076,31.974 C66.484002,31.7459989 66.8229987,31.4460019 67.093,31.074 C67.3630014,30.7019981 67.5669993,30.2790024 67.705,29.805 C67.8430007,29.3309976 67.912,28.8480025 67.912,28.356 C67.912,27.8639975 67.8430007,27.3810024 67.705,26.907 C67.5669993,26.4329976 67.3630014,26.0100019 67.093,25.638 C66.8229987,25.2659981 66.484002,24.9660011 66.076,24.738 C65.667998,24.5099989 65.1940027,24.396 64.654,24.396 Z M64.654,23.442 C65.3620035,23.442 65.9889973,23.5739987 66.535,23.838 C67.0810027,24.1020013 67.5399981,24.4559978 67.912,24.9 C68.2840019,25.3440022 68.565999,25.862997 68.758,26.457 C68.950001,27.051003 69.046,27.6839966 69.046,28.356 C69.046,29.0280034 68.950001,29.660997 68.758,30.255 C68.565999,30.849003 68.2840019,31.3679978 67.912,31.812 C67.5399981,32.2560022 67.0810027,32.6069987 66.535,32.865 C65.9889973,33.1230013 65.3620035,33.252 64.654,33.252 C63.9459965,33.252 63.3190027,33.1230013 62.773,32.865 C62.2269973,32.6069987 61.7680019,32.2560022 61.396,31.812 C61.0239981,31.3679978 60.742001,30.849003 60.55,30.255 C60.357999,29.660997 60.262,29.0280034 60.262,28.356 C60.262,27.6839966 60.357999,27.051003 60.55,26.457 C60.742001,25.862997 61.0239981,25.3440022 61.396,24.9 C61.7680019,24.4559978 62.2269973,24.1020013 62.773,23.838 C63.3190027,23.5739987 63.9459965,23.442 64.654,23.442 Z M75.958,20.148 L75.958,33 L84.382,33 L84.382,31.956 L77.182,31.956 L77.182,20.148 L75.958,20.148 Z M85.3,26.556 C85.3360002,26.0159973 85.449999,25.548002 85.642,25.152 C85.834001,24.755998 86.0949983,24.4320013 86.425,24.18 C86.7550016,23.9279987 87.1419978,23.7420006 87.586,23.622 C88.0300022,23.5019994 88.5219973,23.442 89.062,23.442 C89.470002,23.442 89.877998,23.4809996 90.286,23.559 C90.694002,23.6370004 91.0599984,23.7839989 91.384,24 C91.7080016,24.2160011 91.971999,24.5189981 92.176,24.909 C92.380001,25.299002 92.482,25.8059969 92.482,26.43 L92.482,31.362 C92.482,31.8180023 92.7039978,32.046 93.148,32.046 C93.2800007,32.046 93.3999995,32.0220002 93.508,31.974 L93.508,32.928 C93.3759993,32.9520001 93.2590005,32.9699999 93.157,32.982 C93.0549995,32.9940001 92.9260008,33 92.77,33 C92.4819986,33 92.2510009,32.9610004 92.077,32.883 C91.9029991,32.8049996 91.7680005,32.6940007 91.672,32.55 C91.5759995,32.4059993 91.5130002,32.235001 91.483,32.037 C91.4529998,31.838999 91.438,31.6200012 91.438,31.38 L91.402,31.38 C91.197999,31.6800015 90.9910011,31.9469988 90.781,32.181 C90.570999,32.4150012 90.3370013,32.6099992 90.079,32.766 C89.8209987,32.9220008 89.5270017,33.0419996 89.197,33.126 C88.8669984,33.2100004 88.4740023,33.252 88.018,33.252 C87.5859978,33.252 87.1810019,33.2010005 86.803,33.099 C86.4249981,32.9969995 86.0950014,32.8350011 85.813,32.613 C85.5309986,32.3909989 85.3090008,32.1090017 85.147,31.767 C84.9849992,31.4249983 84.904,31.0200023 84.904,30.552 C84.904,29.9039968 85.0479986,29.3970018 85.336,29.031 C85.6240014,28.6649982 86.0049976,28.386001 86.479,28.194 C86.9530024,28.001999 87.486997,27.8670004 88.081,27.789 C88.675003,27.7109996 89.2779969,27.6360004 89.89,27.564 C90.1300012,27.5399999 90.3399991,27.5100002 90.52,27.474 C90.7000009,27.4379998 90.8499994,27.3750004 90.97,27.285 C91.0900006,27.1949995 91.1829997,27.0720008 91.249,26.916 C91.3150003,26.7599992 91.348,26.5560013 91.348,26.304 C91.348,25.9199981 91.2850006,25.6050012 91.159,25.359 C91.0329994,25.1129988 90.8590011,24.9180007 90.637,24.774 C90.4149989,24.6299993 90.1570015,24.5310003 89.863,24.477 C89.5689985,24.4229997 89.2540017,24.396 88.918,24.396 C88.1979964,24.396 87.6100023,24.5669983 87.154,24.909 C86.6979977,25.2510017 86.4580001,25.7999962 86.434,26.556 L85.3,26.556 Z M91.348,27.924 L91.312,27.924 C91.2399996,28.0560007 91.102001,28.1519997 90.898,28.212 C90.693999,28.2720003 90.5140008,28.3139999 90.358,28.338 C89.8779976,28.4220004 89.3830026,28.4969997 88.873,28.563 C88.3629975,28.6290003 87.8980021,28.7279993 87.478,28.86 C87.0579979,28.9920007 86.7130014,29.1809988 86.443,29.427 C86.1729987,29.6730012 86.038,30.0239977 86.038,30.48 C86.038,30.7680014 86.0949994,31.0229989 86.209,31.245 C86.3230006,31.4670011 86.475999,31.6589992 86.668,31.821 C86.860001,31.9830008 87.0819987,32.1059996 87.334,32.19 C87.5860013,32.2740004 87.8439987,32.316 88.108,32.316 C88.5400022,32.316 88.953998,32.2500007 89.35,32.118 C89.746002,31.9859993 90.0909985,31.7940013 90.385,31.542 C90.6790015,31.2899987 90.9129991,30.9840018 91.087,30.624 C91.2610009,30.2639982 91.348,29.8560023 91.348,29.4 L91.348,27.924 Z M94.75,23.712 L94.75,33 L95.884,33 L95.884,28.05 C95.884,27.5579975 95.9679992,27.1050021 96.136,26.691 C96.3040008,26.2769979 96.5409985,25.9200015 96.847,25.62 C97.1530015,25.3199985 97.5159979,25.0890008 97.936,24.927 C98.3560021,24.7649992 98.8239974,24.6959999 99.34,24.72 L99.34,23.586 C98.4999958,23.5499998 97.777003,23.735998 97.171,24.144 C96.564997,24.552002 96.1180014,25.1339962 95.83,25.89 L95.794,25.89 L95.794,23.712 L94.75,23.712 Z M108.268,32.244 C108.268,32.9280034 108.193001,33.5459972 108.043,34.098 C107.892999,34.6500028 107.656002,35.1179981 107.332,35.502 C107.007998,35.8860019 106.585003,36.179999 106.063,36.384 C105.540997,36.588001 104.902004,36.69 104.146,36.69 C103.677998,36.69 103.222002,36.6360005 102.778,36.528 C102.333998,36.4199995 101.935002,36.2520011 101.581,36.024 C101.226998,35.7959989 100.933001,35.5050018 100.699,35.151 C100.464999,34.7969982 100.33,34.3740025 100.294,33.882 L101.428,33.882 C101.488,34.2300017 101.604999,34.5209988 101.779,34.755 C101.953001,34.9890012 102.162999,35.1779993 102.409,35.322 C102.655001,35.4660007 102.927999,35.5709997 103.228,35.637 C103.528002,35.7030003 103.833998,35.736 104.146,35.736 C105.202005,35.736 105.963998,35.436003 106.432,34.836 C106.900002,34.235997 107.134,33.3720056 107.134,32.244 L107.134,30.984 L107.098,30.984 C106.833999,31.5600029 106.447003,32.0219983 105.937,32.37 C105.426997,32.7180017 104.830003,32.892 104.146,32.892 C103.401996,32.892 102.766003,32.7690012 102.238,32.523 C101.709997,32.2769988 101.275002,31.9380022 100.933,31.506 C100.590998,31.0739978 100.342001,30.5670029 100.186,29.985 C100.029999,29.4029971 99.952,28.7820033 99.952,28.122 C99.952,27.4859968 100.044999,26.8830028 100.231,26.313 C100.417001,25.7429971 100.686998,25.2450021 101.041,24.819 C101.395002,24.3929979 101.832997,24.0570012 102.355,23.811 C102.877003,23.5649988 103.473997,23.442 104.146,23.442 C104.494002,23.442 104.820998,23.4899995 105.127,23.586 C105.433002,23.6820005 105.711999,23.8169991 105.964,23.991 C106.216001,24.1650009 106.440999,24.3659989 106.639,24.594 C106.837001,24.8220011 106.989999,25.0619987 107.098,25.314 L107.134,25.314 L107.134,23.712 L108.268,23.712 L108.268,32.244 Z M104.146,31.938 C104.638002,31.938 105.069998,31.8330011 105.442,31.623 C105.814002,31.412999 106.125999,31.1370017 106.378,30.795 C106.630001,30.4529983 106.818999,30.0600022 106.945,29.616 C107.071001,29.1719978 107.134,28.7160023 107.134,28.248 C107.134,27.7919977 107.080001,27.3360023 106.972,26.88 C106.863999,26.4239977 106.690001,26.0100019 106.45,25.638 C106.209999,25.2659981 105.901002,24.9660011 105.523,24.738 C105.144998,24.5099989 104.686003,24.396 104.146,24.396 C103.605997,24.396 103.144002,24.5069989 102.76,24.729 C102.375998,24.9510011 102.058001,25.2419982 101.806,25.602 C101.553999,25.9620018 101.371001,26.3729977 101.257,26.835 C101.142999,27.2970023 101.086,27.7679976 101.086,28.248 C101.086,28.7160023 101.145999,29.1719978 101.266,29.616 C101.386001,30.0600022 101.571999,30.4529983 101.824,30.795 C102.076001,31.1370017 102.393998,31.412999 102.778,31.623 C103.162002,31.8330011 103.617997,31.938 104.146,31.938 Z M117.106,27.708 C117.094,27.2759978 117.019001,26.862002 116.881,26.466 C116.742999,26.069998 116.548001,25.7190015 116.296,25.413 C116.043999,25.1069985 115.738002,24.8610009 115.378,24.675 C115.017998,24.4889991 114.610002,24.396 114.154,24.396 C113.685998,24.396 113.272002,24.4889991 112.912,24.675 C112.551998,24.8610009 112.246001,25.1069985 111.994,25.413 C111.741999,25.7190015 111.541001,26.072998 111.391,26.475 C111.240999,26.877002 111.142,27.2879979 111.094,27.708 L117.106,27.708 Z M111.094,28.662 C111.094,29.070002 111.150999,29.4929978 111.265,29.931 C111.379001,30.3690022 111.561999,30.7619983 111.814,31.11 C112.066001,31.4580017 112.383998,31.7459989 112.768,31.974 C113.152002,32.2020011 113.613997,32.316 114.154,32.316 C114.982004,32.316 115.629998,32.1000022 116.098,31.668 C116.566002,31.2359978 116.889999,30.6600036 117.07,29.94 L118.204,29.94 C117.963999,30.9960053 117.523003,31.8119971 116.881,32.388 C116.238997,32.9640029 115.330006,33.252 114.154,33.252 C113.421996,33.252 112.789003,33.1230013 112.255,32.865 C111.720997,32.6069987 111.286002,32.2530023 110.95,31.803 C110.613998,31.3529978 110.365001,30.831003 110.203,30.237 C110.040999,29.642997 109.96,29.0160033 109.96,28.356 C109.96,27.7439969 110.040999,27.1440029 110.203,26.556 C110.365001,25.9679971 110.613998,25.4430023 110.95,24.981 C111.286002,24.5189977 111.720997,24.1470014 112.255,23.865 C112.789003,23.5829986 113.421996,23.442 114.154,23.442 C114.898004,23.442 115.533997,23.5919985 116.062,23.892 C116.590003,24.1920015 117.018998,24.5849976 117.349,25.071 C117.679002,25.5570024 117.915999,26.1149969 118.06,26.745 C118.204001,27.3750031 118.264,28.0139968 118.24,28.662 L111.094,28.662 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="137" height="45" viewBox="0 0 137 45" id="svg">
<defs>
<rect id="-default-(left-capsule)-a" width="137" height="45"/>
</defs>
<g fill="none" fill-rule="evenodd">
<mask id="-default-(left-capsule)-b" fill="#fff">
<use xlink:href="#-default-(left-capsule)-a"/>
</mask>
<rect width="273" height="45" fill="#2199E8" mask="url(#-default-(left-capsule)-b)" rx="22.5" transform="matrix(-1 0 0 1 273 0)"/>
<path fill="#FFF" d="M31.652,18.004 L31.652,28 L38.204,28 L38.204,27.188 L32.604,27.188 L32.604,18.004 L31.652,18.004 Z M44.196,23.884 C44.1866666,23.5479983 44.1283339,23.2260015 44.021,22.918 C43.9136661,22.6099985 43.762001,22.3370012 43.566,22.099 C43.369999,21.8609988 43.1320014,21.6696674 42.852,21.525 C42.5719986,21.3803326 42.2546684,21.308 41.9,21.308 C41.5359982,21.308 41.2140014,21.3803326 40.934,21.525 C40.6539986,21.6696674 40.416001,21.8609988 40.22,22.099 C40.023999,22.3370012 39.8676673,22.6123318 39.751,22.925 C39.6343328,23.2376682 39.5573335,23.5573317 39.52,23.884 L44.196,23.884 Z M39.52,24.626 C39.52,24.9433349 39.5643329,25.2723316 39.653,25.613 C39.7416671,25.9536684 39.883999,26.259332 40.08,26.53 C40.276001,26.800668 40.5233318,27.0246658 40.822,27.202 C41.1206682,27.3793342 41.4799979,27.468 41.9,27.468 C42.5440032,27.468 43.0479982,27.3000017 43.412,26.964 C43.7760018,26.6279983 44.0279993,26.1800028 44.168,25.62 L45.05,25.62 C44.8633324,26.4413374 44.5203358,27.0759978 44.021,27.524 C43.5216642,27.9720022 42.8146712,28.196 41.9,28.196 C41.3306638,28.196 40.8383354,28.0956677 40.423,27.895 C40.0076646,27.6943323 39.6693346,27.4190017 39.408,27.069 C39.1466654,26.7189982 38.9530006,26.3130023 38.827,25.851 C38.7009994,25.3889977 38.638,24.9013359 38.638,24.388 C38.638,23.9119976 38.7009994,23.4453356 38.827,22.988 C38.9530006,22.5306644 39.1466654,22.1223351 39.408,21.763 C39.6693346,21.4036649 40.0076646,21.1143344 40.423,20.895 C40.8383354,20.6756656 41.3306638,20.566 41.9,20.566 C42.4786696,20.566 42.9733313,20.6826655 43.384,20.916 C43.7946687,21.1493345 44.1283321,21.4549981 44.385,21.833 C44.641668,22.2110019 44.8259994,22.6449975 44.938,23.135 C45.0500006,23.6250025 45.0966668,24.1219975 45.078,24.626 L39.52,24.626 Z M49.054,21.518 L47.626,21.518 L47.626,28 L46.744,28 L46.744,21.518 L45.512,21.518 L45.512,20.776 L46.744,20.776 L46.744,20.118 C46.744,19.8099985 46.7673331,19.5253346 46.814,19.264 C46.8606669,19.0026654 46.9493327,18.7786676 47.08,18.592 C47.2106673,18.4053324 47.3903322,18.2606672 47.619,18.158 C47.8476678,18.0553328 48.1393316,18.004 48.494,18.004 C48.6246673,18.004 48.7459994,18.0086666 48.858,18.018 C48.9700006,18.0273334 49.0959993,18.0413332 49.236,18.06 L49.236,18.816 C49.1146661,18.7973332 49.0026672,18.7810001 48.9,18.767 C48.7973328,18.7529999 48.6946672,18.746 48.592,18.746 C48.3493321,18.746 48.1626673,18.783333 48.032,18.858 C47.9013327,18.932667 47.805667,19.0329994 47.745,19.159 C47.684333,19.2850006 47.6493334,19.4319992 47.64,19.6 C47.6306666,19.7680008 47.626,19.949999 47.626,20.146 L47.626,20.776 L49.054,20.776 L49.054,21.518 Z M51.294,20.776 L52.764,20.776 L52.764,21.518 L51.294,21.518 L51.294,26.39 C51.294,26.6793348 51.3336663,26.9056658 51.413,27.069 C51.4923337,27.2323341 51.6906651,27.3233332 52.008,27.342 C52.2600013,27.342 52.5119987,27.3280001 52.764,27.3 L52.764,28.042 C52.6333327,28.042 52.5026673,28.0466666 52.372,28.056 C52.2413327,28.0653334 52.1106673,28.07 51.98,28.07 C51.3919971,28.07 50.9813345,27.9556678 50.748,27.727 C50.5146655,27.4983322 50.4026666,27.0760031 50.412,26.46 L50.412,21.518 L49.152,21.518 L49.152,20.776 L50.412,20.776 L50.412,18.606 L51.294,18.606 L51.294,20.776 Z M65.406,21.028 L66.358,21.028 C66.2926663,20.5053307 66.1363346,20.0433353 65.889,19.642 C65.6416654,19.2406647 65.3336685,18.9023347 64.965,18.627 C64.5963315,18.3516653 64.1856689,18.1440007 63.733,18.004 C63.2803311,17.8639993 62.8160024,17.794 62.34,17.794 C61.5559961,17.794 60.8676696,17.9363319 60.275,18.221 C59.6823304,18.5056681 59.190002,18.8883309 58.798,19.369 C58.405998,19.8496691 58.112001,20.4026635 57.916,21.028 C57.719999,21.6533365 57.622,22.3113299 57.622,23.002 C57.622,23.6926701 57.719999,24.3506635 57.916,24.976 C58.112001,25.6013365 58.405998,26.1519976 58.798,26.628 C59.190002,27.1040024 59.6823304,27.4843319 60.275,27.769 C60.8676696,28.0536681 61.5559961,28.196 62.34,28.196 C62.9280029,28.196 63.4623309,28.1026676 63.943,27.916 C64.4236691,27.7293324 64.8413316,27.4633351 65.196,27.118 C65.5506684,26.7726649 65.8399989,26.3526691 66.064,25.858 C66.2880011,25.3633309 66.4326663,24.8080031 66.498,24.192 L65.546,24.192 C65.4993331,24.6400022 65.3920008,25.0576647 65.224,25.445 C65.0559992,25.8323353 64.836668,26.1706652 64.566,26.46 C64.295332,26.7493348 63.9733352,26.9779992 63.6,27.146 C63.2266648,27.3140008 62.806669,27.398 62.34,27.398 C61.67733,27.398 61.1080024,27.2720013 60.632,27.02 C60.1559976,26.7679987 59.7663349,26.4343354 59.463,26.019 C59.1596652,25.6036646 58.9356674,25.132336 58.791,24.605 C58.6463326,24.077664 58.574,23.543336 58.574,23.002 C58.574,22.4513306 58.6463326,21.9146693 58.791,21.392 C58.9356674,20.8693307 59.1596652,20.4003354 59.463,19.985 C59.7663349,19.5696646 60.1559976,19.2360013 60.632,18.984 C61.1080024,18.7319987 61.67733,18.606 62.34,18.606 C62.7040018,18.606 63.051665,18.6596661 63.383,18.767 C63.714335,18.8743339 64.0176653,19.0306656 64.293,19.236 C64.5683347,19.4413344 64.8016657,19.6956651 64.993,19.999 C65.1843343,20.3023349 65.3219996,20.6453314 65.406,21.028 Z M67.702,22.988 C67.7300001,22.5679979 67.8186659,22.2040015 67.968,21.896 C68.1173341,21.5879985 68.3203321,21.336001 68.577,21.14 C68.833668,20.943999 69.1346649,20.7993338 69.48,20.706 C69.8253351,20.6126662 70.2079979,20.566 70.628,20.566 C70.9453349,20.566 71.2626651,20.596333 71.58,20.657 C71.8973349,20.717667 72.1819987,20.8319992 72.434,21 C72.6860013,21.1680008 72.8913325,21.4036651 73.05,21.707 C73.2086675,22.0103348 73.288,22.4046642 73.288,22.89 L73.288,26.726 C73.288,27.0806684 73.4606649,27.258 73.806,27.258 C73.9086672,27.258 74.0019996,27.2393335 74.086,27.202 L74.086,27.944 C73.9833328,27.9626668 73.8923337,27.9766666 73.813,27.986 C73.7336663,27.9953334 73.6333339,28 73.512,28 C73.2879989,28 73.108334,27.969667 72.973,27.909 C72.837666,27.848333 72.732667,27.7620006 72.658,27.65 C72.583333,27.5379994 72.5343335,27.4050008 72.511,27.251 C72.4876666,27.0969992 72.476,26.9266676 72.476,26.74 L72.448,26.74 C72.2893325,26.9733345 72.1283342,27.1809991 71.965,27.363 C71.8016659,27.5450009 71.6196677,27.6966661 71.419,27.818 C71.2183323,27.9393339 70.989668,28.0326663 70.733,28.098 C70.476332,28.1633337 70.1706684,28.196 69.816,28.196 C69.4799983,28.196 69.1650015,28.1563337 68.871,28.077 C68.5769985,27.9976663 68.3203344,27.8716675 68.101,27.699 C67.8816656,27.5263325 67.7090006,27.3070013 67.583,27.041 C67.4569994,26.7749987 67.394,26.4600018 67.394,26.096 C67.394,25.5919975 67.5059989,25.1976681 67.73,24.913 C67.9540011,24.6283319 68.2503315,24.4113341 68.619,24.262 C68.9876685,24.1126659 69.4029977,24.007667 69.865,23.947 C70.3270023,23.886333 70.7959976,23.8280003 71.272,23.772 C71.4586676,23.7533332 71.6219993,23.7300001 71.762,23.702 C71.9020007,23.6739999 72.0186662,23.6250004 72.112,23.555 C72.2053338,23.4849996 72.2776664,23.3893339 72.329,23.268 C72.3803336,23.1466661 72.406,22.988001 72.406,22.792 C72.406,22.4933318 72.3570005,22.2483343 72.259,22.057 C72.1609995,21.8656657 72.0256675,21.7140006 71.853,21.602 C71.6803325,21.4899994 71.4796678,21.4130002 71.251,21.371 C71.0223322,21.3289998 70.7773346,21.308 70.516,21.308 C69.9559972,21.308 69.4986684,21.4409987 69.144,21.707 C68.7893316,21.9730013 68.6026668,22.3999971 68.584,22.988 L67.702,22.988 Z M72.406,24.052 L72.378,24.052 C72.3219997,24.1546672 72.2146675,24.2293331 72.056,24.276 C71.8973325,24.3226669 71.7573339,24.3553332 71.636,24.374 C71.2626648,24.4393337 70.8776687,24.4976664 70.481,24.549 C70.0843314,24.6003336 69.7226683,24.6773328 69.396,24.78 C69.0693317,24.8826672 68.8010011,25.0296657 68.591,25.221 C68.380999,25.4123343 68.276,25.6853316 68.276,26.04 C68.276,26.2640011 68.3203329,26.4623325 68.409,26.635 C68.4976671,26.8076675 68.6166659,26.9569994 68.766,27.083 C68.9153341,27.2090006 69.087999,27.3046663 69.284,27.37 C69.480001,27.4353337 69.6806656,27.468 69.886,27.468 C70.2220017,27.468 70.5439985,27.4166672 70.852,27.314 C71.1600015,27.2113328 71.4283322,27.062001 71.657,26.866 C71.8856678,26.669999 72.067666,26.4320014 72.203,26.152 C72.338334,25.8719986 72.406,25.5546684 72.406,25.2 L72.406,24.052 Z M75.052,20.776 L75.864,20.776 L75.864,22.148 L75.892,22.148 C76.0973344,21.6439975 76.4309977,21.2543347 76.893,20.979 C77.3550023,20.7036653 77.8799971,20.566 78.468,20.566 C79.0186694,20.566 79.496998,20.6686656 79.903,20.874 C80.309002,21.0793344 80.647332,21.3569983 80.918,21.707 C81.188668,22.0570017 81.3893327,22.4629977 81.52,22.925 C81.6506673,23.3870023 81.716,23.8746641 81.716,24.388 C81.716,24.9013359 81.6506673,25.3889977 81.52,25.851 C81.3893327,26.3130023 81.188668,26.7189982 80.918,27.069 C80.647332,27.4190017 80.309002,27.6943323 79.903,27.895 C79.496998,28.0956677 79.0186694,28.196 78.468,28.196 C78.2066654,28.196 77.9453346,28.1633337 77.684,28.098 C77.4226654,28.0326663 77.1800011,27.9346673 76.956,27.804 C76.7319989,27.6733327 76.5336675,27.510001 76.361,27.314 C76.1883325,27.117999 76.0553338,26.8893346 75.962,26.628 L75.934,26.628 L75.934,30.66 L75.052,30.66 L75.052,20.776 Z M80.834,24.388 C80.834,24.0146648 80.7896671,23.6436685 80.701,23.275 C80.6123329,22.9063315 80.4723343,22.5773348 80.281,22.288 C80.0896657,21.9986652 79.8446682,21.7630009 79.546,21.581 C79.2473318,21.3989991 78.8880021,21.308 78.468,21.308 C77.9826642,21.308 77.5766683,21.3919992 77.25,21.56 C76.9233317,21.7280008 76.662001,21.9519986 76.466,22.232 C76.269999,22.5120014 76.1323337,22.8386648 76.053,23.212 C75.9736663,23.5853352 75.934,23.9773313 75.934,24.388 C75.934,24.7613352 75.9783329,25.1323315 76.067,25.501 C76.1556671,25.8696685 76.3003323,26.1986652 76.501,26.488 C76.7016677,26.7773348 76.9629984,27.0129991 77.285,27.195 C77.6070016,27.3770009 78.001331,27.468 78.468,27.468 C78.8880021,27.468 79.2473318,27.3770009 79.546,27.195 C79.8446682,27.0129991 80.0896657,26.7773348 80.281,26.488 C80.4723343,26.1986652 80.6123329,25.8696685 80.701,25.501 C80.7896671,25.1323315 80.834,24.7613352 80.834,24.388 Z M87.414,22.89 L88.296,22.89 C88.2773332,22.497998 88.1980007,22.1573348 88.058,21.868 C87.9179993,21.5786652 87.7290012,21.336001 87.491,21.14 C87.2529988,20.943999 86.9776682,20.7993338 86.665,20.706 C86.3523318,20.6126662 86.0140018,20.566 85.65,20.566 C85.3326651,20.566 85.0130016,20.603333 84.691,20.678 C84.3689984,20.752667 84.0773346,20.8693325 83.816,21.028 C83.5546654,21.1866675 83.3423342,21.3966654 83.179,21.658 C83.0156659,21.9193346 82.934,22.2319982 82.934,22.596 C82.934,22.9040015 82.9853328,23.162999 83.088,23.373 C83.1906672,23.5830011 83.3329991,23.7603326 83.515,23.905 C83.6970009,24.0496674 83.9093321,24.1709995 84.152,24.269 C84.3946679,24.3670005 84.6606652,24.453333 84.95,24.528 L86.084,24.78 C86.280001,24.8266669 86.4736657,24.8826663 86.665,24.948 C86.8563343,25.0133337 87.0266659,25.0949995 87.176,25.193 C87.3253341,25.2910005 87.4443329,25.4123326 87.533,25.557 C87.6216671,25.7016674 87.666,25.8813323 87.666,26.096 C87.666,26.3480013 87.6030006,26.5603325 87.477,26.733 C87.3509994,26.9056675 87.190001,27.0479994 86.994,27.16 C86.797999,27.2720006 86.5856678,27.3513331 86.357,27.398 C86.1283322,27.4446669 85.9066677,27.468 85.692,27.468 C85.1039971,27.468 84.6116687,27.3163349 84.215,27.013 C83.8183314,26.7096651 83.6013335,26.2593363 83.564,25.662 L82.682,25.662 C82.756667,26.5486711 83.057664,27.1926647 83.585,27.594 C84.112336,27.9953353 84.8006624,28.196 85.65,28.196 C85.9860017,28.196 86.3266649,28.158667 86.672,28.084 C87.0173351,28.009333 87.3276653,27.8856675 87.603,27.713 C87.8783347,27.5403325 88.1046658,27.3163347 88.282,27.041 C88.4593342,26.7656653 88.548,26.432002 88.548,26.04 C88.548,25.7226651 88.4873339,25.4473345 88.366,25.214 C88.2446661,24.9806655 88.0883343,24.7846675 87.897,24.626 C87.7056657,24.4673325 87.4863346,24.3390005 87.239,24.241 C86.9916654,24.1429995 86.7420013,24.0753335 86.49,24.038 L85.314,23.772 C85.1646659,23.7346665 85.0013342,23.685667 84.824,23.625 C84.6466658,23.564333 84.4833341,23.4873338 84.334,23.394 C84.1846659,23.3006662 84.0610005,23.186334 83.963,23.051 C83.8649995,22.915666 83.816,22.750001 83.816,22.554 C83.816,22.3206655 83.8673328,22.1246675 83.97,21.966 C84.0726672,21.8073325 84.2079992,21.6790005 84.376,21.581 C84.5440008,21.4829995 84.7283323,21.4130002 84.929,21.371 C85.1296677,21.3289998 85.327999,21.308 85.524,21.308 C85.7760013,21.308 86.0139989,21.338333 86.238,21.399 C86.4620011,21.459667 86.6603325,21.5553327 86.833,21.686 C87.0056675,21.8166673 87.1433328,21.9823323 87.246,22.183 C87.3486672,22.3836677 87.4046666,22.619332 87.414,22.89 Z M95.674,28 L95.674,20.776 L94.792,20.776 L94.792,24.57 C94.792,24.9340018 94.7500004,25.2909983 94.666,25.641 C94.5819996,25.9910018 94.4513342,26.301332 94.274,26.572 C94.0966658,26.842668 93.872668,27.0596659 93.602,27.223 C93.331332,27.3863341 93.0046686,27.468 92.622,27.468 C91.9219965,27.468 91.4296681,27.3000017 91.145,26.964 C90.8603319,26.6279983 90.7086668,26.1333366 90.69,25.48 L90.69,20.776 L89.808,20.776 L89.808,25.466 C89.808,25.8953355 89.8546662,26.2779983 89.948,26.614 C90.0413338,26.9500017 90.1883323,27.2346655 90.389,27.468 C90.5896677,27.7013345 90.8509984,27.8809994 91.173,28.007 C91.4950016,28.1330006 91.8846644,28.196 92.342,28.196 C92.883336,28.196 93.3756645,28.067668 93.819,27.811 C94.2623356,27.554332 94.6006655,27.1833358 94.834,26.698 L94.862,26.698 L94.862,28 L95.674,28 Z M97.354,18.004 L97.354,28 L98.236,28 L98.236,18.004 L97.354,18.004 Z M105.124,23.884 C105.114667,23.5479983 105.056334,23.2260015 104.949,22.918 C104.841666,22.6099985 104.690001,22.3370012 104.494,22.099 C104.297999,21.8609988 104.060001,21.6696674 103.78,21.525 C103.499999,21.3803326 103.182668,21.308 102.828,21.308 C102.463998,21.308 102.142001,21.3803326 101.862,21.525 C101.581999,21.6696674 101.344001,21.8609988 101.148,22.099 C100.951999,22.3370012 100.795667,22.6123318 100.679,22.925 C100.562333,23.2376682 100.485334,23.5573317 100.448,23.884 L105.124,23.884 Z M100.448,24.626 C100.448,24.9433349 100.492333,25.2723316 100.581,25.613 C100.669667,25.9536684 100.811999,26.259332 101.008,26.53 C101.204001,26.800668 101.451332,27.0246658 101.75,27.202 C102.048668,27.3793342 102.407998,27.468 102.828,27.468 C103.472003,27.468 103.975998,27.3000017 104.34,26.964 C104.704002,26.6279983 104.955999,26.1800028 105.096,25.62 L105.978,25.62 C105.791332,26.4413374 105.448336,27.0759978 104.949,27.524 C104.449664,27.9720022 103.742671,28.196 102.828,28.196 C102.258664,28.196 101.766335,28.0956677 101.351,27.895 C100.935665,27.6943323 100.597335,27.4190017 100.336,27.069 C100.074665,26.7189982 99.8810006,26.3130023 99.755,25.851 C99.6289994,25.3889977 99.566,24.9013359 99.566,24.388 C99.566,23.9119976 99.6289994,23.4453356 99.755,22.988 C99.8810006,22.5306644 100.074665,22.1223351 100.336,21.763 C100.597335,21.4036649 100.935665,21.1143344 101.351,20.895 C101.766335,20.6756656 102.258664,20.566 102.828,20.566 C103.40667,20.566 103.901331,20.6826655 104.312,20.916 C104.722669,21.1493345 105.056332,21.4549981 105.313,21.833 C105.569668,22.2110019 105.753999,22.6449975 105.866,23.135 C105.978001,23.6250025 106.024667,24.1219975 106.006,24.626 L100.448,24.626 Z" mask="url(#-default-(left-capsule)-b)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="45" height="45" fill="#777"/>
<path fill="#FFF" d="M12.3683446,9.60263939 L9.11687347,6.35151495 L12.3673045,3.10073722 C12.5020024,2.96603936 12.5020024,2.74778375 12.3673045,2.61308589 L10.0902692,0.335530545 C9.95557135,0.200832683 9.73714239,0.200832683 9.60244453,0.335530545 L6.35149344,3.58630828 L3.10106242,0.335530545 C2.97173861,0.206033373 2.74273491,0.206033373 2.61323774,0.335530545 L0.335682392,2.61273918 C0.271020485,2.67740108 0.234615657,2.76529274 0.234615657,2.85665152 C0.234615657,2.9480103 0.271020485,3.03590196 0.335682392,3.10056386 L3.58663348,6.35151495 L0.335162323,9.60281275 C0.270500416,9.66764801 0.234095588,9.75536631 0.234095588,9.84672509 C0.234095588,9.93825723 0.270500416,10.0261489 0.335162323,10.0906374 L2.61237096,12.3680194 C2.67703286,12.4326813 2.76509787,12.4690862 2.85680337,12.4690862 C2.94781544,12.4690862 3.03553373,12.4326813 3.10019564,12.3680194 L6.35149344,9.11672163 L9.6029646,12.3678461 C9.67040021,12.4351083 9.75829186,12.4689128 9.84687694,12.4689128 C9.93546202,12.4689128 10.023527,12.4351083 10.0909626,12.3678461 L12.368518,10.0904641 C12.5030425,9.95576622 12.5030425,9.73751061 12.3683446,9.60263939 L12.3683446,9.60263939 Z" transform="translate(16 16)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="173" height="45" viewBox="0 0 173 45" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="173" height="45" fill="#777"/>
<polygon fill="#FFF" points="139 21 151 21 145 27"/>
<path fill="#FFF" d="M18.699,18.004 L22.157,18.004 C23.6783409,18.0413335 24.8239961,18.4683293 25.594,19.285 C26.3640038,20.1016708 26.749,21.3406584 26.749,23.002 C26.749,24.6633416 26.3640038,25.9023293 25.594,26.719 C24.8239961,27.5356708 23.6783409,27.9626665 22.157,28 L18.699,28 L18.699,18.004 Z M19.651,27.188 L21.681,27.188 C22.3996703,27.188 23.0179974,27.1110008 23.536,26.957 C24.0540026,26.8029992 24.4809983,26.5580017 24.817,26.222 C25.1530017,25.8859983 25.4003325,25.4520027 25.559,24.92 C25.7176675,24.3879973 25.797,23.7486704 25.797,23.002 C25.797,22.2553296 25.7176675,21.6160027 25.559,21.084 C25.4003325,20.5519973 25.1530017,20.1180017 24.817,19.782 C24.4809983,19.4459983 24.0540026,19.2010008 23.536,19.047 C23.0179974,18.8929992 22.3996703,18.816 21.681,18.816 L19.651,18.816 L19.651,27.188 Z M28.121,20.776 L28.121,28 L29.003,28 L29.003,24.15 C29.003,23.7673314 29.0683327,23.4150016 29.199,23.093 C29.3296673,22.7709984 29.5139988,22.4933345 29.752,22.26 C29.9900012,22.0266655 30.2723317,21.8470006 30.599,21.721 C30.9256683,21.5949994 31.2896647,21.5413332 31.691,21.56 L31.691,20.678 C31.0376634,20.6499999 30.4753357,20.7946651 30.004,21.112 C29.5326643,21.4293349 29.1850011,21.8819971 28.961,22.47 L28.933,22.47 L28.933,20.776 L28.121,20.776 Z M35.331,21.308 C34.9109979,21.308 34.5423349,21.3966658 34.225,21.574 C33.9076651,21.7513342 33.644001,21.9846652 33.434,22.274 C33.2239989,22.5633348 33.0653339,22.8923315 32.958,23.261 C32.8506661,23.6296685 32.797,24.0053314 32.797,24.388 C32.797,24.7706686 32.8506661,25.1463315 32.958,25.515 C33.0653339,25.8836685 33.2239989,26.2126652 33.434,26.502 C33.644001,26.7913348 33.9076651,27.0246658 34.225,27.202 C34.5423349,27.3793342 34.9109979,27.468 35.331,27.468 C35.7510021,27.468 36.1196651,27.3793342 36.437,27.202 C36.7543349,27.0246658 37.0179989,26.7913348 37.228,26.502 C37.438001,26.2126652 37.5966661,25.8836685 37.704,25.515 C37.8113339,25.1463315 37.865,24.7706686 37.865,24.388 C37.865,24.0053314 37.8113339,23.6296685 37.704,23.261 C37.5966661,22.8923315 37.438001,22.5633348 37.228,22.274 C37.0179989,21.9846652 36.7543349,21.7513342 36.437,21.574 C36.1196651,21.3966658 35.7510021,21.308 35.331,21.308 Z M35.331,20.566 C35.8816694,20.566 36.3693312,20.6686656 36.794,20.874 C37.2186688,21.0793344 37.5756652,21.3546649 37.865,21.7 C38.1543348,22.0453351 38.3736659,22.4489977 38.523,22.911 C38.6723341,23.3730023 38.747,23.8653307 38.747,24.388 C38.747,24.9106693 38.6723341,25.4029977 38.523,25.865 C38.3736659,26.3270023 38.1543348,26.7306649 37.865,27.076 C37.5756652,27.4213351 37.2186688,27.6943323 36.794,27.895 C36.3693312,28.0956677 35.8816694,28.196 35.331,28.196 C34.7803306,28.196 34.2926688,28.0956677 33.868,27.895 C33.4433312,27.6943323 33.0863348,27.4213351 32.797,27.076 C32.5076652,26.7306649 32.2883341,26.3270023 32.139,25.865 C31.9896659,25.4029977 31.915,24.9106693 31.915,24.388 C31.915,23.8653307 31.9896659,23.3730023 32.139,22.911 C32.2883341,22.4489977 32.5076652,22.0453351 32.797,21.7 C33.0863348,21.3546649 33.4433312,21.0793344 33.868,20.874 C34.2926688,20.6686656 34.7803306,20.566 35.331,20.566 Z M40.063,20.776 L40.875,20.776 L40.875,22.148 L40.903,22.148 C41.1083344,21.6439975 41.4419977,21.2543347 41.904,20.979 C42.3660023,20.7036653 42.8909971,20.566 43.479,20.566 C44.0296694,20.566 44.507998,20.6686656 44.914,20.874 C45.320002,21.0793344 45.658332,21.3569983 45.929,21.707 C46.199668,22.0570017 46.4003327,22.4629977 46.531,22.925 C46.6616673,23.3870023 46.727,23.8746641 46.727,24.388 C46.727,24.9013359 46.6616673,25.3889977 46.531,25.851 C46.4003327,26.3130023 46.199668,26.7189982 45.929,27.069 C45.658332,27.4190017 45.320002,27.6943323 44.914,27.895 C44.507998,28.0956677 44.0296694,28.196 43.479,28.196 C43.2176654,28.196 42.9563346,28.1633337 42.695,28.098 C42.4336654,28.0326663 42.1910011,27.9346673 41.967,27.804 C41.7429989,27.6733327 41.5446675,27.510001 41.372,27.314 C41.1993325,27.117999 41.0663338,26.8893346 40.973,26.628 L40.945,26.628 L40.945,30.66 L40.063,30.66 L40.063,20.776 Z M45.845,24.388 C45.845,24.0146648 45.8006671,23.6436685 45.712,23.275 C45.6233329,22.9063315 45.4833343,22.5773348 45.292,22.288 C45.1006657,21.9986652 44.8556682,21.7630009 44.557,21.581 C44.2583318,21.3989991 43.8990021,21.308 43.479,21.308 C42.9936642,21.308 42.5876683,21.3919992 42.261,21.56 C41.9343317,21.7280008 41.673001,21.9519986 41.477,22.232 C41.280999,22.5120014 41.1433337,22.8386648 41.064,23.212 C40.9846663,23.5853352 40.945,23.9773313 40.945,24.388 C40.945,24.7613352 40.9893329,25.1323315 41.078,25.501 C41.1666671,25.8696685 41.3113323,26.1986652 41.512,26.488 C41.7126677,26.7773348 41.9739984,27.0129991 42.296,27.195 C42.6180016,27.3770009 43.012331,27.468 43.479,27.468 C43.8990021,27.468 44.2583318,27.3770009 44.557,27.195 C44.8556682,27.0129991 45.1006657,26.7773348 45.292,26.488 C45.4833343,26.1986652 45.6233329,25.8696685 45.712,25.501 C45.8006671,25.1323315 45.845,24.7613352 45.845,24.388 Z M54.455,28 L53.643,28 L53.643,26.628 L53.615,26.628 C53.5216662,26.8613345 53.3840009,27.075999 53.202,27.272 C53.0199991,27.468001 52.8123345,27.633666 52.579,27.769 C52.3456655,27.904334 52.0960013,28.009333 51.83,28.084 C51.5639987,28.158667 51.3003346,28.196 51.039,28.196 C50.4883306,28.196 50.010002,28.0956677 49.604,27.895 C49.197998,27.6943323 48.859668,27.4190017 48.589,27.069 C48.318332,26.7189982 48.1176673,26.3130023 47.987,25.851 C47.8563327,25.3889977 47.791,24.9013359 47.791,24.388 C47.791,23.8746641 47.8563327,23.3870023 47.987,22.925 C48.1176673,22.4629977 48.318332,22.0570017 48.589,21.707 C48.859668,21.3569983 49.197998,21.0793344 49.604,20.874 C50.010002,20.6686656 50.4883306,20.566 51.039,20.566 C51.309668,20.566 51.573332,20.5986663 51.83,20.664 C52.0866679,20.7293337 52.3269989,20.829666 52.551,20.965 C52.7750011,21.100334 52.9733325,21.265999 53.146,21.462 C53.3186675,21.658001 53.4516662,21.8866654 53.545,22.148 L53.573,22.148 L53.573,18.004 L54.455,18.004 L54.455,28 Z M48.673,24.388 C48.673,24.7613352 48.7173329,25.1323315 48.806,25.501 C48.8946671,25.8696685 49.0346657,26.1986652 49.226,26.488 C49.4173343,26.7773348 49.6623318,27.0129991 49.961,27.195 C50.2596682,27.3770009 50.6189979,27.468 51.039,27.468 C51.505669,27.468 51.8999984,27.3770009 52.222,27.195 C52.5440016,27.0129991 52.8053323,26.7773348 53.006,26.488 C53.2066677,26.1986652 53.3513329,25.8696685 53.44,25.501 C53.5286671,25.1323315 53.573,24.7613352 53.573,24.388 C53.573,24.0146648 53.5286671,23.6436685 53.44,23.275 C53.3513329,22.9063315 53.2066677,22.5773348 53.006,22.288 C52.8053323,21.9986652 52.5440016,21.7630009 52.222,21.581 C51.8999984,21.3989991 51.505669,21.308 51.039,21.308 C50.6189979,21.308 50.2596682,21.3989991 49.961,21.581 C49.6623318,21.7630009 49.4173343,21.9986652 49.226,22.288 C49.0346657,22.5773348 48.8946671,22.9063315 48.806,23.275 C48.7173329,23.6436685 48.673,24.0146648 48.673,24.388 Z M59.187,21.308 C58.7669979,21.308 58.3983349,21.3966658 58.081,21.574 C57.7636651,21.7513342 57.500001,21.9846652 57.29,22.274 C57.0799989,22.5633348 56.9213339,22.8923315 56.814,23.261 C56.7066661,23.6296685 56.653,24.0053314 56.653,24.388 C56.653,24.7706686 56.7066661,25.1463315 56.814,25.515 C56.9213339,25.8836685 57.0799989,26.2126652 57.29,26.502 C57.500001,26.7913348 57.7636651,27.0246658 58.081,27.202 C58.3983349,27.3793342 58.7669979,27.468 59.187,27.468 C59.6070021,27.468 59.9756651,27.3793342 60.293,27.202 C60.6103349,27.0246658 60.8739989,26.7913348 61.084,26.502 C61.294001,26.2126652 61.4526661,25.8836685 61.56,25.515 C61.6673339,25.1463315 61.721,24.7706686 61.721,24.388 C61.721,24.0053314 61.6673339,23.6296685 61.56,23.261 C61.4526661,22.8923315 61.294001,22.5633348 61.084,22.274 C60.8739989,21.9846652 60.6103349,21.7513342 60.293,21.574 C59.9756651,21.3966658 59.6070021,21.308 59.187,21.308 Z M59.187,20.566 C59.7376694,20.566 60.2253312,20.6686656 60.65,20.874 C61.0746688,21.0793344 61.4316652,21.3546649 61.721,21.7 C62.0103348,22.0453351 62.2296659,22.4489977 62.379,22.911 C62.5283341,23.3730023 62.603,23.8653307 62.603,24.388 C62.603,24.9106693 62.5283341,25.4029977 62.379,25.865 C62.2296659,26.3270023 62.0103348,26.7306649 61.721,27.076 C61.4316652,27.4213351 61.0746688,27.6943323 60.65,27.895 C60.2253312,28.0956677 59.7376694,28.196 59.187,28.196 C58.6363306,28.196 58.1486688,28.0956677 57.724,27.895 C57.2993312,27.6943323 56.9423348,27.4213351 56.653,27.076 C56.3636652,26.7306649 56.1443341,26.3270023 55.995,25.865 C55.8456659,25.4029977 55.771,24.9106693 55.771,24.388 C55.771,23.8653307 55.8456659,23.3730023 55.995,22.911 C56.1443341,22.4489977 56.3636652,22.0453351 56.653,21.7 C56.9423348,21.3546649 57.2993312,21.0793344 57.724,20.874 C58.1486688,20.6686656 58.6363306,20.566 59.187,20.566 Z M63.191,20.776 L65.515,28 L66.481,28 L68.245,21.924 L68.273,21.924 L70.051,28 L71.017,28 L73.341,20.776 L72.403,20.776 L70.555,26.964 L70.527,26.964 L68.763,20.776 L67.769,20.776 L66.005,26.964 L65.977,26.964 L64.129,20.776 L63.191,20.776 Z M74.279,20.776 L74.279,28 L75.161,28 L75.161,23.786 C75.1703334,23.4313316 75.2286661,23.1023348 75.336,22.799 C75.4433339,22.4956652 75.5926657,22.2343344 75.784,22.015 C75.9753343,21.7956656 76.2086653,21.6230006 76.484,21.497 C76.7593347,21.3709994 77.0743316,21.308 77.429,21.308 C77.7836684,21.308 78.0799988,21.3639994 78.318,21.476 C78.5560012,21.5880006 78.7449993,21.741999 78.885,21.938 C79.0250007,22.134001 79.1229997,22.3649987 79.179,22.631 C79.2350003,22.8970013 79.263,23.1839985 79.263,23.492 L79.263,28 L80.145,28 L80.145,23.352 C80.145,22.9226645 80.1030004,22.5353351 80.019,22.19 C79.9349996,21.8446649 79.7903344,21.5530012 79.585,21.315 C79.3796656,21.0769988 79.1066684,20.8926673 78.766,20.762 C78.4253316,20.6313327 78.0030025,20.566 77.499,20.566 C76.9856641,20.566 76.5143355,20.6989987 76.085,20.965 C75.6556645,21.2310013 75.3570008,21.5833311 75.189,22.022 L75.161,22.022 L75.161,20.776 L74.279,20.776 Z M86.823,22.386 L90.099,22.386 C90.4816686,22.386 90.8129986,22.3416671 91.093,22.253 C91.3730014,22.1643329 91.6063324,22.0430008 91.793,21.889 C91.9796676,21.7349992 92.1196662,21.5553344 92.213,21.35 C92.3063338,21.1446656 92.353,20.9253345 92.353,20.692 C92.353,19.4413271 91.6016742,18.816 90.099,18.816 L86.823,18.816 L86.823,22.386 Z M85.871,18.004 L90.099,18.004 C90.5190021,18.004 90.9226647,18.0436663 91.31,18.123 C91.6973353,18.2023337 92.0379985,18.3376657 92.332,18.529 C92.6260015,18.7203343 92.8616658,18.9723318 93.039,19.285 C93.2163342,19.5976682 93.305,19.987331 93.305,20.454 C93.305,20.7153346 93.2630004,20.9696654 93.179,21.217 C93.0949996,21.4643346 92.9760008,21.6883323 92.822,21.889 C92.6679992,22.0896677 92.486001,22.2599993 92.276,22.4 C92.0659989,22.5400007 91.8303346,22.6379997 91.569,22.694 L91.569,22.722 C92.2130032,22.8060004 92.7263314,23.0696644 93.109,23.513 C93.4916686,23.9563355 93.683,24.5046634 93.683,25.158 C93.683,25.3166675 93.6690001,25.4963323 93.641,25.697 C93.6129999,25.8976677 93.5570004,26.1029989 93.473,26.313 C93.3889996,26.523001 93.2676675,26.7306656 93.109,26.936 C92.9503325,27.1413344 92.7380013,27.3209992 92.472,27.475 C92.2059987,27.6290008 91.8793353,27.7549995 91.492,27.853 C91.1046647,27.9510005 90.640336,28 90.099,28 L85.871,28 L85.871,18.004 Z M86.823,27.188 L90.099,27.188 C90.4536684,27.188 90.7896651,27.157667 91.107,27.097 C91.4243349,27.036333 91.7043321,26.9266675 91.947,26.768 C92.1896679,26.6093325 92.3809993,26.3970013 92.521,26.131 C92.6610007,25.8649987 92.731,25.5313353 92.731,25.13 C92.731,24.4859968 92.5046689,24.0030016 92.052,23.681 C91.5993311,23.3589984 90.9483376,23.198 90.099,23.198 L86.823,23.198 L86.823,27.188 Z M100.893,28 L100.893,20.776 L100.011,20.776 L100.011,24.57 C100.011,24.9340018 99.9690004,25.2909983 99.885,25.641 C99.8009996,25.9910018 99.6703342,26.301332 99.493,26.572 C99.3156658,26.842668 99.091668,27.0596659 98.821,27.223 C98.550332,27.3863341 98.2236686,27.468 97.841,27.468 C97.1409965,27.468 96.6486681,27.3000017 96.364,26.964 C96.0793319,26.6279983 95.9276668,26.1333366 95.909,25.48 L95.909,20.776 L95.027,20.776 L95.027,25.466 C95.027,25.8953355 95.0736662,26.2779983 95.167,26.614 C95.2603338,26.9500017 95.4073323,27.2346655 95.608,27.468 C95.8086677,27.7013345 96.0699984,27.8809994 96.392,28.007 C96.7140016,28.1330006 97.1036644,28.196 97.561,28.196 C98.102336,28.196 98.5946644,28.067668 99.038,27.811 C99.4813355,27.554332 99.8196655,27.1833358 100.053,26.698 L100.081,26.698 L100.081,28 L100.893,28 Z M103.959,20.776 L103.959,18.606 L103.077,18.606 L103.077,20.776 L101.817,20.776 L101.817,21.518 L103.077,21.518 L103.077,26.46 C103.067667,27.0760031 103.179665,27.4983322 103.413,27.727 C103.646334,27.9556678 104.056997,28.07 104.645,28.07 C104.775667,28.07 104.906333,28.0653334 105.037,28.056 C105.167667,28.0466666 105.298333,28.042 105.429,28.042 L105.429,27.3 C105.176999,27.3280001 104.925001,27.342 104.673,27.342 C104.355665,27.3233332 104.157334,27.2323341 104.078,27.069 C103.998666,26.9056658 103.959,26.6793348 103.959,26.39 L103.959,21.518 L105.429,21.518 L105.429,20.776 L103.959,20.776 Z M108.103,20.776 L108.103,18.606 L107.221,18.606 L107.221,20.776 L105.961,20.776 L105.961,21.518 L107.221,21.518 L107.221,26.46 C107.211667,27.0760031 107.323665,27.4983322 107.557,27.727 C107.790334,27.9556678 108.200997,28.07 108.789,28.07 C108.919667,28.07 109.050333,28.0653334 109.181,28.056 C109.311667,28.0466666 109.442333,28.042 109.573,28.042 L109.573,27.3 C109.320999,27.3280001 109.069001,27.342 108.817,27.342 C108.499665,27.3233332 108.301334,27.2323341 108.222,27.069 C108.142666,26.9056658 108.103,26.6793348 108.103,26.39 L108.103,21.518 L109.573,21.518 L109.573,20.776 L108.103,20.776 Z M113.899,21.308 C113.478998,21.308 113.110335,21.3966658 112.793,21.574 C112.475665,21.7513342 112.212001,21.9846652 112.002,22.274 C111.791999,22.5633348 111.633334,22.8923315 111.526,23.261 C111.418666,23.6296685 111.365,24.0053314 111.365,24.388 C111.365,24.7706686 111.418666,25.1463315 111.526,25.515 C111.633334,25.8836685 111.791999,26.2126652 112.002,26.502 C112.212001,26.7913348 112.475665,27.0246658 112.793,27.202 C113.110335,27.3793342 113.478998,27.468 113.899,27.468 C114.319002,27.468 114.687665,27.3793342 115.005,27.202 C115.322335,27.0246658 115.585999,26.7913348 115.796,26.502 C116.006001,26.2126652 116.164666,25.8836685 116.272,25.515 C116.379334,25.1463315 116.433,24.7706686 116.433,24.388 C116.433,24.0053314 116.379334,23.6296685 116.272,23.261 C116.164666,22.8923315 116.006001,22.5633348 115.796,22.274 C115.585999,21.9846652 115.322335,21.7513342 115.005,21.574 C114.687665,21.3966658 114.319002,21.308 113.899,21.308 Z M113.899,20.566 C114.449669,20.566 114.937331,20.6686656 115.362,20.874 C115.786669,21.0793344 116.143665,21.3546649 116.433,21.7 C116.722335,22.0453351 116.941666,22.4489977 117.091,22.911 C117.240334,23.3730023 117.315,23.8653307 117.315,24.388 C117.315,24.9106693 117.240334,25.4029977 117.091,25.865 C116.941666,26.3270023 116.722335,26.7306649 116.433,27.076 C116.143665,27.4213351 115.786669,27.6943323 115.362,27.895 C114.937331,28.0956677 114.449669,28.196 113.899,28.196 C113.348331,28.196 112.860669,28.0956677 112.436,27.895 C112.011331,27.6943323 111.654335,27.4213351 111.365,27.076 C111.075665,26.7306649 110.856334,26.3270023 110.707,25.865 C110.557666,25.4029977 110.483,24.9106693 110.483,24.388 C110.483,23.8653307 110.557666,23.3730023 110.707,22.911 C110.856334,22.4489977 111.075665,22.0453351 111.365,21.7 C111.654335,21.3546649 112.011331,21.0793344 112.436,20.874 C112.860669,20.6686656 113.348331,20.566 113.899,20.566 Z M118.617,20.776 L118.617,28 L119.499,28 L119.499,23.786 C119.508333,23.4313316 119.566666,23.1023348 119.674,22.799 C119.781334,22.4956652 119.930666,22.2343344 120.122,22.015 C120.313334,21.7956656 120.546665,21.6230006 120.822,21.497 C121.097335,21.3709994 121.412332,21.308 121.767,21.308 C122.121668,21.308 122.417999,21.3639994 122.656,21.476 C122.894001,21.5880006 123.082999,21.741999 123.223,21.938 C123.363001,22.134001 123.461,22.3649987 123.517,22.631 C123.573,22.8970013 123.601,23.1839985 123.601,23.492 L123.601,28 L124.483,28 L124.483,23.352 C124.483,22.9226645 124.441,22.5353351 124.357,22.19 C124.273,21.8446649 124.128334,21.5530012 123.923,21.315 C123.717666,21.0769988 123.444668,20.8926673 123.104,20.762 C122.763332,20.6313327 122.341003,20.566 121.837,20.566 C121.323664,20.566 120.852335,20.6989987 120.423,20.965 C119.993665,21.2310013 119.695001,21.5833311 119.527,22.022 L119.499,22.022 L119.499,20.776 L118.617,20.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="138" height="45" viewBox="0 0 138 45" id="svg" >
<g fill="none" fill-rule="evenodd">
<rect width="138" height="45" fill="#777"/>
<path fill="#FFF" d="M38.032,24.71 L37.08,24.71 C37.0519999,25.3260031 37.1336657,25.8533311 37.325,26.292 C37.5163343,26.7306689 37.7893316,27.0899986 38.144,27.37 C38.4986684,27.6500014 38.9279975,27.857666 39.432,27.993 C39.9360025,28.128334 40.4819971,28.196 41.07,28.196 C41.6580029,28.196 42.1619979,28.1423339 42.582,28.035 C43.0020021,27.9276661 43.3543319,27.7876675 43.639,27.615 C43.9236681,27.4423325 44.1476659,27.2486677 44.311,27.034 C44.4743342,26.8193323 44.6003329,26.6070011 44.689,26.397 C44.7776671,26.1869989 44.8336666,25.9886676 44.857,25.802 C44.8803335,25.6153324 44.892,25.4660006 44.892,25.354 C44.892,24.9433313 44.824334,24.5933348 44.689,24.304 C44.553666,24.0146652 44.3670012,23.7696677 44.129,23.569 C43.8909988,23.3683323 43.6156682,23.200334 43.303,23.065 C42.9903318,22.929666 42.6566684,22.8153338 42.302,22.722 L39.866,22.12 C39.6606656,22.0733331 39.4670009,22.012667 39.285,21.938 C39.1029991,21.863333 38.9420007,21.7653339 38.802,21.644 C38.6619993,21.5226661 38.5523337,21.3756675 38.473,21.203 C38.3936663,21.0303325 38.354,20.8273345 38.354,20.594 C38.354,20.2206648 38.4239993,19.9080013 38.564,19.656 C38.7040007,19.4039987 38.8883322,19.2010008 39.117,19.047 C39.3456678,18.8929992 39.6116652,18.7810003 39.915,18.711 C40.2183348,18.6409997 40.5333317,18.606 40.86,18.606 C41.2146684,18.606 41.5529984,18.6549995 41.875,18.753 C42.1970016,18.8510005 42.4816654,18.9956657 42.729,19.187 C42.9763346,19.3783343 43.1769992,19.6163319 43.331,19.901 C43.4850008,20.1856681 43.5713332,20.5193314 43.59,20.902 L44.542,20.902 C44.542,20.3886641 44.4416677,19.9383353 44.241,19.551 C44.0403323,19.1636647 43.7720017,18.8393346 43.436,18.578 C43.0999983,18.3166654 42.7080022,18.1206673 42.26,17.99 C41.8119978,17.8593327 41.3406691,17.794 40.846,17.794 C40.1459965,17.794 39.5720022,17.8943323 39.124,18.095 C38.6759978,18.2956677 38.323668,18.5406652 38.067,18.83 C37.810332,19.1193348 37.6353338,19.4273317 37.542,19.754 C37.4486662,20.0806683 37.402,20.3653321 37.402,20.608 C37.402,21.000002 37.4649994,21.331332 37.591,21.602 C37.7170006,21.872668 37.8826656,22.1013324 38.088,22.288 C38.2933344,22.4746676 38.5336653,22.6239994 38.809,22.736 C39.0843347,22.8480006 39.3666652,22.941333 39.656,23.016 L41.882,23.562 C42.1153345,23.6180003 42.3533321,23.6903329 42.596,23.779 C42.8386679,23.8676671 43.0603323,23.9819993 43.261,24.122 C43.4616677,24.2620007 43.6249994,24.4346656 43.751,24.64 C43.8770006,24.8453344 43.94,25.0879986 43.94,25.368 C43.94,25.7320018 43.8513342,26.042332 43.674,26.299 C43.4966658,26.555668 43.2750013,26.7656659 43.009,26.929 C42.7429987,27.0923341 42.4560015,27.211333 42.148,27.286 C41.8399985,27.360667 41.5553346,27.398 41.294,27.398 C40.8366644,27.398 40.4073353,27.3536671 40.006,27.265 C39.6046647,27.1763329 39.2570015,27.0293344 38.963,26.824 C38.6689985,26.6186656 38.4380008,26.3433351 38.27,25.998 C38.1019992,25.6526649 38.0226666,25.2233359 38.032,24.71 Z M51.43,23.884 C51.4206666,23.5479983 51.3623339,23.2260015 51.255,22.918 C51.1476661,22.6099985 50.996001,22.3370012 50.8,22.099 C50.603999,21.8609988 50.3660014,21.6696674 50.086,21.525 C49.8059986,21.3803326 49.4886684,21.308 49.134,21.308 C48.7699982,21.308 48.4480014,21.3803326 48.168,21.525 C47.8879986,21.6696674 47.650001,21.8609988 47.454,22.099 C47.257999,22.3370012 47.1016672,22.6123318 46.985,22.925 C46.8683328,23.2376682 46.7913335,23.5573317 46.754,23.884 L51.43,23.884 Z M46.754,24.626 C46.754,24.9433349 46.7983329,25.2723316 46.887,25.613 C46.9756671,25.9536684 47.117999,26.259332 47.314,26.53 C47.510001,26.800668 47.7573318,27.0246658 48.056,27.202 C48.3546682,27.3793342 48.7139979,27.468 49.134,27.468 C49.7780032,27.468 50.2819982,27.3000017 50.646,26.964 C51.0100018,26.6279983 51.2619993,26.1800028 51.402,25.62 L52.284,25.62 C52.0973324,26.4413374 51.7543358,27.0759978 51.255,27.524 C50.7556642,27.9720022 50.0486712,28.196 49.134,28.196 C48.5646638,28.196 48.0723354,28.0956677 47.657,27.895 C47.2416646,27.6943323 46.9033346,27.4190017 46.642,27.069 C46.3806654,26.7189982 46.1870006,26.3130023 46.061,25.851 C45.9349994,25.3889977 45.872,24.9013359 45.872,24.388 C45.872,23.9119976 45.9349994,23.4453356 46.061,22.988 C46.1870006,22.5306644 46.3806654,22.1223351 46.642,21.763 C46.9033346,21.4036649 47.2416646,21.1143344 47.657,20.895 C48.0723354,20.6756656 48.5646638,20.566 49.134,20.566 C49.7126696,20.566 50.2073313,20.6826655 50.618,20.916 C51.0286687,21.1493345 51.362332,21.4549981 51.619,21.833 C51.875668,22.2110019 52.0599994,22.6449975 52.172,23.135 C52.2840006,23.6250025 52.3306668,24.1219975 52.312,24.626 L46.754,24.626 Z M58.598,23.044 L59.48,23.044 C59.3773328,22.2133292 59.0576693,21.5926687 58.521,21.182 C57.9843307,20.7713313 57.3286705,20.566 56.554,20.566 C56.0033306,20.566 55.5156688,20.6686656 55.091,20.874 C54.6663312,21.0793344 54.3093348,21.3546649 54.02,21.7 C53.7306652,22.0453351 53.5113341,22.4489977 53.362,22.911 C53.2126659,23.3730023 53.138,23.8653307 53.138,24.388 C53.138,24.9106693 53.2126659,25.4029977 53.362,25.865 C53.5113341,26.3270023 53.7306652,26.7306649 54.02,27.076 C54.3093348,27.4213351 54.6663312,27.6943323 55.091,27.895 C55.5156688,28.0956677 56.0033306,28.196 56.554,28.196 C57.3753374,28.196 58.0473307,27.9510025 58.57,27.461 C59.0926693,26.9709975 59.4146661,26.2873377 59.536,25.41 L58.654,25.41 C58.6259999,25.7086682 58.5513339,25.9839987 58.43,26.236 C58.3086661,26.4880013 58.1546676,26.7049991 57.968,26.887 C57.7813324,27.0690009 57.5666679,27.2113328 57.324,27.314 C57.0813321,27.4166672 56.824668,27.468 56.554,27.468 C56.1339979,27.468 55.7653349,27.3793342 55.448,27.202 C55.1306651,27.0246658 54.867001,26.7913348 54.657,26.502 C54.446999,26.2126652 54.2883339,25.8836685 54.181,25.515 C54.0736661,25.1463315 54.02,24.7706686 54.02,24.388 C54.02,24.0053314 54.0736661,23.6296685 54.181,23.261 C54.2883339,22.8923315 54.446999,22.5633348 54.657,22.274 C54.867001,21.9846652 55.1306651,21.7513342 55.448,21.574 C55.7653349,21.3966658 56.1339979,21.308 56.554,21.308 C57.1420029,21.308 57.5993317,21.4619985 57.926,21.77 C58.2526683,22.0780015 58.4766661,22.502664 58.598,23.044 Z M63.82,21.308 C63.3999979,21.308 63.0313349,21.3966658 62.714,21.574 C62.3966651,21.7513342 62.1330011,21.9846652 61.923,22.274 C61.7129989,22.5633348 61.5543339,22.8923315 61.447,23.261 C61.3396661,23.6296685 61.286,24.0053314 61.286,24.388 C61.286,24.7706686 61.3396661,25.1463315 61.447,25.515 C61.5543339,25.8836685 61.7129989,26.2126652 61.923,26.502 C62.1330011,26.7913348 62.3966651,27.0246658 62.714,27.202 C63.0313349,27.3793342 63.3999979,27.468 63.82,27.468 C64.2400021,27.468 64.6086651,27.3793342 64.926,27.202 C65.2433349,27.0246658 65.5069989,26.7913348 65.717,26.502 C65.9270011,26.2126652 66.0856661,25.8836685 66.193,25.515 C66.3003339,25.1463315 66.354,24.7706686 66.354,24.388 C66.354,24.0053314 66.3003339,23.6296685 66.193,23.261 C66.0856661,22.8923315 65.9270011,22.5633348 65.717,22.274 C65.5069989,21.9846652 65.2433349,21.7513342 64.926,21.574 C64.6086651,21.3966658 64.2400021,21.308 63.82,21.308 Z M63.82,20.566 C64.3706694,20.566 64.8583312,20.6686656 65.283,20.874 C65.7076688,21.0793344 66.0646652,21.3546649 66.354,21.7 C66.6433348,22.0453351 66.8626659,22.4489977 67.012,22.911 C67.1613341,23.3730023 67.236,23.8653307 67.236,24.388 C67.236,24.9106693 67.1613341,25.4029977 67.012,25.865 C66.8626659,26.3270023 66.6433348,26.7306649 66.354,27.076 C66.0646652,27.4213351 65.7076688,27.6943323 65.283,27.895 C64.8583312,28.0956677 64.3706694,28.196 63.82,28.196 C63.2693306,28.196 62.7816688,28.0956677 62.357,27.895 C61.9323312,27.6943323 61.5753348,27.4213351 61.286,27.076 C60.9966652,26.7306649 60.7773341,26.3270023 60.628,25.865 C60.4786659,25.4029977 60.404,24.9106693 60.404,24.388 C60.404,23.8653307 60.4786659,23.3730023 60.628,22.911 C60.7773341,22.4489977 60.9966652,22.0453351 61.286,21.7 C61.5753348,21.3546649 61.9323312,21.0793344 62.357,20.874 C62.7816688,20.6686656 63.2693306,20.566 63.82,20.566 Z M68.538,20.776 L68.538,28 L69.42,28 L69.42,23.786 C69.4293334,23.4313316 69.4876661,23.1023348 69.595,22.799 C69.7023339,22.4956652 69.8516657,22.2343344 70.043,22.015 C70.2343343,21.7956656 70.4676653,21.6230006 70.743,21.497 C71.0183347,21.3709994 71.3333316,21.308 71.688,21.308 C72.0426684,21.308 72.3389988,21.3639994 72.577,21.476 C72.8150012,21.5880006 73.0039993,21.741999 73.144,21.938 C73.2840007,22.134001 73.3819997,22.3649987 73.438,22.631 C73.4940003,22.8970013 73.522,23.1839985 73.522,23.492 L73.522,28 L74.404,28 L74.404,23.352 C74.404,22.9226645 74.3620004,22.5353351 74.278,22.19 C74.1939996,21.8446649 74.0493344,21.5530012 73.844,21.315 C73.6386656,21.0769988 73.3656684,20.8926673 73.025,20.762 C72.6843316,20.6313327 72.2620025,20.566 71.758,20.566 C71.2446641,20.566 70.7733355,20.6989987 70.344,20.965 C69.9146645,21.2310013 69.6160008,21.5833311 69.448,22.022 L69.42,22.022 L69.42,20.776 L68.538,20.776 Z M82.426,28 L81.614,28 L81.614,26.628 L81.586,26.628 C81.4926662,26.8613345 81.3550009,27.075999 81.173,27.272 C80.9909991,27.468001 80.7833345,27.633666 80.55,27.769 C80.3166655,27.904334 80.0670013,28.009333 79.801,28.084 C79.5349987,28.158667 79.2713346,28.196 79.01,28.196 C78.4593306,28.196 77.981002,28.0956677 77.575,27.895 C77.168998,27.6943323 76.830668,27.4190017 76.56,27.069 C76.289332,26.7189982 76.0886673,26.3130023 75.958,25.851 C75.8273327,25.3889977 75.762,24.9013359 75.762,24.388 C75.762,23.8746641 75.8273327,23.3870023 75.958,22.925 C76.0886673,22.4629977 76.289332,22.0570017 76.56,21.707 C76.830668,21.3569983 77.168998,21.0793344 77.575,20.874 C77.981002,20.6686656 78.4593306,20.566 79.01,20.566 C79.280668,20.566 79.5443321,20.5986663 79.801,20.664 C80.0576679,20.7293337 80.2979989,20.829666 80.522,20.965 C80.7460011,21.100334 80.9443325,21.265999 81.117,21.462 C81.2896675,21.658001 81.4226662,21.8866654 81.516,22.148 L81.544,22.148 L81.544,18.004 L82.426,18.004 L82.426,28 Z M76.644,24.388 C76.644,24.7613352 76.6883329,25.1323315 76.777,25.501 C76.8656671,25.8696685 77.0056657,26.1986652 77.197,26.488 C77.3883343,26.7773348 77.6333318,27.0129991 77.932,27.195 C78.2306682,27.3770009 78.5899979,27.468 79.01,27.468 C79.476669,27.468 79.8709984,27.3770009 80.193,27.195 C80.5150016,27.0129991 80.7763323,26.7773348 80.977,26.488 C81.1776677,26.1986652 81.3223329,25.8696685 81.411,25.501 C81.4996671,25.1323315 81.544,24.7613352 81.544,24.388 C81.544,24.0146648 81.4996671,23.6436685 81.411,23.275 C81.3223329,22.9063315 81.1776677,22.5773348 80.977,22.288 C80.7763323,21.9986652 80.5150016,21.7630009 80.193,21.581 C79.8709984,21.3989991 79.476669,21.308 79.01,21.308 C78.5899979,21.308 78.2306682,21.3989991 77.932,21.581 C77.6333318,21.7630009 77.3883343,21.9986652 77.197,22.288 C77.0056657,22.5773348 76.8656671,22.9063315 76.777,23.275 C76.6883329,23.6436685 76.644,24.0146648 76.644,24.388 Z M84.022,22.988 C84.0500001,22.5679979 84.1386659,22.2040015 84.288,21.896 C84.4373341,21.5879985 84.6403321,21.336001 84.897,21.14 C85.1536679,20.943999 85.4546649,20.7993338 85.8,20.706 C86.1453351,20.6126662 86.5279979,20.566 86.948,20.566 C87.2653349,20.566 87.5826651,20.596333 87.9,20.657 C88.2173349,20.717667 88.5019987,20.8319992 88.754,21 C89.0060013,21.1680008 89.2113325,21.4036651 89.37,21.707 C89.5286675,22.0103348 89.608,22.4046642 89.608,22.89 L89.608,26.726 C89.608,27.0806684 89.7806649,27.258 90.126,27.258 C90.2286672,27.258 90.3219996,27.2393335 90.406,27.202 L90.406,27.944 C90.3033328,27.9626668 90.2123337,27.9766666 90.133,27.986 C90.0536663,27.9953334 89.9533339,28 89.832,28 C89.6079989,28 89.428334,27.969667 89.293,27.909 C89.157666,27.848333 89.052667,27.7620006 88.978,27.65 C88.903333,27.5379994 88.8543335,27.4050008 88.831,27.251 C88.8076665,27.0969992 88.796,26.9266676 88.796,26.74 L88.768,26.74 C88.6093325,26.9733345 88.4483341,27.1809991 88.285,27.363 C88.1216658,27.5450009 87.9396677,27.6966661 87.739,27.818 C87.5383323,27.9393339 87.309668,28.0326663 87.053,28.098 C86.7963321,28.1633337 86.4906684,28.196 86.136,28.196 C85.7999983,28.196 85.4850015,28.1563337 85.191,28.077 C84.8969985,27.9976663 84.6403344,27.8716675 84.421,27.699 C84.2016656,27.5263325 84.0290006,27.3070013 83.903,27.041 C83.7769994,26.7749987 83.714,26.4600018 83.714,26.096 C83.714,25.5919975 83.8259989,25.1976681 84.05,24.913 C84.2740011,24.6283319 84.5703315,24.4113341 84.939,24.262 C85.3076685,24.1126659 85.7229977,24.007667 86.185,23.947 C86.6470023,23.886333 87.1159976,23.8280003 87.592,23.772 C87.7786676,23.7533332 87.9419993,23.7300001 88.082,23.702 C88.2220007,23.6739999 88.3386662,23.6250004 88.432,23.555 C88.5253338,23.4849996 88.5976664,23.3893339 88.649,23.268 C88.7003336,23.1466661 88.726,22.988001 88.726,22.792 C88.726,22.4933318 88.6770005,22.2483343 88.579,22.057 C88.4809995,21.8656657 88.3456675,21.7140006 88.173,21.602 C88.0003325,21.4899994 87.7996678,21.4130002 87.571,21.371 C87.3423322,21.3289998 87.0973346,21.308 86.836,21.308 C86.2759972,21.308 85.8186684,21.4409987 85.464,21.707 C85.1093316,21.9730013 84.9226668,22.3999971 84.904,22.988 L84.022,22.988 Z M88.726,24.052 L88.698,24.052 C88.6419997,24.1546672 88.5346675,24.2293331 88.376,24.276 C88.2173325,24.3226669 88.0773339,24.3553332 87.956,24.374 C87.5826648,24.4393337 87.1976686,24.4976664 86.801,24.549 C86.4043314,24.6003336 86.0426683,24.6773328 85.716,24.78 C85.3893317,24.8826672 85.121001,25.0296657 84.911,25.221 C84.7009989,25.4123343 84.596,25.6853316 84.596,26.04 C84.596,26.2640011 84.6403329,26.4623325 84.729,26.635 C84.8176671,26.8076675 84.9366659,26.9569994 85.086,27.083 C85.2353341,27.2090006 85.407999,27.3046663 85.604,27.37 C85.800001,27.4353337 86.0006656,27.468 86.206,27.468 C86.5420017,27.468 86.8639985,27.4166672 87.172,27.314 C87.4800015,27.2113328 87.7483322,27.062001 87.977,26.866 C88.2056678,26.669999 88.387666,26.4320014 88.523,26.152 C88.658334,25.8719986 88.726,25.5546684 88.726,25.2 L88.726,24.052 Z M91.372,20.776 L91.372,28 L92.254,28 L92.254,24.15 C92.254,23.7673314 92.3193327,23.4150016 92.45,23.093 C92.5806673,22.7709984 92.7649988,22.4933345 93.003,22.26 C93.2410012,22.0266655 93.5233317,21.8470006 93.85,21.721 C94.1766683,21.5949994 94.5406647,21.5413332 94.942,21.56 L94.942,20.678 C94.2886634,20.6499999 93.7263357,20.7946651 93.255,21.112 C92.7836643,21.4293349 92.4360011,21.8819971 92.212,22.47 L92.184,22.47 L92.184,20.776 L91.372,20.776 Z M94.97,20.776 L97.854,27.972 L97.546,28.784 C97.471333,28.9520008 97.4013337,29.1059993 97.336,29.246 C97.2706663,29.3860007 97.1913338,29.5049995 97.098,29.603 C97.0046662,29.7010005 96.8950006,29.7779997 96.769,29.834 C96.6429994,29.8900003 96.482001,29.918 96.286,29.918 C96.1833328,29.918 96.0830005,29.9110001 95.985,29.897 C95.8869995,29.8829999 95.7866672,29.8666668 95.684,29.848 L95.684,30.59 C95.758667,30.6180001 95.8449995,30.6343333 95.943,30.639 C96.0410005,30.6436667 96.1786658,30.6506666 96.356,30.66 C96.6360014,30.66 96.8669991,30.6343336 97.049,30.583 C97.2310009,30.5316664 97.389666,30.4476673 97.525,30.331 C97.660334,30.2143328 97.7839994,30.0556677 97.896,29.855 C98.0080006,29.6543323 98.1293327,29.4000015 98.26,29.092 L101.396,20.776 L100.514,20.776 L98.288,26.936 L95.908,20.776 L94.97,20.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="39" viewBox="0 0 120 39" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="120" height="39" fill="#3ADB76"/>
<path fill="#FFF" d="M38.352,21.18 L37.536,21.18 C37.5119999,21.7080026 37.5819992,22.1599981 37.746,22.536 C37.9100008,22.9120019 38.1439985,23.2199988 38.448,23.46 C38.7520015,23.7000012 39.1199978,23.8779994 39.552,23.994 C39.9840022,24.1100006 40.4519975,24.168 40.956,24.168 C41.4600025,24.168 41.8919982,24.1220005 42.252,24.03 C42.6120018,23.9379995 42.9139988,23.8180007 43.158,23.67 C43.4020012,23.5219993 43.5939993,23.3560009 43.734,23.172 C43.8740007,22.9879991 43.9819996,22.8060009 44.058,22.626 C44.1340004,22.4459991 44.1819999,22.2760008 44.202,22.116 C44.2220001,21.9559992 44.232,21.8280005 44.232,21.732 C44.232,21.3799982 44.1740006,21.0800012 44.058,20.832 C43.9419994,20.5839988 43.782001,20.3740009 43.578,20.202 C43.373999,20.0299991 43.1380013,19.8860006 42.87,19.77 C42.6019987,19.6539994 42.3160015,19.5560004 42.012,19.476 L39.924,18.96 C39.7479991,18.9199998 39.5820008,18.8680003 39.426,18.804 C39.2699992,18.7399997 39.1320006,18.6560005 39.012,18.552 C38.8919994,18.4479995 38.7980003,18.3220007 38.73,18.174 C38.6619997,18.0259993 38.628,17.852001 38.628,17.652 C38.628,17.3319984 38.6879994,17.0640011 38.808,16.848 C38.9280006,16.6319989 39.085999,16.4580007 39.282,16.326 C39.478001,16.1939993 39.7059987,16.0980003 39.966,16.038 C40.2260013,15.9779997 40.4959986,15.948 40.776,15.948 C41.0800015,15.948 41.3699986,15.9899996 41.646,16.074 C41.9220014,16.1580004 42.1659989,16.2819992 42.378,16.446 C42.5900011,16.6100008 42.7619993,16.8139988 42.894,17.058 C43.0260007,17.3020012 43.0999999,17.5879984 43.116,17.916 L43.932,17.916 C43.932,17.4759978 43.8460009,17.0900017 43.674,16.758 C43.5019991,16.4259983 43.2720014,16.1480011 42.984,15.924 C42.6959986,15.6999989 42.3600019,15.5320006 41.976,15.42 C41.5919981,15.3079994 41.1880021,15.252 40.764,15.252 C40.163997,15.252 39.6720019,15.3379991 39.288,15.51 C38.9039981,15.6820009 38.6020011,15.8919988 38.382,16.14 C38.1619989,16.3880012 38.0120004,16.6519986 37.932,16.932 C37.8519996,17.2120014 37.812,17.455999 37.812,17.664 C37.812,18.0000017 37.8659995,18.2839988 37.974,18.516 C38.0820005,18.7480012 38.2239991,18.9439992 38.4,19.104 C38.5760009,19.2640008 38.7819988,19.3919995 39.018,19.488 C39.2540012,19.5840005 39.4959988,19.6639997 39.744,19.728 L41.652,20.196 C41.852001,20.2440002 42.055999,20.3059996 42.264,20.382 C42.472001,20.4580004 42.6619991,20.5559994 42.834,20.676 C43.0060009,20.7960006 43.1459995,20.9439991 43.254,21.12 C43.3620005,21.2960009 43.416,21.5039988 43.416,21.744 C43.416,22.0560016 43.3400008,22.3219989 43.188,22.542 C43.0359992,22.7620011 42.8460011,22.9419993 42.618,23.082 C42.3899989,23.2220007 42.1440013,23.3239997 41.88,23.388 C41.6159987,23.4520003 41.3720011,23.484 41.148,23.484 C40.755998,23.484 40.3880017,23.4460004 40.044,23.37 C39.6999983,23.2939996 39.4020013,23.1680009 39.15,22.992 C38.8979987,22.8159991 38.7000007,22.5800015 38.556,22.284 C38.4119993,21.9879985 38.344,21.6200022 38.352,21.18 Z M48,18.264 C47.6399982,18.264 47.3240014,18.3399992 47.052,18.492 C46.7799986,18.6440008 46.5540009,18.8439988 46.374,19.092 C46.1939991,19.3400012 46.0580005,19.6219984 45.966,19.938 C45.8739995,20.2540016 45.828,20.5759984 45.828,20.904 C45.828,21.2320016 45.8739995,21.5539984 45.966,21.87 C46.0580005,22.1860016 46.1939991,22.4679988 46.374,22.716 C46.5540009,22.9640012 46.7799986,23.1639992 47.052,23.316 C47.3240014,23.4680008 47.6399982,23.544 48,23.544 C48.3600018,23.544 48.6759986,23.4680008 48.948,23.316 C49.2200014,23.1639992 49.4459991,22.9640012 49.626,22.716 C49.8060009,22.4679988 49.9419995,22.1860016 50.034,21.87 C50.1260005,21.5539984 50.172,21.2320016 50.172,20.904 C50.172,20.5759984 50.1260005,20.2540016 50.034,19.938 C49.9419995,19.6219984 49.8060009,19.3400012 49.626,19.092 C49.4459991,18.8439988 49.2200014,18.6440008 48.948,18.492 C48.6759986,18.3399992 48.3600018,18.264 48,18.264 Z M48,17.628 C48.4720024,17.628 48.8899982,17.7159991 49.254,17.892 C49.6180018,18.0680009 49.9239988,18.3039985 50.172,18.6 C50.4200012,18.8960015 50.6079994,19.241998 50.736,19.638 C50.8640006,20.034002 50.928,20.4559978 50.928,20.904 C50.928,21.3520022 50.8640006,21.773998 50.736,22.17 C50.6079994,22.566002 50.4200012,22.9119985 50.172,23.208 C49.9239988,23.5040015 49.6180018,23.7379991 49.254,23.91 C48.8899982,24.0820009 48.4720024,24.168 48,24.168 C47.5279976,24.168 47.1100018,24.0820009 46.746,23.91 C46.3819982,23.7379991 46.0760012,23.5040015 45.828,23.208 C45.5799988,22.9119985 45.3920006,22.566002 45.264,22.17 C45.1359994,21.773998 45.072,21.3520022 45.072,20.904 C45.072,20.4559978 45.1359994,20.034002 45.264,19.638 C45.3920006,19.241998 45.5799988,18.8960015 45.828,18.6 C46.0760012,18.3039985 46.3819982,18.0680009 46.746,17.892 C47.1100018,17.7159991 47.5279976,17.628 48,17.628 Z M55.92,21.18 L55.104,21.18 C55.0799999,21.7080026 55.1499992,22.1599981 55.314,22.536 C55.4780008,22.9120019 55.7119985,23.2199988 56.016,23.46 C56.3200015,23.7000012 56.6879978,23.8779994 57.12,23.994 C57.5520022,24.1100006 58.0199975,24.168 58.524,24.168 C59.0280025,24.168 59.4599982,24.1220005 59.82,24.03 C60.1800018,23.9379995 60.4819988,23.8180007 60.726,23.67 C60.9700012,23.5219993 61.1619993,23.3560009 61.302,23.172 C61.4420007,22.9879991 61.5499996,22.8060009 61.626,22.626 C61.7020004,22.4459991 61.7499999,22.2760008 61.77,22.116 C61.7900001,21.9559992 61.8,21.8280005 61.8,21.732 C61.8,21.3799982 61.7420006,21.0800012 61.626,20.832 C61.5099994,20.5839988 61.350001,20.3740009 61.146,20.202 C60.941999,20.0299991 60.7060013,19.8860006 60.438,19.77 C60.1699987,19.6539994 59.8840015,19.5560004 59.58,19.476 L57.492,18.96 C57.3159991,18.9199998 57.1500008,18.8680003 56.994,18.804 C56.8379992,18.7399997 56.7000006,18.6560005 56.58,18.552 C56.4599994,18.4479995 56.3660003,18.3220007 56.298,18.174 C56.2299997,18.0259993 56.196,17.852001 56.196,17.652 C56.196,17.3319984 56.2559994,17.0640011 56.376,16.848 C56.4960006,16.6319989 56.653999,16.4580007 56.85,16.326 C57.046001,16.1939993 57.2739987,16.0980003 57.534,16.038 C57.7940013,15.9779997 58.0639986,15.948 58.344,15.948 C58.6480015,15.948 58.9379986,15.9899996 59.214,16.074 C59.4900014,16.1580004 59.7339989,16.2819992 59.946,16.446 C60.1580011,16.6100008 60.3299993,16.8139988 60.462,17.058 C60.5940007,17.3020012 60.6679999,17.5879984 60.684,17.916 L61.5,17.916 C61.5,17.4759978 61.4140009,17.0900017 61.242,16.758 C61.0699991,16.4259983 60.8400014,16.1480011 60.552,15.924 C60.2639986,15.6999989 59.9280019,15.5320006 59.544,15.42 C59.1599981,15.3079994 58.7560021,15.252 58.332,15.252 C57.731997,15.252 57.2400019,15.3379991 56.856,15.51 C56.4719981,15.6820009 56.1700011,15.8919988 55.95,16.14 C55.7299989,16.3880012 55.5800004,16.6519986 55.5,16.932 C55.4199996,17.2120014 55.38,17.455999 55.38,17.664 C55.38,18.0000017 55.4339995,18.2839988 55.542,18.516 C55.6500005,18.7480012 55.7919991,18.9439992 55.968,19.104 C56.1440009,19.2640008 56.3499988,19.3919995 56.586,19.488 C56.8220012,19.5840005 57.0639988,19.6639997 57.312,19.728 L59.22,20.196 C59.420001,20.2440002 59.623999,20.3059996 59.832,20.382 C60.040001,20.4580004 60.2299991,20.5559994 60.402,20.676 C60.5740009,20.7960006 60.7139995,20.9439991 60.822,21.12 C60.9300005,21.2960009 60.984,21.5039988 60.984,21.744 C60.984,22.0560016 60.9080008,22.3219989 60.756,22.542 C60.6039992,22.7620011 60.4140011,22.9419993 60.186,23.082 C59.9579989,23.2220007 59.7120013,23.3239997 59.448,23.388 C59.1839987,23.4520003 58.9400011,23.484 58.716,23.484 C58.323998,23.484 57.9560017,23.4460004 57.612,23.37 C57.2679983,23.2939996 56.9700013,23.1680009 56.718,22.992 C56.4659987,22.8159991 56.2680007,22.5800015 56.124,22.284 C55.9799993,21.9879985 55.912,21.6200022 55.92,21.18 Z M62.952,17.808 L62.952,24 L63.708,24 L63.708,20.544 C63.708,20.2159984 63.7439996,19.9140014 63.816,19.638 C63.8880004,19.3619986 63.9979993,19.122001 64.146,18.918 C64.2940007,18.713999 64.4859988,18.5540006 64.722,18.438 C64.9580012,18.3219994 65.2359984,18.264 65.556,18.264 C65.7960012,18.264 65.9999992,18.3039996 66.168,18.384 C66.3360008,18.4640004 66.4699995,18.5739993 66.57,18.714 C66.6700005,18.8540007 66.7419998,19.0179991 66.786,19.206 C66.8300002,19.3940009 66.852,19.591999 66.852,19.8 L66.852,24 L67.608,24 L67.608,20.496 C67.608,20.2079986 67.6339997,19.9300013 67.686,19.662 C67.7380003,19.3939987 67.8279994,19.156001 67.956,18.948 C68.0840006,18.739999 68.2559989,18.5740006 68.472,18.45 C68.6880011,18.3259994 68.9599984,18.264 69.288,18.264 C69.8320027,18.264 70.2119989,18.3979987 70.428,18.666 C70.6440011,18.9340013 70.752,19.3239974 70.752,19.836 L70.752,24 L71.508,24 L71.508,19.8 C71.508,18.3519928 70.8240068,17.628 69.456,17.628 C69.047998,17.628 68.6640018,17.727999 68.304,17.928 C67.9439982,18.128001 67.6720009,18.431998 67.488,18.84 C67.3759994,18.431998 67.1540017,18.128001 66.822,17.928 C66.4899983,17.727999 66.120002,17.628 65.712,17.628 C65.2079975,17.628 64.7940016,17.7359989 64.47,17.952 C64.1459984,18.1680011 63.884001,18.4679981 63.684,18.852 L63.648,18.852 L63.648,17.808 L62.952,17.808 Z M72.876,19.704 C72.9000001,19.3439982 72.9759994,19.0320013 73.104,18.768 C73.2320006,18.5039987 73.4059989,18.2880008 73.626,18.12 C73.8460011,17.9519992 74.1039985,17.8280004 74.4,17.748 C74.6960015,17.6679996 75.0239982,17.628 75.384,17.628 C75.6560014,17.628 75.9279986,17.6539997 76.2,17.706 C76.4720014,17.7580003 76.7159989,17.8559993 76.932,18 C77.1480011,18.1440007 77.3239993,18.3459987 77.46,18.606 C77.5960007,18.8660013 77.664,19.2039979 77.664,19.62 L77.664,22.908 C77.664,23.2120015 77.8119985,23.364 78.108,23.364 C78.1960004,23.364 78.2759996,23.3480002 78.348,23.316 L78.348,23.952 C78.2599996,23.9680001 78.1820003,23.98 78.114,23.988 C78.0459997,23.996 77.9600005,24 77.856,24 C77.663999,24 77.5100006,23.9740003 77.394,23.922 C77.2779994,23.8699997 77.1880003,23.7960005 77.124,23.7 C77.0599997,23.6039995 77.0180001,23.4900007 76.998,23.358 C76.9779999,23.2259993 76.968,23.0800008 76.968,22.92 L76.944,22.92 C76.8079993,23.120001 76.6700007,23.2979992 76.53,23.454 C76.3899993,23.6100008 76.2340009,23.7399995 76.062,23.844 C75.8899991,23.9480005 75.6940011,24.0279997 75.474,24.084 C75.2539989,24.1400003 74.9920015,24.168 74.688,24.168 C74.3999986,24.168 74.1300013,24.1340003 73.878,24.066 C73.6259987,23.9979997 73.4060009,23.8900007 73.218,23.742 C73.0299991,23.5939993 72.8820005,23.4060011 72.774,23.178 C72.6659995,22.9499989 72.612,22.6800016 72.612,22.368 C72.612,21.9359978 72.707999,21.5980012 72.9,21.354 C73.092001,21.1099988 73.3459984,20.9240006 73.662,20.796 C73.9780016,20.6679994 74.333998,20.5780003 74.73,20.526 C75.126002,20.4739997 75.527998,20.4240002 75.936,20.376 C76.0960008,20.3599999 76.2359994,20.3400001 76.356,20.316 C76.4760006,20.2919999 76.5759996,20.2500003 76.656,20.19 C76.7360004,20.1299997 76.7979998,20.0480005 76.842,19.944 C76.8860002,19.8399995 76.908,19.7040008 76.908,19.536 C76.908,19.2799987 76.8660004,19.0700008 76.782,18.906 C76.6979996,18.7419992 76.5820007,18.6120005 76.434,18.516 C76.2859993,18.4199995 76.114001,18.3540002 75.918,18.318 C75.721999,18.2819998 75.5120011,18.264 75.288,18.264 C74.8079976,18.264 74.4160015,18.3779989 74.112,18.606 C73.8079985,18.8340011 73.6480001,19.1999975 73.632,19.704 L72.876,19.704 Z M76.908,20.616 L76.884,20.616 C76.8359998,20.7040004 76.7440007,20.7679998 76.608,20.808 C76.4719993,20.8480002 76.3520005,20.8759999 76.248,20.892 C75.9279984,20.9480003 75.5980017,20.9979998 75.258,21.042 C74.9179983,21.0860002 74.6080014,21.1519996 74.328,21.24 C74.0479986,21.3280004 73.8180009,21.4539992 73.638,21.618 C73.4579991,21.7820008 73.368,22.0159985 73.368,22.32 C73.368,22.512001 73.4059996,22.6819993 73.482,22.83 C73.5580004,22.9780007 73.6599994,23.1059995 73.788,23.214 C73.9160006,23.3220005 74.0639992,23.4039997 74.232,23.46 C74.4000008,23.5160003 74.5719991,23.544 74.748,23.544 C75.0360014,23.544 75.3119987,23.5000004 75.576,23.412 C75.8400013,23.3239996 76.069999,23.1960008 76.266,23.028 C76.462001,22.8599992 76.6179994,22.6560012 76.734,22.416 C76.8500006,22.1759988 76.908,21.9040015 76.908,21.6 L76.908,20.616 Z M79.188,15.432 L79.188,24 L79.944,24 L79.944,15.432 L79.188,15.432 Z M81.408,15.432 L81.408,24 L82.164,24 L82.164,15.432 L81.408,15.432 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="39" viewBox="0 0 120 39" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="120" height="39" fill="#FFAE00"/>
<path fill="#FFF" d="M42.46,20.65 L41.78,20.65 C41.7599999,21.0900022 41.8183327,21.4666651 41.955,21.78 C42.0916674,22.0933349 42.2866654,22.349999 42.54,22.55 C42.7933346,22.750001 43.0999982,22.8983328 43.46,22.995 C43.8200018,23.0916671 44.2099979,23.14 44.63,23.14 C45.0500021,23.14 45.4099985,23.101667 45.71,23.025 C46.0100015,22.948333 46.2616656,22.848334 46.465,22.725 C46.6683344,22.601666 46.8283328,22.4633341 46.945,22.31 C47.0616672,22.1566659 47.1516663,22.0050008 47.215,21.855 C47.2783337,21.7049993 47.3183333,21.563334 47.335,21.43 C47.3516667,21.296666 47.36,21.1900004 47.36,21.11 C47.36,20.8166652 47.3116672,20.5666677 47.215,20.36 C47.1183329,20.1533323 46.9850009,19.9783341 46.815,19.835 C46.6449992,19.691666 46.4483345,19.5716671 46.225,19.475 C46.0016655,19.3783328 45.7633346,19.296667 45.51,19.23 L43.77,18.8 C43.6233326,18.7666665 43.4850007,18.7233336 43.355,18.67 C43.2249994,18.6166664 43.1100005,18.5466671 43.01,18.46 C42.9099995,18.3733329 42.8316669,18.2683339 42.775,18.145 C42.718333,18.0216661 42.69,17.8766675 42.69,17.71 C42.69,17.443332 42.7399995,17.2200009 42.84,17.04 C42.9400005,16.8599991 43.0716659,16.7150005 43.235,16.605 C43.3983342,16.4949995 43.5883323,16.4150002 43.805,16.365 C44.0216677,16.3149997 44.2466655,16.29 44.48,16.29 C44.7333346,16.29 44.9749988,16.3249996 45.205,16.395 C45.4350012,16.4650004 45.6383325,16.5683327 45.815,16.705 C45.9916676,16.8416674 46.1349995,17.0116657 46.245,17.215 C46.3550005,17.4183343 46.4166666,17.6566653 46.43,17.93 L47.11,17.93 C47.11,17.5633315 47.0383341,17.2416681 46.895,16.965 C46.751666,16.6883319 46.5600012,16.4566676 46.32,16.27 C46.0799988,16.0833324 45.8000016,15.9433338 45.48,15.85 C45.1599984,15.7566662 44.8233351,15.71 44.47,15.71 C43.9699975,15.71 43.5600016,15.781666 43.24,15.925 C42.9199984,16.0683341 42.6683343,16.2433323 42.485,16.45 C42.3016658,16.6566677 42.176667,16.8766655 42.11,17.11 C42.043333,17.3433345 42.01,17.5466658 42.01,17.72 C42.01,18.0000014 42.0549996,18.2366657 42.145,18.43 C42.2350005,18.6233343 42.3533326,18.786666 42.5,18.92 C42.6466674,19.053334 42.8183323,19.1599996 43.015,19.24 C43.2116677,19.3200004 43.4133323,19.3866664 43.62,19.44 L45.21,19.83 C45.3766675,19.8700002 45.5466658,19.9216664 45.72,19.985 C45.8933342,20.0483337 46.051666,20.1299995 46.195,20.23 C46.3383341,20.3300005 46.4549996,20.4533326 46.545,20.6 C46.6350004,20.7466674 46.68,20.919999 46.68,21.12 C46.68,21.3800013 46.6166673,21.6016657 46.49,21.785 C46.3633327,21.9683342 46.2050009,22.1183328 46.015,22.235 C45.8249991,22.3516672 45.6200011,22.4366664 45.4,22.49 C45.1799989,22.5433336 44.9766676,22.57 44.79,22.57 C44.4633317,22.57 44.1566681,22.5383336 43.87,22.475 C43.5833319,22.4116664 43.3350011,22.3066674 43.125,22.16 C42.914999,22.0133326 42.7500006,21.8166679 42.63,21.57 C42.5099994,21.3233321 42.4533333,21.0166685 42.46,20.65 Z M50.5,18.22 C50.1999985,18.22 49.9366678,18.2833327 49.71,18.41 C49.4833322,18.5366673 49.2950007,18.7033323 49.145,18.91 C48.9949992,19.1166677 48.8816671,19.3516654 48.805,19.615 C48.728333,19.8783346 48.69,20.1466653 48.69,20.42 C48.69,20.6933347 48.728333,20.9616654 48.805,21.225 C48.8816671,21.4883346 48.9949992,21.7233323 49.145,21.93 C49.2950007,22.1366677 49.4833322,22.3033327 49.71,22.43 C49.9366678,22.5566673 50.1999985,22.62 50.5,22.62 C50.8000015,22.62 51.0633322,22.5566673 51.29,22.43 C51.5166678,22.3033327 51.7049993,22.1366677 51.855,21.93 C52.0050008,21.7233323 52.118333,21.4883346 52.195,21.225 C52.2716671,20.9616654 52.31,20.6933347 52.31,20.42 C52.31,20.1466653 52.2716671,19.8783346 52.195,19.615 C52.118333,19.3516654 52.0050008,19.1166677 51.855,18.91 C51.7049993,18.7033323 51.5166678,18.5366673 51.29,18.41 C51.0633322,18.2833327 50.8000015,18.22 50.5,18.22 Z M50.5,17.69 C50.8933353,17.69 51.2416652,17.7633326 51.545,17.91 C51.8483349,18.0566674 52.1033323,18.2533321 52.31,18.5 C52.5166677,18.7466679 52.6733328,19.0349984 52.78,19.365 C52.8866672,19.6950017 52.94,20.0466648 52.94,20.42 C52.94,20.7933352 52.8866672,21.1449984 52.78,21.475 C52.6733328,21.8050017 52.5166677,22.0933321 52.31,22.34 C52.1033323,22.5866679 51.8483349,22.781666 51.545,22.925 C51.2416652,23.0683341 50.8933353,23.14 50.5,23.14 C50.1066647,23.14 49.7583349,23.0683341 49.455,22.925 C49.1516651,22.781666 48.8966677,22.5866679 48.69,22.34 C48.4833323,22.0933321 48.3266672,21.8050017 48.22,21.475 C48.1133328,21.1449984 48.06,20.7933352 48.06,20.42 C48.06,20.0466648 48.1133328,19.6950017 48.22,19.365 C48.3266672,19.0349984 48.4833323,18.7466679 48.69,18.5 C48.8966677,18.2533321 49.1516651,18.0566674 49.455,17.91 C49.7583349,17.7633326 50.1066647,17.69 50.5,17.69 Z M57.1,20.65 L56.42,20.65 C56.3999999,21.0900022 56.4583327,21.4666651 56.595,21.78 C56.7316674,22.0933349 56.9266654,22.349999 57.18,22.55 C57.4333346,22.750001 57.7399982,22.8983328 58.1,22.995 C58.4600018,23.0916671 58.8499979,23.14 59.27,23.14 C59.6900021,23.14 60.0499985,23.101667 60.35,23.025 C60.6500015,22.948333 60.9016657,22.848334 61.105,22.725 C61.3083344,22.601666 61.4683328,22.4633341 61.585,22.31 C61.7016672,22.1566659 61.7916663,22.0050008 61.855,21.855 C61.9183337,21.7049993 61.9583333,21.563334 61.975,21.43 C61.9916668,21.296666 62,21.1900004 62,21.11 C62,20.8166652 61.9516672,20.5666677 61.855,20.36 C61.7583329,20.1533323 61.6250009,19.9783341 61.455,19.835 C61.2849992,19.691666 61.0883345,19.5716671 60.865,19.475 C60.6416655,19.3783328 60.4033346,19.296667 60.15,19.23 L58.41,18.8 C58.2633326,18.7666665 58.1250007,18.7233336 57.995,18.67 C57.8649994,18.6166664 57.7500005,18.5466671 57.65,18.46 C57.5499995,18.3733329 57.4716669,18.2683339 57.415,18.145 C57.358333,18.0216661 57.33,17.8766675 57.33,17.71 C57.33,17.443332 57.3799995,17.2200009 57.48,17.04 C57.5800005,16.8599991 57.7116659,16.7150005 57.875,16.605 C58.0383342,16.4949995 58.2283323,16.4150002 58.445,16.365 C58.6616678,16.3149997 58.8866655,16.29 59.12,16.29 C59.3733346,16.29 59.6149989,16.3249996 59.845,16.395 C60.0750012,16.4650004 60.2783325,16.5683327 60.455,16.705 C60.6316676,16.8416674 60.7749995,17.0116657 60.885,17.215 C60.9950006,17.4183343 61.0566666,17.6566653 61.07,17.93 L61.75,17.93 C61.75,17.5633315 61.6783341,17.2416681 61.535,16.965 C61.391666,16.6883319 61.2000012,16.4566676 60.96,16.27 C60.7199988,16.0833324 60.4400016,15.9433338 60.12,15.85 C59.7999984,15.7566662 59.4633351,15.71 59.11,15.71 C58.6099975,15.71 58.2000016,15.781666 57.88,15.925 C57.5599984,16.0683341 57.3083343,16.2433323 57.125,16.45 C56.9416657,16.6566677 56.816667,16.8766655 56.75,17.11 C56.683333,17.3433345 56.65,17.5466658 56.65,17.72 C56.65,18.0000014 56.6949996,18.2366657 56.785,18.43 C56.8750005,18.6233343 56.9933326,18.786666 57.14,18.92 C57.2866674,19.053334 57.4583324,19.1599996 57.655,19.24 C57.8516677,19.3200004 58.0533323,19.3866664 58.26,19.44 L59.85,19.83 C60.0166675,19.8700002 60.1866658,19.9216664 60.36,19.985 C60.5333342,20.0483337 60.691666,20.1299995 60.835,20.23 C60.9783341,20.3300005 61.0949996,20.4533326 61.185,20.6 C61.2750005,20.7466674 61.32,20.919999 61.32,21.12 C61.32,21.3800013 61.2566673,21.6016657 61.13,21.785 C61.0033327,21.9683342 60.8450009,22.1183328 60.655,22.235 C60.4649991,22.3516672 60.2600011,22.4366664 60.04,22.49 C59.8199989,22.5433336 59.6166676,22.57 59.43,22.57 C59.1033317,22.57 58.7966681,22.5383336 58.51,22.475 C58.2233319,22.4116664 57.9750011,22.3066674 57.765,22.16 C57.5549989,22.0133326 57.3900006,21.8166679 57.27,21.57 C57.1499994,21.3233321 57.0933333,21.0166685 57.1,20.65 Z M62.96,17.84 L62.96,23 L63.59,23 L63.59,20.12 C63.59,19.8466653 63.6199997,19.5950012 63.68,19.365 C63.7400003,19.1349988 63.8316661,18.9350009 63.955,18.765 C64.078334,18.5949991 64.2383324,18.4616672 64.435,18.365 C64.6316676,18.2683329 64.863332,18.22 65.13,18.22 C65.330001,18.22 65.4999993,18.253333 65.64,18.32 C65.7800007,18.386667 65.8916663,18.4783327 65.975,18.595 C66.0583338,18.7116672 66.1183331,18.8483325 66.155,19.005 C66.1916669,19.1616674 66.21,19.3266658 66.21,19.5 L66.21,23 L66.84,23 L66.84,20.08 C66.84,19.8399988 66.8616665,19.6083345 66.905,19.385 C66.9483336,19.1616655 67.0233328,18.9633342 67.13,18.79 C67.2366672,18.6166658 67.3799991,18.4783338 67.56,18.375 C67.7400009,18.2716662 67.9666653,18.22 68.24,18.22 C68.6933356,18.22 69.0099991,18.3316656 69.19,18.555 C69.3700009,18.7783344 69.46,19.1033312 69.46,19.53 L69.46,23 L70.09,23 L70.09,19.5 C70.09,18.2933273 69.5200057,17.69 68.38,17.69 C68.0399983,17.69 67.7200015,17.7733325 67.42,17.94 C67.1199985,18.1066675 66.8933341,18.3599983 66.74,18.7 C66.6466662,18.3599983 66.4616681,18.1066675 66.185,17.94 C65.908332,17.7733325 65.6000017,17.69 65.26,17.69 C64.8399979,17.69 64.4950013,17.7799991 64.225,17.96 C63.9549987,18.1400009 63.7366675,18.3899984 63.57,18.71 L63.54,18.71 L63.54,17.84 L62.96,17.84 Z M71.23,19.42 C71.2500001,19.1199985 71.3133328,18.8600011 71.42,18.64 C71.5266672,18.4199989 71.6716658,18.2400007 71.855,18.1 C72.0383343,17.9599993 72.2533321,17.856667 72.5,17.79 C72.7466679,17.723333 73.0199985,17.69 73.32,17.69 C73.5466678,17.69 73.7733322,17.7116664 74,17.755 C74.2266678,17.7983335 74.4299991,17.8799994 74.61,18 C74.7900009,18.1200006 74.9366661,18.2883322 75.05,18.505 C75.1633339,18.7216678 75.22,19.0033316 75.22,19.35 L75.22,22.09 C75.22,22.3433346 75.3433321,22.47 75.59,22.47 C75.6633337,22.47 75.7299997,22.4566668 75.79,22.43 L75.79,22.96 C75.7166663,22.9733334 75.651667,22.9833333 75.595,22.99 C75.5383331,22.9966667 75.4666671,23 75.38,23 C75.2199992,23 75.0916672,22.9783336 74.995,22.935 C74.8983329,22.8916665 74.8233336,22.8300004 74.77,22.75 C74.7166664,22.6699996 74.6816668,22.5750005 74.665,22.465 C74.6483333,22.3549995 74.64,22.233334 74.64,22.1 L74.62,22.1 C74.5066661,22.2666675 74.3916673,22.4149994 74.275,22.545 C74.1583327,22.6750007 74.0283341,22.7833329 73.885,22.87 C73.7416659,22.9566671 73.5783343,23.0233331 73.395,23.07 C73.2116658,23.1166669 72.9933346,23.14 72.74,23.14 C72.4999988,23.14 72.2750011,23.111667 72.065,23.055 C71.854999,22.998333 71.6716675,22.9083339 71.515,22.785 C71.3583326,22.6616661 71.2350005,22.5050009 71.145,22.315 C71.0549996,22.124999 71.01,21.9000013 71.01,21.64 C71.01,21.2799982 71.0899992,20.9983344 71.25,20.795 C71.4100008,20.5916656 71.6216654,20.4366672 71.885,20.33 C72.1483347,20.2233328 72.4449984,20.1483336 72.775,20.105 C73.1050017,20.0616665 73.4399983,20.0200002 73.78,19.98 C73.913334,19.9666666 74.0299995,19.9500001 74.13,19.93 C74.2300005,19.9099999 74.313333,19.8750002 74.38,19.825 C74.446667,19.7749997 74.4983332,19.7066671 74.535,19.62 C74.5716669,19.5333329 74.59,19.4200007 74.59,19.28 C74.59,19.0666656 74.5550004,18.8916673 74.485,18.755 C74.4149996,18.6183326 74.318334,18.5100004 74.195,18.43 C74.0716661,18.3499996 73.9283342,18.2950001 73.765,18.265 C73.6016659,18.2349999 73.4266676,18.22 73.24,18.22 C72.839998,18.22 72.5133346,18.3149991 72.26,18.505 C72.0066654,18.695001 71.8733334,18.9999979 71.86,19.42 L71.23,19.42 Z M74.59,20.18 L74.57,20.18 C74.5299998,20.2533337 74.4533339,20.3066665 74.34,20.34 C74.2266661,20.3733335 74.1266671,20.3966666 74.04,20.41 C73.773332,20.4566669 73.4983347,20.4983332 73.215,20.535 C72.9316653,20.5716668 72.6733345,20.6266663 72.44,20.7 C72.2066655,20.7733337 72.0150008,20.8783327 71.865,21.015 C71.7149993,21.1516674 71.64,21.3466654 71.64,21.6 C71.64,21.7600008 71.6716664,21.901666 71.735,22.025 C71.7983337,22.148334 71.8833328,22.2549996 71.99,22.345 C72.0966672,22.4350005 72.2199993,22.5033331 72.36,22.55 C72.5000007,22.5966669 72.6433326,22.62 72.79,22.62 C73.0300012,22.62 73.2599989,22.5833337 73.48,22.51 C73.7000011,22.4366663 73.8916659,22.3300007 74.055,22.19 C74.2183342,22.0499993 74.3483329,21.880001 74.445,21.68 C74.5416672,21.479999 74.59,21.2533346 74.59,21 L74.59,20.18 Z M76.49,15.86 L76.49,23 L77.12,23 L77.12,15.86 L76.49,15.86 Z M78.34,15.86 L78.34,23 L78.97,23 L78.97,15.86 L78.34,15.86 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="173" height="46" viewBox="0 0 173 46" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="173" height="45" fill="#FFAE00"/>
<g transform="translate(126)">
<polygon fill="#FFF" points="18 21 30 21 24 27"/>
<path stroke="#FFF" stroke-linecap="square" d="M1.5,0.5 L1.5,44.5"/>
</g>
<path fill="#FFF" d="M28.697,23.71 L27.745,23.71 C27.7169999,24.3260031 27.7986657,24.8533311 27.99,25.292 C28.1813343,25.7306689 28.4543316,26.0899986 28.809,26.37 C29.1636684,26.6500014 29.5929975,26.857666 30.097,26.993 C30.6010025,27.128334 31.1469971,27.196 31.735,27.196 C32.3230029,27.196 32.8269979,27.1423339 33.247,27.035 C33.6670021,26.9276661 34.0193319,26.7876675 34.304,26.615 C34.5886681,26.4423325 34.8126659,26.2486677 34.976,26.034 C35.1393341,25.8193323 35.2653329,25.6070011 35.354,25.397 C35.4426671,25.1869989 35.4986665,24.9886676 35.522,24.802 C35.5453335,24.6153324 35.557,24.4660006 35.557,24.354 C35.557,23.9433313 35.489334,23.5933348 35.354,23.304 C35.218666,23.0146652 35.0320012,22.7696677 34.794,22.569 C34.5559988,22.3683323 34.2806682,22.200334 33.968,22.065 C33.6553318,21.929666 33.3216684,21.8153338 32.967,21.722 L30.531,21.12 C30.3256656,21.0733331 30.1320009,21.012667 29.95,20.938 C29.7679991,20.863333 29.6070007,20.7653339 29.467,20.644 C29.3269993,20.5226661 29.2173337,20.3756675 29.138,20.203 C29.0586663,20.0303325 29.019,19.8273345 29.019,19.594 C29.019,19.2206648 29.0889993,18.9080013 29.229,18.656 C29.3690007,18.4039987 29.5533322,18.2010008 29.782,18.047 C30.0106678,17.8929992 30.2766651,17.7810003 30.58,17.711 C30.8833349,17.6409996 31.1983317,17.606 31.525,17.606 C31.8796684,17.606 32.2179984,17.6549995 32.54,17.753 C32.8620016,17.8510005 33.1466654,17.9956657 33.394,18.187 C33.6413346,18.3783343 33.8419992,18.6163319 33.996,18.901 C34.1500008,19.1856681 34.2363332,19.5193314 34.255,19.902 L35.207,19.902 C35.207,19.3886641 35.1066677,18.9383353 34.906,18.551 C34.7053323,18.1636647 34.4370017,17.8393346 34.101,17.578 C33.7649983,17.3166654 33.3730022,17.1206673 32.925,16.99 C32.4769978,16.8593327 32.0056691,16.794 31.511,16.794 C30.8109965,16.794 30.2370022,16.8943323 29.789,17.095 C29.3409978,17.2956677 28.9886679,17.5406652 28.732,17.83 C28.475332,18.1193348 28.3003338,18.4273317 28.207,18.754 C28.1136662,19.0806683 28.067,19.3653321 28.067,19.608 C28.067,20.000002 28.1299994,20.331332 28.256,20.602 C28.3820006,20.872668 28.5476656,21.1013324 28.753,21.288 C28.9583344,21.4746676 29.1986653,21.6239994 29.474,21.736 C29.7493347,21.8480006 30.0316652,21.941333 30.321,22.016 L32.547,22.562 C32.7803345,22.6180003 33.0183321,22.6903329 33.261,22.779 C33.5036679,22.8676671 33.7253323,22.9819993 33.926,23.122 C34.1266677,23.2620007 34.2899994,23.4346656 34.416,23.64 C34.5420006,23.8453344 34.605,24.0879986 34.605,24.368 C34.605,24.7320018 34.5163342,25.042332 34.339,25.299 C34.1616658,25.555668 33.9400013,25.7656658 33.674,25.929 C33.4079987,26.0923341 33.1210015,26.211333 32.813,26.286 C32.5049985,26.360667 32.2203346,26.398 31.959,26.398 C31.5016644,26.398 31.0723353,26.3536671 30.671,26.265 C30.2696647,26.1763329 29.9220015,26.0293344 29.628,25.824 C29.3339985,25.6186656 29.1030008,25.3433351 28.935,24.998 C28.7669992,24.6526649 28.6876666,24.2233359 28.697,23.71 Z M36.901,19.776 L37.713,19.776 L37.713,21.148 L37.741,21.148 C37.9463344,20.6439975 38.2799977,20.2543347 38.742,19.979 C39.2040023,19.7036653 39.7289971,19.566 40.317,19.566 C40.8676694,19.566 41.345998,19.6686656 41.752,19.874 C42.158002,20.0793344 42.496332,20.3569983 42.767,20.707 C43.037668,21.0570017 43.2383327,21.4629977 43.369,21.925 C43.4996673,22.3870023 43.565,22.8746641 43.565,23.388 C43.565,23.9013359 43.4996673,24.3889977 43.369,24.851 C43.2383327,25.3130023 43.037668,25.7189982 42.767,26.069 C42.496332,26.4190017 42.158002,26.6943323 41.752,26.895 C41.345998,27.0956677 40.8676694,27.196 40.317,27.196 C40.0556654,27.196 39.7943346,27.1633337 39.533,27.098 C39.2716654,27.0326663 39.0290011,26.9346673 38.805,26.804 C38.5809989,26.6733327 38.3826675,26.510001 38.21,26.314 C38.0373325,26.117999 37.9043338,25.8893346 37.811,25.628 L37.783,25.628 L37.783,29.66 L36.901,29.66 L36.901,19.776 Z M42.683,23.388 C42.683,23.0146648 42.6386671,22.6436685 42.55,22.275 C42.4613329,21.9063315 42.3213343,21.5773348 42.13,21.288 C41.9386657,20.9986652 41.6936682,20.7630009 41.395,20.581 C41.0963318,20.3989991 40.7370021,20.308 40.317,20.308 C39.8316642,20.308 39.4256683,20.3919992 39.099,20.56 C38.7723317,20.7280008 38.511001,20.9519986 38.315,21.232 C38.118999,21.5120014 37.9813337,21.8386648 37.902,22.212 C37.8226663,22.5853352 37.783,22.9773313 37.783,23.388 C37.783,23.7613352 37.8273329,24.1323315 37.916,24.501 C38.0046671,24.8696685 38.1493323,25.1986652 38.35,25.488 C38.5506677,25.7773348 38.8119984,26.0129991 39.134,26.195 C39.4560016,26.3770009 39.850331,26.468 40.317,26.468 C40.7370021,26.468 41.0963318,26.3770009 41.395,26.195 C41.6936682,26.0129991 41.9386657,25.7773348 42.13,25.488 C42.3213343,25.1986652 42.4613329,24.8696685 42.55,24.501 C42.6386671,24.1323315 42.683,23.7613352 42.683,23.388 Z M44.951,17.004 L44.951,27 L45.833,27 L45.833,17.004 L44.951,17.004 Z M47.541,17.004 L47.541,18.418 L48.423,18.418 L48.423,17.004 L47.541,17.004 Z M47.541,19.776 L47.541,27 L48.423,27 L48.423,19.776 L47.541,19.776 Z M51.517,19.776 L51.517,17.606 L50.635,17.606 L50.635,19.776 L49.375,19.776 L49.375,20.518 L50.635,20.518 L50.635,25.46 C50.6256666,26.0760031 50.7376655,26.4983322 50.971,26.727 C51.2043345,26.9556678 51.6149971,27.07 52.203,27.07 C52.3336673,27.07 52.4643327,27.0653334 52.595,27.056 C52.7256673,27.0466666 52.8563327,27.042 52.987,27.042 L52.987,26.3 C52.7349987,26.3280001 52.4830013,26.342 52.231,26.342 C51.9136651,26.3233332 51.7153337,26.2323341 51.636,26.069 C51.5566663,25.9056658 51.517,25.6793348 51.517,25.39 L51.517,20.518 L52.987,20.518 L52.987,19.776 L51.517,19.776 Z M59.273,21.386 L62.549,21.386 C62.9316686,21.386 63.2629986,21.3416671 63.543,21.253 C63.8230014,21.1643329 64.0563324,21.0430008 64.243,20.889 C64.4296676,20.7349992 64.5696662,20.5553344 64.663,20.35 C64.7563338,20.1446656 64.803,19.9253345 64.803,19.692 C64.803,18.4413271 64.0516742,17.816 62.549,17.816 L59.273,17.816 L59.273,21.386 Z M58.321,17.004 L62.549,17.004 C62.9690021,17.004 63.3726647,17.0436663 63.76,17.123 C64.1473353,17.2023337 64.4879985,17.3376657 64.782,17.529 C65.0760015,17.7203343 65.3116658,17.9723318 65.489,18.285 C65.6663342,18.5976682 65.755,18.987331 65.755,19.454 C65.755,19.7153346 65.7130004,19.9696654 65.629,20.217 C65.5449996,20.4643346 65.4260008,20.6883323 65.272,20.889 C65.1179992,21.0896677 64.9360011,21.2599993 64.726,21.4 C64.5159989,21.5400007 64.2803346,21.6379997 64.019,21.694 L64.019,21.722 C64.6630032,21.8060004 65.1763314,22.0696644 65.559,22.513 C65.9416686,22.9563355 66.133,23.5046634 66.133,24.158 C66.133,24.3166675 66.1190001,24.4963323 66.091,24.697 C66.0629999,24.8976677 66.0070004,25.1029989 65.923,25.313 C65.8389996,25.5230011 65.7176675,25.7306656 65.559,25.936 C65.4003325,26.1413344 65.1880013,26.3209992 64.922,26.475 C64.6559987,26.6290008 64.3293353,26.7549995 63.942,26.853 C63.5546647,26.9510005 63.090336,27 62.549,27 L58.321,27 L58.321,17.004 Z M59.273,26.188 L62.549,26.188 C62.9036684,26.188 63.2396651,26.157667 63.557,26.097 C63.8743349,26.036333 64.1543321,25.9266675 64.397,25.768 C64.6396679,25.6093325 64.8309993,25.3970013 64.971,25.131 C65.1110007,24.8649987 65.181,24.5313353 65.181,24.13 C65.181,23.4859968 64.9546689,23.0030016 64.502,22.681 C64.0493311,22.3589984 63.3983376,22.198 62.549,22.198 L59.273,22.198 L59.273,26.188 Z M73.343,27 L73.343,19.776 L72.461,19.776 L72.461,23.57 C72.461,23.9340018 72.4190004,24.2909983 72.335,24.641 C72.2509996,24.9910018 72.1203342,25.301332 71.943,25.572 C71.7656658,25.842668 71.541668,26.0596659 71.271,26.223 C71.000332,26.3863341 70.6736686,26.468 70.291,26.468 C69.5909965,26.468 69.0986681,26.3000017 68.814,25.964 C68.5293319,25.6279983 68.3776668,25.1333366 68.359,24.48 L68.359,19.776 L67.477,19.776 L67.477,24.466 C67.477,24.8953355 67.5236662,25.2779983 67.617,25.614 C67.7103338,25.9500017 67.8573323,26.2346655 68.058,26.468 C68.2586677,26.7013345 68.5199984,26.8809994 68.842,27.007 C69.1640016,27.1330006 69.5536644,27.196 70.011,27.196 C70.552336,27.196 71.0446644,27.067668 71.488,26.811 C71.9313356,26.554332 72.2696655,26.1833358 72.503,25.698 L72.531,25.698 L72.531,27 L73.343,27 Z M76.409,19.776 L76.409,17.606 L75.527,17.606 L75.527,19.776 L74.267,19.776 L74.267,20.518 L75.527,20.518 L75.527,25.46 C75.5176666,26.0760031 75.6296655,26.4983322 75.863,26.727 C76.0963345,26.9556678 76.5069971,27.07 77.095,27.07 C77.2256673,27.07 77.3563327,27.0653334 77.487,27.056 C77.6176673,27.0466666 77.7483327,27.042 77.879,27.042 L77.879,26.3 C77.6269987,26.3280001 77.3750013,26.342 77.123,26.342 C76.8056651,26.3233332 76.6073337,26.2323341 76.528,26.069 C76.4486663,25.9056658 76.409,25.6793348 76.409,25.39 L76.409,20.518 L77.879,20.518 L77.879,19.776 L76.409,19.776 Z M80.553,19.776 L80.553,17.606 L79.671,17.606 L79.671,19.776 L78.411,19.776 L78.411,20.518 L79.671,20.518 L79.671,25.46 C79.6616666,26.0760031 79.7736655,26.4983322 80.007,26.727 C80.2403345,26.9556678 80.6509971,27.07 81.239,27.07 C81.3696673,27.07 81.5003327,27.0653334 81.631,27.056 C81.7616673,27.0466666 81.8923327,27.042 82.023,27.042 L82.023,26.3 C81.7709987,26.3280001 81.5190013,26.342 81.267,26.342 C80.9496651,26.3233332 80.7513337,26.2323341 80.672,26.069 C80.5926663,25.9056658 80.553,25.6793348 80.553,25.39 L80.553,20.518 L82.023,20.518 L82.023,19.776 L80.553,19.776 Z M86.349,20.308 C85.9289979,20.308 85.5603349,20.3966658 85.243,20.574 C84.9256651,20.7513342 84.6620011,20.9846652 84.452,21.274 C84.241999,21.5633348 84.0833339,21.8923315 83.976,22.261 C83.8686661,22.6296685 83.815,23.0053314 83.815,23.388 C83.815,23.7706686 83.8686661,24.1463315 83.976,24.515 C84.0833339,24.8836685 84.241999,25.2126652 84.452,25.502 C84.6620011,25.7913348 84.9256651,26.0246658 85.243,26.202 C85.5603349,26.3793342 85.9289979,26.468 86.349,26.468 C86.7690021,26.468 87.1376651,26.3793342 87.455,26.202 C87.7723349,26.0246658 88.035999,25.7913348 88.246,25.502 C88.4560011,25.2126652 88.6146661,24.8836685 88.722,24.515 C88.8293339,24.1463315 88.883,23.7706686 88.883,23.388 C88.883,23.0053314 88.8293339,22.6296685 88.722,22.261 C88.6146661,21.8923315 88.4560011,21.5633348 88.246,21.274 C88.035999,20.9846652 87.7723349,20.7513342 87.455,20.574 C87.1376651,20.3966658 86.7690021,20.308 86.349,20.308 Z M86.349,19.566 C86.8996694,19.566 87.3873312,19.6686656 87.812,19.874 C88.2366688,20.0793344 88.5936652,20.3546649 88.883,20.7 C89.1723348,21.0453351 89.3916659,21.4489977 89.541,21.911 C89.6903341,22.3730023 89.765,22.8653307 89.765,23.388 C89.765,23.9106693 89.6903341,24.4029977 89.541,24.865 C89.3916659,25.3270023 89.1723348,25.7306649 88.883,26.076 C88.5936652,26.4213351 88.2366688,26.6943323 87.812,26.895 C87.3873312,27.0956677 86.8996694,27.196 86.349,27.196 C85.7983306,27.196 85.3106688,27.0956677 84.886,26.895 C84.4613312,26.6943323 84.1043348,26.4213351 83.815,26.076 C83.5256652,25.7306649 83.3063341,25.3270023 83.157,24.865 C83.0076659,24.4029977 82.933,23.9106693 82.933,23.388 C82.933,22.8653307 83.0076659,22.3730023 83.157,21.911 C83.3063341,21.4489977 83.5256652,21.0453351 83.815,20.7 C84.1043348,20.3546649 84.4613312,20.0793344 84.886,19.874 C85.3106688,19.6686656 85.7983306,19.566 86.349,19.566 Z M91.067,19.776 L91.067,27 L91.949,27 L91.949,22.786 C91.9583334,22.4313316 92.0166661,22.1023348 92.124,21.799 C92.2313339,21.4956652 92.3806657,21.2343344 92.572,21.015 C92.7633343,20.7956656 92.9966653,20.6230006 93.272,20.497 C93.5473347,20.3709994 93.8623316,20.308 94.217,20.308 C94.5716684,20.308 94.8679988,20.3639994 95.106,20.476 C95.3440012,20.5880006 95.5329993,20.741999 95.673,20.938 C95.8130007,21.134001 95.9109997,21.3649987 95.967,21.631 C96.0230003,21.8970013 96.051,22.1839985 96.051,22.492 L96.051,27 L96.933,27 L96.933,22.352 C96.933,21.9226645 96.8910004,21.5353351 96.807,21.19 C96.7229996,20.8446649 96.5783344,20.5530012 96.373,20.315 C96.1676656,20.0769988 95.8946684,19.8926673 95.554,19.762 C95.2133316,19.6313327 94.7910025,19.566 94.287,19.566 C93.7736641,19.566 93.3023355,19.6989987 92.873,19.965 C92.4436645,20.2310013 92.1450008,20.5833311 91.977,21.022 L91.949,21.022 L91.949,19.776 L91.067,19.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="173" height="45" viewBox="0 0 173 45" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="173" height="45" fill="#2199E8"/>
<polygon fill="#FFF" points="139 21 151 21 145 27"/>
<path fill="#FFF" d="M18.699,18.004 L22.157,18.004 C23.6783409,18.0413335 24.8239961,18.4683293 25.594,19.285 C26.3640038,20.1016708 26.749,21.3406584 26.749,23.002 C26.749,24.6633416 26.3640038,25.9023293 25.594,26.719 C24.8239961,27.5356708 23.6783409,27.9626665 22.157,28 L18.699,28 L18.699,18.004 Z M19.651,27.188 L21.681,27.188 C22.3996703,27.188 23.0179974,27.1110008 23.536,26.957 C24.0540026,26.8029992 24.4809983,26.5580017 24.817,26.222 C25.1530017,25.8859983 25.4003325,25.4520027 25.559,24.92 C25.7176675,24.3879973 25.797,23.7486704 25.797,23.002 C25.797,22.2553296 25.7176675,21.6160027 25.559,21.084 C25.4003325,20.5519973 25.1530017,20.1180017 24.817,19.782 C24.4809983,19.4459983 24.0540026,19.2010008 23.536,19.047 C23.0179974,18.8929992 22.3996703,18.816 21.681,18.816 L19.651,18.816 L19.651,27.188 Z M28.121,20.776 L28.121,28 L29.003,28 L29.003,24.15 C29.003,23.7673314 29.0683327,23.4150016 29.199,23.093 C29.3296673,22.7709984 29.5139988,22.4933345 29.752,22.26 C29.9900012,22.0266655 30.2723317,21.8470006 30.599,21.721 C30.9256683,21.5949994 31.2896647,21.5413332 31.691,21.56 L31.691,20.678 C31.0376634,20.6499999 30.4753357,20.7946651 30.004,21.112 C29.5326643,21.4293349 29.1850011,21.8819971 28.961,22.47 L28.933,22.47 L28.933,20.776 L28.121,20.776 Z M35.331,21.308 C34.9109979,21.308 34.5423349,21.3966658 34.225,21.574 C33.9076651,21.7513342 33.644001,21.9846652 33.434,22.274 C33.2239989,22.5633348 33.0653339,22.8923315 32.958,23.261 C32.8506661,23.6296685 32.797,24.0053314 32.797,24.388 C32.797,24.7706686 32.8506661,25.1463315 32.958,25.515 C33.0653339,25.8836685 33.2239989,26.2126652 33.434,26.502 C33.644001,26.7913348 33.9076651,27.0246658 34.225,27.202 C34.5423349,27.3793342 34.9109979,27.468 35.331,27.468 C35.7510021,27.468 36.1196651,27.3793342 36.437,27.202 C36.7543349,27.0246658 37.0179989,26.7913348 37.228,26.502 C37.438001,26.2126652 37.5966661,25.8836685 37.704,25.515 C37.8113339,25.1463315 37.865,24.7706686 37.865,24.388 C37.865,24.0053314 37.8113339,23.6296685 37.704,23.261 C37.5966661,22.8923315 37.438001,22.5633348 37.228,22.274 C37.0179989,21.9846652 36.7543349,21.7513342 36.437,21.574 C36.1196651,21.3966658 35.7510021,21.308 35.331,21.308 Z M35.331,20.566 C35.8816694,20.566 36.3693312,20.6686656 36.794,20.874 C37.2186688,21.0793344 37.5756652,21.3546649 37.865,21.7 C38.1543348,22.0453351 38.3736659,22.4489977 38.523,22.911 C38.6723341,23.3730023 38.747,23.8653307 38.747,24.388 C38.747,24.9106693 38.6723341,25.4029977 38.523,25.865 C38.3736659,26.3270023 38.1543348,26.7306649 37.865,27.076 C37.5756652,27.4213351 37.2186688,27.6943323 36.794,27.895 C36.3693312,28.0956677 35.8816694,28.196 35.331,28.196 C34.7803306,28.196 34.2926688,28.0956677 33.868,27.895 C33.4433312,27.6943323 33.0863348,27.4213351 32.797,27.076 C32.5076652,26.7306649 32.2883341,26.3270023 32.139,25.865 C31.9896659,25.4029977 31.915,24.9106693 31.915,24.388 C31.915,23.8653307 31.9896659,23.3730023 32.139,22.911 C32.2883341,22.4489977 32.5076652,22.0453351 32.797,21.7 C33.0863348,21.3546649 33.4433312,21.0793344 33.868,20.874 C34.2926688,20.6686656 34.7803306,20.566 35.331,20.566 Z M40.063,20.776 L40.875,20.776 L40.875,22.148 L40.903,22.148 C41.1083344,21.6439975 41.4419977,21.2543347 41.904,20.979 C42.3660023,20.7036653 42.8909971,20.566 43.479,20.566 C44.0296694,20.566 44.507998,20.6686656 44.914,20.874 C45.320002,21.0793344 45.658332,21.3569983 45.929,21.707 C46.199668,22.0570017 46.4003327,22.4629977 46.531,22.925 C46.6616673,23.3870023 46.727,23.8746641 46.727,24.388 C46.727,24.9013359 46.6616673,25.3889977 46.531,25.851 C46.4003327,26.3130023 46.199668,26.7189982 45.929,27.069 C45.658332,27.4190017 45.320002,27.6943323 44.914,27.895 C44.507998,28.0956677 44.0296694,28.196 43.479,28.196 C43.2176654,28.196 42.9563346,28.1633337 42.695,28.098 C42.4336654,28.0326663 42.1910011,27.9346673 41.967,27.804 C41.7429989,27.6733327 41.5446675,27.510001 41.372,27.314 C41.1993325,27.117999 41.0663338,26.8893346 40.973,26.628 L40.945,26.628 L40.945,30.66 L40.063,30.66 L40.063,20.776 Z M45.845,24.388 C45.845,24.0146648 45.8006671,23.6436685 45.712,23.275 C45.6233329,22.9063315 45.4833343,22.5773348 45.292,22.288 C45.1006657,21.9986652 44.8556682,21.7630009 44.557,21.581 C44.2583318,21.3989991 43.8990021,21.308 43.479,21.308 C42.9936642,21.308 42.5876683,21.3919992 42.261,21.56 C41.9343317,21.7280008 41.673001,21.9519986 41.477,22.232 C41.280999,22.5120014 41.1433337,22.8386648 41.064,23.212 C40.9846663,23.5853352 40.945,23.9773313 40.945,24.388 C40.945,24.7613352 40.9893329,25.1323315 41.078,25.501 C41.1666671,25.8696685 41.3113323,26.1986652 41.512,26.488 C41.7126677,26.7773348 41.9739984,27.0129991 42.296,27.195 C42.6180016,27.3770009 43.012331,27.468 43.479,27.468 C43.8990021,27.468 44.2583318,27.3770009 44.557,27.195 C44.8556682,27.0129991 45.1006657,26.7773348 45.292,26.488 C45.4833343,26.1986652 45.6233329,25.8696685 45.712,25.501 C45.8006671,25.1323315 45.845,24.7613352 45.845,24.388 Z M54.455,28 L53.643,28 L53.643,26.628 L53.615,26.628 C53.5216662,26.8613345 53.3840009,27.075999 53.202,27.272 C53.0199991,27.468001 52.8123345,27.633666 52.579,27.769 C52.3456655,27.904334 52.0960013,28.009333 51.83,28.084 C51.5639987,28.158667 51.3003346,28.196 51.039,28.196 C50.4883306,28.196 50.010002,28.0956677 49.604,27.895 C49.197998,27.6943323 48.859668,27.4190017 48.589,27.069 C48.318332,26.7189982 48.1176673,26.3130023 47.987,25.851 C47.8563327,25.3889977 47.791,24.9013359 47.791,24.388 C47.791,23.8746641 47.8563327,23.3870023 47.987,22.925 C48.1176673,22.4629977 48.318332,22.0570017 48.589,21.707 C48.859668,21.3569983 49.197998,21.0793344 49.604,20.874 C50.010002,20.6686656 50.4883306,20.566 51.039,20.566 C51.309668,20.566 51.573332,20.5986663 51.83,20.664 C52.0866679,20.7293337 52.3269989,20.829666 52.551,20.965 C52.7750011,21.100334 52.9733325,21.265999 53.146,21.462 C53.3186675,21.658001 53.4516662,21.8866654 53.545,22.148 L53.573,22.148 L53.573,18.004 L54.455,18.004 L54.455,28 Z M48.673,24.388 C48.673,24.7613352 48.7173329,25.1323315 48.806,25.501 C48.8946671,25.8696685 49.0346657,26.1986652 49.226,26.488 C49.4173343,26.7773348 49.6623318,27.0129991 49.961,27.195 C50.2596682,27.3770009 50.6189979,27.468 51.039,27.468 C51.505669,27.468 51.8999984,27.3770009 52.222,27.195 C52.5440016,27.0129991 52.8053323,26.7773348 53.006,26.488 C53.2066677,26.1986652 53.3513329,25.8696685 53.44,25.501 C53.5286671,25.1323315 53.573,24.7613352 53.573,24.388 C53.573,24.0146648 53.5286671,23.6436685 53.44,23.275 C53.3513329,22.9063315 53.2066677,22.5773348 53.006,22.288 C52.8053323,21.9986652 52.5440016,21.7630009 52.222,21.581 C51.8999984,21.3989991 51.505669,21.308 51.039,21.308 C50.6189979,21.308 50.2596682,21.3989991 49.961,21.581 C49.6623318,21.7630009 49.4173343,21.9986652 49.226,22.288 C49.0346657,22.5773348 48.8946671,22.9063315 48.806,23.275 C48.7173329,23.6436685 48.673,24.0146648 48.673,24.388 Z M59.187,21.308 C58.7669979,21.308 58.3983349,21.3966658 58.081,21.574 C57.7636651,21.7513342 57.500001,21.9846652 57.29,22.274 C57.0799989,22.5633348 56.9213339,22.8923315 56.814,23.261 C56.7066661,23.6296685 56.653,24.0053314 56.653,24.388 C56.653,24.7706686 56.7066661,25.1463315 56.814,25.515 C56.9213339,25.8836685 57.0799989,26.2126652 57.29,26.502 C57.500001,26.7913348 57.7636651,27.0246658 58.081,27.202 C58.3983349,27.3793342 58.7669979,27.468 59.187,27.468 C59.6070021,27.468 59.9756651,27.3793342 60.293,27.202 C60.6103349,27.0246658 60.8739989,26.7913348 61.084,26.502 C61.294001,26.2126652 61.4526661,25.8836685 61.56,25.515 C61.6673339,25.1463315 61.721,24.7706686 61.721,24.388 C61.721,24.0053314 61.6673339,23.6296685 61.56,23.261 C61.4526661,22.8923315 61.294001,22.5633348 61.084,22.274 C60.8739989,21.9846652 60.6103349,21.7513342 60.293,21.574 C59.9756651,21.3966658 59.6070021,21.308 59.187,21.308 Z M59.187,20.566 C59.7376694,20.566 60.2253312,20.6686656 60.65,20.874 C61.0746688,21.0793344 61.4316652,21.3546649 61.721,21.7 C62.0103348,22.0453351 62.2296659,22.4489977 62.379,22.911 C62.5283341,23.3730023 62.603,23.8653307 62.603,24.388 C62.603,24.9106693 62.5283341,25.4029977 62.379,25.865 C62.2296659,26.3270023 62.0103348,26.7306649 61.721,27.076 C61.4316652,27.4213351 61.0746688,27.6943323 60.65,27.895 C60.2253312,28.0956677 59.7376694,28.196 59.187,28.196 C58.6363306,28.196 58.1486688,28.0956677 57.724,27.895 C57.2993312,27.6943323 56.9423348,27.4213351 56.653,27.076 C56.3636652,26.7306649 56.1443341,26.3270023 55.995,25.865 C55.8456659,25.4029977 55.771,24.9106693 55.771,24.388 C55.771,23.8653307 55.8456659,23.3730023 55.995,22.911 C56.1443341,22.4489977 56.3636652,22.0453351 56.653,21.7 C56.9423348,21.3546649 57.2993312,21.0793344 57.724,20.874 C58.1486688,20.6686656 58.6363306,20.566 59.187,20.566 Z M63.191,20.776 L65.515,28 L66.481,28 L68.245,21.924 L68.273,21.924 L70.051,28 L71.017,28 L73.341,20.776 L72.403,20.776 L70.555,26.964 L70.527,26.964 L68.763,20.776 L67.769,20.776 L66.005,26.964 L65.977,26.964 L64.129,20.776 L63.191,20.776 Z M74.279,20.776 L74.279,28 L75.161,28 L75.161,23.786 C75.1703334,23.4313316 75.2286661,23.1023348 75.336,22.799 C75.4433339,22.4956652 75.5926657,22.2343344 75.784,22.015 C75.9753343,21.7956656 76.2086653,21.6230006 76.484,21.497 C76.7593347,21.3709994 77.0743316,21.308 77.429,21.308 C77.7836684,21.308 78.0799988,21.3639994 78.318,21.476 C78.5560012,21.5880006 78.7449993,21.741999 78.885,21.938 C79.0250007,22.134001 79.1229997,22.3649987 79.179,22.631 C79.2350003,22.8970013 79.263,23.1839985 79.263,23.492 L79.263,28 L80.145,28 L80.145,23.352 C80.145,22.9226645 80.1030004,22.5353351 80.019,22.19 C79.9349996,21.8446649 79.7903344,21.5530012 79.585,21.315 C79.3796656,21.0769988 79.1066684,20.8926673 78.766,20.762 C78.4253316,20.6313327 78.0030025,20.566 77.499,20.566 C76.9856641,20.566 76.5143355,20.6989987 76.085,20.965 C75.6556645,21.2310013 75.3570008,21.5833311 75.189,22.022 L75.161,22.022 L75.161,20.776 L74.279,20.776 Z M86.823,22.386 L90.099,22.386 C90.4816686,22.386 90.8129986,22.3416671 91.093,22.253 C91.3730014,22.1643329 91.6063324,22.0430008 91.793,21.889 C91.9796676,21.7349992 92.1196662,21.5553344 92.213,21.35 C92.3063338,21.1446656 92.353,20.9253345 92.353,20.692 C92.353,19.4413271 91.6016742,18.816 90.099,18.816 L86.823,18.816 L86.823,22.386 Z M85.871,18.004 L90.099,18.004 C90.5190021,18.004 90.9226647,18.0436663 91.31,18.123 C91.6973353,18.2023337 92.0379985,18.3376657 92.332,18.529 C92.6260015,18.7203343 92.8616658,18.9723318 93.039,19.285 C93.2163342,19.5976682 93.305,19.987331 93.305,20.454 C93.305,20.7153346 93.2630004,20.9696654 93.179,21.217 C93.0949996,21.4643346 92.9760008,21.6883323 92.822,21.889 C92.6679992,22.0896677 92.486001,22.2599993 92.276,22.4 C92.0659989,22.5400007 91.8303346,22.6379997 91.569,22.694 L91.569,22.722 C92.2130032,22.8060004 92.7263314,23.0696644 93.109,23.513 C93.4916686,23.9563355 93.683,24.5046634 93.683,25.158 C93.683,25.3166675 93.6690001,25.4963323 93.641,25.697 C93.6129999,25.8976677 93.5570004,26.1029989 93.473,26.313 C93.3889996,26.5230011 93.2676675,26.7306656 93.109,26.936 C92.9503325,27.1413344 92.7380013,27.3209992 92.472,27.475 C92.2059987,27.6290008 91.8793353,27.7549995 91.492,27.853 C91.1046647,27.9510005 90.640336,28 90.099,28 L85.871,28 L85.871,18.004 Z M86.823,27.188 L90.099,27.188 C90.4536684,27.188 90.7896651,27.157667 91.107,27.097 C91.4243349,27.036333 91.7043321,26.9266675 91.947,26.768 C92.1896679,26.6093325 92.3809993,26.3970013 92.521,26.131 C92.6610007,25.8649987 92.731,25.5313353 92.731,25.13 C92.731,24.4859968 92.5046689,24.0030016 92.052,23.681 C91.5993311,23.3589984 90.9483376,23.198 90.099,23.198 L86.823,23.198 L86.823,27.188 Z M100.893,28 L100.893,20.776 L100.011,20.776 L100.011,24.57 C100.011,24.9340018 99.9690004,25.2909983 99.885,25.641 C99.8009996,25.9910018 99.6703342,26.301332 99.493,26.572 C99.3156658,26.842668 99.091668,27.0596659 98.821,27.223 C98.550332,27.3863341 98.2236686,27.468 97.841,27.468 C97.1409965,27.468 96.6486681,27.3000017 96.364,26.964 C96.0793319,26.6279983 95.9276668,26.1333366 95.909,25.48 L95.909,20.776 L95.027,20.776 L95.027,25.466 C95.027,25.8953355 95.0736662,26.2779983 95.167,26.614 C95.2603338,26.9500017 95.4073323,27.2346655 95.608,27.468 C95.8086677,27.7013345 96.0699984,27.8809994 96.392,28.007 C96.7140016,28.1330006 97.1036644,28.196 97.561,28.196 C98.102336,28.196 98.5946644,28.067668 99.038,27.811 C99.4813355,27.554332 99.8196655,27.1833358 100.053,26.698 L100.081,26.698 L100.081,28 L100.893,28 Z M103.959,20.776 L103.959,18.606 L103.077,18.606 L103.077,20.776 L101.817,20.776 L101.817,21.518 L103.077,21.518 L103.077,26.46 C103.067667,27.0760031 103.179665,27.4983322 103.413,27.727 C103.646334,27.9556678 104.056997,28.07 104.645,28.07 C104.775667,28.07 104.906333,28.0653334 105.037,28.056 C105.167667,28.0466666 105.298333,28.042 105.429,28.042 L105.429,27.3 C105.176999,27.3280001 104.925001,27.342 104.673,27.342 C104.355665,27.3233332 104.157334,27.2323341 104.078,27.069 C103.998666,26.9056658 103.959,26.6793348 103.959,26.39 L103.959,21.518 L105.429,21.518 L105.429,20.776 L103.959,20.776 Z M108.103,20.776 L108.103,18.606 L107.221,18.606 L107.221,20.776 L105.961,20.776 L105.961,21.518 L107.221,21.518 L107.221,26.46 C107.211667,27.0760031 107.323665,27.4983322 107.557,27.727 C107.790334,27.9556678 108.200997,28.07 108.789,28.07 C108.919667,28.07 109.050333,28.0653334 109.181,28.056 C109.311667,28.0466666 109.442333,28.042 109.573,28.042 L109.573,27.3 C109.320999,27.3280001 109.069001,27.342 108.817,27.342 C108.499665,27.3233332 108.301334,27.2323341 108.222,27.069 C108.142666,26.9056658 108.103,26.6793348 108.103,26.39 L108.103,21.518 L109.573,21.518 L109.573,20.776 L108.103,20.776 Z M113.899,21.308 C113.478998,21.308 113.110335,21.3966658 112.793,21.574 C112.475665,21.7513342 112.212001,21.9846652 112.002,22.274 C111.791999,22.5633348 111.633334,22.8923315 111.526,23.261 C111.418666,23.6296685 111.365,24.0053314 111.365,24.388 C111.365,24.7706686 111.418666,25.1463315 111.526,25.515 C111.633334,25.8836685 111.791999,26.2126652 112.002,26.502 C112.212001,26.7913348 112.475665,27.0246658 112.793,27.202 C113.110335,27.3793342 113.478998,27.468 113.899,27.468 C114.319002,27.468 114.687665,27.3793342 115.005,27.202 C115.322335,27.0246658 115.585999,26.7913348 115.796,26.502 C116.006001,26.2126652 116.164666,25.8836685 116.272,25.515 C116.379334,25.1463315 116.433,24.7706686 116.433,24.388 C116.433,24.0053314 116.379334,23.6296685 116.272,23.261 C116.164666,22.8923315 116.006001,22.5633348 115.796,22.274 C115.585999,21.9846652 115.322335,21.7513342 115.005,21.574 C114.687665,21.3966658 114.319002,21.308 113.899,21.308 Z M113.899,20.566 C114.449669,20.566 114.937331,20.6686656 115.362,20.874 C115.786669,21.0793344 116.143665,21.3546649 116.433,21.7 C116.722335,22.0453351 116.941666,22.4489977 117.091,22.911 C117.240334,23.3730023 117.315,23.8653307 117.315,24.388 C117.315,24.9106693 117.240334,25.4029977 117.091,25.865 C116.941666,26.3270023 116.722335,26.7306649 116.433,27.076 C116.143665,27.4213351 115.786669,27.6943323 115.362,27.895 C114.937331,28.0956677 114.449669,28.196 113.899,28.196 C113.348331,28.196 112.860669,28.0956677 112.436,27.895 C112.011331,27.6943323 111.654335,27.4213351 111.365,27.076 C111.075665,26.7306649 110.856334,26.3270023 110.707,25.865 C110.557666,25.4029977 110.483,24.9106693 110.483,24.388 C110.483,23.8653307 110.557666,23.3730023 110.707,22.911 C110.856334,22.4489977 111.075665,22.0453351 111.365,21.7 C111.654335,21.3546649 112.011331,21.0793344 112.436,20.874 C112.860669,20.6686656 113.348331,20.566 113.899,20.566 Z M118.617,20.776 L118.617,28 L119.499,28 L119.499,23.786 C119.508333,23.4313316 119.566666,23.1023348 119.674,22.799 C119.781334,22.4956652 119.930666,22.2343344 120.122,22.015 C120.313334,21.7956656 120.546665,21.6230006 120.822,21.497 C121.097335,21.3709994 121.412332,21.308 121.767,21.308 C122.121668,21.308 122.417999,21.3639994 122.656,21.476 C122.894001,21.5880006 123.082999,21.741999 123.223,21.938 C123.363001,22.134001 123.461,22.3649987 123.517,22.631 C123.573,22.8970013 123.601,23.1839985 123.601,23.492 L123.601,28 L124.483,28 L124.483,23.352 C124.483,22.9226645 124.441,22.5353351 124.357,22.19 C124.273,21.8446649 124.128334,21.5530012 123.923,21.315 C123.717666,21.0769988 123.444668,20.8926673 123.104,20.762 C122.763332,20.6313327 122.341003,20.566 121.837,20.566 C121.323664,20.566 120.852335,20.6989987 120.423,20.965 C119.993665,21.2310013 119.695001,21.5833311 119.527,22.022 L119.499,22.022 L119.499,20.776 L118.617,20.776 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="93" height="30" viewBox="0 0 93 30" id="svg">
<g fill="none" fill-rule="evenodd">
<rect width="93" height="30" fill="#EC5840"/>
<path fill="#FFF" d="M31.395,16.65 L30.715,16.65 C30.6949999,17.0900022 30.7533327,17.4666651 30.89,17.78 C31.0266674,18.0933349 31.2216654,18.349999 31.475,18.55 C31.7283346,18.750001 32.0349982,18.8983328 32.395,18.995 C32.7550018,19.0916671 33.1449979,19.14 33.565,19.14 C33.9850021,19.14 34.3449985,19.101667 34.645,19.025 C34.9450015,18.9483329 35.1966657,18.8483339 35.4,18.725 C35.6033344,18.601666 35.7633328,18.4633341 35.88,18.31 C35.9966673,18.1566659 36.0866664,18.0050007 36.15,17.855 C36.2133337,17.7049992 36.2533333,17.563334 36.27,17.43 C36.2866668,17.296666 36.295,17.1900004 36.295,17.11 C36.295,16.8166652 36.2466672,16.5666677 36.15,16.36 C36.0533329,16.1533323 35.9200009,15.978334 35.75,15.835 C35.5799992,15.6916659 35.3833345,15.5716671 35.16,15.475 C34.9366656,15.3783328 34.6983346,15.296667 34.445,15.23 L32.705,14.8 C32.5583326,14.7666665 32.4200007,14.7233336 32.29,14.67 C32.1599994,14.6166664 32.0450005,14.5466671 31.945,14.46 C31.8449995,14.3733329 31.766667,14.2683339 31.71,14.145 C31.6533331,14.021666 31.625,13.8766675 31.625,13.71 C31.625,13.443332 31.6749995,13.2200009 31.775,13.04 C31.8750005,12.8599991 32.0066659,12.7150005 32.17,12.605 C32.3333342,12.4949994 32.5233323,12.4150002 32.74,12.365 C32.9566678,12.3149997 33.1816655,12.29 33.415,12.29 C33.6683346,12.29 33.9099989,12.3249996 34.14,12.395 C34.3700012,12.4650003 34.5733325,12.5683326 34.75,12.705 C34.9266676,12.8416673 35.0699995,13.0116656 35.18,13.215 C35.2900006,13.4183343 35.3516666,13.6566653 35.365,13.93 L36.045,13.93 C36.045,13.5633315 35.9733341,13.241668 35.83,12.965 C35.686666,12.6883319 35.4950012,12.4566676 35.255,12.27 C35.0149988,12.0833324 34.7350016,11.9433338 34.415,11.85 C34.0949984,11.7566662 33.7583351,11.71 33.405,11.71 C32.9049975,11.71 32.4950016,11.7816659 32.175,11.925 C31.8549984,12.068334 31.6033343,12.2433323 31.42,12.45 C31.2366658,12.6566677 31.111667,12.8766655 31.045,13.11 C30.978333,13.3433345 30.945,13.5466658 30.945,13.72 C30.945,14.0000014 30.9899996,14.2366657 31.08,14.43 C31.1700005,14.6233343 31.2883326,14.786666 31.435,14.92 C31.5816674,15.053334 31.7533324,15.1599996 31.95,15.24 C32.1466677,15.3200004 32.3483323,15.3866664 32.555,15.44 L34.145,15.83 C34.3116675,15.8700002 34.4816658,15.9216663 34.655,15.985 C34.8283342,16.0483336 34.986666,16.1299995 35.13,16.23 C35.2733341,16.3300005 35.3899996,16.4533326 35.48,16.6 C35.5700005,16.7466674 35.615,16.919999 35.615,17.12 C35.615,17.3800013 35.5516673,17.6016657 35.425,17.785 C35.2983327,17.9683342 35.140001,18.1183327 34.95,18.235 C34.7599991,18.3516672 34.5550011,18.4366664 34.335,18.49 C34.1149989,18.5433336 33.9116676,18.57 33.725,18.57 C33.3983317,18.57 33.0916681,18.5383336 32.805,18.475 C32.5183319,18.4116663 32.2700011,18.3066674 32.06,18.16 C31.849999,18.0133326 31.6850006,17.8166679 31.565,17.57 C31.4449994,17.3233321 31.3883333,17.0166685 31.395,16.65 Z"/>
<path stroke="#FFF" stroke-width=".5" d="M39.435,14.22 C39.1349985,14.22 38.8716678,14.2833327 38.645,14.41 C38.4183322,14.5366673 38.2300007,14.7033323 38.08,14.91 C37.9299992,15.1166677 37.816667,15.3516654 37.74,15.615 C37.6633329,15.8783347 37.625,16.1466653 37.625,16.42 C37.625,16.6933347 37.6633329,16.9616654 37.74,17.225 C37.816667,17.4883347 37.9299992,17.7233323 38.08,17.93 C38.2300007,18.1366677 38.4183322,18.3033327 38.645,18.43 C38.8716678,18.5566673 39.1349985,18.62 39.435,18.62 C39.7350015,18.62 39.9983322,18.5566673 40.225,18.43 C40.4516678,18.3033327 40.6399992,18.1366677 40.79,17.93 C40.9400007,17.7233323 41.0533329,17.4883347 41.13,17.225 C41.2066671,16.9616654 41.245,16.6933347 41.245,16.42 C41.245,16.1466653 41.2066671,15.8783347 41.13,15.615 C41.0533329,15.3516654 40.9400007,15.1166677 40.79,14.91 C40.6399992,14.7033323 40.4516678,14.5366673 40.225,14.41 C39.9983322,14.2833327 39.7350015,14.22 39.435,14.22 Z"/>
<polygon fill="#FFF" points="44.955 11.86 44.955 12.44 47.435 12.44 47.435 19 48.115 19 48.115 12.44 50.605 12.44 50.605 11.86"/>
<polygon fill="#FFF" points="51.405 11.86 51.405 12.87 52.035 12.87 52.035 11.86"/>
<polygon fill="#FFF" points="51.405 13.84 51.405 19 52.035 19 52.035 13.84"/>
<path fill="#FFF" d="M53.235 13.84L53.235 19 53.865 19 53.865 15.99C53.8716667 15.7366654 53.913333 15.5016677 53.99 15.285 54.0666671 15.0683322 54.1733327 14.8816674 54.31 14.725 54.4466674 14.5683325 54.6133324 14.4450004 54.81 14.355 55.0066677 14.2649995 55.2316654 14.22 55.485 14.22 55.7383346 14.22 55.9499992 14.2599996 56.12 14.34 56.2900009 14.4200004 56.4249995 14.5299993 56.525 14.67 56.6250005 14.8100007 56.6949998 14.974999 56.735 15.165 56.7750002 15.3550009 56.795 15.5599989 56.795 15.78L56.795 19 57.425 19 57.425 15.68C57.425 15.3733318 57.3950003 15.0966679 57.335 14.85 57.2749997 14.6033321 57.1716674 14.3950008 57.025 14.225 56.8783326 14.0549991 56.6833346 13.9233338 56.44 13.83 56.1966655 13.7366662 55.8950018 13.69 55.535 13.69 55.1683315 13.69 54.8316682 13.784999 54.525 13.975 54.2183318 14.1650009 54.0050006 14.4166651 53.885 14.73L53.865 14.73 53.865 13.84 53.235 13.84zM58.035 13.84L60.095 18.98 59.875 19.56C59.8216664 19.6800006 59.7716669 19.7899995 59.725 19.89 59.6783331 19.9900005 59.621667 20.0749996 59.555 20.145 59.488333 20.2150003 59.4100004 20.2699998 59.32 20.31 59.2299995 20.3500002 59.1150007 20.37 58.975 20.37 58.9016663 20.37 58.8300003 20.365 58.76 20.355 58.6899996 20.3449999 58.6183337 20.3333334 58.545 20.32L58.545 20.85C58.5983336 20.8700001 58.6599996 20.8816666 58.73 20.885 58.8000003 20.8883333 58.8983327 20.8933333 59.025 20.9 59.225001 20.9 59.3899993 20.8816668 59.52 20.845 59.6500006 20.8083331 59.7633328 20.7483337 59.86 20.665 59.9566671 20.5816662 60.0449996 20.468334 60.125 20.325 60.2050004 20.1816659 60.2916662 20.0000011 60.385 19.78L62.625 13.84 61.995 13.84 60.405 18.24 58.705 13.84 58.035 13.84z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="301" height="39" viewBox="0 0 301 39" id="svg">
<defs>
<rect id="input-text-a" width="301" height="39"/>
<filter id="input-text-b" width="101.3%" height="110.3%" x="-.7%" y="-5.1%" filterUnits="objectBoundingBox">
<feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/>
<feOffset dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"/>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/>
<feColorMatrix in="shadowInnerInner1" values="0 0 0 0 0.0399394133 0 0 0 0 0.0399394133 0 0 0 0 0.0399394133 0 0 0 0.0859941123 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<use fill="#FEFEFE" xlink:href="#input-text-a"/>
<use fill="#000" filter="url(#input-text-b)" xlink:href="#input-text-a"/>
<rect width="300" height="38" x=".5" y=".5" stroke="#CACACA"/>
<path fill="#6C6C6C" d="M17.312,13.576 L17.312,25 L18.832,25 L18.832,13.576 L17.312,13.576 Z M21.168,16.728 L21.168,25 L22.528,25 L22.528,20.328 C22.528,19.9546648 22.5786662,19.6106682 22.68,19.296 C22.7813338,18.9813318 22.9333323,18.7066678 23.136,18.472 C23.3386677,18.2373322 23.5919985,18.0560006 23.896,17.928 C24.2000015,17.7999994 24.5599979,17.736 24.976,17.736 C25.4986693,17.736 25.9093318,17.8853318 26.208,18.184 C26.5066682,18.4826682 26.656,18.8879974 26.656,19.4 L26.656,25 L28.016,25 L28.016,19.56 C28.016,19.1119978 27.9706671,18.7040018 27.88,18.336 C27.7893329,17.9679982 27.6320011,17.650668 27.408,17.384 C27.1839989,17.117332 26.8906685,16.9093341 26.528,16.76 C26.1653315,16.6106659 25.7120027,16.536 25.168,16.536 C23.9413272,16.536 23.0453362,17.0373283 22.48,18.04 L22.448,18.04 L22.448,16.728 L21.168,16.728 Z M30.112,16.728 L31.472,16.728 L31.472,17.848 L31.504,17.848 C31.7280011,17.389331 32.0799976,17.056001 32.56,16.848 C33.0400024,16.639999 33.5679971,16.536 34.144,16.536 C34.7840032,16.536 35.341331,16.6533322 35.816,16.888 C36.290669,17.1226678 36.6853318,17.439998 37,17.84 C37.3146682,18.240002 37.5519992,18.7013307 37.712,19.224 C37.8720008,19.7466693 37.952,20.3013304 37.952,20.888 C37.952,21.4746696 37.8746674,22.0293307 37.72,22.552 C37.5653326,23.0746693 37.3306682,23.5306647 37.016,23.92 C36.7013318,24.3093353 36.306669,24.6159989 35.832,24.84 C35.357331,25.0640011 34.8053365,25.176 34.176,25.176 C33.9733323,25.176 33.7466679,25.1546669 33.496,25.112 C33.2453321,25.0693331 32.9973346,25.0000005 32.752,24.904 C32.5066654,24.8079995 32.2746678,24.6773342 32.056,24.512 C31.8373322,24.3466658 31.6533341,24.1413346 31.504,23.896 L31.472,23.896 L31.472,28.152 L30.112,28.152 L30.112,16.728 Z M36.512,20.792 C36.512,20.4079981 36.4613338,20.0320018 36.36,19.664 C36.2586662,19.2959982 36.104001,18.9680014 35.896,18.68 C35.687999,18.3919986 35.421335,18.1626675 35.096,17.992 C34.770665,17.8213325 34.3893355,17.736 33.952,17.736 C33.493331,17.736 33.1040016,17.8266658 32.784,18.008 C32.4639984,18.1893342 32.2026677,18.4266652 32,18.72 C31.7973323,19.0133348 31.6506671,19.3466648 31.56,19.72 C31.4693329,20.0933352 31.424,20.4719981 31.424,20.856 C31.424,21.2613354 31.4719995,21.6533314 31.568,22.032 C31.6640005,22.4106686 31.815999,22.7439986 32.024,23.032 C32.232001,23.3200014 32.5013317,23.5519991 32.832,23.728 C33.1626683,23.9040009 33.5626643,23.992 34.032,23.992 C34.5013357,23.992 34.8933318,23.9013342 35.208,23.72 C35.5226682,23.5386658 35.775999,23.2986682 35.968,23 C36.160001,22.7013318 36.2986662,22.3600019 36.384,21.976 C36.4693338,21.5919981 36.512,21.1973354 36.512,20.792 Z M46.4,25 L46.4,16.728 L45.04,16.728 L45.04,21.4 C45.04,21.7733352 44.9893338,22.1173318 44.888,22.432 C44.7866662,22.7466682 44.6346677,23.0213322 44.432,23.256 C44.2293323,23.4906678 43.9760015,23.6719994 43.672,23.8 C43.3679985,23.9280006 43.0080021,23.992 42.592,23.992 C42.0693307,23.992 41.6586682,23.8426682 41.36,23.544 C41.0613318,23.2453318 40.912,22.8400026 40.912,22.328 L40.912,16.728 L39.552,16.728 L39.552,22.168 C39.552,22.6160022 39.5973329,23.0239982 39.688,23.392 C39.7786671,23.7600018 39.9359989,24.077332 40.16,24.344 C40.3840011,24.610668 40.6773315,24.8159993 41.04,24.96 C41.4026685,25.1040007 41.8559973,25.176 42.4,25.176 C43.008003,25.176 43.5359978,25.0560012 43.984,24.816 C44.4320022,24.5759988 44.7999986,24.2000026 45.088,23.688 L45.12,23.688 L45.12,25 L46.4,25 Z M50.336,16.728 L50.336,14.248 L48.976,14.248 L48.976,16.728 L47.568,16.728 L47.568,17.928 L48.976,17.928 L48.976,23.192 C48.976,23.5760019 49.013333,23.8853322 49.088,24.12 C49.162667,24.3546678 49.2773326,24.5359994 49.432,24.664 C49.5866674,24.7920006 49.7893321,24.8799998 50.04,24.928 C50.2906679,24.9760002 50.5919982,25 50.944,25 L51.984,25 L51.984,23.8 L51.36,23.8 C51.1466656,23.8 50.973334,23.7920001 50.84,23.776 C50.706666,23.7599999 50.602667,23.7253336 50.528,23.672 C50.453333,23.6186664 50.4026668,23.5440005 50.376,23.448 C50.3493332,23.3519995 50.336,23.2240008 50.336,23.064 L50.336,17.928 L51.984,17.928 L51.984,16.728 L50.336,16.728 Z M61.664,25 L64.688,16.728 L63.264,16.728 L61.008,23.624 L60.976,23.624 L58.656,16.728 L57.136,16.728 L60.208,25 L61.664,25 Z M73.264,24.968 C73.0293322,25.1066674 72.7040021,25.176 72.288,25.176 C71.9359982,25.176 71.656001,25.0773343 71.448,24.88 C71.239999,24.6826657 71.136,24.3600022 71.136,23.912 C70.7626648,24.3600022 70.3280025,24.6826657 69.832,24.88 C69.3359975,25.0773343 68.8000029,25.176 68.224,25.176 C67.8506648,25.176 67.4960017,25.1333338 67.16,25.048 C66.8239983,24.9626662 66.5333346,24.8293342 66.288,24.648 C66.0426654,24.4666658 65.8480007,24.2293348 65.704,23.936 C65.5599993,23.6426652 65.488,23.2880021 65.488,22.872 C65.488,22.4026643 65.5679992,22.0186682 65.728,21.72 C65.8880008,21.4213318 66.0986654,21.1786676 66.36,20.992 C66.6213346,20.8053324 66.9199983,20.6640005 67.256,20.568 C67.5920017,20.4719995 67.9359982,20.3920003 68.288,20.328 C68.6613352,20.253333 69.0159983,20.1973335 69.352,20.16 C69.6880017,20.1226665 69.9839987,20.0693337 70.24,20 C70.4960013,19.9306663 70.6986659,19.829334 70.848,19.696 C70.9973341,19.562666 71.072,19.3680013 71.072,19.112 C71.072,18.8133318 71.0160006,18.5733342 70.904,18.392 C70.7919994,18.2106658 70.6480009,18.0720005 70.472,17.976 C70.2959991,17.8799995 70.0986678,17.8160002 69.88,17.784 C69.6613322,17.7519998 69.4453344,17.736 69.232,17.736 C68.6559971,17.736 68.1760019,17.8453322 67.792,18.064 C67.4079981,18.2826678 67.2000002,18.695997 67.168,19.304 L65.808,19.304 C65.8293334,18.7919974 65.935999,18.3600018 66.128,18.008 C66.320001,17.6559982 66.5759984,17.3706678 66.896,17.152 C67.2160016,16.9333322 67.5813313,16.7760005 67.992,16.68 C68.4026687,16.5839995 68.8426643,16.536 69.312,16.536 C69.6853352,16.536 70.0559982,16.5626664 70.424,16.616 C70.7920018,16.6693336 71.1253318,16.7786658 71.424,16.944 C71.7226682,17.1093342 71.9626658,17.3413318 72.144,17.64 C72.3253342,17.9386682 72.416,18.3279976 72.416,18.808 L72.416,23.064 C72.416,23.3840016 72.4346665,23.6186659 72.472,23.768 C72.5093335,23.9173341 72.6346656,23.992 72.848,23.992 C72.9653339,23.992 73.1039992,23.9653336 73.264,23.912 L73.264,24.968 Z M71.056,20.728 C70.8853325,20.8560006 70.6613347,20.949333 70.384,21.008 C70.1066653,21.066667 69.8160015,21.1146665 69.512,21.152 C69.2079985,21.1893335 68.9013349,21.2319998 68.592,21.28 C68.2826651,21.3280002 68.0053346,21.4053328 67.76,21.512 C67.5146654,21.6186672 67.3146674,21.7706657 67.16,21.968 C67.0053326,22.1653343 66.928,22.434665 66.928,22.776 C66.928,23.0000011 66.9733329,23.1893326 67.064,23.344 C67.1546671,23.4986674 67.2719993,23.6239995 67.416,23.72 C67.5600007,23.8160005 67.727999,23.8853331 67.92,23.928 C68.112001,23.9706669 68.3146656,23.992 68.528,23.992 C68.9760022,23.992 69.3599984,23.9306673 69.68,23.808 C70.0000016,23.6853327 70.2613323,23.5306676 70.464,23.344 C70.6666677,23.1573324 70.8159995,22.9546678 70.912,22.736 C71.0080005,22.5173322 71.056,22.312001 71.056,22.12 L71.056,20.728 Z M74.608,13.576 L74.608,25 L75.968,25 L75.968,13.576 L74.608,13.576 Z M84.928,25 L84.928,16.728 L83.568,16.728 L83.568,21.4 C83.568,21.7733352 83.5173338,22.1173318 83.416,22.432 C83.3146662,22.7466682 83.1626677,23.0213322 82.96,23.256 C82.7573323,23.4906678 82.5040015,23.6719994 82.2,23.8 C81.8959985,23.9280006 81.5360021,23.992 81.12,23.992 C80.5973307,23.992 80.1866682,23.8426682 79.888,23.544 C79.5893318,23.2453318 79.44,22.8400026 79.44,22.328 L79.44,16.728 L78.08,16.728 L78.08,22.168 C78.08,22.6160022 78.1253329,23.0239982 78.216,23.392 C78.3066671,23.7600018 78.4639989,24.077332 78.688,24.344 C78.9120011,24.610668 79.2053315,24.8159993 79.568,24.96 C79.9306685,25.1040007 80.3839973,25.176 80.928,25.176 C81.536003,25.176 82.0639978,25.0560012 82.512,24.816 C82.9600022,24.5759988 83.3279986,24.2000026 83.616,23.688 L83.648,23.688 L83.648,25 L84.928,25 Z M92.72,20.072 C92.6986666,19.7519984 92.6266673,19.4480014 92.504,19.16 C92.3813327,18.8719986 92.216001,18.624001 92.008,18.416 C91.799999,18.207999 91.5546681,18.0426673 91.272,17.92 C90.9893319,17.7973327 90.677335,17.736 90.336,17.736 C89.9839982,17.736 89.6666681,17.7973327 89.384,17.92 C89.1013319,18.0426673 88.8586677,18.2106656 88.656,18.424 C88.4533323,18.6373344 88.2933339,18.8853319 88.176,19.168 C88.0586661,19.4506681 87.9893334,19.7519984 87.968,20.072 L92.72,20.072 Z M94.032,22.376 C93.8506658,23.3040046 93.4506698,24.0026643 92.832,24.472 C92.2133302,24.9413357 91.4346714,25.176 90.496,25.176 C89.8346634,25.176 89.2613358,25.0693344 88.776,24.856 C88.2906642,24.6426656 87.8826683,24.3440019 87.552,23.96 C87.2213317,23.5759981 86.9733342,23.117336 86.808,22.584 C86.6426658,22.050664 86.5493334,21.4693365 86.528,20.84 C86.528,20.2106635 86.623999,19.6346693 86.816,19.112 C87.008001,18.5893307 87.2773316,18.1360019 87.624,17.752 C87.9706684,17.3679981 88.381331,17.0693344 88.856,16.856 C89.330669,16.6426656 89.8506638,16.536 90.416,16.536 C91.1520037,16.536 91.7626642,16.6879985 92.248,16.992 C92.7333358,17.2960015 93.1226652,17.6826643 93.416,18.152 C93.7093348,18.6213357 93.9119994,19.1333306 94.024,19.688 C94.1360006,20.2426694 94.1813334,20.7706642 94.16,21.272 L87.968,21.272 C87.9573333,21.6346685 87.9999995,21.978665 88.096,22.304 C88.1920005,22.629335 88.3466656,22.9173321 88.56,23.168 C88.7733344,23.4186679 89.0453317,23.6186659 89.376,23.768 C89.7066683,23.9173341 90.0959978,23.992 90.544,23.992 C91.1200029,23.992 91.5919982,23.858668 91.96,23.592 C92.3280018,23.325332 92.5706661,22.9200027 92.688,22.376 L94.032,22.376 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="139" height="15" viewBox="0 0 139 15" id="svg">
<g fill="none" fill-rule="evenodd">
<path fill="#6C6C6C" d="M29.6153739,6.72690763 L31.1395089,6.72690763 C31.053943,6.11646281 30.8721182,5.57831558 30.594029,5.1124498 C30.3159398,4.64658402 29.9683336,4.25836835 29.5511998,3.94779116 C29.134066,3.63721398 28.6581128,3.40160723 28.1233259,3.24096386 C27.588539,3.08032048 27.0216734,3 26.4227121,3 C25.5456615,3 24.7675583,3.15796361 24.0883789,3.47389558 C23.4091995,3.78982755 22.8423339,4.2208808 22.3877651,4.76706827 C21.9331962,5.31325574 21.5882638,5.95314225 21.3529576,6.68674699 C21.1176514,7.42035173 21,8.2048151 21,9.04016064 C21,9.87550618 21.1096297,10.6572922 21.3288923,11.3855422 C21.5481549,12.1137921 21.8770439,12.7456466 22.3155692,13.2811245 C22.7540945,13.8166024 23.3049167,14.2369463 23.9680525,14.5421687 C24.6311882,14.8473911 25.4066176,15 26.2943638,15 C27.7596799,15 28.9148023,14.5983976 29.7597656,13.7951807 C30.6047289,12.9919639 31.1020733,11.8674771 31.2518136,10.4216867 L29.7276786,10.4216867 C29.6955914,10.8929073 29.5993312,11.3319926 29.4388951,11.7389558 C29.278459,12.145919 29.0565258,12.4966518 28.7730887,12.7911647 C28.4896517,13.0856775 28.152741,13.3159296 27.7623465,13.4819277 C27.3719521,13.6479259 26.9254117,13.7309237 26.4227121,13.7309237 C25.7381848,13.7309237 25.1499281,13.6024109 24.6579241,13.3453815 C24.1659202,13.0883521 23.7621621,12.7429741 23.4466378,12.3092369 C23.1311136,11.8754998 22.8984848,11.3668035 22.7487444,10.7831325 C22.5990041,10.1994616 22.524135,9.5809939 22.524135,8.92771084 C22.524135,8.32797558 22.5990041,7.74966811 22.7487444,7.19277108 C22.8984848,6.63587406 23.1311136,6.14056442 23.4466378,5.70682731 C23.7621621,5.2730902 24.1632463,4.92771213 24.6499023,4.67068273 C25.1365584,4.41365333 25.7221413,4.28514056 26.4066685,4.28514056 C27.2088489,4.28514056 27.9013875,4.48861912 28.4843052,4.89558233 C29.067223,5.30254554 29.4442421,5.9129812 29.6153739,6.72690763 Z M32.9203404,3.27309237 L32.9203404,14.7429719 L34.2840402,14.7429719 L34.2840402,10.0522088 C34.2840402,9.6773743 34.3348442,9.33199622 34.4364537,9.01606426 C34.5380632,8.70013229 34.6904752,8.4243653 34.8936942,8.18875502 C35.0969132,7.95314474 35.3509332,7.77108498 35.6557617,7.64257028 C35.9605903,7.51405558 36.321566,7.4497992 36.7386998,7.4497992 C37.2627909,7.4497992 37.6745707,7.59973076 37.9740513,7.89959839 C38.273532,8.19946602 38.4232701,8.60642313 38.4232701,9.12048193 L38.4232701,14.7429719 L39.7869699,14.7429719 L39.7869699,9.2811245 C39.7869699,8.83132305 39.7415137,8.42168859 39.6505999,8.05220884 C39.5596861,7.68272908 39.4019263,7.3641245 39.1773158,7.09638554 C38.9527054,6.82864659 38.658577,6.61981333 38.2949219,6.46987952 C37.9312668,6.3199457 37.4767047,6.24497992 36.9312221,6.24497992 C36.6852201,6.24497992 36.4312002,6.27175341 36.1691546,6.3253012 C35.907109,6.378849 35.6557629,6.46184683 35.4151088,6.57429719 C35.1744547,6.68674755 34.9578693,6.83132442 34.765346,7.00803213 C34.5728227,7.18473984 34.4230846,7.40160514 34.3161272,7.65863454 L34.2840402,7.65863454 L34.2840402,3.27309237 L32.9203404,3.27309237 Z M47.6001674,9.79518072 C47.5787759,9.47389398 47.5065808,9.16867614 47.3835798,8.87951807 C47.2605788,8.59036 47.0947974,8.34136651 46.8862305,8.13253012 C46.6776636,7.92369373 46.4316653,7.75769807 46.1482282,7.63453815 C45.8647912,7.51137823 45.5519455,7.4497992 45.2096819,7.4497992 C44.8567226,7.4497992 44.5385291,7.51137823 44.2550921,7.63453815 C43.971655,7.75769807 43.7283306,7.92637108 43.5251116,8.14056225 C43.3218926,8.35475341 43.1614589,8.60374691 43.0438058,8.8875502 C42.9261527,9.17135349 42.8566314,9.47389398 42.83524,9.79518072 L47.6001674,9.79518072 Z M48.9157366,12.1084337 C48.7339091,13.0401653 48.3328249,13.7416308 47.7124721,14.2128514 C47.0921193,14.684072 46.3113421,14.9196787 45.3701172,14.9196787 C44.7069814,14.9196787 44.1320941,14.8125847 43.6454381,14.5983936 C43.158782,14.3842024 42.7496761,14.0843393 42.4181083,13.6987952 C42.0865404,13.3132511 41.8378682,12.852747 41.6720843,12.3172691 C41.5063003,11.7817912 41.412714,11.198129 41.3913225,10.5662651 C41.3913225,9.93440112 41.4875827,9.35609365 41.680106,8.8313253 C41.8726293,8.30655695 42.1426926,7.85140755 42.4903041,7.46586345 C42.8379156,7.08031936 43.2496954,6.78045622 43.7256557,6.56626506 C44.201616,6.3520739 44.7230254,6.24497992 45.2898996,6.24497992 C46.0279055,6.24497992 46.6402273,6.39758884 47.1268834,6.70281124 C47.6135394,7.00803365 48.003928,7.39624932 48.2980608,7.86746988 C48.5921936,8.33869044 48.7954096,8.85274153 48.9077148,9.40963855 C49.0200201,9.96653558 49.0654763,10.4966508 49.0440848,11 L42.83524,11 C42.8245442,11.364125 42.8673265,11.7095031 42.9635882,12.0361446 C43.0598498,12.3627861 43.2149357,12.6519398 43.4288504,12.9036145 C43.6427652,13.1552891 43.9155024,13.3560903 44.2470703,13.5060241 C44.5786382,13.6559579 44.9690268,13.7309237 45.4182478,13.7309237 C45.9958176,13.7309237 46.4690969,13.5970562 46.8380999,13.3293173 C47.2071028,13.0615783 47.4504272,12.6546212 47.5680804,12.1084337 L48.9157366,12.1084337 Z M56.0871931,9.10441767 L57.4990234,9.10441767 C57.4455447,8.61177799 57.3171978,8.18607944 57.1139788,7.82730924 C56.9107598,7.46853904 56.651392,7.17135325 56.3358677,6.93574297 C56.0203435,6.70013269 55.6566938,6.52610498 55.2449079,6.41365462 C54.833122,6.30120426 54.3919294,6.24497992 53.921317,6.24497992 C53.2688769,6.24497992 52.6966635,6.36010594 52.2046596,6.59036145 C51.7126557,6.82061695 51.3035498,7.13654418 50.9773298,7.53815261 C50.6511098,7.93976104 50.4077854,8.41097454 50.2473493,8.95180723 C50.0869133,9.49263992 50.0066964,10.0736247 50.0066964,10.6947791 C50.0066964,11.3159335 50.0895872,11.8862089 50.2553711,12.4056225 C50.421155,12.9250361 50.6671533,13.3721534 50.9933733,13.746988 C51.3195933,14.1218225 51.7260253,14.4109762 52.2126814,14.6144578 C52.6993374,14.8179394 53.2581814,14.9196787 53.8892299,14.9196787 C54.948108,14.9196787 55.7850369,14.6412344 56.4000419,14.0843373 C57.0150468,13.5274403 57.3974137,12.7349449 57.547154,11.7068273 L56.1513672,11.7068273 C56.0658013,12.3494008 55.8331725,12.8473878 55.4534738,13.2008032 C55.0737751,13.5542186 54.5470179,13.7309237 53.8731864,13.7309237 C53.4453569,13.7309237 53.0763594,13.6452485 52.766183,13.4738956 C52.4560066,13.3025427 52.2046606,13.074968 52.0121373,12.7911647 C51.819614,12.5073614 51.6778976,12.1834021 51.5869838,11.8192771 C51.49607,11.4551521 51.4506138,11.0803232 51.4506138,10.6947791 C51.4506138,10.2771063 51.4933961,9.87282659 51.5789621,9.48192771 C51.664528,9.09102884 51.8062444,8.74565076 52.0041155,8.44578313 C52.2019867,8.1459155 52.4667022,7.90495406 52.7982701,7.72289157 C53.129838,7.54082908 53.5416177,7.4497992 54.0336217,7.4497992 C54.6111915,7.4497992 55.0711013,7.59437606 55.413365,7.88353414 C55.7556286,8.17269221 55.9802357,8.57964932 56.0871931,9.10441767 Z M59.1515067,3.27309237 L59.1515067,14.7429719 L60.5152065,14.7429719 L60.5152065,11.5943775 L61.7986886,10.4056225 L64.6383929,14.7429719 L66.3710938,14.7429719 L62.8415179,9.45783133 L66.1304408,6.437751 L64.3014788,6.437751 L60.5152065,10.0682731 L60.5152065,3.27309237 L59.1515067,3.27309237 Z M67.44601,3.27309237 L68.8097098,3.27309237 L68.8097098,7.562249 L68.8417969,7.562249 C69.0664074,7.10173799 69.4193614,6.76706932 69.9006696,6.55823293 C70.3819779,6.34939655 70.9114089,6.24497992 71.4889788,6.24497992 C72.1307231,6.24497992 72.689567,6.36278329 73.1655273,6.59839357 C73.6414877,6.83400386 74.0372241,7.15260843 74.3527483,7.55421687 C74.6682726,7.9558253 74.9062492,8.41900675 75.0666853,8.9437751 C75.2271213,9.46854345 75.3073382,10.0254321 75.3073382,10.6144578 C75.3073382,11.2034835 75.2297952,11.7603722 75.074707,12.2851406 C74.9196188,12.8099089 74.6843161,13.2677357 74.3687919,13.6586345 C74.0532676,14.0495334 73.6575312,14.3574286 73.1815709,14.5823293 C72.7056105,14.80723 72.1521144,14.9196787 71.5210658,14.9196787 C71.3178468,14.9196787 71.0905658,14.8982599 70.839216,14.8554217 C70.5878661,14.8125835 70.3391939,14.7429724 70.093192,14.6465863 C69.84719,14.5502003 69.6145612,14.4190102 69.3952985,14.253012 C69.1760359,14.0870139 68.9915372,13.880858 68.8417969,13.6345382 L68.8097098,13.6345382 L68.8097098,14.7429719 L67.44601,14.7429719 L67.44601,3.27309237 Z M73.8634208,10.5180723 C73.8634208,10.1325282 73.8126168,9.75502193 73.7110073,9.38554217 C73.6093977,9.01606241 73.4543119,8.68674843 73.245745,8.39759036 C73.0371781,8.10843229 72.7697886,7.87818024 72.4435686,7.70682731 C72.1173486,7.53547438 71.7349817,7.4497992 71.2964565,7.4497992 C70.8365397,7.4497992 70.4461512,7.54082908 70.125279,7.72289157 C69.8044069,7.90495406 69.5423652,8.14323815 69.3391462,8.437751 C69.1359272,8.73226386 68.988863,9.06693253 68.8979492,9.44176707 C68.8070354,9.81660161 68.7615792,10.1967852 68.7615792,10.5823293 C68.7615792,10.9892925 68.8097093,11.3828629 68.905971,11.7630522 C69.0022326,12.1432415 69.1546446,12.4779102 69.3632115,12.7670683 C69.5717784,13.0562263 69.8418417,13.2891557 70.1734096,13.4658635 C70.5049775,13.6425712 70.9060616,13.7309237 71.3766741,13.7309237 C71.8472866,13.7309237 72.2403491,13.6398938 72.5558733,13.4578313 C72.8713976,13.2757688 73.1254176,13.0348074 73.3179408,12.7349398 C73.5104641,12.4350721 73.6495066,12.0923714 73.7350725,11.7068273 C73.8206384,11.3212832 73.8634208,10.9250355 73.8634208,10.5180723 Z M77.9063895,10.5983936 C77.9063895,11.1017428 77.9732369,11.5488602 78.1069336,11.939759 C78.2406303,12.3306579 78.425129,12.6572945 78.6604353,12.9196787 C78.8957415,13.1820629 79.1711526,13.3828641 79.4866769,13.5220884 C79.8022012,13.6613126 80.136438,13.7309237 80.4893973,13.7309237 C80.8423567,13.7309237 81.1765935,13.6613126 81.4921177,13.5220884 C81.807642,13.3828641 82.0830531,13.1820629 82.3183594,12.9196787 C82.5536656,12.6572945 82.7381643,12.3306579 82.871861,11.939759 C83.0055578,11.5488602 83.0724051,11.1017428 83.0724051,10.5983936 C83.0724051,10.0950443 83.0055578,9.64792699 82.871861,9.25702811 C82.7381643,8.86612924 82.5536656,8.53681526 82.3183594,8.26907631 C82.0830531,8.00133735 81.807642,7.7978588 81.4921177,7.65863454 C81.1765935,7.51941028 80.8423567,7.4497992 80.4893973,7.4497992 C80.136438,7.4497992 79.8022012,7.51941028 79.4866769,7.65863454 C79.1711526,7.7978588 78.8957415,8.00133735 78.6604353,8.26907631 C78.425129,8.53681526 78.2406303,8.86612924 78.1069336,9.25702811 C77.9732369,9.64792699 77.9063895,10.0950443 77.9063895,10.5983936 Z M76.4624721,10.5983936 C76.4624721,9.98794876 76.5480367,9.41767333 76.7191685,8.8875502 C76.8903003,8.35742707 77.1469942,7.89692297 77.4892578,7.5060241 C77.8315214,7.11512522 78.2539967,6.80723004 78.7566964,6.58232932 C79.2593961,6.35742859 79.8369573,6.24497992 80.4893973,6.24497992 C81.1525331,6.24497992 81.7327682,6.35742859 82.23012,6.58232932 C82.7274718,6.80723004 83.1472732,7.11512522 83.4895368,7.5060241 C83.8318004,7.89692297 84.0884943,8.35742707 84.2596261,8.8875502 C84.4307579,9.41767333 84.5163225,9.98794876 84.5163225,10.5983936 C84.5163225,11.2088384 84.4307579,11.7764365 84.2596261,12.3012048 C84.0884943,12.8259732 83.8318004,13.2837999 83.4895368,13.6746988 C83.1472732,14.0655977 82.7274718,14.3708155 82.23012,14.5903614 C81.7327682,14.8099074 81.1525331,14.9196787 80.4893973,14.9196787 C79.8369573,14.9196787 79.2593961,14.8099074 78.7566964,14.5903614 C78.2539967,14.3708155 77.8315214,14.0655977 77.4892578,13.6746988 C77.1469942,13.2837999 76.8903003,12.8259732 76.7191685,12.3012048 C76.5480367,11.7764365 76.4624721,11.2088384 76.4624721,10.5983936 Z M88.3507254,10.373494 L85.2382812,14.7429719 L86.8907645,14.7429719 L89.2010324,11.3052209 L91.5113002,14.7429719 L93.2600446,14.7429719 L90.0513393,10.2610442 L92.9070871,6.437751 L91.2706473,6.437751 L89.2010324,9.34538153 L87.211635,6.437751 L85.4628906,6.437751 L88.3507254,10.373494 Z M99.1159319,3.27309237 L99.1159319,14.7429719 L106.70452,14.7429719 L106.70452,13.4578313 L100.640067,13.4578313 L100.640067,3.27309237 L99.1159319,3.27309237 Z M115.159459,14.7108434 C114.924152,14.8500676 114.597937,14.9196787 114.180804,14.9196787 C113.827844,14.9196787 113.547085,14.8206168 113.338518,14.62249 C113.129952,14.4243631 113.02567,14.1004039 113.02567,13.6506024 C112.651319,14.1004039 112.215474,14.4243631 111.718122,14.62249 C111.22077,14.8206168 110.683318,14.9196787 110.105748,14.9196787 C109.731397,14.9196787 109.375769,14.8768411 109.038853,14.7911647 C108.701937,14.7054882 108.410483,14.5716207 108.164481,14.3895582 C107.918479,14.2074957 107.723285,13.9692116 107.578892,13.6746988 C107.4345,13.3801859 107.362305,13.0240985 107.362305,12.6064257 C107.362305,12.1352051 107.442522,11.7496668 107.602958,11.4497992 C107.763394,11.1499316 107.974631,10.9062928 108.236677,10.7188755 C108.498722,10.5314582 108.798199,10.3895587 109.135114,10.2931727 C109.47203,10.1967867 109.816963,10.1164662 110.169922,10.0522088 C110.544273,9.97724193 110.899901,9.92101759 111.236816,9.88353414 C111.573732,9.84605068 111.870534,9.79250369 112.127232,9.72289157 C112.38393,9.65327944 112.587146,9.55154016 112.736886,9.41767068 C112.886626,9.2838012 112.961496,9.0883547 112.961496,8.8313253 C112.961496,8.53145767 112.905344,8.29049622 112.793039,8.10843373 C112.680733,7.92637124 112.536343,7.78714908 112.359863,7.69076305 C112.183384,7.59437703 111.985515,7.53012064 111.766253,7.49799197 C111.54699,7.46586329 111.330405,7.4497992 111.11649,7.4497992 C110.53892,7.4497992 110.057619,7.55957052 109.672573,7.77911647 C109.287526,7.99866241 109.078962,8.41365157 109.046875,9.02409639 L107.683175,9.02409639 C107.704567,8.51003759 107.811522,8.07630699 108.004046,7.72289157 C108.196569,7.36947614 108.453263,7.08299976 108.774135,6.86345382 C109.095007,6.64390787 109.461331,6.48594426 109.873117,6.38955823 C110.284903,6.29317221 110.726095,6.24497992 111.196708,6.24497992 C111.571058,6.24497992 111.94273,6.27175341 112.311733,6.3253012 C112.680736,6.378849 113.014972,6.48862032 113.314453,6.65461847 C113.613934,6.82061663 113.854584,7.05354602 114.036412,7.35341365 C114.218239,7.65328129 114.309152,8.0441743 114.309152,8.52610442 L114.309152,12.7991968 C114.309152,13.1204835 114.327869,13.3560903 114.365304,13.5060241 C114.402739,13.6559579 114.528412,13.7309237 114.742327,13.7309237 C114.85998,13.7309237 114.999023,13.7041502 115.159459,13.6506024 L115.159459,14.7108434 Z M112.945452,10.4538153 C112.77432,10.58233 112.549713,10.6760372 112.271624,10.7349398 C111.993535,10.7938423 111.70208,10.8420346 111.397252,10.8795181 C111.092423,10.9170015 110.784925,10.9598391 110.474749,11.0080321 C110.164572,11.0562251 109.886487,11.1338683 109.640485,11.2409639 C109.394484,11.3480594 109.193941,11.5006684 109.038853,11.6987952 C108.883765,11.896922 108.806222,12.1673343 108.806222,12.5100402 C108.806222,12.7349409 108.851678,12.9250327 108.942592,13.0803213 C109.033506,13.2356099 109.151157,13.3614453 109.29555,13.4578313 C109.439942,13.5542173 109.608397,13.6238284 109.800921,13.6666667 C109.993444,13.7095049 110.19666,13.7309237 110.410575,13.7309237 C110.859796,13.7309237 111.244837,13.6693447 111.565709,13.5461847 C111.886581,13.4230248 112.148622,13.2677386 112.351842,13.0803213 C112.555061,12.892904 112.704799,12.6894255 112.80106,12.4698795 C112.897322,12.2503336 112.945452,12.0441777 112.945452,11.8514056 L112.945452,10.4538153 Z M116.475028,3.27309237 L117.838728,3.27309237 L117.838728,7.562249 L117.870815,7.562249 C118.095425,7.10173799 118.448379,6.76706932 118.929688,6.55823293 C119.410996,6.34939655 119.940427,6.24497992 120.517997,6.24497992 C121.159741,6.24497992 121.718585,6.36278329 122.194545,6.59839357 C122.670506,6.83400386 123.066242,7.15260843 123.381766,7.55421687 C123.69729,7.9558253 123.935267,8.41900675 124.095703,8.9437751 C124.256139,9.46854345 124.336356,10.0254321 124.336356,10.6144578 C124.336356,11.2034835 124.258813,11.7603722 124.103725,12.2851406 C123.948637,12.8099089 123.713334,13.2677357 123.39781,13.6586345 C123.082285,14.0495334 122.686549,14.3574286 122.210589,14.5823293 C121.734628,14.80723 121.181132,14.9196787 120.550084,14.9196787 C120.346865,14.9196787 120.119584,14.8982599 119.868234,14.8554217 C119.616884,14.8125835 119.368212,14.7429724 119.12221,14.6465863 C118.876208,14.5502003 118.643579,14.4190102 118.424316,14.253012 C118.205054,14.0870139 118.020555,13.880858 117.870815,13.6345382 L117.838728,13.6345382 L117.838728,14.7429719 L116.475028,14.7429719 L116.475028,3.27309237 Z M122.892439,10.5180723 C122.892439,10.1325282 122.841635,9.75502193 122.740025,9.38554217 C122.638416,9.01606241 122.48333,8.68674843 122.274763,8.39759036 C122.066196,8.10843229 121.798807,7.87818024 121.472586,7.70682731 C121.146366,7.53547438 120.764,7.4497992 120.325474,7.4497992 C119.865558,7.4497992 119.475169,7.54082908 119.154297,7.72289157 C118.833425,7.90495406 118.571383,8.14323815 118.368164,8.437751 C118.164945,8.73226386 118.017881,9.06693253 117.926967,9.44176707 C117.836053,9.81660161 117.790597,10.1967852 117.790597,10.5823293 C117.790597,10.9892925 117.838727,11.3828629 117.934989,11.7630522 C118.03125,12.1432415 118.183662,12.4779102 118.392229,12.7670683 C118.600796,13.0562263 118.87086,13.2891557 119.202427,13.4658635 C119.533995,13.6425712 119.935079,13.7309237 120.405692,13.7309237 C120.876304,13.7309237 121.269367,13.6398938 121.584891,13.4578313 C121.900415,13.2757688 122.154435,13.0348074 122.346959,12.7349398 C122.539482,12.4350721 122.678524,12.0923714 122.76409,11.7068273 C122.849656,11.3212832 122.892439,10.9250355 122.892439,10.5180723 Z M131.700335,9.79518072 C131.678943,9.47389398 131.606748,9.16867614 131.483747,8.87951807 C131.360746,8.59036 131.194965,8.34136651 130.986398,8.13253012 C130.777831,7.92369373 130.531833,7.75769807 130.248396,7.63453815 C129.964959,7.51137823 129.652113,7.4497992 129.309849,7.4497992 C128.95689,7.4497992 128.638697,7.51137823 128.355259,7.63453815 C128.071822,7.75769807 127.828498,7.92637108 127.625279,8.14056225 C127.42206,8.35475341 127.261626,8.60374691 127.143973,8.8875502 C127.02632,9.17135349 126.956799,9.47389398 126.935407,9.79518072 L131.700335,9.79518072 Z M133.015904,12.1084337 C132.834076,13.0401653 132.432992,13.7416308 131.81264,14.2128514 C131.192287,14.684072 130.41151,14.9196787 129.470285,14.9196787 C128.807149,14.9196787 128.232262,14.8125847 127.745605,14.5983936 C127.258949,14.3842024 126.849844,14.0843393 126.518276,13.6987952 C126.186708,13.3132511 125.938036,12.852747 125.772252,12.3172691 C125.606468,11.7817912 125.512881,11.198129 125.49149,10.5662651 C125.49149,9.93440112 125.58775,9.35609365 125.780273,8.8313253 C125.972797,8.30655695 126.24286,7.85140755 126.590472,7.46586345 C126.938083,7.08031936 127.349863,6.78045622 127.825823,6.56626506 C128.301783,6.3520739 128.823193,6.24497992 129.390067,6.24497992 C130.128073,6.24497992 130.740395,6.39758884 131.227051,6.70281124 C131.713707,7.00803365 132.104095,7.39624932 132.398228,7.86746988 C132.692361,8.33869044 132.895577,8.85274153 133.007882,9.40963855 C133.120188,9.96653558 133.165644,10.4966508 133.144252,11 L126.935407,11 C126.924712,11.364125 126.967494,11.7095031 127.063756,12.0361446 C127.160017,12.3627861 127.315103,12.6519398 127.529018,12.9036145 C127.742933,13.1552891 128.01567,13.3560903 128.347238,13.5060241 C128.678806,13.6559579 129.069194,13.7309237 129.518415,13.7309237 C130.095985,13.7309237 130.569264,13.5970562 130.938267,13.3293173 C131.30727,13.0615783 131.550595,12.6546212 131.668248,12.1084337 L133.015904,12.1084337 Z M134.6363,3.27309237 L134.6363,14.7429719 L136,14.7429719 L136,3.27309237 L134.6363,3.27309237 Z"/>
<rect width="11" height="11" x=".5" y="1.5" stroke="#9C9C9C" rx="2"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="302" height="39" viewBox="0 0 302 39" id="svg">
<defs>
<rect id="select-a" width="302" height="39"/>
</defs>
<g fill="none" fill-rule="evenodd">
<use fill="#F3F3F3" xlink:href="#select-a"/>
<rect width="301" height="38" x=".5" y=".5" stroke="#999"/>
<path fill="#6C6C6C" d="M15.856,17.5563636 L17.296,17.5563636 C17.2746666,16.9270272 17.1546678,16.3856992 16.936,15.9323636 C16.7173322,15.479028 16.4186686,15.1030318 16.04,14.8043636 C15.6613314,14.5056955 15.2213358,14.287031 14.72,14.1483636 C14.2186642,14.0096963 13.6746696,13.9403636 13.088,13.9403636 C12.5653307,13.9403636 12.0560025,14.0070296 11.56,14.1403636 C11.0639975,14.2736976 10.6213353,14.4763623 10.232,14.7483636 C9.84266472,15.020365 9.53066784,15.3670282 9.296,15.7883636 C9.06133216,16.2096991 8.944,16.7083608 8.944,17.2843636 C8.944,17.8070329 9.04799896,18.2416952 9.256,18.5883636 C9.46400104,18.935032 9.7413316,19.2176959 10.088,19.4363636 C10.4346684,19.6550314 10.8266645,19.8310296 11.264,19.9643636 C11.7013355,20.0976976 12.1466644,20.2150298 12.6,20.3163636 C13.0533356,20.4176975 13.4986645,20.5163632 13.936,20.6123636 C14.3733355,20.7083641 14.7653316,20.8336962 15.112,20.9883636 C15.4586684,21.1430311 15.735999,21.3430291 15.944,21.5883636 C16.152001,21.8336982 16.256,22.153695 16.256,22.5483636 C16.256,22.9643657 16.1706675,23.3056956 16,23.5723636 C15.8293325,23.8390316 15.6053347,24.0496962 15.328,24.2043636 C15.0506653,24.3590311 14.7386684,24.4683633 14.392,24.5323636 C14.0453316,24.596364 13.701335,24.6283636 13.36,24.6283636 C12.9333312,24.6283636 12.5173354,24.5750308 12.112,24.4683636 C11.7066646,24.3616964 11.3520015,24.1963648 11.048,23.9723636 C10.7439985,23.7483625 10.4986676,23.463032 10.312,23.1163636 C10.1253324,22.7696952 10.032,22.356366 10.032,21.8763636 L8.592,21.8763636 C8.592,22.5697004 8.71733208,23.1696944 8.968,23.6763636 C9.21866792,24.1830328 9.55999784,24.5990287 9.992,24.9243636 C10.4240022,25.2496986 10.9253305,25.4923628 11.496,25.6523636 C12.0666695,25.8123644 12.6719968,25.8923636 13.312,25.8923636 C13.8346693,25.8923636 14.3599974,25.8310309 14.888,25.7083636 C15.4160026,25.5856964 15.8933312,25.388365 16.32,25.1163636 C16.7466688,24.8443623 17.0959986,24.4923658 17.368,24.0603636 C17.6400014,23.6283615 17.776,23.1083667 17.776,22.5003636 C17.776,21.9350275 17.672001,21.4656988 17.464,21.0923636 C17.255999,20.7190284 16.9786684,20.4096982 16.632,20.1643636 C16.2853316,19.9190291 15.8933355,19.7243644 15.456,19.5803636 C15.0186645,19.4363629 14.5733356,19.3110308 14.12,19.2043636 C13.6666644,19.0976964 13.2213355,18.9990308 12.784,18.9083636 C12.3466645,18.8176965 11.9546684,18.703031 11.608,18.5643636 C11.2613316,18.4256963 10.984001,18.2470314 10.776,18.0283636 C10.567999,17.8096959 10.464,17.5243654 10.464,17.1723636 C10.464,16.7990284 10.5359993,16.4870316 10.68,16.2363636 C10.8240007,15.9856957 11.0159988,15.7856977 11.256,15.6363636 C11.4960012,15.4870296 11.7706651,15.380364 12.08,15.3163636 C12.3893349,15.2523633 12.7039984,15.2203636 13.024,15.2203636 C13.8133373,15.2203636 14.4613308,15.4043618 14.968,15.7723636 C15.4746692,16.1403655 15.7706662,16.7350262 15.856,17.5563636 Z M25.136,20.7083636 C25.1146666,20.388362 25.0426673,20.0843651 24.92,19.7963636 C24.7973327,19.5083622 24.632001,19.2603647 24.424,19.0523636 C24.215999,18.8443626 23.9706681,18.6790309 23.688,18.5563636 C23.4053319,18.4336964 23.093335,18.3723636 22.752,18.3723636 C22.3999982,18.3723636 22.0826681,18.4336964 21.8,18.5563636 C21.5173319,18.6790309 21.2746677,18.8470292 21.072,19.0603636 C20.8693323,19.273698 20.7093339,19.5216956 20.592,19.8043636 C20.4746661,20.0870317 20.4053334,20.388362 20.384,20.7083636 L25.136,20.7083636 Z M26.448,23.0123636 C26.2666658,23.9403683 25.8666698,24.639028 25.248,25.1083636 C24.6293302,25.5776993 23.8506714,25.8123636 22.912,25.8123636 C22.2506634,25.8123636 21.6773358,25.705698 21.192,25.4923636 C20.7066642,25.2790292 20.2986683,24.9803656 19.968,24.5963636 C19.6373317,24.2123617 19.3893342,23.7536996 19.224,23.2203636 C19.0586658,22.6870276 18.9653334,22.1057001 18.944,21.4763636 C18.944,20.8470272 19.039999,20.2710329 19.232,19.7483636 C19.424001,19.2256944 19.6933316,18.7723656 20.04,18.3883636 C20.3866684,18.0043617 20.797331,17.705698 21.272,17.4923636 C21.746669,17.2790292 22.2666638,17.1723636 22.832,17.1723636 C23.5680037,17.1723636 24.1786642,17.3243621 24.664,17.6283636 C25.1493358,17.9323652 25.5386652,18.319028 25.832,18.7883636 C26.1253348,19.2576993 26.3279994,19.7696942 26.44,20.3243636 C26.5520006,20.8790331 26.5973334,21.4070278 26.576,21.9083636 L20.384,21.9083636 C20.3733333,22.2710321 20.4159995,22.6150287 20.512,22.9403636 C20.6080005,23.2656986 20.7626656,23.5536957 20.976,23.8043636 C21.1893344,24.0550316 21.4613317,24.2550296 21.792,24.4043636 C22.1226683,24.5536977 22.5119978,24.6283636 22.96,24.6283636 C23.5360029,24.6283636 24.0079982,24.4950316 24.376,24.2283636 C24.7440018,23.9616956 24.9866661,23.5563664 25.104,23.0123636 L26.448,23.0123636 Z M28.064,14.2123636 L28.064,25.6363636 L29.424,25.6363636 L29.424,14.2123636 L28.064,14.2123636 Z M37.28,20.7083636 C37.2586666,20.388362 37.1866673,20.0843651 37.064,19.7963636 C36.9413327,19.5083622 36.776001,19.2603647 36.568,19.0523636 C36.359999,18.8443626 36.1146681,18.6790309 35.832,18.5563636 C35.5493319,18.4336964 35.237335,18.3723636 34.896,18.3723636 C34.5439982,18.3723636 34.2266681,18.4336964 33.944,18.5563636 C33.6613319,18.6790309 33.4186677,18.8470292 33.216,19.0603636 C33.0133323,19.273698 32.8533339,19.5216956 32.736,19.8043636 C32.6186661,20.0870317 32.5493334,20.388362 32.528,20.7083636 L37.28,20.7083636 Z M38.592,23.0123636 C38.4106658,23.9403683 38.0106698,24.639028 37.392,25.1083636 C36.7733302,25.5776993 35.9946714,25.8123636 35.056,25.8123636 C34.3946634,25.8123636 33.8213358,25.705698 33.336,25.4923636 C32.8506642,25.2790292 32.4426683,24.9803656 32.112,24.5963636 C31.7813317,24.2123617 31.5333342,23.7536996 31.368,23.2203636 C31.2026658,22.6870276 31.1093334,22.1057001 31.088,21.4763636 C31.088,20.8470272 31.183999,20.2710329 31.376,19.7483636 C31.568001,19.2256944 31.8373316,18.7723656 32.184,18.3883636 C32.5306684,18.0043617 32.941331,17.705698 33.416,17.4923636 C33.890669,17.2790292 34.4106638,17.1723636 34.976,17.1723636 C35.7120037,17.1723636 36.3226642,17.3243621 36.808,17.6283636 C37.2933358,17.9323652 37.6826652,18.319028 37.976,18.7883636 C38.2693348,19.2576993 38.4719994,19.7696942 38.584,20.3243636 C38.6960006,20.8790331 38.7413334,21.4070278 38.72,21.9083636 L32.528,21.9083636 C32.5173333,22.2710321 32.5599995,22.6150287 32.656,22.9403636 C32.7520005,23.2656986 32.9066656,23.5536957 33.12,23.8043636 C33.3333344,24.0550316 33.6053317,24.2550296 33.936,24.4043636 C34.2666683,24.5536977 34.6559978,24.6283636 35.104,24.6283636 C35.6800029,24.6283636 36.1519982,24.4950316 36.52,24.2283636 C36.8880018,23.9616956 37.1306661,23.5563664 37.248,23.0123636 L38.592,23.0123636 Z M45.744,20.0203636 L47.152,20.0203636 C47.0986664,19.5296945 46.9706677,19.1056988 46.768,18.7483636 C46.5653323,18.3910285 46.3066682,18.0950315 45.992,17.8603636 C45.6773318,17.6256958 45.3146687,17.4523642 44.904,17.3403636 C44.4933313,17.2283631 44.0533357,17.1723636 43.584,17.1723636 C42.9333301,17.1723636 42.3626691,17.2870292 41.872,17.5163636 C41.3813309,17.7456981 40.973335,18.0603616 40.648,18.4603636 C40.322665,18.8603656 40.0800008,19.3296943 39.92,19.8683636 C39.7599992,20.407033 39.68,20.9856939 39.68,21.6043636 C39.68,22.2230334 39.7626658,22.7910277 39.928,23.3083636 C40.0933342,23.8256996 40.338665,24.2710284 40.664,24.6443636 C40.989335,25.0176988 41.3946642,25.305696 41.88,25.5083636 C42.3653358,25.7110313 42.9226635,25.8123636 43.552,25.8123636 C44.6080053,25.8123636 45.4426636,25.5350331 46.056,24.9803636 C46.6693364,24.4256942 47.0506659,23.6363688 47.2,22.6123636 L45.808,22.6123636 C45.7226662,23.2523668 45.4906686,23.7483619 45.112,24.1003636 C44.7333314,24.4523654 44.2080034,24.6283636 43.536,24.6283636 C43.1093312,24.6283636 42.7413349,24.5430312 42.432,24.3723636 C42.1226651,24.2016961 41.872001,23.9750317 41.68,23.6923636 C41.487999,23.4096956 41.3466671,23.0870321 41.256,22.7243636 C41.1653329,22.3616952 41.12,21.9883656 41.12,21.6043636 C41.12,21.1883616 41.1626662,20.7856989 41.248,20.3963636 C41.3333338,20.0070284 41.4746657,19.6630318 41.672,19.3643636 C41.8693343,19.0656955 42.1333317,18.8256979 42.464,18.6443636 C42.7946683,18.4630294 43.2053309,18.3723636 43.696,18.3723636 C44.2720029,18.3723636 44.730665,18.5163622 45.072,18.8043636 C45.413335,19.0923651 45.6373328,19.4976944 45.744,20.0203636 Z M50.608,17.3643636 L50.608,14.8843636 L49.248,14.8843636 L49.248,17.3643636 L47.84,17.3643636 L47.84,18.5643636 L49.248,18.5643636 L49.248,23.8283636 C49.248,24.2123656 49.285333,24.5216958 49.36,24.7563636 C49.434667,24.9910315 49.5493326,25.172363 49.704,25.3003636 C49.8586674,25.4283643 50.0613321,25.5163634 50.312,25.5643636 C50.5626679,25.6123639 50.8639982,25.6363636 51.216,25.6363636 L52.256,25.6363636 L52.256,24.4363636 L51.632,24.4363636 C51.4186656,24.4363636 51.245334,24.4283637 51.112,24.4123636 C50.978666,24.3963636 50.874667,24.3616972 50.8,24.3083636 C50.725333,24.25503 50.6746668,24.1803641 50.648,24.0843636 C50.6213332,23.9883632 50.608,23.8603644 50.608,23.7003636 L50.608,18.5643636 L52.256,18.5643636 L52.256,17.3643636 L50.608,17.3643636 Z M59.312,19.9243636 C59.312,20.5003665 59.3866659,21.0683608 59.536,21.6283636 C59.6853341,22.1883664 59.9199984,22.6923614 60.24,23.1403636 C60.5600016,23.5883659 60.9706642,23.9483623 61.472,24.2203636 C61.9733358,24.492365 62.5706632,24.6283636 63.264,24.6283636 C63.9573368,24.6283636 64.5546642,24.492365 65.056,24.2203636 C65.5573358,23.9483623 65.9679984,23.5883659 66.288,23.1403636 C66.6080016,22.6923614 66.8426659,22.1883664 66.992,21.6283636 C67.1413341,21.0683608 67.216,20.5003665 67.216,19.9243636 C67.216,19.3483608 67.1413341,18.7803664 66.992,18.2203636 C66.8426659,17.6603608 66.6080016,17.1563659 66.288,16.7083636 C65.9679984,16.2603614 65.5573358,15.900365 65.056,15.6283636 C64.5546642,15.3563623 63.9573368,15.2203636 63.264,15.2203636 C62.5706632,15.2203636 61.9733358,15.3563623 61.472,15.6283636 C60.9706642,15.900365 60.5600016,16.2603614 60.24,16.7083636 C59.9199984,17.1563659 59.6853341,17.6603608 59.536,18.2203636 C59.3866659,18.7803664 59.312,19.3483608 59.312,19.9243636 Z M57.792,19.9243636 C57.792,19.1456931 57.9066655,18.3963672 58.136,17.6763636 C58.3653345,16.95636 58.709331,16.3190331 59.168,15.7643636 C59.626669,15.2096942 60.1973299,14.767032 60.88,14.4363636 C61.5626701,14.1056953 62.3573288,13.9403636 63.264,13.9403636 C64.1706712,13.9403636 64.9653299,14.1056953 65.648,14.4363636 C66.3306701,14.767032 66.901331,15.2096942 67.36,15.7643636 C67.818669,16.3190331 68.1626655,16.95636 68.392,17.6763636 C68.6213345,18.3963672 68.736,19.1456931 68.736,19.9243636 C68.736,20.7030342 68.6213345,21.45236 68.392,22.1723636 C68.1626655,22.8923672 67.818669,23.5296942 67.36,24.0843636 C66.901331,24.6390331 66.3306701,25.0790287 65.648,25.4043636 C64.9653299,25.7296986 64.1706712,25.8923636 63.264,25.8923636 C62.3573288,25.8923636 61.5626701,25.7296986 60.88,25.4043636 C60.1973299,25.0790287 59.626669,24.6390331 59.168,24.0843636 C58.709331,23.5296942 58.3653345,22.8923672 58.136,22.1723636 C57.9066655,21.45236 57.792,20.7030342 57.792,19.9243636 Z M70.416,17.3643636 L71.776,17.3643636 L71.776,18.4843636 L71.808,18.4843636 C72.0320011,18.0256947 72.3839976,17.6923647 72.864,17.4843636 C73.3440024,17.2763626 73.8719971,17.1723636 74.448,17.1723636 C75.0880032,17.1723636 75.645331,17.2896958 76.12,17.5243636 C76.594669,17.7590315 76.9893318,18.0763616 77.304,18.4763636 C77.6186682,18.8763656 77.8559992,19.3376944 78.016,19.8603636 C78.1760008,20.3830329 78.256,20.937694 78.256,21.5243636 C78.256,22.1110332 78.1786674,22.6656944 78.024,23.1883636 C77.8693326,23.7110329 77.6346682,24.1670284 77.32,24.5563636 C77.0053318,24.9456989 76.610669,25.2523625 76.136,25.4763636 C75.661331,25.7003648 75.1093365,25.8123636 74.48,25.8123636 C74.2773323,25.8123636 74.0506679,25.7910305 73.8,25.7483636 C73.5493321,25.7056968 73.3013346,25.6363641 73.056,25.5403636 C72.8106654,25.4443632 72.5786678,25.3136978 72.36,25.1483636 C72.1413322,24.9830295 71.9573341,24.7776982 71.808,24.5323636 L71.776,24.5323636 L71.776,28.7883636 L70.416,28.7883636 L70.416,17.3643636 Z M76.816,21.4283636 C76.816,21.0443617 76.7653338,20.6683655 76.664,20.3003636 C76.5626662,19.9323618 76.408001,19.6043651 76.2,19.3163636 C75.991999,19.0283622 75.725335,18.7990312 75.4,18.6283636 C75.074665,18.4576961 74.6933355,18.3723636 74.256,18.3723636 C73.797331,18.3723636 73.4080016,18.4630294 73.088,18.6443636 C72.7679984,18.8256979 72.5066677,19.0630288 72.304,19.3563636 C72.1013323,19.6496984 71.9546671,19.9830284 71.864,20.3563636 C71.7733329,20.7296988 71.728,21.1083617 71.728,21.4923636 C71.728,21.897699 71.7759995,22.2896951 71.872,22.6683636 C71.9680005,23.0470322 72.119999,23.3803622 72.328,23.6683636 C72.536001,23.9563651 72.8053317,24.1883628 73.136,24.3643636 C73.4666683,24.5403645 73.8666643,24.6283636 74.336,24.6283636 C74.8053357,24.6283636 75.1973318,24.5376979 75.512,24.3563636 C75.8266682,24.1750294 76.079999,23.9350318 76.272,23.6363636 C76.464001,23.3376955 76.6026662,22.9963656 76.688,22.6123636 C76.7733338,22.2283617 76.816,21.833699 76.816,21.4283636 Z M81.744,17.3643636 L81.744,14.8843636 L80.384,14.8843636 L80.384,17.3643636 L78.976,17.3643636 L78.976,18.5643636 L80.384,18.5643636 L80.384,23.8283636 C80.384,24.2123656 80.421333,24.5216958 80.496,24.7563636 C80.570667,24.9910315 80.6853326,25.172363 80.84,25.3003636 C80.9946674,25.4283643 81.1973321,25.5163634 81.448,25.5643636 C81.6986679,25.6123639 81.9999982,25.6363636 82.352,25.6363636 L83.392,25.6363636 L83.392,24.4363636 L82.768,24.4363636 C82.5546656,24.4363636 82.381334,24.4283637 82.248,24.4123636 C82.114666,24.3963636 82.010667,24.3616972 81.936,24.3083636 C81.861333,24.25503 81.8106668,24.1803641 81.784,24.0843636 C81.7573332,23.9883632 81.744,23.8603644 81.744,23.7003636 L81.744,18.5643636 L83.392,18.5643636 L83.392,17.3643636 L81.744,17.3643636 Z M86.336,15.8763636 L86.336,14.2123636 L84.976,14.2123636 L84.976,15.8763636 L86.336,15.8763636 Z M84.976,17.3643636 L84.976,25.6363636 L86.336,25.6363636 L86.336,17.3643636 L84.976,17.3643636 Z M89.44,21.5083636 C89.44,22.0096995 89.506666,22.4550284 89.64,22.8443636 C89.773334,23.2336989 89.9573322,23.559029 90.192,23.8203636 C90.4266678,24.0816983 90.7013318,24.2816963 91.016,24.4203636 C91.3306682,24.559031 91.6639982,24.6283636 92.016,24.6283636 C92.3680018,24.6283636 92.7013318,24.559031 93.016,24.4203636 C93.3306682,24.2816963 93.6053322,24.0816983 93.84,23.8203636 C94.0746678,23.559029 94.258666,23.2336989 94.392,22.8443636 C94.525334,22.4550284 94.592,22.0096995 94.592,21.5083636 C94.592,21.0070278 94.525334,20.5616989 94.392,20.1723636 C94.258666,19.7830284 94.0746678,19.4550316 93.84,19.1883636 C93.6053322,18.9216956 93.3306682,18.719031 93.016,18.5803636 C92.7013318,18.4416963 92.3680018,18.3723636 92.016,18.3723636 C91.6639982,18.3723636 91.3306682,18.4416963 91.016,18.5803636 C90.7013318,18.719031 90.4266678,18.9216956 90.192,19.1883636 C89.9573322,19.4550316 89.773334,19.7830284 89.64,20.1723636 C89.506666,20.5616989 89.44,21.0070278 89.44,21.5083636 Z M88,21.5083636 C88,20.9003606 88.0853325,20.3323663 88.256,19.8043636 C88.4266675,19.276361 88.682665,18.8176989 89.024,18.4283636 C89.365335,18.0390284 89.7866642,17.7323648 90.288,17.5083636 C90.7893358,17.2843625 91.3653301,17.1723636 92.016,17.1723636 C92.6773366,17.1723636 93.2559975,17.2843625 93.752,17.5083636 C94.2480025,17.7323648 94.666665,18.0390284 95.008,18.4283636 C95.349335,18.8176989 95.6053325,19.276361 95.776,19.8043636 C95.9466675,20.3323663 96.032,20.9003606 96.032,21.5083636 C96.032,22.1163667 95.9466675,22.6816944 95.776,23.2043636 C95.6053325,23.7270329 95.349335,24.1830284 95.008,24.5723636 C94.666665,24.9616989 94.2480025,25.2656959 93.752,25.4843636 C93.2559975,25.7030314 92.6773366,25.8123636 92.016,25.8123636 C91.3653301,25.8123636 90.7893358,25.7030314 90.288,25.4843636 C89.7866642,25.2656959 89.365335,24.9616989 89.024,24.5723636 C88.682665,24.1830284 88.4266675,23.7270329 88.256,23.2043636 C88.0853325,22.6816944 88,22.1163667 88,21.5083636 Z M97.632,17.3643636 L97.632,25.6363636 L98.992,25.6363636 L98.992,20.9643636 C98.992,20.5910284 99.0426662,20.2470319 99.144,19.9323636 C99.2453338,19.6176954 99.3973323,19.3430315 99.6,19.1083636 C99.8026677,18.8736958 100.055998,18.6923643 100.36,18.5643636 C100.664002,18.436363 101.023998,18.3723636 101.44,18.3723636 C101.962669,18.3723636 102.373332,18.5216955 102.672,18.8203636 C102.970668,19.1190318 103.12,19.5243611 103.12,20.0363636 L103.12,25.6363636 L104.48,25.6363636 L104.48,20.1963636 C104.48,19.7483614 104.434667,19.3403655 104.344,18.9723636 C104.253333,18.6043618 104.096001,18.2870316 103.872,18.0203636 C103.647999,17.7536956 103.354668,17.5456977 102.992,17.3963636 C102.629332,17.2470296 102.176003,17.1723636 101.632,17.1723636 C100.405327,17.1723636 99.5093362,17.673692 98.944,18.6763636 L98.912,18.6763636 L98.912,17.3643636 L97.632,17.3643636 Z"/>
<polygon fill="#000" points="280 17.727 288 17.727 284 22.455"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="106" height="15" viewBox="0 0 106 15" id="svg">
<g fill="none" fill-rule="evenodd">
<path fill="#6C6C6C" d="M22.248,3.576 L27.624,3.576 C28.7120054,3.576 29.5626636,3.842664 30.176,4.376 C30.7893364,4.909336 31.096,5.63999536 31.096,6.568 C31.096,7.2613368 30.9386682,7.86933072 30.624,8.392 C30.3093318,8.91466928 29.8053368,9.27199904 29.112,9.464 L29.112,9.496 C29.4426683,9.56000032 29.711999,9.66666592 29.92,9.816 C30.128001,9.96533408 30.2933327,10.143999 30.416,10.352 C30.5386673,10.560001 30.629333,10.7919987 30.688,11.048 C30.746667,11.3040013 30.7919998,11.5706653 30.824,11.848 C30.8453334,12.1253347 30.8613333,12.4079986 30.872,12.696 C30.8826667,12.9840014 30.9093331,13.2666653 30.952,13.544 C30.9946669,13.8213347 31.0559996,14.0853321 31.136,14.336 C31.2160004,14.5866679 31.3359992,14.807999 31.496,15 L29.8,15 C29.6933328,14.8826661 29.6213335,14.7226677 29.584,14.52 C29.5466665,14.3173323 29.5226667,14.0906679 29.512,13.84 C29.5013333,13.5893321 29.4906667,13.3200014 29.48,13.032 C29.4693333,12.7439986 29.4373336,12.4613347 29.384,12.184 C29.3413331,11.9066653 29.2880003,11.6426679 29.224,11.392 C29.1599997,11.1413321 29.0586674,10.9226676 28.92,10.736 C28.7813326,10.5493324 28.6000011,10.4000006 28.376,10.288 C28.1519989,10.1759994 27.8533352,10.12 27.48,10.12 L23.768,10.12 L23.768,15 L22.248,15 L22.248,3.576 Z M26.936,8.84 C27.2880018,8.84 27.6239984,8.8133336 27.944,8.76 C28.2640016,8.7066664 28.5439988,8.60266744 28.784,8.448 C29.0240012,8.29333256 29.2159993,8.08533464 29.36,7.824 C29.5040007,7.56266536 29.576,7.22400208 29.576,6.808 C29.576,6.23199712 29.4160016,5.76266848 29.096,5.4 C28.7759984,5.03733152 28.2586702,4.856 27.544,4.856 L23.768,4.856 L23.768,8.84 L26.936,8.84 Z M40.312,14.968 C40.0773322,15.1066674 39.7520021,15.176 39.336,15.176 C38.9839982,15.176 38.704001,15.0773343 38.496,14.88 C38.287999,14.6826657 38.184,14.3600022 38.184,13.912 C37.8106648,14.3600022 37.3760025,14.6826657 36.88,14.88 C36.3839975,15.0773343 35.8480029,15.176 35.272,15.176 C34.8986648,15.176 34.5440017,15.1333338 34.208,15.048 C33.8719983,14.9626662 33.5813346,14.8293342 33.336,14.648 C33.0906654,14.4666658 32.8960007,14.2293348 32.752,13.936 C32.6079993,13.6426652 32.536,13.2880021 32.536,12.872 C32.536,12.4026643 32.6159992,12.0186682 32.776,11.72 C32.9360008,11.4213318 33.1466654,11.1786676 33.408,10.992 C33.6693346,10.8053324 33.9679983,10.6640005 34.304,10.568 C34.6400017,10.4719995 34.9839982,10.3920003 35.336,10.328 C35.7093352,10.253333 36.0639983,10.1973335 36.4,10.16 C36.7360017,10.1226665 37.0319987,10.0693337 37.288,10 C37.5440013,9.93066632 37.7466659,9.829334 37.896,9.696 C38.0453341,9.562666 38.12,9.36800128 38.12,9.112 C38.12,8.81333184 38.0640006,8.57333424 37.952,8.392 C37.8399994,8.21066576 37.6960009,8.07200048 37.52,7.976 C37.3439991,7.87999952 37.1466678,7.81600016 36.928,7.784 C36.7093322,7.75199984 36.4933344,7.736 36.28,7.736 C35.7039971,7.736 35.2240019,7.84533224 34.84,8.064 C34.4559981,8.28266776 34.2480002,8.69599696 34.216,9.304 L32.856,9.304 C32.8773334,8.79199744 32.983999,8.36000176 33.176,8.008 C33.368001,7.65599824 33.6239984,7.37066776 33.944,7.152 C34.2640016,6.93333224 34.6293313,6.77600048 35.04,6.68 C35.4506687,6.58399952 35.8906643,6.536 36.36,6.536 C36.7333352,6.536 37.1039982,6.5626664 37.472,6.616 C37.8400018,6.6693336 38.1733318,6.77866584 38.472,6.944 C38.7706682,7.10933416 39.0106658,7.34133184 39.192,7.64 C39.3733342,7.93866816 39.464,8.3279976 39.464,8.808 L39.464,13.064 C39.464,13.3840016 39.4826665,13.6186659 39.52,13.768 C39.5573335,13.9173341 39.6826656,13.992 39.896,13.992 C40.0133339,13.992 40.1519992,13.9653336 40.312,13.912 L40.312,14.968 Z M38.104,10.728 C37.9333325,10.8560006 37.7093347,10.949333 37.432,11.008 C37.1546653,11.066667 36.8640015,11.1146665 36.56,11.152 C36.2559985,11.1893335 35.9493349,11.2319998 35.64,11.28 C35.3306651,11.3280002 35.0533346,11.4053328 34.808,11.512 C34.5626654,11.6186672 34.3626674,11.7706657 34.208,11.968 C34.0533326,12.1653343 33.976,12.434665 33.976,12.776 C33.976,13.0000011 34.0213329,13.1893326 34.112,13.344 C34.2026671,13.4986674 34.3199993,13.6239995 34.464,13.72 C34.6080007,13.8160005 34.775999,13.8853331 34.968,13.928 C35.160001,13.9706669 35.3626656,13.992 35.576,13.992 C36.0240022,13.992 36.4079984,13.9306673 36.728,13.808 C37.0480016,13.6853327 37.3093323,13.5306676 37.512,13.344 C37.7146677,13.1573324 37.8639995,12.9546678 37.96,12.736 C38.0560005,12.5173322 38.104,12.312001 38.104,12.12 L38.104,10.728 Z M42.568,10.936 C42.568,11.3200019 42.6186662,11.6959982 42.72,12.064 C42.8213338,12.4320018 42.975999,12.7599986 43.184,13.048 C43.392001,13.3360014 43.658665,13.5653325 43.984,13.736 C44.309335,13.9066675 44.6906645,13.992 45.128,13.992 C45.586669,13.992 45.9759984,13.9013342 46.296,13.72 C46.6160016,13.5386658 46.8773323,13.3013348 47.08,13.008 C47.2826677,12.7146652 47.4293329,12.3813352 47.52,12.008 C47.6106671,11.6346648 47.656,11.2560019 47.656,10.872 C47.656,10.4666646 47.6080005,10.0746686 47.512,9.696 C47.4159995,9.31733144 47.264001,8.98400144 47.056,8.696 C46.847999,8.40799856 46.5786683,8.17600088 46.248,8 C45.9173317,7.82399912 45.5173357,7.736 45.048,7.736 C44.589331,7.736 44.2000016,7.82666576 43.88,8.008 C43.5599984,8.18933424 43.304001,8.42933184 43.112,8.728 C42.919999,9.02666816 42.7813338,9.36799808 42.696,9.752 C42.6106662,10.1360019 42.568,10.5306646 42.568,10.936 Z M48.968,15 L47.608,15 L47.608,13.88 L47.576,13.88 C47.3519989,14.338669 47.0000024,14.6693323 46.52,14.872 C46.0399976,15.0746677 45.5120029,15.176 44.936,15.176 C44.2959968,15.176 43.738669,15.0586678 43.264,14.824 C42.789331,14.5893322 42.3946682,14.2746686 42.08,13.88 C41.7653318,13.4853314 41.5280008,13.0266693 41.368,12.504 C41.2079992,11.9813307 41.128,11.4266696 41.128,10.84 C41.128,10.2533304 41.2053326,9.69866928 41.36,9.176 C41.5146674,8.65333072 41.7493318,8.19733528 42.064,7.808 C42.3786682,7.41866472 42.773331,7.10933448 43.248,6.88 C43.722669,6.65066552 44.2746635,6.536 44.904,6.536 C45.1173344,6.536 45.3466654,6.55733312 45.592,6.6 C45.8373346,6.64266688 46.0826654,6.71466616 46.328,6.816 C46.5733346,6.91733384 46.8053322,7.05066584 47.024,7.216 C47.2426678,7.38133416 47.4266659,7.58666544 47.576,7.832 L47.608,7.832 L47.608,3.576 L48.968,3.576 L48.968,15 Z M52.504,5.24 L52.504,3.576 L51.144,3.576 L51.144,5.24 L52.504,5.24 Z M51.144,6.728 L51.144,15 L52.504,15 L52.504,6.728 L51.144,6.728 Z M55.608,10.872 C55.608,11.3733358 55.674666,11.8186647 55.808,12.208 C55.941334,12.5973353 56.1253322,12.9226654 56.36,13.184 C56.5946678,13.4453346 56.8693318,13.6453326 57.184,13.784 C57.4986682,13.9226674 57.8319982,13.992 58.184,13.992 C58.5360018,13.992 58.8693318,13.9226674 59.184,13.784 C59.4986682,13.6453326 59.7733322,13.4453346 60.008,13.184 C60.2426678,12.9226654 60.426666,12.5973353 60.56,12.208 C60.693334,11.8186647 60.76,11.3733358 60.76,10.872 C60.76,10.3706642 60.693334,9.92533528 60.56,9.536 C60.426666,9.14666472 60.2426678,8.818668 60.008,8.552 C59.7733322,8.285332 59.4986682,8.08266736 59.184,7.944 C58.8693318,7.80533264 58.5360018,7.736 58.184,7.736 C57.8319982,7.736 57.4986682,7.80533264 57.184,7.944 C56.8693318,8.08266736 56.5946678,8.285332 56.36,8.552 C56.1253322,8.818668 55.941334,9.14666472 55.808,9.536 C55.674666,9.92533528 55.608,10.3706642 55.608,10.872 Z M54.168,10.872 C54.168,10.263997 54.2533325,9.69600264 54.424,9.168 C54.5946675,8.63999736 54.850665,8.18133528 55.192,7.792 C55.533335,7.40266472 55.9546642,7.09600112 56.456,6.872 C56.9573358,6.64799888 57.5333301,6.536 58.184,6.536 C58.8453366,6.536 59.4239975,6.64799888 59.92,6.872 C60.4160025,7.09600112 60.834665,7.40266472 61.176,7.792 C61.517335,8.18133528 61.7733325,8.63999736 61.944,9.168 C62.1146675,9.69600264 62.2,10.263997 62.2,10.872 C62.2,11.480003 62.1146675,12.0453307 61.944,12.568 C61.7733325,13.0906693 61.517335,13.5466647 61.176,13.936 C60.834665,14.3253353 60.4160025,14.6293322 59.92,14.848 C59.4239975,15.0666678 58.8453366,15.176 58.184,15.176 C57.5333301,15.176 56.9573358,15.0666678 56.456,14.848 C55.9546642,14.6293322 55.533335,14.3253353 55.192,13.936 C54.850665,13.5466647 54.5946675,13.0906693 54.424,12.568 C54.2533325,12.0453307 54.168,11.480003 54.168,10.872 Z M68.472,3.576 L68.472,15 L76.04,15 L76.04,13.72 L69.992,13.72 L69.992,3.576 L68.472,3.576 Z M84.472,14.968 C84.2373322,15.1066674 83.9120021,15.176 83.496,15.176 C83.1439982,15.176 82.864001,15.0773343 82.656,14.88 C82.447999,14.6826657 82.344,14.3600022 82.344,13.912 C81.9706648,14.3600022 81.5360025,14.6826657 81.04,14.88 C80.5439975,15.0773343 80.0080029,15.176 79.432,15.176 C79.0586648,15.176 78.7040017,15.1333338 78.368,15.048 C78.0319983,14.9626662 77.7413346,14.8293342 77.496,14.648 C77.2506654,14.4666658 77.0560007,14.2293348 76.912,13.936 C76.7679993,13.6426652 76.696,13.2880021 76.696,12.872 C76.696,12.4026643 76.7759992,12.0186682 76.936,11.72 C77.0960008,11.4213318 77.3066654,11.1786676 77.568,10.992 C77.8293346,10.8053324 78.1279983,10.6640005 78.464,10.568 C78.8000017,10.4719995 79.1439982,10.3920003 79.496,10.328 C79.8693352,10.253333 80.2239983,10.1973335 80.56,10.16 C80.8960017,10.1226665 81.1919987,10.0693337 81.448,10 C81.7040013,9.93066632 81.9066659,9.829334 82.056,9.696 C82.2053341,9.562666 82.28,9.36800128 82.28,9.112 C82.28,8.81333184 82.2240006,8.57333424 82.112,8.392 C81.9999994,8.21066576 81.8560009,8.07200048 81.68,7.976 C81.5039991,7.87999952 81.3066678,7.81600016 81.088,7.784 C80.8693322,7.75199984 80.6533344,7.736 80.44,7.736 C79.8639971,7.736 79.3840019,7.84533224 79,8.064 C78.6159981,8.28266776 78.4080002,8.69599696 78.376,9.304 L77.016,9.304 C77.0373334,8.79199744 77.143999,8.36000176 77.336,8.008 C77.528001,7.65599824 77.7839984,7.37066776 78.104,7.152 C78.4240016,6.93333224 78.7893313,6.77600048 79.2,6.68 C79.6106687,6.58399952 80.0506643,6.536 80.52,6.536 C80.8933352,6.536 81.2639982,6.5626664 81.632,6.616 C82.0000018,6.6693336 82.3333318,6.77866584 82.632,6.944 C82.9306682,7.10933416 83.1706658,7.34133184 83.352,7.64 C83.5333342,7.93866816 83.624,8.3279976 83.624,8.808 L83.624,13.064 C83.624,13.3840016 83.6426665,13.6186659 83.68,13.768 C83.7173335,13.9173341 83.8426656,13.992 84.056,13.992 C84.1733339,13.992 84.3119992,13.9653336 84.472,13.912 L84.472,14.968 Z M82.264,10.728 C82.0933325,10.8560006 81.8693347,10.949333 81.592,11.008 C81.3146653,11.066667 81.0240015,11.1146665 80.72,11.152 C80.4159985,11.1893335 80.1093349,11.2319998 79.8,11.28 C79.4906651,11.3280002 79.2133346,11.4053328 78.968,11.512 C78.7226654,11.6186672 78.5226674,11.7706657 78.368,11.968 C78.2133326,12.1653343 78.136,12.434665 78.136,12.776 C78.136,13.0000011 78.1813329,13.1893326 78.272,13.344 C78.3626671,13.4986674 78.4799993,13.6239995 78.624,13.72 C78.7680007,13.8160005 78.935999,13.8853331 79.128,13.928 C79.320001,13.9706669 79.5226656,13.992 79.736,13.992 C80.1840022,13.992 80.5679984,13.9306673 80.888,13.808 C81.2080016,13.6853327 81.4693323,13.5306676 81.672,13.344 C81.8746677,13.1573324 82.0239995,12.9546678 82.12,12.736 C82.2160005,12.5173322 82.264,12.312001 82.264,12.12 L82.264,10.728 Z M85.784,3.576 L87.144,3.576 L87.144,7.848 L87.176,7.848 C87.4000011,7.38933104 87.7519976,7.05600104 88.232,6.848 C88.7120024,6.63999896 89.2399971,6.536 89.816,6.536 C90.4560032,6.536 91.013331,6.65333216 91.488,6.888 C91.962669,7.12266784 92.3573318,7.439998 92.672,7.84 C92.9866682,8.240002 93.2239992,8.70133072 93.384,9.224 C93.5440008,9.74666928 93.624,10.3013304 93.624,10.888 C93.624,11.4746696 93.5466674,12.0293307 93.392,12.552 C93.2373326,13.0746693 93.0026682,13.5306647 92.688,13.92 C92.3733318,14.3093353 91.978669,14.6159989 91.504,14.84 C91.029331,15.0640011 90.4773365,15.176 89.848,15.176 C89.6453323,15.176 89.4186679,15.1546669 89.168,15.112 C88.9173321,15.0693331 88.6693346,15.0000005 88.424,14.904 C88.1786654,14.8079995 87.9466678,14.6773342 87.728,14.512 C87.5093322,14.3466658 87.3253341,14.1413346 87.176,13.896 L87.144,13.896 L87.144,15 L85.784,15 L85.784,3.576 Z M92.184,10.792 C92.184,10.4079981 92.1333338,10.0320018 92.032,9.664 C91.9306662,9.29599816 91.776001,8.96800144 91.568,8.68 C91.359999,8.39199856 91.093335,8.16266752 90.768,7.992 C90.442665,7.82133248 90.0613355,7.736 89.624,7.736 C89.165331,7.736 88.7760016,7.82666576 88.456,8.008 C88.1359984,8.18933424 87.8746677,8.4266652 87.672,8.72 C87.4693323,9.0133348 87.3226671,9.3466648 87.232,9.72 C87.1413329,10.0933352 87.096,10.4719981 87.096,10.856 C87.096,11.2613354 87.1439995,11.6533314 87.24,12.032 C87.3360005,12.4106686 87.487999,12.7439986 87.696,13.032 C87.904001,13.3200014 88.1733317,13.5519991 88.504,13.728 C88.8346683,13.9040009 89.2346643,13.992 89.704,13.992 C90.1733357,13.992 90.5653318,13.9013342 90.88,13.72 C91.1946682,13.5386658 91.447999,13.2986682 91.64,13 C91.832001,12.7013318 91.9706662,12.3600019 92.056,11.976 C92.1413338,11.5919981 92.184,11.1973354 92.184,10.792 Z M100.968,10.072 C100.946667,9.7519984 100.874667,9.44800144 100.752,9.16 C100.629333,8.87199856 100.464001,8.62400104 100.256,8.416 C100.047999,8.20799896 99.8026681,8.04266728 99.52,7.92 C99.2373319,7.79733272 98.925335,7.736 98.584,7.736 C98.2319982,7.736 97.9146681,7.79733272 97.632,7.92 C97.3493319,8.04266728 97.1066677,8.2106656 96.904,8.424 C96.7013323,8.6373344 96.5413339,8.88533192 96.424,9.168 C96.3066661,9.45066808 96.2373334,9.7519984 96.216,10.072 L100.968,10.072 Z M102.28,12.376 C102.098666,13.3040046 101.69867,14.0026643 101.08,14.472 C100.46133,14.9413357 99.6826714,15.176 98.744,15.176 C98.0826634,15.176 97.5093358,15.0693344 97.024,14.856 C96.5386642,14.6426656 96.1306683,14.3440019 95.8,13.96 C95.4693317,13.5759981 95.2213342,13.117336 95.056,12.584 C94.8906658,12.050664 94.7973334,11.4693365 94.776,10.84 C94.776,10.2106635 94.871999,9.63466928 95.064,9.112 C95.256001,8.58933072 95.5253316,8.13600192 95.872,7.752 C96.2186684,7.36799808 96.629331,7.0693344 97.104,6.856 C97.578669,6.6426656 98.0986638,6.536 98.664,6.536 C99.4000037,6.536 100.010664,6.68799848 100.496,6.992 C100.981336,7.29600152 101.370665,7.68266432 101.664,8.152 C101.957335,8.62133568 102.159999,9.13333056 102.272,9.688 C102.384001,10.2426694 102.429333,10.7706642 102.408,11.272 L96.216,11.272 C96.2053333,11.6346685 96.2479995,11.978665 96.344,12.304 C96.4400005,12.629335 96.5946656,12.9173321 96.808,13.168 C97.0213344,13.4186679 97.2933317,13.6186659 97.624,13.768 C97.9546683,13.9173341 98.3439978,13.992 98.792,13.992 C99.3680029,13.992 99.8399982,13.858668 100.208,13.592 C100.576002,13.325332 100.818666,12.9200027 100.936,12.376 L102.28,12.376 Z M103.896,3.576 L103.896,15 L105.256,15 L105.256,3.576 L103.896,3.576 Z"/>
<path fill="#959595" fill-rule="nonzero" d="M7,13 C10.3137085,13 13,10.3137085 13,7 C13,3.6862915 10.3137085,1 7,1 C3.6862915,1 1,3.6862915 1,7 C1,10.3137085 3.6862915,13 7,13 Z M7,14 C3.13400675,14 0,10.8659932 0,7 C0,3.13400675 3.13400675,0 7,0 C10.8659932,0 14,3.13400675 14,7 C14,10.8659932 10.8659932,14 7,14 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="301" height="39" viewBox="0 0 301 39" id="svg">
<defs>
<rect id="input-text-(postfix)-a" width="255" height="39"/>
<filter id="input-text-(postfix)-b" width="101.6%" height="110.3%" x="-.8%" y="-5.1%" filterUnits="objectBoundingBox">
<feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/>
<feOffset dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"/>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/>
<feColorMatrix in="shadowInnerInner1" values="0 0 0 0 0.0399394133 0 0 0 0 0.0399394133 0 0 0 0 0.0399394133 0 0 0 0.0859941123 0"/>
</filter>
<rect id="input-text-(postfix)-c" width="53" height="39" x="248"/>
</defs>
<g fill="none" fill-rule="evenodd">
<use fill="#FEFEFE" xlink:href="#input-text-(postfix)-a"/>
<use fill="#000" filter="url(#input-text-(postfix)-b)" xlink:href="#input-text-(postfix)-a"/>
<rect width="254" height="38" x=".5" y=".5" stroke="#CACACA"/>
<use fill="#F2F2F2" xlink:href="#input-text-(postfix)-c"/>
<rect width="52" height="38" x="248.5" y=".5" stroke="#CCC"/>
<path fill="#A9A9A9" d="M10.768,19.6843636 L13.744,19.6843636 C14.6080043,19.6950304 15.239998,19.5190321 15.64,19.1563636 C16.040002,18.7936952 16.24,18.2710337 16.24,17.5883636 C16.24,16.9056936 16.040002,16.3856988 15.64,16.0283636 C15.239998,15.6710285 14.6080043,15.4923636 13.744,15.4923636 L10.768,15.4923636 L10.768,19.6843636 Z M9.248,14.2123636 L14.256,14.2123636 C15.4080058,14.2123636 16.279997,14.5083607 16.872,15.1003636 C17.464003,15.6923666 17.76,16.5216916 17.76,17.5883636 C17.76,18.6550356 17.464003,19.4870273 16.872,20.0843636 C16.279997,20.6817 15.4080058,20.9750304 14.256,20.9643636 L10.768,20.9643636 L10.768,25.6363636 L9.248,25.6363636 L9.248,14.2123636 Z M19.472,14.2123636 L19.472,25.6363636 L20.832,25.6363636 L20.832,14.2123636 L19.472,14.2123636 Z M30.272,25.6043636 C30.0373322,25.743031 29.7120021,25.8123636 29.296,25.8123636 C28.9439982,25.8123636 28.664001,25.713698 28.456,25.5163636 C28.247999,25.3190293 28.144,24.9963659 28.144,24.5483636 C27.7706648,24.9963659 27.3360025,25.3190293 26.84,25.5163636 C26.3439975,25.713698 25.8080029,25.8123636 25.232,25.8123636 C24.8586648,25.8123636 24.5040017,25.7696974 24.168,25.6843636 C23.8319983,25.5990299 23.5413346,25.4656979 23.296,25.2843636 C23.0506654,25.1030294 22.8560007,24.8656984 22.712,24.5723636 C22.5679993,24.2790288 22.496,23.9243657 22.496,23.5083636 C22.496,23.039028 22.5759992,22.6550318 22.736,22.3563636 C22.8960008,22.0576955 23.1066654,21.8150312 23.368,21.6283636 C23.6293346,21.441696 23.9279983,21.3003641 24.264,21.2043636 C24.6000017,21.1083632 24.9439982,21.028364 25.296,20.9643636 C25.6693352,20.8896966 26.0239983,20.8336972 26.36,20.7963636 C26.6960017,20.7590301 26.9919987,20.7056973 27.248,20.6363636 C27.5040013,20.56703 27.7066659,20.4656976 27.856,20.3323636 C28.0053341,20.1990296 28.08,20.0043649 28.08,19.7483636 C28.08,19.4496955 28.0240006,19.2096979 27.912,19.0283636 C27.7999994,18.8470294 27.6560009,18.7083641 27.48,18.6123636 C27.3039991,18.5163632 27.1066678,18.4523638 26.888,18.4203636 C26.6693322,18.3883635 26.4533344,18.3723636 26.24,18.3723636 C25.6639971,18.3723636 25.1840019,18.4816959 24.8,18.7003636 C24.4159981,18.9190314 24.2080002,19.3323606 24.176,19.9403636 L22.816,19.9403636 C22.8373334,19.4283611 22.943999,18.9963654 23.136,18.6443636 C23.328001,18.2923619 23.5839984,18.0070314 23.904,17.7883636 C24.2240016,17.5696959 24.5893313,17.4123641 25,17.3163636 C25.4106687,17.2203632 25.8506643,17.1723636 26.32,17.1723636 C26.6933352,17.1723636 27.0639982,17.19903 27.432,17.2523636 C27.8000018,17.3056972 28.1333318,17.4150295 28.432,17.5803636 C28.7306682,17.7456978 28.9706658,17.9776955 29.152,18.2763636 C29.3333342,18.5750318 29.424,18.9643612 29.424,19.4443636 L29.424,23.7003636 C29.424,24.0203652 29.4426665,24.2550296 29.48,24.4043636 C29.5173335,24.5536977 29.6426656,24.6283636 29.856,24.6283636 C29.9733339,24.6283636 30.1119992,24.6016972 30.272,24.5483636 L30.272,25.6043636 Z M28.064,21.3643636 C27.8933325,21.4923643 27.6693347,21.5856967 27.392,21.6443636 C27.1146653,21.7030306 26.8240015,21.7510301 26.52,21.7883636 C26.2159985,21.8256972 25.9093349,21.8683634 25.6,21.9163636 C25.2906651,21.9643639 25.0133346,22.0416964 24.768,22.1483636 C24.5226654,22.2550308 24.3226674,22.4070293 24.168,22.6043636 C24.0133326,22.801698 23.936,23.0710286 23.936,23.4123636 C23.936,23.6363648 23.9813329,23.8256962 24.072,23.9803636 C24.1626671,24.1350311 24.2799993,24.2603632 24.424,24.3563636 C24.5680007,24.4523641 24.735999,24.5216968 24.928,24.5643636 C25.120001,24.6070305 25.3226656,24.6283636 25.536,24.6283636 C25.9840022,24.6283636 26.3679984,24.5670309 26.688,24.4443636 C27.0080016,24.3216964 27.2693323,24.1670312 27.472,23.9803636 C27.6746677,23.793696 27.8239995,23.5910314 27.92,23.3723636 C28.0160005,23.1536959 28.064,22.9483646 28.064,22.7563636 L28.064,21.3643636 Z M37.152,20.0203636 L38.56,20.0203636 C38.5066664,19.5296945 38.3786677,19.1056988 38.176,18.7483636 C37.9733323,18.3910285 37.7146682,18.0950315 37.4,17.8603636 C37.0853318,17.6256958 36.7226687,17.4523642 36.312,17.3403636 C35.9013313,17.2283631 35.4613357,17.1723636 34.992,17.1723636 C34.3413301,17.1723636 33.7706691,17.2870292 33.28,17.5163636 C32.7893309,17.7456981 32.381335,18.0603616 32.056,18.4603636 C31.730665,18.8603656 31.4880008,19.3296943 31.328,19.8683636 C31.1679992,20.407033 31.088,20.9856939 31.088,21.6043636 C31.088,22.2230334 31.1706658,22.7910277 31.336,23.3083636 C31.5013342,23.8256996 31.746665,24.2710284 32.072,24.6443636 C32.397335,25.0176988 32.8026642,25.305696 33.288,25.5083636 C33.7733358,25.7110313 34.3306635,25.8123636 34.96,25.8123636 C36.0160053,25.8123636 36.8506636,25.5350331 37.464,24.9803636 C38.0773364,24.4256942 38.4586659,23.6363688 38.608,22.6123636 L37.216,22.6123636 C37.1306662,23.2523668 36.8986686,23.7483619 36.52,24.1003636 C36.1413314,24.4523654 35.6160034,24.6283636 34.944,24.6283636 C34.5173312,24.6283636 34.1493349,24.5430312 33.84,24.3723636 C33.5306651,24.2016961 33.280001,23.9750317 33.088,23.6923636 C32.895999,23.4096956 32.7546671,23.0870321 32.664,22.7243636 C32.5733329,22.3616952 32.528,21.9883656 32.528,21.6043636 C32.528,21.1883616 32.5706662,20.7856989 32.656,20.3963636 C32.7413338,20.0070284 32.8826657,19.6630318 33.08,19.3643636 C33.2773343,19.0656955 33.5413317,18.8256979 33.872,18.6443636 C34.2026683,18.4630294 34.6133309,18.3723636 35.104,18.3723636 C35.6800029,18.3723636 36.138665,18.5163622 36.48,18.8043636 C36.821335,19.0923651 37.0453328,19.4976944 37.152,20.0203636 Z M45.872,20.7083636 C45.8506666,20.388362 45.7786673,20.0843651 45.656,19.7963636 C45.5333327,19.5083622 45.368001,19.2603647 45.16,19.0523636 C44.951999,18.8443626 44.7066681,18.6790309 44.424,18.5563636 C44.1413319,18.4336964 43.829335,18.3723636 43.488,18.3723636 C43.1359982,18.3723636 42.8186681,18.4336964 42.536,18.5563636 C42.2533319,18.6790309 42.0106677,18.8470292 41.808,19.0603636 C41.6053323,19.273698 41.4453339,19.5216956 41.328,19.8043636 C41.2106661,20.0870317 41.1413334,20.388362 41.12,20.7083636 L45.872,20.7083636 Z M47.184,23.0123636 C47.0026658,23.9403683 46.6026698,24.639028 45.984,25.1083636 C45.3653302,25.5776993 44.5866714,25.8123636 43.648,25.8123636 C42.9866634,25.8123636 42.4133358,25.705698 41.928,25.4923636 C41.4426642,25.2790292 41.0346683,24.9803656 40.704,24.5963636 C40.3733317,24.2123617 40.1253342,23.7536996 39.96,23.2203636 C39.7946658,22.6870276 39.7013334,22.1057001 39.68,21.4763636 C39.68,20.8470272 39.775999,20.2710329 39.968,19.7483636 C40.160001,19.2256944 40.4293316,18.7723656 40.776,18.3883636 C41.1226684,18.0043617 41.533331,17.705698 42.008,17.4923636 C42.482669,17.2790292 43.0026638,17.1723636 43.568,17.1723636 C44.3040037,17.1723636 44.9146642,17.3243621 45.4,17.6283636 C45.8853358,17.9323652 46.2746652,18.319028 46.568,18.7883636 C46.8613348,19.2576993 47.0639994,19.7696942 47.176,20.3243636 C47.2880006,20.8790331 47.3333334,21.4070278 47.312,21.9083636 L41.12,21.9083636 C41.1093333,22.2710321 41.1519995,22.6150287 41.248,22.9403636 C41.3440005,23.2656986 41.4986656,23.5536957 41.712,23.8043636 C41.9253344,24.0550316 42.1973317,24.2550296 42.528,24.4043636 C42.8586683,24.5536977 43.2479978,24.6283636 43.696,24.6283636 C44.2720029,24.6283636 44.7439982,24.4950316 45.112,24.2283636 C45.4800018,23.9616956 45.7226661,23.5563664 45.84,23.0123636 L47.184,23.0123636 Z M48.72,14.2123636 L48.72,25.6363636 L50.08,25.6363636 L50.08,20.9643636 C50.08,20.5910284 50.1306662,20.2470319 50.232,19.9323636 C50.3333338,19.6176954 50.4853323,19.3430315 50.688,19.1083636 C50.8906677,18.8736958 51.1439985,18.6923643 51.448,18.5643636 C51.7520015,18.436363 52.1119979,18.3723636 52.528,18.3723636 C53.0506693,18.3723636 53.4613318,18.5216955 53.76,18.8203636 C54.0586682,19.1190318 54.208,19.5243611 54.208,20.0363636 L54.208,25.6363636 L55.568,25.6363636 L55.568,20.1963636 C55.568,19.7483614 55.5226671,19.3403655 55.432,18.9723636 C55.3413329,18.6043618 55.1840011,18.2870316 54.96,18.0203636 C54.7359989,17.7536956 54.4426685,17.5456977 54.08,17.3963636 C53.7173315,17.2470296 53.2640027,17.1723636 52.72,17.1723636 C52.4746654,17.1723636 52.2213346,17.19903 51.96,17.2523636 C51.6986654,17.3056972 51.4480012,17.3883631 51.208,17.5003636 C50.9679988,17.6123642 50.752001,17.7563628 50.56,17.9323636 C50.367999,18.1083645 50.2186672,18.3243624 50.112,18.5803636 L50.08,18.5803636 L50.08,14.2123636 L48.72,14.2123636 Z M58.608,21.5083636 C58.608,22.0096995 58.674666,22.4550284 58.808,22.8443636 C58.941334,23.2336989 59.1253322,23.559029 59.36,23.8203636 C59.5946678,24.0816983 59.8693318,24.2816963 60.184,24.4203636 C60.4986682,24.559031 60.8319982,24.6283636 61.184,24.6283636 C61.5360018,24.6283636 61.8693318,24.559031 62.184,24.4203636 C62.4986682,24.2816963 62.7733322,24.0816983 63.008,23.8203636 C63.2426678,23.559029 63.426666,23.2336989 63.56,22.8443636 C63.693334,22.4550284 63.76,22.0096995 63.76,21.5083636 C63.76,21.0070278 63.693334,20.5616989 63.56,20.1723636 C63.426666,19.7830284 63.2426678,19.4550316 63.008,19.1883636 C62.7733322,18.9216956 62.4986682,18.719031 62.184,18.5803636 C61.8693318,18.4416963 61.5360018,18.3723636 61.184,18.3723636 C60.8319982,18.3723636 60.4986682,18.4416963 60.184,18.5803636 C59.8693318,18.719031 59.5946678,18.9216956 59.36,19.1883636 C59.1253322,19.4550316 58.941334,19.7830284 58.808,20.1723636 C58.674666,20.5616989 58.608,21.0070278 58.608,21.5083636 Z M57.168,21.5083636 C57.168,20.9003606 57.2533325,20.3323663 57.424,19.8043636 C57.5946675,19.276361 57.850665,18.8176989 58.192,18.4283636 C58.533335,18.0390284 58.9546642,17.7323648 59.456,17.5083636 C59.9573358,17.2843625 60.5333301,17.1723636 61.184,17.1723636 C61.8453366,17.1723636 62.4239975,17.2843625 62.92,17.5083636 C63.4160025,17.7323648 63.834665,18.0390284 64.176,18.4283636 C64.517335,18.8176989 64.7733325,19.276361 64.944,19.8043636 C65.1146675,20.3323663 65.2,20.9003606 65.2,21.5083636 C65.2,22.1163667 65.1146675,22.6816944 64.944,23.2043636 C64.7733325,23.7270329 64.517335,24.1830284 64.176,24.5723636 C63.834665,24.9616989 63.4160025,25.2656959 62.92,25.4843636 C62.4239975,25.7030314 61.8453366,25.8123636 61.184,25.8123636 C60.5333301,25.8123636 59.9573358,25.7030314 59.456,25.4843636 C58.9546642,25.2656959 58.533335,24.9616989 58.192,24.5723636 C57.850665,24.1830284 57.5946675,23.7270329 57.424,23.2043636 C57.2533325,22.6816944 57.168,22.1163667 57.168,21.5083636 Z M66.88,14.2123636 L66.88,25.6363636 L68.24,25.6363636 L68.24,14.2123636 L66.88,14.2123636 Z M71.344,21.5723636 C71.344,21.9563656 71.3946662,22.3323618 71.496,22.7003636 C71.5973338,23.0683655 71.751999,23.3963622 71.96,23.6843636 C72.168001,23.9723651 72.434665,24.2016961 72.76,24.3723636 C73.085335,24.5430312 73.4666645,24.6283636 73.904,24.6283636 C74.362669,24.6283636 74.7519984,24.5376979 75.072,24.3563636 C75.3920016,24.1750294 75.6533323,23.9376984 75.856,23.6443636 C76.0586677,23.3510288 76.2053329,23.0176988 76.296,22.6443636 C76.3866671,22.2710284 76.432,21.8923656 76.432,21.5083636 C76.432,21.1030283 76.3840005,20.7110322 76.288,20.3323636 C76.1919995,19.9536951 76.040001,19.6203651 75.832,19.3323636 C75.623999,19.0443622 75.3546683,18.8123645 75.024,18.6363636 C74.6933317,18.4603628 74.2933357,18.3723636 73.824,18.3723636 C73.365331,18.3723636 72.9760016,18.4630294 72.656,18.6443636 C72.3359984,18.8256979 72.080001,19.0656955 71.888,19.3643636 C71.695999,19.6630318 71.5573338,20.0043617 71.472,20.3883636 C71.3866662,20.7723656 71.344,21.1670283 71.344,21.5723636 Z M77.744,25.6363636 L76.384,25.6363636 L76.384,24.5163636 L76.352,24.5163636 C76.1279989,24.9750326 75.7760024,25.305696 75.296,25.5083636 C74.8159976,25.7110313 74.2880029,25.8123636 73.712,25.8123636 C73.0719968,25.8123636 72.514669,25.6950315 72.04,25.4603636 C71.565331,25.2256958 71.1706682,24.9110323 70.856,24.5163636 C70.5413318,24.121695 70.3040008,23.6630329 70.144,23.1403636 C69.9839992,22.6176944 69.904,22.0630332 69.904,21.4763636 C69.904,20.889694 69.9813326,20.3350329 70.136,19.8123636 C70.2906674,19.2896944 70.5253318,18.8336989 70.84,18.4443636 C71.1546682,18.0550284 71.549331,17.7456981 72.024,17.5163636 C72.498669,17.2870292 73.0506635,17.1723636 73.68,17.1723636 C73.8933344,17.1723636 74.1226654,17.1936968 74.368,17.2363636 C74.6133346,17.2790305 74.8586654,17.3510298 75.104,17.4523636 C75.3493346,17.5536975 75.5813322,17.6870295 75.8,17.8523636 C76.0186678,18.0176978 76.2026659,18.2230291 76.352,18.4683636 L76.384,18.4683636 L76.384,14.2123636 L77.744,14.2123636 L77.744,25.6363636 Z M85.584,20.7083636 C85.5626666,20.388362 85.4906673,20.0843651 85.368,19.7963636 C85.2453327,19.5083622 85.080001,19.2603647 84.872,19.0523636 C84.663999,18.8443626 84.4186681,18.6790309 84.136,18.5563636 C83.8533319,18.4336964 83.541335,18.3723636 83.2,18.3723636 C82.8479982,18.3723636 82.5306681,18.4336964 82.248,18.5563636 C81.9653319,18.6790309 81.7226677,18.8470292 81.52,19.0603636 C81.3173323,19.273698 81.1573339,19.5216956 81.04,19.8043636 C80.9226661,20.0870317 80.8533334,20.388362 80.832,20.7083636 L85.584,20.7083636 Z M86.896,23.0123636 C86.7146658,23.9403683 86.3146698,24.639028 85.696,25.1083636 C85.0773302,25.5776993 84.2986714,25.8123636 83.36,25.8123636 C82.6986634,25.8123636 82.1253358,25.705698 81.64,25.4923636 C81.1546642,25.2790292 80.7466683,24.9803656 80.416,24.5963636 C80.0853317,24.2123617 79.8373342,23.7536996 79.672,23.2203636 C79.5066658,22.6870276 79.4133334,22.1057001 79.392,21.4763636 C79.392,20.8470272 79.487999,20.2710329 79.68,19.7483636 C79.872001,19.2256944 80.1413316,18.7723656 80.488,18.3883636 C80.8346684,18.0043617 81.245331,17.705698 81.72,17.4923636 C82.194669,17.2790292 82.7146638,17.1723636 83.28,17.1723636 C84.0160037,17.1723636 84.6266642,17.3243621 85.112,17.6283636 C85.5973358,17.9323652 85.9866652,18.319028 86.28,18.7883636 C86.5733348,19.2576993 86.7759994,19.7696942 86.888,20.3243636 C87.0000006,20.8790331 87.0453334,21.4070278 87.024,21.9083636 L80.832,21.9083636 C80.8213333,22.2710321 80.8639995,22.6150287 80.96,22.9403636 C81.0560005,23.2656986 81.2106656,23.5536957 81.424,23.8043636 C81.6373344,24.0550316 81.9093317,24.2550296 82.24,24.4043636 C82.5706683,24.5536977 82.9599978,24.6283636 83.408,24.6283636 C83.9840029,24.6283636 84.4559982,24.4950316 84.824,24.2283636 C85.1920018,23.9616956 85.4346661,23.5563664 85.552,23.0123636 L86.896,23.0123636 Z M88.384,17.3643636 L88.384,25.6363636 L89.744,25.6363636 L89.744,21.9563636 C89.744,21.4230276 89.7973328,20.9510324 89.904,20.5403636 C90.0106672,20.1296949 90.1813322,19.7803651 90.416,19.4923636 C90.6506678,19.2043622 90.9599981,18.9856977 91.344,18.8363636 C91.7280019,18.6870296 92.1919973,18.6123636 92.736,18.6123636 L92.736,17.1723636 C91.9999963,17.1510302 91.3920024,17.300362 90.912,17.6203636 C90.4319976,17.9403652 90.0266683,18.4363603 89.696,19.1083636 L89.664,19.1083636 L89.664,17.3643636 L88.384,17.3643636 Z"/>
<path fill="#676767" d="M261.014,13.3543636 L261.014,22.6363636 L267.163,22.6363636 L267.163,21.5963636 L262.249,21.5963636 L262.249,13.3543636 L261.014,13.3543636 Z M273.614,22.6103636 C273.423332,22.7230309 273.159002,22.7793636 272.821,22.7793636 C272.534999,22.7793636 272.307501,22.6991978 272.1385,22.5388636 C271.969499,22.3785295 271.885,22.1163655 271.885,21.7523636 C271.581665,22.1163655 271.228502,22.3785295 270.8255,22.5388636 C270.422498,22.6991978 269.987002,22.7793636 269.519,22.7793636 C269.215665,22.7793636 268.927501,22.7446973 268.6545,22.6753636 C268.381499,22.60603 268.145334,22.4976977 267.946,22.3503636 C267.746666,22.2030296 267.588501,22.0101982 267.4715,21.7718636 C267.354499,21.5335291 267.296,21.2453653 267.296,20.9073636 C267.296,20.5260284 267.360999,20.2140315 267.491,19.9713636 C267.621001,19.7286958 267.792166,19.5315311 268.0045,19.3798636 C268.216834,19.2281962 268.459499,19.113364 268.7325,19.0353636 C269.005501,18.9573632 269.284999,18.8923639 269.571,18.8403636 C269.874335,18.7796967 270.162499,18.7341971 270.4355,18.7038636 C270.708501,18.6735302 270.948999,18.6301973 271.157,18.5738636 C271.365001,18.51753 271.529666,18.4351975 271.651,18.3268636 C271.772334,18.2185298 271.833,18.0603647 271.833,17.8523636 C271.833,17.6096958 271.7875,17.4146977 271.6965,17.2673636 C271.6055,17.1200296 271.488501,17.007364 271.3455,16.9293636 C271.202499,16.8513632 271.042168,16.7993638 270.8645,16.7733636 C270.686832,16.7473635 270.511334,16.7343636 270.338,16.7343636 C269.869998,16.7343636 269.480002,16.8231961 269.168,17.0008636 C268.855998,17.1785312 268.687,17.5143612 268.661,18.0083636 L267.556,18.0083636 C267.573333,17.5923616 267.659999,17.2413651 267.816,16.9553636 C267.972001,16.6693622 268.179999,16.4375312 268.44,16.2598636 C268.700001,16.0821961 268.996832,15.954364 269.3305,15.8763636 C269.664168,15.7983632 270.021665,15.7593636 270.403,15.7593636 C270.706335,15.7593636 271.007498,15.7810301 271.3065,15.8243636 C271.605501,15.8676972 271.876332,15.9565296 272.119,16.0908636 C272.361668,16.2251976 272.556666,16.4136958 272.704,16.6563636 C272.851334,16.8990315 272.925,17.2153617 272.925,17.6053636 L272.925,21.0633636 C272.925,21.3233649 272.940167,21.5140297 272.9705,21.6353636 C273.000833,21.7566976 273.102666,21.8173636 273.276,21.8173636 C273.371334,21.8173636 273.483999,21.7956972 273.614,21.7523636 L273.614,22.6103636 Z M271.82,19.1653636 C271.681333,19.2693642 271.499334,19.3451967 271.274,19.3928636 C271.048666,19.4405305 270.812501,19.4795302 270.5655,19.5098636 C270.318499,19.5401971 270.069335,19.5748634 269.818,19.6138636 C269.566665,19.6528638 269.341334,19.7156965 269.142,19.8023636 C268.942666,19.8890307 268.780167,20.0125295 268.6545,20.1728636 C268.528833,20.3331978 268.466,20.5520289 268.466,20.8293636 C268.466,21.0113645 268.502833,21.1651963 268.5765,21.2908636 C268.650167,21.4165309 268.745499,21.5183632 268.8625,21.5963636 C268.979501,21.674364 269.115999,21.7306968 269.272,21.7653636 C269.428001,21.8000305 269.592666,21.8173636 269.766,21.8173636 C270.130002,21.8173636 270.441999,21.7675308 270.702,21.6678636 C270.962001,21.5681965 271.174333,21.4425311 271.339,21.2908636 C271.503667,21.1391962 271.625,20.9745312 271.703,20.7968636 C271.781,20.6191961 271.82,20.4523644 271.82,20.2963636 L271.82,19.1653636 Z M274.28,13.3543636 L275.385,13.3543636 L275.385,16.8253636 L275.411,16.8253636 C275.593001,16.4526951 275.878998,16.1818645 276.269,16.0128636 C276.659002,15.8438628 277.087998,15.7593636 277.556,15.7593636 C278.076003,15.7593636 278.528831,15.854696 278.9145,16.0453636 C279.300169,16.2360313 279.620832,16.493862 279.8765,16.8188636 C280.132168,17.1438653 280.324999,17.5186948 280.455,17.9433636 C280.585001,18.3680324 280.65,18.8186946 280.65,19.2953636 C280.65,19.7720327 280.587167,20.2226948 280.4615,20.6473636 C280.335833,21.0720324 280.145168,21.4425287 279.8895,21.7588636 C279.633832,22.0751986 279.313169,22.3243627 278.9275,22.5063636 C278.541831,22.6883645 278.093336,22.7793636 277.582,22.7793636 C277.417332,22.7793636 277.233168,22.7620305 277.0295,22.7273636 C276.825832,22.6926968 276.624334,22.636364 276.425,22.5583636 C276.225666,22.4803632 276.037168,22.3741976 275.8595,22.2398636 C275.681832,22.1055296 275.532334,21.938698 275.411,21.7393636 L275.385,21.7393636 L275.385,22.6363636 L274.28,22.6363636 L274.28,13.3543636 Z M279.48,19.2173636 C279.48,18.9053621 279.438834,18.5998651 279.3565,18.3008636 C279.274166,18.0018621 279.148501,17.7353648 278.9795,17.5013636 C278.810499,17.2673625 278.593835,17.081031 278.3295,16.9423636 C278.065165,16.8036963 277.755335,16.7343636 277.4,16.7343636 C277.027331,16.7343636 276.711001,16.8080296 276.451,16.9553636 C276.190999,17.1026977 275.978667,17.2955291 275.814,17.5338636 C275.649332,17.7721982 275.530167,18.0430288 275.4565,18.3463636 C275.382833,18.6496985 275.346,18.9573621 275.346,19.2693636 C275.346,19.5986986 275.385,19.9171954 275.463,20.2248636 C275.541,20.5325318 275.664499,20.8033625 275.8335,21.0373636 C276.002501,21.2713648 276.221332,21.4598629 276.49,21.6028636 C276.758668,21.7458644 277.083665,21.8173636 277.465,21.8173636 C277.846335,21.8173636 278.164832,21.7436977 278.4205,21.5963636 C278.676168,21.4490296 278.881999,21.2540315 279.038,21.0113636 C279.194001,20.7686958 279.306666,20.4913652 279.376,20.1793636 C279.445334,19.8673621 279.48,19.5466986 279.48,19.2173636 Z M286.217,18.6323636 C286.199667,18.3723623 286.141167,18.1253648 286.0415,17.8913636 C285.941833,17.6573625 285.807501,17.4558645 285.6385,17.2868636 C285.469499,17.1178628 285.270168,16.9835308 285.0405,16.8838636 C284.810832,16.7841965 284.557335,16.7343636 284.28,16.7343636 C283.993999,16.7343636 283.736168,16.7841965 283.5065,16.8838636 C283.276832,16.9835308 283.079667,17.1200294 282.915,17.2933636 C282.750332,17.4666978 282.620334,17.6681958 282.525,17.8978636 C282.429666,18.1275315 282.373333,18.3723623 282.356,18.6323636 L286.217,18.6323636 Z M287.283,20.5043636 C287.135666,21.2583674 286.810669,21.8260284 286.308,22.2073636 C285.805331,22.5886989 285.17267,22.7793636 284.41,22.7793636 C283.872664,22.7793636 283.406835,22.6926978 283.0125,22.5193636 C282.618165,22.3460294 282.286668,22.1033652 282.018,21.7913636 C281.749332,21.4793621 281.547834,21.1066991 281.4135,20.6733636 C281.279166,20.2400281 281.203333,19.7676995 281.186,19.2563636 C281.186,18.7450277 281.263999,18.2770324 281.42,17.8523636 C281.576001,17.4276948 281.794832,17.0593652 282.0765,16.7473636 C282.358168,16.4353621 282.691831,16.1926978 283.0775,16.0193636 C283.463169,15.8460294 283.885664,15.7593636 284.345,15.7593636 C284.943003,15.7593636 285.439165,15.8828624 285.8335,16.1298636 C286.227835,16.3768649 286.544165,16.6910284 286.7825,17.0723636 C287.020835,17.4536989 287.1855,17.8696947 287.2765,18.3203636 C287.3675,18.7710326 287.404333,19.2000283 287.387,19.6073636 L282.356,19.6073636 C282.347333,19.9020318 282.382,20.181529 282.46,20.4458636 C282.538,20.7101983 282.663666,20.944196 282.837,21.1478636 C283.010334,21.3515313 283.231332,21.5140297 283.5,21.6353636 C283.768668,21.7566976 284.084998,21.8173636 284.449,21.8173636 C284.917002,21.8173636 285.300498,21.7090314 285.5995,21.4923636 C285.898501,21.2756959 286.095666,20.9463658 286.191,20.5043636 L287.283,20.5043636 Z M288.196,13.3543636 L288.196,22.6363636 L289.301,22.6363636 L289.301,13.3543636 L288.196,13.3543636 Z"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="742" height="541" viewBox="0 0 742 541" id="svg">
<defs>
<rect id="window-osx-a" width="742" height="541" rx="8"/>
</defs>
<g fill="none" fill-rule="evenodd">
<mask id="window-osx-b" fill="#fff">
<use xlink:href="#window-osx-a"/>
</mask>
<use fill="#FFF" xlink:href="#window-osx-a"/>
<g mask="url(#window-osx-b)">
<rect width="742" height="40" fill="#D8D8D8"/>
<circle cx="18" cy="20" r="5" fill="#F00"/>
<circle cx="36" cy="20" r="5" fill="#F8E71C"/>
<circle cx="54" cy="20" r="5" fill="#7ED321"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="301" height="146" viewBox="0 0 301 146" id="svg">
<defs>
<rect id="textarea-a" width="301" height="146"/>
<filter id="textarea-b" width="101.3%" height="102.7%" x="-.7%" y="-1.4%" filterUnits="objectBoundingBox">
<feGaussianBlur in="SourceAlpha" result="shadowBlurInner1" stdDeviation="1.5"/>
<feOffset dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"/>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" k2="-1" k3="1" operator="arithmetic" result="shadowInnerInner1"/>
<feColorMatrix in="shadowInnerInner1" values="0 0 0 0 0.0399394133 0 0 0 0 0.0399394133 0 0 0 0 0.0399394133 0 0 0 0.0859941123 0"/>
</filter>
</defs>
<g fill="none" fill-rule="evenodd">
<use fill="#FEFEFE" xlink:href="#textarea-a"/>
<use fill="#000" filter="url(#textarea-b)" xlink:href="#textarea-a"/>
<rect width="300" height="145" x=".5" y=".5" stroke="#CACACA"/>
<path fill="#A9A9A9" d="M11.84,12.856 L11.84,23 L13.36,23 L13.36,12.856 L17.168,12.856 L17.168,11.576 L8.032,11.576 L8.032,12.856 L11.84,12.856 Z M23.952,18.072 C23.9306666,17.7519984 23.8586673,17.4480014 23.736,17.16 C23.6133327,16.8719986 23.448001,16.624001 23.24,16.416 C23.031999,16.207999 22.7866681,16.0426673 22.504,15.92 C22.2213319,15.7973327 21.909335,15.736 21.568,15.736 C21.2159982,15.736 20.8986681,15.7973327 20.616,15.92 C20.3333319,16.0426673 20.0906677,16.2106656 19.888,16.424 C19.6853323,16.6373344 19.5253339,16.8853319 19.408,17.168 C19.2906661,17.4506681 19.2213334,17.7519984 19.2,18.072 L23.952,18.072 Z M25.264,20.376 C25.0826658,21.3040046 24.6826698,22.0026643 24.064,22.472 C23.4453302,22.9413357 22.6666714,23.176 21.728,23.176 C21.0666634,23.176 20.4933358,23.0693344 20.008,22.856 C19.5226642,22.6426656 19.1146683,22.3440019 18.784,21.96 C18.4533317,21.5759981 18.2053342,21.117336 18.04,20.584 C17.8746658,20.050664 17.7813334,19.4693365 17.76,18.84 C17.76,18.2106635 17.855999,17.6346693 18.048,17.112 C18.240001,16.5893307 18.5093316,16.1360019 18.856,15.752 C19.2026684,15.3679981 19.613331,15.0693344 20.088,14.856 C20.562669,14.6426656 21.0826638,14.536 21.648,14.536 C22.3840037,14.536 22.9946642,14.6879985 23.48,14.992 C23.9653358,15.2960015 24.3546652,15.6826643 24.648,16.152 C24.9413348,16.6213357 25.1439994,17.1333306 25.256,17.688 C25.3680006,18.2426694 25.4133334,18.7706642 25.392,19.272 L19.2,19.272 C19.1893333,19.6346685 19.2319995,19.978665 19.328,20.304 C19.4240005,20.629335 19.5786656,20.9173321 19.792,21.168 C20.0053344,21.4186679 20.2773317,21.6186659 20.608,21.768 C20.9386683,21.9173341 21.3279978,21.992 21.776,21.992 C22.3520029,21.992 22.8239982,21.858668 23.192,21.592 C23.5600018,21.325332 23.8026661,20.9200027 23.92,20.376 L25.264,20.376 Z M29.024,18.648 L25.92,23 L27.568,23 L29.872,19.576 L32.176,23 L33.92,23 L30.72,18.536 L33.568,14.728 L31.936,14.728 L29.872,17.624 L27.888,14.728 L26.144,14.728 L29.024,18.648 Z M36.976,14.728 L36.976,12.248 L35.616,12.248 L35.616,14.728 L34.208,14.728 L34.208,15.928 L35.616,15.928 L35.616,21.192 C35.616,21.5760019 35.653333,21.8853322 35.728,22.12 C35.802667,22.3546678 35.9173326,22.5359994 36.072,22.664 C36.2266674,22.7920006 36.4293321,22.8799998 36.68,22.928 C36.9306679,22.9760002 37.2319982,23 37.584,23 L38.624,23 L38.624,21.8 L38,21.8 C37.7866656,21.8 37.613334,21.7920001 37.48,21.776 C37.346666,21.7599999 37.242667,21.7253336 37.168,21.672 C37.093333,21.6186664 37.0426668,21.5440005 37.016,21.448 C36.9893332,21.3519995 36.976,21.2240008 36.976,21.064 L36.976,15.928 L38.624,15.928 L38.624,14.728 L36.976,14.728 Z M51.904,22.968 C51.6693322,23.1066674 51.3440021,23.176 50.928,23.176 C50.5759982,23.176 50.296001,23.0773343 50.088,22.88 C49.879999,22.6826657 49.776,22.3600022 49.776,21.912 C49.4026648,22.3600022 48.9680025,22.6826657 48.472,22.88 C47.9759975,23.0773343 47.4400029,23.176 46.864,23.176 C46.4906648,23.176 46.1360017,23.1333338 45.8,23.048 C45.4639983,22.9626662 45.1733346,22.8293342 44.928,22.648 C44.6826654,22.4666658 44.4880007,22.2293348 44.344,21.936 C44.1999993,21.6426652 44.128,21.2880021 44.128,20.872 C44.128,20.4026643 44.2079992,20.0186682 44.368,19.72 C44.5280008,19.4213318 44.7386654,19.1786676 45,18.992 C45.2613346,18.8053324 45.5599983,18.6640005 45.896,18.568 C46.2320017,18.4719995 46.5759982,18.3920003 46.928,18.328 C47.3013352,18.253333 47.6559983,18.1973335 47.992,18.16 C48.3280017,18.1226665 48.6239987,18.0693337 48.88,18 C49.1360013,17.9306663 49.3386659,17.829334 49.488,17.696 C49.6373341,17.562666 49.712,17.3680013 49.712,17.112 C49.712,16.8133318 49.6560006,16.5733342 49.544,16.392 C49.4319994,16.2106658 49.2880009,16.0720005 49.112,15.976 C48.9359991,15.8799995 48.7386678,15.8160002 48.52,15.784 C48.3013322,15.7519998 48.0853344,15.736 47.872,15.736 C47.2959971,15.736 46.8160019,15.8453322 46.432,16.064 C46.0479981,16.2826678 45.8400002,16.695997 45.808,17.304 L44.448,17.304 C44.4693334,16.7919974 44.575999,16.3600018 44.768,16.008 C44.960001,15.6559982 45.2159984,15.3706678 45.536,15.152 C45.8560016,14.9333322 46.2213313,14.7760005 46.632,14.68 C47.0426687,14.5839995 47.4826643,14.536 47.952,14.536 C48.3253352,14.536 48.6959982,14.5626664 49.064,14.616 C49.4320018,14.6693336 49.7653318,14.7786658 50.064,14.944 C50.3626682,15.1093342 50.6026658,15.3413318 50.784,15.64 C50.9653342,15.9386682 51.056,16.3279976 51.056,16.808 L51.056,21.064 C51.056,21.3840016 51.0746665,21.6186659 51.112,21.768 C51.1493335,21.9173341 51.2746656,21.992 51.488,21.992 C51.6053339,21.992 51.7439992,21.9653336 51.904,21.912 L51.904,22.968 Z M49.696,18.728 C49.5253325,18.8560006 49.3013347,18.949333 49.024,19.008 C48.7466653,19.066667 48.4560015,19.1146665 48.152,19.152 C47.8479985,19.1893335 47.5413349,19.2319998 47.232,19.28 C46.9226651,19.3280002 46.6453346,19.4053328 46.4,19.512 C46.1546654,19.6186672 45.9546674,19.7706657 45.8,19.968 C45.6453326,20.1653343 45.568,20.434665 45.568,20.776 C45.568,21.0000011 45.6133329,21.1893326 45.704,21.344 C45.7946671,21.4986674 45.9119993,21.6239995 46.056,21.72 C46.2000007,21.8160005 46.367999,21.8853331 46.56,21.928 C46.752001,21.9706669 46.9546656,21.992 47.168,21.992 C47.6160022,21.992 47.9999984,21.9306673 48.32,21.808 C48.6400016,21.6853327 48.9013323,21.5306676 49.104,21.344 C49.3066677,21.1573324 49.4559995,20.9546678 49.552,20.736 C49.6480005,20.5173322 49.696,20.312001 49.696,20.12 L49.696,18.728 Z M53.12,14.728 L53.12,23 L54.48,23 L54.48,19.32 C54.48,18.786664 54.5333328,18.3146687 54.64,17.904 C54.7466672,17.4933313 54.9173322,17.1440014 55.152,16.856 C55.3866678,16.5679986 55.6959981,16.3493341 56.08,16.2 C56.4640019,16.0506659 56.9279973,15.976 57.472,15.976 L57.472,14.536 C56.7359963,14.5146666 56.1280024,14.6639984 55.648,14.984 C55.1679976,15.3040016 54.7626683,15.7999966 54.432,16.472 L54.4,16.472 L54.4,14.728 L53.12,14.728 Z M64.24,18.072 C64.2186666,17.7519984 64.1466673,17.4480014 64.024,17.16 C63.9013327,16.8719986 63.736001,16.624001 63.528,16.416 C63.319999,16.207999 63.0746681,16.0426673 62.792,15.92 C62.5093319,15.7973327 62.197335,15.736 61.856,15.736 C61.5039982,15.736 61.1866681,15.7973327 60.904,15.92 C60.6213319,16.0426673 60.3786677,16.2106656 60.176,16.424 C59.9733323,16.6373344 59.8133339,16.8853319 59.696,17.168 C59.5786661,17.4506681 59.5093334,17.7519984 59.488,18.072 L64.24,18.072 Z M65.552,20.376 C65.3706658,21.3040046 64.9706698,22.0026643 64.352,22.472 C63.7333302,22.9413357 62.9546714,23.176 62.016,23.176 C61.3546634,23.176 60.7813358,23.0693344 60.296,22.856 C59.8106642,22.6426656 59.4026683,22.3440019 59.072,21.96 C58.7413317,21.5759981 58.4933342,21.117336 58.328,20.584 C58.1626658,20.050664 58.0693334,19.4693365 58.048,18.84 C58.048,18.2106635 58.143999,17.6346693 58.336,17.112 C58.528001,16.5893307 58.7973316,16.1360019 59.144,15.752 C59.4906684,15.3679981 59.901331,15.0693344 60.376,14.856 C60.850669,14.6426656 61.3706638,14.536 61.936,14.536 C62.6720037,14.536 63.2826642,14.6879985 63.768,14.992 C64.2533358,15.2960015 64.6426652,15.6826643 64.936,16.152 C65.2293348,16.6213357 65.4319994,17.1333306 65.544,17.688 C65.6560006,18.2426694 65.7013334,18.7706642 65.68,19.272 L59.488,19.272 C59.4773333,19.6346685 59.5199995,19.978665 59.616,20.304 C59.7120005,20.629335 59.8666656,20.9173321 60.08,21.168 C60.2933344,21.4186679 60.5653317,21.6186659 60.896,21.768 C61.2266683,21.9173341 61.6159978,21.992 62.064,21.992 C62.6400029,21.992 63.1119982,21.858668 63.48,21.592 C63.8480018,21.325332 64.0906661,20.9200027 64.208,20.376 L65.552,20.376 Z M74.416,22.968 C74.1813322,23.1066674 73.8560021,23.176 73.44,23.176 C73.0879982,23.176 72.808001,23.0773343 72.6,22.88 C72.391999,22.6826657 72.288,22.3600022 72.288,21.912 C71.9146648,22.3600022 71.4800025,22.6826657 70.984,22.88 C70.4879975,23.0773343 69.9520029,23.176 69.376,23.176 C69.0026648,23.176 68.6480017,23.1333338 68.312,23.048 C67.9759983,22.9626662 67.6853346,22.8293342 67.44,22.648 C67.1946654,22.4666658 67.0000007,22.2293348 66.856,21.936 C66.7119993,21.6426652 66.64,21.2880021 66.64,20.872 C66.64,20.4026643 66.7199992,20.0186682 66.88,19.72 C67.0400008,19.4213318 67.2506654,19.1786676 67.512,18.992 C67.7733346,18.8053324 68.0719983,18.6640005 68.408,18.568 C68.7440017,18.4719995 69.0879982,18.3920003 69.44,18.328 C69.8133352,18.253333 70.1679983,18.1973335 70.504,18.16 C70.8400017,18.1226665 71.1359987,18.0693337 71.392,18 C71.6480013,17.9306663 71.8506659,17.829334 72,17.696 C72.1493341,17.562666 72.224,17.3680013 72.224,17.112 C72.224,16.8133318 72.1680006,16.5733342 72.056,16.392 C71.9439994,16.2106658 71.8000009,16.0720005 71.624,15.976 C71.4479991,15.8799995 71.2506678,15.8160002 71.032,15.784 C70.8133322,15.7519998 70.5973344,15.736 70.384,15.736 C69.8079971,15.736 69.3280019,15.8453322 68.944,16.064 C68.5599981,16.2826678 68.3520002,16.695997 68.32,17.304 L66.96,17.304 C66.9813334,16.7919974 67.087999,16.3600018 67.28,16.008 C67.472001,15.6559982 67.7279984,15.3706678 68.048,15.152 C68.3680016,14.9333322 68.7333313,14.7760005 69.144,14.68 C69.5546687,14.5839995 69.9946643,14.536 70.464,14.536 C70.8373352,14.536 71.2079982,14.5626664 71.576,14.616 C71.9440018,14.6693336 72.2773318,14.7786658 72.576,14.944 C72.8746682,15.1093342 73.1146658,15.3413318 73.296,15.64 C73.4773342,15.9386682 73.568,16.3279976 73.568,16.808 L73.568,21.064 C73.568,21.3840016 73.5866665,21.6186659 73.624,21.768 C73.6613335,21.9173341 73.7866656,21.992 74,21.992 C74.1173339,21.992 74.2559992,21.9653336 74.416,21.912 L74.416,22.968 Z M72.208,18.728 C72.0373325,18.8560006 71.8133347,18.949333 71.536,19.008 C71.2586653,19.066667 70.9680015,19.1146665 70.664,19.152 C70.3599985,19.1893335 70.0533349,19.2319998 69.744,19.28 C69.4346651,19.3280002 69.1573346,19.4053328 68.912,19.512 C68.6666654,19.6186672 68.4666674,19.7706657 68.312,19.968 C68.1573326,20.1653343 68.08,20.434665 68.08,20.776 C68.08,21.0000011 68.1253329,21.1893326 68.216,21.344 C68.3066671,21.4986674 68.4239993,21.6239995 68.568,21.72 C68.7120007,21.8160005 68.879999,21.8853331 69.072,21.928 C69.264001,21.9706669 69.4666656,21.992 69.68,21.992 C70.1280022,21.992 70.5119984,21.9306673 70.832,21.808 C71.1520016,21.6853327 71.4133323,21.5306676 71.616,21.344 C71.8186677,21.1573324 71.9679995,20.9546678 72.064,20.736 C72.1600005,20.5173322 72.208,20.312001 72.208,20.12 L72.208,18.728 Z M85.744,17.384 L87.152,17.384 C87.0986664,16.8933309 86.9706677,16.4693351 86.768,16.112 C86.5653323,15.7546649 86.3066682,15.4586678 85.992,15.224 C85.6773318,14.9893322 85.3146687,14.8160006 84.904,14.704 C84.4933313,14.5919994 84.0533357,14.536 83.584,14.536 C82.9333301,14.536 82.3626691,14.6506655 81.872,14.88 C81.3813309,15.1093345 80.973335,15.423998 80.648,15.824 C80.322665,16.224002 80.0800008,16.6933306 79.92,17.232 C79.7599992,17.7706694 79.68,18.3493302 79.68,18.968 C79.68,19.5866698 79.7626658,20.1546641 79.928,20.672 C80.0933342,21.1893359 80.338665,21.6346648 80.664,22.008 C80.989335,22.3813352 81.3946642,22.6693323 81.88,22.872 C82.3653358,23.0746677 82.9226635,23.176 83.552,23.176 C84.6080053,23.176 85.4426636,22.8986694 86.056,22.344 C86.6693364,21.7893306 87.0506659,21.0000051 87.2,19.976 L85.808,19.976 C85.7226662,20.6160032 85.4906686,21.1119982 85.112,21.464 C84.7333314,21.8160018 84.2080034,21.992 83.536,21.992 C83.1093312,21.992 82.7413349,21.9066675 82.432,21.736 C82.1226651,21.5653325 81.872001,21.3386681 81.68,21.056 C81.487999,20.7733319 81.3466671,20.4506685 81.256,20.088 C81.1653329,19.7253315 81.12,19.3520019 81.12,18.968 C81.12,18.5519979 81.1626662,18.1493353 81.248,17.76 C81.3333338,17.3706647 81.4746657,17.0266682 81.672,16.728 C81.8693343,16.4293318 82.1333317,16.1893342 82.464,16.008 C82.7946683,15.8266658 83.2053309,15.736 83.696,15.736 C84.2720029,15.736 84.730665,15.8799986 85.072,16.168 C85.413335,16.4560014 85.6373328,16.8613307 85.744,17.384 Z M89.712,18.872 C89.712,19.3733358 89.778666,19.8186647 89.912,20.208 C90.045334,20.5973353 90.2293322,20.9226654 90.464,21.184 C90.6986678,21.4453346 90.9733318,21.6453326 91.288,21.784 C91.6026682,21.9226674 91.9359982,21.992 92.288,21.992 C92.6400018,21.992 92.9733318,21.9226674 93.288,21.784 C93.6026682,21.6453326 93.8773322,21.4453346 94.112,21.184 C94.3466678,20.9226654 94.530666,20.5973353 94.664,20.208 C94.797334,19.8186647 94.864,19.3733358 94.864,18.872 C94.864,18.3706642 94.797334,17.9253353 94.664,17.536 C94.530666,17.1466647 94.3466678,16.818668 94.112,16.552 C93.8773322,16.285332 93.6026682,16.0826674 93.288,15.944 C92.9733318,15.8053326 92.6400018,15.736 92.288,15.736 C91.9359982,15.736 91.6026682,15.8053326 91.288,15.944 C90.9733318,16.0826674 90.6986678,16.285332 90.464,16.552 C90.2293322,16.818668 90.045334,17.1466647 89.912,17.536 C89.778666,17.9253353 89.712,18.3706642 89.712,18.872 Z M88.272,18.872 C88.272,18.263997 88.3573325,17.6960026 88.528,17.168 C88.6986675,16.6399974 88.954665,16.1813353 89.296,15.792 C89.637335,15.4026647 90.0586642,15.0960011 90.56,14.872 C91.0613358,14.6479989 91.6373301,14.536 92.288,14.536 C92.9493366,14.536 93.5279975,14.6479989 94.024,14.872 C94.5200025,15.0960011 94.938665,15.4026647 95.28,15.792 C95.621335,16.1813353 95.8773325,16.6399974 96.048,17.168 C96.2186675,17.6960026 96.304,18.263997 96.304,18.872 C96.304,19.480003 96.2186675,20.0453307 96.048,20.568 C95.8773325,21.0906693 95.621335,21.5466647 95.28,21.936 C94.938665,22.3253353 94.5200025,22.6293322 94.024,22.848 C93.5279975,23.0666678 92.9493366,23.176 92.288,23.176 C91.6373301,23.176 91.0613358,23.0666678 90.56,22.848 C90.0586642,22.6293322 89.637335,22.3253353 89.296,21.936 C88.954665,21.5466647 88.6986675,21.0906693 88.528,20.568 C88.3573325,20.0453307 88.272,19.480003 88.272,18.872 Z M97.904,14.728 L97.904,23 L99.264,23 L99.264,18.328 C99.264,17.9546648 99.3146662,17.6106682 99.416,17.296 C99.5173338,16.9813318 99.6693323,16.7066678 99.872,16.472 C100.074668,16.2373322 100.327998,16.0560006 100.632,15.928 C100.936002,15.7999994 101.295998,15.736 101.712,15.736 C102.234669,15.736 102.645332,15.8853318 102.944,16.184 C103.242668,16.4826682 103.392,16.8879974 103.392,17.4 L103.392,23 L104.752,23 L104.752,17.56 C104.752,17.1119978 104.706667,16.7040018 104.616,16.336 C104.525333,15.9679982 104.368001,15.650668 104.144,15.384 C103.919999,15.117332 103.626668,14.9093341 103.264,14.76 C102.901332,14.6106659 102.448003,14.536 101.904,14.536 C100.677327,14.536 99.7813362,15.0373283 99.216,16.04 L99.184,16.04 L99.184,14.728 L97.904,14.728 Z M108.688,14.728 L108.688,12.248 L107.328,12.248 L107.328,14.728 L105.92,14.728 L105.92,15.928 L107.328,15.928 L107.328,21.192 C107.328,21.5760019 107.365333,21.8853322 107.44,22.12 C107.514667,22.3546678 107.629333,22.5359994 107.784,22.664 C107.938667,22.7920006 108.141332,22.8799998 108.392,22.928 C108.642668,22.9760002 108.943998,23 109.296,23 L110.336,23 L110.336,21.8 L109.712,21.8 C109.498666,21.8 109.325334,21.7920001 109.192,21.776 C109.058666,21.7599999 108.954667,21.7253336 108.88,21.672 C108.805333,21.6186664 108.754667,21.5440005 108.728,21.448 C108.701333,21.3519995 108.688,21.2240008 108.688,21.064 L108.688,15.928 L110.336,15.928 L110.336,14.728 L108.688,14.728 Z M117.584,18.072 C117.562667,17.7519984 117.490667,17.4480014 117.368,17.16 C117.245333,16.8719986 117.080001,16.624001 116.872,16.416 C116.663999,16.207999 116.418668,16.0426673 116.136,15.92 C115.853332,15.7973327 115.541335,15.736 115.2,15.736 C114.847998,15.736 114.530668,15.7973327 114.248,15.92 C113.965332,16.0426673 113.722668,16.2106656 113.52,16.424 C113.317332,16.6373344 113.157334,16.8853319 113.04,17.168 C112.922666,17.4506681 112.853333,17.7519984 112.832,18.072 L117.584,18.072 Z M118.896,20.376 C118.714666,21.3040046 118.31467,22.0026643 117.696,22.472 C117.07733,22.9413357 116.298671,23.176 115.36,23.176 C114.698663,23.176 114.125336,23.0693344 113.64,22.856 C113.154664,22.6426656 112.746668,22.3440019 112.416,21.96 C112.085332,21.5759981 111.837334,21.117336 111.672,20.584 C111.506666,20.050664 111.413333,19.4693365 111.392,18.84 C111.392,18.2106635 111.487999,17.6346693 111.68,17.112 C111.872001,16.5893307 112.141332,16.1360019 112.488,15.752 C112.834668,15.3679981 113.245331,15.0693344 113.72,14.856 C114.194669,14.6426656 114.714664,14.536 115.28,14.536 C116.016004,14.536 116.626664,14.6879985 117.112,14.992 C117.597336,15.2960015 117.986665,15.6826643 118.28,16.152 C118.573335,16.6213357 118.775999,17.1333306 118.888,17.688 C119.000001,18.2426694 119.045333,18.7706642 119.024,19.272 L112.832,19.272 C112.821333,19.6346685 112.864,19.978665 112.96,20.304 C113.056,20.629335 113.210666,20.9173321 113.424,21.168 C113.637334,21.4186679 113.909332,21.6186659 114.24,21.768 C114.570668,21.9173341 114.959998,21.992 115.408,21.992 C115.984003,21.992 116.455998,21.858668 116.824,21.592 C117.192002,21.325332 117.434666,20.9200027 117.552,20.376 L118.896,20.376 Z M120.432,14.728 L120.432,23 L121.792,23 L121.792,18.328 C121.792,17.9546648 121.842666,17.6106682 121.944,17.296 C122.045334,16.9813318 122.197332,16.7066678 122.4,16.472 C122.602668,16.2373322 122.855998,16.0560006 123.16,15.928 C123.464002,15.7999994 123.823998,15.736 124.24,15.736 C124.762669,15.736 125.173332,15.8853318 125.472,16.184 C125.770668,16.4826682 125.92,16.8879974 125.92,17.4 L125.92,23 L127.28,23 L127.28,17.56 C127.28,17.1119978 127.234667,16.7040018 127.144,16.336 C127.053333,15.9679982 126.896001,15.650668 126.672,15.384 C126.447999,15.117332 126.154668,14.9093341 125.792,14.76 C125.429332,14.6106659 124.976003,14.536 124.432,14.536 C123.205327,14.536 122.309336,15.0373283 121.744,16.04 L121.712,16.04 L121.712,14.728 L120.432,14.728 Z M131.216,14.728 L131.216,12.248 L129.856,12.248 L129.856,14.728 L128.448,14.728 L128.448,15.928 L129.856,15.928 L129.856,21.192 C129.856,21.5760019 129.893333,21.8853322 129.968,22.12 C130.042667,22.3546678 130.157333,22.5359994 130.312,22.664 C130.466667,22.7920006 130.669332,22.8799998 130.92,22.928 C131.170668,22.9760002 131.471998,23 131.824,23 L132.864,23 L132.864,21.8 L132.24,21.8 C132.026666,21.8 131.853334,21.7920001 131.72,21.776 C131.586666,21.7599999 131.482667,21.7253336 131.408,21.672 C131.333333,21.6186664 131.282667,21.5440005 131.256,21.448 C131.229333,21.3519995 131.216,21.2240008 131.216,21.064 L131.216,15.928 L132.864,15.928 L132.864,14.728 L131.216,14.728 Z"/>
<g fill="#666" transform="translate(291 136)">
<rect width="1" height="1" y="6"/>
<rect width="1" height="1" x="1" y="5"/>
<rect width="1" height="1" x="2" y="4"/>
<rect width="1" height="1" x="3" y="3"/>
<rect width="1" height="1" x="4" y="2"/>
<rect width="1" height="1" x="5" y="1"/>
<rect width="1" height="1" x="6"/>
<rect width="1" height="1" x="6" y="4"/>
<rect width="1" height="1" x="5" y="5"/>
<rect width="1" height="1" x="4" y="6"/>
</g>
</g>
</svg>
<script>
flatten(document.getElementById('svg'));
</script>
body{
padding:1rem;
display: flex;
flex-direction:column;
h1 {
font-family:sans-serif;
font-weight:300;
color:grey;
}
p{
font-family:sans-serif;
font-weight:300;
line-height:2;
}
svg {
margin:1rem 0;
box-shadow:0px 4px 4px rgba(0,0,0,0.24);
}
}
/*
Random path and shape generator, flattener test base: https://jsfiddle.net/fjm9423q/embedded/result/
Basic usage example: https://jsfiddle.net/nrjvmqur/embedded/result/
Basic usage: flatten(document.getElementById('svg'));
What it does: Flattens elements (converts elements to paths and flattens transformations).
If the argument element (whose id is above 'svg') has children, or it's descendants has children,
these children elements are flattened also.
If you want to modify path coordinates using non-affine methods (eg. perspective distort),
you can convert all segments to cubic curves using:
flatten(document.getElementById('svg'), true);
There are also arguments 'toAbsolute' (convert coordinates to absolute) and 'dec',
number of digits after decimal separator.
*/
/*
The MIT License (MIT)
Copyright (c) 2014 Timo (https://github.com/timo22345)
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.
*/
SVGElement.prototype.getTransformToElement = SVGElement.prototype.getTransformToElement || function(toElement) {
return toElement.getScreenCTM().inverse().multiply(this.getScreenCTM());
};
(function ()
{
var p2s = /,?([achlmqrstvxz]),?/gi;
var convertToString = function (arr)
{
return arr.join(',').replace(p2s, '$1');
};
// Flattens transformations of element or it's children and sub-children
// elem: DOM element
// toCubics: converts all segments to cubics
// toAbsolute: converts all segments to Absolute
// dec: number of digits after decimal separator
// Returns: no return value
function flatten(elem, toCubics, toAbsolute, rectAsArgs, dec)
{
if (!elem) return;
if (typeof (rectAsArgs) == 'undefined') rectAsArgs = false;
if (typeof (toCubics) == 'undefined') toCubics = false;
if (typeof (toAbsolute) == 'undefined') toAbsolute = false;
if (typeof (dec) == 'undefined') dec = false;
if (elem && elem.children && elem.children.length)
{
for (var i = 0, ilen = elem.children.length; i < ilen; i++)
{
//console.log(elem.children[i]);
flatten(elem.children[i], toCubics, toAbsolute, rectAsArgs, dec);
}
elem.removeAttribute('transform');
return;
}
if (!(elem instanceof SVGCircleElement ||
elem instanceof SVGRectElement ||
elem instanceof SVGEllipseElement ||
elem instanceof SVGLineElement ||
elem instanceof SVGPolygonElement ||
elem instanceof SVGPolylineElement ||
elem instanceof SVGPathElement)) return;
path_elem = convertToPath(elem, rectAsArgs);
//console.log('path_elem', $(path_elem).wrap('<div />').parent().html() );
//$(path_elem).unwrap();
if (!path_elem || path_elem.getAttribute(d) == '') return 'M 0 0';
// Rounding coordinates to dec decimals
if (dec || dec === 0)
{
if (dec > 15) dec = 15;
else if (dec < 0) dec = 0;
}
else dec = false;
function r(num)
{
if (dec !== false) return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec);
else return num;
}
var arr;
//var pathDOM = path_elem.node;
var pathDOM = path_elem;
var d = pathDOM.getAttribute('d').trim();
// If you want to retain current path commans, set toCubics to false
if (!toCubics)
{ // Set to false to prevent possible re-normalization.
arr = parsePathString(d); // str to array
var arr_orig = arr;
arr = pathToAbsolute(arr); // mahvstcsqz -> uppercase
}
// If you want to modify path data using nonAffine methods,
// set toCubics to true
else
{
arr = path2curve(d); // mahvstcsqz -> MC
var arr_orig = arr;
}
var svgDOM = pathDOM.ownerSVGElement;
// Get the relation matrix that converts path coordinates
// to SVGroot's coordinate space
var matrix = pathDOM.getTransformToElement(svgDOM);
// The following code can bake transformations
// both normalized and non-normalized data
// Coordinates have to be Absolute in the following
var i = 0,
j, m = arr.length,
letter = '',
letter_orig = '',
x = 0,
y = 0,
point, newcoords = [],
newcoords_orig = [],
pt = svgDOM.createSVGPoint(),
subpath_start = {}, prevX = 0,
prevY = 0;
subpath_start.x = null;
subpath_start.y = null;
for (; i < m; i++)
{
letter = arr[i][0].toUpperCase();
letter_orig = arr_orig[i][0];
newcoords[i] = [];
newcoords[i][0] = arr[i][0];
if (letter == 'A')
{
x = arr[i][6];
y = arr[i][7];
pt.x = arr[i][6];
pt.y = arr[i][7];
newcoords[i] = arc_transform(arr[i][1], arr[i][2], arr[i][3], arr[i][4], arr[i][5], pt, matrix);
// rounding arc parameters
// x,y are rounded normally
// other parameters at least to 5 decimals
// because they affect more than x,y rounding
newcoords[i][1] = newcoords[i][1]; //rx
newcoords[i][2] = newcoords[i][2]; //ry
newcoords[i][3] = newcoords[i][3]; //x-axis-rotation
newcoords[i][6] = newcoords[i][6]; //x
newcoords[i][7] = newcoords[i][7]; //y
}
else if (letter != 'Z')
{
// parse other segs than Z and A
for (j = 1; j < arr[i].length; j = j + 2)
{
if (letter == 'V') y = arr[i][j];
else if (letter == 'H') x = arr[i][j];
else
{
x = arr[i][j];
y = arr[i][j + 1];
}
pt.x = x;
pt.y = y;
point = pt.matrixTransform(matrix);
if (letter == 'V' || letter == 'H')
{
newcoords[i][0] = 'L';
newcoords[i][j] = point.x;
newcoords[i][j + 1] = point.y;
}
else
{
newcoords[i][j] = point.x;
newcoords[i][j + 1] = point.y;
}
}
}
if ((letter != 'Z' && subpath_start.x === null) || letter == 'M')
{
subpath_start.x = x;
subpath_start.y = y;
}
if (letter == 'Z')
{
x = subpath_start.x;
y = subpath_start.y;
}
}
// Convert all that was relative back to relative
// This could be combined to above, but to make code more readable
// this is made separately.
var prevXtmp = 0;
var prevYtmp = 0;
subpath_start.x = '';
for (i = 0; i < newcoords.length; i++)
{
letter_orig = arr_orig[i][0];
if (letter_orig == 'A' || letter_orig == 'M' || letter_orig == 'L' || letter_orig == 'C' || letter_orig == 'S' || letter_orig == 'Q' || letter_orig == 'T' || letter_orig == 'H' || letter_orig == 'V')
{
var len = newcoords[i].length;
var lentmp = len;
if (letter_orig == 'A')
{
newcoords[i][6] = r(newcoords[i][6]);
newcoords[i][7] = r(newcoords[i][7]);
}
else
{
lentmp--;
while (--lentmp) newcoords[i][lentmp] = r(newcoords[i][lentmp]);
}
prevX = newcoords[i][len - 2];
prevY = newcoords[i][len - 1];
}
else
if (letter_orig == 'a')
{
prevXtmp = newcoords[i][6];
prevYtmp = newcoords[i][7];
newcoords[i][0] = letter_orig;
newcoords[i][6] = r(newcoords[i][6] - prevX);
newcoords[i][7] = r(newcoords[i][7] - prevY);
prevX = prevXtmp;
prevY = prevYtmp;
}
else
if (letter_orig == 'm' || letter_orig == 'l' || letter_orig == 'c' || letter_orig == 's' || letter_orig == 'q' || letter_orig == 't' || letter_orig == 'h' || letter_orig == 'v')
{
var len = newcoords[i].length;
prevXtmp = newcoords[i][len - 2];
prevYtmp = newcoords[i][len - 1];
for (j = 1; j < len; j = j + 2)
{
if (letter_orig == 'h' || letter_orig == 'v')
newcoords[i][0] = 'l';
else newcoords[i][0] = letter_orig;
newcoords[i][j] = r(newcoords[i][j] - prevX);
newcoords[i][j + 1] = r(newcoords[i][j + 1] - prevY);
}
prevX = prevXtmp;
prevY = prevYtmp;
}
if ((letter_orig.toLowerCase() != 'z' && subpath_start.x == '') || letter_orig.toLowerCase() == 'm')
{
subpath_start.x = prevX;
subpath_start.y = prevY;
}
if (letter_orig.toLowerCase() == 'z')
{
prevX = subpath_start.x;
prevY = subpath_start.y;
}
}
if (toAbsolute) newcoords = pathToAbsolute(newcoords);
path_elem.setAttribute('d', convertToString(newcoords));
path_elem.removeAttribute('transform');
}
// Converts all shapes to path retaining attributes.
// oldElem - DOM element to be replaced by path. Can be one of the following:
// ellipse, circle, path, line, polyline, polygon and rect.
// rectAsArgs - Boolean. If true, rect roundings will be as arcs. Otherwise as cubics.
// Return value: path element.
// Source: https://github.com/duopixel/Method-Draw/blob/master/editor/src/svgcanvas.js
// Modifications: Timo (https://github.com/timo22345)
function convertToPath(oldElem, rectAsArgs)
{
if (!oldElem) return;
// Create new path element
var path = document.createElementNS(oldElem.ownerSVGElement.namespaceURI, 'path');
// All attributes that path element can have
var attrs = ['requiredFeatures', 'requiredExtensions', 'systemLanguage', 'id', 'xml:base', 'xml:lang', 'xml:space', 'onfocusin', 'onfocusout', 'onactivate', 'onclick', 'onmousedown', 'onmouseup', 'onmouseover', 'onmousemove', 'onmouseout', 'onload', 'alignment-baseline', 'baseline-shift', 'clip', 'clip-path', 'clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cursor', 'direction', 'display', 'dominant-baseline', 'enable-background', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'glyph-orientation-horizontal', 'glyph-orientation-vertical', 'image-rendering', 'kerning', 'letter-spacing', 'lighting-color', 'marker-end', 'marker-mid', 'marker-start', 'mask', 'opacity', 'overflow', 'pointer-events', 'shape-rendering', 'stop-color', 'stop-opacity', 'stroke', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke-width', 'text-anchor', 'text-decoration', 'text-rendering', 'unicode-bidi', 'visibility', 'word-spacing', 'writing-mode', 'class', 'style', 'externalResourcesRequired', 'transform', 'd', 'pathLength'];
// Copy attributes of oldElem to path
var attrName, attrValue;
for (var i = 0, ilen = attrs.length; i < ilen; i++)
{
var attrName = attrs[i];
var attrValue = oldElem.getAttribute(attrName);
if (attrValue) path.setAttribute(attrName, attrValue);
}
var d = '';
var valid = function (val)
{
return !(typeof (val) !== 'number' || val == Infinity || val < 0);
}
// Possibly the cubed root of 6, but 1.81 works best
var num = 1.81;
var tag = oldElem.tagName;
switch (tag)
{
case 'ellipse':
case 'circle':
var rx = +oldElem.getAttribute('rx'),
ry = +oldElem.getAttribute('ry'),
cx = +oldElem.getAttribute('cx'),
cy = +oldElem.getAttribute('cy');
if (tag == 'circle')
{
rx = ry = +oldElem.getAttribute('r');
}
d += convertToString([
['M', (cx - rx), (cy)],
['C', (cx - rx), (cy - ry / num), (cx - rx / num), (cy - ry), (cx), (cy - ry)],
['C', (cx + rx / num), (cy - ry), (cx + rx), (cy - ry / num), (cx + rx), (cy)],
['C', (cx + rx), (cy + ry / num), (cx + rx / num), (cy + ry), (cx), (cy + ry)],
['C', (cx - rx / num), (cy + ry), (cx - rx), (cy + ry / num), (cx - rx), (cy)],
['Z']
]);
break;
case 'path':
d = oldElem.getAttribute('d');
break;
case 'line':
var x1 = oldElem.getAttribute('x1'),
y1 = oldElem.getAttribute('y1');
x2 = oldElem.getAttribute('x2');
y2 = oldElem.getAttribute('y2');
d = 'M' + x1 + ',' + y1 + 'L' + x2 + ',' + y2;
break;
case 'polyline':
d = 'M' + oldElem.getAttribute('points');
break;
case 'polygon':
d = 'M' + oldElem.getAttribute('points') + 'Z';
break;
case 'rect':
var rx = +oldElem.getAttribute('rx'),
ry = +oldElem.getAttribute('ry'),
b = oldElem.getBBox(),
x = b.x,
y = b.y,
w = b.width,
h = b.height;
// Validity checks from http://www.w3.org/TR/SVG/shapes.html#RectElement:
// If neither ‘rx’ nor ‘ry’ are properly specified, then set both rx and ry to 0. (This will result in square corners.)
if (!valid(rx) && !valid(ry)) rx = ry = 0;
// Otherwise, if a properly specified value is provided for ‘rx’, but not for ‘ry’, then set both rx and ry to the value of ‘rx’.
else if (valid(rx) && !valid(ry)) ry = rx;
// Otherwise, if a properly specified value is provided for ‘ry’, but not for ‘rx’, then set both rx and ry to the value of ‘ry’.
else if (valid(ry) && !valid(rx)) rx = ry;
else
{
// If rx is greater than half of ‘width’, then set rx to half of ‘width’.
if (rx > w / 2) rx = w / 2;
// If ry is greater than half of ‘height’, then set ry to half of ‘height’.
if (ry > h / 2) ry = h / 2;
}
if (!rx && !ry)
{
d += convertToString([
['M', x, y],
['L', x + w, y],
['L', x + w, y + h],
['L', x, y + h],
['L', x, y],
['Z']
]);
}
else if (rectAsArgs)
{
d += convertToString([
['M', x + rx, y],
['H', x + w - rx],
['A', rx, ry, 0, 0, 1, x + w, y + ry],
['V', y + h - ry],
['A', rx, ry, 0, 0, 1, x + w - rx, y + h],
['H', x + rx],
['A', rx, ry, 0, 0, 1, x, y + h - ry],
['V', y + ry],
['A', rx, ry, 0, 0, 1, x + rx, y]
]);
}
else
{
var num = 2.19;
if (!ry) ry = rx
d += convertToString([
['M', x, y + ry],
['C', x, y + ry / num, x + rx / num, y, x + rx, y],
['L', x + w - rx, y],
['C', x + w - rx / num, y, x + w, y + ry / num, x + w, y + ry],
['L', x + w, y + h - ry],
['C', x + w, y + h - ry / num, x + w - rx / num, y + h, x + w - rx, y + h],
['L', x + rx, y + h],
['C', x + rx / num, y + h, x, y + h - ry / num, x, y + h - ry],
['L', x, y + ry],
['Z']
]);
}
break;
default:
//path.parentNode.removeChild(path);
break;
}
if (d) path.setAttribute('d', d);
// Replace the current element with the converted one
oldElem.parentNode.replaceChild(path, oldElem);
return path;
};
// This is needed to flatten transformations of elliptical arcs
// Note! This is not needed if Raphael.path2curve is used
function arc_transform(a_rh, a_rv, a_offsetrot, large_arc_flag, sweep_flag, endpoint, matrix, svgDOM)
{
function NEARZERO(B)
{
if (Math.abs(B) < 0.0000000000000001) return true;
else return false;
}
var rh, rv, rot;
var m = []; // matrix representation of transformed ellipse
var s, c; // sin and cos helpers (the former offset rotation)
var A, B, C; // ellipse implicit equation:
var ac, A2, C2; // helpers for angle and halfaxis-extraction.
rh = a_rh;
rv = a_rv;
a_offsetrot = a_offsetrot * (Math.PI / 180); // deg->rad
rot = a_offsetrot;
s = parseFloat(Math.sin(rot));
c = parseFloat(Math.cos(rot));
// build ellipse representation matrix (unit circle transformation).
// the 2x2 matrix multiplication with the upper 2x2 of a_mat is inlined.
m[0] = matrix.a * +rh * c + matrix.c * rh * s;
m[1] = matrix.b * +rh * c + matrix.d * rh * s;
m[2] = matrix.a * -rv * s + matrix.c * rv * c;
m[3] = matrix.b * -rv * s + matrix.d * rv * c;
// to implict equation (centered)
A = (m[0] * m[0]) + (m[2] * m[2]);
C = (m[1] * m[1]) + (m[3] * m[3]);
B = (m[0] * m[1] + m[2] * m[3]) * 2.0;
// precalculate distance A to C
ac = A - C;
// convert implicit equation to angle and halfaxis:
if (NEARZERO(B))
{
a_offsetrot = 0;
A2 = A;
C2 = C;
}
else
{
if (NEARZERO(ac))
{
A2 = A + B * 0.5;
C2 = A - B * 0.5;
a_offsetrot = Math.PI / 4.0;
}
else
{
// Precalculate radical:
var K = 1 + B * B / (ac * ac);
// Clamp (precision issues might need this.. not likely, but better save than sorry)
if (K < 0) K = 0;
else K = Math.sqrt(K);
A2 = 0.5 * (A + C + K * ac);
C2 = 0.5 * (A + C - K * ac);
a_offsetrot = 0.5 * Math.atan2(B, ac);
}
}
// This can get slightly below zero due to rounding issues.
// it's save to clamp to zero in this case (this yields a zero length halfaxis)
if (A2 < 0) A2 = 0;
else A2 = Math.sqrt(A2);
if (C2 < 0) C2 = 0;
else C2 = Math.sqrt(C2);
// now A2 and C2 are half-axis:
if (ac <= 0)
{
a_rv = A2;
a_rh = C2;
}
else
{
a_rv = C2;
a_rh = A2;
}
// If the transformation matrix contain a mirror-component
// winding order of the ellise needs to be changed.
if ((matrix.a * matrix.d) - (matrix.b * matrix.c) < 0)
{
if (!sweep_flag) sweep_flag = 1;
else sweep_flag = 0;
}
// Finally, transform arc endpoint. This takes care about the
// translational part which we ignored at the whole math-showdown above.
endpoint = endpoint.matrixTransform(matrix);
// Radians back to degrees
a_offsetrot = a_offsetrot * 180 / Math.PI;
var r = ['A', a_rh, a_rv, a_offsetrot, large_arc_flag, sweep_flag, endpoint.x, endpoint.y];
return r;
}
// Parts of Raphaël 2.1.0 (MIT licence: http://raphaeljs.com/license.html)
// Contains eg. bugfixed path2curve() function
var R = {};
var has = 'hasOwnProperty';
var Str = String;
var array = 'array';
var isnan = {
'NaN': 1,
'Infinity': 1,
'-Infinity': 1
};
var lowerCase = Str.prototype.toLowerCase;
var upperCase = Str.prototype.toUpperCase;
var objectToString = Object.prototype.toString;
var concat = 'concat';
var split = 'split';
var apply = 'apply';
var math = Math,
mmax = math.max,
mmin = math.min,
abs = math.abs,
pow = math.pow,
PI = math.PI,
round = math.round,
toFloat = parseFloat,
toInt = parseInt;
var p2s = /,?([achlmqrstvxz]),?/gi;
var pathCommand = /([achlmrqstvz])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/ig;
var pathValues = /(-?\d*\.?\d*(?:e[\-+]?\d+)?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/ig;
R.is = function (o, type)
{
type = lowerCase.call(type);
if (type == 'finite')
{
return !isnan[has](+o);
}
if (type == 'array')
{
return o instanceof Array;
}
return type == 'null' && o === null || type == typeof o && o !== null || type == 'object' && o === Object(o) || type == 'array' && Array.isArray && Array.isArray(o) || objectToString.call(o).slice(8, -1).toLowerCase() == type
};
function clone(obj)
{
if (Object(obj) !== obj)
{
return obj;
}
var res = new obj.constructor;
for (var key in obj)
{
if (obj[has](key))
{
res[key] = clone(obj[key]);
}
}
return res;
}
R._path2string = function ()
{
return this.join(',').replace(p2s, '$1');
};
function repush(array, item)
{
for (var i = 0, ii = array.length; i < ii; i++)
if (array[i] === item)
{
return array.push(array.splice(i, 1)[0]);
}
}
var pathClone = function (pathArray)
{
var res = clone(pathArray);
res.toString = R._path2string;
return res;
};
var paths = function (ps)
{
var p = paths.ps = paths.ps ||
{};
if (p[ps]) p[ps].sleep = 100;
else p[ps] = {
sleep: 100
};
setTimeout(function ()
{
for (var key in p)
{
if (p[has](key) && key != ps)
{
p[key].sleep--;
!p[key].sleep && delete p[key];
}
}
});
return p[ps];
};
function catmullRom2bezier(crp, z)
{
var d = [];
for (var i = 0, iLen = crp.length; iLen - 2 * !z > i; i += 2)
{
var p = [
{
x: +crp[i - 2],
y: +crp[i - 1]
},
{
x: +crp[i],
y: +crp[i + 1]
},
{
x: +crp[i + 2],
y: +crp[i + 3]
},
{
x: +crp[i + 4],
y: +crp[i + 5]
}];
if (z)
{
if (!i)
{
p[0] = {
x: +crp[iLen - 2],
y: +crp[iLen - 1]
};
}
else
{
if (iLen - 4 == i)
{
p[3] = {
x: +crp[0],
y: +crp[1]
};
}
else
{
if (iLen - 2 == i)
{
p[2] = {
x: +crp[0],
y: +crp[1]
};
p[3] = {
x: +crp[2],
y: +crp[3]
};
}
}
}
}
else
{
if (iLen - 4 == i)
{
p[3] = p[2];
}
else
{
if (!i)
{
p[0] = {
x: +crp[i],
y: +crp[i + 1]
};
}
}
}
d.push(['C', (-p[0].x + 6 * p[1].x + p[2].x) / 6, (-p[0].y + 6 * p[1].y + p[2].y) / 6, (p[1].x + 6 * p[2].x - p[3].x) / 6, (p[1].y + 6 * p[2].y - p[3].y) / 6, p[2].x, p[2].y])
}
return d
};
var parsePathString = function (pathString)
{
if (!pathString) return null;
var pth = paths(pathString);
if (pth.arr) return pathClone(pth.arr)
var paramCounts = {
a: 7,
c: 6,
h: 1,
l: 2,
m: 2,
r: 4,
q: 4,
s: 4,
t: 2,
v: 1,
z: 0
}, data = [];
if (R.is(pathString, array) && R.is(pathString[0], array)) data = pathClone(pathString);
if (!data.length)
{
Str(pathString).replace(pathCommand, function (a, b, c)
{
var params = [],
name = b.toLowerCase();
c.replace(pathValues, function (a, b)
{
b && params.push(+b);
});
if (name == 'm' && params.length > 2)
{
data.push([b][concat](params.splice(0, 2)));
name = 'l';
b = b == 'm' ? 'l' : 'L'
}
if (name == 'r') data.push([b][concat](params))
else
{
while (params.length >= paramCounts[name])
{
data.push([b][concat](params.splice(0, paramCounts[name])));
if (!paramCounts[name]) break;
}
}
})
}
data.toString = R._path2string;
pth.arr = pathClone(data);
return data;
};
function repush(array, item)
{
for (var i = 0, ii = array.length; i < ii; i++)
if (array[i] === item)
{
return array.push(array.splice(i, 1)[0]);
}
}
var pathToAbsolute = cacher(function (pathArray)
{
//var pth = paths(pathArray); // Timo: commented to prevent multiple caching
// for some reason only FF proceed correctly
// when not cached using cacher() around
// this function.
//if (pth.abs) return pathClone(pth.abs)
if (!R.is(pathArray, array) || !R.is(pathArray && pathArray[0], array))
pathArray = parsePathString(pathArray)
if (!pathArray || !pathArray.length) return [['M', 0, 0]];
var res = [],
x = 0,
y = 0,
mx = 0,
my = 0,
start = 0;
if (pathArray[0][0] == 'M')
{
x = +pathArray[0][1];
y = +pathArray[0][2];
mx = x;
my = y;
start++;
res[0] = ['M', x, y];
}
var crz = pathArray.length == 3 && pathArray[0][0] == 'M' && pathArray[1][0].toUpperCase() == 'R' && pathArray[2][0].toUpperCase() == 'Z';
for (var r, pa, i = start, ii = pathArray.length; i < ii; i++)
{
res.push(r = []);
pa = pathArray[i];
if (pa[0] != upperCase.call(pa[0]))
{
r[0] = upperCase.call(pa[0]);
switch (r[0])
{
case 'A':
r[1] = pa[1];
r[2] = pa[2];
r[3] = pa[3];
r[4] = pa[4];
r[5] = pa[5];
r[6] = +(pa[6] + x);
r[7] = +(pa[7] + y);
break;
case 'V':
r[1] = +pa[1] + y;
break;
case 'H':
r[1] = +pa[1] + x;
break;
case 'R':
var dots = [x, y][concat](pa.slice(1));
for (var j = 2, jj = dots.length; j < jj; j++)
{
dots[j] = +dots[j] + x;
dots[++j] = +dots[j] + y
}
res.pop();
res = res[concat](catmullRom2bezier(dots, crz));
break;
case 'M':
mx = +pa[1] + x;
my = +pa[2] + y;
default:
for (j = 1, jj = pa.length; j < jj; j++)
r[j] = +pa[j] + (j % 2 ? x : y)
}
}
else
{
if (pa[0] == 'R')
{
dots = [x, y][concat](pa.slice(1));
res.pop();
res = res[concat](catmullRom2bezier(dots, crz));
r = ['R'][concat](pa.slice(-2));
}
else
{
for (var k = 0, kk = pa.length; k < kk; k++)
r[k] = pa[k]
}
}
switch (r[0])
{
case 'Z':
x = mx;
y = my;
break;
case 'H':
x = r[1];
break;
case 'V':
y = r[1];
break;
case 'M':
mx = r[r.length - 2];
my = r[r.length - 1];
default:
x = r[r.length - 2];
y = r[r.length - 1];
}
}
res.toString = R._path2string;
//pth.abs = pathClone(res);
return res;
});
function cacher(f, scope, postprocessor)
{
function newf()
{
var arg = Array.prototype.slice.call(arguments, 0),
args = arg.join('\u2400'),
cache = newf.cache = newf.cache ||
{}, count = newf.count = newf.count || [];
if (cache.hasOwnProperty(args))
{
for (var i = 0, ii = count.length; i < ii; i++)
if (count[i] === args)
{
count.push(count.splice(i, 1)[0]);
}
return postprocessor ? postprocessor(cache[args]) : cache[args];
}
count.length >= 1E3 && delete cache[count.shift()];
count.push(args);
cache[args] = f.apply(scope, arg);
return postprocessor ? postprocessor(cache[args]) : cache[args];
}
return newf;
}
var l2c = function (x1, y1, x2, y2)
{
return [x1, y1, x2, y2, x2, y2];
},
q2c = function (x1, y1, ax, ay, x2, y2)
{
var _13 = 1 / 3,
_23 = 2 / 3;
return [_13 * x1 + _23 * ax, _13 * y1 + _23 * ay, _13 * x2 + _23 * ax, _13 * y2 + _23 * ay, x2, y2]
},
a2c = cacher(function (x1, y1, rx, ry, angle, large_arc_flag, sweep_flag, x2, y2, recursive)
{
var _120 = PI * 120 / 180,
rad = PI / 180 * (+angle || 0),
res = [],
xy,
rotate = cacher(function (x, y, rad)
{
var X = x * Math.cos(rad) - y * Math.sin(rad),
Y = x * Math.sin(rad) + y * Math.cos(rad);
return {
x: X,
y: Y
};
});
if (!recursive)
{
xy = rotate(x1, y1, -rad);
x1 = xy.x;
y1 = xy.y;
xy = rotate(x2, y2, -rad);
x2 = xy.x;
y2 = xy.y;
var cos = Math.cos(PI / 180 * angle),
sin = Math.sin(PI / 180 * angle),
x = (x1 - x2) / 2,
y = (y1 - y2) / 2;
var h = x * x / (rx * rx) + y * y / (ry * ry);
if (h > 1)
{
h = Math.sqrt(h);
rx = h * rx;
ry = h * ry;
}
var rx2 = rx * rx,
ry2 = ry * ry,
k = (large_arc_flag == sweep_flag ? -1 : 1) * Math.sqrt(Math.abs((rx2 * ry2 - rx2 * y * y - ry2 * x * x) / (rx2 * y * y + ry2 * x * x))),
cx = k * rx * y / ry + (x1 + x2) / 2,
cy = k * -ry * x / rx + (y1 + y2) / 2,
f1 = Math.asin(((y1 - cy) / ry).toFixed(9)),
f2 = Math.asin(((y2 - cy) / ry).toFixed(9));
f1 = x1 < cx ? PI - f1 : f1;
f2 = x2 < cx ? PI - f2 : f2;
f1 < 0 && (f1 = PI * 2 + f1);
f2 < 0 && (f2 = PI * 2 + f2);
if (sweep_flag && f1 > f2)
{
f1 = f1 - PI * 2;
}
if (!sweep_flag && f2 > f1)
{
f2 = f2 - PI * 2;
}
}
else
{
f1 = recursive[0];
f2 = recursive[1];
cx = recursive[2];
cy = recursive[3];
}
var df = f2 - f1;
if (Math.abs(df) > _120)
{
var f2old = f2,
x2old = x2,
y2old = y2;
f2 = f1 + _120 * (sweep_flag && f2 > f1 ? 1 : -1);
x2 = cx + rx * Math.cos(f2);
y2 = cy + ry * Math.sin(f2);
res = a2c(x2, y2, rx, ry, angle, 0, sweep_flag, x2old, y2old, [f2, f2old, cx, cy])
}
df = f2 - f1;
var c1 = Math.cos(f1),
s1 = Math.sin(f1),
c2 = Math.cos(f2),
s2 = Math.sin(f2),
t = Math.tan(df / 4),
hx = 4 / 3 * rx * t,
hy = 4 / 3 * ry * t,
m1 = [x1, y1],
m2 = [x1 + hx * s1, y1 - hy * c1],
m3 = [x2 + hx * s2, y2 - hy * c2],
m4 = [x2, y2];
m2[0] = 2 * m1[0] - m2[0];
m2[1] = 2 * m1[1] - m2[1];
if (recursive) return [m2, m3, m4].concat(res);
else
{
res = [m2, m3, m4].concat(res).join().split(',');
var newres = [];
for (var i = 0, ii = res.length; i < ii; i++)
newres[i] = i % 2 ? rotate(res[i - 1], res[i], rad).y : rotate(res[i], res[i + 1], rad).x
return newres
}
});
var path2curve = cacher(function (path, path2)
{
var pth = !path2 && paths(path);
if (!path2 && pth.curve) return pathClone(pth.curve)
var p = pathToAbsolute(path),
p2 = path2 && pathToAbsolute(path2),
attrs = {
x: 0,
y: 0,
bx: 0,
by: 0,
X: 0,
Y: 0,
qx: null,
qy: null
},
attrs2 = {
x: 0,
y: 0,
bx: 0,
by: 0,
X: 0,
Y: 0,
qx: null,
qy: null
},
processPath = function (path, d, pcom)
{
var nx, ny;
if (!path)
{
return ['C', d.x, d.y, d.x, d.y, d.x, d.y];
}!(path[0] in
{
T: 1,
Q: 1
}) && (d.qx = d.qy = null);
switch (path[0])
{
case 'M':
d.X = path[1];
d.Y = path[2];
break;
case 'A':
path = ['C'][concat](a2c[apply](0, [d.x, d.y][concat](path.slice(1))));
break;
case 'S':
if (pcom == 'C' || pcom == 'S')
{
nx = d.x * 2 - d.bx;
ny = d.y * 2 - d.by;
}
else
{
nx = d.x;
ny = d.y;
}
path = ['C', nx, ny][concat](path.slice(1));
break;
case 'T':
if (pcom == 'Q' || pcom == 'T')
{
d.qx = d.x * 2 - d.qx;
d.qy = d.y * 2 - d.qy;
}
else
{
d.qx = d.x;
d.qy = d.y;
}
path = ['C'][concat](q2c(d.x, d.y, d.qx, d.qy, path[1], path[2]));
break;
case 'Q':
d.qx = path[1];
d.qy = path[2];
path = ['C'][concat](q2c(d.x, d.y, path[1], path[2], path[3], path[4]));
break;
case 'L':
path = ['C'][concat](l2c(d.x, d.y, path[1], path[2]));
break;
case 'H':
path = ['C'][concat](l2c(d.x, d.y, path[1], d.y));
break;
case 'V':
path = ['C'][concat](l2c(d.x, d.y, d.x, path[1]));
break;
case 'Z':
path = ['C'][concat](l2c(d.x, d.y, d.X, d.Y));
break
}
return path
},
fixArc = function (pp, i)
{
if (pp[i].length > 7)
{
pp[i].shift();
var pi = pp[i];
while (pi.length)
{
pcoms1[i] = 'A';
p2 && (pcoms2[i] = 'A');
pp.splice(i++, 0, ['C'][concat](pi.splice(0, 6)));
}
pp.splice(i, 1);
ii = mmax(p.length, p2 && p2.length || 0);
}
},
fixM = function (path1, path2, a1, a2, i)
{
if (path1 && path2 && path1[i][0] == 'M' && path2[i][0] != 'M')
{
path2.splice(i, 0, ['M', a2.x, a2.y]);
a1.bx = 0;
a1.by = 0;
a1.x = path1[i][1];
a1.y = path1[i][2];
ii = mmax(p.length, p2 && p2.length || 0);
}
},
pcoms1 = [],
pcoms2 = [],
pfirst = '',
pcom = '';
for (var i = 0, ii = mmax(p.length, p2 && p2.length || 0); i < ii; i++)
{
p[i] && (pfirst = p[i][0]);
if (pfirst != 'C')
{
pcoms1[i] = pfirst;
i && (pcom = pcoms1[i - 1]);
}
p[i] = processPath(p[i], attrs, pcom);
if (pcoms1[i] != 'A' && pfirst == 'C') pcoms1[i] = 'C';
fixArc(p, i);
if (p2)
{
p2[i] && (pfirst = p2[i][0]);
if (pfirst != 'C')
{
pcoms2[i] = pfirst;
i && (pcom = pcoms2[i - 1]);
}
p2[i] = processPath(p2[i], attrs2, pcom);
if (pcoms2[i] != 'A' && pfirst == 'C') pcoms2[i] = 'C'
fixArc(p2, i);
}
fixM(p, p2, attrs, attrs2, i);
fixM(p2, p, attrs2, attrs, i);
var seg = p[i],
seg2 = p2 && p2[i],
seglen = seg.length,
seg2len = p2 && seg2.length;
attrs.x = seg[seglen - 2];
attrs.y = seg[seglen - 1];
attrs.bx = toFloat(seg[seglen - 4]) || attrs.x;
attrs.by = toFloat(seg[seglen - 3]) || attrs.y;
attrs2.bx = p2 && (toFloat(seg2[seg2len - 4]) || attrs2.x);
attrs2.by = p2 && (toFloat(seg2[seg2len - 3]) || attrs2.y);
attrs2.x = p2 && seg2[seg2len - 2];
attrs2.y = p2 && seg2[seg2len - 1];
}
if (!p2) pth.curve = pathClone(p);
return p2 ? [p, p2] : p
}, null, pathClone);
// Export function
window.flatten = flatten;
})();
Also see: Tab Triggers