Skip to content

Instantly share code, notes, and snippets.

@captainelaine
Last active March 14, 2016 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save captainelaine/879ed6a6364d6831ea24 to your computer and use it in GitHub Desktop.
Save captainelaine/879ed6a6364d6831ea24 to your computer and use it in GitHub Desktop.
My Update Plot
Driver wage2015 point2015 Age CareerPoint CareerYear
Fernando Alonso 350 11 35 1778 15
Kimi Raikkonen 180 150 37 1174 15
Sebastian Vettel 280 278 29 1896 9
Lewis Hamilton 250 381 31 1867 9
Jenson Button 100 16 36 1214 16
Nico Rosberg 135 322 31 1209.5 10
Felipe Massa 40 121 35 1071 14
Nico Hulkenberg 40 58 29 290 6
Sergio Perez 40 78 26 266 5
Romain Grosjean 40 51 30 287 7
Pastor Maldonado 40 27 31 76 5
Daniel Ricciardo 15 92 27 360 5
Valtteri Bottas 20 136 27 326 3
Daniil Kvyat 7.5 95 22 103 2
Max Verstappen 2.5 49 19 49 1
Carlos Sainz 2.5 18 22 18 1
Felipe Nasr 2 27 24 27 1
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<link href='https://fonts.googleapis.com/css?family=Ubuntu:300italic,500|Josefin+Sans:400italic' rel='stylesheet' type='text/css'>
<!DOCTYPE html>
<html>
<head>
<title>Formula One World</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<style type = "text/css">
body {
padding: 50px;
font-family: 'Ubuntu',sans-serif;
font-size: 12pt;
text-align: center;
}
button {
margin: 5px;
font-size: 15pt;
padding: 3px;
cursor: pointer;
}
input {
margin: 5px;
font-size: 15pt;
padding: 3px;
}
.mybartooltip {
position: absolute;
z-index: 10;
}
.mybartooltip p {
background-color:rgb(244,239,243);
border: none;
padding: 2px;
font-size: 12px;
}
#chart {
background-color:rgb(252,250,250 );
z-index: -10000px;
}
#menu {
padding: 20px 75px;
}
.labels {
fill: black;
font-size: 10px;
font-family: 'Josefin Sans', sans-serif;
}
.labelsdrivername {
font-size: 10px;
font-family: 'Josefin Sans', sans-serif;
}
.axis {
shape-rendering: crispEdges;
font-size: 10px;
}
.axis path {
fill: none;
stroke: none;
}
.x.axis path {
fill: none;
stroke: white;
stroke-opacity:0;
}
.x.axis line {
stroke: gray;
stroke-opacity: .8;
}
.y.axis path {
stroke: black;
}
.focused {
opacity: 0.9;
}
.unfocused {
opacity: 0.4;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<div class = "intro">
<h1>Formula One World</h1>
<p><em>As below, you can see many different kinds of imformation of drivers who attended the 2015 Season</em></p>
<p><em>You can take a look at different drivers' wage, won points and so on from high to low.</em></p>
<p>Source:<a href = "http://www.crash.net/f1/news/221215/1/f1-2015-driver-salaries-published-but-who-earns-most.html">Crash.Net</a> <a href="https://en.wikipedia.org/wiki/2015_Formula_One_season">Wikipedia-FormulaOne</a></p>
</div>
<div id="menu">
<select>
<option value ="Age">Age of drivers</option>
<option value="wage2015">Wage of 2015(hundred thousand)</option>
<option value="point2015">Points won in 2015</option>
<option value="CareerPoint">Career total won points</option>
<option value ="CareerYear">Career Age</option>
</select>
</div>
<div id="chart">
</div>
<script type="text/javascript">
var fullwidth = 900;
var fullheight = 500;
var margin = {top: 20, right: 50, bottom: 20, left: 100};
var height = fullheight - margin.top - margin.bottom;
var width = fullwidth - margin.left - margin.right;
var vis = d3.select("#chart").append("svg");
var svg = vis
.attr("width", fullwidth)
.attr("height", fullheight)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("g")
.attr("class", "x axis");
svg.append("g")
.attr("class", "xbottom")
var xScale = d3.scale.linear()
.range([0, width]);
var yScale = d3.scale.ordinal()
.rangeRoundBands([0, height], .1);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("top")
.ticks(10)
.innerTickSize([5])
.outerTickSize([5]);
var mybartooltip = d3.select("body")
.append("div")
.attr("class", "mybartooltip");
d3.csv("f1driverwage.csv", function(error, data) {
var column = d3.select("#menu select").property("value");
var dataset = bigfirst(data, column);
console.log(column);
//setup our ui -- requires access to data variable, so inside csv
d3.select("#menu select")
.on("change", function() {
column = d3.select("#menu select").property("value");
dataset = bigfirst(data, column);
redraw(dataset, column);
});
});
function bigfirst(data, column){
data.sort(function(a,b){
return d3.descending(+a[column],+b[column]);
})
redraw(data,column);
}
//get the descending values;
function redraw(data, column) {
var max = d3.max(data, function(d) {return +d[column];});
xScale.domain([0, max]);
yScale.domain(d3.range(data.length));
var bars = svg.selectAll("rect.bar")
.data(data, function (d) {
return d.Driver;
});
bars
.attr("fill", "gray")
.attr("opacity","0.2");
//enter - new bars get set to darkorange when we "redraw."
bars.enter()
.append("rect")
.attr("class", "bar")
.attr("fill", function(d){
if (d.Driver==="Kimi Raikkonen" ||d.Driver==="Sebastian Vettel") {
return "rgb(250,67,52)";
} else if (d.Driver ==="Lewis Hamilton" || d.Driver ==="Nico Rosberg") {
return "rgb(137,141,142)";
} else if (d.Driver === "Felipe Massa" || d.Driver ==="Valtteri Bottas") { return "rgb (51,133,229)";
} else if (d.Driver ==="Fernando Alonso" || d.Driver === "Janson Button") {
return "rgb(248,160,53)";
} else if (d.Driver === "Daniel Ricciardo" || d.Driver ==="Daniil Kvyat") {
return "rgb(172,62,100)";
} else {
return "rgb(184,192,201)";
}
})
.attr("opacity","0.4")
.on("mouseover", mouseoverBar)
.on("mouseout", mouseoutBar);
//exit -- remove ones that aren't in the index set
bars.exit()
.transition()
.duration(300)
.attr("width", 0)
.remove();
//at goes here at the end of exit?
// transition -- move the bars to proper widths and location
bars
.transition()
.duration(500)
.ease("quad")
.attr("width", function(d) {
return xScale(+d[column]);
})
.attr("height", yScale.rangeBand())//TODO: In an ordinal scale bar chart, what goes here?)
.attr("fill", function(d){
if (d.Driver==="Kimi Raikkonen" ||d.Driver==="Sebastian Vettel") {
return "red";
} else if (d.Driver ==="Lewis Hamilton" || d.Driver ==="Nico Rosberg") {
return "rgb(137,141,142)";
} else if (d.Driver === "Felipe Massa" || d.Driver ==="Valtteri Bottas") { return "rgb(9,103,159)";
} else if (d.Driver ==="Fernando Alonso" || d.Driver === "Jenson Button") {
return "rgb(248,160,53)";
} else if (d.Driver === "Daniel Ricciardo" || d.Driver ==="Daniil Kvyat") {
return "rgb(172,62,100)";
} else {
return "rgb(184,192,201)";
}
})
.attr("opacity","0.4")// do what you like with the colors
.attr("transform", function(d,i) {
return "translate(0," + yScale(i) + ")";
});
svg.transition().select(".x.axis")
.call(xAxis);
// We are attaching the labels separately, not in a group with the bars...
var labels = svg.selectAll("text.labels")
.data(data, function (d) {
return d.Driver;
});
// everything gets a class and a text field. But we assign attributes in the transition.
labels.enter()
.append("text")
.attr("class", "labels");
labels.exit()
.remove();
labels.transition()
.duration(500)//: How long do you want this to last?)
.text(function(d) {
return +d[column];
})
.attr("x", function(d){
return xScale(+d[column]);
})
.attr("y", function(d,i) {
return yScale(i);
})
.attr("dy", "1.2em")
.attr("dx", function(d){
if (+d[column]> 1000) {
return "30px";
} else {
return "20px";
}
})
.attr("text-anchor", "end");
var labelsdrivername = svg.selectAll("text.labelsdrivername")
.data(data,function(d){
return d.Driver;
});
labelsdrivername.enter()
.append("text")
.attr("class", "labelsdrivername");
labelsdrivername.transition()
.duration(500)
.text(function(d){
return d.Driver;
})
.attr("x",-3)
.attr("transform", function(d,i) {
return "translate(" + 0+ "," + yScale(i) + ")"
})
.attr("dy", "15px")
.attr("dx", "-3px")
.attr("text-anchor", "end");
function mouseoverBar(d) {
d3.select(this)
.classed("focused", true)
.classed("unfocused", false)
mybartooltip
.style("display", null)
.html("<p>Driver:" + " " +d.Driver +
"</p>")
.style("top", (d3.event.pageY - 10) + "px" )
.style("left", (d3.event.pageX + 10) + "px");
}
function mouseoutBar(d) {
d3.select(this)
.classed("focused", false)
.classed("unfocused", true)
mybartooltip
.style("display","none");
}
}
svg.append("circle")
.attr("cx",650)
.attr("cy",340)
.style("fill","rgb(250,67,52)")
.attr("r",6)
svg.append("text")
.attr("x",660)
.attr("y",346)
.attr("font-size","16px")
.attr("font-weight","bold")
.style("text-anchor", "left")
.text("Ferrair");
svg.append("circle")
.attr("cx",650)
.attr("cy",360)
.style("fill","rgb(137,141,142)")
.attr("r",6)
svg.append("text")
.attr("x",660)
.attr("y",366)
.attr("font-size","16px")
.attr("font-weight","bold")
.style("text-anchor", "left")
.text("Mercedes");
svg.append("circle")
.attr("cx",650)
.attr("cy",380)
.attr("r",6)
.style("fill","rgb(9,103,159)")
svg.append("text")
.attr("x",660)
.attr("y",386)
.attr("font-size","16px")
.attr("font-weight","bold")
.style("text-anchor", "left")
.text("Williams");
svg.append("circle")
.attr("cx",650)
.attr("cy",400)
.attr("r",6)
.style("fill","rgb(248,160,53)")
svg.append("text")
.attr("x",660)
.attr("y",406)
.attr("font-size","16px")
.attr("font-weight","bold")
.style("text-anchor", "left")
.text("McLaren");
svg.append("circle")
.attr("cx",650)
.attr("cy",420)
.attr("r",6)
.style("fill","rgb(172,62,100)")
svg.append("text")
.attr("x",660)
.attr("y",426)
.attr("font-size","16px")
.attr("font-weight","bold")
.style("text-anchor", "left")
.text("Red Bull");
svg.append("circle")
.attr("cx",650)
.attr("cy",440)
.attr("r",6)
.style("fill","rgb(184,192,201)")
svg.append("text")
.attr("x",660)
.attr("y",446)
.attr("font-size","16px")
.attr("font-weight","bold")
.style("text-anchor", "left")
.text("Other Teams");
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<!-- Created with Inkscape (http://www.inkscape.org/) by Marsupilami -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="1024"
height="636"
viewBox="-0.8663898 -0.8663898 49.3265796 30.6124396"
id="svg26777">
<defs
id="defs26779" />
<g
transform="translate(-351.2031,-517.92235)"
id="layer1">
<path
d="M 371.79685,535.39571 L 371.8281,540.64571 C 371.26945,540.09321 370.51547,539.73941 369.7031,539.73941 C 367.96431,539.73941 366.54685,541.30571 366.54685,543.20821 C 366.54683,545.11201 367.96429,546.64571 369.7031,546.64571 C 370.52565,546.64561 371.26688,546.30331 371.8281,545.73941 L 371.8281,546.45821 L 373.92185,546.45821 L 373.92185,535.39571 L 371.79685,535.39571 z M 393.1406,535.39571 L 393.1406,546.48941 L 395.23435,546.48941 L 395.23435,535.39571 L 393.1406,535.39571 z M 396.7031,535.39571 L 396.7031,546.48941 L 398.7969,546.48941 L 398.7969,535.39571 L 396.7031,535.39571 z M 351.2031,535.92701 L 351.2031,546.45821 L 353.4531,546.45821 L 353.4531,537.70821 L 354.60935,537.73941 C 355.43683,537.73941 356.04687,538.35201 356.04685,539.11441 C 356.04685,539.87691 355.37435,540.48951 354.54685,540.48941 L 354.04685,540.48941 L 354.04685,543.02071 L 356.2656,546.45821 L 358.92185,546.45821 L 355.8281,542.05201 C 357.2168,541.71951 358.23434,540.48571 358.23435,539.02071 C 358.23435,537.29941 356.83183,535.92691 355.0781,535.92701 C 355.02431,535.92701 354.97555,535.92441 354.92185,535.92701 L 351.2031,535.92701 z M 376.79685,535.98941 L 376.79685,546.48941 L 381.4531,546.45821 C 383.2358,546.42941 384.67185,545.07831 384.67185,543.42701 C 384.67182,542.22701 384.24808,541.39941 382.8281,540.73941 C 383.40442,540.20181 383.7656,539.46941 383.7656,538.67701 C 383.76563,537.95941 383.46684,537.28821 382.98435,536.77071 C 382.48061,536.21821 381.59193,535.98941 380.3906,535.98941 L 376.79685,535.98941 z M 379.04685,537.80201 L 380.4531,537.80201 C 381.07062,537.80201 381.5781,538.30941 381.5781,538.92701 C 381.57808,539.54311 381.07062,540.02071 380.4531,540.02071 L 379.73435,540.02071 L 379.73435,541.92701 L 381.04685,541.92701 C 381.79436,541.92701 382.3906,542.52321 382.3906,543.27071 C 382.36999,543.85101 382.08666,544.31321 381.60935,544.52071 C 381.45025,544.58991 381.24997,544.63321 381.04685,544.64571 L 379.04685,544.64571 L 379.04685,537.80201 z M 362.17185,539.64571 C 360.24925,539.64581 358.67185,541.23081 358.67185,543.17701 C 358.67183,545.12321 360.24924,546.70821 362.17185,546.70821 C 363.6393,546.70821 364.76929,546.03071 365.35935,544.98941 L 363.6406,544.20821 C 363.42307,544.67941 362.92181,545.02071 362.3281,545.02071 C 361.53688,545.02071 360.8906,544.43321 360.8906,543.70821 C 360.89061,543.66191 360.88565,543.66071 360.8906,543.61441 L 365.54685,543.61441 C 365.56057,543.47071 365.54815,543.32821 365.54685,543.17701 C 365.57935,540.89701 364.09423,539.64571 362.17185,539.64571 z M 385.3906,540.02071 L 385.3906,544.20821 C 385.3906,545.09731 385.9849,545.90141 386.85935,546.36441 C 387.03424,546.45711 387.22518,546.51801 387.42185,546.58321 C 387.81519,546.71361 388.24904,546.80201 388.7031,546.80201 C 390.51808,546.80191 391.98435,545.63071 391.98435,544.20821 L 391.98435,540.02071 L 389.92185,540.02071 L 389.8906,543.83321 C 389.89058,544.46571 389.36692,544.95821 388.7031,544.95821 C 388.03811,544.95821 387.48435,544.46561 387.48435,543.83321 L 387.5156,540.02071 L 385.3906,540.02071 z M 362.17185,541.11441 C 362.882,541.11441 363.4531,541.71571 363.4531,542.42701 L 360.8906,542.42701 C 360.89058,541.71581 361.46064,541.11441 362.17185,541.11441 z M 370.29685,541.45821 C 371.15053,541.45831 371.85935,542.21071 371.85935,543.14571 C 371.85937,544.08061 371.1505,544.86441 370.29685,544.86441 C 369.97668,544.86451 369.66842,544.73441 369.42185,544.55201 C 369.33966,544.49111 369.27298,544.44101 369.2031,544.36441 C 368.92357,544.05821 368.7656,543.61321 368.7656,543.14571 C 368.76558,542.21071 369.44304,541.45821 370.29685,541.45821 z"
id="path22790"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 381.0448,521.04755 C 381.07234,521.08128 381.10484,521.13003 381.10484,521.13003 C 381.30359,520.98385 381.48479,520.8276 381.72229,520.76755 C 382.09858,520.66639 382.62859,520.86628 383.00472,521.11759 C 383.1898,521.25011 383.34858,521.41514 383.49972,521.5926 C 383.61858,521.71886 383.79725,521.71886 383.94855,521.7651 C 384.38472,521.85009 384.78107,522.00878 385.14972,522.24629 C 385.40729,522.39888 385.61222,522.67505 385.90984,522.71504 C 386.2723,522.77508 386.60975,522.89386 386.92607,523.07759 C 387.30228,523.32881 387.66597,523.63255 388.10725,523.71884 C 389.0311,523.81764 389.79107,524.3388 390.52357,524.84753 C 390.95225,525.09129 391.44107,525.38883 391.96353,525.20381 C 392.10857,525.1376 392.22728,525.01255 392.27984,524.86759 C 392.326,524.52389 392.11483,524.26014 391.8973,524.00883 C 391.44855,523.49384 390.6898,523.05759 390.77472,522.29259 C 390.83607,521.74008 391.52095,521.40759 392.00984,521.25011 C 392.27984,521.15009 392.57732,521.17764 392.811,520.97011 C 392.91484,520.87635 393.0598,520.64633 393.19095,520.71506 C 393.30234,520.77259 393.36223,521.00514 393.38855,521.17764 C 393.46103,521.71886 393.34224,522.26009 392.8548,522.57008 C 392.62355,522.71504 392.36605,522.78134 392.10109,522.83383 C 392.51109,523.17005 392.89974,523.56633 393.13105,524.02264 C 393.2635,524.28639 393.34224,524.52389 393.36223,524.83386 C 393.34858,525.40883 392.99228,525.91008 392.49729,526.20761 C 392.20722,526.36509 391.87732,526.42505 391.52728,526.4188 C 391.39484,526.41133 391.27597,526.38508 391.15108,526.38508 C 391.20357,526.6563 391.21097,527.02633 391.14482,527.32258 C 391.12475,527.48135 391.01855,527.65255 391.03229,527.83764 C 391.10484,527.93003 391.2173,527.93636 391.32975,527.93636 C 391.58603,527.94384 391.88358,527.92385 392.01603,528.1876 C 392.13474,528.43258 392.17472,528.64131 392.26482,528.8876 C 392.28343,528.93505 392.38109,529.09885 392.43228,529.05133 C 392.60357,528.89255 392.76485,528.6713 392.99975,528.77514 C 393.02478,528.78635 393.16974,528.91263 393.68975,529.28386 C 393.76354,529.33635 393.77842,529.42256 393.78482,529.51504 C 393.98357,529.59385 394.22107,529.73255 394.28608,529.95006 C 394.33345,530.09633 394.30607,530.25509 394.34604,530.39386 C 394.41227,530.55264 394.62474,530.86514 394.44858,530.95509 L 394.36595,530.99506 L 393.63353,531.21884 C 393.5673,531.21258 393.50734,531.18634 393.46843,531.12636 C 393.07857,531.1076 392.62355,531.22639 392.31983,530.94883 C 392.18097,530.83638 392.08103,530.69134 391.9823,530.55264 C 391.75853,530.67753 391.4223,530.75009 391.18975,530.59886 C 390.70858,530.22136 390.21975,529.86508 389.5798,529.87759 C 389.29607,529.94389 388.93978,530.02254 388.66222,529.89131 C 388.39847,529.69883 388.08109,529.60003 387.86357,529.32384 C 387.55984,529.00005 387.54604,528.60881 387.44724,528.20636 L 387.43975,528.19011 C 387.02975,528.30258 386.56978,528.25383 386.14734,528.22758 C 385.7973,528.21384 385.46725,528.26008 385.14972,528.33264 C 384.74734,528.41885 384.30484,528.44509 383.87607,528.43258 L 383.67107,528.59005 C 383.76354,528.61629 383.86974,528.61011 383.94222,528.67634 L 384.02095,528.76255 C 384.37092,528.79505 384.76108,528.73509 385.09105,528.82755 C 385.16979,528.85509 385.24357,528.90133 385.28232,528.98129 C 385.34229,529.10389 385.31223,529.22879 385.26859,529.30378 C 385.12477,529.55005 385.00484,529.81136 384.77359,529.9963 C 384.70859,530.06878 384.53609,529.98379 384.52358,530.10884 C 384.44354,530.45254 384.1273,530.74383 383.78978,530.81639 C 383.6523,530.84255 383.50604,530.81005 383.38108,530.77008 C 382.9848,530.63138 382.56854,530.51884 382.15984,530.41378 C 382.02105,530.37388 381.91608,530.24128 381.79729,530.15506 C 381.61853,530.14889 381.38095,530.21504 381.2485,530.05634 C 381.15604,529.97005 381.05724,529.77253 381.05105,529.76505 C 380.68103,530.22755 380.26485,530.69134 379.7961,531.08753 C 377.84229,532.7438 374.91855,533.28503 372.45609,532.39384 C 371.09607,531.92509 369.84973,531.03511 368.86478,529.69258 C 368.86478,529.69258 368.70983,530.10128 368.46843,530.14889 L 367.86105,530.2351 C 367.37972,530.4401 366.89105,530.60505 366.40224,530.7838 C 366.11224,530.85003 365.78853,530.79014 365.57735,530.60505 C 365.41225,530.46009 365.31978,530.28636 365.20732,530.11509 C 365.15728,530.04009 364.94472,530.09006 364.84225,530.08259 C 364.78847,530.07885 364.70859,530.00889 364.65984,529.92383 L 364.23724,529.22383 C 364.1685,529.07886 364.19734,528.99258 364.24358,528.90133 C 364.32979,528.74264 364.50229,528.68259 364.66609,528.66253 C 364.96357,528.62759 365.32604,528.53764 365.61733,528.67008 C 365.75595,528.51139 365.96729,528.53764 366.15855,528.49758 L 366.17733,528.49133 C 366.08478,528.3926 365.9598,528.3263 365.86093,528.22758 C 365.30597,528.3588 364.67983,528.27389 364.14478,528.16754 C 363.64978,528.04883 363.21979,528.34004 362.73234,528.26634 C 362.73234,528.26634 362.62103,528.55503 362.55107,528.70761 C 362.44228,528.94383 362.32357,529.25259 361.98604,529.43508 C 361.77234,529.55128 361.54353,529.66633 361.32609,529.77879 C 360.936,529.98379 360.41484,529.90383 360.00605,529.81884 C 359.84104,529.80503 359.70859,529.81136 359.56355,529.87133 C 359.41859,529.97005 359.24472,530.1701 359.09603,530.28004 C 358.93604,530.39883 358.67229,530.57629 358.3948,530.55264 C 358.22734,530.53753 358.01853,530.43759 357.95978,530.46886 C 357.9185,530.49129 357.64858,531.05389 357.33234,531.1401 C 357.0148,531.22639 356.63859,531.16009 356.33472,531.08753 C 356.24233,531.12636 356.17733,531.21258 356.06479,531.18634 C 355.85353,531.13384 355.64228,531.07388 355.451,530.96134 C 355.37105,530.88879 355.35854,530.79631 355.33847,530.70385 C 355.3448,530.56508 355.44345,530.45254 355.50357,530.33383 C 355.52974,530.18886 355.51593,530.01004 355.5823,529.87759 C 355.68233,529.66008 355.89977,529.5338 356.09729,529.43508 C 356.12354,529.28386 356.22608,529.14883 356.34845,529.07254 C 356.59732,528.91758 356.86984,528.62385 357.19355,528.80879 L 357.53604,529.10504 C 357.74974,528.99754 357.75608,528.79635 357.9198,528.41885 C 357.99105,528.25383 358.0923,528.07759 358.296,528.04883 C 358.44478,528.02883 358.62354,528.05378 358.72234,528.03256 C 358.81733,528.01258 359.1598,527.87388 359.20482,527.83253 C 359.25732,527.78508 359.27234,527.71504 359.25357,527.66758 C 359.02347,527.08011 359.00859,526.82759 358.98845,526.38508 C 358.6523,526.4188 358.26984,526.47755 357.9198,526.41133 C 357.37109,526.32633 356.85725,525.90381 356.65225,525.38258 C 356.41483,524.86011 356.51355,524.14135 356.88975,523.69884 C 357.17357,523.35506 357.50354,523.04508 357.84732,522.78134 C 357.73479,522.74754 357.59593,522.75509 357.48355,522.72884 C 356.97597,522.64889 356.48723,522.20005 356.37477,521.70505 C 356.29604,521.37509 356.36859,521.07128 356.52607,520.7938 C 356.57978,520.73505 356.63859,520.68134 356.73092,520.71506 C 356.97597,520.81386 357.11223,520.97134 357.42343,521.11629 C 357.73479,521.26255 358.91597,521.36135 359.15355,522.13383 C 359.31224,522.74128 358.99859,523.13389 358.5435,523.47759 C 358.19973,523.72135 357.83847,524.02011 357.65728,524.37511 C 357.53093,524.62505 357.59593,525.01004 357.81353,525.21008 C 358.06858,525.44514 358.45478,525.43506 358.74484,525.32254 C 359.29233,525.09884 359.78107,524.74133 360.26355,524.3726 C 360.72475,524.02881 361.16733,523.89636 361.74854,523.87883 C 361.981,523.87135 362.37605,523.69755 362.58975,523.52634 C 362.97984,523.21506 363.33232,522.90005 363.80855,522.78759 C 364.01225,522.74128 364.23724,522.7351 364.44858,522.7013 C 364.61345,522.62256 364.73224,522.42511 364.87728,522.31884 C 365.50472,521.77128 366.36227,521.77754 367.02975,521.34259 C 367.41222,521.04504 367.8348,520.85384 368.34354,520.88009 C 368.5747,520.8926 368.74973,520.91755 368.94222,521.00261 C 368.94222,521.00261 368.96975,521.00514 368.97724,520.98506 C 370.33725,519.22253 372.23857,518.22628 374.37603,518.03509 C 376.02108,517.90256 377.53857,518.29884 378.85234,519.06505 C 379.68479,519.56005 380.44734,520.24128 381.04107,521.04008 L 381.0448,521.04755"
id="path22818"
style="fill:#fbbf15;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 381.0448,521.04755 C 381.07234,521.08128 381.10484,521.13003 381.10484,521.13003 C 381.30359,520.98385 381.48479,520.8276 381.72229,520.76755 C 382.09858,520.66639 382.62859,520.86628 383.00472,521.11759 C 383.1898,521.25011 383.34858,521.41514 383.49972,521.5926 C 383.61858,521.71886 383.79725,521.71886 383.94855,521.7651 C 384.38472,521.85009 384.78107,522.00878 385.14972,522.24629 C 385.40729,522.39888 385.61222,522.67505 385.90984,522.71504 C 386.2723,522.77508 386.60975,522.89386 386.92607,523.07759 C 387.30228,523.32881 387.66597,523.63255 388.10725,523.71884 C 389.0311,523.81764 389.79107,524.3388 390.52357,524.84753 C 390.95225,525.09129 391.44107,525.38883 391.96353,525.20381 C 392.10857,525.1376 392.22728,525.01255 392.27984,524.86759 C 392.326,524.52389 392.11483,524.26014 391.8973,524.00883 C 391.44855,523.49384 390.6898,523.05759 390.77472,522.29259 C 390.83607,521.74008 391.52095,521.40759 392.00984,521.25011 C 392.27984,521.15009 392.57732,521.17764 392.811,520.97011 C 392.91484,520.87635 393.0598,520.64633 393.19095,520.71506 C 393.30234,520.77259 393.36223,521.00514 393.38855,521.17764 C 393.46103,521.71886 393.34224,522.26009 392.8548,522.57008 C 392.62355,522.71504 392.36605,522.78134 392.10109,522.83383 C 392.51109,523.17005 392.89974,523.56633 393.13105,524.02264 C 393.2635,524.28639 393.34224,524.52389 393.36223,524.83386 C 393.34858,525.40883 392.99228,525.91008 392.49729,526.20761 C 392.20722,526.36509 391.87732,526.42505 391.52728,526.4188 C 391.39484,526.41133 391.27597,526.38508 391.15108,526.38508 C 391.20357,526.6563 391.21097,527.02633 391.14482,527.32258 C 391.12475,527.48135 391.01855,527.65255 391.03229,527.83764 C 391.10484,527.93003 391.2173,527.93636 391.32975,527.93636 C 391.58603,527.94384 391.88358,527.92385 392.01603,528.1876 C 392.13474,528.43258 392.17472,528.64131 392.26482,528.8876 C 392.28343,528.93505 392.38109,529.09885 392.43228,529.05133 C 392.60357,528.89255 392.76485,528.6713 392.99975,528.77514 C 393.02478,528.78635 393.16974,528.91263 393.68975,529.28386 C 393.76354,529.33635 393.77842,529.42256 393.78482,529.51504 C 393.98357,529.59385 394.22107,529.73255 394.28608,529.95006 C 394.33345,530.09633 394.30607,530.25509 394.34604,530.39386 C 394.41227,530.55264 394.62474,530.86514 394.44858,530.95509 L 394.36595,530.99506 L 393.63353,531.21884 C 393.5673,531.21258 393.50734,531.18634 393.46843,531.12636 C 393.07857,531.1076 392.62355,531.22639 392.31983,530.94883 C 392.18097,530.83638 392.08103,530.69134 391.9823,530.55264 C 391.75853,530.67753 391.4223,530.75009 391.18975,530.59886 C 390.70858,530.22136 390.21975,529.86508 389.5798,529.87759 C 389.29607,529.94389 388.93978,530.02254 388.66222,529.89131 C 388.39847,529.69883 388.08109,529.60003 387.86357,529.32384 C 387.55984,529.00005 387.54604,528.60881 387.44724,528.20636 L 387.43975,528.19011 C 387.02975,528.30258 386.56978,528.25383 386.14734,528.22758 C 385.7973,528.21384 385.46725,528.26008 385.14972,528.33264 C 384.74734,528.41885 384.30484,528.44509 383.87607,528.43258 L 383.67107,528.59005 C 383.76354,528.61629 383.86974,528.61011 383.94222,528.67634 L 384.02095,528.76255 C 384.37092,528.79505 384.76108,528.73509 385.09105,528.82755 C 385.16979,528.85509 385.24357,528.90133 385.28232,528.98129 C 385.34229,529.10389 385.31223,529.22879 385.26859,529.30378 C 385.12477,529.55005 385.00484,529.81136 384.77359,529.9963 C 384.70859,530.06878 384.53609,529.98379 384.52358,530.10884 C 384.44354,530.45254 384.1273,530.74383 383.78978,530.81639 C 383.6523,530.84255 383.50604,530.81005 383.38108,530.77008 C 382.9848,530.63138 382.56854,530.51884 382.15984,530.41378 C 382.02105,530.37388 381.91608,530.24128 381.79729,530.15506 C 381.61853,530.14889 381.38095,530.21504 381.2485,530.05634 C 381.15604,529.97005 381.05724,529.77253 381.05105,529.76505 C 380.68103,530.22755 380.26485,530.69134 379.7961,531.08753 C 377.84229,532.7438 374.91855,533.28503 372.45609,532.39384 C 371.09607,531.92509 369.84973,531.03511 368.86478,529.69258 C 368.86478,529.69258 368.70983,530.10128 368.46843,530.14889 L 367.86105,530.2351 C 367.37972,530.4401 366.89105,530.60505 366.40224,530.7838 C 366.11224,530.85003 365.78853,530.79014 365.57735,530.60505 C 365.41225,530.46009 365.31978,530.28636 365.20732,530.11509 C 365.15728,530.04009 364.94472,530.09006 364.84225,530.08259 C 364.78847,530.07885 364.70859,530.00889 364.65984,529.92383 L 364.23724,529.22383 C 364.1685,529.07886 364.19734,528.99258 364.24358,528.90133 C 364.32979,528.74264 364.50229,528.68259 364.66609,528.66253 C 364.96357,528.62759 365.32604,528.53764 365.61733,528.67008 C 365.75595,528.51139 365.96729,528.53764 366.15855,528.49758 L 366.17733,528.49133 C 366.08478,528.3926 365.9598,528.3263 365.86093,528.22758 C 365.30597,528.3588 364.67983,528.27389 364.14478,528.16754 C 363.64978,528.04883 363.21979,528.34004 362.73234,528.26634 C 362.73234,528.26634 362.62103,528.55503 362.55107,528.70761 C 362.44228,528.94383 362.32357,529.25259 361.98604,529.43508 C 361.77234,529.55128 361.54353,529.66633 361.32609,529.77879 C 360.936,529.98379 360.41484,529.90383 360.00605,529.81884 C 359.84104,529.80503 359.70859,529.81136 359.56355,529.87133 C 359.41859,529.97005 359.24472,530.1701 359.09603,530.28004 C 358.93604,530.39883 358.67229,530.57629 358.3948,530.55264 C 358.22734,530.53753 358.01853,530.43759 357.95978,530.46886 C 357.9185,530.49129 357.64858,531.05389 357.33234,531.1401 C 357.0148,531.22639 356.63859,531.16009 356.33472,531.08753 C 356.24233,531.12636 356.17733,531.21258 356.06479,531.18634 C 355.85353,531.13384 355.64228,531.07388 355.451,530.96134 C 355.37105,530.88879 355.35854,530.79631 355.33847,530.70385 C 355.3448,530.56508 355.44345,530.45254 355.50357,530.33383 C 355.52974,530.18886 355.51593,530.01004 355.5823,529.87759 C 355.68233,529.66008 355.89977,529.5338 356.09729,529.43508 C 356.12354,529.28386 356.22608,529.14883 356.34845,529.07254 C 356.59732,528.91758 356.86984,528.62385 357.19355,528.80879 L 357.53604,529.10504 C 357.74974,528.99754 357.75608,528.79635 357.9198,528.41885 C 357.99105,528.25383 358.0923,528.07759 358.296,528.04883 C 358.44478,528.02883 358.62354,528.05378 358.72234,528.03256 C 358.81733,528.01258 359.1598,527.87388 359.20482,527.83253 C 359.25732,527.78508 359.27234,527.71504 359.25357,527.66758 C 359.02347,527.08011 359.00859,526.82759 358.98845,526.38508 C 358.6523,526.4188 358.26984,526.47755 357.9198,526.41133 C 357.37109,526.32633 356.85725,525.90381 356.65225,525.38258 C 356.41483,524.86011 356.51355,524.14135 356.88975,523.69884 C 357.17357,523.35506 357.50354,523.04508 357.84732,522.78134 C 357.73479,522.74754 357.59593,522.75509 357.48355,522.72884 C 356.97597,522.64889 356.48723,522.20005 356.37477,521.70505 C 356.29604,521.37509 356.36859,521.07128 356.52607,520.7938 C 356.57978,520.73505 356.63859,520.68134 356.73092,520.71506 C 356.97597,520.81386 357.11223,520.97134 357.42343,521.11629 C 357.73479,521.26255 358.91597,521.36135 359.15355,522.13383 C 359.31224,522.74128 358.99859,523.13389 358.5435,523.47759 C 358.19973,523.72135 357.83847,524.02011 357.65728,524.37511 C 357.53093,524.62505 357.59593,525.01004 357.81353,525.21008 C 358.06858,525.44514 358.45478,525.43506 358.74484,525.32254 C 359.29233,525.09884 359.78107,524.74133 360.26355,524.3726 C 360.72475,524.02881 361.16733,523.89636 361.74854,523.87883 C 361.981,523.87135 362.37605,523.69755 362.58975,523.52634 C 362.97984,523.21506 363.33232,522.90005 363.80855,522.78759 C 364.01225,522.74128 364.23724,522.7351 364.44858,522.7013 C 364.61345,522.62256 364.73224,522.42511 364.87728,522.31884 C 365.50472,521.77128 366.36227,521.77754 367.02975,521.34259 C 367.41222,521.04504 367.8348,520.85384 368.34354,520.88009 C 368.5747,520.8926 368.74973,520.91755 368.94222,521.00261 C 368.94222,521.00261 368.96975,521.00514 368.97724,520.98506 C 370.33725,519.22253 372.23857,518.22628 374.37603,518.03509 C 376.02108,517.90256 377.53857,518.29884 378.85234,519.06505 C 379.68479,519.56005 380.44734,520.24128 381.04107,521.04008 L 381.0448,521.04755 z"
id="path22820"
style="fill:none;stroke:#fbbf15;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 357.87105,521.47389 C 358.0273,521.51256 358.55724,521.62884 358.78604,521.88008 C 358.996,522.11133 359.02607,522.5388 358.83105,522.80133 C 358.55724,523.16754 358.06972,523.49629 357.69855,523.86753 C 357.40474,524.16134 357.27222,524.55754 357.38353,524.96631 C 357.50232,525.32383 357.85854,525.5801 358.22857,525.60756 C 358.79604,525.62008 359.23229,525.33634 359.68723,525.07259 C 360.14354,524.74888 360.56605,524.32629 361.10103,524.19384 C 361.43725,524.06888 361.84604,524.10885 362.16975,523.99631 C 362.51857,523.87509 362.82359,523.61378 363.11359,523.34889 C 363.43723,523.08514 363.78482,522.92255 364.34855,522.92255 C 364.62604,522.92255 364.61483,522.87631 365.09105,522.43885 C 365.52859,522.03763 366.13109,521.99009 366.64608,521.75884 C 367.00229,521.64005 367.30609,521.38264 367.64232,521.2038 C 367.96604,521.0651 368.41358,521.04381 368.74484,521.16383 C 368.9648,521.24378 369.05483,521.28635 369.37229,521.50135 L 370.936,522.80133 C 370.96843,522.83383 371.01223,522.87388 371.04977,522.91508 C 371.11224,522.9813 371.97345,523.99014 372.32982,524.57005 C 372.44853,524.77505 372.54108,525.07504 372.55107,525.20634 C 372.61608,526.09256 372.87105,526.87381 373.15479,527.64759 C 373.17859,527.71259 373.38603,527.8513 373.47103,527.97764 C 373.716,528.32005 373.87355,528.75638 374.26982,528.98761 C 374.26982,528.98761 374.3973,529.05261 374.50733,529.10633 C 374.54234,529.1251 374.55234,529.20384 374.4723,529.22253 C 374.04972,529.31508 373.55975,528.96885 373.38359,528.64628 C 373.17859,528.27389 372.99975,528.01761 372.65728,527.89883 L 372.6385,527.91759 C 372.68474,528.02388 372.76607,528.12008 372.82474,528.21506 C 372.95482,528.42633 373.07605,528.66383 373.14105,528.88134 C 373.21475,529.1251 373.48475,529.31004 373.70235,529.44889 L 373.99357,529.60384 C 374.09977,529.65504 374.08359,529.73004 374.01103,529.74888 L 373.96228,529.75261 C 373.44104,529.76635 373.00228,529.60133 372.64605,529.21756 C 372.56092,529.1251 372.44853,529.04003 372.32234,529.04003 C 372.09224,529.24389 371.86107,529.44889 371.55109,529.4688 C 371.23355,529.41639 370.871,529.41014 370.57979,529.53503 C 370.31604,529.62758 370.05222,529.74003 369.75483,529.75261 C 369.61604,529.75261 369.45858,529.68631 369.41227,529.55509 C 369.41227,529.39006 369.28608,529.19133 369.39228,529.02011 L 369.5898,528.73005 C 369.5898,528.69008 369.56355,528.65635 369.52358,528.65009 C 369.43843,528.63758 369.31224,528.77629 369.27974,528.63003 C 369.29973,528.33378 369.58354,528.1551 369.78107,527.9501 C 369.8273,527.71259 369.91984,527.50889 370.08472,527.32388 C 370.08472,527.29755 370.05855,527.27009 370.0323,527.25758 C 369.78725,527.29755 369.53723,527.36255 369.26593,527.3563 C 369.05483,527.46884 368.79108,527.54756 368.53984,527.46884 C 368.48728,527.43634 368.49972,527.35881 368.52108,527.33005 C 368.77842,526.9688 368.89103,526.50883 368.81092,526.05633 C 368.80603,526.02505 368.7923,525.99506 368.75103,525.99506 C 368.71227,525.99384 368.69105,526.03764 368.68609,526.06884 C 368.61103,526.48258 368.49842,526.83133 368.26984,527.17884 C 368.17607,527.32014 367.82725,527.34386 367.60234,527.41634 C 367.54978,527.44259 367.49095,527.48883 367.49095,527.55505 C 367.48355,527.70008 367.56343,527.82254 367.63347,527.93759 C 367.63347,527.93759 368.08978,528.69259 368.10855,528.83633 C 368.12473,528.96138 368.06475,529.35635 368.00609,529.58134 C 368.03225,529.62758 368.07224,529.6088 368.10474,529.58759 C 368.18843,529.53136 368.3948,529.21756 368.46729,529.00005 C 368.48728,528.89508 368.44722,528.78261 368.41472,528.70259 L 367.89355,527.67384 C 367.92605,527.60754 368.0173,527.59633 368.07109,527.5938 C 368.19728,527.59006 368.296,527.65385 368.40854,527.68635 C 368.52725,528.00389 368.58104,528.13008 368.86859,528.59135 C 368.9648,528.74378 368.95854,528.93635 368.86608,529.12631 C 368.75605,529.35139 368.63232,529.56135 368.48728,529.77253 C 368.35483,529.91139 368.15097,529.89758 367.96604,529.91756 L 367.81353,529.91756 C 367.3585,530.16263 366.87854,530.32139 366.3898,530.47383 C 366.17473,530.54134 365.91228,530.50006 365.74855,530.35389 C 365.57605,530.22259 365.50357,530.01759 365.39104,529.84509 C 365.25974,529.68014 364.96097,529.84256 364.89604,529.73255 C 364.76604,529.51381 364.65107,529.32255 364.52854,529.10504 C 364.48727,529.03134 364.5122,528.94634 364.59728,528.92758 C 364.78595,528.8876 364.9673,528.85014 365.15979,528.83389 C 365.33847,528.82008 365.47733,528.85509 365.59604,528.98761 C 365.82729,529.25755 365.91975,529.62635 366.26354,529.81006 C 366.36104,529.86134 366.7773,529.73255 367.00229,529.62009 C 367.13359,529.54129 367.29228,529.42256 367.29228,529.25136 C 367.27222,528.91384 367.04234,528.64384 366.76479,528.45256 C 366.47358,528.30005 366.16359,528.0888 365.95225,527.81888 C 365.84728,527.67384 365.81225,527.4976 365.76107,527.33005 C 365.74474,527.27634 365.67478,527.28383 365.64228,527.31006 C 365.52974,527.40886 365.61733,527.62386 365.64975,527.73761 C 365.67607,527.82886 365.69728,527.89135 365.64853,527.93133 C 365.4848,528.06385 365.21609,528.01258 365.02842,528.00389 C 364.59858,527.9826 364.20978,527.81261 363.76109,527.8513 C 363.33232,527.87129 362.61355,528.13138 362.41984,527.71633 C 362.26108,527.32014 362.33478,526.86138 362.40725,526.4526 C 362.40725,526.40636 362.36103,526.37883 362.32234,526.37256 C 362.28847,526.36005 362.24223,526.37883 362.2298,526.4188 C 362.12359,526.81508 362.11483,527.26139 361.9836,527.66514 C 361.87229,528.00389 361.58847,528.43258 361.21227,528.62385 C 360.87604,528.79505 360.49975,528.86135 360.10357,528.8876 C 359.37732,528.90133 358.63232,529.03889 358.1898,529.66633 C 358.1573,529.72508 358.15097,529.74255 358.13854,529.79634 C 358.11733,529.88636 358.20232,529.91009 358.24725,529.85881 C 358.74484,529.30011 359.4173,529.09885 360.1372,529.1251 C 360.83607,529.1251 361.52347,529.00639 361.95858,528.41259 C 362.07103,528.28136 362.24223,527.99633 362.24223,527.99633 L 362.47478,528.17509 C 362.47478,528.17509 362.36103,528.45883 362.2961,528.59005 C 362.20104,528.77758 362.02228,529.07383 361.81972,529.18506 C 361.67972,529.26136 361.43855,529.38259 361.19228,529.52136 C 360.98475,529.64009 360.71109,529.66008 360.45978,529.59385 C 360.14354,529.53503 359.72103,529.45636 359.4173,529.60133 C 359.25853,529.70005 359.12342,529.8576 358.98105,529.97135 C 358.83358,530.08755 358.57853,530.2438 358.32103,530.22884 C 358.14228,530.21885 357.93224,530.07633 357.78605,530.2351 C 357.60234,530.41378 357.54855,530.71133 357.30472,530.82386 C 357.02105,530.98255 356.701,530.82386 356.41109,530.79761 L 356.41353,530.7838 C 356.47228,530.52014 356.51225,530.2351 356.69109,530.0301 C 356.80354,530.01759 356.90853,529.9976 356.99474,529.91756 C 357.10605,529.81884 357.19234,529.68631 357.27222,529.56135 C 357.51605,529.41014 357.80597,529.28386 357.96474,529.02011 C 358.08345,528.7688 358.19607,528.39764 358.28105,528.31386 C 358.29853,528.29761 358.32843,528.27389 358.38108,528.26755 C 358.436,528.26138 358.63842,528.25764 358.81854,528.23505 C 358.89354,528.22514 359.29355,528.08384 359.49603,527.89753 C 359.56225,527.83764 359.5798,527.73761 359.55608,527.65385 C 359.53228,527.56878 359.36733,527.2263 359.31858,526.96759 C 359.29355,526.83758 359.28608,526.4201 359.26479,526.11508 C 359.25983,526.0413 359.22733,526.0313 359.17972,526.04259 C 358.83975,526.12889 358.49972,526.2138 358.1235,526.15505 C 357.6086,526.08883 357.07355,525.7526 356.88228,525.23761 C 356.71108,524.78878 356.74975,524.16134 357.0798,523.80505 C 357.39093,523.42259 357.7798,523.12511 358.14975,522.81505 C 358.20858,522.76883 358.24725,522.72259 358.23978,522.65636 C 358.22857,522.55505 358.14228,522.49134 358.07605,522.4651 C 357.83847,522.41253 357.58853,522.49134 357.35729,522.39261 C 356.96109,522.24758 356.64478,521.87008 356.59229,521.45511 C 356.57855,521.27003 356.64225,520.97385 356.71108,520.95256 C 356.76105,520.93761 357.0148,521.16505 357.16853,521.24508 C 357.32982,521.32755 357.49233,521.37883 357.87105,521.47389"
id="path22822"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 357.87105,521.47389 C 358.0273,521.51256 358.55724,521.62884 358.78604,521.88008 C 358.996,522.11133 359.02607,522.5388 358.83105,522.80133 C 358.55724,523.16754 358.06972,523.49629 357.69855,523.86753 C 357.40474,524.16134 357.27222,524.55754 357.38353,524.96631 C 357.50232,525.32383 357.85854,525.5801 358.22857,525.60756 C 358.79604,525.62008 359.23229,525.33634 359.68723,525.07259 C 360.14354,524.74888 360.56605,524.32629 361.10103,524.19384 C 361.43725,524.06888 361.84604,524.10885 362.16975,523.99631 C 362.51857,523.87509 362.82359,523.61378 363.11359,523.34889 C 363.43723,523.08514 363.78482,522.92255 364.34855,522.92255 C 364.62604,522.92255 364.61483,522.87631 365.09105,522.43885 C 365.52859,522.03763 366.13109,521.99009 366.64608,521.75884 C 367.00229,521.64005 367.30609,521.38264 367.64232,521.2038 C 367.96604,521.0651 368.41358,521.04381 368.74484,521.16383 C 368.9648,521.24378 369.05483,521.28635 369.37229,521.50135 L 370.936,522.80133 C 370.96843,522.83383 371.01223,522.87388 371.04977,522.91508 C 371.11224,522.9813 371.97345,523.99014 372.32982,524.57005 C 372.44853,524.77505 372.54108,525.07504 372.55107,525.20634 C 372.61608,526.09256 372.87105,526.87381 373.15479,527.64759 C 373.17859,527.71259 373.38603,527.8513 373.47103,527.97764 C 373.716,528.32005 373.87355,528.75638 374.26982,528.98761 C 374.26982,528.98761 374.3973,529.05261 374.50733,529.10633 C 374.54234,529.1251 374.55234,529.20384 374.4723,529.22253 C 374.04972,529.31508 373.55975,528.96885 373.38359,528.64628 C 373.17859,528.27389 372.99975,528.01761 372.65728,527.89883 L 372.6385,527.91759 C 372.68474,528.02388 372.76607,528.12008 372.82474,528.21506 C 372.95482,528.42633 373.07605,528.66383 373.14105,528.88134 C 373.21475,529.1251 373.48475,529.31004 373.70235,529.44889 L 373.99357,529.60384 C 374.09977,529.65504 374.08359,529.73004 374.01103,529.74888 L 373.96228,529.75261 C 373.44104,529.76635 373.00228,529.60133 372.64605,529.21756 C 372.56092,529.1251 372.44853,529.04003 372.32234,529.04003 C 372.09224,529.24389 371.86107,529.44889 371.55109,529.4688 C 371.23355,529.41639 370.871,529.41014 370.57979,529.53503 C 370.31604,529.62758 370.05222,529.74003 369.75483,529.75261 C 369.61604,529.75261 369.45858,529.68631 369.41227,529.55509 C 369.41227,529.39006 369.28608,529.19133 369.39228,529.02011 L 369.5898,528.73005 C 369.5898,528.69008 369.56355,528.65635 369.52358,528.65009 C 369.43843,528.63758 369.31224,528.77629 369.27974,528.63003 C 369.29973,528.33378 369.58354,528.1551 369.78107,527.9501 C 369.8273,527.71259 369.91984,527.50889 370.08472,527.32388 C 370.08472,527.29755 370.05855,527.27009 370.0323,527.25758 C 369.78725,527.29755 369.53723,527.36255 369.26593,527.3563 C 369.05483,527.46884 368.79108,527.54756 368.53984,527.46884 C 368.48728,527.43634 368.49972,527.35881 368.52108,527.33005 C 368.77842,526.9688 368.89103,526.50883 368.81092,526.05633 C 368.80603,526.02505 368.7923,525.99506 368.75103,525.99506 C 368.71227,525.99384 368.69105,526.03764 368.68609,526.06884 C 368.61103,526.48258 368.49842,526.83133 368.26984,527.17884 C 368.17607,527.32014 367.82725,527.34386 367.60234,527.41634 C 367.54978,527.44259 367.49095,527.48883 367.49095,527.55505 C 367.48355,527.70008 367.56343,527.82254 367.63347,527.93759 C 367.63347,527.93759 368.08978,528.69259 368.10855,528.83633 C 368.12473,528.96138 368.06475,529.35635 368.00609,529.58134 C 368.03225,529.62758 368.07224,529.6088 368.10474,529.58759 C 368.18843,529.53136 368.3948,529.21756 368.46729,529.00005 C 368.48728,528.89508 368.44722,528.78261 368.41472,528.70259 L 367.89355,527.67384 C 367.92605,527.60754 368.0173,527.59633 368.07109,527.5938 C 368.19728,527.59006 368.296,527.65385 368.40854,527.68635 C 368.52725,528.00389 368.58104,528.13008 368.86859,528.59135 C 368.9648,528.74378 368.95854,528.93635 368.86608,529.12631 C 368.75605,529.35139 368.63232,529.56135 368.48728,529.77253 C 368.35483,529.91139 368.15097,529.89758 367.96604,529.91756 L 367.81353,529.91756 C 367.3585,530.16263 366.87854,530.32139 366.3898,530.47383 C 366.17473,530.54134 365.91228,530.50006 365.74855,530.35389 C 365.57605,530.22259 365.50357,530.01759 365.39104,529.84509 C 365.25974,529.68014 364.96097,529.84256 364.89604,529.73255 C 364.76604,529.51381 364.65107,529.32255 364.52854,529.10504 C 364.48727,529.03134 364.5122,528.94634 364.59728,528.92758 C 364.78595,528.8876 364.9673,528.85014 365.15979,528.83389 C 365.33847,528.82008 365.47733,528.85509 365.59604,528.98761 C 365.82729,529.25755 365.91975,529.62635 366.26354,529.81006 C 366.36104,529.86134 366.7773,529.73255 367.00229,529.62009 C 367.13359,529.54129 367.29228,529.42256 367.29228,529.25136 C 367.27222,528.91384 367.04234,528.64384 366.76479,528.45256 C 366.47358,528.30005 366.16359,528.0888 365.95225,527.81888 C 365.84728,527.67384 365.81225,527.4976 365.76107,527.33005 C 365.74474,527.27634 365.67478,527.28383 365.64228,527.31006 C 365.52974,527.40886 365.61733,527.62386 365.64975,527.73761 C 365.67607,527.82886 365.69728,527.89135 365.64853,527.93133 C 365.4848,528.06385 365.21609,528.01258 365.02842,528.00389 C 364.59858,527.9826 364.20978,527.81261 363.76109,527.8513 C 363.33232,527.87129 362.61355,528.13138 362.41984,527.71633 C 362.26108,527.32014 362.33478,526.86138 362.40725,526.4526 C 362.40725,526.40636 362.36103,526.37883 362.32234,526.37256 C 362.28847,526.36005 362.24223,526.37883 362.2298,526.4188 C 362.12359,526.81508 362.11483,527.26139 361.9836,527.66514 C 361.87229,528.00389 361.58847,528.43258 361.21227,528.62385 C 360.87604,528.79505 360.49975,528.86135 360.10357,528.8876 C 359.37732,528.90133 358.63232,529.03889 358.1898,529.66633 C 358.1573,529.72508 358.15097,529.74255 358.13854,529.79634 C 358.11733,529.88636 358.20232,529.91009 358.24725,529.85881 C 358.74484,529.30011 359.4173,529.09885 360.1372,529.1251 C 360.83607,529.1251 361.52347,529.00639 361.95858,528.41259 C 362.07103,528.28136 362.24223,527.99633 362.24223,527.99633 L 362.47478,528.17509 C 362.47478,528.17509 362.36103,528.45883 362.2961,528.59005 C 362.20104,528.77758 362.02228,529.07383 361.81972,529.18506 C 361.67972,529.26136 361.43855,529.38259 361.19228,529.52136 C 360.98475,529.64009 360.71109,529.66008 360.45978,529.59385 C 360.14354,529.53503 359.72103,529.45636 359.4173,529.60133 C 359.25853,529.70005 359.12342,529.8576 358.98105,529.97135 C 358.83358,530.08755 358.57853,530.2438 358.32103,530.22884 C 358.14228,530.21885 357.93224,530.07633 357.78605,530.2351 C 357.60234,530.41378 357.54855,530.71133 357.30472,530.82386 C 357.02105,530.98255 356.701,530.82386 356.41109,530.79761 L 356.41353,530.7838 C 356.47228,530.52014 356.51225,530.2351 356.69109,530.0301 C 356.80354,530.01759 356.90853,529.9976 356.99474,529.91756 C 357.10605,529.81884 357.19234,529.68631 357.27222,529.56135 C 357.51605,529.41014 357.80597,529.28386 357.96474,529.02011 C 358.08345,528.7688 358.19607,528.39764 358.28105,528.31386 C 358.29853,528.29761 358.32843,528.27389 358.38108,528.26755 C 358.436,528.26138 358.63842,528.25764 358.81854,528.23505 C 358.89354,528.22514 359.29355,528.08384 359.49603,527.89753 C 359.56225,527.83764 359.5798,527.73761 359.55608,527.65385 C 359.53228,527.56878 359.36733,527.2263 359.31858,526.96759 C 359.29355,526.83758 359.28608,526.4201 359.26479,526.11508 C 359.25983,526.0413 359.22733,526.0313 359.17972,526.04259 C 358.83975,526.12889 358.49972,526.2138 358.1235,526.15505 C 357.6086,526.08883 357.07355,525.7526 356.88228,525.23761 C 356.71108,524.78878 356.74975,524.16134 357.0798,523.80505 C 357.39093,523.42259 357.7798,523.12511 358.14975,522.81505 C 358.20858,522.76883 358.24725,522.72259 358.23978,522.65636 C 358.22857,522.55505 358.14228,522.49134 358.07605,522.4651 C 357.83847,522.41253 357.58853,522.49134 357.35729,522.39261 C 356.96109,522.24758 356.64478,521.87008 356.59229,521.45511 C 356.57855,521.27003 356.64225,520.97385 356.71108,520.95256 C 356.76105,520.93761 357.0148,521.16505 357.16853,521.24508 C 357.32982,521.32755 357.49233,521.37883 357.87105,521.47389 z"
id="path22824"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 383.01342,521.41133 C 383.21734,521.55003 383.30974,521.82759 383.56105,521.88633 C 383.98357,521.9788 384.40593,522.0776 384.78847,522.26886 C 385.06595,522.40756 385.34092,522.6263 385.61222,522.82009 C 385.82592,522.97253 386.06983,522.92889 386.31984,523.0151 C 386.68353,523.10756 386.981,523.38505 387.30358,523.5963 C 387.73357,523.93254 388.32729,523.88011 388.80984,524.09764 C 389.57477,524.34254 390.19482,524.93634 390.90854,525.29255 C 391.27842,525.49129 391.8323,525.57003 392.20225,525.34511 C 392.44609,525.16758 392.60478,524.93634 392.55222,524.6188 C 392.41359,523.84006 391.54857,523.41755 391.13979,522.77134 C 391.05358,522.61258 390.99483,522.40131 391.05853,522.21134 C 391.19105,521.82384 391.60228,521.60885 391.94484,521.49014 C 392.2298,521.39255 392.55855,521.38508 392.81604,521.23256 C 392.90843,521.18008 392.9848,521.09883 393.05354,521.03511 C 393.10725,520.98636 393.11359,521.09386 393.12603,521.13384 C 393.20605,521.59634 393.11984,522.07134 392.71724,522.34135 C 392.5648,522.44755 392.37972,522.49134 392.19608,522.54009 C 392.05478,522.57633 391.73229,522.6263 391.75357,522.74509 C 391.77608,522.87258 391.91104,522.96253 392.01107,523.04883 C 392.54604,523.49758 393.04103,524.06505 393.10603,524.75758 C 393.12603,525.29255 392.75722,525.76138 392.2948,525.98636 C 391.95728,526.13133 391.52233,526.18381 391.1523,526.07884 C 391.05358,526.0651 390.8948,525.97264 390.82843,526.09753 C 390.80234,526.24378 390.87359,526.37256 390.90854,526.50753 C 390.97103,526.75389 390.94104,527.08134 390.86223,527.32631 C 390.82843,527.51759 390.62473,527.74884 390.80974,527.94628 C 390.98728,528.21003 391.33105,528.13138 391.61472,528.17753 C 391.77357,528.20385 391.81972,528.37505 391.86595,528.49506 C 391.91859,528.6401 391.98727,528.96138 392.0473,529.08634 C 392.10353,529.20254 392.30853,529.32629 392.47234,529.51755 C 392.671,529.72889 392.83603,530.09259 393.17225,530.07259 C 393.27854,530.3101 393.35109,530.54508 393.38359,530.81639 L 393.33728,530.8263 C 393.06728,530.8263 392.71358,530.91503 392.50858,530.71629 C 392.23972,530.4713 392.19608,530.13264 391.85855,530.2438 C 391.71359,530.36389 391.496,530.40256 391.31733,530.33009 C 391.1523,530.27134 391.03343,530.11258 390.88222,530.02629 C 390.4198,529.68884 389.81227,529.51755 389.21222,529.65008 C 388.86859,529.74255 388.59729,529.50383 388.32103,529.3388 C 387.96359,529.18759 387.85854,528.79756 387.7798,528.4676 C 387.7798,528.4676 387.70603,528.0901 387.71358,528.05881 C 387.72105,528.02631 387.72724,528.00884 387.78605,527.97253 C 387.83725,527.94133 387.85854,527.98634 387.85854,527.98634 C 388.00609,528.38756 388.44608,528.98258 388.96724,529.15509 C 389.44233,529.34635 389.8923,529.1013 390.39974,529.19384 C 390.88222,529.25389 391.25858,529.56386 391.63478,529.85379 C 391.66728,529.86134 391.69345,529.82754 391.70734,529.80136 L 391.70734,529.76886 C 391.27109,529.21383 390.6573,528.92384 389.94472,528.97633 C 389.35725,529.1013 388.76354,528.90385 388.42609,528.4026 C 388.24108,528.11878 388.09604,527.81505 388.04355,527.47753 C 387.99105,527.09506 387.90484,526.67255 387.7798,526.32259 C 387.75478,526.26255 387.70603,526.2463 387.66483,526.2688 C 387.62355,526.29009 387.62859,526.32755 387.62729,526.34884 C 387.62607,526.37005 387.79224,527.16136 387.66109,527.55009 C 387.56854,527.85389 387.25093,527.97253 386.96109,527.98634 C 386.6698,528.00633 386.39972,527.94628 386.10233,527.94628 C 385.40225,527.92004 384.80228,528.20385 384.08222,528.13138 C 384.14225,527.96635 384.23854,527.78385 384.20353,527.5951 C 384.18857,527.53514 384.13478,527.53131 384.08222,527.55756 C 383.94977,527.64255 383.96358,527.80758 383.88484,527.92004 C 383.73225,528.17753 383.44859,528.39511 383.15853,528.45509 C 382.95353,528.61378 382.75608,528.83136 382.59105,529.02264 C 382.52475,529.0813 382.52475,529.18759 382.54474,529.27388 C 382.68978,529.61628 383.07979,529.66259 383.39595,529.74888 C 383.54732,529.76139 383.69358,529.70883 383.76605,529.5776 C 383.8972,529.36634 383.92353,529.02264 384.2348,528.98258 L 384.90725,528.98258 C 384.97234,528.99128 385.03978,528.99884 385.0423,529.08504 C 385.04359,529.12129 385.02734,529.1563 385.00605,529.18759 C 384.90359,529.34384 384.7961,529.60384 384.59728,529.73506 C 384.49222,529.76886 384.34604,529.72889 384.27357,529.82754 C 384.2348,530.05879 384.17477,530.30384 383.94359,530.43003 C 383.77842,530.58133 383.51482,530.50884 383.3298,530.44888 C 382.97359,530.3101 382.59105,530.2438 382.23354,530.12509 C 382.07592,530.07885 382.01603,529.88758 381.85725,529.84753 C 381.6997,529.80755 381.52347,529.93634 381.40224,529.79504 C 381.32228,529.70135 381.27842,529.51008 381.22608,529.3288 C 381.19358,529.21886 381.15108,529.07505 381.12475,528.94383 C 381.09859,528.83136 381.13232,528.75134 381.16474,528.64628 L 381.6598,527.74884 C 381.6997,527.69634 381.73603,527.6276 381.79843,527.61005 C 381.841,527.59761 382.10605,527.71259 382.13359,527.74884 C 382.14847,527.76883 382.14107,527.80003 382.10353,527.85885 C 382.00595,528.0138 381.62593,528.60013 381.62593,528.60013 C 381.51485,528.85754 381.62234,529.14135 381.73854,529.35253 C 381.75357,529.38008 381.77859,529.4051 381.80484,529.39259 C 381.79233,529.23381 381.77234,529.07505 381.80484,528.91003 C 381.83727,528.76506 381.93103,528.62004 382.0222,528.48759 L 382.42595,527.89386 C 382.47234,527.78759 382.45845,527.63638 382.3923,527.54383 C 382.21484,527.36508 381.96353,527.31884 381.81858,527.08881 C 381.48105,526.64639 381.4548,526.13133 381.41597,525.57003 C 381.40857,525.52388 381.37607,525.46383 381.32358,525.45131 C 381.28353,525.43759 381.25103,525.48381 381.23103,525.51014 C 381.12475,525.86758 381.19105,526.31634 381.28353,526.63883 C 381.34975,526.89633 381.4548,527.13505 381.56734,527.37255 C 381.58107,527.41879 381.54728,527.4651 381.50722,527.47753 C 381.24347,527.4976 380.97354,527.47135 380.70972,527.44503 C 380.35975,527.39261 380.08853,527.09385 379.80472,526.88885 L 379.73109,526.96003 C 379.80472,527.33639 380.2473,527.56381 380.37845,527.92636 C 380.46474,528.21003 380.73604,528.4351 380.80104,528.73883 C 380.80104,528.78514 380.76854,528.83136 380.72857,528.85754 C 380.63609,528.88378 380.53722,528.81764 380.4523,528.87005 C 380.43857,529.03508 380.54355,529.20758 380.47107,529.37878 C 380.37845,529.52389 380.2473,529.69639 380.06854,529.70256 C 379.71843,529.58378 379.38228,529.43881 379.03232,529.33261 C 378.78093,529.31255 378.53107,529.34635 378.29342,529.37878 C 378.06858,529.33261 377.9098,529.13509 377.73845,529.00258 C 377.68604,528.98884 377.63233,528.98258 377.59357,529.02264 C 377.20355,529.41258 376.78722,529.82754 376.2073,529.80136 C 376.17343,529.79504 376.13353,529.74758 376.13353,529.71508 L 376.14734,529.68884 C 376.40475,529.46506 376.70855,529.22009 376.81475,528.90385 C 376.89357,528.6401 377.13108,528.44883 377.2098,528.18379 C 377.21592,528.14136 377.21225,528.1226 377.1773,528.10505 C 377.13222,528.09886 377.08484,528.14503 377.08484,528.14503 C 376.80728,528.44128 376.58984,528.75134 376.38484,529.07505 C 376.17343,529.29256 375.86345,529.41883 375.54729,529.3388 C 375.50732,529.31255 375.50732,529.25389 375.5273,529.22009 C 376.72229,528.48759 376.85978,527.18128 377.19104,525.99255 C 377.42229,525.20634 377.58724,524.39503 378.20728,523.75508 C 379.13104,522.74509 380.28605,522.13756 381.29725,521.25255 C 381.44855,521.12004 381.64608,520.97508 381.84482,520.96134 C 382.31983,520.92129 382.66353,521.13384 383.01342,521.41133"
id="path22826"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 383.01342,521.41133 C 383.21734,521.55003 383.30974,521.82759 383.56105,521.88633 C 383.98357,521.9788 384.40593,522.0776 384.78847,522.26886 C 385.06595,522.40756 385.34092,522.6263 385.61222,522.82009 C 385.82592,522.97253 386.06983,522.92889 386.31984,523.0151 C 386.68353,523.10756 386.981,523.38505 387.30358,523.5963 C 387.73357,523.93254 388.32729,523.88011 388.80984,524.09764 C 389.57477,524.34254 390.19482,524.93634 390.90854,525.29255 C 391.27842,525.49129 391.8323,525.57003 392.20225,525.34511 C 392.44609,525.16758 392.60478,524.93634 392.55222,524.6188 C 392.41359,523.84006 391.54857,523.41755 391.13979,522.77134 C 391.05358,522.61258 390.99483,522.40131 391.05853,522.21134 C 391.19105,521.82384 391.60228,521.60885 391.94484,521.49014 C 392.2298,521.39255 392.55855,521.38508 392.81604,521.23256 C 392.90843,521.18008 392.9848,521.09883 393.05354,521.03511 C 393.10725,520.98636 393.11359,521.09386 393.12603,521.13384 C 393.20605,521.59634 393.11984,522.07134 392.71724,522.34135 C 392.5648,522.44755 392.37972,522.49134 392.19608,522.54009 C 392.05478,522.57633 391.73229,522.6263 391.75357,522.74509 C 391.77608,522.87258 391.91104,522.96253 392.01107,523.04883 C 392.54604,523.49758 393.04103,524.06505 393.10603,524.75758 C 393.12603,525.29255 392.75722,525.76138 392.2948,525.98636 C 391.95728,526.13133 391.52233,526.18381 391.1523,526.07884 C 391.05358,526.0651 390.8948,525.97264 390.82843,526.09753 C 390.80234,526.24378 390.87359,526.37256 390.90854,526.50753 C 390.97103,526.75389 390.94104,527.08134 390.86223,527.32631 C 390.82843,527.51759 390.62473,527.74884 390.80974,527.94628 C 390.98728,528.21003 391.33105,528.13138 391.61472,528.17753 C 391.77357,528.20385 391.81972,528.37505 391.86595,528.49506 C 391.91859,528.6401 391.98727,528.96138 392.0473,529.08634 C 392.10353,529.20254 392.30853,529.32629 392.47234,529.51755 C 392.671,529.72889 392.83603,530.09259 393.17225,530.07259 C 393.27854,530.3101 393.35109,530.54508 393.38359,530.81639 L 393.33728,530.8263 C 393.06728,530.8263 392.71358,530.91503 392.50858,530.71629 C 392.23972,530.4713 392.19608,530.13264 391.85855,530.2438 C 391.71359,530.36389 391.496,530.40256 391.31733,530.33009 C 391.1523,530.27134 391.03343,530.11258 390.88222,530.02629 C 390.4198,529.68884 389.81227,529.51755 389.21222,529.65008 C 388.86859,529.74255 388.59729,529.50383 388.32103,529.3388 C 387.96359,529.18759 387.85854,528.79756 387.7798,528.4676 C 387.7798,528.4676 387.70603,528.0901 387.71358,528.05881 C 387.72105,528.02631 387.72724,528.00884 387.78605,527.97253 C 387.83725,527.94133 387.85854,527.98634 387.85854,527.98634 C 388.00609,528.38756 388.44608,528.98258 388.96724,529.15509 C 389.44233,529.34635 389.8923,529.1013 390.39974,529.19384 C 390.88222,529.25389 391.25858,529.56386 391.63478,529.85379 C 391.66728,529.86134 391.69345,529.82754 391.70734,529.80136 L 391.70734,529.76886 C 391.27109,529.21383 390.6573,528.92384 389.94472,528.97633 C 389.35725,529.1013 388.76354,528.90385 388.42609,528.4026 C 388.24108,528.11878 388.09604,527.81505 388.04355,527.47753 C 387.99105,527.09506 387.90484,526.67255 387.7798,526.32259 C 387.75478,526.26255 387.70603,526.2463 387.66483,526.2688 C 387.62355,526.29009 387.62859,526.32755 387.62729,526.34884 C 387.62607,526.37005 387.79224,527.16136 387.66109,527.55009 C 387.56854,527.85389 387.25093,527.97253 386.96109,527.98634 C 386.6698,528.00633 386.39972,527.94628 386.10233,527.94628 C 385.40225,527.92004 384.80228,528.20385 384.08222,528.13138 C 384.14225,527.96635 384.23854,527.78385 384.20353,527.5951 C 384.18857,527.53514 384.13478,527.53131 384.08222,527.55756 C 383.94977,527.64255 383.96358,527.80758 383.88484,527.92004 C 383.73225,528.17753 383.44859,528.39511 383.15853,528.45509 C 382.95353,528.61378 382.75608,528.83136 382.59105,529.02264 C 382.52475,529.0813 382.52475,529.18759 382.54474,529.27388 C 382.68978,529.61628 383.07979,529.66259 383.39595,529.74888 C 383.54732,529.76139 383.69358,529.70883 383.76605,529.5776 C 383.8972,529.36634 383.92353,529.02264 384.2348,528.98258 L 384.90725,528.98258 C 384.97234,528.99128 385.03978,528.99884 385.0423,529.08504 C 385.04359,529.12129 385.02734,529.1563 385.00605,529.18759 C 384.90359,529.34384 384.7961,529.60384 384.59728,529.73506 C 384.49222,529.76886 384.34604,529.72889 384.27357,529.82754 C 384.2348,530.05879 384.17477,530.30384 383.94359,530.43003 C 383.77842,530.58133 383.51482,530.50884 383.3298,530.44888 C 382.97359,530.3101 382.59105,530.2438 382.23354,530.12509 C 382.07592,530.07885 382.01603,529.88758 381.85725,529.84753 C 381.6997,529.80755 381.52347,529.93634 381.40224,529.79504 C 381.32228,529.70135 381.27842,529.51008 381.22608,529.3288 C 381.19358,529.21886 381.15108,529.07505 381.12475,528.94383 C 381.09859,528.83136 381.13232,528.75134 381.16474,528.64628 L 381.6598,527.74884 C 381.6997,527.69634 381.73603,527.6276 381.79843,527.61005 C 381.841,527.59761 382.10605,527.71259 382.13359,527.74884 C 382.14847,527.76883 382.14107,527.80003 382.10353,527.85885 C 382.00595,528.0138 381.62593,528.60013 381.62593,528.60013 C 381.51485,528.85754 381.62234,529.14135 381.73854,529.35253 C 381.75357,529.38008 381.77859,529.4051 381.80484,529.39259 C 381.79233,529.23381 381.77234,529.07505 381.80484,528.91003 C 381.83727,528.76506 381.93103,528.62004 382.0222,528.48759 L 382.42595,527.89386 C 382.47234,527.78759 382.45845,527.63638 382.3923,527.54383 C 382.21484,527.36508 381.96353,527.31884 381.81858,527.08881 C 381.48105,526.64639 381.4548,526.13133 381.41597,525.57003 C 381.40857,525.52388 381.37607,525.46383 381.32358,525.45131 C 381.28353,525.43759 381.25103,525.48381 381.23103,525.51014 C 381.12475,525.86758 381.19105,526.31634 381.28353,526.63883 C 381.34975,526.89633 381.4548,527.13505 381.56734,527.37255 C 381.58107,527.41879 381.54728,527.4651 381.50722,527.47753 C 381.24347,527.4976 380.97354,527.47135 380.70972,527.44503 C 380.35975,527.39261 380.08853,527.09385 379.80472,526.88885 L 379.73109,526.96003 C 379.80472,527.33639 380.2473,527.56381 380.37845,527.92636 C 380.46474,528.21003 380.73604,528.4351 380.80104,528.73883 C 380.80104,528.78514 380.76854,528.83136 380.72857,528.85754 C 380.63609,528.88378 380.53722,528.81764 380.4523,528.87005 C 380.43857,529.03508 380.54355,529.20758 380.47107,529.37878 C 380.37845,529.52389 380.2473,529.69639 380.06854,529.70256 C 379.71843,529.58378 379.38228,529.43881 379.03232,529.33261 C 378.78093,529.31255 378.53107,529.34635 378.29342,529.37878 C 378.06858,529.33261 377.9098,529.13509 377.73845,529.00258 C 377.68604,528.98884 377.63233,528.98258 377.59357,529.02264 C 377.20355,529.41258 376.78722,529.82754 376.2073,529.80136 C 376.17343,529.79504 376.13353,529.74758 376.13353,529.71508 L 376.14734,529.68884 C 376.40475,529.46506 376.70855,529.22009 376.81475,528.90385 C 376.89357,528.6401 377.13108,528.44883 377.2098,528.18379 C 377.21592,528.14136 377.21225,528.1226 377.1773,528.10505 C 377.13222,528.09886 377.08484,528.14503 377.08484,528.14503 C 376.80728,528.44128 376.58984,528.75134 376.38484,529.07505 C 376.17343,529.29256 375.86345,529.41883 375.54729,529.3388 C 375.50732,529.31255 375.50732,529.25389 375.5273,529.22009 C 376.72229,528.48759 376.85978,527.18128 377.19104,525.99255 C 377.42229,525.20634 377.58724,524.39503 378.20728,523.75508 C 379.13104,522.74509 380.28605,522.13756 381.29725,521.25255 C 381.44855,521.12004 381.64608,520.97508 381.84482,520.96134 C 382.31983,520.92129 382.66353,521.13384 383.01342,521.41133 z"
id="path22828"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 366.83483,529.14509 C 366.88609,529.25503 366.94233,529.28256 366.85725,529.35505 C 366.70482,529.47384 366.46358,529.56256 366.32854,529.52008 C 366.24095,529.49253 366.15359,529.18506 366.05105,529.03759 C 365.98475,528.94139 365.84354,528.86883 365.87359,528.80009 C 365.88985,528.76385 365.94859,528.76385 365.94859,528.76385 C 366.15978,528.76385 366.35478,528.75134 366.56604,528.72135 C 366.75472,528.69389 366.72229,528.92879 366.83483,529.14509"
id="path22830"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 366.83483,529.14509 C 366.88609,529.25503 366.94233,529.28256 366.85725,529.35505 C 366.70482,529.47384 366.46358,529.56256 366.32854,529.52008 C 366.24095,529.49253 366.15359,529.18506 366.05105,529.03759 C 365.98475,528.94139 365.84354,528.86883 365.87359,528.80009 C 365.88985,528.76385 365.94859,528.76385 365.94859,528.76385 C 366.15978,528.76385 366.35478,528.75134 366.56604,528.72135 C 366.75472,528.69389 366.72229,528.92879 366.83483,529.14509 z"
id="path22832"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 383.73607,528.89889 C 383.70983,529.08383 383.65108,529.26884 383.5847,529.44011 C 383.52474,529.55883 383.34858,529.52633 383.24855,529.50634 C 383.11595,529.48009 382.94483,529.44759 382.92477,529.28256 C 382.90484,529.12388 383.05728,528.86005 383.05728,528.86005 C 383.21109,528.83136 383.3298,528.8763 383.61728,528.84006 C 383.67107,528.83259 383.7485,528.84259 383.73607,528.89889"
id="path22834"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 383.73607,528.89889 C 383.70983,529.08383 383.65108,529.26884 383.5847,529.44011 C 383.52474,529.55883 383.34858,529.52633 383.24855,529.50634 C 383.11595,529.48009 382.94483,529.44759 382.92477,529.28256 C 382.90484,529.12388 383.05728,528.86005 383.05728,528.86005 C 383.21109,528.83136 383.3298,528.8763 383.61728,528.84006 C 383.67107,528.83259 383.7485,528.84259 383.73607,528.89889 z"
id="path22836"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 357.17105,529.19261 C 357.16228,529.21635 356.94095,529.61133 356.72984,529.7176 C 356.61228,529.77756 356.53728,529.73636 356.48723,529.69509 C 356.46854,529.68014 356.37103,529.57005 356.37103,529.57005 C 356.33228,529.52503 356.3586,529.38633 356.41979,529.33514 C 356.57978,529.20131 356.72733,529.11259 356.87603,529.01134 C 356.91478,528.9851 356.981,528.97259 357.02105,529.00509 C 357.11483,529.08009 357.19104,529.13754 357.17105,529.19261"
id="path22838"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 357.17105,529.19261 C 357.16228,529.21635 356.94095,529.61133 356.72984,529.7176 C 356.61228,529.77756 356.53728,529.73636 356.48723,529.69509 C 356.46854,529.68014 356.37103,529.57005 356.37103,529.57005 C 356.33228,529.52503 356.3586,529.38633 356.41979,529.33514 C 356.57978,529.20131 356.72733,529.11259 356.87603,529.01134 C 356.91478,528.9851 356.981,528.97259 357.02105,529.00509 C 357.11483,529.08009 357.19104,529.13754 357.17105,529.19261 z"
id="path22840"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 393.02357,529.05514 C 393.12732,529.14509 393.38474,529.27258 393.50604,529.44759 C 393.54977,529.50878 393.44608,529.62384 393.38725,529.67761 C 393.32592,529.73506 393.2622,529.77009 393.16974,529.77009 C 393.07735,529.76383 392.99975,529.70509 392.93857,529.63253 C 392.81978,529.49009 392.64484,529.29134 392.64972,529.20384 C 392.65224,529.14883 392.86609,528.92505 392.99854,529.03636 L 393.02357,529.05514"
id="path22842"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 393.02357,529.05514 C 393.12732,529.14509 393.38474,529.27258 393.50604,529.44759 C 393.54977,529.50878 393.44608,529.62384 393.38725,529.67761 C 393.32592,529.73506 393.2622,529.77009 393.16974,529.77009 C 393.07735,529.76383 392.99975,529.70509 392.93857,529.63253 C 392.81978,529.49009 392.64484,529.29134 392.64972,529.20384 C 392.65224,529.14883 392.86609,528.92505 392.99854,529.03636 L 393.02357,529.05514 z"
id="path22844"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 356.06983,530.83508 C 356.0435,530.84255 355.64609,530.71133 355.62473,530.68881 C 355.59978,530.66509 355.6148,530.60009 355.64105,530.57003 C 355.75359,530.44514 355.7635,530.39639 355.79234,530.00889 C 355.79853,529.92634 355.92845,529.7826 356.03725,529.73759 C 356.11354,529.7063 356.35097,529.99134 356.34105,530.02133 C 356.21478,530.37388 356.11858,530.82134 356.06983,530.83508"
id="path22846"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 356.06983,530.83508 C 356.0435,530.84255 355.64609,530.71133 355.62473,530.68881 C 355.59978,530.66509 355.6148,530.60009 355.64105,530.57003 C 355.75359,530.44514 355.7635,530.39639 355.79234,530.00889 C 355.79853,529.92634 355.92845,529.7826 356.03725,529.73759 C 356.11354,529.7063 356.35097,529.99134 356.34105,530.02133 C 356.21478,530.37388 356.11858,530.82134 356.06983,530.83508 z"
id="path22848"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 394.07725,530.35633 C 394.10358,530.46886 394.27357,530.70759 394.1598,530.74253 L 393.73859,530.88139 C 393.68724,530.89634 393.66108,530.74253 393.66108,530.74253 C 393.60729,530.50136 393.56609,530.32635 393.48728,530.08755 C 393.46484,529.93504 393.5448,529.86378 393.68724,529.79259 C 393.80984,529.73133 393.95343,529.8138 393.996,529.91253 C 394.04475,530.02629 394.04475,530.2013 394.07725,530.35633"
id="path22850"
style="fill:#e30f4d;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 394.07725,530.35633 C 394.10358,530.46886 394.27357,530.70759 394.1598,530.74253 L 393.73859,530.88139 C 393.68724,530.89634 393.66108,530.74253 393.66108,530.74253 C 393.60729,530.50136 393.56609,530.32635 393.48728,530.08755 C 393.46484,529.93504 393.5448,529.86378 393.68724,529.79259 C 393.80984,529.73133 393.95343,529.8138 393.996,529.91253 C 394.04475,530.02629 394.04475,530.2013 394.07725,530.35633 z"
id="path22852"
style="fill:none;stroke:#e30f4d;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 381.9173,522.64508 C 381.96979,522.73129 381.92355,522.8101 381.87092,522.86259 C 381.59977,523.12008 381.26972,523.38383 381.07234,523.69503 C 380.99972,523.79383 380.94722,523.90636 380.89359,524.0176 C 380.88725,524.03134 380.87359,524.05758 380.84728,524.03134 C 380.81722,524.00135 380.83858,523.72258 380.90107,523.55633 C 381.03725,523.18638 381.34975,522.8426 381.66607,522.60509 C 381.73854,522.55879 381.87732,522.54635 381.9173,522.64508"
id="path22854"
style="fill:#fbbf15;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 381.9173,522.64508 C 381.96979,522.73129 381.92355,522.8101 381.87092,522.86259 C 381.59977,523.12008 381.26972,523.38383 381.07234,523.69503 C 380.99972,523.79383 380.94722,523.90636 380.89359,524.0176 C 380.88725,524.03134 380.87359,524.05758 380.84728,524.03134 C 380.81722,524.00135 380.83858,523.72258 380.90107,523.55633 C 381.03725,523.18638 381.34975,522.8426 381.66607,522.60509 C 381.73854,522.55879 381.87732,522.54635 381.9173,522.64508 z"
id="path22856"
style="fill:none;stroke:#fbbf15;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 368.82732,523.43014 C 369.00974,523.80383 368.89103,524.33133 368.86608,524.41883 C 368.85478,524.45889 368.82358,524.47384 368.8148,524.42753 C 368.72859,523.9851 368.67984,523.79383 368.58722,523.60508 C 368.48972,523.40885 368.3298,523.32264 368.42105,523.17256 C 368.44722,523.13008 368.5348,523.11138 368.59607,523.14006 C 368.69472,523.1876 368.77475,523.32508 368.82732,523.43014"
id="path22858"
style="fill:#fbbf15;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 368.82732,523.43014 C 369.00974,523.80383 368.89103,524.33133 368.86608,524.41883 C 368.85478,524.45889 368.82358,524.47384 368.8148,524.42753 C 368.72859,523.9851 368.67984,523.79383 368.58722,523.60508 C 368.48972,523.40885 368.3298,523.32264 368.42105,523.17256 C 368.44722,523.13008 368.5348,523.11138 368.59607,523.14006 C 368.69472,523.1876 368.77475,523.32508 368.82732,523.43014 z"
id="path22860"
style="fill:none;stroke:#fbbf15;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 371.91608,526.13133 C 372.13359,526.37509 372.27984,526.64509 372.20607,526.98254 C 372.17357,527.04884 372.17983,527.14764 372.09475,527.16755 C 372.05478,527.18014 372.02228,527.15381 372.02228,527.11384 C 372.00847,526.93638 372.00847,526.75136 371.90342,526.60633 C 371.78355,526.48006 371.65843,526.26255 371.46724,526.26255 C 371.33472,526.30253 371.23607,526.45381 371.15725,526.5601 C 371.15108,526.57254 371.13109,526.57254 371.11728,526.56628 C 371.0448,526.38134 371.12605,526.21754 371.19472,526.0651 C 371.26109,525.91885 371.33472,525.6226 371.58603,525.72758 C 371.75732,525.82005 371.79103,526.00514 371.91608,526.13133"
id="path22862"
style="fill:#fbbf15;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 371.91608,526.13133 C 372.13359,526.37509 372.27984,526.64509 372.20607,526.98254 C 372.17357,527.04884 372.17983,527.14764 372.09475,527.16755 C 372.05478,527.18014 372.02228,527.15381 372.02228,527.11384 C 372.00847,526.93638 372.00847,526.75136 371.90342,526.60633 C 371.78355,526.48006 371.65843,526.26255 371.46724,526.26255 C 371.33472,526.30253 371.23607,526.45381 371.15725,526.5601 C 371.15108,526.57254 371.13109,526.57254 371.11728,526.56628 C 371.0448,526.38134 371.12605,526.21754 371.19472,526.0651 C 371.26109,525.91885 371.33472,525.6226 371.58603,525.72758 C 371.75732,525.82005 371.79103,526.00514 371.91608,526.13133 z"
id="path22864"
style="fill:none;stroke:#fbbf15;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 379.23092,526.46138 C 379.24358,526.50005 379.23854,526.54003 379.22473,526.58009 C 379.19857,526.61259 379.15103,526.65883 379.1048,526.62631 C 378.97228,526.58009 378.99234,526.37509 378.82732,526.3876 C 378.70235,526.38134 378.62972,526.48761 378.53107,526.54003 C 378.35857,526.69133 378.12854,526.85009 378.08857,527.08134 C 378.05607,527.16755 378.06858,527.28634 377.99609,527.33258 C 377.9497,527.34509 377.89722,527.30633 377.89722,527.26635 C 377.87105,526.96255 377.96978,526.67134 378.19354,526.46755 C 378.41228,526.2888 378.56357,526.04504 378.74233,525.84004 C 378.78604,525.79631 378.88484,525.8913 378.95343,525.96508 C 379.00225,526.01886 379.15729,526.28261 379.23092,526.46138"
id="path22866"
style="fill:#fbbf15;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 379.23092,526.46138 C 379.24358,526.50005 379.23854,526.54003 379.22473,526.58009 C 379.19857,526.61259 379.15103,526.65883 379.1048,526.62631 C 378.97228,526.58009 378.99234,526.37509 378.82732,526.3876 C 378.70235,526.38134 378.62972,526.48761 378.53107,526.54003 C 378.35857,526.69133 378.12854,526.85009 378.08857,527.08134 C 378.05607,527.16755 378.06858,527.28634 377.99609,527.33258 C 377.9497,527.34509 377.89722,527.30633 377.89722,527.26635 C 377.87105,526.96255 377.96978,526.67134 378.19354,526.46755 C 378.41228,526.2888 378.56357,526.04504 378.74233,525.84004 C 378.78604,525.79631 378.88484,525.8913 378.95343,525.96508 C 379.00225,526.01886 379.15729,526.28261 379.23092,526.46138 z"
id="path22868"
style="fill:none;stroke:#fbbf15;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 371.49974,528.40755 C 371.51355,528.53383 371.49357,528.73256 371.40728,528.76506 C 371.28482,528.81008 371.1423,528.83259 371.00483,528.81138 C 370.96103,528.80383 370.92609,528.77758 370.93853,528.73883 C 370.99842,528.56006 371.16984,528.38139 371.36227,528.34255 C 371.41483,528.34255 371.48723,528.33508 371.49974,528.40755"
id="path22870"
style="fill:#fbbf15;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 371.49974,528.40755 C 371.51355,528.53383 371.49357,528.73256 371.40728,528.76506 C 371.28482,528.81008 371.1423,528.83259 371.00483,528.81138 C 370.96103,528.80383 370.92609,528.77758 370.93853,528.73883 C 370.99842,528.56006 371.16984,528.38139 371.36227,528.34255 C 371.41483,528.34255 371.48723,528.33508 371.49974,528.40755 z"
id="path22872"
style="fill:none;stroke:#fbbf15;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 379.0198,528.52756 C 379.0198,528.52756 379.14478,528.69136 379.0848,528.79756 C 379.03605,528.88378 378.84975,528.86883 378.76857,528.81138 C 378.67107,528.74134 378.61605,528.62255 378.6085,528.47759 C 378.60592,528.44388 378.6085,528.41389 378.64978,528.38139 C 378.72608,528.34636 378.92734,528.41503 379.0198,528.52756"
id="path22874"
style="fill:#fbbf15;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="M 379.0198,528.52756 C 379.0198,528.52756 379.14478,528.69136 379.0848,528.79756 C 379.03605,528.88378 378.84975,528.86883 378.76857,528.81138 C 378.67107,528.74134 378.61605,528.62255 378.6085,528.47759 C 378.60592,528.44388 378.6085,528.41389 378.64978,528.38139 C 378.72608,528.34636 378.92734,528.41503 379.0198,528.52756 z"
id="path22876"
style="fill:none;stroke:#fbbf15;stroke-width:0.1750125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3.86400008;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>
<!-- version: 20080810, original size: 47.5938 28.87966, border: 3% -->
Display the source blob
Display the rendered blob
Raw
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