Location: Nygren, Fiset, Firek, Clark, Lindblad, Clark, Giles, 1998 @ 7b2fedf2817f / nygren_1998.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2010-04-09 13:55:45+12:00
Desc:
Added SVG to session file, zoom to be fixed
Permanent Source URI:
https://models.physiomeproject.org/workspace/nygren_fiset_firek_clark_lindblad_clark_giles_1998/rawfile/7b2fedf2817fac4bcc31114eb1ed7877c884005d/nygren_1998.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 =
  {

			
	i_rel: {
		id: "i_rel",
		y: "Ca_handling_by_the_SR/i_rel",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#ff9900",
		linestyle: "none"
	},

	i_up: {
		id: "i_up",
		y: "Ca_handling_by_the_SR/i_up",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#ff00cc",
		linestyle: "none"
	},

	i_Ca_L: {
		id: "i_Ca_L",
		y: "L_type_Ca_channel/i_Ca_L",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#cc00ff",
		linestyle: "none"
	},


	Na_i: {
		id: "Na_i",
		y: "intracellular_ion_concentrations/Na_i",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#3300ff",
		linestyle: "none"
	},


	Ca_i: {
		id: "Ca_i",
		y: "intracellular_ion_concentrations/Ca_i",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#cc66ff",
		linestyle: "none"
	},
	
	K_i: {
		id: "K_i",
		y: "intracellular_ion_concentrations/K_i",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#ccccff",
		linestyle: "none"
	},
	
		Na_c: {
		id: "Na_c",
		y: "cleft_space_ion_concentrations/Na_c",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#ff6600",
		linestyle: "none"
	},
	
	Ca_c: {
		id: "Ca_c",
		y: "cleft_space_ion_concentrations/Ca_c",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#cccccc",
		linestyle: "none"
	},
	
	K_c: {
		id: "K_c",
		y: "cleft_space_ion_concentrations/K_c",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#ffff33",
		linestyle: "none"
	},
	
	K_b: {
		id: "K_b",
		y: "cleft_space_ion_concentrations/K_b",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#00cc00",
		linestyle: "none"
	},
	
	Ca_b: {
		id: "Ca_b",
		y: "cleft_space_ion_concentrations/Ca_b",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#ff0099",
		linestyle: "none"
	},
	
	Na_b: {
		id: "Na_b",
		y: "cleft_space_ion_concentrations/Na_b",
		x: "environment/time",
		graph: "Traces: channel/ exchanger/ pump/ currents against Time",
		colour: "#ccff00",
		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>
	<path fill="none" stroke="#0092DF" stroke-width="2.0551" d="M117.243,264.475c0,5.5-4.5,10-10,10H27.039c-5.5,0-10-4.5-10-10V23.6
		c0-5.5,4.5-10,10-10h80.204c5.5,0,10,4.5,10,10V264.475z"/>
</g>
<g>
	<path d="M57.265,32.024c0.456-0.096,1.175-0.168,1.906-0.168c1.043,0,1.716,0.18,2.22,0.588c0.42,0.312,0.672,0.792,0.672,1.427
		c0,0.779-0.517,1.463-1.367,1.775v0.024c0.768,0.192,1.667,0.828,1.667,2.027c0,0.696-0.276,1.223-0.684,1.619
		c-0.564,0.516-1.476,0.755-2.795,0.755c-0.72,0-1.271-0.048-1.618-0.096L57.265,32.024L57.265,32.024z M58.309,35.334h0.946
		c1.104,0,1.751-0.576,1.751-1.355c0-0.948-0.72-1.319-1.774-1.319c-0.48,0-0.755,0.036-0.923,0.072V35.334z M58.309,39.208
		c0.204,0.036,0.503,0.048,0.875,0.048c1.079,0,2.074-0.396,2.074-1.571c0-1.103-0.946-1.559-2.087-1.559h-0.862V39.208z"/>
	<path d="M68.59,38.417c0,0.6,0.013,1.127,0.049,1.583h-0.937l-0.06-0.947h-0.024c-0.276,0.468-0.887,1.079-1.919,1.079
		c-0.911,0-2.003-0.503-2.003-2.542v-3.394h1.056v3.214c0,1.104,0.336,1.847,1.295,1.847c0.708,0,1.199-0.492,1.392-0.959
		c0.06-0.156,0.096-0.348,0.096-0.54v-3.562h1.056V38.417z"/>
	<path d="M70.345,31.485H71.4V40h-1.056L70.345,31.485L70.345,31.485z"/>
	<path d="M74.22,36.858h0.023c0.145-0.204,0.348-0.456,0.516-0.66l1.703-2.003h1.271l-2.243,2.387L78.046,40h-1.282l-2.004-2.782
		l-0.539,0.6V40h-1.044v-8.515h1.044V36.858z"/>
	<path d="M52.987,53.128c0.468,0.288,1.151,0.528,1.871,0.528c1.066,0,1.69-0.563,1.69-1.379c0-0.755-0.432-1.187-1.522-1.607
		c-1.319-0.468-2.135-1.151-2.135-2.291c0-1.259,1.043-2.195,2.613-2.195c0.828,0,1.428,0.192,1.787,0.396l-0.288,0.852
		c-0.264-0.144-0.803-0.384-1.534-0.384c-1.104,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
		c1.366,0.528,2.062,1.188,2.062,2.375c0,1.247-0.923,2.338-2.831,2.338c-0.779,0-1.631-0.24-2.062-0.528L52.987,53.128z"/>
	<path d="M59.011,50.49c0-0.744-0.024-1.343-0.049-1.896h0.947l0.048,0.995h0.024c0.432-0.708,1.115-1.127,2.062-1.127
		c1.403,0,2.459,1.187,2.459,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.768,0-1.439-0.336-1.787-0.912h-0.023v3.154h-1.043V50.49z
		 M60.055,52.037c0,0.156,0.023,0.3,0.048,0.432c0.191,0.732,0.828,1.235,1.583,1.235c1.115,0,1.763-0.911,1.763-2.243
		c0-1.163-0.612-2.159-1.727-2.159c-0.721,0-1.392,0.516-1.596,1.307c-0.036,0.132-0.071,0.288-0.071,0.432V52.037z"/>
	<path d="M69.917,53.009c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.176-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L69.917,53.009L69.917,53.009z M68.897,51.438c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.234-0.48,1.402-0.972c0.036-0.108,0.061-0.229,0.061-0.336V51.438z"/>
	<path d="M75.761,54.184c-0.276,0.144-0.889,0.348-1.667,0.348c-1.752,0-2.892-1.199-2.892-2.974c0-1.787,1.224-3.083,3.119-3.083
		c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.646-0.276-1.223-0.276c-1.332,0-2.051,0.984-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.996-0.156,1.295-0.288L75.761,54.184z"/>
	<path d="M77.515,51.689c0.023,1.427,0.936,2.015,1.99,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.023,0.384-0.036,0.492L77.515,51.689L77.515,51.689z M80.609,50.934c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H80.609z"/>
</g>
<g>
	<path fill="none" stroke="#0092DF" stroke-width="2.0551" d="M290.221,264.475c0,5.5-4.5,10-10,10h-80.204c-5.5,0-10-4.5-10-10
		V23.6c0-5.5,4.5-10,10-10h80.204c5.5,0,10,4.5,10,10V264.475z"/>
</g>
<g>
	<path d="M234.974,39.736c-0.385,0.192-1.151,0.396-2.136,0.396c-2.278,0-3.993-1.451-3.993-4.102c0-2.531,1.715-4.246,4.222-4.246
		c1.007,0,1.643,0.216,1.919,0.36l-0.252,0.852c-0.396-0.192-0.959-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
		c0,1.979,1.139,3.25,3.106,3.25c0.635,0,1.282-0.132,1.702-0.336L234.974,39.736z"/>
	<path d="M236.249,31.485h1.057V40h-1.057V31.485z"/>
	<path d="M239.668,37.29c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.492L239.668,37.29L239.668,37.29z M242.762,36.534c0.012-0.671-0.276-1.715-1.464-1.715
		c-1.066,0-1.534,0.983-1.618,1.715H242.762z"/>
	<path d="M245.2,40v-5.001h-0.815v-0.803h0.815V33.92c0-0.815,0.18-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
		c0.372,0,0.696,0.084,0.899,0.168l-0.145,0.816c-0.156-0.072-0.372-0.132-0.671-0.132c-0.898,0-1.127,0.792-1.127,1.679v0.312
		h1.403v0.803h-1.403V40H245.2z"/>
	<path d="M250,32.804v1.392h1.512v0.803H250v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.612-0.072l0.048,0.792
		c-0.204,0.084-0.528,0.156-0.936,0.156c-0.492,0-0.889-0.168-1.141-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167h-0.898v-0.803
		h0.898v-1.067L250,32.804z"/>
	<path d="M225.964,53.128c0.469,0.288,1.151,0.528,1.871,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.755-0.433-1.187-1.523-1.607
		c-1.318-0.468-2.135-1.151-2.135-2.291c0-1.259,1.043-2.195,2.614-2.195c0.828,0,1.427,0.192,1.787,0.396l-0.288,0.852
		c-0.265-0.144-0.803-0.384-1.535-0.384c-1.104,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
		c1.367,0.528,2.062,1.188,2.062,2.375c0,1.247-0.923,2.338-2.83,2.338c-0.779,0-1.632-0.24-2.063-0.528L225.964,53.128z"/>
	<path d="M231.988,50.49c0-0.744-0.024-1.343-0.048-1.896h0.947l0.048,0.995h0.023c0.433-0.708,1.115-1.127,2.063-1.127
		c1.402,0,2.459,1.187,2.459,2.95c0,2.087-1.271,3.118-2.64,3.118c-0.768,0-1.438-0.336-1.786-0.912h-0.024v3.154h-1.043V50.49z
		 M233.032,52.037c0,0.156,0.024,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235c1.116,0,1.763-0.911,1.763-2.243
		c0-1.163-0.611-2.159-1.727-2.159c-0.72,0-1.391,0.516-1.595,1.307c-0.036,0.132-0.072,0.288-0.072,0.432V52.037L233.032,52.037z"
		/>
	<path d="M242.894,53.009c0,0.503,0.023,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.774,0.863
		c-1.176,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
		c-0.54,0-1.103,0.168-1.511,0.432l-0.24-0.695c0.48-0.312,1.176-0.516,1.907-0.516c1.774,0,2.207,1.211,2.207,2.375L242.894,53.009
		L242.894,53.009z M241.875,51.438c-1.15-0.024-2.459,0.18-2.459,1.307c0,0.684,0.456,1.008,0.996,1.008
		c0.755,0,1.235-0.48,1.403-0.972c0.036-0.108,0.06-0.229,0.06-0.336V51.438z"/>
	<path d="M248.738,54.184c-0.276,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.624,0,1.176,0.156,1.464,0.3l-0.24,0.815c-0.252-0.144-0.647-0.276-1.224-0.276c-1.332,0-2.051,0.984-2.051,2.195
		c0,1.343,0.864,2.171,2.016,2.171c0.6,0,0.995-0.156,1.295-0.288L248.738,54.184z"/>
	<path d="M250.492,51.689c0.024,1.427,0.937,2.015,1.991,2.015c0.755,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.007,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.492L250.492,51.689L250.492,51.689z M253.586,50.934c0.013-0.671-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H253.586z"/>
</g>
<g>
	<path fill="none" stroke="#0092DF" stroke-width="2.0551" d="M711.853,265.196c0,5.5-4.5,10-10,10H371.718c-5.5,0-10-4.5-10-10
		V24.321c0-5.5,4.5-10,10-10h330.136c5.5,0,10,4.5,10,10V265.196z"/>
</g>
<g>
	<path d="M376.086,27.917V36h-1.044v-8.083H376.086z"/>
	<path d="M377.995,31.766c0-0.6-0.013-1.091-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.96-1.091,1.919-1.091
		c0.805,0,2.051,0.479,2.051,2.47V36h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492V36h-1.055V31.766L377.995,31.766z"/>
	<path d="M385.877,28.804v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.792c-0.203,0.084-0.527,0.156-0.937,0.156c-0.49,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.898v-0.803h0.898v-1.067L385.877,28.804z"/>
	<path d="M388.579,32.006c0-0.684-0.013-1.271-0.049-1.811h0.924l0.036,1.139h0.048c0.264-0.779,0.899-1.271,1.606-1.271
		c0.12,0,0.204,0.012,0.301,0.036v0.996c-0.108-0.024-0.217-0.036-0.36-0.036c-0.743,0-1.271,0.564-1.415,1.355
		c-0.022,0.144-0.048,0.312-0.048,0.492V36h-1.043V32.006z"/>
	<path d="M396.519,34.609c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.773-0.828-1.773-1.667c0-1.403,1.247-2.171,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.513,0.432l-0.238-0.695c0.479-0.312,1.175-0.516,1.906-0.516c1.774,0,2.206,1.211,2.206,2.375
		L396.519,34.609L396.519,34.609z M395.5,33.038c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.234-0.48,1.403-0.972c0.035-0.108,0.06-0.228,0.06-0.336V33.038z"/>
	<path d="M402.364,35.784c-0.276,0.144-0.889,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.238,0.815c-0.252-0.144-0.648-0.275-1.225-0.275c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.288L402.364,35.784z"/>
	<path d="M404.117,33.29c0.023,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.18,0.756
		c-0.371,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L404.117,33.29L404.117,33.29z M407.212,32.534c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H407.212z"/>
	<path d="M409.543,27.485h1.055V36h-1.055V27.485z"/>
	<path d="M412.374,27.485h1.055V36h-1.055V27.485z"/>
	<path d="M420.062,34.417c0,0.6,0.014,1.127,0.05,1.583h-0.937l-0.061-0.947h-0.023c-0.275,0.468-0.888,1.079-1.919,1.079
		c-0.912,0-2.003-0.503-2.003-2.542v-3.394h1.055v3.214c0,1.104,0.336,1.847,1.296,1.847c0.707,0,1.199-0.492,1.392-0.959
		c0.061-0.156,0.097-0.348,0.097-0.54v-3.562h1.055L420.062,34.417L420.062,34.417z"/>
	<path d="M421.818,27.485h1.055V36h-1.055V27.485z"/>
	<path d="M428.727,34.609c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.773-0.828-1.773-1.667c0-1.403,1.247-2.171,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.175-0.516,1.905-0.516c1.775,0,2.207,1.211,2.207,2.375
		L428.727,34.609L428.727,34.609z M427.708,33.038c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.235-0.48,1.403-0.972c0.035-0.108,0.06-0.228,0.06-0.336V33.038z"/>
	<path d="M430.434,32.006c0-0.684-0.013-1.271-0.049-1.811h0.924l0.036,1.139h0.048c0.265-0.779,0.899-1.271,1.607-1.271
		c0.12,0,0.204,0.012,0.3,0.036v0.996c-0.107-0.024-0.216-0.036-0.359-0.036c-0.743,0-1.271,0.564-1.415,1.355
		c-0.023,0.144-0.049,0.312-0.049,0.492V36h-1.043V32.006z"/>
	<path d="M436.794,34.729c0.468,0.288,1.151,0.528,1.871,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.755-0.434-1.187-1.523-1.607
		c-1.319-0.468-2.135-1.151-2.135-2.291c0-1.259,1.043-2.195,2.614-2.195c0.826,0,1.428,0.192,1.786,0.396l-0.288,0.852
		c-0.264-0.144-0.804-0.384-1.534-0.384c-1.104,0-1.522,0.66-1.522,1.211c0,0.755,0.491,1.127,1.606,1.559
		c1.366,0.528,2.062,1.188,2.062,2.375c0,1.248-0.924,2.339-2.831,2.339c-0.779,0-1.631-0.24-2.062-0.528L436.794,34.729z"/>
	<path d="M442.818,32.09c0-0.744-0.024-1.343-0.05-1.895h0.948l0.048,0.995h0.023c0.432-0.708,1.115-1.127,2.062-1.127
		c1.403,0,2.458,1.187,2.458,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.768,0-1.438-0.336-1.786-0.912h-0.023v3.154h-1.043
		L442.818,32.09L442.818,32.09z M443.861,33.637c0,0.156,0.023,0.3,0.048,0.432c0.191,0.732,0.828,1.235,1.583,1.235
		c1.115,0,1.764-0.911,1.764-2.243c0-1.163-0.612-2.159-1.728-2.159c-0.721,0-1.393,0.516-1.596,1.307
		c-0.035,0.132-0.071,0.288-0.071,0.432V33.637L443.861,33.637z"/>
	<path d="M453.722,34.609c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.773-0.828-1.773-1.667c0-1.403,1.246-2.171,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.513,0.432l-0.238-0.695c0.479-0.312,1.175-0.516,1.905-0.516c1.775,0,2.207,1.211,2.207,2.375
		L453.722,34.609L453.722,34.609z M452.703,33.038c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.234-0.48,1.402-0.972c0.036-0.108,0.061-0.228,0.061-0.336V33.038z"/>
	<path d="M459.567,35.784c-0.276,0.144-0.889,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.239,0.815c-0.252-0.144-0.647-0.275-1.224-0.275c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.288L459.567,35.784z"/>
	<path d="M461.32,33.29c0.023,1.427,0.936,2.015,1.99,2.015c0.757,0,1.212-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.023,0.384-0.035,0.492L461.32,33.29L461.32,33.29z M464.415,32.534c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H464.415z"/>
</g>
<g>
	<g>
		<g>
			<path fill="#BFDDFF" d="M685,140h-88c-5.5,0-10,4.5-10,10v29h-48v-29c0-5.5-4.5-10-10-10h-88c-5.5,0-10,4.5-10,10v85
				c0,5.5,4.5,10,10,10h88c5.5,0,10-4.5,10-10v-31h48v31c0,5.5,4.5,10,10,10h88c5.5,0,10-4.5,10-10v-85C695,144.5,690.5,140,685,140
				z"/>
		</g>
		<g>
			<path fill="none" stroke="#0092DF" stroke-width="5.31" d="M685,140h-88c-5.5,0-10,4.5-10,10v29h-48v-29c0-5.5-4.5-10-10-10h-88
				c-5.5,0-10,4.5-10,10v85c0,5.5,4.5,10,10,10h88c5.5,0,10-4.5,10-10v-31h48v31c0,5.5,4.5,10,10,10h88c5.5,0,10-4.5,10-10v-85
				C695,144.5,690.5,140,685,140z"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_1_" cx="484.8591" cy="-643.3809" r="50.0518" gradientTransform="matrix(1 0 0 -0.2752 0.1401 51.2023)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#A2FF5F"/>
				<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
				<stop  offset="0.5552" style="stop-color:#99FD5F"/>
				<stop  offset="0.66" style="stop-color:#8EFB5E"/>
				<stop  offset="0.7448" style="stop-color:#7DF85E"/>
				<stop  offset="0.8174" style="stop-color:#67F35D"/>
				<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
				<stop  offset="0.9398" style="stop-color:#2BE85B"/>
				<stop  offset="0.9915" style="stop-color:#07E05A"/>
				<stop  offset="1" style="stop-color:#00DF5A"/>
			</radialGradient>
			<path fill="url(#SVGID_1_)" d="M535.875,234.805c0,3.85-3.15,7-7,7h-87.75c-3.85,0-7-3.15-7-7v-13.088c0-3.85,3.15-7,7-7h87.75
				c3.85,0,7,3.15,7,7V234.805z"/>
			<path fill="none" stroke="#231F20" d="M535.875,234.805c0,3.85-3.15,7-7,7h-87.75c-3.85,0-7-3.15-7-7v-13.088c0-3.85,3.15-7,7-7
				h87.75c3.85,0,7,3.15,7,7V234.805z"/>
		</g>
		<g>
			<path d="M457.661,231.52c-0.384,0.19-1.151,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.103c0-2.529,1.715-4.246,4.222-4.246
				c1.008,0,1.645,0.217,1.919,0.36l-0.252,0.853c-0.396-0.192-0.959-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
				c0,1.979,1.141,3.25,3.106,3.25c0.636,0,1.283-0.133,1.703-0.336L457.661,231.52z"/>
			<path d="M462.929,230.391c0,0.504,0.024,0.996,0.097,1.393h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
				c-1.175,0-1.773-0.827-1.773-1.667c0-1.403,1.246-2.171,3.489-2.159v-0.119c0-0.479-0.132-1.344-1.318-1.344
				c-0.54,0-1.104,0.168-1.513,0.433l-0.238-0.695c0.479-0.312,1.175-0.516,1.905-0.516c1.775,0,2.207,1.211,2.207,2.373
				L462.929,230.391L462.929,230.391z M461.91,228.82c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
				c0.756,0,1.234-0.479,1.402-0.972c0.036-0.106,0.061-0.228,0.061-0.336V228.82z"/>
			<path d="M464.636,223.268h1.056v8.516h-1.056V223.268z"/>
			<path d="M467.324,230.703c0.312,0.203,0.863,0.42,1.392,0.42c0.769,0,1.127-0.384,1.127-0.864c0-0.504-0.3-0.778-1.079-1.067
				c-1.044-0.371-1.535-0.946-1.535-1.643c0-0.936,0.757-1.703,2.004-1.703c0.588,0,1.104,0.168,1.427,0.359l-0.265,0.768
				c-0.228-0.144-0.646-0.336-1.188-0.336c-0.623,0-0.971,0.36-0.971,0.793c0,0.479,0.348,0.694,1.103,0.982
				c1.008,0.384,1.523,0.888,1.523,1.751c0,1.021-0.791,1.751-2.171,1.751c-0.637,0-1.224-0.168-1.632-0.407L467.324,230.703z"/>
			<path d="M472.807,229.07c0.024,1.429,0.937,2.017,1.991,2.017c0.756,0,1.211-0.132,1.607-0.3l0.18,0.755
				c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.131,2.724-3.131
				c1.895,0,2.397,1.668,2.397,2.734c0,0.216-0.023,0.384-0.036,0.49H472.807z M475.902,228.316
				c0.012-0.672-0.276-1.717-1.463-1.717c-1.067,0-1.535,0.984-1.619,1.717H475.902z"/>
			<path d="M482.189,230.883h-0.023c-0.313,0.575-0.96,1.031-1.896,1.031c-1.354,0-2.458-1.175-2.458-2.938
				c0-2.172,1.403-3.131,2.626-3.131c0.899,0,1.499,0.443,1.787,1.008h0.024l0.036-0.875h0.995c-0.024,0.49-0.036,0.994-0.036,1.595
				v6.585h-1.057v-3.275H482.189z M482.189,228.328c0-0.145-0.013-0.312-0.049-0.443c-0.154-0.648-0.72-1.199-1.511-1.199
				c-1.092,0-1.751,0.924-1.751,2.23c0,1.15,0.552,2.158,1.715,2.158c0.685,0,1.271-0.419,1.512-1.151
				c0.049-0.144,0.084-0.348,0.084-0.503V228.328z"/>
			<path d="M489.844,230.199c0,0.6,0.014,1.127,0.049,1.583h-0.936l-0.061-0.947h-0.023c-0.276,0.468-0.888,1.079-1.919,1.079
				c-0.912,0-2.003-0.504-2.003-2.543v-3.395h1.055v3.215c0,1.104,0.336,1.848,1.296,1.848c0.707,0,1.199-0.492,1.392-0.96
				c0.061-0.156,0.097-0.349,0.097-0.54v-3.562h1.055L489.844,230.199L489.844,230.199z"/>
			<path d="M492.187,229.07c0.023,1.429,0.936,2.017,1.99,2.017c0.756,0,1.211-0.132,1.607-0.3l0.18,0.755
				c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.131,2.724-3.131
				c1.895,0,2.397,1.668,2.397,2.734c0,0.216-0.023,0.384-0.036,0.49H492.187z M495.281,228.316
				c0.012-0.672-0.276-1.717-1.463-1.717c-1.067,0-1.535,0.984-1.619,1.717H495.281z"/>
			<path d="M497.468,230.703c0.312,0.203,0.863,0.42,1.393,0.42c0.768,0,1.127-0.384,1.127-0.864c0-0.504-0.3-0.778-1.079-1.067
				c-1.044-0.371-1.535-0.946-1.535-1.643c0-0.936,0.756-1.703,2.003-1.703c0.588,0,1.104,0.168,1.427,0.359l-0.264,0.768
				c-0.229-0.144-0.647-0.336-1.188-0.336c-0.623,0-0.971,0.36-0.971,0.793c0,0.479,0.348,0.694,1.104,0.982
				c1.008,0.384,1.522,0.888,1.522,1.751c0,1.021-0.791,1.751-2.171,1.751c-0.636,0-1.223-0.168-1.631-0.407L497.468,230.703z"/>
			<path d="M503.635,224.586v1.393h1.513v0.804h-1.513v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.611-0.072
				l0.048,0.791c-0.203,0.084-0.527,0.156-0.936,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.827-0.408-1.511v-3.166
				h-0.898v-0.804h0.898v-1.067L503.635,224.586z"/>
			<path d="M506.336,227.788c0-0.685-0.013-1.271-0.049-1.812h0.924l0.036,1.141h0.048c0.264-0.78,0.899-1.271,1.607-1.271
				c0.12,0,0.203,0.012,0.3,0.036v0.995c-0.108-0.023-0.216-0.036-0.36-0.036c-0.743,0-1.271,0.563-1.415,1.354
				c-0.022,0.145-0.048,0.312-0.048,0.492v3.095h-1.043V227.788z"/>
			<path d="M511.482,224.348c0.012,0.358-0.252,0.646-0.673,0.646c-0.37,0-0.636-0.288-0.636-0.646c0-0.373,0.276-0.66,0.66-0.66
				C511.23,223.688,511.482,223.975,511.482,224.348z M510.307,231.782v-5.806h1.056v5.806H510.307z"/>
			<path d="M513.115,227.549c0-0.6-0.014-1.092-0.049-1.57h0.936l0.061,0.959h0.023c0.288-0.553,0.96-1.092,1.919-1.092
				c0.804,0,2.051,0.479,2.051,2.471v3.467h-1.055v-3.346c0-0.937-0.349-1.717-1.344-1.717c-0.695,0-1.235,0.492-1.415,1.08
				c-0.048,0.133-0.072,0.312-0.072,0.491v3.49h-1.055V227.549z"/>
		</g>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="SVGID_2_" cx="640.9841" cy="7.0557" r="50.0513" gradientTransform="matrix(1 0 0 -0.2752 0.1401 51.2023)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#A2FF5F"/>
			<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
			<stop  offset="0.5552" style="stop-color:#99FD5F"/>
			<stop  offset="0.66" style="stop-color:#8EFB5E"/>
			<stop  offset="0.7448" style="stop-color:#7DF85E"/>
			<stop  offset="0.8174" style="stop-color:#67F35D"/>
			<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
			<stop  offset="0.9398" style="stop-color:#2BE85B"/>
			<stop  offset="0.9915" style="stop-color:#07E05A"/>
			<stop  offset="1" style="stop-color:#00DF5A"/>
		</radialGradient>
		<path fill="url(#SVGID_2_)" d="M692,55.804c0,3.85-3.15,7-7,7h-87.75c-3.85,0-7-3.15-7-7V42.717c0-3.85,3.15-7,7-7H685
			c3.85,0,7,3.15,7,7V55.804z"/>
		<path fill="none" stroke="#231F20" d="M692,55.804c0,3.85-3.15,7-7,7h-87.75c-3.85,0-7-3.15-7-7V42.717c0-3.85,3.15-7,7-7H685
			c3.85,0,7,3.15,7,7V55.804z"/>
	</g>
	<g>
		<path d="M620.891,45.586h-2.458v-0.888h5.984v0.888h-2.471v7.196h-1.057L620.891,45.586L620.891,45.586z"/>
		<path d="M624.745,48.788c0-0.684-0.013-1.271-0.049-1.811h0.924l0.036,1.14h0.048c0.264-0.78,0.898-1.271,1.606-1.271
			c0.12,0,0.204,0.012,0.301,0.036v0.995c-0.108-0.024-0.217-0.036-0.36-0.036c-0.743,0-1.271,0.563-1.415,1.355
			c-0.023,0.144-0.048,0.312-0.048,0.491v3.095h-1.043V48.788z"/>
		<path d="M633.802,49.832c0,2.146-1.486,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.986c0-1.942,1.271-3.082,2.878-3.082
			C632.674,46.846,633.802,48.057,633.802,49.832z M629.196,49.892c0,1.271,0.73,2.231,1.763,2.231c1.008,0,1.763-0.948,1.763-2.255
			c0-0.983-0.491-2.231-1.737-2.231C629.735,47.637,629.196,48.788,629.196,49.892z"/>
		<path d="M635.137,48.872c0-0.743-0.023-1.343-0.049-1.895h0.948l0.048,0.995h0.023c0.432-0.707,1.114-1.127,2.062-1.127
			c1.403,0,2.458,1.188,2.458,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.769,0-1.438-0.336-1.786-0.911h-0.024v3.154h-1.043
			L635.137,48.872L635.137,48.872z M636.18,50.42c0,0.155,0.024,0.3,0.048,0.432c0.192,0.731,0.828,1.235,1.584,1.235
			c1.114,0,1.764-0.912,1.764-2.243c0-1.163-0.612-2.159-1.729-2.159c-0.72,0-1.392,0.517-1.595,1.308
			c-0.036,0.132-0.072,0.288-0.072,0.432V50.42L636.18,50.42z"/>
		<path d="M647.218,49.832c0,2.146-1.486,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.986c0-1.942,1.271-3.082,2.878-3.082
			C646.09,46.846,647.218,48.057,647.218,49.832z M642.612,49.892c0,1.271,0.73,2.231,1.763,2.231c1.008,0,1.763-0.948,1.763-2.255
			c0-0.983-0.491-2.231-1.737-2.231C643.151,47.637,642.612,48.788,642.612,49.892z"/>
		<path d="M648.552,48.549c0-0.6-0.013-1.092-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.961-1.091,1.92-1.091
			c0.804,0,2.051,0.479,2.051,2.471v3.466h-1.055v-3.346c0-0.936-0.35-1.716-1.345-1.716c-0.694,0-1.234,0.492-1.415,1.08
			c-0.048,0.132-0.071,0.312-0.071,0.491v3.49h-1.056V48.549z"/>
		<path d="M656.387,45.347c0.013,0.359-0.252,0.647-0.672,0.647c-0.371,0-0.636-0.288-0.636-0.647c0-0.372,0.276-0.66,0.66-0.66
			C656.135,44.687,656.387,44.975,656.387,45.347z M655.213,52.782v-5.805h1.055v5.805H655.213z"/>
		<path d="M658.021,48.549c0-0.6-0.014-1.092-0.05-1.571h0.937l0.061,0.959h0.023c0.288-0.552,0.96-1.091,1.919-1.091
			c0.804,0,2.051,0.479,2.051,2.471v3.466h-1.055v-3.346c0-0.936-0.349-1.716-1.345-1.716c-0.694,0-1.234,0.492-1.414,1.08
			c-0.049,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V48.549z"/>
	</g>
</g>
<g>
	<g>
		
			<radialGradient id="SVGID_3_" cx="640.9841" cy="-122.8125" r="50.0508" gradientTransform="matrix(1 0 0 -0.2752 0.1401 51.2023)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#A2FF5F"/>
			<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
			<stop  offset="0.5552" style="stop-color:#99FD5F"/>
			<stop  offset="0.66" style="stop-color:#8EFB5E"/>
			<stop  offset="0.7448" style="stop-color:#7DF85E"/>
			<stop  offset="0.8174" style="stop-color:#67F35D"/>
			<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
			<stop  offset="0.9398" style="stop-color:#2BE85B"/>
			<stop  offset="0.9915" style="stop-color:#07E05A"/>
			<stop  offset="1" style="stop-color:#00DF5A"/>
		</radialGradient>
		<path fill="url(#SVGID_3_)" d="M692,91.544c0,3.85-3.15,7-7,7h-87.75c-3.85,0-7-3.15-7-7V78.457c0-3.85,3.15-7,7-7H685
			c3.85,0,7,3.15,7,7V91.544z"/>
		<path fill="none" stroke="#231F20" d="M692,91.544c0,3.85-3.15,7-7,7h-87.75c-3.85,0-7-3.15-7-7V78.457c0-3.85,3.15-7,7-7H685
			c3.85,0,7,3.15,7,7V91.544z"/>
	</g>
	<g>
		<path d="M618.802,88.259c-0.384,0.191-1.15,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.103c0-2.53,1.715-4.246,4.222-4.246
			c1.009,0,1.645,0.216,1.92,0.36l-0.253,0.852c-0.396-0.192-0.959-0.336-1.631-0.336c-1.895,0-3.153,1.211-3.153,3.334
			c0,1.979,1.14,3.25,3.105,3.25c0.636,0,1.283-0.132,1.703-0.336L618.802,88.259z"/>
		<path d="M624.07,87.131c0,0.504,0.023,0.996,0.096,1.392h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.774,0.863
			c-1.176,0-1.774-0.827-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159V84.71c0-0.48-0.132-1.344-1.319-1.344
			c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.175-0.516,1.906-0.516c1.774,0,2.207,1.211,2.207,2.374
			L624.07,87.131L624.07,87.131z M623.051,85.561c-1.15-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
			c0.756,0,1.235-0.479,1.403-0.972c0.036-0.107,0.06-0.228,0.06-0.336V85.561z"/>
		<path d="M625.777,80.007h1.055v8.516h-1.055V80.007z"/>
		<path d="M628.609,84.289c0-0.6-0.014-1.092-0.05-1.571h0.925l0.048,0.936h0.036c0.323-0.552,0.862-1.067,1.822-1.067
			c0.791,0,1.392,0.479,1.644,1.163h0.023c0.181-0.324,0.407-0.575,0.647-0.756c0.348-0.264,0.73-0.407,1.283-0.407
			c0.768,0,1.906,0.504,1.906,2.519v3.418h-1.03v-3.286c0-1.115-0.408-1.787-1.261-1.787c-0.6,0-1.066,0.443-1.246,0.96
			c-0.049,0.144-0.084,0.335-0.084,0.527v3.586h-1.031v-3.479c0-0.923-0.408-1.595-1.212-1.595c-0.659,0-1.14,0.527-1.308,1.056
			c-0.061,0.155-0.084,0.336-0.084,0.516v3.502h-1.03L628.609,84.289L628.609,84.289z"/>
		<path d="M643.87,85.572c0,2.146-1.487,3.082-2.892,3.082c-1.57,0-2.781-1.151-2.781-2.986c0-1.942,1.271-3.082,2.878-3.082
			C642.742,82.586,643.87,83.797,643.87,85.572z M639.264,85.632c0,1.271,0.731,2.231,1.764,2.231c1.008,0,1.763-0.948,1.763-2.255
			c0-0.983-0.491-2.231-1.738-2.231C639.803,83.377,639.264,84.528,639.264,85.632z"/>
		<path d="M650.218,80.007v7.017c0,0.516,0.013,1.104,0.048,1.499h-0.946l-0.048-1.008h-0.024c-0.323,0.648-1.031,1.14-1.979,1.14
			c-1.402,0-2.481-1.188-2.481-2.95c-0.013-1.931,1.188-3.118,2.603-3.118c0.889,0,1.487,0.42,1.751,0.888h0.023v-3.467
			L650.218,80.007L650.218,80.007z M649.162,85.08c0-0.132-0.012-0.312-0.048-0.443c-0.155-0.672-0.731-1.224-1.522-1.224
			c-1.092,0-1.738,0.96-1.738,2.243c0,1.175,0.574,2.146,1.715,2.146c0.708,0,1.354-0.468,1.547-1.259
			c0.036-0.145,0.048-0.288,0.048-0.456L649.162,85.08L649.162,85.08z"/>
		<path d="M656.829,86.939c0,0.6,0.013,1.127,0.049,1.583h-0.936l-0.062-0.947h-0.022c-0.276,0.468-0.889,1.079-1.919,1.079
			c-0.912,0-2.004-0.504-2.004-2.543v-3.394h1.056v3.214c0,1.104,0.336,1.848,1.296,1.848c0.707,0,1.199-0.492,1.391-0.96
			c0.062-0.156,0.098-0.348,0.098-0.54v-3.562h1.055L656.829,86.939L656.829,86.939z"/>
		<path d="M658.585,80.007h1.055v8.516h-1.055V80.007z"/>
		<path d="M662.592,81.087c0.012,0.359-0.252,0.647-0.672,0.647c-0.371,0-0.636-0.288-0.636-0.647c0-0.372,0.275-0.66,0.66-0.66
			C662.34,80.427,662.592,80.715,662.592,81.087z M661.417,88.522v-5.805h1.055v5.805H661.417z"/>
		<path d="M664.224,84.289c0-0.6-0.013-1.092-0.049-1.571h0.937l0.061,0.959h0.023c0.288-0.552,0.96-1.091,1.919-1.091
			c0.804,0,2.051,0.479,2.051,2.471v3.466h-1.055v-3.346c0-0.936-0.35-1.716-1.345-1.716c-0.694,0-1.234,0.492-1.415,1.08
			c-0.048,0.132-0.071,0.312-0.071,0.491v3.49h-1.056V84.289z"/>
	</g>
</g>
<g>
	<path fill="none" stroke="#0092DF" stroke-width="2.0551" stroke-dasharray="6.1654,6.1654" d="M428,239.333c0,3.851-3.15,7-7,7
		h-51c-3.85,0-7-3.149-7-7v-93.666c0-3.85,3.15-7,7-7h51c3.85,0,7,3.15,7,7V239.333z"/>
</g>
<g>
	<path d="M370.986,158.244v-9.571h2.194v0.66h-1.379v8.251h1.379v0.66H370.986z"/>
	<path d="M379.828,156.637c-0.384,0.192-1.151,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.102c0-2.531,1.715-4.246,4.222-4.246
		c1.007,0,1.644,0.215,1.919,0.359l-0.252,0.852c-0.396-0.191-0.959-0.336-1.631-0.336c-1.895,0-3.154,1.211-3.154,3.334
		c0,1.979,1.14,3.25,3.106,3.25c0.635,0,1.283-0.131,1.703-0.336L379.828,156.637z"/>
	<path d="M385.095,155.509c0,0.503,0.024,0.995,0.098,1.392h-0.96l-0.084-0.731h-0.035c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.176,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.172,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.694c0.479-0.312,1.176-0.517,1.906-0.517c1.774,0,2.206,1.211,2.206,2.375
		L385.095,155.509L385.095,155.509z M384.077,153.938c-1.151-0.023-2.459,0.181-2.459,1.308c0,0.685,0.456,1.008,0.995,1.008
		c0.756,0,1.235-0.479,1.403-0.972c0.035-0.108,0.061-0.229,0.061-0.336V153.938L384.077,153.938z"/>
	<path d="M388.349,148.673v9.571h-2.194v-0.66h1.379v-8.251h-1.379v-0.66H388.349z"/>
	<path d="M392.765,155.936v4.088c0,0.3,0.009,0.643,0.029,0.873h-0.553l-0.027-0.586H392.2c-0.188,0.377-0.602,0.664-1.153,0.664
		c-0.816,0-1.446-0.692-1.446-1.72c-0.007-1.125,0.692-1.817,1.518-1.817c0.518,0,0.866,0.246,1.02,0.518h0.016v-2.02H392.765z
		 M392.151,158.891c0-0.076-0.008-0.182-0.028-0.258c-0.09-0.392-0.426-0.713-0.887-0.713c-0.638,0-1.015,0.559-1.015,1.307
		c0,0.686,0.336,1.252,0.999,1.252c0.413,0,0.79-0.272,0.901-0.734c0.021-0.083,0.028-0.167,0.028-0.266L392.151,158.891
		L392.151,158.891z"/>
</g>
<g>
	<path d="M472.772,202.994v-9.571h2.193v0.66h-1.379v8.251h1.379v0.66H472.772z"/>
	<path d="M481.613,201.387c-0.383,0.191-1.15,0.396-2.136,0.396c-2.277,0-3.993-1.451-3.993-4.102c0-2.531,1.716-4.246,4.223-4.246
		c1.007,0,1.643,0.215,1.918,0.359l-0.252,0.852c-0.396-0.191-0.959-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
		c0,1.979,1.14,3.25,3.107,3.25c0.635,0,1.282-0.131,1.703-0.336L481.613,201.387z"/>
	<path d="M486.883,200.26c0,0.504,0.023,0.994,0.096,1.391h-0.959l-0.084-0.73h-0.036c-0.323,0.456-0.947,0.863-1.774,0.863
		c-1.175,0-1.774-0.827-1.774-1.667c0-1.403,1.246-2.171,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.539,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.176-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L486.883,200.26L486.883,200.26z M485.863,198.688c-1.151-0.023-2.459,0.181-2.459,1.308c0,0.685,0.456,1.008,0.996,1.008
		c0.755,0,1.233-0.479,1.401-0.972c0.036-0.107,0.062-0.229,0.062-0.336V198.688z"/>
	<path d="M490.135,193.423v9.571h-2.193v-0.66h1.379v-8.251h-1.379v-0.66H490.135z"/>
	<path d="M491.631,203.318c0-0.397-0.007-0.74-0.027-1.055h0.538l0.021,0.663h0.028c0.152-0.454,0.523-0.739,0.937-0.739
		c0.07,0,0.119,0.006,0.175,0.021v0.58c-0.062-0.015-0.126-0.021-0.21-0.021c-0.434,0-0.739,0.327-0.824,0.789
		c-0.014,0.084-0.027,0.182-0.027,0.286v1.804h-0.608v-2.328H491.631z"/>
	<path d="M494.191,204.066c0.014,0.832,0.545,1.175,1.159,1.175c0.44,0,0.706-0.077,0.938-0.175l0.104,0.439
		c-0.217,0.098-0.587,0.217-1.125,0.217c-1.041,0-1.662-0.691-1.662-1.712s0.601-1.823,1.587-1.823c1.104,0,1.396,0.971,1.396,1.594
		c0,0.125-0.014,0.223-0.021,0.285H494.191z M495.994,203.627c0.008-0.393-0.16-1-0.853-1c-0.623,0-0.895,0.574-0.943,1H495.994z"/>
	<path d="M497.353,200.686h0.615v4.961h-0.615V200.686z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#231F20" x1="124.167" y1="86.5" x2="183" y2="86.5"/>
		<polygon fill="#231F20" points="180.191,90.203 181.764,86.5 180.191,82.796 188.969,86.5 		"/>
		<polygon fill="#231F20" points="126.975,82.797 125.402,86.5 126.975,90.204 118.197,86.5 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#231F20" x1="124.167" y1="195.5" x2="183" y2="195.5"/>
		<polygon fill="#231F20" points="180.191,199.203 181.764,195.5 180.191,191.796 188.969,195.5 		"/>
		<polygon fill="#231F20" points="126.975,191.797 125.402,195.5 126.975,199.204 118.197,195.5 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#231F20" x1="296.667" y1="86.5" x2="355.5" y2="86.5"/>
		<polygon fill="#231F20" points="352.691,90.203 354.263,86.5 352.691,82.796 361.469,86.5 		"/>
		<polygon fill="#231F20" points="299.474,82.797 297.902,86.5 299.474,90.204 290.697,86.5 		"/>
	</g>
</g>
<g id="i_Ca_L">
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="393.367" y1="205.628" x2="291" y2="205.628"/>
			<polygon points="390.558,209.331 392.131,205.628 390.558,201.924 399.336,205.628 			"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_4_" cx="166.5706" cy="435.3184" r="18.2193" gradientTransform="matrix(-4.371139e-08 -1 -1 4.371139e-08 798.0276 372.1975)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FFFCDF"/>
				<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
				<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
				<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
				<stop  offset="0.5943" style="stop-color:#FFF090"/>
				<stop  offset="0.7706" style="stop-color:#FFEA64"/>
				<stop  offset="0.9506" style="stop-color:#FFE22F"/>
				<stop  offset="1" style="stop-color:#FFE01F"/>
			</radialGradient>
			<path fill="url(#SVGID_4_)" d="M381.344,205.628c2.822-0.925,4.78-2.856,4.78-5.083c0-3.115-3.826-5.668-8.504-5.668h-29.823
				c-4.678,0-8.504,2.553-8.504,5.668c0,2.227,1.958,4.158,4.78,5.083c-2.822,0.925-4.78,2.854-4.78,5.082
				c0,3.117,3.826,5.668,8.504,5.668h29.823c4.678,0,8.504-2.551,8.504-5.668C386.125,208.482,384.167,206.553,381.344,205.628z"/>
		</g>
		<g>
			<path id="i_Ca_L_path1" fill="none" stroke="#000000" d="M381.344,205.628c2.822-0.925,4.78-2.856,4.78-5.083
				c0-3.115-3.826-5.668-8.504-5.668h-29.823c-4.678,0-8.504,2.553-8.504,5.668c0,2.227,1.958,4.158,4.78,5.083
				c-2.822,0.925-4.78,2.854-4.78,5.082c0,3.117,3.826,5.668,8.504,5.668h29.823c4.678,0,8.504-2.551,8.504-5.668
				C386.125,208.482,384.167,206.553,381.344,205.628z"/>
		</g>
	</g>
	<g>
		<path d="M359.682,210.083c-0.309,0.162-0.958,0.326-1.776,0.33c-1.898,0.01-3.324-1.183-3.337-3.401
			c-0.012-2.117,1.411-3.546,3.5-3.557c0.829-0.005,1.37,0.173,1.601,0.291l-0.216,0.711c-0.32-0.158-0.791-0.273-1.352-0.271
			c-1.578,0.008-2.622,1.022-2.613,2.793c0.009,1.658,0.964,2.703,2.593,2.693c0.54-0.003,1.08-0.115,1.429-0.287L359.682,210.083z"
			/>
		<path d="M364.089,209.109c0.003,0.421,0.025,0.83,0.077,1.16l-0.79,0.004l-0.084-0.609l-0.029,0.001
			c-0.259,0.381-0.786,0.724-1.476,0.728c-0.979,0.006-1.483-0.683-1.486-1.382c-0.007-1.169,1.03-1.813,2.898-1.813l-0.001-0.102
			c-0.002-0.398-0.115-1.128-1.104-1.113c-0.46,0.002-0.929,0.136-1.268,0.367l-0.203-0.589c0.397-0.252,0.986-0.425,1.597-0.429
			c1.489-0.008,1.854,1,1.859,1.969L364.089,209.109z M363.222,207.807c-0.96-0.016-2.048,0.16-2.043,1.101
			c0.003,0.579,0.386,0.837,0.824,0.835c0.64-0.004,1.047-0.405,1.186-0.816c0.029-0.09,0.038-0.189,0.038-0.279L363.222,207.807z"
			/>
		<path d="M365.021,206.936l-0.002-0.314l0.398-0.393c0.962-0.928,1.403-1.42,1.4-1.99c-0.003-0.385-0.186-0.739-0.75-0.736
			c-0.344,0.002-0.629,0.18-0.804,0.326l-0.165-0.361c0.257-0.217,0.635-0.388,1.069-0.39c0.812-0.005,1.157,0.553,1.16,1.095
			c0.004,0.699-0.5,1.268-1.295,2.041l-0.294,0.281v0.012l1.694-0.009l0.002,0.426L365.021,206.936z"/>
		<path d="M369.656,203.809l0.008,1.369l1.317-0.007l0.002,0.351l-1.317,0.006l0.007,1.383l-0.373,0.002l-0.007-1.382l-1.317,0.008
			l-0.002-0.351l1.317-0.008l-0.008-1.369L369.656,203.809z"/>
	</g>
</g>
<g>
	<path d="M383.872,220.49v8.084h-1.056v-8.084H383.872z"/>
	<path d="M388.601,232.424c-0.217,0.111-0.672,0.223-1.243,0.223c-1.328,0-2.32-0.838-2.32-2.389c0-1.482,0.999-2.475,2.459-2.475
		c0.58,0,0.958,0.126,1.119,0.209l-0.154,0.497c-0.224-0.112-0.552-0.196-0.943-0.196c-1.104,0-1.838,0.706-1.838,1.943
		c0,1.16,0.664,1.894,1.804,1.894c0.377,0,0.755-0.077,1-0.194L388.601,232.424z"/>
	<path d="M391.687,231.76c0,0.293,0.015,0.58,0.05,0.811h-0.554l-0.057-0.426h-0.021c-0.183,0.267-0.553,0.502-1.034,0.502
		c-0.686,0-1.034-0.48-1.034-0.971c0-0.818,0.727-1.266,2.034-1.258v-0.07c0-0.279-0.078-0.789-0.771-0.781
		c-0.32,0-0.649,0.091-0.887,0.25l-0.141-0.411c0.278-0.175,0.69-0.294,1.118-0.294c1.041,0,1.292,0.705,1.292,1.384v1.265H391.687z
		 M391.086,230.844c-0.672-0.014-1.434,0.105-1.434,0.762c0,0.406,0.266,0.588,0.573,0.588c0.447,0,0.733-0.278,0.831-0.565
		c0.021-0.063,0.028-0.133,0.028-0.194L391.086,230.844L391.086,230.844z"/>
	<path d="M392.277,233.438c0.153-0.42,0.342-1.168,0.42-1.678l0.684-0.07c-0.167,0.595-0.475,1.371-0.67,1.699L392.277,233.438z"/>
	<path d="M395.138,227.859h0.615v4.201h2.012v0.51h-2.627V227.859L395.138,227.859z"/>
</g>
<g>
	<path d="M668.496,119.909v8.083h-1.057v-8.083H668.496z"/>
	<path d="M672.749,131.066c0,0.349,0.007,0.657,0.028,0.922h-0.545l-0.035-0.552h-0.014c-0.154,0.273-0.519,0.629-1.119,0.629
		c-0.531,0-1.166-0.3-1.166-1.481v-1.978h0.613v1.866c0,0.643,0.202,1.083,0.756,1.083c0.411,0,0.698-0.287,0.811-0.566
		c0.035-0.083,0.057-0.195,0.057-0.314v-2.068h0.614V131.066L672.749,131.066z"/>
	<path d="M673.773,129.71c0-0.433-0.009-0.783-0.027-1.104h0.551l0.035,0.58h0.014c0.245-0.419,0.65-0.657,1.195-0.657
		c0.825,0,1.439,0.692,1.439,1.719c0,1.216-0.747,1.817-1.537,1.817c-0.454,0-0.838-0.195-1.041-0.531h-0.015v1.838h-0.614V129.71
		L673.773,129.71z M674.388,130.611c0,0.084,0.008,0.175,0.027,0.252c0.104,0.426,0.482,0.72,0.916,0.72
		c0.65,0,1.027-0.531,1.027-1.307c0-0.678-0.351-1.258-1-1.258c-0.42,0-0.817,0.293-0.937,0.755
		c-0.015,0.084-0.035,0.175-0.035,0.251L674.388,130.611L674.388,130.611z"/>
</g>
<g>
	<path d="M637.681,194.348v-7.966h1.829v0.55h-1.14v6.866h1.14v0.55H637.681z"/>
	<path d="M645.169,193.02c-0.31,0.16-0.96,0.319-1.779,0.319c-1.897,0-3.317-1.2-3.317-3.419c0-2.118,1.43-3.538,3.519-3.538
		c0.829,0,1.369,0.181,1.6,0.3l-0.221,0.711c-0.318-0.16-0.789-0.279-1.349-0.279c-1.579,0-2.629,1.009-2.629,2.777
		c0,1.659,0.949,2.709,2.578,2.709c0.54,0,1.08-0.109,1.43-0.279L645.169,193.02z"/>
	<path d="M649.58,192.068c0,0.421,0.021,0.83,0.07,1.16h-0.79l-0.08-0.609h-0.029c-0.261,0.38-0.79,0.72-1.479,0.72
		c-0.979,0-1.479-0.69-1.479-1.39c0-1.169,1.04-1.809,2.908-1.799v-0.102c0-0.398-0.109-1.129-1.1-1.119
		c-0.46,0-0.93,0.131-1.27,0.36l-0.2-0.59c0.4-0.25,0.989-0.42,1.601-0.42c1.488,0,1.849,1.01,1.849,1.979L649.58,192.068
		L649.58,192.068z M648.72,190.76c-0.96-0.02-2.049,0.15-2.049,1.09c0,0.579,0.38,0.84,0.819,0.84c0.64,0,1.05-0.399,1.188-0.811
		c0.03-0.09,0.04-0.189,0.04-0.279L648.72,190.76L648.72,190.76z"/>
	<path d="M652.291,186.382v7.966h-1.829v-0.55h1.139v-6.866h-1.139v-0.55H652.291z"/>
	<path d="M655.514,195.883c0,0.244,0.013,0.483,0.041,0.676h-0.461l-0.046-0.354h-0.018c-0.152,0.222-0.461,0.42-0.863,0.42
		c-0.571,0-0.862-0.401-0.862-0.812c0-0.682,0.606-1.055,1.696-1.049v-0.059c0-0.232-0.064-0.659-0.642-0.653
		c-0.269,0-0.542,0.076-0.74,0.21l-0.116-0.344c0.233-0.146,0.577-0.245,0.933-0.245c0.868,0,1.078,0.589,1.078,1.154V195.883
		L655.514,195.883z M655.013,195.119c-0.56-0.012-1.194,0.087-1.194,0.635c0,0.338,0.222,0.49,0.479,0.49
		c0.373,0,0.611-0.233,0.693-0.473c0.018-0.054,0.022-0.11,0.022-0.164V195.119z"/>
	<path d="M656.338,194.658c0-0.361-0.006-0.652-0.022-0.922h0.46l0.028,0.484h0.013c0.203-0.351,0.542-0.549,0.997-0.549
		c0.688,0,1.199,0.577,1.199,1.436c0,1.014-0.623,1.516-1.281,1.516c-0.38,0-0.699-0.163-0.868-0.443h-0.012v1.533h-0.514V194.658
		L656.338,194.658z M656.85,195.41c0,0.07,0.007,0.146,0.023,0.21c0.087,0.354,0.402,0.601,0.764,0.601
		c0.542,0,0.856-0.443,0.856-1.09c0-0.564-0.291-1.05-0.833-1.05c-0.351,0-0.683,0.245-0.781,0.63
		c-0.012,0.07-0.029,0.146-0.029,0.21V195.41z"/>
</g>
<g id="i_up">
	
		<radialGradient id="i_up_path1_1_" cx="677.2947" cy="807.1953" r="17.835" gradientTransform="matrix(4.371139e-08 1 1 -4.371139e-08 -163.6423 -537.6721)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FFFCDF"/>
		<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
		<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
		<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FFF090"/>
		<stop  offset="0.7706" style="stop-color:#FFEA64"/>
		<stop  offset="0.9506" style="stop-color:#FFE22F"/>
		<stop  offset="1" style="stop-color:#FFE01F"/>
	</radialGradient>
	<path id="i_up_path1" fill="url(#i_up_path1_1_)" stroke="#000000" d="M643.554,157.457c-9.851,0-17.835-7.986-17.835-17.834
		c0-9.852,7.984-17.836,17.835-17.836c9.852,0,17.834,7.984,17.834,17.836C661.388,149.47,653.404,157.457,643.554,157.457z"/>
	<g>
		<path id="path965_20_" fill="none" stroke="#000000" d="M661.388,160.417v-41.59"/>
		<polygon points="657.685,157.609 661.388,159.182 665.093,157.609 661.388,166.386 		"/>
	</g>
</g>
<g>
	<path d="M498.996,115.159v8.083h-1.057v-8.083H498.996z"/>
	<path d="M500.426,124.911c0-0.398-0.007-0.741-0.026-1.055h0.536l0.028,0.664h0.021c0.153-0.454,0.53-0.741,0.942-0.741
		c0.063,0,0.112,0.007,0.168,0.021v0.573c-0.068-0.007-0.133-0.014-0.217-0.014c-0.433,0-0.74,0.329-0.824,0.783
		c-0.014,0.091-0.021,0.189-0.021,0.293v1.803h-0.614L500.426,124.911z"/>
	<path d="M503.013,125.652c0.015,0.832,0.539,1.174,1.153,1.174c0.44,0,0.713-0.077,0.938-0.168l0.11,0.433
		c-0.217,0.098-0.594,0.217-1.132,0.217c-1.034,0-1.663-0.692-1.663-1.705c0-1.027,0.607-1.831,1.594-1.831
		c1.104,0,1.392,0.971,1.392,1.593c0,0.126-0.008,0.224-0.021,0.293L503.013,125.652z M504.81,125.211
		c0.007-0.384-0.16-0.999-0.846-0.999c-0.629,0-0.895,0.573-0.942,0.999H504.81z"/>
	<path d="M506.17,122.276h0.614v4.962h-0.614V122.276z"/>
</g>
<g id="i_rel">
	<g>
		<g id="g957_18_">
			<g id="g959_18_">
				<path id="path961_18_" fill="#FFFFFF" d="M485.812,116.901l-3.702-1.574l-3.701,1.574l3.701-8.779L485.812,116.901z"/>
			</g>
			<g id="g963_18_">
				<path id="path965_21_" fill="none" stroke="#000000" d="M482.109,172.092v-58"/>
				<path id="path967_18_" d="M485.812,116.901l-3.702-1.574l-3.701,1.574l3.701-8.779L485.812,116.901z"/>
			</g>
		</g>
		<g>
			<g>
				
					<radialGradient id="SVGID_5_" cx="415.8992" cy="1022.7764" r="18.2194" gradientTransform="matrix(-1 0 0 1 898.0098 -880.5186)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#FFFCDF"/>
					<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
					<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
					<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
					<stop  offset="0.5943" style="stop-color:#FFF090"/>
					<stop  offset="0.7706" style="stop-color:#FFEA64"/>
					<stop  offset="0.9506" style="stop-color:#FFE22F"/>
					<stop  offset="1" style="stop-color:#FFE01F"/>
				</radialGradient>
				<path fill="url(#SVGID_5_)" d="M487.193,118.842c-2.229,0-4.158,1.958-5.083,4.78c-0.926-2.821-2.857-4.78-5.083-4.78
					c-3.115,0-5.668,3.826-5.668,8.504v29.824c0,4.678,2.553,8.504,5.668,8.504c2.226,0,4.157-1.958,5.083-4.779
					c0.925,2.82,2.854,4.779,5.083,4.779c3.116,0,5.668-3.826,5.668-8.504v-29.824C492.861,122.668,490.31,118.842,487.193,118.842z
					"/>
			</g>
			<g>
				<path id="i_rel_path1" fill="none" stroke="#000000" d="M487.193,118.842c-2.229,0-4.158,1.958-5.083,4.78
					c-0.926-2.821-2.857-4.78-5.083-4.78c-3.115,0-5.668,3.826-5.668,8.504v29.824c0,4.678,2.553,8.504,5.668,8.504
					c2.226,0,4.157-1.958,5.083-4.779c0.925,2.82,2.854,4.779,5.083,4.779c3.116,0,5.668-3.826,5.668-8.504v-29.824
					C492.861,122.668,490.31,118.842,487.193,118.842z"/>
			</g>
		</g>
	</g>
	<g>
		<path d="M477.675,139.432c-0.162-0.309-0.325-0.959-0.33-1.778c-0.011-1.897,1.184-3.323,3.401-3.335
			c2.118-0.012,3.546,1.41,3.557,3.498c0.004,0.829-0.174,1.37-0.291,1.601l-0.711-0.216c0.158-0.32,0.275-0.791,0.271-1.351
			c-0.008-1.578-1.022-2.622-2.792-2.612c-1.659,0.009-2.703,0.963-2.694,2.591c0.003,0.54,0.115,1.08,0.287,1.429L477.675,139.432z
			"/>
		<path d="M478.647,143.837c-0.421,0.003-0.829,0.024-1.159,0.077l-0.004-0.79l0.608-0.084v-0.029
			c-0.382-0.258-0.725-0.786-0.729-1.476c-0.005-0.979,0.684-1.482,1.383-1.486c1.168-0.007,1.812,1.03,1.812,2.898l0.102-0.002
			c0.398-0.002,1.129-0.114,1.113-1.104c-0.002-0.46-0.136-0.929-0.367-1.268l0.589-0.203c0.253,0.399,0.425,0.987,0.429,1.598
			c0.008,1.489-1,1.854-1.969,1.859L478.647,143.837z M479.953,142.971c0.014-0.96-0.162-2.048-1.103-2.043
			c-0.578,0.003-0.837,0.385-0.834,0.824c0.003,0.64,0.404,1.048,0.815,1.186c0.09,0.029,0.19,0.039,0.28,0.039L479.953,142.971z"/>
		<path d="M480.823,144.771l0.313-0.002l0.395,0.398c0.926,0.963,1.418,1.402,1.988,1.4c0.386-0.002,0.739-0.186,0.736-0.75
			c-0.002-0.344-0.179-0.629-0.325-0.803l0.359-0.166c0.218,0.256,0.389,0.633,0.391,1.069c0.005,0.812-0.553,1.158-1.095,1.161
			c-0.699,0.003-1.268-0.501-2.041-1.295l-0.281-0.296h-0.012l0.009,1.696l-0.426,0.002L480.823,144.771z"/>
		<path d="M483.949,149.406l-1.369,0.007l0.007,1.317l-0.35,0.002l-0.007-1.317l-1.384,0.008l-0.002-0.373l1.383-0.008l-0.008-1.317
			l0.351-0.002l0.008,1.317l1.369-0.007L483.949,149.406z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#231F20" x1="542" y1="191.833" x2="582.168" y2="191.833"/>
		<polygon fill="#231F20" points="579.359,195.536 580.931,191.833 579.359,188.129 588.136,191.833 		"/>
		<polygon fill="#231F20" points="544.808,188.13 543.236,191.833 544.808,195.537 536.031,191.833 		"/>
	</g>
</g>
<g id="Na_c">
	<g>
		<path d="M229.287,111.478v-9.571h2.195v0.66h-1.379v8.251h1.379v0.66H229.287z"/>
		<path d="M232.623,110.135v-8.083h1.14l2.591,4.09c0.6,0.947,1.066,1.799,1.451,2.626l0.023-0.012
			c-0.096-1.079-0.12-2.063-0.12-3.322v-3.382h0.983v8.083h-1.055l-2.566-4.102c-0.564-0.9-1.104-1.823-1.511-2.699l-0.036,0.012
			c0.06,1.019,0.084,1.991,0.084,3.334v3.454L232.623,110.135L232.623,110.135z"/>
		<path d="M244.561,108.744c0,0.503,0.023,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.774,0.863
			c-1.176,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
			c-0.54,0-1.103,0.168-1.511,0.432l-0.24-0.695c0.48-0.312,1.176-0.516,1.907-0.516c1.774,0,2.207,1.211,2.207,2.375
			L244.561,108.744L244.561,108.744z M243.542,107.172c-1.15-0.024-2.459,0.18-2.459,1.307c0,0.684,0.456,1.008,0.996,1.008
			c0.755,0,1.235-0.48,1.403-0.972c0.036-0.108,0.06-0.228,0.06-0.336V107.172z"/>
		<path d="M247.814,101.907v9.571h-2.195v-0.66h1.379v-8.251h-1.379v-0.66H247.814z"/>
		<path d="M251.721,114.005c-0.161,0.084-0.518,0.203-0.973,0.203c-1.02,0-1.684-0.699-1.684-1.733c0-1.042,0.713-1.796,1.816-1.796
			c0.363,0,0.686,0.091,0.854,0.174l-0.14,0.476c-0.147-0.084-0.378-0.161-0.714-0.161c-0.775,0-1.194,0.573-1.194,1.279
			c0,0.783,0.503,1.265,1.174,1.265c0.35,0,0.58-0.091,0.755-0.167L251.721,114.005z"/>
	</g>
	<g id="XMLID_1_">
		<g>
		</g>
		<g>
			<rect x="222.18" y="95.48" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.16"/>
		</g>
	</g>
</g>
<g id="K_c">
	<g>
		<path d="M232.345,175.513v-9.571h2.195v0.66h-1.379v8.251h1.379v0.66H232.345z"/>
		<path d="M235.681,166.086h1.043v3.897h0.036c0.216-0.312,0.432-0.6,0.636-0.864l2.471-3.033h1.296l-2.927,3.43l3.154,4.652h-1.235
			l-2.663-3.969l-0.768,0.887v3.082h-1.043V166.086z"/>
		<path d="M243.973,165.941v9.571h-2.195v-0.66h1.379v-8.251h-1.379v-0.66H243.973z"/>
		<path d="M247.88,178.039c-0.161,0.084-0.519,0.203-0.973,0.203c-1.02,0-1.684-0.699-1.684-1.732c0-1.042,0.713-1.797,1.817-1.797
			c0.362,0,0.685,0.092,0.853,0.175l-0.14,0.476c-0.147-0.084-0.377-0.16-0.713-0.16c-0.776,0-1.195,0.572-1.195,1.278
			c0,0.783,0.503,1.265,1.174,1.265c0.35,0,0.58-0.09,0.755-0.166L247.88,178.039z"/>
	</g>
	<g id="XMLID_2_">
		<g>
		</g>
		<g>
			<rect x="221.784" y="159.512" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.16"/>
		</g>
	</g>
</g>
<g id="Ca_c">
	<g>
		<path d="M229.869,241.344v-9.57h2.195v0.658h-1.379v8.252h1.379v0.66H229.869z"/>
		<path d="M238.71,239.736c-0.384,0.19-1.15,0.396-2.135,0.396c-2.279,0-3.994-1.45-3.994-4.103c0-2.529,1.715-4.244,4.223-4.244
			c1.008,0,1.643,0.215,1.919,0.359l-0.252,0.852c-0.396-0.192-0.959-0.336-1.632-0.336c-1.895,0-3.153,1.211-3.153,3.334
			c0,1.979,1.139,3.25,3.105,3.25c0.637,0,1.283-0.133,1.703-0.336L238.71,239.736z"/>
		<path d="M243.979,238.609c0,0.502,0.023,0.994,0.096,1.391h-0.959l-0.084-0.73h-0.036c-0.324,0.455-0.947,0.862-1.774,0.862
			c-1.176,0-1.775-0.827-1.775-1.667c0-1.402,1.247-2.171,3.49-2.158v-0.121c0-0.479-0.132-1.343-1.319-1.343
			c-0.54,0-1.104,0.168-1.511,0.433l-0.24-0.695c0.48-0.312,1.175-0.516,1.907-0.516c1.774,0,2.207,1.211,2.207,2.373
			L243.979,238.609L243.979,238.609z M242.959,237.037c-1.15-0.023-2.458,0.181-2.458,1.308c0,0.685,0.456,1.009,0.996,1.009
			c0.755,0,1.235-0.479,1.403-0.973c0.036-0.107,0.06-0.229,0.06-0.336L242.959,237.037L242.959,237.037z"/>
		<path d="M247.232,231.771v9.571h-2.195v-0.659h1.379v-8.252h-1.379v-0.66H247.232z"/>
		<path d="M251.139,243.87c-0.161,0.084-0.519,0.202-0.973,0.202c-1.02,0-1.684-0.698-1.684-1.732c0-1.041,0.713-1.796,1.816-1.796
			c0.363,0,0.686,0.091,0.854,0.175l-0.14,0.475c-0.147-0.084-0.377-0.159-0.714-0.159c-0.775,0-1.194,0.571-1.194,1.278
			c0,0.782,0.503,1.265,1.174,1.265c0.35,0,0.58-0.091,0.755-0.167L251.139,243.87z"/>
	</g>
	<g id="XMLID_3_">
		<g>
		</g>
		<g>
			<rect x="222.176" y="225.338" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.159"/>
		</g>
	</g>
</g>
<g id="K_b">
	<g>
		<path d="M59.337,176.411v-9.571h2.195v0.66h-1.379v8.251h1.379v0.66H59.337z"/>
		<path d="M62.673,166.984h1.043v3.897h0.036c0.216-0.312,0.433-0.6,0.637-0.864l2.471-3.033h1.295l-2.926,3.43l3.153,4.652h-1.234
			l-2.663-3.969l-0.769,0.887v3.082h-1.043V166.984z"/>
		<path d="M70.964,166.84v9.571H68.77v-0.66h1.379V167.5H68.77v-0.66H70.964z"/>
		<path d="M72.459,174.102h0.608v2.125h0.014c0.216-0.377,0.608-0.621,1.153-0.621c0.839,0,1.433,0.699,1.426,1.726
			c0,1.209-0.762,1.81-1.517,1.81c-0.489,0-0.88-0.188-1.132-0.636H72.99l-0.028,0.56h-0.53c0.014-0.23,0.027-0.573,0.027-0.875
			V174.102z M73.067,177.708c0,0.077,0.014,0.153,0.028,0.224c0.118,0.426,0.475,0.721,0.922,0.721c0.643,0,1.026-0.524,1.026-1.301
			c0-0.678-0.349-1.258-1.006-1.258c-0.419,0-0.811,0.287-0.936,0.756c-0.015,0.069-0.035,0.153-0.035,0.25V177.708z"/>
	</g>
	<g id="XMLID_5_">
		<g>
		</g>
		<g>
			<rect x="49.166" y="160.405" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.17"/>
		</g>
	</g>
</g>
<g id="Ca_b">
	<g>
		<path d="M56.469,241.344v-9.57h2.194v0.658h-1.379v8.252h1.379v0.66H56.469z"/>
		<path d="M65.31,239.736c-0.385,0.19-1.151,0.396-2.136,0.396c-2.278,0-3.993-1.45-3.993-4.103c0-2.529,1.715-4.244,4.222-4.244
			c1.007,0,1.643,0.215,1.919,0.359l-0.252,0.852c-0.396-0.192-0.959-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
			c0,1.979,1.139,3.25,3.106,3.25c0.635,0,1.282-0.133,1.703-0.336L65.31,239.736z"/>
		<path d="M70.579,238.609c0,0.502,0.024,0.994,0.096,1.391h-0.959l-0.084-0.73h-0.035c-0.324,0.455-0.947,0.862-1.775,0.862
			c-1.175,0-1.775-0.827-1.775-1.667c0-1.402,1.247-2.171,3.49-2.158v-0.121c0-0.479-0.132-1.343-1.319-1.343
			c-0.54,0-1.103,0.168-1.511,0.433l-0.24-0.695c0.48-0.312,1.177-0.516,1.907-0.516c1.775,0,2.207,1.211,2.207,2.373
			L70.579,238.609L70.579,238.609z M69.56,237.037c-1.151-0.023-2.459,0.181-2.459,1.308c0,0.685,0.456,1.009,0.996,1.009
			c0.755,0,1.234-0.479,1.402-0.973c0.036-0.107,0.061-0.229,0.061-0.336V237.037z"/>
		<path d="M73.832,231.771v9.571h-2.194v-0.659h1.379v-8.252h-1.379v-0.66H73.832z"/>
		<path d="M75.328,239.034h0.608v2.124h0.014c0.216-0.377,0.608-0.621,1.153-0.621c0.839,0,1.433,0.699,1.426,1.727
			c0,1.209-0.762,1.81-1.517,1.81c-0.489,0-0.881-0.188-1.133-0.636h-0.021l-0.028,0.56H75.3c0.015-0.229,0.028-0.573,0.028-0.873
			V239.034z M75.936,242.641c0,0.076,0.014,0.153,0.027,0.224c0.119,0.427,0.476,0.721,0.923,0.721c0.643,0,1.026-0.524,1.026-1.301
			c0-0.679-0.349-1.259-1.006-1.259c-0.419,0-0.811,0.287-0.936,0.757c-0.015,0.069-0.035,0.153-0.035,0.251V242.641z"/>
	</g>
	<g id="XMLID_6_">
		<g>
		</g>
		<g>
			<rect x="49.161" y="225.339" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.159"/>
		</g>
	</g>
</g>
<g id="Na_i">
	<g>
		<path d="M390.058,93.744v-9.571h2.195v0.66h-1.38v8.251h1.38v0.66H390.058z"/>
		<path d="M393.394,92.4v-8.083h1.141l2.591,4.09c0.6,0.947,1.067,1.799,1.451,2.626l0.022-0.012
			c-0.096-1.079-0.118-2.063-0.118-3.322v-3.382h0.981V92.4h-1.055l-2.566-4.102c-0.563-0.9-1.104-1.823-1.512-2.699l-0.035,0.012
			c0.061,1.019,0.084,1.991,0.084,3.334V92.4H393.394z"/>
		<path d="M405.332,91.009c0,0.503,0.023,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.036c-0.322,0.456-0.946,0.863-1.773,0.863
			c-1.176,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.133-1.343-1.319-1.343
			c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.695c0.479-0.312,1.175-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
			L405.332,91.009L405.332,91.009z M404.312,89.438c-1.15-0.024-2.459,0.18-2.459,1.307c0,0.684,0.457,1.008,0.996,1.008
			c0.757,0,1.235-0.48,1.403-0.972c0.036-0.108,0.06-0.229,0.06-0.336V89.438z"/>
		<path d="M408.586,84.173v9.571h-2.195v-0.66h1.379v-8.251h-1.379v-0.66H408.586z"/>
		<path d="M410.765,92.063c0.009,0.21-0.146,0.377-0.391,0.377c-0.217,0-0.371-0.167-0.371-0.377c0-0.216,0.161-0.384,0.385-0.384
			C410.619,91.679,410.765,91.847,410.765,92.063z M410.081,96.396v-3.382h0.614v3.382H410.081z"/>
	</g>
	<g id="XMLID_7_">
		<g>
		</g>
		<g>
			<rect x="382.082" y="77.699" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.16"/>
		</g>
	</g>
</g>
<g id="K_i">
	<g>
		<path d="M454.759,93.744v-9.571h2.194v0.66h-1.379v8.251h1.379v0.66H454.759z"/>
		<path d="M458.095,84.317h1.043v3.898h0.035c0.217-0.312,0.434-0.6,0.637-0.864l2.472-3.034h1.295l-2.926,3.43l3.152,4.653h-1.234
			l-2.662-3.97l-0.769,0.887V92.4h-1.043V84.317L458.095,84.317z"/>
		<path d="M466.386,84.173v9.571h-2.194v-0.66h1.379v-8.251h-1.379v-0.66H466.386z"/>
		<path d="M468.566,92.063c0.007,0.21-0.146,0.377-0.393,0.377c-0.217,0-0.37-0.167-0.37-0.377c0-0.216,0.16-0.384,0.386-0.384
			C468.42,91.679,468.566,91.847,468.566,92.063z M467.881,96.396v-3.382h0.615v3.382H467.881z"/>
	</g>
	<g id="XMLID_8_">
		<g>
		</g>
		<g>
			<rect x="443.328" y="77.7" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.16"/>
		</g>
	</g>
</g>
<g id="Ca_i">
	<g>
		<path d="M513.14,93.744v-9.571h2.195v0.66h-1.38v8.251h1.38v0.66H513.14z"/>
		<path d="M521.982,92.137c-0.386,0.192-1.152,0.396-2.136,0.396c-2.278,0-3.994-1.451-3.994-4.102c0-2.531,1.716-4.246,4.222-4.246
			c1.008,0,1.644,0.216,1.92,0.36l-0.252,0.852c-0.396-0.192-0.96-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
			c0,1.979,1.139,3.25,3.104,3.25c0.637,0,1.283-0.132,1.703-0.336L521.982,92.137z"/>
		<path d="M527.25,91.009c0,0.503,0.024,0.995,0.097,1.391h-0.96l-0.084-0.731h-0.035c-0.323,0.456-0.946,0.863-1.774,0.863
			c-1.176,0-1.775-0.828-1.775-1.667c0-1.403,1.248-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
			c-0.54,0-1.103,0.168-1.511,0.432l-0.24-0.695c0.48-0.312,1.177-0.516,1.907-0.516c1.774,0,2.206,1.211,2.206,2.375L527.25,91.009
			L527.25,91.009z M526.231,89.438c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.684,0.456,1.008,0.994,1.008
			c0.757,0,1.236-0.48,1.404-0.972c0.035-0.108,0.061-0.229,0.061-0.336V89.438z"/>
		<path d="M530.504,84.173v9.571h-2.195v-0.66h1.38v-8.251h-1.38v-0.66H530.504z"/>
		<path d="M532.683,92.063c0.009,0.21-0.146,0.377-0.391,0.377c-0.217,0-0.371-0.167-0.371-0.377c0-0.216,0.162-0.384,0.385-0.384
			C532.537,91.679,532.683,91.847,532.683,92.063z M532,96.396v-3.382h0.614v3.382H532z"/>
	</g>
	<g id="XMLID_9_">
		<g>
		</g>
		<g>
			<rect x="504.579" y="77.7" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.16"/>
		</g>
	</g>
</g>
<g id="Na_b_1_">
	<g>
		<path d="M54.783,110.795v-9.571h2.194v0.66h-1.379v8.251h1.379v0.66H54.783z"/>
		<path d="M58.119,109.452v-8.083h1.139l2.591,4.09c0.601,0.947,1.067,1.799,1.451,2.626l0.024-0.012
			c-0.097-1.079-0.12-2.063-0.12-3.322v-3.382h0.982v8.083h-1.055l-2.566-4.102c-0.563-0.9-1.104-1.823-1.511-2.699l-0.036,0.012
			c0.061,1.019,0.084,1.991,0.084,3.334v3.454L58.119,109.452L58.119,109.452z"/>
		<path d="M70.056,108.062c0,0.503,0.024,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.946,0.863-1.774,0.863
			c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
			c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.695c0.48-0.312,1.176-0.516,1.907-0.516c1.775,0,2.207,1.211,2.207,2.375
			L70.056,108.062L70.056,108.062z M69.037,106.489c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.456,1.008,0.996,1.008
			c0.755,0,1.234-0.48,1.402-0.972c0.036-0.108,0.061-0.228,0.061-0.336L69.037,106.489L69.037,106.489z"/>
		<path d="M73.31,101.225v9.571h-2.194v-0.66h1.379v-8.251h-1.379v-0.66H73.31z"/>
		<path d="M74.805,108.486h0.608v2.125h0.014c0.216-0.377,0.608-0.622,1.153-0.622c0.839,0,1.433,0.699,1.426,1.726
			c0,1.209-0.762,1.81-1.518,1.81c-0.488,0-0.88-0.188-1.132-0.636h-0.021l-0.028,0.559h-0.531c0.015-0.23,0.028-0.573,0.028-0.874
			V108.486z M75.413,112.092c0,0.077,0.014,0.154,0.027,0.224c0.119,0.426,0.477,0.72,0.923,0.72c0.644,0,1.027-0.524,1.027-1.3
			c0-0.678-0.349-1.258-1.006-1.258c-0.419,0-0.811,0.287-0.936,0.755c-0.015,0.07-0.035,0.154-0.035,0.251L75.413,112.092
			L75.413,112.092z"/>
	</g>
	<rect id="Na_b_path1" x="48.06" y="94.795" fill="none" stroke="#FFFFFF" stroke-width="5" width="36.67" height="25.16"/>
</g>
</svg>
</window>