Location: Yates, Stark, Klein, Antia, Callard, 2007 @ e72d70af39c7 / yates_2007b.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2010-07-06 12:07:52+12:00
Desc:
Made new xul files, added clickable SVGs to session files for A B and C
Permanent Source URI:
https://models.cellml.org/workspace/yates_stark_klein_antia_callard_2007/rawfile/e72d70af39c75535ee62520264477d9367f5e49f/yates_2007b.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 =
  {

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

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

	z: {
		id: "z",
		y: "z/z",
		x: "environment/time",
		graph: "Traces: Clickable Elements Against Time (days)",
		colour: "#ffcc00",
		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>
			<line fill="none" stroke="#000000" x1="208.993" y1="38.885" x2="98.29" y2="38.885"/>
			<polygon points="206.185,42.588 207.757,38.885 206.185,35.181 214.962,38.885 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="103.993" y1="45.885" x2="214.742" y2="45.885"/>
			<polygon points="106.802,42.182 105.229,45.885 106.802,49.589 98.024,45.885 			"/>
		</g>
	</g>
</g>
<g>
	<path d="M158.577,28.35c0,0.503,0.024,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.946,0.863-1.774,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
		c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.695c0.48-0.312,1.176-0.516,1.907-0.516c1.775,0,2.207,1.211,2.207,2.375L158.577,28.35
		L158.577,28.35z M157.558,26.778c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.234-0.48,1.402-0.972c0.036-0.108,0.061-0.228,0.061-0.336L157.558,26.778L157.558,26.778z"/>
</g>
<g>
	<path d="M155.43,58.081c0-0.684-0.013-1.271-0.049-1.811h0.924l0.035,1.139h0.049c0.264-0.779,0.898-1.271,1.606-1.271
		c0.12,0,0.204,0.012,0.3,0.036v0.996c-0.107-0.024-0.216-0.036-0.358-0.036c-0.744,0-1.271,0.564-1.416,1.355
		c-0.024,0.144-0.048,0.312-0.048,0.492v3.094h-1.043V58.081z"/>
</g>
<g id="x">
	<g>
		<path d="M36.715,16.931c0.527-0.108,1.283-0.168,2.003-0.168c1.115,0,1.836,0.204,2.339,0.66c0.407,0.36,0.636,0.912,0.636,1.535
			c0,1.067-0.671,1.775-1.523,2.063v0.036c0.624,0.216,0.995,0.792,1.188,1.631c0.264,1.127,0.456,1.907,0.624,2.219H40.9
			c-0.132-0.24-0.312-0.923-0.54-1.931c-0.24-1.115-0.672-1.535-1.619-1.571h-0.983v3.502h-1.043V16.931z M37.759,20.613h1.067
			c1.115,0,1.823-0.612,1.823-1.535c0-1.043-0.755-1.5-1.859-1.511c-0.504,0-0.863,0.048-1.031,0.096V20.613z"/>
		<path d="M43.771,22.196c0.023,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.606-0.3l0.18,0.756
			c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.187-2.854-2.938s1.031-3.13,2.723-3.13c1.895,0,2.399,1.667,2.399,2.734
			c0,0.216-0.024,0.384-0.036,0.492h-4.079V22.196z M46.865,21.44c0.012-0.671-0.276-1.715-1.463-1.715
			c-1.067,0-1.535,0.983-1.619,1.715H46.865z"/>
		<path d="M49.051,23.827c0.312,0.204,0.864,0.42,1.393,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.067
			c-1.043-0.372-1.535-0.948-1.535-1.644c0-0.935,0.755-1.703,2.003-1.703c0.587,0,1.104,0.167,1.428,0.359l-0.265,0.768
			c-0.228-0.144-0.646-0.335-1.187-0.335c-0.624,0-0.973,0.36-0.973,0.792c0,0.479,0.349,0.695,1.104,0.983
			c1.007,0.384,1.522,0.888,1.522,1.751c0,1.02-0.792,1.751-2.171,1.751c-0.635,0-1.223-0.168-1.631-0.408L49.051,23.827z"/>
		<path d="M55.218,17.711v1.391h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.612-0.072
			l0.048,0.792c-0.204,0.084-0.527,0.156-0.936,0.156c-0.492,0-0.888-0.168-1.14-0.456c-0.301-0.312-0.408-0.828-0.408-1.511v-3.167
			h-0.899v-0.803h0.899v-1.067L55.218,17.711z"/>
		<path d="M59.094,17.471c0.012,0.36-0.253,0.648-0.672,0.648c-0.372,0-0.636-0.288-0.636-0.648c0-0.372,0.276-0.66,0.66-0.66
			C58.842,16.811,59.094,17.099,59.094,17.471z M57.919,24.907v-5.805h1.057v5.805H57.919z"/>
		<path d="M60.727,20.673c0-0.6-0.013-1.091-0.048-1.571h0.936l0.06,0.959h0.024c0.288-0.552,0.959-1.091,1.919-1.091
			c0.803,0,2.051,0.479,2.051,2.47v3.466h-1.056V21.56c0-0.936-0.348-1.715-1.343-1.715c-0.695,0-1.235,0.492-1.415,1.079
			c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V20.673z"/>
		<path d="M72.34,24.067c0,1.331-0.264,2.146-0.826,2.65c-0.564,0.528-1.38,0.696-2.111,0.696c-0.696,0-1.463-0.168-1.931-0.48
			l0.264-0.804c0.384,0.24,0.983,0.456,1.703,0.456c1.08,0,1.871-0.564,1.871-2.027V23.91h-0.024
			c-0.324,0.54-0.948,0.972-1.847,0.972c-1.439,0-2.472-1.224-2.472-2.831c0-1.967,1.284-3.082,2.615-3.082
			c1.007,0,1.56,0.527,1.812,1.007h0.023l0.048-0.875h0.925c-0.024,0.419-0.049,0.887-0.049,1.595L72.34,24.067L72.34,24.067z
			 M71.296,21.393c0-0.18-0.012-0.336-0.06-0.479c-0.192-0.612-0.708-1.116-1.477-1.116c-1.007,0-1.727,0.852-1.727,2.195
			c0,1.14,0.576,2.087,1.715,2.087c0.647,0,1.235-0.408,1.463-1.079c0.061-0.18,0.084-0.384,0.084-0.564L71.296,21.393
			L71.296,21.393z"/>
	</g>
	<ellipse id="x_path1" fill="#E7585B" stroke="#231F20" cx="54.511" cy="51.698" rx="30.247" ry="18.21"/>
	<g>
		<path d="M53.1,49.417l0.828,1.247c0.216,0.324,0.396,0.624,0.588,0.948h0.035c0.192-0.348,0.385-0.648,0.576-0.959l0.815-1.235
			h1.14l-1.979,2.806l2.039,2.999h-1.2l-0.853-1.307c-0.228-0.336-0.419-0.66-0.624-1.008h-0.023
			c-0.192,0.36-0.396,0.66-0.612,1.008l-0.839,1.307h-1.163l2.063-2.962l-1.968-2.842H53.1V49.417z"/>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="54.511" y1="124.558" x2="54.511" y2="76.558"/>
			<polygon points="50.808,121.749 54.511,123.322 58.215,121.749 54.511,130.527 			"/>
		</g>
	</g>
	<g>
		<path d="M66.472,102.277c-0.156-0.152-0.324-0.297-0.505-0.434c-0.573-0.441-0.944-0.782-1.112-1.022
			c-0.168-0.24-0.252-0.464-0.252-0.671c0-0.305,0.146-0.572,0.438-0.803s0.758-0.346,1.396-0.346c0.737,0,1.313,0.141,1.729,0.422
			c0.258,0.176,0.388,0.385,0.388,0.627c0,0.133-0.049,0.246-0.145,0.34c-0.096,0.094-0.216,0.141-0.36,0.141
			c-0.086,0-0.161-0.021-0.229-0.059c-0.098-0.059-0.267-0.219-0.507-0.48c-0.24-0.261-0.432-0.428-0.571-0.498
			c-0.184-0.09-0.4-0.135-0.65-0.135c-0.348,0-0.613,0.075-0.8,0.226c-0.186,0.151-0.277,0.315-0.277,0.495
			c0,0.172,0.104,0.364,0.311,0.577c0.207,0.213,0.666,0.532,1.377,0.958c0.902,0.535,1.514,1.033,1.834,1.494
			s0.48,0.965,0.48,1.512c0,0.801-0.272,1.483-0.817,2.048s-1.188,0.847-1.931,0.847c-0.672,0-1.235-0.234-1.69-0.703
			s-0.683-1.047-0.683-1.734c0-0.41,0.092-0.812,0.274-1.204c0.184-0.392,0.459-0.716,0.826-0.97
			C65.363,102.651,65.854,102.441,66.472,102.277z M66.782,102.558c-0.609,0.102-1.067,0.343-1.374,0.724
			c-0.307,0.381-0.46,0.929-0.46,1.644c0,0.715,0.152,1.259,0.457,1.632s0.656,0.56,1.055,0.56c0.48,0,0.856-0.195,1.128-0.586
			c0.272-0.391,0.407-0.887,0.407-1.488c0-0.324-0.046-0.629-0.138-0.914s-0.204-0.521-0.337-0.709
			C67.419,103.279,67.173,102.992,66.782,102.558z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<g>
				<line fill="none" stroke="#000000" x1="270.173" y1="124.558" x2="270.173" y2="76.558"/>
				<polygon points="266.47,121.749 270.173,123.322 273.877,121.749 270.173,130.527 				"/>
			</g>
		</g>
		<g>
			<path d="M285.66,101.966v3.533c0,0.469,0.021,0.797,0.064,0.984c0.034,0.133,0.088,0.229,0.157,0.287
				c0.07,0.058,0.146,0.088,0.224,0.088c0.098,0,0.188-0.049,0.271-0.146c0.084-0.097,0.146-0.291,0.186-0.58h0.239
				c-0.065,0.523-0.194,0.885-0.387,1.084c-0.191,0.199-0.434,0.299-0.727,0.299c-0.289,0-0.521-0.088-0.691-0.264
				s-0.274-0.48-0.311-0.914c-0.398,0.441-0.776,0.749-1.135,0.923c-0.357,0.174-0.667,0.261-0.929,0.261
				c-0.176,0-0.348-0.034-0.516-0.103s-0.332-0.169-0.492-0.302c-0.008,0.566,0.041,1.061,0.146,1.482
				c0.074,0.301,0.111,0.512,0.111,0.633c0,0.211-0.054,0.379-0.161,0.504c-0.106,0.125-0.229,0.188-0.366,0.188
				c-0.141,0-0.256-0.055-0.346-0.164c-0.121-0.148-0.182-0.334-0.182-0.557c0-0.109,0.022-0.246,0.069-0.41
				c0.109-0.367,0.179-0.688,0.205-0.961c0.048-0.469,0.07-0.867,0.07-1.195v-4.67h0.984v3.381c0,0.398,0.032,0.686,0.1,0.861
				s0.187,0.314,0.357,0.416s0.344,0.152,0.516,0.152c0.203,0,0.443-0.061,0.721-0.182c0.278-0.121,0.56-0.316,0.845-0.586v-4.043
				L285.66,101.966L285.66,101.966z"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="250.507" y1="180.001" x2="250.507" y2="76.559"/>
			<polygon points="246.804,177.191 250.507,178.766 254.211,177.191 250.507,185.97 			"/>
		</g>
	</g>
	<g>
		<path d="M235.97,103.061c0-0.744-0.024-1.343-0.049-1.895h0.947l0.048,0.995h0.024c0.432-0.708,1.115-1.127,2.062-1.127
			c1.403,0,2.459,1.187,2.459,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.768,0-1.439-0.336-1.787-0.912h-0.023v3.154h-1.043V103.061z
			 M237.013,104.607c0,0.156,0.023,0.3,0.048,0.432c0.191,0.732,0.828,1.235,1.583,1.235c1.114,0,1.763-0.911,1.763-2.243
			c0-1.163-0.611-2.159-1.727-2.159c-0.721,0-1.392,0.516-1.596,1.307c-0.036,0.132-0.071,0.288-0.071,0.432V104.607
			L237.013,104.607z"/>
	</g>
</g>
<g id="y">
	<g>
		<path d="M240.799,16.738c0.637-0.096,1.393-0.168,2.22-0.168c1.5,0,2.567,0.348,3.274,1.007c0.72,0.66,1.14,1.595,1.14,2.902
			c0,1.319-0.408,2.399-1.162,3.143c-0.756,0.755-2.004,1.163-3.575,1.163c-0.744,0-1.367-0.036-1.896-0.096V16.738z
			 M241.843,23.886c0.265,0.048,0.647,0.06,1.057,0.06c2.229,0,3.44-1.248,3.44-3.43c0.015-1.907-1.065-3.118-3.272-3.118
			c-0.54,0-0.948,0.048-1.225,0.108V23.886z"/>
		<path d="M249.932,17.277c0.012,0.36-0.252,0.648-0.673,0.648c-0.37,0-0.637-0.288-0.637-0.648c0-0.372,0.277-0.66,0.66-0.66
			C249.68,16.618,249.932,16.906,249.932,17.277z M248.756,24.713v-5.805h1.056v5.805H248.756z"/>
		<path d="M251.971,18.909l1.141,3.262c0.191,0.527,0.348,1.007,0.467,1.487h0.037c0.131-0.48,0.299-0.96,0.49-1.487l1.129-3.262
			h1.102l-2.276,5.805h-1.008l-2.207-5.805H251.971z"/>
		<path d="M258.51,17.277c0.013,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.635-0.288-0.635-0.648c0-0.372,0.275-0.66,0.66-0.66
			C258.258,16.618,258.51,16.906,258.51,17.277z M257.336,24.713v-5.805h1.056v5.805H257.336z"/>
		<path d="M265.156,16.198v7.016c0,0.516,0.012,1.103,0.047,1.499h-0.947l-0.047-1.007h-0.024c-0.322,0.647-1.031,1.139-1.979,1.139
			c-1.401,0-2.481-1.187-2.481-2.95c-0.013-1.931,1.188-3.118,2.604-3.118c0.887,0,1.486,0.419,1.75,0.887h0.023v-3.466H265.156z
			 M264.1,21.271c0-0.132-0.013-0.312-0.047-0.444c-0.156-0.672-0.732-1.224-1.523-1.224c-1.092,0-1.738,0.959-1.738,2.243
			c0,1.175,0.574,2.146,1.715,2.146c0.707,0,1.355-0.468,1.548-1.259c0.034-0.144,0.047-0.288,0.047-0.456L264.1,21.271
			L264.1,21.271z"/>
		<path d="M268.086,17.277c0.013,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.637-0.288-0.637-0.648c0-0.372,0.277-0.66,0.66-0.66
			C267.834,16.618,268.086,16.906,268.086,17.277z M266.91,24.713v-5.805h1.055v5.805H266.91z"/>
		<path d="M269.719,20.479c0-0.6-0.014-1.091-0.049-1.571h0.937l0.061,0.959h0.023c0.287-0.552,0.959-1.091,1.918-1.091
			c0.805,0,2.051,0.479,2.051,2.47v3.466h-1.055v-3.346c0-0.936-0.349-1.715-1.345-1.715c-0.694,0-1.233,0.492-1.413,1.079
			c-0.05,0.132-0.072,0.312-0.072,0.492v3.49h-1.055L269.719,20.479L269.719,20.479z"/>
		<path d="M281.332,23.874c0,1.331-0.264,2.146-0.828,2.65c-0.563,0.528-1.379,0.696-2.11,0.696c-0.695,0-1.463-0.168-1.931-0.479
			l0.265-0.804c0.383,0.24,0.981,0.456,1.703,0.456c1.077,0,1.87-0.564,1.87-2.027v-0.648h-0.024
			c-0.324,0.54-0.947,0.972-1.846,0.972c-1.439,0-2.472-1.224-2.472-2.831c0-1.967,1.283-3.082,2.613-3.082
			c1.008,0,1.561,0.527,1.811,1.007h0.025l0.047-0.875h0.924c-0.022,0.419-0.047,0.887-0.047,1.595V23.874L281.332,23.874z
			 M280.287,21.199c0-0.18-0.012-0.336-0.059-0.479c-0.193-0.612-0.709-1.116-1.478-1.116c-1.006,0-1.727,0.852-1.727,2.195
			c0,1.14,0.576,2.087,1.715,2.087c0.648,0,1.236-0.408,1.463-1.079c0.062-0.18,0.084-0.384,0.084-0.564L280.287,21.199
			L280.287,21.199z"/>
	</g>
	<ellipse id="y_path1" fill="#57B6DD" stroke="#231F20" cx="261.051" cy="51.891" rx="30.248" ry="18.21"/>
	<g>
		<path d="M259.482,49.607l1.271,3.43c0.131,0.384,0.275,0.839,0.371,1.187h0.025c0.106-0.348,0.227-0.792,0.371-1.211l1.149-3.406
			h1.117l-1.584,4.138c-0.756,1.991-1.271,3.01-1.99,3.634c-0.516,0.456-1.03,0.636-1.297,0.684l-0.264-0.887
			c0.264-0.084,0.611-0.252,0.924-0.516c0.289-0.228,0.648-0.635,0.889-1.175c0.048-0.108,0.084-0.192,0.084-0.251
			c0-0.06-0.024-0.144-0.071-0.276l-2.146-5.349h1.151V49.607z"/>
	</g>
</g>
<g>
	<path d="M242.396,238.916V247h-1.044v-8.084H242.396z"/>
	<path d="M244.305,242.768c0-0.601-0.014-1.093-0.05-1.572h0.937l0.061,0.96h0.023c0.288-0.552,0.96-1.091,1.919-1.091
		c0.804,0,2.051,0.479,2.051,2.471V247h-1.055v-3.346c0-0.937-0.349-1.717-1.344-1.717c-0.695,0-1.235,0.492-1.415,1.08
		c-0.049,0.133-0.072,0.312-0.072,0.491V247h-1.055V242.768L244.305,242.768z"/>
	<path d="M251.071,247v-5.001h-0.815v-0.804h0.815v-0.276c0-0.815,0.18-1.56,0.672-2.026c0.396-0.384,0.923-0.539,1.415-0.539
		c0.372,0,0.695,0.084,0.899,0.168l-0.145,0.814c-0.156-0.07-0.372-0.132-0.672-0.132c-0.899,0-1.127,0.792-1.127,1.68v0.312h1.402
		V242h-1.402v5H251.071z"/>
	<path d="M254.899,244.289c0.023,1.428,0.936,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.18,0.755
		c-0.371,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.129,2.723-3.129c1.895,0,2.398,1.666,2.398,2.733
		c0,0.216-0.024,0.384-0.036,0.491H254.899z M257.994,243.534c0.012-0.673-0.276-1.716-1.463-1.716
		c-1.067,0-1.535,0.983-1.619,1.716H257.994z"/>
	<path d="M264.462,246.784c-0.275,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.89-1.198-2.89-2.975c0-1.787,1.223-3.082,3.118-3.082
		c0.623,0,1.175,0.155,1.463,0.3l-0.24,0.814c-0.251-0.144-0.646-0.274-1.223-0.274c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.344,0.862,2.171,2.015,2.171c0.6,0,0.995-0.156,1.295-0.288L264.462,246.784z"/>
	<path d="M267.127,239.805v1.391h1.513V242h-1.513v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.791c-0.203,0.084-0.527,0.156-0.936,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.407-0.827-0.407-1.511V242
		h-0.899v-0.804h0.899v-1.067L267.127,239.805z"/>
	<path d="M270.343,244.289c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.607-0.3l0.18,0.755
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.129,2.724-3.129c1.895,0,2.397,1.666,2.397,2.733
		c0,0.216-0.023,0.384-0.036,0.491H270.343z M273.438,243.534c0.012-0.673-0.276-1.716-1.463-1.716
		c-1.067,0-1.535,0.983-1.619,1.716H273.438z"/>
	<path d="M280.78,238.484v7.017c0,0.517,0.012,1.104,0.048,1.499h-0.947l-0.048-1.008h-0.023c-0.323,0.648-1.031,1.14-1.979,1.14
		c-1.403,0-2.481-1.188-2.481-2.95c-0.014-1.931,1.188-3.117,2.603-3.117c0.888,0,1.487,0.42,1.751,0.888h0.023v-3.468H280.78
		L280.78,238.484z M279.725,243.559c0-0.133-0.013-0.312-0.049-0.443c-0.154-0.672-0.73-1.225-1.522-1.225
		c-1.091,0-1.738,0.961-1.738,2.243c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259
		c0.036-0.146,0.049-0.289,0.049-0.457L279.725,243.559L279.725,243.559z"/>
</g>
<g id="z">
	<ellipse id="z_path1" fill="#AC5DAA" stroke="#231F20" cx="261.051" cy="211.892" rx="30.248" ry="18.21"/>
	<g>
		<path fill="#231F20" d="M256.801,214.801l2.628-3.418c0.252-0.312,0.489-0.588,0.754-0.9v-0.022h-3.142v-0.853h4.424l-0.012,0.66
			l-2.59,3.369c-0.24,0.324-0.48,0.611-0.744,0.912v0.023h3.396v0.84h-4.714V214.801L256.801,214.801z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="106" y1="211.059" x2="215.334" y2="211.059"/>
		<polygon points="108.809,207.354 107.236,211.059 108.809,214.762 100.031,211.059 		"/>
	</g>
</g>
<g>
	<path d="M35.322,194.583v8.084h-1.043v-8.084H35.322z"/>
	<path d="M37.23,198.434c0-0.6-0.013-1.092-0.048-1.57h0.923l0.048,0.936h0.036c0.324-0.552,0.864-1.066,1.823-1.066
		c0.792,0,1.391,0.479,1.643,1.162h0.024c0.18-0.324,0.407-0.574,0.646-0.756c0.348-0.264,0.731-0.406,1.283-0.406
		c0.768,0,1.907,0.504,1.907,2.519v3.418h-1.032v-3.286c0-1.115-0.408-1.787-1.259-1.787c-0.601,0-1.067,0.443-1.247,0.961
		c-0.048,0.144-0.084,0.334-0.084,0.526v3.586h-1.031v-3.479c0-0.922-0.408-1.595-1.211-1.595c-0.66,0-1.14,0.527-1.308,1.056
		c-0.061,0.156-0.085,0.336-0.085,0.517v3.502H37.23V198.434z"/>
	<path d="M47.238,198.434c0-0.6-0.012-1.092-0.048-1.57h0.923l0.048,0.936h0.036c0.324-0.552,0.864-1.066,1.823-1.066
		c0.792,0,1.391,0.479,1.643,1.162h0.024c0.18-0.324,0.408-0.574,0.646-0.756c0.349-0.264,0.731-0.406,1.283-0.406
		c0.768,0,1.907,0.504,1.907,2.519v3.418h-1.032v-3.286c0-1.115-0.408-1.787-1.259-1.787c-0.601,0-1.067,0.443-1.247,0.961
		c-0.048,0.144-0.084,0.334-0.084,0.526v3.586h-1.031v-3.479c0-0.922-0.408-1.595-1.211-1.595c-0.66,0-1.14,0.527-1.308,1.056
		c-0.061,0.156-0.084,0.336-0.084,0.517v3.502h-1.031L47.238,198.434L47.238,198.434z"/>
	<path d="M62.104,201.084c0,0.6,0.012,1.127,0.048,1.583h-0.937l-0.06-0.947h-0.024c-0.275,0.468-0.887,1.079-1.919,1.079
		c-0.911,0-2.003-0.504-2.003-2.543v-3.395h1.057v3.215c0,1.104,0.336,1.848,1.295,1.848c0.708,0,1.198-0.492,1.391-0.96
		c0.061-0.155,0.096-0.348,0.096-0.54v-3.562h1.057V201.084z"/>
	<path d="M63.858,198.434c0-0.6-0.012-1.092-0.048-1.57h0.936l0.061,0.959h0.023c0.288-0.553,0.959-1.092,1.919-1.092
		c0.803,0,2.051,0.479,2.051,2.472v3.466h-1.056v-3.346c0-0.937-0.348-1.717-1.343-1.717c-0.695,0-1.235,0.492-1.415,1.08
		c-0.048,0.133-0.072,0.312-0.072,0.491v3.49h-1.056V198.434z"/>
	<path d="M71.105,199.956c0.023,1.428,0.935,2.017,1.991,2.017c0.755,0,1.211-0.133,1.606-0.301l0.18,0.755
		c-0.371,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.131,2.723-3.131c1.895,0,2.399,1.668,2.399,2.734
		c0,0.217-0.024,0.385-0.036,0.491H71.105z M74.2,199.201c0.012-0.672-0.276-1.715-1.463-1.715c-1.067,0-1.535,0.982-1.619,1.715
		H74.2z"/>
	<path d="M35.71,216.852c-0.275,0.145-0.887,0.349-1.667,0.349c-1.751,0-2.891-1.199-2.891-2.976c0-1.787,1.224-3.082,3.119-3.082
		c0.624,0,1.175,0.156,1.463,0.301l-0.24,0.814c-0.252-0.144-0.646-0.275-1.223-0.275c-1.332,0-2.051,0.983-2.051,2.194
		c0,1.345,0.863,2.171,2.015,2.171c0.6,0,0.996-0.156,1.295-0.287L35.71,216.852z"/>
	<path d="M36.948,208.552h1.056v8.517h-1.056V208.552z"/>
	<path d="M40.368,214.355c0.024,1.429,0.936,2.017,1.991,2.017c0.755,0,1.211-0.132,1.606-0.3l0.181,0.755
		c-0.372,0.168-1.007,0.372-1.932,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.49H40.368L40.368,214.355z M43.462,213.602c0.013-0.672-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H43.462z"/>
	<path d="M49.87,215.676c0,0.504,0.024,0.996,0.096,1.393h-0.959l-0.084-0.731h-0.035c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.827-1.775-1.667c0-1.403,1.247-2.172,3.49-2.159v-0.119c0-0.479-0.132-1.344-1.319-1.344
		c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.694c0.48-0.312,1.176-0.517,1.907-0.517c1.775,0,2.207,1.211,2.207,2.374L49.87,215.676
		L49.87,215.676z M48.85,214.105c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.234-0.479,1.402-0.972c0.036-0.108,0.061-0.229,0.061-0.337L48.85,214.105L48.85,214.105z"/>
	<path d="M51.576,213.073c0-0.685-0.012-1.271-0.048-1.812h0.923l0.036,1.141h0.048c0.264-0.78,0.899-1.271,1.607-1.271
		c0.12,0,0.204,0.012,0.3,0.036v0.995c-0.108-0.023-0.216-0.036-0.36-0.036c-0.744,0-1.271,0.563-1.416,1.354
		c-0.023,0.145-0.048,0.312-0.048,0.492v3.094h-1.043L51.576,213.073L51.576,213.073z"/>
	<path d="M59.518,215.676c0,0.504,0.023,0.996,0.096,1.393h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.827-1.774-1.667c0-1.403,1.247-2.172,3.49-2.159v-0.119c0-0.479-0.133-1.344-1.319-1.344
		c-0.54,0-1.103,0.168-1.511,0.432l-0.24-0.694c0.479-0.312,1.176-0.517,1.907-0.517c1.774,0,2.207,1.211,2.207,2.374
		L59.518,215.676L59.518,215.676z M58.499,214.105c-1.15-0.024-2.459,0.18-2.459,1.307c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.235-0.479,1.403-0.972c0.036-0.108,0.06-0.229,0.06-0.337V214.105z"/>
	<path d="M61.224,212.834c0-0.6-0.013-1.092-0.049-1.57h0.937l0.06,0.959h0.024c0.288-0.553,0.959-1.092,1.919-1.092
		c0.803,0,2.051,0.479,2.051,2.471v3.467H65.11v-3.346c0-0.937-0.348-1.717-1.343-1.717c-0.695,0-1.235,0.492-1.415,1.08
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.489h-1.056V212.834z"/>
	<path d="M72.022,216.852c-0.276,0.145-0.889,0.349-1.667,0.349c-1.751,0-2.892-1.199-2.892-2.976c0-1.787,1.225-3.082,3.119-3.082
		c0.624,0,1.175,0.156,1.463,0.301l-0.239,0.814c-0.252-0.144-0.647-0.275-1.224-0.275c-1.332,0-2.051,0.983-2.051,2.194
		c0,1.345,0.864,2.171,2.015,2.171c0.601,0,0.996-0.156,1.295-0.287L72.022,216.852z"/>
	<path d="M73.776,214.355c0.023,1.429,0.935,2.017,1.991,2.017c0.755,0,1.211-0.132,1.606-0.3l0.181,0.755
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.49H73.776L73.776,214.355z M76.871,213.602c0.012-0.672-0.275-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H76.871z"/>
	<path d="M42.52,228.518c0,2.146-1.487,3.082-2.891,3.082c-1.57,0-2.782-1.151-2.782-2.986c0-1.942,1.271-3.082,2.878-3.082
		C41.393,225.53,42.52,226.741,42.52,228.518z M37.914,228.576c0,1.271,0.732,2.23,1.763,2.23c1.008,0,1.764-0.947,1.764-2.255
		c0-0.983-0.492-2.231-1.739-2.231S37.914,227.473,37.914,228.576z"/>
	<path d="M43.962,231.467v-5.001h-0.814v-0.804h0.814v-0.276c0-0.815,0.181-1.559,0.672-2.026c0.396-0.383,0.924-0.539,1.415-0.539
		c0.372,0,0.696,0.084,0.899,0.168l-0.144,0.814c-0.156-0.07-0.372-0.132-0.672-0.132c-0.898,0-1.127,0.792-1.127,1.681v0.312h1.403
		v0.804h-1.403v5.001L43.962,231.467L43.962,231.467z"/>
	<path d="M50.31,225.662l1.14,3.262c0.192,0.528,0.348,1.008,0.468,1.487h0.036c0.132-0.479,0.3-0.959,0.492-1.487l1.127-3.262
		h1.104l-2.278,5.805H51.39l-2.207-5.805H50.31z"/>
	<path d="M56.85,224.031c0.012,0.359-0.252,0.646-0.671,0.646c-0.372,0-0.637-0.287-0.637-0.646c0-0.372,0.276-0.66,0.66-0.66
		C56.598,223.371,56.85,223.659,56.85,224.031z M55.674,231.467v-5.805h1.057v5.805H55.674z"/>
	<path d="M58.482,227.473c0-0.684-0.012-1.271-0.048-1.811h0.923l0.036,1.14h0.048c0.264-0.78,0.898-1.271,1.606-1.271
		c0.12,0,0.204,0.012,0.301,0.035v0.996c-0.108-0.024-0.217-0.037-0.36-0.037c-0.744,0-1.271,0.563-1.416,1.355
		c-0.024,0.145-0.048,0.312-0.048,0.491v3.095h-1.043L58.482,227.473L58.482,227.473z"/>
	<path d="M66.424,230.075c0,0.504,0.024,0.995,0.097,1.392h-0.959l-0.084-0.73H65.44c-0.324,0.455-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.668c0-1.402,1.247-2.171,3.489-2.158v-0.119c0-0.48-0.132-1.344-1.318-1.344
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.176-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.373V230.075z
		 M65.405,228.505c-1.151-0.024-2.459,0.181-2.459,1.308c0,0.684,0.456,1.008,0.996,1.008c0.755,0,1.234-0.479,1.403-0.973
		c0.035-0.106,0.06-0.228,0.06-0.336V228.505z"/>
	<path d="M68.13,222.951h1.057v8.516H68.13V222.951z"/>
	<path d="M26.699,245.65c-0.276,0.145-0.888,0.349-1.667,0.349c-1.751,0-2.891-1.199-2.891-2.976c0-1.787,1.224-3.082,3.118-3.082
		c0.624,0,1.176,0.156,1.464,0.301l-0.24,0.814c-0.252-0.144-0.647-0.274-1.224-0.274c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.344,0.864,2.17,2.016,2.17c0.6,0,0.996-0.155,1.295-0.287L26.699,245.65z"/>
	<path d="M28.537,240.062l1.271,3.431c0.132,0.384,0.275,0.84,0.372,1.188h0.023c0.108-0.349,0.229-0.791,0.372-1.212l1.151-3.405
		h1.114l-1.583,4.138c-0.756,1.991-1.271,3.011-1.99,3.634c-0.517,0.456-1.031,0.637-1.295,0.684l-0.265-0.888
		c0.265-0.084,0.612-0.252,0.924-0.516c0.288-0.228,0.647-0.636,0.888-1.175c0.048-0.108,0.084-0.192,0.084-0.252
		c0-0.062-0.024-0.146-0.072-0.276l-2.147-5.349h1.152V240.062z"/>
	<path d="M35.076,238.671v1.392h1.511v0.805h-1.511v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.791c-0.204,0.084-0.528,0.156-0.937,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.827-0.408-1.511v-3.166
		h-0.898v-0.805h0.898v-1.066L35.076,238.671z"/>
	<path d="M42.958,242.917c0,2.146-1.486,3.082-2.89,3.082c-1.571,0-2.783-1.151-2.783-2.985c0-1.943,1.271-3.082,2.878-3.082
		C41.831,239.932,42.958,241.143,42.958,242.917z M38.352,242.977c0,1.271,0.731,2.231,1.763,2.231c1.007,0,1.763-0.948,1.763-2.255
		c0-0.983-0.491-2.23-1.738-2.23S38.352,241.873,38.352,242.977z"/>
	<path d="M44.292,241.957c0-0.743-0.023-1.343-0.048-1.895h0.947l0.048,0.994h0.024c0.432-0.707,1.114-1.127,2.062-1.127
		c1.403,0,2.459,1.188,2.459,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.769,0-1.439-0.336-1.787-0.911h-0.024v3.154h-1.043V241.957z
		 M45.336,243.505c0,0.155,0.024,0.3,0.048,0.433c0.192,0.73,0.828,1.234,1.583,1.234c1.115,0,1.764-0.912,1.764-2.242
		c0-1.164-0.611-2.16-1.728-2.16c-0.72,0-1.391,0.518-1.595,1.309c-0.036,0.132-0.072,0.288-0.072,0.432V243.505z"/>
	<path d="M55.198,244.477c0,0.504,0.024,0.996,0.096,1.392h-0.959l-0.084-0.731h-0.036C53.891,245.593,53.268,246,52.44,246
		c-1.175,0-1.775-0.827-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.479-0.132-1.344-1.319-1.344
		c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.694c0.48-0.312,1.175-0.517,1.907-0.517c1.775,0,2.207,1.211,2.207,2.375L55.198,244.477
		L55.198,244.477z M54.178,242.905c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.685,0.455,1.008,0.995,1.008
		c0.756,0,1.235-0.479,1.403-0.972c0.036-0.107,0.061-0.229,0.061-0.336L54.178,242.905L54.178,242.905z"/>
	<path d="M58.127,238.671v1.392h1.512v0.805h-1.512v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.791C59.374,245.928,59.05,246,58.642,246c-0.492,0-0.889-0.168-1.141-0.456c-0.3-0.312-0.407-0.827-0.407-1.511v-3.166
		h-0.899v-0.805h0.899v-1.066L58.127,238.671z"/>
	<path d="M60.827,237.352h1.056v3.623h0.024c0.168-0.301,0.432-0.563,0.755-0.744c0.312-0.18,0.685-0.299,1.08-0.299
		c0.779,0,2.027,0.479,2.027,2.481v3.454h-1.057v-3.334c0-0.936-0.348-1.729-1.343-1.729c-0.684,0-1.223,0.48-1.415,1.057
		c-0.06,0.144-0.072,0.3-0.072,0.504v3.502h-1.056V237.352z"/>
	<path d="M68.663,238.432c0.012,0.359-0.252,0.647-0.671,0.647c-0.372,0-0.636-0.288-0.636-0.647c0-0.371,0.275-0.66,0.66-0.66
		C68.411,237.771,68.663,238.061,68.663,238.432z M67.487,245.867v-5.805h1.056v5.805H67.487z"/>
	<path d="M74.434,245.65c-0.276,0.145-0.888,0.349-1.667,0.349c-1.751,0-2.892-1.199-2.892-2.976c0-1.787,1.225-3.082,3.119-3.082
		c0.624,0,1.175,0.156,1.463,0.301l-0.24,0.814c-0.252-0.144-0.646-0.274-1.223-0.274c-1.332,0-2.051,0.983-2.051,2.194
		c0,1.344,0.864,2.17,2.015,2.17c0.601,0,0.996-0.155,1.295-0.287L74.434,245.65z"/>
	<path d="M76.847,238.432c0.012,0.359-0.252,0.647-0.672,0.647c-0.371,0-0.636-0.288-0.636-0.647c0-0.371,0.276-0.66,0.66-0.66
		C76.595,237.771,76.847,238.061,76.847,238.432z M75.672,245.867v-5.805h1.057v5.805H75.672z"/>
	<path d="M79.751,238.671v1.392h1.512v0.805h-1.512v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.791c-0.204,0.084-0.528,0.156-0.936,0.156c-0.492,0-0.889-0.168-1.141-0.456c-0.3-0.312-0.408-0.827-0.408-1.511v-3.166
		H77.82v-0.805h0.899v-1.066L79.751,238.671z"/>
	<path d="M82.943,240.062l1.271,3.431c0.133,0.384,0.276,0.84,0.372,1.188h0.024c0.107-0.349,0.228-0.791,0.372-1.212l1.15-3.405
		h1.115l-1.583,4.138c-0.756,1.991-1.271,3.011-1.991,3.634c-0.516,0.456-1.03,0.637-1.295,0.684l-0.264-0.888
		c0.264-0.084,0.612-0.252,0.924-0.516c0.288-0.228,0.647-0.636,0.887-1.175c0.049-0.108,0.085-0.192,0.085-0.252
		c0-0.062-0.024-0.146-0.072-0.276l-2.147-5.349h1.152V240.062z"/>
</g>
<g>
	<path d="M153.989,221.695l1.14,3.262c0.192,0.527,0.349,1.008,0.469,1.486h0.035c0.133-0.479,0.301-0.959,0.492-1.486l1.127-3.262
		h1.104l-2.279,5.805h-1.007l-2.207-5.805H153.989z"/>
</g>
</svg>
</window>