Skip to content

Instantly share code, notes, and snippets.

@hotzeplotz
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save hotzeplotz/7b121ea4794f9edf5f96 to your computer and use it in GitHub Desktop.

Select an option

Save hotzeplotz/7b121ea4794f9edf5f96 to your computer and use it in GitHub Desktop.
London - Governance
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>London - Governance</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="jquery.panzoom.min.js"></script>
</head>
<body>
<div>
<img class="panzoom" src="london.svg" />
</div>
<script>
(function() {
var $section = $('body');
var $panzoom = $section.find('.panzoom').panzoom({
}).panzoom('zoom', true);
$panzoom.parent().on('mousewheel.focal', function( e ) {
e.preventDefault();
var delta = e.delta || e.originalEvent.wheelDelta;
var zoomOut = delta ? delta < 0 : e.originalEvent.deltaY > 0;
$panzoom.panzoom('zoom', zoomOut, {
increment: 0.1,
animate: false,
focal: e
});
});
})();
</script>
</body>
/**
* @license jquery.panzoom.js v2.0.5
* Updated: Thu Jul 03 2014
* Add pan and zoom functionality to any element
* Copyright (c) 2014 timmy willison
* Released under the MIT license
* https://github.com/timmywil/jquery.panzoom/blob/master/MIT-License.txt
*/
!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(c){return b(a,c)}):"object"==typeof exports?b(a,require("jquery")):b(a,a.jQuery)}("undefined"!=typeof window?window:this,function(a,b){"use strict";function c(a,b){for(var c=a.length;--c;)if(+a[c]!==+b[c])return!1;return!0}function d(a){var c={range:!0,animate:!0};return"boolean"==typeof a?c.animate=a:b.extend(c,a),c}function e(a,c,d,e,f,g,h,i,j){this.elements="array"===b.type(a)?[+a[0],+a[2],+a[4],+a[1],+a[3],+a[5],0,0,1]:[a,c,d,e,f,g,h||0,i||0,j||1]}function f(a,b,c){this.elements=[a,b,c]}function g(a,c){if(!(this instanceof g))return new g(a,c);1!==a.nodeType&&b.error("Panzoom called on non-Element node"),b.contains(l,a)||b.error("Panzoom element must be attached to the document");var d=b.data(a,m);if(d)return d;this.options=c=b.extend({},g.defaults,c),this.elem=a;var e=this.$elem=b(a);this.$set=c.$set&&c.$set.length?c.$set:e,this.$doc=b(a.ownerDocument||l),this.$parent=e.parent(),this.isSVG=r.test(a.namespaceURI)&&"svg"!==a.nodeName.toLowerCase(),this.panning=!1,this._buildTransform(),this._transform=!this.isSVG&&b.cssProps.transform.replace(q,"-$1").toLowerCase(),this._buildTransition(),this.resetDimensions();var f=b(),h=this;b.each(["$zoomIn","$zoomOut","$zoomRange","$reset"],function(a,b){h[b]=c[b]||f}),this.enable(),b.data(a,m,this)}var h="over out down up move enter leave cancel".split(" "),i=b.extend({},b.event.mouseHooks),j={};if(a.PointerEvent)b.each(h,function(a,c){b.event.fixHooks[j[c]="pointer"+c]=i});else{var k=i.props;i.props=k.concat(["touches","changedTouches","targetTouches","altKey","ctrlKey","metaKey","shiftKey"]),i.filter=function(a,b){var c,d=k.length;if(!b.pageX&&b.touches&&(c=b.touches[0]))for(;d--;)a[k[d]]=c[k[d]];return a},b.each(h,function(a,c){if(2>a)j[c]="mouse"+c;else{var d="touch"+("down"===c?"start":"up"===c?"end":c);b.event.fixHooks[d]=i,j[c]=d+" mouse"+c}})}b.pointertouch=j;var l=a.document,m="__pz__",n=Array.prototype.slice,o=!!a.PointerEvent,p=function(){var a=l.createElement("input");return a.setAttribute("oninput","return"),"function"==typeof a.oninput}(),q=/([A-Z])/g,r=/^http:[\w\.\/]+svg$/,s=/^inline/,t="(\\-?[\\d\\.e]+)",u="\\,?\\s*",v=new RegExp("^matrix\\("+t+u+t+u+t+u+t+u+t+u+t+"\\)$");return e.prototype={x:function(a){var b=a instanceof f,c=this.elements,d=a.elements;return b&&3===d.length?new f(c[0]*d[0]+c[1]*d[1]+c[2]*d[2],c[3]*d[0]+c[4]*d[1]+c[5]*d[2],c[6]*d[0]+c[7]*d[1]+c[8]*d[2]):d.length===c.length?new e(c[0]*d[0]+c[1]*d[3]+c[2]*d[6],c[0]*d[1]+c[1]*d[4]+c[2]*d[7],c[0]*d[2]+c[1]*d[5]+c[2]*d[8],c[3]*d[0]+c[4]*d[3]+c[5]*d[6],c[3]*d[1]+c[4]*d[4]+c[5]*d[7],c[3]*d[2]+c[4]*d[5]+c[5]*d[8],c[6]*d[0]+c[7]*d[3]+c[8]*d[6],c[6]*d[1]+c[7]*d[4]+c[8]*d[7],c[6]*d[2]+c[7]*d[5]+c[8]*d[8]):!1},inverse:function(){var a=1/this.determinant(),b=this.elements;return new e(a*(b[8]*b[4]-b[7]*b[5]),a*-(b[8]*b[1]-b[7]*b[2]),a*(b[5]*b[1]-b[4]*b[2]),a*-(b[8]*b[3]-b[6]*b[5]),a*(b[8]*b[0]-b[6]*b[2]),a*-(b[5]*b[0]-b[3]*b[2]),a*(b[7]*b[3]-b[6]*b[4]),a*-(b[7]*b[0]-b[6]*b[1]),a*(b[4]*b[0]-b[3]*b[1]))},determinant:function(){var a=this.elements;return a[0]*(a[8]*a[4]-a[7]*a[5])-a[3]*(a[8]*a[1]-a[7]*a[2])+a[6]*(a[5]*a[1]-a[4]*a[2])}},f.prototype.e=e.prototype.e=function(a){return this.elements[a]},g.rmatrix=v,g.events=b.pointertouch,g.defaults={eventNamespace:".panzoom",transition:!0,cursor:"move",disablePan:!1,disableZoom:!1,increment:.3,minScale:.4,maxScale:5,rangeStep:.05,duration:200,easing:"ease-in-out",contain:!1},g.prototype={constructor:g,instance:function(){return this},enable:function(){this._initStyle(),this._bind(),this.disabled=!1},disable:function(){this.disabled=!0,this._resetStyle(),this._unbind()},isDisabled:function(){return this.disabled},destroy:function(){this.disable(),b.removeData(this.elem,m)},resetDimensions:function(){var a=this.$parent;this.container={width:a.innerWidth(),height:a.innerHeight()};var c,d=a.offset(),e=this.elem,f=this.$elem;this.isSVG?(c=e.getBoundingClientRect(),c={left:c.left-d.left,top:c.top-d.top,width:c.width,height:c.height,margin:{left:0,top:0}}):c={left:b.css(e,"left",!0)||0,top:b.css(e,"top",!0)||0,width:f.innerWidth(),height:f.innerHeight(),margin:{top:b.css(e,"marginTop",!0)||0,left:b.css(e,"marginLeft",!0)||0}},c.widthBorder=b.css(e,"borderLeftWidth",!0)+b.css(e,"borderRightWidth",!0)||0,c.heightBorder=b.css(e,"borderTopWidth",!0)+b.css(e,"borderBottomWidth",!0)||0,this.dimensions=c},reset:function(a){a=d(a);var b=this.setMatrix(this._origTransform,a);a.silent||this._trigger("reset",b)},resetZoom:function(a){a=d(a);var b=this.getMatrix(this._origTransform);a.dValue=b[3],this.zoom(b[0],a)},resetPan:function(a){var b=this.getMatrix(this._origTransform);this.pan(b[4],b[5],d(a))},setTransform:function(a){for(var c=this.isSVG?"attr":"style",d=this.$set,e=d.length;e--;)b[c](d[e],"transform",a)},getTransform:function(a){var c=this.$set,d=c[0];return a?this.setTransform(a):a=b[this.isSVG?"attr":"style"](d,"transform"),"none"===a||v.test(a)||this.setTransform(a=b.css(d,"transform")),a||"none"},getMatrix:function(a){var b=v.exec(a||this.getTransform());return b&&b.shift(),b||[1,0,0,1,0,0]},setMatrix:function(a,c){if(!this.disabled){c||(c={}),"string"==typeof a&&(a=this.getMatrix(a));var d,e,f,g,h,i,j,k,l,m,n=+a[0],o=this.$parent,p="undefined"!=typeof c.contain?c.contain:this.options.contain;return p&&(d=this._checkDims(),e=this.container,l=d.width+d.widthBorder,m=d.height+d.heightBorder,f=(l*Math.abs(n)-e.width)/2,g=(m*Math.abs(n)-e.height)/2,j=d.left+d.margin.left,k=d.top+d.margin.top,"invert"===p?(h=l>e.width?l-e.width:0,i=m>e.height?m-e.height:0,f+=(e.width-l)/2,g+=(e.height-m)/2,a[4]=Math.max(Math.min(a[4],f-j),-f-j-h),a[5]=Math.max(Math.min(a[5],g-k),-g-k-i+d.heightBorder)):(g+=d.heightBorder/2,h=e.width>l?e.width-l:0,i=e.height>m?e.height-m:0,"center"===o.css("textAlign")&&s.test(b.css(this.elem,"display"))?h=0:f=g=0,a[4]=Math.min(Math.max(a[4],f-j),-f-j+h),a[5]=Math.min(Math.max(a[5],g-k),-g-k+i))),"skip"!==c.animate&&this.transition(!c.animate),c.range&&this.$zoomRange.val(n),this.setTransform("matrix("+a.join(",")+")"),c.silent||this._trigger("change",a),a}},isPanning:function(){return this.panning},transition:function(a){if(this._transition)for(var c=a||!this.options.transition?"none":this._transition,d=this.$set,e=d.length;e--;)b.style(d[e],"transition")!==c&&b.style(d[e],"transition",c)},pan:function(a,b,c){if(!this.options.disablePan){c||(c={});var d=c.matrix;d||(d=this.getMatrix()),c.relative&&(a+=+d[4],b+=+d[5]),d[4]=a,d[5]=b,this.setMatrix(d,c),c.silent||this._trigger("pan",d[4],d[5])}},zoom:function(a,c){"object"==typeof a?(c=a,a=null):c||(c={});var d=b.extend({},this.options,c);if(!d.disableZoom){var g=!1,h=d.matrix||this.getMatrix();"number"!=typeof a&&(a=+h[0]+d.increment*(a?-1:1),g=!0),a>d.maxScale?a=d.maxScale:a<d.minScale&&(a=d.minScale);var i=d.focal;if(i&&!d.disablePan){var j=this._checkDims(),k=i.clientX,l=i.clientY;this.isSVG||(k-=(j.width+j.widthBorder)/2,l-=(j.height+j.heightBorder)/2);var m=new f(k,l,1),n=new e(h),o=this.parentOffset||this.$parent.offset(),p=new e(1,0,o.left-this.$doc.scrollLeft(),0,1,o.top-this.$doc.scrollTop()),q=n.inverse().x(p.inverse().x(m)),r=a/h[0];n=n.x(new e([r,0,0,r,0,0])),m=p.x(n.x(q)),h[4]=+h[4]+(k-m.e(0)),h[5]=+h[5]+(l-m.e(1))}h[0]=a,h[3]="number"==typeof d.dValue?d.dValue:a,this.setMatrix(h,{animate:"boolean"==typeof d.animate?d.animate:g,range:!d.noSetRange}),d.silent||this._trigger("zoom",h[0],d)}},option:function(a,c){var d;if(!a)return b.extend({},this.options);if("string"==typeof a){if(1===arguments.length)return void 0!==this.options[a]?this.options[a]:null;d={},d[a]=c}else d=a;this._setOptions(d)},_setOptions:function(a){b.each(a,b.proxy(function(a,c){switch(a){case"disablePan":this._resetStyle();case"$zoomIn":case"$zoomOut":case"$zoomRange":case"$reset":case"disableZoom":case"onStart":case"onChange":case"onZoom":case"onPan":case"onEnd":case"onReset":case"eventNamespace":this._unbind()}switch(this.options[a]=c,a){case"disablePan":this._initStyle();case"$zoomIn":case"$zoomOut":case"$zoomRange":case"$reset":this[a]=c;case"disableZoom":case"onStart":case"onChange":case"onZoom":case"onPan":case"onEnd":case"onReset":case"eventNamespace":this._bind();break;case"cursor":b.style(this.elem,"cursor",c);break;case"minScale":this.$zoomRange.attr("min",c);break;case"maxScale":this.$zoomRange.attr("max",c);break;case"rangeStep":this.$zoomRange.attr("step",c);break;case"startTransform":this._buildTransform();break;case"duration":case"easing":this._buildTransition();case"transition":this.transition();break;case"$set":c instanceof b&&c.length&&(this.$set=c,this._initStyle(),this._buildTransform())}},this))},_initStyle:function(){var a={"backface-visibility":"hidden","transform-origin":this.isSVG?"0 0":"50% 50%"};this.options.disablePan||(a.cursor=this.options.cursor),this.$set.css(a);var c=this.$parent;c.length&&!b.nodeName(c[0],"body")&&(a={overflow:"hidden"},"static"===c.css("position")&&(a.position="relative"),c.css(a))},_resetStyle:function(){this.$elem.css({cursor:"",transition:""}),this.$parent.css({overflow:"",position:""})},_bind:function(){var a=this,c=this.options,d=c.eventNamespace,e=o?"pointerdown"+d:"touchstart"+d+" mousedown"+d,f=o?"pointerup"+d:"touchend"+d+" click"+d,h={},i=this.$reset,j=this.$zoomRange;if(b.each(["Start","Change","Zoom","Pan","End","Reset"],function(){var a=c["on"+this];b.isFunction(a)&&(h["panzoom"+this.toLowerCase()+d]=a)}),c.disablePan&&c.disableZoom||(h[e]=function(b){var d;("touchstart"===b.type?!(d=b.touches)||(1!==d.length||c.disablePan)&&2!==d.length:c.disablePan||1!==b.which)||(b.preventDefault(),b.stopPropagation(),a._startMove(b,d))}),this.$elem.on(h),i.length&&i.on(f,function(b){b.preventDefault(),a.reset()}),j.length&&j.attr({step:c.rangeStep===g.defaults.rangeStep&&j.attr("step")||c.rangeStep,min:c.minScale,max:c.maxScale}).prop({value:this.getMatrix()[0]}),!c.disableZoom){var k=this.$zoomIn,l=this.$zoomOut;k.length&&l.length&&(k.on(f,function(b){b.preventDefault(),a.zoom()}),l.on(f,function(b){b.preventDefault(),a.zoom(!0)})),j.length&&(h={},h[(o?"pointerdown":"mousedown")+d]=function(){a.transition(!0)},h[(p?"input":"change")+d]=function(){a.zoom(+this.value,{noSetRange:!0})},j.on(h))}},_unbind:function(){this.$elem.add(this.$zoomIn).add(this.$zoomOut).add(this.$reset).off(this.options.eventNamespace)},_buildTransform:function(){return this._origTransform=this.getTransform(this.options.startTransform)},_buildTransition:function(){if(this._transform){var a=this.options;this._transition=this._transform+" "+a.duration+"ms "+a.easing}},_checkDims:function(){var a=this.dimensions;return a.width&&a.height||this.resetDimensions(),this.dimensions},_getDistance:function(a){var b=a[0],c=a[1];return Math.sqrt(Math.pow(Math.abs(c.clientX-b.clientX),2)+Math.pow(Math.abs(c.clientY-b.clientY),2))},_getMiddle:function(a){var b=a[0],c=a[1];return{clientX:(c.clientX-b.clientX)/2+b.clientX,clientY:(c.clientY-b.clientY)/2+b.clientY}},_trigger:function(a){"string"==typeof a&&(a="panzoom"+a),this.$elem.triggerHandler(a,[this].concat(n.call(arguments,1)))},_startMove:function(a,d){var e,f,g,h,i,j,k,m,n=this,p=this.options,q=p.eventNamespace,r=this.getMatrix(),s=r.slice(0),t=+s[4],u=+s[5],v={matrix:r,animate:"skip"};o?(f="pointermove",g="pointerup"):"touchstart"===a.type?(f="touchmove",g="touchend"):(f="mousemove",g="mouseup"),f+=q,g+=q,this.transition(!0),this.panning=!0,this._trigger("start",a,d),d&&2===d.length?(h=this._getDistance(d),i=+r[0],j=this._getMiddle(d),e=function(a){a.preventDefault();var b=n._getMiddle(d=a.touches),c=n._getDistance(d)-h;n.zoom(c*(p.increment/100)+i,{focal:b,matrix:r,animate:!1}),n.pan(+r[4]+b.clientX-j.clientX,+r[5]+b.clientY-j.clientY,v),j=b}):(k=a.pageX,m=a.pageY,e=function(a){a.preventDefault(),n.pan(t+a.pageX-k,u+a.pageY-m,v)}),b(l).off(q).on(f,e).on(g,function(a){a.preventDefault(),b(this).off(q),n.panning=!1,a.type="panzoomend",n._trigger(a,r,!c(r,s))})}},b.Panzoom=g,b.fn.panzoom=function(a){var c,d,e,f;return"string"==typeof a?(f=[],d=n.call(arguments,1),this.each(function(){c=b.data(this,m),c?"_"!==a.charAt(0)&&"function"==typeof(e=c[a])&&void 0!==(e=e.apply(c,d))&&f.push(e):f.push(void 0)}),f.length?1===f.length?f[0]:f:this):this.each(function(){new g(this,a)})},g});
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
]>
<svg version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
x="0px" y="0px" width="791px" height="976px" viewBox="0 0 791 976" enable-background="new 0 0 791 976" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<rect id="SVGID_12_" width="790.977" height="975.701"/>
</defs>
<clipPath id="SVGID_13_">
<use xlink:href="#SVGID_12_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 7.0557 29.8252)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="28">L</tspan><tspan x="11.928" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="28">ONDO</tspan><tspan x="71.007" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="28">N</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 657.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">S</tspan><tspan x="4.71" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="7.6" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="12.99" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="17.31" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="23.829" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">2</tspan><tspan x="28.739" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">00</tspan><tspan x="38.859" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0</tspan><tspan x="43.689" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="48.239" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="51.589" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="56.889" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="63.409" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="67.669" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="70.379" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="75.278" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="80.488" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="85.809" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="94.178" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="97.128" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="99.938" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="102.668" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="105.298" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="110.317" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="118.058" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="121.718" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="126.077" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="129.737" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="132.357" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="137.647" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="141.897" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="147.227" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="150.417" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="156.356" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="161.387" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="166.616" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">L</tspan><tspan x="172.206" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="177.217" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="182.637" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="187.887" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="192.906" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="200.646" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="206.026" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="210.326" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="214.876" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 669.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="5.16" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="9.5" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">en </tspan><tspan x="21.489" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="26.109" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ov</tspan><tspan x="35.68" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="39.93" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="43.819" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="49.239" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="53.569" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="61.119" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="66.119" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y a </tspan><tspan x="79.639" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="85.148" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="88.019" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="91.679" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="96.008" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="100.448" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="103.818" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ly </tspan><tspan x="113.208" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="117.478" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="119.958" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="124.287" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="128.728" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="131.797" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="136.127" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="143.677" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="151.907" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="156.187" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y</tspan><tspan x="160.747" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="165.767" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r </tspan><tspan x="171.747" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="176.387" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="181.807" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="189.356" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="192.706" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="198.006" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e G</tspan><tspan x="211.676" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="215.336" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="219.686" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="224.025" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="227.096" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">er </tspan></text>
</g>
<path clip-path="url(#SVGID_13_)" fill="#231F20" d="M527.474,679.835c-0.06,0.31-0.27,1.26-0.359,1.569h-4.527v-0.28
c0.839-0.06,0.919-0.13,0.919-0.979v-3.998c0-0.85-0.06-0.898-0.879-0.959v-0.279h2.608v0.279c-0.79,0.061-0.88,0.1-0.88,0.959
v3.948c0,0.54,0.051,0.739,0.23,0.84c0.199,0.109,0.539,0.13,0.959,0.13c0.55,0,0.89-0.05,1.119-0.31
c0.181-0.2,0.36-0.521,0.51-0.979L527.474,679.835z M532.544,679.146c0,1.609-1.179,2.379-2.169,2.379
c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398C531.625,676.917,532.544,677.916,532.544,679.146z
M529.116,678.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829c0-1.159-0.47-2.119-1.359-2.119
C529.656,677.246,529.116,677.866,529.116,678.995z M535.975,681.404v-0.26c0.59-0.061,0.66-0.141,0.66-0.83v-1.669
c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.168v-0.26
c0.679-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.061-0.68-0.601-0.779v-0.229c0.48-0.091,0.95-0.21,1.39-0.4v0.79
c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.54-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519v1.93c0,0.679,0.061,0.719,0.641,0.779
v0.26H535.975z M543.404,681.145c-0.221,0.04-0.97,0.17-1.55,0.38v-0.65l-0.609,0.36c-0.399,0.229-0.67,0.29-0.779,0.29
c-0.8,0-1.85-0.729-1.85-2.129c0-1.39,1.21-2.479,2.569-2.479c0.14,0,0.439,0.029,0.669,0.119v-1.429c0-0.65-0.05-0.68-0.77-0.729
v-0.25c0.521-0.06,1.189-0.22,1.56-0.34v5.967c0,0.52,0.07,0.569,0.439,0.609l0.32,0.03V681.145z M541.854,677.807
c-0.239-0.351-0.659-0.51-1.029-0.51c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.73,1.77,1.38,1.77c0.35,0,0.72-0.16,0.959-0.34
V677.807z M548.214,679.146c0,1.609-1.179,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398
C547.295,676.917,548.214,677.916,548.214,679.146z M544.786,678.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829
c0-1.159-0.47-2.119-1.359-2.119C545.326,677.246,544.786,677.866,544.786,678.995z M551.645,681.404v-0.26
c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229
c0.48-0.091,0.95-0.21,1.39-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519
v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H551.645z M560.515,681.404v-0.28c0.63-0.08,0.72-0.159,0.59-0.55
c-0.13-0.39-0.33-0.929-0.55-1.539h-2.129c-0.16,0.45-0.311,0.87-0.44,1.29c-0.21,0.629-0.13,0.729,0.63,0.799v0.28h-2.179v-0.28
c0.64-0.09,0.779-0.149,1.119-1.039l2.069-5.237l0.31-0.09c0.62,1.709,1.289,3.618,1.929,5.357c0.311,0.859,0.45,0.949,1.1,1.009
v0.28H560.515z M559.535,676.057h-0.021c-0.319,0.85-0.629,1.729-0.939,2.549h1.839L559.535,676.057z M568.164,681.164
c-0.22,0.03-0.5,0.09-0.77,0.16c-0.26,0.07-0.51,0.15-0.7,0.2l-0.06-0.061v-0.709c-0.23,0.17-0.45,0.35-0.739,0.52
c-0.29,0.17-0.5,0.25-0.771,0.25c-0.669,0-1.238-0.41-1.238-1.489v-1.959c0-0.53-0.08-0.58-0.33-0.64l-0.28-0.061v-0.229
c0.21-0.01,0.46-0.04,0.72-0.07c0.27-0.04,0.55-0.08,0.71-0.109c-0.03,0.31-0.03,0.779-0.03,1.449v1.349
c0,0.89,0.43,1.13,0.88,1.13c0.359,0,0.739-0.15,1.079-0.479v-2.339c0-0.53-0.09-0.59-0.42-0.64l-0.359-0.061v-0.229
c0.27-0.01,0.609-0.04,0.899-0.08c0.279-0.03,0.52-0.07,0.669-0.1v3.338c0,0.5,0.08,0.56,0.47,0.59l0.271,0.01V681.164z
M570.525,681.395c-0.17,0.09-0.319,0.13-0.42,0.13c-0.629,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.28-0.29h0.449
v-0.719l0.649-0.67l0.141,0.021v1.368h1.129c0.101,0.11,0.07,0.32-0.06,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959
c0.25,0,0.479-0.1,0.609-0.17l0.09,0.26L570.525,681.395z M574.605,681.404v-0.26c0.579-0.061,0.659-0.12,0.659-0.77v-1.659
c0-0.819-0.31-1.229-0.979-1.229c-0.38,0-0.76,0.189-1.039,0.51v2.379c0,0.64,0.05,0.709,0.649,0.77v0.26h-2.129l0.01-0.26
c0.6-0.05,0.68-0.11,0.68-0.77v-4.768c0-0.63-0.02-0.67-0.68-0.729v-0.24c0.479-0.069,1.079-0.229,1.47-0.35v3.358
c0.359-0.36,0.889-0.729,1.429-0.729c0.81,0,1.38,0.51,1.38,1.709v1.749c0,0.659,0.079,0.72,0.659,0.77v0.26H574.605z
M581.574,679.146c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398
C580.654,676.917,581.574,677.916,581.574,679.146z M578.146,678.995c0,1.26,0.539,2.199,1.369,2.199
c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119C578.686,677.246,578.146,677.866,578.146,678.995z
M583.695,677.986c0.3-0.51,0.729-1.069,1.21-1.069c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.13,0.4-0.319,0.49
c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.271-0.199-0.43-0.199c-0.261,0-0.58,0.29-0.8,0.85v1.829
c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.619-0.77
v-0.229c0.489-0.08,0.93-0.2,1.409-0.4v1.09H583.695z M586.097,681.404v-0.26c0.63-0.061,0.699-0.12,0.699-0.8v-2.059
c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.99-0.21,1.42-0.39v3.448c0,0.68,0.069,0.739,0.709,0.8v0.26H586.097z
M586.626,675.537c0-0.3,0.24-0.52,0.51-0.52c0.28,0,0.5,0.22,0.5,0.52c0,0.27-0.22,0.51-0.51,0.51
C586.866,676.047,586.626,675.807,586.626,675.537z M590.676,681.395c-0.17,0.09-0.32,0.13-0.42,0.13
c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.279-0.29h0.45v-0.719l0.649-0.67l0.14,0.021v1.368h1.13
c0.1,0.11,0.069,0.32-0.061,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17l0.091,0.26
L590.676,681.395z M596.534,677.297c-0.53,0.079-0.61,0.159-0.88,0.719c-0.26,0.53-0.569,1.359-1.259,3.009
c-0.67,1.599-0.89,2.169-1.03,2.698c-0.05,0.2-0.18,0.25-0.319,0.25c-0.28,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.25-0.37
c0.319-0.189,0.51-0.439,0.749-0.879c0.181-0.351,0.26-0.561,0.311-0.69c0.05-0.149,0.04-0.279-0.021-0.449
c-0.399-1.14-0.85-2.349-1.14-3.059c-0.22-0.55-0.31-0.68-0.859-0.749v-0.261h2.02l0.01,0.261c-0.47,0.069-0.52,0.17-0.38,0.549
l0.899,2.499c0.28-0.68,0.72-1.859,0.92-2.488c0.119-0.37,0.06-0.49-0.521-0.56v-0.261h1.81V677.297z M596.416,680.944
c0-0.319,0.24-0.569,0.56-0.569c0.32,0,0.56,0.25,0.56,0.569c0,0.35-0.239,0.58-0.569,0.58
C596.656,681.524,596.416,681.294,596.416,680.944z M608.782,681.404v-0.26c0.59-0.061,0.659-0.13,0.659-0.779v-1.64
c0-0.829-0.31-1.239-0.989-1.239c-0.37,0-0.76,0.189-1.029,0.529v2.35c0,0.639,0.05,0.719,0.659,0.779v0.26h-2.148v-0.26
c0.64-0.061,0.699-0.13,0.699-0.79v-5.026c-0.549-0.061-1.069-0.07-1.948-0.07h-0.71v4.897c0,0.839,0.08,0.919,0.999,0.979v0.27
h-2.818v-0.27c0.89-0.061,0.97-0.141,0.97-0.979v-4.897h-0.63c-0.89,0-1.069,0.09-1.209,0.33c-0.12,0.189-0.21,0.42-0.33,0.879
h-0.29c0.051-0.59,0.101-1.26,0.12-1.809h0.19c0.14,0.22,0.27,0.25,0.55,0.25h4.157c0.83,0,0.949-0.061,0.949-0.26v-0.15
c0.2-0.03,0.51-0.13,0.79-0.23v3.369c0.37-0.38,0.88-0.71,1.399-0.72c0.839-0.021,1.409,0.51,1.409,1.698v1.75
c0,0.669,0.069,0.729,0.669,0.779v0.26H608.782z M615.024,680.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L615.024,680.564z
M612.276,678.516c0.56,0,1.119-0.01,1.698-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C612.876,677.286,612.426,677.706,612.276,678.516z M623.424,681.404v-0.26c0.59-0.061,0.699-0.101,0.699-0.81v-1.669
c0-0.71-0.25-1.16-0.88-1.16c-0.359,0-0.739,0.21-1.119,0.521c0.021,0.119,0.03,0.239,0.03,0.419v1.949
c0,0.63,0.09,0.689,0.64,0.75v0.26h-2.139v-0.26c0.619-0.061,0.709-0.11,0.709-0.77v-1.72c0-0.729-0.26-1.149-0.879-1.149
c-0.39,0-0.79,0.271-1.09,0.521v2.349c0,0.649,0.09,0.709,0.58,0.77v0.26h-2.109v-0.26c0.66-0.061,0.75-0.12,0.75-0.77v-2.069
c0-0.64-0.03-0.689-0.609-0.779v-0.229c0.439-0.08,0.939-0.21,1.389-0.41v0.81c0.21-0.14,0.42-0.32,0.729-0.5
c0.26-0.16,0.5-0.279,0.81-0.279c0.479,0,0.91,0.31,1.12,0.829c0.289-0.229,0.579-0.41,0.829-0.569c0.21-0.141,0.47-0.26,0.76-0.26
c0.77,0,1.27,0.55,1.27,1.528v1.93c0,0.669,0.069,0.709,0.649,0.77v0.26H623.424z M629.305,681.524c-0.149,0-0.359-0.09-0.47-0.2
c-0.13-0.13-0.189-0.27-0.24-0.439c-0.399,0.27-0.879,0.64-1.179,0.64c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989
c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.45,0.19
c-0.119,0.14-0.209,0.359-0.289,0.659c-0.051,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43
c0-0.14,0.12-0.26,0.31-0.399c0.27-0.2,0.93-0.58,1.499-0.699c0.3,0,0.6,0.09,0.819,0.27c0.351,0.3,0.45,0.699,0.45,1.229v1.849
c0,0.45,0.18,0.6,0.35,0.6c0.12,0,0.26-0.05,0.36-0.109l0.1,0.26L629.305,681.524z M628.575,679.006
c-0.21,0.109-0.689,0.319-0.899,0.419c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.709,0.76c0.26,0,0.609-0.17,0.8-0.36
V679.006z M634.884,677.297c-0.529,0.079-0.609,0.159-0.879,0.719c-0.261,0.53-0.57,1.359-1.26,3.009
c-0.67,1.599-0.89,2.169-1.029,2.698c-0.05,0.2-0.18,0.25-0.32,0.25c-0.279,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.25-0.37
c0.32-0.189,0.51-0.439,0.75-0.879c0.18-0.351,0.26-0.561,0.31-0.69c0.05-0.149,0.04-0.279-0.021-0.449
c-0.399-1.14-0.849-2.349-1.139-3.059c-0.22-0.55-0.31-0.68-0.859-0.749v-0.261h2.019l0.01,0.261c-0.47,0.069-0.52,0.17-0.38,0.549
l0.899,2.499c0.28-0.68,0.72-1.859,0.92-2.488c0.12-0.37,0.06-0.49-0.52-0.56v-0.261h1.809V677.297z M639.384,679.146
c0,1.609-1.179,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398
C638.465,676.917,639.384,677.916,639.384,679.146z M635.956,678.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.129-0.46,1.129-1.829
c0-1.159-0.47-2.119-1.358-2.119C636.496,677.246,635.956,677.866,635.956,678.995z M641.506,677.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49c-0.12,0.05-0.199,0.04-0.26-0.021
c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.29-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.298v-0.26
c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H641.506z
M648.595,678.226c-0.199-0.6-0.539-0.989-1.029-0.989c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859
c0.76,0.311,1.269,0.67,1.269,1.359c0,0.91-0.849,1.38-1.648,1.38c-0.51,0-0.97-0.19-1.14-0.34c-0.07-0.141-0.17-0.819-0.17-1.18
l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91
c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.2,0.819,0.22,1.06
L648.595,678.226z M653.364,680.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749
c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.039,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.799,1.919,1.499,1.919c0.409,0,0.779-0.16,1.149-0.5L653.364,680.564z
M650.616,678.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.01-0.52-0.329-1-0.89-1
C651.216,677.286,650.766,677.706,650.616,678.516z M656.056,681.395c-0.17,0.09-0.32,0.13-0.42,0.13
c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.279-0.29h0.45v-0.719l0.649-0.67l0.14,0.021v1.368h1.13
c0.1,0.11,0.07,0.32-0.06,0.4h-1.07v2.559c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.48-0.1,0.61-0.17l0.09,0.26L656.056,681.395z
M659.895,678.226c-0.199-0.6-0.539-0.989-1.029-0.989c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859
c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.649,1.38c-0.51,0-0.97-0.19-1.14-0.34c-0.069-0.141-0.17-0.819-0.17-1.18
l0.271-0.05c0.17,0.659,0.619,1.239,1.219,1.239c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91
c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.52-1.299c0.409,0,0.68,0.09,0.879,0.18c0.09,0.22,0.2,0.819,0.22,1.06
L659.895,678.226z M665.195,681.395c-0.17,0.09-0.319,0.13-0.42,0.13c-0.629,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11
l0.28-0.29h0.449v-0.719l0.65-0.67l0.14,0.021v1.368h1.129c0.101,0.11,0.07,0.32-0.06,0.4h-1.069v2.559
c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17l0.09,0.26L665.195,681.395z M669.275,681.404v-0.26
c0.579-0.061,0.659-0.12,0.659-0.77v-1.659c0-0.819-0.31-1.229-0.979-1.229c-0.38,0-0.76,0.189-1.039,0.51v2.379
c0,0.64,0.05,0.709,0.649,0.77v0.26h-2.129l0.01-0.26c0.6-0.05,0.68-0.11,0.68-0.77v-4.768c0-0.63-0.02-0.67-0.68-0.729v-0.24
c0.48-0.069,1.08-0.229,1.47-0.35v3.358c0.359-0.36,0.89-0.729,1.429-0.729c0.81,0,1.38,0.51,1.38,1.709v1.749
c0,0.659,0.08,0.72,0.659,0.77v0.26H669.275z M675.494,680.564c-0.629,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.66-1.749c0.41-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.5,0.749,1.5,1.519c0,0.2-0.04,0.28-0.23,0.32
c-0.16,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.799,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L675.494,680.564z
M672.746,678.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.011-0.52-0.329-1-0.89-1
C673.346,677.286,672.896,677.706,672.746,678.516z M681.005,678.226c-0.2-0.6-0.539-0.989-1.029-0.989
c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859c0.759,0.311,1.269,0.67,1.269,1.359c0,0.91-0.85,1.38-1.648,1.38
c-0.51,0-0.97-0.19-1.14-0.34c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239
c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299
c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.2,0.819,0.22,1.06L681.005,678.226z M684.105,681.395c-0.17,0.09-0.32,0.13-0.42,0.13
c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.28-0.29h0.449v-0.719l0.649-0.67l0.141,0.021v1.368h1.129
c0.101,0.11,0.07,0.32-0.06,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959c0.249,0,0.479-0.1,0.609-0.17l0.09,0.26
L684.105,681.395z M686.926,677.986c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49
c-0.119,0.05-0.199,0.04-0.26-0.021c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.579,0.29-0.8,0.85v1.829
c0,0.659,0.051,0.719,0.82,0.779v0.26h-2.299v-0.26c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77
v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H686.926z M692.395,681.524c-0.149,0-0.359-0.09-0.47-0.2
c-0.13-0.13-0.189-0.27-0.239-0.439c-0.4,0.27-0.88,0.64-1.18,0.64c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989
c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.449,0.19
c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399
c0.271-0.2,0.93-0.58,1.499-0.699c0.3,0,0.601,0.09,0.82,0.27c0.35,0.3,0.449,0.699,0.449,1.229v1.849c0,0.45,0.18,0.6,0.35,0.6
c0.12,0,0.261-0.05,0.36-0.109l0.1,0.26L692.395,681.524z M691.665,679.006c-0.21,0.109-0.689,0.319-0.899,0.419
c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.709,0.76c0.26,0,0.61-0.17,0.8-0.36V679.006z M695.545,681.395
c-0.17,0.09-0.319,0.13-0.419,0.13c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.279-0.29h0.45v-0.719l0.649-0.67
l0.14,0.021v1.368h1.13c0.1,0.11,0.069,0.32-0.061,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17
l0.09,0.26L695.545,681.395z M700.265,680.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.95-0.729,1.46-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.42,0.13-2.619,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5L700.265,680.564z
M697.516,678.516c0.56,0,1.12-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C698.115,677.286,697.666,677.706,697.516,678.516z M705.314,677.116c-0.091,0.16-0.29,0.42-0.45,0.51l-0.569-0.029
c0.18,0.21,0.3,0.529,0.3,0.879c0,1.079-0.899,1.6-1.749,1.6c-0.16,0-0.35-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419
c0,0.19,0.18,0.38,0.629,0.38c0.37,0,0.72-0.01,1.06-0.01c0.62,0,1.43,0.2,1.43,1.18c0,1.009-1.159,1.979-2.489,1.979
c-1.119,0-1.729-0.649-1.738-1.219c0-0.221,0.09-0.41,0.239-0.561c0.2-0.199,0.59-0.51,0.83-0.699c-0.36-0.11-0.61-0.34-0.74-0.55
c-0.09-0.14-0.119-0.319-0.109-0.42c0.399-0.149,0.72-0.409,0.879-0.609c-0.449-0.19-0.879-0.659-0.879-1.339
c0-1.13,1.02-1.659,1.789-1.659h0.01c0.33,0,0.66,0.09,0.959,0.27c0.48-0.03,0.99-0.09,1.359-0.15L705.314,677.116z
M702.176,681.724c-0.26,0.221-0.46,0.5-0.46,0.78c0,0.55,0.58,0.959,1.319,0.959c0.949,0,1.439-0.489,1.439-1.109
c0-0.34-0.17-0.59-0.45-0.709c-0.249-0.101-0.539-0.131-0.979-0.131C702.586,681.514,702.355,681.574,702.176,681.724z
M702.006,678.416c0,0.779,0.39,1.339,0.939,1.339c0.439-0.01,0.83-0.399,0.83-1.189c0-0.779-0.37-1.339-0.95-1.339
C702.405,677.227,702.006,677.646,702.006,678.416z M705.877,681.404v-0.26c0.629-0.061,0.699-0.12,0.699-0.8v-2.059
c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H705.877z
M706.406,675.537c0-0.3,0.24-0.52,0.51-0.52c0.279,0,0.5,0.22,0.5,0.52c0,0.27-0.221,0.51-0.51,0.51
C706.646,676.047,706.406,675.807,706.406,675.537z M712.244,680.505c-0.439,0.579-1.099,1.02-1.688,1.02
c-1.26,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.009-1.949c0.521-0.399,1.12-0.569,1.489-0.569h0.01
c0.41,0,0.74,0.13,0.9,0.27c0.13,0.11,0.159,0.189,0.159,0.3c0,0.21-0.22,0.43-0.329,0.43c-0.061,0-0.11-0.03-0.19-0.109
c-0.3-0.28-0.649-0.41-1.01-0.41c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.509,1.85c0.43,0,0.75-0.12,1.209-0.55
L712.244,680.505z M715.687,677.036v-0.209c0-0.32,0.04-0.61,0.109-0.83c0.07-0.22,0.23-0.72,0.77-1.179
c0.36-0.301,0.71-0.48,1.1-0.53c0.34,0.021,0.63,0.149,0.79,0.34c0.09,0.11,0.1,0.229,0.05,0.35c-0.03,0.08-0.09,0.16-0.19,0.24
c-0.09,0.069-0.18,0.069-0.27-0.03c-0.189-0.189-0.479-0.369-0.81-0.369c-0.26,0-0.42,0.119-0.529,0.289
c-0.13,0.2-0.24,0.68-0.23,1.529v0.399h1.18c0.06,0.091,0.01,0.33-0.101,0.4h-1.079v2.868c0,0.739,0.07,0.77,0.859,0.85v0.25
h-2.358v-0.26c0.64-0.061,0.71-0.11,0.71-0.77v-2.938h-0.7l-0.04-0.11l0.271-0.29H715.687z M719.716,677.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.261-0.021
c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.579,0.29-0.799,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.929-0.2,1.409-0.4v1.09H719.716z
M725.185,681.524c-0.149,0-0.359-0.09-0.47-0.2c-0.13-0.13-0.189-0.27-0.239-0.439c-0.4,0.27-0.88,0.64-1.18,0.64
c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13
c-0.189,0-0.34,0.07-0.449,0.19c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.149,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43
c0-0.14,0.12-0.26,0.31-0.399c0.271-0.2,0.93-0.58,1.5-0.699c0.3,0,0.6,0.09,0.819,0.27c0.35,0.3,0.449,0.699,0.449,1.229v1.849
c0,0.45,0.18,0.6,0.35,0.6c0.12,0,0.261-0.05,0.36-0.109l0.1,0.26L725.185,681.524z M724.455,679.006
c-0.21,0.109-0.689,0.319-0.899,0.419c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.71,0.76
c0.26,0,0.609-0.17,0.799-0.36V679.006z M732.193,681.404v-0.26c0.59-0.061,0.7-0.101,0.7-0.81v-1.669c0-0.71-0.25-1.16-0.88-1.16
c-0.359,0-0.739,0.21-1.119,0.521c0.02,0.119,0.029,0.239,0.029,0.419v1.949c0,0.63,0.091,0.689,0.641,0.75v0.26h-2.14v-0.26
c0.62-0.061,0.71-0.11,0.71-0.77v-1.72c0-0.729-0.26-1.149-0.88-1.149c-0.39,0-0.789,0.271-1.089,0.521v2.349
c0,0.649,0.09,0.709,0.579,0.77v0.26h-2.108v-0.26c0.659-0.061,0.75-0.12,0.75-0.77v-2.069c0-0.64-0.03-0.689-0.61-0.779v-0.229
c0.44-0.08,0.939-0.21,1.39-0.41v0.81c0.21-0.14,0.42-0.32,0.729-0.5c0.26-0.16,0.5-0.279,0.81-0.279
c0.479,0,0.909,0.31,1.119,0.829c0.29-0.229,0.58-0.41,0.83-0.569c0.209-0.141,0.47-0.26,0.759-0.26c0.771,0,1.27,0.55,1.27,1.528
v1.93c0,0.669,0.07,0.709,0.649,0.77v0.26H732.193z M738.465,680.564c-0.63,0.779-1.319,0.96-1.629,0.96
c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.95-0.729,1.46-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519
c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.42,0.13-2.619,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5
L738.465,680.564z M735.716,678.516c0.56,0,1.12-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C736.315,677.286,735.866,677.706,735.716,678.516z M745.803,677.297c-0.5,0.069-0.59,0.189-0.789,0.739
c-0.3,0.8-0.75,2.129-1.199,3.478h-0.29c-0.4-1.079-0.81-2.059-1.22-3.107c-0.38,1.009-0.789,1.998-1.189,3.107h-0.279
c-0.37-1.188-0.74-2.368-1.159-3.567c-0.181-0.52-0.261-0.59-0.74-0.649v-0.261h2.069v0.261c-0.6,0.09-0.65,0.149-0.51,0.609
c0.239,0.76,0.489,1.549,0.739,2.318h0.021c0.369-0.959,0.739-1.979,1.159-3.138h0.26c0.37,1.039,0.779,2.099,1.199,3.178h0.021
c0.22-0.689,0.499-1.569,0.689-2.309c0.13-0.52,0.06-0.569-0.58-0.659v-0.261h1.799V677.297z M750.354,679.146
c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398
C749.435,676.917,750.354,677.916,750.354,679.146z M746.926,678.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829
c0-1.159-0.47-2.119-1.359-2.119C747.466,677.246,746.926,677.866,746.926,678.995z M752.476,677.986
c0.3-0.51,0.729-1.069,1.21-1.069c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.26-0.021
c-0.15-0.14-0.271-0.199-0.431-0.199c-0.26,0-0.579,0.29-0.799,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.929-0.2,1.409-0.4v1.09H752.476z
M758.074,681.424c-0.459-0.51-1.089-1.309-1.639-1.979c-0.14-0.16-0.229-0.22-0.31-0.22c-0.05,0-0.101,0.01-0.16,0.03v1.109
c0,0.659,0.08,0.719,0.72,0.779v0.26h-2.229v-0.26c0.669-0.061,0.729-0.141,0.729-0.779v-4.718c0-0.659-0.05-0.72-0.66-0.77v-0.24
c0.48-0.05,1.05-0.22,1.439-0.35v4.707c0.3-0.06,0.479-0.189,0.63-0.35c0.22-0.22,0.52-0.609,0.709-0.879
c0.21-0.311,0.181-0.391-0.3-0.44v-0.26l2.039-0.09v0.25c-0.689,0.109-0.899,0.22-1.289,0.59c-0.25,0.25-0.43,0.449-0.859,0.949
c0.189,0.3,1.209,1.479,1.549,1.829c0.35,0.38,0.62,0.529,1,0.55v0.26L758.074,681.424z"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 693.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f</tspan><tspan x="2.88" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="7.91" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r </tspan><tspan x="13.89" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="18.609" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="21.42" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l </tspan><tspan x="26.22" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="31.239" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="36.469" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">L</tspan><tspan x="42.049" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="47.069" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="52.489" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="57.749" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="62.759" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="67.999" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">’</tspan><tspan x="69.669" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="75.608" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">3</tspan><tspan x="80.148" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">3 </tspan><tspan x="87.219" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="92.378" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="97.398" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="101.078" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="106.098" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="111.528" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="116.438" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="121.857" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="127.798" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">(</tspan><tspan x="130.867" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="133.758" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="139.138" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="143.438" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="145.837" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="151.147" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="156.647" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="159.537" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ng </tspan><tspan x="171.957" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="175.316" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="180.606" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="187.126" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">C</tspan><tspan x="193.946" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="198.966" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="202.946" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="208.266" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="213.286" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="217.105" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="221.436" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="224.716" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="227.346" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="232.365" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 705.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="5.02" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="10.25" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">L</tspan><tspan x="15.83" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="20.85" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="26.27" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="31.529" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="36.539" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="41.649" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">) </tspan><tspan x="47.379" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="52.029" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="57.449" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="64.999" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="70.369" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="74.919" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="80.858" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="85.188" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">x</tspan><tspan x="89.879" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="94.208" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="98.588" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="103.838" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="107.118" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="109.818" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="114.368" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="120.888" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="126.208" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="131.168" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">w</tspan><tspan x="137.918" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="142.168" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="145.938" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="151.877" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ov</tspan><tspan x="161.447" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">er a </tspan><tspan x="178.337" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="183.677" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="189.227" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="197.406" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="202.566" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">er </tspan><tspan x="212.796" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="217.815" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="223.046" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="227.376" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="229.985" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="233.365" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y</tspan><tspan x="237.735" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">-</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 717.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">w</tspan><tspan x="7.14" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="9.76" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="15.06" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="21.58" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="26.22" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="29.88" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="34.229" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="38.77" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="44.709" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="47.599" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="52.979" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="57.279" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="59.679" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="64.988" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="70.488" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="73.379" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ng </tspan><tspan x="85.798" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="89.078" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="92.898" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="97.548" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="103.088" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="106.798" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="112.118" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="117.147" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="121.157" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="126.478" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">(</tspan><tspan x="129.417" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="132.768" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="138.067" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="144.587" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="152.816" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="157.106" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y</tspan><tspan x="161.657" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="166.687" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r </tspan><tspan x="172.667" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="176.946" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="182.316" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="186.956" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="189.826" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="193.596" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="199.536" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">T</tspan><tspan x="205.235" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="209.056" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="213.695" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="219.235" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="222.945" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="228.266" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="233.285" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="237.295" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan></text>
</g>
<path clip-path="url(#SVGID_13_)" fill="#231F20" d="M523.236,725.036v-0.209c0-0.32,0.04-0.61,0.11-0.83
c0.069-0.22,0.229-0.72,0.77-1.18c0.359-0.3,0.709-0.479,1.099-0.529c0.34,0.02,0.63,0.15,0.79,0.34c0.09,0.11,0.1,0.229,0.05,0.35
c-0.03,0.08-0.09,0.16-0.189,0.24c-0.09,0.069-0.18,0.069-0.271-0.03c-0.189-0.189-0.479-0.37-0.81-0.37
c-0.26,0-0.42,0.12-0.529,0.29c-0.13,0.2-0.24,0.68-0.229,1.529v0.399h1.179c0.061,0.091,0.01,0.33-0.1,0.4h-1.079v2.868
c0,0.739,0.069,0.77,0.859,0.85v0.25h-2.359v-0.26c0.64-0.061,0.71-0.11,0.71-0.77v-2.938h-0.699l-0.04-0.11l0.27-0.29H523.236z
M529.824,727.146c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398
C528.905,724.917,529.824,725.916,529.824,727.146z M526.396,726.995c0,1.26,0.539,2.199,1.369,2.199
c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119C526.936,725.246,526.396,725.866,526.396,726.995z
M531.946,725.986c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49
c-0.12,0.05-0.2,0.04-0.26-0.021c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.289-0.8,0.85v1.829
c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.298v-0.26c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77
v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H531.946z M541.344,727.835c-0.06,0.31-0.27,1.26-0.359,1.569h-4.527v-0.28
c0.839-0.06,0.919-0.13,0.919-0.979v-3.997c0-0.85-0.06-0.899-0.879-0.96v-0.279h2.608v0.279c-0.79,0.061-0.88,0.1-0.88,0.96v3.947
c0,0.54,0.05,0.74,0.23,0.84c0.199,0.109,0.539,0.13,0.959,0.13c0.55,0,0.89-0.05,1.119-0.31c0.181-0.2,0.36-0.521,0.51-0.979
L541.344,727.835z M546.414,727.146c0,1.609-1.179,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209
c0-1.649,1.279-2.398,2.199-2.398C545.495,724.917,546.414,725.916,546.414,727.146z M542.986,726.995
c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.129-0.46,1.129-1.829c0-1.159-0.469-2.119-1.358-2.119
C543.526,725.246,542.986,725.866,542.986,726.995z M549.845,729.404v-0.26c0.59-0.061,0.66-0.141,0.66-0.83v-1.669
c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26
c0.68-0.07,0.73-0.12,0.73-0.779v-2.06c0-0.64-0.061-0.68-0.6-0.779v-0.229c0.479-0.091,0.949-0.21,1.389-0.4v0.79
c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519v1.93c0,0.679,0.061,0.719,0.64,0.779
v0.26H549.845z M557.274,729.145c-0.221,0.04-0.97,0.17-1.55,0.38v-0.65l-0.609,0.36c-0.399,0.229-0.67,0.29-0.779,0.29
c-0.8,0-1.85-0.729-1.85-2.129c0-1.39,1.21-2.479,2.569-2.479c0.14,0,0.439,0.029,0.669,0.119v-1.429c0-0.649-0.05-0.68-0.77-0.729
v-0.25c0.52-0.06,1.189-0.22,1.56-0.34v5.967c0,0.52,0.069,0.569,0.439,0.609l0.32,0.03V729.145z M555.725,725.807
c-0.239-0.351-0.659-0.51-1.029-0.51c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.73,1.77,1.38,1.77c0.35,0,0.72-0.16,0.959-0.34
V725.807z M562.084,727.146c0,1.609-1.179,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398
C561.165,724.917,562.084,725.916,562.084,727.146z M558.656,726.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.129-0.46,1.129-1.829
c0-1.159-0.469-2.119-1.358-2.119C559.196,725.246,558.656,725.866,558.656,726.995z M565.515,729.404v-0.26
c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.73-0.12,0.73-0.779v-2.06c0-0.64-0.061-0.68-0.6-0.779v-0.229
c0.479-0.091,0.949-0.21,1.389-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3
c0.8,0,1.289,0.56,1.289,1.519v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H565.515z M570.215,726.716
c0,1.799-0.619,3.368-2.108,4.388l-0.189-0.23c1.019-0.839,1.579-2.448,1.579-4.167c0-1.72-0.58-3.339-1.579-4.158l0.189-0.24
c1.479,1.01,2.108,2.589,2.108,4.388V726.716z M572.626,729.185c0,0.779-0.689,1.199-1.31,1.389l-0.11-0.29
c0.49-0.199,0.771-0.47,0.771-0.849c0-0.36-0.28-0.58-0.62-0.67c-0.05,0-0.13-0.08-0.13-0.24c0-0.25,0.24-0.42,0.489-0.42
C572.076,728.104,572.626,728.495,572.626,729.185z M577.926,725.076c0.18-0.109,0.369-0.159,0.489-0.159
c1.109,0,1.769,0.909,1.769,1.889c0,1.509-1.188,2.479-2.488,2.719c-0.3-0.011-0.56-0.11-0.689-0.181v1.31
c0,0.76,0.07,0.819,0.84,0.88v0.27h-2.359v-0.27c0.64-0.061,0.729-0.12,0.729-0.779v-4.518c0-0.65-0.04-0.67-0.659-0.75v-0.24
c0.42-0.069,0.979-0.239,1.449-0.43v0.79L577.926,725.076z M577.006,728.645c0.22,0.229,0.59,0.39,0.939,0.39
c0.84,0,1.399-0.72,1.399-1.839c0-1.079-0.62-1.679-1.34-1.679c-0.319,0-0.729,0.22-0.999,0.43V728.645z M585.364,727.146
c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398
C584.444,724.917,585.364,725.916,585.364,727.146z M581.936,726.995c0,1.26,0.54,2.199,1.37,2.199c0.619,0,1.129-0.46,1.129-1.829
c0-1.159-0.47-2.119-1.359-2.119C582.476,725.246,581.936,725.866,581.936,726.995z M585.837,729.404v-0.26
c0.63-0.061,0.72-0.12,0.72-0.779v-4.728c0-0.68-0.061-0.7-0.69-0.76v-0.24c0.521-0.06,1.14-0.229,1.479-0.35v6.077
c0,0.659,0.08,0.719,0.72,0.779v0.26H585.837z M588.736,729.404v-0.26c0.63-0.061,0.7-0.12,0.7-0.8v-2.059
c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H588.736z
M589.267,723.537c0-0.3,0.239-0.52,0.51-0.52c0.279,0,0.499,0.22,0.499,0.52c0,0.271-0.22,0.51-0.51,0.51
C589.506,724.047,589.267,723.808,589.267,723.537z M595.104,728.505c-0.439,0.579-1.1,1.02-1.688,1.02
c-1.26,0-2.01-1.02-2.01-2.089c0-0.77,0.34-1.439,1.01-1.949c0.52-0.399,1.119-0.569,1.489-0.569h0.01
c0.41,0,0.739,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43c-0.06,0-0.109-0.03-0.189-0.109
c-0.3-0.28-0.649-0.41-1.01-0.41c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.51,1.85c0.43,0,0.749-0.12,1.209-0.55
L595.104,728.505z M595.687,729.404v-0.26c0.63-0.061,0.7-0.12,0.7-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24
c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H595.687z M596.217,723.537c0-0.3,0.239-0.52,0.51-0.52
c0.279,0,0.499,0.22,0.499,0.52c0,0.271-0.22,0.51-0.51,0.51C596.456,724.047,596.217,723.808,596.217,723.537z M601.405,729.404
v-0.26c0.59-0.061,0.659-0.141,0.659-0.83v-1.669c0-0.689-0.239-1.14-0.909-1.14c-0.399,0-0.79,0.25-1.089,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229
c0.479-0.091,0.949-0.21,1.39-0.4v0.79c0.199-0.15,0.419-0.3,0.669-0.47c0.28-0.181,0.54-0.3,0.83-0.3
c0.799,0,1.289,0.56,1.289,1.519v1.93c0,0.679,0.06,0.719,0.64,0.779v0.26H601.405z M608.404,725.116
c-0.09,0.16-0.29,0.42-0.45,0.51l-0.569-0.029c0.18,0.21,0.3,0.529,0.3,0.879c0,1.08-0.899,1.6-1.749,1.6
c-0.16,0-0.35-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419c0,0.19,0.18,0.38,0.63,0.38c0.37,0,0.72-0.01,1.06-0.01
c0.619,0,1.429,0.2,1.429,1.18c0,1.009-1.159,1.979-2.488,1.979c-1.119,0-1.729-0.649-1.739-1.219c0-0.221,0.09-0.41,0.24-0.561
c0.199-0.199,0.59-0.51,0.829-0.699c-0.359-0.11-0.609-0.34-0.739-0.55c-0.09-0.14-0.12-0.319-0.11-0.42
c0.4-0.149,0.72-0.409,0.88-0.609c-0.45-0.19-0.88-0.66-0.88-1.339c0-1.13,1.02-1.659,1.789-1.659h0.01c0.33,0,0.66,0.09,0.96,0.27
c0.479-0.03,0.989-0.09,1.359-0.15L608.404,725.116z M605.266,729.724c-0.26,0.221-0.459,0.5-0.459,0.78
c0,0.55,0.579,0.959,1.319,0.959c0.949,0,1.438-0.489,1.438-1.109c0-0.34-0.17-0.59-0.449-0.709
c-0.25-0.101-0.54-0.131-0.979-0.131C605.676,729.514,605.446,729.574,605.266,729.724z M605.096,726.416
c0,0.779,0.391,1.339,0.939,1.339c0.44-0.01,0.83-0.399,0.83-1.189c0-0.779-0.37-1.339-0.949-1.339
C605.496,725.227,605.096,725.646,605.096,726.416z M610.436,729.185c0,0.779-0.689,1.199-1.309,1.389l-0.11-0.29
c0.49-0.199,0.77-0.47,0.77-0.849c0-0.36-0.279-0.58-0.619-0.67c-0.051,0-0.13-0.08-0.13-0.24c0-0.25,0.239-0.42,0.489-0.42
C609.886,728.104,610.436,728.495,610.436,729.185z M616.175,729.404v-0.26c0.561-0.05,0.63-0.11,0.63-0.74v-2.448
c0-0.45-0.029-0.52-0.52-0.52h-1.359v2.968c0,0.62,0.07,0.68,0.699,0.74v0.26h-2.198v-0.26c0.63-0.07,0.71-0.12,0.71-0.74v-2.968
h-0.72l-0.04-0.11l0.279-0.29h0.48v-0.229c0-0.31,0.05-0.569,0.109-0.779c0.08-0.25,0.28-0.76,0.819-1.199
c0.41-0.32,0.87-0.5,1.25-0.54c0.6,0.02,0.949,0.319,1.06,0.479c0.09,0.13,0.09,0.25,0.05,0.36c-0.05,0.09-0.13,0.189-0.22,0.239
c-0.12,0.08-0.21,0.08-0.29-0.01c-0.23-0.27-0.57-0.59-1.04-0.59c-0.289,0-0.499,0.17-0.619,0.36c-0.19,0.26-0.33,0.77-0.33,1.568
v0.34h0.79c0.799,0,1.358-0.02,1.879-0.13v3.498c0,0.63,0.06,0.68,0.699,0.74v0.26H616.175z M620.526,725.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.129,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.26-0.021
c-0.15-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.62-0.061,0.69-0.12,0.69-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H620.526z
M626.295,728.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.659-1.749
c0.41-0.45,0.95-0.729,1.46-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.42,0.13-2.619,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5L626.295,728.564z
M623.546,726.516c0.561,0,1.12-0.01,1.699-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C624.146,725.286,623.696,725.706,623.546,726.516z M632.345,729.524c-0.149,0-0.359-0.09-0.47-0.2
c-0.13-0.13-0.189-0.27-0.239-0.439c-0.4,0.27-0.88,0.64-1.18,0.64c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989
c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.449,0.19
c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.149,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399
c0.271-0.2,0.93-0.58,1.5-0.699c0.3,0,0.6,0.09,0.819,0.27c0.35,0.3,0.449,0.699,0.449,1.229v1.849c0,0.45,0.181,0.6,0.351,0.6
c0.119,0,0.26-0.05,0.359-0.109l0.1,0.26L632.345,729.524z M631.615,727.006c-0.21,0.109-0.689,0.319-0.899,0.419
c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.71,0.76c0.26,0,0.609-0.17,0.799-0.36V727.006z M636.665,729.404v-0.26
c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.91-1.14c-0.399,0-0.789,0.25-1.089,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229
c0.479-0.091,0.95-0.21,1.39-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519
v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H636.665z M644.094,729.145c-0.22,0.04-0.969,0.17-1.549,0.38v-0.65l-0.609,0.36
c-0.4,0.229-0.67,0.29-0.779,0.29c-0.8,0-1.85-0.729-1.85-2.129c0-1.39,1.209-2.479,2.568-2.479c0.141,0,0.44,0.029,0.67,0.119
v-1.429c0-0.649-0.05-0.68-0.77-0.729v-0.25c0.52-0.06,1.189-0.22,1.56-0.34v5.967c0,0.52,0.069,0.569,0.439,0.609l0.319,0.03
V729.145z M642.545,725.807c-0.24-0.351-0.659-0.51-1.029-0.51c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.729,1.77,1.38,1.77
c0.35,0,0.719-0.16,0.959-0.34V725.807z M650.425,728.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L650.425,728.564z
M647.677,726.516c0.56,0,1.119-0.01,1.698-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C648.276,725.286,647.826,725.706,647.677,726.516z M656.554,729.404v-0.26c0.59-0.061,0.7-0.101,0.7-0.81v-1.669
c0-0.71-0.25-1.16-0.88-1.16c-0.36,0-0.739,0.21-1.119,0.521c0.02,0.119,0.029,0.239,0.029,0.419v1.949
c0,0.63,0.091,0.689,0.64,0.75v0.26h-2.139v-0.26c0.62-0.061,0.71-0.11,0.71-0.77v-1.72c0-0.729-0.26-1.149-0.88-1.149
c-0.39,0-0.789,0.271-1.089,0.521v2.349c0,0.649,0.09,0.709,0.579,0.77v0.26h-2.108v-0.26c0.659-0.061,0.749-0.12,0.749-0.77
v-2.069c0-0.64-0.029-0.689-0.609-0.779v-0.229c0.439-0.08,0.939-0.21,1.39-0.41v0.81c0.21-0.14,0.419-0.32,0.729-0.5
c0.26-0.16,0.5-0.279,0.81-0.279c0.479,0,0.909,0.31,1.119,0.829c0.29-0.229,0.58-0.41,0.829-0.569
c0.21-0.141,0.471-0.26,0.76-0.26c0.77,0,1.27,0.55,1.27,1.528v1.93c0,0.669,0.07,0.709,0.649,0.77v0.26H656.554z M662.825,728.564
c-0.63,0.779-1.319,0.96-1.63,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.949-0.729,1.459-0.729
h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32c-0.159,0.029-1.419,0.13-2.618,0.17
c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L662.825,728.564z M660.076,726.516c0.56,0,1.119-0.01,1.699-0.03
c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1C660.676,725.286,660.227,725.706,660.076,726.516z M664.956,725.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.261-0.021
c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.579,0.289-0.799,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.929-0.2,1.409-0.4v1.09H664.956z
M671.545,725.116c-0.09,0.16-0.29,0.42-0.45,0.51l-0.569-0.029c0.18,0.21,0.3,0.529,0.3,0.879c0,1.08-0.899,1.6-1.749,1.6
c-0.16,0-0.35-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419c0,0.19,0.18,0.38,0.63,0.38c0.369,0,0.719-0.01,1.059-0.01
c0.62,0,1.43,0.2,1.43,1.18c0,1.009-1.159,1.979-2.488,1.979c-1.12,0-1.729-0.649-1.739-1.219c0-0.221,0.09-0.41,0.239-0.561
c0.2-0.199,0.59-0.51,0.83-0.699c-0.36-0.11-0.609-0.34-0.74-0.55c-0.09-0.14-0.119-0.319-0.109-0.42
c0.399-0.149,0.72-0.409,0.879-0.609c-0.449-0.19-0.879-0.66-0.879-1.339c0-1.13,1.02-1.659,1.789-1.659h0.01
c0.33,0,0.66,0.09,0.96,0.27c0.479-0.03,0.989-0.09,1.358-0.15L671.545,725.116z M668.406,729.724c-0.26,0.221-0.46,0.5-0.46,0.78
c0,0.55,0.58,0.959,1.319,0.959c0.949,0,1.439-0.489,1.439-1.109c0-0.34-0.17-0.59-0.45-0.709
c-0.249-0.101-0.539-0.131-0.979-0.131C668.816,729.514,668.586,729.574,668.406,729.724z M668.236,726.416
c0,0.779,0.39,1.339,0.939,1.339c0.439-0.01,0.83-0.399,0.83-1.189c0-0.779-0.37-1.339-0.95-1.339
C668.636,725.227,668.236,725.646,668.236,726.416z M675.425,728.564c-0.63,0.779-1.319,0.96-1.629,0.96
c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729h0.01
c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.419,0.13-2.618,0.17
c0.01,1.359,0.799,1.919,1.499,1.919c0.409,0,0.779-0.16,1.149-0.5L675.425,728.564z M672.677,726.516
c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.01-0.52-0.33-1-0.89-1
C673.276,725.286,672.826,725.706,672.677,726.516z M678.875,729.404v-0.26c0.59-0.061,0.66-0.141,0.66-0.83v-1.669
c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26
c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229c0.48-0.091,0.95-0.21,1.39-0.4v0.79
c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519v1.93c0,0.679,0.061,0.719,0.64,0.779
v0.26H678.875z M685.175,728.505c-0.439,0.579-1.1,1.02-1.688,1.02c-1.26,0-2.01-1.02-2.01-2.089c0-0.77,0.34-1.439,1.01-1.949
c0.52-0.399,1.119-0.569,1.489-0.569h0.01c0.41,0,0.74,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43
c-0.06,0-0.109-0.03-0.189-0.109c-0.3-0.28-0.649-0.41-1.01-0.41c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.51,1.85
c0.43,0,0.749-0.12,1.209-0.55L685.175,728.505z M690.395,725.297c-0.529,0.079-0.609,0.159-0.88,0.719
c-0.26,0.53-0.569,1.359-1.259,3.009c-0.67,1.599-0.89,2.169-1.029,2.698c-0.05,0.2-0.18,0.25-0.32,0.25
c-0.279,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.25-0.37c0.319-0.189,0.51-0.439,0.75-0.879c0.18-0.351,0.26-0.561,0.31-0.69
c0.05-0.149,0.04-0.279-0.021-0.449c-0.399-1.14-0.85-2.349-1.139-3.059c-0.22-0.55-0.311-0.68-0.86-0.749v-0.261h2.02l0.01,0.261
c-0.47,0.069-0.52,0.17-0.38,0.549l0.899,2.499c0.28-0.68,0.72-1.859,0.92-2.488c0.12-0.37,0.06-0.49-0.52-0.56v-0.261h1.809
V725.297z M695.416,726.226c-0.2-0.6-0.54-0.989-1.03-0.989c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.4,0.67,0.84,0.859
c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.649,1.38c-0.51,0-0.97-0.19-1.14-0.34c-0.069-0.141-0.17-0.819-0.17-1.18
l0.271-0.05c0.17,0.659,0.619,1.239,1.219,1.239c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91
c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.52-1.299c0.409,0,0.68,0.09,0.879,0.18c0.09,0.22,0.2,0.819,0.22,1.06
L695.416,726.226z M700.175,728.564c-0.629,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749
c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.039,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.799,1.919,1.499,1.919c0.409,0,0.779-0.16,1.149-0.5L700.175,728.564z
M697.427,726.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.011-0.52-0.329-1-0.889-1
C698.026,725.286,697.576,725.706,697.427,726.516z M702.307,725.986c0.3-0.51,0.729-1.069,1.209-1.069
c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.27-0.199-0.43-0.199
c-0.26,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.69-0.12,0.69-0.779v-2.069
c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H702.307z M709.365,725.297
c-0.53,0.069-0.61,0.159-0.88,0.749c-0.34,0.75-0.859,1.979-1.419,3.468h-0.28c-0.439-1.199-0.899-2.328-1.379-3.498
c-0.23-0.569-0.3-0.64-0.84-0.719v-0.261h2.049v0.261c-0.54,0.06-0.56,0.14-0.399,0.569c0.25,0.699,0.659,1.759,0.949,2.469
c0.35-0.83,0.67-1.729,0.89-2.379c0.159-0.479,0.1-0.59-0.47-0.659v-0.261h1.779V725.297z M709.857,729.404v-0.26
c0.629-0.061,0.699-0.12,0.699-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.99-0.21,1.42-0.39v3.448
c0,0.68,0.069,0.739,0.709,0.8v0.26H709.857z M710.387,723.537c0-0.3,0.24-0.52,0.51-0.52c0.28,0,0.5,0.22,0.5,0.52
c0,0.271-0.22,0.51-0.51,0.51C710.627,724.047,710.387,723.808,710.387,723.537z M716.225,728.505
c-0.439,0.579-1.099,1.02-1.688,1.02c-1.26,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.01-1.949
c0.52-0.399,1.119-0.569,1.488-0.569h0.011c0.409,0,0.739,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3
c0,0.21-0.221,0.43-0.33,0.43c-0.061,0-0.11-0.03-0.19-0.109c-0.3-0.28-0.649-0.41-1.009-0.41c-0.66,0-1.229,0.55-1.229,1.599
c0,1.39,0.939,1.85,1.509,1.85c0.43,0,0.75-0.12,1.209-0.55L716.225,728.505z M720.425,728.564c-0.629,0.779-1.319,0.96-1.629,0.96
c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.249-1.3,0.659-1.749c0.41-0.45,0.949-0.729,1.459-0.729h0.011
c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919
c0.41,0,0.779-0.16,1.149-0.5L720.425,728.564z M717.677,726.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199
c0.011-0.52-0.329-1-0.889-1C718.276,725.286,717.826,725.706,717.677,726.516z M723.775,726.226
c-0.199-0.6-0.539-0.989-1.029-0.989c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859
c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.649,1.38c-0.51,0-0.97-0.19-1.14-0.34c-0.069-0.141-0.17-0.819-0.17-1.18
l0.271-0.05c0.17,0.659,0.619,1.239,1.219,1.239c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91
c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.52-1.299c0.409,0,0.679,0.09,0.879,0.18c0.09,0.22,0.2,0.819,0.22,1.06
L723.775,726.226z M726.517,729.185c0,0.779-0.689,1.199-1.31,1.389l-0.109-0.29c0.489-0.199,0.77-0.47,0.77-0.849
c0-0.36-0.28-0.58-0.62-0.67c-0.05,0-0.13-0.08-0.13-0.24c0-0.25,0.24-0.42,0.49-0.42
C725.967,728.104,726.517,728.495,726.517,729.185z M729.527,729.404v-0.26c0.63-0.061,0.699-0.12,0.699-0.8v-2.059
c0-0.62-0.029-0.67-0.629-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H729.527z
M730.057,723.537c0-0.3,0.24-0.52,0.51-0.52c0.28,0,0.5,0.22,0.5,0.52c0,0.271-0.22,0.51-0.51,0.51
C730.297,724.047,730.057,723.808,730.057,723.537z M735.246,729.404v-0.26c0.59-0.061,0.659-0.141,0.659-0.83v-1.669
c0-0.689-0.239-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35c0,0.679,0.061,0.719,0.65,0.779v0.26h-2.169v-0.26
c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.061-0.68-0.6-0.779v-0.229c0.479-0.091,0.949-0.21,1.389-0.4v0.79
c0.2-0.15,0.42-0.3,0.67-0.47c0.28-0.181,0.54-0.3,0.829-0.3c0.8,0,1.29,0.56,1.29,1.519v1.93c0,0.679,0.06,0.719,0.64,0.779v0.26
H735.246z M744.363,725.297c-0.499,0.069-0.589,0.189-0.789,0.739c-0.3,0.8-0.75,2.129-1.199,3.478h-0.29
c-0.399-1.079-0.81-2.059-1.22-3.107c-0.379,1.009-0.789,1.998-1.189,3.107h-0.279c-0.37-1.188-0.739-2.368-1.159-3.567
c-0.18-0.52-0.26-0.59-0.74-0.649v-0.261h2.069v0.261c-0.6,0.09-0.649,0.149-0.51,0.609c0.24,0.76,0.49,1.549,0.739,2.318h0.021
c0.369-0.959,0.739-1.979,1.159-3.138h0.26c0.37,1.039,0.779,2.099,1.199,3.178h0.021c0.22-0.689,0.499-1.569,0.689-2.309
c0.13-0.52,0.06-0.569-0.58-0.659v-0.261h1.799V725.297z M747.806,729.524c-0.15,0-0.36-0.09-0.47-0.2
c-0.13-0.13-0.189-0.27-0.24-0.439c-0.399,0.27-0.879,0.64-1.179,0.64c-0.71,0-1.2-0.59-1.2-1.22c0-0.489,0.261-0.8,0.811-0.989
c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.19,0-0.34,0.07-0.45,0.19
c-0.119,0.14-0.21,0.359-0.289,0.659c-0.051,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43
c0-0.14,0.119-0.26,0.31-0.399c0.27-0.2,0.93-0.58,1.499-0.699c0.3,0,0.6,0.09,0.819,0.27c0.351,0.3,0.45,0.699,0.45,1.229v1.849
c0,0.45,0.18,0.6,0.35,0.6c0.12,0,0.26-0.05,0.359-0.109l0.101,0.26L747.806,729.524z M747.076,727.006
c-0.21,0.109-0.689,0.319-0.899,0.419c-0.39,0.181-0.61,0.37-0.61,0.74c0,0.51,0.4,0.76,0.71,0.76c0.26,0,0.609-0.17,0.8-0.36
V727.006z M750.797,725.986c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.131,0.4-0.32,0.49
c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.289-0.8,0.85v1.829
c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.039-0.699-0.619-0.77
v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H750.797z M757.744,729.145c-0.22,0.04-0.969,0.17-1.549,0.38v-0.65l-0.609,0.36
c-0.4,0.229-0.67,0.29-0.779,0.29c-0.8,0-1.85-0.729-1.85-2.129c0-1.39,1.21-2.479,2.568-2.479c0.141,0,0.44,0.029,0.67,0.119
v-1.429c0-0.649-0.05-0.68-0.77-0.729v-0.25c0.52-0.06,1.189-0.22,1.56-0.34v5.967c0,0.52,0.069,0.569,0.439,0.609l0.319,0.03
V729.145z M756.195,725.807c-0.24-0.351-0.659-0.51-1.029-0.51c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.729,1.77,1.38,1.77
c0.35,0,0.719-0.16,0.959-0.34V725.807z"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 741.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="2.89" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="8.26" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="12.82" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="17.18" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="20.92" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="24.22" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="32.379" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="36.629" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="41.949" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="47.27" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="51.909" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="57.329" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="62.769" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="67.319" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="70.349" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o a </tspan><tspan x="84.379" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="89.679" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="93.998" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="98.918" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="102.578" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ee</tspan><tspan x="111.258" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="115.808" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="119.468" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="123.787" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="128.407" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="132.657" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="138.077" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="142.327" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="146.146" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="150.487" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="153.776" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="156.406" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="161.427" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="169.167" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="173.816" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="179.236" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="186.786" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ho</tspan><tspan x="197.066" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="202.517" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="206.176" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="209.066" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="214.536" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="219.235" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">. </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 753.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">O</tspan><tspan x="7.62" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="10.97" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="16.27" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">er </tspan><tspan x="26.499" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="31.119" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="34.779" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="39.129" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="43.679" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="49.619" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="52.349" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="55.309" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">k</tspan><tspan x="60.299" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="66.818" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="71.148" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="76.328" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="81.638" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="86.028" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="90.368" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="93.647" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="96.277" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="101.288" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="109.027" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="113.678" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="119.098" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="126.647" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="131.947" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="136.297" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="141.018" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="143.478" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="146.837" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h </tspan><tspan x="154.447" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="159.087" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="162.747" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="169.267" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="173.557" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="178.576" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="183.896" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="187.187" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="190.866" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="195.926" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="198.736" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="201.216" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="205.546" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="213.096" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="218.105" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 765.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="4.32" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="8.569" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="13.89" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="17.18" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="21" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="25.72" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l </tspan><tspan x="30.52" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="35.539" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r </tspan><tspan x="41.519" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="43.999" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="49.169" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="53.559" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="58.278" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l </tspan><tspan x="63.078" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="67.698" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="72.708" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="77.269" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="81.519" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="85.408" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="91.068" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="99.228" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="103.478" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="108.798" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="111.998" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">. </tspan><tspan x="116.548" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">U</tspan><tspan x="123.638" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="129.348" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="132.077" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="135.037" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">k</tspan><tspan x="140.027" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="146.547" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="151.597" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="154.946" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="160.247" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">er </tspan><tspan x="170.477" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="175.967" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="180.307" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="183.586" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="186.216" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="191.226" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="196.766" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="200.586" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="205.136" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="208.485" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="213.785" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="218.035" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="221.695" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan></text>
</g>
<path clip-path="url(#SVGID_13_)" fill="#231F20" d="M522.547,777.404v-0.26c0.63-0.061,0.699-0.12,0.699-0.8v-2.059
c0-0.62-0.029-0.67-0.629-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.069,0.739,0.709,0.8v0.26H522.547z
M523.076,771.537c0-0.3,0.24-0.52,0.51-0.52c0.28,0,0.5,0.22,0.5,0.52c0,0.271-0.22,0.51-0.51,0.51
C523.316,772.047,523.076,771.808,523.076,771.537z M527.936,774.226c-0.2-0.6-0.54-0.989-1.029-0.989
c-0.39,0-0.65,0.29-0.65,0.689c0,0.44,0.4,0.67,0.84,0.859c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.649,1.38
c-0.51,0-0.97-0.19-1.14-0.34c-0.069-0.141-0.169-0.819-0.169-1.18l0.27-0.05c0.17,0.659,0.619,1.239,1.22,1.239
c0.369,0,0.709-0.27,0.709-0.699c0-0.44-0.29-0.68-0.789-0.91c-0.6-0.27-1.25-0.609-1.25-1.369c0-0.699,0.6-1.299,1.52-1.299
c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.199,0.819,0.22,1.06L527.936,774.226z M534.085,777.404v-0.26
c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.73-0.12,0.73-0.779v-2.06c0-0.64-0.061-0.68-0.601-0.779v-0.229
c0.48-0.091,0.95-0.21,1.39-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519
v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H534.085z M541.074,775.146c0,1.609-1.179,2.379-2.169,2.379
c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398C540.155,772.917,541.074,773.916,541.074,775.146z
M537.646,774.995c0,1.26,0.539,2.199,1.369,2.199c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.358-2.119
C538.186,773.246,537.646,773.866,537.646,774.995z M546.655,774.226c-0.2-0.6-0.54-0.989-1.029-0.989
c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859c0.759,0.311,1.269,0.67,1.269,1.359c0,0.91-0.85,1.38-1.648,1.38
c-0.51,0-0.97-0.19-1.14-0.34c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239
c0.369,0,0.709-0.27,0.709-0.699c0-0.44-0.289-0.68-0.789-0.91c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299
c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.2,0.819,0.22,1.06L546.655,774.226z M549.756,777.395c-0.17,0.09-0.32,0.13-0.42,0.13
c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.28-0.29h0.449v-0.719l0.649-0.67l0.141,0.02v1.369h1.129
c0.1,0.11,0.07,0.32-0.06,0.4h-1.069v2.559c0,0.81,0.329,0.959,0.59,0.959c0.249,0,0.479-0.1,0.609-0.17l0.09,0.26L549.756,777.395
z M554.135,777.524c-0.149,0-0.359-0.09-0.47-0.2c-0.13-0.13-0.189-0.27-0.239-0.439c-0.4,0.27-0.88,0.64-1.18,0.64
c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13
c-0.189,0-0.34,0.07-0.449,0.19c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43
c0-0.14,0.12-0.26,0.31-0.399c0.271-0.2,0.93-0.58,1.5-0.699c0.299,0,0.6,0.09,0.819,0.27c0.35,0.3,0.449,0.699,0.449,1.229v1.849
c0,0.45,0.181,0.6,0.35,0.6c0.12,0,0.261-0.05,0.36-0.109l0.1,0.26L554.135,777.524z M553.405,775.006
c-0.21,0.109-0.689,0.319-0.899,0.419c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.709,0.76c0.261,0,0.61-0.17,0.8-0.36
V775.006z M557.285,777.395c-0.169,0.09-0.319,0.13-0.419,0.13c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.279-0.29
h0.45v-0.719l0.649-0.67l0.14,0.02v1.369h1.13c0.1,0.11,0.069,0.32-0.061,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959
c0.25,0,0.479-0.1,0.609-0.17l0.09,0.26L557.285,777.395z M562.005,776.564c-0.63,0.779-1.319,0.96-1.629,0.96
c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.95-0.729,1.46-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519
c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.42,0.13-2.619,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5
L562.005,776.564z M559.256,774.516c0.561,0,1.12-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C559.855,773.286,559.406,773.706,559.256,774.516z M569.305,775.146c0,1.609-1.18,2.379-2.169,2.379
c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398C568.385,772.917,569.305,773.916,569.305,775.146z
M565.876,774.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829c0-1.159-0.47-2.119-1.359-2.119
C566.416,773.246,565.876,773.866,565.876,774.995z M571.426,773.986c0.3-0.51,0.729-1.069,1.209-1.069
c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.261-0.021c-0.149-0.14-0.27-0.199-0.43-0.199
c-0.26,0-0.579,0.289-0.799,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.689-0.12,0.689-0.779
v-2.069c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.929-0.2,1.409-0.4v1.09H571.426z M577.406,773.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49c-0.12,0.05-0.199,0.04-0.26-0.021
c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.298v-0.26
c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H577.406z
M583.175,776.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749
c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L583.175,776.564z
M580.427,774.516c0.56,0,1.119-0.01,1.698-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C581.026,773.286,580.576,773.706,580.427,774.516z M588.225,773.116c-0.09,0.16-0.29,0.42-0.45,0.51l-0.569-0.029
c0.18,0.21,0.3,0.529,0.3,0.879c0,1.08-0.899,1.6-1.749,1.6c-0.16,0-0.35-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419
c0,0.19,0.18,0.38,0.63,0.38c0.369,0,0.72-0.01,1.06-0.01c0.619,0,1.429,0.2,1.429,1.18c0,1.009-1.159,1.979-2.488,1.979
c-1.119,0-1.729-0.649-1.739-1.219c0-0.221,0.09-0.41,0.24-0.561c0.199-0.199,0.589-0.51,0.829-0.699
c-0.359-0.11-0.609-0.34-0.739-0.55c-0.09-0.14-0.12-0.319-0.11-0.42c0.4-0.149,0.72-0.409,0.88-0.609
c-0.45-0.19-0.88-0.66-0.88-1.339c0-1.13,1.02-1.659,1.789-1.659h0.01c0.33,0,0.66,0.09,0.96,0.27
c0.479-0.03,0.989-0.09,1.359-0.15L588.225,773.116z M585.086,777.724c-0.26,0.221-0.459,0.5-0.459,0.78
c0,0.55,0.579,0.959,1.318,0.959c0.95,0,1.439-0.489,1.439-1.109c0-0.34-0.17-0.59-0.449-0.709c-0.25-0.101-0.54-0.131-0.979-0.131
C585.496,777.514,585.266,777.574,585.086,777.724z M584.916,774.416c0,0.779,0.39,1.339,0.939,1.339
c0.44-0.01,0.83-0.399,0.83-1.189c0-0.779-0.37-1.339-0.949-1.339C585.316,773.227,584.916,773.646,584.916,774.416z
M588.787,777.404v-0.26c0.629-0.061,0.699-0.12,0.699-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.99-0.21,1.42-0.39
v3.448c0,0.68,0.069,0.739,0.709,0.8v0.26H588.787z M589.316,771.537c0-0.3,0.24-0.52,0.51-0.52c0.28,0,0.5,0.22,0.5,0.52
c0,0.271-0.22,0.51-0.51,0.51C589.557,772.047,589.316,771.808,589.316,771.537z M595.814,775.146c0,1.609-1.18,2.379-2.169,2.379
c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398C594.895,772.917,595.814,773.916,595.814,775.146z
M592.387,774.995c0,1.26,0.539,2.199,1.369,2.199c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119
C592.926,773.246,592.387,773.866,592.387,774.995z M599.245,777.404v-0.26c0.59-0.061,0.66-0.141,0.66-0.83v-1.669
c0-0.689-0.24-1.14-0.91-1.14c-0.399,0-0.789,0.25-1.089,0.51v2.35c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26
c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229c0.479-0.091,0.95-0.21,1.39-0.4v0.79
c0.199-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519v1.93
c0,0.679,0.061,0.719,0.64,0.779v0.26H599.245z M605.075,777.524c-0.15,0-0.36-0.09-0.47-0.2c-0.13-0.13-0.189-0.27-0.24-0.439
c-0.399,0.27-0.879,0.64-1.179,0.64c-0.71,0-1.2-0.59-1.2-1.22c0-0.489,0.261-0.8,0.811-0.989c0.6-0.2,1.329-0.47,1.549-0.649
v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.19,0-0.34,0.07-0.45,0.19c-0.119,0.14-0.21,0.359-0.289,0.659
c-0.051,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.119-0.26,0.31-0.399c0.27-0.2,0.93-0.58,1.499-0.699
c0.3,0,0.6,0.09,0.819,0.27c0.351,0.3,0.45,0.699,0.45,1.229v1.849c0,0.45,0.18,0.6,0.35,0.6c0.12,0,0.26-0.05,0.359-0.109
l0.101,0.26L605.075,777.524z M604.346,775.006c-0.21,0.109-0.689,0.319-0.899,0.419c-0.39,0.181-0.61,0.37-0.61,0.74
c0,0.51,0.4,0.76,0.71,0.76c0.26,0,0.609-0.17,0.8-0.36V775.006z M606.467,777.404v-0.26c0.63-0.061,0.72-0.12,0.72-0.779v-4.728
c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.14-0.229,1.479-0.35v6.077c0,0.659,0.079,0.719,0.719,0.779v0.26H606.467z
M611.267,777.404v-0.26c0.63-0.061,0.72-0.12,0.72-0.779v-4.728c0-0.68-0.06-0.7-0.689-0.76v-0.24
c0.52-0.06,1.14-0.229,1.479-0.35v6.077c0,0.659,0.08,0.719,0.72,0.779v0.26H611.267z M617.535,776.564
c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.95-0.729,1.46-0.729
h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.42,0.13-2.619,0.17
c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5L617.535,776.564z M614.786,774.516c0.56,0,1.12-0.01,1.699-0.03
c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1C615.386,773.286,614.937,773.706,614.786,774.516z M622.744,773.297
c-0.529,0.069-0.609,0.159-0.879,0.749c-0.34,0.75-0.859,1.979-1.42,3.468h-0.279c-0.439-1.199-0.899-2.328-1.379-3.498
c-0.23-0.569-0.3-0.64-0.84-0.719v-0.261h2.049v0.261c-0.54,0.06-0.56,0.14-0.399,0.569c0.249,0.699,0.659,1.759,0.949,2.469
c0.35-0.83,0.67-1.729,0.89-2.379c0.159-0.479,0.1-0.59-0.47-0.659v-0.261h1.778V773.297z M626.465,776.564
c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729
h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.419,0.13-2.619,0.17
c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L626.465,776.564z M623.717,774.516c0.56,0,1.119-0.01,1.699-0.03
c0.18,0,0.239-0.05,0.239-0.199c0.01-0.52-0.33-1-0.89-1C624.316,773.286,623.866,773.706,623.717,774.516z M626.938,777.404v-0.26
c0.629-0.061,0.719-0.12,0.719-0.779v-4.728c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.14-0.229,1.479-0.35v6.077
c0,0.659,0.08,0.719,0.72,0.779v0.26H626.938z M636.314,775.146c0,1.609-1.179,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209
c0-1.649,1.279-2.398,2.199-2.398C635.396,772.917,636.314,773.916,636.314,775.146z M632.887,774.995
c0,1.26,0.539,2.199,1.369,2.199c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.358-2.119
C633.426,773.246,632.887,773.866,632.887,774.995z M637.617,773.036v-0.209c0-0.32,0.039-0.61,0.109-0.83s0.229-0.72,0.77-1.18
c0.36-0.3,0.71-0.479,1.1-0.529c0.34,0.02,0.63,0.15,0.789,0.34c0.09,0.11,0.101,0.229,0.051,0.35c-0.03,0.08-0.09,0.16-0.19,0.24
c-0.09,0.069-0.18,0.069-0.27-0.03c-0.19-0.189-0.479-0.37-0.81-0.37c-0.26,0-0.42,0.12-0.53,0.29
c-0.13,0.2-0.239,0.68-0.229,1.529v0.399h1.18c0.06,0.091,0.01,0.33-0.101,0.4h-1.079v2.868c0,0.739,0.07,0.77,0.859,0.85v0.25
h-2.358v-0.26c0.64-0.061,0.71-0.11,0.71-0.77v-2.938h-0.7l-0.04-0.11l0.27-0.29H637.617z M646.515,773.116
c-0.09,0.16-0.29,0.42-0.449,0.51l-0.57-0.029c0.18,0.21,0.3,0.529,0.3,0.879c0,1.08-0.899,1.6-1.749,1.6
c-0.159,0-0.35-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419c0,0.19,0.18,0.38,0.63,0.38c0.37,0,0.72-0.01,1.06-0.01
c0.619,0,1.429,0.2,1.429,1.18c0,1.009-1.159,1.979-2.488,1.979c-1.119,0-1.729-0.649-1.739-1.219c0-0.221,0.09-0.41,0.24-0.561
c0.2-0.199,0.59-0.51,0.829-0.699c-0.359-0.11-0.609-0.34-0.739-0.55c-0.09-0.14-0.12-0.319-0.11-0.42
c0.4-0.149,0.72-0.409,0.88-0.609c-0.449-0.19-0.88-0.66-0.88-1.339c0-1.13,1.02-1.659,1.789-1.659h0.011
c0.329,0,0.659,0.09,0.959,0.27c0.479-0.03,0.989-0.09,1.359-0.15L646.515,773.116z M643.377,777.724
c-0.261,0.221-0.46,0.5-0.46,0.78c0,0.55,0.579,0.959,1.319,0.959c0.949,0,1.438-0.489,1.438-1.109c0-0.34-0.17-0.59-0.449-0.709
c-0.25-0.101-0.54-0.131-0.979-0.131C643.786,777.514,643.557,777.574,643.377,777.724z M643.207,774.416
c0,0.779,0.39,1.339,0.939,1.339c0.439-0.01,0.829-0.399,0.829-1.189c0-0.779-0.37-1.339-0.949-1.339
C643.606,773.227,643.207,773.646,643.207,774.416z M651.175,775.146c0,1.609-1.18,2.379-2.169,2.379
c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398C650.255,772.917,651.175,773.916,651.175,775.146z
M647.747,774.995c0,1.26,0.539,2.199,1.369,2.199c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119
C648.286,773.246,647.747,773.866,647.747,774.995z M656.234,773.297c-0.529,0.069-0.609,0.159-0.879,0.749
c-0.34,0.75-0.859,1.979-1.42,3.468h-0.279c-0.439-1.199-0.899-2.328-1.379-3.498c-0.23-0.569-0.301-0.64-0.84-0.719v-0.261h2.049
v0.261c-0.54,0.06-0.56,0.14-0.4,0.569c0.25,0.699,0.66,1.759,0.95,2.469c0.35-0.83,0.669-1.729,0.89-2.379
c0.159-0.479,0.1-0.59-0.47-0.659v-0.261h1.778V773.297z M659.955,776.564c-0.63,0.779-1.319,0.96-1.629,0.96
c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729h0.01
c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.42,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919
c0.409,0,0.779-0.16,1.148-0.5L659.955,776.564z M657.207,774.516c0.56,0,1.119-0.01,1.698-0.03c0.181,0,0.24-0.05,0.24-0.199
c0.01-0.52-0.33-1-0.89-1C657.807,773.286,657.356,773.706,657.207,774.516z M662.086,773.986c0.3-0.51,0.73-1.069,1.21-1.069
c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.271-0.199-0.43-0.199
c-0.26,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.689-0.12,0.689-0.779v-2.069
c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.93-0.2,1.409-0.4v1.09H662.086z M667.296,777.404v-0.26
c0.589-0.061,0.659-0.141,0.659-0.83v-1.669c0-0.689-0.239-1.14-0.909-1.14c-0.399,0-0.79,0.25-1.09,0.51v2.35
c0,0.679,0.061,0.719,0.649,0.779v0.26h-2.168v-0.26c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.061-0.68-0.6-0.779v-0.229
c0.479-0.091,0.949-0.21,1.389-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.28-0.181,0.54-0.3,0.829-0.3c0.8,0,1.29,0.56,1.29,1.519
v1.93c0,0.679,0.06,0.719,0.64,0.779v0.26H667.296z M673.125,777.524c-0.149,0-0.359-0.09-0.47-0.2
c-0.13-0.13-0.189-0.27-0.239-0.439c-0.4,0.27-0.88,0.64-1.18,0.64c-0.709,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989
c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.449,0.19
c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.149,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399
c0.271-0.2,0.93-0.58,1.5-0.699c0.3,0,0.6,0.09,0.819,0.27c0.35,0.3,0.449,0.699,0.449,1.229v1.849c0,0.45,0.181,0.6,0.351,0.6
c0.119,0,0.26-0.05,0.359-0.109l0.1,0.26L673.125,777.524z M672.396,775.006c-0.21,0.109-0.689,0.319-0.899,0.419
c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.71,0.76c0.26,0,0.609-0.17,0.799-0.36V775.006z M677.445,777.404v-0.26
c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.91-1.14c-0.399,0-0.789,0.25-1.089,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229
c0.48-0.091,0.949-0.21,1.39-0.4v0.79c0.2-0.15,0.42-0.3,0.669-0.47c0.28-0.181,0.54-0.3,0.83-0.3c0.8,0,1.289,0.56,1.289,1.519
v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H677.445z M683.745,776.505c-0.439,0.579-1.1,1.02-1.689,1.02
c-1.259,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.01-1.949c0.52-0.399,1.119-0.569,1.489-0.569h0.01
c0.41,0,0.739,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43c-0.06,0-0.109-0.03-0.189-0.109
c-0.3-0.28-0.65-0.41-1.01-0.41c-0.66,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.51,1.85c0.43,0,0.749-0.12,1.209-0.55
L683.745,776.505z M687.945,776.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.659-1.749
c0.41-0.45,0.95-0.729,1.46-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.42,0.13-2.619,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5L687.945,776.564z
M685.196,774.516c0.56,0,1.12-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C685.796,773.286,685.347,773.706,685.196,774.516z M690.837,777.404v-0.26c0.63-0.061,0.7-0.12,0.7-0.8v-2.059
c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H690.837z
M691.367,771.537c0-0.3,0.239-0.52,0.51-0.52c0.279,0,0.499,0.22,0.499,0.52c0,0.271-0.22,0.51-0.51,0.51
C691.606,772.047,691.367,771.808,691.367,771.537z M696.556,777.404v-0.26c0.59-0.061,0.659-0.141,0.659-0.83v-1.669
c0-0.689-0.239-1.14-0.909-1.14c-0.399,0-0.789,0.25-1.089,0.51v2.35c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26
c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229c0.479-0.091,0.949-0.21,1.39-0.4v0.79
c0.199-0.15,0.419-0.3,0.669-0.47c0.28-0.181,0.54-0.3,0.83-0.3c0.8,0,1.289,0.56,1.289,1.519v1.93c0,0.679,0.06,0.719,0.64,0.779
v0.26H696.556z M703.446,777.395c-0.17,0.09-0.32,0.13-0.42,0.13c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11
l0.28-0.29h0.449v-0.719l0.649-0.67l0.141,0.02v1.369h1.129c0.1,0.11,0.07,0.32-0.06,0.4h-1.069v2.559
c0,0.81,0.329,0.959,0.589,0.959c0.25,0,0.48-0.1,0.61-0.17l0.09,0.26L703.446,777.395z M707.525,777.404v-0.26
c0.58-0.061,0.66-0.12,0.66-0.77v-1.659c0-0.819-0.311-1.229-0.979-1.229c-0.38,0-0.76,0.189-1.04,0.51v2.379
c0,0.64,0.051,0.709,0.65,0.77v0.26h-2.129l0.01-0.26c0.6-0.05,0.68-0.11,0.68-0.77v-4.768c0-0.63-0.021-0.67-0.68-0.729v-0.24
c0.479-0.069,1.079-0.229,1.469-0.35v3.358c0.36-0.36,0.89-0.729,1.43-0.729c0.81,0,1.379,0.51,1.379,1.709v1.749
c0,0.659,0.08,0.72,0.66,0.77v0.26H707.525z M713.745,776.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L713.745,776.564z
M710.997,774.516c0.56,0,1.119-0.01,1.698-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C711.597,773.286,711.146,773.706,710.997,774.516z M723.474,771.188c-0.6,0.04-0.83,0.17-0.87,0.59
c-0.029,0.27-0.06,0.699-0.06,1.619v0.819c0,1.18-0.18,2.029-0.75,2.639c-0.47,0.479-1.139,0.689-1.799,0.689
c-0.59,0-1.159-0.14-1.599-0.479c-0.6-0.46-0.88-1.199-0.88-2.379v-2.488c0-0.899-0.09-0.939-0.869-1.01v-0.279h2.578v0.279
c-0.779,0.05-0.859,0.11-0.859,1.01v2.269c0,1.609,0.64,2.538,1.879,2.538c1.439,0,1.889-1.209,1.889-2.858v-0.749
c0-0.92-0.029-1.34-0.069-1.649c-0.05-0.39-0.26-0.51-0.97-0.56v-0.279h2.379V771.188z M729.024,777.404
c-0.779-0.87-1.589-1.849-2.479-2.908c-0.24-0.271-0.37-0.3-0.54-0.271v1.899c0,0.869,0.09,0.939,0.92,0.999v0.28h-2.599v-0.28
c0.76-0.06,0.84-0.13,0.84-0.999v-3.918c0-0.909-0.08-0.959-0.87-1.02v-0.279h2.579v0.279c-0.77,0.061-0.87,0.13-0.87,1.02v1.749
c0.221-0.05,0.42-0.189,0.7-0.45c0.55-0.529,1.219-1.229,1.669-1.778c0.3-0.36,0.29-0.46-0.16-0.51l-0.229-0.03v-0.279h2.398v0.279
c-0.75,0.07-0.989,0.17-1.619,0.75c-0.39,0.35-1.1,1.069-1.769,1.749c0.749,0.949,1.849,2.179,2.349,2.718
c0.529,0.57,0.729,0.66,1.209,0.72v0.28H729.024z M731.387,776.944c0-0.319,0.24-0.569,0.561-0.569c0.319,0,0.56,0.25,0.56,0.569
c0,0.35-0.24,0.58-0.57,0.58C731.627,777.524,731.387,777.294,731.387,776.944z M743.753,777.404v-0.26
c0.59-0.061,0.659-0.13,0.659-0.779v-1.64c0-0.829-0.31-1.239-0.989-1.239c-0.37,0-0.76,0.189-1.029,0.529v2.35
c0,0.639,0.05,0.719,0.659,0.779v0.26h-2.148v-0.26c0.64-0.061,0.699-0.13,0.699-0.79v-5.027c-0.549-0.06-1.069-0.069-1.948-0.069
h-0.71v4.897c0,0.839,0.08,0.919,1,0.979v0.27h-2.818v-0.27c0.889-0.061,0.969-0.141,0.969-0.979v-4.897h-0.63
c-0.889,0-1.069,0.09-1.209,0.329c-0.12,0.19-0.21,0.42-0.33,0.88h-0.289c0.05-0.59,0.1-1.259,0.119-1.809h0.19
c0.14,0.22,0.27,0.25,0.55,0.25h4.157c0.83,0,0.949-0.061,0.949-0.261v-0.149c0.2-0.03,0.51-0.13,0.79-0.229v3.368
c0.37-0.38,0.88-0.71,1.399-0.72c0.84-0.021,1.409,0.51,1.409,1.698v1.75c0,0.669,0.069,0.729,0.67,0.779v0.26H743.753z
M749.995,776.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749
c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L749.995,776.564z
M747.247,774.516c0.56,0,1.119-0.01,1.698-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C747.847,773.286,747.396,773.706,747.247,774.516z"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 789.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="8.229" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="12.51" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y</tspan><tspan x="17.069" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="22.09" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r </tspan><tspan x="28.069" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="33.439" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="37.979" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="43.919" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="47.27" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="52.569" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="59.089" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="61.679" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="66.309" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="70.049" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="74.669" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="79.028" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="82.769" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="88.088" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="92.358" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="94.838" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="99.168" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="103.607" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="106.638" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="111.668" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="115.487" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="119.827" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="122.897" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="129.417" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="132.307" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="140.047" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="143.396" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="148.696" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="155.217" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">U</tspan><tspan x="162.786" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">K</tspan><tspan x="169.606" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="174.156" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="178.796" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="184.216" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="191.766" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="196.776" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="202.196" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="208.716" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="213.735" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="218.966" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="222.315" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="227.615" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 801.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="2.59" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="7.229" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="10.97" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="15.59" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="19.949" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="23.689" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="29.009" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="31.899" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="39.639" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">E</tspan><tspan x="45.309" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="50.829" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="54.509" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="59.559" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="64.868" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="69.208" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="73.758" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">w</tspan><tspan x="80.898" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="83.508" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="86.858" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h </tspan><tspan x="94.468" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">5</tspan><tspan x="99.198" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">.</tspan><tspan x="101.607" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">8 </tspan><tspan x="108.678" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="117.048" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="119.997" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="122.808" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="125.537" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="128.167" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="133.177" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="140.917" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="145.497" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="150.537" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="153.606" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="157.856" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="161.627" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s e</tspan><tspan x="171.816" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="177.146" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="180.426" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="183.036" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="186.406" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="188.886" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="193.216" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="200.766" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="203.796" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o </tspan><tspan x="211.165" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="214.365" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="219.096" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">k</tspan><tspan x="224.085" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan></text>
</g>
<path clip-path="url(#SVGID_13_)" fill="#231F20" d="M524.836,809.076c0.18-0.109,0.369-0.159,0.489-0.159
c1.109,0,1.769,0.909,1.769,1.889c0,1.509-1.188,2.479-2.488,2.719c-0.3-0.011-0.56-0.11-0.689-0.181v1.31
c0,0.76,0.07,0.819,0.84,0.88v0.27h-2.359v-0.27c0.64-0.061,0.73-0.12,0.73-0.779v-4.518c0-0.65-0.041-0.67-0.66-0.75v-0.24
c0.42-0.069,0.979-0.239,1.449-0.43v0.79L524.836,809.076z M523.916,812.645c0.22,0.229,0.59,0.39,0.939,0.39
c0.84,0,1.399-0.72,1.399-1.839c0-1.079-0.62-1.679-1.34-1.679c-0.319,0-0.729,0.22-0.999,0.43V812.645z M530.965,813.524
c-0.149,0-0.359-0.09-0.47-0.2c-0.13-0.13-0.189-0.27-0.239-0.439c-0.4,0.27-0.88,0.64-1.18,0.64c-0.71,0-1.199-0.59-1.199-1.22
c0-0.489,0.26-0.8,0.81-0.989c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.449,0.19
c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399
c0.27-0.2,0.93-0.58,1.499-0.699c0.3,0,0.6,0.09,0.82,0.27c0.35,0.3,0.449,0.699,0.449,1.229v1.849c0,0.45,0.18,0.6,0.35,0.6
c0.12,0,0.26-0.05,0.36-0.109l0.1,0.26L530.965,813.524z M530.235,811.006c-0.21,0.109-0.689,0.319-0.899,0.419
c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.709,0.76c0.26,0,0.61-0.17,0.8-0.36V811.006z M533.956,809.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49c-0.12,0.05-0.199,0.04-0.26-0.021
c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.579,0.289-0.8,0.85v1.829c0,0.659,0.051,0.719,0.82,0.779v0.26h-2.299v-0.26
c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H533.956z
M538.436,813.395c-0.17,0.09-0.319,0.13-0.42,0.13c-0.629,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.28-0.29h0.449
v-0.719l0.649-0.67l0.141,0.02v1.369h1.129c0.101,0.11,0.07,0.32-0.06,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959
c0.25,0,0.479-0.1,0.609-0.17l0.09,0.26L538.436,813.395z M541.776,813.404v-0.26c0.63-0.061,0.7-0.12,0.7-0.8v-2.059
c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H541.776z
M542.307,807.537c0-0.3,0.239-0.52,0.51-0.52c0.279,0,0.5,0.22,0.5,0.52c0,0.271-0.221,0.51-0.51,0.51
C542.546,808.047,542.307,807.808,542.307,807.537z M547.495,813.404v-0.26c0.59-0.061,0.66-0.141,0.66-0.83v-1.669
c0-0.689-0.24-1.14-0.91-1.14c-0.399,0-0.789,0.25-1.089,0.51v2.35c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26
c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229c0.479-0.091,0.949-0.21,1.39-0.4v0.79
c0.199-0.15,0.42-0.3,0.669-0.47c0.28-0.181,0.54-0.3,0.83-0.3c0.8,0,1.289,0.56,1.289,1.519v1.93c0,0.679,0.06,0.719,0.64,0.779
v0.26H547.495z M556.035,812.564c-0.63,0.779-1.319,0.96-1.63,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749
c0.41-0.45,0.95-0.729,1.459-0.729h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32
c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L556.035,812.564z
M553.286,810.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C553.886,809.286,553.437,809.706,553.286,810.516z M556.507,813.404v-0.26c0.63-0.061,0.72-0.12,0.72-0.779v-4.728
c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.139-0.229,1.479-0.35v6.077c0,0.659,0.08,0.719,0.72,0.779v0.26H556.507z
M562.775,812.564c-0.63,0.779-1.319,0.96-1.63,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749
c0.41-0.45,0.949-0.729,1.459-0.729h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32
c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L562.775,812.564z
M560.026,810.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.011-0.52-0.329-1-0.889-1
C560.626,809.286,560.177,809.706,560.026,810.516z M567.225,812.505c-0.439,0.579-1.1,1.02-1.688,1.02
c-1.26,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.009-1.949c0.52-0.399,1.12-0.569,1.489-0.569h0.01c0.41,0,0.74,0.13,0.9,0.27
c0.129,0.11,0.159,0.189,0.159,0.3c0,0.21-0.22,0.43-0.329,0.43c-0.061,0-0.11-0.03-0.19-0.109c-0.3-0.28-0.649-0.41-1.01-0.41
c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.94,1.85,1.51,1.85c0.43,0,0.75-0.12,1.209-0.55L567.225,812.505z M569.896,813.395
c-0.17,0.09-0.319,0.13-0.419,0.13c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.69l-0.039-0.11l0.279-0.29h0.45v-0.719l0.649-0.67
l0.14,0.02v1.369h1.13c0.1,0.11,0.069,0.32-0.061,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17
l0.09,0.26L569.896,813.395z M571.207,813.404v-0.26c0.63-0.061,0.699-0.12,0.699-0.8v-2.059c0-0.62-0.029-0.67-0.629-0.76v-0.24
c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.069,0.739,0.709,0.8v0.26H571.207z M571.736,807.537c0-0.3,0.24-0.52,0.51-0.52
c0.28,0,0.5,0.22,0.5,0.52c0,0.271-0.22,0.51-0.51,0.51C571.977,808.047,571.736,807.808,571.736,807.537z M578.234,811.146
c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398
C577.315,808.917,578.234,809.916,578.234,811.146z M574.807,810.995c0,1.26,0.539,2.199,1.369,2.199
c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119C575.346,809.246,574.807,809.866,574.807,810.995z
M581.665,813.404v-0.26c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229
c0.48-0.091,0.95-0.21,1.39-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519
v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H581.665z M586.995,810.226c-0.199-0.6-0.539-0.989-1.029-0.989
c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859c0.759,0.311,1.269,0.67,1.269,1.359c0,0.91-0.85,1.38-1.648,1.38
c-0.51,0-0.97-0.19-1.14-0.34c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239
c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299
c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.2,0.819,0.22,1.06L586.995,810.226z M593.945,812.564c-0.63,0.779-1.319,0.96-1.63,0.96
c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.95-0.729,1.459-0.729h0.011
c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919
c0.41,0,0.779-0.16,1.149-0.5L593.945,812.564z M591.196,810.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199
c0.01-0.52-0.33-1-0.89-1C591.796,809.286,591.347,809.706,591.196,810.516z M599.154,809.297
c-0.529,0.069-0.609,0.159-0.879,0.749c-0.34,0.75-0.86,1.979-1.42,3.468h-0.279c-0.44-1.199-0.899-2.328-1.38-3.498
c-0.229-0.569-0.3-0.64-0.839-0.719v-0.261h2.049v0.261c-0.54,0.06-0.56,0.14-0.4,0.569c0.25,0.699,0.66,1.759,0.95,2.469
c0.35-0.83,0.669-1.729,0.89-2.379c0.159-0.479,0.1-0.59-0.471-0.659v-0.261h1.779V809.297z M602.875,812.564
c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729
h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.42,0.13-2.619,0.17
c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.148-0.5L602.875,812.564z M600.127,810.516c0.56,0,1.119-0.01,1.698-0.03
c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1C600.727,809.286,600.276,809.706,600.127,810.516z M605.006,809.986
c0.3-0.51,0.729-1.069,1.21-1.069c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.26-0.021
c-0.15-0.14-0.271-0.199-0.43-0.199c-0.261,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.62-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.93-0.2,1.409-0.4v1.09H605.006z
M612.045,809.297c-0.53,0.079-0.61,0.159-0.88,0.719c-0.26,0.53-0.569,1.359-1.259,3.009c-0.67,1.599-0.89,2.169-1.03,2.698
c-0.05,0.2-0.18,0.25-0.319,0.25c-0.28,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.25-0.37c0.319-0.189,0.51-0.439,0.749-0.879
c0.18-0.351,0.26-0.561,0.31-0.69c0.051-0.149,0.04-0.279-0.02-0.449c-0.399-1.14-0.85-2.349-1.14-3.059
c-0.22-0.55-0.31-0.68-0.859-0.749v-0.261h2.019l0.011,0.261c-0.47,0.069-0.52,0.17-0.38,0.549l0.899,2.499
c0.279-0.68,0.72-1.859,0.919-2.488c0.12-0.37,0.061-0.49-0.52-0.56v-0.261h1.81V809.297z M615.137,809.036v-0.209
c0-0.32,0.04-0.61,0.11-0.83c0.069-0.22,0.229-0.72,0.77-1.18c0.359-0.3,0.709-0.479,1.099-0.529c0.34,0.02,0.63,0.15,0.79,0.34
c0.09,0.11,0.1,0.229,0.05,0.35c-0.03,0.08-0.09,0.16-0.189,0.24c-0.09,0.069-0.181,0.069-0.271-0.03
c-0.189-0.189-0.479-0.37-0.81-0.37c-0.26,0-0.42,0.12-0.529,0.29c-0.13,0.2-0.24,0.68-0.23,1.529v0.399h1.18
c0.061,0.091,0.01,0.33-0.1,0.4h-1.08v2.868c0,0.739,0.07,0.77,0.86,0.85v0.25h-2.359v-0.26c0.64-0.061,0.71-0.11,0.71-0.77v-2.938
h-0.699l-0.04-0.11l0.27-0.29H615.137z M621.725,811.146c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209
c0-1.649,1.279-2.398,2.199-2.398C620.806,808.917,621.725,809.916,621.725,811.146z M618.297,810.995
c0,1.26,0.539,2.199,1.369,2.199c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119
C618.836,809.246,618.297,809.866,618.297,810.995z M627.185,813.164c-0.22,0.03-0.5,0.09-0.77,0.16c-0.26,0.07-0.51,0.15-0.7,0.2
l-0.06-0.061v-0.709c-0.229,0.17-0.45,0.35-0.739,0.52c-0.29,0.17-0.5,0.25-0.77,0.25c-0.67,0-1.24-0.41-1.24-1.489v-1.959
c0-0.53-0.079-0.58-0.329-0.64l-0.28-0.061v-0.229c0.21-0.01,0.46-0.04,0.72-0.07c0.27-0.04,0.55-0.079,0.71-0.109
c-0.03,0.31-0.03,0.779-0.03,1.449v1.349c0,0.89,0.43,1.13,0.88,1.13c0.359,0,0.739-0.15,1.079-0.479v-2.339
c0-0.53-0.09-0.59-0.42-0.64l-0.359-0.061v-0.229c0.27-0.01,0.609-0.04,0.899-0.08c0.279-0.03,0.52-0.069,0.67-0.1v3.338
c0,0.5,0.079,0.56,0.469,0.59l0.271,0.01V813.164z M629.356,809.986c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499
c0,0.2-0.13,0.4-0.32,0.49c-0.12,0.05-0.199,0.04-0.26-0.021c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.579,0.289-0.8,0.85
v1.829c0,0.659,0.051,0.719,0.82,0.779v0.26h-2.299v-0.26c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77
v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H629.356z M638.285,809.297c-0.53,0.079-0.61,0.159-0.88,0.719
c-0.26,0.53-0.569,1.359-1.26,3.009c-0.669,1.599-0.889,2.169-1.029,2.698c-0.05,0.2-0.18,0.25-0.319,0.25
c-0.28,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.249-0.37c0.32-0.189,0.51-0.439,0.75-0.879c0.18-0.351,0.26-0.561,0.31-0.69
c0.051-0.149,0.04-0.279-0.02-0.449c-0.399-1.14-0.85-2.349-1.14-3.059c-0.22-0.55-0.31-0.68-0.859-0.749v-0.261h2.019l0.011,0.261
c-0.47,0.069-0.521,0.17-0.38,0.549l0.899,2.499c0.279-0.68,0.72-1.859,0.919-2.488c0.12-0.37,0.061-0.49-0.52-0.56v-0.261h1.81
V809.297z M641.976,812.564c-0.63,0.779-1.319,0.96-1.63,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.249-1.3,0.659-1.749
c0.41-0.45,0.949-0.729,1.459-0.729h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32
c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L641.976,812.564z
M639.227,810.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C639.826,809.286,639.377,809.706,639.227,810.516z M645.855,813.524c-0.15,0-0.359-0.09-0.47-0.2c-0.13-0.13-0.19-0.27-0.24-0.439
c-0.399,0.27-0.879,0.64-1.179,0.64c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989c0.6-0.2,1.329-0.47,1.549-0.649
v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.19,0-0.34,0.07-0.45,0.19c-0.119,0.14-0.209,0.359-0.289,0.659
c-0.051,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399c0.27-0.2,0.93-0.58,1.499-0.699
c0.3,0,0.6,0.09,0.819,0.27c0.351,0.3,0.45,0.699,0.45,1.229v1.849c0,0.45,0.18,0.6,0.35,0.6c0.12,0,0.26-0.05,0.36-0.109l0.1,0.26
L645.855,813.524z M645.126,811.006c-0.21,0.109-0.689,0.319-0.899,0.419c-0.39,0.181-0.609,0.37-0.609,0.74
c0,0.51,0.399,0.76,0.709,0.76c0.26,0,0.609-0.17,0.8-0.36V811.006z M648.847,809.986c0.3-0.51,0.729-1.069,1.209-1.069
c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49c-0.12,0.05-0.2,0.04-0.26-0.021c-0.149-0.14-0.27-0.199-0.43-0.199
c-0.26,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.298v-0.26c0.619-0.061,0.689-0.12,0.689-0.779v-2.069
c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H648.847z M653.726,810.226
c-0.2-0.6-0.54-0.989-1.029-0.989c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859
c0.759,0.311,1.269,0.67,1.269,1.359c0,0.91-0.85,1.38-1.648,1.38c-0.51,0-0.97-0.19-1.14-0.34c-0.07-0.141-0.17-0.819-0.17-1.18
l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239c0.369,0,0.709-0.27,0.709-0.699c0-0.44-0.289-0.68-0.789-0.91
c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.2,0.819,0.22,1.06
L653.726,810.226z M655.147,812.944c0-0.319,0.239-0.569,0.56-0.569c0.319,0,0.56,0.25,0.56,0.569c0,0.35-0.24,0.58-0.569,0.58
C655.387,813.524,655.147,813.294,655.147,812.944z M667.513,813.404v-0.26c0.59-0.061,0.66-0.13,0.66-0.779v-1.64
c0-0.829-0.311-1.239-0.99-1.239c-0.369,0-0.759,0.189-1.029,0.529v2.35c0,0.639,0.05,0.719,0.66,0.779v0.26h-2.149v-0.26
c0.64-0.061,0.7-0.13,0.7-0.79v-5.027c-0.55-0.06-1.069-0.069-1.949-0.069h-0.71v4.897c0,0.839,0.08,0.919,1,0.979v0.27h-2.818
v-0.27c0.89-0.061,0.969-0.141,0.969-0.979v-4.897h-0.629c-0.89,0-1.069,0.09-1.21,0.329c-0.12,0.19-0.21,0.42-0.329,0.88h-0.29
c0.05-0.59,0.1-1.259,0.12-1.809h0.189c0.14,0.22,0.27,0.25,0.55,0.25h4.157c0.83,0,0.95-0.061,0.95-0.261v-0.149
c0.199-0.03,0.51-0.13,0.789-0.229v3.368c0.37-0.38,0.88-0.71,1.399-0.72c0.84-0.021,1.409,0.51,1.409,1.698v1.75
c0,0.669,0.07,0.729,0.67,0.779v0.26H667.513z M673.755,812.564c-0.629,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.948-1-1.948-2.129
c0-0.68,0.249-1.3,0.659-1.749c0.41-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.5,0.749,1.5,1.519c0,0.2-0.04,0.28-0.23,0.32
c-0.16,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.799,1.919,1.499,1.919c0.409,0,0.779-0.16,1.149-0.5L673.755,812.564z
M671.007,810.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.011-0.52-0.329-1-0.889-1
C671.606,809.286,671.156,809.706,671.007,810.516z M680.725,812.095c-0.13,0.42-0.229,0.859-0.35,1.31h-3.728v-0.23
c0.55-0.549,1.119-1.119,1.609-1.698c0.619-0.74,1.249-1.56,1.249-2.419c0-0.84-0.439-1.329-1.17-1.329
c-0.679,0-1.109,0.539-1.369,0.93l-0.22-0.2l0.57-0.81c0.31-0.33,0.779-0.59,1.349-0.59c0.88,0,1.68,0.64,1.68,1.689
c0,0.869-0.4,1.459-1.319,2.438l-1.409,1.489h1.858c0.54,0,0.67-0.04,0.97-0.67L680.725,812.095z M682.396,809.767
c0.38-0.15,0.85-0.311,1.109-0.311c1.279,0,1.93,0.87,1.93,1.699c0,0.6-0.28,1.159-0.89,1.659c-0.54,0.439-1.21,0.699-1.729,0.71
c-0.46,0-0.89-0.21-1.029-0.351c-0.14-0.13-0.18-0.22-0.17-0.339c0.01-0.101,0.1-0.23,0.22-0.33c0.09-0.061,0.17-0.07,0.26,0.01
c0.22,0.18,0.63,0.5,1.239,0.5c0.84,0,1.26-0.729,1.26-1.479c0-0.88-0.53-1.509-1.629-1.509c-0.42,0-0.8,0.109-1.02,0.199
l0.38-3.048h2.858l0.06,0.08l-0.26,0.649h-2.329L682.396,809.767z M693.364,813.145c-0.22,0.04-0.969,0.17-1.549,0.38v-0.65
l-0.609,0.36c-0.4,0.229-0.67,0.29-0.78,0.29c-0.799,0-1.849-0.729-1.849-2.129c0-1.39,1.209-2.479,2.568-2.479
c0.141,0,0.44,0.029,0.67,0.119v-1.429c0-0.649-0.05-0.68-0.77-0.729v-0.25c0.52-0.06,1.189-0.22,1.56-0.34v5.967
c0,0.52,0.069,0.569,0.439,0.609l0.319,0.03V813.145z M691.815,809.807c-0.24-0.351-0.659-0.51-1.029-0.51
c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.729,1.77,1.379,1.77c0.351,0,0.72-0.16,0.96-0.34V809.807z M694.027,813.404v-0.26
c0.63-0.061,0.699-0.12,0.699-0.8v-2.059c0-0.62-0.029-0.67-0.629-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448
c0,0.68,0.069,0.739,0.71,0.8v0.26H694.027z M694.557,807.537c0-0.3,0.24-0.52,0.51-0.52c0.28,0,0.5,0.22,0.5,0.52
c0,0.271-0.22,0.51-0.51,0.51C694.797,808.047,694.557,807.808,694.557,807.537z M698.406,809.986c0.3-0.51,0.729-1.069,1.21-1.069
c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.271-0.199-0.43-0.199
c-0.261,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.689-0.12,0.689-0.779v-2.069
c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.93-0.2,1.409-0.4v1.09H698.406z M704.176,812.564
c-0.63,0.779-1.319,0.96-1.63,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.949-0.729,1.459-0.729
h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32c-0.159,0.029-1.419,0.13-2.618,0.17
c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L704.176,812.564z M701.427,810.516c0.56,0,1.119-0.01,1.699-0.03
c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1C702.026,809.286,701.577,809.706,701.427,810.516z M708.625,812.505
c-0.439,0.579-1.099,1.02-1.688,1.02c-1.26,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.009-1.949
c0.521-0.399,1.12-0.569,1.489-0.569h0.01c0.41,0,0.74,0.13,0.9,0.27c0.13,0.11,0.159,0.189,0.159,0.3c0,0.21-0.22,0.43-0.329,0.43
c-0.061,0-0.11-0.03-0.19-0.109c-0.3-0.28-0.649-0.41-1.01-0.41c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.509,1.85
c0.43,0,0.75-0.12,1.209-0.55L708.625,812.505z M711.296,813.395c-0.17,0.09-0.319,0.13-0.419,0.13c-0.63,0-0.979-0.4-0.979-1.189
v-2.898h-0.69l-0.039-0.11l0.279-0.29h0.45v-0.719l0.649-0.67l0.14,0.02v1.369h1.13c0.1,0.11,0.069,0.32-0.061,0.4h-1.069v2.559
c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17l0.09,0.26L711.296,813.395z M712.518,813.404v-0.26
c0.63-0.061,0.72-0.12,0.72-0.779v-4.728c0-0.68-0.061-0.7-0.689-0.76v-0.24c0.52-0.06,1.139-0.229,1.479-0.35v6.077
c0,0.659,0.08,0.719,0.72,0.779v0.26H712.518z M719.665,809.297c-0.53,0.079-0.609,0.159-0.88,0.719
c-0.26,0.53-0.569,1.359-1.259,3.009c-0.67,1.599-0.89,2.169-1.029,2.698c-0.051,0.2-0.181,0.25-0.32,0.25
c-0.279,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.25-0.37c0.319-0.189,0.51-0.439,0.749-0.879
c0.181-0.351,0.261-0.561,0.311-0.69c0.05-0.149,0.04-0.279-0.021-0.449c-0.399-1.14-0.85-2.349-1.139-3.059
c-0.221-0.55-0.311-0.68-0.86-0.749v-0.261h2.02l0.01,0.261c-0.47,0.069-0.52,0.17-0.38,0.549l0.899,2.499
c0.28-0.68,0.72-1.859,0.92-2.488c0.12-0.37,0.06-0.49-0.521-0.56v-0.261h1.81V809.297z M725.695,812.564
c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729
h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.419,0.13-2.619,0.17
c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L725.695,812.564z M722.947,810.516c0.56,0,1.119-0.01,1.699-0.03
c0.18,0,0.239-0.05,0.239-0.199c0.01-0.52-0.33-1-0.89-1C723.547,809.286,723.097,809.706,722.947,810.516z M726.168,813.404v-0.26
c0.629-0.061,0.719-0.12,0.719-0.779v-4.728c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.14-0.229,1.479-0.35v6.077
c0,0.659,0.08,0.719,0.72,0.779v0.26H726.168z M732.436,812.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.42,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.148-0.5L732.436,812.564z
M729.688,810.516c0.56,0,1.119-0.01,1.698-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C730.287,809.286,729.837,809.706,729.688,810.516z M736.886,812.505c-0.44,0.579-1.1,1.02-1.689,1.02
c-1.259,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.01-1.949c0.52-0.399,1.119-0.569,1.489-0.569h0.01
c0.409,0,0.739,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43c-0.06,0-0.11-0.03-0.189-0.109
c-0.301-0.28-0.65-0.41-1.01-0.41c-0.66,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.509,1.85c0.43,0,0.75-0.12,1.21-0.55
L736.886,812.505z M739.557,813.395c-0.17,0.09-0.32,0.13-0.42,0.13c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11
l0.28-0.29h0.449v-0.719l0.649-0.67l0.141,0.02v1.369h1.129c0.1,0.11,0.07,0.32-0.06,0.4h-1.069v2.559
c0,0.81,0.329,0.959,0.589,0.959c0.25,0,0.48-0.1,0.61-0.17l0.09,0.26L739.557,813.395z M744.275,812.564
c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729
h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32c-0.16,0.029-1.419,0.13-2.618,0.17
c0.01,1.359,0.799,1.919,1.499,1.919c0.409,0,0.779-0.16,1.149-0.5L744.275,812.564z M741.527,810.516
c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.01-0.52-0.329-1-0.89-1
C742.127,809.286,741.677,809.706,741.527,810.516z M749.825,813.145c-0.22,0.04-0.97,0.17-1.55,0.38v-0.65l-0.609,0.36
c-0.399,0.229-0.67,0.29-0.779,0.29c-0.8,0-1.85-0.729-1.85-2.129c0-1.39,1.21-2.479,2.569-2.479c0.14,0,0.439,0.029,0.669,0.119
v-1.429c0-0.649-0.05-0.68-0.77-0.729v-0.25c0.52-0.06,1.189-0.22,1.56-0.34v5.967c0,0.52,0.069,0.569,0.439,0.609l0.32,0.03
V813.145z M748.275,809.807c-0.239-0.351-0.659-0.51-1.029-0.51c-0.47,0-1.309,0.379-1.309,1.828c0,1.189,0.729,1.77,1.379,1.77
c0.35,0,0.72-0.16,0.959-0.34V809.807z"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 825.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="8.16" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="12.41" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="20.59" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="25.75" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="29.999" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="33.77" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="39.709" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="44.739" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="49.969" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="53.318" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="58.619" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="65.139" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">L</tspan><tspan x="70.729" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="75.748" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="81.158" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="86.408" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="91.429" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="99.168" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">A</tspan><tspan x="106.198" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="109.978" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="113.738" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="117.987" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="126.168" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="131.208" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ly </tspan><tspan x="140.598" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="145.968" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">av</tspan><tspan x="154.827" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="161.347" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="164.697" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="169.997" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="176.517" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="180.177" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="184.536" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="188.246" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="193.566" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="198.576" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="204.106" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="207.766" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="210.446" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="215.426" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="218.376" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="221.105" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="223.716" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="227.096" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y </tspan><tspan x="233.955" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="238.976" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan></text>
</g>
<path clip-path="url(#SVGID_13_)" fill="#231F20" d="M525.165,834.226c-0.199-0.6-0.539-0.989-1.029-0.989
c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859c0.759,0.311,1.269,0.67,1.269,1.359c0,0.91-0.85,1.38-1.648,1.38
c-0.51,0-0.97-0.19-1.14-0.34c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239
c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299
c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.2,0.819,0.22,1.06L525.165,834.226z M530.055,836.505c-0.439,0.579-1.1,1.02-1.689,1.02
c-1.259,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.01-1.949c0.52-0.399,1.119-0.569,1.489-0.569h0.01
c0.41,0,0.74,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43c-0.06,0-0.109-0.03-0.189-0.109
c-0.3-0.28-0.649-0.41-1.01-0.41c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.51,1.85c0.43,0,0.749-0.12,1.209-0.55
L530.055,836.505z M532.136,833.986c0.3-0.51,0.729-1.069,1.21-1.069c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.13,0.4-0.319,0.49
c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.271-0.199-0.43-0.199c-0.261,0-0.58,0.289-0.8,0.85v1.829
c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.619-0.77
v-0.229c0.489-0.08,0.93-0.2,1.409-0.4v1.09H532.136z M539.444,837.164c-0.22,0.03-0.5,0.09-0.77,0.16
c-0.26,0.07-0.51,0.15-0.7,0.2l-0.06-0.061v-0.709c-0.229,0.17-0.45,0.35-0.739,0.52c-0.29,0.17-0.5,0.25-0.77,0.25
c-0.67,0-1.24-0.41-1.24-1.489v-1.959c0-0.53-0.079-0.58-0.329-0.64l-0.28-0.061v-0.229c0.21-0.01,0.46-0.04,0.72-0.07
c0.27-0.04,0.55-0.079,0.71-0.109c-0.03,0.31-0.03,0.779-0.03,1.449v1.349c0,0.89,0.43,1.13,0.88,1.13
c0.359,0,0.739-0.15,1.079-0.479v-2.339c0-0.53-0.09-0.59-0.42-0.64l-0.359-0.061v-0.229c0.27-0.01,0.609-0.04,0.899-0.08
c0.279-0.03,0.52-0.069,0.67-0.1v3.338c0,0.5,0.079,0.56,0.469,0.59l0.271,0.01V837.164z M541.806,837.395
c-0.17,0.09-0.319,0.13-0.42,0.13c-0.629,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.28-0.29h0.449v-0.719l0.65-0.67
l0.14,0.02v1.369h1.129c0.101,0.11,0.07,0.32-0.06,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17
l0.09,0.26L541.806,837.395z M543.117,837.404v-0.26c0.629-0.061,0.699-0.12,0.699-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24
c0.51-0.08,0.989-0.21,1.42-0.39v3.448c0,0.68,0.069,0.739,0.709,0.8v0.26H543.117z M543.646,831.537c0-0.3,0.24-0.52,0.51-0.52
c0.28,0,0.5,0.22,0.5,0.52c0,0.271-0.22,0.51-0.51,0.51C543.887,832.047,543.646,831.808,543.646,831.537z M548.835,837.404v-0.26
c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.73-0.12,0.73-0.779v-2.06c0-0.64-0.061-0.68-0.601-0.779v-0.229
c0.48-0.091,0.95-0.21,1.39-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519
v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H548.835z M551.646,837.404v-0.26c0.63-0.061,0.7-0.12,0.7-0.8v-2.059
c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H551.646z
M552.177,831.537c0-0.3,0.239-0.52,0.51-0.52c0.279,0,0.499,0.22,0.499,0.52c0,0.271-0.22,0.51-0.51,0.51
C552.416,832.047,552.177,831.808,552.177,831.537z M557.035,834.226c-0.199-0.6-0.539-0.989-1.029-0.989
c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.84,0.859c0.759,0.311,1.269,0.67,1.269,1.359c0,0.91-0.85,1.38-1.648,1.38
c-0.51,0-0.97-0.19-1.14-0.34c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239
c0.37,0,0.71-0.27,0.71-0.699c0-0.44-0.29-0.68-0.79-0.91c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299
c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.2,0.819,0.22,1.06L557.035,834.226z M558.067,837.404v-0.26
c0.629-0.061,0.699-0.12,0.699-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.42-0.39v3.448
c0,0.68,0.069,0.739,0.709,0.8v0.26H558.067z M558.597,831.537c0-0.3,0.24-0.52,0.51-0.52c0.28,0,0.5,0.22,0.5,0.52
c0,0.271-0.22,0.51-0.51,0.51C558.837,832.047,558.597,831.808,558.597,831.537z M563.785,837.404v-0.26
c0.59-0.061,0.66-0.141,0.66-0.83v-1.669c0-0.689-0.24-1.14-0.91-1.14c-0.399,0-0.789,0.25-1.089,0.51v2.35
c0,0.679,0.06,0.719,0.649,0.779v0.26h-2.169v-0.26c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.06-0.68-0.6-0.779v-0.229
c0.48-0.091,0.95-0.21,1.39-0.4v0.79c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.539-0.3,0.829-0.3c0.8,0,1.289,0.56,1.289,1.519
v1.93c0,0.679,0.061,0.719,0.64,0.779v0.26H563.785z M570.784,833.116c-0.09,0.16-0.289,0.42-0.449,0.51l-0.569-0.029
c0.18,0.21,0.3,0.529,0.3,0.879c0,1.08-0.899,1.6-1.749,1.6c-0.16,0-0.351-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419
c0,0.19,0.18,0.38,0.629,0.38c0.37,0,0.72-0.01,1.06-0.01c0.62,0,1.43,0.2,1.43,1.18c0,1.009-1.16,1.979-2.489,1.979
c-1.119,0-1.729-0.649-1.738-1.219c0-0.221,0.09-0.41,0.239-0.561c0.2-0.199,0.59-0.51,0.83-0.699c-0.36-0.11-0.61-0.34-0.74-0.55
c-0.09-0.14-0.119-0.319-0.109-0.42c0.399-0.149,0.72-0.409,0.879-0.609c-0.449-0.19-0.879-0.66-0.879-1.339
c0-1.13,1.02-1.659,1.789-1.659h0.01c0.33,0,0.659,0.09,0.959,0.27c0.48-0.03,0.99-0.09,1.359-0.15L570.784,833.116z
M567.646,837.724c-0.26,0.221-0.46,0.5-0.46,0.78c0,0.55,0.58,0.959,1.319,0.959c0.949,0,1.439-0.489,1.439-1.109
c0-0.34-0.17-0.59-0.45-0.709c-0.25-0.101-0.539-0.131-0.979-0.131C568.056,837.514,567.826,837.574,567.646,837.724z
M567.477,834.416c0,0.779,0.39,1.339,0.939,1.339c0.439-0.01,0.829-0.399,0.829-1.189c0-0.779-0.369-1.339-0.949-1.339
C567.876,833.227,567.477,833.646,567.477,834.416z M575.355,837.395c-0.169,0.09-0.319,0.13-0.419,0.13
c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11l0.279-0.29h0.45v-0.719l0.649-0.67l0.14,0.02v1.369h1.13
c0.1,0.11,0.069,0.32-0.061,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17l0.09,0.26L575.355,837.395
z M579.436,837.404v-0.26c0.58-0.061,0.659-0.12,0.659-0.77v-1.659c0-0.819-0.31-1.229-0.979-1.229
c-0.379,0-0.759,0.189-1.039,0.51v2.379c0,0.64,0.05,0.709,0.649,0.77v0.26h-2.129l0.011-0.26c0.6-0.05,0.68-0.11,0.68-0.77v-4.768
c0-0.63-0.021-0.67-0.68-0.729v-0.24c0.479-0.069,1.079-0.229,1.469-0.35v3.358c0.359-0.36,0.89-0.729,1.43-0.729
c0.81,0,1.379,0.51,1.379,1.709v1.749c0,0.659,0.08,0.72,0.659,0.77v0.26H579.436z M585.655,836.564
c-0.63,0.779-1.319,0.96-1.63,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.949-0.729,1.459-0.729
h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32c-0.159,0.029-1.419,0.13-2.618,0.17
c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L585.655,836.564z M582.906,834.516c0.56,0,1.119-0.01,1.699-0.03
c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1C583.506,833.286,583.057,833.706,582.906,834.516z M594.204,837.404v-0.28
c0.819-0.069,0.85-0.13,0.85-1.189l-0.04-4.077h-0.04l-2.438,5.477h-0.2l-2.239-5.337h-0.02l-0.15,2.849
c-0.039,0.829-0.039,1.259-0.029,1.659c0.02,0.479,0.25,0.55,0.919,0.619v0.28h-2.328v-0.28c0.59-0.06,0.779-0.18,0.85-0.6
c0.06-0.35,0.12-0.779,0.189-1.829l0.14-2.078c0.091-1.3,0.04-1.34-0.869-1.43v-0.279h1.639l2.279,5.007l2.318-5.007h1.699v0.279
c-0.89,0.08-0.949,0.1-0.919,1.13l0.09,3.617c0.029,1.06,0.06,1.12,0.929,1.189v0.28H594.204z M600.655,837.524
c-0.149,0-0.359-0.09-0.47-0.2c-0.13-0.13-0.189-0.27-0.24-0.439c-0.399,0.27-0.879,0.64-1.179,0.64c-0.71,0-1.199-0.59-1.199-1.22
c0-0.489,0.26-0.8,0.81-0.989c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.449,0.19
c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399
c0.27-0.2,0.93-0.58,1.499-0.699c0.3,0,0.6,0.09,0.819,0.27c0.351,0.3,0.45,0.699,0.45,1.229v1.849c0,0.45,0.18,0.6,0.35,0.6
c0.12,0,0.26-0.05,0.36-0.109l0.1,0.26L600.655,837.524z M599.926,835.006c-0.21,0.109-0.689,0.319-0.899,0.419
c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.709,0.76c0.26,0,0.61-0.17,0.8-0.36V835.006z M606.234,833.297
c-0.529,0.079-0.609,0.159-0.879,0.719c-0.26,0.53-0.57,1.359-1.26,3.009c-0.67,1.599-0.89,2.169-1.029,2.698
c-0.05,0.2-0.18,0.25-0.32,0.25c-0.279,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.25-0.37c0.32-0.189,0.51-0.439,0.75-0.879
c0.18-0.351,0.26-0.561,0.31-0.69c0.05-0.149,0.04-0.279-0.02-0.449c-0.4-1.14-0.85-2.349-1.14-3.059
c-0.22-0.55-0.31-0.68-0.859-0.749v-0.261h2.019l0.01,0.261c-0.47,0.069-0.52,0.17-0.38,0.549l0.899,2.499
c0.28-0.68,0.72-1.859,0.92-2.488c0.12-0.37,0.06-0.49-0.52-0.56v-0.261h1.809V833.297z M610.734,835.146
c0,1.609-1.179,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.199-2.398
C609.815,832.917,610.734,833.916,610.734,835.146z M607.307,834.995c0,1.26,0.539,2.199,1.369,2.199
c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.358-2.119C607.846,833.246,607.307,833.866,607.307,834.995z
M612.856,833.986c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49
c-0.12,0.05-0.2,0.04-0.26-0.021c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.289-0.8,0.85v1.829
c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.298v-0.26c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77
v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H612.856z M616.546,831.317c0,0.71-0.659,1.14-1.279,1.3l-0.1-0.26
c0.479-0.2,0.77-0.431,0.77-0.84c0-0.35-0.29-0.56-0.62-0.62c-0.069-0.01-0.13-0.08-0.13-0.199c0-0.271,0.25-0.391,0.431-0.391
C616.036,830.308,616.546,830.688,616.546,831.317z M619.346,834.226c-0.2-0.6-0.54-0.989-1.029-0.989
c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.839,0.859c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.649,1.38
c-0.51,0-0.969-0.19-1.139-0.34c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239
c0.369,0,0.709-0.27,0.709-0.699c0-0.44-0.29-0.68-0.789-0.91c-0.6-0.27-1.25-0.609-1.25-1.369c0-0.699,0.6-1.299,1.52-1.299
c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.199,0.819,0.22,1.06L619.346,834.226z M629.373,834.076c0,2.158-1.509,3.478-3.338,3.478
c-1.809,0-3.248-1.398-3.248-3.328c0-1.799,1.26-3.468,3.368-3.468C627.845,830.758,629.373,832.067,629.373,834.076z
M623.807,833.946c0,1.879,1.029,3.248,2.438,3.248c1.119,0,2.109-0.93,2.109-2.849c0-2.108-1.1-3.229-2.419-3.229
C624.826,831.117,623.807,832.067,623.807,833.946z M635.664,837.404v-0.26c0.55-0.061,0.63-0.11,0.63-0.74v-2.448
c0-0.45-0.021-0.52-0.51-0.52h-1.369v2.968c0,0.62,0.06,0.68,0.669,0.74v0.26h-2.099v-0.26c0.58-0.061,0.64-0.11,0.64-0.74v-2.968
h-1.879v2.929c0,0.659,0.061,0.719,0.67,0.789v0.25h-2.119v-0.26c0.59-0.061,0.66-0.101,0.66-0.779v-2.929h-0.7l-0.029-0.11
l0.26-0.29h0.47v-0.199c0-0.22,0.04-0.479,0.109-0.72c0.09-0.28,0.311-0.729,0.85-1.14c0.36-0.27,0.75-0.449,1.239-0.5
c0.62,0.021,1,0.271,1.17,0.53c0.47-0.45,1.039-0.7,1.479-0.729c0.62,0.01,0.95,0.319,1.08,0.479c0.09,0.13,0.1,0.25,0.05,0.35
c-0.04,0.09-0.13,0.2-0.22,0.26c-0.12,0.07-0.22,0.08-0.33-0.029c-0.21-0.24-0.489-0.59-0.989-0.59c-0.311,0-0.5,0.13-0.67,0.359
c-0.2,0.271-0.31,0.81-0.31,1.529v0.399h0.8c0.789,0,1.339-0.02,1.868-0.13v3.498c0,0.62,0.051,0.68,0.69,0.74v0.26H635.664z
M633.625,832.776c0-0.26,0.04-0.52,0.09-0.72c0.04-0.14,0.101-0.329,0.21-0.52c-0.199-0.31-0.579-0.64-1.109-0.64
c-0.409,0-0.63,0.21-0.77,0.44c-0.159,0.239-0.3,0.719-0.3,1.429v0.27h1.879V832.776z M641.995,836.505
c-0.439,0.579-1.1,1.02-1.689,1.02c-1.259,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.01-1.949
c0.52-0.399,1.119-0.569,1.489-0.569h0.01c0.41,0,0.739,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43
c-0.06,0-0.109-0.03-0.189-0.109c-0.3-0.28-0.649-0.41-1.01-0.41c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.51,1.85
c0.43,0,0.749-0.12,1.209-0.55L641.995,836.505z M646.195,836.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.95-0.729,1.46-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.42,0.13-2.619,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5L646.195,836.564z
M643.446,834.516c0.561,0,1.12-0.01,1.699-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C644.047,833.286,643.597,833.706,643.446,834.516z M647.157,836.944c0-0.319,0.239-0.569,0.56-0.569s0.56,0.25,0.56,0.569
c0,0.35-0.239,0.58-0.569,0.58C647.396,837.524,647.157,837.294,647.157,836.944z M658.645,835.835
c-0.06,0.31-0.27,1.26-0.359,1.569h-4.528v-0.28c0.84-0.06,0.92-0.13,0.92-0.979v-3.997c0-0.85-0.06-0.899-0.88-0.96v-0.279h2.609
v0.279c-0.79,0.061-0.88,0.1-0.88,0.96v3.947c0,0.54,0.05,0.74,0.229,0.84c0.2,0.109,0.54,0.13,0.96,0.13
c0.55,0,0.89-0.05,1.119-0.31c0.18-0.2,0.36-0.521,0.51-0.979L658.645,835.835z M663.715,835.146c0,1.609-1.18,2.379-2.169,2.379
c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398C662.795,832.917,663.715,833.916,663.715,835.146z
M660.287,834.995c0,1.26,0.539,2.199,1.369,2.199c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119
C660.826,833.246,660.287,833.866,660.287,834.995z M668.235,836.505c-0.44,0.579-1.1,1.02-1.689,1.02
c-1.259,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.01-1.949c0.52-0.399,1.119-0.569,1.489-0.569h0.01
c0.409,0,0.739,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43c-0.06,0-0.11-0.03-0.189-0.109
c-0.301-0.28-0.65-0.41-1.01-0.41c-0.66,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.509,1.85c0.43,0,0.75-0.12,1.21-0.55
L668.235,836.505z M672.035,837.524c-0.149,0-0.359-0.09-0.47-0.2c-0.13-0.13-0.189-0.27-0.239-0.439
c-0.4,0.27-0.88,0.64-1.18,0.64c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989c0.6-0.2,1.329-0.47,1.549-0.649v-0.17
c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.449,0.19c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.15,0.229-0.29,0.229
c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399c0.271-0.2,0.93-0.58,1.5-0.699c0.3,0,0.6,0.09,0.819,0.27
c0.35,0.3,0.449,0.699,0.449,1.229v1.849c0,0.45,0.181,0.6,0.351,0.6c0.119,0,0.26-0.05,0.359-0.109l0.1,0.26L672.035,837.524z
M671.306,835.006c-0.21,0.109-0.689,0.319-0.899,0.419c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.709,0.76
c0.261,0,0.61-0.17,0.8-0.36V835.006z M673.428,837.404v-0.26c0.629-0.061,0.719-0.12,0.719-0.779v-4.728
c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.14-0.229,1.479-0.35v6.077c0,0.659,0.08,0.719,0.72,0.779v0.26H673.428z
M680.406,833.017c0.16-0.07,0.29-0.1,0.41-0.1c1.069,0,1.969,0.919,1.969,2.108c0,1.459-1.18,2.499-2.509,2.499
c-0.41,0-0.92-0.101-1.47-0.36v-5.547c0-0.63-0.02-0.689-0.659-0.749v-0.23c0.47-0.06,1.079-0.21,1.449-0.35v3.078L680.406,833.017
z M679.597,836.245c0,0.149,0.021,0.25,0.06,0.35c0.07,0.189,0.36,0.55,0.88,0.55c0.84,0,1.359-0.71,1.359-1.869
c0-1.13-0.689-1.799-1.52-1.799c-0.279,0-0.6,0.09-0.779,0.189V836.245z M687.965,835.146c0,1.609-1.18,2.379-2.169,2.379
c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398C687.045,832.917,687.965,833.916,687.965,835.146z
M684.537,834.995c0,1.26,0.539,2.199,1.369,2.199c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119
C685.076,833.246,684.537,833.866,684.537,834.995z M690.086,833.986c0.301-0.51,0.73-1.069,1.21-1.069
c0.34,0,0.579,0.27,0.579,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.271-0.199-0.43-0.199
c-0.26,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.69-0.12,0.69-0.779v-2.069
c0-0.659-0.041-0.699-0.62-0.77v-0.229c0.489-0.08,0.93-0.2,1.409-0.4v1.09H690.086z M696.655,835.146
c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.189-1.1-2.189-2.209c0-1.649,1.279-2.398,2.199-2.398
C695.735,832.917,696.655,833.916,696.655,835.146z M693.227,834.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829
c0-1.159-0.47-2.119-1.359-2.119C693.767,833.246,693.227,833.866,693.227,834.995z M702.114,837.164
c-0.22,0.03-0.499,0.09-0.77,0.16c-0.26,0.07-0.51,0.15-0.699,0.2l-0.061-0.061v-0.709c-0.229,0.17-0.449,0.35-0.739,0.52
s-0.5,0.25-0.77,0.25c-0.67,0-1.239-0.41-1.239-1.489v-1.959c0-0.53-0.08-0.58-0.33-0.64l-0.279-0.061v-0.229
c0.21-0.01,0.459-0.04,0.72-0.07c0.27-0.04,0.549-0.079,0.709-0.109c-0.029,0.31-0.029,0.779-0.029,1.449v1.349
c0,0.89,0.43,1.13,0.879,1.13c0.36,0,0.739-0.15,1.079-0.479v-2.339c0-0.53-0.09-0.59-0.419-0.64l-0.36-0.061v-0.229
c0.271-0.01,0.609-0.04,0.899-0.08c0.28-0.03,0.52-0.069,0.67-0.1v3.338c0,0.5,0.08,0.56,0.47,0.59l0.27,0.01V837.164z
M707.045,833.116c-0.09,0.16-0.29,0.42-0.45,0.51l-0.569-0.029c0.18,0.21,0.3,0.529,0.3,0.879c0,1.08-0.899,1.6-1.749,1.6
c-0.16,0-0.35-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419c0,0.19,0.18,0.38,0.63,0.38c0.369,0,0.72-0.01,1.06-0.01
c0.619,0,1.429,0.2,1.429,1.18c0,1.009-1.159,1.979-2.488,1.979c-1.119,0-1.729-0.649-1.739-1.219c0-0.221,0.09-0.41,0.24-0.561
c0.199-0.199,0.589-0.51,0.829-0.699c-0.359-0.11-0.609-0.34-0.739-0.55c-0.09-0.14-0.12-0.319-0.11-0.42
c0.4-0.149,0.72-0.409,0.88-0.609c-0.45-0.19-0.88-0.66-0.88-1.339c0-1.13,1.02-1.659,1.789-1.659h0.01c0.33,0,0.66,0.09,0.96,0.27
c0.479-0.03,0.989-0.09,1.359-0.15L707.045,833.116z M703.906,837.724c-0.26,0.221-0.459,0.5-0.459,0.78
c0,0.55,0.579,0.959,1.318,0.959c0.95,0,1.439-0.489,1.439-1.109c0-0.34-0.17-0.59-0.449-0.709c-0.25-0.101-0.54-0.131-0.979-0.131
C704.316,837.514,704.087,837.574,703.906,837.724z M703.736,834.416c0,0.779,0.391,1.339,0.939,1.339
c0.44-0.01,0.83-0.399,0.83-1.189c0-0.779-0.37-1.339-0.949-1.339C704.137,833.227,703.736,833.646,703.736,834.416z
M710.296,837.404v-0.26c0.579-0.061,0.659-0.12,0.659-0.77v-1.659c0-0.819-0.31-1.229-0.979-1.229c-0.38,0-0.759,0.189-1.039,0.51
v2.379c0,0.64,0.05,0.709,0.649,0.77v0.26h-2.129l0.011-0.26c0.6-0.05,0.679-0.11,0.679-0.77v-4.768c0-0.63-0.02-0.67-0.679-0.729
v-0.24c0.479-0.069,1.079-0.229,1.469-0.35v3.358c0.36-0.36,0.89-0.729,1.43-0.729c0.81,0,1.379,0.51,1.379,1.709v1.749
c0,0.659,0.08,0.72,0.659,0.77v0.26H710.296z M715.636,834.226c-0.2-0.6-0.54-0.989-1.029-0.989c-0.39,0-0.649,0.29-0.649,0.689
c0,0.44,0.399,0.67,0.839,0.859c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.649,1.38c-0.51,0-0.969-0.19-1.139-0.34
c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239c0.369,0,0.709-0.27,0.709-0.699
c0-0.44-0.29-0.68-0.789-0.91c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299c0.41,0,0.68,0.09,0.88,0.18
c0.09,0.22,0.199,0.819,0.22,1.06L715.636,834.226z M718.377,837.185c0,0.779-0.69,1.199-1.31,1.389l-0.11-0.29
c0.49-0.199,0.77-0.47,0.77-0.849c0-0.36-0.279-0.58-0.619-0.67c-0.051,0-0.13-0.08-0.13-0.24c0-0.25,0.239-0.42,0.489-0.42
C717.827,836.104,718.377,836.495,718.377,837.185z M726.895,837.404v-0.26c0.59-0.061,0.699-0.101,0.699-0.81v-1.669
c0-0.71-0.25-1.16-0.879-1.16c-0.36,0-0.74,0.21-1.12,0.521c0.021,0.119,0.03,0.239,0.03,0.419v1.949c0,0.63,0.09,0.689,0.64,0.75
v0.26h-2.139v-0.26c0.619-0.061,0.709-0.11,0.709-0.77v-1.72c0-0.729-0.26-1.149-0.879-1.149c-0.39,0-0.79,0.271-1.09,0.521v2.349
c0,0.649,0.09,0.709,0.58,0.77v0.26h-2.109v-0.26c0.66-0.061,0.75-0.12,0.75-0.77v-2.069c0-0.64-0.03-0.689-0.609-0.779v-0.229
c0.439-0.08,0.939-0.21,1.389-0.41v0.81c0.21-0.14,0.42-0.32,0.729-0.5c0.26-0.16,0.5-0.279,0.81-0.279
c0.48,0,0.91,0.31,1.12,0.829c0.289-0.229,0.579-0.41,0.829-0.569c0.21-0.141,0.47-0.26,0.76-0.26c0.77,0,1.27,0.55,1.27,1.528
v1.93c0,0.669,0.069,0.709,0.649,0.77v0.26H726.895z M732.775,837.524c-0.149,0-0.359-0.09-0.47-0.2
c-0.13-0.13-0.189-0.27-0.239-0.439c-0.4,0.27-0.88,0.64-1.18,0.64c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.81-0.989
c0.6-0.2,1.329-0.47,1.549-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.189,0-0.34,0.07-0.449,0.19
c-0.12,0.14-0.21,0.359-0.29,0.659c-0.05,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399
c0.27-0.2,0.93-0.58,1.499-0.699c0.3,0,0.6,0.09,0.82,0.27c0.35,0.3,0.449,0.699,0.449,1.229v1.849c0,0.45,0.18,0.6,0.35,0.6
c0.12,0,0.26-0.05,0.36-0.109l0.1,0.26L732.775,837.524z M732.046,835.006c-0.21,0.109-0.689,0.319-0.899,0.419
c-0.39,0.181-0.609,0.37-0.609,0.74c0,0.51,0.399,0.76,0.709,0.76c0.26,0,0.61-0.17,0.8-0.36V835.006z M738.875,837.145
c-0.221,0.04-0.97,0.17-1.55,0.38v-0.65l-0.609,0.36c-0.399,0.229-0.67,0.29-0.779,0.29c-0.8,0-1.85-0.729-1.85-2.129
c0-1.39,1.21-2.479,2.569-2.479c0.14,0,0.439,0.029,0.669,0.119v-1.429c0-0.649-0.05-0.68-0.77-0.729v-0.25
c0.52-0.06,1.189-0.22,1.56-0.34v5.967c0,0.52,0.069,0.569,0.439,0.609l0.32,0.03V837.145z M737.325,833.807
c-0.239-0.351-0.659-0.51-1.029-0.51c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.73,1.77,1.38,1.77c0.35,0,0.72-0.16,0.959-0.34
V833.807z M742.955,836.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749
c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.799,1.919,1.499,1.919c0.409,0,0.779-0.16,1.149-0.5L742.955,836.564z
M740.207,834.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.01-0.52-0.329-1-0.89-1
C740.807,833.286,740.356,833.706,740.207,834.516z M750.705,837.164c-0.221,0.03-0.5,0.09-0.77,0.16
c-0.261,0.07-0.51,0.15-0.7,0.2l-0.06-0.061v-0.709c-0.23,0.17-0.45,0.35-0.74,0.52c-0.289,0.17-0.499,0.25-0.77,0.25
c-0.669,0-1.239-0.41-1.239-1.489v-1.959c0-0.53-0.08-0.58-0.329-0.64l-0.28-0.061v-0.229c0.21-0.01,0.46-0.04,0.72-0.07
c0.27-0.04,0.55-0.079,0.709-0.109c-0.029,0.31-0.029,0.779-0.029,1.449v1.349c0,0.89,0.43,1.13,0.879,1.13
c0.36,0,0.74-0.15,1.08-0.479v-2.339c0-0.53-0.09-0.59-0.42-0.64l-0.36-0.061v-0.229c0.271-0.01,0.61-0.04,0.899-0.08
c0.28-0.03,0.521-0.069,0.67-0.1v3.338c0,0.5,0.08,0.56,0.47,0.59l0.271,0.01V837.164z M753.376,833.076
c0.18-0.109,0.37-0.159,0.49-0.159c1.109,0,1.769,0.909,1.769,1.889c0,1.509-1.189,2.479-2.488,2.719
c-0.3-0.011-0.56-0.11-0.689-0.181v1.31c0,0.76,0.069,0.819,0.839,0.88v0.27h-2.358v-0.27c0.64-0.061,0.729-0.12,0.729-0.779
v-4.518c0-0.65-0.04-0.67-0.659-0.75v-0.24c0.42-0.069,0.979-0.239,1.449-0.43v0.79L753.376,833.076z M752.457,836.645
c0.22,0.229,0.589,0.39,0.939,0.39c0.839,0,1.398-0.72,1.398-1.839c0-1.079-0.619-1.679-1.339-1.679
c-0.319,0-0.729,0.22-0.999,0.43V836.645z"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 849.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="3.68" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="8.689" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="14.12" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="19.029" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="24.63" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ly </tspan><tspan x="34.02" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">2</tspan><tspan x="38.919" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0</tspan><tspan x="43.989" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0</tspan><tspan x="48.819" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">,</tspan><tspan x="51.18" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">00</tspan><tspan x="61.319" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0</tspan><tspan x="66.369" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">-</tspan><tspan x="69.609" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">3</tspan><tspan x="74.499" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0</tspan><tspan x="79.559" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0</tspan><tspan x="84.379" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">,</tspan><tspan x="86.749" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">00</tspan><tspan x="96.869" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0 </tspan><tspan x="103.938" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="107.599" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="111.958" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="115.618" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="118.238" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="123.538" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="127.788" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="133.108" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ts</tspan><tspan x="140.128" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="144.678" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="149.317" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="152.978" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="159.497" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="163.157" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="167.517" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="171.227" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="176.547" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="181.566" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="187.106" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="190.767" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="193.446" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="198.486" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="200.967" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="207.486" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f</tspan><tspan x="210.366" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="215.396" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r </tspan><tspan x="221.376" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="229.535" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="234.676" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="238.415" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 861.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="5.04" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="8.399" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="13.689" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">er </tspan><tspan x="23.92" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="27.669" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="31.919" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="36.029" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="40.969" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="43.599" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="47.919" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="52.278" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="58.219" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="61.108" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="66.488" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="70.788" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="73.188" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="78.498" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="83.998" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="86.888" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ng </tspan><tspan x="99.308" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="103.067" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="107.348" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="112.607" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="117.787" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="122.838" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="125.468" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="129.287" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="133.837" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">so</tspan><tspan x="142.767" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="147.097" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="149.827" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="154.547" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l </tspan><tspan x="159.347" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="163.097" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="167.347" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="171.456" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="176.406" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="179.036" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="183.355" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="187.716" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="193.655" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="198.825" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="201.415" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="206.056" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="211.705" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="217.335" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="220.225" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="225.695" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="230.545" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 873.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="4.25" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="9.63" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">v</tspan><tspan x="14.569" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="17.439" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="21.119" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="26.14" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="31.8" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">m</tspan><tspan x="39.959" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="44.209" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="49.539" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="54.859" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="59.509" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="64.929" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="72.479" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">w</tspan><tspan x="79.398" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="83.938" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="87.679" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="90.749" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="97.269" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="101.559" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="106.618" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="109.428" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="111.908" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="116.238" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="120.678" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="123.968" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="126.598" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="131.607" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="137.147" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">. </tspan><tspan x="141.697" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">2</tspan><tspan x="146.577" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">8 </tspan><tspan x="153.647" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="158.667" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="163.896" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="167.247" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="172.547" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="179.066" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">3</tspan><tspan x="183.606" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">3 </tspan><tspan x="190.677" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="195.816" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="200.847" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="204.526" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="209.546" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="214.976" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="219.886" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 885.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="2.479" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="6.83" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ad</tspan><tspan x="16.54" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="20.79" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="24.56" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="30.499" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="35.119" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="38.779" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="45.299" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="48.188" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="53.608" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="59.119" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="61.988" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="65.648" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="69.979" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="74.418" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="77.788" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ly </tspan><tspan x="87.178" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="91.448" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="93.928" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="98.258" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="102.697" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="105.758" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="110.087" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="117.638" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="120.987" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="126.487" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="130.167" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="135.177" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="140.606" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="145.517" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h </tspan><tspan x="153.127" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="156.477" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="161.776" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="168.296" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="173.446" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="178.466" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="182.146" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="187.156" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="192.586" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="197.496" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h </tspan><tspan x="205.105" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="209.396" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="214.405" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="219.945" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="225.325" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="229.655" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="232.605" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="235.235" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="239.055" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan></text>
</g>
<path clip-path="url(#SVGID_13_)" fill="#231F20" d="M529.184,893.297c-0.5,0.069-0.59,0.189-0.79,0.739
c-0.3,0.8-0.75,2.129-1.199,3.478h-0.29c-0.399-1.079-0.81-2.059-1.219-3.107c-0.38,1.009-0.79,1.998-1.189,3.107h-0.28
c-0.37-1.188-0.739-2.368-1.159-3.567c-0.18-0.52-0.26-0.59-0.74-0.649v-0.261h2.069v0.261c-0.6,0.09-0.649,0.149-0.51,0.609
c0.24,0.76,0.489,1.549,0.739,2.318h0.021c0.37-0.959,0.739-1.979,1.159-3.138h0.26c0.37,1.039,0.779,2.099,1.199,3.178h0.021
c0.22-0.689,0.499-1.569,0.689-2.309c0.13-0.52,0.06-0.569-0.58-0.659v-0.261h1.8V893.297z M529.696,897.404v-0.26
c0.63-0.061,0.7-0.12,0.7-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448
c0,0.68,0.07,0.739,0.71,0.8v0.26H529.696z M530.227,891.537c0-0.3,0.24-0.52,0.51-0.52c0.279,0,0.5,0.22,0.5,0.52
c0,0.271-0.221,0.51-0.51,0.51C530.467,892.047,530.227,891.808,530.227,891.537z M534.275,897.395
c-0.17,0.09-0.319,0.13-0.42,0.13c-0.629,0-0.979-0.4-0.979-1.189v-2.898h-0.69l-0.04-0.11l0.28-0.29h0.45v-0.719l0.649-0.67
l0.14,0.02v1.369h1.129c0.101,0.11,0.07,0.32-0.06,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959c0.25,0,0.479-0.1,0.609-0.17
l0.09,0.26L534.275,897.395z M538.355,897.404v-0.26c0.579-0.061,0.659-0.12,0.659-0.77v-1.659c0-0.819-0.31-1.229-0.979-1.229
c-0.38,0-0.76,0.189-1.039,0.51v2.379c0,0.64,0.05,0.709,0.649,0.77v0.26h-2.129l0.01-0.26c0.601-0.05,0.68-0.11,0.68-0.77v-4.768
c0-0.63-0.02-0.67-0.68-0.729v-0.24c0.48-0.069,1.08-0.229,1.47-0.35v3.358c0.359-0.36,0.89-0.729,1.429-0.729
c0.81,0,1.38,0.51,1.38,1.709v1.749c0,0.659,0.08,0.72,0.659,0.77v0.26H538.355z M543.956,893.036v-0.209
c0-0.32,0.04-0.61,0.11-0.83s0.229-0.72,0.77-1.18c0.359-0.3,0.71-0.479,1.1-0.529c0.34,0.02,0.629,0.15,0.789,0.34
c0.09,0.11,0.101,0.229,0.05,0.35c-0.029,0.08-0.09,0.16-0.189,0.24c-0.09,0.069-0.18,0.069-0.27-0.03
c-0.19-0.189-0.48-0.37-0.81-0.37c-0.26,0-0.42,0.12-0.53,0.29c-0.13,0.2-0.239,0.68-0.229,1.529v0.399h1.18
c0.06,0.091,0.01,0.33-0.101,0.4h-1.079v2.868c0,0.739,0.069,0.77,0.859,0.85v0.25h-2.358v-0.26c0.64-0.061,0.709-0.11,0.709-0.77
v-2.938h-0.699l-0.04-0.11l0.27-0.29H543.956z M550.544,895.146c0,1.609-1.179,2.379-2.168,2.379c-1.37,0-2.189-1.1-2.189-2.209
c0-1.649,1.279-2.398,2.199-2.398C549.625,892.917,550.544,893.916,550.544,895.146z M547.116,894.995
c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829c0-1.159-0.47-2.119-1.359-2.119
C547.656,893.246,547.116,893.866,547.116,894.995z M556.004,897.164c-0.22,0.03-0.5,0.09-0.77,0.16
c-0.26,0.07-0.51,0.15-0.699,0.2l-0.061-0.061v-0.709c-0.229,0.17-0.449,0.35-0.739,0.52s-0.5,0.25-0.77,0.25
c-0.67,0-1.239-0.41-1.239-1.489v-1.959c0-0.53-0.08-0.58-0.33-0.64l-0.279-0.061v-0.229c0.209-0.01,0.459-0.04,0.719-0.07
c0.271-0.04,0.55-0.079,0.71-0.109c-0.03,0.31-0.03,0.779-0.03,1.449v1.349c0,0.89,0.43,1.13,0.88,1.13
c0.359,0,0.739-0.15,1.079-0.479v-2.339c0-0.53-0.09-0.59-0.42-0.64l-0.359-0.061v-0.229c0.27-0.01,0.609-0.04,0.899-0.08
c0.28-0.03,0.52-0.069,0.67-0.1v3.338c0,0.5,0.08,0.56,0.47,0.59l0.27,0.01V897.164z M558.176,893.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.319,0.49c-0.12,0.05-0.2,0.04-0.261-0.021
c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.579,0.289-0.799,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.62-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.619-0.77v-0.229c0.489-0.08,0.929-0.2,1.409-0.4v1.09H558.176z
M564.656,893.017c0.159-0.07,0.289-0.1,0.409-0.1c1.069,0,1.969,0.919,1.969,2.108c0,1.459-1.179,2.499-2.509,2.499
c-0.409,0-0.919-0.101-1.469-0.36v-5.547c0-0.63-0.02-0.689-0.66-0.749v-0.23c0.471-0.06,1.08-0.21,1.449-0.35v3.078
L564.656,893.017z M563.846,896.245c0,0.149,0.021,0.25,0.061,0.35c0.07,0.189,0.359,0.55,0.879,0.55
c0.84,0,1.359-0.71,1.359-1.869c0-1.13-0.689-1.799-1.519-1.799c-0.28,0-0.6,0.09-0.78,0.189V896.245z M572.215,895.146
c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.189-1.1-2.189-2.209c0-1.649,1.279-2.398,2.199-2.398
C571.295,892.917,572.215,893.916,572.215,895.146z M568.786,894.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829
c0-1.159-0.47-2.119-1.359-2.119C569.326,893.246,568.786,893.866,568.786,894.995z M574.336,893.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49c-0.119,0.05-0.199,0.04-0.26-0.021
c-0.149-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.579,0.289-0.799,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.619-0.061,0.689-0.12,0.689-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.41-0.4v1.09H574.336z
M580.904,895.146c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398
C579.984,892.917,580.904,893.916,580.904,895.146z M577.477,894.995c0,1.26,0.539,2.199,1.369,2.199
c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119C578.016,893.246,577.477,893.866,577.477,894.995z
M586.364,897.164c-0.22,0.03-0.5,0.09-0.77,0.16c-0.26,0.07-0.51,0.15-0.7,0.2l-0.06-0.061v-0.709
c-0.229,0.17-0.45,0.35-0.739,0.52c-0.29,0.17-0.5,0.25-0.77,0.25c-0.67,0-1.24-0.41-1.24-1.489v-1.959
c0-0.53-0.079-0.58-0.329-0.64l-0.28-0.061v-0.229c0.21-0.01,0.46-0.04,0.72-0.07c0.27-0.04,0.55-0.079,0.71-0.109
c-0.03,0.31-0.03,0.779-0.03,1.449v1.349c0,0.89,0.43,1.13,0.88,1.13c0.359,0,0.739-0.15,1.079-0.479v-2.339
c0-0.53-0.09-0.59-0.42-0.64l-0.359-0.061v-0.229c0.27-0.01,0.609-0.04,0.899-0.08c0.279-0.03,0.52-0.069,0.669-0.1v3.338
c0,0.5,0.08,0.56,0.47,0.59l0.271,0.01V897.164z M591.294,893.116c-0.09,0.16-0.289,0.42-0.449,0.51l-0.569-0.029
c0.18,0.21,0.3,0.529,0.3,0.879c0,1.08-0.899,1.6-1.749,1.6c-0.16,0-0.351-0.021-0.51-0.05c-0.13,0.09-0.3,0.279-0.3,0.419
c0,0.19,0.18,0.38,0.629,0.38c0.37,0,0.72-0.01,1.06-0.01c0.62,0,1.43,0.2,1.43,1.18c0,1.009-1.16,1.979-2.489,1.979
c-1.119,0-1.729-0.649-1.738-1.219c0-0.221,0.09-0.41,0.239-0.561c0.2-0.199,0.59-0.51,0.83-0.699c-0.36-0.11-0.61-0.34-0.74-0.55
c-0.09-0.14-0.119-0.319-0.109-0.42c0.399-0.149,0.72-0.409,0.879-0.609c-0.449-0.19-0.879-0.66-0.879-1.339
c0-1.13,1.02-1.659,1.789-1.659h0.01c0.33,0,0.659,0.09,0.959,0.27c0.48-0.03,0.99-0.09,1.359-0.15L591.294,893.116z
M588.156,897.724c-0.26,0.221-0.46,0.5-0.46,0.78c0,0.55,0.58,0.959,1.319,0.959c0.949,0,1.439-0.489,1.439-1.109
c0-0.34-0.17-0.59-0.45-0.709c-0.25-0.101-0.539-0.131-0.979-0.131C588.565,897.514,588.336,897.574,588.156,897.724z
M587.986,894.416c0,0.779,0.39,1.339,0.939,1.339c0.439-0.01,0.829-0.399,0.829-1.189c0-0.779-0.369-1.339-0.949-1.339
C588.386,893.227,587.986,893.646,587.986,894.416z M594.545,897.404v-0.26c0.58-0.061,0.66-0.12,0.66-0.77v-1.659
c0-0.819-0.31-1.229-0.979-1.229c-0.38,0-0.76,0.189-1.04,0.51v2.379c0,0.64,0.051,0.709,0.65,0.77v0.26h-2.129l0.01-0.26
c0.6-0.05,0.68-0.11,0.68-0.77v-4.768c0-0.63-0.02-0.67-0.68-0.729v-0.24c0.479-0.069,1.079-0.229,1.469-0.35v3.358
c0.36-0.36,0.89-0.729,1.43-0.729c0.81,0,1.379,0.51,1.379,1.709v1.749c0,0.659,0.08,0.72,0.66,0.77v0.26H594.545z
M599.646,895.425h-2.289l0.14-0.549h2.289L599.646,895.425z M600.417,897.404v-0.26c0.63-0.061,0.72-0.12,0.72-0.779v-4.728
c0-0.68-0.061-0.7-0.689-0.76v-0.24c0.52-0.06,1.139-0.229,1.479-0.35v6.077c0,0.659,0.08,0.719,0.72,0.779v0.26H600.417z
M606.685,896.564c-0.629,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.66-1.749
c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.039,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.799,1.919,1.499,1.919c0.409,0,0.779-0.16,1.149-0.5L606.685,896.564z
M603.937,894.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.011-0.52-0.329-1-0.889-1
C604.536,893.286,604.086,893.706,603.937,894.516z M611.895,893.297c-0.529,0.069-0.609,0.159-0.88,0.749
c-0.34,0.75-0.859,1.979-1.419,3.468h-0.28c-0.439-1.199-0.899-2.328-1.379-3.498c-0.229-0.569-0.3-0.64-0.84-0.719v-0.261h2.049
v0.261c-0.539,0.06-0.56,0.14-0.399,0.569c0.25,0.699,0.66,1.759,0.949,2.469c0.351-0.83,0.67-1.729,0.89-2.379
c0.16-0.479,0.101-0.59-0.47-0.659v-0.261h1.779V893.297z M615.615,896.564c-0.63,0.779-1.319,0.96-1.63,0.96
c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.95-0.729,1.459-0.729h0.011
c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919
c0.41,0,0.779-0.16,1.149-0.5L615.615,896.564z M612.866,894.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199
c0.01-0.52-0.33-1-0.89-1C613.466,893.286,613.017,893.706,612.866,894.516z M616.087,897.404v-0.26
c0.63-0.061,0.72-0.12,0.72-0.779v-4.728c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.139-0.229,1.479-0.35v6.077
c0,0.659,0.08,0.719,0.72,0.779v0.26H616.087z M626.564,897.404v-0.26c0.589-0.061,0.699-0.101,0.699-0.81v-1.669
c0-0.71-0.25-1.16-0.88-1.16c-0.359,0-0.739,0.21-1.119,0.521c0.021,0.119,0.03,0.239,0.03,0.419v1.949
c0,0.63,0.09,0.689,0.64,0.75v0.26h-2.139v-0.26c0.619-0.061,0.709-0.11,0.709-0.77v-1.72c0-0.729-0.26-1.149-0.879-1.149
c-0.39,0-0.79,0.271-1.09,0.521v2.349c0,0.649,0.09,0.709,0.58,0.77v0.26h-2.109v-0.26c0.66-0.061,0.75-0.12,0.75-0.77v-2.069
c0-0.64-0.03-0.689-0.61-0.779v-0.229c0.44-0.08,0.939-0.21,1.39-0.41v0.81c0.21-0.14,0.42-0.32,0.729-0.5
c0.26-0.16,0.5-0.279,0.81-0.279c0.479,0,0.909,0.31,1.119,0.829c0.29-0.229,0.58-0.41,0.83-0.569c0.21-0.141,0.47-0.26,0.76-0.26
c0.77,0,1.269,0.55,1.269,1.528v1.93c0,0.669,0.07,0.709,0.65,0.77v0.26H626.564z M632.445,897.524c-0.15,0-0.359-0.09-0.47-0.2
c-0.13-0.13-0.19-0.27-0.24-0.439c-0.399,0.27-0.879,0.64-1.179,0.64c-0.71,0-1.199-0.59-1.199-1.22c0-0.489,0.26-0.8,0.809-0.989
c0.601-0.2,1.33-0.47,1.55-0.649v-0.17c0-0.729-0.34-1.13-0.85-1.13c-0.19,0-0.34,0.07-0.45,0.19
c-0.119,0.14-0.21,0.359-0.289,0.659c-0.051,0.16-0.15,0.229-0.29,0.229c-0.18,0-0.43-0.189-0.43-0.43c0-0.14,0.12-0.26,0.31-0.399
c0.27-0.2,0.93-0.58,1.499-0.699c0.3,0,0.6,0.09,0.819,0.27c0.35,0.3,0.45,0.699,0.45,1.229v1.849c0,0.45,0.18,0.6,0.35,0.6
c0.12,0,0.26-0.05,0.36-0.109l0.1,0.26L632.445,897.524z M631.716,895.006c-0.21,0.109-0.689,0.319-0.899,0.419
c-0.39,0.181-0.61,0.37-0.61,0.74c0,0.51,0.4,0.76,0.71,0.76c0.26,0,0.609-0.17,0.8-0.36V895.006z M638.024,893.297
c-0.529,0.079-0.609,0.159-0.88,0.719c-0.26,0.53-0.569,1.359-1.259,3.009c-0.67,1.599-0.89,2.169-1.029,2.698
c-0.05,0.2-0.18,0.25-0.32,0.25c-0.279,0-0.56-0.24-0.56-0.479c0-0.16,0.08-0.25,0.25-0.37c0.32-0.189,0.51-0.439,0.75-0.879
c0.18-0.351,0.26-0.561,0.31-0.69c0.05-0.149,0.04-0.279-0.021-0.449c-0.399-1.14-0.85-2.349-1.139-3.059
c-0.221-0.55-0.311-0.68-0.859-0.749v-0.261h2.019l0.01,0.261c-0.47,0.069-0.52,0.17-0.38,0.549l0.899,2.499
c0.28-0.68,0.72-1.859,0.92-2.488c0.12-0.37,0.06-0.49-0.52-0.56v-0.261h1.809V893.297z M642.524,895.146
c0,1.609-1.18,2.379-2.169,2.379c-1.369,0-2.188-1.1-2.188-2.209c0-1.649,1.279-2.398,2.198-2.398
C641.605,892.917,642.524,893.916,642.524,895.146z M639.097,894.995c0,1.26,0.539,2.199,1.369,2.199
c0.619,0,1.129-0.46,1.129-1.829c0-1.159-0.47-2.119-1.359-2.119C639.636,893.246,639.097,893.866,639.097,894.995z
M644.646,893.986c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.131,0.4-0.32,0.49
c-0.12,0.05-0.2,0.04-0.26-0.021c-0.15-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.289-0.8,0.85v1.829
c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26c0.62-0.061,0.69-0.12,0.69-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77v-0.229
c0.49-0.08,0.93-0.2,1.409-0.4v1.09H644.646z M649.525,894.226c-0.2-0.6-0.54-0.989-1.029-0.989c-0.39,0-0.649,0.29-0.649,0.689
c0,0.44,0.399,0.67,0.839,0.859c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.648,1.38c-0.51,0-0.97-0.19-1.14-0.34
c-0.07-0.141-0.17-0.819-0.17-1.18l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239c0.369,0,0.709-0.27,0.709-0.699
c0-0.44-0.289-0.68-0.789-0.91c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299c0.41,0,0.68,0.09,0.88,0.18
c0.09,0.22,0.2,0.819,0.22,1.06L649.525,894.226z M657.694,897.145c-0.22,0.04-0.97,0.17-1.549,0.38v-0.65l-0.61,0.36
c-0.399,0.229-0.669,0.29-0.779,0.29c-0.8,0-1.849-0.729-1.849-2.129c0-1.39,1.209-2.479,2.568-2.479
c0.14,0,0.439,0.029,0.67,0.119v-1.429c0-0.649-0.05-0.68-0.77-0.729v-0.25c0.52-0.06,1.189-0.22,1.559-0.34v5.967
c0,0.52,0.07,0.569,0.44,0.609l0.319,0.03V897.145z M656.146,893.807c-0.24-0.351-0.66-0.51-1.029-0.51
c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.729,1.77,1.379,1.77c0.35,0,0.72-0.16,0.96-0.34V893.807z M658.347,897.404v-0.26
c0.63-0.061,0.7-0.12,0.7-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39v3.448
c0,0.68,0.07,0.739,0.71,0.8v0.26H658.347z M658.877,891.537c0-0.3,0.239-0.52,0.51-0.52c0.279,0,0.5,0.22,0.5,0.52
c0,0.271-0.221,0.51-0.51,0.51C659.116,892.047,658.877,891.808,658.877,891.537z M662.727,893.986
c0.3-0.51,0.729-1.069,1.209-1.069c0.34,0,0.58,0.27,0.58,0.499c0,0.2-0.13,0.4-0.32,0.49c-0.12,0.05-0.2,0.04-0.26-0.021
c-0.15-0.14-0.27-0.199-0.43-0.199c-0.26,0-0.58,0.289-0.8,0.85v1.829c0,0.659,0.05,0.719,0.819,0.779v0.26h-2.299v-0.26
c0.62-0.061,0.69-0.12,0.69-0.779v-2.069c0-0.659-0.04-0.699-0.62-0.77v-0.229c0.49-0.08,0.93-0.2,1.409-0.4v1.09H662.727z
M668.495,896.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129c0-0.68,0.25-1.3,0.659-1.749
c0.41-0.45,0.95-0.729,1.46-0.729h0.01c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.42,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.499,1.919c0.41,0,0.78-0.16,1.149-0.5L668.495,896.564z
M665.746,894.516c0.561,0,1.12-0.01,1.699-0.03c0.181,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C666.347,893.286,665.896,893.706,665.746,894.516z M672.945,896.505c-0.44,0.579-1.1,1.02-1.689,1.02
c-1.259,0-2.009-1.02-2.009-2.089c0-0.77,0.34-1.439,1.01-1.949c0.52-0.399,1.119-0.569,1.489-0.569h0.01
c0.41,0,0.739,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43c-0.06,0-0.11-0.03-0.19-0.109
c-0.299-0.28-0.649-0.41-1.009-0.41c-0.66,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.509,1.85c0.431,0,0.75-0.12,1.21-0.55
L672.945,896.505z M675.616,897.395c-0.17,0.09-0.32,0.13-0.42,0.13c-0.63,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11
l0.28-0.29h0.449v-0.719l0.649-0.67l0.141,0.02v1.369h1.129c0.1,0.11,0.07,0.32-0.06,0.4h-1.069v2.559
c0,0.81,0.329,0.959,0.589,0.959c0.25,0,0.48-0.1,0.61-0.17l0.09,0.26L675.616,897.395z M676.837,897.404v-0.26
c0.63-0.061,0.72-0.12,0.72-0.779v-4.728c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.14-0.229,1.479-0.35v6.077
c0,0.659,0.079,0.719,0.72,0.779v0.26H676.837z M683.984,893.297c-0.529,0.079-0.609,0.159-0.879,0.719
c-0.26,0.53-0.57,1.359-1.26,3.009c-0.67,1.599-0.89,2.169-1.029,2.698c-0.05,0.2-0.18,0.25-0.319,0.25
c-0.28,0-0.561-0.24-0.561-0.479c0-0.16,0.08-0.25,0.25-0.37c0.32-0.189,0.51-0.439,0.75-0.879c0.18-0.351,0.26-0.561,0.31-0.69
c0.05-0.149,0.04-0.279-0.02-0.449c-0.4-1.14-0.85-2.349-1.14-3.059c-0.22-0.55-0.31-0.68-0.859-0.749v-0.261h2.019l0.01,0.261
c-0.47,0.069-0.52,0.17-0.38,0.549l0.9,2.499c0.279-0.68,0.719-1.859,0.919-2.488c0.12-0.37,0.061-0.49-0.52-0.56v-0.261h1.809
V893.297z M690.016,896.564c-0.63,0.779-1.319,0.96-1.63,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749
c0.41-0.45,0.949-0.729,1.459-0.729h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32
c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L690.016,896.564z
M687.267,894.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199c0.01-0.52-0.33-1-0.89-1
C687.866,893.286,687.417,893.706,687.267,894.516z M690.487,897.404v-0.26c0.63-0.061,0.72-0.12,0.72-0.779v-4.728
c0-0.68-0.061-0.7-0.689-0.76v-0.24c0.52-0.06,1.139-0.229,1.479-0.35v6.077c0,0.659,0.08,0.719,0.72,0.779v0.26H690.487z
M696.755,896.564c-0.629,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.249-1.3,0.659-1.749
c0.41-0.45,0.949-0.729,1.459-0.729h0.011c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32
c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919c0.41,0,0.779-0.16,1.149-0.5L696.755,896.564z
M694.007,894.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.011-0.52-0.329-1-0.889-1
C694.606,893.286,694.156,893.706,694.007,894.516z M701.205,896.505c-0.439,0.579-1.1,1.02-1.688,1.02
c-1.26,0-2.009-1.02-2.009-2.089c0-0.77,0.339-1.439,1.009-1.949c0.52-0.399,1.119-0.569,1.489-0.569h0.01
c0.41,0,0.74,0.13,0.899,0.27c0.13,0.11,0.16,0.189,0.16,0.3c0,0.21-0.22,0.43-0.33,0.43c-0.06,0-0.109-0.03-0.189-0.109
c-0.3-0.28-0.649-0.41-1.01-0.41c-0.659,0-1.229,0.55-1.229,1.599c0,1.39,0.939,1.85,1.51,1.85c0.43,0,0.749-0.12,1.209-0.55
L701.205,896.505z M703.876,897.395c-0.17,0.09-0.319,0.13-0.42,0.13c-0.629,0-0.979-0.4-0.979-1.189v-2.898h-0.689l-0.04-0.11
l0.28-0.29h0.449v-0.719l0.65-0.67l0.14,0.02v1.369h1.13c0.1,0.11,0.069,0.32-0.061,0.4h-1.069v2.559c0,0.81,0.33,0.959,0.59,0.959
c0.25,0,0.479-0.1,0.609-0.17l0.09,0.26L703.876,897.395z M708.596,896.564c-0.63,0.779-1.319,0.96-1.63,0.96
c-1.229,0-1.948-1-1.948-2.129c0-0.68,0.25-1.3,0.659-1.749c0.41-0.45,0.949-0.729,1.459-0.729h0.011
c0.829,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.23,0.32c-0.159,0.029-1.419,0.13-2.618,0.17c0.01,1.359,0.8,1.919,1.499,1.919
c0.41,0,0.779-0.16,1.149-0.5L708.596,896.564z M705.847,894.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.24-0.05,0.24-0.199
c0.01-0.52-0.33-1-0.89-1C706.446,893.286,705.997,893.706,705.847,894.516z M714.145,897.145c-0.22,0.04-0.97,0.17-1.549,0.38
v-0.65l-0.609,0.36c-0.4,0.229-0.67,0.29-0.78,0.29c-0.8,0-1.849-0.729-1.849-2.129c0-1.39,1.209-2.479,2.568-2.479
c0.14,0,0.439,0.029,0.67,0.119v-1.429c0-0.649-0.05-0.68-0.77-0.729v-0.25c0.52-0.06,1.189-0.22,1.559-0.34v5.967
c0,0.52,0.07,0.569,0.44,0.609l0.319,0.03V897.145z M712.596,893.807c-0.24-0.351-0.66-0.51-1.029-0.51
c-0.47,0-1.31,0.379-1.31,1.828c0,1.189,0.729,1.77,1.379,1.77c0.351,0,0.72-0.16,0.96-0.34V893.807z M715.007,896.944
c0-0.319,0.24-0.569,0.56-0.569c0.32,0,0.561,0.25,0.561,0.569c0,0.35-0.24,0.58-0.57,0.58
C715.247,897.524,715.007,897.294,715.007,896.944z M727.373,897.404v-0.26c0.59-0.061,0.659-0.13,0.659-0.779v-1.64
c0-0.829-0.31-1.239-0.989-1.239c-0.369,0-0.76,0.189-1.029,0.529v2.35c0,0.639,0.05,0.719,0.66,0.779v0.26h-2.149v-0.26
c0.64-0.061,0.7-0.13,0.7-0.79v-5.027c-0.55-0.06-1.07-0.069-1.949-0.069h-0.71v4.897c0,0.839,0.08,0.919,1,0.979v0.27h-2.819
v-0.27c0.89-0.061,0.97-0.141,0.97-0.979v-4.897h-0.63c-0.889,0-1.069,0.09-1.209,0.329c-0.12,0.19-0.21,0.42-0.33,0.88h-0.289
c0.05-0.59,0.1-1.259,0.119-1.809h0.19c0.14,0.22,0.27,0.25,0.55,0.25h4.157c0.83,0,0.95-0.061,0.95-0.261v-0.149
c0.199-0.03,0.509-0.13,0.789-0.229v3.368c0.37-0.38,0.88-0.71,1.399-0.72c0.839-0.021,1.409,0.51,1.409,1.698v1.75
c0,0.669,0.07,0.729,0.67,0.779v0.26H727.373z M733.615,896.564c-0.63,0.779-1.319,0.96-1.629,0.96c-1.229,0-1.949-1-1.949-2.129
c0-0.68,0.25-1.3,0.66-1.749c0.409-0.45,0.949-0.729,1.459-0.729h0.01c0.83,0,1.499,0.749,1.499,1.519c0,0.2-0.04,0.28-0.229,0.32
c-0.16,0.029-1.419,0.13-2.619,0.17c0.011,1.359,0.8,1.919,1.5,1.919c0.409,0,0.779-0.16,1.149-0.5L733.615,896.564z
M730.867,894.516c0.56,0,1.119-0.01,1.699-0.03c0.18,0,0.239-0.05,0.239-0.199c0.01-0.52-0.33-1-0.89-1
C731.467,893.286,731.017,893.706,730.867,894.516z M736.338,897.404v-0.26c0.629-0.061,0.719-0.12,0.719-0.779v-4.728
c0-0.68-0.06-0.7-0.689-0.76v-0.24c0.52-0.06,1.14-0.229,1.479-0.35v6.077c0,0.659,0.08,0.719,0.72,0.779v0.26H736.338z
M739.237,897.404v-0.26c0.63-0.061,0.7-0.12,0.7-0.8v-2.059c0-0.62-0.03-0.67-0.63-0.76v-0.24c0.51-0.08,0.989-0.21,1.419-0.39
v3.448c0,0.68,0.07,0.739,0.71,0.8v0.26H739.237z M739.768,891.537c0-0.3,0.239-0.52,0.51-0.52c0.279,0,0.499,0.22,0.499,0.52
c0,0.271-0.22,0.51-0.51,0.51C740.007,892.047,739.768,891.808,739.768,891.537z M746.266,895.146c0,1.609-1.18,2.379-2.169,2.379
c-1.37,0-2.189-1.1-2.189-2.209c0-1.649,1.279-2.398,2.199-2.398C745.346,892.917,746.266,893.916,746.266,895.146z
M742.837,894.995c0,1.26,0.54,2.199,1.369,2.199c0.62,0,1.13-0.46,1.13-1.829c0-1.159-0.47-2.119-1.359-2.119
C743.377,893.246,742.837,893.866,742.837,894.995z M749.696,897.404v-0.26c0.589-0.061,0.659-0.141,0.659-0.83v-1.669
c0-0.689-0.24-1.14-0.909-1.14c-0.4,0-0.79,0.25-1.09,0.51v2.35c0,0.679,0.061,0.719,0.649,0.779v0.26h-2.168v-0.26
c0.68-0.07,0.729-0.12,0.729-0.779v-2.06c0-0.64-0.061-0.68-0.6-0.779v-0.229c0.479-0.091,0.949-0.21,1.389-0.4v0.79
c0.2-0.15,0.42-0.3,0.67-0.47c0.279-0.181,0.54-0.3,0.829-0.3c0.8,0,1.29,0.56,1.29,1.519v1.93c0,0.679,0.06,0.719,0.64,0.779v0.26
H749.696z M753.576,891.317c0,0.71-0.659,1.14-1.279,1.3l-0.1-0.26c0.479-0.2,0.77-0.431,0.77-0.84c0-0.35-0.29-0.56-0.619-0.62
c-0.07-0.01-0.13-0.08-0.13-0.199c0-0.271,0.249-0.391,0.43-0.391C753.066,890.308,753.576,890.688,753.576,891.317z
M756.376,894.226c-0.2-0.6-0.54-0.989-1.029-0.989c-0.39,0-0.649,0.29-0.649,0.689c0,0.44,0.399,0.67,0.839,0.859
c0.76,0.311,1.27,0.67,1.27,1.359c0,0.91-0.85,1.38-1.649,1.38c-0.509,0-0.969-0.19-1.139-0.34c-0.07-0.141-0.17-0.819-0.17-1.18
l0.27-0.05c0.17,0.659,0.62,1.239,1.22,1.239c0.369,0,0.709-0.27,0.709-0.699c0-0.44-0.289-0.68-0.789-0.91
c-0.6-0.27-1.249-0.609-1.249-1.369c0-0.699,0.6-1.299,1.519-1.299c0.41,0,0.68,0.09,0.88,0.18c0.09,0.22,0.199,0.819,0.22,1.06
L756.376,894.226z"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 909.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">sh</tspan><tspan x="9.07" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="13.71" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="17.37" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="23.89" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="28.919" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">f </tspan><tspan x="34.149" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="37.499" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="42.799" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="49.319" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">G</tspan><tspan x="56.419" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">L</tspan><tspan x="61.999" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">A </tspan><tspan x="71.179" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">b</tspan><tspan x="76.169" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="81.479" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d</tspan><tspan x="86.889" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">g</tspan><tspan x="91.509" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="95.849" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="101.168" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="103.938" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s </tspan><tspan x="109.878" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="113.588" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="118.897" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="123.147" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="128.468" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="133.787" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="138.797" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="146.537" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="149.827" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="153.646" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="158.287" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="163.827" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">s</tspan><tspan x="167.536" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="172.847" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="177.876" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="181.887" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t </tspan><tspan x="187.206" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">(</tspan><tspan x="190.226" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">6</tspan><tspan x="195.166" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">0</tspan><tspan x="199.996" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">%</tspan><tspan x="207.006" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">)</tspan><tspan x="210.306" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">, </tspan><tspan x="214.855" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">w</tspan><tspan x="221.996" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="224.605" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="227.966" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.2266 921.4043)"><tspan x="0" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="5.42" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="9.77" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="14.41" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="18.09" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">ly </tspan><tspan x="27.479" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="32.489" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="37.909" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e</tspan><tspan x="42.229" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">-</tspan><tspan x="45.709" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="49.069" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">h</tspan><tspan x="54.579" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="57.449" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="61.068" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="68.619" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="73.629" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n </tspan><tspan x="81.368" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">p</tspan><tspan x="86.679" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">o</tspan><tspan x="91.738" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">l</tspan><tspan x="94.468" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="97.098" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="101.418" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">e </tspan><tspan x="107.938" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">a</tspan><tspan x="112.588" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">n</tspan><tspan x="118.008" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">d </tspan><tspan x="125.558" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">se</tspan><tspan x="133.638" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">c</tspan><tspan x="138.018" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">u</tspan><tspan x="143.537" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">r</tspan><tspan x="147.447" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">i</tspan><tspan x="150.057" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">t</tspan><tspan x="153.437" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">y</tspan><tspan x="157.517" y="0" fill="#231F20" font-family="'MinionPro-Regular'" font-size="10">. </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 521.0713 74.9722)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="7.392" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="14.658" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="21.321" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="27.468" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="33.978" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="40.642" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="47.907" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="50.553" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="56.377" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="63.433" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">ND</tspan><tspan x="78.272" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="85.328" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="92.721" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="95.366" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">EXPE</tspan><tspan x="123.142" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">ND</tspan><tspan x="137.981" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">I</tspan><tspan x="141.762" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="148.271" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="155.901" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="163.167" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 690.8633 74.9722)" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 521.0713 82.9722)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">2</tspan><tspan x="3.654" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.476" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="9.821" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">4</tspan><tspan x="13.468" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">-</tspan><tspan x="15.617" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">2</tspan><tspan x="19.271" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="23.093" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="25.459" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">5</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 522.5752 532.332)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="7.111" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="14.56" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="24.359" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">INI</tspan><tspan x="39.283" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="46.283" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">TR</tspan><tspan x="60.059" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="66.205" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">TI</tspan><tspan x="76.48" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">VE</tspan><tspan x="90.046" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="92.692" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">B</tspan><tspan x="99.874" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">OU</tspan><tspan x="114.56" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="121.952" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="129.147" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="136.26" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="143.176" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">Y</tspan></text>
</g>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
608.463,626.115 608.463,626.029 608.549,626.029 608.636,625.941 608.636,625.855 608.636,625.769 608.636,625.597
608.549,625.597 608.549,625.51 608.549,625.424 608.549,625.25 608.549,625.164 608.549,625.078 608.549,624.992 608.549,624.904
608.636,624.818 608.636,624.732 608.636,624.646 608.636,624.473 608.636,624.387 608.636,624.301 608.636,624.214
608.636,624.128 608.636,624.041 608.636,623.955 608.636,623.869 608.636,623.695 608.722,623.609 608.722,623.437
608.722,623.35 608.722,623.264 608.809,623.264 608.722,623.264 608.636,623.177 608.636,623.091 608.636,623.005
608.549,622.918 608.549,622.832 608.463,622.658 608.463,622.572 608.377,622.486 608.377,622.4 608.463,622.4 608.463,622.313
608.463,622.227 608.463,622.141 608.549,622.141 608.549,622.054 608.549,621.968 608.636,621.795 608.636,621.709
608.722,621.709 608.722,621.621 608.809,621.621 608.895,621.535 609.068,621.449 609.068,621.363 609.154,621.363
609.154,621.277 609.241,621.189 609.241,621.104 609.327,621.017 609.327,620.931 609.413,620.845 609.413,620.758 609.5,620.672
609.5,620.584 609.5,620.498 609.586,620.412 609.586,620.326 609.586,620.24 609.673,620.152 609.673,620.066 609.673,619.894
609.673,619.808 609.759,619.549 609.759,619.375 609.759,619.203 609.759,619.117 609.759,619.029 609.759,618.943
609.759,618.771 609.759,618.512 609.759,618.425 609.759,618.339 609.759,618.253 609.845,618.08 609.845,617.992
609.845,617.906 609.845,617.82 609.932,617.82 609.932,617.734 609.932,617.647 610.018,617.647 610.018,617.561 610.104,617.561
610.104,617.475 610.19,617.475 610.277,617.475 610.364,617.389 610.45,617.389 610.537,617.389 610.623,617.389 610.623,617.302
610.709,617.302 610.796,617.302 610.882,617.302 610.882,617.216 610.882,617.129 610.969,617.043 610.969,616.957
610.969,616.869 610.969,616.697 610.969,616.611 610.882,616.438 610.882,616.352 610.796,616.352 610.796,616.179
610.796,616.093 610.709,616.093 610.709,615.92 610.709,615.832 610.623,615.746 610.623,615.66 610.623,615.574 610.623,615.488
610.537,615.488 610.45,615.314 610.537,615.229 610.45,615.142 610.537,615.142 610.45,615.056 610.277,614.797 609.932,614.969
609.845,614.883 609.845,614.797 609.845,614.709 609.932,614.709 610.018,614.623 610.19,614.537 610.104,614.451
610.104,614.365 610.018,614.365 610.018,614.277 609.932,614.191 609.845,614.019 609.845,613.933 609.759,613.933
609.673,613.846 609.759,613.846 609.845,613.673 610.104,613.328 610.277,613.154 610.364,612.981 610.364,612.896
610.45,612.896 610.537,612.723 610.623,612.637 610.709,612.551 610.709,612.464 610.709,612.377 610.709,612.291
610.709,612.205 610.709,612.031 610.709,611.945 610.709,611.859 610.709,611.772 610.709,611.6 610.709,611.514 610.709,611.428
610.709,611.341 610.709,611.08 610.709,610.908 610.709,610.822 610.709,610.563 610.709,610.477 610.709,610.304
610.709,610.217 610.709,610.131 610.709,610.045 610.709,609.957 610.709,609.871 610.709,609.785 610.796,609.527
610.796,609.439 610.796,609.353 610.882,609.267 610.882,609.181 610.882,609.094 610.882,609.008 610.882,608.921
610.882,608.834 610.882,608.748 610.969,608.748 610.969,608.662 610.969,608.576 610.969,608.49 610.969,608.402
610.882,608.316 610.882,608.229 610.796,608.057 610.709,607.971 610.623,607.885 610.537,607.799 610.537,607.712
610.45,607.712 610.45,607.625 610.364,607.625 610.277,607.539 610.19,607.453 610.104,607.453 610.104,607.365 609.932,607.279
610.018,607.279 610.018,607.193 610.018,607.106 610.104,606.934 610.19,606.762 610.364,606.589 610.45,606.589 610.537,606.589
610.709,606.762 610.623,606.848 610.709,606.848 610.796,606.934 610.882,606.934 610.882,606.848 610.882,606.762
610.969,606.676 611.141,606.762 611.4,606.848 611.487,606.848 611.4,606.762 611.487,606.676 611.487,606.762 611.573,606.762
611.573,606.848 611.66,606.848 611.746,607.021 611.833,607.106 611.919,607.106 611.919,607.193 612.005,607.193
612.005,607.279 612.092,607.279 612.092,607.365 612.178,607.365 612.178,607.453 612.265,607.453 612.265,607.539
612.265,607.625 612.437,607.539 612.437,607.453 612.437,607.193 612.523,607.193 612.523,607.106 612.783,607.106
612.869,607.365 612.869,607.453 612.869,607.539 612.956,607.625 613.129,608.402 613.301,608.748 613.388,608.748
613.474,608.662 613.732,608.576 613.993,608.402 614.425,607.885 614.425,607.799 614.511,607.712 614.597,607.625
614.684,607.453 614.77,607.365 614.856,607.279 614.943,607.106 615.029,607.021 615.029,606.934 615.116,606.934
615.202,606.848 615.289,606.762 615.375,606.676 615.461,606.676 615.461,606.589 615.548,606.589 615.548,606.502
615.634,606.416 615.721,606.416 615.721,606.328 615.807,606.328 615.979,606.156 616.065,606.156 616.065,606.07 616.152,606.07
616.239,605.984 616.325,605.984 616.325,605.897 616.498,605.812 616.585,605.725 616.671,605.725 616.757,605.639
616.757,605.552 616.844,605.552 616.93,605.552 616.93,605.465 617.017,605.465 617.103,605.465 617.103,605.552 617.103,605.639
617.103,605.725 617.188,605.812 617.188,605.897 617.275,605.897 617.362,605.897 617.362,605.984 617.449,606.07
617.449,606.156 617.449,606.242 617.449,606.328 617.362,606.328 617.362,606.416 617.362,606.502 617.275,606.502
617.275,606.589 617.188,606.589 617.188,606.676 617.103,606.676 617.103,606.762 617.103,606.848 617.103,606.934
617.103,607.021 617.103,607.106 617.188,607.193 617.188,607.279 617.188,607.365 617.275,607.453 617.275,607.539
617.275,607.625 617.275,607.712 617.275,607.799 617.275,607.885 617.275,607.971 617.275,608.057 617.275,608.144
617.362,608.144 617.449,608.229 617.449,608.316 617.535,608.402 617.535,608.49 617.535,608.576 617.535,608.662
617.535,608.748 617.621,608.834 617.621,608.921 617.621,609.008 617.708,609.008 617.708,609.094 617.621,609.094
617.621,609.181 617.621,609.267 617.621,609.353 617.621,609.439 617.708,609.527 617.708,609.613 617.708,609.699
617.708,609.871 617.794,609.871 617.881,610.131 617.967,610.477 617.967,610.65 617.967,610.736 617.967,610.822
617.967,610.908 617.967,610.994 618.053,610.994 618.14,610.994 618.14,611.08 618.226,611.08 618.226,611.168 618.226,611.254
618.226,611.341 618.226,611.428 618.313,611.514 618.313,611.6 618.313,611.686 618.313,611.772 618.313,611.859 618.313,611.945
618.313,612.031 618.226,612.117 618.226,612.205 618.14,612.291 618.053,612.291 618.053,612.377 618.053,612.464 618.14,612.551
618.14,612.637 618.053,612.637 618.053,612.723 618.053,612.809 618.053,612.896 618.053,612.981 618.053,613.068 618.14,613.068
618.14,613.154 618.226,613.154 618.226,613.24 618.226,613.328 618.313,613.328 618.313,613.414 618.398,613.5 618.484,613.5
618.572,613.5 618.658,613.587 618.745,613.587 618.745,613.673 618.745,613.76 618.831,613.846 618.831,613.933 618.831,614.019
618.917,614.104 618.917,614.191 618.917,614.277 618.917,614.365 618.917,614.451 619.004,614.451 619.004,614.537
619.004,614.623 619.004,614.709 619.004,614.797 619.004,614.883 619.09,614.883 619.09,614.969 619.09,615.056 619.09,615.142
619.004,615.142 618.917,615.142 618.917,615.229 618.831,615.229 618.831,615.314 618.745,615.314 618.745,615.402
618.745,615.488 618.658,615.574 618.658,615.66 618.572,615.66 618.484,615.574 618.484,615.66 618.398,615.746 618.398,615.92
618.398,616.006 618.398,616.093 618.398,616.179 618.398,616.265 618.313,616.265 618.226,616.179 618.14,616.179 618.14,616.265
618.053,616.179 618.053,616.265 618.053,616.179 617.967,616.265 617.881,616.265 617.794,616.352 617.708,616.352
617.708,616.438 617.621,616.438 617.535,616.438 617.449,616.438 617.362,616.525 617.275,616.525 617.188,616.525
617.103,616.525 617.017,616.525 616.93,616.525 616.757,616.438 616.671,616.438 616.585,616.438 616.498,616.352
616.412,616.438 616.412,616.525 616.412,616.611 616.325,616.783 616.239,616.869 616.152,616.957 616.152,617.043
616.065,617.129 615.979,617.216 615.807,617.302 615.721,617.389 615.548,617.475 615.548,617.561 615.461,617.561
615.375,617.647 615.289,617.647 615.202,617.734 615.116,617.82 615.029,617.906 615.029,617.992 615.029,618.08 614.943,618.08
614.856,618.166 614.77,618.166 614.77,618.253 614.684,618.339 614.684,618.425 614.684,618.512 614.597,618.512 614.511,618.512
614.425,618.598 614.338,618.598 614.252,618.685 614.165,618.771 614.165,618.856 614.079,618.856 614.079,618.943
614.079,619.029 613.993,619.029 613.906,619.117 613.82,619.117 613.82,619.203 613.732,619.203 613.732,619.289 613.646,619.289
613.646,619.375 613.561,619.462 613.561,619.549 613.474,619.549 613.474,619.635 613.388,619.721 613.301,619.721
613.388,619.808 613.474,619.808 613.561,619.894 613.646,619.894 613.732,619.894 613.646,619.894 613.646,620.066
613.561,620.152 613.474,620.24 613.388,620.326 613.301,620.412 613.215,620.412 613.215,620.498 613.215,620.584
613.129,620.584 613.129,620.672 613.042,620.758 613.042,620.845 613.042,620.931 613.042,621.017 613.042,621.104
612.956,621.189 612.956,621.277 612.869,621.277 612.869,621.363 612.869,621.535 612.869,621.621 612.783,621.621
612.783,621.709 612.697,621.709 612.697,621.795 612.609,621.795 612.609,621.881 612.523,621.881 612.523,621.968
612.437,621.968 612.437,622.054 612.351,622.141 612.265,622.141 612.265,622.227 612.178,622.313 612.092,622.313 612.092,622.4
612.005,622.486 612.005,622.572 611.919,622.658 611.919,622.744 611.919,622.832 611.919,622.918 611.833,622.918
611.833,623.005 611.833,623.091 611.746,623.091 611.66,623.264 611.573,623.35 611.573,623.437 611.487,623.522 611.487,623.609
611.487,623.695 611.487,623.781 611.487,623.869 611.487,623.955 611.4,623.955 611.4,624.041 611.4,624.128 611.4,624.214
611.4,624.301 611.487,624.387 611.487,624.473 611.487,624.56 611.487,624.646 611.487,624.732 611.4,624.732 611.4,624.818
611.4,624.904 611.313,624.904 611.228,624.992 611.141,624.992 611.055,625.078 611.055,625.164 610.969,625.25 610.882,625.337
610.796,625.424 610.709,625.51 610.623,625.51 610.537,625.51 610.537,625.597 610.45,625.597 610.45,625.683 610.364,625.683
610.277,625.769 610.277,625.855 610.19,625.941 610.104,626.029 610.104,626.115 610.018,626.201 609.932,626.201
609.845,626.287 609.759,626.287 609.759,626.373 609.586,626.373 609.5,626.373 609.413,626.461 609.327,626.461 609.241,626.547
609.154,626.547 609.068,626.547 608.98,626.547 608.895,626.547 608.809,626.633 608.722,626.633 608.636,626.547
608.636,626.461 608.549,626.373 608.463,626.287 608.463,626.201 608.463,626.115 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
630.495,623.523 630.495,623.437 630.581,623.437 630.581,623.35 630.495,623.264 630.409,623.091 630.495,623.091
630.581,623.005 630.668,623.005 630.754,622.918 630.754,622.832 630.841,622.832 631.1,622.744 631.186,622.658 631.358,622.572
631.444,622.572 631.444,622.658 631.532,622.658 631.618,622.658 631.705,622.658 631.791,622.658 631.877,622.658
631.877,622.572 631.791,622.486 631.964,622.4 632.05,622.4 631.964,622.4 631.964,622.313 632.05,622.313 632.137,622.313
632.223,622.313 632.223,622.227 632.309,622.227 632.223,622.141 632.309,622.141 632.309,622.054 632.396,622.054
632.481,622.054 632.481,622.141 632.481,622.227 632.481,622.313 632.481,622.4 632.568,622.4 632.481,622.4 632.481,622.486
632.568,622.572 632.568,622.486 632.654,622.486 632.741,622.486 633.26,622.4 633.433,622.4 633.519,622.4 633.519,622.313
633.519,622.4 633.691,622.313 633.691,622.141 633.604,622.141 633.604,621.968 633.604,621.795 633.519,621.709 633.519,621.621
633.519,621.535 633.519,621.449 633.519,621.277 633.433,621.189 633.433,621.017 633.433,620.931 633.26,620.931 633.26,620.758
633.173,620.585 633.173,620.412 633.087,620.066 632.828,620.152 632.741,620.152 632.741,619.98 632.741,619.894
632.828,619.808 632.914,619.894 633.087,619.808 632.914,619.721 633.001,619.635 633.087,619.635 633.001,619.549
633.001,619.462 633.087,619.462 633.087,619.376 633.087,619.289 633.087,619.203 633.087,619.117 633.087,619.029
633.173,619.029 633.087,618.771 633.001,618.771 632.914,618.771 632.914,618.685 632.828,618.685 632.741,618.685
632.914,618.598 633.001,618.598 633.001,618.512 633.001,618.425 633.001,618.339 633.001,618.253 632.914,618.253
632.914,618.166 632.914,618.08 632.914,617.992 632.828,617.82 632.828,617.734 632.828,617.648 632.828,617.561 632.828,617.475
632.741,617.475 632.741,617.389 632.654,617.216 632.654,617.129 632.654,617.043 632.568,617.043 632.481,617.043
632.396,616.957 632.309,616.869 632.396,616.869 632.396,616.783 632.481,616.783 632.481,616.697 632.481,616.611
632.396,616.525 632.396,616.438 632.309,616.352 632.309,616.179 632.309,616.093 632.223,615.92 632.223,615.833
632.223,615.746 632.137,615.746 631.964,615.488 632.05,615.4 632.137,615.4 632.137,615.314 632.05,615.229 632.05,615.056
632.05,614.969 632.05,614.883 632.137,614.883 632.137,614.797 631.964,614.797 631.877,614.71 631.964,614.624 631.964,614.537
632.05,614.537 631.964,614.537 631.964,614.451 631.877,614.365 631.791,614.365 631.705,614.277 631.705,614.191
631.618,614.191 631.618,614.105 631.532,614.105 631.618,614.105 631.618,614.019 631.618,613.933 631.532,613.933
631.444,613.933 631.444,613.846 631.444,613.76 631.532,613.76 631.705,613.673 631.877,613.501 631.964,613.414 632.05,613.328
631.964,613.328 632.05,613.154 632.137,613.068 632.223,612.982 632.309,612.896 632.481,612.723 632.568,612.637 632.568,612.55
632.568,612.464 632.481,612.464 632.396,612.464 632.396,612.377 632.481,612.291 632.396,612.291 632.396,612.205
632.309,612.117 632.309,612.031 632.223,611.945 632.223,611.859 632.137,611.859 632.137,611.773 632.05,611.773 632.05,611.686
631.964,611.6 631.791,611.513 631.791,611.427 631.705,611.341 631.705,611.168 631.705,611.08 631.618,610.822 631.532,610.563
631.618,610.563 631.618,610.477 631.618,610.39 631.705,610.39 631.705,610.304 631.791,610.304 631.877,610.304 631.877,610.217
631.964,610.217 631.964,610.131 631.964,610.045 632.05,610.045 632.05,609.958 632.137,609.871 632.137,609.785 632.223,609.699
632.309,609.699 632.396,609.613 632.481,609.613 632.481,609.525 632.481,609.439 632.481,609.353 632.568,609.353
632.654,609.267 632.741,609.267 632.741,609.181 632.741,609.094 632.828,609.094 632.828,609.008 632.828,608.921
632.914,608.921 632.914,608.835 632.914,608.749 633.001,608.662 633.001,608.576 633.001,608.488 633.087,608.488
633.087,608.402 633.173,608.402 633.26,608.316 633.346,608.316 633.346,608.23 633.433,608.23 633.519,608.144 633.604,608.057
633.604,607.971 633.691,607.885 633.691,607.798 633.777,607.798 633.777,607.712 633.865,607.712 633.951,607.712
634.037,607.712 634.124,607.712 634.21,607.712 634.297,607.712 634.383,607.712 634.469,607.798 634.556,607.798
634.642,607.798 634.729,607.798 634.814,607.798 635.247,607.798 635.333,607.798 635.506,607.798 635.593,607.712
635.679,607.712 635.765,607.712 635.938,607.712 636.024,607.712 636.11,607.712 636.197,607.712 636.284,607.798
636.284,607.885 636.37,607.885 636.457,607.971 636.543,607.971 636.543,608.057 636.629,608.057 636.629,608.144 636.716,608.23
636.802,608.23 636.889,608.316 636.975,608.316 637.061,608.316 637.147,608.316 637.233,608.316 637.32,608.23 637.407,608.23
637.493,608.23 637.666,608.23 637.753,608.23 637.839,608.23 637.925,608.23 637.839,608.23 637.839,608.316 637.753,608.402
637.753,608.488 637.666,608.576 637.666,608.662 637.58,608.662 637.58,608.749 637.58,608.835 637.666,608.921 637.666,609.008
637.753,609.008 637.753,609.094 637.839,609.094 637.925,609.094 638.012,609.181 638.098,609.267 638.185,609.267
638.271,609.267 638.271,609.353 638.356,609.353 638.271,609.353 638.356,609.439 638.443,609.439 638.443,609.525
638.529,609.525 638.617,609.525 638.617,609.613 638.617,609.699 638.529,609.699 638.529,609.785 638.529,609.871
638.529,609.958 638.529,610.045 638.529,610.131 638.529,610.217 638.617,610.304 638.617,610.39 638.703,610.477
638.789,610.563 638.876,610.648 638.962,610.736 638.962,610.822 638.962,610.908 639.049,610.908 639.049,610.994
639.049,611.08 639.135,611.168 639.135,611.254 639.221,611.254 639.221,611.341 639.308,611.341 639.308,611.427
639.394,611.427 639.48,611.427 639.48,611.513 639.566,611.513 639.652,611.513 639.652,611.6 639.74,611.6 639.826,611.6
639.913,611.6 640.085,611.859 640.172,612.031 640.085,612.031 640.172,612.031 640.258,612.031 640.345,611.945 640.431,611.859
640.517,611.773 640.604,611.773 640.689,611.773 640.689,611.686 640.776,611.686 640.863,611.686 640.949,611.686 640.949,611.6
641.036,611.6 641.036,611.686 641.122,611.773 641.209,611.859 641.209,611.945 641.295,611.945 641.122,612.205 641.209,612.291
641.295,612.291 641.295,612.205 641.295,612.291 641.295,612.377 641.122,612.55 640.949,612.809 641.036,612.809
640.949,612.809 641.036,612.896 641.122,612.982 641.209,612.982 641.209,613.068 641.295,613.154 641.381,613.154
641.468,613.154 641.554,613.154 641.641,613.154 641.641,613.24 641.727,613.328 641.813,613.414 641.899,613.414
641.899,613.501 641.985,613.587 642.072,613.673 642.159,613.76 642.245,613.846 642.332,613.846 642.418,613.846
642.505,613.846 642.505,613.933 642.591,613.933 642.677,613.933 642.764,613.933 642.85,613.933 642.937,614.019
643.022,614.019 643.022,614.191 642.937,614.451 642.937,614.71 642.85,614.969 642.85,615.142 642.937,615.314 642.937,615.66
643.022,615.833 643.108,615.833 643.022,616.179 643.108,616.179 643.194,616.179 643.282,616.179 643.455,616.179
643.541,616.179 643.714,616.093 643.801,616.093 643.887,616.093 643.973,616.093 643.973,616.006 644.06,615.92 644.06,615.833
644.06,615.746 644.232,615.66 644.232,615.746 644.232,615.833 644.232,615.92 644.232,616.006 644.318,616.093 644.318,616.179
644.318,616.265 644.318,616.352 644.404,616.438 644.404,616.525 644.404,616.611 644.492,616.783 644.578,616.869
644.578,616.957 644.665,617.043 644.578,617.129 644.578,617.216 644.578,617.302 644.665,617.389 644.665,617.475
644.665,617.561 644.665,617.648 644.665,617.734 644.665,617.82 644.665,617.906 644.665,617.992 644.578,617.992 644.578,618.08
644.578,618.166 644.665,618.253 644.665,618.339 644.751,618.339 644.837,618.253 644.837,618.339 644.924,618.339
644.924,618.425 645.01,618.512 645.01,618.598 645.096,618.598 645.096,618.685 645.182,618.685 645.182,618.771 645.269,618.857
645.269,618.943 645.269,619.029 645.355,619.029 645.269,619.117 645.355,619.117 645.355,619.203 645.441,619.203
645.529,619.376 645.529,619.462 645.615,619.549 645.701,619.635 645.788,619.635 645.788,619.721 645.874,619.721
645.874,619.808 645.961,619.808 645.961,619.894 646.046,619.894 646.046,619.808 646.133,619.894 646.306,619.98
646.393,620.066 646.479,620.066 646.479,620.152 646.564,620.152 646.564,620.24 646.564,620.326 646.651,620.326
646.651,620.412 646.738,620.412 646.738,620.499 646.825,620.499 646.825,620.585 646.825,620.672 646.911,620.672
646.911,620.758 646.911,620.845 646.911,620.931 646.997,621.017 646.997,621.104 646.997,621.189 646.997,621.277
646.997,621.363 646.997,621.449 647.083,621.535 647.083,621.621 647.17,621.795 647.17,621.881 647.17,621.968 647.17,622.054
647.257,622.141 647.257,622.227 647.257,622.313 647.257,622.4 647.343,622.572 647.343,622.658 647.343,622.744 647.343,622.832
647.429,622.918 647.429,623.005 647.429,623.091 647.429,623.177 647.516,623.264 647.516,623.35 647.516,623.437
647.602,623.695 647.602,623.781 647.688,623.955 647.688,624.041 647.688,624.128 647.688,624.214 647.688,624.301
647.774,624.301 647.774,624.387 647.86,624.473 647.947,624.473 647.947,624.56 648.034,624.56 648.034,624.646 647.947,624.646
647.947,624.732 647.947,624.818 647.947,624.904 647.947,624.992 647.86,624.992 647.86,625.078 647.947,625.078 647.774,625.165
647.602,625.165 647.516,625.078 647.516,624.992 647.429,624.904 647.343,624.818 647.17,624.732 647.083,624.56 646.997,624.56
646.911,624.473 646.825,624.387 646.738,624.301 646.651,624.214 646.564,624.214 646.479,624.214 646.393,624.214
646.393,624.301 646.306,624.301 646.306,624.387 646.306,624.473 646.22,624.473 646.046,624.732 645.961,624.732
645.961,624.818 645.961,624.904 645.961,624.992 645.874,624.992 645.874,624.904 645.788,624.818 645.788,624.732
645.701,624.646 645.701,624.56 645.615,624.56 645.615,624.473 645.529,624.473 645.529,624.387 645.441,624.301 645.441,624.214
645.355,624.128 645.355,624.041 645.269,623.955 645.269,623.869 645.182,623.869 645.182,623.781 645.182,623.695
645.096,623.523 645.01,623.523 644.924,623.437 644.837,623.437 644.751,623.437 644.665,623.437 644.578,623.437
644.492,623.437 644.404,623.437 644.318,623.437 644.232,623.523 644.146,623.523 644.06,623.609 643.973,623.609
643.887,623.609 643.801,623.609 643.714,623.609 643.628,623.609 643.541,623.523 643.455,623.523 643.369,623.523
643.282,623.523 643.194,623.437 643.108,623.437 643.022,623.523 642.937,623.609 642.85,623.695 642.85,623.781 642.85,623.869
642.764,623.869 642.764,623.955 642.764,624.041 642.764,624.128 642.677,624.214 642.677,624.387 642.505,624.387
642.332,624.387 642.245,624.387 642.159,624.387 642.072,624.473 641.985,624.473 641.985,624.56 641.899,624.56 641.813,624.56
641.727,624.56 641.641,624.646 641.641,624.732 641.727,624.732 641.641,624.732 641.641,624.818 641.554,624.818
641.554,624.904 641.554,624.992 641.641,625.078 641.641,625.165 641.727,625.165 641.813,625.251 641.813,625.337
641.899,625.337 641.813,625.337 641.899,625.51 641.899,625.597 641.985,625.597 641.985,625.683 641.985,625.769
641.985,625.941 641.985,626.029 641.899,626.029 641.899,625.941 641.813,625.941 641.813,626.029 641.727,626.029
641.641,626.115 641.641,626.201 641.641,626.287 641.554,626.374 641.554,626.461 641.554,626.547 641.468,626.547
641.381,626.633 641.295,626.633 641.295,626.72 641.209,626.806 641.122,626.806 641.036,626.806 641.036,626.72 640.949,626.72
640.949,626.806 640.863,626.806 640.863,626.893 640.776,626.893 640.776,626.979 640.689,626.979 640.604,626.979
640.604,627.064 640.517,627.064 640.431,627.064 640.431,627.152 640.345,627.152 640.258,627.238 640.172,627.238
640.085,627.324 639.652,627.324 639.394,627.238 639.221,626.806 639.221,626.893 639.135,626.893 639.049,626.893
639.049,626.979 638.962,626.979 638.876,626.979 638.789,626.979 638.789,627.064 638.703,627.064 638.617,627.064
638.529,627.152 638.443,627.152 638.356,627.152 638.356,627.41 638.271,627.496 638.185,627.496 638.185,627.584
638.098,627.584 638.098,627.67 638.012,627.67 637.925,627.67 637.839,627.757 637.753,627.757 637.839,627.843 637.753,627.843
637.666,627.843 637.666,627.929 637.753,627.929 637.753,628.016 637.839,628.102 637.839,628.189 637.925,628.275
637.925,628.361 638.012,628.447 638.012,628.533 638.012,628.621 638.012,628.707 638.012,628.793 638.012,628.88 637.925,628.88
637.925,628.966 637.839,628.966 637.839,629.053 637.753,629.053 637.58,629.139 637.493,629.225 637.407,629.312
637.233,629.484 637.233,629.57 637.233,629.656 637.233,629.744 637.233,629.83 637.233,629.917 637.233,630.003 637.233,630.089
637.147,630.089 637.147,630.176 636.975,630.176 636.975,630.262 636.975,630.349 636.975,630.435 636.975,630.521
636.975,630.607 636.716,630.781 636.629,630.781 636.543,630.781 636.457,630.693 636.457,630.607 636.37,630.607 636.37,630.693
636.197,630.693 636.284,630.781 636.197,630.781 636.284,630.867 636.37,630.953 636.457,631.04 636.543,631.04 636.629,631.04
636.197,631.385 636.024,631.472 636.024,631.558 635.938,631.558 635.852,631.645 635.765,631.645 635.679,631.645
635.679,631.73 635.593,631.73 635.161,631.99 634.988,632.162 634.9,632.249 634.814,632.249 634.729,632.336 634.642,632.422
634.21,632.422 634.21,632.509 634.21,632.595 634.124,632.595 634.124,632.681 634.124,632.768 634.037,632.854 634.037,632.941
633.951,632.941 633.951,633.027 633.951,633.113 633.951,633.199 633.951,633.285 633.865,633.285 633.865,633.373
633.865,633.459 633.777,633.459 633.519,633.459 633.087,633.545 633.087,633.459 633.001,633.285 632.914,633.285
632.914,633.199 632.914,633.113 632.914,633.027 632.828,633.027 632.741,632.854 632.654,632.681 632.568,632.595
632.481,632.509 632.396,632.422 632.309,632.336 632.309,632.249 632.223,632.162 632.223,632.076 632.223,631.99
632.309,631.904 632.223,631.904 632.223,631.816 632.137,631.816 632.137,631.73 632.05,631.645 632.05,631.558 631.964,631.558
631.964,631.472 631.877,631.385 631.705,631.385 631.618,631.385 631.618,631.213 631.618,631.126 631.532,631.04
631.532,630.867 631.444,630.867 631.444,630.953 631.358,630.953 631.272,631.04 631.186,631.04 631.186,631.126 631.1,631.126
631.013,631.126 630.927,631.126 630.927,631.04 630.841,631.04 630.754,630.867 630.668,630.953 630.581,630.953 630.495,631.126
630.409,631.04 630.235,630.953 630.148,630.953 630.063,630.953 630.063,631.04 629.977,631.04 629.89,630.953 629.804,630.953
629.717,630.867 629.717,630.781 629.631,630.781 629.372,630.867 629.199,630.435 629.113,630.435 629.025,630.262
629.113,630.262 629.025,630.262 629.372,630.003 629.458,629.917 629.372,629.917 629.285,629.917 629.199,629.917
629.199,629.83 629.113,629.83 629.199,629.744 629.199,629.656 629.285,629.484 629.372,629.312 629.458,629.139 629.285,629.139
629.199,629.139 629.113,629.053 629.025,629.053 628.939,629.053 628.939,628.966 629.025,628.793 629.025,628.707
629.113,628.621 629.025,628.533 629.025,628.447 629.025,628.361 628.939,628.275 628.853,628.189 628.853,628.102
628.767,628.016 628.767,627.929 628.767,627.843 628.767,627.929 628.681,627.929 628.594,627.843 628.594,627.757
628.594,627.67 628.594,627.584 628.508,627.496 628.508,627.41 628.853,627.238 628.853,627.152 629.113,627.064 629.199,627.064
629.199,626.979 629.285,626.979 629.372,626.893 629.458,626.806 629.545,626.72 629.631,626.893 629.717,626.893
629.804,626.893 629.89,626.893 629.977,626.806 630.063,626.806 630.148,626.806 630.235,626.72 630.322,626.72 630.409,626.633
630.495,626.461 630.581,626.201 630.495,626.201 630.581,626.115 630.495,626.029 630.322,625.941 630.322,625.855
630.235,625.855 630.063,625.683 629.977,625.683 629.977,625.597 630.063,625.51 630.322,625.424 630.495,625.337
630.581,625.251 630.409,625.165 630.409,625.078 630.409,624.992 630.409,624.904 630.322,624.818 630.322,624.732
630.322,624.646 630.322,624.56 630.235,624.387 630.235,624.128 630.148,624.041 630.148,623.869 630.148,623.781
630.322,623.695 630.409,623.609 630.495,623.609 630.495,623.523 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
650.539,603.737 650.539,603.651 650.625,603.392 650.625,603.22 650.713,603.22 650.713,603.306 650.799,603.306 650.886,603.306
650.972,603.306 650.972,603.392 650.972,603.306 650.972,603.392 651.058,603.392 651.058,603.479 651.145,603.479
651.23,603.564 651.317,603.564 651.403,603.651 651.489,603.651 651.576,603.737 651.662,603.737 651.662,603.823
651.749,603.823 651.835,603.823 651.835,603.91 651.922,603.996 652.009,604.084 652.095,604.084 652.095,604.17 652.095,604.256
652.182,604.342 652.182,604.429 652.268,604.429 652.354,604.516 652.354,604.602 652.44,604.688 652.526,604.86 652.613,604.947
652.699,605.033 652.785,605.207 652.785,605.293 652.958,605.379 653.045,605.465 653.132,605.551 653.218,605.639
653.305,605.812 653.391,605.897 653.478,606.07 653.478,606.156 653.563,606.244 653.563,606.33 653.649,606.33 653.736,606.502
653.822,606.588 653.995,606.762 653.995,606.848 654.081,606.848 654.168,606.848 654.254,606.848 654.342,606.762
654.428,606.935 654.428,607.021 654.601,606.935 654.687,606.935 654.687,606.848 654.773,606.762 654.687,606.676
654.773,606.676 655.032,606.588 654.945,606.502 655.032,606.416 655.205,606.244 655.377,606.07 655.465,606.07 655.551,605.983
655.551,605.897 655.638,605.897 655.638,605.812 655.81,605.551 655.724,605.551 655.81,605.465 655.896,605.465 655.896,605.551
655.982,605.639 655.982,605.465 655.982,605.379 656.069,605.465 656.241,605.465 656.501,605.551 656.588,605.639
656.674,605.639 656.761,605.639 656.847,605.725 656.934,605.725 656.934,605.812 657.02,605.812 657.02,605.897 657.105,605.983
657.192,606.156 657.278,606.244 657.278,606.33 657.365,606.416 657.451,606.502 657.451,606.588 657.537,606.676
657.624,606.762 657.624,606.848 657.71,606.848 657.71,606.935 657.798,606.935 657.798,607.021 657.884,607.107 657.97,607.107
657.97,607.193 658.057,607.279 658.143,607.367 658.229,607.367 658.229,607.453 658.315,607.453 658.315,607.539
658.401,607.539 658.488,607.625 658.574,607.711 658.574,607.799 658.661,607.799 658.747,607.885 658.833,607.972
658.92,608.058 659.094,608.144 659.266,608.316 659.353,608.316 659.353,608.403 659.438,608.403 659.525,608.489
659.611,608.489 659.697,608.576 659.784,608.576 659.87,608.662 659.957,608.662 660.043,608.748 660.129,608.748
660.217,608.748 660.39,608.836 660.476,608.836 660.562,608.922 660.648,608.836 660.734,608.836 660.821,608.836
660.907,608.836 660.993,608.836 661.08,608.836 661.166,608.836 661.254,608.836 661.34,608.836 661.34,608.748 661.426,608.748
661.513,608.748 661.599,608.662 661.686,608.662 661.771,608.662 661.857,608.576 661.944,608.576 661.944,608.489
662.03,608.489 662.117,608.489 662.203,608.489 662.289,608.489 662.376,608.489 662.463,608.489 662.55,608.489 662.636,608.489
662.722,608.489 662.809,608.576 662.895,608.576 662.981,608.576 662.981,608.662 663.067,608.662 663.24,608.748 663.24,608.836
663.326,608.836 663.413,608.836 663.413,608.922 663.499,608.922 663.585,609.008 663.673,609.008 663.673,609.095
663.759,609.095 663.846,609.095 663.932,609.181 664.018,609.181 664.018,609.268 664.104,609.268 664.19,609.354
664.277,609.354 664.363,609.354 664.363,609.439 664.449,609.439 664.536,609.526 664.622,609.526 664.709,609.526
664.795,609.612 664.795,609.699 664.882,609.699 664.969,609.785 665.055,609.871 665.055,609.959 665.142,609.959
665.227,609.959 665.227,610.045 665.313,610.045 665.4,610.131 665.4,610.217 665.486,610.217 665.486,610.304 665.573,610.304
665.573,610.391 665.573,610.477 665.659,610.477 665.659,610.563 665.659,610.649 665.745,610.649 665.745,610.735
665.745,610.822 665.832,610.822 665.832,610.908 665.832,610.996 665.918,611.082 665.918,611.168 665.918,611.254
665.918,611.34 665.918,611.428 665.918,611.514 665.918,611.6 666.006,611.6 666.006,611.687 666.006,611.772 666.092,611.859
666.092,611.945 666.092,612.031 666.178,612.031 666.178,612.119 666.178,612.205 666.265,612.291 666.351,612.377
666.351,612.463 666.438,612.463 666.438,612.551 666.523,612.551 666.438,612.637 666.351,612.637 666.265,612.637
666.178,612.637 666.092,612.637 666.006,612.637 665.918,612.637 665.832,612.637 665.745,612.637 665.659,612.637
665.573,612.637 665.486,612.637 665.4,612.637 665.313,612.637 665.227,612.637 665.142,612.637 665.055,612.637 664.882,612.637
664.795,612.551 664.795,612.637 664.795,612.724 664.882,612.81 664.969,612.896 665.055,612.896 665.055,612.982
664.969,613.068 664.969,613.155 664.969,613.242 664.882,613.328 664.969,613.414 664.969,613.5 664.969,613.588 664.969,613.674
665.055,613.76 665.142,613.76 665.142,613.847 665.055,613.933 665.055,614.02 665.055,614.105 665.055,614.191 665.055,614.278
665.142,614.278 665.142,614.364 665.142,614.451 665.142,614.537 665.142,614.711 665.142,614.797 665.055,614.797
665.055,614.883 665.055,614.97 665.142,614.97 665.227,614.97 665.227,615.056 665.227,615.143 665.313,615.229 665.4,615.229
665.4,615.315 665.486,615.315 665.486,615.401 665.486,615.487 665.486,615.574 665.486,615.66 665.486,615.748 665.486,615.834
665.486,615.92 665.4,615.834 665.313,615.834 665.313,615.92 665.227,616.006 665.142,616.18 665.227,616.352 665.227,616.438
665.313,616.438 665.227,616.871 665.313,616.871 665.4,616.957 665.4,617.043 665.4,617.215 665.313,617.215 665.227,617.129
665.142,617.043 665.055,617.129 665.055,617.215 665.055,617.303 664.882,617.476 664.969,617.562 664.969,617.647
664.882,617.82 664.795,617.994 664.709,618.08 664.622,618.252 664.709,618.338 664.622,618.338 664.622,618.424 664.622,618.512
664.536,618.599 664.536,618.685 664.622,618.685 664.709,618.685 664.709,618.771 664.709,618.857 664.622,618.857
664.622,618.943 664.622,619.03 664.622,619.117 664.709,619.117 664.795,619.117 664.709,619.289 664.709,619.549
664.709,619.635 664.622,619.635 664.622,619.722 664.536,619.722 664.536,619.808 664.536,619.895 664.536,619.98
664.536,620.067 664.536,620.153 664.449,620.153 664.449,620.239 664.449,620.326 664.449,620.412 664.449,620.5 664.449,620.586
664.19,620.672 664.277,620.758 664.19,620.845 664.104,620.845 664.104,620.932 664.018,621.018 663.932,621.189 664.018,621.189
664.018,621.276 663.932,621.276 663.932,621.362 663.846,621.362 663.846,621.449 663.759,621.449 663.673,621.449
663.673,621.535 663.673,621.623 663.759,621.623 663.759,621.709 663.759,621.795 663.673,621.795 663.673,621.709
663.585,621.709 663.499,621.709 663.413,621.709 663.413,621.623 663.326,621.623 663.24,621.623 663.153,621.623
663.067,621.623 662.981,621.623 662.895,621.623 662.809,621.623 662.636,621.535 662.55,621.535 662.463,621.535
662.376,621.535 662.289,621.535 662.203,621.623 662.203,621.709 662.117,621.709 662.03,621.795 661.944,621.795
661.857,621.881 661.771,621.881 661.686,621.881 661.599,621.881 661.513,621.967 661.513,622.055 661.513,621.967
661.513,622.055 661.426,622.055 661.426,622.141 661.426,622.227 661.426,622.399 661.426,622.572 661.426,622.746
661.513,622.746 661.599,622.66 661.686,622.918 661.599,623.004 661.686,623.176 661.686,623.264 661.771,623.437
661.771,623.523 661.857,623.695 661.944,623.782 662.03,623.869 661.944,623.955 661.857,624.127 661.771,624.213
661.686,624.301 661.686,624.388 661.599,624.388 661.599,624.474 661.599,624.56 661.599,624.646 661.513,624.646 661.426,624.56
661.34,624.646 661.254,624.819 661.166,625.078 661.08,625.078 660.993,625.078 660.993,624.992 660.907,624.992 660.821,624.992
660.734,624.992 660.648,624.992 660.648,625.078 660.648,625.164 660.648,625.25 660.562,625.164 660.476,625.164
660.476,625.078 660.39,625.078 660.303,625.078 660.217,625.078 660.129,625.078 660.043,625.078 660.043,625.164 660.043,625.25
659.957,625.25 659.957,625.338 659.87,625.338 659.784,625.338 659.697,625.338 659.697,625.424 659.611,625.424 659.611,625.51
659.525,625.597 659.525,625.684 659.525,625.77 659.438,625.855 659.438,625.941 659.353,625.941 659.266,626.114 659.18,626.201
659.094,626.201 659.094,626.287 659.007,626.287 658.833,626.461 658.747,626.547 658.661,626.547 658.574,626.633
658.488,626.633 658.401,626.72 658.315,626.72 658.315,626.807 658.229,626.807 658.143,626.807 658.057,626.893 658.057,626.979
657.97,627.064 657.884,627.151 657.884,627.237 657.798,627.237 657.798,627.324 657.798,627.412 657.798,627.498
657.884,627.584 657.798,627.756 657.798,627.842 657.798,627.929 657.798,628.016 657.798,628.102 657.71,628.102 657.71,628.275
657.624,628.361 657.71,628.447 657.71,628.535 657.71,628.621 657.71,628.707 657.798,628.707 657.798,628.793 657.71,628.793
657.71,628.879 657.71,628.965 657.798,628.965 657.798,629.053 657.798,629.225 657.71,629.225 657.624,629.225 657.624,629.312
657.537,629.312 657.624,629.398 657.624,629.484 657.71,629.571 657.798,629.657 657.798,629.744 657.884,629.83 657.97,630.002
657.97,630.088 657.97,630.176 657.97,630.263 658.057,630.349 658.143,630.436 658.229,630.521 658.315,630.607 658.401,630.693
658.401,630.78 658.488,630.78 658.574,630.953 658.488,631.039 658.401,631.039 658.229,631.299 658.143,631.385 658.143,631.472
658.057,631.559 657.97,631.645 657.884,631.73 657.798,631.73 657.71,631.816 657.624,631.816 657.537,631.816 657.537,631.903
657.451,631.903 657.365,631.903 657.278,631.903 657.192,631.903 657.105,631.903 657.02,631.903 656.934,631.903
656.847,631.903 656.761,631.903 656.674,631.903 656.674,631.989 656.588,631.989 656.501,631.989 656.414,631.989
656.328,631.989 656.328,632.076 656.241,632.076 656.155,632.076 655.982,632.162 655.81,632.162 655.81,632.25 655.724,632.25
655.638,632.25 655.551,632.25 655.551,632.336 655.465,632.336 655.377,632.336 655.291,632.336 655.205,632.336 655.118,632.336
655.032,632.336 655.032,632.422 654.945,632.422 654.859,632.422 654.773,632.422 654.687,632.422 654.687,632.336
654.687,632.25 654.687,632.162 654.601,632.162 654.601,632.076 654.601,631.989 654.514,631.989 654.514,631.903
654.428,631.903 654.342,631.903 654.254,631.903 654.168,631.903 654.168,631.816 654.081,631.816 653.995,631.73 653.909,631.73
653.909,631.645 653.822,631.645 653.822,631.559 653.736,631.645 653.649,631.645 653.563,631.645 653.478,631.645
653.391,631.645 653.305,631.645 653.218,631.645 653.218,631.73 653.132,631.73 653.132,631.816 653.045,631.816 652.958,631.816
652.958,631.903 652.872,631.903 652.872,631.816 652.872,631.73 652.872,631.645 652.872,631.559 652.872,631.472
652.872,631.385 652.958,631.213 652.958,631.125 652.958,631.039 652.958,630.953 652.958,630.867 653.045,630.867
653.045,630.78 652.958,630.693 652.872,630.693 652.872,630.607 652.872,630.521 652.872,630.436 652.872,630.349
652.872,630.263 652.785,630.176 652.785,630.088 652.699,630.002 652.699,629.916 652.613,630.002 652.613,629.916
652.526,629.916 652.526,629.83 652.526,629.916 652.44,629.83 652.354,629.744 652.268,629.657 652.268,629.571 652.095,629.484
652.095,629.398 652.009,629.398 652.009,629.312 651.922,629.312 651.749,629.225 651.749,629.139 651.662,629.139
651.662,629.053 651.576,629.225 651.489,629.225 651.489,629.312 651.403,629.312 651.403,629.398 651.317,629.484
651.23,629.484 651.23,629.571 651.145,629.571 651.058,629.657 651.058,629.744 650.972,629.83 650.886,629.916 650.799,630.002
650.799,630.088 650.713,630.176 650.713,630.263 650.625,630.263 650.625,630.349 650.625,630.436 650.625,630.521
650.625,630.607 650.539,630.607 650.539,630.693 650.453,630.78 650.453,630.867 650.366,630.953 650.366,631.039 650.28,631.039
650.28,631.125 650.28,631.213 650.28,631.299 650.28,631.385 650.28,631.472 650.193,631.559 650.193,631.645 650.193,631.73
650.193,631.816 650.107,631.989 650.107,632.076 650.107,632.162 650.021,632.162 649.935,632.162 649.849,632.162
649.762,632.076 649.676,632.076 649.59,632.162 649.59,631.989 649.502,631.989 649.502,631.903 649.502,631.816 649.502,631.73
649.502,631.645 649.416,631.472 649.416,631.299 649.329,631.213 649.329,631.125 649.329,630.953 649.243,630.867
649.243,630.78 649.243,630.693 649.243,630.607 649.157,630.607 649.157,630.521 649.157,630.436 649.157,630.349 649.07,630.263
649.07,630.176 649.07,630.088 649.07,630.002 649.07,629.916 649.07,629.83 648.984,629.744 648.984,629.657 648.984,629.571
648.984,629.484 648.897,629.398 648.897,629.312 648.897,629.225 648.812,629.139 648.812,629.053 648.812,628.965
648.726,628.707 648.726,628.621 648.726,628.535 648.726,628.447 648.812,628.361 648.812,628.275 648.812,628.188
648.812,628.016 648.812,627.929 648.897,627.929 648.897,627.756 648.897,627.67 648.897,627.498 648.897,627.584
648.812,627.584 648.726,627.584 648.639,627.584 648.553,627.67 648.466,627.67 648.466,627.498 648.466,627.412 648.379,627.324
648.379,627.151 648.293,627.064 648.293,626.979 648.293,626.893 648.293,626.807 648.293,626.72 648.293,626.633
648.293,626.461 648.206,626.461 648.206,626.287 648.12,626.114 648.12,626.028 648.12,625.941 648.12,625.855 648.033,625.77
648.033,625.684 648.033,625.597 648.033,625.51 647.947,625.424 647.947,625.338 647.947,625.164 647.947,625.078
647.861,625.078 647.861,624.992 647.947,624.992 647.947,624.905 647.947,624.819 647.947,624.732 647.947,624.646
648.033,624.646 648.033,624.56 647.947,624.56 647.947,624.474 647.861,624.474 647.774,624.388 647.774,624.301 647.688,624.301
647.688,624.213 647.688,624.127 647.688,624.041 647.688,623.955 647.602,623.782 647.602,623.695 647.516,623.437
647.516,623.351 647.516,623.264 647.43,623.176 647.43,623.09 647.43,623.004 647.43,622.918 647.343,622.832 647.343,622.746
647.343,622.66 647.343,622.572 647.257,622.399 647.257,622.313 647.257,622.227 647.257,622.141 647.169,622.055
647.169,621.967 647.169,621.881 647.169,621.795 647.083,621.623 647.083,621.535 646.997,621.449 646.997,621.362
646.997,621.276 646.997,621.189 646.997,621.104 646.997,621.018 646.91,620.932 646.91,620.845 646.91,620.758 646.91,620.672
646.824,620.672 646.824,620.586 646.824,620.5 646.737,620.5 646.737,620.412 646.651,620.412 646.651,620.326 646.565,620.326
646.565,620.239 646.565,620.153 646.479,620.153 646.479,620.067 646.393,620.067 646.306,619.98 646.134,619.895
646.047,619.808 646.047,619.895 645.96,619.895 645.96,619.808 645.873,619.808 645.873,619.722 645.787,619.722 645.787,619.635
645.701,619.635 645.614,619.549 645.528,619.463 645.528,619.375 645.441,619.203 645.355,619.203 645.355,619.117
645.27,619.117 645.355,619.03 645.27,619.03 645.27,618.943 645.27,618.857 645.183,618.771 645.183,618.685 645.097,618.685
645.097,618.599 645.01,618.599 645.01,618.512 644.924,618.424 644.924,618.338 644.838,618.338 644.838,618.252 644.75,618.338
644.664,618.338 644.664,618.252 644.577,618.166 644.577,618.08 644.577,617.994 644.664,617.994 644.664,617.907 644.664,617.82
644.664,617.734 644.664,617.647 644.664,617.562 644.664,617.476 644.664,617.389 644.577,617.303 644.577,617.215
644.577,617.129 644.664,617.043 644.577,616.957 644.577,616.871 644.491,616.783 644.405,616.611 644.405,616.524
644.405,616.438 644.318,616.352 644.318,616.266 644.318,616.18 644.318,616.092 644.232,616.006 644.232,615.92 644.232,615.834
644.232,615.748 644.232,615.66 644.06,615.748 644.06,615.834 644.06,615.92 643.974,616.006 643.974,616.092 643.887,616.092
643.801,616.092 643.713,616.092 643.541,616.18 643.454,616.18 643.281,616.18 643.195,616.18 643.109,616.18 643.022,616.18
643.109,615.834 643.022,615.834 642.937,615.66 642.937,615.315 642.85,615.143 642.85,614.97 642.937,614.711 642.937,614.451
643.022,614.191 643.022,614.02 642.937,614.02 642.85,613.933 642.764,613.933 642.678,613.933 642.591,613.933 642.504,613.933
642.504,613.847 642.417,613.847 642.331,613.847 642.245,613.847 642.158,613.76 642.072,613.674 641.985,613.588 641.899,613.5
641.899,613.414 641.813,613.414 641.727,613.328 641.641,613.242 641.641,613.155 641.554,613.155 641.468,613.155
641.382,613.155 641.294,613.155 641.208,613.068 641.208,612.982 641.121,612.982 641.035,612.896 640.949,612.81 641.035,612.81
640.949,612.81 641.121,612.551 641.294,612.377 641.294,612.291 641.294,612.205 641.294,612.291 641.208,612.291
641.121,612.205 641.294,611.945 641.208,611.945 641.208,611.859 641.121,611.772 641.035,611.687 641.035,611.6 640.949,611.6
640.949,611.687 640.862,611.687 640.776,611.687 640.689,611.687 640.689,611.772 640.604,611.772 640.518,611.772
640.431,611.859 640.345,611.945 640.258,612.031 640.172,612.031 640.085,612.031 640.172,612.031 640.085,611.859 639.912,611.6
639.825,611.6 639.739,611.6 639.653,611.6 639.653,611.514 639.566,611.514 639.48,611.514 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
639.48,611.514 639.48,611.428 639.395,611.428 639.308,611.428 639.308,611.34 639.221,611.34 639.221,611.254 639.134,611.254
639.134,611.168 639.048,611.082 639.048,610.996 639.048,610.908 638.962,610.908 638.962,610.822 638.962,610.735
638.875,610.649 638.789,610.563 638.702,610.477 638.616,610.391 638.616,610.304 638.53,610.217 638.53,610.131 638.53,610.045
638.53,609.959 638.53,609.871 638.53,609.785 638.53,609.699 638.616,609.699 638.616,609.612 638.616,609.526 638.53,609.526
638.443,609.526 638.443,609.439 638.357,609.439 638.271,609.354 638.357,609.354 638.271,609.354 638.271,609.268
638.185,609.268 638.099,609.268 638.011,609.181 637.925,609.095 637.838,609.095 637.752,609.095 637.752,609.008
637.666,609.008 637.666,608.922 637.579,608.836 637.579,608.748 637.579,608.662 637.666,608.662 637.666,608.576
637.752,608.489 637.752,608.403 637.838,608.316 637.838,608.23 637.925,608.23 637.838,608.23 637.838,608.144 637.925,608.144
637.925,608.058 637.925,607.972 638.011,607.885 638.099,607.539 638.185,607.279 638.185,607.193 638.271,607.107
638.271,607.021 638.357,607.021 638.443,607.021 638.53,607.021 638.616,606.935 638.702,606.935 638.789,607.021
638.875,607.021 638.962,607.107 638.962,607.021 639.048,607.021 639.134,607.021 639.134,607.107 639.221,607.107
639.308,607.193 639.395,607.107 639.48,607.107 639.48,607.193 639.48,607.107 639.653,607.107 639.739,607.107 639.739,607.193
639.739,607.107 639.739,607.193 639.826,607.193 639.912,607.193 639.826,607.279 639.912,607.279 640.085,607.367
640.171,607.453 640.258,607.453 640.258,607.539 640.344,607.539 640.43,607.539 640.518,607.539 640.604,607.539 640.69,607.453
640.69,607.367 640.949,607.453 641.035,607.453 641.035,607.539 641.035,607.625 641.122,607.625 641.208,607.625
641.208,607.539 641.294,607.539 641.381,607.539 641.555,607.539 641.641,607.539 641.727,607.539 641.727,607.625
641.641,607.625 641.899,607.539 641.986,607.539 641.986,607.453 642.072,607.453 642.245,607.367 642.245,607.279
642.331,607.279 642.418,607.279 642.504,607.279 642.59,607.279 642.677,607.193 642.677,607.107 642.851,607.107
642.937,607.107 643.022,607.107 643.109,607.107 643.195,607.107 643.195,607.193 643.282,607.193 643.282,607.107
643.368,607.107 643.368,607.021 643.454,606.935 643.541,606.935 643.627,607.021 643.8,607.107 643.886,607.107 643.886,607.193
643.974,607.193 643.974,607.279 644.06,607.279 644.06,607.367 644.06,607.279 644.146,607.279 644.146,607.367 644.232,607.367
644.232,607.453 644.318,607.453 644.405,607.539 644.405,607.625 644.491,607.711 644.491,607.625 644.491,607.711
644.578,607.711 644.664,607.799 644.578,607.885 644.664,607.972 644.75,607.972 644.664,608.058 644.664,608.144 644.664,608.23
644.664,608.316 644.578,608.316 644.578,608.403 644.491,608.489 644.578,608.489 644.578,608.662 644.664,608.662
644.664,608.748 644.75,608.748 645.096,608.836 645.096,608.922 645.183,608.922 645.27,608.922 645.355,608.922 645.528,608.922
645.442,609.095 645.528,609.095 645.528,609.181 645.614,609.181 645.701,609.181 645.787,609.181 645.96,609.181
646.133,609.095 646.133,609.008 646.219,609.008 646.307,609.008 646.393,608.922 646.393,608.836 646.393,608.748
646.479,608.748 646.479,608.662 646.565,608.748 646.565,608.836 646.565,608.922 646.565,609.008 646.824,608.922
646.738,608.836 646.738,608.748 646.824,608.748 647.083,608.748 647.083,608.662 647.17,608.662 647.17,608.576 647.17,608.489
647.17,608.403 647.17,608.316 647.256,608.316 647.342,608.23 647.603,608.403 647.774,608.23 647.861,608.23 647.861,608.144
647.774,608.144 647.774,608.058 647.861,608.058 647.774,608.058 647.861,607.972 647.861,607.885 647.861,607.799
647.947,607.711 647.947,607.625 648.034,607.625 648.034,607.539 648.12,607.453 648.12,607.367 648.206,607.367 648.293,607.453
648.379,607.367 648.379,607.279 648.466,607.279 648.466,607.193 648.552,607.193 648.552,607.107 648.726,607.021
648.726,606.935 648.812,606.935 648.812,606.848 648.812,606.762 648.812,606.676 648.898,606.676 648.898,606.762
648.984,606.676 649.07,606.676 649.157,606.588 649.243,606.588 649.33,606.588 649.33,606.502 649.416,606.502 649.502,606.588
649.589,606.588 649.675,606.502 649.762,606.416 649.849,606.416 649.849,606.33 649.935,606.33 649.935,606.244 650.021,606.244
650.107,606.156 650.194,606.156 650.28,606.33 650.366,606.33 650.453,606.502 650.539,606.588 650.626,606.588 650.712,606.676
650.712,606.762 650.798,606.762 650.885,606.848 650.971,606.935 651.059,606.935 651.059,607.021 651.145,607.021
651.145,607.107 651.23,607.107 651.23,607.193 651.317,607.193 651.403,607.367 651.576,607.107 651.749,606.935 651.749,606.848
651.749,606.762 651.749,606.676 651.749,606.588 651.662,606.588 651.662,606.502 651.662,606.416 651.662,606.33 651.576,606.33
651.662,606.33 651.662,606.156 651.662,606.07 651.662,605.983 651.576,605.897 651.576,605.812 651.576,605.725 651.576,605.639
651.576,605.551 651.576,605.465 651.576,605.379 651.576,605.293 651.49,605.293 651.23,605.551 651.059,605.639 651.059,605.551
650.971,605.551 650.885,605.551 650.885,605.465 650.798,605.465 650.798,605.551 650.798,605.465 650.712,605.379
650.626,605.379 650.626,605.293 650.539,605.207 650.453,605.207 650.539,605.119 650.539,605.033 650.539,604.947
650.539,604.86 650.453,604.774 650.366,604.688 650.28,604.688 650.194,604.774 650.107,604.86 650.107,604.774 650.021,604.688
650.021,604.602 650.021,604.516 650.021,604.429 650.107,604.342 650.453,604.256 650.453,604.17 650.453,604.084
650.453,603.996 650.453,603.91 650.453,603.823 650.453,603.737 650.539,603.737 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
597.059,600.367 597.145,600.281 597.231,600.281 597.317,600.281 597.317,600.195 597.49,600.109 597.576,600.109
597.749,600.021 597.922,599.85 598.182,599.763 598.354,599.677 598.354,599.59 598.269,599.59 598.269,599.504 598.182,599.418
598.096,599.418 598.096,599.33 598.096,599.244 598.008,599.244 598.008,599.158 597.922,599.158 597.922,599.072
597.922,598.986 597.836,598.986 597.749,598.898 597.749,598.813 597.749,598.726 597.836,598.726 597.836,598.554
597.836,598.381 597.836,598.294 597.836,598.207 597.749,598.035 597.749,597.949 597.663,597.775 597.663,597.689
597.663,597.603 597.663,597.517 597.663,597.43 597.663,597.344 597.663,597.258 597.663,597.171 597.749,597.084
597.749,596.998 597.836,596.912 597.836,596.738 597.922,596.652 597.836,596.652 597.836,596.566 597.922,596.566
597.922,596.479 597.922,596.394 598.008,596.394 598.008,596.307 598.008,596.221 598.096,596.221 598.096,596.134
598.096,596.048 598.182,595.529 598.182,595.443 598.182,595.184 598.182,594.925 598.269,594.925 598.269,594.838
598.269,594.752 598.269,594.666 598.269,594.492 598.269,594.406 598.269,594.32 598.44,593.974 598.44,593.888 598.527,593.974
598.613,593.974 598.7,594.061 598.786,594.061 598.959,594.146 599.132,594.234 599.218,594.234 599.392,594.32 599.564,594.32
599.736,594.406 599.823,594.492 600.082,594.578 600.255,594.666 600.428,594.752 600.688,594.838 600.86,594.838
600.946,594.925 601.032,594.925 601.119,594.925 601.205,594.925 601.292,594.925 601.378,594.925 601.464,594.925
601.551,594.925 601.551,594.838 601.637,594.838 601.725,594.838 601.811,594.752 601.896,594.666 601.983,594.666
602.069,594.578 602.156,594.578 602.156,594.666 602.156,594.752 602.242,594.752 602.242,594.838 602.328,594.752
602.415,594.752 602.415,594.838 602.501,594.925 602.501,595.011 602.501,595.098 602.588,595.184 602.674,595.356
602.674,595.443 602.76,595.443 602.76,595.529 602.848,595.615 602.934,595.615 602.934,595.701 603.021,595.615 603.106,595.529
603.192,595.529 603.279,595.443 603.365,595.443 603.279,595.356 603.365,595.356 603.365,595.27 603.452,595.27 603.452,595.184
603.538,595.184 603.538,595.098 603.624,595.098 603.711,595.098 603.711,595.011 603.797,594.925 603.884,594.838
603.884,594.752 603.884,594.666 603.971,594.666 603.971,594.578 604.057,594.578 604.144,594.578 604.144,594.492
604.229,594.492 604.316,594.406 604.402,594.406 604.402,594.32 604.488,594.32 604.488,594.234 604.575,594.234 604.661,594.234
604.748,594.234 604.834,594.234 604.834,594.146 604.92,594.146 605.093,594.146 605.18,594.061 605.353,593.974 605.439,593.974
605.525,594.061 605.612,594.146 605.784,594.234 605.871,594.32 606.044,594.406 606.216,594.492 606.39,594.578 606.477,594.578
606.648,594.578 606.735,594.492 606.821,594.492 606.908,594.492 606.994,594.492 607.08,594.492 607.167,594.492
607.253,594.492 607.34,594.492 607.426,594.578 607.512,594.578 607.6,594.578 607.686,594.666 607.772,594.666 607.858,594.752
608.117,594.492 608.204,594.578 608.29,594.752 608.29,594.666 608.463,594.578 608.463,594.492 608.549,594.578 608.636,594.578
608.723,594.578 608.809,594.666 608.896,594.666 608.981,594.752 609.068,594.838 609.154,594.752 609.24,594.752
609.327,594.666 609.5,594.492 609.5,594.578 609.586,594.578 609.5,594.578 609.586,594.752 609.672,594.752 609.672,594.838
609.586,594.838 609.586,594.925 609.672,594.925 609.672,595.011 609.672,594.925 609.759,594.925 609.759,595.011
609.846,595.011 609.846,595.098 609.933,595.184 609.933,595.27 610.104,595.184 610.191,595.011 610.364,595.011
610.364,594.925 610.45,594.925 610.45,594.838 610.623,594.838 610.709,594.752 610.709,594.666 610.709,594.578 610.709,594.492
610.709,594.406 610.709,594.492 610.796,594.492 610.882,594.492 610.968,594.492 611.055,594.578 611.142,594.578
611.229,594.578 611.229,594.666 611.229,594.752 611.4,594.752 611.573,594.666 611.66,594.666 611.573,594.578 611.573,594.492
611.487,594.406 611.487,594.32 611.4,594.234 611.4,594.146 611.314,594.061 611.314,593.974 611.314,593.888 611.229,593.802
611.314,593.802 611.4,593.802 611.487,593.715 611.746,593.541 611.832,593.541 611.832,593.455 611.919,593.455 612.005,593.369
612.092,593.369 612.178,593.369 612.265,593.369 612.352,593.455 612.438,593.455 612.524,593.455 612.61,593.455
612.696,593.541 612.783,593.541 612.869,593.541 612.956,593.541 613.042,593.541 613.128,593.455 613.215,593.369
613.301,593.369 613.389,593.283 613.561,593.109 613.647,593.109 613.647,593.197 613.733,593.283 613.733,593.369
613.82,593.369 613.82,593.455 613.82,593.541 613.906,593.629 613.906,593.715 613.992,593.715 613.992,593.802 614.079,593.888
614.165,593.974 614.252,594.061 614.424,594.146 614.424,594.234 614.511,594.234 614.511,594.32 614.598,594.32 614.598,594.406
614.685,594.492 614.685,594.578 614.771,594.578 614.771,594.666 614.856,594.666 614.943,594.666 614.943,594.752
615.029,594.752 615.116,594.752 615.202,594.752 615.288,594.752 615.461,594.666 615.548,594.666 615.634,594.666
615.808,594.666 615.894,594.578 615.98,594.578 616.066,594.578 616.152,594.578 616.239,594.578 616.412,594.578
616.498,594.492 616.584,594.492 616.671,594.492 616.671,594.406 616.584,594.406 616.584,594.32 616.671,594.234
616.671,594.146 616.671,594.061 616.757,593.974 616.757,593.888 616.844,593.802 616.844,593.715 616.93,593.629 616.93,593.541
616.93,593.455 616.844,593.369 616.844,593.283 616.93,593.369 617.017,593.455 617.017,593.541 617.104,593.629 617.104,593.715
617.189,593.715 617.276,593.974 617.362,594.061 617.362,594.146 617.448,594.061 617.535,594.061 617.535,593.974
617.621,593.974 617.708,593.888 617.794,593.888 617.88,593.974 617.88,593.888 617.88,593.974 617.88,594.061 617.88,594.146
617.88,594.234 617.88,594.32 617.88,594.406 617.88,594.492 617.88,594.578 617.88,594.666 617.794,594.838 617.794,594.925
617.794,595.011 617.794,595.098 617.794,595.27 617.794,595.356 617.794,595.443 617.88,595.529 617.794,595.529 617.88,595.615
617.967,595.701 618.053,595.789 617.967,595.962 617.88,596.048 617.794,596.134 617.708,596.221 617.621,596.221
617.535,596.307 617.535,596.394 617.448,596.394 617.448,596.479 617.448,596.566 617.362,596.652 617.276,596.738
617.276,596.826 617.276,596.912 617.276,596.998 617.276,597.084 617.276,597.171 617.276,597.258 617.276,597.344
617.276,597.43 617.276,597.517 617.276,597.689 617.276,597.775 617.276,597.861 617.189,598.121 617.189,598.207
617.189,598.294 617.104,598.294 617.104,598.381 617.104,598.467 617.017,598.467 617.017,598.64 616.93,598.64 616.93,598.726
616.844,598.813 616.757,598.813 616.757,598.898 616.671,598.898 616.584,598.986 616.498,598.986 616.412,599.072
616.325,599.072 616.239,599.072 616.152,599.072 616.066,599.072 615.98,599.072 615.894,599.072 615.808,599.072
615.721,599.072 615.634,599.072 615.548,599.072 615.461,598.986 615.375,598.986 615.375,598.898 615.288,598.898
615.202,598.898 615.029,598.726 614.943,598.554 614.771,598.467 614.771,598.381 614.685,598.294 614.598,598.121
614.511,598.035 614.424,597.775 614.252,597.258 614.252,597.171 614.165,597.084 614.165,596.998 614.079,596.912
613.906,596.738 613.82,596.652 613.733,596.652 613.733,596.566 613.647,596.566 613.561,596.479 613.475,596.479
613.475,596.394 613.475,596.307 613.389,596.307 613.301,596.221 613.215,596.221 613.128,596.134 612.956,596.134
612.869,596.134 612.783,596.134 612.61,596.048 612.524,596.048 612.352,596.048 612.178,596.134 612.092,596.221
611.832,596.307 611.832,596.394 611.746,596.394 611.746,596.479 611.66,596.652 611.573,596.738 611.487,596.912
611.487,597.084 611.314,597.258 611.142,597.43 611.055,597.517 610.968,597.775 610.882,597.861 610.796,597.949
610.796,598.035 610.796,598.121 610.709,598.207 610.709,598.294 610.623,598.294 610.45,598.467 610.364,598.554 610.277,598.64
610.191,598.64 610.104,598.726 609.933,598.898 609.846,598.898 609.759,598.986 609.672,598.986 609.586,599.072 609.5,599.072
609.413,599.072 609.413,599.158 609.327,599.158 609.327,599.244 609.24,599.244 609.24,599.418 609.154,599.59 609.154,599.677
609.154,599.936 609.154,600.021 609.068,600.109 609.068,600.281 608.896,600.281 608.809,600.281 608.723,600.281
608.723,600.367 608.636,600.367 608.636,600.453 608.549,600.453 608.549,600.541 608.463,600.627 608.463,600.714 608.463,600.8
608.463,600.886 608.376,600.886 608.376,600.973 608.376,601.059 608.376,601.146 608.376,601.231 608.376,601.318
608.376,601.404 608.463,601.404 608.376,601.404 608.376,601.49 608.463,601.49 608.463,601.578 608.463,601.664 608.549,601.664
608.463,601.75 608.376,601.75 608.376,601.837 608.376,601.923 608.29,601.923 608.29,601.837 608.204,601.75 608.117,601.75
608.031,601.75 607.944,601.75 607.858,601.837 607.772,601.923 607.772,602.01 607.686,602.01 607.686,602.096 607.686,602.182
607.6,602.182 607.6,602.269 607.6,602.182 607.512,602.182 607.426,602.182 607.253,602.182 607.253,602.269 607.167,602.354
607.08,602.354 607.08,602.269 607.08,602.182 606.994,602.096 606.908,602.182 606.908,602.096 606.821,602.01 606.735,601.923
606.735,601.837 606.735,601.75 606.735,601.664 606.735,601.578 606.821,601.49 606.735,601.49 606.648,601.578 606.563,601.578
606.563,601.664 606.477,601.75 606.39,601.75 606.303,601.75 606.216,601.75 606.13,601.837 606.13,601.923 606.044,601.923
605.957,601.923 605.957,602.01 605.871,602.01 605.784,602.01 605.698,602.01 605.612,602.01 605.525,602.01 605.439,602.01
605.353,602.01 605.267,602.01 605.267,601.923 605.267,601.837 605.18,601.75 605.007,601.75 604.834,601.75 604.748,601.75
604.661,601.75 604.575,601.75 604.488,601.75 604.229,601.837 604.144,601.837 603.971,601.923 603.884,601.923 603.884,601.837
603.624,601.923 603.538,601.923 603.452,602.01 603.279,602.01 603.192,602.01 603.021,602.01 602.934,602.01 602.934,601.923
602.848,602.01 602.76,602.096 602.674,602.096 602.674,602.182 602.588,602.269 602.501,602.354 602.501,602.441 602.415,602.527
602.328,602.527 602.242,602.701 602.156,602.873 601.983,602.959 601.896,603.219 601.811,603.306 601.725,603.392
601.637,603.478 601.551,603.392 601.205,603.478 601.205,603.564 601.292,603.65 601.378,603.65 601.378,603.738 601.378,603.824
601.378,603.91 601.378,603.996 601.464,604.082 601.637,604.17 601.725,604.256 601.811,604.342 601.896,604.342 601.983,604.342
602.069,604.429 602.156,604.429 602.156,604.515 602.242,604.602 602.156,604.602 602.156,604.688 602.242,604.688
602.328,604.773 602.415,604.773 602.501,604.773 602.501,604.688 602.588,604.688 602.674,604.688 602.76,604.688
602.848,604.688 602.934,604.602 602.934,604.515 603.021,604.515 603.021,604.602 603.106,604.602 603.192,604.602
603.192,604.688 603.279,604.688 603.365,604.773 603.452,604.773 603.538,604.861 603.624,604.861 603.711,604.861
603.711,604.947 603.279,605.205 602.76,605.638 602.415,605.897 602.415,605.984 602.588,606.07 602.588,606.156 602.501,606.156
602.415,606.242 602.328,606.33 602.242,606.416 601.983,606.589 601.896,606.675 601.811,606.675 601.811,606.762
601.725,606.848 601.637,606.934 601.551,607.106 601.464,607.106 601.378,607.193 601.378,607.279 601.292,607.279
601.292,607.453 601.378,607.539 601.205,607.539 601.205,607.625 601.292,607.712 601.378,607.798 601.378,607.971
601.464,607.971 601.464,608.058 601.551,608.144 601.551,608.229 601.637,608.316 601.637,608.402 601.725,608.49
601.725,608.576 601.725,608.662 601.725,608.748 601.637,608.834 601.637,608.922 601.551,608.922 601.464,608.834
601.378,608.834 601.292,608.748 601.119,608.662 601.032,608.576 600.946,608.49 600.773,608.49 600.773,608.402 600.688,608.402
600.688,608.49 600.773,608.49 600.86,608.576 600.86,608.662 600.86,608.576 600.773,608.576 600.688,608.576 600.688,608.49
600.601,608.49 600.515,608.49 600.428,608.49 600.428,608.402 600.341,608.402 600.255,608.402 600.168,608.402 600.082,608.402
599.996,608.402 599.909,608.402 599.823,608.402 599.736,608.49 599.65,608.49 599.564,608.49 599.478,608.49 599.478,608.576
599.392,608.576 599.305,608.576 599.218,608.662 599.132,608.576 599.045,608.49 598.959,608.402 598.872,608.402
598.872,608.316 598.786,608.316 598.786,608.229 598.786,608.144 598.786,608.058 598.7,608.058 598.7,607.971 598.613,607.971
598.613,607.885 598.613,607.798 598.527,607.798 598.527,607.712 598.44,607.712 598.44,607.625 598.354,607.625 598.269,607.625
598.354,607.453 598.096,607.365 598.182,607.193 597.922,607.106 597.749,607.021 597.749,606.848 597.663,606.934
597.663,606.848 597.576,606.848 597.49,606.848 597.404,606.848 597.317,606.848 597.231,606.848 597.231,606.934
597.145,606.934 597.145,607.021 597.059,607.021 597.059,607.106 596.973,607.106 596.885,607.106 596.799,607.106
596.712,607.106 596.626,607.106 596.54,607.106 596.54,607.193 596.54,607.365 596.54,607.453 596.367,607.365 596.367,607.539
596.28,607.539 596.194,607.453 596.108,607.453 596.021,607.453 595.936,607.453 595.849,607.453 595.676,607.365
595.589,607.365 595.33,607.279 595.244,607.193 595.071,607.193 595.071,607.106 595.071,607.021 595.071,606.934
595.071,606.848 595.071,606.762 595.071,606.675 595.071,606.502 595.071,606.416 594.898,606.416 594.813,606.416
594.64,606.416 594.552,606.416 594.466,606.416 594.38,606.416 594.293,606.416 594.207,606.416 594.207,606.242 594.207,606.156
594.207,605.984 594.207,605.897 594.207,605.811 594.293,605.725 594.293,605.552 594.293,605.466 594.12,605.552
593.948,605.552 593.775,605.638 593.603,605.638 593.43,605.725 593.343,605.725 593.17,605.811 593.084,605.811 593.17,605.725
593.17,605.638 593.17,605.552 593.17,605.466 593.17,605.379 593.17,605.293 593.17,605.205 593.256,605.119 593.256,605.033
593.17,605.033 593.084,604.947 592.997,604.861 592.997,604.688 592.997,604.602 592.997,604.429 592.997,604.342 592.997,604.17
592.911,604.082 592.911,603.996 592.911,603.91 592.997,603.738 592.911,603.738 592.824,603.738 592.652,603.738
592.565,603.738 592.479,603.738 592.479,603.478 592.479,603.306 592.479,603.133 592.652,603.133 592.738,603.046
592.738,602.959 592.738,602.873 592.738,602.701 592.738,602.527 592.738,602.441 592.824,602.354 592.911,602.441
592.911,602.527 592.997,602.527 593.084,602.527 593.17,602.527 593.17,602.613 593.17,602.527 593.256,602.527 593.343,602.527
593.343,602.613 593.43,602.701 593.517,602.701 593.688,602.787 593.775,602.787 593.861,602.787 593.948,602.873
594.034,602.873 594.12,602.873 594.293,602.873 594.466,602.873 594.552,602.873 594.64,602.701 594.726,602.527 594.813,602.354
594.813,602.269 594.898,602.269 594.984,602.269 595.071,602.269 595.157,602.269 595.33,602.182 595.416,602.182
595.503,602.182 595.589,602.182 595.503,602.096 595.416,602.096 595.416,602.01 595.416,601.923 595.503,601.837 595.503,601.75
595.503,601.664 595.589,601.578 595.589,601.49 595.676,601.404 595.676,601.318 595.762,601.318 595.849,601.231
595.936,601.146 596.108,601.059 596.194,600.973 596.367,600.886 596.453,600.714 596.626,600.627 596.799,600.541
596.885,600.453 597.059,600.367 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
598.009,587.58 598.009,587.494 597.923,587.494 597.836,587.494 597.836,587.408 597.749,587.408 597.749,587.322
597.749,587.234 597.662,587.234 597.662,587.148 597.576,587.148 597.576,587.063 597.49,587.063 597.403,587.063
597.317,587.063 597.317,586.976 597.317,586.89 597.317,586.803 597.23,586.803 597.145,586.803 597.059,586.803 597.059,586.717
597.145,586.631 597.23,586.631 597.23,586.544 597.145,586.544 597.145,586.458 597.059,586.458 597.059,586.371 597.145,586.371
597.23,586.371 597.145,586.371 597.23,586.458 597.317,586.458 597.403,586.458 597.403,586.371 597.49,586.371 597.576,586.371
597.662,586.285 597.749,586.285 597.923,586.285 597.923,586.199 598.095,586.199 598.268,586.111 598.354,586.111
598.44,586.111 598.44,586.025 598.526,586.025 598.699,585.939 598.786,585.939 598.872,585.939 598.958,585.939 599.132,585.939
599.219,585.939 599.305,585.939 599.391,585.939 599.478,585.939 599.65,585.939 599.909,585.939 599.909,585.853 599.909,585.68
599.909,585.594 599.822,585.594 599.822,585.507 599.822,585.421 599.822,585.335 599.736,585.248 599.736,585.335
599.563,585.335 599.563,585.248 599.563,585.074 599.563,584.988 599.478,584.988 599.478,584.902 599.563,584.902
599.65,584.902 599.736,584.902 599.822,584.902 599.909,584.902 599.909,584.816 599.909,584.73 599.995,584.73 600.082,584.73
600.168,584.643 600.255,584.643 600.515,584.557 600.601,584.471 600.687,584.471 600.773,584.384 600.859,584.384
600.946,584.298 601.032,584.211 601.118,584.211 601.205,584.125 601.291,584.039 601.465,583.951 601.465,583.865
601.551,583.865 601.638,583.779 601.896,583.607 601.982,583.607 601.896,583.52 601.982,583.52 601.982,583.607 601.982,583.693
602.069,583.693 602.069,583.779 602.155,583.865 602.242,583.779 602.414,583.693 602.502,583.693 602.588,583.693
602.675,583.693 602.761,583.607 602.847,583.607 602.934,583.52 603.02,583.52 603.106,583.52 603.192,583.52 603.192,583.434
603.278,583.434 603.365,583.347 603.451,583.347 603.538,583.347 603.624,583.347 603.624,583.261 603.711,583.261
603.711,583.175 603.798,583.175 603.711,583.088 603.711,583.002 603.798,583.002 603.884,583.002 603.971,583.002
604.143,582.915 604.315,582.828 604.574,582.828 604.747,582.742 605.007,582.656 605.094,582.656 605.353,582.57 605.438,582.57
605.525,582.57 605.698,582.742 605.698,582.828 605.87,582.828 605.87,582.915 606.043,582.915 606.131,582.915 606.217,582.915
606.476,583.002 606.563,583.002 606.648,583.002 606.734,583.002 606.821,583.088 606.907,583.088 606.994,583.175
607.08,583.175 607.166,583.175 607.34,583.175 607.427,583.261 607.513,583.261 607.599,583.261 607.686,583.261 607.771,583.347
607.944,583.347 608.03,583.434 608.117,583.434 608.203,583.52 608.29,583.607 608.463,583.693 608.55,583.693 608.636,583.779
608.723,583.779 608.809,583.865 608.895,583.865 608.981,583.951 609.067,584.039 609.154,584.125 609.24,584.125
609.413,584.298 609.499,584.298 609.586,584.384 609.673,584.471 609.673,584.557 609.673,584.643 609.759,584.643
609.759,584.73 609.846,584.73 610.019,584.816 610.019,584.902 610.104,584.902 610.19,584.988 610.277,585.074 610.277,585.162
610.19,585.162 610.104,585.162 610.104,585.248 610.19,585.248 610.19,585.335 610.19,585.421 610.19,585.507 610.104,585.507
610.277,585.68 610.363,585.853 610.45,585.939 610.45,586.025 610.536,586.025 610.536,586.111 610.622,586.199 610.45,586.285
610.45,586.631 610.45,586.803 610.45,586.89 610.45,586.976 610.45,587.063 610.45,587.148 610.45,587.234 610.45,587.322
610.363,587.322 610.363,587.408 610.363,587.494 610.277,587.494 610.363,587.494 610.45,587.494 610.622,587.58 610.883,587.667
611.055,587.58 611.142,587.494 611.228,587.408 611.4,587.322 611.4,587.234 611.486,587.148 611.486,587.063 611.573,587.063
611.573,586.976 611.659,586.976 611.659,587.063 611.746,587.063 611.832,587.063 611.918,587.063 612.006,587.063
612.092,586.976 612.351,586.89 612.523,586.803 612.782,586.717 612.869,586.631 612.955,586.544 613.043,586.458
613.215,586.371 613.388,586.458 613.475,586.631 613.561,586.803 613.646,586.89 613.733,586.89 613.733,586.976 613.819,586.976
613.819,587.063 613.733,587.063 613.733,587.234 613.733,587.322 613.646,587.322 613.646,587.408 613.561,587.408
613.475,587.494 613.388,587.322 613.388,587.408 613.302,587.408 613.129,587.408 613.043,587.322 612.955,587.408
612.869,587.408 612.869,587.494 612.782,587.494 612.696,587.58 612.61,587.58 612.438,587.667 612.523,587.754 612.61,587.84
612.696,587.927 612.782,588.013 612.869,588.099 613.043,588.186 613.215,588.186 613.302,588.186 613.475,588.271
613.561,588.271 613.646,588.271 613.646,588.186 613.733,588.186 613.906,588.099 614.165,588.099 614.339,588.013
614.511,588.013 614.598,587.927 614.684,587.927 614.684,588.013 614.771,587.927 614.856,588.013 614.942,588.013
614.942,587.927 614.856,587.927 614.942,587.927 615.029,587.927 615.115,587.84 615.202,587.754 615.288,587.667
615.374,587.667 615.374,587.58 615.374,587.494 615.461,587.494 615.548,587.408 615.635,587.234 615.807,587.148
615.807,587.063 615.894,587.063 615.979,587.063 616.066,586.976 616.152,586.89 616.238,586.89 616.238,586.976 616.325,586.976
616.325,587.063 616.411,587.148 616.498,587.148 616.584,587.148 616.758,587.148 616.844,587.148 616.931,587.148
617.017,587.148 617.017,587.063 617.189,587.148 617.362,587.148 617.362,587.234 617.448,587.234 617.448,587.322
617.534,587.322 617.534,587.408 617.534,587.494 617.448,587.494 617.448,587.58 617.534,587.58 617.621,587.667 617.534,587.667
617.534,587.754 617.448,587.754 617.362,587.84 617.275,587.927 617.275,588.013 617.189,588.013 617.189,588.099
617.103,588.186 617.103,588.271 617.017,588.271 617.103,588.359 617.103,588.445 617.017,588.445 617.017,588.531
616.844,588.791 616.844,588.877 616.844,588.963 616.844,589.05 616.844,589.136 616.931,589.223 616.931,589.395
617.103,589.654 617.103,589.74 617.103,589.826 617.103,589.914 617.103,590.087 617.103,590.259 617.189,590.605
617.275,590.691 617.275,590.777 617.275,590.863 617.275,590.951 617.362,590.951 617.362,591.037 617.448,591.21
617.534,591.296 617.621,591.383 617.621,591.469 617.621,591.642 617.707,591.642 617.707,591.728 617.707,591.814 617.707,591.9
617.707,591.986 617.707,592.074 617.795,592.074 617.795,592.246 617.621,592.246 617.621,592.333 617.621,592.419
617.707,592.419 617.707,592.506 617.707,592.679 617.621,592.679 617.448,592.765 617.448,592.679 617.362,592.679
617.275,592.679 617.189,592.679 617.103,592.679 616.931,592.679 616.758,592.679 616.758,592.765 616.671,592.765
616.584,592.765 616.671,592.765 616.671,592.851 616.758,592.938 616.844,593.023 616.844,593.111 616.844,593.197
616.844,593.283 616.844,593.369 616.931,593.455 616.931,593.543 616.931,593.629 616.844,593.715 616.844,593.802
616.758,593.888 616.758,593.975 616.671,594.061 616.671,594.146 616.671,594.234 616.584,594.32 616.584,594.406
616.671,594.406 616.671,594.492 616.584,594.492 616.498,594.492 616.411,594.578 616.238,594.578 616.152,594.578
616.066,594.578 615.979,594.578 615.894,594.578 615.807,594.666 615.635,594.666 615.548,594.666 615.461,594.666
615.288,594.752 615.202,594.752 615.115,594.752 615.029,594.752 614.942,594.752 614.942,594.666 614.856,594.666
614.771,594.666 614.771,594.578 614.684,594.578 614.684,594.492 614.598,594.406 614.598,594.32 614.511,594.32 614.511,594.234
614.425,594.234 614.425,594.146 614.252,594.061 614.165,593.975 614.078,593.888 613.992,593.802 613.992,593.715
613.906,593.715 613.906,593.629 613.819,593.543 613.819,593.455 613.819,593.369 613.733,593.369 613.733,593.283
613.646,593.197 613.646,593.111 613.561,593.111 613.388,593.283 613.302,593.369 613.215,593.369 613.129,593.455
613.043,593.543 612.955,593.543 612.869,593.543 612.782,593.543 612.696,593.543 612.61,593.455 612.523,593.455
612.438,593.455 612.351,593.455 612.265,593.369 612.179,593.369 612.092,593.369 612.006,593.369 611.918,593.455
611.832,593.455 611.832,593.543 611.746,593.543 611.486,593.715 611.4,593.802 611.314,593.802 611.228,593.802 611.314,593.888
611.314,593.975 611.314,594.061 611.4,594.146 611.4,594.234 611.486,594.32 611.486,594.406 611.573,594.492 611.573,594.578
611.659,594.666 611.573,594.666 611.4,594.752 611.228,594.752 611.228,594.666 611.228,594.578 611.142,594.578 611.055,594.578
610.969,594.492 610.883,594.492 610.796,594.492 610.709,594.492 610.709,594.406 610.709,594.492 610.709,594.578
610.709,594.666 610.709,594.752 610.622,594.839 610.45,594.839 610.45,594.925 610.363,594.925 610.363,595.011 610.19,595.011
610.104,595.184 609.932,595.271 609.932,595.184 609.846,595.098 609.846,595.011 609.759,595.011 609.759,594.925
609.673,594.925 609.673,595.011 609.673,594.925 609.586,594.925 609.586,594.839 609.673,594.839 609.673,594.752
609.586,594.752 609.499,594.578 609.586,594.578 609.499,594.578 609.499,594.492 609.326,594.666 609.24,594.752
609.154,594.752 609.067,594.839 608.981,594.752 608.895,594.666 608.809,594.666 608.723,594.578 608.636,594.578
608.55,594.578 608.463,594.492 608.463,594.578 608.29,594.666 608.29,594.752 608.203,594.578 608.117,594.492 607.858,594.752
607.771,594.666 607.686,594.666 607.599,594.578 607.513,594.578 607.427,594.578 607.34,594.492 607.254,594.492
607.166,594.492 607.08,594.492 606.994,594.492 606.907,594.492 606.821,594.492 606.734,594.492 606.648,594.578
606.476,594.578 606.39,594.578 606.217,594.492 606.043,594.406 605.87,594.32 605.784,594.234 605.611,594.146 605.525,594.061
605.438,593.975 605.353,593.975 605.18,594.061 605.094,594.146 604.921,594.146 604.834,594.146 604.834,594.234
604.747,594.234 604.661,594.234 604.574,594.234 604.488,594.234 604.488,594.32 604.402,594.32 604.402,594.406 604.315,594.406
604.229,594.492 604.143,594.492 604.143,594.578 604.057,594.578 603.971,594.578 603.971,594.666 603.884,594.666
603.884,594.752 603.884,594.839 603.798,594.925 603.711,595.011 603.711,595.098 603.624,595.098 603.538,595.098
603.538,595.184 603.451,595.184 603.451,595.271 603.365,595.271 603.365,595.355 603.278,595.355 603.365,595.443
603.278,595.443 603.192,595.529 603.106,595.529 603.02,595.615 602.934,595.703 602.934,595.615 602.847,595.615
602.761,595.529 602.761,595.443 602.675,595.443 602.675,595.355 602.588,595.184 602.502,595.098 602.502,595.011
602.502,594.925 602.414,594.839 602.414,594.752 602.328,594.752 602.242,594.839 602.242,594.752 602.155,594.752
602.155,594.666 602.155,594.578 602.069,594.578 601.982,594.666 601.896,594.666 601.811,594.752 601.724,594.839
601.638,594.839 601.551,594.839 601.551,594.925 601.465,594.925 601.379,594.925 601.291,594.925 601.205,594.925
601.118,594.925 601.032,594.925 600.946,594.925 600.859,594.839 600.687,594.839 600.428,594.752 600.255,594.666
600.082,594.578 599.822,594.492 599.736,594.406 599.563,594.32 599.391,594.32 599.219,594.234 599.132,594.234 598.958,594.146
598.786,594.061 598.699,594.061 598.786,593.888 598.958,593.715 599.046,593.455 599.132,593.369 599.132,593.283
599.219,593.283 599.305,593.283 599.305,593.197 599.391,593.197 599.478,593.197 599.563,593.111 599.65,593.023
599.822,592.938 599.909,592.851 599.995,592.851 600.082,592.765 600.168,592.679 600.255,592.679 600.255,592.592
600.342,592.592 600.342,592.506 600.342,592.419 600.342,592.333 600.428,592.246 600.515,591.9 600.515,591.728 600.601,591.642
600.601,591.555 600.601,591.469 600.601,591.383 600.687,591.383 600.687,591.296 600.687,591.21 600.773,591.21 600.773,591.123
600.859,591.123 601.032,590.951 601.118,590.951 601.205,590.863 601.291,590.777 601.379,590.691 601.465,590.605
601.465,590.519 601.551,590.519 601.551,590.432 601.638,590.432 601.638,590.346 601.638,590.259 601.724,590.173
601.811,590.087 601.811,590 601.896,589.914 601.896,589.826 601.982,589.74 601.982,589.654 602.069,589.482 602.155,589.395
602.155,589.309 602.242,589.223 602.242,589.136 602.242,589.05 602.242,588.963 602.242,588.877 602.242,588.791
602.242,588.703 602.242,588.445 602.155,588.445 602.069,588.445 601.896,588.359 601.811,588.359 601.638,588.359
601.551,588.359 601.465,588.271 601.291,588.271 601.205,588.271 601.118,588.186 601.032,588.186 600.946,588.186
600.946,588.271 600.946,588.359 600.859,588.271 600.773,588.186 600.687,588.186 600.687,588.099 600.601,588.099
600.515,588.099 600.342,588.013 600.168,588.013 600.082,587.927 599.995,587.927 599.909,587.927 599.822,587.927
599.736,587.927 599.563,587.84 599.391,587.84 599.219,587.754 599.132,587.754 598.872,587.754 598.872,587.667 598.786,587.667
598.699,587.667 598.613,587.667 598.526,587.667 598.268,587.58 598.182,587.494 598.095,587.494 598.009,587.58 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
671.621,593.975 671.621,594.061 671.621,594.32 671.621,594.492 671.621,594.752 671.535,594.752 671.448,594.752
671.362,594.752 671.362,594.838 671.016,594.924 670.843,594.924 670.757,594.924 670.498,595.012 670.325,595.098
670.239,595.098 670.152,595.098 669.979,595.098 669.893,595.098 669.461,595.184 669.288,595.098 669.202,595.098
669.115,595.098 669.029,595.098 668.943,595.098 668.855,595.012 668.77,595.012 668.683,594.924 668.511,594.838
668.511,594.752 668.424,594.752 668.338,594.665 668.251,594.579 668.165,594.492 668.165,594.406 668.079,594.32
667.992,594.147 667.906,593.975 667.906,593.801 667.819,593.715 667.819,593.629 667.819,593.543 667.819,593.456
667.732,593.369 667.732,593.024 667.646,592.852 667.646,592.764 667.646,592.678 667.646,592.592 667.56,592.592 667.56,592.506
667.56,592.42 667.56,592.332 667.474,592.246 667.474,592.16 667.387,591.987 667.387,591.9 667.301,591.814 667.215,591.641
667.128,591.555 666.869,591.297 666.869,591.209 666.783,591.209 666.783,591.123 666.696,591.123 666.609,591.036
666.522,591.036 666.522,590.95 666.437,590.95 666.264,590.864 666.178,590.864 666.178,590.777 666.091,590.777 666.005,590.777
665.919,590.691 665.832,590.691 665.746,590.691 665.746,590.604 665.659,590.604 665.573,590.604 665.313,590.604
665.313,590.518 665.4,590.432 665.4,590.26 665.4,590.172 665.4,590.086 665.4,590 665.4,589.913 665.4,589.827 665.4,589.74
665.4,589.654 665.487,589.568 665.487,589.309 665.487,589.223 665.573,589.137 665.573,589.049 665.573,588.963 665.573,588.877
665.659,588.79 665.659,588.704 665.659,588.617 665.746,588.531 665.746,588.444 665.746,588.358 665.746,588.272
665.832,588.186 665.832,588.1 665.746,588.1 665.746,588.012 665.832,587.926 665.832,587.84 665.832,587.754 665.832,587.668
665.919,587.58 665.919,587.494 665.919,587.408 666.005,587.408 666.005,587.321 666.005,587.235 666.005,587.148
666.005,587.063 666.091,587.063 666.091,586.977 666.091,586.889 666.178,586.803 666.264,586.717 666.264,586.631
666.351,586.631 666.351,586.545 666.351,586.457 666.437,586.457 666.437,586.371 666.522,586.371 666.522,586.284
666.609,586.284 666.609,586.198 666.609,586.112 666.696,586.112 666.696,586.025 666.783,586.025 666.783,585.939
666.783,585.853 666.869,585.853 666.869,585.766 666.869,585.68 666.869,585.594 666.869,585.508 666.955,585.42 666.955,585.334
667.042,585.248 667.042,585.161 667.042,585.075 667.128,584.988 667.215,584.988 667.215,584.902 667.301,584.902
667.301,584.816 667.387,584.816 667.387,584.729 667.474,584.729 667.56,584.729 667.56,584.643 667.646,584.643 667.646,584.557
667.732,584.471 667.732,584.385 667.732,584.297 667.732,584.211 667.732,584.125 667.732,584.038 667.732,583.952
667.819,583.865 667.819,583.779 667.906,583.779 667.906,583.692 667.906,583.606 667.992,583.606 667.992,583.521
668.079,583.521 668.079,583.434 668.165,583.434 668.251,583.348 668.338,583.26 668.424,583.26 668.424,583.174 668.511,583.088
668.511,583.002 668.511,582.915 668.511,582.828 668.597,582.828 668.597,582.742 668.597,582.656 668.683,582.569
668.77,582.483 668.855,582.483 668.855,582.396 668.855,582.311 668.855,582.225 668.943,582.225 668.855,582.225
668.855,582.137 668.77,582.137 668.77,582.051 668.683,582.051 668.683,581.965 668.597,581.965 668.597,581.879 668.683,581.879
668.597,581.879 668.597,581.793 668.597,581.705 668.511,581.705 668.511,581.619 668.424,581.619 668.424,581.532
668.338,581.532 668.251,581.532 668.251,581.446 668.251,581.36 668.165,581.273 668.165,581.188 668.251,581.188 668.165,581.1
668.251,581.1 668.165,581.1 668.251,581.1 668.251,581.014 668.251,580.928 668.251,580.842 668.165,580.842 668.165,580.756
668.079,580.756 668.079,580.668 667.992,580.668 667.992,580.582 667.992,580.496 667.992,580.409 668.079,580.323
668.079,580.236 668.079,580.15 668.079,580.064 668.165,580.064 668.165,579.978 668.251,579.978 668.251,579.891
668.251,579.805 668.165,579.891 668.079,579.891 668.079,579.978 667.992,579.978 667.906,579.978 667.819,579.978
667.732,579.978 667.646,579.978 667.646,579.891 667.56,579.891 667.474,579.891 667.387,579.891 667.301,579.978
667.215,579.978 667.128,579.978 667.042,579.978 666.869,579.891 666.783,579.978 666.696,579.978 666.609,579.978
666.522,580.064 666.437,580.064 666.437,580.15 666.351,580.15 666.351,580.236 666.264,580.236 666.178,580.236 666.091,580.236
666.005,580.323 665.919,580.323 665.832,580.409 665.746,580.496 665.659,580.496 665.573,580.582 665.487,580.582 665.4,580.582
665.4,580.496 665.313,580.496 665.313,580.409 665.227,580.323 665.141,580.236 665.055,580.15 664.968,580.15 664.968,580.064
664.882,580.064 664.882,579.978 664.795,579.978 664.709,579.891 664.623,579.805 664.536,579.719 664.45,579.633
664.363,579.545 664.277,579.459 664.19,579.459 664.104,579.459 664.018,579.459 663.931,579.372 663.759,579.372
663.759,579.286 663.672,579.286 663.672,579.2 663.845,579.113 664.018,579.113 664.018,579.027 663.931,578.768 663.931,578.682
663.931,578.422 663.845,578.508 663.845,578.422 663.845,578.336 663.845,578.25 663.845,578.163 663.845,578.076 663.845,577.99
663.672,577.99 663.672,577.904 663.672,577.731 663.672,577.645 663.672,577.559 663.672,577.299 663.672,577.04 663.845,577.04
663.845,576.867 663.931,576.694 664.018,576.694 664.018,576.608 664.104,576.608 664.104,576.521 664.104,576.436
664.104,576.348 664.104,576.176 664.104,575.916 664.104,575.744 664.104,575.571 664.104,575.484 664.104,575.398
664.104,575.313 664.104,575.225 664.018,575.053 664.018,574.793 664.018,574.62 664.018,574.534 664.018,574.361
664.018,574.275 664.018,574.188 664.018,574.103 663.931,574.016 663.931,573.93 663.672,574.103 663.672,574.016 663.672,573.93
663.672,573.844 663.672,573.756 663.672,573.67 663.672,573.584 663.672,573.497 663.759,573.324 663.759,573.238
663.759,573.152 663.759,573.065 663.845,572.807 663.759,572.807 663.759,572.721 663.759,572.633 663.672,572.547
663.672,572.461 663.672,572.375 663.672,572.288 663.672,572.201 663.672,572.028 663.759,572.028 663.672,571.942
663.672,571.856 663.672,571.77 663.672,571.684 663.672,571.596 663.586,571.512 663.586,571.424 663.586,571.338
663.586,571.252 663.586,571.078 663.499,571.078 663.499,570.992 663.499,570.905 663.413,570.905 663.413,570.819
663.327,570.732 663.327,570.646 663.24,570.646 663.24,570.561 663.24,570.475 663.24,570.387 663.154,570.301 663.154,570.215
663.066,570.215 663.066,570.129 662.98,570.041 662.98,569.955 662.895,569.868 662.895,569.782 662.808,569.696 662.722,569.523
662.722,569.437 662.635,569.437 662.635,569.35 662.549,569.178 662.376,569.004 662.549,569.004 663.154,569.004
663.672,569.004 663.759,569.004 663.931,569.004 664.018,569.004 664.104,569.004 664.19,569.004 664.277,569.004
664.363,568.918 664.45,568.918 664.536,569.004 664.709,569.004 665.055,569.004 665.227,569.092 665.313,569.004
665.313,569.092 665.4,569.092 665.487,569.092 665.573,569.092 665.659,569.092 665.832,569.178 665.919,569.178 665.919,569.264
666.005,569.264 666.091,569.178 666.178,569.178 666.351,569.092 666.522,569.004 666.609,568.918 666.783,568.832
666.955,568.745 667.042,568.745 667.128,568.745 667.215,568.659 667.301,568.659 667.387,568.573 667.387,568.487 667.387,568.4
667.387,568.487 667.387,568.4 667.474,568.4 667.56,568.4 667.646,568.4 667.646,568.487 667.732,568.487 667.819,568.487
667.819,568.573 667.906,568.573 667.992,568.659 667.992,568.573 667.992,568.487 667.992,568.4 668.165,568.487 668.251,568.487
668.338,568.487 668.338,568.573 668.424,568.659 668.424,568.573 668.424,568.487 668.511,568.487 668.597,568.487 668.683,568.4
668.77,568.4 668.855,568.4 668.943,568.4 669.029,568.4 669.115,568.4 669.288,568.4 669.461,568.487 669.547,568.487
669.72,568.487 669.807,568.487 669.893,568.487 669.979,568.487 670.065,568.487 670.065,568.4 670.239,568.4 670.325,568.313
670.411,568.313 670.411,568.228 670.498,568.228 670.584,568.141 670.671,568.141 670.757,568.141 670.843,568.141
670.93,568.141 671.016,568.141 671.103,568.055 671.016,568.055 671.103,568.055 671.103,567.969 671.188,567.969
671.275,567.969 671.275,567.881 671.362,567.881 671.448,567.795 671.535,567.795 671.621,567.709 671.707,567.623
671.794,567.623 671.88,567.536 671.967,567.536 672.053,567.536 672.226,567.449 672.312,567.363 672.398,567.19 672.398,567.104
672.484,567.19 672.571,567.276 672.658,567.363 672.744,567.449 672.831,567.449 672.831,567.536 672.917,567.536 673.09,567.623
673.09,567.709 673.176,567.795 673.263,567.881 673.349,567.881 673.435,567.969 673.521,568.055 673.607,568.141
673.607,568.228 673.695,568.228 673.781,568.313 673.867,568.4 673.954,568.487 674.04,568.487 674.04,568.573 674.04,568.487
674.127,568.573 674.213,568.659 674.299,568.745 674.386,568.745 674.472,568.832 674.559,568.832 674.645,568.918
674.73,569.004 674.904,569.092 674.991,569.178 675.077,569.178 675.163,569.178 675.163,569.264 675.25,569.264 675.25,569.35
675.336,569.35 675.423,569.35 675.509,569.437 675.595,569.523 675.682,569.523 675.682,569.609 675.768,569.609 675.854,569.696
675.94,569.696 675.94,569.782 676.027,569.868 676.114,569.955 676.2,570.041 676.287,570.129 676.459,570.215 676.459,570.301
676.546,570.387 676.546,570.475 676.546,570.561 676.632,570.561 676.632,570.646 676.719,570.732 676.805,570.819
676.805,570.905 676.891,570.992 676.978,571.078 677.063,571.164 677.15,571.252 677.237,571.252 677.323,571.338
677.323,571.424 677.323,571.512 677.15,571.596 677.063,571.596 676.978,571.596 676.891,571.684 676.805,571.684 676.719,571.77
676.632,571.77 676.632,571.856 676.632,571.942 676.632,572.028 676.632,572.115 676.546,572.115 676.459,572.115
676.546,572.115 676.459,572.115 676.459,572.201 676.459,572.288 676.373,572.288 676.459,572.288 676.459,572.375
676.373,572.375 676.373,572.461 676.287,572.461 676.287,572.547 676.2,572.461 676.2,572.547 676.114,572.547 676.114,572.633
676.2,572.633 676.114,572.633 676.114,572.721 676.2,572.721 676.2,572.807 676.287,572.807 676.373,572.807 676.459,572.807
676.632,572.807 676.805,572.893 676.891,572.893 676.978,572.893 677.063,572.979 677.15,572.979 677.237,572.979
677.323,572.979 677.41,573.065 677.496,573.065 677.669,573.065 677.755,573.065 677.842,573.065 677.928,573.065
678.015,573.065 678.015,573.152 678.101,573.238 678.101,573.324 678.101,573.411 678.101,573.497 678.101,573.584
678.015,573.67 678.015,573.756 678.015,573.844 678.015,573.93 678.015,574.016 678.015,574.103 678.015,574.188 678.015,574.275
678.101,574.448 678.101,574.534 678.101,574.62 678.101,574.707 678.187,574.707 678.187,574.793 678.187,574.881
678.273,574.881 678.273,574.967 678.273,575.053 678.273,575.139 678.359,575.139 678.359,575.225 678.359,575.313
678.447,575.398 678.533,575.398 678.533,575.484 678.619,575.484 678.619,575.571 678.706,575.657 678.706,575.744
678.792,575.744 678.792,575.83 678.879,575.916 678.879,576.004 679.051,576.09 679.051,576.176 679.138,576.262 679.138,576.348
679.224,576.436 679.311,576.521 679.396,576.608 679.396,576.694 679.482,576.78 679.482,576.867 679.57,576.953 679.656,577.04
679.656,577.127 679.743,577.213 679.743,577.299 679.829,577.473 679.829,577.559 679.915,577.645 679.915,577.817
680.002,577.817 680.088,577.817 680.088,577.904 680.175,577.904 680.175,577.99 680.175,578.076 680.175,578.163 680.175,578.25
680.175,578.336 680.261,578.422 680.261,578.508 680.261,578.596 680.347,578.682 680.347,578.768 680.347,578.854
680.434,578.94 680.434,579.027 680.434,579.113 680.52,579.2 680.52,579.286 680.606,579.459 680.606,579.545 680.606,579.633
680.866,579.633 681.039,579.545 681.125,579.545 681.298,579.545 681.384,579.545 681.557,579.545 681.729,579.459
681.815,579.459 681.903,579.459 682.075,579.459 682.162,579.372 682.335,579.372 682.507,579.372 682.594,579.372
682.938,579.286 683.285,579.286 683.285,579.372 683.371,579.372 683.371,579.459 683.371,579.545 683.371,579.633
683.458,579.891 683.458,579.978 683.458,580.064 683.544,580.15 683.544,580.236 683.544,580.323 683.544,580.409
683.544,580.496 683.544,580.582 683.631,580.668 683.631,580.756 683.631,580.842 683.717,580.756 683.803,580.756
683.803,580.842 683.89,580.928 683.976,580.928 683.976,581.014 684.063,581.1 684.063,581.188 684.063,581.273 684.148,581.273
684.234,581.36 684.322,581.36 684.408,581.36 684.408,581.446 684.408,581.532 684.408,581.619 684.495,581.705 684.581,581.705
684.667,581.619 684.754,581.619 684.84,581.619 684.84,581.705 684.84,581.793 684.927,581.793 684.927,581.879 685.013,581.879
685.013,581.965 685.099,581.965 685.099,582.051 685.186,582.051 685.186,582.137 685.186,582.311 685.186,582.396
685.186,582.483 685.186,582.569 685.271,582.569 685.271,582.656 685.271,582.742 685.359,582.828 685.271,582.915
685.271,583.002 685.359,583.002 685.445,583.002 685.531,583.002 685.618,583.002 685.618,583.088 685.704,583.26
685.791,583.348 685.877,583.521 685.877,583.606 685.877,583.779 685.877,583.865 685.963,583.952 685.791,584.038
685.618,584.038 685.618,583.952 685.531,583.952 685.445,583.952 685.359,583.952 685.186,583.952 685.099,583.952
685.013,583.952 684.927,583.952 684.84,583.952 684.667,584.038 684.581,584.038 684.495,584.038 684.322,584.038
684.234,584.038 683.976,584.125 683.89,584.125 683.803,584.125 683.717,584.125 683.631,584.125 683.544,584.211
683.458,584.211 683.371,584.211 683.285,584.211 683.199,584.211 683.199,584.297 683.112,584.297 683.025,584.297
682.853,584.297 682.767,584.385 682.68,584.385 682.68,584.297 682.594,584.385 682.421,584.385 682.335,584.385 682.248,584.385
682.075,584.385 681.989,584.471 682.075,584.557 681.815,584.643 681.643,584.643 681.643,584.816 681.643,584.988
681.643,585.075 681.384,585.161 681.211,585.161 681.125,585.161 681.039,585.248 680.952,585.248 680.866,585.248
680.779,585.248 680.693,585.248 680.606,585.248 680.52,585.248 680.434,585.248 680.434,585.334 680.347,585.334
680.261,585.334 680.175,585.334 680.088,585.334 680.002,585.42 679.915,585.42 679.829,585.42 679.656,585.42 679.57,585.508
679.396,585.508 679.311,585.594 679.138,585.594 679.051,585.594 678.965,585.594 678.879,585.594 678.792,585.594
678.706,585.594 678.533,585.594 678.359,585.68 678.273,585.68 678.187,585.766 678.101,585.766 678.015,585.766 677.928,585.766
677.842,585.853 677.928,586.284 677.928,586.457 677.928,586.631 677.928,586.717 677.928,587.063 677.928,587.148
677.928,587.235 678.015,587.235 678.101,587.235 678.101,587.408 678.101,587.494 678.101,587.58 678.015,587.58 677.928,587.58
677.842,587.754 677.842,587.84 677.755,587.926 677.755,588.012 677.755,588.1 677.755,588.358 677.755,588.444 677.755,588.531
677.669,588.531 677.583,588.531 677.496,588.531 677.41,588.444 677.323,588.444 677.237,588.444 677.237,588.531 677.15,588.531
677.063,588.531 676.978,588.531 676.891,588.531 676.891,588.617 676.805,588.617 676.719,588.531 676.719,588.617
676.719,588.531 676.632,588.531 676.632,588.444 676.546,588.358 676.546,588.272 676.546,588.186 676.546,588.1 676.546,588.012
676.546,587.926 676.459,587.84 676.459,587.754 676.459,587.668 676.459,587.58 676.373,587.494 676.373,587.408 676.373,587.321
676.373,587.235 676.373,587.148 676.287,587.148 676.287,587.063 676.287,586.977 676.287,586.889 676.287,586.803
676.287,586.717 676.2,586.631 676.2,586.545 676.2,586.457 676.027,586.545 675.94,586.545 675.94,586.631 675.94,586.803
675.854,586.717 675.768,586.803 675.768,586.889 675.682,586.889 675.682,586.977 675.768,587.148 675.768,587.235
675.768,587.408 675.682,587.408 675.682,587.494 675.595,587.494 675.509,587.494 675.25,587.321 675.25,587.408 675.25,587.494
675.163,587.58 675.163,587.668 675.077,587.668 675.077,587.754 675.077,587.84 674.991,587.84 674.991,587.926 675.077,588.012
675.163,588.012 675.25,588.012 675.336,588.012 675.423,588.012 675.423,588.1 675.509,588.1 675.509,588.186 675.423,588.272
675.509,588.272 675.509,588.358 675.595,588.358 675.595,588.444 675.509,588.444 675.423,588.531 675.336,588.444
675.077,588.358 674.991,588.358 674.73,588.358 674.645,588.358 674.73,588.617 674.818,588.704 674.904,588.963 674.904,589.049
674.991,589.137 675.077,589.223 675.077,589.309 675.163,589.396 675.077,589.396 675.077,589.481 674.991,589.481
674.991,589.568 675.077,589.654 675.077,589.74 675.077,589.827 675.077,589.913 675.077,590 675.163,590 675.25,590.086
675.25,590.172 675.25,590.26 675.25,590.346 675.25,590.432 675.25,590.518 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
675.25,590.519 675.163,590.519 675.076,590.519 674.99,590.519 675.076,590.519 674.99,590.604 675.076,590.604 674.99,590.604
674.903,590.604 674.731,590.691 674.559,590.691 674.472,590.691 674.386,590.691 674.3,590.691 674.3,590.777 674.213,590.777
674.127,590.777 674.039,590.777 673.953,590.777 673.867,590.777 673.867,590.691 673.78,590.777 673.694,590.777
673.521,590.777 673.436,590.777 673.436,590.951 673.436,591.037 673.436,591.123 673.436,591.209 673.521,591.209
673.521,591.297 673.607,591.383 673.607,591.469 673.607,591.556 673.694,591.642 673.694,591.729 673.78,591.814 673.78,591.9
673.867,592.073 673.867,592.16 673.78,592.16 673.694,592.246 673.607,592.246 673.607,592.332 673.521,592.332 673.436,592.42
673.436,592.506 673.349,592.506 673.263,592.506 673.176,592.506 673.176,592.42 673.09,592.42 673.09,592.506 673.004,592.506
672.917,592.506 672.917,592.42 672.917,592.506 672.83,592.506 672.743,592.506 672.657,592.506 672.657,592.592 672.571,592.592
672.484,592.592 672.484,592.679 672.398,592.679 672.312,592.765 672.226,592.765 672.226,592.679 672.226,592.765
672.14,592.765 672.053,592.765 672.053,592.852 672.053,592.938 671.967,592.938 671.967,593.024 671.88,593.11 671.88,593.196
671.88,593.283 671.88,593.369 671.88,593.457 671.88,593.543 671.794,593.543 671.794,593.629 671.794,593.715 671.794,593.801
671.794,593.889 671.707,593.889 671.62,593.975 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
587.555,569.351 587.555,569.265 587.641,569.265 587.728,569.265 587.728,569.351 587.728,569.437 587.813,569.437 587.9,569.437
587.986,569.437 587.986,569.523 588.072,569.523 588.159,569.523 588.245,569.437 588.245,569.523 588.332,569.697
588.418,569.869 588.504,569.955 588.504,570.041 588.592,570.129 588.678,570.215 588.765,570.301 588.851,570.301
588.851,570.388 588.937,570.388 589.023,570.474 589.109,570.474 589.109,570.561 589.196,570.561 589.196,570.646
589.282,570.646 589.368,570.646 589.368,570.732 589.455,570.732 589.541,570.82 589.628,570.82 589.714,570.906 589.714,570.992
589.801,570.992 589.888,571.078 589.974,571.078 590.061,571.164 590.146,571.252 590.232,571.338 590.319,571.425
590.319,571.511 590.405,571.511 590.492,571.597 590.492,571.684 590.664,571.77 590.751,571.856 590.924,572.029
591.011,572.115 591.097,572.115 591.184,572.201 591.27,572.289 591.442,572.375 591.528,572.461 591.615,572.461
591.701,572.548 591.788,572.548 591.96,572.634 591.96,572.721 592.047,572.721 592.133,572.807 592.307,572.807 592.307,572.893
592.393,572.893 592.393,572.807 592.479,572.807 592.565,572.807 592.652,572.721 592.738,572.634 592.911,572.548
592.997,572.548 593.084,572.375 593.17,572.375 593.256,572.375 593.256,572.289 593.344,572.289 593.344,572.201 593.43,572.201
593.43,572.115 593.43,572.029 593.43,571.942 593.517,571.942 593.517,571.856 593.517,571.77 593.603,571.597 593.603,571.511
593.688,571.511 593.688,571.425 593.775,571.425 593.861,571.425 593.948,571.511 594.034,571.425 594.12,571.425
594.207,571.425 594.293,571.338 594.38,571.338 594.467,571.425 594.553,571.425 594.64,571.425 594.726,571.425 594.813,571.511
594.898,571.511 594.984,571.597 595.071,571.597 595.157,571.597 595.157,571.684 595.33,571.684 595.416,571.684
595.503,571.684 595.589,571.77 595.676,571.77 595.763,571.77 595.849,571.856 595.936,571.856 595.936,571.942 596.021,571.942
596.108,571.942 596.194,571.942 596.28,571.942 596.367,571.942 596.453,571.942 596.54,571.942 596.626,571.942 596.712,571.942
596.799,571.942 596.886,571.942 596.973,571.942 597.059,571.942 597.059,572.029 597.145,572.029 597.231,572.029
597.231,572.115 597.317,572.115 597.49,572.289 597.576,572.289 597.663,572.375 597.663,572.461 597.749,572.461
597.836,572.461 597.922,572.461 598.008,572.461 598.096,572.461 598.096,572.548 598.182,572.461 598.182,572.548
598.44,572.548 598.613,572.548 598.613,572.721 598.613,572.807 598.7,572.893 598.7,573.065 598.7,573.152 598.7,573.238
598.7,573.324 598.7,573.412 598.786,573.412 598.786,573.498 598.786,573.584 598.786,573.67 598.872,573.67 598.872,573.757
598.872,573.844 598.786,573.93 598.786,574.017 598.786,574.103 598.786,574.275 598.786,574.361 598.786,574.449
598.786,574.535 598.872,574.707 598.872,574.793 598.872,574.881 598.959,574.967 598.959,575.053 598.959,575.14
599.045,575.226 599.132,575.313 599.132,575.398 599.132,575.484 599.132,575.572 599.305,575.572 599.392,575.572
599.392,575.658 599.392,575.744 599.478,575.83 599.564,575.916 599.564,576.004 599.564,576.09 599.564,576.177 599.564,576.263
599.564,576.349 599.65,576.349 599.65,576.436 599.65,576.521 599.65,576.608 599.736,576.608 599.736,576.695 599.736,576.781
599.65,576.781 599.65,576.867 599.736,576.867 599.823,576.867 599.909,576.953 599.909,577.041 599.996,577.127 600.082,577.213
600.168,577.386 600.168,577.473 600.168,577.645 600.168,577.817 600.168,577.904 600.168,577.99 600.255,578.076
600.255,578.164 600.255,578.25 600.255,578.423 600.255,578.509 600.168,578.509 600.255,578.596 600.255,578.682
600.342,578.854 600.429,579.027 600.515,579.201 600.601,579.201 600.601,579.287 600.601,579.373 600.688,579.633
600.688,579.719 600.601,579.719 600.688,579.892 600.773,579.892 600.773,579.978 600.773,580.064 600.86,580.236
600.946,580.324 600.86,580.324 600.86,580.41 600.946,580.496 600.946,580.582 601.032,580.756 601.032,580.842 601.119,580.842
601.119,580.929 601.205,581.188 601.292,581.36 601.292,581.447 601.292,581.533 601.378,581.619 601.378,581.705
601.378,581.793 601.378,581.879 601.378,581.965 601.378,582.051 601.378,582.138 601.464,582.138 601.464,582.225
601.551,582.311 601.551,582.396 601.638,582.396 601.638,582.483 601.638,582.57 601.638,582.656 601.638,582.742
601.638,582.828 601.725,582.916 601.725,583.002 601.725,583.088 601.811,583.088 601.811,583.175 601.811,583.261
601.896,583.348 601.896,583.434 601.896,583.521 601.983,583.606 601.896,583.606 601.638,583.779 601.551,583.865
601.464,583.865 601.464,583.951 601.292,584.037 601.205,584.125 601.119,584.211 601.032,584.211 600.946,584.298
600.86,584.385 600.773,584.385 600.688,584.471 600.601,584.471 600.515,584.557 600.255,584.644 600.168,584.644
600.082,584.729 599.996,584.729 599.909,584.729 599.909,584.816 599.909,584.901 599.823,584.901 599.736,584.901
599.65,584.901 599.564,584.901 599.478,584.901 599.478,584.988 599.564,584.988 599.564,585.076 599.564,585.248
599.564,585.334 599.736,585.334 599.736,585.248 599.823,585.334 599.823,585.42 599.823,585.508 599.823,585.594
599.909,585.594 599.909,585.681 599.909,585.853 599.909,585.938 599.65,585.938 599.478,585.938 599.392,585.938
599.305,585.938 599.219,585.938 599.132,585.938 598.959,585.938 598.872,585.938 598.786,585.938 598.7,585.938 598.527,586.025
598.44,586.025 598.44,586.113 598.354,586.113 598.269,586.113 598.096,586.199 597.922,586.199 597.922,586.285 597.749,586.285
597.663,586.285 597.576,586.371 597.49,586.371 597.404,586.371 597.404,586.457 597.317,586.457 597.231,586.457
597.145,586.371 597.231,586.371 597.145,586.371 597.059,586.371 597.059,586.457 597.145,586.457 597.145,586.545
597.231,586.545 597.231,586.631 597.145,586.631 597.059,586.717 597.059,586.803 597.145,586.803 597.231,586.803
597.317,586.803 597.317,586.89 597.317,586.976 597.317,587.063 597.404,587.063 597.49,587.063 597.576,587.063 597.576,587.148
597.663,587.148 597.663,587.235 597.749,587.235 597.749,587.322 597.749,587.408 597.836,587.408 597.836,587.494
597.922,587.494 598.008,587.494 598.008,587.58 598.096,587.494 598.182,587.494 598.269,587.58 598.527,587.668 598.613,587.668
598.7,587.668 598.786,587.668 598.872,587.668 598.872,587.754 599.132,587.754 599.219,587.754 599.392,587.84 599.564,587.84
599.736,587.926 599.823,587.926 599.909,587.926 599.996,587.926 600.082,587.926 600.168,588.013 600.342,588.013 600.515,588.1
600.601,588.1 600.688,588.1 600.688,588.186 600.773,588.186 600.86,588.272 600.946,588.358 600.946,588.272 600.946,588.186
601.032,588.186 601.119,588.186 601.205,588.272 601.292,588.272 601.464,588.272 601.551,588.358 601.638,588.358
601.811,588.358 601.896,588.358 602.069,588.445 602.156,588.445 602.242,588.445 602.242,588.703 602.242,588.789
602.242,588.877 602.242,588.963 602.242,589.05 602.242,589.137 602.242,589.223 602.156,589.309 602.156,589.396
602.069,589.481 601.983,589.654 601.983,589.74 601.896,589.826 601.896,589.914 601.811,590 601.811,590.086 601.725,590.173
601.638,590.26 601.638,590.346 601.638,590.433 601.551,590.433 601.551,590.519 601.464,590.519 601.464,590.604 601.378,590.69
601.292,590.777 601.205,590.863 601.119,590.951 601.032,590.951 600.86,591.123 600.773,591.123 600.773,591.209
600.688,591.209 600.688,591.297 600.688,591.383 600.601,591.383 600.601,591.469 600.601,591.556 600.601,591.642
600.515,591.728 600.515,591.9 600.429,592.246 600.342,592.332 600.342,592.42 600.342,592.506 600.342,592.592 600.255,592.592
600.255,592.678 600.168,592.678 600.082,592.765 599.996,592.851 599.909,592.851 599.823,592.938 599.65,593.024 599.564,593.11
599.478,593.197 599.392,593.197 599.305,593.197 599.305,593.283 599.219,593.283 599.132,593.283 599.132,593.369
599.045,593.455 598.959,593.715 598.786,593.889 598.7,594.061 598.613,593.975 598.527,593.975 598.44,593.889 598.44,593.975
598.269,594.32 598.269,594.406 598.269,594.492 598.269,594.666 598.269,594.752 598.269,594.838 598.269,594.925
598.182,594.925 598.182,595.185 598.182,595.442 598.182,595.529 598.096,596.049 598.096,596.135 598.096,596.221
598.008,596.221 598.008,596.307 598.008,596.394 597.922,596.394 597.922,596.479 597.922,596.565 597.836,596.565
597.836,596.652 597.922,596.652 597.836,596.738 597.836,596.912 597.749,596.998 597.749,597.084 597.663,597.172
597.663,597.258 597.663,597.344 597.663,597.43 597.663,597.517 597.663,597.603 597.663,597.689 597.663,597.775
597.749,597.949 597.749,598.035 597.836,598.207 597.836,598.293 597.836,598.381 597.836,598.554 597.836,598.726
597.749,598.726 597.749,598.813 597.749,598.899 597.836,598.985 597.922,598.985 597.922,599.072 597.922,599.158
598.008,599.158 598.008,599.244 598.096,599.244 598.096,599.33 598.096,599.418 598.182,599.418 598.269,599.504 598.269,599.59
598.354,599.59 598.354,599.677 598.182,599.764 597.922,599.85 597.749,600.022 597.576,600.108 597.49,600.108 597.317,600.195
597.317,600.281 597.231,600.281 597.145,600.281 597.059,600.367 596.886,600.453 596.799,600.541 596.626,600.627
596.453,600.713 596.367,600.887 596.194,600.973 596.108,601.06 595.936,601.146 595.849,601.231 595.763,601.317
595.676,601.317 595.676,601.404 595.589,601.49 595.589,601.578 595.503,601.664 595.503,601.75 595.503,601.836 595.416,601.924
595.416,602.01 595.416,602.097 595.503,602.097 595.589,602.182 595.503,602.182 595.416,602.182 595.33,602.182 595.157,602.269
595.071,602.269 594.984,602.269 594.898,602.269 594.813,602.269 594.813,602.354 594.726,602.527 594.64,602.701
594.553,602.873 594.467,602.873 594.293,602.873 594.12,602.873 594.034,602.873 593.948,602.873 593.861,602.787
593.775,602.787 593.688,602.787 593.517,602.701 593.43,602.701 593.344,602.613 593.344,602.527 593.256,602.527 593.17,602.527
593.17,602.613 593.17,602.527 593.084,602.527 592.997,602.527 592.911,602.527 592.911,602.441 592.824,602.354 592.738,602.354
592.652,602.269 592.565,602.269 592.479,602.182 592.393,602.182 592.307,602.182 592.221,602.182 592.133,602.182
592.047,602.182 591.96,602.097 591.874,602.097 591.788,602.097 591.701,602.097 591.615,602.097 591.528,602.097
591.356,602.097 591.27,602.01 591.184,602.01 591.097,602.01 591.011,602.01 591.011,601.924 590.924,601.924 590.837,601.75
590.751,601.664 590.664,601.578 590.751,601.578 590.664,601.578 590.664,601.49 590.578,601.49 590.492,601.49 590.405,601.49
590.319,601.49 590.232,601.49 590.146,601.49 590.061,601.49 589.974,601.49 589.801,601.49 589.714,601.49 589.628,601.49
589.541,601.49 589.455,601.49 589.368,601.49 589.282,601.404 589.196,601.404 589.109,601.404 589.023,601.404 589.023,601.317
588.851,601.231 588.765,601.231 588.678,601.231 588.592,601.231 588.592,601.146 588.504,601.06 588.418,600.973
588.418,600.887 588.332,600.887 588.332,600.801 588.245,600.713 588.245,600.627 588.159,600.627 588.072,600.541
587.986,600.541 587.9,600.453 587.813,600.453 587.728,600.453 587.728,600.367 587.641,600.367 587.555,600.367 587.469,600.367
587.381,600.367 587.295,600.367 587.208,600.281 587.208,600.367 587.122,600.367 587.036,600.367 587.036,600.453
586.949,600.453 586.863,600.453 586.776,600.453 586.776,600.367 586.69,600.367 586.604,600.367 586.604,600.281
586.604,600.195 586.69,600.195 586.69,600.108 586.69,600.022 586.776,600.022 586.863,600.022 586.863,599.937 586.949,599.937
586.949,599.85 587.036,599.764 587.036,599.677 587.122,599.59 587.122,599.504 587.122,599.418 587.122,599.33 587.208,599.244
587.208,599.158 587.208,599.072 587.208,598.985 587.208,598.899 587.295,598.813 587.295,598.726 587.295,598.554
587.295,598.467 587.295,598.381 587.295,598.293 587.295,598.207 587.295,598.121 587.381,598.121 587.381,598.035
587.381,597.949 587.469,597.775 587.469,597.689 587.555,597.603 587.555,597.517 587.555,597.43 587.641,597.43 587.641,597.344
587.641,597.258 587.728,597.258 587.728,597.172 587.813,597.084 587.9,596.998 587.9,596.912 587.9,596.826 587.986,596.826
587.9,596.826 587.9,596.738 587.813,596.738 587.813,596.652 587.813,596.565 587.9,596.565 587.9,596.479 587.9,596.394
587.986,596.394 587.986,596.307 587.9,596.221 587.986,596.221 587.986,596.135 588.072,596.135 588.159,596.135 588.159,596.049
588.159,595.961 588.245,595.961 588.332,595.875 588.332,595.789 588.332,595.701 588.332,595.615 588.418,595.615
588.504,595.615 588.592,595.529 588.678,595.529 588.765,595.529 588.851,595.442 588.851,595.356 588.851,595.271
588.937,595.271 588.937,595.185 589.023,595.098 588.937,595.098 588.937,595.012 589.023,595.012 589.109,594.925
589.109,594.838 589.109,594.752 589.023,594.752 589.023,594.666 589.023,594.578 589.023,594.492 588.937,594.492
588.937,594.406 588.937,594.32 589.023,594.32 589.023,594.233 589.023,594.147 589.109,594.147 589.196,594.147 589.196,594.061
589.196,593.975 589.282,593.975 589.282,594.061 589.368,594.061 589.368,593.975 589.368,593.889 589.368,593.802
589.368,593.715 589.455,593.715 589.455,593.629 589.541,593.629 589.541,593.541 589.541,593.455 589.455,593.455
589.455,593.369 589.541,593.369 589.455,593.283 589.455,593.197 589.541,593.197 589.541,593.11 589.628,593.11 589.628,593.024
589.628,592.938 589.714,592.938 589.714,592.851 589.714,592.765 589.628,592.765 589.628,592.678 589.628,592.592
589.541,592.592 589.541,592.506 589.455,592.506 589.455,592.42 589.368,592.332 589.368,592.246 589.282,592.246 589.282,592.16
589.196,592.16 589.109,592.074 589.023,592.074 588.937,592.074 588.937,591.988 588.851,591.988 588.851,591.9 588.937,591.9
588.937,591.813 588.937,591.728 588.851,591.728 588.851,591.642 588.937,591.556 588.851,591.469 588.765,591.383
588.765,591.297 588.678,591.297 588.678,591.209 588.592,591.123 588.592,591.037 588.592,590.951 588.592,590.777
588.592,590.69 588.678,590.604 588.678,590.519 588.765,590.519 588.765,590.433 588.765,590.346 588.765,590.26 588.678,590.26
588.678,590.173 588.678,590.086 588.765,590 588.765,589.914 588.765,589.826 588.765,589.74 588.765,589.568 588.765,589.481
588.765,589.396 588.765,589.309 588.678,589.309 588.678,589.223 588.678,589.137 588.765,589.137 588.765,589.05 588.851,589.05
588.851,588.963 588.937,588.789 588.937,588.703 588.937,588.617 588.851,588.617 588.851,588.531 588.851,588.445
588.851,588.358 588.765,588.272 588.765,588.186 588.765,588.1 588.765,588.013 588.678,588.013 588.678,587.926 588.678,587.84
588.678,587.754 588.765,587.754 588.678,587.754 588.678,587.668 588.592,587.668 588.592,587.58 588.504,587.494
588.418,587.494 588.418,587.408 588.332,587.408 588.332,587.322 588.332,587.235 588.245,587.235 588.245,587.148
588.245,587.063 588.159,587.063 588.159,586.976 588.159,586.89 588.159,586.803 588.245,586.803 588.245,586.717
588.332,586.545 588.332,586.457 588.418,586.371 588.504,586.371 588.504,586.285 588.504,586.199 588.504,586.113
588.504,586.025 588.592,585.938 588.592,585.853 588.592,585.767 588.678,585.681 588.592,585.681 588.592,585.594
588.592,585.508 588.592,585.42 588.678,585.508 588.765,585.508 588.765,585.42 588.851,585.42 588.851,585.334 588.765,585.334
588.765,585.248 588.851,585.248 588.937,585.248 588.937,585.162 589.023,585.076 589.023,584.988 589.023,584.901
589.023,584.816 589.109,584.816 589.109,584.729 589.196,584.644 589.282,584.557 589.368,584.557 589.368,584.471
589.455,584.471 589.541,584.471 589.628,584.298 589.714,584.298 589.714,584.211 589.888,583.951 589.974,583.779
590.061,583.865 590.146,583.779 590.146,583.692 590.232,583.692 590.232,583.606 590.232,583.521 590.232,583.434
590.232,583.348 590.232,583.261 590.232,583.175 590.232,583.088 590.232,583.002 590.232,582.916 590.146,582.828
590.146,582.742 590.061,582.742 589.974,582.742 589.888,582.742 589.801,582.656 589.714,582.656 589.714,582.57 589.801,582.57
589.801,582.483 589.714,582.396 589.628,582.396 589.541,582.311 589.541,582.225 589.541,582.138 589.541,582.051
589.541,581.965 589.455,581.965 589.455,581.879 589.455,581.793 589.541,581.793 589.541,581.705 589.455,581.705
589.455,581.619 589.368,581.619 589.282,581.533 589.282,581.447 589.282,581.36 589.282,581.273 589.282,581.188
589.282,581.101 589.282,581.015 589.282,580.929 589.368,580.929 589.368,580.842 589.368,580.756 589.368,580.668
589.282,580.668 589.282,580.582 589.196,580.496 589.196,580.41 589.196,580.236 589.196,580.15 589.282,580.15 589.282,580.064
589.368,580.064 589.368,579.978 589.282,579.978 589.282,579.892 589.196,579.892 589.109,579.892 589.109,579.805
589.023,579.805 588.937,579.805 588.851,579.805 588.851,579.719 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
588.851,579.719 588.851,579.633 588.764,579.633 588.764,579.545 588.677,579.459 588.677,579.373 588.677,579.287 588.764,579.2
588.764,579.113 588.764,579.027 588.764,578.94 588.677,578.854 588.677,578.769 588.591,578.682 588.504,578.596
588.504,578.508 588.418,578.508 588.245,578.422 588.245,578.336 588.159,578.336 588.072,578.25 588.072,578.164
587.986,578.164 587.986,578.076 587.986,577.99 587.986,577.904 587.986,577.817 587.986,577.731 587.9,577.645 587.9,577.559
587.9,577.473 587.813,577.473 587.813,577.385 587.728,577.385 587.728,577.299 587.641,577.213 587.641,577.127 587.641,577.041
587.555,577.041 587.555,576.953 587.555,576.867 587.555,576.78 587.468,576.867 587.468,576.78 587.468,576.867 587.468,576.78
587.468,576.694 587.468,576.608 587.555,576.608 587.555,576.521 587.555,576.436 587.555,576.349 587.555,576.262
587.468,576.262 587.468,576.176 587.468,576.09 587.381,576.09 587.381,576.004 587.381,575.916 587.381,575.744 587.295,575.571
587.295,575.484 587.295,575.398 587.295,575.313 587.208,575.313 587.208,575.226 587.295,575.226 587.295,575.14
587.295,575.053 587.381,575.053 587.468,575.053 587.555,575.14 587.641,575.14 587.728,575.053 587.728,574.967 587.728,574.881
587.813,574.881 587.813,574.793 587.728,574.793 587.728,574.707 587.641,574.707 587.641,574.621 587.641,574.534
587.641,574.448 587.641,574.361 587.641,574.275 587.555,574.188 587.555,574.103 587.555,574.017 587.555,573.93
587.468,573.844 587.468,573.756 587.468,573.67 587.381,573.67 587.381,573.584 587.468,573.584 587.468,573.498 587.468,573.412
587.468,573.324 587.468,573.238 587.468,573.152 587.468,573.065 587.468,572.979 587.468,572.893 587.555,572.807
587.555,572.721 587.555,572.633 587.555,572.547 587.555,572.461 587.641,572.461 587.641,572.375 587.641,572.289
587.728,572.201 587.728,572.115 587.728,572.028 587.728,571.942 587.813,571.942 587.813,571.856 587.813,571.77
587.813,571.684 587.813,571.596 587.728,571.596 587.728,571.51 587.641,571.51 587.641,571.424 587.555,571.338 587.468,571.338
587.381,571.338 587.295,571.252 587.295,571.164 587.208,571.164 587.208,571.078 587.295,570.992 587.208,570.905
587.208,570.819 587.295,570.819 587.295,570.732 587.381,570.646 587.468,570.646 587.468,570.561 587.468,570.474
587.468,570.387 587.555,570.387 587.555,570.301 587.555,570.215 587.468,570.215 587.468,570.129 587.381,570.129
587.381,570.041 587.295,570.041 587.295,569.955 587.208,569.955 587.208,569.868 587.208,569.782 587.295,569.782
587.295,569.696 587.295,569.609 587.295,569.523 587.381,569.437 587.468,569.437 587.468,569.351 587.555,569.351 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
607.34,582.138 607.426,582.138 607.34,582.224 607.34,582.311 607.254,582.396 607.167,582.569 607.081,582.655 607.081,582.742
607.081,582.828 607.081,582.916 606.994,582.828 606.908,583.088 606.822,583.088 606.734,583.002 606.648,583.002
606.562,583.002 606.476,583.002 606.217,582.916 606.13,582.916 606.044,582.916 605.871,582.916 605.871,582.828
605.697,582.828 605.697,582.742 605.525,582.569 605.438,582.569 605.353,582.569 605.094,582.655 605.007,582.655
604.748,582.742 604.575,582.828 604.315,582.828 604.143,582.916 603.97,583.002 603.884,583.002 603.798,583.002
603.711,583.002 603.711,583.088 603.798,583.174 603.711,583.174 603.711,583.261 603.625,583.261 603.625,583.348
603.538,583.348 603.452,583.348 603.365,583.348 603.278,583.434 603.192,583.434 603.192,583.52 603.105,583.52 603.02,583.52
602.934,583.52 602.847,583.606 602.761,583.606 602.674,583.692 602.588,583.692 602.502,583.692 602.415,583.692
602.242,583.779 602.156,583.865 602.069,583.779 602.069,583.692 601.982,583.692 601.982,583.606 601.982,583.52 601.896,583.52
601.896,583.434 601.896,583.348 601.81,583.261 601.81,583.174 601.81,583.088 601.724,583.088 601.724,583.002 601.724,582.916
601.638,582.828 601.638,582.742 601.638,582.655 601.638,582.569 601.638,582.483 601.638,582.396 601.551,582.396
601.551,582.311 601.465,582.224 601.465,582.138 601.378,582.138 601.378,582.051 601.378,581.965 601.378,581.879
601.378,581.791 601.378,581.705 601.378,581.619 601.292,581.533 601.292,581.446 601.292,581.359 601.206,581.188
601.119,580.928 601.119,580.842 601.033,580.842 601.033,580.756 600.945,580.582 600.945,580.496 600.859,580.41
600.859,580.323 600.945,580.323 600.859,580.236 600.773,580.063 600.773,579.978 600.773,579.892 600.687,579.892
600.601,579.719 600.687,579.719 600.687,579.631 600.601,579.373 600.601,579.287 600.601,579.199 600.514,579.199
600.428,579.027 600.342,578.854 600.255,578.682 600.255,578.596 600.169,578.508 600.255,578.508 600.255,578.422
600.255,578.25 600.255,578.164 600.255,578.076 600.169,577.99 600.169,577.903 600.169,577.817 600.169,577.645 600.169,577.472
600.169,577.386 600.082,577.213 599.996,577.127 599.91,577.039 599.91,576.953 599.822,576.867 599.736,576.867 599.649,576.867
599.649,576.78 599.736,576.78 599.736,576.694 599.736,576.607 599.649,576.607 599.649,576.521 599.649,576.436 599.649,576.349
599.563,576.349 599.563,576.263 599.563,576.176 599.563,576.09 599.563,576.004 599.563,575.916 599.478,575.83 599.391,575.744
599.391,575.658 599.391,575.571 599.305,575.571 599.132,575.571 599.132,575.484 599.132,575.398 599.132,575.313
599.046,575.226 598.959,575.14 598.959,575.053 598.959,574.967 598.873,574.879 598.873,574.793 598.873,574.707
598.786,574.535 598.786,574.447 598.786,574.362 598.786,574.275 598.786,574.103 598.786,574.016 598.786,573.93
598.873,573.844 598.873,573.756 598.873,573.67 598.786,573.67 598.786,573.584 598.786,573.498 598.786,573.412 598.7,573.412
598.7,573.324 598.7,573.238 598.7,573.151 598.7,573.065 598.7,572.893 598.613,572.807 598.613,572.72 598.613,572.547
598.7,572.547 598.786,572.547 598.873,572.547 598.959,572.547 599.046,572.547 599.132,572.547 599.218,572.461 599.305,572.461
599.391,572.375 599.478,572.375 599.563,572.287 599.649,572.287 599.736,572.201 599.822,572.201 599.91,572.201
600.082,572.115 600.169,572.115 600.255,572.115 600.342,572.115 600.428,572.115 600.514,572.115 600.601,572.115
600.601,572.028 600.687,572.028 600.773,572.028 600.859,571.942 600.945,571.942 601.033,571.855 601.119,571.684
601.206,571.684 601.292,571.684 601.378,571.684 601.551,571.684 601.551,571.597 601.638,571.597 601.724,571.597
601.81,571.597 601.896,571.597 601.896,571.511 601.982,571.511 602.069,571.424 602.156,571.424 602.242,571.424
602.329,571.338 602.415,571.338 602.502,571.252 602.588,571.164 602.674,571.164 602.674,571.078 602.761,571.078
602.934,571.078 602.934,570.992 603.02,570.992 603.105,570.905 603.192,570.819 603.365,570.732 603.365,570.646
603.452,570.475 603.538,570.475 603.538,570.388 603.625,570.301 603.711,570.215 603.798,570.215 603.798,570.127
603.884,570.127 603.97,570.127 604.057,570.127 604.143,570.127 604.143,570.041 604.229,570.041 604.315,570.041
604.401,570.041 604.575,569.955 604.662,569.955 604.748,569.955 604.834,569.869 604.921,569.869 605.007,569.869
605.007,569.783 605.094,569.783 605.18,569.695 605.266,569.695 605.353,569.609 605.438,569.609 605.438,569.523
605.525,569.523 605.611,569.438 605.871,569.264 606.044,569.178 606.044,569.092 606.13,569.092 606.13,569.178 606.217,569.178
606.217,569.264 606.303,569.351 606.39,569.178 606.476,569.092 606.476,569.004 606.562,568.918 606.648,568.832
606.648,568.746 606.734,568.746 606.822,568.66 606.822,568.573 606.908,568.573 606.822,568.573 606.822,568.486
606.908,568.486 606.994,568.399 607.081,568.313 607.254,568.228 607.254,568.141 607.34,568.055 607.426,568.055
607.513,567.967 607.599,567.967 607.599,567.881 607.686,567.881 607.857,567.795 608.031,567.795 608.118,567.709
608.204,567.709 608.29,567.623 608.377,567.623 608.463,567.623 608.463,567.537 608.55,567.451 608.55,567.363 608.636,567.276
608.636,567.19 608.722,567.19 608.895,567.19 608.981,567.276 609.067,567.363 609.153,567.363 609.24,567.451 609.327,567.451
609.414,567.537 609.5,567.537 609.673,567.623 609.759,567.623 609.846,567.709 609.932,567.709 610.018,567.709 610.104,567.795
610.19,567.881 610.19,567.967 610.19,568.141 610.104,568.313 610.104,568.486 610.19,568.573 610.277,568.746 610.277,568.832
610.45,569.004 610.537,569.092 610.537,569.178 610.623,569.264 610.71,569.351 610.796,569.438 610.882,569.609 610.969,569.695
611.055,569.783 611.142,569.869 611.313,570.127 611.4,570.215 611.4,570.301 611.486,570.388 611.486,570.475 611.574,570.561
611.66,570.646 611.833,570.819 612.006,571.164 612.178,571.338 612.265,571.424 612.265,571.511 612.351,571.597 612.523,571.77
612.609,571.855 612.697,571.942 612.783,572.028 612.956,572.201 613.042,572.375 613.215,572.547 613.302,572.72
613.388,572.807 613.474,572.979 613.561,573.065 613.646,573.151 613.733,573.238 613.733,573.324 613.819,573.324
613.819,573.412 613.993,573.67 614.079,573.756 614.425,574.188 614.598,574.362 614.598,574.447 614.684,574.535 614.77,574.621
614.684,574.707 614.598,574.707 614.598,574.793 614.511,574.793 614.511,574.879 614.425,574.967 614.338,574.967
614.338,575.053 614.252,575.053 614.166,575.053 614.079,575.053 613.993,575.053 613.993,575.14 613.819,575.226
613.646,575.313 613.646,575.398 613.388,575.484 613.129,575.484 613.042,575.484 612.956,575.484 612.87,575.571
612.783,575.571 612.697,575.658 612.609,575.658 612.609,575.744 612.523,575.744 612.438,575.744 612.351,575.83 612.265,575.83
612.178,575.916 612.092,575.916 612.092,576.004 612.178,576.09 612.265,576.09 612.438,576.176 612.523,576.176 612.523,576.263
612.609,576.263 612.697,576.349 612.697,576.436 612.783,576.436 612.783,576.521 612.87,576.607 612.87,576.694 612.956,576.867
612.956,576.953 612.956,577.039 612.956,577.127 612.956,577.213 613.042,577.299 613.042,577.386 613.042,577.472
613.042,577.559 612.87,577.559 612.265,577.386 611.919,577.386 611.66,577.299 611.486,577.299 611.228,577.299 611.142,577.299
611.055,577.299 610.969,577.213 610.882,577.213 610.796,577.213 610.71,577.213 610.623,577.213 610.537,577.213 610.45,577.213
610.363,577.213 610.363,577.299 610.277,577.299 610.19,577.299 610.19,577.386 610.018,577.472 609.759,577.645 609.586,577.731
609.414,577.817 609.327,577.903 608.981,578.25 608.809,578.422 608.722,578.422 608.636,578.508 608.55,578.596 608.204,578.768
608.031,578.854 607.857,578.854 607.857,578.94 607.857,579.027 607.944,579.113 607.944,579.199 608.031,579.373
608.031,579.459 608.031,579.719 608.118,579.805 608.118,579.892 608.204,580.063 608.29,580.236 608.29,580.41 608.377,580.496
608.463,580.582 608.377,580.668 608.204,580.756 608.118,580.756 608.118,580.842 608.031,580.928 607.944,580.928
607.857,580.928 607.771,580.928 607.771,581.015 607.686,581.015 607.599,581.101 607.513,581.101 607.513,581.188
607.599,581.273 607.686,581.273 607.686,581.533 607.686,581.619 607.686,581.791 607.686,581.879 607.771,581.879
607.771,581.965 607.686,581.965 607.599,581.965 607.513,581.965 607.34,582.138 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
623.41,588.186 623.41,588.1 623.324,588.1 623.237,588.1 623.237,588.013 623.237,587.927 623.237,587.84 623.237,587.754
623.237,587.668 623.151,587.58 623.064,587.58 623.064,587.494 622.978,587.494 622.978,587.408 622.892,587.408 622.805,587.321
622.805,587.235 622.719,587.235 622.632,587.235 622.546,587.235 622.46,587.235 622.373,587.235 622.287,587.235 622.2,587.235
622.114,587.235 622.028,587.235 621.941,587.235 621.941,587.321 621.854,587.321 621.768,587.321 621.682,587.408
621.596,587.408 621.509,587.408 621.423,587.408 621.423,587.494 621.336,587.494 621.25,587.494 621.164,587.494 621.164,587.58
621.25,587.668 621.25,587.754 621.25,587.84 621.164,587.84 621.077,587.927 621.077,588.013 621.164,588.186 621.077,588.186
621.077,588.1 620.991,588.1 620.904,588.013 620.818,588.013 620.732,588.013 620.559,587.927 620.472,587.927 620.386,587.927
620.3,587.84 620.213,587.84 620.127,587.84 620.04,587.754 620.04,587.84 619.954,587.84 619.868,587.84 619.781,587.84
619.781,587.754 619.695,587.754 619.608,587.754 619.521,587.754 619.436,587.668 619.349,587.668 619.263,587.668
619.263,587.58 619.176,587.58 619.09,587.494 619.004,587.408 619.004,587.321 618.917,587.321 618.831,587.408 618.658,587.408
618.572,587.494 618.485,587.494 618.398,587.494 618.312,587.494 618.226,587.494 618.14,587.494 618.053,587.494 617.88,587.494
617.794,587.494 617.708,587.494 617.535,587.408 617.535,587.321 617.448,587.321 617.448,587.235 617.362,587.235
617.362,587.148 617.189,587.148 617.016,587.063 617.016,587.148 616.93,587.148 616.844,587.148 616.757,587.148
616.584,587.148 616.498,587.148 616.412,587.148 616.325,587.063 616.325,586.976 616.239,586.976 616.239,586.89 616.152,586.89
616.066,586.976 615.979,587.063 615.893,587.063 615.807,587.063 615.807,587.148 615.634,587.235 615.548,587.408
615.461,587.494 615.375,587.494 615.375,587.58 615.375,587.668 615.288,587.668 615.202,587.754 615.116,587.84 615.029,587.927
614.943,587.927 614.855,587.927 614.943,587.927 614.943,588.013 614.855,588.013 614.77,587.927 614.684,588.013
614.684,587.927 614.597,587.927 614.511,588.013 614.338,588.013 614.165,588.1 613.906,588.1 613.733,588.186 613.646,588.186
613.646,588.271 613.56,588.271 613.474,588.271 613.301,588.186 613.215,588.186 613.042,588.186 612.869,588.1 612.783,588.013
612.696,587.927 612.61,587.84 612.523,587.754 612.437,587.668 612.61,587.58 612.696,587.58 612.783,587.494 612.869,587.494
612.869,587.408 612.956,587.408 613.042,587.321 613.128,587.408 613.301,587.408 613.388,587.408 613.388,587.321
613.474,587.494 613.56,587.408 613.646,587.408 613.646,587.321 613.733,587.321 613.733,587.235 613.733,587.063 613.82,587.063
613.82,586.976 613.733,586.976 613.733,586.89 613.646,586.89 613.56,586.804 613.474,586.631 613.388,586.457 613.215,586.371
613.042,586.457 612.956,586.543 612.869,586.631 612.783,586.717 612.523,586.804 612.351,586.89 612.092,586.976
612.005,587.063 611.919,587.063 611.832,587.063 611.746,587.063 611.66,587.063 611.66,586.976 611.573,586.976 611.573,587.063
611.487,587.063 611.487,587.148 611.4,587.235 611.4,587.321 611.228,587.408 611.141,587.494 611.055,587.58 610.882,587.668
610.623,587.58 610.45,587.494 610.364,587.494 610.277,587.494 610.364,587.494 610.364,587.408 610.364,587.321 610.45,587.321
610.45,587.235 610.45,587.148 610.45,587.063 610.45,586.976 610.45,586.89 610.45,586.804 610.45,586.631 610.45,586.285
610.623,586.198 610.536,586.111 610.536,586.025 610.45,586.025 610.45,585.939 610.364,585.853 610.277,585.68 610.104,585.508
610.191,585.508 610.191,585.42 610.191,585.334 610.191,585.248 610.104,585.248 610.104,585.162 610.191,585.162
610.277,585.162 610.277,585.076 610.191,584.988 610.104,584.902 610.018,584.902 610.018,584.815 609.845,584.729
609.759,584.729 609.759,584.644 609.672,584.644 609.672,584.557 609.672,584.471 609.586,584.383 609.5,584.297 609.413,584.297
609.24,584.125 609.154,584.125 609.068,584.039 608.98,583.951 608.895,583.865 608.808,583.865 608.722,583.779 608.636,583.779
608.549,583.692 608.463,583.692 608.29,583.606 608.204,583.52 608.117,583.434 608.031,583.434 607.944,583.348 607.771,583.348
607.685,583.261 607.599,583.261 607.512,583.261 607.426,583.261 607.34,583.174 607.167,583.174 607.08,583.174 606.994,583.174
606.908,583.088 606.994,582.828 607.08,582.916 607.08,582.828 607.08,582.742 607.08,582.655 607.167,582.569 607.253,582.396
607.34,582.311 607.34,582.224 607.426,582.138 607.34,582.138 607.512,581.965 607.599,581.965 607.685,581.965 607.771,581.965
607.771,581.879 607.685,581.879 607.685,581.791 607.685,581.619 607.685,581.533 607.685,581.273 607.599,581.273
607.512,581.188 607.512,581.101 607.599,581.101 607.685,581.015 607.771,581.015 607.771,580.928 607.858,580.928
607.944,580.928 608.031,580.928 608.117,580.842 608.117,580.756 608.204,580.756 608.376,580.668 608.463,580.582
608.376,580.496 608.29,580.41 608.29,580.236 608.204,580.063 608.117,579.892 608.117,579.805 608.031,579.719 608.031,579.459
608.031,579.373 607.944,579.199 607.944,579.113 607.858,579.027 607.858,578.94 607.858,578.854 608.031,578.854
608.204,578.768 608.549,578.596 608.636,578.508 608.722,578.422 608.808,578.422 608.98,578.25 609.327,577.903 609.413,577.817
609.586,577.731 609.759,577.645 610.018,577.472 610.191,577.386 610.191,577.299 610.277,577.299 610.364,577.299
610.364,577.213 610.45,577.213 610.536,577.213 610.623,577.213 610.709,577.213 610.796,577.213 610.882,577.213
610.968,577.213 611.055,577.299 611.141,577.299 611.228,577.299 611.487,577.299 611.66,577.299 611.919,577.386
612.264,577.386 612.869,577.559 613.042,577.559 613.042,577.472 613.042,577.386 613.042,577.299 612.956,577.213
612.956,577.127 612.956,577.039 612.956,576.953 612.956,576.867 612.869,576.694 612.869,576.607 612.783,576.521
612.783,576.436 612.696,576.436 612.696,576.349 612.61,576.263 612.523,576.263 612.523,576.176 612.437,576.176 612.264,576.09
612.178,576.09 612.092,576.004 612.092,575.916 612.178,575.916 612.264,575.83 612.351,575.83 612.437,575.744 612.523,575.744
612.61,575.744 612.61,575.658 612.696,575.658 612.783,575.571 612.869,575.571 612.956,575.484 613.042,575.484 613.128,575.484
613.388,575.484 613.646,575.398 613.646,575.312 613.82,575.226 613.992,575.14 613.992,575.053 614.079,575.053 614.165,575.053
614.252,575.053 614.338,575.053 614.338,574.967 614.424,574.967 614.511,574.879 614.511,574.793 614.597,574.793
614.597,574.707 614.684,574.707 614.77,574.621 614.855,574.793 614.943,574.879 615.029,574.967 615.029,575.053 615.116,575.14
615.202,575.14 615.202,575.226 615.288,575.312 615.375,575.398 615.375,575.484 615.548,575.658 615.634,575.744
615.893,576.004 615.893,576.09 615.893,576.176 615.979,576.176 615.979,576.263 616.152,576.436 616.239,576.521
616.325,576.607 616.412,576.607 616.412,576.694 616.498,576.694 616.584,576.78 616.584,576.953 616.844,577.213
616.844,577.299 617.016,577.559 617.103,577.559 617.016,577.645 616.844,577.731 616.757,577.731 616.671,577.731
616.671,577.817 616.584,577.903 616.498,577.99 616.412,578.076 616.325,578.164 616.325,578.25 616.412,578.25 616.412,578.336
616.325,578.422 616.325,578.508 616.325,578.596 616.412,578.682 616.412,578.768 616.412,578.854 616.498,578.94
616.498,579.027 616.498,579.113 616.584,579.287 616.584,579.373 616.671,579.459 616.671,579.545 616.671,579.631
616.757,579.719 616.757,579.805 616.671,579.805 616.584,579.805 616.584,579.892 616.584,579.978 616.584,580.063
616.671,580.063 616.757,580.15 616.757,580.236 616.844,580.323 616.93,580.41 616.93,580.496 617.016,580.496 617.016,580.582
617.103,580.582 617.189,580.582 617.276,580.582 617.276,580.496 617.362,580.496 617.362,580.41 617.362,580.323
617.362,580.236 617.362,580.15 617.362,580.063 617.276,580.063 617.276,579.978 617.362,579.978 617.362,579.892
617.448,579.892 617.448,579.978 617.535,579.978 617.535,579.892 617.535,579.805 617.621,579.805 617.621,579.892
617.708,579.892 617.708,579.805 617.794,579.805 617.88,579.805 617.967,579.805 617.967,579.892 618.053,579.892
618.053,579.805 618.14,579.805 618.14,579.892 618.053,579.892 618.14,579.892 618.226,579.892 618.312,579.892 618.312,579.978
618.312,579.892 618.398,579.892 618.398,579.805 618.485,579.805 618.572,579.805 618.658,579.805 618.572,579.805
618.572,579.892 618.658,579.892 618.744,579.892 618.744,579.978 618.744,579.892 618.744,579.978 618.831,579.978
618.831,579.892 619.004,580.063 619.09,580.15 619.09,580.236 619.176,580.323 619.263,580.323 619.263,580.41 619.349,580.496
619.349,580.582 619.436,580.668 619.521,580.668 619.521,580.756 619.608,580.756 619.608,580.842 619.695,580.842
619.695,580.928 619.781,580.928 619.781,581.015 619.868,581.015 619.868,581.101 619.954,581.188 620.04,581.273
620.127,581.359 620.213,581.446 620.213,581.533 620.3,581.619 620.386,581.705 620.386,581.791 620.472,581.791 620.472,581.879
620.559,582.138 620.645,582.138 620.645,582.224 620.732,582.311 620.818,582.396 620.818,582.483 620.904,582.483
620.904,582.569 620.991,582.569 621.077,582.742 621.164,582.828 621.164,582.916 621.25,583.002 621.336,583.002
621.336,583.088 621.423,583.088 621.423,583.174 621.509,583.261 621.509,583.348 621.596,583.434 621.682,583.52
621.768,583.606 621.854,583.692 621.854,583.779 621.941,583.865 622.028,583.865 622.028,583.951 622.114,584.039 622.2,584.125
622.2,584.211 622.287,584.297 622.46,584.471 622.46,584.557 622.546,584.557 622.546,584.644 622.632,584.729 622.719,584.815
622.805,584.988 622.978,585.248 623.064,585.334 623.237,585.508 623.324,585.68 623.41,585.767 623.496,585.853 623.669,586.198
623.842,586.371 624.015,586.543 623.842,586.976 623.842,587.063 623.928,587.063 623.928,587.148 623.842,587.235
623.842,587.321 623.842,587.408 623.756,587.494 623.669,587.668 623.496,587.927 623.41,588.1 623.41,588.186 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
622.373,561.229 622.373,561.314 622.373,561.402 622.459,561.488 622.459,561.574 622.546,561.574 622.632,561.574
622.719,561.574 622.805,561.574 622.892,561.574 622.979,561.574 622.892,561.661 622.892,561.747 622.892,561.834
622.805,561.92 622.805,562.093 622.892,562.179 622.979,562.179 623.064,562.179 623.237,562.266 623.323,562.266 623.41,562.352
623.41,562.439 623.41,562.352 623.496,562.266 623.583,562.007 623.669,561.92 623.842,561.661 624.016,561.488 624.102,561.488
624.447,561.488 624.36,561.834 624.274,562.007 624.102,562.352 624.102,562.525 624.016,562.611 624.274,562.611
624.274,562.697 624.447,562.697 624.706,562.783 624.879,562.871 625.139,562.957 625.312,562.957 625.656,563.13
626.521,563.389 626.693,563.389 626.779,563.475 626.952,563.563 627.039,563.648 627.298,563.734 627.384,563.734
627.644,563.82 627.73,563.906 627.73,563.994 627.816,563.994 627.903,563.994 627.903,564.08 627.903,564.167 627.903,564.253
627.903,564.339 627.816,564.339 627.816,564.426 627.903,564.426 627.989,564.512 627.989,564.6 627.989,564.686 628.075,564.771
628.075,564.857 628.075,564.943 628.248,564.857 628.335,565.117 628.162,565.29 628.075,565.29 628.075,565.376 628.162,565.376
628.248,565.463 628.162,565.463 628.162,565.549 628.075,565.722 628.162,565.722 628.162,565.809 628.248,565.809
628.335,565.809 628.421,565.809 628.421,565.895 628.507,565.98 628.507,566.066 628.507,566.24 628.594,566.327 628.594,566.413
628.939,566.24 629.112,566.586 629.199,566.759 629.285,566.845 629.285,566.931 629.371,567.018 629.458,567.104
629.458,567.191 629.544,567.191 629.544,567.277 629.717,567.449 629.803,567.449 629.891,567.449 630.063,567.623
630.149,567.623 630.149,567.709 630.235,567.709 630.235,567.795 630.235,567.882 630.322,567.882 630.322,567.968
630.408,568.055 630.495,568.055 630.495,568.141 630.581,568.141 630.667,568.141 630.754,568.141 630.84,568.141 630.84,568.227
630.84,568.314 630.84,568.4 630.754,568.4 630.754,568.486 630.667,568.572 630.667,568.658 630.667,568.746 630.754,568.746
630.667,568.746 630.667,568.832 630.581,568.919 630.667,568.919 630.581,568.919 630.581,569.005 630.581,569.091
630.495,569.091 630.495,569.178 630.495,569.264 630.408,569.264 630.408,569.352 630.408,569.438 630.322,569.523
630.322,569.609 630.322,569.695 630.322,569.783 630.322,569.869 630.235,569.869 630.235,569.955 630.235,570.042
630.235,570.128 630.149,570.128 630.149,570.042 630.149,570.215 630.063,570.301 630.063,570.387 629.977,570.475
629.891,570.646 629.803,570.646 629.717,570.732 629.717,570.818 629.631,570.818 629.631,570.992 629.544,570.992
629.544,571.079 629.458,571.079 629.458,571.165 629.458,571.251 629.371,571.338 629.285,571.338 629.199,571.338
629.199,571.424 629.112,571.424 629.199,571.511 629.371,571.684 629.458,571.855 629.544,572.029 629.631,572.115
629.631,572.202 629.717,572.288 629.803,572.375 629.544,572.547 629.371,572.634 629.285,572.634 629.285,572.807
629.285,572.893 629.285,572.979 629.371,573.066 629.371,573.152 629.371,573.238 629.371,573.324 629.458,573.324
629.458,573.411 629.458,573.498 629.458,573.584 629.458,573.671 629.458,573.757 629.371,573.843 629.371,573.93
629.285,574.016 629.285,574.104 629.199,574.275 629.112,574.361 628.939,574.447 628.939,574.535 628.854,574.535
628.854,574.621 628.68,574.621 628.421,574.88 628.421,574.794 628.335,574.707 628.248,574.535 628.248,574.447 628.162,574.361
628.162,574.275 628.162,574.189 628.162,574.104 628.162,574.016 628.162,573.843 628.075,573.757 627.989,573.671
627.989,573.584 627.903,573.498 627.816,573.411 627.816,573.324 627.73,573.411 627.73,573.584 627.558,574.016 627.384,574.361
627.211,574.794 627.211,574.88 627.211,574.967 627.211,575.053 627.298,575.313 627.298,575.398 627.298,575.484
627.384,575.484 627.384,575.57 627.384,575.658 627.471,575.744 627.471,575.831 627.558,575.831 627.558,575.917
627.471,576.003 627.471,576.09 627.471,576.176 627.471,576.263 627.471,576.35 627.384,576.35 627.384,576.436 627.471,576.436
627.471,576.521 627.471,576.607 627.384,576.695 627.644,576.695 627.644,576.781 627.644,576.695 627.644,576.781
627.644,576.954 627.73,576.954 627.816,576.954 627.73,576.954 627.73,577.04 627.558,577.299 627.471,577.299 627.384,577.213
627.298,577.127 627.298,577.213 627.211,577.299 627.125,577.299 627.125,577.386 627.039,577.386 626.952,577.472
626.866,577.472 626.866,577.559 626.779,577.559 626.779,577.645 626.779,577.73 626.693,577.818 626.779,577.818
626.693,577.818 626.607,577.818 626.607,577.904 626.607,577.99 626.607,578.077 626.693,578.077 626.693,578.25 626.693,578.423
626.693,578.509 626.607,578.509 626.693,578.509 626.607,578.595 626.607,578.682 626.521,578.768 626.435,578.682
626.348,578.768 626.348,578.855 626.348,579.027 626.435,579.199 626.435,579.287 626.435,579.373 626.348,579.373
626.261,579.373 626.175,579.373 626.175,579.546 626.175,579.632 626.175,579.719 626.088,579.719 626.002,579.805
626.002,579.891 625.915,579.891 625.915,579.979 625.915,580.064 625.915,580.15 625.915,580.236 625.829,580.236
625.743,580.236 625.743,580.15 625.656,580.15 625.57,580.064 625.483,580.064 625.397,580.064 625.397,580.15 625.312,580.15
625.225,580.15 625.139,580.15 625.051,580.15 625.051,580.236 624.965,580.322 624.965,580.41 624.792,580.496 624.792,580.583
624.706,580.583 624.706,580.669 624.619,580.669 624.533,580.669 624.447,580.755 624.36,580.755 624.36,580.842 624.274,580.842
624.274,580.928 624.188,580.928 624.188,581.015 624.102,581.015 624.016,581.102 624.016,581.188 624.016,581.273
624.016,581.359 624.016,581.533 624.016,581.619 623.928,581.619 623.928,581.706 623.842,581.706 623.755,581.792
623.669,581.792 623.583,581.879 623.496,581.879 623.496,581.965 623.41,581.965 623.323,581.965 623.237,581.879
623.237,581.965 623.237,582.051 623.237,582.138 623.237,582.225 623.151,582.225 623.151,582.311 623.151,582.225
623.064,582.225 623.064,582.311 623.064,582.396 622.979,582.482 622.979,582.57 622.892,582.656 622.892,582.742
622.979,582.742 622.979,582.829 622.892,582.829 622.805,582.829 622.719,582.829 622.632,582.829 622.546,582.915
622.459,582.915 622.373,582.915 622.287,582.915 622.287,583.002 622.2,583.002 622.2,582.915 622.2,582.829 622.2,582.742
622.114,582.742 622.027,582.829 621.941,582.829 621.855,582.915 621.769,582.829 621.683,582.742 621.596,582.742
621.596,582.829 621.509,582.829 621.423,582.915 621.336,583.002 621.25,583.002 621.163,582.915 621.163,582.829
621.077,582.742 620.991,582.57 620.904,582.57 620.904,582.482 620.818,582.482 620.818,582.396 620.731,582.311 620.646,582.225
620.646,582.138 620.56,582.138 620.473,581.879 620.473,581.792 620.386,581.792 620.386,581.706 620.299,581.619
620.213,581.533 620.213,581.447 620.127,581.359 620.04,581.273 619.954,581.188 619.867,581.102 619.867,581.015
619.781,581.015 619.781,580.928 619.695,580.928 619.695,580.842 619.608,580.842 619.608,580.755 619.522,580.755
619.522,580.669 619.436,580.669 619.35,580.583 619.35,580.496 619.264,580.41 619.264,580.322 619.176,580.322 619.09,580.236
619.09,580.15 619.003,580.064 618.831,579.891 618.831,579.979 618.744,579.979 618.744,579.891 618.744,579.979 618.744,579.891
618.658,579.891 618.571,579.891 618.571,579.805 618.658,579.805 618.571,579.805 618.485,579.805 618.399,579.805
618.399,579.891 618.313,579.891 618.313,579.979 618.313,579.891 618.227,579.891 618.14,579.891 618.053,579.891 618.14,579.891
618.14,579.805 618.053,579.805 618.053,579.891 617.967,579.891 617.967,579.805 617.88,579.805 617.794,579.805 617.707,579.805
617.707,579.891 617.621,579.891 617.621,579.805 617.535,579.805 617.535,579.891 617.535,579.979 617.448,579.979
617.448,579.891 617.362,579.891 617.362,579.979 617.275,579.979 617.275,580.064 617.362,580.064 617.362,580.15
617.362,580.236 617.362,580.322 617.362,580.41 617.362,580.496 617.275,580.496 617.275,580.583 617.189,580.583
617.104,580.583 617.017,580.583 617.017,580.496 616.93,580.496 616.93,580.41 616.843,580.322 616.757,580.236 616.757,580.15
616.671,580.064 616.584,580.064 616.584,579.979 616.584,579.891 616.584,579.805 616.671,579.805 616.757,579.805
616.757,579.719 616.671,579.632 616.671,579.546 616.671,579.459 616.584,579.373 616.584,579.287 616.498,579.113
616.498,579.027 616.498,578.941 616.411,578.855 616.411,578.768 616.411,578.682 616.325,578.595 616.325,578.509
616.325,578.423 616.411,578.336 616.411,578.25 616.325,578.25 616.325,578.163 616.411,578.077 616.498,577.99 616.584,577.904
616.671,577.818 616.671,577.73 616.757,577.73 616.843,577.73 617.017,577.645 617.104,577.559 617.017,577.559 616.843,577.299
616.843,577.213 616.584,576.954 616.584,576.781 616.498,576.695 616.411,576.695 616.411,576.607 616.325,576.607
616.239,576.521 616.152,576.436 615.979,576.263 615.979,576.176 615.894,576.176 615.894,576.09 615.894,576.003
615.634,575.744 615.547,575.658 615.375,575.484 615.375,575.398 615.288,575.313 615.202,575.227 615.202,575.139
615.115,575.139 615.029,575.053 615.029,574.967 614.943,574.88 614.856,574.794 614.771,574.621 614.684,574.535
614.598,574.447 614.598,574.361 614.424,574.189 614.079,573.757 613.992,573.671 613.819,573.411 613.819,573.324
613.733,573.324 613.733,573.238 613.647,573.152 613.561,573.066 613.475,572.979 613.387,572.807 613.301,572.72
613.215,572.547 613.042,572.375 612.955,572.202 612.783,572.029 612.696,571.943 612.61,571.855 612.523,571.77 612.352,571.597
612.265,571.511 612.265,571.424 612.178,571.338 612.005,571.165 611.832,570.818 611.659,570.646 611.573,570.561
611.487,570.475 611.487,570.387 611.4,570.301 611.4,570.215 611.314,570.128 611.142,569.869 611.055,569.783 610.968,569.695
610.882,569.609 610.795,569.438 610.709,569.352 610.623,569.264 610.536,569.178 610.536,569.091 610.45,569.005
610.277,568.832 610.277,568.746 610.191,568.572 610.104,568.486 610.104,568.314 610.191,568.141 610.191,567.968
610.277,567.882 610.363,567.882 610.363,567.968 610.45,567.968 610.45,567.882 610.536,567.968 610.623,567.968 610.709,567.968
610.709,568.055 610.795,568.055 610.882,568.055 610.968,568.055 611.055,568.055 611.228,568.055 611.4,568.055 611.487,567.968
611.573,567.968 611.659,567.882 611.746,567.882 611.832,567.882 611.919,567.795 612.005,567.795 612.005,567.882
612.091,567.882 612.178,567.882 612.265,567.795 612.352,567.795 612.438,567.795 612.523,567.709 612.61,567.623
612.783,567.536 612.955,567.449 613.042,567.449 613.128,567.449 613.215,567.449 613.301,567.449 613.387,567.449
613.475,567.449 613.475,567.363 613.561,567.363 613.647,567.363 613.733,567.363 613.819,567.363 613.733,567.363
613.733,567.277 613.819,567.191 613.819,567.104 613.819,567.018 613.906,566.931 613.906,566.845 613.906,566.759
613.992,566.759 614.079,566.759 614.165,566.759 614.251,566.759 614.338,566.672 614.424,566.672 614.424,566.586
614.424,566.499 614.424,566.413 614.598,566.327 614.771,566.327 614.856,566.413 614.943,566.413 615.029,566.24 615.115,566.24
615.115,566.327 615.202,566.327 615.202,566.413 615.288,566.413 615.288,566.499 615.288,566.586 615.375,566.586
615.375,566.672 615.461,566.672 615.547,566.672 615.634,566.672 615.634,566.759 615.721,566.759 615.808,566.586
615.808,566.499 615.894,566.413 615.979,566.499 615.979,566.413 616.066,566.413 616.152,566.327 616.152,566.24
616.239,566.066 616.239,565.895 616.325,565.809 616.325,565.722 616.411,565.635 616.411,565.549 616.411,565.463
616.411,565.376 616.411,565.29 616.498,564.771 616.584,564.339 616.498,564.339 616.498,564.253 616.411,564.253
616.411,564.167 616.411,564.08 616.498,564.08 616.498,563.994 616.498,564.08 616.584,564.08 616.584,563.994 616.584,564.08
616.671,564.08 616.757,564.08 616.757,564.167 616.93,564.167 616.93,564.08 617.017,564.08 617.104,563.994 617.189,563.994
617.189,563.906 617.275,563.906 617.362,563.906 617.448,563.906 617.448,563.82 617.535,563.82 617.621,563.906 617.707,563.82
617.794,563.82 617.794,563.734 617.88,563.734 617.967,563.648 617.88,563.563 617.967,563.563 618.053,563.563 618.053,563.475
618.14,563.475 618.227,563.475 618.313,563.475 618.399,563.563 618.485,563.563 618.571,563.475 618.744,563.389
618.831,563.389 618.831,563.303 618.917,563.303 619.003,563.216 619.09,563.216 619.09,563.303 619.09,563.389 619.09,563.475
619.09,563.563 619.176,563.648 619.264,563.734 619.35,563.734 619.35,563.648 619.436,563.648 619.436,563.563 619.608,563.475
619.695,563.389 619.867,563.303 619.867,563.216 620.04,563.13 620.127,563.043 620.213,563.216 620.386,563.13 620.646,562.871
620.818,562.783 620.904,562.871 620.991,562.957 621.077,562.871 621.25,562.783 621.423,562.611 621.25,562.179 621.163,562.007
621.077,561.834 621.25,561.747 621.423,561.92 621.509,561.834 621.509,561.747 621.683,561.574 621.769,561.574 621.941,561.574
621.941,561.661 622.027,561.661 622.114,561.661 622.114,561.574 622.027,561.488 622.027,561.402 621.941,561.229
622.114,561.229 622.2,561.229 622.373,561.229 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
637.925,608.057 637.925,608.144 637.839,608.144 637.839,608.23 637.752,608.23 637.666,608.23 637.493,608.23 637.407,608.23
637.32,608.23 637.234,608.316 637.147,608.316 637.062,608.316 636.975,608.316 636.888,608.316 636.802,608.23 636.715,608.23
636.629,608.144 636.629,608.057 636.543,608.057 636.543,607.971 636.456,607.971 636.37,607.885 636.283,607.885
636.283,607.799 636.197,607.711 636.111,607.711 636.024,607.711 635.938,607.711 635.765,607.711 635.679,607.711
635.592,607.711 635.506,607.799 635.333,607.799 635.247,607.799 634.815,607.799 634.729,607.799 634.643,607.799
634.555,607.799 634.469,607.799 634.383,607.711 634.296,607.711 634.21,607.711 634.123,607.711 634.037,607.711
633.951,607.711 633.864,607.711 633.778,607.711 633.778,607.799 633.691,607.799 633.691,607.885 633.605,607.971
633.605,608.057 633.52,608.144 633.432,608.23 633.346,608.23 633.346,608.316 633.259,608.316 633.173,608.403 633.087,608.403
633.087,608.489 633,608.489 633,608.575 633,608.662 632.914,608.748 632.914,608.836 632.914,608.922 632.827,608.922
632.827,609.008 632.827,609.094 632.741,609.094 632.741,609.18 632.741,609.268 632.655,609.268 632.568,609.354
632.482,609.354 632.482,609.439 632.482,609.526 632.482,609.612 632.396,609.612 632.309,609.699 632.223,609.699
632.136,609.785 632.05,609.871 631.618,609.785 631.531,609.785 631.445,609.785 631.445,609.699 631.359,609.699
631.359,609.785 631.359,609.871 631.359,610.045 631.272,610.045 631.187,610.045 631.099,609.959 631.013,609.959
630.927,609.959 630.84,609.871 630.754,609.871 630.667,609.871 630.667,609.785 630.495,609.699 630.408,609.699
630.322,609.612 630.322,609.699 630.149,609.785 630.063,609.785 629.977,609.785 629.803,609.785 629.717,609.785
629.717,609.699 629.717,609.612 629.803,609.612 629.803,609.526 629.89,609.526 629.89,609.439 629.977,609.439 630.063,609.354
630.149,609.268 630.063,609.18 630.149,609.008 630.235,608.922 630.408,608.662 630.581,608.489 630.667,608.403
630.754,608.316 630.754,608.23 630.84,608.23 630.84,608.144 630.84,607.971 630.754,607.885 630.754,607.711 630.754,607.625
630.754,607.539 630.754,607.452 630.754,607.366 630.754,607.193 630.754,607.107 630.754,606.848 630.754,606.762
630.754,606.676 630.754,606.588 630.754,606.502 630.754,606.415 630.754,606.329 630.84,606.415 630.927,606.415
631.013,606.415 631.099,606.415 631.099,606.329 631.099,606.243 631.013,606.07 631.013,605.897 630.927,605.725 630.84,605.725
630.754,605.725 630.667,605.551 630.581,605.465 630.581,605.379 630.581,605.293 630.495,605.206 630.581,605.119
630.581,605.033 630.667,605.033 630.667,604.947 630.754,604.947 630.754,604.86 630.84,604.86 630.84,604.774 630.84,604.688
630.84,604.602 630.84,604.516 630.927,604.428 630.927,604.342 631.013,604.256 631.013,604.17 630.927,604.256 630.84,604.256
630.754,604.256 630.581,604.256 630.408,604.256 630.322,604.256 630.235,604.256 630.149,604.256 630.063,604.256
630.063,604.17 630.063,604.084 629.977,603.996 629.977,603.91 629.977,603.823 629.89,603.823 629.89,603.737 629.89,603.651
629.803,603.564 629.803,603.479 629.803,603.391 629.803,603.305 629.89,603.219 629.89,603.133 629.89,603.047 629.89,602.959
629.977,602.873 630.063,602.873 630.063,602.787 630.149,602.7 630.149,602.614 630.149,602.527 630.063,602.527 629.977,602.441
629.89,602.441 629.717,602.355 629.631,602.269 629.544,602.269 629.544,602.182 629.544,602.01 629.544,601.836 629.544,601.75
629.458,601.577 629.458,601.491 629.458,601.318 629.371,601.231 629.371,601.146 629.371,601.059 629.285,600.973
629.285,600.627 629.285,600.54 629.199,600.54 629.199,600.454 629.199,600.367 629.112,600.367 629.112,600.281 629.112,600.108
629.112,600.022 629.026,599.764 629.199,599.676 629.112,599.676 629.112,599.504 629.112,599.418 629.199,599.418
629.285,599.331 629.544,599.158 629.631,599.071 629.977,598.813 630.063,598.899 630.149,598.813 630.235,598.813
630.149,598.727 630.235,598.639 630.322,598.639 630.408,598.639 630.408,598.553 630.495,598.553 630.581,598.553
630.581,598.467 630.667,598.381 630.754,598.295 630.754,598.381 630.84,598.381 630.927,598.381 630.927,598.295
631.013,598.295 631.013,598.207 631.013,598.121 630.927,598.121 630.927,598.035 631.013,597.948 631.013,597.862
631.099,597.862 631.099,597.775 631.099,597.689 631.099,597.604 631.187,597.604 631.187,597.43 631.272,597.344
631.272,597.258 631.272,597.172 631.359,597.172 631.359,597.084 631.359,596.998 631.445,596.998 631.445,596.911
631.445,596.825 631.531,596.739 631.618,596.739 631.618,596.652 631.704,596.652 631.791,596.566 631.791,596.479
631.791,596.307 631.877,596.307 631.877,596.221 631.877,596.135 631.791,596.135 631.704,596.047 631.618,596.047
631.618,595.961 631.531,595.875 631.618,595.875 631.618,595.788 631.704,595.702 631.704,595.615 631.791,595.615
631.791,595.529 631.877,595.443 631.877,595.356 631.963,595.184 632.05,595.098 632.05,595.012 632.136,595.012 632.136,594.924
632.136,594.838 632.136,594.752 632.136,594.665 632.223,594.665 632.223,594.579 632.223,594.492 632.223,594.406
632.309,594.319 632.309,594.233 632.309,594.147 632.309,593.975 632.309,593.887 632.309,593.715 632.309,593.629
632.309,593.543 632.309,593.37 632.309,593.283 632.396,592.938 632.396,592.592 632.396,592.506 632.396,592.42 632.396,592.332
632.396,592.246 632.482,592.246 632.482,592.159 632.482,592.073 632.482,591.987 632.568,591.9 632.568,591.814 632.655,591.814
632.741,591.728 632.741,591.641 632.827,591.555 632.914,591.555 633,591.469 633.087,591.469 633.087,591.383 633.173,591.383
633.259,591.383 633.432,591.295 633.52,591.295 633.605,591.295 633.691,591.295 633.778,591.295 633.864,591.295
633.864,591.555 633.864,591.641 633.864,591.728 633.864,591.641 633.951,591.641 633.951,591.728 633.951,591.814
634.037,591.814 634.123,592.159 634.21,592.246 634.123,592.246 634.123,592.332 634.123,592.42 634.21,592.506 634.037,592.592
634.123,592.678 634.21,592.678 634.21,592.764 634.21,592.852 634.123,592.852 634.037,593.023 633.951,593.023 633.951,593.11
633.864,593.283 633.864,593.455 633.778,593.715 633.778,593.801 633.605,593.801 633.691,593.975 633.691,594.061
633.864,594.061 634.123,594.233 634.296,594.319 634.383,594.319 634.383,594.406 634.469,594.406 634.469,594.492
634.469,594.579 634.555,594.665 634.643,594.752 634.555,594.752 634.643,594.838 634.555,594.838 634.555,594.924
634.469,595.012 634.469,595.098 634.383,595.271 634.037,595.788 634.037,595.875 634.123,595.875 634.296,595.961
634.21,596.047 634.21,596.135 634.21,596.221 634.296,596.307 634.383,596.394 634.296,596.394 634.383,596.479 634.469,596.479
634.469,596.566 634.469,596.652 634.555,596.739 634.469,596.739 634.383,596.825 634.123,596.825 634.037,596.825
634.037,596.911 634.123,596.911 634.21,596.911 634.383,597.084 634.643,597.258 634.901,597.344 635.074,597.516
634.987,597.604 634.987,597.862 634.987,597.948 634.987,598.035 635.074,598.035 635.074,598.121 635.16,598.207 635.16,598.295
635.16,598.381 635.247,598.381 635.419,598.639 635.592,598.813 635.679,598.727 635.765,598.639 635.852,598.467
635.852,598.381 635.938,598.381 635.938,598.553 635.938,598.639 635.938,598.727 635.938,598.813 636.024,598.899
636.197,599.244 636.283,599.418 636.283,599.504 636.283,599.59 636.197,600.022 636.197,600.108 636.197,600.195
636.111,600.281 636.024,600.454 636.024,600.54 635.938,600.54 635.938,600.627 635.852,600.713 635.765,600.799 635.765,600.887
635.765,600.973 635.679,600.973 635.679,601.059 635.679,601.146 635.592,601.231 635.506,601.318 635.419,601.404
635.333,601.491 635.247,601.577 635.16,601.663 635.074,601.75 635.074,601.836 635.074,602.01 634.987,602.096 634.987,602.182
634.987,602.269 635.074,602.269 635.074,602.355 635.074,602.441 635.074,602.527 635.16,602.527 635.247,602.527
635.247,602.614 635.247,602.7 635.247,602.787 635.333,602.787 635.419,602.873 635.419,602.959 635.506,602.959 635.679,603.219
635.765,603.305 635.765,603.391 635.765,603.479 635.852,603.479 635.852,603.564 635.765,603.564 635.852,603.564
635.852,603.651 635.852,603.823 635.938,603.91 635.938,603.996 636.024,603.996 636.024,604.084 636.024,604.17 636.111,604.256
636.111,604.342 636.197,604.516 636.197,604.602 636.197,604.688 636.283,604.774 636.283,604.86 636.283,604.947 636.37,605.033
636.37,605.119 636.37,605.206 636.456,605.379 636.456,605.465 636.543,605.812 636.543,605.983 636.629,606.243 636.629,606.415
636.715,606.415 636.715,606.502 636.802,606.502 636.888,606.588 636.975,606.588 636.975,606.676 636.975,606.762
637.062,606.762 637.062,606.848 637.147,606.934 637.147,607.021 637.234,607.107 637.234,607.193 637.234,607.279
637.234,607.366 637.234,607.452 637.234,607.539 637.32,607.625 637.493,607.539 637.579,607.711 637.579,607.799
637.666,607.799 637.752,607.799 637.752,607.885 637.839,607.885 637.839,607.971 637.752,607.971 637.839,608.057
637.925,608.057 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
641.208,591.555 641.294,591.469 641.381,591.469 641.381,591.383 641.468,591.383 641.555,591.383 641.555,591.297
641.641,591.297 641.727,591.297 641.813,591.297 641.899,591.297 641.986,591.297 642.072,591.297 642.158,591.297
642.245,591.297 642.331,591.383 642.418,591.383 642.504,591.383 642.59,591.469 642.678,591.469 642.764,591.555
642.851,591.555 642.937,591.641 643.022,591.641 643.022,591.729 643.109,591.729 643.109,591.814 643.195,591.901
643.195,591.987 643.195,592.073 643.282,592.073 643.195,592.073 643.195,592.16 643.282,592.16 643.282,592.246 643.282,592.333
643.282,592.419 643.282,592.506 643.282,592.678 643.282,592.852 643.195,593.024 643.195,593.11 643.195,593.197
643.195,593.283 643.195,593.369 643.195,593.455 643.195,593.629 643.195,593.715 643.195,593.801 643.195,593.889
643.282,594.061 643.282,594.146 643.195,594.146 643.109,594.146 643.022,594.233 642.937,594.233 642.851,594.233 642.59,594.32
642.418,594.406 642.331,594.406 642.331,594.32 642.245,594.32 642.158,594.32 642.158,594.233 642.072,594.233 641.986,594.32
642.072,594.406 641.986,594.493 642.072,594.665 641.813,594.752 641.813,594.838 641.727,594.838 641.555,594.838
641.555,594.752 641.468,594.752 641.468,594.838 641.381,594.838 641.381,594.752 641.294,594.752 641.294,594.665
641.208,594.752 641.035,594.838 640.949,594.838 640.862,594.926 640.776,594.926 640.69,594.926 640.69,595.012 640.862,595.184
640.862,595.27 640.776,595.27 640.69,595.27 640.604,595.27 640.604,595.356 640.604,595.27 640.431,595.27 640.518,595.356
640.518,595.442 640.604,595.442 640.604,595.529 640.604,595.616 640.518,595.616 640.518,595.702 640.518,595.789
640.604,595.789 640.604,595.875 640.604,595.961 640.604,596.049 640.604,596.135 640.604,596.221 640.604,596.307
640.604,596.393 640.604,596.48 640.604,596.566 640.518,596.653 640.518,596.739 640.518,596.653 640.518,596.739
640.518,596.825 640.518,596.912 640.431,596.998 640.604,597.172 640.69,597.43 640.69,597.949 640.69,598.121 640.776,598.381
640.776,598.553 640.776,598.641 640.776,598.727 640.776,598.813 640.776,598.899 640.862,598.985 640.862,599.072
640.949,599.072 640.862,599.158 640.949,599.244 640.949,599.33 641.035,599.33 641.122,599.33 641.208,599.417 641.294,599.504
641.381,599.59 641.468,599.678 641.468,599.764 641.555,599.85 641.555,599.936 641.555,600.021 641.641,600.109 641.641,600.195
641.641,600.281 641.641,600.368 641.641,600.454 641.641,600.541 641.641,600.627 641.641,600.713 641.555,600.887
641.555,600.973 641.555,601.059 641.641,601.145 641.727,601.145 641.813,601.318 641.899,601.318 641.986,601.405
642.072,601.405 642.072,601.491 641.986,601.664 641.899,601.75 641.899,601.838 641.813,601.924 641.727,602.096
641.727,602.182 641.641,602.182 641.641,602.268 641.555,602.355 641.555,602.441 641.468,602.441 641.381,602.441
641.294,602.355 641.208,602.355 641.208,602.441 641.122,602.441 641.035,602.528 640.776,602.614 640.69,602.701
640.604,602.701 640.604,602.614 640.518,602.614 640.431,602.528 640.345,602.441 640.171,602.355 640.171,602.441
640.085,602.528 639.998,602.614 639.826,602.787 639.739,602.787 639.739,602.873 639.653,602.96 639.653,603.047
639.566,603.133 639.566,603.219 639.566,603.305 639.566,603.393 639.48,603.479 639.48,603.565 639.48,603.737 639.48,603.824
639.48,603.91 639.48,603.996 639.395,604.082 639.395,604.169 639.48,604.169 639.566,604.43 639.566,604.516 639.566,604.688
639.566,604.774 639.566,604.861 639.48,604.861 639.48,604.947 639.395,605.033 639.395,605.119 639.395,605.206 639.308,605.293
639.308,605.379 639.308,605.465 639.222,605.553 639.135,605.553 639.049,605.639 638.962,605.725 638.875,605.725
638.789,605.811 638.702,605.811 638.616,605.811 638.53,605.811 638.53,605.896 638.443,605.983 638.271,606.329 638.271,606.416
638.271,606.502 638.271,606.59 638.271,606.676 638.357,606.762 638.357,606.848 638.357,606.934 638.357,607.02 638.271,607.02
638.271,607.106 638.185,607.193 638.185,607.28 638.099,607.539 638.012,607.885 637.926,607.971 637.926,608.057
637.838,608.057 637.752,607.971 637.838,607.971 637.838,607.885 637.752,607.885 637.752,607.799 637.666,607.799
637.579,607.799 637.579,607.713 637.493,607.539 637.32,607.625 637.234,607.539 637.234,607.453 637.234,607.366 637.234,607.28
637.234,607.193 637.234,607.106 637.147,607.02 637.147,606.934 637.062,606.848 637.062,606.762 636.975,606.762
636.975,606.676 636.975,606.59 636.889,606.59 636.803,606.502 636.715,606.502 636.715,606.416 636.629,606.416 636.629,606.242
636.542,605.983 636.542,605.811 636.456,605.465 636.456,605.379 636.37,605.206 636.37,605.119 636.37,605.033 636.283,604.947
636.283,604.861 636.283,604.774 636.197,604.688 636.197,604.602 636.197,604.516 636.11,604.342 636.11,604.256 636.024,604.169
636.024,604.082 636.024,603.996 635.938,603.996 635.938,603.91 635.852,603.824 635.852,603.651 635.852,603.565
635.766,603.565 635.852,603.565 635.852,603.479 635.766,603.479 635.766,603.393 635.766,603.305 635.679,603.219
635.506,602.96 635.419,602.96 635.419,602.873 635.333,602.787 635.246,602.787 635.246,602.701 635.246,602.614 635.246,602.528
635.16,602.528 635.074,602.528 635.074,602.441 635.074,602.355 635.074,602.268 634.987,602.268 634.987,602.182
634.987,602.096 635.074,602.01 635.074,601.838 635.074,601.75 635.16,601.664 635.246,601.577 635.333,601.491 635.419,601.405
635.506,601.318 635.593,601.231 635.679,601.145 635.679,601.059 635.679,600.973 635.766,600.973 635.766,600.887
635.766,600.801 635.852,600.713 635.938,600.627 635.938,600.541 636.024,600.541 636.024,600.454 636.11,600.281
636.197,600.195 636.197,600.109 636.197,600.021 636.283,599.59 636.283,599.504 636.283,599.417 636.197,599.244
636.024,598.899 635.938,598.813 635.938,598.727 635.938,598.641 635.938,598.553 635.938,598.381 635.852,598.381
635.852,598.467 635.766,598.641 635.679,598.727 635.593,598.813 635.419,598.641 635.246,598.381 635.16,598.381 635.16,598.294
635.16,598.207 635.074,598.121 635.074,598.035 634.987,598.035 634.987,597.949 634.987,597.862 634.987,597.604
635.074,597.518 634.901,597.344 634.643,597.258 634.383,597.085 634.21,596.912 634.123,596.912 634.037,596.912
634.037,596.825 634.123,596.825 634.383,596.825 634.47,596.739 634.556,596.739 634.47,596.653 634.47,596.566 634.47,596.48
634.383,596.48 634.296,596.393 634.383,596.393 634.296,596.307 634.21,596.221 634.21,596.135 634.21,596.049 634.296,595.961
634.123,595.875 634.037,595.875 634.037,595.789 634.383,595.27 634.47,595.098 634.47,595.012 634.556,594.926 634.556,594.838
634.643,594.838 634.556,594.752 634.643,594.752 634.556,594.665 634.47,594.579 634.47,594.493 634.47,594.406 634.383,594.406
634.383,594.32 634.296,594.32 634.123,594.233 633.864,594.061 633.691,594.061 633.691,593.975 633.605,593.801 633.778,593.801
633.778,593.715 633.864,593.455 633.864,593.283 633.95,593.11 633.95,593.024 634.037,593.024 634.123,592.852 634.21,592.852
634.21,592.766 634.21,592.678 634.123,592.678 634.037,592.592 634.21,592.506 634.123,592.419 634.123,592.333 634.123,592.246
634.21,592.246 634.123,592.16 634.037,591.814 633.95,591.814 633.95,591.729 633.95,591.641 633.864,591.641 633.864,591.729
633.864,591.641 633.864,591.555 633.864,591.297 633.778,591.297 633.864,591.297 633.95,591.297 634.037,591.297
634.123,591.297 634.21,591.297 634.296,591.297 634.383,591.297 634.383,591.383 634.383,591.469 634.383,591.555
634.383,591.469 634.383,591.383 634.383,591.297 634.47,591.297 634.383,591.297 634.47,591.297 634.556,591.297 634.729,591.297
634.901,591.297 634.987,591.297 635.074,591.297 635.16,591.297 635.246,591.297 635.333,591.383 635.419,591.383
635.506,591.383 635.593,591.383 635.679,591.469 635.766,591.469 635.852,591.469 635.852,591.555 635.938,591.555
636.024,591.555 636.11,591.555 636.197,591.555 636.283,591.555 636.37,591.555 636.456,591.641 636.542,591.641 636.629,591.641
636.715,591.641 636.803,591.641 636.889,591.641 636.975,591.641 637.062,591.729 637.147,591.729 637.234,591.729
637.32,591.729 637.32,591.814 637.406,591.814 637.493,591.814 637.493,591.901 637.579,591.901 637.752,591.987 637.838,591.987
638.012,592.073 638.099,592.073 638.185,592.16 638.271,592.16 638.357,592.246 638.443,592.333 638.53,592.333 638.616,592.419
638.702,592.419 638.789,592.419 638.875,592.506 638.962,592.506 639.135,592.592 639.222,592.592 639.308,592.592
639.395,592.678 639.566,592.678 639.653,592.678 639.739,592.678 639.826,592.678 639.826,592.592 639.912,592.592
639.998,592.592 640.085,592.506 640.171,592.506 640.259,592.506 640.259,592.419 640.431,592.333 640.518,592.246
640.518,592.16 640.604,592.16 640.69,592.073 640.862,591.901 640.949,591.729 641.035,591.729 641.208,591.555 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
638.357,607.021 638.357,606.935 638.357,606.848 638.357,606.762 638.271,606.674 638.271,606.588 638.271,606.502
638.271,606.416 638.271,606.33 638.443,605.983 638.53,605.897 638.53,605.811 638.616,605.811 638.703,605.811 638.789,605.811
638.875,605.725 638.962,605.725 639.048,605.639 639.135,605.551 639.221,605.551 639.307,605.465 639.307,605.379
639.307,605.293 639.395,605.207 639.395,605.119 639.395,605.033 639.48,604.946 639.48,604.86 639.567,604.86 639.567,604.774
639.567,604.688 639.567,604.515 639.567,604.429 639.48,604.17 639.395,604.17 639.395,604.082 639.48,603.996 639.48,603.91
639.48,603.823 639.48,603.737 639.48,603.564 639.48,603.479 639.567,603.392 639.567,603.306 639.567,603.219 639.567,603.133
639.653,603.047 639.653,602.959 639.739,602.873 639.739,602.787 639.826,602.787 639.999,602.614 640.085,602.527
640.171,602.441 640.171,602.354 640.344,602.441 640.432,602.527 640.518,602.614 640.604,602.614 640.604,602.701
640.69,602.701 640.776,602.614 641.035,602.527 641.122,602.441 641.208,602.441 641.208,602.354 641.295,602.354
641.381,602.441 641.467,602.441 641.554,602.441 641.554,602.354 641.641,602.269 641.641,602.183 641.728,602.183
641.728,602.096 641.813,601.922 641.899,601.836 641.899,601.75 641.986,601.664 642.072,601.49 642.072,601.404 641.986,601.404
641.899,601.318 641.813,601.318 641.728,601.146 641.641,601.146 641.554,601.059 641.554,600.973 641.554,600.887
641.641,600.713 641.641,600.627 641.641,600.541 641.641,600.455 641.641,600.367 641.641,600.281 641.641,600.195
641.641,600.108 641.554,600.022 641.554,599.936 641.554,599.85 641.467,599.763 641.467,599.676 641.381,599.59 641.295,599.504
641.208,599.418 641.122,599.33 641.035,599.33 640.949,599.33 640.949,599.244 640.863,599.158 640.949,599.071 640.863,599.071
640.863,598.985 640.776,598.898 640.776,598.813 640.776,598.727 640.776,598.64 640.776,598.554 640.776,598.381 640.69,598.121
640.69,597.948 640.69,597.431 640.604,597.17 640.432,596.998 640.518,596.912 640.518,596.826 640.518,596.738 640.518,596.652
640.518,596.738 640.518,596.652 640.604,596.566 640.604,596.479 640.604,596.394 640.604,596.307 640.604,596.221
640.604,596.135 640.604,596.047 640.604,595.961 640.604,595.875 640.604,595.789 640.518,595.789 640.518,595.703
640.518,595.615 640.604,595.615 640.604,595.529 640.604,595.442 640.518,595.442 640.518,595.356 640.432,595.271
640.604,595.271 640.604,595.356 640.604,595.271 640.69,595.271 640.776,595.271 640.863,595.271 640.863,595.184 640.69,595.011
640.69,594.924 640.776,594.924 640.863,594.924 640.949,594.838 641.035,594.838 641.208,594.752 641.295,594.666
641.295,594.752 641.381,594.752 641.381,594.838 641.467,594.838 641.467,594.752 641.554,594.752 641.554,594.838
641.728,594.838 641.813,594.838 641.813,594.752 642.072,594.666 641.986,594.492 642.072,594.406 641.986,594.32
642.072,594.233 642.159,594.233 642.159,594.32 642.244,594.32 642.331,594.32 642.331,594.406 642.418,594.406 642.591,594.32
642.851,594.233 642.937,594.233 643.023,594.233 643.109,594.146 643.195,594.146 643.282,594.146 643.282,594.233
643.282,594.32 643.368,594.406 643.368,594.492 643.455,594.666 643.541,594.752 643.541,594.838 643.627,594.924
643.714,595.011 643.714,595.098 643.887,595.184 643.887,595.271 643.973,595.271 643.973,595.356 644.06,595.356
643.973,595.529 643.887,595.529 643.887,595.615 643.887,595.703 643.887,595.789 643.887,595.875 643.8,596.047 643.8,596.221
643.8,596.307 643.714,596.394 643.973,596.479 644.146,596.479 644.146,596.652 644.146,596.738 644.232,596.738 644.491,596.652
644.405,596.566 644.491,596.566 644.578,596.479 644.664,596.479 644.751,596.479 644.837,596.566 644.837,596.652
644.751,596.652 644.664,596.652 644.664,596.738 644.578,596.738 644.578,596.826 644.578,596.912 644.578,596.998
644.578,597.084 644.578,597.17 644.491,597.17 644.491,597.258 644.405,597.258 644.405,597.344 644.405,597.431 644.405,597.517
644.319,597.517 644.232,597.517 644.146,597.517 644.146,597.603 644.146,597.689 644.232,597.689 644.232,597.775
644.319,597.775 644.319,597.862 644.405,597.862 644.405,597.948 644.491,597.948 644.491,598.035 644.491,598.121
644.578,598.121 644.664,598.207 644.664,598.295 644.664,598.381 644.664,598.467 644.664,598.381 644.664,598.467
644.664,598.554 644.751,598.64 644.837,598.64 644.923,598.64 644.923,598.727 644.923,598.64 645.01,598.727 645.01,598.813
645.096,598.813 645.096,598.898 645.182,598.898 645.182,598.813 645.27,598.813 645.355,598.727 645.355,598.64 645.27,598.554
645.27,598.467 645.182,598.381 645.182,598.295 645.096,598.207 645.182,598.207 645.182,598.121 645.182,598.035 645.27,598.035
645.355,598.035 645.442,598.035 645.528,598.035 645.701,598.035 645.787,597.948 645.874,597.948 645.96,597.948
646.046,598.035 646.132,598.035 646.219,598.035 646.479,598.121 646.651,598.121 646.738,598.121 646.824,598.121
646.911,598.121 646.996,598.121 647.083,598.121 647.256,598.035 647.343,598.035 647.429,598.035 647.516,598.035
647.775,597.948 647.947,597.862 648.12,597.862 648.293,597.862 648.466,597.775 648.552,597.775 648.726,597.775
648.898,597.689 648.984,597.689 649.07,597.689 648.984,597.689 648.812,597.775 648.639,597.862 648.639,597.948
648.639,598.035 648.726,598.035 648.726,598.121 648.726,598.207 648.812,598.295 648.812,598.381 648.812,598.467
648.898,598.467 648.898,598.554 648.812,598.64 648.812,598.554 648.726,598.554 648.639,598.467 648.552,598.467
648.466,598.467 648.379,598.467 648.466,598.64 648.466,598.727 648.466,598.813 648.466,598.898 648.379,598.898
648.466,598.985 648.466,599.071 648.379,599.071 648.293,599.158 648.207,599.158 648.12,599.244 648.033,599.244 648.033,599.33
648.033,599.418 648.033,599.504 648.033,599.59 648.033,599.676 648.12,599.763 648.12,599.85 648.12,599.936 648.12,600.022
648.12,600.108 648.12,600.195 648.12,600.281 648.12,600.367 648.12,600.455 648.12,600.541 648.207,600.627 648.207,600.713
648.293,600.799 648.293,600.887 648.293,600.973 648.379,600.973 648.466,601.059 648.552,601.059 648.552,601.146
648.639,601.146 648.726,601.146 648.812,601.146 648.898,601.231 649.07,601.231 649.07,601.318 649.07,601.404 649.07,601.49
649.07,601.578 649.157,601.578 649.157,601.664 649.157,601.922 649.243,601.836 649.33,601.836 649.33,601.922 649.33,602.01
649.33,602.096 648.812,602.183 648.812,602.096 648.726,602.096 648.812,602.183 649.07,602.269 649.157,602.354 649.243,602.354
649.416,602.354 649.589,602.354 649.675,602.441 649.675,602.527 649.675,602.614 649.762,602.701 649.675,602.701
649.589,602.787 649.503,602.787 649.503,603.047 649.589,603.133 649.589,603.219 649.503,603.306 649.503,603.479
649.589,603.564 649.675,603.564 649.762,603.65 649.848,603.65 649.935,603.737 650.021,603.737 650.194,603.737 650.28,603.737
650.367,603.737 650.453,603.737 650.539,603.737 650.453,603.737 650.453,603.823 650.453,603.91 650.453,603.996
650.453,604.082 650.453,604.17 650.453,604.256 650.107,604.342 650.021,604.429 650.021,604.515 650.021,604.602
650.021,604.688 650.107,604.774 650.107,604.86 650.194,604.774 650.28,604.688 650.367,604.688 650.453,604.774 650.539,604.86
650.539,604.946 650.539,605.033 650.539,605.119 650.453,605.207 650.539,605.207 650.626,605.293 650.626,605.379
650.712,605.379 650.798,605.465 650.798,605.551 650.798,605.465 650.884,605.465 650.884,605.551 650.971,605.551
651.057,605.551 651.057,605.639 651.231,605.551 651.49,605.293 651.576,605.293 651.576,605.379 651.576,605.465
651.576,605.551 651.576,605.639 651.576,605.725 651.576,605.811 651.576,605.897 651.663,605.983 651.663,606.07
651.663,606.156 651.663,606.33 651.576,606.33 651.663,606.33 651.663,606.416 651.663,606.502 651.663,606.588 651.749,606.588
651.749,606.674 651.749,606.762 651.749,606.848 651.749,606.935 651.576,607.106 651.403,607.367 651.317,607.193
651.231,607.193 651.231,607.106 651.145,607.106 651.145,607.021 651.057,607.021 651.057,606.935 650.971,606.935
650.884,606.848 650.798,606.762 650.712,606.762 650.712,606.674 650.626,606.588 650.539,606.588 650.453,606.502
650.367,606.33 650.28,606.33 650.194,606.156 650.107,606.156 650.021,606.242 649.935,606.242 649.935,606.33 649.848,606.33
649.848,606.416 649.762,606.416 649.675,606.502 649.589,606.588 649.503,606.588 649.416,606.502 649.33,606.502 649.33,606.588
649.243,606.588 649.157,606.588 649.07,606.674 648.984,606.674 648.898,606.762 648.898,606.674 648.812,606.674
648.812,606.762 648.812,606.848 648.812,606.935 648.726,606.935 648.726,607.021 648.552,607.106 648.552,607.193
648.466,607.193 648.466,607.279 648.379,607.279 648.379,607.367 648.293,607.453 648.207,607.367 648.12,607.367 648.12,607.453
648.033,607.539 648.033,607.625 647.947,607.625 647.947,607.711 647.861,607.799 647.861,607.885 647.861,607.971
647.775,608.058 647.861,608.058 647.775,608.058 647.775,608.144 647.861,608.144 647.861,608.23 647.775,608.23 647.603,608.402
647.343,608.23 647.256,608.316 647.17,608.316 647.17,608.402 647.17,608.489 647.17,608.576 647.17,608.662 647.083,608.662
647.083,608.748 646.824,608.748 646.738,608.748 646.738,608.834 646.824,608.922 646.565,609.008 646.565,608.922
646.565,608.834 646.565,608.748 646.479,608.662 646.479,608.748 646.393,608.748 646.393,608.834 646.393,608.922
646.307,609.008 646.219,609.008 646.132,609.008 646.132,609.095 645.96,609.181 645.787,609.181 645.701,609.181
645.615,609.181 645.528,609.181 645.528,609.095 645.442,609.095 645.528,608.922 645.355,608.922 645.27,608.922
645.182,608.922 645.096,608.922 645.096,608.834 644.751,608.748 644.664,608.748 644.664,608.662 644.578,608.662
644.578,608.489 644.491,608.489 644.578,608.402 644.578,608.316 644.664,608.316 644.664,608.23 644.664,608.144
644.664,608.058 644.751,607.971 644.664,607.971 644.578,607.885 644.664,607.799 644.578,607.711 644.491,607.711
644.491,607.625 644.491,607.711 644.405,607.625 644.405,607.539 644.319,607.453 644.232,607.453 644.232,607.367
644.146,607.367 644.146,607.279 644.06,607.279 644.06,607.367 644.06,607.279 643.973,607.279 643.973,607.193 643.887,607.193
643.887,607.106 643.8,607.106 643.627,607.021 643.541,606.935 643.455,606.935 643.368,607.021 643.368,607.106 643.282,607.106
643.282,607.193 643.195,607.193 643.195,607.106 643.109,607.106 643.023,607.106 642.937,607.106 642.851,607.106
642.677,607.106 642.677,607.193 642.591,607.279 642.504,607.279 642.418,607.279 642.331,607.279 642.244,607.279
642.244,607.367 642.072,607.453 641.986,607.453 641.986,607.539 641.899,607.539 641.641,607.625 641.728,607.625
641.728,607.539 641.641,607.539 641.554,607.539 641.381,607.539 641.295,607.539 641.208,607.539 641.208,607.625
641.122,607.625 641.035,607.625 641.035,607.539 641.035,607.453 640.949,607.453 640.69,607.367 640.69,607.453 640.604,607.539
640.518,607.539 640.432,607.539 640.344,607.539 640.258,607.539 640.258,607.453 640.171,607.453 640.085,607.367
639.912,607.279 639.826,607.279 639.912,607.193 639.826,607.193 639.739,607.193 639.739,607.106 639.739,607.193
639.739,607.106 639.653,607.106 639.48,607.106 639.48,607.193 639.48,607.106 639.395,607.106 639.307,607.193 639.221,607.106
639.135,607.106 639.135,607.021 639.048,607.021 638.962,607.021 638.962,607.106 638.875,607.021 638.789,607.021
638.703,606.935 638.616,606.935 638.53,607.021 638.443,607.021 638.357,607.021 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
645.355,598.727 645.27,598.813 645.183,598.813 645.183,598.899 645.097,598.899 645.097,598.813 645.01,598.813 645.01,598.727
644.924,598.641 644.924,598.727 644.924,598.641 644.838,598.641 644.75,598.641 644.664,598.553 644.664,598.467
644.664,598.381 644.664,598.467 644.664,598.381 644.664,598.295 644.664,598.209 644.577,598.121 644.491,598.121
644.491,598.035 644.491,597.948 644.405,597.948 644.405,597.862 644.318,597.862 644.318,597.776 644.232,597.776
644.232,597.689 644.146,597.689 644.146,597.604 644.146,597.516 644.232,597.516 644.318,597.516 644.405,597.516
644.405,597.43 644.405,597.344 644.405,597.258 644.491,597.258 644.491,597.172 644.577,597.172 644.577,597.084
644.577,596.998 644.577,596.912 644.577,596.825 644.577,596.739 644.664,596.739 644.664,596.652 644.75,596.652
644.838,596.652 644.838,596.566 644.75,596.48 644.664,596.48 644.577,596.48 644.491,596.566 644.405,596.566 644.491,596.652
644.232,596.739 644.146,596.739 644.146,596.652 644.146,596.48 643.974,596.48 643.713,596.393 643.801,596.307 643.801,596.221
643.801,596.049 643.887,595.875 643.887,595.788 643.887,595.702 643.887,595.616 643.887,595.529 643.974,595.529
644.06,595.356 644.146,595.443 644.232,595.529 644.318,595.529 644.491,595.616 644.491,595.702 644.577,595.702
644.664,595.702 644.75,595.702 644.838,595.788 644.924,595.788 645.01,595.788 645.097,595.788 645.183,595.788 645.27,595.788
645.355,595.788 645.528,595.702 645.614,595.702 645.873,595.616 645.96,595.616 646.047,595.529 646.134,595.529 646.22,595.443
646.306,595.443 646.393,595.271 646.479,595.271 646.565,595.184 646.651,595.098 646.651,595.012 646.651,594.924
646.737,594.838 646.737,594.752 646.737,594.665 646.737,594.579 646.737,594.492 646.737,594.406 646.737,594.32
646.737,594.233 646.651,594.147 646.651,594.061 646.651,593.975 646.565,593.889 646.565,593.801 646.479,593.801
646.479,593.715 646.479,593.629 646.306,593.369 646.306,593.283 646.306,593.196 646.22,593.11 646.22,593.024 646.134,592.764
646.134,592.678 646.134,592.592 646.134,592.506 646.134,592.42 646.22,592.332 646.22,592.246 646.22,592.16 646.306,592.073
646.306,591.987 646.393,591.987 646.393,591.9 646.479,591.814 646.565,591.729 646.651,591.641 646.737,591.641 646.737,591.555
646.824,591.555 646.91,591.555 646.997,591.555 647.083,591.555 647.169,591.555 647.343,591.555 647.43,591.641 647.602,591.729
647.688,591.814 647.774,591.814 647.774,591.9 647.861,591.987 647.947,592.073 648.033,592.246 648.206,592.42 648.293,592.506
648.293,592.592 648.379,592.678 648.553,592.852 648.639,592.938 648.812,593.11 648.897,593.196 649.07,593.283 649.243,593.283
649.329,593.369 649.502,593.456 649.59,593.456 649.676,593.456 649.849,593.456 649.935,593.456 650.021,593.456
650.193,593.456 650.28,593.456 650.453,593.369 650.625,593.369 650.799,593.283 650.886,593.283 650.972,593.283
651.058,593.283 651.145,593.283 651.23,593.283 651.317,593.283 651.403,593.196 651.489,593.196 651.576,593.196
651.662,593.196 651.749,593.196 651.835,593.196 651.922,593.196 652.009,593.196 652.182,593.196 652.354,593.196
652.44,593.196 652.526,593.196 652.613,593.196 652.699,593.196 652.785,593.196 652.872,593.196 652.958,593.196
653.045,593.196 653.131,593.196 653.218,593.283 653.478,593.283 653.649,593.283 653.736,593.283 653.822,593.283
653.909,593.283 653.995,593.283 654.081,593.283 654.168,593.283 654.342,593.196 654.601,593.196 654.773,593.196
655.205,593.024 655.377,592.938 655.465,592.938 655.551,592.938 655.638,592.852 655.724,592.764 655.81,592.678
655.896,592.678 655.896,592.592 655.982,592.506 655.982,592.42 656.069,592.42 656.069,592.332 656.155,592.246 656.241,592.16
656.328,591.9 656.414,591.814 656.501,591.641 656.501,591.555 656.588,591.469 656.674,591.297 656.674,591.209 656.761,591.123
656.761,591.036 656.847,590.95 657.02,590.777 657.02,590.691 657.105,590.691 657.278,590.518 657.365,590.518 657.365,590.432
657.451,590.432 657.537,590.432 657.624,590.346 657.71,590.346 657.797,590.346 657.884,590.26 657.97,590.26 658.057,590.26
658.315,590.26 658.488,590.26 658.574,590.26 658.747,590.26 658.92,590.26 659.006,590.26 659.18,590.26 659.266,590.26
659.353,590.26 659.438,590.26 659.525,590.26 659.611,590.172 659.697,590.172 659.784,590.172 659.87,590.086 659.957,590.086
660.129,590 660.217,590 660.303,590 660.39,589.913 660.476,589.913 660.562,589.913 660.648,589.827 660.734,590 660.907,590.26
660.907,590.346 660.907,590.518 660.907,590.604 660.907,590.691 660.993,590.777 660.993,590.95 660.993,591.036
660.993,591.123 660.993,591.297 660.993,591.469 660.993,591.641 660.993,591.814 660.993,591.9 660.993,592.073 660.993,592.16
660.993,592.246 660.993,592.42 661.08,592.592 661.08,592.938 661.08,593.11 661.08,593.283 661.08,593.629 661.08,593.801
661.08,594.061 661.08,594.147 661.166,594.32 661.166,594.492 661.166,594.579 661.166,594.665 661.166,594.752 661.166,594.838
661.253,595.012 661.253,595.098 661.253,595.356 661.253,595.529 661.253,595.702 661.253,595.788 661.34,595.961 661.34,596.049
661.34,596.221 661.426,596.307 661.426,596.393 661.513,596.566 661.513,596.652 661.513,596.739 661.426,596.652 661.34,596.566
661.253,596.566 661.166,596.48 661.08,596.48 660.993,596.48 660.907,596.393 660.821,596.393 660.821,596.48 660.734,596.652
660.648,596.652 660.648,596.739 660.562,596.825 660.562,596.912 660.476,596.912 660.476,596.998 660.39,597.084
660.303,597.172 660.303,597.258 660.217,597.344 660.217,597.43 660.129,597.516 660.043,597.516 660.043,597.43 659.957,597.43
659.957,597.344 659.87,597.258 659.87,597.172 659.784,597.172 659.784,597.084 659.697,597.084 659.697,596.998 659.611,596.998
659.525,596.998 659.525,597.084 659.438,597.172 659.353,597.084 659.266,597.172 659.266,597.084 659.18,597.172 659.18,597.258
659.094,597.258 659.006,597.258 659.006,597.172 658.92,597.258 658.833,597.258 658.833,597.172 658.747,597.172
658.661,597.172 658.574,597.084 658.488,597.084 658.488,597.172 658.401,597.258 658.401,597.344 658.315,597.344
658.315,597.43 658.315,597.516 658.229,597.516 658.143,597.516 658.057,597.516 657.97,597.604 657.884,597.604 657.884,597.689
657.797,597.689 657.71,597.776 657.624,597.862 657.71,597.862 657.624,597.862 657.624,597.948 657.537,597.948 657.537,598.035
657.451,598.035 657.451,598.121 657.365,598.121 657.278,598.121 657.278,598.209 657.192,598.209 657.105,598.209
657.105,598.295 657.02,598.295 657.02,598.381 656.934,598.467 656.934,598.553 656.847,598.553 656.847,598.641 656.761,598.813
656.761,598.899 656.674,598.813 656.674,598.899 656.674,598.985 656.674,599.158 656.674,599.244 656.674,599.331
656.674,599.418 656.674,599.504 656.674,599.59 656.674,599.676 656.674,599.764 656.674,599.85 656.674,599.937 656.674,600.022
656.761,600.108 656.501,600.195 656.328,600.195 656.241,600.281 656.328,600.368 656.414,600.368 656.501,600.454
656.588,600.54 656.674,600.54 656.761,600.627 656.847,600.627 657.02,600.713 657.105,600.713 657.105,600.801 657.105,600.887
657.192,600.973 657.192,601.059 657.192,601.146 657.192,601.232 657.192,601.318 657.192,601.404 657.192,601.491
657.192,601.577 657.278,601.577 657.278,601.664 657.278,601.75 657.278,601.836 657.278,601.924 657.278,602.01 657.365,602.096
657.365,602.182 657.365,602.268 657.451,602.355 657.451,602.441 657.451,602.528 657.451,602.614 657.365,602.614 657.365,602.7
657.365,602.787 657.278,602.787 657.278,602.873 657.192,602.873 657.278,602.961 657.278,603.047 657.278,603.133
657.365,603.219 657.278,603.219 657.192,603.305 657.105,603.305 657.105,603.393 657.02,603.393 657.02,603.305 656.934,603.219
656.847,603.219 656.847,603.305 656.847,603.393 657.02,603.479 657.02,603.564 656.934,603.651 656.847,603.737 656.761,603.91
656.674,603.91 656.674,603.824 656.588,603.824 656.588,603.91 656.501,603.996 656.588,603.996 656.501,603.996 656.501,604.084
656.501,604.17 656.414,604.17 656.414,604.256 656.414,604.342 656.328,604.428 656.328,604.516 656.241,604.602 656.241,604.516
656.155,604.516 656.069,604.602 655.982,604.688 655.982,604.774 656.069,604.774 656.069,604.86 656.155,604.86 656.069,604.947
656.069,605.033 656.155,605.033 656.069,605.12 656.069,605.206 656.069,605.293 655.982,605.293 655.982,605.379
655.896,605.379 655.982,605.379 655.982,605.465 655.982,605.639 655.896,605.553 655.896,605.465 655.81,605.465
655.724,605.553 655.81,605.553 655.638,605.812 655.638,605.897 655.551,605.897 655.551,605.984 655.465,606.07 655.377,606.07
655.205,606.243 655.032,606.416 654.945,606.502 655.032,606.588 654.773,606.676 654.687,606.676 654.773,606.762
654.687,606.848 654.687,606.934 654.601,606.934 654.428,607.021 654.428,606.934 654.342,606.762 654.254,606.848
654.168,606.848 654.081,606.848 653.995,606.848 653.995,606.762 653.822,606.588 653.736,606.502 653.649,606.329
653.563,606.329 653.563,606.243 653.478,606.156 653.478,606.07 653.391,605.897 653.305,605.812 653.218,605.639
653.131,605.553 653.045,605.465 652.958,605.379 652.785,605.293 652.785,605.206 652.699,605.033 652.613,604.947
652.526,604.86 652.44,604.688 652.354,604.602 652.354,604.516 652.268,604.428 652.182,604.428 652.182,604.342 652.095,604.256
652.095,604.17 652.095,604.084 652.009,604.084 651.922,603.996 651.835,603.91 651.835,603.824 651.749,603.824 651.662,603.824
651.662,603.737 651.576,603.737 651.489,603.651 651.403,603.651 651.317,603.564 651.23,603.564 651.145,603.479
651.058,603.479 651.058,603.393 650.972,603.393 650.972,603.305 650.972,603.393 650.972,603.305 650.886,603.305
650.799,603.305 650.713,603.305 650.713,603.219 650.625,603.219 650.625,603.393 650.539,603.651 650.539,603.737
650.453,603.737 650.366,603.737 650.28,603.737 650.193,603.737 650.021,603.737 649.935,603.737 649.849,603.651
649.762,603.651 649.676,603.564 649.59,603.564 649.502,603.479 649.502,603.305 649.59,603.219 649.59,603.133 649.502,603.047
649.502,602.787 649.59,602.787 649.676,602.7 649.762,602.7 649.676,602.614 649.676,602.528 649.676,602.441 649.59,602.355
649.416,602.355 649.243,602.355 649.157,602.355 649.07,602.268 648.812,602.182 648.726,602.096 648.812,602.096
648.812,602.182 649.329,602.096 649.329,602.01 649.329,601.924 649.329,601.836 649.243,601.836 649.157,601.924
649.157,601.664 649.157,601.577 649.07,601.577 649.07,601.491 649.07,601.404 649.07,601.318 649.07,601.232 648.897,601.232
648.812,601.146 648.726,601.146 648.639,601.146 648.553,601.146 648.553,601.059 648.466,601.059 648.379,600.973
648.293,600.973 648.293,600.887 648.293,600.801 648.206,600.713 648.206,600.627 648.12,600.54 648.12,600.454 648.12,600.368
648.12,600.281 648.12,600.195 648.12,600.108 648.12,600.022 648.12,599.937 648.12,599.85 648.12,599.764 648.033,599.676
648.033,599.59 648.033,599.504 648.033,599.418 648.033,599.331 648.033,599.244 648.12,599.244 648.206,599.158 648.293,599.158
648.379,599.072 648.466,599.072 648.466,598.985 648.379,598.899 648.466,598.899 648.466,598.813 648.466,598.727
648.466,598.641 648.379,598.467 648.466,598.467 648.553,598.467 648.639,598.467 648.726,598.553 648.812,598.553
648.812,598.641 648.897,598.553 648.897,598.467 648.812,598.467 648.812,598.381 648.812,598.295 648.726,598.209
648.726,598.121 648.726,598.035 648.639,598.035 648.639,597.948 648.639,597.862 648.812,597.776 648.984,597.689
649.07,597.689 648.984,597.689 648.897,597.689 648.726,597.776 648.553,597.776 648.466,597.776 648.293,597.862 648.12,597.862
647.947,597.862 647.774,597.948 647.516,598.035 647.43,598.035 647.343,598.035 647.256,598.035 647.083,598.121
646.997,598.121 646.91,598.121 646.824,598.121 646.737,598.121 646.651,598.121 646.479,598.121 646.22,598.035 646.134,598.035
646.047,598.035 645.96,597.948 645.873,597.948 645.787,597.948 645.701,598.035 645.528,598.035 645.441,598.035
645.355,598.035 645.27,598.035 645.183,598.035 645.183,598.121 645.183,598.209 645.097,598.209 645.183,598.295
645.183,598.381 645.27,598.467 645.27,598.553 645.355,598.641 645.355,598.727 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
665.573,605.379 665.486,605.465 665.486,605.552 665.486,605.639 665.486,605.725 665.399,605.811 665.399,605.896
665.313,605.984 665.313,606.157 665.313,606.243 665.227,606.329 665.227,606.416 665.227,606.502 665.313,606.589
665.313,606.675 665.313,606.761 665.313,606.848 665.227,607.021 665.227,607.107 665.141,607.193 665.055,607.279
665.055,607.366 665.141,607.453 665.227,607.539 665.313,607.539 665.313,607.625 665.399,607.625 665.486,607.712
665.399,607.798 665.313,607.885 665.227,607.885 665.141,607.885 665.055,607.885 665.055,608.057 665.055,608.23
665.055,608.316 665.055,608.402 665.055,608.488 664.968,608.488 664.968,608.576 664.882,608.662 664.882,608.749
664.882,608.835 664.882,608.921 664.882,609.008 665.141,609.008 665.227,609.094 665.399,609.094 665.399,609.182
665.313,609.182 665.313,609.268 665.313,609.439 665.313,609.525 665.227,609.525 665.141,609.525 665.055,609.525
664.968,609.525 664.882,609.525 664.882,609.613 664.795,609.613 664.709,609.525 664.623,609.525 664.536,609.525
664.45,609.439 664.363,609.439 664.363,609.354 664.277,609.354 664.19,609.354 664.104,609.268 664.018,609.268 664.018,609.182
663.931,609.182 663.845,609.094 663.759,609.094 663.672,609.094 663.672,609.008 663.586,609.008 663.499,608.921
663.413,608.921 663.413,608.835 663.327,608.835 663.24,608.835 663.24,608.749 663.066,608.662 662.98,608.662 662.98,608.576
662.895,608.576 662.808,608.576 662.722,608.488 662.635,608.488 662.549,608.488 662.463,608.488 662.376,608.488
662.29,608.488 662.203,608.488 662.117,608.488 662.031,608.488 661.943,608.488 661.943,608.576 661.857,608.576
661.771,608.662 661.685,608.662 661.599,608.662 661.512,608.749 661.426,608.749 661.339,608.749 661.339,608.835
661.253,608.835 661.167,608.835 661.08,608.835 660.994,608.835 660.907,608.835 660.821,608.835 660.734,608.835
660.647,608.835 660.562,608.921 660.475,608.835 660.389,608.835 660.216,608.749 660.13,608.749 660.043,608.749
659.957,608.662 659.871,608.662 659.784,608.576 659.698,608.576 659.611,608.488 659.524,608.488 659.438,608.402
659.352,608.402 659.352,608.316 659.266,608.316 659.093,608.145 658.92,608.057 658.834,607.971 658.747,607.885
658.661,607.798 658.575,607.798 658.575,607.712 658.488,607.625 658.402,607.539 658.314,607.539 658.314,607.453
658.229,607.453 658.229,607.366 658.143,607.366 658.056,607.279 657.97,607.193 657.97,607.107 657.883,607.107 657.797,607.021
657.797,606.934 657.711,606.934 657.711,606.848 657.624,606.848 657.624,606.761 657.538,606.675 657.451,606.589
657.451,606.502 657.365,606.416 657.279,606.329 657.279,606.243 657.191,606.157 657.105,605.984 657.019,605.896
657.019,605.811 656.933,605.811 656.933,605.725 656.847,605.725 656.76,605.639 656.674,605.639 656.587,605.639
656.501,605.552 656.242,605.465 656.068,605.465 655.982,605.379 655.896,605.379 655.982,605.379 655.982,605.293
656.068,605.293 656.068,605.206 656.068,605.12 656.155,605.033 656.068,605.033 656.068,604.947 656.155,604.861
656.068,604.861 656.068,604.773 655.982,604.773 655.982,604.688 656.068,604.602 656.155,604.516 656.242,604.516
656.242,604.602 656.328,604.516 656.328,604.43 656.415,604.342 656.415,604.256 656.415,604.169 656.501,604.169
656.501,604.083 656.501,603.997 656.587,603.997 656.501,603.997 656.587,603.91 656.587,603.824 656.674,603.824 656.674,603.91
656.76,603.91 656.847,603.736 656.933,603.65 657.019,603.564 657.019,603.479 656.847,603.393 656.847,603.305 656.847,603.219
656.933,603.219 657.019,603.305 657.019,603.393 657.105,603.393 657.105,603.305 657.191,603.305 657.279,603.219
657.365,603.219 657.279,603.133 657.279,603.046 657.279,602.96 657.191,602.873 657.279,602.873 657.279,602.787
657.365,602.787 657.365,602.701 657.365,602.613 657.451,602.613 657.451,602.527 657.451,602.441 657.451,602.355
657.365,602.27 657.365,602.182 657.365,602.096 657.279,602.009 657.279,601.923 657.279,601.837 657.279,601.75 657.279,601.664
657.279,601.577 657.191,601.577 657.191,601.491 657.191,601.404 657.191,601.318 657.191,601.232 657.191,601.145
657.191,601.059 657.191,600.973 657.105,600.886 657.105,600.8 657.105,600.713 657.019,600.713 656.847,600.627 656.76,600.627
656.674,600.541 656.587,600.541 656.501,600.454 656.415,600.368 656.328,600.368 656.242,600.281 656.328,600.195
656.501,600.195 656.76,600.109 656.674,600.021 656.674,599.936 656.674,599.85 656.674,599.764 656.674,599.677 656.674,599.59
656.674,599.504 656.674,599.417 656.674,599.331 656.674,599.245 656.674,599.158 656.674,598.984 656.674,598.898
656.674,598.813 656.76,598.898 656.76,598.813 656.847,598.641 656.847,598.553 656.933,598.553 656.933,598.467 657.019,598.381
657.019,598.294 657.105,598.294 657.105,598.208 657.191,598.208 657.279,598.208 657.279,598.121 657.365,598.121
657.451,598.121 657.451,598.035 657.538,598.035 657.538,597.949 657.624,597.949 657.624,597.861 657.711,597.861
657.624,597.861 657.711,597.775 657.797,597.689 657.883,597.689 657.883,597.604 657.97,597.604 658.056,597.518
658.143,597.518 658.229,597.518 658.314,597.518 658.314,597.43 658.314,597.344 658.402,597.344 658.402,597.257
658.488,597.171 658.488,597.085 658.575,597.085 658.661,597.171 658.747,597.171 658.834,597.171 658.834,597.257
658.92,597.257 659.007,597.171 659.007,597.257 659.093,597.257 659.179,597.257 659.179,597.171 659.266,597.085
659.266,597.171 659.352,597.085 659.438,597.171 659.524,597.085 659.524,596.998 659.611,596.998 659.698,596.998
659.698,597.085 659.784,597.085 659.784,597.171 659.871,597.171 659.871,597.257 659.957,597.344 659.957,597.43 660.043,597.43
660.043,597.518 660.13,597.518 660.216,597.43 660.216,597.344 660.303,597.257 660.303,597.171 660.389,597.085 660.475,596.998
660.475,596.912 660.562,596.912 660.562,596.825 660.647,596.738 660.647,596.652 660.734,596.652 660.821,596.48
660.821,596.393 660.907,596.393 660.994,596.48 661.08,596.48 661.167,596.48 661.253,596.566 661.339,596.566 661.426,596.652
661.512,596.738 661.512,596.652 661.512,596.566 661.426,596.393 661.426,596.307 661.339,596.221 661.339,596.048
661.339,595.961 661.253,595.789 661.253,595.702 661.253,595.529 661.253,595.357 661.253,595.098 661.253,595.011
661.167,594.838 661.167,594.752 661.167,594.665 661.167,594.579 661.167,594.493 661.167,594.32 661.08,594.146 661.08,594.061
661.08,593.801 661.08,593.629 661.08,593.283 661.08,593.109 661.08,592.938 661.08,592.592 660.994,592.419 660.994,592.246
660.994,592.16 660.994,592.072 660.994,591.9 660.994,591.814 660.994,591.641 660.994,591.469 660.994,591.296 660.994,591.123
660.994,591.037 660.994,590.95 660.994,590.777 660.907,590.691 660.907,590.605 660.907,590.518 660.907,590.345
660.907,590.259 660.734,590 660.647,589.827 660.734,589.741 660.821,589.741 660.907,589.654 660.994,589.654 661.08,589.568
661.167,589.568 661.253,589.568 661.253,589.48 661.339,589.48 661.426,589.48 661.599,589.48 661.685,589.48 661.771,589.48
661.771,589.395 661.857,589.395 661.857,589.48 662.117,589.48 662.203,589.48 662.29,589.48 662.463,589.48 662.722,589.568
662.808,589.654 662.98,589.654 663.066,589.741 663.154,589.827 663.327,589.827 663.499,590 663.586,590.086 663.759,590.086
664.018,590.259 664.19,590.345 664.277,590.432 664.363,590.432 664.536,590.432 664.709,590.518 664.795,590.518
664.968,590.605 665.141,590.605 665.313,590.605 665.573,590.605 665.659,590.605 665.746,590.605 665.746,590.691
665.832,590.691 665.919,590.691 666.005,590.777 666.091,590.777 666.178,590.777 666.178,590.863 666.264,590.863
666.437,590.95 666.522,590.95 666.522,591.037 666.609,591.037 666.696,591.123 666.783,591.123 666.783,591.209 666.869,591.209
666.869,591.296 667.128,591.555 667.215,591.641 667.301,591.814 667.387,591.9 667.387,591.986 667.474,592.16 667.474,592.246
667.56,592.333 667.56,592.419 667.56,592.505 667.56,592.592 667.646,592.592 667.646,592.678 667.646,592.766 667.646,592.852
667.732,593.023 667.732,593.369 667.818,593.456 667.818,593.542 667.818,593.629 667.818,593.715 667.906,593.801
667.906,593.975 667.992,594.146 668.079,594.32 668.165,594.406 668.165,594.493 668.251,594.579 668.338,594.665
668.424,594.752 668.511,594.752 668.511,594.838 668.683,594.925 668.77,595.011 668.855,595.011 668.943,595.098
669.029,595.098 669.115,595.098 669.202,595.098 669.288,595.098 669.461,595.184 669.893,595.098 669.979,595.098
670.152,595.098 670.239,595.098 670.325,595.098 670.498,595.011 670.757,594.925 670.843,594.925 671.016,594.925
671.361,594.838 671.361,594.752 671.448,594.752 671.535,594.752 671.621,594.752 671.707,594.752 671.794,594.752
671.88,594.752 672.053,594.752 672.139,594.838 672.312,594.838 672.398,594.838 672.398,594.925 672.484,594.925
672.658,595.011 672.831,595.098 673.09,595.27 673.263,595.357 673.09,595.616 672.917,595.789 672.831,595.875 672.658,595.789
672.571,595.789 672.484,595.875 672.398,595.875 672.398,595.961 672.398,596.048 672.398,596.134 672.484,596.134
672.484,596.221 672.484,596.307 672.484,596.393 672.398,596.48 672.312,596.48 672.226,596.566 672.053,596.652 671.967,596.652
671.967,596.738 671.88,596.825 671.88,596.912 671.88,597.085 671.88,597.171 671.794,597.257 671.794,597.344 671.707,597.344
671.707,597.43 671.621,597.43 671.621,597.518 671.535,597.518 671.535,597.604 671.621,597.775 671.707,597.775 671.707,597.861
671.794,597.949 671.88,597.949 671.88,598.035 671.88,598.121 671.88,598.208 671.88,598.381 671.794,598.467 671.794,598.553
671.794,598.641 671.794,598.727 671.794,598.898 671.794,598.984 671.794,599.072 671.794,599.158 671.794,599.245
671.707,599.245 671.535,599.331 671.448,599.417 671.448,599.504 671.361,599.504 671.274,599.59 671.274,599.677
671.188,599.677 671.103,599.677 671.016,599.85 671.016,599.936 670.93,599.936 670.93,600.021 670.93,600.109 671.016,600.109
670.93,600.195 670.93,600.281 670.93,600.368 670.93,600.454 671.016,600.454 671.103,600.454 671.103,600.541 671.016,600.627
671.016,600.713 671.016,600.8 670.93,600.8 670.843,600.8 670.757,600.886 670.757,600.973 670.671,600.973 670.671,601.059
670.584,601.059 670.584,601.145 670.498,601.145 670.498,601.232 670.411,601.232 670.325,601.232 670.239,601.232
670.152,601.232 670.152,601.145 670.152,601.232 670.065,601.232 669.979,601.232 669.979,601.318 669.893,601.318
669.893,601.232 669.893,601.318 669.807,601.318 669.72,601.404 669.72,601.491 669.634,601.491 669.547,601.837 669.288,601.75
669.288,601.923 669.202,601.837 669.202,601.923 669.115,602.182 669.202,602.182 669.115,602.27 669.029,602.355
668.943,602.441 668.943,602.527 668.77,602.613 668.683,602.701 668.597,602.701 668.511,602.701 668.424,602.787
668.424,602.873 668.338,602.873 668.338,602.96 668.251,602.96 668.251,602.873 668.165,602.873 668.079,602.96 667.906,603.133
667.818,603.219 667.732,603.133 667.732,603.046 667.646,603.046 667.56,603.046 667.56,602.96 667.474,602.96 667.474,603.046
667.387,603.046 667.387,603.133 667.301,603.219 667.301,603.305 667.215,603.305 667.215,603.393 667.128,603.65
667.128,603.736 667.042,603.824 667.042,603.997 667.042,604.083 666.955,604.083 666.955,604.169 666.955,604.256
666.869,604.256 666.869,604.342 666.869,604.43 666.783,604.43 666.783,604.516 666.783,604.602 666.783,604.688 666.783,604.773
666.783,605.033 666.783,605.12 666.783,605.206 666.696,605.206 666.783,605.206 666.783,605.379 666.783,605.465
666.696,605.379 666.609,605.465 666.609,605.639 666.522,605.725 666.437,605.725 666.437,605.639 666.351,605.639
666.264,605.639 666.178,605.552 666.091,605.552 666.091,605.639 666.005,605.639 666.005,605.552 665.919,605.552
665.919,605.465 665.832,605.465 665.746,605.465 665.746,605.379 665.659,605.379 665.573,605.379 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
630.322,569.782 630.322,569.696 630.322,569.609 630.322,569.523 630.408,569.437 630.408,569.351 630.408,569.265
630.495,569.265 630.495,569.178 630.495,569.092 630.581,569.092 630.581,569.004 630.581,568.918 630.668,568.918
630.581,568.918 630.668,568.832 630.668,568.746 630.754,568.746 630.668,568.746 630.668,568.659 630.668,568.572
630.754,568.486 630.754,568.4 630.84,568.4 630.84,568.313 630.84,568.228 630.84,568.141 630.754,568.141 630.668,568.141
630.581,568.141 630.495,568.141 630.495,568.055 630.408,568.055 630.322,567.969 630.322,567.881 630.236,567.881
630.236,567.795 630.236,567.709 630.149,567.709 630.149,567.623 630.063,567.623 629.89,567.449 629.804,567.449
629.717,567.449 629.544,567.276 629.544,567.19 629.458,567.19 629.458,567.104 629.372,567.018 629.285,566.932 629.285,566.844
629.199,566.758 629.112,566.586 628.94,566.24 628.594,566.412 628.594,566.326 628.508,566.24 628.508,566.067 628.508,565.98
628.421,565.895 628.421,565.809 628.335,565.809 628.248,565.809 628.162,565.809 628.162,565.721 628.076,565.721
628.162,565.549 628.162,565.463 628.248,565.463 628.162,565.377 628.076,565.377 628.076,565.289 628.162,565.289
628.335,565.116 628.248,564.857 628.076,564.944 628.076,564.857 628.076,564.771 627.989,564.685 627.989,564.599
627.989,564.512 627.903,564.426 627.816,564.426 627.816,564.34 627.903,564.34 627.903,564.252 627.903,564.166 627.903,564.08
627.903,563.993 627.816,563.993 627.73,563.993 627.73,563.907 627.644,563.82 627.384,563.734 627.298,563.734 627.039,563.648
626.952,563.562 626.78,563.476 626.693,563.389 626.52,563.389 625.656,563.129 625.311,562.957 625.138,562.957 624.879,562.871
624.706,562.784 624.447,562.697 624.274,562.697 624.274,562.611 624.015,562.611 624.101,562.524 624.101,562.353
624.274,562.008 624.36,561.834 624.447,561.488 624.533,561.401 624.706,561.229 624.792,561.143 624.879,560.969
624.965,560.969 625.052,560.797 625.052,560.711 625.138,560.711 625.224,560.711 625.224,560.625 625.224,560.537
625.311,560.625 625.57,560.625 625.656,560.451 625.829,560.192 626.088,559.76 626.088,559.674 626.175,559.5 626.348,559.155
626.434,559.155 626.434,558.982 626.607,558.81 626.607,558.465 626.607,558.377 626.607,558.291 626.607,558.205
626.607,558.119 626.52,558.119 626.52,558.032 626.52,557.859 626.52,557.772 626.607,557.772 626.693,557.772 626.78,557.772
626.866,557.772 626.952,557.772 626.952,557.859 627.039,557.859 627.212,557.859 627.298,557.945 627.384,557.945
627.384,558.032 627.471,558.032 627.557,558.032 627.644,558.119 627.73,558.119 627.816,558.119 627.903,558.119
627.989,558.205 628.076,558.205 628.162,558.205 628.248,558.205 628.335,558.205 628.421,558.119 628.508,558.119
628.594,558.119 628.68,558.032 628.767,558.032 628.853,557.945 628.94,557.945 629.026,557.859 629.112,557.772 629.199,557.772
629.285,557.772 629.372,557.687 629.458,557.687 629.544,557.601 629.631,557.601 629.717,557.601 629.804,557.601
629.89,557.514 629.976,557.514 630.063,557.514 630.149,557.514 630.236,557.514 630.322,557.514 630.495,557.514
630.581,557.514 630.668,557.514 630.754,557.514 630.84,557.514 630.927,557.514 631.1,557.514 631.186,557.514 631.271,557.514
631.359,557.514 631.445,557.514 631.532,557.514 631.618,557.514 631.704,557.428 631.791,557.428 631.877,557.428
631.964,557.428 632.05,557.34 632.136,557.34 632.136,557.256 632.223,557.256 632.309,557.168 632.396,557.168 632.396,557.082
632.482,557.082 632.568,557.082 632.568,556.996 632.655,556.996 632.741,556.996 632.914,556.908 632.828,556.908
632.914,556.908 633.087,556.908 633.087,556.822 633.173,556.822 633.26,556.822 633.346,556.822 633.432,556.822
633.519,556.822 633.605,556.908 633.692,556.908 633.778,556.908 633.864,556.908 633.951,556.996 634.037,556.996
634.124,556.996 634.21,556.996 634.296,557.082 634.383,557.082 634.469,557.082 634.556,557.168 634.642,557.168
634.815,557.168 634.988,557.168 635.074,557.168 635.16,557.168 635.247,557.168 635.333,557.168 635.42,557.168 635.506,557.082
635.592,557.082 635.679,557.082 635.765,557.082 635.938,557.168 636.024,557.168 636.111,557.256 636.197,557.256
636.284,557.256 636.37,557.34 636.456,557.34 636.629,557.428 636.716,557.514 636.802,557.514 636.888,557.514 636.888,557.601
636.975,557.601 637.061,557.687 637.234,557.772 637.32,557.859 637.407,557.859 637.493,557.945 637.58,558.032 637.666,558.032
637.666,558.119 637.752,558.119 637.839,558.119 637.839,558.205 637.925,558.205 638.012,558.205 638.098,558.291
638.184,558.291 638.271,558.377 638.357,558.377 638.53,558.377 638.616,558.377 638.703,558.377 638.789,558.377
638.876,558.377 639.048,558.377 639.135,558.377 639.221,558.377 639.308,558.377 639.308,558.291 639.394,558.291
639.48,558.291 639.567,558.291 639.653,558.291 639.74,558.291 639.826,558.205 639.912,558.205 639.912,558.119 639.999,558.119
640.085,558.119 640.085,558.205 640.085,558.119 640.172,558.205 640.258,558.205 640.258,558.291 640.344,558.291
640.517,558.291 640.604,558.291 640.69,558.291 640.776,558.291 640.949,558.291 641.122,558.377 641.468,558.377
641.727,558.377 641.813,558.377 641.9,558.377 642.159,558.377 642.245,558.377 642.332,558.377 642.504,558.377 642.591,558.465
642.677,558.465 642.764,558.465 642.85,558.465 642.936,558.465 642.936,558.551 643.023,558.551 643.109,558.551
643.196,558.551 643.368,558.551 643.455,558.637 643.541,558.637 643.714,558.637 643.8,558.637 643.973,558.637 644.06,558.637
644.146,558.637 644.405,558.637 644.492,558.637 644.492,558.81 644.492,558.896 644.578,558.982 644.578,559.068
644.578,559.155 644.578,559.328 644.578,559.414 644.664,559.414 644.664,559.5 644.578,559.5 644.578,559.588 644.578,559.674
644.578,559.76 644.578,559.846 644.578,560.02 644.492,560.364 644.492,560.451 644.492,560.537 644.578,560.625 644.578,560.711
644.664,560.797 644.664,560.883 644.578,560.883 644.578,560.969 644.578,561.057 644.578,561.143 644.578,561.229
644.578,561.315 644.578,561.574 644.578,561.834 644.578,561.92 644.578,562.008 644.664,562.092 644.751,562.18 644.751,562.266
644.837,562.266 644.837,562.353 644.837,562.438 644.837,562.524 644.837,562.611 644.751,562.957 644.751,563.217
644.664,563.562 644.578,563.734 644.578,563.907 644.578,563.993 644.578,564.08 644.578,564.166 644.578,564.34 644.578,564.426
644.578,564.512 644.578,564.685 644.578,564.944 644.578,565.03 644.578,565.203 644.492,565.721 644.492,566.24 644.492,566.412
644.405,566.5 644.405,566.758 644.319,566.932 644.319,567.018 644.319,567.104 644.232,567.19 644.232,567.276 644.146,567.363
644.06,567.537 644.06,567.623 643.973,567.881 643.887,568.055 643.714,568.313 643.455,568.918 643.368,569.092 643.368,569.178
643.282,569.265 643.282,569.351 643.196,569.437 643.196,569.523 643.196,569.609 643.196,569.696 643.109,569.696
643.109,569.782 643.109,569.868 643.023,569.868 642.936,570.041 642.936,570.129 642.85,570.129 642.85,570.215 642.764,570.301
642.677,570.387 642.591,570.474 642.591,570.561 642.504,570.646 642.418,570.732 642.332,570.819 642.332,570.905
642.245,570.992 642.245,571.078 642.159,571.164 642.072,571.338 642.072,571.424 641.986,571.424 641.986,571.51
641.986,571.596 641.986,571.684 641.986,571.77 641.986,571.856 642.072,571.856 642.072,571.942 642.159,572.028
642.159,572.115 642.159,572.201 642.159,572.289 642.159,572.375 642.072,572.375 642.072,572.461 641.986,572.461
641.986,572.547 641.9,572.547 641.727,572.633 641.64,572.721 641.468,572.893 641.381,572.893 641.381,572.979 641.295,572.979
641.122,572.893 640.949,572.893 640.863,572.807 640.604,572.721 640.517,572.721 640.431,572.721 640.344,572.721
640.344,572.633 640.258,572.633 640.085,572.633 640.172,572.547 640.085,572.547 639.999,572.547 639.999,572.461
639.912,572.461 639.999,572.461 639.912,572.461 639.826,572.375 639.653,572.375 639.567,572.375 639.394,572.375
639.221,572.461 638.962,572.461 638.876,572.461 638.789,572.461 638.53,572.461 638.444,572.461 638.357,572.461
638.271,572.461 638.271,572.375 638.271,572.461 638.184,572.461 638.012,572.461 637.925,572.461 637.839,572.461
637.752,572.461 637.666,572.461 637.58,572.461 637.493,572.461 637.407,572.547 637.32,572.547 637.234,572.547 637.148,572.547
636.975,572.547 636.888,572.547 636.802,572.547 636.716,572.547 636.629,572.547 636.543,572.547 636.37,572.547
636.284,572.547 636.197,572.547 636.111,572.547 636.024,572.547 635.938,572.547 635.852,572.547 635.765,572.547
635.592,572.547 635.506,572.461 635.506,572.547 635.42,572.547 635.42,572.461 635.42,572.547 635.333,572.461 635.333,572.547
635.247,572.461 635.16,572.461 635.16,572.547 634.988,572.547 634.901,572.461 634.815,572.461 634.728,572.461 634.728,572.547
634.642,572.633 634.556,572.633 634.383,572.633 634.296,572.633 634.21,572.633 634.124,572.633 634.124,572.721
634.037,572.633 633.951,572.633 633.778,572.633 633.692,572.633 633.605,572.633 633.346,572.633 633.26,572.721 633.26,572.633
633.173,572.633 633.087,572.633 632.914,572.633 632.828,572.633 632.741,572.633 632.655,572.633 632.568,572.633
632.568,572.721 632.396,572.633 632.396,572.721 632.309,572.633 632.223,572.633 632.136,572.721 632.136,572.633
631.877,572.633 631.791,572.633 631.704,572.633 631.618,572.633 631.618,572.547 631.532,572.547 631.445,572.461
631.445,572.375 631.359,572.461 631.271,572.547 631.186,572.547 631.1,572.547 631.013,572.461 630.927,572.461 630.754,572.375
630.668,572.375 630.495,572.289 630.322,572.201 630.236,572.201 630.149,572.289 629.976,572.375 629.804,572.375
629.717,572.289 629.631,572.201 629.631,572.115 629.544,572.028 629.458,571.856 629.372,571.684 629.199,571.51
629.112,571.424 629.199,571.424 629.199,571.338 629.285,571.338 629.372,571.338 629.458,571.252 629.458,571.164
629.458,571.078 629.544,571.078 629.544,570.992 629.631,570.992 629.631,570.819 629.717,570.819 629.717,570.732
629.804,570.646 629.89,570.646 629.976,570.474 630.063,570.387 630.063,570.301 630.149,570.215 630.149,570.041
630.149,570.129 630.236,570.129 630.236,570.041 630.236,569.955 630.236,569.868 630.322,569.868 630.322,569.782 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
648.466,572.288 648.466,572.374 648.38,572.461 648.38,572.635 648.293,572.721 648.38,572.721 648.293,572.721 648.293,572.807
648.207,572.893 648.034,573.238 647.948,573.498 647.861,573.67 647.861,573.758 647.774,573.844 647.774,573.93 647.774,574.016
647.774,574.189 647.774,574.275 647.774,574.448 647.774,574.534 647.774,574.621 647.774,574.707 647.688,574.794
647.688,574.881 647.688,574.967 647.688,575.053 647.688,575.139 647.688,575.227 647.688,575.313 647.688,575.398
647.688,575.485 647.774,575.485 647.774,575.571 647.774,575.658 647.774,575.744 647.774,575.83 647.774,575.917
647.774,576.004 647.774,576.176 647.861,576.35 647.861,576.521 647.861,576.608 647.861,576.781 647.861,576.867
647.861,576.954 647.948,576.954 648.034,576.954 648.12,576.954 648.12,577.04 648.12,577.126 648.12,577.213 648.207,577.299
648.12,577.299 648.207,577.559 648.293,577.731 648.293,577.818 648.38,578.077 648.38,578.25 648.38,578.422 648.38,578.51
648.38,578.596 648.38,578.682 648.38,578.768 648.38,578.854 648.293,578.941 648.38,578.941 648.38,579.027 648.466,579.027
648.466,579.114 648.552,579.027 648.639,579.027 648.639,579.114 648.639,579.2 648.639,579.373 648.639,579.459 648.639,579.547
648.552,579.547 648.552,579.459 648.466,579.459 648.466,579.547 648.466,579.633 648.552,579.719 648.552,579.805
648.552,579.891 648.639,580.064 648.639,580.15 648.639,580.237 648.552,580.237 648.552,580.323 648.466,580.323 648.38,580.323
648.293,580.323 648.12,580.323 648.12,580.41 648.12,580.496 648.12,580.582 648.12,580.669 648.12,580.756 648.12,580.842
648.12,581.014 648.12,581.102 648.12,581.188 648.12,581.36 648.207,581.533 648.293,581.533 648.38,581.533 648.38,581.619
648.466,581.619 648.552,581.706 648.552,581.792 648.639,581.792 648.725,581.879 648.812,581.965 648.812,582.051
648.897,582.139 648.983,582.311 648.983,582.396 648.812,582.483 648.725,582.483 648.639,582.57 648.552,582.57 648.466,582.656
648.38,582.656 648.293,582.57 648.207,582.396 648.12,582.396 647.861,582.57 647.774,582.483 647.602,582.656 647.774,582.915
647.688,582.915 647.688,583.001 647.602,583.001 647.602,583.088 647.429,583.088 647.343,583.174 647.256,583.174
647.17,583.174 647.17,583.088 647.17,583.001 647.084,583.001 647.084,582.915 647.084,583.001 646.911,583.001 646.824,583.001
646.824,582.915 646.738,583.001 646.652,583.001 646.564,583.001 646.479,583.001 646.392,583.088 646.306,583.088
646.22,583.088 646.047,583.174 645.874,583.174 645.788,583.262 645.701,583.348 645.527,583.348 645.441,583.434
645.441,583.348 645.441,583.262 645.441,583.174 645.441,583.088 645.355,583.001 645.355,582.915 645.269,582.915
645.183,582.915 645.096,582.915 644.924,583.001 644.837,583.001 644.751,583.001 644.664,583.088 644.492,583.088
644.492,583.174 644.492,583.088 644.405,582.915 644.405,582.742 644.405,582.656 644.318,582.57 644.318,582.656
644.318,582.396 644.231,582.396 643.973,582.225 643.887,582.139 643.8,582.051 643.714,582.051 643.628,582.051 643.628,581.965
643.628,581.879 643.628,581.792 643.541,581.792 643.541,581.706 643.455,581.619 643.368,581.533 643.282,581.533
643.282,581.446 643.196,581.446 643.108,581.36 643.022,581.274 642.936,581.274 642.85,581.274 642.85,581.36 642.764,581.36
642.677,581.36 642.677,581.446 642.591,581.446 642.504,581.446 642.418,581.446 642.418,581.36 642.332,581.36 642.245,581.36
642.159,581.274 642.072,581.274 641.986,581.36 641.899,581.36 641.813,581.36 641.813,581.274 641.727,581.274 641.64,581.274
641.554,581.274 641.554,581.36 641.468,581.36 641.381,581.36 641.295,581.274 641.208,581.274 641.122,581.274 641.036,581.188
640.949,581.188 640.949,581.102 640.863,581.102 640.863,581.014 640.863,580.928 640.949,580.928 640.949,580.842
640.949,580.756 640.863,580.756 640.863,580.669 640.775,580.582 640.689,580.582 640.689,580.496 640.604,580.41
640.517,580.323 640.431,580.237 640.431,580.15 640.344,580.15 640.258,580.15 640.172,580.064 640.172,579.979 640.085,579.979
640.085,579.891 639.999,579.719 639.999,579.633 639.912,579.633 639.826,579.633 639.74,579.633 639.74,579.547 639.652,579.459
639.566,579.373 639.479,579.286 639.479,579.2 639.479,579.114 639.394,579.027 639.394,578.941 639.308,578.854 639.308,578.768
639.308,578.682 639.221,578.596 639.221,578.51 639.135,578.336 639.135,578.25 639.135,578.163 639.048,578.077 639.048,577.99
639.048,577.904 639.048,577.818 639.135,577.818 639.135,577.731 639.221,577.645 639.308,577.559 639.394,577.473
639.479,577.473 639.479,577.387 639.566,577.299 639.566,577.213 639.652,577.213 639.652,577.126 639.74,577.126 639.74,577.04
639.74,576.954 639.826,576.954 639.826,576.867 639.826,576.781 639.826,576.694 639.912,576.694 639.999,576.608
639.999,576.521 640.085,576.521 640.085,576.436 640.172,576.436 640.172,576.35 640.085,576.262 640.085,576.176 639.999,576.09
639.999,576.004 639.999,575.917 639.999,575.83 639.999,575.744 639.999,575.658 640.085,575.658 640.085,575.485
640.085,575.313 640.085,575.227 640.085,575.139 640.172,575.139 640.172,575.053 640.258,575.053 640.258,574.967
640.258,574.881 640.258,574.794 640.258,574.707 640.344,574.707 640.344,574.621 640.431,574.534 640.517,574.448
640.604,574.275 640.689,574.189 640.775,574.102 640.775,574.016 640.863,573.93 640.949,573.758 641.036,573.584
641.122,573.498 641.122,573.411 641.208,573.325 641.208,573.152 641.295,573.066 641.295,572.979 641.381,572.979
641.381,572.893 641.468,572.893 641.64,572.721 641.727,572.635 641.899,572.547 641.986,572.547 641.986,572.461
642.072,572.461 642.072,572.374 642.159,572.374 642.159,572.288 642.159,572.202 642.159,572.115 642.159,572.029
642.072,571.942 642.072,571.856 641.986,571.856 641.986,571.77 641.986,571.684 641.986,571.598 641.986,571.51 641.986,571.424
642.072,571.424 642.072,571.338 642.159,571.165 642.245,571.078 642.245,570.992 642.332,570.906 642.332,570.819
642.418,570.733 642.504,570.646 642.591,570.561 642.591,570.475 642.677,570.387 642.764,570.301 642.85,570.215 642.85,570.129
642.936,570.129 642.936,570.042 643.022,569.869 643.108,569.869 643.108,569.782 643.108,569.696 643.196,569.696
643.196,569.61 643.196,569.523 643.196,569.438 643.282,569.35 643.282,569.264 643.368,569.178 643.368,569.092 643.455,568.918
643.714,568.314 643.887,568.055 643.973,567.883 644.06,567.622 644.06,567.536 644.146,567.363 644.231,567.277 644.231,567.19
644.318,567.104 644.318,567.018 644.318,566.932 644.405,566.758 644.405,566.499 644.492,566.413 644.492,566.24
644.492,565.723 644.578,565.203 644.664,565.117 644.751,565.117 644.751,565.203 644.837,565.117 644.924,565.117
645.01,565.117 645.096,565.117 645.096,565.203 645.096,565.29 645.096,565.376 645.01,565.376 645.01,565.463 645.01,565.549
645.01,565.463 645.01,565.549 645.01,565.635 645.096,565.723 645.183,565.723 645.269,565.723 645.355,565.723 645.441,565.635
645.527,565.723 645.527,565.809 645.615,565.809 645.701,565.723 645.788,565.723 645.788,565.635 645.874,565.635
645.96,565.635 645.96,565.723 646.047,565.809 646.047,565.895 646.047,565.981 646.133,565.981 646.22,565.981 646.306,565.981
646.392,565.981 646.392,566.067 646.564,565.981 646.652,565.981 646.738,565.981 646.824,565.981 646.911,565.981
646.997,565.981 647.084,566.067 647.17,565.981 647.17,566.067 647.256,566.067 647.343,566.067 647.429,566.067 647.516,566.067
647.602,566.154 647.688,566.154 647.774,566.154 647.861,566.154 647.948,566.24 648.034,566.24 648.12,566.24 648.293,566.24
648.38,566.154 648.552,566.067 648.725,566.067 648.725,566.154 648.725,566.24 648.725,566.326 648.725,566.499 648.725,566.672
648.897,566.672 648.983,566.758 648.983,566.846 648.983,566.932 648.983,567.018 648.983,567.104 649.071,567.19
649.071,567.277 649.071,567.363 648.983,567.45 648.983,567.622 648.897,567.709 648.897,567.795 648.897,567.883
648.897,567.969 648.725,568.227 648.639,568.4 648.639,568.314 648.552,568.314 648.639,568.4 648.552,568.4 648.552,568.314
648.552,568.4 648.552,568.486 648.552,568.573 648.466,568.573 648.552,568.573 648.552,568.659 648.466,568.659 648.466,568.746
648.466,568.832 648.466,568.918 648.38,568.918 648.38,569.006 648.38,569.092 648.38,569.178 648.38,569.264 648.293,569.264
648.293,569.35 648.38,569.35 648.293,569.35 648.293,569.438 648.293,569.523 648.207,569.61 648.12,569.61 648.12,569.696
648.034,569.696 648.034,569.782 648.034,569.869 647.948,569.869 647.948,569.955 647.861,569.955 647.861,570.042
647.774,570.042 647.861,570.042 647.861,570.129 647.861,570.215 647.861,570.301 647.774,570.301 647.602,570.215
647.516,570.215 647.429,570.215 647.429,570.301 647.343,570.301 647.343,570.215 647.256,570.215 647.17,570.215 647.17,570.301
647.429,570.387 647.774,570.475 647.861,570.561 647.948,570.561 648.034,570.646 648.552,571.424 648.639,571.51 648.725,571.51
648.725,571.598 648.725,571.684 648.639,571.684 648.725,571.684 648.639,571.77 648.639,571.856 648.639,571.942
648.552,571.942 648.552,572.029 648.552,571.942 648.552,572.115 648.466,572.115 648.466,572.202 648.466,572.288 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
648.466,572.288 648.466,572.202 648.466,572.115 648.552,572.115 648.552,571.942 648.552,572.029 648.552,571.942
648.639,571.942 648.639,571.856 648.639,571.77 648.725,571.684 648.639,571.684 648.725,571.684 648.725,571.598 648.725,571.51
648.639,571.51 648.552,571.424 648.034,570.646 647.948,570.561 647.861,570.561 647.774,570.475 647.429,570.387 647.17,570.301
647.17,570.215 647.256,570.215 647.343,570.215 647.343,570.301 647.429,570.301 647.429,570.215 647.516,570.215
647.602,570.215 647.774,570.301 647.861,570.301 647.861,570.215 647.861,570.129 647.861,570.042 647.774,570.042
647.861,570.042 647.861,569.955 647.948,569.955 647.948,569.869 648.034,569.869 648.034,569.782 648.034,569.696
648.12,569.696 648.12,569.61 648.207,569.61 648.293,569.523 648.293,569.438 648.293,569.35 648.38,569.35 648.293,569.35
648.293,569.264 648.38,569.264 648.38,569.178 648.38,569.092 648.38,569.006 648.38,568.918 648.466,568.918 648.466,568.832
648.466,568.746 648.466,568.659 648.552,568.659 648.552,568.573 648.466,568.573 648.552,568.573 648.552,568.486 648.552,568.4
648.552,568.314 648.552,568.4 648.639,568.4 648.552,568.314 648.639,568.314 648.639,568.4 648.812,568.486 648.897,568.573
648.983,568.573 648.983,568.659 649.157,568.746 649.244,568.832 649.244,568.918 649.33,568.918 649.416,568.918
649.416,569.006 649.503,569.006 649.503,569.092 649.589,569.178 649.589,569.264 649.762,569.35 649.676,569.35 649.848,569.438
649.935,569.523 649.935,569.61 650.021,569.61 650.107,569.782 650.193,569.869 650.28,570.042 650.367,570.042 650.367,570.129
650.453,570.129 650.453,570.215 650.54,570.215 650.54,570.301 650.54,570.387 650.626,570.387 650.626,570.475 650.885,570.646
650.885,570.733 650.972,570.733 650.972,570.819 650.972,570.733 651.058,570.733 651.058,570.646 651.144,570.646
651.23,570.561 651.316,570.561 651.404,570.561 651.404,570.475 651.49,570.475 651.576,570.475 651.663,570.475 651.749,570.475
651.749,570.387 651.922,570.387 652.008,570.387 652.095,570.301 652.181,570.301 652.268,570.301 652.354,570.215
652.439,570.215 652.439,570.301 652.527,570.301 652.527,570.387 652.527,570.475 652.527,570.561 652.439,570.646
652.354,570.646 652.354,570.561 652.268,570.561 652.181,570.561 652.095,570.646 652.008,570.646 652.008,570.733
651.922,570.733 651.922,570.819 651.836,570.906 651.836,570.992 651.836,571.078 651.836,571.165 651.836,571.251
651.836,571.165 651.922,571.165 652.095,571.251 652.181,571.338 652.268,571.338 652.268,571.424 652.354,571.424
652.354,571.51 652.439,571.51 652.527,571.598 652.786,571.77 652.872,571.77 652.959,571.856 653.045,571.942 653.132,572.029
653.218,572.115 653.304,572.115 653.391,572.202 653.477,572.202 653.477,572.288 653.563,572.374 653.649,572.374
653.736,572.288 653.823,572.374 653.909,572.461 653.996,572.461 654.082,572.461 654.168,572.547 654.255,572.547
654.341,572.547 654.428,572.635 654.514,572.635 654.6,572.721 654.687,572.721 654.772,572.807 654.859,572.721 654.946,572.721
655.032,572.635 655.205,572.461 655.292,572.461 655.378,572.374 655.464,572.288 655.551,572.288 655.637,572.288
655.724,572.288 655.81,572.374 655.896,572.374 655.982,572.374 656.068,572.374 656.156,572.374 656.156,572.461
656.242,572.461 656.242,572.547 656.328,572.547 656.415,572.721 656.501,572.721 656.674,572.721 656.674,572.635
656.76,572.547 656.847,572.547 656.933,572.461 657.105,572.461 657.105,572.374 657.02,572.202 657.02,572.029 657.105,571.77
657.191,571.77 657.279,571.684 657.279,571.598 657.365,571.51 657.279,571.51 657.279,571.424 657.279,571.338 657.191,571.251
657.191,571.165 657.105,571.078 657.02,570.992 657.105,570.992 657.191,570.906 657.365,570.819 657.452,570.819
657.538,570.733 657.624,570.733 657.711,570.646 657.884,570.992 657.97,571.165 658.143,571.078 658.315,570.992
658.402,571.165 658.488,571.165 658.575,571.078 658.661,571.078 658.748,570.992 658.834,570.992 659.093,570.906
659.524,570.561 659.784,570.387 659.871,570.301 660.13,570.561 660.216,570.561 660.303,570.561 660.303,570.475
660.389,570.475 660.476,570.387 660.562,570.387 660.562,570.301 660.647,570.215 660.734,570.215 660.734,570.129
660.821,570.129 660.821,570.042 660.908,569.955 660.908,569.869 660.994,569.782 661.08,569.696 661.167,569.696 661.167,569.61
661.253,569.61 661.34,569.523 661.34,569.438 661.426,569.35 661.512,569.35 661.599,569.264 661.685,569.264 661.771,569.178
661.943,569.092 662.031,569.006 662.117,569.006 662.29,569.006 662.376,569.006 662.549,569.178 662.636,569.35 662.636,569.438
662.722,569.438 662.722,569.523 662.808,569.696 662.895,569.782 662.895,569.869 662.98,569.955 662.98,570.042 663.068,570.129
663.068,570.215 663.154,570.215 663.154,570.301 663.24,570.387 663.24,570.475 663.24,570.561 663.24,570.646 663.327,570.646
663.327,570.733 663.413,570.819 663.413,570.906 663.5,570.906 663.5,570.992 663.5,571.078 663.586,571.078 663.586,571.251
663.586,571.338 663.586,571.424 663.586,571.51 663.672,571.598 663.672,571.684 663.672,571.77 663.672,571.856 663.672,571.942
663.759,572.029 663.672,572.029 663.672,572.202 663.672,572.288 663.672,572.374 663.672,572.461 663.672,572.547
663.759,572.635 663.759,572.721 663.759,572.807 663.845,572.807 663.759,573.066 663.759,573.152 663.759,573.238
663.759,573.325 663.672,573.498 663.672,573.584 663.586,573.584 663.5,573.498 663.413,573.584 663.068,573.93 662.98,574.102
662.895,574.189 662.808,574.275 662.636,574.448 662.463,574.621 662.376,574.707 662.29,574.794 661.943,574.967
661.857,575.139 661.685,575.227 661.512,575.313 661.599,575.398 661.599,575.485 661.599,575.571 661.685,575.658
661.685,575.744 661.771,575.83 661.599,575.83 661.426,575.917 661.167,576.004 661.34,576.436 661.34,576.521 661.426,576.694
661.426,576.781 661.426,576.867 661.34,576.867 661.426,576.954 661.599,576.954 661.857,576.954 661.943,576.954 661.943,577.04
662.031,577.04 662.031,577.126 662.031,577.213 661.771,577.387 661.771,577.473 661.771,577.559 661.857,577.645
661.857,577.731 661.857,577.818 661.685,577.904 661.599,577.904 661.599,577.99 661.599,578.077 661.599,578.163 661.599,578.25
661.599,578.336 661.599,578.422 661.685,578.422 661.685,578.51 661.771,578.51 661.857,578.596 661.857,578.682 661.857,578.768
661.771,578.768 661.685,578.854 661.685,578.941 661.685,579.027 661.771,579.027 661.771,579.114 661.771,579.2 661.685,579.286
661.685,579.373 661.685,579.459 661.685,579.547 661.685,579.633 661.685,579.719 661.685,579.805 661.599,579.805
661.512,579.805 661.426,579.891 661.426,579.979 661.34,579.979 661.34,580.064 661.253,580.064 661.253,580.15 661.167,580.15
661.167,580.237 661.08,580.237 660.562,580.41 660.476,580.496 660.476,580.582 660.562,580.582 660.389,580.842 660.303,581.188
660.303,581.274 660.389,581.274 660.476,581.274 660.647,581.36 660.476,581.533 660.389,581.533 660.303,581.533
660.303,581.619 659.784,581.619 659.784,581.706 659.957,581.879 659.957,581.965 659.784,582.225 659.698,582.311
659.698,582.396 659.698,582.483 659.612,582.483 659.438,582.483 659.266,582.483 659.266,582.57 659.18,582.57 659.18,582.656
659.093,582.656 659.093,582.742 659.007,582.829 658.92,582.829 658.92,582.915 658.92,583.001 658.834,583.001 658.748,583.001
658.748,583.088 658.661,583.088 658.575,583.088 658.575,583.174 658.488,583.174 658.402,583.262 658.315,583.262
658.229,583.348 658.143,583.434 658.056,583.434 658.056,583.52 657.97,583.52 657.884,583.606 657.797,583.693 657.711,583.693
657.624,583.779 657.538,583.779 657.538,583.866 657.538,583.779 657.452,583.693 657.452,583.606 657.452,583.434
657.365,583.348 657.365,583.262 657.365,583.174 657.365,583.088 657.452,583.088 657.365,583.174 657.279,583.174
657.279,583.262 657.279,583.348 657.191,583.348 657.191,583.434 657.105,583.434 657.02,583.434 656.933,583.52 656.847,583.52
656.76,583.52 656.674,583.52 656.588,583.606 656.501,583.693 656.415,583.693 656.415,583.779 656.328,583.779 656.242,583.866
656.156,583.866 656.156,583.951 656.156,584.038 656.068,584.038 655.982,584.038 655.896,584.125 655.81,584.125
655.724,584.211 655.637,584.125 655.551,584.125 655.551,584.211 655.464,584.211 655.378,584.299 655.292,584.299
655.205,584.299 655.119,584.299 655.032,584.299 654.946,584.299 654.859,584.299 654.772,584.211 654.687,584.211 654.6,584.211
654.6,584.125 654.6,584.038 654.6,583.951 654.6,583.866 654.6,583.779 654.6,583.606 654.6,583.52 654.6,583.434 654.6,583.348
654.6,583.262 654.514,583.088 654.514,582.915 654.514,582.742 654.514,582.57 654.341,582.57 654.341,582.396 654.341,582.311
654.341,582.225 654.255,582.225 654.255,582.139 654.168,582.051 654.255,582.051 654.168,582.051 654.168,581.965
654.082,581.965 654.082,581.879 653.996,581.879 653.996,581.792 653.823,581.792 653.736,581.879 653.649,581.879
653.563,581.879 653.563,581.965 653.563,581.879 653.477,581.879 653.391,581.879 653.391,581.792 653.391,581.706
653.304,581.706 653.218,581.619 653.132,581.619 653.132,581.533 653.045,581.533 653.132,581.533 653.132,581.446
653.045,581.446 653.045,581.36 652.959,581.36 652.872,581.36 652.872,581.274 652.872,581.188 652.786,581.188 652.786,581.102
652.7,581.102 652.7,581.014 652.613,581.014 652.613,580.928 652.527,580.928 652.527,580.842 652.439,580.756 652.439,580.669
652.354,580.669 652.354,580.582 652.354,580.496 652.181,580.669 652.095,580.669 652.008,580.756 651.922,580.756
651.836,580.842 651.663,580.928 651.576,580.928 651.49,581.014 651.404,581.014 651.404,581.102 651.404,581.188 651.49,581.36
651.49,581.533 651.49,581.619 651.576,581.706 651.663,581.706 651.663,581.792 651.749,581.879 651.749,581.965 651.836,582.051
651.836,582.139 651.922,582.225 651.922,582.311 651.836,582.311 651.576,582.225 651.404,582.225 651.404,582.311
651.316,582.311 651.23,582.311 651.058,582.225 650.972,582.225 650.885,582.225 650.712,582.225 650.626,582.225 650.54,582.225
650.453,582.311 650.367,582.311 650.28,582.396 650.193,582.396 650.107,582.396 649.935,582.396 649.848,582.396
649.762,582.396 649.589,582.483 649.503,582.483 649.416,582.396 649.416,582.225 649.244,582.225 649.244,582.139
649.244,582.051 649.244,581.965 649.157,581.965 649.157,582.051 649.071,582.139 648.983,582.051 648.897,582.139
648.812,582.051 648.812,581.965 648.725,581.879 648.639,581.792 648.552,581.792 648.552,581.706 648.466,581.619
648.38,581.619 648.38,581.533 648.293,581.533 648.207,581.533 648.12,581.36 648.12,581.188 648.12,581.102 648.12,581.014
648.12,580.842 648.12,580.756 648.12,580.669 648.12,580.582 648.12,580.496 648.12,580.41 648.12,580.323 648.293,580.323
648.38,580.323 648.466,580.323 648.552,580.323 648.552,580.237 648.639,580.237 648.639,580.15 648.639,580.064 648.552,579.891
648.552,579.805 648.552,579.719 648.466,579.633 648.466,579.547 648.466,579.459 648.552,579.459 648.552,579.547
648.639,579.547 648.639,579.459 648.639,579.373 648.639,579.2 648.639,579.114 648.639,579.027 648.552,579.027 648.466,579.114
648.466,579.027 648.38,579.027 648.38,578.941 648.293,578.941 648.38,578.854 648.38,578.768 648.38,578.682 648.38,578.596
648.38,578.51 648.38,578.422 648.38,578.25 648.38,578.077 648.293,577.818 648.293,577.731 648.207,577.559 648.12,577.299
648.207,577.299 648.12,577.213 648.12,577.126 648.12,577.04 648.12,576.954 648.034,576.954 647.948,576.954 647.861,576.954
647.861,576.867 647.861,576.781 647.861,576.608 647.861,576.521 647.861,576.35 647.774,576.176 647.774,576.004
647.774,575.917 647.774,575.83 647.774,575.744 647.774,575.658 647.774,575.571 647.774,575.485 647.688,575.485
647.688,575.398 647.688,575.313 647.688,575.227 647.688,575.139 647.688,575.053 647.688,574.967 647.688,574.881
647.688,574.794 647.774,574.707 647.774,574.621 647.774,574.534 647.774,574.448 647.774,574.275 647.774,574.189
647.774,574.016 647.774,573.93 647.774,573.844 647.861,573.758 647.861,573.67 647.948,573.498 648.034,573.238 648.207,572.893
648.293,572.807 648.293,572.721 648.38,572.721 648.293,572.721 648.38,572.635 648.38,572.461 648.466,572.374 648.466,572.288
"/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
629.112,627.064 628.854,626.547 628.854,626.633 628.854,626.547 628.595,626.719 628.421,626.46 628.334,626.374
628.248,626.287 628.162,626.201 628.248,626.201 628.248,626.115 628.162,625.941 628.162,625.855 628.162,625.77 628.248,625.77
628.248,625.684 628.334,625.684 628.421,625.684 628.334,625.423 627.989,625.51 627.644,625.51 627.558,625.596 627.471,625.596
627.471,625.51 627.471,625.423 627.298,625.423 627.298,625.51 627.211,625.51 627.125,625.51 627.125,625.423 627.125,625.337
627.038,625.251 627.038,625.164 627.038,625.078 626.952,624.905 626.866,624.819 626.866,624.732 626.779,624.732
626.779,624.646 626.693,624.646 626.435,624.387 626.348,624.301 626.174,624.127 626.088,624.041 626.002,624.041
626.002,623.955 625.829,623.868 625.742,623.782 625.656,623.782 625.57,623.695 625.397,623.523 625.311,623.436
625.225,623.436 625.139,623.35 625.051,623.35 624.965,623.264 624.878,623.264 624.706,623.178 624.533,623.091 624.36,623.004
624.274,623.091 624.274,623.004 624.188,623.004 624.102,623.091 624.102,623.178 624.015,623.264 624.015,623.35 623.929,623.35
623.842,623.436 623.842,623.609 623.755,623.695 623.669,623.695 623.669,623.609 623.669,623.695 623.582,623.695
623.496,623.782 623.41,623.782 623.064,624.041 622.806,624.301 622.632,624.301 622.632,624.387 622.546,624.387
622.459,624.473 622.373,624.559 622.459,624.819 622.546,624.991 622.459,625.078 622.459,625.164 622.373,625.337
622.286,625.51 622.2,625.596 622.027,625.596 622.027,625.684 621.941,625.684 621.854,625.684 621.683,625.684 621.596,625.684
621.51,625.684 621.422,625.684 621.422,625.51 621.336,625.423 621.163,625.337 621.077,625.164 620.904,624.991 620.731,624.819
620.646,624.732 620.559,624.646 620.473,624.559 620.387,624.387 620.559,624.301 620.559,624.214 620.731,624.127
620.818,624.041 620.818,623.955 620.99,623.782 621.077,623.695 621.077,623.782 621.163,623.782 621.25,623.609 621.163,623.609
621.336,623.523 621.422,623.436 621.422,623.35 621.51,623.264 621.596,623.264 621.683,623.178 621.854,623.091 621.769,623.004
621.769,622.918 621.769,622.831 621.769,622.659 621.683,622.572 621.683,622.486 621.683,622.398 621.596,622.398
621.596,622.313 621.596,622.141 621.51,622.141 621.51,622.055 621.51,621.967 621.422,621.881 621.422,621.795 621.422,621.708
621.422,621.622 621.422,621.535 621.336,621.622 621.25,621.622 621.25,621.535 621.25,621.449 621.25,621.363 621.25,621.275
621.25,621.189 621.25,621.104 621.163,621.018 621.163,620.932 621.163,620.844 621.163,620.758 621.163,620.671 621.077,620.585
621.077,620.499 621.077,620.412 621.077,620.326 620.99,620.239 620.99,620.153 620.99,620.066 620.904,620.066 620.904,619.98
620.818,619.895 620.818,619.807 620.731,619.635 620.646,619.635 620.646,619.548 620.559,619.462 620.387,619.375
620.213,619.203 620.126,619.116 620.04,619.03 619.954,619.03 619.954,618.943 619.867,618.857 619.781,618.943 619.694,618.943
619.608,618.857 619.522,618.771 619.436,618.684 619.35,618.684 619.263,618.684 619.176,618.684 619.09,618.684 619.003,618.684
618.917,618.684 618.917,618.771 618.917,618.857 618.658,618.771 618.485,618.771 618.398,618.771 618.398,618.684
618.398,618.598 618.485,618.512 618.485,618.339 618.485,618.252 618.485,618.166 618.485,618.079 618.485,617.993
618.485,617.907 618.485,617.82 618.485,617.646 618.485,617.561 618.485,617.389 618.485,617.303 618.398,617.303
618.398,617.215 618.398,617.129 618.398,617.043 618.398,616.956 618.398,616.87 618.398,616.783 618.398,616.697
618.398,616.523 618.398,616.438 618.398,616.352 618.398,616.266 618.398,616.18 618.398,616.092 618.398,616.006
618.398,615.919 618.398,615.747 618.485,615.66 618.485,615.574 618.571,615.66 618.658,615.66 618.658,615.574 618.744,615.487
618.744,615.402 618.744,615.314 618.83,615.314 618.83,615.229 618.917,615.229 618.917,615.143 619.003,615.143 619.09,615.143
619.09,615.055 619.09,614.969 619.09,614.883 619.003,614.883 619.003,614.796 619.003,614.71 619.003,614.623 619.003,614.537
619.003,614.451 619.09,614.451 619.09,614.365 619.176,614.365 619.35,614.278 619.522,614.191 619.608,614.278 619.608,614.365
619.608,614.451 619.608,614.537 619.608,614.623 619.694,614.71 619.694,614.796 619.867,614.969 620.04,615.055 620.04,615.143
620.299,615.314 620.387,615.402 620.818,615.66 621.077,615.919 621.25,616.006 621.336,616.006 621.422,616.006 621.51,616.092
621.596,616.092 621.596,616.006 621.683,615.919 621.769,615.833 621.854,615.747 621.854,615.66 621.941,615.574
622.027,615.402 622.114,615.314 622.114,615.229 622.114,615.143 622.2,615.143 622.2,615.055 622.286,614.969 622.286,614.883
622.373,614.883 622.373,614.796 622.459,614.71 622.459,614.623 622.546,614.537 622.546,614.623 622.632,614.623 622.719,614.71
622.806,614.796 622.892,614.883 622.979,614.883 623.064,614.969 623.237,614.796 623.41,614.969 623.582,615.229
623.669,615.143 623.755,615.055 623.929,614.969 624.102,614.796 624.188,614.796 624.274,614.71 624.36,614.623 624.446,614.623
624.619,614.796 624.619,614.71 624.706,614.796 624.792,614.796 624.792,614.883 624.878,614.883 624.878,614.969
624.965,614.969 625.051,615.055 625.225,614.883 625.311,614.796 625.397,614.71 625.483,614.623 625.57,614.623 625.656,614.537
625.742,614.537 625.742,614.451 625.829,614.365 626.002,614.278 626.088,614.191 626.174,614.105 626.262,613.932
626.435,613.76 626.521,613.587 626.606,613.501 626.693,613.587 626.779,613.587 626.866,613.587 626.866,613.673
626.952,613.673 627.038,613.673 627.125,613.76 627.211,613.76 627.211,613.846 627.298,613.932 627.385,613.932 627.385,614.02
627.471,614.02 627.471,614.105 627.558,614.105 627.558,614.191 627.644,614.191 627.644,614.278 627.644,614.365 627.73,614.365
627.73,614.451 627.816,614.537 627.816,614.451 627.902,614.451 627.989,614.451 628.075,614.451 628.162,614.451
628.248,614.451 628.248,614.537 628.334,614.451 628.421,614.365 628.507,614.365 628.507,614.278 628.595,614.278
628.681,614.191 628.681,614.278 628.854,614.191 628.939,614.191 629.112,614.191 629.198,614.105 629.285,614.105
629.371,614.105 629.544,614.105 629.804,614.02 629.891,614.02 629.977,614.02 630.235,613.932 630.408,613.932 630.494,614.105
630.494,614.191 630.581,614.191 630.667,614.105 630.754,614.105 630.84,614.105 630.84,614.02 631.014,614.02 631.1,614.02
631.1,613.932 631.187,613.932 631.272,613.932 631.272,613.846 631.358,613.846 631.445,613.846 631.445,613.932 631.531,613.932
631.618,613.932 631.618,614.02 631.618,614.105 631.531,614.105 631.618,614.105 631.618,614.191 631.704,614.191
631.704,614.278 631.79,614.365 631.877,614.365 631.963,614.451 631.963,614.537 632.051,614.537 631.963,614.537
631.963,614.623 631.877,614.71 631.963,614.796 632.137,614.796 632.137,614.883 632.051,614.883 632.051,614.969
632.051,615.055 632.051,615.229 632.137,615.314 632.137,615.402 632.051,615.402 631.963,615.487 632.137,615.747
632.223,615.747 632.223,615.833 632.223,615.919 632.31,616.092 632.31,616.18 632.31,616.352 632.396,616.438 632.396,616.523
632.482,616.611 632.482,616.697 632.482,616.783 632.396,616.783 632.396,616.87 632.31,616.87 632.396,616.956 632.482,617.043
632.568,617.043 632.654,617.043 632.654,617.129 632.654,617.215 632.741,617.389 632.741,617.475 632.827,617.475
632.827,617.561 632.827,617.646 632.827,617.734 632.827,617.82 632.914,617.993 632.914,618.079 632.914,618.166
632.914,618.252 633,618.252 633,618.339 633,618.426 633,618.512 633,618.598 632.914,618.598 632.741,618.684 632.827,618.684
632.914,618.684 632.914,618.771 633,618.771 633.086,618.771 633.173,619.03 633.086,619.03 633.086,619.116 633.086,619.203
633.086,619.289 633.086,619.375 633.086,619.462 633,619.462 633,619.548 633.086,619.635 633,619.635 632.914,619.721
633.086,619.807 632.914,619.895 632.827,619.807 632.741,619.895 632.741,619.98 632.741,620.153 632.827,620.153
633.086,620.066 633.173,620.412 633.173,620.585 633.26,620.758 633.26,620.932 633.433,620.932 633.433,621.018 633.433,621.189
633.519,621.275 633.519,621.449 633.519,621.535 633.519,621.622 633.519,621.708 633.605,621.795 633.605,621.967
633.605,622.141 633.691,622.141 633.691,622.313 633.519,622.398 633.519,622.313 633.519,622.398 633.433,622.398
633.26,622.398 632.741,622.486 632.654,622.486 632.568,622.486 632.568,622.572 632.482,622.486 632.482,622.398
632.568,622.398 632.482,622.398 632.482,622.313 632.482,622.227 632.482,622.141 632.482,622.055 632.396,622.055
632.31,622.055 632.31,622.141 632.223,622.141 632.31,622.227 632.223,622.227 632.223,622.313 632.137,622.313 632.051,622.313
631.963,622.313 631.963,622.398 632.051,622.398 631.963,622.398 631.79,622.486 631.877,622.572 631.877,622.659 631.79,622.659
631.704,622.659 631.618,622.659 631.531,622.659 631.445,622.659 631.445,622.572 631.358,622.572 631.187,622.659 631.1,622.745
630.84,622.831 630.754,622.831 630.754,622.918 630.667,623.004 630.581,623.004 630.494,623.091 630.408,623.091
630.494,623.264 630.581,623.35 630.581,623.436 630.494,623.436 630.494,623.523 630.494,623.609 630.408,623.609
630.322,623.695 630.149,623.782 630.149,623.868 630.149,624.041 630.235,624.127 630.235,624.387 630.322,624.559
630.322,624.646 630.322,624.732 630.322,624.819 630.408,624.905 630.408,624.991 630.408,625.078 630.408,625.164
630.581,625.251 630.494,625.337 630.322,625.423 630.063,625.51 629.977,625.596 629.977,625.684 630.063,625.684
630.235,625.855 630.322,625.855 630.322,625.941 630.494,626.028 630.581,626.115 630.494,626.201 630.581,626.201
630.494,626.46 630.408,626.633 630.322,626.719 630.235,626.719 630.149,626.807 630.063,626.807 629.977,626.807
629.891,626.893 629.804,626.893 629.717,626.893 629.63,626.893 629.544,626.719 629.458,626.807 629.371,626.893
629.285,626.979 629.198,626.979 629.198,627.064 629.112,627.064 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
617.017,605.465 616.931,605.465 616.931,605.551 616.844,605.551 616.758,605.551 616.758,605.639 616.671,605.725
616.584,605.725 616.498,605.812 616.325,605.897 616.325,605.983 616.238,605.983 616.152,606.07 616.066,606.07 616.066,606.156
615.979,606.156 615.807,606.33 615.721,606.33 615.721,606.416 615.635,606.416 615.548,606.502 615.548,606.588 615.461,606.588
615.461,606.676 615.374,606.676 615.288,606.762 615.202,606.848 615.115,606.935 615.029,606.935 615.029,607.021
614.942,607.107 614.856,607.279 614.771,607.366 614.684,607.452 614.598,607.625 614.511,607.711 614.425,607.799
614.425,607.885 613.992,608.403 613.733,608.575 613.475,608.662 613.388,608.748 613.302,608.748 613.129,608.403
612.955,607.625 612.869,607.539 612.869,607.452 612.869,607.366 612.782,607.107 612.523,607.107 612.523,607.193
612.438,607.193 612.438,607.452 612.438,607.539 612.265,607.625 612.265,607.539 612.265,607.452 612.179,607.452
612.179,607.366 612.092,607.366 612.092,607.279 612.006,607.279 612.006,607.193 611.918,607.193 611.918,607.107
611.832,607.107 611.746,607.021 611.659,606.848 611.573,606.848 611.573,606.762 611.486,606.762 611.486,606.676 611.4,606.762
611.486,606.848 611.4,606.848 611.142,606.762 610.969,606.676 610.883,606.762 610.883,606.848 610.883,606.935 610.796,606.935
610.709,606.848 610.622,606.848 610.709,606.762 610.536,606.588 610.45,606.588 610.363,606.588 610.19,606.762 610.104,606.935
610.019,607.107 610.019,607.193 610.019,607.279 609.932,607.279 610.104,607.366 610.104,607.452 610.19,607.452
610.277,607.539 610.363,607.625 610.45,607.625 610.45,607.711 610.536,607.711 610.536,607.799 610.622,607.885 610.709,607.971
610.796,608.058 610.883,608.23 610.883,608.316 610.969,608.403 610.969,608.489 610.969,608.575 610.969,608.662
610.969,608.748 610.883,608.748 610.883,608.836 610.883,608.922 610.883,609.008 610.883,609.094 610.883,609.18
610.883,609.268 610.796,609.354 610.796,609.439 610.796,609.526 610.709,609.785 610.709,609.871 610.709,609.959
610.709,610.045 610.709,610.131 610.709,610.217 610.709,610.303 610.709,610.477 610.709,610.563 610.709,610.822
610.709,610.908 610.709,611.082 610.709,611.34 610.709,611.428 610.709,611.514 610.709,611.6 610.709,611.772 610.709,611.859
610.709,611.945 610.709,612.031 610.709,612.205 610.709,612.291 610.709,612.377 610.709,612.463 610.709,612.551
610.622,612.637 610.536,612.724 610.45,612.896 610.363,612.896 610.363,612.982 610.277,613.155 610.104,613.327
609.846,613.674 609.759,613.846 609.673,613.846 609.673,613.933 609.586,613.933 609.586,614.02 609.499,614.02 609.499,614.105
609.413,614.105 609.326,614.105 609.24,614.105 609.24,614.191 609.154,614.191 608.981,614.278 608.895,614.278 608.809,614.278
608.723,614.278 608.636,614.278 608.55,614.278 608.55,614.191 608.463,614.191 608.463,614.105 608.377,614.02 608.29,613.933
608.203,613.933 608.203,613.846 608.117,613.76 608.03,613.588 608.03,613.5 607.944,613.5 607.944,613.414 607.771,613.241
607.686,613.068 607.599,612.982 607.513,612.982 607.427,612.896 607.427,612.81 607.34,612.81 607.34,612.724 607.254,612.637
607.254,612.551 607.166,612.463 607.166,612.377 607.08,612.291 607.08,612.205 606.994,612.205 606.994,612.118 606.907,612.118
606.821,612.031 606.734,612.031 606.648,612.031 606.563,611.945 606.476,611.945 606.476,611.859 606.303,611.687
606.217,611.687 606.217,611.6 606.131,611.6 606.043,611.6 605.957,611.514 605.87,611.428 605.784,611.34 605.698,611.254
605.611,611.254 605.611,611.168 605.525,611.168 605.438,611.082 605.353,610.996 605.267,610.996 605.18,610.908 605.18,610.822
605.18,610.735 605.007,610.649 604.921,610.649 604.921,610.563 604.834,610.563 604.747,610.563 604.747,610.477
604.661,610.477 604.574,610.477 604.488,610.477 604.402,610.477 604.315,610.477 604.229,610.563 604.143,610.563
604.057,610.563 604.057,610.649 603.971,610.649 603.884,610.649 603.884,610.735 603.798,610.735 603.711,610.735
603.711,610.822 603.624,610.822 603.538,610.908 603.451,610.996 603.192,611.168 603.106,611.168 603.02,611.168
602.934,611.254 602.847,611.254 602.761,611.254 602.675,611.254 602.588,611.34 602.502,611.34 602.328,611.34 602.242,611.34
602.155,611.34 602.069,611.254 601.982,611.254 601.896,611.254 601.896,611.082 601.811,610.996 601.811,610.908
601.724,610.908 601.638,610.908 601.551,610.908 601.465,610.908 601.379,610.908 601.205,610.908 601.205,610.822
601.118,610.822 601.118,610.735 601.118,610.563 601.118,610.391 601.032,610.303 601.032,610.131 601.118,610.131
601.205,610.131 601.291,610.131 601.379,610.131 601.551,610.131 601.465,610.045 601.465,609.959 601.465,609.871
601.465,609.699 601.465,609.526 601.465,609.439 601.379,609.354 601.379,609.268 601.291,609.18 601.379,609.094
601.465,609.008 601.118,608.748 600.946,608.662 600.859,608.662 600.859,608.575 600.773,608.489 600.687,608.489
600.687,608.403 600.773,608.403 600.773,608.489 600.946,608.489 601.032,608.575 601.118,608.662 601.291,608.748
601.379,608.836 601.465,608.836 601.551,608.922 601.638,608.922 601.638,608.836 601.724,608.748 601.724,608.662
601.724,608.575 601.724,608.489 601.638,608.403 601.638,608.316 601.551,608.23 601.551,608.144 601.465,608.058
601.465,607.971 601.379,607.971 601.379,607.799 601.291,607.711 601.205,607.625 601.205,607.539 601.379,607.539
601.291,607.452 601.291,607.279 601.379,607.279 601.379,607.193 601.465,607.107 601.551,607.107 601.638,606.935
601.724,606.848 601.811,606.762 601.811,606.676 601.896,606.676 601.982,606.588 602.242,606.416 602.328,606.33
602.414,606.243 602.502,606.156 602.588,606.156 602.588,606.07 602.414,605.983 602.414,605.897 602.761,605.639
603.278,605.207 603.711,604.947 603.711,604.86 603.624,604.86 603.538,604.86 603.451,604.774 603.365,604.774 603.278,604.688
603.192,604.688 603.192,604.602 603.106,604.602 603.02,604.602 603.02,604.516 602.934,604.516 602.934,604.602 602.847,604.688
602.761,604.688 602.675,604.688 602.588,604.688 602.502,604.688 602.502,604.774 602.414,604.774 602.328,604.774
602.242,604.688 602.155,604.688 602.155,604.602 602.242,604.602 602.155,604.516 602.155,604.428 602.069,604.428
601.982,604.342 601.896,604.342 601.811,604.342 601.724,604.256 601.638,604.17 601.465,604.084 601.379,603.996 601.379,603.91
601.379,603.823 601.379,603.737 601.379,603.651 601.291,603.651 601.205,603.564 601.205,603.479 601.551,603.392
601.638,603.479 601.724,603.392 601.811,603.305 601.896,603.219 601.982,602.959 602.155,602.873 602.242,602.7 602.328,602.527
602.414,602.527 602.502,602.441 602.502,602.355 602.588,602.269 602.675,602.183 602.675,602.096 602.761,602.096
602.847,602.01 602.934,601.924 602.934,602.01 603.02,602.01 603.192,602.01 603.278,602.01 603.451,602.01 603.538,601.924
603.624,601.924 603.884,601.836 603.884,601.924 603.971,601.924 604.143,601.836 604.229,601.836 604.488,601.75 604.574,601.75
604.661,601.75 604.747,601.75 604.834,601.75 605.007,601.75 605.18,601.75 605.267,601.836 605.267,601.924 605.267,602.01
605.353,602.01 605.438,602.01 605.525,602.01 605.611,602.01 605.698,602.01 605.784,602.01 605.87,602.01 605.957,602.01
605.957,601.924 606.043,601.924 606.131,601.924 606.131,601.836 606.217,601.75 606.303,601.75 606.39,601.75 606.476,601.75
606.563,601.664 606.563,601.577 606.648,601.577 606.734,601.491 606.821,601.491 606.734,601.577 606.734,601.664
606.734,601.75 606.734,601.836 606.734,601.924 606.821,602.01 606.907,602.096 606.907,602.183 606.994,602.096 607.08,602.183
607.08,602.269 607.08,602.355 607.166,602.355 607.254,602.269 607.254,602.183 607.427,602.183 607.513,602.183 607.599,602.183
607.599,602.269 607.599,602.183 607.686,602.183 607.686,602.096 607.686,602.01 607.771,602.01 607.771,601.924 607.858,601.836
607.944,601.75 608.03,601.75 608.117,601.75 608.203,601.75 608.29,601.836 608.29,601.924 608.377,601.924 608.377,601.836
608.377,601.75 608.463,601.75 608.55,601.664 608.463,601.664 608.463,601.577 608.463,601.491 608.377,601.491 608.377,601.404
608.463,601.404 608.377,601.404 608.377,601.318 608.377,601.231 608.377,601.146 608.377,601.06 608.377,600.973
608.377,600.887 608.463,600.887 608.463,600.799 608.463,600.713 608.463,600.627 608.55,600.541 608.55,600.455 608.636,600.455
608.636,600.367 608.723,600.367 608.723,600.281 608.809,600.281 608.895,600.281 609.067,600.281 609.067,600.108
609.154,600.022 609.154,599.936 609.154,599.676 609.154,599.59 609.24,599.418 609.24,599.244 609.326,599.244 609.326,599.158
609.413,599.158 609.413,599.071 609.499,599.071 609.586,599.071 609.673,598.985 609.759,598.985 609.846,598.899
609.932,598.899 610.104,598.727 610.19,598.639 610.277,598.639 610.363,598.553 610.45,598.467 610.622,598.295 610.709,598.295
610.709,598.207 610.796,598.121 610.796,598.035 610.796,597.948 610.883,597.862 610.969,597.775 611.055,597.517
611.142,597.43 611.314,597.258 611.486,597.084 611.486,596.911 611.573,596.739 611.659,596.652 611.746,596.479
611.746,596.394 611.832,596.394 611.832,596.308 612.092,596.221 612.179,596.135 612.351,596.047 612.523,596.047
612.61,596.047 612.782,596.135 612.869,596.135 612.955,596.135 613.129,596.135 613.215,596.221 613.302,596.221
613.388,596.308 613.475,596.308 613.475,596.394 613.475,596.479 613.561,596.479 613.646,596.566 613.733,596.566
613.733,596.652 613.819,596.652 613.906,596.739 614.078,596.911 614.165,596.998 614.165,597.084 614.252,597.172
614.252,597.258 614.425,597.775 614.511,598.035 614.598,598.121 614.684,598.295 614.771,598.381 614.771,598.467
614.942,598.553 615.029,598.727 615.202,598.899 615.288,598.899 615.374,598.899 615.374,598.985 615.461,598.985
615.548,599.071 615.635,599.071 615.721,599.071 615.807,599.071 615.894,599.071 615.979,599.071 616.066,599.071
616.152,599.071 616.238,599.071 616.325,599.071 616.411,599.071 616.498,598.985 616.584,598.985 616.671,598.899
616.758,598.899 616.758,598.813 616.844,598.813 616.931,598.727 616.931,598.639 617.017,598.639 617.017,598.467
617.103,598.467 617.103,598.381 617.103,598.295 617.189,598.295 617.189,598.207 617.189,598.121 617.275,597.862
617.275,597.775 617.275,597.689 617.275,597.517 617.275,597.43 617.275,597.344 617.275,597.258 617.275,597.172
617.275,597.084 617.275,596.998 617.275,596.911 617.275,596.825 617.275,596.739 617.362,596.652 617.448,596.566
617.448,596.479 617.448,596.394 617.534,596.394 617.534,596.308 617.621,596.221 617.707,596.221 617.795,596.135
617.881,596.047 617.967,595.961 618.054,595.789 618.14,595.789 618.14,595.702 618.227,595.702 618.227,595.615 618.313,595.615
618.398,595.615 618.398,595.529 618.485,595.529 618.571,595.529 618.658,595.529 618.744,595.443 618.83,595.443
618.917,595.443 619.091,595.443 619.177,595.443 619.177,595.529 619.263,595.529 619.35,595.529 619.436,595.615
619.522,595.702 619.608,595.702 619.608,595.789 619.694,595.875 619.781,595.961 619.867,595.961 619.867,596.047
619.954,596.135 619.954,596.221 620.04,596.308 620.04,596.394 620.127,596.479 620.127,596.652 620.127,596.739 620.214,596.825
620.214,596.911 620.214,596.998 620.214,597.084 620.214,597.172 620.214,597.258 620.214,597.344 620.214,597.43
620.214,597.604 620.214,597.775 620.214,597.862 620.3,597.948 620.3,598.035 620.387,598.207 620.387,598.295 620.473,598.295
620.473,598.381 620.559,598.467 620.559,598.553 620.731,598.727 620.646,598.813 620.559,598.813 620.473,598.899
620.559,598.899 620.559,598.985 620.473,598.985 620.387,598.985 620.3,598.985 620.214,598.899 620.127,598.899 620.04,598.899
619.954,598.813 619.867,598.813 619.781,598.813 619.781,598.727 619.694,598.727 619.608,598.639 619.522,598.639
619.436,598.727 619.35,598.727 619.35,598.813 619.35,598.899 619.436,598.985 619.436,599.071 619.436,599.158 619.35,599.244
619.35,599.332 619.35,599.418 619.35,599.504 619.35,599.59 619.35,599.676 619.436,599.85 619.35,599.85 619.35,599.936
619.35,600.022 619.35,600.108 619.35,600.195 619.35,600.281 619.263,600.281 619.177,600.281 619.091,600.281 618.398,600.108
618.227,600.108 618.14,600.108 617.967,600.108 617.621,600.195 617.534,600.195 617.448,600.195 617.275,600.108
617.189,600.108 617.017,600.108 617.017,600.195 616.931,600.281 616.758,600.455 616.671,600.541 616.671,600.713
616.584,600.799 616.498,600.973 616.498,601.06 616.584,601.146 616.584,601.231 616.584,601.318 616.584,601.404
616.498,601.491 616.498,601.577 616.411,601.664 616.411,601.75 616.411,601.836 616.411,601.924 616.411,602.01 616.411,602.096
616.844,602.441 617.189,602.7 617.534,602.959 617.795,603.133 617.795,603.219 617.881,603.305 617.967,603.392 618.054,603.479
618.054,603.564 618.14,603.651 618.14,603.737 618.313,603.996 618.398,604.084 618.398,604.17 618.485,604.256 618.485,604.342
618.398,604.428 618.398,604.516 618.313,604.602 618.227,604.602 618.14,604.688 617.967,604.774 617.795,604.947
617.621,605.033 617.362,605.207 617.275,605.293 617.103,605.379 617.017,605.465 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
622.633,614.623 622.546,614.623 622.546,614.537 622.459,614.623 622.459,614.709 622.373,614.797 622.373,614.883
622.286,614.883 622.286,614.97 622.2,615.056 622.2,615.142 622.114,615.142 622.114,615.229 622.114,615.314 622.027,615.402
621.941,615.574 621.854,615.66 621.854,615.746 621.769,615.834 621.683,615.92 621.596,616.006 621.596,616.093 621.51,616.093
621.422,616.006 621.336,616.006 621.25,616.006 621.077,615.92 620.818,615.66 620.387,615.402 620.3,615.314 620.04,615.142
620.04,615.056 619.867,614.97 619.694,614.797 619.694,614.709 619.608,614.623 619.608,614.537 619.608,614.451 619.608,614.365
619.608,614.277 619.522,614.191 619.35,614.277 619.177,614.365 619.09,614.365 619.09,614.451 619.003,614.451 618.917,614.451
618.917,614.365 618.917,614.277 618.917,614.191 618.917,614.105 618.83,614.019 618.83,613.933 618.83,613.846 618.744,613.76
618.744,613.674 618.744,613.587 618.658,613.587 618.571,613.5 618.485,613.5 618.398,613.5 618.313,613.414 618.313,613.328
618.227,613.328 618.227,613.242 618.227,613.154 618.14,613.154 618.14,613.068 618.054,613.068 618.054,612.981 618.054,612.896
618.054,612.81 618.054,612.723 618.054,612.637 618.14,612.637 618.14,612.55 618.054,612.464 618.054,612.378 618.054,612.291
618.14,612.291 618.227,612.205 618.227,612.117 618.313,612.031 618.313,611.945 618.313,611.859 618.313,611.772
618.313,611.686 618.313,611.6 618.313,611.514 618.227,611.427 618.227,611.341 618.227,611.254 618.227,611.168 618.227,611.082
618.14,611.082 618.14,610.994 618.054,610.994 617.967,610.994 617.967,610.908 617.967,610.822 617.967,610.736 617.967,610.649
617.967,610.477 617.881,610.131 617.794,609.871 617.707,609.871 617.707,609.699 617.707,609.613 617.707,609.525
617.621,609.439 617.621,609.354 617.621,609.267 617.621,609.181 617.621,609.094 617.707,609.094 617.707,609.008
617.621,609.008 617.621,608.922 617.621,608.834 617.534,608.748 617.534,608.662 617.534,608.576 617.534,608.49
617.534,608.402 617.448,608.316 617.448,608.229 617.362,608.144 617.275,608.144 617.275,608.058 617.275,607.971
617.275,607.885 617.275,607.799 617.275,607.712 617.275,607.625 617.275,607.539 617.275,607.453 617.189,607.365
617.189,607.279 617.189,607.193 617.103,607.106 617.103,607.021 617.103,606.934 617.103,606.849 617.103,606.762
617.103,606.675 617.189,606.675 617.189,606.589 617.275,606.589 617.275,606.502 617.362,606.502 617.362,606.416
617.362,606.33 617.448,606.33 617.534,606.242 617.621,606.242 617.707,606.156 617.794,606.156 617.881,606.156 617.967,606.07
618.054,606.07 618.14,605.984 618.227,605.984 618.313,605.897 618.398,605.897 618.485,605.897 618.485,605.811 618.571,605.811
618.658,605.811 618.744,605.725 618.83,605.725 618.917,605.638 619.003,605.552 619.09,605.552 619.177,605.466 619.263,605.466
619.522,605.293 619.608,605.293 619.694,605.205 619.781,605.205 619.867,605.205 619.954,605.119 620.04,605.119
620.126,605.119 620.213,605.119 620.387,605.119 620.387,605.033 620.473,605.033 620.473,605.119 620.559,605.119
620.559,605.033 620.646,605.033 620.904,605.119 620.99,605.119 621.077,605.119 621.163,605.119 621.25,605.033 621.336,605.033
621.422,605.119 621.51,605.119 621.51,605.205 621.596,605.205 621.683,605.205 621.769,605.205 621.854,605.205 621.941,605.205
622.027,605.205 622.114,605.119 622.2,605.119 622.286,605.119 622.373,605.119 622.459,605.119 622.546,605.119 622.546,605.033
622.633,605.033 622.719,605.033 622.806,605.033 622.892,604.947 622.979,604.947 623.064,604.947 623.237,604.861
623.582,604.773 623.756,604.688 623.843,604.688 624.102,604.602 624.188,604.602 624.274,604.515 624.533,604.429
624.619,604.429 624.619,604.515 624.619,604.602 624.619,604.688 624.619,604.773 624.619,604.861 624.533,604.861
624.533,604.947 624.619,604.947 624.619,605.033 624.706,605.033 624.706,605.119 624.706,605.205 624.706,605.379
624.619,605.466 624.619,605.552 624.619,605.638 624.619,605.725 624.533,605.811 624.533,605.897 624.533,605.984
624.533,606.07 624.533,606.156 624.619,606.156 624.619,606.242 624.619,606.33 624.706,606.33 624.792,606.33 624.706,606.242
624.878,606.242 624.965,606.242 624.965,606.07 625.052,606.07 625.139,605.984 625.225,606.07 625.225,606.156 625.311,606.242
625.311,606.33 625.311,606.416 625.311,606.502 625.311,606.675 625.311,606.762 625.311,606.849 625.311,607.021
625.311,607.193 625.397,607.279 625.397,607.365 625.483,607.453 625.656,607.625 625.742,607.625 626.002,607.625
626.088,607.712 626.175,607.712 626.262,607.712 626.348,607.799 626.435,607.799 626.521,607.799 626.606,607.885
626.693,607.885 626.693,607.971 626.779,607.971 626.866,608.058 626.952,608.058 626.952,608.144 627.125,608.229
627.211,608.229 627.211,608.316 627.385,608.316 627.471,608.316 627.558,608.316 627.644,608.402 627.73,608.402 627.816,608.49
627.902,608.49 628.075,608.49 628.075,608.402 628.075,608.316 628.162,608.229 628.162,608.058 628.248,608.058 628.248,607.971
628.334,607.971 628.421,607.971 628.421,608.058 628.508,608.058 628.595,608.144 628.681,608.144 628.767,608.144
628.767,608.229 629.026,608.316 629.198,608.402 629.285,608.402 629.371,608.402 629.458,608.402 629.544,608.402
629.631,608.49 629.718,608.576 629.804,608.576 629.891,608.662 629.891,608.748 629.977,608.748 630.063,608.748
630.063,608.834 630.149,608.748 630.235,608.748 630.322,608.748 630.408,608.662 630.494,608.576 630.581,608.576
630.581,608.49 630.408,608.662 630.235,608.922 630.149,609.008 630.063,609.181 630.149,609.267 630.063,609.354
629.977,609.439 629.891,609.439 629.891,609.525 629.804,609.525 629.804,609.613 629.718,609.613 629.718,609.699
629.718,609.785 629.804,609.785 629.977,609.785 630.063,609.785 630.149,609.785 630.322,609.699 630.322,609.613
630.408,609.699 630.494,609.699 630.667,609.785 630.667,609.871 630.754,609.871 630.84,609.871 630.927,609.957
631.014,609.957 631.1,609.957 631.187,610.045 631.272,610.045 631.358,610.045 631.358,609.871 631.358,609.785 631.358,609.699
631.445,609.699 631.445,609.785 631.531,609.785 631.618,609.785 632.051,609.871 632.137,609.785 632.137,609.871
632.051,609.957 632.051,610.045 631.963,610.045 631.963,610.131 631.963,610.218 631.877,610.218 631.877,610.304
631.79,610.304 631.704,610.304 631.704,610.39 631.618,610.39 631.618,610.477 631.618,610.563 631.531,610.563 631.618,610.822
631.704,611.082 631.704,611.168 631.704,611.341 631.79,611.427 631.79,611.514 631.963,611.6 632.051,611.686 632.051,611.772
632.137,611.772 632.137,611.859 632.223,611.859 632.223,611.945 632.31,612.031 632.31,612.117 632.396,612.205 632.396,612.291
632.482,612.291 632.396,612.378 632.396,612.464 632.482,612.464 632.568,612.464 632.568,612.55 632.568,612.637
632.482,612.723 632.31,612.896 632.223,612.981 632.137,613.068 632.051,613.154 631.963,613.328 632.051,613.328
631.963,613.414 631.877,613.5 631.704,613.674 631.531,613.76 631.445,613.76 631.445,613.846 631.358,613.846 631.272,613.846
631.272,613.933 631.187,613.933 631.1,613.933 631.1,614.019 631.014,614.019 630.84,614.019 630.84,614.105 630.754,614.105
630.667,614.105 630.581,614.191 630.494,614.191 630.494,614.105 630.408,613.933 630.235,613.933 629.977,614.019
629.891,614.019 629.804,614.019 629.544,614.105 629.371,614.105 629.285,614.105 629.198,614.105 629.112,614.191
628.939,614.191 628.854,614.191 628.681,614.277 628.681,614.191 628.595,614.277 628.508,614.277 628.508,614.365
628.421,614.365 628.334,614.451 628.248,614.537 628.248,614.451 628.162,614.451 628.075,614.451 627.989,614.451
627.902,614.451 627.816,614.451 627.816,614.537 627.73,614.451 627.73,614.365 627.644,614.365 627.644,614.277 627.644,614.191
627.558,614.191 627.558,614.105 627.471,614.105 627.471,614.019 627.385,614.019 627.385,613.933 627.299,613.933
627.211,613.846 627.211,613.76 627.125,613.76 627.038,613.674 626.952,613.674 626.866,613.674 626.866,613.587 626.779,613.587
626.693,613.587 626.606,613.5 626.521,613.587 626.435,613.76 626.262,613.933 626.175,614.105 626.088,614.191 626.002,614.277
625.829,614.365 625.742,614.451 625.742,614.537 625.656,614.537 625.57,614.623 625.483,614.623 625.397,614.709
625.311,614.797 625.225,614.883 625.052,615.056 624.965,614.97 624.878,614.97 624.878,614.883 624.792,614.883 624.792,614.797
624.706,614.797 624.619,614.709 624.619,614.797 624.446,614.623 624.36,614.623 624.274,614.709 624.188,614.797
624.102,614.797 623.929,614.97 623.756,615.056 623.669,615.142 623.582,615.229 623.41,614.97 623.237,614.797 623.064,614.97
622.979,614.883 622.892,614.883 622.806,614.797 622.719,614.709 622.633,614.623 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
631.445,596.998 631.359,596.998 631.359,597.084 631.359,597.172 631.272,597.172 631.272,597.258 631.272,597.344
631.187,597.43 631.187,597.604 631.1,597.604 631.1,597.689 631.1,597.776 631.1,597.862 631.014,597.862 631.014,597.948
630.928,598.035 630.928,598.121 631.014,598.121 631.014,598.209 631.014,598.295 630.928,598.295 630.928,598.381
630.84,598.381 630.754,598.381 630.754,598.295 630.667,598.381 630.581,598.467 630.581,598.553 630.495,598.553
630.408,598.553 630.408,598.641 630.322,598.641 630.235,598.641 630.149,598.727 630.235,598.813 630.149,598.813
630.063,598.899 629.977,598.813 629.631,599.072 629.544,599.158 629.285,599.331 629.199,599.418 629.112,599.418
629.112,599.504 629.112,599.676 629.199,599.676 629.026,599.764 629.112,600.022 629.112,600.108 629.112,600.281
629.112,600.368 629.199,600.368 629.199,600.454 629.199,600.54 629.285,600.54 629.285,600.627 629.285,600.973 629.371,601.059
629.371,601.146 629.371,601.232 629.458,601.318 629.458,601.491 629.458,601.577 629.544,601.75 629.544,601.836 629.544,602.01
629.544,602.182 629.544,602.268 629.631,602.268 629.717,602.355 629.891,602.441 629.977,602.441 630.063,602.528
630.149,602.528 630.149,602.614 630.149,602.7 630.063,602.787 630.063,602.873 629.977,602.873 629.891,602.961 629.891,603.047
629.891,603.133 629.891,603.219 629.804,603.305 629.804,603.393 629.804,603.479 629.804,603.564 629.891,603.651
629.891,603.737 629.891,603.824 629.977,603.824 629.977,603.91 629.977,603.996 630.063,604.084 630.063,604.17 630.063,604.256
630.149,604.256 630.235,604.256 630.322,604.256 630.408,604.256 630.581,604.256 630.754,604.256 630.84,604.256
630.928,604.256 631.014,604.17 631.014,604.256 630.928,604.342 630.928,604.428 630.84,604.516 630.84,604.602 630.84,604.688
630.84,604.774 630.84,604.86 630.754,604.86 630.754,604.947 630.667,604.947 630.667,605.033 630.581,605.033 630.581,605.12
630.495,605.206 630.581,605.293 630.581,605.379 630.581,605.465 630.667,605.553 630.754,605.725 630.84,605.725
630.928,605.725 631.014,605.897 631.014,606.07 631.1,606.243 631.1,606.329 631.1,606.416 631.014,606.416 630.928,606.416
630.84,606.416 630.754,606.329 630.754,606.416 630.754,606.502 630.754,606.588 630.754,606.676 630.754,606.762
630.754,606.848 630.754,607.107 630.754,607.193 630.754,607.366 630.754,607.452 630.754,607.539 630.754,607.625
630.754,607.713 630.754,607.885 630.84,607.971 630.84,608.145 630.84,608.23 630.754,608.23 630.754,608.316 630.667,608.403
630.581,608.489 630.581,608.576 630.495,608.576 630.408,608.662 630.322,608.748 630.235,608.748 630.149,608.748
630.063,608.836 630.063,608.748 629.977,608.748 629.891,608.748 629.891,608.662 629.804,608.576 629.717,608.576
629.631,608.489 629.544,608.403 629.458,608.403 629.371,608.403 629.285,608.403 629.199,608.403 629.026,608.316
628.768,608.23 628.768,608.145 628.681,608.145 628.595,608.145 628.507,608.057 628.421,608.057 628.421,607.971
628.335,607.971 628.248,607.971 628.248,608.057 628.162,608.057 628.162,608.23 628.075,608.316 628.075,608.403
628.075,608.489 627.903,608.489 627.816,608.489 627.73,608.403 627.644,608.403 627.558,608.316 627.472,608.316
627.385,608.316 627.211,608.316 627.211,608.23 627.125,608.23 626.952,608.145 626.952,608.057 626.866,608.057 626.779,607.971
626.693,607.971 626.693,607.885 626.607,607.885 626.521,607.799 626.435,607.799 626.348,607.799 626.262,607.713
626.176,607.713 626.088,607.713 626.002,607.625 625.743,607.625 625.656,607.625 625.483,607.452 625.397,607.366
625.397,607.28 625.312,607.193 625.312,607.021 625.312,606.848 625.312,606.762 625.312,606.676 625.312,606.502
625.312,606.416 625.312,606.329 625.312,606.243 625.225,606.156 625.225,606.07 625.139,605.984 625.051,606.07 624.965,606.07
624.965,606.243 624.879,606.243 624.706,606.243 624.792,606.329 624.706,606.329 624.619,606.329 624.619,606.243
624.619,606.156 624.533,606.156 624.533,606.07 624.533,605.984 624.533,605.897 624.533,605.812 624.619,605.725
624.619,605.639 624.619,605.553 624.619,605.465 624.706,605.379 624.706,605.206 624.706,605.12 624.706,605.033
624.619,605.033 624.619,604.947 624.533,604.947 624.533,604.86 624.619,604.86 624.619,604.774 624.619,604.688 624.619,604.602
624.619,604.516 624.619,604.428 624.533,604.428 624.274,604.516 624.188,604.602 624.102,604.602 623.842,604.688
623.755,604.688 623.583,604.774 623.237,604.86 623.064,604.947 622.979,604.947 622.892,604.947 622.806,605.033 622.72,605.033
622.632,605.033 622.546,605.033 622.546,605.12 622.459,605.12 622.373,605.12 622.287,605.12 622.2,605.12 622.114,605.12
622.027,605.206 621.941,605.206 621.855,605.206 621.769,605.206 621.683,605.206 621.596,605.206 621.51,605.206 621.51,605.12
621.423,605.12 621.336,605.033 621.25,605.033 621.163,605.12 621.077,605.12 620.991,605.12 620.904,605.12 620.646,605.033
620.56,605.033 620.56,605.12 620.473,605.12 620.473,605.033 620.387,605.033 620.387,605.12 620.213,605.12 620.127,605.12
620.04,605.12 619.954,605.12 619.867,605.206 619.781,605.206 619.695,605.206 619.608,605.293 619.522,605.293 619.264,605.465
619.176,605.465 619.09,605.553 619.003,605.553 618.917,605.639 618.831,605.725 618.744,605.725 618.658,605.812
618.571,605.812 618.485,605.812 618.485,605.897 618.399,605.897 618.313,605.897 618.227,605.984 618.14,605.984 618.054,606.07
617.967,606.07 617.88,606.156 617.794,606.156 617.707,606.156 617.621,606.243 617.535,606.243 617.448,606.329 617.448,606.243
617.448,606.156 617.448,606.07 617.362,605.984 617.362,605.897 617.275,605.897 617.189,605.897 617.189,605.812
617.104,605.725 617.104,605.639 617.104,605.553 617.104,605.465 617.017,605.465 617.104,605.379 617.275,605.293
617.362,605.206 617.621,605.033 617.794,604.947 617.967,604.774 618.14,604.688 618.227,604.602 618.313,604.602
618.399,604.516 618.399,604.428 618.485,604.342 618.485,604.256 618.399,604.17 618.399,604.084 618.313,603.996 618.14,603.737
618.14,603.651 618.054,603.564 618.054,603.479 617.967,603.393 617.88,603.305 617.794,603.219 617.794,603.133 617.535,602.961
617.189,602.7 616.844,602.441 616.411,602.096 616.411,602.01 616.411,601.924 616.411,601.836 616.411,601.75 616.411,601.664
616.498,601.577 616.498,601.491 616.584,601.404 616.584,601.318 616.584,601.232 616.584,601.146 616.498,601.059
616.498,600.973 616.584,600.801 616.671,600.713 616.671,600.54 616.757,600.454 616.931,600.281 617.017,600.195
617.017,600.108 617.189,600.108 617.275,600.108 617.448,600.195 617.535,600.195 617.621,600.195 617.967,600.108
618.14,600.108 618.227,600.108 618.399,600.108 619.09,600.281 619.176,600.281 619.264,600.281 619.35,600.281 619.35,600.195
619.35,600.108 619.35,600.022 619.35,599.937 619.35,599.85 619.436,599.85 619.35,599.676 619.35,599.59 619.35,599.504
619.35,599.418 619.35,599.331 619.35,599.244 619.436,599.158 619.436,599.072 619.436,598.985 619.35,598.899 619.35,598.813
619.35,598.727 619.436,598.727 619.522,598.641 619.608,598.641 619.695,598.727 619.781,598.727 619.781,598.813
619.867,598.813 619.954,598.813 620.04,598.899 620.127,598.899 620.213,598.899 620.299,598.985 620.387,598.985
620.473,598.985 620.56,598.985 620.56,598.899 620.473,598.899 620.56,598.813 620.646,598.813 620.731,598.727 620.818,598.899
621.077,599.158 621.077,599.244 621.163,599.244 621.25,599.331 621.336,599.418 621.423,599.504 621.51,599.504 621.596,599.59
621.683,599.676 621.769,599.764 621.941,599.764 622.114,599.85 622.459,600.022 622.546,600.022 622.632,600.108 622.72,600.108
622.806,600.108 622.892,600.108 622.892,600.195 622.979,600.195 623.064,600.195 623.151,600.195 623.323,600.195
623.41,600.195 623.496,600.195 623.583,600.195 623.669,600.195 623.842,600.195 623.929,600.195 624.102,600.195
624.274,600.195 624.36,600.195 624.447,600.108 624.619,600.108 624.619,600.022 624.706,600.022 624.792,599.937
624.879,599.937 624.965,599.937 625.051,599.85 625.051,599.764 625.139,599.676 625.225,599.676 625.225,599.59 625.312,599.504
625.397,599.331 625.483,599.244 625.483,599.158 625.57,598.985 625.57,598.813 625.57,598.727 625.656,598.727 625.656,598.553
625.656,598.467 625.743,598.467 625.743,598.381 625.743,598.295 625.743,598.209 625.829,598.121 625.829,598.035
625.829,597.948 625.829,597.862 625.915,597.776 625.915,597.689 625.915,597.604 625.829,597.604 625.915,597.516
626.002,597.43 626.088,597.258 626.176,597.172 626.176,597.084 626.262,596.998 626.348,596.998 626.348,596.912
626.521,596.912 626.607,596.825 626.693,596.825 626.779,596.739 626.866,596.739 626.952,596.739 627.039,596.652
627.125,596.652 627.211,596.652 627.385,596.566 627.472,596.566 627.558,596.566 627.644,596.566 627.73,596.48 627.903,596.48
628.075,596.48 628.162,596.393 628.507,596.393 628.595,596.307 628.681,596.307 628.768,596.307 629.112,596.221
629.199,596.221 629.285,596.135 629.371,596.135 629.458,596.135 629.544,596.135 629.717,596.135 629.717,596.221
629.804,596.221 629.891,596.221 629.977,596.221 630.149,596.221 630.149,596.307 630.235,596.307 630.322,596.307
630.408,596.307 630.495,596.307 630.581,596.307 630.667,596.307 630.667,596.221 630.84,596.221 631.1,596.135 631.187,596.135
631.187,596.049 631.359,595.961 631.445,595.961 631.445,595.875 631.531,595.875 631.618,595.961 631.618,596.049
631.704,596.049 631.791,596.135 631.877,596.135 631.877,596.221 631.877,596.307 631.791,596.307 631.791,596.48
631.791,596.566 631.704,596.652 631.618,596.652 631.618,596.739 631.531,596.739 631.445,596.825 631.445,596.912
631.445,596.998 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
622.287,594.146 622.287,594.233 622.373,594.233 622.373,594.32 622.46,594.32 622.546,594.406 622.633,594.493 622.719,594.579
622.805,594.665 622.805,594.752 622.892,594.752 622.892,594.838 622.892,594.926 622.978,594.926 622.892,595.012
622.978,595.098 623.064,595.27 623.15,595.27 623.237,595.443 623.324,595.529 623.41,595.616 623.41,595.702 623.497,595.702
623.583,595.789 623.669,595.789 623.756,595.875 623.842,595.875 623.842,595.961 623.929,595.961 623.929,596.049
624.015,596.135 624.015,596.221 624.101,596.221 624.101,596.307 624.188,596.393 624.273,596.48 624.273,596.566
624.361,596.566 624.361,596.653 624.447,596.739 624.533,596.825 624.62,596.998 624.706,597.085 624.793,597.172
624.879,597.172 624.879,597.258 624.965,597.344 624.965,597.43 625.052,597.518 625.138,597.604 625.138,597.689
625.225,597.689 625.311,597.689 625.484,597.604 625.57,597.518 625.657,597.518 625.829,597.604 625.916,597.604
625.916,597.689 625.916,597.776 625.829,597.862 625.829,597.949 625.829,598.035 625.829,598.121 625.743,598.208
625.743,598.294 625.743,598.381 625.743,598.467 625.657,598.467 625.657,598.553 625.657,598.727 625.57,598.727 625.57,598.813
625.57,598.985 625.484,599.158 625.484,599.245 625.396,599.331 625.311,599.504 625.225,599.59 625.225,599.678 625.138,599.678
625.052,599.764 625.052,599.85 624.965,599.936 624.879,599.936 624.793,599.936 624.706,600.021 624.62,600.021 624.62,600.109
624.447,600.109 624.361,600.195 624.273,600.195 624.101,600.195 623.929,600.195 623.842,600.195 623.669,600.195
623.583,600.195 623.497,600.195 623.41,600.195 623.324,600.195 623.15,600.195 623.064,600.195 622.978,600.195 622.892,600.195
622.892,600.109 622.805,600.109 622.719,600.109 622.633,600.109 622.546,600.021 622.46,600.021 622.114,599.85 621.941,599.764
621.769,599.764 621.682,599.678 621.596,599.59 621.509,599.504 621.423,599.504 621.337,599.417 621.25,599.331 621.164,599.245
621.077,599.245 621.077,599.158 620.818,598.899 620.731,598.727 620.559,598.553 620.559,598.467 620.473,598.381
620.473,598.294 620.386,598.294 620.386,598.208 620.3,598.035 620.3,597.949 620.213,597.862 620.213,597.776 620.213,597.604
620.213,597.43 620.213,597.344 620.213,597.258 620.213,597.172 620.213,597.085 620.213,596.998 620.213,596.912
620.213,596.825 620.127,596.739 620.127,596.653 620.127,596.48 620.041,596.393 620.041,596.307 619.954,596.221
619.954,596.135 619.868,596.049 619.868,595.961 619.781,595.961 619.695,595.875 619.609,595.789 619.609,595.702
619.521,595.702 619.436,595.616 619.349,595.529 619.263,595.529 619.177,595.529 619.177,595.443 619.09,595.443
618.917,595.443 618.831,595.443 618.745,595.443 618.658,595.529 618.572,595.529 618.485,595.529 618.398,595.529
618.398,595.616 618.313,595.616 618.226,595.616 618.226,595.702 618.14,595.702 618.14,595.789 618.053,595.789 617.967,595.702
617.881,595.616 617.794,595.529 617.881,595.529 617.794,595.443 617.794,595.357 617.794,595.27 617.794,595.098
617.794,595.012 617.794,594.926 617.794,594.838 617.881,594.665 617.881,594.579 617.881,594.493 617.881,594.406
617.881,594.32 617.881,594.233 617.881,594.146 617.881,594.061 617.881,593.975 617.881,593.889 617.881,593.975
617.794,593.889 617.708,593.889 617.621,593.975 617.535,593.975 617.535,594.061 617.449,594.061 617.362,594.146
617.362,594.061 617.275,593.975 617.188,593.715 617.103,593.715 617.103,593.629 617.017,593.542 617.017,593.456
616.93,593.369 616.844,593.283 616.844,593.197 616.844,593.11 616.844,593.024 616.757,592.938 616.671,592.852 616.671,592.766
616.585,592.766 616.671,592.766 616.757,592.766 616.757,592.678 616.93,592.678 617.103,592.678 617.188,592.678
617.275,592.678 617.362,592.678 617.449,592.678 617.449,592.766 617.621,592.678 617.708,592.678 617.708,592.506
617.708,592.419 617.621,592.419 617.621,592.333 617.621,592.246 617.794,592.246 617.794,592.073 617.708,592.073
617.708,591.987 617.708,591.901 617.708,591.814 617.708,591.729 617.708,591.641 617.621,591.641 617.621,591.469
617.621,591.383 617.535,591.297 617.449,591.209 617.362,591.037 617.362,590.95 617.275,590.95 617.275,590.864 617.275,590.777
617.275,590.691 617.188,590.605 617.103,590.26 617.103,590.086 617.103,589.913 617.103,589.827 617.103,589.741
617.103,589.654 616.93,589.395 616.93,589.223 616.844,589.137 616.844,589.049 616.844,588.963 616.844,588.877 616.844,588.79
617.017,588.531 617.017,588.445 617.103,588.445 617.103,588.358 617.017,588.271 617.103,588.271 617.103,588.186 617.188,588.1
617.188,588.014 617.275,588.014 617.275,587.926 617.362,587.84 617.449,587.754 617.535,587.754 617.535,587.667
617.621,587.667 617.535,587.581 617.449,587.581 617.449,587.494 617.535,587.494 617.535,587.408 617.535,587.321
617.535,587.408 617.708,587.494 617.794,587.494 617.881,587.494 618.053,587.494 618.14,587.494 618.226,587.494
618.313,587.494 618.398,587.494 618.485,587.494 618.572,587.494 618.658,587.408 618.831,587.408 618.917,587.321
619.004,587.321 619.004,587.408 619.09,587.494 619.177,587.581 619.263,587.581 619.263,587.667 619.349,587.667
619.436,587.667 619.521,587.754 619.609,587.754 619.609,587.84 619.695,588.014 619.695,588.1 619.781,588.1 619.781,588.186
619.781,588.271 619.781,588.358 619.781,588.531 619.781,588.617 619.781,588.704 619.868,588.79 619.868,589.309
619.695,589.481 619.868,589.741 619.954,589.741 619.954,589.827 620.041,589.913 620.041,590 620.127,590 620.127,590.086
620.213,590.174 620.3,590.346 620.386,590.432 620.386,590.518 620.473,590.605 620.473,590.691 620.473,590.777 620.559,590.864
620.559,590.95 620.559,591.037 620.645,591.123 620.645,591.209 620.731,591.209 620.731,591.297 620.731,591.383
620.731,591.469 620.818,591.555 620.818,591.641 620.905,591.641 620.991,591.641 620.991,591.555 621.077,591.555
621.077,591.469 621.077,591.555 621.077,591.641 621.164,591.729 621.25,591.729 621.25,591.814 621.337,591.901 621.337,591.987
621.25,592.073 621.164,592.073 621.164,592.16 621.25,592.246 621.164,592.246 621.077,592.246 620.991,592.333 620.991,592.419
621.077,592.419 621.077,592.506 621.077,592.592 621.164,592.678 621.164,592.766 621.25,592.766 621.25,592.852 621.337,592.938
621.337,593.024 621.423,593.11 621.423,593.283 621.509,593.283 621.596,593.456 621.682,593.542 621.769,593.629
621.854,593.715 621.941,593.801 622.028,593.889 622.028,593.975 622.114,594.061 622.201,594.146 622.201,594.233
622.287,594.146 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
622.287,594.146 622.201,594.233 622.201,594.146 622.114,594.061 622.028,593.975 622.028,593.889 621.941,593.801
621.854,593.715 621.769,593.629 621.682,593.542 621.596,593.456 621.509,593.283 621.423,593.283 621.423,593.11
621.337,593.024 621.337,592.938 621.25,592.852 621.25,592.766 621.164,592.766 621.164,592.678 621.077,592.592 621.077,592.506
621.077,592.419 620.991,592.419 620.991,592.333 621.077,592.246 621.164,592.246 621.25,592.246 621.164,592.16 621.164,592.073
621.25,592.073 621.337,591.987 621.337,591.901 621.25,591.814 621.25,591.729 621.164,591.729 621.077,591.641 621.077,591.555
621.077,591.469 621.077,591.555 620.991,591.555 620.991,591.641 620.905,591.641 620.818,591.641 620.818,591.555
620.731,591.469 620.731,591.383 620.731,591.297 620.731,591.209 620.645,591.209 620.645,591.123 620.559,591.037
620.559,590.95 620.559,590.864 620.473,590.777 620.473,590.691 620.473,590.605 620.386,590.518 620.386,590.432 620.3,590.346
620.213,590.174 620.127,590.086 620.127,590 620.041,590 620.041,589.913 619.954,589.827 619.954,589.741 619.868,589.741
619.695,589.481 619.868,589.309 619.868,588.79 619.781,588.704 619.781,588.617 619.781,588.531 619.781,588.358
619.781,588.271 619.781,588.186 619.781,588.1 619.695,588.1 619.695,588.014 619.609,587.84 619.609,587.754 619.695,587.754
619.781,587.754 619.781,587.84 619.868,587.84 619.954,587.84 620.041,587.84 620.041,587.754 620.127,587.84 620.213,587.84
620.3,587.84 620.386,587.926 620.473,587.926 620.559,587.926 620.731,588.014 620.818,588.014 620.905,588.014 620.991,588.1
621.077,588.1 621.077,588.186 621.164,588.186 621.164,588.271 621.164,588.358 621.164,588.445 621.25,588.358 621.337,588.358
621.423,588.358 621.509,588.358 621.596,588.358 621.682,588.358 621.769,588.358 621.854,588.445 621.941,588.445
622.028,588.445 622.114,588.445 622.201,588.445 622.201,588.531 622.287,588.531 622.373,588.531 622.373,588.617
622.46,588.704 622.46,588.79 622.46,588.877 622.546,588.963 622.633,589.049 622.719,589.049 622.892,589.137 622.892,589.223
622.892,589.309 622.892,589.395 622.978,589.481 622.892,589.481 622.805,589.481 622.719,589.481 622.633,589.481
622.633,589.568 622.633,589.654 622.719,589.654 622.719,589.741 622.805,589.827 622.892,590.086 622.978,590 623.064,590.26
623.15,590.691 623.583,590.605 623.669,590.518 623.756,591.037 623.756,591.209 623.842,591.209 623.929,591.123
624.015,591.555 624.101,591.555 624.188,591.469 624.273,591.469 624.447,591.469 624.533,591.469 624.62,591.901
624.793,592.419 624.965,592.938 624.965,593.024 625.138,593.11 625.225,593.11 625.311,593.11 625.396,593.11 625.484,593.11
625.57,593.629 625.57,593.801 626.261,593.715 626.261,593.629 626.434,593.629 626.521,593.629 626.521,593.542 626.693,593.542
626.866,593.542 626.953,593.542 626.953,593.629 627.212,593.456 627.212,593.542 627.557,593.283 627.557,593.197
627.644,593.11 627.729,593.024 627.729,592.938 627.816,592.938 627.989,592.938 627.989,592.852 628.076,592.852
628.076,593.024 628.076,593.11 628.162,593.456 628.162,593.542 628.335,593.715 628.335,593.801 628.421,594.146
628.421,594.233 628.421,594.32 628.335,594.32 628.508,594.406 628.335,594.579 628.508,594.838 628.421,594.926 628.421,595.012
628.421,595.098 628.508,595.184 628.421,595.27 628.508,595.357 628.681,595.529 628.939,595.702 628.939,595.789
629.113,595.875 629.113,595.961 629.113,596.049 629.113,596.221 628.767,596.307 628.681,596.307 628.594,596.307
628.508,596.393 628.162,596.393 628.076,596.48 627.903,596.48 627.729,596.48 627.644,596.566 627.557,596.566 627.471,596.566
627.385,596.566 627.212,596.653 627.125,596.653 627.039,596.653 626.953,596.739 626.866,596.739 626.78,596.739
626.693,596.825 626.606,596.825 626.521,596.912 626.348,596.912 626.348,596.998 626.261,596.998 626.175,597.085
626.175,597.172 626.089,597.258 626.002,597.43 625.916,597.518 625.829,597.604 625.657,597.518 625.57,597.518 625.484,597.604
625.311,597.689 625.225,597.689 625.138,597.689 625.138,597.604 625.052,597.518 624.965,597.43 624.965,597.344
624.879,597.258 624.879,597.172 624.793,597.172 624.706,597.085 624.62,596.998 624.533,596.825 624.447,596.739
624.361,596.653 624.361,596.566 624.273,596.566 624.273,596.48 624.188,596.393 624.101,596.307 624.101,596.221
624.015,596.221 624.015,596.135 623.929,596.049 623.929,595.961 623.842,595.961 623.842,595.875 623.756,595.875
623.669,595.789 623.583,595.789 623.497,595.702 623.41,595.702 623.41,595.616 623.324,595.529 623.237,595.443 623.15,595.27
623.064,595.27 622.978,595.098 622.892,595.012 622.978,594.926 622.892,594.926 622.892,594.838 622.892,594.752
622.805,594.752 622.805,594.665 622.719,594.579 622.633,594.493 622.546,594.406 622.46,594.32 622.373,594.32 622.373,594.233
622.287,594.233 622.287,594.146 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
622.633,587.234 622.719,587.234 622.806,587.234 622.806,587.321 622.892,587.408 622.979,587.408 622.979,587.494
623.064,587.494 623.064,587.581 623.15,587.581 623.237,587.667 623.237,587.753 623.237,587.84 623.237,587.926 623.237,588.014
623.237,588.1 623.323,588.1 623.41,588.1 623.41,588.186 623.41,588.1 623.496,587.926 623.669,587.667 623.756,587.494
623.843,587.408 623.843,587.321 623.843,587.234 623.929,587.148 623.929,587.063 623.843,587.063 623.843,586.977
624.015,586.544 624.015,586.63 624.102,586.63 624.188,586.717 624.274,586.717 624.274,586.803 624.274,586.889 624.36,586.803
624.446,586.803 624.446,586.717 624.706,586.371 624.792,586.198 624.792,586.112 624.878,586.112 624.965,586.025
625.139,585.939 625.311,585.854 625.397,585.854 625.483,585.854 625.829,585.854 626.002,585.854 626.002,586.112
626.088,586.198 626.262,586.112 626.435,586.198 626.521,586.025 626.606,586.025 626.693,586.112 626.779,586.198
626.952,586.371 627.125,586.544 627.211,586.457 627.299,586.457 627.471,586.371 627.644,586.285 627.73,586.457
627.816,586.371 627.989,586.371 628.162,586.285 628.248,586.285 628.248,586.198 628.334,586.198 628.421,586.198
628.508,586.198 628.681,586.717 628.767,586.977 628.939,587.408 629.285,588.531 629.458,588.445 629.544,588.704
629.631,588.704 629.631,588.617 629.718,588.617 629.718,588.704 629.804,588.704 629.977,588.963 630.063,589.137
630.149,589.223 630.235,589.309 630.322,589.395 630.322,589.48 630.408,589.48 630.494,589.654 630.581,589.568 630.667,589.654
630.84,589.827 630.754,589.827 630.84,589.913 630.927,589.827 631.014,589.913 631.014,590 631.014,590.086 631.1,590
631.187,590 631.272,590 631.272,590.086 631.272,590.173 631.358,590.432 631.358,590.518 631.445,590.691 631.531,590.691
631.618,590.777 631.704,590.777 631.704,590.691 631.79,590.691 631.877,590.605 631.963,590.518 632.051,590.432
632.137,590.432 632.137,590.346 632.31,590.432 632.31,590.346 632.396,590.346 632.482,590.432 632.568,590.432 632.654,590.432
632.654,590.346 632.741,590.346 632.827,590.26 633.174,590.173 633.26,590.346 633.433,590.26 633.519,590.26 633.519,590.346
633.605,590.518 633.519,590.518 633.433,590.605 633.519,590.605 633.519,590.691 633.433,590.691 633.433,590.777
633.433,590.864 633.519,590.864 633.519,590.95 633.519,591.037 633.519,591.123 633.519,591.296 633.433,591.296 633.26,591.382
633.174,591.382 633.086,591.382 633.086,591.469 633,591.469 632.914,591.555 632.827,591.555 632.741,591.641 632.741,591.729
632.654,591.814 632.568,591.814 632.568,591.9 632.482,591.987 632.482,592.073 632.482,592.16 632.482,592.246 632.396,592.246
632.396,592.333 632.396,592.419 632.396,592.505 632.396,592.592 632.396,592.938 632.31,593.283 632.31,593.369 632.31,593.542
632.31,593.629 632.31,593.715 632.31,593.889 632.31,593.975 632.31,594.146 632.31,594.232 632.31,594.32 632.223,594.406
632.223,594.493 632.223,594.579 632.223,594.665 632.137,594.665 632.137,594.752 632.137,594.838 632.137,594.926
632.137,595.012 632.051,595.012 632.051,595.098 631.963,595.184 631.877,595.357 631.877,595.443 631.79,595.529 631.79,595.616
631.704,595.616 631.704,595.702 631.618,595.789 631.618,595.875 631.531,595.875 631.445,595.875 631.445,595.961
631.358,595.961 631.187,596.048 631.187,596.135 631.1,596.135 630.84,596.221 630.667,596.221 630.667,596.307 630.581,596.307
630.494,596.307 630.408,596.307 630.322,596.307 630.235,596.307 630.149,596.307 630.149,596.221 629.977,596.221
629.891,596.221 629.804,596.221 629.718,596.221 629.718,596.135 629.544,596.135 629.458,596.135 629.371,596.135
629.285,596.135 629.198,596.221 629.112,596.221 629.112,596.048 629.112,595.961 629.112,595.875 628.939,595.789
628.939,595.702 628.681,595.529 628.508,595.357 628.421,595.27 628.508,595.184 628.421,595.098 628.421,595.012
628.421,594.926 628.508,594.838 628.334,594.579 628.508,594.406 628.334,594.32 628.421,594.32 628.421,594.232 628.421,594.146
628.334,593.801 628.334,593.715 628.162,593.542 628.162,593.456 628.075,593.109 628.075,593.023 628.075,592.852
627.989,592.852 627.989,592.938 627.816,592.938 627.73,592.938 627.73,593.023 627.644,593.109 627.558,593.197 627.558,593.283
627.211,593.542 627.211,593.456 626.952,593.629 626.952,593.542 626.866,593.542 626.693,593.542 626.521,593.542
626.521,593.629 626.435,593.629 626.262,593.629 626.262,593.715 625.57,593.801 625.57,593.629 625.483,593.109 625.397,593.109
625.311,593.109 625.225,593.109 625.139,593.109 624.965,593.023 624.965,592.938 624.792,592.419 624.619,591.9 624.533,591.469
624.446,591.469 624.274,591.469 624.188,591.469 624.102,591.555 624.015,591.555 623.929,591.123 623.843,591.209
623.756,591.209 623.756,591.037 623.669,590.518 623.582,590.605 623.15,590.691 623.064,590.26 622.979,590 622.892,590.086
622.806,589.827 622.719,589.741 622.719,589.654 622.633,589.654 622.633,589.568 622.633,589.48 622.719,589.48 622.806,589.48
622.892,589.48 622.979,589.48 622.892,589.395 622.892,589.309 622.892,589.223 622.892,589.137 622.719,589.049 622.633,589.049
622.546,588.963 622.459,588.877 622.459,588.79 622.459,588.704 622.373,588.617 622.373,588.531 622.286,588.531 622.2,588.531
622.2,588.445 622.114,588.445 622.027,588.445 621.941,588.445 621.854,588.445 621.769,588.357 621.683,588.357 621.596,588.357
621.51,588.357 621.422,588.357 621.336,588.357 621.25,588.357 621.163,588.445 621.163,588.357 621.163,588.271 621.163,588.186
621.077,588.014 621.077,587.926 621.163,587.84 621.25,587.84 621.25,587.753 621.25,587.667 621.163,587.581 621.163,587.494
621.25,587.494 621.336,587.494 621.422,587.494 621.422,587.408 621.51,587.408 621.596,587.408 621.683,587.408 621.769,587.321
621.854,587.321 621.941,587.321 621.941,587.234 622.027,587.234 622.114,587.234 622.2,587.234 622.286,587.234 622.373,587.234
622.459,587.234 622.546,587.234 622.633,587.234 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
629.631,580.15 629.631,580.236 629.717,580.323 629.717,580.409 629.717,580.496 629.717,580.756 629.804,580.842
629.804,580.928 629.804,581.014 629.804,581.1 629.804,581.188 629.804,581.273 629.89,581.273 629.89,581.36 629.89,581.446
629.89,581.532 629.804,581.532 629.804,581.619 629.804,581.705 629.804,581.793 629.804,581.879 629.89,581.879 629.89,581.965
629.977,582.137 629.977,582.225 630.063,582.225 630.148,582.483 630.236,582.742 630.322,582.742 630.409,582.828
630.495,582.915 630.581,582.915 630.581,583.002 630.668,583.088 630.754,583.26 630.927,583.348 631.013,583.434
631.013,583.521 631.1,583.521 631.1,583.606 631.1,583.779 631.186,583.865 631.272,583.952 631.359,584.038 631.445,584.038
631.445,584.125 631.532,584.211 631.532,584.297 631.618,584.471 631.618,584.557 631.618,584.643 631.618,584.816
631.705,584.988 631.705,585.075 631.705,585.161 631.705,585.248 631.705,585.334 631.791,585.334 631.791,585.42
631.791,585.508 631.877,585.68 631.964,585.68 631.964,585.766 631.964,585.853 632.05,585.853 632.05,585.939 632.05,586.025
632.137,586.112 632.137,586.198 632.137,586.284 632.137,586.371 632.137,586.457 632.137,586.631 632.137,586.717
632.137,586.977 632.137,587.321 632.137,587.408 632.223,587.321 632.309,587.321 632.481,587.321 632.569,587.321
632.655,587.408 632.741,587.408 632.828,587.408 632.828,587.494 632.914,587.494 632.914,587.58 632.914,587.754 633.001,587.84
633.001,587.926 633.087,588.012 633.173,588.1 633.26,588.186 633.173,588.272 633.173,588.358 633.173,588.444 633.26,588.531
633.26,588.617 633.346,588.617 633.346,588.704 633.433,588.704 633.519,588.704 633.691,588.79 633.778,588.79 633.778,588.877
633.865,588.877 633.865,588.963 634.037,588.963 634.037,589.049 634.124,589.137 634.124,589.223 634.124,589.309
634.21,589.481 634.21,589.654 634.124,589.654 634.124,589.74 634.037,589.74 633.951,589.74 633.865,589.74 633.778,589.74
633.604,589.74 633.519,589.74 633.433,589.74 633.346,589.74 633.26,589.74 633.26,589.827 633.346,589.913 633.433,590.086
633.433,590.172 633.519,590.26 633.433,590.26 633.26,590.346 633.173,590.172 632.828,590.26 632.741,590.346 632.655,590.346
632.655,590.432 632.569,590.432 632.481,590.432 632.396,590.346 632.309,590.346 632.309,590.432 632.137,590.346
632.137,590.432 632.05,590.432 631.964,590.518 631.877,590.604 631.791,590.691 631.705,590.691 631.705,590.777
631.618,590.777 631.532,590.691 631.445,590.691 631.359,590.518 631.359,590.432 631.272,590.172 631.272,590.086 631.272,590
631.186,590 631.1,590 631.013,590.086 631.013,590 631.013,589.913 630.927,589.827 630.841,589.913 630.754,589.827
630.841,589.827 630.668,589.654 630.581,589.568 630.495,589.654 630.409,589.481 630.322,589.481 630.322,589.396
630.236,589.309 630.148,589.223 630.063,589.137 629.977,588.963 629.804,588.704 629.717,588.704 629.717,588.617
629.631,588.617 629.631,588.704 629.545,588.704 629.458,588.444 629.285,588.531 628.939,587.408 628.767,586.977
628.681,586.717 628.508,586.198 628.421,586.198 628.335,586.198 628.249,586.198 628.249,586.284 628.162,586.284
627.989,586.371 627.816,586.371 627.729,586.457 627.644,586.284 627.471,586.371 627.298,586.457 627.212,586.457
627.125,586.545 626.953,586.371 626.78,586.198 626.693,586.112 626.606,586.025 626.521,586.025 626.434,586.198
626.261,586.112 626.089,586.198 626.002,586.112 626.002,585.853 625.829,585.853 625.484,585.853 625.396,585.853
625.311,585.853 625.138,585.939 624.965,586.025 624.879,586.112 624.793,586.112 624.793,586.198 624.706,586.371
624.447,586.717 624.447,586.803 624.361,586.803 624.273,586.889 624.273,586.803 624.273,586.717 624.188,586.717
624.101,586.631 624.015,586.631 624.015,586.545 623.842,586.371 623.669,586.198 623.497,585.853 623.41,585.766 623.324,585.68
623.237,585.508 623.064,585.334 622.978,585.248 622.805,584.988 622.719,584.816 622.633,584.729 622.546,584.643
622.546,584.557 622.46,584.557 622.46,584.471 622.287,584.297 622.201,584.211 622.201,584.125 622.114,584.038 622.028,583.952
622.028,583.865 621.941,583.865 621.854,583.779 621.854,583.692 621.769,583.606 621.682,583.521 621.596,583.434
621.509,583.348 621.509,583.26 621.423,583.174 621.423,583.088 621.337,583.088 621.337,583.002 621.423,582.915
621.509,582.828 621.596,582.828 621.596,582.742 621.682,582.742 621.769,582.828 621.854,582.915 621.941,582.828
622.028,582.828 622.114,582.742 622.201,582.742 622.201,582.828 622.201,582.915 622.201,583.002 622.287,583.002
622.287,582.915 622.373,582.915 622.46,582.915 622.546,582.915 622.633,582.828 622.719,582.828 622.805,582.828
622.892,582.828 622.978,582.828 622.978,582.742 622.892,582.742 622.892,582.656 622.978,582.569 622.978,582.483
623.064,582.396 623.064,582.311 623.064,582.225 623.15,582.225 623.15,582.311 623.15,582.225 623.237,582.225 623.237,582.137
623.237,582.051 623.237,581.965 623.237,581.879 623.324,581.965 623.41,581.965 623.497,581.965 623.497,581.879
623.583,581.879 623.669,581.793 623.756,581.793 623.842,581.705 623.929,581.705 623.929,581.619 624.015,581.619
624.015,581.532 624.015,581.36 624.015,581.273 624.015,581.188 624.015,581.1 624.101,581.014 624.188,581.014 624.188,580.928
624.273,580.928 624.273,580.842 624.361,580.842 624.361,580.756 624.447,580.756 624.533,580.668 624.62,580.668
624.706,580.668 624.706,580.582 624.793,580.582 624.793,580.496 624.965,580.409 624.965,580.323 625.052,580.236
625.052,580.15 625.138,580.15 625.225,580.15 625.311,580.15 625.396,580.15 625.396,580.064 625.484,580.064 625.57,580.064
625.657,580.15 625.743,580.15 625.743,580.236 625.829,580.236 625.916,580.236 625.916,580.15 625.916,580.064 625.916,579.978
625.916,579.891 626.002,579.891 626.002,579.805 626.089,579.719 626.175,579.719 626.175,579.633 626.261,579.633
626.348,579.545 626.434,579.545 626.521,579.545 626.693,579.545 626.78,579.545 626.866,579.545 626.953,579.545
626.953,579.633 627.039,579.633 627.125,579.633 627.212,579.545 627.298,579.545 627.385,579.545 627.471,579.545
627.557,579.545 627.644,579.633 627.903,579.633 628.076,579.719 628.249,579.719 628.421,579.719 628.594,579.719
628.681,579.719 628.767,579.805 628.939,579.891 629.025,579.891 629.199,579.978 629.285,579.978 629.372,579.978
629.458,580.064 629.631,580.15 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
644.06,595.356 643.974,595.356 643.974,595.271 643.887,595.271 643.887,595.184 643.714,595.098 643.714,595.011
643.628,594.925 643.542,594.838 643.542,594.752 643.454,594.666 643.368,594.492 643.368,594.406 643.281,594.319
643.281,594.233 643.281,594.146 643.281,594.061 643.195,593.888 643.195,593.802 643.195,593.715 643.195,593.629
643.195,593.455 643.195,593.369 643.195,593.283 643.195,593.197 643.195,593.11 643.195,593.023 643.281,592.851
643.281,592.679 643.281,592.506 643.281,592.418 643.281,592.332 643.281,592.246 643.281,592.16 643.195,592.16 643.195,592.074
643.281,592.074 643.195,592.074 643.195,591.986 643.195,591.9 643.109,591.814 643.109,591.728 643.022,591.728 643.022,591.642
642.937,591.642 642.85,591.556 642.764,591.556 642.678,591.47 642.591,591.47 642.505,591.383 642.418,591.383 642.332,591.383
642.245,591.295 642.158,591.295 642.072,591.295 641.985,591.295 641.899,591.295 641.813,591.295 641.727,591.295
641.641,591.295 641.554,591.295 641.554,591.383 641.468,591.383 641.382,591.383 641.382,591.47 641.295,591.47 641.209,591.556
641.035,591.728 640.949,591.728 640.862,591.9 640.689,592.074 640.604,592.16 640.518,592.16 640.518,592.246 640.431,592.332
640.258,592.418 640.258,592.506 640.172,592.506 640.086,592.506 639.998,592.592 639.912,592.592 639.825,592.592
639.825,592.679 639.739,592.679 639.653,592.679 639.566,592.679 639.394,592.679 639.308,592.592 639.222,592.592
639.135,592.592 638.962,592.506 638.876,592.506 638.789,592.418 638.702,592.418 638.616,592.418 638.529,592.332
638.443,592.332 638.357,592.246 638.271,592.16 638.185,592.16 638.098,592.074 638.012,592.074 637.839,591.986 637.753,591.986
637.579,591.9 637.493,591.9 637.493,591.814 637.406,591.814 637.32,591.814 637.32,591.728 637.233,591.728 637.32,591.642
637.32,591.556 637.406,591.47 637.406,591.383 637.406,591.295 637.493,591.209 637.493,591.123 637.579,591.123 637.666,591.123
637.666,591.037 637.753,591.037 637.753,591.123 637.753,591.209 637.839,591.209 637.839,591.123 637.926,591.123
638.012,591.123 638.098,591.123 638.098,591.037 638.098,590.951 638.098,590.863 638.098,590.777 638.098,590.69
638.012,590.604 638.012,590.519 638.012,590.432 638.012,590.346 637.926,590.346 637.926,590.259 637.839,590.172 637.666,590
637.579,589.914 637.493,589.74 637.493,589.654 637.493,589.568 637.406,589.568 637.493,589.568 637.406,589.481 637.32,589.481
637.32,589.395 637.32,589.223 637.32,589.136 637.32,589.05 637.406,588.963 637.406,588.877 637.579,588.877 637.666,588.877
637.666,588.791 637.666,588.703 637.666,588.617 637.666,588.531 637.666,588.444 637.579,588.444 637.579,588.271
637.579,588.099 637.579,588.013 637.579,587.927 637.493,587.927 637.579,587.84 637.579,587.754 637.666,587.754
637.666,587.668 637.753,587.582 637.753,587.494 637.753,587.408 637.839,587.322 637.926,587.322 637.926,587.234
638.012,587.234 638.098,587.234 638.185,587.148 638.271,587.148 638.357,587.148 638.443,587.148 638.616,587.148
638.789,587.148 638.789,587.063 638.789,586.976 638.876,586.89 638.876,586.803 638.876,586.718 638.962,586.803
639.135,586.718 639.222,586.718 639.222,586.631 639.222,586.543 639.135,586.543 639.135,586.457 639.135,586.371
639.222,586.285 639.308,586.285 639.308,586.371 639.394,586.457 639.48,586.543 639.566,586.543 639.653,586.543
639.739,586.543 639.825,586.457 639.912,586.457 639.912,586.371 639.998,586.371 640.086,586.371 640.172,586.285
640.258,586.371 640.345,586.371 640.345,586.285 640.345,586.199 640.431,586.199 640.431,586.111 640.518,586.111
640.604,586.111 640.604,586.025 640.604,586.111 640.689,586.111 640.776,586.111 640.862,586.199 640.949,586.199
641.035,586.285 641.121,586.199 641.295,586.199 641.382,586.111 641.382,586.025 641.468,586.025 641.554,585.938
641.641,585.853 641.727,585.767 641.813,585.594 641.899,585.42 641.985,585.334 642.072,585.248 642.072,585.162
642.158,585.162 642.158,585.074 642.072,584.988 642.158,584.902 642.332,584.816 642.418,584.729 642.418,584.644
642.505,584.557 642.591,584.471 642.678,584.471 642.764,584.557 642.85,584.644 642.937,584.729 643.022,584.729
643.109,584.816 643.109,584.902 643.195,584.902 643.281,584.816 643.368,584.816 643.454,584.729 643.542,584.729
643.542,584.644 643.542,584.729 643.714,584.729 643.801,584.644 643.887,584.644 643.974,584.644 644.146,584.644
644.232,584.644 644.318,584.644 644.405,584.644 644.491,584.644 644.577,584.644 644.577,584.729 644.664,584.816
644.577,584.902 644.577,584.988 644.577,585.074 644.491,585.074 644.491,585.162 644.405,585.162 644.491,585.162
644.405,585.248 644.405,585.334 644.318,585.42 644.318,585.507 644.318,585.594 644.232,585.594 644.232,585.681
644.146,585.681 644.146,585.767 644.06,585.767 644.06,585.853 644.06,585.938 644.06,586.025 644.146,586.025 644.232,586.025
644.232,586.111 644.232,586.199 644.318,586.199 644.318,586.285 644.318,586.371 644.318,586.457 644.405,586.457
644.405,586.543 644.491,586.543 644.491,586.631 644.405,586.631 644.405,586.718 644.491,586.803 644.491,586.89
644.577,586.976 644.664,586.976 644.751,587.063 644.838,587.063 644.924,587.148 645.01,587.234 645.097,587.234
645.183,587.234 645.27,587.234 645.355,587.322 645.355,587.408 645.441,587.494 645.528,587.582 645.614,587.582
645.614,587.668 645.614,587.754 645.701,587.754 645.701,587.84 645.701,587.927 645.701,588.013 645.701,588.099
645.701,588.271 645.701,588.358 645.701,588.444 645.701,588.531 645.701,588.617 645.614,588.703 645.614,588.791
645.614,588.877 645.614,588.963 645.614,589.05 645.614,589.136 645.701,589.136 645.701,589.223 645.787,589.223
645.873,589.223 645.873,589.309 645.873,589.395 645.961,589.481 645.961,589.568 645.961,589.654 646.047,589.654
646.134,589.654 646.134,589.568 646.22,589.568 646.22,589.481 646.306,589.395 646.393,589.395 646.479,589.481 646.565,589.568
646.737,589.654 646.91,589.74 646.998,589.826 647.084,589.826 647.084,589.914 647.17,589.914 647.17,590 647.17,590.086
647.17,590.172 647.084,590.172 647.084,590.259 647.084,590.346 646.998,590.432 646.998,590.604 646.998,590.69 646.998,590.777
647.084,590.777 647.17,590.777 647.17,590.69 647.257,590.69 647.257,590.604 647.257,590.519 647.257,590.432 647.257,590.346
647.257,590.259 647.257,590.172 647.343,590.172 647.343,590.086 647.43,590.086 647.516,590.086 647.516,590.172
647.602,590.172 647.602,590.259 647.602,590.346 647.602,590.432 647.602,590.519 647.516,590.519 647.516,590.604
647.516,590.69 647.43,590.777 647.43,590.863 647.43,590.951 647.516,590.951 647.602,590.951 647.602,591.037 647.688,591.037
647.774,591.037 647.861,591.123 647.861,591.209 647.861,591.295 647.861,591.383 647.774,591.47 647.774,591.556
647.688,591.642 647.602,591.728 647.43,591.642 647.343,591.556 647.17,591.556 647.084,591.556 646.998,591.556 646.91,591.556
646.824,591.556 646.737,591.556 646.737,591.642 646.651,591.642 646.565,591.728 646.479,591.814 646.393,591.9 646.393,591.986
646.306,591.986 646.306,592.074 646.22,592.16 646.22,592.246 646.22,592.332 646.134,592.418 646.134,592.506 646.134,592.592
646.134,592.679 646.134,592.765 646.22,593.023 646.22,593.11 646.306,593.197 646.306,593.283 646.306,593.369 646.479,593.629
646.479,593.715 646.479,593.802 646.565,593.802 646.565,593.888 646.651,593.975 646.651,594.061 646.651,594.146
646.737,594.233 646.737,594.319 646.737,594.406 646.737,594.492 646.737,594.578 646.737,594.666 646.737,594.752
646.737,594.838 646.651,594.925 646.651,595.011 646.651,595.098 646.565,595.184 646.479,595.271 646.393,595.271
646.306,595.442 646.22,595.442 646.134,595.529 646.047,595.529 645.961,595.615 645.873,595.615 645.614,595.703
645.528,595.703 645.355,595.789 645.27,595.789 645.183,595.789 645.097,595.789 645.01,595.789 644.924,595.789 644.838,595.789
644.751,595.703 644.664,595.703 644.577,595.703 644.491,595.703 644.491,595.615 644.318,595.529 644.232,595.529
644.146,595.442 644.06,595.356 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
630.063,579.891 630.148,579.891 630.148,579.805 630.235,579.805 630.235,579.719 630.321,579.719 630.408,579.719
630.408,579.633 630.581,579.545 630.668,579.459 630.668,579.373 630.754,579.373 630.841,579.373 630.841,579.286
630.927,579.286 631.013,579.286 631.1,579.286 631.1,579.2 631.186,579.2 631.358,579.2 631.444,579.2 631.531,579.2
631.617,579.2 631.705,579.2 631.705,579.113 631.791,579.113 631.791,579.027 631.877,579.027 631.964,579.027 632.05,579.027
632.223,578.941 632.309,578.941 632.309,579.027 632.396,579.027 632.309,579.113 632.396,579.113 632.481,579.113 632.568,579.2
632.654,579.286 632.74,579.373 632.74,579.459 632.654,579.545 632.74,579.545 632.74,579.633 632.828,579.633 632.828,579.719
632.828,579.805 633.26,580.064 633.346,580.15 633.433,580.237 633.519,580.323 633.604,580.409 633.691,580.496 633.691,580.582
633.777,580.582 633.777,580.67 633.864,580.67 633.864,580.756 634.037,580.928 634.124,580.928 634.124,580.842 634.124,580.928
634.21,580.928 634.383,581.188 634.469,581.273 634.556,581.273 634.556,581.36 634.729,581.446 634.814,581.619 635.16,581.533
635.247,581.533 635.333,581.619 635.42,581.619 635.506,581.619 635.506,581.705 635.593,581.705 635.679,581.705
635.679,581.793 635.679,581.879 635.765,581.965 635.765,582.051 635.765,582.137 635.852,582.137 635.765,582.137
635.765,582.225 635.852,582.397 635.852,582.569 635.852,582.656 635.852,582.742 635.852,582.829 635.938,582.915
636.024,582.915 636.11,583.088 636.196,583.088 636.283,583.088 636.283,583.174 636.369,583.174 636.457,583.174
636.457,583.262 636.543,583.262 636.629,583.174 636.716,583.174 636.889,583.262 637.061,583.262 637.147,583.262
637.147,583.348 637.233,583.348 637.233,583.434 637.32,583.693 637.406,583.865 637.492,583.952 637.492,584.125
637.492,584.211 637.492,584.297 637.32,584.297 637.147,584.297 636.716,584.297 636.629,584.297 636.629,584.557
636.629,584.729 636.543,585.075 636.457,585.422 636.457,585.594 636.369,585.766 636.369,585.939 636.369,586.025
636.283,586.025 636.196,586.112 636.11,586.198 636.024,586.198 636.024,586.285 635.938,586.285 635.852,586.371
635.765,586.457 635.679,586.545 635.593,586.631 635.506,586.631 635.42,586.717 635.333,586.717 635.247,586.803 635.16,586.889
635.247,587.063 635.247,587.149 635.333,587.321 635.42,587.408 635.42,587.494 635.333,587.581 636.024,587.84 636.11,587.84
636.11,587.926 636.196,587.926 636.196,588.014 636.283,588.1 636.283,588.186 636.369,588.186 636.457,588.186 636.629,588.1
636.629,588.272 636.543,588.358 636.543,588.445 636.629,588.445 636.629,588.531 636.716,588.531 636.716,588.617
636.716,588.79 636.629,588.877 636.629,588.963 636.629,589.137 636.629,589.223 636.543,589.309 636.543,589.396
636.457,589.481 636.283,589.481 636.283,589.396 636.11,589.309 636.024,589.309 636.024,589.137 635.938,589.137
635.852,589.137 635.765,589.137 635.765,589.049 635.679,589.049 635.593,589.049 635.506,589.049 635.506,588.963
635.506,588.877 635.42,588.704 635.333,588.79 635.247,588.79 635.247,588.704 635.073,588.79 635.073,588.877 635.16,588.877
635.16,588.963 635.16,589.049 635.16,589.137 635.16,589.223 635.073,589.223 634.987,589.223 634.9,589.223 634.9,589.309
634.814,589.309 634.729,589.309 634.729,589.396 634.642,589.396 634.469,589.481 634.297,589.568 634.21,589.654 634.21,589.481
634.124,589.309 634.124,589.223 634.124,589.137 634.037,589.049 634.037,588.963 633.864,588.963 633.864,588.877
633.777,588.877 633.777,588.79 633.691,588.79 633.519,588.704 633.433,588.704 633.346,588.704 633.346,588.617 633.26,588.617
633.26,588.531 633.173,588.445 633.173,588.358 633.173,588.272 633.26,588.186 633.173,588.1 633.087,588.014 633.001,587.926
633.001,587.84 632.914,587.754 632.914,587.581 632.914,587.494 632.828,587.494 632.828,587.408 632.74,587.408 632.654,587.408
632.568,587.321 632.481,587.321 632.309,587.321 632.223,587.321 632.137,587.408 632.137,587.321 632.137,586.977
632.137,586.717 632.137,586.631 632.137,586.457 632.137,586.371 632.137,586.285 632.137,586.198 632.137,586.112
632.05,586.025 632.05,585.939 632.05,585.854 631.964,585.854 631.964,585.766 631.964,585.68 631.877,585.68 631.791,585.508
631.791,585.422 631.791,585.334 631.705,585.334 631.705,585.248 631.705,585.161 631.705,585.075 631.705,584.989
631.617,584.816 631.617,584.643 631.617,584.557 631.617,584.471 631.531,584.297 631.531,584.211 631.444,584.125
631.444,584.038 631.358,584.038 631.272,583.952 631.186,583.865 631.1,583.779 631.1,583.606 631.1,583.521 631.013,583.521
631.013,583.434 630.927,583.348 630.754,583.262 630.668,583.088 630.581,583.002 630.581,582.915 630.494,582.915
630.408,582.829 630.321,582.742 630.235,582.742 630.148,582.483 630.063,582.225 629.977,582.225 629.977,582.137
629.89,581.965 629.89,581.879 629.804,581.879 629.804,581.793 629.804,581.705 629.804,581.619 629.804,581.533 629.89,581.533
629.89,581.446 629.89,581.36 629.89,581.273 629.804,581.273 629.804,581.188 629.804,581.102 629.804,581.014 629.804,580.928
629.804,580.842 629.717,580.756 629.717,580.496 629.717,580.409 629.717,580.323 629.631,580.237 629.631,580.15 629.717,580.15
629.804,580.15 629.804,580.064 629.977,579.978 630.063,579.978 630.063,579.891 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
641.122,581.273 641.208,581.273 641.295,581.273 641.381,581.359 641.468,581.359 641.554,581.359 641.554,581.273
641.64,581.273 641.727,581.273 641.813,581.273 641.813,581.359 641.899,581.359 641.986,581.359 642.072,581.273
642.159,581.273 642.245,581.359 642.332,581.359 642.418,581.359 642.418,581.446 642.504,581.446 642.591,581.446
642.677,581.446 642.677,581.359 642.764,581.359 642.85,581.359 642.85,581.273 642.936,581.273 643.022,581.273 643.109,581.359
643.196,581.446 643.282,581.446 643.282,581.532 643.368,581.532 643.455,581.619 643.541,581.705 643.541,581.791
643.628,581.791 643.628,581.879 643.628,581.965 643.628,582.051 643.714,582.051 643.8,582.051 643.887,582.138 643.973,582.224
644.231,582.396 644.318,582.396 644.318,582.655 644.318,582.569 644.405,582.655 644.405,582.742 644.405,582.916
644.492,583.088 644.318,583.088 644.231,583.088 644.231,583.174 644.231,583.261 644.231,583.348 644.318,583.434
644.318,583.52 644.318,583.606 644.405,583.692 644.405,583.779 644.405,583.865 644.492,583.865 644.492,583.951
644.492,584.039 644.492,584.125 644.492,584.211 644.492,584.297 644.578,584.383 644.578,584.471 644.578,584.557
644.578,584.644 644.492,584.644 644.405,584.644 644.318,584.644 644.231,584.644 644.146,584.644 643.973,584.644
643.887,584.644 643.8,584.644 643.714,584.729 643.541,584.729 643.541,584.644 643.541,584.729 643.455,584.729 643.368,584.815
643.282,584.815 643.196,584.902 643.109,584.902 643.109,584.815 643.022,584.729 642.936,584.729 642.85,584.644
642.764,584.557 642.677,584.471 642.591,584.471 642.504,584.557 642.418,584.644 642.418,584.729 642.332,584.815
642.159,584.902 642.072,584.988 642.159,585.076 642.159,585.162 642.072,585.162 642.072,585.248 641.986,585.334
641.899,585.42 641.813,585.594 641.727,585.767 641.64,585.853 641.554,585.939 641.468,586.025 641.381,586.025 641.381,586.111
641.295,586.198 641.122,586.198 641.036,586.285 640.949,586.198 640.863,586.198 640.775,586.111 640.689,586.111
640.604,586.111 640.604,586.025 640.604,586.111 640.517,586.111 640.431,586.111 640.431,586.198 640.344,586.198
640.344,586.285 640.344,586.371 640.258,586.371 640.172,586.285 640.085,586.371 639.999,586.371 639.912,586.371
639.912,586.457 639.826,586.457 639.74,586.543 639.652,586.543 639.566,586.543 639.479,586.543 639.394,586.457
639.308,586.371 639.308,586.285 639.221,586.285 639.135,586.371 639.135,586.457 639.135,586.543 639.221,586.543
639.221,586.631 639.221,586.717 639.135,586.717 638.962,586.804 638.876,586.717 638.876,586.804 638.876,586.89
638.789,586.976 638.789,587.063 638.789,587.148 638.616,587.148 638.443,587.148 638.356,587.148 638.271,587.148
638.184,587.148 638.098,587.235 638.012,587.235 637.925,587.235 637.925,587.321 637.839,587.321 637.752,587.407
637.752,587.494 637.752,587.58 637.666,587.668 637.666,587.754 637.58,587.754 637.58,587.84 637.493,587.926 637.58,587.926
637.58,588.013 637.58,588.1 637.58,588.271 637.58,588.444 637.666,588.444 637.666,588.531 637.666,588.617 637.666,588.703
637.666,588.791 637.666,588.877 637.58,588.877 637.407,588.877 637.407,588.963 637.234,588.963 637.147,588.877
637.061,588.877 637.061,589.049 636.975,589.136 636.975,589.223 636.888,589.309 636.802,589.309 636.629,589.223
636.629,589.136 636.629,588.963 636.629,588.877 636.716,588.791 636.716,588.617 636.716,588.531 636.629,588.531
636.629,588.444 636.543,588.444 636.543,588.358 636.629,588.271 636.629,588.1 636.456,588.186 636.37,588.186 636.284,588.186
636.284,588.1 636.197,588.013 636.197,587.926 636.111,587.926 636.111,587.84 636.023,587.84 635.333,587.58 635.42,587.494
635.42,587.407 635.333,587.321 635.247,587.148 635.247,587.063 635.16,586.89 635.247,586.804 635.333,586.717 635.42,586.717
635.506,586.631 635.592,586.631 635.679,586.543 635.765,586.457 635.852,586.371 635.938,586.285 636.023,586.285
636.023,586.198 636.111,586.198 636.197,586.111 636.284,586.025 636.37,586.025 636.37,585.939 636.37,585.767 636.456,585.594
636.456,585.42 636.543,585.076 636.629,584.729 636.629,584.557 636.629,584.297 636.716,584.297 637.147,584.297 637.32,584.297
637.493,584.297 637.493,584.211 637.493,584.125 637.493,583.951 637.407,583.865 637.32,583.692 637.234,583.434
637.234,583.348 637.147,583.348 637.147,583.261 637.061,583.261 636.888,583.261 636.716,583.174 636.629,583.174
636.543,583.261 636.456,583.261 636.456,583.174 636.37,583.174 636.284,583.174 636.284,583.088 636.197,583.088
636.111,583.088 636.023,582.916 635.938,582.916 635.852,582.828 635.852,582.742 635.852,582.655 635.852,582.569
635.852,582.396 635.765,582.224 635.765,582.138 635.852,582.138 635.765,582.138 635.765,582.051 635.765,581.965
635.679,581.879 635.679,581.791 635.679,581.705 635.592,581.705 635.506,581.705 635.506,581.619 635.42,581.619
635.333,581.619 635.247,581.532 635.16,581.532 634.814,581.619 634.728,581.446 634.556,581.359 634.556,581.273
634.469,581.273 634.383,581.188 634.21,580.928 634.124,580.928 634.124,580.842 634.296,580.756 634.469,580.496 634.556,580.41
634.728,580.15 635.074,579.805 635.074,579.719 634.988,579.719 634.988,579.631 634.988,579.545 634.9,579.287 634.814,579.199
634.9,579.199 634.9,579.113 634.988,579.113 635.074,579.199 635.16,579.199 635.247,579.199 635.247,579.113 635.333,579.113
635.42,579.113 635.506,579.113 635.592,579.113 635.679,579.113 635.679,579.027 635.765,579.027 635.852,579.027
635.938,579.027 636.023,579.027 636.111,579.027 636.111,578.94 636.197,578.94 636.284,578.94 636.284,578.854 636.37,578.854
636.456,578.854 636.543,578.854 636.629,578.854 636.716,578.854 636.716,578.768 636.802,578.768 636.975,578.768
637.061,578.768 637.147,578.768 637.147,578.854 637.234,578.854 637.32,578.854 637.407,578.854 637.407,578.768
637.493,578.768 637.58,578.768 637.666,578.768 637.666,578.682 637.666,578.768 637.752,578.768 637.839,578.768
637.925,578.682 637.925,578.768 638.012,578.682 638.098,578.682 638.184,578.682 638.271,578.596 638.356,578.596
638.443,578.596 638.53,578.596 638.53,578.508 638.616,578.508 638.703,578.422 638.789,578.422 638.876,578.422 638.962,578.336
639.135,578.25 639.135,578.336 639.221,578.508 639.221,578.596 639.308,578.682 639.308,578.768 639.308,578.854 639.394,578.94
639.394,579.027 639.479,579.113 639.479,579.199 639.479,579.287 639.566,579.373 639.652,579.459 639.74,579.545 639.74,579.631
639.826,579.631 639.912,579.631 639.999,579.631 639.999,579.719 640.085,579.892 640.085,579.978 640.172,579.978
640.172,580.063 640.258,580.15 640.344,580.15 640.431,580.15 640.431,580.236 640.517,580.323 640.604,580.41 640.689,580.496
640.689,580.582 640.775,580.582 640.863,580.668 640.863,580.756 640.949,580.756 640.949,580.842 640.949,580.928
640.863,580.928 640.863,581.015 640.863,581.101 640.949,581.101 640.949,581.188 641.036,581.188 641.122,581.273 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
634.901,579.199 634.815,579.199 634.901,579.286 634.987,579.546 634.987,579.632 634.987,579.718 635.074,579.718
635.074,579.805 634.729,580.15 634.555,580.41 634.469,580.496 634.296,580.755 634.123,580.842 634.123,580.928 634.037,580.928
633.864,580.755 633.864,580.669 633.778,580.669 633.778,580.582 633.691,580.582 633.691,580.496 633.605,580.41 633.52,580.322
633.432,580.236 633.346,580.15 633.259,580.064 632.827,579.805 632.827,579.718 632.827,579.632 632.741,579.632
632.741,579.546 632.655,579.546 632.741,579.459 632.741,579.373 632.655,579.286 632.568,579.199 632.482,579.113
632.396,579.113 632.309,579.113 632.396,579.027 632.309,579.027 632.309,578.941 632.223,578.941 632.05,579.027
631.963,579.027 631.877,579.027 631.791,579.027 631.791,579.113 631.704,579.113 631.704,579.199 631.618,579.199
631.531,579.199 631.445,579.199 631.359,579.199 631.187,579.199 631.1,579.199 631.1,579.286 631.013,579.286 630.927,579.286
630.84,579.286 630.84,579.373 630.754,579.373 630.667,579.373 630.667,579.459 630.581,579.546 630.408,579.632 630.408,579.718
630.322,579.718 630.235,579.718 630.235,579.805 630.149,579.805 630.149,579.891 630.063,579.891 630.063,579.979
629.977,579.979 629.803,580.064 629.803,580.15 629.717,580.15 629.631,580.15 629.458,580.064 629.371,579.979 629.285,579.979
629.199,579.979 629.026,579.891 628.939,579.891 628.768,579.805 628.68,579.718 628.594,579.718 628.421,579.718
628.248,579.718 628.075,579.718 627.903,579.632 627.643,579.632 627.557,579.546 627.471,579.546 627.384,579.546
627.298,579.546 627.211,579.546 627.125,579.632 627.039,579.632 626.952,579.632 626.952,579.546 626.866,579.546
626.779,579.546 626.693,579.546 626.521,579.546 626.434,579.546 626.347,579.546 626.261,579.632 626.175,579.632
626.175,579.546 626.175,579.373 626.261,579.373 626.347,579.373 626.434,579.373 626.434,579.286 626.434,579.199
626.347,579.027 626.347,578.854 626.347,578.768 626.434,578.682 626.521,578.768 626.607,578.682 626.607,578.595
626.693,578.509 626.607,578.509 626.693,578.509 626.693,578.422 626.693,578.25 626.693,578.076 626.607,578.076 626.607,577.99
626.607,577.904 626.607,577.818 626.693,577.818 626.779,577.818 626.693,577.818 626.779,577.73 626.779,577.645
626.779,577.558 626.866,577.558 626.866,577.472 626.952,577.472 627.039,577.386 627.125,577.386 627.125,577.299
627.211,577.299 627.298,577.213 627.298,577.126 627.384,577.213 627.471,577.299 627.557,577.299 627.73,577.04 627.73,576.954
627.816,576.954 627.73,576.954 627.643,576.954 627.643,576.781 627.643,576.693 627.643,576.781 627.643,576.693
627.384,576.693 627.471,576.607 627.471,576.521 627.471,576.436 627.384,576.436 627.384,576.349 627.471,576.349
627.471,576.262 627.471,576.176 627.471,576.09 627.471,576.003 627.557,575.917 627.557,575.83 627.471,575.83 627.471,575.744
627.384,575.658 627.384,575.57 627.384,575.484 627.298,575.484 627.298,575.398 627.298,575.313 627.211,575.053
627.211,574.966 627.211,574.88 627.211,574.794 627.384,574.361 627.557,574.016 627.73,573.584 627.73,573.412 627.816,573.324
627.816,573.412 627.903,573.498 627.989,573.584 627.989,573.67 628.075,573.757 628.162,573.843 628.162,574.016
628.162,574.102 628.162,574.189 628.162,574.275 628.162,574.361 628.248,574.447 628.248,574.533 628.335,574.707
628.421,574.794 628.421,574.88 628.68,574.621 628.854,574.621 628.854,574.533 628.939,574.533 628.939,574.447 629.112,574.361
629.199,574.275 629.285,574.102 629.285,574.016 629.371,573.93 629.371,573.843 629.458,573.757 629.458,573.67 629.458,573.584
629.458,573.498 629.458,573.412 629.458,573.324 629.371,573.324 629.371,573.238 629.371,573.152 629.371,573.066
629.285,572.979 629.285,572.893 629.285,572.806 629.285,572.634 629.371,572.634 629.544,572.547 629.803,572.375
629.977,572.375 630.149,572.288 630.235,572.201 630.322,572.201 630.495,572.288 630.667,572.375 630.754,572.375
630.927,572.461 631.013,572.461 631.1,572.547 631.187,572.547 631.272,572.547 631.359,572.461 631.445,572.375 631.445,572.461
631.531,572.547 631.618,572.547 631.618,572.634 631.704,572.634 631.791,572.634 631.877,572.634 632.136,572.634
632.136,572.72 632.223,572.634 632.309,572.634 632.396,572.72 632.396,572.634 632.568,572.72 632.568,572.634 632.655,572.634
632.741,572.634 632.827,572.634 632.914,572.634 633.087,572.634 633.173,572.634 633.259,572.634 633.259,572.72
633.346,572.634 633.605,572.634 633.691,572.634 633.778,572.634 633.951,572.634 634.037,572.634 634.123,572.72
634.123,572.634 634.21,572.634 634.296,572.634 634.383,572.634 634.555,572.634 634.643,572.634 634.729,572.547
634.729,572.461 634.815,572.461 634.901,572.461 634.987,572.547 635.16,572.547 635.16,572.461 635.247,572.461 635.333,572.547
635.333,572.461 635.419,572.547 635.419,572.461 635.419,572.547 635.506,572.547 635.506,572.461 635.592,572.547
635.765,572.547 635.852,572.547 635.938,572.547 636.024,572.547 636.111,572.547 636.197,572.547 636.283,572.547
636.37,572.547 636.543,572.547 636.629,572.547 636.715,572.547 636.802,572.547 636.888,572.547 636.975,572.547
637.147,572.547 637.234,572.547 637.32,572.547 637.407,572.547 637.493,572.461 637.579,572.461 637.666,572.461
637.752,572.461 637.839,572.461 637.925,572.461 638.011,572.461 638.184,572.461 638.271,572.461 638.271,572.375
638.271,572.461 638.357,572.461 638.443,572.461 638.53,572.461 638.789,572.461 638.875,572.461 638.962,572.461
639.221,572.461 639.395,572.375 639.567,572.375 639.653,572.375 639.826,572.375 639.912,572.461 639.999,572.461
639.912,572.461 639.999,572.461 639.999,572.547 640.085,572.547 640.171,572.547 640.085,572.634 640.258,572.634
640.344,572.634 640.344,572.72 640.431,572.72 640.518,572.72 640.604,572.72 640.863,572.806 640.949,572.893 641.122,572.893
641.295,572.979 641.295,573.066 641.208,573.152 641.208,573.324 641.122,573.412 641.122,573.498 641.035,573.584
640.949,573.757 640.863,573.93 640.776,574.016 640.776,574.102 640.69,574.189 640.604,574.275 640.518,574.447 640.431,574.533
640.344,574.621 640.344,574.707 640.258,574.707 640.258,574.794 640.258,574.88 640.258,574.966 640.258,575.053
640.171,575.053 640.171,575.139 640.085,575.139 640.085,575.227 640.085,575.313 640.085,575.484 640.085,575.658
639.999,575.658 639.999,575.744 639.999,575.83 639.999,575.917 639.999,576.003 639.999,576.09 640.085,576.176 640.085,576.262
640.171,576.349 640.171,576.436 640.085,576.436 640.085,576.521 639.999,576.521 639.999,576.607 639.912,576.693
639.826,576.693 639.826,576.781 639.826,576.867 639.826,576.954 639.739,576.954 639.739,577.04 639.739,577.126
639.653,577.126 639.653,577.213 639.567,577.213 639.567,577.299 639.48,577.386 639.48,577.472 639.395,577.472 639.307,577.558
639.221,577.645 639.135,577.73 639.135,577.818 639.048,577.818 639.048,577.904 639.048,577.99 639.048,578.076 639.135,578.163
639.135,578.25 638.962,578.336 638.875,578.422 638.789,578.422 638.703,578.422 638.616,578.509 638.53,578.509 638.53,578.595
638.443,578.595 638.357,578.595 638.271,578.595 638.184,578.682 638.098,578.682 638.011,578.682 637.925,578.768
637.925,578.682 637.839,578.768 637.752,578.768 637.666,578.768 637.666,578.682 637.666,578.768 637.579,578.768
637.493,578.768 637.407,578.768 637.407,578.854 637.32,578.854 637.234,578.854 637.147,578.854 637.147,578.768
637.062,578.768 636.975,578.768 636.802,578.768 636.715,578.768 636.715,578.854 636.629,578.854 636.543,578.854
636.456,578.854 636.37,578.854 636.283,578.854 636.283,578.941 636.197,578.941 636.111,578.941 636.111,579.027
636.024,579.027 635.938,579.027 635.852,579.027 635.765,579.027 635.679,579.027 635.679,579.113 635.592,579.113
635.506,579.113 635.419,579.113 635.333,579.113 635.247,579.113 635.247,579.199 635.16,579.199 635.074,579.199
634.987,579.113 634.901,579.113 634.901,579.199 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
645.701,588.013 645.701,587.927 645.701,587.84 645.701,587.754 645.615,587.754 645.615,587.666 645.615,587.58 645.528,587.58
645.442,587.494 645.355,587.408 645.355,587.322 645.27,587.234 645.184,587.234 645.096,587.234 645.01,587.234 644.923,587.148
644.837,587.063 644.751,587.063 644.664,586.976 644.578,586.976 644.491,586.89 644.491,586.803 644.405,586.717
644.405,586.631 644.491,586.631 644.491,586.543 644.405,586.543 644.405,586.457 644.319,586.457 644.319,586.371
644.319,586.285 644.319,586.199 644.232,586.199 644.232,586.111 644.232,586.025 644.146,586.025 644.059,586.025
644.059,585.938 644.059,585.853 644.059,585.767 644.146,585.767 644.146,585.68 644.232,585.68 644.232,585.594 644.319,585.594
644.319,585.507 644.319,585.421 644.405,585.334 644.405,585.248 644.491,585.162 644.405,585.162 644.491,585.162
644.491,585.074 644.578,585.074 644.578,584.988 644.578,584.902 644.664,584.815 644.578,584.729 644.578,584.643
644.578,584.557 644.578,584.471 644.578,584.384 644.491,584.298 644.491,584.211 644.491,584.125 644.491,584.039
644.491,583.951 644.491,583.865 644.405,583.865 644.405,583.779 644.405,583.693 644.319,583.606 644.319,583.52
644.319,583.434 644.232,583.347 644.232,583.261 644.232,583.175 644.232,583.088 644.319,583.088 644.491,583.088
644.491,583.175 644.491,583.088 644.664,583.088 644.751,583.002 644.837,583.002 644.923,583.002 645.096,582.914
645.184,582.914 645.27,582.914 645.355,582.914 645.355,583.002 645.442,583.088 645.442,583.175 645.442,583.261
645.442,583.347 645.442,583.434 645.528,583.347 645.701,583.347 645.787,583.261 645.874,583.175 646.047,583.175
646.219,583.088 646.306,583.088 646.393,583.088 646.479,583.002 646.565,583.002 646.651,583.002 646.738,583.002
646.824,582.914 646.824,583.002 646.911,583.002 647.083,583.002 647.083,582.914 647.083,583.002 647.17,583.002 647.17,583.088
647.17,583.175 647.256,583.175 647.343,583.175 647.429,583.088 647.602,583.088 647.602,583.002 647.688,583.002
647.688,582.914 647.775,582.914 647.602,582.656 647.775,582.482 647.861,582.57 648.12,582.396 648.207,582.396 648.293,582.57
648.379,582.656 648.466,582.656 648.552,582.57 648.639,582.57 648.725,582.482 648.812,582.482 648.984,582.396 648.984,582.311
648.898,582.138 648.984,582.051 649.071,582.138 649.157,582.051 649.157,581.965 649.243,581.965 649.243,582.051
649.243,582.138 649.243,582.224 649.416,582.224 649.416,582.396 649.503,582.482 649.589,582.482 649.762,582.396
649.848,582.396 649.936,582.396 650.107,582.396 650.194,582.396 650.28,582.396 650.367,582.311 650.453,582.311
650.539,582.224 650.626,582.224 650.712,582.224 650.885,582.224 650.971,582.224 651.059,582.224 651.231,582.311
651.317,582.311 651.403,582.311 651.403,582.224 651.576,582.224 651.835,582.311 651.922,582.311 651.922,582.224
651.835,582.138 651.835,582.051 651.749,581.965 651.749,581.879 651.663,581.791 651.663,581.705 651.576,581.705
651.49,581.619 651.49,581.533 651.49,581.359 651.403,581.187 651.403,581.101 651.403,581.015 651.49,581.015 651.576,580.928
651.663,580.928 651.835,580.842 651.922,580.755 652.008,580.755 652.095,580.668 652.181,580.668 652.354,580.496
652.354,580.582 652.354,580.668 652.44,580.668 652.44,580.755 652.527,580.842 652.527,580.928 652.613,580.928 652.613,581.015
652.699,581.015 652.699,581.101 652.786,581.101 652.786,581.187 652.872,581.187 652.872,581.273 652.872,581.359
652.959,581.359 653.045,581.359 653.045,581.447 653.131,581.447 653.131,581.533 653.045,581.533 653.131,581.533
653.131,581.619 653.218,581.619 653.304,581.705 653.391,581.705 653.391,581.791 653.391,581.879 653.477,581.879
653.563,581.879 653.563,581.965 653.563,581.879 653.65,581.879 653.736,581.879 653.823,581.791 653.995,581.791
653.995,581.879 654.082,581.879 654.082,581.965 654.168,581.965 654.168,582.051 654.255,582.051 654.168,582.051
654.255,582.138 654.255,582.224 654.341,582.224 654.341,582.311 654.341,582.396 654.341,582.57 654.514,582.57 654.514,582.742
654.514,582.914 654.514,583.088 654.6,583.261 654.6,583.347 654.6,583.434 654.6,583.52 654.6,583.606 654.6,583.779
654.6,583.865 654.6,583.951 654.6,584.039 654.6,584.125 654.6,584.211 654.6,584.298 654.514,584.298 654.514,584.384
654.514,584.471 654.427,584.557 654.427,584.643 654.427,584.729 654.427,584.815 654.427,584.902 654.427,584.988
654.427,585.074 654.514,585.162 654.514,585.248 654.6,585.334 654.6,585.421 654.688,585.507 654.6,585.594 654.6,585.68
654.6,585.767 654.688,585.767 654.688,585.68 654.773,585.68 654.773,585.767 654.859,585.938 654.946,586.199 655.032,586.199
655.032,586.285 655.032,586.371 655.119,586.457 655.119,586.543 655.119,586.631 655.119,586.717 655.119,586.803
655.205,586.89 655.205,586.976 655.205,587.063 655.205,586.976 655.291,586.976 655.378,586.976 655.464,586.976 655.464,586.89
655.464,586.976 655.551,586.976 655.637,586.976 655.723,586.976 655.811,586.976 655.896,587.063 655.983,587.148
656.069,587.234 656.069,587.322 656.155,587.322 656.242,587.408 656.328,587.408 656.415,587.408 656.415,587.494
656.501,587.494 656.501,587.58 656.587,587.58 656.674,587.666 656.76,587.666 656.847,587.666 656.847,587.58 656.934,587.58
657.02,587.494 657.106,587.494 657.192,587.494 657.192,587.58 657.279,587.58 657.365,587.58 657.451,587.58 657.538,587.58
657.538,587.666 657.538,587.754 657.538,587.84 657.538,587.927 657.538,588.013 657.538,588.099 657.538,588.186
657.538,588.271 657.624,588.359 657.711,588.445 657.797,588.531 657.797,588.617 657.883,588.617 657.883,588.703
657.797,588.963 657.797,589.05 657.797,589.136 657.883,589.223 657.883,589.309 657.97,589.395 658.056,589.481 658.143,589.568
658.229,589.568 658.315,589.654 658.402,589.74 658.488,589.74 658.488,589.914 658.488,590.259 658.315,590.259 658.056,590.259
657.97,590.259 657.883,590.259 657.797,590.346 657.711,590.346 657.624,590.346 657.538,590.432 657.451,590.432
657.365,590.432 657.365,590.519 657.279,590.519 657.106,590.69 657.02,590.69 657.02,590.777 656.847,590.951 656.76,591.037
656.76,591.123 656.674,591.209 656.674,591.296 656.587,591.469 656.501,591.555 656.501,591.642 656.415,591.814 656.328,591.9
656.242,592.16 656.155,592.246 656.069,592.332 656.069,592.418 655.983,592.418 655.983,592.506 655.896,592.592
655.896,592.679 655.811,592.679 655.723,592.765 655.637,592.851 655.551,592.938 655.464,592.938 655.378,592.938
655.205,593.023 654.773,593.197 654.6,593.197 654.341,593.197 654.168,593.283 654.082,593.283 653.995,593.283 653.909,593.283
653.823,593.283 653.736,593.283 653.65,593.283 653.477,593.283 653.218,593.283 653.131,593.197 653.045,593.197
652.959,593.197 652.872,593.197 652.786,593.197 652.699,593.197 652.613,593.197 652.527,593.197 652.44,593.197
652.354,593.197 652.181,593.197 652.008,593.197 651.922,593.197 651.835,593.197 651.749,593.197 651.663,593.197
651.576,593.197 651.49,593.197 651.403,593.197 651.317,593.283 651.231,593.283 651.145,593.283 651.059,593.283
650.971,593.283 650.885,593.283 650.799,593.283 650.626,593.369 650.453,593.369 650.28,593.455 650.194,593.455
650.021,593.455 649.936,593.455 649.848,593.455 649.675,593.455 649.589,593.455 649.503,593.455 649.33,593.369
649.243,593.283 649.071,593.283 648.898,593.197 648.812,593.111 648.639,592.938 648.552,592.851 648.379,592.679
648.293,592.592 648.293,592.506 648.207,592.418 648.034,592.246 647.947,592.074 647.861,591.986 647.775,591.9 647.775,591.814
647.688,591.814 647.602,591.728 647.688,591.642 647.775,591.555 647.775,591.469 647.861,591.383 647.861,591.296
647.861,591.209 647.861,591.123 647.775,591.037 647.688,591.037 647.602,591.037 647.602,590.951 647.515,590.951
647.429,590.951 647.429,590.863 647.429,590.777 647.515,590.69 647.515,590.604 647.515,590.519 647.602,590.519
647.602,590.432 647.602,590.346 647.602,590.259 647.602,590.173 647.515,590.173 647.515,590.087 647.429,590.087
647.343,590.087 647.343,590.173 647.256,590.173 647.256,590.259 647.256,590.346 647.256,590.432 647.256,590.519
647.256,590.604 647.256,590.69 647.17,590.69 647.17,590.777 647.083,590.777 646.997,590.777 646.997,590.69 646.997,590.604
646.997,590.432 647.083,590.346 647.083,590.259 647.083,590.173 647.17,590.173 647.17,590.087 647.17,590 647.17,589.914
647.083,589.914 647.083,589.826 646.997,589.826 646.911,589.74 646.738,589.654 646.565,589.568 646.479,589.481
646.393,589.395 646.306,589.395 646.219,589.481 646.219,589.568 646.133,589.568 646.133,589.654 646.047,589.654
645.96,589.654 645.96,589.568 645.96,589.481 645.874,589.395 645.874,589.309 645.874,589.223 645.787,589.223 645.701,589.223
645.701,589.136 645.615,589.136 645.615,589.05 645.615,588.963 645.615,588.877 645.615,588.791 645.615,588.703
645.701,588.617 645.701,588.531 645.701,588.445 645.701,588.359 645.701,588.271 645.701,588.099 645.701,588.013 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
658.488,590.26 658.488,589.913 658.488,589.741 658.402,589.741 658.315,589.654 658.229,589.568 658.143,589.568
658.057,589.481 657.971,589.395 657.883,589.309 657.883,589.223 657.797,589.137 657.797,589.049 657.797,588.963
657.883,588.704 657.883,588.617 657.797,588.617 657.797,588.531 657.71,588.445 657.624,588.358 657.538,588.271
657.538,588.186 657.538,588.1 657.538,588.014 657.538,587.926 657.538,587.84 657.538,587.754 657.538,587.667 657.538,587.581
657.451,587.581 657.365,587.581 657.278,587.581 657.192,587.581 657.192,587.494 657.106,587.494 657.02,587.494
656.934,587.581 656.847,587.581 656.847,587.667 656.76,587.667 656.674,587.667 656.587,587.581 656.501,587.581
656.501,587.494 656.414,587.494 656.414,587.408 656.328,587.408 656.242,587.408 656.155,587.321 656.069,587.321
656.069,587.235 655.982,587.149 655.896,587.063 655.811,586.977 655.724,586.977 655.638,586.977 655.55,586.977
655.464,586.977 655.464,586.889 655.464,586.977 655.378,586.977 655.291,586.977 655.205,586.977 655.205,587.063
655.205,586.977 655.205,586.889 655.118,586.803 655.118,586.717 655.118,586.631 655.118,586.544 655.118,586.457
655.032,586.371 655.032,586.285 655.032,586.198 654.946,586.198 654.859,585.939 654.773,585.766 654.773,585.68 654.687,585.68
654.687,585.766 654.601,585.766 654.601,585.68 654.601,585.594 654.687,585.508 654.601,585.422 654.601,585.334
654.515,585.248 654.515,585.161 654.428,585.075 654.428,584.989 654.428,584.902 654.428,584.816 654.428,584.729
654.428,584.643 654.428,584.557 654.515,584.471 654.515,584.385 654.515,584.297 654.601,584.297 654.601,584.211
654.687,584.211 654.773,584.211 654.859,584.297 654.946,584.297 655.032,584.297 655.118,584.297 655.205,584.297
655.291,584.297 655.378,584.297 655.464,584.211 655.55,584.211 655.55,584.125 655.638,584.125 655.724,584.211 655.811,584.125
655.896,584.125 655.982,584.038 656.069,584.038 656.155,584.038 656.155,583.952 656.155,583.865 656.242,583.865
656.328,583.779 656.414,583.779 656.414,583.693 656.501,583.693 656.587,583.606 656.674,583.52 656.76,583.52 656.847,583.52
656.934,583.52 657.02,583.434 657.106,583.434 657.192,583.434 657.192,583.348 657.278,583.348 657.278,583.262 657.278,583.174
657.365,583.174 657.451,583.088 657.365,583.088 657.365,583.174 657.365,583.262 657.365,583.348 657.451,583.434
657.451,583.606 657.451,583.693 657.538,583.779 657.538,583.865 657.538,583.779 657.624,583.779 657.71,583.693
657.797,583.693 657.883,583.606 657.971,583.52 658.057,583.52 658.057,583.434 658.143,583.434 658.229,583.348 658.315,583.262
658.402,583.262 658.488,583.174 658.574,583.174 658.574,583.088 658.661,583.088 658.747,583.088 658.747,583.001
658.834,583.001 658.92,583.001 658.92,582.915 658.92,582.829 659.006,582.829 659.094,582.742 659.094,582.656 659.18,582.656
659.18,582.569 659.267,582.569 659.267,582.483 659.438,582.483 659.611,582.483 659.698,582.483 659.698,582.396
659.698,582.311 659.784,582.225 659.957,581.965 659.957,581.879 659.784,581.705 659.784,581.619 660.303,581.619
660.303,581.533 660.39,581.533 660.476,581.533 660.648,581.36 660.476,581.273 660.39,581.273 660.303,581.273 660.303,581.188
660.39,580.842 660.563,580.582 660.476,580.582 660.476,580.496 660.563,580.409 661.08,580.237 661.166,580.237 661.166,580.15
661.253,580.15 661.253,580.064 661.339,580.064 661.339,579.977 661.426,579.977 661.426,579.891 661.513,579.805
661.599,579.805 661.686,579.805 661.686,579.719 661.686,579.633 661.686,579.545 661.686,579.459 661.686,579.373
661.686,579.286 661.771,579.2 661.771,579.113 661.771,579.027 661.686,579.027 661.686,578.941 661.686,578.854 661.771,578.768
661.858,578.768 661.858,578.682 661.858,578.596 661.771,578.51 661.686,578.51 661.686,578.422 661.599,578.422 661.599,578.336
661.599,578.249 661.599,578.163 661.599,578.077 661.599,577.99 661.599,577.904 661.686,577.904 661.858,577.817
661.858,577.731 661.858,577.645 661.771,577.559 661.771,577.473 661.771,577.385 662.03,577.213 662.03,577.126 662.03,577.04
661.944,577.04 661.944,576.953 661.858,576.953 661.599,576.953 661.426,576.953 661.339,576.867 661.426,576.867
661.426,576.781 661.426,576.694 661.339,576.521 661.339,576.436 661.166,576.004 661.426,575.917 661.599,575.83 661.771,575.83
661.686,575.744 661.686,575.657 661.599,575.571 661.599,575.485 661.599,575.398 661.513,575.313 661.686,575.225
661.858,575.139 661.944,574.967 662.29,574.793 662.375,574.707 662.462,574.621 662.635,574.448 662.809,574.275
662.895,574.189 662.981,574.102 663.067,573.93 663.413,573.584 663.499,573.497 663.586,573.584 663.672,573.584 663.672,573.67
663.672,573.758 663.672,573.844 663.672,573.93 663.672,574.016 663.672,574.102 663.932,573.93 663.932,574.016 664.019,574.102
664.019,574.189 664.019,574.275 664.019,574.361 664.019,574.534 664.019,574.621 664.019,574.793 664.019,575.053
664.104,575.225 664.104,575.313 664.104,575.398 664.104,575.485 664.104,575.571 664.104,575.744 664.104,575.917
664.104,576.176 664.104,576.35 664.104,576.436 664.104,576.521 664.104,576.608 664.019,576.608 664.019,576.694
663.932,576.694 663.846,576.867 663.846,577.04 663.672,577.04 663.672,577.299 663.672,577.559 663.672,577.645 663.672,577.731
663.672,577.904 663.672,577.99 663.846,577.99 663.846,578.077 663.846,578.163 663.846,578.249 663.846,578.336 663.846,578.422
663.846,578.51 663.932,578.422 663.932,578.682 663.932,578.768 664.019,579.027 664.019,579.113 663.846,579.113 663.672,579.2
663.672,579.286 663.758,579.286 663.758,579.373 663.932,579.373 664.019,579.459 664.104,579.459 664.19,579.459
664.276,579.459 664.363,579.545 664.45,579.633 664.536,579.719 664.622,579.805 664.709,579.891 664.795,579.977
664.882,579.977 664.882,580.064 664.969,580.064 664.969,580.15 665.055,580.15 665.142,580.237 665.228,580.323 665.313,580.409
665.313,580.496 665.4,580.496 665.4,580.582 665.486,580.582 665.573,580.582 665.659,580.496 665.746,580.496 665.832,580.409
665.918,580.323 666.005,580.323 666.091,580.237 666.178,580.237 666.264,580.237 666.351,580.237 666.351,580.15 666.438,580.15
666.438,580.064 666.523,580.064 666.61,579.977 666.696,579.977 666.782,579.977 666.869,579.891 667.042,579.977
667.127,579.977 667.214,579.977 667.301,579.977 667.388,579.891 667.475,579.891 667.561,579.891 667.646,579.891
667.646,579.977 667.733,579.977 667.819,579.977 667.906,579.977 667.992,579.977 668.078,579.977 668.078,579.891
668.164,579.891 668.251,579.805 668.251,579.891 668.251,579.977 668.164,579.977 668.164,580.064 668.078,580.064
668.078,580.15 668.078,580.237 668.078,580.323 667.992,580.409 667.992,580.496 667.992,580.582 667.992,580.669
668.078,580.669 668.078,580.756 668.164,580.756 668.164,580.842 668.251,580.842 668.251,580.928 668.251,581.014
668.251,581.102 668.164,581.102 668.251,581.102 668.164,581.102 668.251,581.188 668.164,581.188 668.164,581.273
668.251,581.36 668.251,581.446 668.251,581.533 668.338,581.533 668.424,581.533 668.424,581.619 668.51,581.619 668.51,581.705
668.598,581.705 668.598,581.792 668.598,581.879 668.684,581.879 668.598,581.879 668.598,581.965 668.684,581.965
668.684,582.051 668.771,582.051 668.771,582.137 668.856,582.137 668.856,582.225 668.942,582.225 668.856,582.225
668.856,582.311 668.856,582.396 668.856,582.483 668.771,582.483 668.684,582.569 668.598,582.656 668.598,582.742
668.598,582.829 668.51,582.829 668.51,582.915 668.51,583.001 668.51,583.088 668.424,583.174 668.424,583.262 668.338,583.262
668.251,583.348 668.164,583.434 668.078,583.434 668.078,583.52 667.992,583.52 667.992,583.606 667.906,583.606 667.906,583.693
667.906,583.779 667.819,583.779 667.819,583.865 667.733,583.952 667.733,584.038 667.733,584.125 667.733,584.211
667.733,584.297 667.733,584.385 667.733,584.471 667.646,584.557 667.646,584.643 667.561,584.643 667.561,584.729
667.475,584.729 667.388,584.729 667.388,584.816 667.301,584.816 667.301,584.902 667.214,584.902 667.214,584.989
667.127,584.989 667.042,585.075 667.042,585.161 667.042,585.248 666.955,585.334 666.955,585.422 666.869,585.508
666.869,585.594 666.869,585.68 666.869,585.766 666.869,585.854 666.782,585.854 666.782,585.939 666.782,586.025
666.696,586.025 666.696,586.112 666.61,586.112 666.61,586.198 666.61,586.285 666.523,586.285 666.523,586.371 666.438,586.371
666.438,586.457 666.351,586.457 666.351,586.544 666.351,586.631 666.264,586.631 666.264,586.717 666.178,586.803
666.091,586.889 666.091,586.977 666.091,587.063 666.005,587.063 666.005,587.149 666.005,587.235 666.005,587.321
666.005,587.408 665.918,587.408 665.918,587.494 665.918,587.581 665.832,587.667 665.832,587.754 665.832,587.84
665.832,587.926 665.746,588.014 665.746,588.1 665.832,588.1 665.832,588.186 665.746,588.271 665.746,588.358 665.746,588.445
665.746,588.531 665.659,588.617 665.659,588.704 665.659,588.79 665.573,588.877 665.573,588.963 665.573,589.049
665.573,589.137 665.486,589.223 665.486,589.309 665.486,589.568 665.4,589.654 665.4,589.741 665.4,589.827 665.4,589.913
665.4,590 665.4,590.086 665.4,590.174 665.4,590.26 665.4,590.432 665.313,590.518 665.313,590.605 665.142,590.605
664.969,590.605 664.795,590.518 664.709,590.518 664.536,590.432 664.363,590.432 664.276,590.432 664.19,590.346 664.019,590.26
663.758,590.086 663.586,590.086 663.499,590 663.326,589.827 663.154,589.827 663.067,589.741 662.981,589.654 662.809,589.654
662.723,589.568 662.462,589.481 662.29,589.481 662.203,589.481 662.117,589.481 661.858,589.481 661.858,589.395
661.771,589.395 661.771,589.481 661.686,589.481 661.599,589.481 661.426,589.481 661.339,589.481 661.253,589.481
661.253,589.568 661.166,589.568 661.08,589.568 660.994,589.654 660.907,589.654 660.821,589.741 660.734,589.741
660.648,589.827 660.563,589.913 660.476,589.913 660.39,589.913 660.303,590 660.216,590 660.13,590 659.957,590.086
659.87,590.086 659.784,590.174 659.698,590.174 659.611,590.174 659.525,590.26 659.438,590.26 659.353,590.26 659.267,590.26
659.18,590.26 659.006,590.26 658.92,590.26 658.747,590.26 658.574,590.26 658.488,590.26 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
638.098,590.95 638.098,591.036 638.098,591.123 638.012,591.123 637.925,591.123 637.839,591.123 637.839,591.209
637.752,591.209 637.752,591.123 637.752,591.036 637.666,591.036 637.666,591.123 637.58,591.123 637.493,591.123
637.493,591.209 637.407,591.297 637.407,591.383 637.407,591.469 637.32,591.555 637.32,591.641 637.234,591.729 637.148,591.729
637.061,591.729 636.975,591.641 636.888,591.641 636.802,591.641 636.716,591.641 636.629,591.641 636.543,591.641
636.456,591.641 636.37,591.555 636.284,591.555 636.197,591.555 636.111,591.555 636.024,591.555 635.938,591.555
635.852,591.555 635.852,591.469 635.765,591.469 635.679,591.469 635.592,591.383 635.506,591.383 635.42,591.383
635.333,591.383 635.247,591.297 635.16,591.297 635.074,591.297 634.988,591.297 634.901,591.297 634.728,591.297
634.556,591.297 634.469,591.297 634.383,591.297 634.469,591.297 634.383,591.297 634.383,591.383 634.383,591.469
634.383,591.555 634.383,591.469 634.383,591.383 634.383,591.297 634.296,591.297 634.21,591.297 634.124,591.297
634.037,591.297 633.951,591.297 633.864,591.297 633.778,591.297 633.692,591.297 633.605,591.297 633.519,591.297
633.519,591.123 633.519,591.036 633.519,590.95 633.519,590.864 633.432,590.864 633.432,590.777 633.432,590.691
633.519,590.691 633.519,590.604 633.432,590.604 633.519,590.519 633.605,590.519 633.519,590.346 633.519,590.26
633.432,590.172 633.432,590.086 633.346,589.913 633.26,589.827 633.26,589.74 633.346,589.74 633.432,589.74 633.519,589.74
633.605,589.74 633.778,589.74 633.864,589.74 633.951,589.74 634.037,589.74 634.124,589.74 634.124,589.654 634.21,589.654
634.296,589.568 634.469,589.481 634.642,589.396 634.728,589.396 634.728,589.309 634.815,589.309 634.901,589.309
634.901,589.223 634.988,589.223 635.074,589.223 635.16,589.223 635.16,589.137 635.16,589.049 635.16,588.963 635.16,588.877
635.074,588.877 635.074,588.791 635.247,588.704 635.247,588.791 635.333,588.791 635.42,588.704 635.506,588.877
635.506,588.963 635.506,589.049 635.592,589.049 635.679,589.049 635.765,589.049 635.765,589.137 635.852,589.137
635.938,589.137 636.024,589.137 636.024,589.309 636.111,589.309 636.284,589.396 636.284,589.481 636.456,589.481
636.543,589.396 636.543,589.309 636.629,589.223 636.802,589.309 636.888,589.309 636.975,589.223 636.975,589.137
637.061,589.049 637.061,588.877 637.148,588.877 637.234,588.963 637.407,588.963 637.32,589.049 637.32,589.137 637.32,589.223
637.32,589.396 637.32,589.481 637.407,589.481 637.493,589.568 637.407,589.568 637.493,589.568 637.493,589.654 637.493,589.74
637.58,589.913 637.666,590 637.839,590.172 637.925,590.26 637.925,590.346 638.012,590.346 638.012,590.432 638.012,590.519
638.012,590.604 638.098,590.691 638.098,590.777 638.098,590.864 638.098,590.95 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#D1324B" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
634.383,557.082 634.469,557.082 634.556,557.168 634.642,557.168 634.814,557.168 634.988,557.168 635.074,557.168
635.161,557.168 635.247,557.168 635.333,557.168 635.42,557.168 635.506,557.082 635.593,557.082 635.679,557.082
635.765,557.082 635.938,557.168 636.024,557.168 636.11,557.255 636.197,557.255 636.284,557.255 636.37,557.341 636.457,557.341
636.629,557.428 636.716,557.514 636.802,557.514 636.889,557.514 636.889,557.6 636.975,557.6 637.061,557.688 637.233,557.773
637.32,557.859 637.407,557.859 637.493,557.945 637.58,558.032 637.666,558.032 637.666,558.119 637.753,558.119 637.839,558.119
637.839,558.205 637.925,558.205 638.012,558.205 638.098,558.292 638.185,558.292 638.271,558.378 638.356,558.378
638.529,558.378 638.617,558.378 638.703,558.378 638.789,558.378 638.876,558.378 639.049,558.378 639.135,558.378
639.221,558.378 639.308,558.378 639.308,558.292 639.394,558.292 639.48,558.292 639.566,558.292 639.652,558.292 639.74,558.292
639.826,558.205 639.913,558.205 639.913,558.119 639.999,558.119 640.085,558.119 640.085,558.205 640.085,558.119
640.172,558.205 640.258,558.205 640.258,558.292 640.345,558.292 640.517,558.292 640.604,558.292 640.689,558.292
640.776,558.292 640.949,558.292 641.122,558.378 641.468,558.378 641.727,558.378 641.813,558.378 641.899,558.378
642.159,558.378 642.245,558.378 642.332,558.378 642.505,558.378 642.591,558.464 642.677,558.464 642.764,558.464
642.85,558.464 642.937,558.464 642.937,558.551 643.022,558.551 643.108,558.551 643.195,558.551 643.369,558.551
643.455,558.637 643.541,558.637 643.714,558.637 643.801,558.637 643.973,558.637 644.06,558.637 644.146,558.637
644.404,558.637 644.492,558.637 644.492,558.811 644.492,558.896 644.578,558.982 644.578,559.068 644.578,559.156
644.578,559.328 644.578,559.415 644.665,559.415 644.665,559.501 644.578,559.501 644.578,559.588 644.578,559.674
644.578,559.76 644.578,559.848 644.578,560.02 644.492,560.365 644.492,560.452 644.492,560.538 644.578,560.624 644.578,560.711
644.665,560.797 644.665,560.884 644.578,560.884 644.578,560.97 644.578,561.057 644.578,561.143 644.578,561.229
644.578,561.316 644.578,561.575 644.578,561.834 644.578,561.92 644.578,562.007 644.665,562.093 644.751,562.18 644.751,562.266
644.837,562.266 644.837,562.352 644.837,562.439 644.837,562.525 644.837,562.611 644.751,562.957 644.751,563.216
644.665,563.563 644.578,563.734 644.578,563.908 644.578,563.994 644.578,564.08 644.578,564.167 644.578,564.34 644.578,564.426
644.578,564.512 644.578,564.686 644.578,564.943 644.578,565.031 644.578,565.204 644.665,565.117 644.751,565.117
644.751,565.204 644.837,565.117 644.924,565.117 645.01,565.117 645.096,565.117 645.096,565.204 645.096,565.29 645.096,565.376
645.01,565.376 645.01,565.463 645.01,565.549 645.01,565.463 645.01,565.549 645.01,565.636 645.096,565.723 645.183,565.723
645.269,565.723 645.355,565.723 645.441,565.636 645.529,565.723 645.529,565.809 645.615,565.809 645.701,565.723
645.788,565.723 645.788,565.636 645.874,565.636 645.961,565.636 645.961,565.723 646.046,565.809 646.046,565.895
646.046,565.98 646.133,565.98 646.22,565.98 646.306,565.98 646.393,565.98 646.393,566.068 646.564,565.98 646.651,565.98
646.738,565.98 646.825,565.98 646.911,565.98 646.997,565.98 647.083,566.068 647.17,565.98 647.17,566.068 647.257,566.068
647.343,566.068 647.429,566.068 647.516,566.068 647.602,566.154 647.688,566.154 647.774,566.154 647.86,566.154 647.947,566.24
648.034,566.24 648.121,566.24 648.293,566.24 648.38,566.154 648.553,566.068 648.725,566.068 648.725,566.154 648.725,566.24
648.725,566.327 648.725,566.5 648.725,566.672 648.897,566.672 648.983,566.759 648.983,566.845 648.983,566.932 648.983,567.018
648.983,567.104 649.069,567.191 649.069,567.277 649.069,567.363 648.983,567.45 648.983,567.623 648.897,567.709
648.897,567.795 648.897,567.882 648.897,567.968 648.725,568.229 648.639,568.4 648.812,568.486 648.897,568.573 648.983,568.573
648.983,568.66 649.157,568.745 649.244,568.832 649.244,568.919 649.33,568.919 649.417,568.919 649.417,569.005 649.503,569.005
649.503,569.092 649.589,569.178 649.589,569.264 649.762,569.352 649.676,569.352 649.849,569.438 649.934,569.523
649.934,569.609 650.021,569.609 650.107,569.782 650.193,569.869 650.281,570.042 650.367,570.042 650.367,570.128
650.453,570.128 650.453,570.215 650.54,570.215 650.54,570.301 650.54,570.389 650.626,570.389 650.626,570.475 650.885,570.646
650.885,570.732 650.971,570.732 650.971,570.82 650.971,570.732 651.058,570.732 651.058,570.646 651.145,570.646 651.23,570.561
651.316,570.561 651.404,570.561 651.404,570.475 651.49,570.475 651.577,570.475 651.663,570.475 651.749,570.475
651.749,570.389 651.922,570.389 652.008,570.389 652.095,570.301 652.181,570.301 652.268,570.301 652.354,570.215
652.44,570.215 652.44,570.301 652.526,570.301 652.526,570.389 652.526,570.475 652.526,570.561 652.44,570.646 652.354,570.646
652.354,570.561 652.268,570.561 652.181,570.561 652.095,570.646 652.008,570.646 652.008,570.732 651.922,570.732
651.922,570.82 651.835,570.906 651.835,570.992 651.835,571.079 651.835,571.165 651.835,571.252 651.835,571.165
651.922,571.165 652.095,571.252 652.181,571.338 652.268,571.338 652.268,571.424 652.354,571.424 652.354,571.511
652.44,571.511 652.526,571.598 652.786,571.77 652.872,571.77 652.958,571.855 653.045,571.943 653.132,572.029 653.218,572.116
653.305,572.116 653.391,572.202 653.477,572.202 653.477,572.288 653.563,572.375 653.649,572.375 653.735,572.288
653.822,572.375 653.909,572.461 653.996,572.461 654.082,572.461 654.169,572.547 654.255,572.547 654.341,572.547
654.428,572.633 654.514,572.633 654.601,572.72 654.686,572.72 654.772,572.807 654.858,572.72 654.945,572.72 655.033,572.633
655.205,572.461 655.292,572.461 655.378,572.375 655.465,572.288 655.551,572.288 655.637,572.288 655.723,572.288
655.81,572.375 655.896,572.375 655.982,572.375 656.068,572.375 656.156,572.375 656.156,572.461 656.242,572.461
656.242,572.547 656.329,572.547 656.415,572.72 656.501,572.72 656.674,572.72 656.674,572.633 656.76,572.547 656.846,572.547
656.933,572.461 657.105,572.461 657.105,572.375 657.02,572.202 657.02,572.029 657.105,571.77 657.192,571.77 657.279,571.684
657.279,571.598 657.365,571.511 657.279,571.511 657.279,571.424 657.279,571.338 657.192,571.252 657.192,571.165
657.105,571.079 657.02,570.992 657.105,570.992 657.192,570.906 657.365,570.82 657.452,570.82 657.538,570.732 657.624,570.732
657.71,570.646 657.883,570.992 657.97,571.165 658.143,571.079 658.315,570.992 658.401,571.165 658.488,571.165 658.574,571.079
658.661,571.079 658.747,570.992 658.834,570.992 659.093,570.906 659.524,570.561 659.784,570.389 659.87,570.301 660.13,570.561
660.217,570.561 660.303,570.561 660.303,570.475 660.389,570.475 660.475,570.389 660.562,570.389 660.562,570.301
660.647,570.215 660.733,570.215 660.733,570.128 660.82,570.128 660.82,570.042 660.908,569.956 660.908,569.869 660.994,569.782
661.081,569.695 661.167,569.695 661.167,569.609 661.253,569.609 661.34,569.523 661.34,569.438 661.426,569.352 661.512,569.352
661.598,569.264 661.685,569.264 661.771,569.178 661.944,569.092 662.031,569.005 662.117,569.005 662.29,569.005
662.376,569.005 662.549,569.005 663.154,569.005 663.672,569.005 663.758,569.005 663.932,569.005 664.018,569.005
664.104,569.005 664.19,569.005 664.276,569.005 664.363,568.919 664.45,568.919 664.536,569.005 664.709,569.005 665.055,569.005
665.227,569.092 665.313,569.005 665.313,569.092 665.399,569.092 665.485,569.092 665.572,569.092 665.659,569.092
665.833,569.178 665.919,569.178 665.919,569.264 666.005,569.264 666.092,569.178 666.178,569.178 666.35,569.092
666.522,569.005 666.609,568.919 666.783,568.832 666.956,568.745 667.042,568.745 667.128,568.745 667.214,568.66 667.301,568.66
667.387,568.573 667.387,568.486 667.387,568.4 667.387,568.486 667.387,568.4 667.474,568.4 667.56,568.4 667.646,568.4
667.646,568.486 667.732,568.486 667.819,568.486 667.819,568.573 667.906,568.573 667.993,568.66 667.993,568.573
667.993,568.486 667.993,568.4 668.165,568.486 668.251,568.486 668.338,568.486 668.338,568.573 668.424,568.66 668.424,568.573
668.424,568.486 668.51,568.486 668.597,568.486 668.683,568.4 668.77,568.4 668.856,568.4 668.942,568.4 669.029,568.4
669.115,568.4 669.288,568.4 669.461,568.486 669.547,568.486 669.721,568.486 669.807,568.486 669.893,568.486 669.979,568.486
670.065,568.486 670.065,568.4 670.238,568.4 670.325,568.314 670.411,568.314 670.411,568.229 670.498,568.229 670.584,568.141
670.67,568.141 670.757,568.141 670.844,568.141 670.93,568.141 671.016,568.141 671.102,568.055 671.016,568.055 671.102,568.055
671.102,567.968 671.188,567.968 671.274,567.968 671.274,567.882 671.361,567.882 671.447,567.795 671.534,567.795
671.621,567.709 671.708,567.623 671.794,567.623 671.881,567.536 671.966,567.536 672.053,567.536 672.226,567.45
672.312,567.363 672.397,567.191 672.397,567.104 672.484,567.191 672.57,567.277 672.658,567.363 672.745,567.45 672.831,567.45
672.831,567.536 672.917,567.536 673.09,567.623 673.09,567.709 673.176,567.795 673.262,567.882 673.349,567.882 673.435,567.968
673.521,568.055 673.607,568.141 673.607,568.229 673.694,568.229 673.781,568.314 673.867,568.4 673.954,568.486 674.04,568.486
674.04,568.573 674.04,568.486 674.126,568.573 674.213,568.66 674.299,568.745 674.386,568.745 674.472,568.832 674.558,568.832
674.645,568.919 674.731,569.005 674.904,569.092 674.99,569.178 675.077,569.178 675.163,569.178 675.163,569.264 675.25,569.264
675.25,569.352 675.336,569.352 675.422,569.352 675.509,569.438 675.596,569.523 675.682,569.523 675.682,569.609
675.768,569.609 675.854,569.695 675.94,569.695 675.94,569.782 676.026,569.869 676.113,569.956 676.2,570.042 676.286,570.128
676.459,570.215 676.459,570.301 676.546,570.389 676.546,570.475 676.546,570.561 676.633,570.561 676.633,570.646
676.718,570.732 676.805,570.82 676.805,570.906 676.891,570.992 676.978,571.079 677.063,571.165 677.149,571.252
677.236,571.252 677.322,571.338 677.322,571.424 677.322,571.511 677.149,571.598 677.063,571.598 676.978,571.598
676.891,571.684 676.805,571.684 676.718,571.77 676.633,571.77 676.633,571.855 676.633,571.943 676.633,572.029 676.633,572.116
676.546,572.116 676.459,572.116 676.546,572.116 676.459,572.116 676.459,572.202 676.459,572.288 676.373,572.288
676.459,572.288 676.459,572.375 676.373,572.375 676.373,572.461 676.286,572.461 676.286,572.547 676.2,572.461 676.2,572.547
676.113,572.547 676.113,572.633 676.2,572.633 676.113,572.633 676.113,572.72 676.2,572.72 676.2,572.807 676.286,572.807
676.373,572.807 676.459,572.807 676.633,572.807 676.805,572.893 676.891,572.893 676.978,572.893 677.063,572.98 677.149,572.98
677.236,572.98 677.322,572.98 677.41,573.066 677.496,573.066 677.669,573.066 677.755,573.066 677.842,573.066 677.928,573.066
678.014,573.066 678.014,573.152 678.101,573.238 678.101,573.325 678.101,573.412 678.101,573.497 678.101,573.584
678.014,573.67 678.014,573.757 678.014,573.844 678.014,573.93 678.014,574.016 678.014,574.104 678.014,574.189 678.014,574.275
678.101,574.448 678.101,574.534 678.101,574.621 678.101,574.707 678.187,574.707 678.187,574.794 678.187,574.88 678.273,574.88
678.273,574.967 678.273,575.053 678.273,575.141 678.359,575.141 678.359,575.227 678.359,575.313 678.445,575.398
678.533,575.398 678.533,575.484 678.62,575.484 678.62,575.57 678.706,575.657 678.706,575.744 678.792,575.744 678.792,575.831
678.878,575.917 678.878,576.004 679.051,576.09 679.051,576.176 679.138,576.264 679.138,576.35 679.224,576.436 679.31,576.521
679.396,576.607 679.396,576.695 679.482,576.781 679.482,576.868 679.569,576.954 679.656,577.04 679.656,577.127
679.742,577.213 679.742,577.299 679.829,577.473 679.829,577.559 679.915,577.645 679.915,577.818 680.002,577.818
680.088,577.818 680.088,577.904 680.174,577.904 680.174,577.991 680.174,578.077 680.174,578.164 680.174,578.249
680.174,578.336 680.261,578.422 680.261,578.509 680.261,578.595 680.347,578.682 680.347,578.768 680.347,578.855
680.434,578.941 680.434,579.027 680.434,579.113 680.521,579.2 680.521,579.286 680.605,579.459 680.605,579.545 680.605,579.632
680.866,579.632 681.038,579.545 681.125,579.545 681.298,579.545 681.384,579.545 681.557,579.545 681.729,579.459
681.815,579.459 681.901,579.459 682.075,579.459 682.162,579.373 682.334,579.373 682.507,579.373 682.594,579.373
682.938,579.286 683.285,579.286 683.285,579.373 683.371,579.373 683.371,579.459 683.371,579.545 683.371,579.632
683.458,579.893 683.458,579.979 683.458,580.064 683.544,580.15 683.544,580.236 683.544,580.323 683.544,580.409
683.544,580.496 683.544,580.582 683.63,580.669 683.63,580.756 683.63,580.842 683.717,580.756 683.803,580.756 683.803,580.842
683.89,580.928 683.976,580.928 683.976,581.016 684.062,581.102 684.062,581.188 684.062,581.273 684.148,581.273
684.234,581.359 684.322,581.359 684.408,581.359 684.408,581.445 684.408,581.533 684.408,581.62 684.494,581.706
684.581,581.706 684.667,581.62 684.754,581.62 684.84,581.62 684.84,581.706 684.84,581.792 684.926,581.792 684.926,581.879
685.013,581.879 685.013,581.965 685.099,581.965 685.099,582.051 685.186,582.051 685.186,582.137 685.186,582.311
685.186,582.396 685.186,582.482 685.186,582.568 685.271,582.568 685.271,582.656 685.271,582.743 685.357,582.829
685.271,582.916 685.271,583.001 685.357,583.001 685.444,583.001 685.531,583.001 685.618,583.001 685.618,583.088
685.704,583.261 685.79,583.348 685.877,583.52 685.877,583.607 685.877,583.779 685.877,583.866 685.963,583.952 685.79,584.038
685.618,584.038 685.618,583.952 685.531,583.952 685.444,583.952 685.357,583.952 685.186,583.952 685.099,583.952
685.013,583.952 684.926,583.952 684.84,583.952 684.667,584.038 684.581,584.038 684.494,584.038 684.322,584.038
684.234,584.038 683.976,584.125 683.89,584.125 683.803,584.125 683.717,584.125 683.63,584.125 683.544,584.211 683.458,584.211
683.371,584.211 683.285,584.211 683.197,584.211 683.197,584.297 683.111,584.297 683.025,584.297 682.853,584.297
682.766,584.384 682.68,584.384 682.68,584.297 682.594,584.384 682.421,584.384 682.334,584.384 682.248,584.384 682.075,584.384
681.988,584.47 682.075,584.557 681.815,584.645 681.643,584.645 681.643,584.816 681.643,584.988 681.643,585.075
681.384,585.161 681.211,585.161 681.125,585.161 681.038,585.248 680.952,585.248 680.866,585.248 680.779,585.248
680.692,585.248 680.605,585.248 680.521,585.248 680.434,585.248 680.434,585.334 680.347,585.334 680.261,585.334
680.174,585.334 680.088,585.334 680.002,585.421 679.915,585.421 679.829,585.421 679.656,585.421 679.569,585.507
679.396,585.507 679.31,585.594 679.138,585.594 679.051,585.594 678.965,585.594 678.878,585.594 678.792,585.594
678.706,585.594 678.533,585.594 678.359,585.68 678.273,585.68 678.187,585.768 678.101,585.768 678.014,585.768 677.928,585.768
677.842,585.854 677.928,586.285 677.928,586.457 677.928,586.631 677.928,586.717 677.928,587.063 677.928,587.148
677.928,587.234 678.014,587.234 678.101,587.234 678.101,587.408 678.101,587.495 678.101,587.581 678.014,587.581
677.928,587.581 677.842,587.753 677.842,587.84 677.755,587.926 677.755,588.014 677.755,588.1 677.755,588.357 677.755,588.445
677.755,588.532 677.669,588.532 677.583,588.532 677.496,588.532 677.41,588.445 677.322,588.445 677.236,588.445
677.236,588.532 677.149,588.532 677.063,588.532 676.978,588.532 676.891,588.532 676.891,588.618 676.805,588.618
676.718,588.532 676.718,588.618 676.718,588.532 676.633,588.532 676.633,588.445 676.546,588.357 676.546,588.271
676.546,588.186 676.546,588.1 676.546,588.014 676.546,587.926 676.459,587.84 676.459,587.753 676.459,587.668 676.459,587.581
676.373,587.495 676.373,587.408 676.373,587.32 676.373,587.234 676.373,587.148 676.286,587.148 676.286,587.063
676.286,586.977 676.286,586.889 676.286,586.803 676.286,586.717 676.2,586.631 676.2,586.544 676.2,586.457 676.026,586.544
675.94,586.544 675.94,586.631 675.94,586.803 675.854,586.717 675.768,586.803 675.768,586.889 675.682,586.889 675.682,586.977
675.768,587.148 675.768,587.234 675.768,587.408 675.682,587.408 675.682,587.495 675.596,587.495 675.509,587.495 675.25,587.32
675.25,587.408 675.25,587.495 675.163,587.581 675.163,587.668 675.077,587.668 675.077,587.753 675.077,587.84 674.99,587.84
674.99,587.926 675.077,588.014 675.163,588.014 675.25,588.014 675.336,588.014 675.422,588.014 675.422,588.1 675.509,588.1 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#D1324B" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
675.509,588.1 675.509,588.186 675.423,588.271 675.509,588.271 675.509,588.357 675.595,588.357 675.595,588.445 675.509,588.445
675.423,588.531 675.336,588.445 675.077,588.357 674.991,588.357 674.73,588.357 674.645,588.357 674.73,588.617 674.818,588.704
674.904,588.963 674.904,589.049 674.991,589.137 675.077,589.223 675.077,589.309 675.163,589.395 675.077,589.395
675.077,589.48 674.991,589.48 674.991,589.568 675.077,589.654 675.077,589.741 675.077,589.827 675.077,589.913 675.077,590
675.163,590 675.25,590.086 675.25,590.173 675.25,590.26 675.25,590.346 675.25,590.432 675.25,590.518 675.163,590.518
675.077,590.518 674.991,590.518 675.077,590.518 674.991,590.605 675.077,590.605 674.991,590.605 674.904,590.605
674.73,590.691 674.559,590.691 674.472,590.691 674.386,590.691 674.299,590.691 674.299,590.777 674.213,590.777
674.127,590.777 674.04,590.777 673.954,590.777 673.867,590.777 673.867,590.691 673.781,590.777 673.695,590.777
673.521,590.777 673.435,590.777 673.435,590.95 673.435,591.037 673.435,591.123 673.435,591.209 673.521,591.209
673.521,591.296 673.607,591.382 673.607,591.469 673.607,591.555 673.695,591.641 673.695,591.729 673.781,591.814 673.781,591.9
673.867,592.073 673.867,592.16 673.781,592.16 673.695,592.246 673.607,592.246 673.607,592.333 673.521,592.333 673.435,592.419
673.435,592.505 673.349,592.505 673.263,592.505 673.176,592.505 673.176,592.419 673.09,592.419 673.09,592.505 673.003,592.505
672.917,592.505 672.917,592.419 672.917,592.505 672.831,592.505 672.744,592.505 672.658,592.505 672.658,592.592
672.571,592.592 672.484,592.592 672.484,592.678 672.398,592.678 672.312,592.766 672.226,592.766 672.226,592.678
672.226,592.766 672.139,592.766 672.053,592.766 672.053,592.852 672.053,592.938 671.967,592.938 671.967,593.023
671.88,593.109 671.88,593.197 671.88,593.283 671.88,593.369 671.88,593.456 671.88,593.542 671.794,593.542 671.794,593.629
671.794,593.715 671.794,593.801 671.794,593.889 671.707,593.889 671.621,593.975 671.621,594.061 671.621,594.32
671.621,594.493 671.621,594.752 671.707,594.752 671.794,594.752 671.88,594.752 672.053,594.752 672.139,594.838
672.312,594.838 672.398,594.838 672.398,594.926 672.484,594.926 672.658,595.012 672.831,595.098 673.09,595.27 673.263,595.357
673.09,595.616 672.917,595.789 672.831,595.875 672.658,595.789 672.571,595.789 672.484,595.875 672.398,595.875
672.398,595.961 672.398,596.048 672.398,596.135 672.484,596.135 672.484,596.221 672.484,596.307 672.484,596.393
672.398,596.48 672.312,596.48 672.226,596.566 672.053,596.653 671.967,596.653 671.967,596.739 671.88,596.825 671.88,596.912
671.88,597.085 671.88,597.171 671.794,597.257 671.794,597.344 671.707,597.344 671.707,597.43 671.621,597.43 671.621,597.518
671.535,597.518 671.535,597.604 671.621,597.775 671.707,597.775 671.707,597.862 671.794,597.949 671.88,597.949 671.88,598.035
671.88,598.121 671.88,598.208 671.88,598.381 671.794,598.467 671.794,598.553 671.794,598.641 671.794,598.727 671.794,598.898
671.794,598.984 671.794,599.072 671.794,599.158 671.794,599.245 671.707,599.245 671.535,599.331 671.448,599.417
671.448,599.504 671.362,599.504 671.275,599.59 671.275,599.678 671.188,599.678 671.103,599.678 671.016,599.85 671.016,599.936
670.93,599.936 670.93,600.021 670.93,600.109 671.016,600.109 670.93,600.195 670.93,600.281 670.93,600.368 670.93,600.454
671.016,600.454 671.103,600.454 671.103,600.541 671.016,600.627 671.016,600.713 671.016,600.801 670.93,600.801
670.843,600.801 670.757,600.887 670.757,600.973 670.671,600.973 670.671,601.059 670.584,601.059 670.584,601.145
670.498,601.145 670.498,601.232 670.411,601.232 670.325,601.232 670.239,601.232 670.152,601.232 670.152,601.145
670.152,601.232 670.065,601.232 669.979,601.232 669.979,601.318 669.893,601.318 669.893,601.232 669.893,601.318
669.807,601.318 669.72,601.405 669.72,601.491 669.634,601.491 669.547,601.837 669.288,601.75 669.288,601.923 669.202,601.837
669.202,601.923 669.115,602.182 669.202,602.182 669.115,602.27 669.029,602.355 668.943,602.441 668.943,602.528 668.77,602.614
668.683,602.701 668.597,602.701 668.511,602.701 668.424,602.787 668.424,602.873 668.338,602.873 668.338,602.96 668.251,602.96
668.251,602.873 668.165,602.873 668.079,602.96 667.906,603.133 667.819,603.219 667.732,603.133 667.732,603.046
667.646,603.046 667.56,603.046 667.56,602.96 667.474,602.96 667.474,603.046 667.387,603.046 667.387,603.133 667.301,603.219
667.301,603.305 667.215,603.305 667.215,603.393 667.128,603.65 667.128,603.737 667.042,603.824 667.042,603.997
667.042,604.083 666.955,604.083 666.955,604.169 666.955,604.256 666.869,604.256 666.869,604.342 666.869,604.43 666.783,604.43
666.783,604.516 666.783,604.602 666.783,604.688 666.783,604.773 666.783,605.033 666.783,605.12 666.783,605.206
666.696,605.206 666.783,605.206 666.783,605.379 666.783,605.465 666.696,605.379 666.609,605.465 666.609,605.639
666.522,605.725 666.437,605.725 666.437,605.639 666.351,605.639 666.264,605.639 666.178,605.553 666.091,605.553
666.091,605.639 666.005,605.639 666.005,605.553 665.919,605.553 665.919,605.465 665.832,605.465 665.746,605.465
665.746,605.379 665.659,605.379 665.573,605.379 665.487,605.465 665.487,605.553 665.487,605.639 665.487,605.725 665.4,605.811
665.4,605.896 665.313,605.984 665.313,606.157 665.313,606.243 665.227,606.329 665.227,606.416 665.227,606.502 665.313,606.589
665.313,606.676 665.313,606.762 665.313,606.848 665.227,607.021 665.227,607.107 665.141,607.193 665.055,607.28
665.055,607.366 665.141,607.453 665.227,607.539 665.313,607.539 665.313,607.625 665.4,607.625 665.487,607.712 665.4,607.798
665.313,607.885 665.227,607.885 665.141,607.885 665.055,607.885 665.055,608.057 665.055,608.23 665.055,608.316
665.055,608.403 665.055,608.489 664.968,608.489 664.968,608.576 664.882,608.662 664.882,608.749 664.882,608.835
664.882,608.921 664.882,609.008 665.141,609.008 665.227,609.094 665.4,609.094 665.4,609.182 665.313,609.182 665.313,609.268
665.313,609.439 665.313,609.525 665.227,609.525 665.141,609.525 665.055,609.525 664.968,609.525 664.882,609.525
664.882,609.613 664.795,609.613 664.795,609.699 664.882,609.699 664.968,609.785 665.055,609.872 665.055,609.958
665.141,609.958 665.227,609.958 665.227,610.045 665.313,610.045 665.4,610.131 665.4,610.217 665.487,610.217 665.487,610.305
665.573,610.305 665.573,610.391 665.573,610.477 665.659,610.477 665.659,610.563 665.659,610.648 665.746,610.648
665.746,610.736 665.746,610.822 665.832,610.822 665.832,610.909 665.832,610.995 665.919,611.081 665.919,611.168
665.919,611.254 665.919,611.341 665.919,611.428 665.919,611.514 665.919,611.6 666.005,611.6 666.005,611.686 666.005,611.773
666.091,611.859 666.091,611.945 666.091,612.032 666.178,612.032 666.178,612.118 666.178,612.205 666.264,612.291
666.351,612.377 666.351,612.464 666.437,612.464 666.437,612.551 666.522,612.551 666.437,612.637 666.351,612.637
666.264,612.637 666.178,612.637 666.091,612.637 666.005,612.637 665.919,612.637 665.832,612.637 665.746,612.637
665.659,612.637 665.573,612.637 665.487,612.637 665.4,612.637 665.313,612.637 665.227,612.637 665.141,612.637 665.055,612.637
664.882,612.637 664.795,612.551 664.795,612.637 664.795,612.723 664.882,612.809 664.968,612.896 665.055,612.896
665.055,612.982 664.968,613.068 664.968,613.155 664.968,613.241 664.882,613.328 664.968,613.414 664.968,613.501
664.968,613.586 664.968,613.673 665.055,613.76 665.141,613.76 665.141,613.846 665.055,613.934 665.055,614.02 665.055,614.105
665.055,614.191 665.055,614.278 665.141,614.278 665.141,614.365 665.141,614.451 665.141,614.537 665.141,614.71
665.141,614.797 665.055,614.797 665.055,614.883 665.055,614.969 665.141,614.969 665.227,614.969 665.227,615.057
665.227,615.143 665.313,615.229 665.4,615.229 665.4,615.314 665.487,615.314 665.487,615.4 665.487,615.487 665.487,615.574
665.487,615.661 665.487,615.747 665.487,615.833 665.487,615.92 665.4,615.833 665.313,615.833 665.313,615.92 665.227,616.006
665.141,616.18 665.227,616.352 665.227,616.438 665.313,616.438 665.227,616.87 665.313,616.87 665.4,616.957 665.4,617.043
665.4,617.216 665.313,617.216 665.227,617.129 665.141,617.043 665.055,617.129 665.055,617.216 665.055,617.303 664.882,617.475
664.968,617.561 664.968,617.648 664.882,617.821 664.795,617.993 664.709,618.08 664.623,618.253 664.709,618.338
664.623,618.338 664.623,618.426 664.623,618.512 664.536,618.598 664.536,618.686 664.623,618.686 664.709,618.686
664.709,618.771 664.709,618.857 664.623,618.857 664.623,618.943 664.623,619.03 664.623,619.117 664.709,619.117
664.795,619.117 664.709,619.289 664.709,619.549 664.709,619.635 664.623,619.635 664.623,619.721 664.536,619.721
664.536,619.809 664.536,619.895 664.536,619.98 664.536,620.066 664.536,620.153 664.45,620.153 664.45,620.239 664.45,620.326
664.45,620.412 664.45,620.499 664.45,620.585 664.19,620.672 664.277,620.758 664.19,620.846 664.104,620.846 664.104,620.932
664.018,621.018 663.931,621.189 664.018,621.189 664.018,621.275 663.931,621.275 663.931,621.362 663.845,621.362
663.845,621.449 663.759,621.449 663.672,621.449 663.672,621.536 663.672,621.622 663.759,621.622 663.759,621.709
663.759,621.795 663.672,621.795 663.672,621.709 663.586,621.709 663.499,621.709 663.413,621.709 663.413,621.622
663.327,621.622 663.24,621.622 663.154,621.622 663.066,621.622 662.98,621.622 662.895,621.622 662.808,621.622 662.635,621.536
662.549,621.536 662.463,621.536 662.376,621.536 662.29,621.536 662.203,621.622 662.203,621.709 662.117,621.709
662.031,621.795 661.944,621.795 661.857,621.881 661.771,621.881 661.685,621.881 661.599,621.881 661.512,621.969
661.512,622.055 661.512,621.969 661.512,622.055 661.426,622.055 661.426,622.141 661.426,622.227 661.426,622.398
661.426,622.573 661.426,622.745 661.512,622.745 661.599,622.659 661.685,622.918 661.599,623.005 661.685,623.178
661.685,623.264 661.771,623.438 661.771,623.523 661.857,623.696 661.944,623.782 662.031,623.869 661.944,623.955
661.857,624.127 661.771,624.214 661.685,624.301 661.685,624.387 661.599,624.387 661.599,624.473 661.599,624.561
661.599,624.646 661.512,624.646 661.426,624.561 661.339,624.646 661.253,624.818 661.167,625.078 661.08,625.078
660.994,625.078 660.994,624.991 660.907,624.991 660.821,624.991 660.734,624.991 660.647,624.991 660.647,625.078
660.647,625.164 660.647,625.25 660.562,625.164 660.475,625.164 660.475,625.078 660.389,625.078 660.303,625.078
660.216,625.078 660.13,625.078 660.043,625.078 660.043,625.164 660.043,625.25 659.957,625.25 659.957,625.337 659.871,625.337
659.784,625.337 659.698,625.337 659.698,625.424 659.611,625.424 659.611,625.51 659.525,625.598 659.525,625.684 659.525,625.77
659.438,625.855 659.438,625.941 659.352,625.941 659.266,626.114 659.179,626.201 659.093,626.201 659.093,626.287
659.007,626.287 658.834,626.461 658.747,626.547 658.661,626.547 658.575,626.633 658.488,626.633 658.402,626.721
658.314,626.721 658.314,626.807 658.229,626.807 658.143,626.807 658.056,626.893 658.056,626.979 657.97,627.064 657.883,627.15
657.883,627.238 657.797,627.238 657.797,627.324 657.797,627.411 657.797,627.497 657.883,627.584 657.797,627.757
657.797,627.842 657.797,627.93 657.797,628.016 657.797,628.102 657.711,628.102 657.711,628.273 657.624,628.361
657.711,628.448 657.711,628.534 657.711,628.621 657.711,628.707 657.797,628.707 657.797,628.793 657.711,628.793
657.711,628.879 657.711,628.966 657.797,628.966 657.797,629.053 657.797,629.225 657.711,629.225 657.624,629.225
657.624,629.313 657.538,629.313 657.624,629.398 657.624,629.484 657.711,629.571 657.797,629.657 657.797,629.743
657.883,629.83 657.97,630.002 657.97,630.089 657.97,630.176 657.97,630.262 658.056,630.35 658.143,630.436 658.229,630.521
658.314,630.607 658.402,630.693 658.402,630.78 658.488,630.78 658.575,630.953 658.488,631.039 658.402,631.039 658.229,631.299
658.143,631.385 658.143,631.473 658.056,631.559 657.97,631.645 657.883,631.73 657.797,631.73 657.711,631.816 657.624,631.816
657.538,631.816 657.538,631.903 657.451,631.903 657.365,631.903 657.279,631.903 657.191,631.903 657.105,631.903
657.019,631.903 656.933,631.903 656.847,631.903 656.76,631.903 656.674,631.903 656.674,631.99 656.587,631.99 656.501,631.99
656.415,631.99 656.328,631.99 656.328,632.076 656.242,632.076 656.155,632.076 655.982,632.162 655.81,632.162 655.81,632.249
655.723,632.249 655.637,632.249 655.551,632.249 655.551,632.336 655.464,632.336 655.378,632.336 655.291,632.336
655.205,632.336 655.119,632.336 655.032,632.336 655.032,632.422 654.946,632.422 654.859,632.422 654.772,632.422
654.687,632.422 654.687,632.336 654.687,632.249 654.687,632.162 654.6,632.162 654.6,632.076 654.6,631.99 654.514,631.99
654.514,631.903 654.427,631.903 654.341,631.903 654.255,631.903 654.168,631.903 654.168,631.816 654.082,631.816
653.995,631.73 653.909,631.73 653.909,631.645 653.823,631.645 653.823,631.559 653.736,631.645 653.65,631.645 653.563,631.645
653.477,631.645 653.391,631.645 653.304,631.645 653.218,631.645 653.218,631.73 653.131,631.73 653.131,631.816 653.045,631.816
652.959,631.816 652.959,631.903 652.872,631.903 652.872,631.816 652.872,631.73 652.872,631.645 652.872,631.559
652.872,631.473 652.872,631.385 652.959,631.212 652.959,631.126 652.959,631.039 652.959,630.953 652.959,630.866
653.045,630.866 653.045,630.78 652.959,630.693 652.872,630.693 652.872,630.607 652.872,630.521 652.872,630.436 652.872,630.35
652.872,630.262 652.786,630.176 652.786,630.089 652.699,630.002 652.699,629.916 652.613,630.002 652.613,629.916
652.527,629.916 652.527,629.83 652.527,629.916 652.439,629.83 652.354,629.743 652.267,629.657 652.267,629.571 652.095,629.484
652.095,629.398 652.008,629.398 652.008,629.313 651.922,629.313 651.749,629.225 651.749,629.139 651.663,629.139
651.663,629.053 651.576,629.225 651.49,629.225 651.49,629.313 651.403,629.313 651.403,629.398 651.316,629.484 651.23,629.484
651.23,629.571 651.144,629.571 651.058,629.657 651.058,629.743 650.971,629.83 650.885,629.916 650.799,630.002 650.799,630.089
650.712,630.176 650.712,630.262 650.626,630.262 650.626,630.35 650.626,630.436 650.626,630.521 650.626,630.607
650.539,630.607 650.539,630.693 650.453,630.78 650.453,630.866 650.367,630.953 650.367,631.039 650.28,631.039 650.28,631.126
650.28,631.212 650.28,631.299 650.28,631.385 650.28,631.473 650.194,631.559 650.194,631.645 650.194,631.73 650.194,631.816
650.106,631.99 650.106,632.076 650.106,632.162 650.021,632.162 649.935,632.162 649.848,632.162 649.762,632.076
649.675,632.076 649.589,632.162 649.589,631.99 649.503,631.99 649.503,631.903 649.503,631.816 649.503,631.73 649.503,631.645
649.416,631.473 649.416,631.299 649.33,631.212 649.33,631.126 649.33,630.953 649.243,630.866 649.243,630.78 649.243,630.693
649.243,630.607 649.157,630.607 649.157,630.521 649.157,630.436 649.157,630.35 649.071,630.262 649.071,630.176
649.071,630.089 649.071,630.002 649.071,629.916 649.071,629.83 648.984,629.743 648.984,629.657 648.984,629.571
648.984,629.484 648.897,629.398 648.897,629.313 648.897,629.225 648.811,629.139 648.811,629.053 648.811,628.966
648.725,628.707 648.725,628.621 648.725,628.534 648.725,628.448 648.811,628.361 648.811,628.273 648.811,628.188
648.811,628.016 648.811,627.93 648.897,627.93 648.897,627.757 648.897,627.67 648.897,627.497 648.897,627.584 648.811,627.584
648.725,627.584 648.639,627.584 648.552,627.67 648.466,627.67 648.466,627.497 648.466,627.411 648.379,627.324 648.379,627.15
648.293,627.064 648.293,626.979 648.293,626.893 648.293,626.807 648.293,626.721 648.293,626.633 648.293,626.461
648.207,626.461 648.207,626.287 648.12,626.114 648.12,626.028 648.12,625.941 648.12,625.855 648.034,625.77 648.034,625.684
648.034,625.598 648.034,625.51 647.947,625.424 647.947,625.337 647.947,625.164 647.947,625.078 647.775,625.164
647.602,625.164 647.515,625.078 647.515,624.991 647.429,624.905 647.343,624.818 647.17,624.732 647.083,624.561
646.997,624.561 646.911,624.473 646.824,624.387 646.738,624.301 646.65,624.214 646.564,624.214 646.479,624.214
646.392,624.214 646.392,624.301 646.306,624.301 646.306,624.387 646.306,624.473 646.219,624.473 646.047,624.732
645.96,624.732 645.96,624.818 645.96,624.905 645.96,624.991 645.874,624.991 645.874,624.905 645.787,624.818 645.787,624.732
645.701,624.646 645.701,624.561 645.615,624.561 645.615,624.473 645.528,624.473 645.528,624.387 645.441,624.301 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#D1324B" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
645.441,624.301 645.441,624.215 645.355,624.127 645.355,624.041 645.269,623.955 645.269,623.868 645.183,623.868
645.183,623.782 645.183,623.695 645.096,623.522 645.01,623.522 644.924,623.437 644.837,623.437 644.751,623.437
644.664,623.437 644.578,623.437 644.492,623.437 644.404,623.437 644.318,623.437 644.231,623.522 644.146,623.522
644.06,623.609 643.973,623.609 643.887,623.609 643.8,623.609 643.714,623.609 643.628,623.609 643.541,623.522 643.455,623.522
643.368,623.522 643.281,623.522 643.195,623.437 643.108,623.437 643.022,623.522 642.936,623.609 642.85,623.695 642.85,623.782
642.85,623.868 642.764,623.868 642.764,623.955 642.764,624.041 642.764,624.127 642.677,624.215 642.677,624.387
642.504,624.387 642.332,624.387 642.245,624.387 642.159,624.387 642.071,624.474 641.985,624.474 641.985,624.56 641.899,624.56
641.813,624.56 641.727,624.56 641.64,624.646 641.64,624.732 641.727,624.732 641.64,624.732 641.64,624.818 641.554,624.818
641.554,624.905 641.554,624.991 641.64,625.078 641.64,625.164 641.727,625.164 641.813,625.25 641.813,625.338 641.899,625.338
641.813,625.338 641.899,625.51 641.899,625.596 641.985,625.596 641.985,625.683 641.985,625.77 641.985,625.942 641.985,626.028
641.899,626.028 641.899,625.942 641.813,625.942 641.813,626.028 641.727,626.028 641.64,626.114 641.64,626.201 641.64,626.287
641.554,626.375 641.554,626.461 641.554,626.547 641.468,626.547 641.381,626.633 641.295,626.633 641.295,626.719
641.208,626.807 641.122,626.807 641.036,626.807 641.036,626.719 640.949,626.719 640.949,626.807 640.862,626.807
640.862,626.893 640.775,626.893 640.775,626.979 640.689,626.979 640.604,626.979 640.604,627.065 640.517,627.065
640.431,627.065 640.431,627.151 640.344,627.151 640.258,627.238 640.172,627.238 640.085,627.324 639.652,627.324
639.394,627.238 639.221,626.807 639.221,626.893 639.135,626.893 639.048,626.893 639.048,626.979 638.962,626.979
638.876,626.979 638.789,626.979 638.789,627.065 638.703,627.065 638.615,627.065 638.529,627.151 638.443,627.151
638.356,627.151 638.356,627.41 638.271,627.498 638.184,627.498 638.184,627.584 638.098,627.584 638.098,627.67 638.012,627.67
637.925,627.67 637.839,627.756 637.752,627.756 637.839,627.842 637.752,627.842 637.666,627.842 637.666,627.93 637.752,627.93
637.752,628.016 637.839,628.103 637.839,628.188 637.925,628.274 637.925,628.361 638.012,628.447 638.012,628.534
638.012,628.621 638.012,628.707 638.012,628.793 638.012,628.879 637.925,628.879 637.925,628.967 637.839,628.967
637.839,629.053 637.752,629.053 637.58,629.139 637.493,629.226 637.406,629.312 637.233,629.484 637.233,629.57 637.233,629.657
637.233,629.743 637.233,629.83 637.233,629.916 637.233,630.002 637.233,630.09 637.147,630.09 637.147,630.176 636.975,630.176
636.975,630.262 636.975,630.349 636.975,630.435 636.975,630.521 636.975,630.607 636.716,630.78 636.629,630.78 636.543,630.78
636.456,630.694 636.456,630.607 636.37,630.607 636.37,630.694 636.196,630.694 636.284,630.78 636.196,630.78 636.284,630.866
636.37,630.953 636.456,631.039 636.543,631.039 636.629,631.039 636.196,631.385 636.023,631.471 636.023,631.559
635.938,631.559 635.852,631.645 635.765,631.645 635.679,631.645 635.679,631.73 635.592,631.73 635.16,631.99 634.987,632.162
634.9,632.25 634.814,632.25 634.728,632.336 634.642,632.422 634.21,632.422 634.21,632.508 634.21,632.594 634.124,632.594
634.124,632.682 634.124,632.768 634.037,632.854 634.037,632.94 633.951,632.94 633.951,633.026 633.951,633.113 633.951,633.199
633.951,633.287 633.863,633.287 633.863,633.373 633.863,633.459 633.777,633.459 633.519,633.459 633.087,633.545
633.087,633.459 633,633.287 632.914,633.287 632.914,633.199 632.914,633.113 632.914,633.026 632.828,633.026 632.74,632.854
632.654,632.682 632.567,632.594 632.481,632.508 632.396,632.422 632.309,632.336 632.309,632.25 632.223,632.162
632.223,632.076 632.223,631.99 632.309,631.903 632.223,631.903 632.223,631.817 632.136,631.817 632.136,631.73 632.05,631.645
632.05,631.559 631.964,631.559 631.964,631.471 631.877,631.385 631.704,631.385 631.618,631.385 631.618,631.213
631.618,631.127 631.531,631.039 631.531,630.866 631.444,630.866 631.444,630.953 631.358,630.953 631.271,631.039
631.186,631.039 631.186,631.127 631.1,631.127 631.013,631.127 630.927,631.127 630.927,631.039 630.84,631.039 630.754,630.866
630.668,630.953 630.581,630.953 630.495,631.127 630.408,631.039 630.235,630.953 630.148,630.953 630.063,630.953
630.063,631.039 629.976,631.039 629.89,630.953 629.804,630.953 629.717,630.866 629.717,630.78 629.631,630.78 629.372,630.866
629.199,630.435 629.111,630.435 629.025,630.262 629.111,630.262 629.025,630.262 629.372,630.002 629.458,629.916
629.372,629.916 629.285,629.916 629.199,629.916 629.199,629.83 629.111,629.83 629.199,629.743 629.199,629.657 629.285,629.484
629.372,629.312 629.458,629.139 629.285,629.139 629.199,629.139 629.111,629.053 629.025,629.053 628.939,629.053
628.939,628.967 629.025,628.793 629.025,628.707 629.111,628.621 629.025,628.534 629.025,628.447 629.025,628.361
628.939,628.274 628.853,628.188 628.853,628.103 628.767,628.016 628.767,627.93 628.767,627.842 628.767,627.93 628.68,627.93
628.594,627.842 628.594,627.756 628.594,627.67 628.594,627.584 628.508,627.498 628.508,627.41 628.853,627.238 628.853,627.151
629.111,627.065 628.853,626.547 628.853,626.633 628.853,626.547 628.594,626.719 628.421,626.461 628.335,626.375
628.248,626.287 628.162,626.201 628.248,626.201 628.248,626.114 628.162,625.942 628.162,625.855 628.162,625.77 628.248,625.77
628.248,625.683 628.335,625.683 628.421,625.683 628.335,625.424 627.988,625.51 627.644,625.51 627.557,625.596 627.471,625.596
627.471,625.51 627.471,625.424 627.298,625.424 627.298,625.51 627.212,625.51 627.125,625.51 627.125,625.424 627.125,625.338
627.039,625.25 627.039,625.164 627.039,625.078 626.952,624.905 626.865,624.818 626.865,624.732 626.779,624.732
626.779,624.646 626.692,624.646 626.434,624.387 626.348,624.301 626.175,624.127 626.088,624.041 626.002,624.041
626.002,623.955 625.829,623.868 625.743,623.782 625.656,623.782 625.569,623.695 625.396,623.522 625.311,623.437
625.224,623.437 625.138,623.351 625.052,623.351 624.965,623.264 624.879,623.264 624.706,623.178 624.533,623.09
624.359,623.004 624.273,623.09 624.273,623.004 624.188,623.004 624.101,623.09 624.101,623.178 624.015,623.264 624.015,623.351
623.928,623.351 623.842,623.437 623.842,623.609 623.756,623.695 623.669,623.695 623.669,623.609 623.669,623.695
623.583,623.695 623.496,623.782 623.41,623.782 623.063,624.041 622.805,624.301 622.632,624.301 622.632,624.387
622.546,624.387 622.46,624.474 622.373,624.56 622.46,624.818 622.546,624.991 622.46,625.078 622.46,625.164 622.373,625.338
622.287,625.51 622.2,625.596 622.027,625.596 622.027,625.683 621.94,625.683 621.854,625.683 621.682,625.683 621.596,625.683
621.509,625.683 621.423,625.683 621.423,625.51 621.336,625.424 621.164,625.338 621.077,625.164 620.903,624.991
620.731,624.818 620.645,624.732 620.559,624.646 620.472,624.56 620.386,624.387 620.559,624.301 620.559,624.215
620.731,624.127 620.817,624.041 620.817,623.955 620.99,623.782 621.077,623.695 621.077,623.782 621.164,623.782 621.25,623.609
621.164,623.609 621.336,623.522 621.423,623.437 621.423,623.351 621.509,623.264 621.596,623.264 621.682,623.178
621.854,623.09 621.768,623.004 621.768,622.918 621.768,622.832 621.768,622.658 621.682,622.572 621.682,622.486
621.682,622.399 621.596,622.399 621.596,622.313 621.596,622.141 621.509,622.141 621.509,622.055 621.509,621.967
621.423,621.881 621.423,621.795 621.423,621.709 621.423,621.623 621.423,621.535 621.336,621.623 621.25,621.623 621.25,621.535
621.25,621.449 621.25,621.362 621.25,621.276 621.25,621.19 621.25,621.104 621.164,621.018 621.164,620.93 621.164,620.844
621.164,620.758 621.164,620.672 621.077,620.586 621.077,620.498 621.077,620.412 621.077,620.326 620.99,620.239 620.99,620.153
620.99,620.066 620.903,620.066 620.903,619.98 620.817,619.895 620.817,619.808 620.731,619.635 620.645,619.635 620.645,619.549
620.559,619.463 620.386,619.375 620.213,619.202 620.127,619.116 620.04,619.03 619.954,619.03 619.954,618.943 619.868,618.857
619.781,618.943 619.694,618.943 619.607,618.857 619.521,618.771 619.436,618.685 619.349,618.685 619.263,618.685
619.176,618.685 619.09,618.685 619.004,618.685 618.917,618.685 618.917,618.771 618.917,618.857 618.658,618.771
618.484,618.771 618.398,618.771 618.398,618.685 618.398,618.599 618.484,618.512 618.484,618.338 618.484,618.252
618.484,618.166 618.484,618.08 618.484,617.993 618.484,617.906 618.484,617.82 618.484,617.647 618.484,617.562 618.484,617.389
618.484,617.303 618.398,617.303 618.398,617.215 618.398,617.129 618.398,617.043 618.398,616.957 618.398,616.871
618.398,616.783 618.398,616.697 618.398,616.524 618.398,616.438 618.398,616.352 618.398,616.266 618.312,616.266
618.226,616.178 618.14,616.178 618.14,616.266 618.053,616.178 618.053,616.266 618.053,616.178 617.967,616.266 617.88,616.266
617.794,616.352 617.708,616.352 617.708,616.438 617.621,616.438 617.535,616.438 617.447,616.438 617.361,616.524
617.275,616.524 617.188,616.524 617.103,616.524 617.017,616.524 616.93,616.524 616.757,616.438 616.671,616.438
616.584,616.438 616.498,616.352 616.412,616.438 616.412,616.524 616.412,616.61 616.325,616.783 616.238,616.871
616.151,616.957 616.151,617.043 616.066,617.129 615.979,617.215 615.807,617.303 615.72,617.389 615.548,617.475
615.548,617.562 615.461,617.562 615.375,617.647 615.288,617.647 615.202,617.734 615.115,617.82 615.028,617.906
615.028,617.993 615.028,618.08 614.942,618.08 614.855,618.166 614.77,618.166 614.77,618.252 614.684,618.338 614.684,618.426
614.684,618.512 614.598,618.512 614.511,618.512 614.424,618.599 614.338,618.599 614.252,618.685 614.165,618.771
614.165,618.857 614.079,618.857 614.079,618.943 614.079,619.03 613.992,619.03 613.906,619.116 613.819,619.116 613.819,619.202
613.732,619.202 613.732,619.289 613.646,619.289 613.646,619.375 613.561,619.463 613.561,619.549 613.474,619.549
613.474,619.635 613.388,619.721 613.301,619.721 613.388,619.808 613.474,619.808 613.561,619.895 613.646,619.895
613.732,619.895 613.646,619.895 613.646,620.066 613.561,620.153 613.474,620.239 613.388,620.326 613.301,620.412
613.215,620.412 613.215,620.498 613.215,620.586 613.129,620.586 613.129,620.672 613.042,620.758 613.042,620.844
613.042,620.93 613.042,621.018 613.042,621.104 612.956,621.19 612.956,621.276 612.869,621.276 612.869,621.362 612.869,621.535
612.869,621.623 612.783,621.623 612.783,621.709 612.696,621.709 612.696,621.795 612.61,621.795 612.61,621.881 612.523,621.881
612.523,621.967 612.437,621.967 612.437,622.055 612.351,622.141 612.265,622.141 612.265,622.227 612.179,622.313
612.092,622.313 612.092,622.399 612.005,622.486 612.005,622.572 611.919,622.658 611.919,622.746 611.919,622.832
611.919,622.918 611.832,622.918 611.832,623.004 611.832,623.09 611.747,623.09 611.66,623.264 611.572,623.351 611.572,623.437
611.486,623.522 611.486,623.609 611.486,623.695 611.486,623.782 611.486,623.868 611.486,623.955 611.399,623.955
611.399,624.041 611.399,624.127 611.399,624.215 611.399,624.301 611.486,624.387 611.486,624.474 611.486,624.56
611.486,624.646 611.486,624.732 611.399,624.732 611.399,624.818 611.399,624.905 611.313,624.905 611.228,624.991
611.142,624.991 611.055,625.078 611.055,625.164 610.968,625.25 610.882,625.338 610.796,625.424 610.71,625.51 610.623,625.51
610.536,625.51 610.536,625.596 610.45,625.596 610.45,625.683 610.363,625.683 610.277,625.77 610.277,625.855 610.19,625.942
610.104,626.028 610.104,626.114 610.018,626.201 609.932,626.201 609.845,626.287 609.759,626.287 609.759,626.375
609.586,626.375 609.5,626.375 609.413,626.461 609.327,626.461 609.24,626.547 609.154,626.547 609.067,626.547 608.98,626.547
608.895,626.547 608.809,626.633 608.723,626.633 608.636,626.547 608.636,626.461 608.549,626.375 608.463,626.287
608.463,626.201 608.463,626.114 608.463,626.028 608.549,626.028 608.636,625.942 608.636,625.855 608.636,625.77
608.636,625.596 608.549,625.596 608.549,625.51 608.549,625.424 608.549,625.25 608.549,625.164 608.549,625.078 608.549,624.991
608.549,624.905 608.636,624.818 608.636,624.732 608.636,624.646 608.636,624.474 608.636,624.387 608.636,624.301
608.636,624.215 608.636,624.127 608.636,624.041 608.636,623.955 608.636,623.868 608.636,623.695 608.723,623.609
608.723,623.437 608.723,623.351 608.723,623.264 608.809,623.264 608.723,623.264 608.636,623.178 608.636,623.09
608.636,623.004 608.549,622.918 608.549,622.832 608.463,622.658 608.463,622.572 608.377,622.486 608.377,622.399
608.463,622.399 608.463,622.313 608.463,622.227 608.463,622.141 608.549,622.141 608.549,622.055 608.549,621.967
608.636,621.795 608.636,621.709 608.723,621.709 608.723,621.623 608.809,621.623 608.895,621.535 609.067,621.449
609.067,621.362 609.154,621.362 609.154,621.276 609.24,621.19 609.24,621.104 609.327,621.018 609.327,620.93 609.413,620.844
609.413,620.758 609.5,620.672 609.5,620.586 609.5,620.498 609.586,620.412 609.586,620.326 609.586,620.239 609.673,620.153
609.673,620.066 609.673,619.895 609.673,619.808 609.759,619.549 609.759,619.375 609.759,619.202 609.759,619.116
609.759,619.03 609.759,618.943 609.759,618.771 609.759,618.512 609.759,618.426 609.759,618.338 609.759,618.252 609.845,618.08
609.845,617.993 609.845,617.906 609.845,617.82 609.932,617.82 609.932,617.734 609.932,617.647 610.018,617.647 610.018,617.562
610.104,617.562 610.104,617.475 610.19,617.475 610.277,617.475 610.363,617.389 610.45,617.389 610.536,617.389 610.623,617.389
610.623,617.303 610.71,617.303 610.796,617.303 610.882,617.303 610.882,617.215 610.882,617.129 610.968,617.043
610.968,616.957 610.968,616.871 610.968,616.697 610.968,616.61 610.882,616.438 610.882,616.352 610.796,616.352
610.796,616.178 610.796,616.092 610.71,616.092 610.71,615.92 610.71,615.834 610.623,615.746 610.623,615.66 610.623,615.574
610.623,615.487 610.536,615.487 610.45,615.314 610.536,615.229 610.45,615.143 610.536,615.143 610.45,615.055 610.277,614.797
609.932,614.969 609.845,614.883 609.845,614.797 609.845,614.711 609.932,614.711 610.018,614.623 610.19,614.537 610.104,614.45
610.104,614.364 610.018,614.364 610.018,614.278 609.932,614.191 609.845,614.019 609.845,613.933 609.759,613.933
609.673,613.846 609.673,613.933 609.586,613.933 609.586,614.019 609.5,614.019 609.5,614.105 609.413,614.105 609.327,614.105
609.24,614.105 609.24,614.191 609.154,614.191 608.98,614.278 608.895,614.278 608.809,614.278 608.723,614.278 608.636,614.278
608.549,614.278 608.549,614.191 608.463,614.191 608.463,614.105 608.377,614.019 608.291,613.933 608.204,613.933
608.204,613.846 608.117,613.76 608.031,613.586 608.031,613.5 607.943,613.5 607.943,613.414 607.771,613.241 607.686,613.068
607.599,612.982 607.512,612.982 607.427,612.896 607.427,612.81 607.34,612.81 607.34,612.723 607.254,612.637 607.254,612.551
607.167,612.463 607.167,612.377 607.08,612.291 607.08,612.205 606.994,612.205 606.994,612.118 606.908,612.118 606.821,612.031
606.734,612.031 606.647,612.031 606.562,611.945 606.476,611.945 606.476,611.858 606.303,611.687 606.217,611.687
606.217,611.601 606.13,611.601 606.044,611.601 605.958,611.514 605.871,611.426 605.785,611.34 605.697,611.254 605.611,611.254
605.611,611.168 605.525,611.168 605.438,611.082 605.353,610.994 605.267,610.994 605.18,610.908 605.18,610.822 605.18,610.735
605.007,610.649 604.921,610.649 604.921,610.563 604.835,610.563 604.748,610.563 604.748,610.477 604.661,610.477
604.575,610.477 604.488,610.477 604.402,610.477 604.315,610.477 604.229,610.563 604.143,610.563 604.057,610.563
604.057,610.649 603.971,610.649 603.884,610.649 603.884,610.735 603.798,610.735 603.711,610.735 603.711,610.822
603.625,610.822 603.539,610.908 603.452,610.994 603.191,611.168 603.106,611.168 603.02,611.168 602.934,611.254
602.847,611.254 602.761,611.254 602.675,611.254 602.588,611.34 602.502,611.34 602.329,611.34 602.242,611.34 602.156,611.34
602.069,611.254 601.982,611.254 601.896,611.254 601.896,611.082 601.811,610.994 601.811,610.908 601.724,610.908
601.638,610.908 601.551,610.908 601.465,610.908 601.379,610.908 601.206,610.908 601.206,610.822 601.119,610.822
601.119,610.735 601.119,610.563 601.119,610.391 601.033,610.303 601.033,610.131 601.119,610.131 601.206,610.131
601.292,610.131 601.379,610.131 601.551,610.131 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#D1324B" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
601.551,610.131 601.465,610.045 601.465,609.958 601.465,609.872 601.465,609.699 601.465,609.525 601.465,609.439
601.378,609.354 601.378,609.268 601.292,609.181 601.378,609.094 601.465,609.008 601.119,608.749 600.946,608.662
600.86,608.662 600.86,608.576 600.773,608.576 600.688,608.576 600.688,608.488 600.601,608.488 600.514,608.488 600.428,608.488
600.428,608.402 600.341,608.402 600.255,608.402 600.169,608.402 600.082,608.402 599.996,608.402 599.909,608.402
599.823,608.402 599.737,608.488 599.65,608.488 599.564,608.488 599.477,608.488 599.477,608.576 599.391,608.576
599.305,608.576 599.218,608.662 599.132,608.576 599.045,608.488 598.959,608.402 598.873,608.402 598.873,608.316
598.786,608.316 598.786,608.23 598.786,608.145 598.786,608.057 598.7,608.057 598.7,607.971 598.613,607.971 598.613,607.885
598.613,607.798 598.527,607.798 598.527,607.712 598.441,607.712 598.441,607.625 598.354,607.625 598.268,607.625
598.354,607.453 598.095,607.365 598.181,607.193 597.922,607.107 597.749,607.021 597.749,606.848 597.663,606.934
597.663,606.848 597.577,606.848 597.49,606.848 597.404,606.848 597.317,606.848 597.231,606.848 597.231,606.934
597.145,606.934 597.145,607.021 597.058,607.021 597.058,607.107 596.972,607.107 596.885,607.107 596.799,607.107
596.713,607.107 596.626,607.107 596.54,607.107 596.54,607.193 596.54,607.365 596.54,607.453 596.367,607.365 596.367,607.539
596.281,607.539 596.194,607.453 596.108,607.453 596.021,607.453 595.935,607.453 595.849,607.453 595.676,607.365
595.589,607.365 595.33,607.279 595.244,607.193 595.071,607.193 595.071,607.107 595.071,607.021 595.071,606.934
595.071,606.848 595.071,606.761 595.071,606.675 595.071,606.502 595.071,606.416 594.898,606.416 594.813,606.416
594.639,606.416 594.553,606.416 594.466,606.416 594.38,606.416 594.293,606.416 594.207,606.416 594.207,606.242
594.207,606.156 594.207,605.984 594.207,605.896 594.207,605.811 594.293,605.725 594.293,605.552 594.293,605.465
594.121,605.552 593.948,605.552 593.775,605.638 593.602,605.638 593.429,605.725 593.343,605.725 593.17,605.811
593.084,605.811 593.17,605.725 593.17,605.638 593.17,605.552 593.17,605.465 593.17,605.379 593.17,605.293 593.17,605.206
593.257,605.12 593.257,605.033 593.17,605.033 593.084,604.947 592.997,604.861 592.997,604.688 592.997,604.602 592.997,604.429
592.997,604.342 592.997,604.169 592.911,604.083 592.911,603.997 592.911,603.91 592.997,603.736 592.911,603.736
592.825,603.736 592.652,603.736 592.565,603.736 592.479,603.736 592.479,603.479 592.479,603.305 592.479,603.133
592.652,603.133 592.738,603.046 592.738,602.96 592.738,602.873 592.738,602.701 592.738,602.527 592.738,602.441
592.825,602.355 592.738,602.355 592.652,602.27 592.565,602.27 592.479,602.182 592.393,602.182 592.306,602.182 592.22,602.182
592.133,602.182 592.047,602.182 591.961,602.096 591.874,602.096 591.788,602.096 591.701,602.096 591.615,602.096
591.529,602.096 591.356,602.096 591.269,602.009 591.183,602.009 591.097,602.009 591.01,602.009 591.01,601.923 590.924,601.923
590.837,601.75 590.751,601.664 590.665,601.576 590.751,601.576 590.665,601.576 590.665,601.49 590.578,601.49 590.492,601.49
590.405,601.49 590.319,601.49 590.233,601.49 590.146,601.49 590.06,601.49 589.973,601.49 589.801,601.49 589.714,601.49
589.628,601.49 589.541,601.49 589.455,601.49 589.369,601.49 589.282,601.404 589.196,601.404 589.109,601.404 589.023,601.404
589.023,601.318 588.85,601.232 588.764,601.232 588.677,601.232 588.591,601.232 588.591,601.145 588.505,601.059
588.418,600.973 588.418,600.886 588.332,600.886 588.332,600.8 588.245,600.713 588.245,600.627 588.159,600.627 588.073,600.541
587.986,600.541 587.9,600.454 587.813,600.454 587.727,600.454 587.727,600.367 587.641,600.367 587.554,600.367 587.468,600.367
587.381,600.367 587.295,600.367 587.209,600.281 587.209,600.367 587.122,600.367 587.036,600.367 587.036,600.454
586.949,600.454 586.863,600.454 586.777,600.454 586.777,600.367 586.69,600.367 586.604,600.367 586.604,600.281
586.604,600.195 586.69,600.195 586.69,600.109 586.69,600.021 586.777,600.021 586.863,600.021 586.863,599.936 586.949,599.936
586.949,599.849 587.036,599.763 587.036,599.677 587.122,599.59 587.122,599.504 587.122,599.417 587.122,599.331
587.209,599.245 587.209,599.158 587.209,599.072 587.209,598.984 587.209,598.898 587.295,598.813 587.295,598.727
587.295,598.553 587.295,598.467 587.295,598.381 587.295,598.294 587.295,598.208 587.295,598.121 587.381,598.121
587.381,598.035 587.381,597.949 587.468,597.775 587.468,597.689 587.554,597.604 587.554,597.518 587.554,597.43 587.641,597.43
587.641,597.344 587.641,597.257 587.727,597.257 587.727,597.171 587.813,597.085 587.9,596.998 587.9,596.912 587.9,596.824
587.986,596.824 587.9,596.824 587.9,596.738 587.813,596.738 587.813,596.652 587.813,596.566 587.9,596.566 587.9,596.48
587.9,596.393 587.986,596.393 587.986,596.307 587.9,596.221 587.986,596.221 587.986,596.134 588.073,596.134 588.159,596.134
588.159,596.048 588.159,595.961 588.245,595.961 588.332,595.875 588.332,595.789 588.332,595.701 588.332,595.615
588.418,595.615 588.505,595.615 588.591,595.529 588.677,595.529 588.764,595.529 588.85,595.443 588.85,595.357 588.85,595.27
588.938,595.27 588.938,595.184 589.023,595.097 588.938,595.097 588.938,595.011 589.023,595.011 589.109,594.925
589.109,594.838 589.109,594.752 589.023,594.752 589.023,594.665 589.023,594.579 589.023,594.492 588.938,594.492
588.938,594.406 588.938,594.32 589.023,594.32 589.023,594.232 589.023,594.146 589.109,594.146 589.196,594.146 589.196,594.061
589.196,593.974 589.282,593.974 589.282,594.061 589.369,594.061 589.369,593.974 589.369,593.888 589.369,593.801
589.369,593.715 589.455,593.715 589.455,593.629 589.541,593.629 589.541,593.542 589.541,593.456 589.455,593.456
589.455,593.369 589.541,593.369 589.455,593.283 589.455,593.197 589.541,593.197 589.541,593.109 589.628,593.109
589.628,593.023 589.628,592.938 589.714,592.938 589.714,592.852 589.714,592.765 589.628,592.765 589.628,592.678
589.628,592.592 589.541,592.592 589.541,592.505 589.455,592.505 589.455,592.419 589.369,592.333 589.369,592.246
589.282,592.246 589.282,592.16 589.196,592.16 589.109,592.072 589.023,592.072 588.938,592.072 588.938,591.986 588.85,591.986
588.85,591.9 588.938,591.9 588.938,591.814 588.938,591.729 588.85,591.729 588.85,591.641 588.938,591.556 588.85,591.469
588.764,591.382 588.764,591.296 588.677,591.296 588.677,591.209 588.591,591.123 588.591,591.037 588.591,590.949
588.591,590.777 588.591,590.691 588.677,590.605 588.677,590.518 588.764,590.518 588.764,590.432 588.764,590.345
588.764,590.259 588.677,590.259 588.677,590.173 588.677,590.086 588.764,590 588.764,589.913 588.764,589.826 588.764,589.74
588.764,589.568 588.764,589.48 588.764,589.395 588.764,589.309 588.677,589.309 588.677,589.222 588.677,589.136
588.764,589.136 588.764,589.049 588.85,589.049 588.85,588.963 588.938,588.79 588.938,588.704 588.938,588.617 588.85,588.617
588.85,588.531 588.85,588.445 588.85,588.357 588.764,588.271 588.764,588.186 588.764,588.099 588.764,588.013 588.677,588.013
588.677,587.926 588.677,587.84 588.677,587.753 588.764,587.753 588.677,587.753 588.677,587.668 588.591,587.668
588.591,587.581 588.505,587.494 588.418,587.494 588.418,587.408 588.332,587.408 588.332,587.32 588.332,587.234
588.245,587.234 588.245,587.148 588.245,587.063 588.159,587.063 588.159,586.977 588.159,586.889 588.159,586.803
588.245,586.803 588.245,586.717 588.332,586.544 588.332,586.457 588.418,586.371 588.505,586.371 588.505,586.285
588.505,586.197 588.505,586.111 588.505,586.025 588.591,585.939 588.591,585.854 588.591,585.768 588.677,585.68 588.591,585.68
588.591,585.593 588.591,585.507 588.591,585.421 588.677,585.507 588.764,585.507 588.764,585.421 588.85,585.421 588.85,585.334
588.764,585.334 588.764,585.248 588.85,585.248 588.938,585.248 588.938,585.161 589.023,585.074 589.023,584.988
589.023,584.902 589.023,584.816 589.109,584.816 589.109,584.73 589.196,584.645 589.282,584.557 589.369,584.557 589.369,584.47
589.455,584.47 589.541,584.47 589.628,584.297 589.714,584.297 589.714,584.211 589.887,583.951 589.973,583.779 590.06,583.865
590.146,583.779 590.146,583.693 590.233,583.693 590.233,583.605 590.233,583.52 590.233,583.433 590.233,583.347
590.233,583.261 590.233,583.174 590.233,583.088 590.233,583.001 590.233,582.916 590.146,582.829 590.146,582.742
590.06,582.742 589.973,582.742 589.887,582.742 589.801,582.656 589.714,582.656 589.714,582.568 589.801,582.568
589.801,582.482 589.714,582.396 589.628,582.396 589.541,582.311 589.541,582.224 589.541,582.137 589.541,582.051
589.541,581.965 589.455,581.965 589.455,581.879 589.455,581.792 589.541,581.792 589.541,581.706 589.455,581.706
589.455,581.619 589.369,581.619 589.282,581.533 589.282,581.445 589.282,581.359 589.282,581.273 589.282,581.188
589.282,581.102 589.282,581.015 589.282,580.928 589.369,580.928 589.369,580.842 589.369,580.756 589.369,580.669
589.282,580.669 589.282,580.582 589.196,580.496 589.196,580.408 589.196,580.236 589.196,580.15 589.282,580.15 589.282,580.064
589.369,580.064 589.369,579.979 589.282,579.979 589.282,579.893 589.196,579.893 589.109,579.893 589.109,579.805
589.023,579.805 588.938,579.805 588.85,579.805 588.85,579.718 588.85,579.632 588.764,579.632 588.764,579.545 588.677,579.459
588.677,579.373 588.677,579.286 588.764,579.199 588.764,579.113 588.764,579.027 588.764,578.941 588.677,578.855
588.677,578.768 588.591,578.681 588.505,578.595 588.505,578.509 588.418,578.509 588.245,578.422 588.245,578.336
588.159,578.336 588.073,578.249 588.073,578.164 587.986,578.164 587.986,578.076 587.986,577.99 587.986,577.904
587.986,577.818 587.986,577.73 587.9,577.645 587.9,577.558 587.9,577.472 587.813,577.472 587.813,577.385 587.727,577.385
587.727,577.299 587.641,577.213 587.641,577.127 587.641,577.04 587.554,577.04 587.554,576.954 587.554,576.867 587.554,576.781
587.468,576.867 587.468,576.781 587.468,576.867 587.468,576.781 587.468,576.693 587.468,576.607 587.554,576.607
587.554,576.521 587.554,576.436 587.554,576.349 587.554,576.263 587.468,576.263 587.468,576.176 587.468,576.09 587.381,576.09
587.381,576.004 587.381,575.917 587.381,575.744 587.295,575.57 587.295,575.484 587.295,575.398 587.295,575.313
587.209,575.313 587.209,575.227 587.295,575.227 587.295,575.14 587.295,575.053 587.381,575.053 587.468,575.053 587.554,575.14
587.641,575.14 587.727,575.053 587.727,574.967 587.727,574.88 587.813,574.88 587.813,574.793 587.727,574.793 587.727,574.707
587.641,574.707 587.641,574.621 587.641,574.533 587.641,574.447 587.641,574.361 587.641,574.275 587.554,574.189
587.554,574.104 587.554,574.016 587.554,573.93 587.468,573.844 587.468,573.757 587.468,573.67 587.381,573.67 587.381,573.584
587.468,573.584 587.468,573.497 587.468,573.412 587.468,573.324 587.468,573.238 587.468,573.152 587.468,573.066
587.468,572.98 587.468,572.893 587.554,572.806 587.554,572.72 587.554,572.633 587.554,572.547 587.554,572.461 587.641,572.461
587.641,572.375 587.641,572.288 587.727,572.201 587.727,572.115 587.727,572.029 587.727,571.943 587.813,571.943
587.813,571.855 587.813,571.77 587.813,571.683 587.813,571.597 587.727,571.597 587.727,571.511 587.641,571.511
587.641,571.424 587.554,571.338 587.468,571.338 587.381,571.338 587.295,571.252 587.295,571.165 587.209,571.165
587.209,571.079 587.295,570.992 587.209,570.906 587.209,570.818 587.295,570.818 587.295,570.732 587.381,570.646
587.468,570.646 587.468,570.561 587.468,570.474 587.468,570.388 587.554,570.388 587.554,570.301 587.554,570.215
587.468,570.215 587.468,570.128 587.381,570.128 587.381,570.042 587.295,570.042 587.295,569.956 587.209,569.956
587.209,569.869 587.209,569.781 587.295,569.781 587.295,569.695 587.295,569.609 587.295,569.523 587.381,569.438
587.468,569.438 587.468,569.352 587.554,569.352 587.554,569.264 587.641,569.264 587.727,569.264 587.727,569.352
587.727,569.438 587.813,569.438 587.9,569.438 587.986,569.438 587.986,569.523 588.073,569.523 588.159,569.523 588.245,569.438
588.245,569.523 588.332,569.695 588.418,569.869 588.505,569.956 588.505,570.042 588.591,570.128 588.677,570.215
588.764,570.301 588.85,570.301 588.85,570.388 588.938,570.388 589.023,570.474 589.109,570.474 589.109,570.561 589.196,570.561
589.196,570.646 589.282,570.646 589.369,570.646 589.369,570.732 589.455,570.732 589.541,570.818 589.628,570.818
589.714,570.906 589.714,570.992 589.801,570.992 589.887,571.079 589.973,571.079 590.06,571.165 590.146,571.252
590.233,571.338 590.319,571.424 590.319,571.511 590.405,571.511 590.492,571.597 590.492,571.683 590.665,571.77
590.751,571.855 590.924,572.029 591.01,572.115 591.097,572.115 591.183,572.201 591.269,572.288 591.442,572.375
591.529,572.461 591.615,572.461 591.701,572.547 591.788,572.547 591.961,572.633 591.961,572.72 592.047,572.72 592.133,572.806
592.306,572.806 592.306,572.893 592.393,572.893 592.393,572.806 592.479,572.806 592.565,572.806 592.652,572.72
592.738,572.633 592.911,572.547 592.997,572.547 593.084,572.375 593.17,572.375 593.257,572.375 593.257,572.288
593.343,572.288 593.343,572.201 593.429,572.201 593.429,572.115 593.429,572.029 593.429,571.943 593.516,571.943
593.516,571.855 593.516,571.77 593.602,571.597 593.602,571.511 593.689,571.511 593.689,571.424 593.775,571.424
593.861,571.424 593.948,571.511 594.034,571.424 594.121,571.424 594.207,571.424 594.293,571.338 594.38,571.338
594.466,571.424 594.553,571.424 594.639,571.424 594.725,571.424 594.813,571.511 594.898,571.511 594.985,571.597
595.071,571.597 595.157,571.597 595.157,571.683 595.33,571.683 595.417,571.683 595.503,571.683 595.589,571.77 595.676,571.77
595.762,571.77 595.849,571.855 595.935,571.855 595.935,571.943 596.021,571.943 596.108,571.943 596.194,571.943
596.281,571.943 596.367,571.943 596.453,571.943 596.54,571.943 596.626,571.943 596.713,571.943 596.799,571.943
596.885,571.943 596.972,571.943 597.058,571.943 597.058,572.029 597.145,572.029 597.231,572.029 597.231,572.115
597.317,572.115 597.49,572.288 597.577,572.288 597.663,572.375 597.663,572.461 597.749,572.461 597.836,572.461
597.922,572.461 598.009,572.461 598.095,572.461 598.095,572.547 598.181,572.461 598.181,572.547 598.441,572.547
598.613,572.547 598.7,572.547 598.786,572.547 598.873,572.547 598.959,572.547 599.045,572.547 599.132,572.547 599.218,572.461
599.305,572.461 599.391,572.375 599.477,572.375 599.564,572.288 599.65,572.288 599.737,572.201 599.823,572.201
599.909,572.201 600.082,572.115 600.169,572.115 600.255,572.115 600.341,572.115 600.428,572.115 600.514,572.115
600.601,572.115 600.601,572.029 600.688,572.029 600.773,572.029 600.86,571.943 600.946,571.943 601.033,571.855
601.119,571.683 601.205,571.683 601.292,571.683 601.378,571.683 601.551,571.683 601.551,571.597 601.637,571.597
601.724,571.597 601.81,571.597 601.896,571.597 601.896,571.511 601.983,571.511 602.069,571.424 602.156,571.424
602.242,571.424 602.329,571.338 602.415,571.338 602.501,571.252 602.588,571.165 602.674,571.165 602.674,571.079
602.761,571.079 602.933,571.079 602.933,570.992 603.02,570.992 603.106,570.906 603.193,570.818 603.365,570.732
603.365,570.646 603.452,570.474 603.538,570.474 603.538,570.388 603.625,570.301 603.711,570.215 603.797,570.215
603.797,570.128 603.884,570.128 603.97,570.128 604.057,570.128 604.143,570.128 604.143,570.042 604.229,570.042
604.316,570.042 604.402,570.042 604.575,569.956 604.661,569.956 604.748,569.956 604.834,569.869 604.921,569.869
605.007,569.869 605.007,569.781 605.093,569.781 605.18,569.695 605.266,569.695 605.353,569.609 605.439,569.609
605.439,569.523 605.525,569.523 605.612,569.438 605.871,569.264 606.044,569.178 606.044,569.092 606.13,569.092 606.13,569.178
606.217,569.178 606.217,569.264 606.303,569.352 606.389,569.178 606.476,569.092 606.476,569.005 606.563,568.918
606.649,568.832 606.649,568.745 606.735,568.745 606.821,568.66 606.821,568.572 606.908,568.572 606.821,568.572
606.821,568.486 606.908,568.486 606.994,568.4 607.081,568.314 607.253,568.229 607.253,568.141 607.34,568.055 607.426,568.055
607.513,567.968 607.599,567.968 607.599,567.881 607.685,567.881 607.858,567.795 608.031,567.795 608.117,567.709
608.204,567.709 608.29,567.623 608.377,567.623 608.463,567.623 608.463,567.535 608.549,567.449 608.549,567.363
608.636,567.277 608.636,567.191 608.722,567.191 608.895,567.191 608.981,567.277 609.068,567.363 609.154,567.363 "/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#D1324B" stroke-width="0.605" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="
609.154,567.363 609.24,567.449 609.327,567.449 609.413,567.536 609.5,567.536 609.672,567.623 609.759,567.623 609.845,567.709
609.932,567.709 610.019,567.709 610.104,567.795 610.191,567.881 610.191,567.969 610.277,567.881 610.364,567.881
610.364,567.969 610.45,567.969 610.45,567.881 610.536,567.969 610.623,567.969 610.709,567.969 610.709,568.055 610.796,568.055
610.882,568.055 610.968,568.055 611.055,568.055 611.229,568.055 611.4,568.055 611.487,567.969 611.573,567.969 611.66,567.881
611.746,567.881 611.832,567.881 611.919,567.795 612.005,567.795 612.005,567.881 612.092,567.881 612.178,567.881
612.264,567.795 612.352,567.795 612.438,567.795 612.524,567.709 612.61,567.623 612.783,567.536 612.956,567.449
613.042,567.449 613.128,567.449 613.215,567.449 613.301,567.449 613.388,567.449 613.475,567.449 613.475,567.363
613.561,567.363 613.647,567.363 613.733,567.363 613.82,567.363 613.733,567.363 613.733,567.277 613.82,567.19 613.82,567.104
613.82,567.018 613.906,566.932 613.906,566.846 613.906,566.758 613.992,566.758 614.079,566.758 614.165,566.758
614.252,566.758 614.338,566.672 614.424,566.672 614.424,566.586 614.424,566.5 614.424,566.414 614.598,566.326 614.771,566.326
614.856,566.414 614.943,566.414 615.029,566.24 615.116,566.24 615.116,566.326 615.202,566.326 615.202,566.414 615.288,566.414
615.288,566.5 615.288,566.586 615.375,566.586 615.375,566.672 615.461,566.672 615.548,566.672 615.634,566.672 615.634,566.758
615.72,566.758 615.807,566.586 615.807,566.5 615.894,566.414 615.98,566.5 615.98,566.414 616.066,566.414 616.152,566.326
616.152,566.24 616.239,566.067 616.239,565.895 616.325,565.809 616.325,565.721 616.412,565.635 616.412,565.549
616.412,565.463 616.412,565.377 616.412,565.289 616.498,564.771 616.584,564.34 616.498,564.34 616.498,564.254 616.412,564.254
616.412,564.166 616.412,564.08 616.498,564.08 616.498,563.993 616.498,564.08 616.584,564.08 616.584,563.993 616.584,564.08
616.671,564.08 616.757,564.08 616.757,564.166 616.93,564.166 616.93,564.08 617.017,564.08 617.104,563.993 617.189,563.993
617.189,563.907 617.276,563.907 617.362,563.907 617.448,563.907 617.448,563.821 617.535,563.821 617.621,563.907
617.708,563.821 617.794,563.821 617.794,563.734 617.88,563.734 617.967,563.648 617.88,563.562 617.967,563.562 618.053,563.562
618.053,563.476 618.141,563.476 618.227,563.476 618.313,563.476 618.399,563.562 618.485,563.562 618.572,563.476
618.744,563.389 618.831,563.389 618.831,563.303 618.917,563.303 619.004,563.217 619.09,563.217 619.09,563.303 619.09,563.389
619.09,563.476 619.09,563.562 619.176,563.648 619.263,563.734 619.35,563.734 619.35,563.648 619.437,563.648 619.437,563.562
619.608,563.476 619.695,563.389 619.868,563.303 619.868,563.217 620.04,563.129 620.127,563.043 620.213,563.217
620.386,563.129 620.646,562.871 620.818,562.784 620.904,562.871 620.991,562.957 621.077,562.871 621.25,562.784
621.423,562.611 621.25,562.18 621.164,562.006 621.077,561.834 621.25,561.748 621.423,561.92 621.509,561.834 621.509,561.748
621.682,561.574 621.769,561.574 621.941,561.574 621.941,561.661 622.028,561.661 622.114,561.661 622.114,561.574
622.028,561.488 622.028,561.401 621.941,561.229 622.114,561.229 622.2,561.229 622.373,561.229 622.373,561.315 622.373,561.401
622.46,561.488 622.46,561.574 622.546,561.574 622.632,561.574 622.719,561.574 622.805,561.574 622.893,561.574 622.979,561.574
622.893,561.661 622.893,561.748 622.893,561.834 622.805,561.92 622.805,562.094 622.893,562.18 622.979,562.18 623.064,562.18
623.237,562.266 623.324,562.266 623.41,562.353 623.41,562.438 623.41,562.353 623.496,562.266 623.583,562.006 623.669,561.92
623.842,561.661 624.016,561.488 624.102,561.488 624.447,561.488 624.533,561.401 624.706,561.229 624.792,561.143
624.879,560.969 624.965,560.969 625.052,560.797 625.052,560.711 625.138,560.711 625.225,560.711 625.225,560.625
625.225,560.537 625.312,560.625 625.57,560.625 625.656,560.451 625.829,560.192 626.088,559.76 626.088,559.674 626.175,559.502
626.348,559.155 626.435,559.155 626.435,558.982 626.607,558.81 626.607,558.465 626.607,558.377 626.607,558.291
626.607,558.205 626.607,558.118 626.521,558.118 626.521,558.032 626.521,557.859 626.521,557.773 626.607,557.773
626.693,557.773 626.78,557.773 626.866,557.773 626.952,557.773 626.952,557.859 627.039,557.859 627.212,557.859
627.298,557.945 627.384,557.945 627.384,558.032 627.471,558.032 627.557,558.032 627.645,558.118 627.73,558.118
627.816,558.118 627.903,558.118 627.989,558.205 628.076,558.205 628.162,558.205 628.248,558.205 628.335,558.205
628.421,558.118 628.508,558.118 628.594,558.118 628.68,558.032 628.768,558.032 628.854,557.945 628.94,557.945 629.026,557.859
629.112,557.773 629.199,557.773 629.285,557.773 629.372,557.687 629.458,557.687 629.544,557.601 629.631,557.601
629.717,557.601 629.804,557.601 629.891,557.514 629.977,557.514 630.063,557.514 630.149,557.514 630.236,557.514
630.322,557.514 630.495,557.514 630.581,557.514 630.667,557.514 630.754,557.514 630.84,557.514 630.927,557.514
631.101,557.514 631.187,557.514 631.272,557.514 631.359,557.514 631.445,557.514 631.532,557.514 631.618,557.514
631.704,557.428 631.791,557.428 631.877,557.428 631.964,557.428 632.05,557.342 632.136,557.342 632.136,557.254
632.223,557.254 632.31,557.168 632.396,557.168 632.396,557.082 632.482,557.082 632.568,557.082 632.568,556.996
632.654,556.996 632.741,556.996 632.914,556.909 632.828,556.909 632.914,556.909 633.087,556.909 633.087,556.822
633.173,556.822 633.26,556.822 633.346,556.822 633.432,556.822 633.52,556.822 633.605,556.909 633.692,556.909 633.778,556.909
633.864,556.909 633.951,556.996 634.037,556.996 634.124,556.996 634.21,556.996 634.296,557.082 634.383,557.082 "/>
<g clip-path="url(#SVGID_13_)">
<defs>
<rect id="SVGID_11_" x="527.783" y="542.11" width="222.894" height="110.551"/>
</defs>
<clipPath id="SVGID_14_">
<use xlink:href="#SVGID_11_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_14_)">
<text transform="matrix(1 0 0 1 760.3535 736.5332)" fill="#231F20" font-family="'Arial-BoldMT'" font-size="10.1951"> </text>
</g>
</g>
<g clip-path="url(#SVGID_13_)">
<defs>
<rect id="SVGID_10_" x="527.783" y="542.11" width="222.894" height="110.551"/>
</defs>
<clipPath id="SVGID_15_">
<use xlink:href="#SVGID_10_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_15_)">
<text transform="matrix(1 0 0 1 788.6924 751.8262)" fill="#231F20" font-family="'ArialMT'" font-size="8.3807"> </text>
</g>
</g>
<g clip-path="url(#SVGID_13_)">
<defs>
<rect id="SVGID_9_" x="527.783" y="542.11" width="222.894" height="110.551"/>
</defs>
<clipPath id="SVGID_16_">
<use xlink:href="#SVGID_9_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_16_)">
<text transform="matrix(1 0 0 1 788.6924 768.1553)" fill="#231F20" font-family="'ArialMT'" font-size="8.3807"> </text>
</g>
</g>
<g clip-path="url(#SVGID_13_)">
<defs>
<rect id="SVGID_8_" x="527.783" y="542.11" width="222.894" height="110.551"/>
</defs>
<clipPath id="SVGID_17_">
<use xlink:href="#SVGID_8_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_17_)">
<text transform="matrix(1 0 0 1 548.2422 749.9248)" fill="#231F20" font-family="'ArialMT'" font-size="8.3807"> </text>
</g>
</g>
<g clip-path="url(#SVGID_13_)">
<defs>
<rect id="SVGID_7_" x="527.783" y="542.11" width="222.894" height="110.551"/>
</defs>
<clipPath id="SVGID_18_">
<use xlink:href="#SVGID_7_" overflow="visible"/>
</clipPath>
<g clip-path="url(#SVGID_18_)">
<text transform="matrix(1 0 0 1 548.2422 766.2539)" fill="#231F20" font-family="'ArialMT'" font-size="8.3807"> </text>
</g>
<g clip-path="url(#SVGID_18_)">
<text transform="matrix(1 0 0 1 521.2822 783.1914)" fill="#231F20" font-family="'ArialMT'" font-size="8.3807"> </text>
</g>
</g>
<g clip-path="url(#SVGID_13_)">
<defs>
<rect id="SVGID_6_" width="790.977" height="975.701"/>
</defs>
<clipPath id="SVGID_19_">
<use xlink:href="#SVGID_6_" overflow="visible"/>
</clipPath>
<line clip-path="url(#SVGID_19_)" fill="none" stroke="#231F20" stroke-width="2" x1="7.056" y1="1.002" x2="765.409" y2="1.002"/>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 537.5684 30.6113)"><tspan x="0" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">N</tspan><tspan x="4.219" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">a</tspan><tspan x="7.261" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">t</tspan><tspan x="9.354" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">i</tspan><tspan x="10.81" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">o</tspan><tspan x="14.319" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">na</tspan><tspan x="20.93" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan><tspan x="22.405" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5"> </tspan><tspan x="23.38" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">le</tspan><tspan x="28.054" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="31.057" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="34.254" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 675.2061 31.1055)"><tspan x="0" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">Su</tspan><tspan x="6.656" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">b</tspan><tspan x="10.387" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">-</tspan><tspan x="12.435" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">ci</tspan><tspan x="16.737" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">t</tspan><tspan x="18.882" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">y</tspan><tspan x="21.879" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5"> </tspan><tspan x="22.854" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan><tspan x="24.322" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="27.521" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="30.523" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="33.722" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan></text>
</g>
<rect x="658.139" y="24.103" clip-path="url(#SVGID_13_)" fill="#A5B522" width="14.173" height="8.504"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 614.7793 31.1084)"><tspan x="0" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">C</tspan><tspan x="3.692" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">i</tspan><tspan x="5.147" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">t</tspan><tspan x="7.3" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">y</tspan><tspan x="10.296" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5"> </tspan><tspan x="11.271" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">le</tspan><tspan x="15.944" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="18.947" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="22.145" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan></text>
</g>
<rect x="597.874" y="24.103" clip-path="url(#SVGID_13_)" fill="#D1324B" width="14.173" height="8.504"/>
<rect x="520.98" y="24.103" clip-path="url(#SVGID_13_)" fill="#0081C5" width="14.173" height="8.504"/>
<rect x="9.537" y="549.402" clip-path="url(#SVGID_13_)" fill="#626366" width="14.173" height="8.504"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 27.0371 555.6191)"><tspan x="0" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">E</tspan><tspan x="3.14" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">x</tspan><tspan x="5.986" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="9.185" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">c</tspan><tspan x="12.031" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">ut</tspan><tspan x="17.647" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">i</tspan><tspan x="19.103" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="22.106" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 100.1685 555.6191)"><tspan x="0" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">L</tspan><tspan x="2.918" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan><tspan x="6.116" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">g</tspan><tspan x="9.652" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">is</tspan><tspan x="13.617" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">l</tspan><tspan x="15.093" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">a</tspan><tspan x="18.135" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">t</tspan><tspan x="20.228" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">i</tspan><tspan x="21.684" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">v</tspan><tspan x="24.687" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="6.5">e</tspan></text>
</g>
<rect x="83.021" y="549.402" clip-path="url(#SVGID_13_)" fill="none" stroke="#231F20" width="14.173" height="8.504"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 6.583 76.4917)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="7.392" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="14.322" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">VE</tspan><tspan x="27.887" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">RN</tspan><tspan x="42.545" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="49.657" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">NC</tspan><tspan x="64.161" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="70.825" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="73.471" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="80.471" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 93.6069 76.4917)" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 100.8872 76.4917)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="7.63" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">CT</tspan><tspan x="21.251" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="28.881" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="36.147" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan></text>
</g>
<rect x="80.771" y="91.426" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="62.362" height="396.85"/>
<rect x="12.74" y="91.426" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="62.362" height="396.85"/>
<rect x="216.834" y="91.426" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="62.362" height="396.85"/>
<rect x="284.866" y="91.426" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="62.362" height="396.85"/>
<rect x="148.803" y="91.426" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="62.362" height="396.85"/>
<rect x="420.93" y="91.426" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="62.361" height="396.85"/>
<rect x="352.897" y="91.426" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="62.362" height="396.85"/>
<rect x="7.32" y="111.518" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="481.39" height="146.402"/>
<rect x="7.32" y="270.258" clip-path="url(#SVGID_13_)" fill="none" stroke="#D1324B" stroke-miterlimit="10" width="481.39" height="146.402"/>
<rect x="7.07" y="429.054" clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" stroke-miterlimit="10" width="481.39" height="59.028"/>
<rect x="13.24" y="171.968" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="21.007"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 16.0073 181.1353)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">W</tspan><tspan x="5.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="9.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="13.248" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">K &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 16.0073 189.1353)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">PE</tspan><tspan x="7.776" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.984" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="16.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="22.279" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.487" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
</g>
<rect x="13.24" y="171.968" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="21.007"/>
<rect x="353.397" y="138.338" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="13.779"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 356.165 147.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">DEFE</tspan><tspan x="15.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="19.504" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="23.552" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="353.397" y="138.338" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="13.779"/>
<rect x="353.397" y="173.96" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="13.016"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 356.165 183.1274)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">J</tspan><tspan x="3.888" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="16.08" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="18.231" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="22.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="353.397" y="173.96" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="13.016"/>
<rect x="421.43" y="204.139" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.361" height="29.795"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 213.3066)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="7.575" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">RE</tspan><tspan x="15.464" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="17.616" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="21.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 221.3066)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.08" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="13.655" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="19.256" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="23.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NW</tspan><tspan x="32.712" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="36.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="40.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="43.711" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="47.447" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 229.3066)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="4.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="11.063" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="13.216" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="17.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="421.43" y="204.139" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.361" height="29.795"/>
<rect x="353.397" y="155.952" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="14.173"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 356.165 165.1196)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.328" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.352" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="13.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan><tspan x="19.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="23.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="30.728" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="32.879" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="36.927" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="353.397" y="155.952" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="14.173"/>
<rect x="421.43" y="154.329" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.361" height="12.346"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 163.4971)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="8.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="12.192" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.472" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="22.312" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan><tspan x="27.991" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="32.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="39.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="41.207" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="45.255" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="421.43" y="154.329" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.361" height="12.346"/>
<rect x="352.897" y="342.75" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="51.982"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 351.418)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.608" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="15.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.928" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="26.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="29.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="31.735" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="35.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 359.418)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="9.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="13.088" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="17.24" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="21.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="25.208" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="29.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="33.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 367.418)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NNI</tspan><tspan x="22.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 375.418)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="3.944" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="12.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="16.384" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="20.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="24.527" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="26.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="30.591" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y / </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 383.418)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.608" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="15.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.928" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="26.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="29.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="31.735" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="35.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 391.418)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">BR</tspan><tspan x="8.192" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="10.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="14.616" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="18.672" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="22.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="352.897" y="295.579" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="43.963"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 304.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="5.616" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="9.248" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan><tspan x="13.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="17.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="21.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">’</tspan><tspan x="23.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S </tspan><tspan x="29.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="33.295" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FF</tspan><tspan x="40.335" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="42.487" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="46.535" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 312.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="7.576" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="13.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="17.776" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="21.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="25.184" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="27.335" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="31.367" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="33.471" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="37.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 320.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="8.168" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="10.272" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="15.824" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E / </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 328.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="5.552" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="9.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">TR</tspan><tspan x="17.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="21.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="25.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="29.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">LI</tspan><tspan x="34.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="38.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="42.495" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.165 336.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.088" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="13.647" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="17.696" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="148.803" y="295.578" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="20.384"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 151.0703 304.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan><tspan x="38.343" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="45.919" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 151.0703 312.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="11.608" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="15.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.928" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
</g>
<rect x="80.771" y="311.617" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="12.143"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 83.0386 320.2847)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NNI</tspan><tspan x="22.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
</g>
<rect x="421.43" y="170.509" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.361" height="29.795"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 179.6777)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.08" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">MMU</tspan><tspan x="23.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="27.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IT</tspan><tspan x="33.6" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="35.703" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="39.575" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 187.6777)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.407" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.479" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="11.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 195.6777)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="4.231" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ER</tspan><tspan x="20.087" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="24.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="29.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="33.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="37.823" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 465.6768 195.6777)" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8"> </text>
</g>
<rect x="421.43" y="170.509" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.361" height="29.795"/>
<rect x="13.24" y="138.338" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="29.795"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 16.0073 147.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="4.072" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.808" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ES</tspan><tspan x="26.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="31.031" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">, </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 16.0073 155.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="6.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="10.504" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="14.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="18.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="21.888" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="25.624" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="31.799" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 16.0073 163.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="4.12" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">K</tspan><tspan x="8.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="10.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="13.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="17.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
</g>
<rect x="13.24" y="138.338" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="29.795"/>
<rect x="217.265" y="155.243" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="20.079"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 220.0322 164.4106)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.032" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.368" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="15.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="19.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="23.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="27.423" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">, </tspan><tspan x="31.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="36.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ED</tspan><tspan x="44.807" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="46.975" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 220.0322 172.4106)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">&amp; </tspan><tspan x="7.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="11.272" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="15.36" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.384" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="23.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
</g>
<rect x="217.265" y="155.243" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="20.079"/>
<rect x="217.265" y="138.338" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="13.07"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 220.0322 147.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ED</tspan><tspan x="7.992" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="16.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="20.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="23.848" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="30.023" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
</g>
<rect x="217.265" y="138.338" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="13.07"/>
<rect x="81.271" y="138.338" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="29.795"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 84.0386 147.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="8.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="18.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="22.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="32.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="35.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="40.055" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="43.407" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">, </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 84.0386 155.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="3.552" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.624" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="11.648" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D &amp; </tspan><tspan x="25.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="29.12" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="33.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="37.656" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="41.711" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 84.0386 163.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="4.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="7.576" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="10.952" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="17.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="21.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
</g>
<rect x="81.271" y="138.338" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="29.795"/>
<rect x="149.265" y="138.338" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="13.779"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 152.0322 147.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
</g>
<rect x="149.265" y="138.338" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="13.779"/>
<rect x="81.271" y="171.967" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="23.842"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 84.0386 181.1353)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="7.944" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="11.712" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="15.864" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="19.992" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 84.0386 189.1353)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="9.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="15.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="18.872" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="22.607" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan><tspan x="28.367" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="32.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="36.759" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">AN</tspan><tspan x="45.039" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="49.239" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="81.271" y="171.967" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="23.842"/>
<rect x="285.366" y="138.338" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="14.534"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 288.1333 147.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="8.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.256" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="15.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="19.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan></text>
</g>
<rect x="285.366" y="138.338" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="14.534"/>
<rect x="421.43" y="138.338" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.361" height="12.156"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 424.1963 147.5059)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M </tspan><tspan x="11.832" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="15.567" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="19.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="23.607" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="27.655" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="31.783" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="36.096" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="40.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan></text>
</g>
<rect x="421.43" y="138.338" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.361" height="12.156"/>
<rect x="13.24" y="196.809" clip-path="url(#SVGID_13_)" fill="#0081C5" width="61.362" height="21.574"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 16.0073 205.9771)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="4.312" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">K </tspan><tspan x="10.512" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="14.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">X</tspan><tspan x="18.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="22.751" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="26.775" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="30.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 16.0073 213.9771)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="3.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="5.624" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="9.864" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">AN</tspan><tspan x="18.144" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="22.192" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="13.24" y="196.809" clip-path="url(#SVGID_13_)" fill="none" stroke="#0081C5" stroke-miterlimit="10" width="61.362" height="21.574"/>
<rect x="284.866" y="326.594" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="12.947"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 287.1333 335.2622)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.328" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.68" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="16.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="18.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="23.127" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
</g>
<rect x="12.74" y="295.578" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="21.574"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 15.0073 304.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="4.072" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.808" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ES</tspan><tspan x="26.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 15.0073 312.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="7.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ONO</tspan><tspan x="20.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="25.784" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan></text>
</g>
<rect x="216.834" y="295.578" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="13.204"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 219.1016 304.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="4.032" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.368" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="15.104" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="19.416" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="23.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan></text>
</g>
<rect x="284.866" y="295.578" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="13.204"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 287.1333 304.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="8.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.256" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="15.28" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="19.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H &amp; </tspan><tspan x="32.447" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="36.567" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="40.655" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="44.679" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="48.887" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
</g>
<rect x="284.866" y="311.617" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="12.143"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 287.1333 320.2847)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="4.12" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="7.912" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="12.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="15.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="20.056" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="23.824" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="28.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="31.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="35.503" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="41.679" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
</g>
<rect x="80.771" y="295.578" clip-path="url(#SVGID_13_)" fill="#D1324B" width="62.362" height="13.204"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 83.0386 304.2461)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="8.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="18.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="22.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="32.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="35.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="40.055" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 83.606 99.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.264" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">NV</tspan><tspan x="10.71" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="12.126" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="15.786" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="19.878" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="23.712" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">M</tspan><tspan x="28.32" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="31.583" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="35.441" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 83.606 105.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="3.438" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="6.456" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.254" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">NN</tspan><tspan x="17.922" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.338" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="23.166" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">G</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 15.5718 99.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.174" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="7.026" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="11.118" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.952" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="19.044" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">M</tspan><tspan x="23.688" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 219.668 99.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">ED</tspan><tspan x="7.188" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="11.016" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="14.814" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="18.228" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="21.377" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="22.793" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="26.885" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 219.668 105.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="3.84" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="7.68" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="10.2" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="13.362" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="17.202" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="20.886" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 287.7017 99.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">H</tspan><tspan x="3.882" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="7.26" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="11.058" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="13.578" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="16.728" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">H &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 287.7017 105.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="3.504" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="7.59" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="11.442" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">IA</tspan><tspan x="16.668" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">L </tspan><tspan x="20.862" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="24.342" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="27.605" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="31.218" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">V</tspan><tspan x="34.806" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="36.221" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="40.073" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="43.325" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 151.5078 99.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="1.416" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="5.25" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">F</tspan><tspan x="8.304" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="12.078" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="15.822" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="19.278" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.428" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="26.1" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="29.928" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="33.779" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="36.941" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="40.781" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="44.465" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 151.5078 105.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="3.15" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="6.924" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.722" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.538" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="18.018" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="21.486" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="25.578" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="29.226" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 423.7637 99.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="3.973" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="7.122" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">H</tspan><tspan x="11.004" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="14.268" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 355.73 99.0601)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="3.48" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="6.654" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="10.494" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="14.334" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="18.024" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.458" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.74" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 188.7891 442.3062)"><tspan x="0" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">3</tspan><tspan x="6.524" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">3 L</tspan><tspan x="22.414" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="29.246" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="36.357" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="43.666" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="50.497" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N </tspan><tspan x="61.319" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">B</tspan><tspan x="68.361" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="75.193" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="82.263" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="89.081" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="96.486" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">GH</tspan><tspan x="110.948" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 169.959 283.5039)"><tspan x="0" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="7.14" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="14.126" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="20.775" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="27.02" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="33.333" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="39.717" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R L</tspan><tspan x="56.181" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="63.013" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="70.125" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="77.433" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="84.265" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N </tspan><tspan x="95.086" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="101.75" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="109.212" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">TH</tspan><tspan x="122.89" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="129.722" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="136.722" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">I</tspan><tspan x="140.292" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="146.927" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">Y</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 179.9409 125.7661)"><tspan x="0" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="7.336" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">K </tspan><tspan x="18.186" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="25.045" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="31.43" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">NT</tspan><tspan x="44.939" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="52.121" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="59.009" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L </tspan><tspan x="68.333" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="75.529" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="82.305" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">V</tspan><tspan x="89.052" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="95.436" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">RN</tspan><tspan x="109.534" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="119.026" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="125.41" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="132.606" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 209.9951 135.0039)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">1</tspan><tspan x="2.688" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">6 </tspan><tspan x="8.608" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">o</tspan><tspan x="12.944" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">f </tspan><tspan x="17.16" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">2</tspan><tspan x="21.016" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">4 </tspan><tspan x="26.936" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">D</tspan><tspan x="32.096" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">e</tspan><tspan x="36.288" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">p</tspan><tspan x="40.615" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">a</tspan><tspan x="44.775" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">r</tspan><tspan x="48.431" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">tm</tspan><tspan x="57.407" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">e</tspan><tspan x="61.599" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">n</tspan><tspan x="65.663" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">t</tspan><tspan x="68.367" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="8">s</tspan></text>
</g>
<rect x="80.771" y="470.135" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.362" height="12.756"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 83.0386 478.8027)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.008" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="7.536" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.592" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">NNI</tspan><tspan x="22.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
</g>
<rect x="420.93" y="454.297" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.361" height="12.189"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 423.1963 462.9648)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.407" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.479" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="11.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan><tspan x="20.911" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="25.031" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="28.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.936" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="36.911" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="39.063" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="43.111" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="46.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
</g>
<rect x="80.771" y="454.297" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.362" height="12.756"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 83.0386 462.9648)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.768" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="8.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="12.024" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.128" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="18.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="22.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="26.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="32.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="35.815" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="40.055" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan></text>
</g>
<rect x="12.74" y="454.704" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.362" height="20.384"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 15.0073 463.3721)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="4.072" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="8.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="12.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IN</tspan><tspan x="18.808" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ES</tspan><tspan x="26.896" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 15.0073 471.3721)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="3.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="7.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ONO</tspan><tspan x="20.152" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="25.784" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan></text>
</g>
<rect x="148.803" y="454.297" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.362" height="19.842"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 151.0703 462.9648)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="3.408" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="7.48" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="11.528" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.583" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 169.9502 462.9648)" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8"> </text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 151.0703 470.9648)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.456" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.664" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan></text>
</g>
<rect x="284.866" y="470.135" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.362" height="12.189"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 287.1333 478.8027)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">SO</tspan><tspan x="8.264" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="12.296" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="14.464" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="18.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L </tspan><tspan x="23.848" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="27.967" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="31.735" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="35.871" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">V</tspan><tspan x="39.847" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="41.999" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="46.047" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="49.919" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan></text>
</g>
<rect x="284.866" y="454.297" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.362" height="12.189"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 287.1333 462.9648)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="4.328" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.68" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="16.8" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="18.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="23.127" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan></text>
</g>
<rect x="216.834" y="454.297" clip-path="url(#SVGID_13_)" fill="#A5B522" width="62.362" height="13.57"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 219.1016 462.9648)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">ED</tspan><tspan x="7.992" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="12.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="16.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="20.112" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="23.848" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">IO</tspan><tspan x="30.023" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(-6.123234e-017 -1 1 -6.123234e-017 246.4409 913.502)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="3.779" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="7.133" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="10.801" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="15.267" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="18.906" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="22.687" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</tspan></text>
</g>
<line clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="116.023" y1="756.326" x2="116.023" y2="928.201"/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" points="
110.299,762.482 116.023,756.326 121.747,762.482 "/>
<line clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="204.868" y1="757.646" x2="204.868" y2="924.193"/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" points="
199.145,763.803 204.869,757.647 210.591,763.803 "/>
<line clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="309.918" y1="642.94" x2="309.918" y2="924.366"/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" points="
304.194,649.097 309.918,642.941 315.642,649.097 "/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(-6.123234e-017 -1 1 -6.123234e-017 201.3135 800.1611)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="3.78" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="7.133" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="10.801" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="15.267" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="18.907" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="22.687" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(-6.123234e-017 -1 1 -6.123234e-017 113.1904 800.1611)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="3.78" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="7.133" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="10.801" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="15.267" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="18.907" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="22.687" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</tspan></text>
</g>
<line clip-path="url(#SVGID_13_)" fill="none" stroke="#76A4D7" stroke-width="3" stroke-miterlimit="10" x1="139.549" y1="610.764" x2="195.161" y2="610.764"/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#76A4D7" stroke-width="3" stroke-miterlimit="10" points="
145.705,616.488 139.549,610.764 145.705,605.041 "/>
<line clip-path="url(#SVGID_13_)" fill="none" stroke="#EBA6A1" stroke-width="3" stroke-miterlimit="10" x1="161.247" y1="726.338" x2="182.697" y2="726.338"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(-6.123234e-017 -1 1 -6.123234e-017 124.4551 805.6279)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">4 </tspan><tspan x="5.18" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y</tspan><tspan x="9.303" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="13.216" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">A</tspan><tspan x="17.612" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R </tspan><tspan x="23.407" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="27.048" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">ER</tspan><tspan x="35.098" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(-6.123234e-017 -1 1 -6.123234e-017 259.1772 920.0986)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">4 </tspan><tspan x="5.18" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y</tspan><tspan x="9.303" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="13.216" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">A</tspan><tspan x="17.612" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R </tspan><tspan x="23.407" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="27.048" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">ER</tspan><tspan x="35.098" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(-6.123234e-017 -1 1 -6.123234e-017 213.3057 807.6787)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">4 </tspan><tspan x="5.18" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y</tspan><tspan x="9.303" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="13.216" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">A</tspan><tspan x="17.612" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R </tspan><tspan x="23.407" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="27.048" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">ER</tspan><tspan x="35.098" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan></text>
</g>
<line clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="250.537" y1="869.19" x2="250.537" y2="924.367"/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" points="
244.813,875.346 250.538,869.19 256.26,875.346 "/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(-6.123234e-017 -1 1 -6.123234e-017 307.083 684.8945)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="3.779" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="7.133" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="10.801" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="15.266" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="18.906" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="22.686" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</tspan></text>
</g>
<line clip-path="url(#SVGID_13_)" fill="none" stroke="#CDD27A" stroke-width="3" stroke-miterlimit="10" x1="163.551" y1="841.21" x2="182.798" y2="841.21"/>
<polyline clip-path="url(#SVGID_13_)" fill="none" stroke="#CDD27A" stroke-width="3" stroke-miterlimit="10" points="
169.708,846.934 163.552,841.209 169.708,835.486 "/>
<rect x="183.198" y="811.615" clip-path="url(#SVGID_13_)" fill="#FFFFFF" width="293.982" height="55.394"/>
<rect x="183.198" y="811.615" clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" width="293.982" height="55.394"/>
<rect x="7.923" y="811.615" clip-path="url(#SVGID_13_)" fill="#A5B522" width="152.825" height="55.394"/>
<rect x="7.923" y="811.615" clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" width="152.825" height="55.394"/>
<rect x="7.556" y="698.129" clip-path="url(#SVGID_13_)" fill="#D1324B" width="153.278" height="55.392"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 35.5068 712.6641)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="9.618" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="15.708" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">Y</tspan><tspan x="22.386" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="29.217" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R </tspan><tspan x="39.913" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="46.745" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">F L</tspan><tspan x="62.159" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="68.991" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="76.103" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="83.411" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="90.242" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan></text>
</g>
<rect x="7.556" y="698.129" clip-path="url(#SVGID_13_)" fill="none" stroke="#D1324B" width="153.278" height="55.392"/>
<rect x="7.923" y="924.866" clip-path="url(#SVGID_13_)" fill="#FFFFFF" width="265.163" height="18.843"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 45.5859 939.4014)"><tspan x="0" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="7.336" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">K</tspan><tspan x="14.7" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">, </tspan><tspan x="21.42" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="27.79" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U &amp; </tspan><tspan x="51.352" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="58.295" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="65.127" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="74.633" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="84.223" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="91.055" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">NW</tspan><tspan x="107.14" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="113.79" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="120.678" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="125.704" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="132.018" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">H </tspan><tspan x="143.007" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="149.868" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">IT</tspan><tspan x="159.751" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">IZ</tspan><tspan x="169.327" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="175.711" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="182.851" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan></text>
</g>
<rect x="7.923" y="924.866" clip-path="url(#SVGID_13_)" fill="none" stroke="#626366" width="265.163" height="18.843"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 55.3599 750.9922)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</tspan><tspan x="4.543" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">I</tspan><tspan x="6.16" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R</tspan><tspan x="10.43" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="14.098" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="18.563" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="22.204" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="24.976" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y </tspan><tspan x="30.576" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="34.355" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="37.708" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="41.376" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="45.842" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</tspan><tspan x="49.482" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="53.262" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</tspan></text>
</g>
<rect x="183.198" y="697.93" clip-path="url(#SVGID_13_)" fill="#FFFFFF" width="295.399" height="56.814"/>
<rect x="183.198" y="697.93" clip-path="url(#SVGID_13_)" fill="none" stroke="#E08580" width="295.399" height="56.814"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 310.522 752.4102)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">2</tspan><tspan x="3.598" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">5 </tspan><tspan x="8.638" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan><tspan x="13.972" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="17.752" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan><tspan x="23.093" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">B</tspan><tspan x="27.391" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="31.17" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R</tspan><tspan x="35.385" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">S</tspan></text>
</g>
<rect x="7.806" y="583.926" clip-path="url(#SVGID_13_)" fill="#0081C5" width="129.04" height="56.312"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 28.731 598.46)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">P</tspan><tspan x="6.804" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="13.79" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">I</tspan><tspan x="17.248" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="26.753" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E </tspan><tspan x="36.833" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="46.325" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">IN</tspan><tspan x="56.867" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">I</tspan><tspan x="60.409" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="67.409" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="73.723" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="80.106" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan></text>
</g>
<rect x="7.806" y="583.926" clip-path="url(#SVGID_13_)" fill="none" stroke="#6484C2" width="129.04" height="56.312"/>
<rect x="284.007" y="924.866" clip-path="url(#SVGID_13_)" fill="#FFFFFF" width="193.173" height="18.843"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 294.2202 939.4014)"><tspan x="0" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="7.336" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">K &amp; </tspan><tspan x="30.702" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="37.646" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="44.478" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="53.983" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="63.573" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="70.405" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">NW</tspan><tspan x="86.491" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="93.141" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="100.028" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="105.054" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="111.368" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">H </tspan><tspan x="125.915" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="132.774" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">IT</tspan><tspan x="142.658" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">IZ</tspan><tspan x="152.233" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="158.618" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="165.757" y="0" fill="#626366" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan></text>
</g>
<rect x="284.007" y="924.866" clip-path="url(#SVGID_13_)" fill="none" stroke="#626366" width="193.173" height="18.843"/>
<rect x="341.581" y="583.926" clip-path="url(#SVGID_13_)" fill="#FFFFFF" width="135.599" height="56.312"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 364.8726 598.46)"><tspan x="0" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">H</tspan><tspan x="7.364" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="14.182" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="21.56" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="28.56" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E </tspan><tspan x="38.639" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="45.471" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">F L</tspan><tspan x="60.885" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="67.717" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="74.703" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="82.01" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan></text>
</g>
<rect x="341.581" y="583.926" clip-path="url(#SVGID_13_)" fill="none" stroke="#6484C2" width="135.599" height="56.312"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 386.0015 642.4053)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="9">~</text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 390.5762 638.4053)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">7</tspan><tspan x="3.563" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">7</tspan><tspan x="6.972" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">5 </tspan><tspan x="12.012" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan><tspan x="17.346" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="21.126" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan><tspan x="26.467" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">B</tspan><tspan x="30.765" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</tspan><tspan x="34.545" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R</tspan><tspan x="38.759" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">S</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 320.6533 865.1143)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="2.338" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">,</tspan><tspan x="4.221" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">97</tspan><tspan x="11.207" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">5 </tspan><tspan x="16.247" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="20.699" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">O</tspan><tspan x="25.438" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">U</tspan><tspan x="29.882" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">N</tspan><tspan x="34.328" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</tspan><tspan x="38.793" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">I</tspan><tspan x="40.41" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="43.763" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="46.956" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">O</tspan><tspan x="51.701" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R</tspan><tspan x="55.915" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">S</tspan></text>
</g>
<rect x="195.606" y="583.926" clip-path="url(#SVGID_13_)" fill="#FFFFFF" width="133.718" height="56.814"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 207.9917 598.46)"><tspan x="0" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">H</tspan><tspan x="7.364" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="14.182" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="21.56" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="28.56" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E </tspan><tspan x="38.639" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="45.471" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">F </tspan><tspan x="55.117" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="62.061" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="68.893" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="78.398" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="87.988" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="94.82" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="101.96" y="0" fill="#0081C5" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan></text>
</g>
<rect x="195.606" y="583.926" clip-path="url(#SVGID_13_)" fill="none" stroke="#6484C2" width="133.718" height="56.814"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 250.377 637.5625)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">6</tspan><tspan x="3.654" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">5</tspan><tspan x="7.182" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0 </tspan><tspan x="12.481" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan><tspan x="17.822" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">P</tspan><tspan x="21.791" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">s</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<defs>
<rect id="SVGID_5_" width="790.977" height="975.701"/>
</defs>
<clipPath id="SVGID_20_">
<use xlink:href="#SVGID_5_" overflow="visible"/>
</clipPath>
<g opacity="0.3" clip-path="url(#SVGID_20_)">
<g>
<defs>
<rect id="SVGID_4_" x="113.539" y="810.128" width="5" height="58.381"/>
</defs>
<clipPath id="SVGID_21_">
<use xlink:href="#SVGID_4_" overflow="visible"/>
</clipPath>
<line clip-path="url(#SVGID_21_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="116.039" y1="811.128" x2="116.039" y2="867.509"/>
</g>
</g>
<g opacity="0.25" clip-path="url(#SVGID_20_)">
<g>
<defs>
<rect id="SVGID_3_" x="202.372" y="810.128" width="5" height="58.381"/>
</defs>
<clipPath id="SVGID_22_">
<use xlink:href="#SVGID_3_" overflow="visible"/>
</clipPath>
<line clip-path="url(#SVGID_22_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="204.872" y1="811.128" x2="204.872" y2="867.509"/>
</g>
</g>
<g opacity="0.25" clip-path="url(#SVGID_20_)">
<g>
<defs>
<rect id="SVGID_2_" x="307.452" y="810.128" width="5" height="58.381"/>
</defs>
<clipPath id="SVGID_23_">
<use xlink:href="#SVGID_2_" overflow="visible"/>
</clipPath>
<line clip-path="url(#SVGID_23_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="309.952" y1="811.128" x2="309.952" y2="867.509"/>
</g>
</g>
<g opacity="0.25" clip-path="url(#SVGID_20_)">
<g>
<defs>
<rect id="SVGID_1_" x="307.452" y="697.422" width="5" height="57.844"/>
</defs>
<clipPath id="SVGID_24_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<line clip-path="url(#SVGID_24_)" fill="none" stroke="#929497" stroke-width="3" stroke-miterlimit="10" x1="309.952" y1="698.423" x2="309.952" y2="754.266"/>
</g>
</g>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 22.8838 825.3662)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">2</tspan><tspan x="6.51" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">8 </tspan><tspan x="16.464" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="22.175" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="28.825" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="35.713" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="42.881" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="49.265" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="56.335" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="63.195" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">/</tspan><tspan x="69.634" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">5 </tspan><tspan x="79.616" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="89.234" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="95.324" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">Y</tspan><tspan x="102.002" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="108.834" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="115.904" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 151.3667 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 148.2163 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">/</text>
<text transform="matrix(1 0 0 1 143.8345 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</text>
<text transform="matrix(1 0 0 1 140.0542 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 136.4146 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</text>
<text transform="matrix(1 0 0 1 131.9482 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</text>
<text transform="matrix(1 0 0 1 128.2803 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 124.9204 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</text>
<text transform="matrix(1 0 0 1 121.1401 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 119.4883 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 115.5684 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y</text>
<text transform="matrix(1 0 0 1 112.7964 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</text>
<text transform="matrix(1 0 0 1 109.1563 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</text>
<text transform="matrix(1 0 0 1 104.6904 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</text>
<text transform="matrix(1 0 0 1 101.0225 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 96.7524 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R</text>
<text transform="matrix(1 0 0 1 95.1353 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">I</text>
<text transform="matrix(1 0 0 1 90.5923 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</text>
<text transform="matrix(1 0 0 1 88.9399 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 85.4399 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">4</text>
<text transform="matrix(1 0 0 1 82.6895 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">/</text>
<text transform="matrix(1 0 0 1 78.3071 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</text>
<text transform="matrix(1 0 0 1 74.5273 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 70.8872 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</text>
<text transform="matrix(1 0 0 1 66.4209 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</text>
<text transform="matrix(1 0 0 1 62.7529 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 59.3931 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</text>
<text transform="matrix(1 0 0 1 55.6128 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 53.9609 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 50.041 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y</text>
<text transform="matrix(1 0 0 1 47.269 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</text>
<text transform="matrix(1 0 0 1 43.6289 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">T</text>
<text transform="matrix(1 0 0 1 39.1631 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">C</text>
<text transform="matrix(1 0 0 1 35.4951 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">E</text>
<text transform="matrix(1 0 0 1 31.2251 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R</text>
<text transform="matrix(1 0 0 1 29.6079 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">I</text>
<text transform="matrix(1 0 0 1 25.0649 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D</text>
<text transform="matrix(1 0 0 1 20.6201 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">N</text>
<text transform="matrix(1 0 0 1 19.0029 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">I</text>
<text transform="matrix(1 0 0 1 17.3511 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7"> </text>
<text transform="matrix(1 0 0 1 13.8511 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">8</text>
<text transform="matrix(1 0 0 1 10.2598 856.4355)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">2</text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 40.0239 864.4365)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">1 </tspan><tspan x="3.885" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="7.077" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">O</tspan><tspan x="11.823" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R</tspan><tspan x="16.093" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">D </tspan><tspan x="22.168" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">M</tspan><tspan x="27.523" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">A</tspan><tspan x="31.38" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y</tspan><tspan x="35.251" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">O</tspan><tspan x="39.998" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">R (</tspan><tspan x="48.32" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">RE</tspan><tspan x="56.37" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">P</tspan><tspan x="59.548" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">. </tspan><tspan x="63.041" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">O</tspan><tspan x="67.787" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">N</tspan><tspan x="72.225" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">L</tspan><tspan x="74.997" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">Y</tspan><tspan x="79.071" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">)</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 261.4067 825.8662)"><tspan x="0" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="3.556" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">3</tspan><tspan x="10.052" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">2 </tspan><tspan x="20.258" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">B</tspan><tspan x="27.3" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="34.131" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="41.202" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="48.019" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="55.425" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">G</tspan><tspan x="62.565" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">H </tspan><tspan x="73.555" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="80.499" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="87.316" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">U</tspan><tspan x="94.652" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="101.82" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="108.68" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">I</tspan><tspan x="112.138" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="118.032" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S &amp;</tspan><tspan x="137.673" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="210.124" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 263.7168 839.8662)"><tspan x="0" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="6.944" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="13.776" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="20.762" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">P</tspan><tspan x="27.706" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="34.537" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="41.719" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="47.963" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">TI</tspan><tspan x="57.847" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="64.679" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N </tspan><tspan x="75.5" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="82.333" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">F L</tspan><tspan x="97.746" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="104.578" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="111.69" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="118.998" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="125.83" y="0" fill="#A5B522" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan></text>
</g>
<rect x="183.198" y="811.615" clip-path="url(#SVGID_13_)" fill="none" stroke="#A5B522" width="293.982" height="55.394"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 280.7778 711.9648)"><tspan x="0" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="5.768" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="12.6" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="19.711" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">D</tspan><tspan x="27.02" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="33.852" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N </tspan><tspan x="44.673" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="51.547" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="58.715" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">S</tspan><tspan x="65.715" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">E</tspan><tspan x="72.099" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">M</tspan><tspan x="81.604" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">B</tspan><tspan x="88.534" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">L</tspan><tspan x="93.392" y="0" fill="#D1324B" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">Y</tspan></text>
</g>
<rect x="550.453" y="92.355" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="60.362" height="26.601"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 553.7871 100.4893)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.174" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="7.02" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">ONO</tspan><tspan x="19.044" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">M</tspan><tspan x="23.682" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan><tspan x="26.729" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">,</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 582.084 100.4893)" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6"> </text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 553.7871 106.4893)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="3.264" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">NV</tspan><tspan x="10.71" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="12.126" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="15.779" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">ONM</tspan><tspan x="28.319" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="31.584" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="35.441" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 553.7871 112.4893)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="3.438" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">L</tspan><tspan x="6.456" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.254" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.094" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="17.928" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.344" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="23.172" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">G</tspan></text>
</g>
<rect x="550.453" y="92.355" clip-path="url(#SVGID_13_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="60.362" height="26.601"/>
<rect x="550.453" y="119.956" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="60.362" height="238.356"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 553.7871 128.0903)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="1.416" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">NF</tspan><tspan x="8.31" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="12.078" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="15.821" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="19.271" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.422" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="26.088" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="29.916" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="33.768" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="36.93" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="40.77" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="44.453" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E &amp; </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 553.7871 134.0903)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="3.15" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="6.924" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">A</tspan><tspan x="10.722" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">N</tspan><tspan x="14.538" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="18.023" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">P</tspan><tspan x="21.492" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">O</tspan><tspan x="25.584" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="29.231" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan></text>
</g>
<rect x="550.453" y="119.956" clip-path="url(#SVGID_13_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="60.362" height="238.356"/>
<rect x="550.453" y="359.312" clip-path="url(#SVGID_13_)" fill="#E6E7E8" width="60.362" height="128.893"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 553.7871 367.4468)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">S</tspan><tspan x="3.486" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">E</tspan><tspan x="6.66" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">C</tspan><tspan x="10.5" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">U</tspan><tspan x="14.34" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">R</tspan><tspan x="18.036" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">I</tspan><tspan x="19.47" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">T</tspan><tspan x="22.752" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="6">Y</tspan></text>
</g>
<rect x="550.453" y="359.312" clip-path="url(#SVGID_13_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="60.362" height="128.893"/>
<rect x="611.815" y="473.381" clip-path="url(#SVGID_13_)" fill="#D1324B" width="128.394" height="14.824"/>
<rect x="611.815" y="473.381" clip-path="url(#SVGID_13_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="14.824"/>
<rect x="611.815" y="359.434" clip-path="url(#SVGID_13_)" fill="#D1324B" width="128.394" height="112.947"/>
<rect x="611.815" y="359.434" clip-path="url(#SVGID_13_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="112.947"/>
<rect x="611.815" y="120.421" clip-path="url(#SVGID_13_)" fill="#D1324B" width="128.394" height="238.014"/>
<rect x="611.815" y="120.421" clip-path="url(#SVGID_13_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="238.014"/>
<rect x="611.815" y="92.354" clip-path="url(#SVGID_13_)" fill="#D1324B" width="128.394" height="27.066"/>
<rect x="611.815" y="92.354" clip-path="url(#SVGID_13_)" fill="none" stroke="#FFFFFF" stroke-miterlimit="10" width="128.394" height="27.066"/>
<path clip-path="url(#SVGID_13_)" fill="none" stroke="#231F20" stroke-width="0.5" stroke-linejoin="round" stroke-miterlimit="10" d="
M538.114,487.955h5.419 M538.114,448.32h5.419 M538.114,408.684h5.419 M538.114,369.05h5.419 M538.114,329.415h5.419
M538.114,289.78h5.419 M538.114,250.144h5.419 M538.114,210.51h5.419 M538.114,170.874h5.419 M538.114,131.239h5.419
M538.114,91.605h5.419 M543.533,487.955V91.605"/>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 527.3359 488.0527)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="3.773" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 524.9424 450.7285)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="2.394" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="6.167" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.6758 411.9902)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">20</tspan><tspan x="7.427" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.6758 373.2524)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">30</tspan><tspan x="7.427" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.6123 333.0933)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">4</tspan><tspan x="3.717" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.49" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.8018 293.2915)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">5</tspan><tspan x="3.528" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.301" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.6543 253.4893)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">6</tspan><tspan x="3.668" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.441" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.9414 213.3301)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">7</tspan><tspan x="3.381" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.154" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.6611 173.8784)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">8</tspan><tspan x="3.668" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.441" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 523.627 134.4263)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">9</tspan><tspan x="3.703" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="7.476" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 521.1133 97.6973)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">1</tspan><tspan x="2.394" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="6.216" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">0</tspan><tspan x="9.996" y="0" fill="#231F20" font-family="'BureauGrotesque-FiveOne'" font-size="7">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 613.8662 100.8057)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="4.2" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="8.32" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="12.24" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="15.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="19.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="23.464" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="29.575" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="32.983" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="37.007" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="41.184" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="45.479" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="49.503" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="55.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="59.631" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="64.007" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="67.743" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">H</tspan><tspan x="72.07" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="76.095" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="80.215" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="82.383" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="86.278" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y </tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 613.8662 108.8057)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">(</tspan><tspan x="2.656" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="8.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="11.903" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan><tspan x="15.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="19.88" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="25.991" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="30.048" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="34.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D </tspan><tspan x="40.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="44.487" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="48.703" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="52.823" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="56.591" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="62.143" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">B</tspan><tspan x="66.215" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="69.15" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y</tspan><tspan x="73.335" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">) </tspan><tspan x="77.999" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">7</tspan><tspan x="81.503" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 613.8662 128.8696)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="3.736" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="7.96" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="12.016" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="16.224" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="20.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="24.432" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="28.455" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="32.663" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T </tspan><tspan x="38.344" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">FO</tspan><tspan x="45.919" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R </tspan><tspan x="52.031" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="55.439" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="59.463" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="63.639" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D</tspan><tspan x="67.935" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="71.959" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N </tspan><tspan x="78.143" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">60</tspan><tspan x="86.207" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 613.8662 368.0298)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">P</tspan><tspan x="4.088" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">O</tspan><tspan x="8.111" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">L</tspan><tspan x="11.496" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="13.647" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="17.695" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan><tspan x="23.455" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="27.512" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="31.688" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D </tspan><tspan x="37.903" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">S</tspan><tspan x="42.023" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="45.823" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="49.855" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">U</tspan><tspan x="54.167" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="58.287" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="60.455" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">T</tspan><tspan x="64.351" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y </tspan><tspan x="70.375" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">2</tspan><tspan x="74.255" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">9</tspan><tspan x="78.238" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 613.8662 481.8379)"><tspan x="0" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">F</tspan><tspan x="3.52" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">I</tspan><tspan x="5.624" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="9.744" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E </tspan><tspan x="15.504" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">A</tspan><tspan x="19.56" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="23.735" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">D </tspan><tspan x="29.951" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="33.72" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">M</tspan><tspan x="39.271" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="43.039" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">R</tspan><tspan x="47.191" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">G</tspan><tspan x="51.392" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">E</tspan><tspan x="55.159" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">N</tspan><tspan x="59.383" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">C</tspan><tspan x="63.383" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">Y </tspan><tspan x="69.407" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">4</tspan><tspan x="73.135" y="0" fill="#FFFFFF" font-family="'BureauGrotesque-ThreeSeven'" font-size="8">%</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 6.0557 532.332)"><tspan x="0" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">POL</tspan><tspan x="20.047" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">ITI</tspan><tspan x="34.089" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">C</tspan><tspan x="41.117" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">AL</tspan><tspan x="54.137" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14"> </tspan><tspan x="56.783" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="64.049" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">EP</tspan><tspan x="77.796" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">R</tspan><tspan x="85.062" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">ESE</tspan><tspan x="105.656" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan><tspan x="113.048" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">T</tspan><tspan x="118.676" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">A</tspan><tspan x="124.821" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">TI</tspan><tspan x="135.097" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">O</tspan><tspan x="142.153" y="0" fill="#231F20" font-family="'BureauGrotesque-ThreeSeven'" font-size="14">N</tspan></text>
</g>
<g clip-path="url(#SVGID_13_)">
<text transform="matrix(1 0 0 1 521.0713 14.4258)"><tspan x="0" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">M</tspan><tspan x="6.424" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">u</tspan><tspan x="10.815" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">l</tspan><tspan x="12.68" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">t</tspan><tspan x="15.296" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">i</tspan><tspan x="17.231" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">-</tspan><tspan x="19.823" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">L</tspan><tspan x="23.567" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">e</tspan><tspan x="27.527" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">v</tspan><tspan x="31.295" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">e</tspan><tspan x="35.319" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">l</tspan><tspan x="37.135" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8"> </tspan><tspan x="38.335" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">G</tspan><tspan x="43.567" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">o</tspan><tspan x="47.871" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">v</tspan><tspan x="51.639" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">e</tspan><tspan x="55.646" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">r</tspan><tspan x="58.271" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">n</tspan><tspan x="62.687" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">a</tspan><tspan x="66.511" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">n</tspan><tspan x="70.951" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">c</tspan><tspan x="74.446" y="0" fill="#231F20" font-family="'MyriadPro-Regular'" font-size="8">e</tspan></text>
</g>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment