Location: Qu, Maclellan, Weiss, 2003 @ 48e4f83ba03d / qu_2003a.xul

Author:
Catherine Lloyd <c.lloyd@auckland.ac.nz>
Date:
2010-07-05 22:22:47+12:00
Desc:
Made some very minor changes to the documentation.
Permanent Source URI:
https://models.cellml.org/workspace/qu_maclellan_weiss_2003/rawfile/48e4f83ba03d62531af101991ccda0d0c6bb504e/qu_2003a.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 =
  {

			
	cyclin: {
		id: "cyclin",
		y: "cyclin/cyclin",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#ff9900",
		linestyle: "none"
	},

	CDK: {
		id: "CDK",
		y: "CDK/CDK",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#ff00cc",
		linestyle: "none"
	},

	cyclin_CDK_active: {
		id: "cyclin_CDK_active",
		y: "cyclin_CDK_active/cyclin_CDK_active",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#cc00ff",
		linestyle: "none"
	},


	cyclin_CDK_inactive: {
		id: "cyclin_CDK_inactive",
		y: "cyclin_CDK_inactive/cyclin_CDK_inactive",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#3300ff",
		linestyle: "none"
	},


	Cdc25: {
		id: "Cdc25",
		y: "Cdc25/Cdc25",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#66ff66",
		linestyle: "none"
	},


	CKl: {
		id: "CKl",
		y: "CKI/CKI",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#66ff66",
		linestyle: "none"
	},


	cyclin_CDK_CKl: {
		id: "cyclin_CDK_CKl",
		y: "cyclin_CDK_CKI/cyclin_CDK_CKI",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#66ff66",
		linestyle: "none"
	},


	cyclin_CDK_CKl_P: {
		id: "cyclin_CDK_CKl_P",
		y: "cyclin_CDK_CKI_P/cyclin_CDK_CKI_P",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#66ff66",
		linestyle: "none"
	},


	wee1: {
		id: "wee1",
		y: "wee1/wee1",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		colour: "#66ff66",
		linestyle: "none"
	},


	Cdc25_2P: {
		id: "Cdc25_2P",
		y: "Cdc25_2P/Cdc25_2P",
		x: "environment/time",
		graph: "Graph of protein concentrations",
		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 id="cyclin">
	
		<radialGradient id="cyclin_path1_1_" cx="165.533" cy="1125.5098" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C0FF6C"/>
		<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
		<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
		<stop  offset="0.66" style="stop-color:#B4FA6B"/>
		<stop  offset="0.7448" style="stop-color:#AAF76A"/>
		<stop  offset="0.8174" style="stop-color:#9EF269"/>
		<stop  offset="0.8817" style="stop-color:#91EC68"/>
		<stop  offset="0.9398" style="stop-color:#86E666"/>
		<stop  offset="0.9915" style="stop-color:#7EDE64"/>
		<stop  offset="1" style="stop-color:#7DDD64"/>
	</radialGradient>
	<path id="cyclin_path1" fill="url(#cyclin_path1_1_)" stroke="#000000" d="M257.396,27.024c0,5.786-11.338,10.478-25.314,10.478
		c-13.981,0-25.315-4.689-25.315-10.478s11.334-10.476,25.315-10.476C246.058,16.549,257.396,21.237,257.396,27.024z"/>
	<g>
		<path d="M225.078,29.74c-0.319,0.16-0.959,0.33-1.779,0.33c-1.897,0-3.327-1.209-3.327-3.418c0-2.109,1.43-3.538,3.519-3.538
			c0.84,0,1.369,0.18,1.599,0.3l-0.209,0.709c-0.33-0.16-0.8-0.28-1.358-0.28c-1.579,0-2.629,1.009-2.629,2.778
			c0,1.649,0.948,2.708,2.589,2.708c0.528,0,1.068-0.11,1.419-0.28L225.078,29.74z"/>
		<path d="M226.261,25.123l1.059,2.858c0.11,0.32,0.229,0.7,0.311,0.99h0.021c0.09-0.29,0.189-0.66,0.31-1.01l0.96-2.838h0.931
			l-1.319,3.448c-0.63,1.659-1.06,2.508-1.659,3.028c-0.43,0.38-0.858,0.53-1.079,0.57l-0.221-0.74c0.221-0.07,0.51-0.21,0.771-0.43
			c0.239-0.19,0.539-0.53,0.739-0.979c0.04-0.09,0.069-0.16,0.069-0.21c0-0.05-0.021-0.12-0.061-0.23l-1.788-4.458L226.261,25.123
			L226.261,25.123z"/>
		<path d="M233.999,29.78c-0.229,0.12-0.739,0.29-1.39,0.29c-1.459,0-2.408-1-2.408-2.479c0-1.489,1.021-2.569,2.599-2.569
			c0.521,0,0.979,0.13,1.22,0.25l-0.199,0.68c-0.21-0.12-0.54-0.23-1.021-0.23c-1.108,0-1.709,0.82-1.709,1.829
			c0,1.12,0.721,1.809,1.68,1.809c0.5,0,0.83-0.13,1.079-0.24L233.999,29.78z"/>
		<path d="M235.031,22.864h0.88v7.096h-0.88V22.864z"/>
		<path d="M238.37,23.763c0.01,0.3-0.21,0.54-0.56,0.54c-0.311,0-0.529-0.24-0.529-0.54c0-0.31,0.229-0.549,0.549-0.549
			C238.16,23.214,238.37,23.454,238.37,23.763z M237.391,29.96v-4.837h0.88v4.837H237.391z"/>
		<path d="M239.73,26.432c0-0.5-0.01-0.91-0.04-1.31h0.779l0.051,0.8h0.02c0.24-0.46,0.8-0.91,1.601-0.91
			c0.669,0,1.709,0.4,1.709,2.059v2.888h-0.88V27.17c0-0.779-0.29-1.429-1.119-1.429c-0.58,0-1.029,0.41-1.181,0.899
			c-0.04,0.11-0.06,0.26-0.06,0.41v2.908h-0.88V26.432L239.73,26.432z"/>
	</g>
</g>
<g id="CDK">
	
		<radialGradient id="CDK_path1_1_" cx="105.6287" cy="118.1587" r="16.6904" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FFDD9E"/>
		<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
		<stop  offset="0.4343" style="stop-color:#FFD297"/>
		<stop  offset="0.545" style="stop-color:#FCC58E"/>
		<stop  offset="0.6392" style="stop-color:#F9B180"/>
		<stop  offset="0.7229" style="stop-color:#F69971"/>
		<stop  offset="0.799" style="stop-color:#F37B5C"/>
		<stop  offset="0.8695" style="stop-color:#F05B45"/>
		<stop  offset="0.9348" style="stop-color:#EE392D"/>
		<stop  offset="0.9951" style="stop-color:#EC2224"/>
		<stop  offset="1" style="stop-color:#EC2224"/>
	</radialGradient>
	<path id="CDK_path1" fill="url(#CDK_path1_1_)" stroke="#000000" d="M244.483,70.236l8.24,7.043l-7.394,6.469
		c-3.332,3.045-8.971,5.047-15.367,5.047c-10.229,0-18.526-5.127-18.526-11.443c0-6.326,8.295-11.447,18.526-11.447
		C235.845,65.902,241.089,67.596,244.483,70.236z"/>
	<g>
		<path d="M228.606,80.065c-0.319,0.16-0.959,0.33-1.779,0.33c-1.897,0-3.328-1.21-3.328-3.419c0-2.108,1.431-3.538,3.52-3.538
			c0.84,0,1.369,0.181,1.599,0.3l-0.209,0.71c-0.33-0.16-0.8-0.279-1.359-0.279c-1.578,0-2.629,1.009-2.629,2.778
			c0,1.648,0.949,2.708,2.589,2.708c0.529,0,1.069-0.109,1.42-0.279L228.606,80.065z"/>
		<path d="M229.699,73.639c0.529-0.08,1.159-0.14,1.849-0.14c1.249,0,2.14,0.29,2.729,0.84c0.6,0.549,0.949,1.329,0.949,2.418
			c0,1.1-0.34,1.999-0.97,2.619c-0.63,0.629-1.669,0.969-2.979,0.969c-0.62,0-1.14-0.029-1.579-0.079V73.639L229.699,73.639z
			 M230.568,79.596c0.22,0.04,0.54,0.05,0.88,0.05c1.858,0,2.868-1.039,2.868-2.858c0.01-1.589-0.891-2.599-2.729-2.599
			c-0.448,0-0.789,0.04-1.02,0.09L230.568,79.596L230.568,79.596z"/>
		<path d="M236.359,73.549h0.869v3.248h0.029c0.181-0.26,0.359-0.5,0.529-0.72l2.061-2.528h1.078l-2.438,2.858l2.627,3.878h-1.029
			l-2.218-3.309l-0.64,0.74v2.568h-0.869V73.549L236.359,73.549z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_2_" cx="208.8552" cy="1108.918" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C0FF6C"/>
		<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
		<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
		<stop  offset="0.66" style="stop-color:#B4FA6B"/>
		<stop  offset="0.7448" style="stop-color:#AAF76A"/>
		<stop  offset="0.8174" style="stop-color:#9EF269"/>
		<stop  offset="0.8817" style="stop-color:#91EC68"/>
		<stop  offset="0.9398" style="stop-color:#86E666"/>
		<stop  offset="0.9915" style="stop-color:#7EDE64"/>
		<stop  offset="1" style="stop-color:#7DDD64"/>
	</radialGradient>
	<path id="path16609_1_" fill="url(#path16609_2_)" stroke="#000000" d="M326.422,37.573c0,5.786-11.338,10.478-25.313,10.478
		c-13.982,0-25.316-4.689-25.316-10.478c0-5.789,11.334-10.476,25.316-10.476C315.084,27.099,326.422,31.786,326.422,37.573z"/>
	<g>
		<path d="M296.656,33.773v3.988c0,1.509,0.67,2.149,1.568,2.149c0.999,0,1.64-0.66,1.64-2.149v-3.988h0.88v3.928
			c0,2.069-1.089,2.918-2.549,2.918c-1.379,0-2.418-0.79-2.418-2.878v-3.968H296.656z"/>
		<path d="M302.226,33.414h0.869v3.039h0.021c0.31-0.54,0.869-0.89,1.648-0.89c1.199,0,2.05,1,2.038,2.469
			c0,1.729-1.089,2.588-2.168,2.588c-0.7,0-1.26-0.27-1.619-0.91h-0.029l-0.04,0.8h-0.761c0.021-0.33,0.04-0.819,0.04-1.25V33.414
			L302.226,33.414z M303.095,38.571c0,0.11,0.021,0.22,0.04,0.32c0.17,0.61,0.681,1.029,1.319,1.029c0.92,0,1.47-0.75,1.47-1.859
			c0-0.969-0.5-1.799-1.438-1.799c-0.601,0-1.159,0.41-1.339,1.079c-0.021,0.1-0.052,0.22-0.052,0.36V38.571L303.095,38.571z"/>
	</g>
</g>
<g id="wee1">
	
		<radialGradient id="wee1_path1_1_" cx="186.1199" cy="232.7529" r="16.6904" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FFDD9E"/>
		<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
		<stop  offset="0.4343" style="stop-color:#FFD297"/>
		<stop  offset="0.545" style="stop-color:#FCC58E"/>
		<stop  offset="0.6392" style="stop-color:#F9B180"/>
		<stop  offset="0.7229" style="stop-color:#F69971"/>
		<stop  offset="0.799" style="stop-color:#F37B5C"/>
		<stop  offset="0.8695" style="stop-color:#F05B45"/>
		<stop  offset="0.9348" style="stop-color:#EE392D"/>
		<stop  offset="0.9951" style="stop-color:#EC2224"/>
		<stop  offset="1" style="stop-color:#EC2224"/>
	</radialGradient>
	<path id="wee1_path1" fill="url(#wee1_path1_1_)" stroke="#000000" d="M324.974,184.83l8.24,7.043l-7.393,6.469
		c-3.332,3.045-8.972,5.047-15.367,5.047c-10.23,0-18.527-5.127-18.527-11.443c0-6.326,8.295-11.447,18.527-11.447
		C316.336,180.496,321.58,182.189,324.974,184.83z"/>
	<g>
		<path d="M302.789,194.879l-1.709-6.736H302l0.799,3.408c0.201,0.84,0.381,1.679,0.5,2.329h0.021c0.11-0.67,0.319-1.47,0.551-2.339
			l0.897-3.398h0.91l0.82,3.418c0.189,0.8,0.369,1.6,0.469,2.309h0.021c0.141-0.739,0.33-1.489,0.541-2.328l0.889-3.398h0.889
			l-1.907,6.736h-0.91l-0.851-3.508c-0.209-0.859-0.35-1.52-0.438-2.199h-0.021c-0.119,0.67-0.27,1.329-0.52,2.199l-0.959,3.508
			L302.789,194.879L302.789,194.879z"/>
		<path d="M310.279,192.62c0.02,1.189,0.778,1.679,1.66,1.679c0.629,0,1.008-0.109,1.338-0.249l0.149,0.629
			c-0.311,0.141-0.84,0.311-1.608,0.311c-1.488,0-2.379-0.99-2.379-2.449s0.858-2.608,2.27-2.608c1.578,0,1.998,1.39,1.998,2.278
			c0,0.181-0.021,0.32-0.029,0.41L310.279,192.62L310.279,192.62z M312.857,191.99c0.01-0.56-0.229-1.429-1.22-1.429
			c-0.889,0-1.278,0.819-1.35,1.429H312.857z"/>
		<path d="M315.289,192.62c0.02,1.189,0.779,1.679,1.66,1.679c0.629,0,1.008-0.109,1.338-0.249l0.15,0.629
			c-0.312,0.141-0.841,0.311-1.609,0.311c-1.488,0-2.379-0.99-2.379-2.449s0.858-2.608,2.27-2.608c1.578,0,1.998,1.39,1.998,2.278
			c0,0.181-0.02,0.32-0.029,0.41L315.289,192.62L315.289,192.62z M317.867,191.99c0.01-0.56-0.229-1.429-1.219-1.429
			c-0.89,0-1.279,0.819-1.351,1.429H317.867z"/>
		<path d="M321.437,189.202h-0.02l-1.129,0.609l-0.17-0.67l1.42-0.759h0.748v6.496h-0.851L321.437,189.202L321.437,189.202z"/>
	</g>
</g>
<g id="Wee1_P">
	<g>
		<path id="Wee1_P_path2" fill="#FFFF00" stroke="#000000" d="M433.86,204.093c0,2.681-2.098,4.854-4.682,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853C431.763,199.241,433.86,201.414,433.86,204.093z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M427.725,201.146c0.321-0.063,0.743-0.111,1.279-0.111c0.659,0,1.143,0.159,1.448,0.444
				c0.283,0.254,0.459,0.643,0.459,1.119c0,0.483-0.138,0.864-0.406,1.143c-0.352,0.389-0.926,0.587-1.578,0.587
				c-0.199,0-0.383-0.008-0.535-0.048v2.143h-0.667V201.146z M428.392,203.717c0.146,0.04,0.336,0.056,0.552,0.056
				c0.812,0,1.295-0.412,1.295-1.135c0-0.714-0.482-1.055-1.22-1.055c-0.29,0-0.513,0.031-0.627,0.056V203.717z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="Wee1_P_path1_1_" cx="289.1199" cy="232.7529" r="16.6904" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="Wee1_P_path1" fill="url(#Wee1_P_path1_1_)" stroke="#000000" d="M427.974,184.83l8.24,7.043l-7.393,6.469
			c-3.332,3.045-8.972,5.047-15.367,5.047c-10.23,0-18.527-5.127-18.527-11.443c0-6.326,8.295-11.447,18.527-11.447
			C419.336,180.496,424.58,182.189,427.974,184.83z"/>
		<g>
			<path d="M405.789,194.878l-1.709-6.736H405l0.799,3.408c0.201,0.84,0.381,1.679,0.5,2.329h0.021
				c0.11-0.67,0.319-1.47,0.551-2.339l0.897-3.398h0.91l0.82,3.418c0.189,0.8,0.369,1.6,0.469,2.309h0.021
				c0.141-0.739,0.33-1.489,0.541-2.328l0.889-3.398h0.889l-1.907,6.736h-0.91l-0.851-3.508c-0.209-0.859-0.35-1.52-0.438-2.199
				h-0.021c-0.119,0.67-0.27,1.329-0.52,2.199l-0.959,3.508L405.789,194.878L405.789,194.878z"/>
			<path d="M413.279,192.619c0.02,1.189,0.778,1.679,1.66,1.679c0.629,0,1.008-0.109,1.338-0.249l0.149,0.629
				c-0.311,0.141-0.84,0.312-1.608,0.312c-1.488,0-2.379-0.99-2.379-2.449s0.858-2.608,2.27-2.608c1.578,0,1.998,1.39,1.998,2.278
				c0,0.181-0.021,0.32-0.029,0.41L413.279,192.619L413.279,192.619z M415.857,191.989c0.01-0.56-0.229-1.429-1.22-1.429
				c-0.889,0-1.278,0.819-1.35,1.429H415.857z"/>
			<path d="M418.289,192.619c0.02,1.189,0.779,1.679,1.66,1.679c0.629,0,1.008-0.109,1.338-0.249l0.15,0.629
				c-0.312,0.141-0.841,0.312-1.609,0.312c-1.488,0-2.379-0.99-2.379-2.449s0.858-2.608,2.27-2.608c1.578,0,1.998,1.39,1.998,2.278
				c0,0.181-0.02,0.32-0.029,0.41L418.289,192.619L418.289,192.619z M420.867,191.989c0.01-0.56-0.229-1.429-1.219-1.429
				c-0.89,0-1.279,0.819-1.351,1.429H420.867z"/>
			<path d="M424.437,189.201h-0.02l-1.129,0.609l-0.17-0.67l1.42-0.759h0.748v6.496h-0.851L424.437,189.201L424.437,189.201z"/>
		</g>
	</g>
</g>
<g id="Cdc25">
	<g id="g8433_1_">
		
			<radialGradient id="Cdc25_path1_1_" cx="114.7507" cy="481.0215" r="12.0531" gradientTransform="matrix(-1.5879 0 0 -1.1269 226.8578 734.3109)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.3652" style="stop-color:#ADDFE8"/>
			<stop  offset="0.5444" style="stop-color:#ABDEEC"/>
			<stop  offset="0.6833" style="stop-color:#A1DCF1"/>
			<stop  offset="0.8013" style="stop-color:#9AD1F1"/>
			<stop  offset="0.905" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="Cdc25_path1" fill="url(#Cdc25_path1_1_)" stroke="#000000" d="M22.405,186.259c4.487-2.701,11.831-4.724,20.266-4.724
			c13.5,0,24.439,4.795,24.439,10.712c0,5.919-10.939,10.714-24.439,10.714c-7.758,0-16.018-2.485-20.494-4.956l7.344-5.92
			L22.405,186.259z"/>
	</g>
	<g enable-background="new    ">
		<path d="M37.011,194.974c-0.311,0.16-0.96,0.32-1.779,0.32c-1.899,0-3.318-1.2-3.318-3.419c0-2.118,1.429-3.538,3.519-3.538
			c0.83,0,1.368,0.181,1.599,0.3l-0.22,0.71c-0.32-0.16-0.79-0.279-1.351-0.279c-1.579,0-2.628,1.009-2.628,2.778
			c0,1.659,0.95,2.708,2.579,2.708c0.54,0,1.08-0.109,1.429-0.279L37.011,194.974z"/>
		<path d="M42.261,188.088v5.847c0,0.43,0.01,0.919,0.039,1.249h-0.789l-0.04-0.84h-0.021c-0.27,0.54-0.85,0.95-1.639,0.95
			c-1.169,0-2.079-0.99-2.079-2.459c-0.01-1.619,1-2.599,2.169-2.599c0.75,0,1.249,0.35,1.459,0.729h0.02v-2.878L42.261,188.088
			L42.261,188.088z M41.381,192.315c0-0.12-0.01-0.26-0.04-0.38c-0.13-0.55-0.609-1.01-1.269-1.01c-0.91,0-1.449,0.8-1.449,1.859
			c0,0.989,0.489,1.799,1.429,1.799c0.59,0,1.13-0.399,1.289-1.05c0.03-0.119,0.04-0.239,0.04-0.38V192.315z"/>
		<path d="M47.171,195.014c-0.229,0.11-0.739,0.28-1.389,0.28c-1.459,0-2.409-0.99-2.409-2.479c0-1.488,1.021-2.578,2.6-2.578
			c0.52,0,0.979,0.13,1.219,0.26l-0.2,0.67c-0.209-0.11-0.54-0.23-1.019-0.23c-1.109,0-1.709,0.83-1.709,1.84
			c0,1.119,0.719,1.809,1.679,1.809c0.5,0,0.83-0.12,1.08-0.229L47.171,195.014z"/>
		<path d="M47.923,195.184v-0.54l0.689-0.669c1.659-1.579,2.419-2.419,2.419-3.398c0-0.66-0.31-1.27-1.279-1.27
			c-0.59,0-1.08,0.3-1.379,0.55l-0.28-0.619c0.44-0.37,1.09-0.66,1.84-0.66c1.389,0,1.979,0.96,1.979,1.889
			c0,1.2-0.87,2.169-2.239,3.488l-0.51,0.479v0.021h2.909v0.729H47.923z"/>
		<path d="M56.931,189.427h-2.479l-0.25,1.649c0.15-0.021,0.29-0.04,0.53-0.04c0.51,0,1,0.109,1.398,0.35
			c0.511,0.28,0.931,0.85,0.931,1.689c0,1.269-1.01,2.219-2.418,2.219c-0.71,0-1.299-0.2-1.619-0.4l0.22-0.669
			c0.271,0.159,0.8,0.359,1.399,0.359c0.818,0,1.539-0.54,1.528-1.419c0-0.86-0.568-1.449-1.858-1.449
			c-0.38,0-0.669,0.029-0.909,0.069l0.419-3.098h3.108V189.427z"/>
	</g>
</g>
<g id="Cdc25_2P">
	<g id="g2886_1_">
		<g id="g8433_2_">
			
				<radialGradient id="Cdc25_2P_path6_1_" cx="44.2053" cy="480.959" r="12.0528" gradientTransform="matrix(-1.5879 0 0 -1.1269 226.8578 734.3109)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#AEDFE7"/>
				<stop  offset="0.3652" style="stop-color:#ADDFE8"/>
				<stop  offset="0.5444" style="stop-color:#ABDEEC"/>
				<stop  offset="0.6833" style="stop-color:#A1DCF1"/>
				<stop  offset="0.8013" style="stop-color:#9AD1F1"/>
				<stop  offset="0.905" style="stop-color:#95BAE2"/>
				<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
				<stop  offset="1" style="stop-color:#8FAEDA"/>
			</radialGradient>
			<path id="Cdc25_2P_path6" fill="url(#Cdc25_2P_path6_1_)" stroke="#000000" d="M134.424,186.329
				c4.487-2.701,11.831-4.724,20.267-4.724c13.5,0,24.438,4.795,24.438,10.712c0,5.919-10.938,10.714-24.438,10.714
				c-7.758,0-16.019-2.485-20.494-4.956l7.343-5.92L134.424,186.329z"/>
		</g>
		<g enable-background="new    ">
			<path d="M149.029,195.044c-0.31,0.16-0.959,0.32-1.779,0.32c-1.898,0-3.317-1.2-3.317-3.419c0-2.118,1.429-3.538,3.518-3.538
				c0.83,0,1.369,0.181,1.599,0.3l-0.22,0.71c-0.32-0.16-0.79-0.279-1.35-0.279c-1.579,0-2.628,1.009-2.628,2.778
				c0,1.659,0.949,2.708,2.579,2.708c0.54,0,1.079-0.109,1.429-0.279L149.029,195.044z"/>
			<path d="M154.279,188.158v5.847c0,0.43,0.01,0.919,0.04,1.249h-0.79l-0.04-0.84h-0.02c-0.271,0.54-0.851,0.95-1.64,0.95
				c-1.169,0-2.079-0.99-2.079-2.459c-0.01-1.619,1-2.599,2.169-2.599c0.75,0,1.249,0.35,1.459,0.729h0.021v-2.878L154.279,188.158
				L154.279,188.158z M153.4,192.386c0-0.12-0.01-0.26-0.04-0.38c-0.13-0.55-0.61-1.01-1.27-1.01c-0.909,0-1.448,0.8-1.448,1.859
				c0,0.989,0.488,1.799,1.429,1.799c0.589,0,1.129-0.399,1.289-1.05c0.03-0.119,0.04-0.239,0.04-0.38V192.386z"/>
			<path d="M159.19,195.084c-0.23,0.11-0.74,0.28-1.39,0.28c-1.459,0-2.408-0.99-2.408-2.479c0-1.488,1.02-2.578,2.599-2.578
				c0.521,0,0.979,0.13,1.219,0.26l-0.2,0.67c-0.209-0.11-0.539-0.23-1.019-0.23c-1.109,0-1.709,0.83-1.709,1.84
				c0,1.119,0.719,1.809,1.679,1.809c0.5,0,0.83-0.12,1.08-0.229L159.19,195.084z"/>
			<path d="M159.942,195.254v-0.54l0.688-0.669c1.659-1.579,2.419-2.419,2.419-3.398c0-0.66-0.31-1.27-1.278-1.27
				c-0.59,0-1.08,0.3-1.379,0.55l-0.28-0.619c0.439-0.37,1.089-0.66,1.839-0.66c1.389,0,1.979,0.96,1.979,1.889
				c0,1.2-0.87,2.169-2.239,3.488l-0.51,0.479v0.021h2.908v0.729H159.942z"/>
			<path d="M168.95,189.497h-2.479l-0.25,1.649c0.149-0.021,0.289-0.04,0.529-0.04c0.51,0,1,0.109,1.399,0.35
				c0.51,0.28,0.93,0.85,0.93,1.689c0,1.269-1.009,2.219-2.418,2.219c-0.71,0-1.299-0.2-1.619-0.4l0.221-0.669
				c0.27,0.159,0.8,0.359,1.398,0.359c0.819,0,1.539-0.54,1.529-1.419c0-0.86-0.569-1.449-1.859-1.449
				c-0.38,0-0.669,0.029-0.909,0.069l0.419-3.098h3.108V189.497L168.95,189.497z"/>
		</g>
	</g>
	<g>
		<path id="Cdc25_2P_path5" fill="#FFFF00" stroke="#000000" d="M170.68,207.321c0,2.681-2.098,4.854-4.682,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853C168.583,202.469,170.68,204.642,170.68,207.321z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M164.545,204.375c0.322-0.063,0.743-0.111,1.279-0.111c0.659,0,1.141,0.159,1.448,0.444
				c0.283,0.254,0.459,0.643,0.459,1.119c0,0.483-0.139,0.864-0.406,1.143c-0.353,0.389-0.927,0.587-1.578,0.587
				c-0.199,0-0.383-0.008-0.536-0.048v2.143h-0.667L164.545,204.375L164.545,204.375z M165.212,206.945
				c0.146,0.04,0.337,0.056,0.553,0.056c0.812,0,1.294-0.412,1.294-1.135c0-0.714-0.483-1.055-1.219-1.055
				c-0.291,0-0.513,0.031-0.628,0.056V206.945z"/>
		</g>
	</g>
	<g>
		<path id="Cdc25_2P_path4" fill="#FFFF00" stroke="#000000" d="M147.84,206.321c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853C145.744,201.469,147.84,203.642,147.84,206.321z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M141.706,203.375c0.322-0.063,0.743-0.111,1.279-0.111c0.659,0,1.141,0.159,1.448,0.444
				c0.282,0.254,0.459,0.643,0.459,1.119c0,0.483-0.139,0.864-0.406,1.143c-0.354,0.389-0.927,0.587-1.578,0.587
				c-0.199,0-0.383-0.008-0.536-0.048v2.143h-0.667L141.706,203.375L141.706,203.375z M142.372,205.945
				c0.146,0.04,0.337,0.056,0.552,0.056c0.812,0,1.294-0.412,1.294-1.135c0-0.714-0.482-1.055-1.218-1.055
				c-0.291,0-0.513,0.031-0.628,0.056V205.945z"/>
		</g>
	</g>
	<g>
		<path id="Cdc25_2P_path3" fill="#FFFF00" stroke="#000000" d="M170.68,177.321c0,2.681-2.098,4.854-4.682,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853C168.583,172.469,170.68,174.642,170.68,177.321z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M164.545,174.375c0.322-0.063,0.743-0.111,1.279-0.111c0.659,0,1.141,0.159,1.448,0.444
				c0.283,0.254,0.459,0.643,0.459,1.119c0,0.483-0.139,0.864-0.406,1.143c-0.353,0.389-0.927,0.587-1.578,0.587
				c-0.199,0-0.383-0.008-0.536-0.048v2.143h-0.667L164.545,174.375L164.545,174.375z M165.212,176.945
				c0.146,0.04,0.337,0.056,0.553,0.056c0.812,0,1.294-0.412,1.294-1.135c0-0.714-0.483-1.055-1.219-1.055
				c-0.291,0-0.513,0.031-0.628,0.056V176.945z"/>
		</g>
	</g>
	<g>
		<path id="Cdc25_2P_path2" fill="#FFFF00" stroke="#000000" d="M147.84,177.174c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853S147.84,174.494,147.84,177.174z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M141.706,174.228c0.322-0.063,0.743-0.111,1.279-0.111c0.659,0,1.141,0.159,1.448,0.444
				c0.282,0.254,0.459,0.643,0.459,1.119c0,0.483-0.139,0.864-0.406,1.143c-0.354,0.389-0.927,0.587-1.578,0.587
				c-0.199,0-0.383-0.008-0.536-0.048v2.143h-0.667L141.706,174.228L141.706,174.228z M142.372,176.798
				c0.146,0.04,0.337,0.056,0.552,0.056c0.812,0,1.294-0.412,1.294-1.135c0-0.714-0.482-1.055-1.218-1.055
				c-0.291,0-0.513,0.031-0.628,0.056V176.798z"/>
		</g>
	</g>
	<g>
		<path id="Cdc25_2P_path1" fill="#FFFF00" stroke="#000000" d="M188.489,192.317c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.681-2.173-4.681-4.854c0-2.68,2.096-4.853,4.681-4.853C186.393,187.465,188.489,189.638,188.489,192.317z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M182.354,189.371c0.321-0.063,0.743-0.111,1.278-0.111c0.659,0,1.142,0.159,1.448,0.444
				c0.283,0.254,0.459,0.643,0.459,1.119c0,0.483-0.138,0.864-0.406,1.143c-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.667L182.354,189.371L182.354,189.371z M183.021,191.941
				c0.146,0.04,0.337,0.056,0.552,0.056c0.812,0,1.294-0.412,1.294-1.135c0-0.714-0.483-1.055-1.218-1.055
				c-0.291,0-0.513,0.031-0.628,0.056V191.941z"/>
		</g>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_3_" cx="242.5896" cy="756.6055" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C0FF6C"/>
		<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
		<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
		<stop  offset="0.66" style="stop-color:#B4FA6B"/>
		<stop  offset="0.7448" style="stop-color:#AAF76A"/>
		<stop  offset="0.8174" style="stop-color:#9EF269"/>
		<stop  offset="0.8817" style="stop-color:#91EC68"/>
		<stop  offset="0.9398" style="stop-color:#86E666"/>
		<stop  offset="0.9915" style="stop-color:#7EDE64"/>
		<stop  offset="1" style="stop-color:#7DDD64"/>
	</radialGradient>
	<path id="path16609_4_" fill="url(#path16609_3_)" stroke="#000000" d="M380.172,261.573c0,5.786-11.338,10.478-25.313,10.478
		c-13.982,0-25.316-4.689-25.316-10.478c0-5.789,11.334-10.476,25.316-10.476C368.834,251.099,380.172,255.786,380.172,261.573z"/>
	<g>
		<path d="M350.406,257.773v3.988c0,1.509,0.67,2.149,1.568,2.149c0.999,0,1.64-0.66,1.64-2.149v-3.988h0.88v3.928
			c0,2.069-1.089,2.918-2.549,2.918c-1.379,0-2.418-0.79-2.418-2.878v-3.968H350.406L350.406,257.773z"/>
		<path d="M355.976,257.414h0.869v3.039h0.021c0.31-0.54,0.869-0.89,1.648-0.89c1.199,0,2.05,1,2.038,2.469
			c0,1.729-1.089,2.588-2.168,2.588c-0.7,0-1.26-0.27-1.619-0.91h-0.029l-0.04,0.8h-0.761c0.021-0.33,0.04-0.819,0.04-1.25V257.414
			L355.976,257.414z M356.845,262.571c0,0.11,0.021,0.22,0.04,0.32c0.17,0.61,0.681,1.029,1.319,1.029c0.92,0,1.47-0.75,1.47-1.859
			c0-0.969-0.5-1.799-1.438-1.799c-0.601,0-1.159,0.41-1.339,1.079c-0.021,0.1-0.052,0.22-0.052,0.36V262.571L356.845,262.571z"/>
	</g>
</g>
<g id="cyclin_CDK_CKl">
	<g>
		<path id="path19818_8_" fill="#FFFF00" stroke="#000000" d="M258.28,434.146c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.681-2.173-4.681-4.854s2.096-4.854,4.681-4.854C256.184,429.294,258.28,431.467,258.28,434.146z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M252.146,431.2c0.32-0.063,0.743-0.111,1.278-0.111c0.659,0,1.143,0.159,1.448,0.444
				c0.283,0.254,0.459,0.643,0.459,1.119c0,0.482-0.138,0.863-0.406,1.143c-0.352,0.389-0.926,0.587-1.577,0.587
				c-0.199,0-0.384-0.008-0.535-0.048v2.143h-0.667V431.2L252.146,431.2z M252.813,433.771c0.145,0.039,0.336,0.056,0.551,0.056
				c0.812,0,1.295-0.412,1.295-1.135c0-0.715-0.482-1.056-1.219-1.056c-0.291,0-0.514,0.031-0.627,0.057V433.771z"/>
		</g>
	</g>
	<g>
		<g>
			<g>
				
					<radialGradient id="cyclin_CDK_CKl_path3_1_" cx="502.0916" cy="649.3555" r="15.1508" gradientTransform="matrix(0 1.5933 -0.6358 0 623.0317 -385.3369)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#C0FF6C"/>
					<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
					<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
					<stop  offset="0.66" style="stop-color:#B4FA6B"/>
					<stop  offset="0.7448" style="stop-color:#AAF76A"/>
					<stop  offset="0.8174" style="stop-color:#9EF269"/>
					<stop  offset="0.8817" style="stop-color:#91EC68"/>
					<stop  offset="0.9398" style="stop-color:#86E666"/>
					<stop  offset="0.9915" style="stop-color:#7EDE64"/>
					<stop  offset="1" style="stop-color:#7DDD64"/>
				</radialGradient>
				<path id="cyclin_CDK_CKl_path3" fill="url(#cyclin_CDK_CKl_path3_1_)" stroke="#000000" d="M219.206,396.799
					c-1.927-4.672-4.669-7.469-7.697-7.469c-5.788,0-10.477,11.334-10.477,25.314c0.002,13.979,4.689,25.315,10.477,25.315
					c3.101,0,5.886-3.252,7.804-8.422"/>
				
					<radialGradient id="path16609_5_" cx="501.3943" cy="630.6855" r="0" gradientTransform="matrix(0 1.5933 -0.6358 0 623.0317 -385.3369)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#C0FF6C"/>
					<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
					<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
					<stop  offset="0.66" style="stop-color:#B4FA6B"/>
					<stop  offset="0.7448" style="stop-color:#AAF76A"/>
					<stop  offset="0.8174" style="stop-color:#9EF269"/>
					<stop  offset="0.8817" style="stop-color:#91EC68"/>
					<stop  offset="0.9398" style="stop-color:#86E666"/>
					<stop  offset="0.9915" style="stop-color:#7EDE64"/>
					<stop  offset="1" style="stop-color:#7DDD64"/>
				</radialGradient>
				<path id="path16609_8_" fill="url(#path16609_5_)" stroke="#000000" d="M222.042,413.533"/>
				<g>
					<path id="path16609_16_" fill="#FFFFFF" stroke="#272425" d="M219.208,396.365c-5.777,1.92-9.166,5.443-9.166,8.75
						c0,3.877,2.443,8.105,10,9.918"/>
					
						<radialGradient id="path16609_6_" cx="182.9822" cy="1580.9512" r="0" gradientTransform="matrix(1.5933 0 0 0.6358 -31.6619 -600.3328)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#C0FF6C"/>
						<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
						<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
						<stop  offset="0.66" style="stop-color:#B4FA6B"/>
						<stop  offset="0.7448" style="stop-color:#AAF76A"/>
						<stop  offset="0.8174" style="stop-color:#9EF269"/>
						<stop  offset="0.8817" style="stop-color:#91EC68"/>
						<stop  offset="0.9398" style="stop-color:#86E666"/>
						<stop  offset="0.9915" style="stop-color:#7EDE64"/>
						<stop  offset="1" style="stop-color:#7DDD64"/>
					</radialGradient>
					<path id="path16609_13_" fill="url(#path16609_6_)" stroke="#000000" d="M259.884,404.836"/>
				</g>
				<g>
					<path id="path31151_15_" fill="#FFFFFF" stroke="#272425" d="M232.952,434.932"/>
					<path id="path31151_14_" fill="#FFFFFF" stroke="#272425" d="M220.458,414.865c-3.475,2.125-5.7,5.359-5.7,8.371
						c0,2.819,1.573,6.768,4.534,8.713"/>
					<path id="path31151_13_" fill="#FFFFFF" stroke="#272425" d="M255.712,423.559"/>
				</g>
				<rect x="221.636" y="397.809" fill="#FFFFFF" width="1.78" height="15.719"/>
				<rect x="219.464" y="397.396" fill="#FFFFFF" width="2.375" height="11.442"/>
			</g>
			<g>
				<path d="M211.79,422.355c0.16,0.319,0.33,0.959,0.33,1.778c0,1.898-1.21,3.328-3.419,3.328c-2.108,0-3.538-1.43-3.538-3.519
					c0-0.84,0.181-1.369,0.3-1.6l0.71,0.209c-0.159,0.33-0.278,0.8-0.278,1.359c0,1.58,1.009,2.629,2.777,2.629
					c1.648,0,2.708-0.949,2.708-2.588c0-0.53-0.108-1.07-0.278-1.42L211.79,422.355z"/>
				<path d="M205.273,421.264v-0.869h3.248v-0.03c-0.26-0.181-0.5-0.359-0.721-0.529l-2.527-2.06v-1.079l2.857,2.438l3.878-2.629
					v1.029l-3.309,2.219l0.74,0.641h2.567v0.869H205.273L205.273,421.264z"/>
				<path d="M205.273,414.975h6.735v0.868h-6.735V414.975L205.273,414.975z"/>
			</g>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_CKl_path2_1_" cx="111.3621" cy="464.1582" r="16.6906" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="cyclin_CDK_CKl_path2" fill="url(#cyclin_CDK_CKl_path2_1_)" stroke="#000000" d="M250.217,416.236l8.24,7.043
			l-7.393,6.469c-3.332,3.045-8.972,5.047-15.367,5.047c-10.23,0-18.527-5.127-18.527-11.443c0-6.326,8.295-11.447,18.527-11.447
			C241.578,411.902,246.822,413.596,250.217,416.236z"/>
		<g>
			<path d="M234.339,426.065c-0.318,0.159-0.959,0.329-1.778,0.329c-1.898,0-3.328-1.21-3.328-3.419c0-2.107,1.43-3.538,3.519-3.538
				c0.84,0,1.369,0.182,1.6,0.301l-0.209,0.709c-0.33-0.159-0.801-0.278-1.359-0.278c-1.579,0-2.629,1.009-2.629,2.778
				c0,1.647,0.949,2.708,2.589,2.708c0.529,0,1.069-0.109,1.419-0.279L234.339,426.065z"/>
			<path d="M235.432,419.639c0.528-0.08,1.158-0.14,1.849-0.14c1.249,0,2.139,0.29,2.729,0.84c0.601,0.55,0.949,1.329,0.949,2.418
				c0,1.101-0.34,1.999-0.969,2.619c-0.63,0.629-1.669,0.969-2.979,0.969c-0.62,0-1.141-0.028-1.579-0.079V419.639L235.432,419.639z
				 M236.301,425.596c0.221,0.04,0.54,0.051,0.881,0.051c1.857,0,2.867-1.039,2.867-2.858c0.011-1.589-0.889-2.599-2.728-2.599
				c-0.449,0-0.789,0.039-1.021,0.09V425.596z"/>
			<path d="M242.092,419.549h0.869v3.248h0.031c0.18-0.26,0.359-0.5,0.529-0.72l2.059-2.528h1.08l-2.438,2.858l2.629,3.878h-1.029
				l-2.219-3.31l-0.642,0.74v2.568h-0.869V419.549L242.092,419.549z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_CKl_path1_1_" cx="169.1311" cy="530.1191" r="16.1855" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
			<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
			<stop  offset="0.66" style="stop-color:#B4FA6B"/>
			<stop  offset="0.7448" style="stop-color:#AAF76A"/>
			<stop  offset="0.8174" style="stop-color:#9EF269"/>
			<stop  offset="0.8817" style="stop-color:#91EC68"/>
			<stop  offset="0.9398" style="stop-color:#86E666"/>
			<stop  offset="0.9915" style="stop-color:#7EDE64"/>
			<stop  offset="1" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="cyclin_CDK_CKl_path1" fill="url(#cyclin_CDK_CKl_path1_1_)" stroke="#000000" d="M263.129,405.573
			c0,5.786-11.338,10.478-25.313,10.478c-13.982,0-25.316-4.689-25.316-10.478c0-5.789,11.334-10.476,25.316-10.476
			C251.791,395.1,263.129,399.786,263.129,405.573z"/>
		<g>
			<path d="M230.812,408.29c-0.319,0.159-0.959,0.329-1.779,0.329c-1.898,0-3.328-1.209-3.328-3.418c0-2.108,1.43-3.537,3.52-3.537
				c0.84,0,1.368,0.18,1.599,0.299l-0.209,0.71c-0.33-0.159-0.8-0.28-1.359-0.28c-1.579,0-2.629,1.01-2.629,2.779
				c0,1.648,0.949,2.708,2.589,2.708c0.529,0,1.069-0.11,1.419-0.28L230.812,408.29z"/>
			<path d="M231.994,403.672l1.06,2.859c0.109,0.318,0.229,0.699,0.311,0.988h0.02c0.091-0.289,0.19-0.658,0.311-1.01l0.96-2.839
				h0.93l-1.318,3.449c-0.631,1.657-1.061,2.508-1.659,3.026c-0.431,0.381-0.859,0.531-1.079,0.57l-0.221-0.74
				c0.221-0.068,0.51-0.209,0.77-0.43c0.24-0.189,0.54-0.529,0.74-0.979c0.04-0.09,0.069-0.16,0.069-0.211
				c0-0.049-0.021-0.119-0.061-0.229l-1.789-4.458h0.958V403.672z"/>
			<path d="M239.732,408.33c-0.229,0.119-0.739,0.289-1.391,0.289c-1.459,0-2.407-0.999-2.407-2.479c0-1.488,1.02-2.568,2.599-2.568
				c0.521,0,0.979,0.131,1.219,0.25l-0.199,0.68c-0.21-0.12-0.539-0.23-1.02-0.23c-1.109,0-1.709,0.82-1.709,1.83
				c0,1.119,0.72,1.81,1.679,1.81c0.5,0,0.83-0.13,1.079-0.24L239.732,408.33z"/>
			<path d="M240.765,401.414h0.88v7.096h-0.88V401.414z"/>
			<path d="M244.104,402.312c0.01,0.301-0.21,0.541-0.561,0.541c-0.31,0-0.528-0.24-0.528-0.541c0-0.309,0.229-0.549,0.549-0.549
				C243.894,401.764,244.104,402.004,244.104,402.312z M243.124,408.51v-4.838h0.88v4.838H243.124z"/>
			<path d="M245.464,404.982c0-0.5-0.01-0.91-0.04-1.312h0.779l0.051,0.802h0.021c0.24-0.462,0.8-0.91,1.6-0.91
				c0.669,0,1.709,0.399,1.709,2.059v2.889h-0.88v-2.789c0-0.779-0.29-1.429-1.119-1.429c-0.58,0-1.028,0.409-1.18,0.899
				c-0.04,0.109-0.06,0.26-0.06,0.41v2.907h-0.881V404.982L245.464,404.982z"/>
		</g>
	</g>
</g>
<g id="cyclin_CDK_inactive">
	<g>
		<path id="path19818" fill="#FFFF00" stroke="#000000" d="M250.727,173.25c0,2.681-2.098,4.854-4.682,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853C248.63,168.397,250.727,170.57,250.727,173.25z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M244.592,170.304c0.322-0.063,0.743-0.111,1.279-0.111c0.658,0,1.142,0.159,1.447,0.444
				c0.283,0.254,0.46,0.643,0.46,1.119c0,0.483-0.138,0.864-0.405,1.143c-0.354,0.389-0.928,0.587-1.578,0.587
				c-0.198,0-0.383-0.008-0.537-0.048v2.143h-0.666V170.304L244.592,170.304z M245.258,172.874c0.146,0.04,0.339,0.056,0.554,0.056
				c0.811,0,1.294-0.412,1.294-1.135c0-0.714-0.483-1.055-1.218-1.055c-0.291,0-0.515,0.031-0.63,0.056V172.874z"/>
		</g>
	</g>
	<g>
		<path id="path19818_1_" fill="#FFFF00" stroke="#000000" d="M219.227,173.25c0,2.681-2.098,4.854-4.682,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853C217.13,168.397,219.227,170.57,219.227,173.25z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M213.092,170.304c0.322-0.063,0.743-0.111,1.279-0.111c0.659,0,1.142,0.159,1.448,0.444
				c0.283,0.254,0.459,0.643,0.459,1.119c0,0.483-0.138,0.864-0.406,1.143c-0.353,0.389-0.927,0.587-1.578,0.587
				c-0.198,0-0.383-0.008-0.536-0.048v2.143h-0.667L213.092,170.304L213.092,170.304z M213.758,172.874
				c0.146,0.04,0.338,0.056,0.553,0.056c0.812,0,1.294-0.412,1.294-1.135c0-0.714-0.483-1.055-1.218-1.055
				c-0.291,0-0.514,0.031-0.629,0.056V172.874z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_inactive_path2_1_" cx="105.6287" cy="202.1582" r="16.6906" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="cyclin_CDK_inactive_path2" fill="url(#cyclin_CDK_inactive_path2_1_)" stroke="#000000" d="M244.483,154.236l8.24,7.043
			l-7.394,6.469c-3.332,3.045-8.971,5.047-15.367,5.047c-10.229,0-18.526-5.127-18.526-11.443c0-6.326,8.295-11.447,18.526-11.447
			C235.845,149.902,241.089,151.596,244.483,154.236z"/>
		<g>
			<path d="M228.606,164.065c-0.319,0.16-0.959,0.33-1.779,0.33c-1.897,0-3.328-1.21-3.328-3.419c0-2.108,1.431-3.538,3.52-3.538
				c0.84,0,1.369,0.181,1.599,0.3l-0.209,0.71c-0.33-0.16-0.8-0.279-1.359-0.279c-1.578,0-2.629,1.009-2.629,2.778
				c0,1.647,0.949,2.708,2.589,2.708c0.529,0,1.069-0.109,1.42-0.279L228.606,164.065z"/>
			<path d="M229.699,157.639c0.529-0.08,1.159-0.14,1.849-0.14c1.249,0,2.14,0.29,2.729,0.84c0.6,0.549,0.949,1.329,0.949,2.418
				c0,1.1-0.34,1.999-0.97,2.619c-0.63,0.629-1.669,0.969-2.979,0.969c-0.62,0-1.14-0.029-1.579-0.079V157.639L229.699,157.639z
				 M230.568,163.596c0.22,0.04,0.54,0.05,0.88,0.05c1.858,0,2.868-1.039,2.868-2.858c0.01-1.589-0.891-2.599-2.729-2.599
				c-0.448,0-0.789,0.04-1.02,0.09L230.568,163.596L230.568,163.596z"/>
			<path d="M236.359,157.549h0.869v3.248h0.029c0.181-0.26,0.359-0.5,0.529-0.72l2.061-2.528h1.078l-2.438,2.858l2.627,3.878h-1.029
				l-2.218-3.309l-0.64,0.74v2.568h-0.869V157.549L236.359,157.549z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_inactive_path1_1_" cx="165.533" cy="942.1992" r="16.1858" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
			<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
			<stop  offset="0.66" style="stop-color:#B4FA6B"/>
			<stop  offset="0.7448" style="stop-color:#AAF76A"/>
			<stop  offset="0.8174" style="stop-color:#9EF269"/>
			<stop  offset="0.8817" style="stop-color:#91EC68"/>
			<stop  offset="0.9398" style="stop-color:#86E666"/>
			<stop  offset="0.9915" style="stop-color:#7EDE64"/>
			<stop  offset="1" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="cyclin_CDK_inactive_path1" fill="url(#cyclin_CDK_inactive_path1_1_)" stroke="#000000" d="M257.396,143.573
			c0,5.786-11.338,10.478-25.314,10.478c-13.981,0-25.315-4.689-25.315-10.478c0-5.789,11.334-10.476,25.315-10.476
			C246.058,133.099,257.396,137.786,257.396,143.573z"/>
		<g>
			<path d="M225.078,146.29c-0.319,0.16-0.959,0.33-1.779,0.33c-1.897,0-3.327-1.209-3.327-3.418c0-2.109,1.43-3.538,3.519-3.538
				c0.84,0,1.369,0.18,1.599,0.3l-0.209,0.709c-0.33-0.16-0.8-0.28-1.358-0.28c-1.579,0-2.629,1.009-2.629,2.778
				c0,1.649,0.948,2.708,2.589,2.708c0.528,0,1.068-0.11,1.419-0.28L225.078,146.29z"/>
			<path d="M226.261,141.672l1.059,2.858c0.11,0.32,0.229,0.7,0.311,0.99h0.021c0.09-0.29,0.189-0.66,0.31-1.01l0.96-2.838h0.931
				l-1.319,3.448c-0.63,1.659-1.06,2.508-1.659,3.028c-0.43,0.38-0.858,0.53-1.079,0.57l-0.221-0.74
				c0.221-0.07,0.51-0.21,0.771-0.43c0.239-0.19,0.539-0.53,0.739-0.979c0.04-0.09,0.069-0.16,0.069-0.21
				c0-0.05-0.021-0.12-0.061-0.23l-1.788-4.458L226.261,141.672L226.261,141.672z"/>
			<path d="M233.999,146.33c-0.229,0.12-0.739,0.29-1.39,0.29c-1.459,0-2.408-1-2.408-2.479c0-1.489,1.021-2.569,2.599-2.569
				c0.521,0,0.979,0.13,1.22,0.25l-0.199,0.68c-0.21-0.12-0.54-0.23-1.021-0.23c-1.108,0-1.709,0.82-1.709,1.829
				c0,1.12,0.721,1.809,1.68,1.809c0.5,0,0.83-0.13,1.079-0.24L233.999,146.33z"/>
			<path d="M235.031,139.414h0.88v7.096h-0.88V139.414z"/>
			<path d="M238.37,140.313c0.01,0.3-0.21,0.54-0.56,0.54c-0.311,0-0.529-0.24-0.529-0.54c0-0.31,0.229-0.549,0.549-0.549
				C238.16,139.764,238.37,140.003,238.37,140.313z M237.391,146.51v-4.837h0.88v4.837H237.391z"/>
			<path d="M239.73,142.982c0-0.5-0.01-0.91-0.04-1.31h0.779l0.051,0.8h0.02c0.24-0.46,0.8-0.91,1.601-0.91
				c0.669,0,1.709,0.4,1.709,2.059v2.888h-0.88v-2.789c0-0.779-0.29-1.429-1.119-1.429c-0.58,0-1.029,0.41-1.181,0.899
				c-0.04,0.11-0.06,0.26-0.06,0.41v2.908h-0.88V142.982L239.73,142.982z"/>
		</g>
	</g>
</g>
<g id="cyclin_CDK_active">
	<g>
		<path id="path19818_9_" fill="#FFFF00" stroke="#000000" d="M252.547,267.146c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.68-2.173-4.68-4.854c0-2.68,2.095-4.853,4.68-4.853C250.45,262.294,252.547,264.467,252.547,267.146z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M246.412,264.2c0.322-0.063,0.743-0.111,1.279-0.111c0.658,0,1.141,0.159,1.447,0.444
				c0.282,0.254,0.46,0.643,0.46,1.119c0,0.483-0.139,0.864-0.405,1.143c-0.354,0.389-0.928,0.587-1.578,0.587
				c-0.199,0-0.383-0.008-0.537-0.048v2.143h-0.666V264.2L246.412,264.2z M247.078,266.771c0.146,0.04,0.338,0.056,0.553,0.056
				c0.812,0,1.294-0.412,1.294-1.135c0-0.714-0.482-1.055-1.218-1.055c-0.291,0-0.514,0.031-0.629,0.056V266.771z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_active_path2_1_" cx="105.6287" cy="297.1582" r="16.6906" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="cyclin_CDK_active_path2" fill="url(#cyclin_CDK_active_path2_1_)" stroke="#000000" d="M244.483,249.236l8.24,7.043
			l-7.394,6.469c-3.332,3.045-8.971,5.047-15.367,5.047c-10.229,0-18.526-5.127-18.526-11.443c0-6.326,8.295-11.447,18.526-11.447
			C235.845,244.902,241.089,246.596,244.483,249.236z"/>
		<g>
			<path d="M228.606,259.065c-0.319,0.16-0.959,0.33-1.779,0.33c-1.897,0-3.328-1.21-3.328-3.419c0-2.108,1.431-3.538,3.52-3.538
				c0.84,0,1.369,0.181,1.599,0.3l-0.209,0.71c-0.33-0.16-0.8-0.279-1.359-0.279c-1.578,0-2.629,1.009-2.629,2.778
				c0,1.647,0.949,2.708,2.589,2.708c0.529,0,1.069-0.109,1.42-0.279L228.606,259.065z"/>
			<path d="M229.699,252.639c0.529-0.08,1.159-0.14,1.849-0.14c1.249,0,2.14,0.29,2.729,0.84c0.6,0.549,0.949,1.329,0.949,2.418
				c0,1.1-0.34,1.999-0.97,2.619c-0.63,0.629-1.669,0.969-2.979,0.969c-0.62,0-1.14-0.029-1.579-0.079V252.639L229.699,252.639z
				 M230.568,258.596c0.22,0.04,0.54,0.05,0.88,0.05c1.858,0,2.868-1.039,2.868-2.858c0.01-1.589-0.891-2.599-2.729-2.599
				c-0.448,0-0.789,0.04-1.02,0.09L230.568,258.596L230.568,258.596z"/>
			<path d="M236.359,252.549h0.869v3.248h0.029c0.181-0.26,0.359-0.5,0.529-0.72l2.061-2.528h1.078l-2.438,2.858l2.627,3.878h-1.029
				l-2.218-3.309l-0.64,0.74v2.568h-0.869V252.549L236.359,252.549z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_active_path1_1_" cx="165.533" cy="792.7812" r="16.1858" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
			<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
			<stop  offset="0.66" style="stop-color:#B4FA6B"/>
			<stop  offset="0.7448" style="stop-color:#AAF76A"/>
			<stop  offset="0.8174" style="stop-color:#9EF269"/>
			<stop  offset="0.8817" style="stop-color:#91EC68"/>
			<stop  offset="0.9398" style="stop-color:#86E666"/>
			<stop  offset="0.9915" style="stop-color:#7EDE64"/>
			<stop  offset="1" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="cyclin_CDK_active_path1" fill="url(#cyclin_CDK_active_path1_1_)" stroke="#000000" d="M257.396,238.573
			c0,5.786-11.338,10.478-25.314,10.478c-13.981,0-25.315-4.689-25.315-10.478c0-5.789,11.334-10.476,25.315-10.476
			C246.058,228.099,257.396,232.786,257.396,238.573z"/>
		<g>
			<path d="M225.078,241.29c-0.319,0.16-0.959,0.33-1.779,0.33c-1.897,0-3.327-1.209-3.327-3.418c0-2.109,1.43-3.538,3.519-3.538
				c0.84,0,1.369,0.18,1.599,0.3l-0.209,0.709c-0.33-0.16-0.8-0.28-1.358-0.28c-1.579,0-2.629,1.009-2.629,2.778
				c0,1.649,0.948,2.708,2.589,2.708c0.528,0,1.068-0.11,1.419-0.28L225.078,241.29z"/>
			<path d="M226.261,236.672l1.059,2.858c0.11,0.32,0.229,0.7,0.311,0.99h0.021c0.09-0.29,0.189-0.66,0.31-1.01l0.96-2.838h0.931
				l-1.319,3.448c-0.63,1.659-1.06,2.508-1.659,3.028c-0.43,0.38-0.858,0.53-1.079,0.57l-0.221-0.74
				c0.221-0.07,0.51-0.21,0.771-0.43c0.239-0.19,0.539-0.53,0.739-0.979c0.04-0.09,0.069-0.16,0.069-0.21
				c0-0.05-0.021-0.12-0.061-0.23l-1.788-4.458L226.261,236.672L226.261,236.672z"/>
			<path d="M233.999,241.33c-0.229,0.12-0.739,0.29-1.39,0.29c-1.459,0-2.408-1-2.408-2.479c0-1.489,1.021-2.569,2.599-2.569
				c0.521,0,0.979,0.13,1.22,0.25l-0.199,0.68c-0.21-0.12-0.54-0.23-1.021-0.23c-1.108,0-1.709,0.82-1.709,1.829
				c0,1.12,0.721,1.809,1.68,1.809c0.5,0,0.83-0.13,1.079-0.24L233.999,241.33z"/>
			<path d="M235.031,234.414h0.88v7.096h-0.88V234.414z"/>
			<path d="M238.37,235.313c0.01,0.3-0.21,0.54-0.56,0.54c-0.311,0-0.529-0.24-0.529-0.54c0-0.31,0.229-0.549,0.549-0.549
				C238.16,234.764,238.37,235.003,238.37,235.313z M237.391,241.51v-4.837h0.88v4.837H237.391z"/>
			<path d="M239.73,237.982c0-0.5-0.01-0.91-0.04-1.31h0.779l0.051,0.8h0.02c0.24-0.46,0.8-0.91,1.601-0.91
				c0.669,0,1.709,0.4,1.709,2.059v2.888h-0.88v-2.789c0-0.779-0.29-1.429-1.119-1.429c-0.58,0-1.029,0.41-1.181,0.899
				c-0.04,0.11-0.06,0.26-0.06,0.41v2.908h-0.88V237.982L239.73,237.982z"/>
		</g>
	</g>
</g>
<g id="CKl">
	<g>
		
			<radialGradient id="CKl_path1_1_" cx="444.6638" cy="615.7988" r="15.1512" gradientTransform="matrix(0 1.5933 -0.6358 0 623.0317 -385.3369)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
			<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
			<stop  offset="0.66" style="stop-color:#B4FA6B"/>
			<stop  offset="0.7448" style="stop-color:#AAF76A"/>
			<stop  offset="0.8174" style="stop-color:#9EF269"/>
			<stop  offset="0.8817" style="stop-color:#91EC68"/>
			<stop  offset="0.9398" style="stop-color:#86E666"/>
			<stop  offset="0.9915" style="stop-color:#7EDE64"/>
			<stop  offset="1" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="CKl_path1" fill="url(#CKl_path1_1_)" stroke="#000000" d="M240.541,305.299c-1.927-4.672-4.669-7.469-7.697-7.469
			c-5.788,0-10.477,11.334-10.477,25.314c0.002,13.979,4.689,25.315,10.477,25.315c3.101,0,5.886-3.252,7.804-8.422"/>
		<g>
			<path id="path16609_7_" fill="#FFFFFF" stroke="#272425" d="M240.543,304.865c-5.777,1.92-9.166,5.443-9.166,8.75
				c0,3.877,2.443,8.104,10,9.918"/>
		</g>
		<g>
			<path id="path31151_8_" fill="#FFFFFF" stroke="#272425" d="M241.793,323.365c-3.475,2.125-5.7,5.359-5.7,8.371
				c0,2.82,1.573,6.768,4.534,8.713"/>
		</g>
		<line fill="none" x1="240.799" y1="305.896" x2="240.799" y2="317.34"/>
	</g>
	<g>
		<path d="M233.125,330.855c0.16,0.319,0.33,0.959,0.33,1.778c0,1.898-1.21,3.328-3.419,3.328c-2.107,0-3.538-1.43-3.538-3.519
			c0-0.84,0.182-1.369,0.3-1.6l0.71,0.209c-0.159,0.33-0.278,0.801-0.278,1.359c0,1.58,1.009,2.629,2.777,2.629
			c1.648,0,2.708-0.949,2.708-2.588c0-0.53-0.108-1.07-0.278-1.42L233.125,330.855z"/>
		<path d="M226.608,329.764v-0.869h3.248v-0.03c-0.26-0.181-0.5-0.359-0.72-0.529l-2.528-2.06v-1.079l2.857,2.438l3.879-2.629v1.029
			l-3.31,2.219l0.74,0.641h2.567v0.869H226.608L226.608,329.764z"/>
		<path d="M226.608,323.475h6.735v0.868h-6.735V323.475z"/>
	</g>
</g>
<g id="cyclin_CDK_CKl_P">
	<g>
		<path id="path19818_10_" fill="#FFFF00" stroke="#000000" d="M419.041,434.146c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.681-2.173-4.681-4.854s2.096-4.854,4.681-4.854C416.944,429.294,419.041,431.467,419.041,434.146z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M412.906,431.2c0.321-0.063,0.743-0.111,1.278-0.111c0.658,0,1.142,0.159,1.447,0.444
				c0.283,0.254,0.46,0.643,0.46,1.119c0,0.482-0.138,0.863-0.405,1.143c-0.354,0.389-0.928,0.587-1.577,0.587
				c-0.199,0-0.384-0.008-0.537-0.048v2.143h-0.666V431.2z M413.572,433.771c0.146,0.039,0.338,0.056,0.553,0.056
				c0.811,0,1.294-0.412,1.294-1.135c0-0.715-0.483-1.056-1.218-1.056c-0.291,0-0.514,0.031-0.629,0.057V433.771L413.572,433.771z"
				/>
		</g>
	</g>
	<g>
		<g>
			<g>
				
					<radialGradient id="cyclin_CDK_CKl_P_path3_1_" cx="502.0916" cy="396.5068" r="15.1512" gradientTransform="matrix(0 1.5933 -0.6358 0 623.0317 -385.3369)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#C0FF6C"/>
					<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
					<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
					<stop  offset="0.66" style="stop-color:#B4FA6B"/>
					<stop  offset="0.7448" style="stop-color:#AAF76A"/>
					<stop  offset="0.8174" style="stop-color:#9EF269"/>
					<stop  offset="0.8817" style="stop-color:#91EC68"/>
					<stop  offset="0.9398" style="stop-color:#86E666"/>
					<stop  offset="0.9915" style="stop-color:#7EDE64"/>
					<stop  offset="1" style="stop-color:#7DDD64"/>
				</radialGradient>
				<path id="cyclin_CDK_CKl_P_path3" fill="url(#cyclin_CDK_CKl_P_path3_1_)" stroke="#000000" d="M379.967,396.799
					c-1.927-4.672-4.669-7.469-7.697-7.469c-5.788,0-10.477,11.334-10.477,25.314c0.002,13.979,4.689,25.315,10.477,25.315
					c3.101,0,5.886-3.252,7.804-8.422"/>
				
					<radialGradient id="path16609_10_" cx="501.3943" cy="377.8379" r="0" gradientTransform="matrix(0 1.5933 -0.6358 0 623.0317 -385.3369)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#C0FF6C"/>
					<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
					<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
					<stop  offset="0.66" style="stop-color:#B4FA6B"/>
					<stop  offset="0.7448" style="stop-color:#AAF76A"/>
					<stop  offset="0.8174" style="stop-color:#9EF269"/>
					<stop  offset="0.8817" style="stop-color:#91EC68"/>
					<stop  offset="0.9398" style="stop-color:#86E666"/>
					<stop  offset="0.9915" style="stop-color:#7EDE64"/>
					<stop  offset="1" style="stop-color:#7DDD64"/>
				</radialGradient>
				<path id="path16609_12_" fill="url(#path16609_10_)" stroke="#000000" d="M382.802,413.533"/>
				<g>
					<path id="path16609_11_" fill="#FFFFFF" stroke="#272425" d="M379.969,396.365c-5.777,1.92-9.166,5.443-9.166,8.75
						c0,3.877,2.443,8.105,10,9.918"/>
					
						<radialGradient id="path16609_14_" cx="283.8806" cy="1580.9512" r="0" gradientTransform="matrix(1.5933 0 0 0.6358 -31.6619 -600.3328)" gradientUnits="userSpaceOnUse">
						<stop  offset="0" style="stop-color:#C0FF6C"/>
						<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
						<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
						<stop  offset="0.66" style="stop-color:#B4FA6B"/>
						<stop  offset="0.7448" style="stop-color:#AAF76A"/>
						<stop  offset="0.8174" style="stop-color:#9EF269"/>
						<stop  offset="0.8817" style="stop-color:#91EC68"/>
						<stop  offset="0.9398" style="stop-color:#86E666"/>
						<stop  offset="0.9915" style="stop-color:#7EDE64"/>
						<stop  offset="1" style="stop-color:#7DDD64"/>
					</radialGradient>
					<path id="path16609_9_" fill="url(#path16609_14_)" stroke="#000000" d="M420.644,404.836"/>
				</g>
				<g>
					<path id="path31151_11_" fill="#FFFFFF" stroke="#272425" d="M393.713,434.932"/>
					<path id="path31151_10_" fill="#FFFFFF" stroke="#272425" d="M381.219,414.865c-3.475,2.125-5.7,5.359-5.7,8.371
						c0,2.819,1.573,6.768,4.534,8.713"/>
					<path id="path31151_9_" fill="#FFFFFF" stroke="#272425" d="M416.472,423.559"/>
				</g>
				<rect x="382.396" y="397.809" fill="#FFFFFF" width="1.78" height="15.719"/>
				<rect x="380.224" y="397.396" fill="#FFFFFF" width="2.375" height="11.442"/>
			</g>
			<g>
				<path d="M372.551,422.355c0.16,0.319,0.33,0.959,0.33,1.778c0,1.898-1.211,3.328-3.42,3.328c-2.107,0-3.537-1.43-3.537-3.519
					c0-0.84,0.18-1.369,0.299-1.6l0.711,0.209c-0.159,0.33-0.278,0.8-0.278,1.359c0,1.58,1.008,2.629,2.776,2.629
					c1.648,0,2.709-0.949,2.709-2.588c0-0.53-0.108-1.07-0.278-1.42L372.551,422.355z"/>
				<path d="M366.033,421.264v-0.869h3.248v-0.03c-0.261-0.181-0.5-0.359-0.72-0.529l-2.528-2.06v-1.079l2.858,2.438l3.877-2.629
					v1.029l-3.309,2.219l0.74,0.641h2.567v0.869H366.033L366.033,421.264z"/>
				<path d="M366.033,414.975h6.735v0.868h-6.735V414.975z"/>
			</g>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_CKl_P_path2_1_" cx="272.1228" cy="464.1582" r="16.6906" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="cyclin_CDK_CKl_P_path2" fill="url(#cyclin_CDK_CKl_P_path2_1_)" stroke="#000000" d="M410.977,416.236l8.24,7.043
			l-7.393,6.469c-3.332,3.045-8.972,5.047-15.367,5.047c-10.23,0-18.527-5.127-18.527-11.443c0-6.326,8.295-11.447,18.527-11.447
			C402.339,411.902,407.583,413.596,410.977,416.236z"/>
		<g>
			<path d="M395.099,426.065c-0.317,0.159-0.959,0.329-1.778,0.329c-1.898,0-3.328-1.21-3.328-3.419c0-2.107,1.43-3.538,3.52-3.538
				c0.84,0,1.369,0.182,1.599,0.301l-0.209,0.709c-0.33-0.159-0.8-0.278-1.359-0.278c-1.578,0-2.629,1.009-2.629,2.778
				c0,1.647,0.949,2.708,2.59,2.708c0.529,0,1.068-0.109,1.418-0.279L395.099,426.065z"/>
			<path d="M396.193,419.639c0.528-0.08,1.157-0.14,1.848-0.14c1.25,0,2.139,0.29,2.729,0.84c0.601,0.55,0.949,1.329,0.949,2.418
				c0,1.101-0.34,1.999-0.969,2.619c-0.629,0.629-1.668,0.969-2.979,0.969c-0.619,0-1.14-0.028-1.578-0.079V419.639z
				 M397.062,425.596c0.22,0.04,0.539,0.051,0.88,0.051c1.858,0,2.868-1.039,2.868-2.858c0.011-1.589-0.891-2.599-2.729-2.599
				c-0.449,0-0.789,0.039-1.021,0.09L397.062,425.596L397.062,425.596z"/>
			<path d="M402.853,419.549h0.869v3.248h0.029c0.18-0.26,0.359-0.5,0.529-0.72l2.061-2.528h1.078l-2.438,2.858l2.627,3.878h-1.029
				l-2.219-3.31l-0.64,0.74v2.568h-0.868V419.549L402.853,419.549z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="cyclin_CDK_CKl_P_path1_1_" cx="270.0291" cy="530.1191" r="16.1853" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
			<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
			<stop  offset="0.66" style="stop-color:#B4FA6B"/>
			<stop  offset="0.7448" style="stop-color:#AAF76A"/>
			<stop  offset="0.8174" style="stop-color:#9EF269"/>
			<stop  offset="0.8817" style="stop-color:#91EC68"/>
			<stop  offset="0.9398" style="stop-color:#86E666"/>
			<stop  offset="0.9915" style="stop-color:#7EDE64"/>
			<stop  offset="1" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="cyclin_CDK_CKl_P_path1" fill="url(#cyclin_CDK_CKl_P_path1_1_)" stroke="#000000" d="M423.889,405.573
			c0,5.786-11.338,10.478-25.313,10.478c-13.982,0-25.316-4.689-25.316-10.478c0-5.789,11.334-10.476,25.316-10.476
			C412.552,395.1,423.889,399.786,423.889,405.573z"/>
		<g>
			<path d="M391.572,408.29c-0.319,0.159-0.959,0.329-1.779,0.329c-1.898,0-3.328-1.209-3.328-3.418c0-2.108,1.43-3.537,3.52-3.537
				c0.84,0,1.368,0.18,1.599,0.299l-0.209,0.71c-0.33-0.159-0.8-0.28-1.359-0.28c-1.579,0-2.629,1.01-2.629,2.779
				c0,1.648,0.949,2.708,2.589,2.708c0.529,0,1.069-0.11,1.419-0.28L391.572,408.29z"/>
			<path d="M392.755,403.672l1.06,2.859c0.109,0.318,0.229,0.699,0.311,0.988h0.02c0.091-0.289,0.19-0.658,0.311-1.01l0.96-2.839
				h0.93l-1.318,3.449c-0.631,1.657-1.061,2.508-1.659,3.026c-0.431,0.381-0.859,0.531-1.079,0.57l-0.221-0.74
				c0.221-0.068,0.51-0.209,0.77-0.43c0.24-0.189,0.54-0.529,0.74-0.979c0.04-0.09,0.068-0.16,0.068-0.211
				c0-0.049-0.02-0.119-0.06-0.229l-1.789-4.458h0.958V403.672z"/>
			<path d="M400.493,408.33c-0.229,0.119-0.739,0.289-1.391,0.289c-1.459,0-2.407-0.999-2.407-2.479c0-1.488,1.02-2.568,2.599-2.568
				c0.521,0,0.979,0.131,1.219,0.25l-0.198,0.68c-0.211-0.12-0.54-0.23-1.021-0.23c-1.109,0-1.709,0.82-1.709,1.83
				c0,1.119,0.72,1.81,1.679,1.81c0.5,0,0.83-0.13,1.079-0.24L400.493,408.33z"/>
			<path d="M401.525,401.414h0.88v7.096h-0.88V401.414z"/>
			<path d="M404.864,402.312c0.01,0.301-0.21,0.541-0.561,0.541c-0.31,0-0.528-0.24-0.528-0.541c0-0.309,0.229-0.549,0.549-0.549
				C404.654,401.764,404.864,402.004,404.864,402.312z M403.885,408.51v-4.838h0.88v4.838H403.885z"/>
			<path d="M406.224,404.982c0-0.5-0.01-0.91-0.04-1.312h0.779l0.051,0.802h0.021c0.24-0.462,0.8-0.91,1.6-0.91
				c0.669,0,1.709,0.399,1.709,2.059v2.889h-0.88v-2.789c0-0.779-0.29-1.429-1.119-1.429c-0.58,0-1.028,0.409-1.18,0.899
				c-0.04,0.109-0.06,0.26-0.06,0.41v2.907h-0.881V404.982z"/>
		</g>
	</g>
	<g>
		<path id="path19818_11_" fill="#FFFF00" stroke="#000000" d="M365.041,434.146c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.681-2.173-4.681-4.854s2.096-4.854,4.681-4.854C362.944,429.294,365.041,431.467,365.041,434.146z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M358.906,431.2c0.321-0.063,0.743-0.111,1.278-0.111c0.658,0,1.142,0.159,1.447,0.444
				c0.283,0.254,0.46,0.643,0.46,1.119c0,0.482-0.138,0.863-0.405,1.143c-0.354,0.389-0.928,0.587-1.577,0.587
				c-0.199,0-0.384-0.008-0.537-0.048v2.143h-0.666V431.2z M359.572,433.771c0.146,0.039,0.338,0.056,0.553,0.056
				c0.811,0,1.294-0.412,1.294-1.135c0-0.715-0.483-1.056-1.218-1.056c-0.291,0-0.514,0.031-0.629,0.057V433.771L359.572,433.771z"
				/>
		</g>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_18_" cx="246.3562" cy="430.2461" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C0FF6C"/>
		<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
		<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
		<stop  offset="0.66" style="stop-color:#B4FA6B"/>
		<stop  offset="0.7448" style="stop-color:#AAF76A"/>
		<stop  offset="0.8174" style="stop-color:#9EF269"/>
		<stop  offset="0.8817" style="stop-color:#91EC68"/>
		<stop  offset="0.9398" style="stop-color:#86E666"/>
		<stop  offset="0.9915" style="stop-color:#7EDE64"/>
		<stop  offset="1" style="stop-color:#7DDD64"/>
	</radialGradient>
	<path id="path16609_15_" fill="url(#path16609_18_)" stroke="#000000" d="M386.172,469.073c0,5.786-11.338,10.478-25.313,10.478
		c-13.982,0-25.316-4.688-25.316-10.478s11.334-10.477,25.316-10.477C374.834,458.599,386.172,463.286,386.172,469.073z"/>
	<g>
		<path d="M356.406,465.273v3.987c0,1.509,0.67,2.148,1.568,2.148c0.999,0,1.64-0.66,1.64-2.148v-3.987h0.88v3.928
			c0,2.067-1.089,2.918-2.549,2.918c-1.379,0-2.418-0.789-2.418-2.878v-3.968H356.406L356.406,465.273z"/>
		<path d="M361.976,464.914h0.869v3.038h0.021c0.31-0.54,0.869-0.891,1.648-0.891c1.199,0,2.05,1,2.038,2.47
			c0,1.729-1.089,2.588-2.168,2.588c-0.7,0-1.26-0.271-1.619-0.909h-0.029l-0.04,0.8h-0.761c0.021-0.33,0.04-0.818,0.04-1.25
			V464.914L361.976,464.914z M362.845,470.07c0,0.109,0.021,0.221,0.04,0.319c0.17,0.609,0.681,1.029,1.319,1.029
			c0.92,0,1.47-0.75,1.47-1.859c0-0.969-0.5-1.799-1.438-1.799c-0.601,0-1.159,0.41-1.339,1.08c-0.021,0.101-0.052,0.22-0.052,0.359
			V470.07L362.845,470.07z"/>
	</g>
</g>
<g>
	<g>
		<path id="path19818_12_" fill="#FFFF00" stroke="#000000" d="M468.68,495.646c0,2.681-2.097,4.854-4.681,4.854
			c-2.585,0-4.68-2.173-4.68-4.854s2.095-4.854,4.68-4.854C466.584,490.794,468.68,492.967,468.68,495.646z"/>
		<g enable-background="new    ">
			<path fill="#FF3399" d="M462.546,492.7c0.321-0.063,0.743-0.111,1.279-0.111c0.659,0,1.142,0.159,1.448,0.444
				c0.282,0.254,0.459,0.643,0.459,1.119c0,0.482-0.139,0.863-0.406,1.143c-0.353,0.389-0.926,0.587-1.578,0.587
				c-0.199,0-0.383-0.008-0.535-0.048v2.143h-0.667V492.7z M463.213,495.271c0.146,0.039,0.336,0.056,0.551,0.056
				c0.813,0,1.295-0.412,1.295-1.135c0-0.715-0.481-1.056-1.219-1.056c-0.291,0-0.513,0.031-0.627,0.057V495.271z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="path31151_1_" cx="321.7625" cy="525.6582" r="16.6906" gradientTransform="matrix(1 0 0 1 126.4512 -40.8086)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path31151_12_" fill="url(#path31151_1_)" stroke="#000000" d="M460.617,477.736l8.24,7.043l-7.394,6.469
			c-3.332,3.045-8.971,5.047-15.367,5.047c-10.229,0-18.526-5.127-18.526-11.443c0-6.325,8.295-11.446,18.526-11.446
			C451.978,473.402,457.222,475.096,460.617,477.736z"/>
		<g>
			<path d="M444.74,487.565c-0.32,0.159-0.959,0.329-1.779,0.329c-1.898,0-3.328-1.21-3.328-3.419c0-2.107,1.43-3.538,3.519-3.538
				c0.84,0,1.368,0.182,1.6,0.301l-0.209,0.71c-0.33-0.16-0.801-0.279-1.359-0.279c-1.58,0-2.629,1.009-2.629,2.778
				c0,1.647,0.949,2.708,2.588,2.708c0.529,0,1.07-0.109,1.421-0.279L444.74,487.565z"/>
			<path d="M445.832,481.139c0.529-0.08,1.16-0.14,1.85-0.14c1.248,0,2.14,0.29,2.729,0.84c0.6,0.549,0.949,1.329,0.949,2.418
				c0,1.101-0.341,1.999-0.97,2.619c-0.631,0.629-1.67,0.969-2.979,0.969c-0.621,0-1.141-0.028-1.58-0.079V481.139L445.832,481.139z
				 M446.701,487.096c0.221,0.04,0.541,0.051,0.881,0.051c1.857,0,2.867-1.039,2.867-2.858c0.01-1.589-0.89-2.599-2.729-2.599
				c-0.448,0-0.789,0.039-1.02,0.09L446.701,487.096L446.701,487.096z"/>
			<path d="M452.492,481.049h0.869v3.248h0.03c0.181-0.26,0.359-0.5,0.529-0.72l2.06-2.528h1.079l-2.438,2.858l2.629,3.878h-1.029
				l-2.219-3.31l-0.641,0.74v2.568h-0.869V481.049z"/>
		</g>
	</g>
	<g>
		
			<radialGradient id="path16609_19_" cx="301.1833" cy="433.3916" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 -31.6619 742.6238)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.4082" style="stop-color:#BFFF6C"/>
			<stop  offset="0.5552" style="stop-color:#BAFC6C"/>
			<stop  offset="0.66" style="stop-color:#B4FA6B"/>
			<stop  offset="0.7448" style="stop-color:#AAF76A"/>
			<stop  offset="0.8174" style="stop-color:#9EF269"/>
			<stop  offset="0.8817" style="stop-color:#91EC68"/>
			<stop  offset="0.9398" style="stop-color:#86E666"/>
			<stop  offset="0.9915" style="stop-color:#7EDE64"/>
			<stop  offset="1" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path16609_17_" fill="url(#path16609_19_)" stroke="#000000" d="M473.529,467.073c0,5.786-11.338,10.478-25.314,10.478
			c-13.981,0-25.315-4.688-25.315-10.478s11.334-10.477,25.315-10.477C462.191,456.599,473.529,461.286,473.529,467.073z"/>
		<g>
			<path d="M441.212,469.79c-0.319,0.159-0.959,0.329-1.779,0.329c-1.897,0-3.327-1.209-3.327-3.418c0-2.108,1.43-3.537,3.519-3.537
				c0.84,0,1.369,0.18,1.599,0.299l-0.209,0.71c-0.33-0.159-0.8-0.28-1.358-0.28c-1.579,0-2.629,1.011-2.629,2.779
				c0,1.648,0.948,2.708,2.589,2.708c0.528,0,1.068-0.109,1.419-0.28L441.212,469.79z"/>
			<path d="M442.394,465.172l1.06,2.859c0.11,0.318,0.229,0.699,0.311,0.988h0.021c0.09-0.289,0.189-0.658,0.31-1.01l0.96-2.839
				h0.931l-1.319,3.449c-0.63,1.658-1.061,2.508-1.659,3.027c-0.43,0.381-0.858,0.529-1.079,0.569l-0.221-0.74
				c0.221-0.068,0.51-0.209,0.77-0.43c0.24-0.188,0.54-0.529,0.74-0.979c0.04-0.09,0.069-0.16,0.069-0.211
				c0-0.05-0.021-0.119-0.061-0.229l-1.789-4.458h0.958V465.172z"/>
			<path d="M450.133,469.83c-0.229,0.119-0.739,0.289-1.39,0.289c-1.459,0-2.408-0.999-2.408-2.479c0-1.487,1.021-2.567,2.599-2.567
				c0.521,0,0.979,0.131,1.22,0.25l-0.199,0.68c-0.21-0.12-0.54-0.23-1.021-0.23c-1.108,0-1.709,0.82-1.709,1.83
				c0,1.119,0.721,1.81,1.68,1.81c0.5,0,0.83-0.13,1.079-0.24L450.133,469.83z"/>
			<path d="M451.165,462.914h0.88v7.096h-0.88V462.914z"/>
			<path d="M454.504,463.812c0.01,0.302-0.21,0.541-0.56,0.541c-0.311,0-0.529-0.239-0.529-0.541c0-0.309,0.229-0.549,0.549-0.549
				C454.294,463.264,454.504,463.504,454.504,463.812z M453.524,470.01v-4.838h0.88v4.838H453.524z"/>
			<path d="M455.864,466.482c0-0.5-0.011-0.91-0.04-1.312h0.778l0.052,0.801h0.02c0.24-0.461,0.8-0.91,1.601-0.91
				c0.669,0,1.709,0.4,1.709,2.06v2.889h-0.881v-2.789c0-0.778-0.29-1.429-1.118-1.429c-0.58,0-1.029,0.409-1.181,0.899
				c-0.04,0.109-0.06,0.26-0.06,0.409v2.908h-0.88V466.482z"/>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="110.25" y1="27.025" x2="200.5" y2="27.025"/>
		<polygon fill="#272525" points="197.691,30.728 199.264,27.025 197.691,23.321 206.469,27.025 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="257.75" y1="27.025" x2="348" y2="27.025"/>
		<polygon fill="#272525" points="345.191,30.728 346.763,27.025 345.191,23.321 353.969,27.025 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_2_" cx="372.3464" cy="560.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_25_" fill="url(#path19818_2_)" stroke="#000000" d="M378.043,12.116c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C375.554,6.356,378.043,8.935,378.043,12.116z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_3_" cx="391.0964" cy="528.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_24_" fill="url(#path19818_3_)" stroke="#000000" d="M396.793,44.366c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C394.304,38.606,396.793,41.185,396.793,44.366z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_4_" cx="372.3464" cy="528.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_23_" fill="url(#path19818_4_)" stroke="#000000" d="M378.043,44.366c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C375.554,38.606,378.043,41.185,378.043,44.366z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_5_" cx="381.7214" cy="545.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_22_" fill="url(#path19818_5_)" stroke="#000000" d="M387.418,27.283c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C384.929,21.523,387.418,24.102,387.418,27.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_6_" cx="400.4714" cy="545.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_21_" fill="url(#path19818_6_)" stroke="#000000" d="M406.168,27.283c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C403.679,21.523,406.168,24.102,406.168,27.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_7_" cx="362.9714" cy="545.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_20_" fill="url(#path19818_7_)" stroke="#000000" d="M368.668,27.283c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C366.179,21.523,368.668,24.102,368.668,27.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_13_" cx="391.0964" cy="560.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_19_" fill="url(#path19818_13_)" stroke="#000000" d="M396.793,12.116c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C394.304,6.356,396.793,8.935,396.793,12.116z"/>
	</g>
</g>
<g>
	<path d="M233.935,47.358v4.701h4.521v1.2h-4.521V58h-1.28v-4.741h-4.521v-1.2h4.521v-4.701H233.935L233.935,47.358z"/>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="236.524" y1="98.503" x2="236.524" y2="130.617"/>
			<polygon fill="#272525" points="240.228,101.312 236.524,99.739 232.82,101.312 236.524,92.534 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="226.855" y1="124.404" x2="226.855" y2="92.292"/>
			<polygon fill="#272525" points="223.152,121.596 226.855,123.168 230.56,121.596 226.855,130.374 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="79.198" y1="187.414" x2="128.186" y2="187.414"/>
			<polygon fill="#272525" points="82.006,183.71 80.434,187.414 82.006,191.118 73.229,187.414 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="123.515" y1="197.083" x2="74.527" y2="197.083"/>
			<polygon fill="#272525" points="120.707,200.786 122.279,197.083 120.707,193.378 129.484,197.083 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="343.197" y1="187.108" x2="392.185" y2="187.108"/>
			<polygon fill="#272525" points="346.006,183.405 344.433,187.108 346.006,190.813 337.228,187.108 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="387.515" y1="196.777" x2="338.527" y2="196.777"/>
			<polygon fill="#272525" points="384.707,200.48 386.279,196.777 384.707,193.073 393.484,196.777 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" stroke-dasharray="3,3" x1="219.333" y1="192.248" x2="193.065" y2="192.248"/>
		<polygon fill="#272525" points="216.524,195.951 218.098,192.248 216.524,188.544 225.303,192.248 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" stroke-dasharray="3,3" x1="245.527" y1="191.943" x2="289.333" y2="191.943"/>
		<polygon fill="#272525" points="248.336,188.24 246.764,191.943 248.336,195.647 239.559,191.943 		"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="237.524" y1="182.225" x2="237.524" y2="224.743"/>
			<polygon fill="#272525" points="241.228,185.033 237.524,183.46 233.82,185.033 237.524,176.255 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="227.855" y1="219.518" x2="227.855" y2="177"/>
			<polygon fill="#272525" points="224.152,216.709 227.855,218.282 231.56,216.709 227.855,225.487 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#272525" stroke-dasharray="3,3" d="M260.332,233.485h93.334c5.5,0,10-4.5,10-10v-11.818"/>
		<polygon fill="#272525" points="367.369,214.476 363.666,212.903 359.962,214.476 363.666,205.698 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#272525" stroke-dasharray="3,3" d="M203.666,241.667h-93.334c-5.5,0-10-4.5-10-10v-20"/>
		<polygon fill="#272525" points="104.035,214.476 100.332,212.903 96.628,214.476 100.332,205.698 		"/>
	</g>
</g>
<g>
	<path d="M233.935,276.024v4.701h4.521v1.2h-4.521v4.741h-1.28v-4.741h-4.521v-1.2h4.521v-4.701H233.935z"/>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="237.333" y1="357.334" x2="237.333" y2="389.447"/>
			<polygon fill="#272525" points="241.036,360.143 237.333,358.57 233.629,360.143 237.333,351.365 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#272525" x1="227.664" y1="383.234" x2="227.664" y2="351.123"/>
			<polygon fill="#272525" points="223.961,380.427 227.664,382 231.368,380.427 227.664,389.205 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#272525" stroke-dasharray="3,3" x1="274.479" y1="421.668" x2="358.17" y2="421.668"/>
			<polygon fill="#272525" points="277.288,417.965 275.715,421.668 277.288,425.372 268.51,421.668 			"/>
		</g>
	</g>
	<g>
		<g>
			<line fill="none" stroke="#272525" stroke-dasharray="3,3" x1="351.203" y1="412" x2="267.512" y2="412"/>
			<polygon fill="#272525" points="348.394,415.703 349.967,412 348.394,408.296 357.172,412 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#272525" stroke-dasharray="3,3" d="M255.332,262.667h45.334c5.5,0,10,4.5,10,10v132"/>
		<polygon fill="#272525" points="306.963,401.857 310.666,403.432 314.37,401.857 310.666,410.637 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="163.5" y1="288" x2="213.5" y2="310.5"/>
		<polygon fill="#272525" points="209.419,312.725 212.373,309.993 212.459,305.97 218.943,312.949 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="217.5" y1="335.5" x2="167.5" y2="358"/>
		<polygon fill="#272525" points="168.542,353.471 168.627,357.493 171.581,360.227 162.057,360.449 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_14_" cx="122.8469" cy="224.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_32_" fill="url(#path19818_14_)" stroke="#000000" d="M128.543,348.115c0,3.182-2.487,5.762-5.556,5.762
			s-5.556-2.58-5.556-5.762c0-3.18,2.486-5.76,5.556-5.76C126.055,342.355,128.543,344.936,128.543,348.115z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_15_" cx="141.5969" cy="192.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_31_" fill="url(#path19818_15_)" stroke="#000000" d="M147.293,380.365c0,3.182-2.487,5.762-5.556,5.762
			s-5.556-2.58-5.556-5.762c0-3.18,2.486-5.76,5.556-5.76C144.805,374.605,147.293,377.186,147.293,380.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_16_" cx="122.8469" cy="192.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_30_" fill="url(#path19818_16_)" stroke="#000000" d="M128.543,380.365c0,3.182-2.487,5.762-5.556,5.762
			s-5.556-2.58-5.556-5.762c0-3.18,2.486-5.76,5.556-5.76C126.055,374.605,128.543,377.186,128.543,380.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_17_" cx="132.2219" cy="209.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_29_" fill="url(#path19818_17_)" stroke="#000000" d="M137.918,363.283c0,3.182-2.487,5.76-5.556,5.76
			s-5.556-2.578-5.556-5.76s2.486-5.76,5.556-5.76C135.43,357.523,137.918,360.102,137.918,363.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_18_" cx="150.9719" cy="209.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_28_" fill="url(#path19818_18_)" stroke="#000000" d="M156.668,363.283c0,3.182-2.487,5.76-5.556,5.76
			s-5.556-2.578-5.556-5.76s2.486-5.76,5.556-5.76C154.18,357.523,156.668,360.102,156.668,363.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_75_" cx="113.4719" cy="209.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_27_" fill="url(#path19818_75_)" stroke="#000000" d="M119.168,363.283c0,3.182-2.487,5.76-5.556,5.76
			s-5.556-2.578-5.556-5.76s2.486-5.76,5.556-5.76C116.68,357.523,119.168,360.102,119.168,363.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_76_" cx="141.5969" cy="224.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_26_" fill="url(#path19818_76_)" stroke="#000000" d="M147.293,348.115c0,3.182-2.487,5.762-5.556,5.762
			s-5.556-2.58-5.556-5.762c0-3.18,2.486-5.76,5.556-5.76C144.805,342.355,147.293,344.936,147.293,348.115z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" stroke-dasharray="3,3" x1="394" y1="250.914" x2="256.066" y2="250.914"/>
		<polygon fill="#272525" points="391.191,254.617 392.763,250.914 391.191,247.21 399.969,250.914 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_77_" cx="415.3464" cy="336.3291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_39_" fill="url(#path19818_77_)" stroke="#000000" d="M421.043,236.615c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C418.554,230.855,421.043,233.436,421.043,236.615z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_78_" cx="434.0964" cy="304.0791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_38_" fill="url(#path19818_78_)" stroke="#000000" d="M439.793,268.865c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C437.304,263.105,439.793,265.686,439.793,268.865z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_79_" cx="415.3464" cy="304.0791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_37_" fill="url(#path19818_79_)" stroke="#000000" d="M421.043,268.865c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C418.554,263.105,421.043,265.686,421.043,268.865z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_80_" cx="424.7214" cy="321.1621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_36_" fill="url(#path19818_80_)" stroke="#000000" d="M430.418,251.783c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C427.929,246.023,430.418,248.602,430.418,251.783z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_81_" cx="443.4714" cy="321.1621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_35_" fill="url(#path19818_81_)" stroke="#000000" d="M449.168,251.783c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C446.679,246.023,449.168,248.602,449.168,251.783z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_82_" cx="405.9714" cy="321.1621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_34_" fill="url(#path19818_82_)" stroke="#000000" d="M411.668,251.783c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C409.179,246.023,411.668,248.602,411.668,251.783z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_83_" cx="434.0964" cy="336.3291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_33_" fill="url(#path19818_83_)" stroke="#000000" d="M439.793,236.615c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C437.304,230.855,439.793,233.436,439.793,236.615z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="44.644" y1="211" x2="44.644" y2="252.743"/>
		<polygon fill="#272525" points="48.347,213.809 44.644,212.236 40.939,213.809 44.644,205.031 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="44.644" y1="144.629" x2="44.644" y2="176.743"/>
		<polygon fill="#272525" points="48.347,147.438 44.644,145.865 40.939,147.438 44.644,138.66 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_84_" cx="35.1277" cy="475.8291" r="5.6594" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_46_" fill="url(#path19818_84_)" stroke="#000000" d="M40.824,97.116c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C38.336,91.356,40.824,93.935,40.824,97.116z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_85_" cx="53.8777" cy="443.5791" r="5.6594" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_45_" fill="url(#path19818_85_)" stroke="#000000" d="M59.574,129.366c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C57.086,123.606,59.574,126.185,59.574,129.366z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_86_" cx="35.1277" cy="443.5791" r="5.6594" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_44_" fill="url(#path19818_86_)" stroke="#000000" d="M40.824,129.366c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C38.336,123.606,40.824,126.185,40.824,129.366z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_87_" cx="44.5027" cy="460.6621" r="5.6589" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_43_" fill="url(#path19818_87_)" stroke="#000000" d="M50.199,112.283c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C47.711,106.523,50.199,109.102,50.199,112.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_88_" cx="63.2527" cy="460.6621" r="5.6589" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_42_" fill="url(#path19818_88_)" stroke="#000000" d="M68.949,112.283c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C66.461,106.523,68.949,109.102,68.949,112.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_89_" cx="25.7527" cy="460.6621" r="5.6589" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_41_" fill="url(#path19818_89_)" stroke="#000000" d="M31.449,112.283c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C28.961,106.523,31.449,109.102,31.449,112.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_90_" cx="53.8777" cy="475.8291" r="5.6594" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_40_" fill="url(#path19818_90_)" stroke="#000000" d="M59.574,97.116c0,3.182-2.488,5.761-5.556,5.761
			c-3.068,0-5.557-2.579-5.557-5.761c0-3.181,2.487-5.76,5.557-5.76C57.086,91.356,59.574,93.935,59.574,97.116z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="154.737" y1="144.629" x2="154.737" y2="170.5"/>
		<polygon fill="#272525" points="158.44,147.438 154.737,145.865 151.033,147.438 154.737,138.66 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_91_" cx="144.8469" cy="475.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_60_" fill="url(#path19818_91_)" stroke="#000000" d="M150.543,97.116c0,3.182-2.487,5.761-5.556,5.761
			s-5.556-2.579-5.556-5.761c0-3.181,2.486-5.76,5.556-5.76C148.055,91.356,150.543,93.935,150.543,97.116z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_92_" cx="163.5969" cy="443.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_59_" fill="url(#path19818_92_)" stroke="#000000" d="M169.293,129.366c0,3.182-2.487,5.761-5.556,5.761
			s-5.556-2.579-5.556-5.761c0-3.181,2.486-5.76,5.556-5.76C166.805,123.606,169.293,126.185,169.293,129.366z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_93_" cx="144.8469" cy="443.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_58_" fill="url(#path19818_93_)" stroke="#000000" d="M150.543,129.366c0,3.182-2.487,5.761-5.556,5.761
			s-5.556-2.579-5.556-5.761c0-3.181,2.486-5.76,5.556-5.76C148.055,123.606,150.543,126.185,150.543,129.366z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_94_" cx="154.2219" cy="460.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_57_" fill="url(#path19818_94_)" stroke="#000000" d="M159.918,112.283c0,3.182-2.487,5.761-5.556,5.761
			s-5.556-2.579-5.556-5.761c0-3.181,2.486-5.76,5.556-5.76C157.43,106.523,159.918,109.102,159.918,112.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_95_" cx="172.9719" cy="460.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_56_" fill="url(#path19818_95_)" stroke="#000000" d="M178.668,112.283c0,3.182-2.487,5.761-5.556,5.761
			s-5.556-2.579-5.556-5.761c0-3.181,2.486-5.76,5.556-5.76C176.18,106.523,178.668,109.102,178.668,112.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_96_" cx="135.4719" cy="460.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_55_" fill="url(#path19818_96_)" stroke="#000000" d="M141.168,112.283c0,3.182-2.487,5.761-5.556,5.761
			s-5.556-2.579-5.556-5.761c0-3.181,2.486-5.76,5.556-5.76C138.68,106.523,141.168,109.102,141.168,112.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_97_" cx="163.5969" cy="475.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#AEDFE7"/>
			<stop  offset="0.1154" style="stop-color:#ADDFE8"/>
			<stop  offset="0.2033" style="stop-color:#ABDEEC"/>
			<stop  offset="0.2857" style="stop-color:#A1DCF1"/>
			<stop  offset="0.4066" style="stop-color:#9AD1F1"/>
			<stop  offset="0.9176" style="stop-color:#95BAE2"/>
			<stop  offset="0.9991" style="stop-color:#9E9CCD"/>
			<stop  offset="1" style="stop-color:#8FAEDA"/>
		</radialGradient>
		<path id="path19818_54_" fill="url(#path19818_97_)" stroke="#000000" d="M169.293,97.116c0,3.182-2.487,5.761-5.556,5.761
			s-5.556-2.579-5.556-5.761c0-3.181,2.486-5.76,5.556-5.76C166.805,91.356,169.293,93.935,169.293,97.116z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="293.361" y1="178.397" x2="275.113" y2="151.974"/>
		<polygon fill="#272525" points="288.719,178.19 292.659,177.38 294.813,173.981 296.754,183.309 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="341.361" y1="155.974" x2="323.113" y2="182.397"/>
		<polygon fill="#272525" points="342.812,160.389 340.659,156.991 336.718,156.18 344.754,151.062 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_98_" cx="335.3464" cy="461.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_53_" fill="url(#path19818_98_)" stroke="#000000" d="M341.043,111.115c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C338.554,105.355,341.043,107.936,341.043,111.115z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_99_" cx="354.0964" cy="429.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_52_" fill="url(#path19818_99_)" stroke="#000000" d="M359.793,143.365c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C357.304,137.605,359.793,140.186,359.793,143.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_100_" cx="335.3464" cy="429.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_51_" fill="url(#path19818_100_)" stroke="#000000" d="M341.043,143.365c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C338.554,137.605,341.043,140.186,341.043,143.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_101_" cx="344.7214" cy="446.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_50_" fill="url(#path19818_101_)" stroke="#000000" d="M350.418,126.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C347.929,120.523,350.418,123.102,350.418,126.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_102_" cx="363.4714" cy="446.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_49_" fill="url(#path19818_102_)" stroke="#000000" d="M369.168,126.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C366.679,120.523,369.168,123.102,369.168,126.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_103_" cx="325.9714" cy="446.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_48_" fill="url(#path19818_103_)" stroke="#000000" d="M331.668,126.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C329.179,120.523,331.668,123.102,331.668,126.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_104_" cx="354.0964" cy="461.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_47_" fill="url(#path19818_104_)" stroke="#000000" d="M359.793,111.115c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C357.304,105.355,359.793,107.936,359.793,111.115z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="445.361" y1="156.974" x2="427.113" y2="183.397"/>
		<polygon fill="#272525" points="446.812,161.389 444.659,157.991 440.718,157.18 448.754,152.062 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_105_" cx="439.3464" cy="460.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_67_" fill="url(#path19818_105_)" stroke="#000000" d="M445.043,112.115c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C442.554,106.355,445.043,108.936,445.043,112.115z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_106_" cx="458.0964" cy="428.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_66_" fill="url(#path19818_106_)" stroke="#000000" d="M463.793,144.365c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C461.304,138.605,463.793,141.186,463.793,144.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_107_" cx="439.3464" cy="428.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_65_" fill="url(#path19818_107_)" stroke="#000000" d="M445.043,144.365c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C442.554,138.605,445.043,141.186,445.043,144.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_108_" cx="448.7214" cy="445.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_64_" fill="url(#path19818_108_)" stroke="#000000" d="M454.418,127.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C451.929,121.523,454.418,124.102,454.418,127.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_109_" cx="467.4714" cy="445.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_63_" fill="url(#path19818_109_)" stroke="#000000" d="M473.168,127.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C470.679,121.523,473.168,124.102,473.168,127.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_110_" cx="429.9714" cy="445.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_62_" fill="url(#path19818_110_)" stroke="#000000" d="M435.668,127.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.182,2.487-5.76,5.557-5.76C433.179,121.523,435.668,124.102,435.668,127.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_111_" cx="458.0964" cy="460.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFDD9E"/>
			<stop  offset="0.2912" style="stop-color:#FFDA9C"/>
			<stop  offset="0.4343" style="stop-color:#FFD297"/>
			<stop  offset="0.545" style="stop-color:#FCC58E"/>
			<stop  offset="0.6392" style="stop-color:#F9B180"/>
			<stop  offset="0.7229" style="stop-color:#F69971"/>
			<stop  offset="0.799" style="stop-color:#F37B5C"/>
			<stop  offset="0.8695" style="stop-color:#F05B45"/>
			<stop  offset="0.9348" style="stop-color:#EE392D"/>
			<stop  offset="0.9951" style="stop-color:#EC2224"/>
			<stop  offset="1" style="stop-color:#EC2224"/>
		</radialGradient>
		<path id="path19818_61_" fill="url(#path19818_111_)" stroke="#000000" d="M463.793,112.115c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.18,2.487-5.76,5.557-5.76C461.304,106.355,463.793,108.936,463.793,112.115z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#272525" x1="386.236" y1="511.001" x2="386.236" y2="435"/>
		<polygon fill="#272525" points="382.533,508.192 386.236,509.766 389.94,508.192 386.236,516.971 		"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="path19818_112_" cx="376.8464" cy="48.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_74_" fill="url(#path19818_112_)" stroke="#000000" d="M382.543,524.115c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.181,2.487-5.76,5.557-5.76C380.054,518.355,382.543,520.936,382.543,524.115z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_113_" cx="395.5964" cy="16.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_73_" fill="url(#path19818_113_)" stroke="#000000" d="M401.293,556.365c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.181,2.487-5.76,5.557-5.76C398.804,550.605,401.293,553.186,401.293,556.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_114_" cx="376.8464" cy="16.5791" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_72_" fill="url(#path19818_114_)" stroke="#000000" d="M382.543,556.365c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.181,2.487-5.76,5.557-5.76C380.054,550.605,382.543,553.186,382.543,556.365z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_115_" cx="386.2214" cy="33.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_71_" fill="url(#path19818_115_)" stroke="#000000" d="M391.918,539.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.183,2.487-5.76,5.557-5.76C389.429,533.523,391.918,536.102,391.918,539.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_116_" cx="404.9714" cy="33.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_70_" fill="url(#path19818_116_)" stroke="#000000" d="M410.668,539.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.183,2.487-5.76,5.557-5.76C408.179,533.523,410.668,536.102,410.668,539.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_117_" cx="367.4714" cy="33.6621" r="5.6586" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_69_" fill="url(#path19818_117_)" stroke="#000000" d="M373.168,539.283c0,3.182-2.488,5.76-5.556,5.76
			c-3.068,0-5.557-2.578-5.557-5.76c0-3.183,2.487-5.76,5.557-5.76C370.679,533.523,373.168,536.102,373.168,539.283z"/>
	</g>
	<g>
		
			<radialGradient id="path19818_118_" cx="395.5964" cy="48.8291" r="5.6591" gradientTransform="matrix(1 0 0 -1 0.1401 572.9453)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#C0FF6C"/>
			<stop  offset="0.0769" style="stop-color:#BFFF6C"/>
			<stop  offset="0.1868" style="stop-color:#BAFC6C"/>
			<stop  offset="0.2747" style="stop-color:#B4FA6B"/>
			<stop  offset="0.3681" style="stop-color:#AAF76A"/>
			<stop  offset="0.4505" style="stop-color:#9EF269"/>
			<stop  offset="0.522" style="stop-color:#91EC68"/>
			<stop  offset="0.6374" style="stop-color:#86E666"/>
			<stop  offset="0.7473" style="stop-color:#7EDE64"/>
			<stop  offset="0.8681" style="stop-color:#7DDD64"/>
		</radialGradient>
		<path id="path19818_68_" fill="url(#path19818_118_)" stroke="#000000" d="M401.293,524.115c0,3.182-2.488,5.762-5.556,5.762
			c-3.068,0-5.557-2.58-5.557-5.762c0-3.181,2.487-5.76,5.557-5.76C398.804,518.355,401.293,520.936,401.293,524.115z"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#272525" d="M386.333,439.501c0,18,6.005,38,33.5,38"/>
		<polygon fill="#272525" points="417.024,481.204 418.597,477.501 417.024,473.797 425.802,477.501 		"/>
	</g>
</g>
<g>
	<path d="M9.301,29.426l-1.399,4.241H6.1l4.581-13.483h2.101l4.601,13.483h-1.86l-1.44-4.241H9.301z M13.722,28.066l-1.32-3.881
		c-0.3-0.88-0.5-1.681-0.7-2.46h-0.04c-0.2,0.8-0.42,1.62-0.68,2.44l-1.32,3.901H13.722z"/>
</g>
<g>
	<path d="M153.806,11.544h-0.028l-1.583,0.854l-0.238-0.938l1.989-1.064h1.051V19.5h-1.19V11.544z"/>
</g>
<g>
	<path d="M299.63,21v-0.756l0.967-0.938c2.325-2.213,3.376-3.39,3.391-4.763c0-0.924-0.448-1.779-1.808-1.779
		c-0.825,0-1.513,0.42-1.933,0.771l-0.394-0.869c0.631-0.532,1.526-0.924,2.577-0.924c1.961,0,2.788,1.345,2.788,2.647
		c0,1.681-1.219,3.04-3.138,4.888l-0.729,0.672v0.028h4.091V21H299.63z"/>
</g>
<g>
	<path d="M213.925,114.149c0.351,0.224,1.162,0.574,2.018,0.574c1.583,0,2.073-1.009,2.06-1.765
		c-0.015-1.274-1.163-1.821-2.354-1.821h-0.688v-0.925h0.688c0.896,0,2.031-0.462,2.031-1.541c0-0.729-0.464-1.373-1.598-1.373
		c-0.729,0-1.429,0.322-1.82,0.603l-0.322-0.896c0.477-0.35,1.399-0.7,2.381-0.7c1.793,0,2.604,1.064,2.604,2.171
		c0,0.938-0.56,1.737-1.681,2.143v0.028c1.121,0.224,2.031,1.064,2.031,2.339c0,1.457-1.135,2.731-3.319,2.731
		c-1.022,0-1.92-0.322-2.368-0.617L213.925,114.149z"/>
</g>
<g>
	<path d="M245.44,115.563v-2.479h-4.23v-0.813l4.063-5.813h1.331v5.659h1.273v0.966h-1.273v2.479L245.44,115.563L245.44,115.563z
		 M245.44,112.118v-3.04c0-0.477,0.015-0.953,0.042-1.429h-0.042c-0.28,0.532-0.505,0.924-0.757,1.345l-2.228,3.096v0.028H245.44z"
		/>
</g>
<g>
	<path d="M222.065,203.495h-3.475l-0.351,2.339c0.21-0.028,0.406-0.056,0.742-0.056c0.7,0,1.4,0.154,1.961,0.49
		c0.715,0.406,1.303,1.191,1.303,2.339c0,1.779-1.414,3.11-3.39,3.11c-0.994,0-1.835-0.28-2.271-0.561l0.31-0.938
		c0.378,0.224,1.121,0.504,1.946,0.504c1.162,0,2.157-0.756,2.157-1.975c-0.015-1.177-0.799-2.017-2.62-2.017
		c-0.518,0-0.924,0.056-1.26,0.098l0.588-4.371h4.356v1.038H222.065z"/>
</g>
<g>
	<path d="M247.827,203.327c-0.252-0.014-0.574,0-0.925,0.056c-1.934,0.322-2.955,1.737-3.166,3.236h0.043
		c0.434-0.574,1.189-1.05,2.199-1.05c1.609,0,2.745,1.163,2.745,2.941c0,1.667-1.136,3.208-3.025,3.208
		c-1.947,0-3.222-1.513-3.222-3.88c0-1.793,0.645-3.208,1.541-4.104c0.756-0.743,1.765-1.205,2.913-1.345
		c0.363-0.056,0.673-0.07,0.896-0.07L247.827,203.327L247.827,203.327z M245.712,210.765c1.052,0,1.766-0.882,1.766-2.185
		c0-1.303-0.742-2.087-1.877-2.087c-0.742,0-1.429,0.462-1.766,1.121c-0.084,0.14-0.14,0.322-0.14,0.546
		c0.027,1.499,0.714,2.605,2.003,2.605H245.712z"/>
</g>
<g>
	<path d="M386.541,236.895v0.813L382.577,246h-1.274l3.95-8.054v-0.028h-4.454v-1.022L386.541,236.895L386.541,236.895z"/>
</g>
<g>
	<path d="M33.311,231.209c-1.008-0.476-1.442-1.261-1.442-2.045c0-1.442,1.218-2.423,2.815-2.423c1.765,0,2.646,1.106,2.646,2.241
		c0,0.77-0.378,1.597-1.499,2.129v0.042c1.135,0.448,1.835,1.247,1.835,2.354c0,1.583-1.357,2.647-3.096,2.647
		c-1.905,0-3.054-1.135-3.054-2.465c0-1.149,0.687-1.961,1.807-2.438L33.311,231.209z M36.421,233.633
		c0-1.106-0.771-1.639-2.003-1.989c-1.063,0.308-1.639,1.009-1.639,1.877c-0.042,0.925,0.659,1.737,1.821,1.737
		C35.707,235.258,36.421,234.557,36.421,233.633z M33.031,229.08c0,0.911,0.686,1.401,1.737,1.681
		c0.783-0.266,1.387-0.827,1.387-1.653c0-0.729-0.434-1.485-1.541-1.485C33.591,227.624,33.031,228.296,33.031,229.08z"/>
</g>
<g>
	<path d="M32.345,165.131c0.266,0.028,0.573,0,0.994-0.042c0.715-0.098,1.388-0.392,1.905-0.882
		c0.604-0.546,1.037-1.345,1.205-2.423h-0.042c-0.504,0.616-1.232,0.98-2.143,0.98c-1.64,0-2.689-1.232-2.689-2.788
		c0-1.723,1.247-3.235,3.11-3.235c1.862,0,3.012,1.513,3.012,3.838c0,2.003-0.672,3.404-1.569,4.272
		c-0.7,0.686-1.667,1.106-2.646,1.218c-0.448,0.07-0.841,0.084-1.135,0.07v-1.008H32.345z M34.572,157.68
		c-1.037,0-1.779,0.924-1.779,2.213c0,1.135,0.688,1.933,1.751,1.933c0.826,0,1.472-0.406,1.793-0.953
		c0.07-0.112,0.112-0.252,0.112-0.448c0-1.555-0.574-2.745-1.863-2.745H34.572z"/>
</g>
<g>
	<path d="M142.345,162.131c0.266,0.028,0.573,0,0.994-0.042c0.715-0.098,1.388-0.392,1.905-0.882
		c0.604-0.546,1.037-1.345,1.205-2.423h-0.042c-0.504,0.616-1.232,0.98-2.143,0.98c-1.64,0-2.689-1.232-2.689-2.788
		c0-1.723,1.247-3.235,3.11-3.235c1.862,0,3.012,1.513,3.012,3.838c0,2.003-0.672,3.404-1.569,4.272
		c-0.701,0.686-1.667,1.106-2.646,1.218c-0.448,0.07-0.841,0.084-1.135,0.07v-1.008H142.345z M144.572,154.68
		c-1.037,0-1.779,0.924-1.779,2.213c0,1.135,0.688,1.933,1.751,1.933c0.826,0,1.472-0.406,1.793-0.953
		c0.07-0.112,0.112-0.252,0.112-0.448c0-1.555-0.574-2.745-1.863-2.745H144.572z"/>
</g>
<g>
	<path d="M289.306,160.044h-0.028l-1.582,0.854l-0.238-0.938l1.989-1.064h1.05V168h-1.189L289.306,160.044L289.306,160.044z"/>
	<path d="M299.863,163.35c0,3.096-1.148,4.805-3.166,4.805c-1.778,0-2.983-1.667-3.012-4.679c0-3.054,1.316-4.734,3.166-4.734
		C298.771,158.741,299.863,160.45,299.863,163.35z M294.919,163.49c0,2.367,0.729,3.712,1.85,3.712c1.261,0,1.862-1.471,1.862-3.796
		c0-2.241-0.574-3.712-1.85-3.712C295.703,159.693,294.919,161.01,294.919,163.49z"/>
</g>
<g>
	<path d="M321.305,160.044h-0.027l-1.582,0.854l-0.238-0.938l1.989-1.064h1.05V168h-1.19L321.305,160.044L321.305,160.044z"/>
	<path d="M328.487,160.044h-0.028l-1.582,0.854l-0.238-0.938l1.989-1.064h1.05V168h-1.189L328.487,160.044L328.487,160.044z"/>
</g>
<g>
	<path d="M425.305,160.044h-0.027l-1.582,0.854l-0.238-0.938l1.989-1.064h1.05V168h-1.19L425.305,160.044L425.305,160.044z"/>
	<path d="M432.487,160.044h-0.028l-1.582,0.854l-0.238-0.938l1.989-1.064h1.05V168h-1.189L432.487,160.044L432.487,160.044z"/>
</g>
<g>
	<path d="M183.306,305.044h-0.028l-1.583,0.854l-0.238-0.938l1.989-1.063h1.051V313h-1.19V305.044z"/>
	<path d="M187.812,313v-0.757l0.966-0.938c2.325-2.213,3.376-3.39,3.39-4.762c0-0.925-0.447-1.779-1.807-1.779
		c-0.826,0-1.513,0.42-1.933,0.771l-0.393-0.869c0.63-0.532,1.527-0.924,2.577-0.924c1.961,0,2.788,1.345,2.788,2.646
		c0,1.682-1.219,3.039-3.138,4.89l-0.729,0.672v0.028h4.09V313H187.812z"/>
</g>
<g>
	<path d="M183.306,335.044h-0.028l-1.583,0.854l-0.238-0.938l1.989-1.063h1.051V343h-1.19V335.044z"/>
	<path d="M188.106,341.585c0.351,0.226,1.163,0.574,2.017,0.574c1.583,0,2.073-1.009,2.06-1.765
		c-0.015-1.274-1.163-1.822-2.354-1.822h-0.687v-0.924h0.687c0.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.43,0.322-1.821,0.604l-0.322-0.896c0.477-0.351,1.401-0.699,2.381-0.699c1.793,0,2.605,1.064,2.605,2.171
		c0,0.938-0.562,1.737-1.682,2.144v0.027c1.121,0.225,2.031,1.064,2.031,2.34c0,1.456-1.135,2.73-3.319,2.73
		c-1.022,0-1.92-0.321-2.367-0.615L188.106,341.585z"/>
</g>
<g>
	<path d="M213.306,366.607h-0.028l-1.582,0.854l-0.238-0.938l1.989-1.064h1.05v9.104h-1.189L213.306,366.607L213.306,366.607z"/>
	<path d="M221.622,374.562v-2.479h-4.229v-0.812l4.062-5.813h1.331v5.658h1.274v0.967h-1.274v2.479H221.622L221.622,374.562z
		 M221.622,371.117v-3.039c0-0.477,0.015-0.953,0.042-1.43h-0.042c-0.28,0.533-0.504,0.926-0.757,1.346l-2.227,3.096v0.027H221.622
		L221.622,371.117z"/>
</g>
<g>
	<path d="M243.306,366.607h-0.028l-1.582,0.854l-0.238-0.938l1.988-1.064h1.051v9.104h-1.189L243.306,366.607L243.306,366.607z"/>
	<path d="M253.247,366.495h-3.474l-0.352,2.339c0.21-0.027,0.406-0.057,0.742-0.057c0.7,0,1.401,0.154,1.962,0.49
		c0.714,0.406,1.304,1.19,1.304,2.34c0,1.778-1.416,3.109-3.392,3.109c-0.994,0-1.835-0.279-2.27-0.561l0.309-0.938
		c0.379,0.226,1.121,0.505,1.947,0.505c1.162,0,2.156-0.757,2.156-1.976c-0.015-1.177-0.799-2.019-2.619-2.019
		c-0.519,0-0.924,0.058-1.261,0.1l0.589-4.37h4.355v1.037H253.247z"/>
</g>
<g>
	<path d="M393.305,482.044h-0.027l-1.582,0.854l-0.238-0.938l1.988-1.063h1.051V490h-1.19L393.305,482.044L393.305,482.044z"/>
	<path d="M403.009,481.764c-0.252-0.014-0.574,0-0.925,0.057c-1.933,0.321-2.955,1.736-3.166,3.235h0.043
		c0.434-0.573,1.19-1.051,2.199-1.051c1.609,0,2.745,1.162,2.745,2.941c0,1.667-1.136,3.208-3.025,3.208
		c-1.947,0-3.222-1.514-3.222-3.88c0-1.793,0.645-3.208,1.541-4.104c0.756-0.742,1.765-1.205,2.913-1.345
		c0.363-0.058,0.673-0.07,0.896-0.07L403.009,481.764L403.009,481.764z M400.893,489.201c1.052,0,1.766-0.882,1.766-2.186
		c0-1.303-0.742-2.087-1.877-2.087c-0.742,0-1.429,0.462-1.766,1.12c-0.084,0.141-0.14,0.322-0.14,0.546
		c0.027,1.499,0.714,2.605,2.003,2.605L400.893,489.201L400.893,489.201z"/>
</g>
</svg>
</window>