Location: Tran 2010 @ 2eb78e912756 / tran_2009.xul

Author:
Catherine Lloyd <c.lloyd@auckland.ac.nz>
Date:
2010-06-04 01:42:22+12:00
Desc:
Removed xml:base="" from the model file.
Permanent Source URI:
https://models.cellml.org/workspace/tran_2009/rawfile/2eb78e912756dc7eb582b2d709760440452d9ac2/tran_2009.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 =
  {

			
	MgADP: {
		id: "MgADP",
		y: "regulation_and_crossbridge_cycling_state_equations/MgADP",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#33ccff",
		linestyle: "none"
	},

	MgATP: {
		id: "MgATP",
		y: "regulation_and_crossbridge_cycling_state_equations/MgATP",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ccffcc",
		linestyle: "none"
	},

	P: {
		id: "P",
		y: "regulation_and_crossbridge_cycling_state_equations/P",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ffff99",
		linestyle: "none"
	},


	fxbT: {
		id: "fxbT",
		y: "regulation_and_crossbridge_cycling_state_equations/fxbT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ff9999",
		linestyle: "none"
	},


	N_NoXB: {
		id: "N_NoXB",
		y: "regulation_and_crossbridge_cycling_state_equations/N_NoXB",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ff33cc",
		linestyle: "none"
	},


	P_NoXB: {
		id: "P_NoXB",
		y: "regulation_and_crossbridge_cycling_state_equations/P_NoXB",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ff00ff",
		linestyle: "none"
	},


	dXBprer: {
		id: "dXBprer",
		y: "regulation_and_crossbridge_cycling_state_equations/dXBprer",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#9933ff",
		linestyle: "none"
	},


	kdADP: {
		id: "kdADP",
		y: "regulation_and_crossbridge_cycling_state_equations/kdADP",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ff66ff",
		linestyle: "none"
	},


	kn_pT: {
		id: "kn_pT",
		y: "Ca_binding_to_troponin_to_thin_filament_regulation/kn_pT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#3399ff",
		linestyle: "none"
	}
,


	kp_nT: {
		id: "kp_nT",
		y: "Ca_binding_to_troponin_to_thin_filament_regulation/kp_nT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#00ffff",
		linestyle: "none"
	}
,


	H: {
		id: "H",
		y: "Ca_binding_to_troponin_to_thin_filament_regulation/H",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ccff00",
		linestyle: "none"
	},


	gxbT: {
		id: "gxbT",
		y: "thin_filament_regulation_and_crossbridge_cycling_rates/gxbT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#99ff33",
		linestyle: "none"
	},


	fappT: {
		id: "fappT",
		y: "thin_filament_regulation_and_crossbridge_cycling_rates/fappT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ffff33",
		linestyle: "none"
	}
,


	gappT: {
		id: "gappT",
		y: "thin_filament_regulation_and_crossbridge_cycling_rates/gappT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ffcc00",
		linestyle: "none"
	}
,


	hbT: {
		id: "hbT",
		y: "thin_filament_regulation_and_crossbridge_cycling_rates/hbT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ff6600",
		linestyle: "none"
	}
,


	hfT: {
		id: "hfT",
		y: "thin_filament_regulation_and_crossbridge_cycling_rates/hfT",
		x: "environment/time",
		graph: "Clickable elements against time (ms)",
		colour: "#ff0033",
		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 id="N_NoXB">
	<path id="N_NoXB_path1" fill="none" stroke="#010101" d="M164.93,11.441c16.404,0,29.703,7.987,29.703,17.835
		c0,9.853-13.299,17.835-29.703,17.835c-16.408,0-29.707-7.982-29.707-17.835C135.225,19.429,148.522,11.441,164.93,11.441z"/>
	<g>
		<path d="M157.999,30.8v-8.084h1.149l2.58,4.09c0.588,0.948,1.066,1.8,1.439,2.627l0.035-0.012
			c-0.097-1.08-0.119-2.063-0.119-3.322v-3.383h0.981V30.8h-1.055l-2.566-4.102c-0.563-0.899-1.104-1.823-1.5-2.698l-0.034,0.012
			c0.059,1.02,0.069,1.991,0.069,3.334V30.8H157.999z"/>
		<path d="M168.092,34.796l-0.607-1.041c-0.246-0.398-0.393-0.657-0.539-0.93h-0.014c-0.133,0.272-0.272,0.524-0.51,0.937
			l-0.566,1.034h-0.698l1.438-2.383l-1.383-2.327h0.705l0.623,1.104c0.174,0.308,0.307,0.546,0.434,0.797h0.021
			c0.133-0.279,0.252-0.496,0.428-0.797l0.635-1.104h0.707l-1.434,2.292l1.467,2.418H168.092z"/>
		<path d="M169.508,30.155c0.266-0.062,0.691-0.104,1.111-0.104c0.606,0,1,0.104,1.284,0.343c0.246,0.182,0.398,0.461,0.398,0.831
			c0,0.461-0.307,0.859-0.795,1.034v0.021c0.447,0.104,0.971,0.475,0.971,1.174c0,0.405-0.16,0.72-0.406,0.943
			c-0.319,0.301-0.852,0.44-1.62,0.44c-0.418,0-0.74-0.028-0.943-0.056V30.155L169.508,30.155z M170.116,32.084h0.553
			c0.637,0,1.014-0.342,1.014-0.796c0-0.546-0.412-0.77-1.026-0.77c-0.279,0-0.439,0.021-0.539,0.042L170.116,32.084L170.116,32.084
			z M170.116,34.335c0.127,0.021,0.295,0.027,0.512,0.027c0.629,0,1.209-0.23,1.209-0.915c0-0.636-0.553-0.908-1.217-0.908h-0.504
			V34.335z"/>
	</g>
</g>
<g id="P_NoXB">
	<path id="P_NoXB_path1" fill="none" stroke="#010101" d="M164.929,92.274c16.404,0,29.703,7.987,29.703,17.835
		c0,9.853-13.299,17.835-29.703,17.835c-16.408,0-29.707-7.982-29.707-17.835C135.224,100.262,148.521,92.274,164.929,92.274z"/>
	<g>
		<path d="M157.997,103.646c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.787,0.24,2.268,0.672
			c0.433,0.384,0.707,0.972,0.707,1.69c0,0.732-0.217,1.308-0.625,1.728c-0.562,0.588-1.451,0.888-2.469,0.888
			c-0.312,0-0.603-0.013-0.84-0.072v3.238h-1.045V103.646L157.997,103.646z M159.042,107.543c0.227,0.061,0.516,0.084,0.862,0.084
			c1.261,0,2.027-0.624,2.027-1.715c0-1.079-0.768-1.596-1.908-1.596c-0.455,0-0.803,0.036-0.981,0.084V107.543z"/>
		<path d="M166.581,115.629l-0.609-1.041c-0.244-0.398-0.391-0.657-0.537-0.93h-0.014c-0.133,0.272-0.273,0.524-0.512,0.937
			l-0.564,1.034h-0.699l1.439-2.383l-1.385-2.327h0.707l0.62,1.104c0.177,0.308,0.31,0.546,0.435,0.797h0.021
			c0.134-0.279,0.252-0.496,0.427-0.797l0.637-1.104h0.705l-1.433,2.292l1.468,2.418H166.581L166.581,115.629z"/>
		<path d="M167.997,110.988c0.266-0.062,0.69-0.104,1.11-0.104c0.607,0,0.998,0.104,1.285,0.343
			c0.244,0.182,0.398,0.461,0.398,0.831c0,0.461-0.308,0.859-0.797,1.034v0.021c0.446,0.104,0.971,0.475,0.971,1.174
			c0,0.405-0.16,0.72-0.404,0.943c-0.322,0.301-0.854,0.44-1.621,0.44c-0.42,0-0.742-0.028-0.942-0.056V110.988L167.997,110.988z
			 M168.604,112.917h0.554c0.635,0,1.012-0.342,1.012-0.796c0-0.546-0.412-0.77-1.025-0.77c-0.281,0-0.44,0.021-0.539,0.042
			L168.604,112.917L168.604,112.917z M168.604,115.168c0.125,0.021,0.293,0.027,0.51,0.027c0.63,0,1.21-0.23,1.21-0.915
			c0-0.636-0.552-0.908-1.216-0.908h-0.504V115.168z"/>
	</g>
</g>
<g id="dXBprer">
	<path id="dXBprer_path1" fill="none" stroke="#010101" d="M250.49,191.385c16.403,0,29.703,7.986,29.703,17.835
		c0,9.853-13.3,17.835-29.703,17.835c-16.408,0-29.707-7.982-29.707-17.835C220.785,199.373,234.081,191.385,250.49,191.385z"/>
	<g>
		<path d="M242.598,210.744l-1.043-1.787c-0.42-0.684-0.672-1.127-0.924-1.595h-0.022c-0.229,0.468-0.468,0.899-0.875,1.606
			l-0.974,1.775h-1.199l2.472-4.091l-2.375-3.993h1.213l1.065,1.896c0.302,0.526,0.527,0.937,0.744,1.366h0.035
			c0.229-0.479,0.432-0.852,0.732-1.366l1.092-1.896h1.211l-2.459,3.935l2.52,4.149H242.598L242.598,210.744z"/>
		<path d="M245.024,202.78c0.457-0.106,1.188-0.18,1.908-0.18c1.043,0,1.715,0.18,2.207,0.588c0.42,0.312,0.685,0.791,0.685,1.427
			c0,0.793-0.527,1.477-1.367,1.775v0.036c0.768,0.18,1.666,0.815,1.666,2.015c0,0.695-0.275,1.235-0.695,1.619
			c-0.551,0.516-1.463,0.756-2.783,0.756c-0.719,0-1.27-0.048-1.618-0.097v-7.939H245.024z M246.07,206.091h0.946
			c1.093,0,1.738-0.589,1.738-1.367c0-0.937-0.707-1.319-1.762-1.319c-0.48,0-0.756,0.036-0.924,0.072L246.07,206.091
			L246.07,206.091z M246.07,209.953c0.215,0.035,0.504,0.049,0.875,0.049c1.079,0,2.073-0.396,2.073-1.571
			c0-1.093-0.946-1.56-2.086-1.56h-0.862V209.953z"/>
		<path d="M251.15,210.086c0.293-0.049,0.678-0.092,1.165-0.092c0.603,0,1.041,0.141,1.322,0.393
			c0.25,0.224,0.412,0.564,0.412,0.984c0,0.426-0.127,0.763-0.363,1.006c-0.33,0.344-0.846,0.519-1.44,0.519
			c-0.183,0-0.349-0.007-0.488-0.042v1.887h-0.607V210.086L251.15,210.086z M251.756,212.357c0.133,0.035,0.301,0.049,0.504,0.049
			c0.732,0,1.18-0.363,1.18-1c0-0.629-0.446-0.929-1.11-0.929c-0.267,0-0.467,0.021-0.572,0.049L251.756,212.357L251.756,212.357z"
			/>
		<path d="M254.738,212.414c0-0.398-0.007-0.742-0.027-1.057h0.539l0.027,0.671h0.021c0.152-0.454,0.531-0.739,0.943-0.739
			c0.062,0,0.11,0.006,0.168,0.014v0.58c-0.064-0.014-0.127-0.014-0.211-0.014c-0.435,0-0.74,0.32-0.824,0.781
			c-0.014,0.084-0.021,0.189-0.021,0.287v1.803h-0.614V212.414z"/>
		<path d="M257.297,213.162c0.014,0.83,0.539,1.174,1.16,1.174c0.44,0,0.713-0.077,0.938-0.176l0.111,0.44
			c-0.217,0.099-0.594,0.217-1.133,0.217c-1.041,0-1.662-0.692-1.662-1.713s0.6-1.815,1.586-1.815c1.111,0,1.398,0.963,1.398,1.586
			c0,0.125-0.009,0.217-0.021,0.287H257.297z M259.1,212.721c0.009-0.385-0.16-0.992-0.852-0.992c-0.629,0-0.896,0.564-0.943,0.992
			H259.1z"/>
		<path d="M260.481,210.093c0.31-0.056,0.757-0.099,1.169-0.099c0.649,0,1.075,0.127,1.36,0.385
			c0.232,0.209,0.371,0.531,0.371,0.901c0,0.614-0.391,1.027-0.881,1.194v0.021c0.356,0.125,0.574,0.461,0.686,0.949
			c0.154,0.657,0.267,1.111,0.363,1.293h-0.629c-0.076-0.14-0.182-0.537-0.307-1.125c-0.142-0.65-0.398-0.895-0.951-0.916h-0.574
			v2.041h-0.607V210.093z M261.088,212.238h0.623c0.65,0,1.062-0.355,1.062-0.895c0-0.608-0.44-0.873-1.084-0.873
			c-0.293,0-0.495,0.021-0.602,0.049L261.088,212.238L261.088,212.238z"/>
	</g>
</g>
<g>
	<path d="M73.288,226.604l-0.84,2.543h-1.079l2.759-8.084h1.247l2.759,8.084h-1.115l-0.864-2.543H73.288z M75.95,225.788
		l-0.804-2.326c-0.181-0.528-0.3-1.008-0.42-1.476h-0.023c-0.12,0.468-0.239,0.972-0.407,1.463l-0.792,2.339H75.95z"/>
	<path d="M86.088,225.598c-0.061-1.129-0.132-2.496-0.132-3.49h-0.024c-0.287,0.936-0.611,1.955-1.019,3.069l-1.429,3.923h-0.791
		l-1.318-3.851c-0.384-1.151-0.696-2.185-0.924-3.144h-0.024c-0.023,1.009-0.084,2.352-0.155,3.574l-0.216,3.467H79.06l0.564-8.084
		h1.331l1.379,3.91c0.336,0.994,0.6,1.883,0.814,2.723h0.024c0.216-0.815,0.504-1.703,0.863-2.723l1.438-3.91h1.331l0.504,8.084
		h-1.031L86.088,225.598z"/>
	<path d="M88.552,229.146v-0.647l0.827-0.804c1.991-1.896,2.902-2.902,2.902-4.078c0-0.791-0.372-1.522-1.535-1.522
		c-0.707,0-1.295,0.359-1.655,0.659l-0.336-0.743c0.528-0.444,1.308-0.792,2.195-0.792c1.679,0,2.387,1.151,2.387,2.268
		c0,1.438-1.044,2.603-2.688,4.186l-0.61,0.576v0.023h3.488v0.875H88.552L88.552,229.146z"/>
</g>
<g id="H">
	
		<radialGradient id="H_path1_1_" cx="965.8801" cy="-45.8828" r="22.1572" gradientTransform="matrix(0.3664 0 0 -0.3664 -197.5852 172.6206)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FDFBE1"/>
		<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
		<stop  offset="0.2662" style="stop-color:#FFFACC"/>
		<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
		<stop  offset="0.5943" style="stop-color:#FEF091"/>
		<stop  offset="0.7706" style="stop-color:#FEEA64"/>
		<stop  offset="0.9506" style="stop-color:#FEE22D"/>
		<stop  offset="1" style="stop-color:#FEE01B"/>
	</radialGradient>
	<path id="H_path1" fill="url(#H_path1_1_)" stroke="#010101" stroke-width="0.9921" d="M164.432,189.434
		c0,4.482-3.635,8.117-8.118,8.117s-8.119-3.635-8.119-8.117c0-4.481,3.635-8.119,8.119-8.119
		C160.797,181.314,164.432,184.951,164.432,189.434z"/>
	<g>
		<path fill="#010101" d="M153.619,187.355v2.254h2.605v-2.254h0.703v5.389h-0.703v-2.526h-2.605v2.526h-0.704v-5.389H153.619z"/>
		<path fill="#010101" d="M159.072,187.596v1.098h1.056v0.281h-1.056v1.105h-0.299v-1.105h-1.056v-0.281h1.056v-1.098H159.072z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="114.666" y1="162.82" x2="143.457" y2="134.03"/>
			<polygon fill="#010101" points="114.034,158.217 115.54,161.947 119.27,163.454 110.445,167.042 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="134.15" y1="128.679" x2="105.359" y2="157.47"/>
			<polygon fill="#010101" points="134.783,133.283 133.276,129.553 129.544,128.046 138.371,124.458 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="147.725" y1="215.659" x2="214.042" y2="215.659"/>
			<polygon fill="#010101" points="150.534,211.956 148.961,215.659 150.534,219.363 141.756,215.659 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="209.487" y1="205.294" x2="143.17" y2="205.294"/>
			<polygon fill="#010101" points="206.678,208.997 208.25,205.294 206.678,201.59 215.456,205.294 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="169.354" y1="81.797" x2="169.354" y2="55.219"/>
			<polygon fill="#010101" points="165.651,78.988 169.354,80.561 173.058,78.988 169.354,87.766 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="158.989" y1="57.045" x2="158.989" y2="83.623"/>
			<polygon fill="#010101" points="162.692,59.854 158.989,58.281 155.285,59.854 158.989,51.076 			"/>
		</g>
	</g>
</g>
<path fill="none" stroke="#010101" d="M118.357,144.266c-0.54,2.039-17.044,12.377-36.278,3.487"/>
<path fill="none" stroke="#010101" d="M160.31,196.973c-0.004,1.166,6.214,9.484,15.997,8.185"/>
<g id="kdADP">
	<path id="kdADP_path1" fill="none" stroke="#010101" stroke-dasharray="4" d="M134.322,201.145c0,23.016-28.878,41.674-64.5,41.674
		c-35.621,0-64.5-18.658-64.5-41.674s28.879-41.675,64.5-41.675C105.444,159.47,134.322,178.128,134.322,201.145z"/>
	<g>
		<path d="M28.189,212.54h1.044v3.897h0.036c0.216-0.312,0.433-0.6,0.636-0.862l2.472-3.035h1.295l-2.927,3.431l3.153,4.653h-1.234
			l-2.65-3.97l-0.779,0.888v3.082H28.19L28.189,212.54L28.189,212.54z"/>
		<path d="M34.236,223.879c0.272,0.176,0.664,0.309,1.083,0.309c0.622,0,0.985-0.328,0.985-0.805c0-0.433-0.251-0.691-0.887-0.929
			c-0.771-0.28-1.244-0.687-1.244-1.343c0-0.733,0.606-1.278,1.522-1.278c0.476,0,0.831,0.11,1.034,0.229l-0.168,0.496
			c-0.146-0.091-0.461-0.224-0.888-0.224c-0.644,0-0.888,0.385-0.888,0.706c0,0.439,0.287,0.657,0.937,0.908
			c0.797,0.308,1.195,0.691,1.195,1.384c0,0.728-0.531,1.362-1.644,1.362c-0.454,0-0.949-0.139-1.2-0.307L34.236,223.879z"/>
		<path d="M39.45,218.081l-0.841,2.543h-1.079l2.76-8.084h1.247l2.759,8.084H43.18l-0.864-2.543H39.45z M42.112,217.266
			l-0.803-2.326c-0.181-0.527-0.3-1.008-0.42-1.476h-0.023c-0.12,0.468-0.239,0.972-0.407,1.463l-0.792,2.339H42.112z"/>
		<path d="M45.486,212.66c0.637-0.107,1.393-0.18,2.22-0.18c1.5,0,2.566,0.358,3.273,1.008c0.731,0.658,1.151,1.595,1.151,2.902
			c0,1.318-0.42,2.397-1.163,3.142c-0.768,0.756-2.015,1.163-3.586,1.163c-0.756,0-1.367-0.035-1.896-0.096L45.486,212.66
			L45.486,212.66z M46.53,219.809c0.265,0.036,0.647,0.049,1.057,0.049c2.242,0,3.44-1.248,3.44-3.431
			c0.014-1.907-1.066-3.118-3.272-3.118c-0.54,0-0.948,0.049-1.225,0.107V219.809z"/>
		<path d="M53.478,212.637c0.504-0.084,1.164-0.156,2.003-0.156c1.032,0,1.787,0.24,2.269,0.672c0.432,0.385,0.707,0.973,0.707,1.69
			c0,0.732-0.216,1.308-0.624,1.728c-0.563,0.589-1.451,0.889-2.471,0.889c-0.312,0-0.601-0.014-0.84-0.072v3.238h-1.044V212.637z
			 M54.522,216.534c0.229,0.06,0.517,0.084,0.863,0.084c1.26,0,2.027-0.624,2.027-1.716c0-1.078-0.769-1.596-1.907-1.596
			c-0.456,0-0.804,0.036-0.983,0.084V216.534z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="245.645" y1="179.038" x2="191.457" y2="124.849"/>
			<polygon fill="#010101" points="241.041,179.671 244.771,178.164 246.278,174.434 249.866,183.259 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="187.85" y1="135.901" x2="242.039" y2="190.09"/>
			<polygon fill="#010101" points="192.455,135.269 188.724,136.775 187.217,140.507 183.629,131.681 			"/>
		</g>
	</g>
</g>
<path fill="none" stroke="#010101" d="M190.937,139.145c1.059,0.496,5.925,9.668,0.572,17.959"/>
<g id="P">
	<path id="P_path1" fill="#F6EB16" stroke="#010101" d="M194.092,157.47c0,2.681-2.096,4.854-4.68,4.854
		c-2.586,0-4.681-2.174-4.681-4.854c0-2.68,2.095-4.853,4.681-4.853C191.997,152.617,194.092,154.79,194.092,157.47z"/>
	<g enable-background="new    ">
		<path fill="#EE3E96" d="M187.958,154.523c0.321-0.063,0.744-0.111,1.278-0.111c0.659,0,1.143,0.158,1.448,0.443
			c0.283,0.254,0.46,0.644,0.46,1.119c0,0.483-0.139,0.864-0.406,1.144c-0.353,0.389-0.927,0.587-1.577,0.587
			c-0.199,0-0.384-0.008-0.536-0.048v2.143h-0.667V154.523z M188.625,157.094c0.146,0.04,0.337,0.057,0.552,0.057
			c0.812,0,1.295-0.412,1.295-1.135c0-0.715-0.483-1.056-1.219-1.056c-0.291,0-0.515,0.031-0.628,0.056V157.094z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="72.643" y1="209.22" x2="53.849" y2="190.426"/>
			<polygon fill="#010101" points="68.039,209.854 71.769,208.346 73.276,204.614 76.864,213.439 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="47.811" y1="199.046" x2="66.605" y2="217.84"/>
			<polygon fill="#010101" points="52.416,198.413 48.685,199.92 47.178,203.65 43.59,194.825 			"/>
		</g>
	</g>
</g>
<path fill="none" stroke="#010101" d="M84.38,194.516c-0.314,1.188-11.446,6.812-25.029,1.002"/>
<g id="MgADP">
	
		<radialGradient id="MgADP_path1_1_" cx="-34.6848" cy="291.71" r="16.186" gradientTransform="matrix(1.5933 0 0 -0.6358 155.4012 379.9846)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FDFBE1"/>
		<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
		<stop  offset="0.2662" style="stop-color:#FFFACC"/>
		<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
		<stop  offset="0.5943" style="stop-color:#FEF091"/>
		<stop  offset="0.7706" style="stop-color:#FEEA64"/>
		<stop  offset="0.9506" style="stop-color:#FEE22D"/>
		<stop  offset="1" style="stop-color:#FEE01B"/>
	</radialGradient>
	<path id="MgADP_path1" fill="url(#MgADP_path1_1_)" stroke="#010101" d="M125.452,194.514c0,5.786-11.339,10.479-25.315,10.479
		c-13.979,0-25.313-4.689-25.313-10.479s11.334-10.476,25.313-10.476C114.114,184.039,125.452,188.727,125.452,194.514z"/>
	<g>
		<path d="M90.298,194.486c-0.061-1.129-0.132-2.495-0.132-3.49h-0.024c-0.287,0.936-0.611,1.955-1.019,3.07l-1.429,3.922h-0.791
			l-1.318-3.85c-0.384-1.152-0.696-2.185-0.924-3.144h-0.024c-0.023,1.008-0.084,2.351-0.156,3.573l-0.215,3.467H83.27l0.564-8.084
			h1.331l1.379,3.91c0.336,0.994,0.6,1.883,0.814,2.723h0.024c0.216-0.814,0.504-1.703,0.863-2.723l1.438-3.91h1.331l0.504,8.084
			h-1.031L90.298,194.486z"/>
		<path d="M98.063,197.186c0,1.344-0.274,2.146-0.827,2.662c-0.575,0.517-1.392,0.695-2.123,0.695c-0.695,0-1.464-0.168-1.931-0.479
			l0.264-0.816c0.385,0.252,0.983,0.468,1.703,0.468c1.079,0,1.871-0.563,1.871-2.038v-0.636h-0.023
			c-0.312,0.539-0.947,0.972-1.848,0.972c-1.438,0-2.471-1.224-2.471-2.83c0-1.968,1.283-3.07,2.626-3.07
			c1.008,0,1.548,0.516,1.812,0.994h0.022l0.036-0.875h0.936c-0.035,0.408-0.048,0.889-0.048,1.584V197.186z M97.007,194.521
			c0-0.181-0.012-0.336-0.061-0.467c-0.191-0.625-0.694-1.129-1.476-1.129c-1.007,0-1.727,0.852-1.727,2.195
			c0,1.139,0.587,2.087,1.715,2.087c0.659,0,1.247-0.408,1.463-1.08c0.061-0.18,0.084-0.384,0.084-0.563L97.007,194.521
			L97.007,194.521z"/>
		<path d="M101.149,195.493l-0.84,2.543H99.23l2.759-8.084h1.247l2.76,8.084h-1.115l-0.864-2.543H101.149z M103.811,194.678
			l-0.803-2.326c-0.181-0.527-0.3-1.008-0.42-1.476h-0.024c-0.12,0.468-0.238,0.972-0.406,1.463l-0.792,2.339H103.811z"/>
		<path d="M107.185,190.072c0.636-0.107,1.393-0.18,2.219-0.18c1.5,0,2.567,0.358,3.274,1.008c0.731,0.658,1.151,1.595,1.151,2.901
			c0,1.319-0.42,2.398-1.163,3.142c-0.769,0.757-2.016,1.164-3.586,1.164c-0.756,0-1.367-0.035-1.896-0.097L107.185,190.072
			L107.185,190.072z M108.229,197.221c0.265,0.036,0.647,0.049,1.057,0.049c2.241,0,3.44-1.248,3.44-3.431
			c0.013-1.907-1.066-3.119-3.272-3.119c-0.54,0-0.948,0.05-1.225,0.108V197.221z"/>
		<path d="M115.177,190.049c0.504-0.084,1.164-0.156,2.003-0.156c1.032,0,1.787,0.24,2.269,0.672
			c0.432,0.385,0.706,0.973,0.706,1.69c0,0.731-0.216,1.308-0.624,1.728c-0.562,0.588-1.45,0.889-2.47,0.889
			c-0.312,0-0.601-0.014-0.84-0.072v3.238h-1.044V190.049z M116.221,193.945c0.229,0.062,0.516,0.085,0.863,0.085
			c1.26,0,2.026-0.624,2.026-1.716c0-1.078-0.768-1.596-1.906-1.596c-0.456,0-0.805,0.036-0.983,0.084V193.945z"/>
	</g>
</g>
<g id="MgATP">
	
		<radialGradient id="MgATP_path1_1_" cx="-55.7068" cy="377.4062" r="16.186" gradientTransform="matrix(1.5933 0 0 -0.6358 155.4012 379.9846)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FDFBE1"/>
		<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
		<stop  offset="0.2662" style="stop-color:#FFFACC"/>
		<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
		<stop  offset="0.5943" style="stop-color:#FEF091"/>
		<stop  offset="0.7706" style="stop-color:#FEEA64"/>
		<stop  offset="0.9506" style="stop-color:#FEE22D"/>
		<stop  offset="1" style="stop-color:#FEE01B"/>
	</radialGradient>
	<path id="MgATP_path1" fill="url(#MgATP_path1_1_)" stroke="#010101" d="M91.958,140.029c0,5.785-11.338,10.478-25.315,10.478
		c-13.979,0-25.313-4.688-25.313-10.478s11.334-10.477,25.313-10.477C80.621,129.555,91.958,134.242,91.958,140.029z"/>
	<g>
		<path d="M56.805,140.002c-0.06-1.128-0.132-2.495-0.132-3.49h-0.024c-0.287,0.937-0.61,1.955-1.019,3.07l-1.428,3.922h-0.791
			l-1.319-3.85c-0.384-1.151-0.696-2.185-0.924-3.144h-0.024c-0.022,1.009-0.083,2.351-0.155,3.574l-0.217,3.466h-0.994l0.562-8.084
			h1.332l1.379,3.91c0.336,0.995,0.6,1.883,0.815,2.723h0.023c0.216-0.814,0.504-1.703,0.863-2.723l1.438-3.91h1.331l0.504,8.084
			h-1.03L56.805,140.002z"/>
		<path d="M64.57,142.7c0,1.344-0.274,2.146-0.826,2.661c-0.576,0.518-1.393,0.697-2.123,0.697c-0.696,0-1.465-0.168-1.932-0.479
			l0.265-0.815c0.384,0.252,0.982,0.467,1.702,0.467c1.079,0,1.871-0.562,1.871-2.037v-0.637h-0.023
			c-0.312,0.539-0.947,0.971-1.848,0.971c-1.438,0-2.471-1.223-2.471-2.829c0-1.968,1.283-3.07,2.626-3.07
			c1.008,0,1.548,0.517,1.812,0.995h0.022l0.036-0.875h0.937c-0.036,0.406-0.049,0.888-0.049,1.583V142.7z M63.514,140.038
			c0-0.181-0.012-0.336-0.06-0.468c-0.192-0.625-0.695-1.129-1.477-1.129c-1.007,0-1.727,0.853-1.727,2.195
			c0,1.139,0.587,2.088,1.715,2.088c0.659,0,1.247-0.408,1.463-1.08c0.062-0.181,0.084-0.385,0.084-0.563L63.514,140.038
			L63.514,140.038z"/>
		<path d="M67.656,141.009l-0.84,2.543h-1.079l2.76-8.084h1.247l2.759,8.084h-1.115l-0.864-2.543H67.656z M70.318,140.193
			l-0.803-2.326c-0.181-0.528-0.3-1.008-0.42-1.477h-0.024c-0.119,0.469-0.238,0.973-0.406,1.463l-0.792,2.34H70.318z"/>
		<path d="M74.303,136.355h-2.458v-0.889h5.984v0.889h-2.472v7.195h-1.056L74.303,136.355L74.303,136.355z"/>
		<path d="M78.732,135.564c0.504-0.084,1.164-0.156,2.003-0.156c1.032,0,1.787,0.24,2.268,0.672
			c0.433,0.384,0.708,0.972,0.708,1.689c0,0.732-0.216,1.309-0.624,1.729c-0.563,0.588-1.451,0.888-2.47,0.888
			c-0.312,0-0.602-0.013-0.841-0.071v3.237h-1.044V135.564z M79.776,139.462c0.229,0.062,0.517,0.084,0.863,0.084
			c1.26,0,2.027-0.624,2.027-1.715c0-1.079-0.769-1.596-1.907-1.596c-0.456,0-0.804,0.036-0.983,0.084V139.462z"/>
	</g>
</g>
<g>
	<path id="path21243_3_" fill="none" stroke="#010101" d="M82.62,214.221c8.669,0,15.696,5.106,15.696,11.403
		c0,6.3-7.027,11.403-15.696,11.403c-8.671,0-15.699-5.104-15.699-11.403C66.921,219.327,73.949,214.221,82.62,214.221z"/>
</g>
<g>
	<g>
		<path d="M29.497,182.883l-0.84,2.543h-1.079l2.759-8.084h1.247l2.759,8.084h-1.115l-0.864-2.543H29.497z M32.159,182.066
			l-0.804-2.325c-0.181-0.528-0.3-1.009-0.42-1.476h-0.023c-0.12,0.467-0.239,0.971-0.407,1.463l-0.792,2.338H32.159z"/>
		<path d="M42.297,181.876c-0.061-1.128-0.132-2.495-0.132-3.49h-0.024c-0.287,0.937-0.611,1.955-1.019,3.07l-1.429,3.922h-0.791
			l-1.318-3.851c-0.384-1.15-0.696-2.184-0.924-3.143h-0.024c-0.023,1.008-0.084,2.352-0.155,3.574l-0.216,3.466h-0.996l0.564-8.084
			h1.331l1.379,3.91c0.336,0.995,0.6,1.883,0.814,2.724h0.024c0.216-0.815,0.504-1.703,0.863-2.724l1.438-3.91h1.331l0.504,8.084
			H42.49L42.297,181.876z"/>
		<path d="M47.051,178.613h-0.023l-1.354,0.73l-0.204-0.803l1.703-0.912h0.898v7.796h-1.02V178.613z"/>
	</g>
	<g>
		<path id="path21243_4_" fill="none" stroke="#010101" d="M38.829,170.5c8.669,0,15.696,5.105,15.696,11.402
			c0,6.301-7.027,11.404-15.696,11.404c-8.671,0-15.699-5.104-15.699-11.404C23.13,175.605,30.158,170.5,38.829,170.5z"/>
	</g>
</g>
<g id="kp_nT">
	<g>
		<path d="M195.543,67.048h1.044v3.898h0.036c0.216-0.312,0.432-0.6,0.636-0.863l2.471-3.035h1.295l-2.927,3.431l3.154,4.653h-1.235
			l-2.649-3.97l-0.779,0.888v3.082h-1.044L195.543,67.048L195.543,67.048z"/>
		<path d="M203.438,66.832c-0.274,1.008-0.791,2.303-1.114,2.854l-0.672,0.072c0.251-0.708,0.575-1.943,0.707-2.807L203.438,66.832z
			"/>
		<path d="M204.135,71.222c0-0.743-0.024-1.343-0.049-1.895h0.936l0.062,0.995h0.022c0.42-0.707,1.115-1.115,2.063-1.115
			c1.415,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.785-0.911h-0.024v3.154h-1.043
			L204.135,71.222L204.135,71.222z M205.178,72.77c0,0.155,0.012,0.3,0.048,0.432c0.192,0.731,0.828,1.235,1.583,1.235
			c1.115,0,1.765-0.912,1.765-2.243c0-1.151-0.612-2.146-1.729-2.146c-0.72,0-1.403,0.504-1.595,1.295
			c-0.036,0.132-0.072,0.288-0.072,0.42V72.77z"/>
		<path d="M210.963,70.898c0-0.612-0.013-1.092-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.539,0.96-1.079,1.919-1.079
			c0.805,0,2.051,0.479,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.716-1.344-1.716c-0.685,0-1.224,0.492-1.415,1.08
			c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V70.898L210.963,70.898z"/>
	</g>
	<ellipse id="kp_nT_path1" fill="none" stroke="#010101" cx="205.223" cy="70.825" rx="16.919" ry="10.972"/>
</g>
<g id="kn_pT">
	<path d="M140.571,71.223c0-0.743-0.023-1.343-0.049-1.895h0.937l0.061,0.995h0.023c0.42-0.707,1.115-1.115,2.062-1.115
		c1.415,0,2.472,1.188,2.472,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.786-0.911h-0.023v3.154h-1.044
		L140.571,71.223L140.571,71.223z M141.614,72.771c0,0.155,0.013,0.3,0.049,0.432c0.191,0.731,0.828,1.235,1.583,1.235
		c1.114,0,1.764-0.912,1.764-2.243c0-1.151-0.612-2.146-1.728-2.146c-0.721,0-1.403,0.504-1.596,1.295
		c-0.036,0.132-0.072,0.288-0.072,0.42V72.771z"/>
	<g id="1">
		<path d="M125.319,67.049h1.044v3.898h0.036c0.217-0.312,0.433-0.6,0.637-0.863l2.471-3.035h1.295l-2.927,3.431l3.153,4.653h-1.234
			l-2.65-3.97l-0.779,0.888v3.082h-1.044L125.319,67.049L125.319,67.049z"/>
		<path d="M133.213,66.833c-0.275,1.008-0.791,2.303-1.115,2.854l-0.671,0.072c0.251-0.708,0.575-1.943,0.707-2.807L133.213,66.833z
			"/>
		<path d="M133.911,70.899c0-0.612-0.014-1.092-0.05-1.571h0.937l0.061,0.959h0.023c0.288-0.539,0.96-1.079,1.919-1.079
			c0.804,0,2.051,0.479,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.716-1.344-1.716c-0.685,0-1.225,0.492-1.415,1.08
			c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V70.899L133.911,70.899z"/>
		<rect id="1_path1" x="119.754" y="59.854" fill="none" width="29.662" height="21.943"/>
	</g>
	<ellipse id="kn_pT_path1" fill="none" stroke="#010101" cx="134.997" cy="71.09" rx="17.442" ry="9.996"/>
</g>
<g id="gxbT">
	<g id="1">
		<g>
			<path d="M103.816,136.197c0,1.344-0.275,2.146-0.827,2.662c-0.575,0.517-1.392,0.695-2.122,0.695
				c-0.696,0-1.465-0.168-1.933-0.479l0.266-0.816c0.384,0.252,0.982,0.469,1.702,0.469c1.079,0,1.87-0.563,1.87-2.039v-0.635
				h-0.022c-0.312,0.539-0.947,0.971-1.848,0.971c-1.438,0-2.471-1.224-2.471-2.831c0-1.967,1.283-3.07,2.626-3.07
				c1.008,0,1.548,0.516,1.812,0.995h0.022l0.036-0.875h0.936c-0.035,0.407-0.048,0.888-0.048,1.583V136.197z M102.76,133.535
				c0-0.181-0.012-0.336-0.06-0.468c-0.192-0.624-0.696-1.128-1.477-1.128c-1.007,0-1.727,0.852-1.727,2.195
				c0,1.139,0.588,2.087,1.715,2.087c0.659,0,1.247-0.408,1.463-1.08c0.061-0.18,0.084-0.384,0.084-0.563L102.76,133.535
				L102.76,133.535z"/>
			<path d="M106.614,128.749c-0.274,1.008-0.79,2.303-1.114,2.854l-0.671,0.072c0.251-0.708,0.574-1.943,0.707-2.807
				L106.614,128.749z"/>
			<path d="M108.27,131.244l0.827,1.247c0.229,0.324,0.408,0.611,0.602,0.936h0.022c0.192-0.336,0.384-0.636,0.588-0.947
				l0.804-1.235h1.151l-1.979,2.807l2.026,2.998h-1.188l-0.863-1.308c-0.229-0.336-0.42-0.659-0.624-1.007h-0.023
				c-0.191,0.348-0.384,0.659-0.611,1.007l-0.839,1.308h-1.164l2.062-2.962l-1.968-2.843L108.27,131.244L108.27,131.244z"/>
			<path d="M113.334,128.533h1.043v3.646h0.023c0.371-0.647,1.043-1.056,1.979-1.056c1.451,0,2.459,1.199,2.459,2.95
				c0,2.075-1.319,3.106-2.615,3.106c-0.839,0-1.511-0.324-1.955-1.08h-0.022l-0.061,0.947h-0.899
				c0.023-0.396,0.049-0.983,0.049-1.499L113.334,128.533L113.334,128.533z M114.377,134.722c0,0.133,0.012,0.265,0.048,0.384
				c0.192,0.732,0.815,1.235,1.583,1.235c1.115,0,1.764-0.899,1.764-2.23c0-1.163-0.6-2.159-1.738-2.159
				c-0.708,0-1.381,0.504-1.597,1.296c-0.035,0.132-0.06,0.275-0.06,0.443V134.722z"/>
			<path d="M121.253,129.853h-2.458v-0.888h5.983v0.888h-2.471v7.196h-1.056L121.253,129.853L121.253,129.853z"/>
		</g>
		<rect id="1_path1" x="96.539" y="125.533" fill="none" width="27.42" height="14.426"/>
	</g>
	<ellipse id="gxbT_path1" fill="none" stroke="#010101" cx="110.656" cy="132.03" rx="17.442" ry="9.996"/>
</g>
<g id="fxbT">
	<g id="1">
		<g>
			<path d="M132.011,158.168v-5.001h-0.804v-0.804h0.804v-0.276c0-0.815,0.192-1.56,0.672-2.026
				c0.396-0.384,0.923-0.539,1.415-0.539c0.384,0,0.695,0.084,0.899,0.168l-0.145,0.814c-0.156-0.07-0.359-0.132-0.672-0.132
				c-0.898,0-1.127,0.778-1.127,1.68v0.312h1.402v0.804h-1.402v5.001L132.011,158.168L132.011,158.168z"/>
			<path d="M135.899,152.363l0.827,1.246c0.229,0.324,0.408,0.611,0.602,0.937h0.022c0.192-0.336,0.384-0.636,0.588-0.946
				l0.805-1.235h1.15l-1.979,2.807l2.026,2.998h-1.188l-0.863-1.308c-0.229-0.336-0.42-0.659-0.624-1.008h-0.022
				c-0.192,0.349-0.385,0.66-0.612,1.008l-0.839,1.308h-1.164l2.062-2.962l-1.967-2.843L135.899,152.363L135.899,152.363z"/>
			<path d="M140.963,149.652h1.043v3.646h0.023c0.371-0.647,1.044-1.056,1.979-1.056c1.451,0,2.459,1.199,2.459,2.949
				c0,2.076-1.319,3.106-2.615,3.106c-0.839,0-1.511-0.323-1.955-1.079h-0.022l-0.062,0.947h-0.898
				c0.023-0.396,0.049-0.982,0.049-1.499L140.963,149.652L140.963,149.652z M142.006,155.841c0,0.134,0.012,0.265,0.048,0.384
				c0.192,0.732,0.815,1.235,1.583,1.235c1.115,0,1.764-0.899,1.764-2.229c0-1.164-0.6-2.159-1.738-2.159
				c-0.708,0-1.38,0.504-1.597,1.296c-0.034,0.132-0.06,0.275-0.06,0.443V155.841L142.006,155.841z"/>
			<path d="M148.882,150.973h-2.458v-0.889h5.984v0.889h-2.472v7.195h-1.056L148.882,150.973L148.882,150.973z"/>
		</g>
		<rect id="1_path1" x="130.253" y="148.084" fill="none" width="25.481" height="14.426"/>
	</g>
	<ellipse id="fxbT_path1" fill="none" stroke="#010101" cx="144.261" cy="154.077" rx="17.442" ry="9.996"/>
</g>
<g id="fappT">
	<g id="1">
		<g>
			<path d="M213.011,137.05v-5.001h-0.804v-0.804h0.804v-0.276c0-0.815,0.192-1.559,0.672-2.026c0.396-0.384,0.923-0.54,1.415-0.54
				c0.384,0,0.695,0.084,0.899,0.168l-0.145,0.815c-0.156-0.071-0.359-0.132-0.672-0.132c-0.898,0-1.127,0.779-1.127,1.68v0.312
				h1.402v0.804h-1.402v5.001L213.011,137.05L213.011,137.05z"/>
			<path d="M220.485,135.658c0,0.504,0.024,0.996,0.084,1.392h-0.946l-0.084-0.731h-0.036c-0.324,0.457-0.947,0.863-1.775,0.863
				c-1.175,0-1.773-0.826-1.773-1.667c0-1.403,1.247-2.171,3.489-2.159v-0.119c0-0.468-0.132-1.344-1.318-1.332
				c-0.553,0-1.115,0.156-1.523,0.432l-0.24-0.707c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.362v2.17H220.485z
				 M219.465,134.088c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.007,0.983,1.007c0.768,0,1.259-0.479,1.427-0.971
				c0.036-0.12,0.048-0.24,0.048-0.336V134.088L219.465,134.088z"/>
			<path d="M222.192,133.14c0-0.743-0.023-1.343-0.049-1.895h0.937l0.061,0.995h0.023c0.42-0.707,1.114-1.115,2.062-1.115
				c1.415,0,2.471,1.188,2.471,2.938c0,2.087-1.282,3.119-2.65,3.119c-0.769,0-1.438-0.337-1.786-0.912h-0.024v3.154h-1.043
				L222.192,133.14L222.192,133.14z M223.235,134.688c0,0.155,0.013,0.3,0.049,0.432c0.191,0.731,0.827,1.235,1.583,1.235
				c1.114,0,1.764-0.913,1.764-2.244c0-1.151-0.612-2.146-1.729-2.146c-0.72,0-1.402,0.504-1.595,1.295
				c-0.036,0.132-0.072,0.288-0.072,0.42V134.688z"/>
			<path d="M229.019,133.14c0-0.743-0.023-1.343-0.049-1.895h0.937l0.061,0.995h0.023c0.42-0.707,1.114-1.115,2.062-1.115
				c1.415,0,2.471,1.188,2.471,2.938c0,2.087-1.282,3.119-2.65,3.119c-0.769,0-1.438-0.337-1.786-0.912h-0.024v3.154h-1.043
				L229.019,133.14L229.019,133.14z M230.062,134.688c0,0.155,0.013,0.3,0.048,0.432c0.192,0.731,0.828,1.235,1.583,1.235
				c1.115,0,1.765-0.913,1.765-2.244c0-1.151-0.612-2.146-1.729-2.146c-0.72,0-1.402,0.504-1.595,1.295
				c-0.036,0.132-0.072,0.288-0.072,0.42V134.688z"/>
			<path d="M236.938,129.854h-2.458v-0.888h5.984v0.888h-2.471v7.196h-1.057L236.938,129.854L236.938,129.854z"/>
		</g>
		<rect id="1_path1" x="209.226" y="124.458" fill="none" width="36.229" height="15.758"/>
	</g>
	<ellipse id="fappT_path1" fill="none" stroke="#010101" cx="226.48" cy="133.154" rx="17.442" ry="9.997"/>
</g>
<g id="gappT">
	<g id="1">
		<g>
			<path d="M195.253,180.629c0,1.344-0.275,2.146-0.827,2.662c-0.576,0.518-1.392,0.695-2.123,0.695
				c-0.696,0-1.464-0.168-1.931-0.479l0.264-0.816c0.384,0.252,0.983,0.469,1.703,0.469c1.079,0,1.871-0.562,1.871-2.038v-0.636
				h-0.024c-0.312,0.539-0.946,0.971-1.847,0.971c-1.439,0-2.471-1.223-2.471-2.83c0-1.967,1.282-3.07,2.626-3.07
				c1.008,0,1.548,0.517,1.812,0.995h0.023l0.036-0.875h0.936c-0.036,0.407-0.048,0.888-0.048,1.583V180.629L195.253,180.629z
				 M194.198,177.967c0-0.181-0.013-0.336-0.061-0.468c-0.192-0.624-0.695-1.128-1.476-1.128c-1.008,0-1.728,0.852-1.728,2.195
				c0,1.139,0.587,2.086,1.715,2.086c0.659,0,1.247-0.407,1.463-1.079c0.062-0.181,0.084-0.384,0.084-0.563v-1.043H194.198z"/>
			<path d="M198.051,173.182c-0.275,1.008-0.791,2.303-1.115,2.854l-0.671,0.072c0.251-0.709,0.575-1.943,0.707-2.808
				L198.051,173.182z"/>
			<path d="M203.078,180.089c0,0.504,0.023,0.996,0.084,1.392h-0.947l-0.084-0.73h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
				c-1.175,0-1.773-0.827-1.773-1.668c0-1.402,1.247-2.17,3.49-2.158v-0.119c0-0.468-0.133-1.344-1.319-1.332
				c-0.552,0-1.115,0.156-1.523,0.432l-0.239-0.707c0.479-0.3,1.188-0.504,1.919-0.504c1.774,0,2.207,1.211,2.207,2.362v2.17
				H203.078z M202.058,178.52c-1.15-0.024-2.458,0.18-2.458,1.307c0,0.695,0.455,1.008,0.983,1.008c0.768,0,1.259-0.479,1.427-0.973
				c0.036-0.119,0.048-0.239,0.048-0.336V178.52L202.058,178.52z"/>
			<path d="M204.785,177.57c0-0.743-0.024-1.344-0.05-1.896h0.937l0.061,0.995h0.023c0.42-0.707,1.115-1.115,2.062-1.115
				c1.415,0,2.472,1.188,2.472,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.786-0.911h-0.023v3.153h-1.043
				L204.785,177.57L204.785,177.57z M205.828,179.118c0,0.155,0.012,0.3,0.048,0.432c0.191,0.731,0.828,1.235,1.583,1.235
				c1.115,0,1.764-0.912,1.764-2.243c0-1.151-0.612-2.146-1.728-2.146c-0.721,0-1.403,0.504-1.596,1.295
				c-0.035,0.132-0.071,0.287-0.071,0.42V179.118z"/>
			<path d="M211.612,177.57c0-0.743-0.023-1.344-0.049-1.896h0.937l0.061,0.995h0.023c0.42-0.707,1.115-1.115,2.062-1.115
				c1.415,0,2.472,1.188,2.472,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.786-0.911h-0.023v3.153h-1.044
				L211.612,177.57L211.612,177.57z M212.655,179.118c0,0.155,0.013,0.3,0.049,0.432c0.191,0.731,0.828,1.235,1.583,1.235
				c1.114,0,1.764-0.912,1.764-2.243c0-1.151-0.612-2.146-1.729-2.146c-0.72,0-1.402,0.504-1.595,1.295
				c-0.036,0.132-0.072,0.287-0.072,0.42V179.118z"/>
			<path d="M219.531,174.284h-2.458v-0.888h5.983v0.888h-2.471v7.196h-1.057v-7.196H219.531z"/>
		</g>
		<rect id="1_path1" x="185.806" y="171.372" fill="none" width="37.674" height="14.426"/>
	</g>
	<ellipse id="gappT_path1" fill="none" stroke="#010101" cx="205.906" cy="178.585" rx="19.262" ry="9.996"/>
</g>
<g id="hfT">
	<g id="1">
		<g>
			<path d="M176.036,219.152h1.055v3.635h0.024c0.168-0.301,0.432-0.576,0.756-0.756c0.312-0.18,0.684-0.288,1.079-0.288
				c0.778,0,2.025,0.479,2.025,2.471v3.454h-1.055v-3.334c0-0.936-0.349-1.715-1.344-1.715c-0.685,0-1.211,0.479-1.415,1.043
				c-0.061,0.156-0.072,0.312-0.072,0.504v3.502h-1.055L176.036,219.152L176.036,219.152z"/>
			<path d="M182.803,227.668v-5.001H182v-0.804h0.804v-0.276c0-0.815,0.192-1.56,0.672-2.026c0.396-0.384,0.923-0.539,1.415-0.539
				c0.384,0,0.695,0.084,0.899,0.168l-0.145,0.814c-0.155-0.07-0.359-0.132-0.672-0.132c-0.898,0-1.127,0.778-1.127,1.68v0.312
				h1.402v0.804h-1.402v5.001L182.803,227.668L182.803,227.668z"/>
			<path d="M187.77,220.473h-2.458v-0.889h5.984v0.889h-2.471v7.195h-1.057L187.77,220.473L187.77,220.473z"/>
		</g>
		<rect id="1_path1" x="170.889" y="216.413" fill="none" width="25.481" height="14.426"/>
	</g>
	<ellipse id="hfT_path1" fill="none" stroke="#010101" cx="182.535" cy="223.641" rx="15.538" ry="7.582"/>
</g>
<g id="hbT">
	<g id="1">
		<g>
			<path d="M173.57,194.249h1.056v3.635h0.023c0.168-0.3,0.433-0.575,0.756-0.756c0.312-0.18,0.685-0.288,1.079-0.288
				c0.779,0,2.026,0.479,2.026,2.471v3.455h-1.055v-3.334c0-0.937-0.35-1.716-1.345-1.716c-0.684,0-1.211,0.479-1.415,1.043
				c-0.06,0.156-0.071,0.312-0.071,0.505v3.502h-1.056L173.57,194.249L173.57,194.249z"/>
			<path d="M181.152,194.465c-0.274,1.008-0.791,2.303-1.114,2.854l-0.671,0.072c0.251-0.707,0.574-1.942,0.706-2.807
				L181.152,194.465z"/>
			<path d="M182.318,194.249h1.043v3.646h0.024c0.371-0.646,1.043-1.056,1.979-1.056c1.451,0,2.46,1.199,2.46,2.95
				c0,2.075-1.319,3.105-2.615,3.105c-0.839,0-1.512-0.324-1.955-1.078h-0.023l-0.06,0.947h-0.9c0.024-0.396,0.049-0.983,0.049-1.5
				L182.318,194.249L182.318,194.249z M183.361,200.438c0,0.133,0.013,0.266,0.049,0.385c0.191,0.732,0.814,1.234,1.583,1.234
				c1.114,0,1.764-0.898,1.764-2.229c0-1.163-0.601-2.159-1.739-2.159c-0.708,0-1.38,0.504-1.596,1.296
				c-0.035,0.132-0.061,0.275-0.061,0.443V200.438L183.361,200.438z"/>
			<path d="M190.236,195.568h-2.458v-0.889h5.984v0.889h-2.471v7.195h-1.057L190.236,195.568L190.236,195.568z"/>
		</g>
		<rect id="1_path1" x="171.676" y="190.426" fill="none" width="25.481" height="14.426"/>
	</g>
	<ellipse id="hbT_path1" fill="none" stroke="#010101" cx="182.535" cy="198.035" rx="15.538" ry="7.582"/>
</g>
</svg>
</window>