Location: Proctor, 2007 @ 4e63fac88515 / proctor_2007a.xul

Author:
Tommy Yu <tommy.yu@auckland.ac.nz>
Date:
2015-02-12 18:56:49+13:00
Desc:
Merging in the extra head.
Permanent Source URI:
https://models.physiomeproject.org/workspace/proctor_2007/rawfile/4e63fac88515893e8f2943f2014f29bbdb7f32fa/proctor_2007a.xul

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="layout-diagram" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" style="overflow: auto" onload="setupDocument()">
<hbox>
	<scale id="zoom_scale" value="10" min="7" max="14" flex="4"/>
	<label value="Zoom" control="zoom_scale" flex="1"/>
	<button id="reset_button" label="Reset View" flex="1"/>
	<spacer flex="34"/>
</hbox>
<script>
<![CDATA[
window.model_entities =
  {

			
	NatP: {
		id: "NatP",
		y: "NatP/NatP",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#ff9900",
		linestyle: "none"
	},

	MisP: {
		id: "MisP",
		y: "MisP/MisP",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#ff00cc",
		linestyle: "none"
	},

	E1: {
		id: "E1",
		y: "E1/E1",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#cc00ff",
		linestyle: "none"
	},


	E2: {
		id: "E2",
		y: "E2/E2",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#3300ff",
		linestyle: "none"
	},


	E3: {
		id: "E3",
		y: "E3/E3",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	},


	E1_Ub: {
		id: "E1_Ub",
		y: "E1_Ub/E1_Ub",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	},


	E2_Ub: {
		id: "E2_Ub",
		y: "E2_Ub/E2_Ub",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	},


	E3_MisP: {
		id: "E3_MisP",
		y: "E3_MisP/E3_MisP",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	},


	ATP: {
		id: "ATP",
		y: "ATP/ATP",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	},


	ADP: {
		id: "ADP",
		y: "ADP/ADP",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	},


	Ub: {
		id: "Ub",
		y: "Ub/Ub",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	},


	MisP_Ub: {
		id: "MisP_Ub",
		y: "MisP_Ub/MisP_Ub",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (s)",
		colour: "#66ff66",
		linestyle: "none"
	}

	
			
 // Repeat the above section for each controllable graph trace.
 // Remember to add a comma to each repeat after the final },
 // except for the final one!
 
};

function flushVisibilityInformation(entity_id, entity_colour)
{
	var message = "";
	var entity;

	if (typeof pcenv != "undefined")
	{
		for (var i in window.model_entities)
		{
			entity = window.model_entities[i];
			if (typeof entity_id == "undefined" || entity_id == window.model_entities[i].id)
			{
				pcenv.selectTrace
				(
					entity.graph,
					entity.x,
					entity.y,
					typeof entity_colour == "undefined" ? "" : entity_colour,
					entity.linestyle
				);
			}
			if (entity.linestyle != "none")
				message += i + ", ";
		}
		pcenv.status(message == "" ? "No fluxes displayed" : "Displaying flux of " + message.slice(0, -2));
	}
}

function processSelectEntity(event)
{
	if (typeof pcenv != "undefined")
		pcenv.status("In processSelectEntity");

	var entity = window.model_entities[window.svgIdToName[event.currentTarget.id]];

	switch(entity.linestyle)
	{
	case "none":
		entity.linestyle = "lines";
		highlightEntity(event.currentTarget.id);
		break;
	case "lines":
		entity.linestyle = "none";
		unlightEntity(event.currentTarget.id);
		break;
	}

	flushVisibilityInformation(entity.id);
}

function processContext(event)
{
	// if (event.button != 2)
	//   return true;

	var entity = window.model_entities[window.svgIdToName[event.currentTarget.id]];

	if (entity.context == null)
		return true;

	var menu = document.getElementById("entityContextMenu");

	for (var c = menu.firstChild, x = null; c != null; c = x)
	{
		x = c.nextSibling;
		menu.removeChild(c);
	}

	for (var i in entity.context)
	{
		var item = entity.context[i];

		var mitem = document.createElementNS
		(
			"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
			"menuitem"
		);

		mitem.setAttribute("label", item.label);
		mitem.setAttribute("url", item.url);
		mitem.addEventListener("command", processShowEntityURL, false);
		menu.appendChild(mitem);
	}

	menu.showPopup(window.diagram, event.screenX, event.screenY, "context");

	event.stopPropagation;
	return false;
}

function processShowEntityURL(event)
{
	url = event.target.getAttribute("url");

	window.open(url);

	var hl = document.getElementById("hidden-link");
	hl.href = url;

	// This is ugly, but it is one way to force everything through the proper
	// external handler...
	var evt = document.createEvent("HTMLEvents");
	evt.initEvent("click", true, true);
	hl.dispatchEvent(evt);
}

function highlightEntity(id)
{
	for (var path = document.getElementById(id + "_path1"), i = 1; path != null; path = document.getElementById(id + "_path" + ++i))
	{
		if (!(i in window.model_entities[window.svgIdToName[id]].path_colours))
			window.model_entities[window.svgIdToName[id]].path_colours[i] = path.attributes.getNamedItem("stroke").value;
		path.attributes.getNamedItem("stroke").value = "#ff0000";
	}
}

function highlightEntityOnRollover(event) {
	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].colour)
		flushVisibilityInformation(event.currentTarget.id, "#ffffff");

	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].linestyle == "none")
		highlightEntity(event.currentTarget.id);
}

function unlightEntity(id)
{
	for (var path = document.getElementById(id + "_path1"), i = 1; path != null; path = document.getElementById(id + "_path" + ++i))
		path.attributes.getNamedItem("stroke").value = window.model_entities[window.svgIdToName[id]].path_colours[i];
}

function unlightEntityOnRollover(event) {
	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].colour)
		flushVisibilityInformation(event.currentTarget.id, window.model_entities[window.svgIdToName[event.currentTarget.id]].colour);

	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].linestyle == "none")
		unlightEntity(event.currentTarget.id);
}

var mouseDown = false;
var initial_x;
var initial_y;
var viewBox;

function startDrag(event)
{
	if (event.button)
		return true;

	mouseDown = true;

	initial_x = parseInt(currentZoom * event.pageX + parseInt(viewBox.value.match(/^-?\d+/)[0]));
	initial_y = parseInt(currentZoom * event.pageY + parseInt(viewBox.value.match(/^-?\d+\s+(-?(\d+))/)[1]));
}

function stopDrag(event)
{
	if (!event.button)
		mouseDown = false;
}

function moveDrag(event)
{
	if (mouseDown == true)
		viewBox.value = viewBox.value.replace(/^-?\d+\s+-?\d+/, parseInt(initial_x - currentZoom * event.pageX) + " " + parseInt(initial_y - currentZoom * event.pageY));
}

function reset()
{
	var zoom_scale = document.getElementById("zoom_scale")
	zoom_scale.value = zoom_scale.originalValue;
	viewBox.value = viewBox.originalValue;
}

var initialZoom;
var currentZoom = 1;
var initialHeight;
var initialWidth;

function zoomDiagram(event)
{
	currentZoom = initialZoom / event.currentTarget.value;
	viewBox.value = viewBox.value.replace(/\d+\s+\d+$/, parseInt(initialHeight * currentZoom) + " " + parseInt(initialWidth * currentZoom));
}

function setupDocument()
{
	flushVisibilityInformation();

	window.diagram = document.getElementById("sachse");

	window.svgIdToName = {};

	for (var name in window.model_entities)
	{
		var id = window.model_entities[name].id;
		window.model_entities[name].path_colours = [];

		var svg = document.getElementById(id);
		window.svgIdToName[id] = name;

		svg.addEventListener("click", processSelectEntity, false);
		svg.addEventListener("contextmenu", processContext, false);
		svg.addEventListener("mouseover", highlightEntityOnRollover ,false);
		svg.addEventListener("mouseout", unlightEntityOnRollover, false);
	}

	document.getElementsByTagName("svg")[0].addEventListener("mousedown", startDrag, false);
	document.addEventListener("mouseup", stopDrag, false);
	document.addEventListener("mousemove", moveDrag, false);
	document.getElementById("reset_button").addEventListener("click", reset, false);

	document.getElementById("zoom_scale").addEventListener("change", zoomDiagram, false);
	document.getElementById("zoom_scale").originalValue = document.getElementById("zoom_scale").value;

	viewBox = document.getElementsByTagName("svg")[0].attributes.getNamedItem("viewBox");
	viewBox.originalValue = viewBox.value;

	initialZoom = document.getElementById("zoom_scale").value;
	initialHeight = parseInt(viewBox.value.match(/(\d+)\s+\d+$/)[1]);
	initialWidth = parseInt(viewBox.value.match(/\d+$/)[0]);
}

]]>
</script>

<popupset>
  <menupopup id="entityContextMenu" />
</popupset>

<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 width="423px" height="486px" viewBox="0 0 423 486" enable-background="new 0 0 423 486" xml:space="preserve">

<g>
	<g>
		<g>
			<g id="MisP">
				
					<radialGradient id="MisP_path1_1_" cx="3778.5896" cy="3261.9219" r="16.1858" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="MisP_path1" fill="url(#MisP_path1_1_)" stroke="#000000" d="M2761.375,1121.448c0,7.354-14.369,13.317-32.086,13.317
					c-17.72,0-32.085-5.961-32.085-13.317c0-7.355,14.365-13.314,32.085-13.314
					C2747.006,1108.136,2761.375,1114.093,2761.375,1121.448z"/>
				<g>
					<path d="M2724.465,1121.414c-0.07-1.316-0.154-2.913-0.154-4.076h-0.026c-0.337,1.093-0.716,2.283-1.191,3.586l-1.666,4.581
						h-0.926l-1.54-4.497c-0.448-1.345-0.812-2.549-1.079-3.67h-0.027c-0.028,1.177-0.099,2.746-0.183,4.175l-0.252,4.048h-1.163
						l0.657-9.44h1.556l1.61,4.565c0.394,1.163,0.701,2.199,0.953,3.181h0.027c0.252-0.952,0.589-1.988,1.009-3.181l1.681-4.565
						h1.556l0.589,9.44h-1.204L2724.465,1121.414z"/>
					<path d="M2729.263,1116.876c0,0.42-0.295,0.756-0.785,0.756c-0.447,0-0.741-0.336-0.741-0.756s0.309-0.771,0.77-0.771
						C2728.955,1116.105,2729.263,1116.441,2729.263,1116.876z M2727.89,1125.561v-6.778h1.232v6.778H2727.89z"/>
					<path d="M2730.998,1124.312c0.379,0.226,1.021,0.478,1.639,0.478c0.883,0,1.303-0.435,1.303-1.009
						c0-0.588-0.35-0.896-1.246-1.232c-1.231-0.448-1.808-1.105-1.808-1.919c0-1.093,0.896-1.989,2.339-1.989
						c0.688,0,1.289,0.184,1.653,0.42l-0.294,0.896c-0.266-0.168-0.756-0.405-1.387-0.405c-0.729,0-1.121,0.42-1.121,0.924
						c0,0.562,0.393,0.813,1.274,1.163c1.162,0.435,1.779,1.022,1.779,2.031c0,1.204-0.938,2.045-2.521,2.045
						c-0.742,0-1.431-0.196-1.906-0.477L2730.998,1124.312z"/>
					<path d="M2736.752,1116.23c0.588-0.098,1.359-0.182,2.34-0.182c1.204,0,2.086,0.279,2.646,0.784
						c0.505,0.448,0.826,1.135,0.826,1.975c0,0.854-0.252,1.527-0.729,2.019c-0.659,0.687-1.694,1.036-2.886,1.036
						c-0.364,0-0.7-0.015-0.98-0.084v3.781h-1.219L2736.752,1116.23L2736.752,1116.23z M2737.97,1120.784
						c0.267,0.069,0.604,0.098,1.01,0.098c1.471,0,2.366-0.729,2.366-2.003c0-1.261-0.896-1.863-2.228-1.863
						c-0.532,0-0.938,0.042-1.148,0.1V1120.784z"/>
				</g>
			</g>
			<g id="NatP">
				
					<radialGradient id="NatP_path1_1_" cx="3693.948" cy="3261.9219" r="16.1858" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="NatP_path1" fill="url(#NatP_path1_1_)" stroke="#000000" d="M2590.449,1121.448c0,7.354-14.371,13.317-32.088,13.317
					c-17.719,0-32.084-5.961-32.084-13.317c0-7.355,14.365-13.314,32.084-13.314
					C2576.078,1108.136,2590.449,1114.093,2590.449,1121.448z"/>
				<g>
					<path d="M2545.435,1125.561v-9.441h1.345l3.012,4.777c0.687,1.105,1.247,2.101,1.681,3.066l0.042-0.015
						c-0.112-1.261-0.14-2.409-0.14-3.88v-3.95h1.148v9.44h-1.232l-2.998-4.791c-0.658-1.05-1.289-2.129-1.75-3.15l-0.042,0.014
						c0.07,1.191,0.084,2.325,0.084,3.896v4.034H2545.435L2545.435,1125.561z"/>
					<path d="M2559.367,1123.936c0,0.589,0.027,1.162,0.098,1.625h-1.107l-0.098-0.854h-0.042c-0.378,0.532-1.106,1.009-2.073,1.009
						c-1.373,0-2.072-0.967-2.072-1.947c0-1.639,1.457-2.534,4.076-2.521v-0.14c0-0.547-0.154-1.569-1.541-1.556
						c-0.645,0-1.303,0.183-1.779,0.504l-0.28-0.825c0.562-0.352,1.387-0.59,2.241-0.59c2.072,0,2.578,1.415,2.578,2.761V1123.936
						L2559.367,1123.936z M2558.177,1122.1c-1.345-0.027-2.872,0.21-2.872,1.527c0,0.812,0.532,1.176,1.148,1.176
						c0.896,0,1.471-0.56,1.667-1.134c0.042-0.141,0.056-0.28,0.056-0.393L2558.177,1122.1L2558.177,1122.1z"/>
					<path d="M2562.781,1117.155v1.625h1.765v0.938h-1.765v3.655c0,0.841,0.238,1.317,0.924,1.317c0.336,0,0.533-0.028,0.714-0.084
						l0.056,0.938c-0.237,0.084-0.615,0.168-1.092,0.168c-0.574,0-1.037-0.196-1.331-0.519c-0.336-0.379-0.476-0.98-0.476-1.779
						v-3.697h-1.051v-0.938h1.051v-1.262L2562.781,1117.155z"/>
					<path d="M2565.971,1116.23c0.588-0.099,1.359-0.183,2.339-0.183c1.205,0,2.088,0.279,2.647,0.784
						c0.504,0.448,0.827,1.135,0.827,1.975c0,0.854-0.252,1.527-0.729,2.019c-0.659,0.687-1.694,1.036-2.886,1.036
						c-0.364,0-0.7-0.015-0.98-0.084v3.781h-1.219L2565.971,1116.23L2565.971,1116.23z M2567.191,1120.783
						c0.266,0.068,0.603,0.098,1.009,0.098c1.471,0,2.366-0.729,2.366-2.003c0-1.261-0.896-1.863-2.228-1.863
						c-0.532,0-0.938,0.042-1.147,0.1V1120.783z"/>
				</g>
			</g>
			<g>
				<g>
					<line fill="none" stroke="#000000" x1="2460" y1="1121.333" x2="2520" y2="1121.333"/>
					<polygon points="2517.191,1125.037 2518.763,1121.333 2517.191,1117.629 2525.969,1121.333 					"/>
				</g>
			</g>
			<g>
				<g>
					<line fill="none" stroke="#000000" x1="2591" y1="1121.333" x2="2690.583" y2="1121.333"/>
					<polygon points="2687.773,1125.037 2689.346,1121.333 2687.773,1117.629 2696.552,1121.333 					"/>
				</g>
			</g>
			<g>
				<g>
					<path fill="none" stroke="#000000" d="M2609.474,1085.998c-14.5,44.5,73,48.5,61,0.5"/>
					<polygon points="2674.748,1088.324 2670.773,1087.696 2667.562,1090.121 2669.027,1080.707 					"/>
				</g>
			</g>
			<g>
				<path d="M2625.368,1065.526c0.792-0.145,1.944-0.252,3.007-0.252c1.674,0,2.771,0.323,3.511,0.989
					c0.595,0.54,0.955,1.368,0.955,2.323c0,1.584-1.008,2.647-2.269,3.079v0.054c0.918,0.324,1.477,1.188,1.765,2.449
					c0.396,1.692,0.685,2.863,0.937,3.331h-1.621c-0.197-0.36-0.468-1.386-0.791-2.899c-0.36-1.674-1.026-2.305-2.449-2.358h-1.477
					v5.258h-1.566L2625.368,1065.526L2625.368,1065.526z M2626.935,1071.054h1.602c1.675,0,2.737-0.918,2.737-2.305
					c0-1.566-1.136-2.251-2.791-2.251c-0.757,0-1.278,0.054-1.548,0.126V1071.054z"/>
				<path d="M2645.478,1071.306c0,4.159-2.539,6.393-5.637,6.393c-3.223,0-5.456-2.503-5.456-6.177c0-3.854,2.377-6.373,5.618-6.373
					C2643.334,1065.148,2645.478,1067.688,2645.478,1071.306z M2636.042,1071.486c0,2.61,1.404,4.934,3.889,4.934
					c2.485,0,3.89-2.287,3.89-5.042c0-2.431-1.261-4.951-3.871-4.951C2637.338,1066.427,2636.042,1068.839,2636.042,1071.486z"/>
				<path d="M2647.31,1075.591c0.701,0.45,1.709,0.792,2.791,0.792c1.603,0,2.539-0.846,2.539-2.071
					c0-1.115-0.648-1.782-2.287-2.395c-1.981-0.72-3.205-1.765-3.205-3.457c0-1.892,1.565-3.295,3.925-3.295
					c1.224,0,2.143,0.288,2.665,0.594l-0.432,1.278c-0.379-0.234-1.188-0.576-2.287-0.576c-1.656,0-2.287,0.99-2.287,1.817
					c0,1.135,0.737,1.692,2.412,2.341c2.054,0.793,3.08,1.782,3.08,3.565c0,1.873-1.369,3.511-4.231,3.511
					c-1.17,0-2.449-0.359-3.097-0.792L2647.31,1075.591z"/>
			</g>
			<g>
				<path d="M2489.31,1132.358h0.024c0.144-0.204,0.336-0.456,0.504-0.66l1.715-2.003h1.259l-2.229,2.387l2.554,3.418h-1.295
					l-1.99-2.782l-0.541,0.601v2.183h-1.043v-8.515h1.043V1132.358z"/>
				<path d="M2494.669,1135.526h-0.014l-0.79,0.427l-0.119-0.468l0.993-0.531h0.523v4.542h-0.594V1135.526z"/>
			</g>
			<g>
				<path d="M2637.81,1108.858h0.024c0.144-0.204,0.336-0.456,0.504-0.66l1.715-2.003h1.259l-2.229,2.387l2.554,3.418h-1.295
					l-1.99-2.782l-0.541,0.601V1112h-1.043v-8.515h1.043V1108.858z"/>
				<path d="M2641.834,1115.996v-0.377l0.482-0.468c1.159-1.104,1.69-1.691,1.69-2.376c0-0.461-0.216-0.889-0.896-0.889
					c-0.412,0-0.754,0.21-0.964,0.385l-0.196-0.434c0.309-0.259,0.763-0.461,1.279-0.461c0.979,0,1.392,0.671,1.392,1.321
					c0,0.839-0.608,1.517-1.565,2.438l-0.355,0.335v0.015h2.033v0.51H2641.834L2641.834,1115.996z"/>
			</g>
			<g id="E2">
				
					<radialGradient id="E2_path1_1_" cx="3747.4724" cy="3155.7168" r="16.1863" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E2_path1" fill="url(#E2_path1_1_)" stroke="#000000" d="M2698.537,1207.271c0,7.354-14.369,13.317-32.086,13.317
					c-17.72,0-32.085-5.961-32.085-13.317c0-7.355,14.365-13.314,32.085-13.314
					C2684.168,1193.959,2698.537,1199.916,2698.537,1207.271z"/>
				<g>
					<path d="M2665.355,1206.955h-3.655v3.404h4.09v1.021h-5.323v-9.441h5.112v1.022h-3.88v2.984h3.656V1206.955L2665.355,1206.955z
						"/>
					<path d="M2666.935,1211.382v-0.757l0.966-0.938c2.325-2.214,3.39-3.391,3.39-4.763c0-0.925-0.436-1.778-1.793-1.778
						c-0.827,0-1.513,0.42-1.934,0.771l-0.392-0.869c0.616-0.518,1.527-0.924,2.563-0.924c1.961,0,2.787,1.345,2.787,2.647
						c0,1.681-1.219,3.038-3.138,4.889l-0.714,0.672v0.028h4.076v1.021H2666.935z"/>
				</g>
			</g>
			<g id="E1">
				
					<radialGradient id="E1_path1_1_" cx="3679.3201" cy="3138.1836" r="16.1863" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E1_path1" fill="url(#E1_path1_1_)" stroke="#000000" d="M2560.909,1221.439c0,7.355-14.369,13.318-32.086,13.318
					c-17.72,0-32.085-5.961-32.085-13.318c0-7.354,14.365-13.313,32.085-13.313
					C2546.54,1208.127,2560.909,1214.084,2560.909,1221.439z"/>
				<g>
					<path d="M2527.728,1221.124h-3.656v3.404h4.09v1.021h-5.323v-9.44h5.112v1.021h-3.88v2.984h3.656L2527.728,1221.124
						L2527.728,1221.124z"/>
					<path d="M2531.982,1217.594h-0.028l-1.583,0.854l-0.238-0.938l1.989-1.063h1.051v9.104h-1.19V1217.594z"/>
				</g>
			</g>
			<g>
				
					<radialGradient id="E3_path2_1_" cx="3916.8562" cy="3190.0117" r="16.1858" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E3_path2" fill="url(#E3_path2_1_)" stroke="#000000" d="M3040.59,1179.558c0,7.355-14.369,13.318-32.086,13.318
					c-17.72,0-32.085-5.961-32.085-13.318c0-7.354,14.365-13.313,32.085-13.313C3026.22,1166.246,3040.59,1172.203,3040.59,1179.558
					z"/>
				<g>
					<path d="M3007.408,1179.241h-3.656v3.403h4.091v1.022h-5.323v-9.441h5.113v1.022h-3.881v2.984h3.656V1179.241z"/>
					<path d="M3009.281,1182.268c0.351,0.21,1.147,0.561,2.018,0.561c1.568,0,2.072-0.994,2.06-1.766
						c-0.015-1.273-1.162-1.82-2.354-1.82h-0.686v-0.924h0.686c0.896,0,2.031-0.463,2.031-1.541c0-0.729-0.462-1.373-1.597-1.373
						c-0.729,0-1.429,0.321-1.821,0.603l-0.336-0.896c0.49-0.352,1.415-0.7,2.396-0.7c1.793,0,2.604,1.063,2.604,2.171
						c0,0.952-0.574,1.751-1.681,2.157v0.027c1.12,0.21,2.017,1.051,2.031,2.325c0,1.456-1.148,2.731-3.32,2.731
						c-1.022,0-1.919-0.322-2.367-0.616L3009.281,1182.268z"/>
				</g>
			</g>
			<g id="E3">
				
					<radialGradient id="E3_path1_1_" cx="3778.8357" cy="3209.3281" r="16.1858" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E3_path1" fill="url(#E3_path1_1_)" stroke="#000000" d="M2761.87,1163.949c0,7.354-14.369,13.317-32.086,13.317
					c-17.72,0-32.085-5.961-32.085-13.317c0-7.355,14.365-13.314,32.085-13.314
					C2747.501,1150.637,2761.87,1156.594,2761.87,1163.949z"/>
				<g>
					<path d="M2728.687,1163.633h-3.655v3.404h4.091v1.021h-5.323v-9.44h5.112v1.021h-3.88v2.984h3.656L2728.687,1163.633
						L2728.687,1163.633z"/>
					<path d="M2730.56,1166.659c0.353,0.21,1.149,0.56,2.019,0.56c1.568,0,2.073-0.994,2.06-1.765
						c-0.015-1.274-1.162-1.821-2.354-1.821h-0.688v-0.924h0.688c0.896,0,2.031-0.463,2.031-1.541c0-0.729-0.462-1.373-1.598-1.373
						c-0.729,0-1.43,0.322-1.82,0.604l-0.337-0.896c0.489-0.351,1.416-0.7,2.396-0.7c1.793,0,2.605,1.064,2.605,2.171
						c0,0.952-0.574,1.752-1.682,2.157v0.028c1.121,0.21,2.018,1.05,2.03,2.325c0,1.456-1.147,2.73-3.319,2.73
						c-1.021,0-1.918-0.322-2.367-0.616L2730.56,1166.659z"/>
				</g>
			</g>
			<g>
				
					<radialGradient id="E2_path2_1_" cx="3908.5896" cy="3128.7676" r="16.1853" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E2_path2" fill="url(#E2_path2_1_)" stroke="#000000" d="M3023.894,1229.049c0,7.355-14.368,13.318-32.086,13.318
					c-17.72,0-32.084-5.961-32.084-13.318c0-7.354,14.364-13.313,32.084-13.313
					C3009.525,1215.736,3023.894,1221.693,3023.894,1229.049z"/>
				<g>
					<path d="M2990.713,1228.733h-3.656v3.403h4.092v1.022h-5.323v-9.441h5.112v1.022h-3.881v2.983h3.656V1228.733z"/>
					<path d="M2992.292,1233.16v-0.757l0.966-0.938c2.326-2.213,3.392-3.39,3.392-4.762c0-0.925-0.436-1.779-1.793-1.779
						c-0.826,0-1.515,0.42-1.935,0.771l-0.392-0.869c0.616-0.518,1.525-0.924,2.562-0.924c1.961,0,2.787,1.345,2.787,2.646
						c0,1.682-1.219,3.039-3.138,4.89l-0.714,0.672v0.027h4.075v1.022H2992.292z"/>
				</g>
			</g>
			<g>
				
					<radialGradient id="E1_path2_1_" cx="3823.5388" cy="3081.2852" r="16.1858" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E1_path2" fill="url(#E1_path2_1_)" stroke="#000000" d="M2852.142,1267.419c0,7.354-14.368,13.318-32.086,13.318
					c-17.72,0-32.084-5.962-32.084-13.318c0-7.354,14.364-13.313,32.084-13.313
					C2837.773,1254.107,2852.142,1260.064,2852.142,1267.419z"/>
				<g>
					<path d="M2818.962,1267.104h-3.656v3.403h4.091v1.022h-5.322v-9.441h5.111v1.022h-3.879v2.983h3.655V1267.104
						L2818.962,1267.104z"/>
					<path d="M2823.216,1263.574h-0.028l-1.582,0.854l-0.237-0.938l1.987-1.064h1.052v9.104h-1.19L2823.216,1263.574
						L2823.216,1263.574z"/>
				</g>
			</g>
			<g id="E3_MisP">
				<g>
					
						<radialGradient id="E3_MisP_path2_1_" cx="3844.2507" cy="3231.3945" r="16.1863" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#A2FF5F"/>
						<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
						<stop  offset="0.5552" style="stop-color:#99FD5F"/>
						<stop  offset="0.66" style="stop-color:#8EFB5E"/>
						<stop  offset="0.7448" style="stop-color:#7DF85E"/>
						<stop  offset="0.8174" style="stop-color:#67F35D"/>
						<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
						<stop  offset="0.9398" style="stop-color:#2BE85B"/>
						<stop  offset="0.9915" style="stop-color:#07E05A"/>
						<stop  offset="1" style="stop-color:#00DF5A"/>
					</radialGradient>
					<path id="E3_MisP_path2" fill="url(#E3_MisP_path2_1_)" stroke="#000000" d="M2893.969,1146.116
						c0,7.354-14.368,13.317-32.086,13.317c-17.72,0-32.085-5.961-32.085-13.317c0-7.355,14.365-13.314,32.085-13.314
						C2879.601,1132.804,2893.969,1138.761,2893.969,1146.116z"/>
					<g>
						<path d="M2860.789,1145.8h-3.656v3.404h4.09v1.022h-5.321v-9.441h5.11v1.021h-3.879v2.984h3.656V1145.8L2860.789,1145.8z"/>
						<path d="M2862.661,1148.826c0.351,0.21,1.148,0.56,2.017,0.56c1.569,0,2.074-0.993,2.061-1.765
							c-0.014-1.274-1.163-1.821-2.354-1.821h-0.688v-0.924h0.688c0.896,0,2.031-0.463,2.031-1.541c0-0.729-0.463-1.373-1.598-1.373
							c-0.729,0-1.43,0.322-1.82,0.604l-0.337-0.896c0.49-0.351,1.415-0.7,2.396-0.7c1.793,0,2.605,1.064,2.605,2.172
							c0,0.951-0.574,1.75-1.682,2.156v0.028c1.121,0.21,2.018,1.05,2.031,2.325c0,1.456-1.148,2.73-3.319,2.73
							c-1.022,0-1.919-0.322-2.367-0.616L2862.661,1148.826z"/>
					</g>
				</g>
				<g>
					
						<radialGradient id="E3_MisP_path1_1_" cx="3844.2507" cy="3264.1895" r="16.1858" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#A2FF5F"/>
						<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
						<stop  offset="0.5552" style="stop-color:#99FD5F"/>
						<stop  offset="0.66" style="stop-color:#8EFB5E"/>
						<stop  offset="0.7448" style="stop-color:#7DF85E"/>
						<stop  offset="0.8174" style="stop-color:#67F35D"/>
						<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
						<stop  offset="0.9398" style="stop-color:#2BE85B"/>
						<stop  offset="0.9915" style="stop-color:#07E05A"/>
						<stop  offset="1" style="stop-color:#00DF5A"/>
					</radialGradient>
					<path id="E3_MisP_path1" fill="url(#E3_MisP_path1_1_)" stroke="#000000" d="M2893.969,1119.615
						c0,7.354-14.368,13.317-32.086,13.317c-17.72,0-32.085-5.961-32.085-13.317c0-7.355,14.365-13.314,32.085-13.314
						C2879.601,1106.303,2893.969,1112.26,2893.969,1119.615z"/>
					<g>
						<path d="M2857.06,1119.581c-0.07-1.316-0.154-2.913-0.154-4.076h-0.028c-0.336,1.093-0.714,2.283-1.19,3.586l-1.666,4.581
							h-0.925l-1.541-4.497c-0.448-1.345-0.812-2.549-1.077-3.67h-0.029c-0.027,1.177-0.098,2.746-0.182,4.175l-0.252,4.049h-1.162
							l0.657-9.441h1.556l1.61,4.566c0.393,1.162,0.699,2.198,0.951,3.18h0.029c0.252-0.952,0.588-1.988,1.008-3.18l1.682-4.566
							h1.556l0.588,9.441h-1.205L2857.06,1119.581z"/>
						<path d="M2861.857,1115.043c0,0.42-0.295,0.756-0.784,0.756c-0.448,0-0.742-0.336-0.742-0.756s0.308-0.771,0.771-0.771
							C2861.549,1114.271,2861.857,1114.608,2861.857,1115.043z M2860.484,1123.729v-6.779h1.232v6.779H2860.484z"/>
						<path d="M2863.593,1122.48c0.378,0.225,1.022,0.477,1.64,0.477c0.883,0,1.303-0.436,1.303-1.009
							c0-0.588-0.352-0.896-1.247-1.232c-1.232-0.448-1.808-1.105-1.808-1.919c0-1.093,0.896-1.989,2.341-1.989
							c0.686,0,1.289,0.184,1.651,0.421l-0.293,0.896c-0.268-0.168-0.758-0.405-1.388-0.405c-0.729,0-1.12,0.42-1.12,0.924
							c0,0.562,0.393,0.813,1.273,1.163c1.164,0.435,1.779,1.022,1.779,2.031c0,1.204-0.938,2.045-2.521,2.045
							c-0.742,0-1.428-0.196-1.904-0.477L2863.593,1122.48z"/>
						<path d="M2869.346,1114.398c0.589-0.099,1.358-0.183,2.339-0.183c1.205,0,2.088,0.279,2.648,0.784
							c0.504,0.448,0.826,1.135,0.826,1.975c0,0.854-0.252,1.527-0.729,2.019c-0.657,0.687-1.694,1.036-2.886,1.036
							c-0.364,0-0.7-0.015-0.98-0.084v3.781h-1.219L2869.346,1114.398L2869.346,1114.398z M2870.564,1118.951
							c0.268,0.068,0.604,0.098,1.01,0.098c1.471,0,2.367-0.729,2.367-2.003c0-1.261-0.896-1.863-2.229-1.863
							c-0.532,0-0.938,0.042-1.148,0.1V1118.951z"/>
					</g>
				</g>
			</g>
			<g id="MisP_Ub">
				<g>
					
						<radialGradient id="MisP_Ub_path2_1_" cx="3909.2166" cy="3282.7637" r="16.1853" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#A2FF5F"/>
						<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
						<stop  offset="0.5552" style="stop-color:#99FD5F"/>
						<stop  offset="0.66" style="stop-color:#8EFB5E"/>
						<stop  offset="0.7448" style="stop-color:#7DF85E"/>
						<stop  offset="0.8174" style="stop-color:#67F35D"/>
						<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
						<stop  offset="0.9398" style="stop-color:#2BE85B"/>
						<stop  offset="0.9915" style="stop-color:#07E05A"/>
						<stop  offset="1" style="stop-color:#00DF5A"/>
					</radialGradient>
					<path id="MisP_Ub_path2" fill="url(#MisP_Ub_path2_1_)" stroke="#000000" d="M3025.16,1104.605
						c0,7.354-14.369,13.317-32.086,13.317c-17.719,0-32.084-5.961-32.084-13.317c0-7.355,14.365-13.314,32.084-13.314
						C3010.791,1091.293,3025.16,1097.25,3025.16,1104.605z"/>
					<g>
						<path d="M2988.25,1104.571c-0.07-1.316-0.154-2.913-0.154-4.076h-0.027c-0.336,1.093-0.715,2.283-1.19,3.586l-1.666,4.581
							h-0.925l-1.54-4.497c-0.449-1.345-0.813-2.549-1.079-3.67h-0.028c-0.027,1.177-0.098,2.746-0.182,4.175l-0.252,4.048h-1.163
							l0.658-9.44h1.555l1.611,4.565c0.392,1.163,0.699,2.199,0.951,3.181h0.028c0.252-0.952,0.589-1.988,1.009-3.181l1.682-4.565
							h1.555l0.589,9.44h-1.205L2988.25,1104.571z"/>
						<path d="M2993.049,1100.033c0,0.42-0.295,0.756-0.785,0.756c-0.446,0-0.741-0.336-0.741-0.756s0.309-0.771,0.771-0.771
							C2992.74,1099.263,2993.049,1099.599,2993.049,1100.033z M2991.676,1108.718v-6.778h1.232v6.778H2991.676z"/>
						<path d="M2994.783,1107.471c0.379,0.226,1.022,0.478,1.639,0.478c0.883,0,1.303-0.436,1.303-1.009
							c0-0.589-0.35-0.896-1.246-1.232c-1.231-0.448-1.807-1.106-1.807-1.919c0-1.093,0.896-1.989,2.339-1.989
							c0.688,0,1.289,0.184,1.653,0.42l-0.295,0.896c-0.266-0.168-0.756-0.405-1.387-0.405c-0.729,0-1.12,0.42-1.12,0.924
							c0,0.562,0.392,0.813,1.273,1.163c1.163,0.434,1.779,1.021,1.779,2.031c0,1.204-0.938,2.045-2.521,2.045
							c-0.742,0-1.43-0.196-1.905-0.478L2994.783,1107.471z"/>
						<path d="M3000.537,1099.389c0.589-0.098,1.359-0.182,2.34-0.182c1.205,0,2.087,0.279,2.647,0.784
							c0.505,0.448,0.827,1.135,0.827,1.975c0,0.854-0.254,1.527-0.729,2.019c-0.659,0.687-1.695,1.035-2.887,1.035
							c-0.363,0-0.699-0.014-0.98-0.084v3.782h-1.219L3000.537,1099.389L3000.537,1099.389z M3001.756,1103.941
							c0.268,0.068,0.604,0.098,1.01,0.098c1.472,0,2.367-0.729,2.367-2.003c0-1.261-0.896-1.863-2.229-1.863
							c-0.531,0-0.938,0.042-1.148,0.099V1103.941z"/>
					</g>
				</g>
				<g>
					
						<radialGradient id="MisP_Ub_path1_1_" cx="2096.1233" cy="3847.501" r="16.1851" gradientTransform="matrix(0.715 0 0 -0.6566 1514.0999 3644.5308)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#A2FF5F"/>
						<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
						<stop  offset="0.5552" style="stop-color:#99FD5F"/>
						<stop  offset="0.66" style="stop-color:#8EFB5E"/>
						<stop  offset="0.7448" style="stop-color:#7DF85E"/>
						<stop  offset="0.8174" style="stop-color:#67F35D"/>
						<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
						<stop  offset="0.9398" style="stop-color:#2BE85B"/>
						<stop  offset="0.9915" style="stop-color:#07E05A"/>
						<stop  offset="1" style="stop-color:#00DF5A"/>
					</radialGradient>
					<path id="MisP_Ub_path1" fill="url(#MisP_Ub_path1_1_)" stroke="#000000" d="M3024.187,1118.26
						c0,5.975-5.088,10.82-11.357,10.82c-6.273,0-11.361-4.843-11.361-10.82c0-5.977,5.087-10.817,11.361-10.817
						C3019.101,1107.443,3024.187,1112.284,3024.187,1118.26z"/>
					<g>
						<path d="M3006.601,1112.928v5.604c0,2.101,0.938,2.997,2.198,2.997c1.388,0,2.298-0.924,2.298-2.997v-5.604h1.232v5.521
							c0,2.898-1.527,4.076-3.572,4.076c-1.934,0-3.39-1.094-3.39-4.034v-5.562H3006.601z"/>
						<path d="M3014.396,1112.424h1.22v4.258h0.028c0.434-0.756,1.219-1.231,2.311-1.231c1.695,0,2.872,1.4,2.872,3.446
							c0,2.423-1.541,3.628-3.054,3.628c-0.98,0-1.767-0.38-2.283-1.262h-0.028l-0.069,1.106h-1.051
							c0.027-0.462,0.057-1.148,0.057-1.751v-8.194H3014.396z M3015.616,1119.651c0,0.153,0.015,0.309,0.056,0.447
							c0.225,0.854,0.953,1.443,1.85,1.443c1.304,0,2.06-1.051,2.06-2.604c0-1.359-0.7-2.521-2.031-2.521
							c-0.825,0-1.61,0.588-1.862,1.513c-0.041,0.154-0.069,0.322-0.069,0.52v1.203H3015.616z"/>
					</g>
				</g>
			</g>
			<g>
				<g>
					<g>
						<path fill="none" stroke="#000000" d="M2831.81,1132.833c-44.591,4.846-56.696-4.275-64.354-9"/>
						<polygon points="2771.79,1122.156 2768.507,1124.482 2767.9,1128.46 2762.375,1120.699 						"/>
						<polygon points="2829.418,1136.818 2830.582,1132.967 2828.618,1129.455 2837.745,1132.188 						"/>
					</g>
				</g>
				<g>
					<g>
						<path fill="none" stroke="#000000" d="M2813.363,1134.201c-18.392,2.225-31.408,3.131-48.029,20.132"/>
						<polygon points="2764.648,1149.736 2766.198,1153.45 2769.946,1154.915 2761.161,1158.602 						"/>
					</g>
				</g>
			</g>
			<g>
				<g>
					<path fill="none" stroke="#000000" d="M2873.275,1133.447c36.392,4.846,78.162-1.447,99.679-12.781"/>
					<polygon points="2972.195,1125.252 2971.86,1121.242 2968.742,1118.698 2978.235,1117.885 					"/>
				</g>
			</g>
			<g>
				<g>
					<path fill="none" stroke="#000000" d="M2909.008,1135.097c36.992-2.295,55.613,24.857,63.946,36.464"/>
					<polygon points="2968.308,1171.438 2972.232,1170.556 2974.325,1167.118 2976.435,1176.408 					"/>
				</g>
			</g>
			<g>
				<path d="M2914.113,1120.691h0.023c0.145-0.204,0.336-0.456,0.504-0.66l1.715-2.003h1.26l-2.23,2.387l2.555,3.418h-1.295
					l-1.99-2.782l-0.54,0.6v2.184h-1.043v-8.516h1.043L2914.113,1120.691L2914.113,1120.691z"/>
				<path d="M2920.73,1123.72c-0.127-0.007-0.287,0.007-0.463,0.035c-0.972,0.154-1.475,0.854-1.578,1.607h0.014
					c0.217-0.293,0.602-0.531,1.104-0.531c0.805,0,1.37,0.587,1.37,1.468c0,0.838-0.565,1.607-1.518,1.607
					c-0.964,0-1.601-0.754-1.601-1.937c0-0.895,0.314-1.601,0.77-2.048c0.378-0.37,0.88-0.601,1.454-0.671
					c0.182-0.028,0.335-0.035,0.446-0.035v0.504H2920.73z M2920.554,1126.341c0-0.649-0.369-1.041-0.936-1.041
					c-0.371,0-0.721,0.224-0.889,0.56c-0.034,0.069-0.062,0.153-0.062,0.266c0.008,0.748,0.357,1.307,1.007,1.307
					C2920.199,1127.431,2920.554,1126.991,2920.554,1126.341z"/>
				<path d="M2923.627,1127.83v-1.244h-2.11v-0.398l2.026-2.899h0.664v2.823h0.636v0.475h-0.636v1.244H2923.627z M2923.627,1126.11
					v-1.518c0-0.237,0.007-0.475,0.021-0.713h-0.021c-0.14,0.267-0.252,0.461-0.377,0.671l-1.111,1.544v0.015L2923.627,1126.11
					L2923.627,1126.11z"/>
			</g>
			<g id="E2_Ub">
				<g>
					
						<radialGradient id="E2_Ub_path2_1_" cx="3823.5388" cy="3136.8477" r="16.1853" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#A2FF5F"/>
						<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
						<stop  offset="0.5552" style="stop-color:#99FD5F"/>
						<stop  offset="0.66" style="stop-color:#8EFB5E"/>
						<stop  offset="0.7448" style="stop-color:#7DF85E"/>
						<stop  offset="0.8174" style="stop-color:#67F35D"/>
						<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
						<stop  offset="0.9398" style="stop-color:#2BE85B"/>
						<stop  offset="0.9915" style="stop-color:#07E05A"/>
						<stop  offset="1" style="stop-color:#00DF5A"/>
					</radialGradient>
					<path id="E2_Ub_path2" fill="url(#E2_Ub_path2_1_)" stroke="#000000" d="M2852.142,1222.52
						c0,7.355-14.368,13.318-32.086,13.318c-17.72,0-32.084-5.961-32.084-13.318c0-7.354,14.364-13.313,32.084-13.313
						C2837.773,1209.208,2852.142,1215.165,2852.142,1222.52z"/>
					<g>
						<path d="M2818.961,1222.204h-3.656v3.404h4.092v1.021h-5.323v-9.44h5.112v1.021h-3.881v2.984h3.656V1222.204z"/>
						<path d="M2820.54,1226.631v-0.757l0.966-0.938c2.326-2.213,3.392-3.39,3.392-4.762c0-0.925-0.436-1.779-1.793-1.779
							c-0.826,0-1.515,0.421-1.935,0.771l-0.392-0.869c0.616-0.518,1.525-0.924,2.562-0.924c1.961,0,2.787,1.345,2.787,2.646
							c0,1.682-1.219,3.039-3.138,4.89l-0.714,0.672v0.028h4.075v1.021H2820.54z"/>
					</g>
				</g>
				<g>
					
						<radialGradient id="E2_Ub_path1_1_" cx="1852.241" cy="3668.4316" r="16.1848" gradientTransform="matrix(0.715 0 0 -0.6566 1514.0999 3644.5308)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#A2FF5F"/>
						<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
						<stop  offset="0.5552" style="stop-color:#99FD5F"/>
						<stop  offset="0.66" style="stop-color:#8EFB5E"/>
						<stop  offset="0.7448" style="stop-color:#7DF85E"/>
						<stop  offset="0.8174" style="stop-color:#67F35D"/>
						<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
						<stop  offset="0.9398" style="stop-color:#2BE85B"/>
						<stop  offset="0.9915" style="stop-color:#07E05A"/>
						<stop  offset="1" style="stop-color:#00DF5A"/>
					</radialGradient>
					<path id="E2_Ub_path1" fill="url(#E2_Ub_path1_1_)" stroke="#000000" d="M2849.812,1235.837c0,5.974-5.088,10.82-11.358,10.82
						c-6.274,0-11.361-4.843-11.361-10.82c0-5.977,5.087-10.817,11.361-10.817
						C2844.724,1225.021,2849.812,1229.861,2849.812,1235.837z"/>
					<g>
						<path d="M2832.224,1230.505v5.604c0,2.101,0.938,2.996,2.198,2.996c1.388,0,2.298-0.924,2.298-2.996v-5.604h1.232v5.521
							c0,2.898-1.527,4.076-3.572,4.076c-1.934,0-3.39-1.094-3.39-4.034v-5.562H2832.224z"/>
						<path d="M2840.021,1230.001h1.219v4.258h0.027c0.435-0.756,1.22-1.231,2.312-1.231c1.695,0,2.872,1.4,2.872,3.445
							c0,2.424-1.541,3.629-3.054,3.629c-0.98,0-1.767-0.38-2.283-1.262h-0.028l-0.068,1.106h-1.052
							c0.027-0.462,0.056-1.148,0.056-1.751V1230.001L2840.021,1230.001z M2841.239,1237.229c0,0.154,0.015,0.31,0.056,0.448
							c0.225,0.854,0.953,1.443,1.85,1.443c1.304,0,2.06-1.051,2.06-2.605c0-1.358-0.7-2.521-2.031-2.521
							c-0.825,0-1.61,0.588-1.862,1.513c-0.041,0.154-0.069,0.322-0.069,0.52v1.202H2841.239z"/>
					</g>
				</g>
			</g>
			<g>
				<g>
					<g>
						<path fill="none" stroke="#000000" d="M2682.333,1218.624c16.204,18.131,69.123,22.536,100.667,8.502"/>
						<polygon points="2781.939,1231.651 2781.871,1227.628 2778.927,1224.883 2788.454,1224.699 						"/>
					</g>
				</g>
				<g>
					<g>
						<path fill="none" stroke="#000000" d="M2683.166,1251.793c34.775-24.908,74.084-20.375,102.195,6.638"/>
						<polygon points="2780.771,1259.155 2784.47,1257.574 2785.902,1253.814 2789.666,1262.566 						"/>
					</g>
				</g>
			</g>
			<g id="E1_Ub">
				
					<radialGradient id="E1_Ub_path1_1_" cx="3747.4724" cy="3088.3496" r="16.1858" gradientTransform="matrix(2.0194 0 0 -0.8081 -4901.1953 3757.4077)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E1_Ub_path1" fill="url(#E1_Ub_path1_1_)" stroke="#000000" d="M2698.537,1261.711
					c0,7.355-14.369,13.318-32.086,13.318c-17.72,0-32.085-5.961-32.085-13.318c0-7.354,14.365-13.313,32.085-13.313
					C2684.168,1248.399,2698.537,1254.355,2698.537,1261.711z"/>
				<g>
					<path d="M2665.355,1261.395h-3.655v3.404h4.09v1.022h-5.323v-9.441h5.112v1.022h-3.88v2.983h3.656V1261.395L2665.355,1261.395z
						"/>
					<path d="M2669.61,1257.866h-0.028l-1.583,0.854l-0.238-0.938l1.989-1.064h1.051v9.104h-1.19V1257.866z"/>
				</g>
			</g>
			<g>
				
					<radialGradient id="E1_Ub_path2_1_" cx="1640.6682" cy="3608.7422" r="16.1851" gradientTransform="matrix(0.715 0 0 -0.6566 1514.0999 3644.5308)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="E1_Ub_path2" fill="url(#E1_Ub_path2_1_)" stroke="#000000" d="M2698.537,1275.029c0,5.974-5.088,10.819-11.357,10.819
					c-6.274,0-11.361-4.843-11.361-10.819c0-5.978,5.087-10.818,11.361-10.818
					C2693.449,1264.212,2698.537,1269.053,2698.537,1275.029z"/>
				<g>
					<path d="M2680.949,1269.697v5.604c0,2.102,0.938,2.997,2.199,2.997c1.387,0,2.297-0.924,2.297-2.997v-5.604h1.231v5.52
						c0,2.899-1.526,4.076-3.571,4.076c-1.934,0-3.391-1.093-3.391-4.034v-5.562H2680.949z"/>
					<path d="M2688.746,1269.193h1.219v4.258h0.028c0.435-0.756,1.219-1.232,2.312-1.232c1.695,0,2.873,1.401,2.873,3.446
						c0,2.423-1.541,3.628-3.055,3.628c-0.979,0-1.765-0.379-2.283-1.261h-0.027l-0.07,1.105h-1.051
						c0.027-0.462,0.056-1.147,0.056-1.751L2688.746,1269.193L2688.746,1269.193z M2689.965,1276.42
						c0,0.154,0.014,0.309,0.057,0.448c0.224,0.854,0.952,1.442,1.849,1.442c1.302,0,2.06-1.051,2.06-2.604
						c0-1.359-0.701-2.521-2.031-2.521c-0.827,0-1.611,0.588-1.863,1.513c-0.042,0.153-0.07,0.321-0.07,0.519V1276.42z"/>
				</g>
			</g>
			<g id="Ub">
				
					<radialGradient id="Ub_path1_1_" cx="1425.4915" cy="3629.0234" r="16.1846" gradientTransform="matrix(0.715 0 0 -0.6566 1514.0999 3644.5308)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#A2FF5F"/>
					<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
					<stop  offset="0.5552" style="stop-color:#99FD5F"/>
					<stop  offset="0.66" style="stop-color:#8EFB5E"/>
					<stop  offset="0.7448" style="stop-color:#7DF85E"/>
					<stop  offset="0.8174" style="stop-color:#67F35D"/>
					<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
					<stop  offset="0.9398" style="stop-color:#2BE85B"/>
					<stop  offset="0.9915" style="stop-color:#07E05A"/>
					<stop  offset="1" style="stop-color:#00DF5A"/>
				</radialGradient>
				<path id="Ub_path1" fill="url(#Ub_path1_1_)" stroke="#000000" d="M2544.685,1261.712c0,5.974-5.088,10.82-11.356,10.82
					c-6.274,0-11.361-4.843-11.361-10.82c0-5.977,5.086-10.817,11.361-10.817
					C2539.597,1250.895,2544.685,1255.736,2544.685,1261.712z"/>
				<g>
					<path d="M2527.097,1256.38v5.604c0,2.101,0.938,2.996,2.199,2.996c1.387,0,2.297-0.924,2.297-2.996v-5.604h1.232v5.521
						c0,2.898-1.527,4.076-3.572,4.076c-1.934,0-3.39-1.094-3.39-4.034v-5.562H2527.097z"/>
					<path d="M2534.894,1255.876h1.22v4.258h0.028c0.435-0.756,1.219-1.231,2.312-1.231c1.695,0,2.872,1.4,2.872,3.445
						c0,2.424-1.541,3.629-3.054,3.629c-0.98,0-1.765-0.38-2.283-1.262h-0.028l-0.07,1.106h-1.051
						c0.028-0.462,0.057-1.148,0.057-1.751v-8.194H2534.894z M2536.114,1263.104c0,0.154,0.014,0.31,0.056,0.448
						c0.225,0.854,0.953,1.443,1.85,1.443c1.302,0,2.059-1.051,2.059-2.605c0-1.358-0.701-2.521-2.031-2.521
						c-0.826,0-1.611,0.588-1.863,1.513c-0.041,0.154-0.069,0.322-0.069,0.52V1263.104z"/>
				</g>
			</g>
			<g>
				
					<radialGradient id="SVGID_1_" cx="3635.573" cy="3303.1055" r="16.1853" gradientTransform="matrix(1.8878 0 0 -0.7588 -4334.4111 3809.7871)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#FFFCDF"/>
					<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
					<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
					<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
					<stop  offset="0.5943" style="stop-color:#FFF090"/>
					<stop  offset="0.7706" style="stop-color:#FFEA64"/>
					<stop  offset="0.9506" style="stop-color:#FFE22F"/>
					<stop  offset="1" style="stop-color:#FFE01F"/>
				</radialGradient>
				<path fill="url(#SVGID_1_)" stroke="#000000" d="M2558.818,1303.39c0,6.904-13.435,12.503-29.995,12.503
					c-16.565,0-29.994-5.596-29.994-12.503s13.429-12.502,29.994-12.502C2545.385,1290.889,2558.818,1296.482,2558.818,1303.39z"/>
				<g>
					<path d="M2520.735,1304.421l-0.949,2.686h-1.219l3.116-8.536h1.408l3.117,8.536h-1.26l-0.977-2.686H2520.735z
						 M2523.743,1303.561l-0.908-2.457c-0.203-0.558-0.339-1.063-0.474-1.558h-0.027c-0.135,0.494-0.271,1.026-0.46,1.545
						l-0.896,2.47H2523.743z"/>
					<path d="M2528.241,1299.508h-2.778v-0.938h6.761v0.938h-2.791v7.6h-1.191V1299.508z"/>
					<path d="M2533.24,1298.672c0.568-0.089,1.313-0.165,2.263-0.165c1.166,0,2.019,0.253,2.562,0.709
						c0.487,0.405,0.799,1.026,0.799,1.786c0,0.771-0.244,1.38-0.705,1.824c-0.637,0.621-1.639,0.937-2.791,0.937
						c-0.354,0-0.678-0.012-0.949-0.076v3.419h-1.179L2533.24,1298.672L2533.24,1298.672z M2534.419,1302.788
						c0.258,0.062,0.583,0.089,0.976,0.089c1.424,0,2.291-0.659,2.291-1.811c0-1.141-0.867-1.686-2.154-1.686
						c-0.516,0-0.908,0.038-1.111,0.089L2534.419,1302.788L2534.419,1302.788z"/>
				</g>
			</g>
			<g>
				
					<radialGradient id="SVGID_2_" cx="3651.782" cy="3315.1035" r="16.2014" gradientTransform="matrix(1.8214 0 0 -0.75 -4005.4846 3796.5215)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#FFFCDF"/>
					<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
					<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
					<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
					<stop  offset="0.5943" style="stop-color:#FFF090"/>
					<stop  offset="0.7706" style="stop-color:#FFEA64"/>
					<stop  offset="0.9506" style="stop-color:#FFE22F"/>
					<stop  offset="1" style="stop-color:#FFE01F"/>
				</radialGradient>
				<path fill="url(#SVGID_2_)" stroke="#000000" d="M2674.939,1310.194c0,6.825-12.961,12.359-28.939,12.359
					c-15.982,0-28.939-5.532-28.939-12.359c0-6.829,12.957-12.358,28.939-12.358
					C2661.978,1297.837,2674.939,1303.366,2674.939,1310.194z"/>
				<g>
					<path d="M2635.714,1311.216l-0.916,2.652h-1.177l3.007-8.434h1.36l3.008,8.434h-1.216l-0.94-2.652H2635.714z
						 M2638.617,1310.365l-0.876-2.428c-0.196-0.551-0.327-1.051-0.458-1.538h-0.026c-0.131,0.487-0.262,1.014-0.444,1.525
						l-0.863,2.44H2638.617z"/>
					<path d="M2649.664,1310.165c-0.064-1.176-0.145-2.603-0.145-3.641h-0.025c-0.314,0.976-0.667,2.04-1.111,3.202l-1.556,4.093
						h-0.863l-1.438-4.018c-0.418-1.2-0.759-2.276-1.007-3.277h-0.026c-0.026,1.051-0.091,2.453-0.17,3.729l-0.235,3.616H2642
						l0.615-8.433h1.451l1.504,4.079c0.366,1.038,0.654,1.965,0.89,2.84h0.025c0.235-0.852,0.55-1.776,0.942-2.84l1.568-4.079h1.452
						l0.55,8.433h-1.125L2649.664,1310.165z"/>
					<path d="M2652.746,1305.535c0.549-0.088,1.27-0.163,2.184-0.163c1.125,0,1.948,0.25,2.473,0.701
						c0.471,0.399,0.771,1.013,0.771,1.764c0,0.763-0.235,1.364-0.68,1.802c-0.615,0.613-1.583,0.927-2.694,0.927
						c-0.34,0-0.654-0.013-0.916-0.075v3.378h-1.138L2652.746,1305.535L2652.746,1305.535z M2653.883,1309.602
						c0.249,0.063,0.563,0.088,0.942,0.088c1.373,0,2.21-0.65,2.21-1.789c0-1.126-0.837-1.664-2.08-1.664
						c-0.497,0-0.876,0.038-1.072,0.087V1309.602L2653.883,1309.602z"/>
				</g>
			</g>
			<g>
				<g>
					<g>
						<g>
							<path fill="none" stroke="#000000" d="M2552.218,1231.221c7.22,22.336,24.88,30.434,75.94,31.784"/>
							<polygon points="2625.253,1266.632 2626.923,1262.972 2625.449,1259.229 2634.125,1263.162 							"/>
						</g>
					</g>
					<g>
						<g>
							<path fill="none" stroke="#000000" d="M2547.767,1293.697c7.232-29.697,27.341-31.18,39.398-31.984"/>
						</g>
					</g>
				</g>
				<g>
					<g>
						<line fill="none" stroke="#000000" x1="2544.37" y1="1261.713" x2="2604.489" y2="1261.653"/>
					</g>
				</g>
			</g>
			<g>
				<g>
					<path fill="none" stroke="#000000" d="M2598.574,1261.713c25.277-1.011,34.676,17.787,41.176,30.87"/>
					<polygon points="2635.183,1291.716 2639.2,1291.477 2641.816,1288.42 2642.406,1297.929 					"/>
				</g>
			</g>
			<g>
				<g>
					<path fill="none" stroke="#000000" d="M2841.857,1212.764c43.81-3.558,48.132-77.864,75.719-77.346
						c26.73,0.503,23.146,44.278,47.089,79.495"/>
					<polygon points="2960.023,1214.673 2963.97,1213.891 2966.148,1210.508 2968.021,1219.85 					"/>
				</g>
			</g>
			<g>
				<path d="M2637.81,1153.2h0.023c0.145-0.204,0.336-0.456,0.504-0.66l1.715-2.003h1.26l-2.23,2.387l2.554,3.418h-1.295
					l-1.991-2.782l-0.539,0.601v2.183h-1.043v-8.515h1.043V1153.2z"/>
				<path d="M2641.98,1159.639c0.174,0.104,0.572,0.279,1.006,0.279c0.783,0,1.033-0.496,1.027-0.88
					c-0.008-0.636-0.58-0.909-1.175-0.909h-0.342v-0.461h0.342c0.447,0,1.013-0.23,1.013-0.77c0-0.362-0.229-0.685-0.795-0.685
					c-0.364,0-0.713,0.161-0.909,0.3l-0.167-0.447c0.245-0.175,0.706-0.35,1.195-0.35c0.895,0,1.3,0.531,1.3,1.083
					c0,0.476-0.287,0.874-0.838,1.076v0.014c0.559,0.104,1.006,0.524,1.013,1.16c0,0.728-0.573,1.363-1.656,1.363
					c-0.51,0-0.958-0.161-1.181-0.307L2641.98,1159.639z"/>
			</g>
			<g>
				<g>
					<path fill="none" stroke="#000000" d="M2715.443,1133.466c-38.853,37.628-102.517,38.413-141.014,5.043"/>
					<polygon points="2578.978,1137.55 2575.363,1139.318 2574.126,1143.146 2569.919,1134.599 					"/>
				</g>
			</g>
			<g>
				<path d="M2796.293,1110.701h0.023c0.145-0.204,0.336-0.456,0.504-0.66l1.716-2.003h1.259l-2.23,2.387l2.556,3.418h-1.295
					l-1.991-2.782l-0.54,0.601v2.183h-1.043v-8.515h1.043L2796.293,1110.701L2796.293,1110.701z"/>
				<path d="M2802.91,1113.729c-0.127-0.007-0.287,0.008-0.462,0.035c-0.972,0.154-1.476,0.854-1.579,1.607h0.014
					c0.217-0.293,0.602-0.531,1.104-0.531c0.805,0,1.371,0.587,1.371,1.469c0,0.838-0.566,1.606-1.519,1.606
					c-0.964,0-1.601-0.754-1.601-1.936c0-0.896,0.314-1.602,0.77-2.048c0.378-0.37,0.88-0.602,1.454-0.672
					c0.182-0.027,0.335-0.035,0.447-0.035L2802.91,1113.729L2802.91,1113.729z M2802.734,1116.35c0-0.649-0.369-1.041-0.937-1.041
					c-0.371,0-0.721,0.225-0.888,0.56c-0.035,0.069-0.063,0.153-0.063,0.266c0.009,0.748,0.357,1.308,1.007,1.308
					C2802.379,1117.439,2802.734,1117,2802.734,1116.35z"/>
				<path d="M2805.24,1113.869h-0.014l-0.789,0.427l-0.119-0.468l0.992-0.531h0.522v4.542h-0.594L2805.24,1113.869L2805.24,1113.869
					z"/>
			</g>
			<g>
				<path d="M2794.005,1160.196h0.024c0.144-0.204,0.336-0.456,0.504-0.66l1.715-2.003h1.259l-2.229,2.387l2.554,3.418h-1.295
					l-1.99-2.782l-0.54,0.601v2.183h-1.044v-8.515h1.044L2794.005,1160.196L2794.005,1160.196z"/>
				<path d="M2800.621,1163.225c-0.126-0.007-0.287,0.008-0.461,0.035c-0.972,0.154-1.475,0.854-1.58,1.607h0.014
					c0.217-0.293,0.603-0.531,1.105-0.531c0.803,0,1.369,0.587,1.369,1.468c0,0.839-0.566,1.607-1.518,1.607
					c-0.964,0-1.602-0.754-1.602-1.937c0-0.895,0.314-1.601,0.771-2.048c0.377-0.37,0.88-0.601,1.453-0.671
					c0.182-0.027,0.336-0.035,0.446-0.035v0.504H2800.621z M2800.446,1165.845c0-0.649-0.37-1.041-0.938-1.041
					c-0.37,0-0.72,0.225-0.887,0.56c-0.035,0.069-0.063,0.153-0.063,0.266c0.008,0.748,0.356,1.307,1.008,1.307
					C2800.09,1166.936,2800.446,1166.495,2800.446,1165.845z"/>
				<path d="M2802.952,1163.364h-0.015l-0.789,0.427l-0.119-0.468l0.992-0.531h0.523v4.542h-0.594L2802.952,1163.364
					L2802.952,1163.364z"/>
				<path d="M2805.402,1165.007c0-0.397-0.008-0.741-0.028-1.055h0.538l0.027,0.671h0.021c0.154-0.455,0.531-0.741,0.943-0.741
					c0.063,0,0.111,0.007,0.168,0.015v0.579c-0.063-0.014-0.126-0.014-0.21-0.014c-0.434,0-0.741,0.321-0.825,0.783
					c-0.014,0.083-0.021,0.188-0.021,0.286v1.803h-0.614L2805.402,1165.007L2805.402,1165.007z"/>
			</g>
			<g>
				<g>
					<line fill="none" stroke="#000000" x1="2787.971" y1="1123.811" x2="2807.179" y2="1123.811"/>
					<polygon points="2804.371,1127.513 2805.943,1123.811 2804.371,1120.105 2813.148,1123.811 					"/>
				</g>
			</g>
			<g>
				<g>
					<line fill="none" stroke="#000000" x1="2812.437" y1="1148.061" x2="2793.23" y2="1148.061"/>
					<polygon points="2796.039,1144.358 2794.467,1148.061 2796.039,1151.765 2787.261,1148.061 					"/>
				</g>
			</g>
			<g>
				<path d="M2729.779,1223.878h0.023c0.145-0.204,0.336-0.456,0.504-0.66l1.715-2.003h1.26l-2.23,2.387l2.555,3.418h-1.295
					l-1.99-2.781l-0.54,0.6v2.183h-1.043v-8.515h1.043L2729.779,1223.878L2729.779,1223.878z"/>
				<path d="M2736.396,1226.907c-0.127-0.007-0.287,0.007-0.463,0.035c-0.972,0.153-1.475,0.853-1.578,1.606h0.014
					c0.217-0.293,0.602-0.531,1.104-0.531c0.805,0,1.37,0.588,1.37,1.469c0,0.838-0.565,1.606-1.518,1.606
					c-0.964,0-1.601-0.754-1.601-1.936c0-0.896,0.314-1.601,0.77-2.048c0.378-0.37,0.88-0.602,1.454-0.671
					c0.182-0.028,0.335-0.035,0.446-0.035v0.504H2736.396z M2736.22,1229.528c0-0.65-0.369-1.041-0.936-1.041
					c-0.371,0-0.721,0.224-0.889,0.559c-0.034,0.07-0.062,0.154-0.062,0.266c0.008,0.748,0.357,1.308,1.007,1.308
					C2735.865,1230.618,2736.22,1230.178,2736.22,1229.528z"/>
				<path d="M2737.539,1230.318c0.174,0.104,0.572,0.278,1.006,0.278c0.783,0,1.035-0.495,1.027-0.88
					c-0.007-0.636-0.58-0.909-1.174-0.909h-0.342v-0.461h0.342c0.447,0,1.014-0.23,1.014-0.769c0-0.363-0.23-0.686-0.797-0.686
					c-0.363,0-0.713,0.161-0.908,0.301l-0.168-0.447c0.244-0.176,0.705-0.351,1.195-0.351c0.895,0,1.299,0.531,1.299,1.083
					c0,0.476-0.286,0.874-0.838,1.076v0.015c0.559,0.104,1.006,0.523,1.014,1.159c0,0.728-0.574,1.363-1.656,1.363
					c-0.511,0-0.957-0.161-1.182-0.307L2737.539,1230.318z"/>
			</g>
			<g>
				<path d="M2591.183,1269.39h0.023c0.145-0.204,0.336-0.456,0.504-0.659l1.715-2.004h1.26l-2.23,2.388l2.554,3.418h-1.295
					l-1.991-2.782l-0.539,0.6v2.184h-1.043v-8.516h1.043V1269.39z"/>
				<path d="M2597.799,1272.418c-0.126-0.007-0.287,0.007-0.461,0.035c-0.971,0.154-1.475,0.853-1.579,1.607h0.015
					c0.217-0.293,0.601-0.531,1.104-0.531c0.804,0,1.37,0.587,1.37,1.468c0,0.838-0.565,1.607-1.517,1.607
					c-0.965,0-1.601-0.755-1.601-1.937c0-0.895,0.313-1.601,0.769-2.048c0.377-0.37,0.881-0.601,1.455-0.671
					c0.182-0.028,0.334-0.035,0.446-0.035L2597.799,1272.418L2597.799,1272.418z M2597.624,1275.039c0-0.65-0.37-1.041-0.937-1.041
					c-0.371,0-0.721,0.224-0.888,0.559c-0.034,0.07-0.062,0.154-0.062,0.267c0.007,0.748,0.355,1.307,1.006,1.307
					C2597.267,1276.129,2597.624,1275.689,2597.624,1275.039z"/>
				<path d="M2598.795,1276.528v-0.377l0.482-0.469c1.159-1.104,1.69-1.69,1.69-2.376c0-0.461-0.216-0.888-0.896-0.888
					c-0.412,0-0.754,0.21-0.964,0.384l-0.196-0.433c0.309-0.259,0.763-0.461,1.279-0.461c0.979,0,1.392,0.671,1.392,1.321
					c0,0.839-0.608,1.517-1.565,2.438l-0.355,0.335v0.014h2.033v0.511H2598.795L2598.795,1276.528z"/>
			</g>
		</g>
	</g>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="2460" y1="1011.148" x2="2460" y2="1047.148"/>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="2406" y1="1065.148" x2="2442" y2="1065.148"/>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="2406" y1="1323.054" x2="2442" y2="1323.054"/>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="2460" y1="1377.054" x2="2460" y2="1341.054"/>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="3041.09" y1="1011.148" x2="3041.09" y2="1047.148"/>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="3095.09" y1="1065.148" x2="3059.09" y2="1065.148"/>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="3095.09" y1="1323.054" x2="3059.09" y2="1323.054"/>
	<line fill="none" stroke="#000000" stroke-width="0.3" x1="3041.09" y1="1377.054" x2="3041.09" y2="1341.054"/>
</g>
</svg>
</window>