Skip to content
Snippets Groups Projects
Commit 855c482b authored by Daniel Brown's avatar Daniel Brown
Browse files

adding code so far

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 3733 additions and 0 deletions
*.pyc
#
\ No newline at end of file
# -*- coding: utf-8 -*-
"""
Created on Mon Jan 28 10:43:18 2013
@author: Daniel
"""
class colours:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
def disable(self):
self.HEADER = ''
self.OKBLUE = ''
self.OKGREEN = ''
self.WARNING = ''
self.FAIL = ''
self.ENDC = ''
\ No newline at end of file
# -*- coding: utf-8 -*-
"""
Created on Mon Jan 28 11:58:09 2013
@author: Daniel
"""
import numpy
from numpy import min,max
import exceptions
from components import *
from structs import *
class Command:
def getFinesseText(self):
""" Base class for individual finesse optical components """
raise NotImplementedError("This function is not implemented")
class xaxis(Command):
def __init__(self, kat, scale, limits, comp, param, steps):
if scale != Scale.linear and scale != Scale.logarithmic:
raise exceptions.ValueError("scale is not Scale.linear or Scale.logarithmic")
self.scale = scale
if numpy.size(limits) != 2 :
raise exceptions.ValueError("limits input should be a 2x1 vector of limits for the xaxis")
self.limits = limits
if steps <= 0 :
raise exceptions.ValueError("steps value should be > 0")
self.steps = steps
if not isinstance(comp, Component):
raise exceptions.ValueError("comp is not a Component")
self.__comp = comp
if not isinstance(param, Param) :
raise exceptions.ValueError("param argument is not of type Param")
self._param = param
kat.add(self)
def getFinesseText(self):
return 'xaxis {0} {1} {2} {3} {4} {5}'.format(
self.__comp.name, self._param.name, self.scale,
min(self.limits), max(self.limits), self.steps);
\ No newline at end of file
# -*- coding: utf-8 -*-
"""
Created on Mon Jan 28 11:10:01 2013
@author: Daniel
"""
import exceptions
import pykat.gui.resources
import pykat
from pykat.gui.graphics import *
from pykat.node_network import *
from PyQt4.QtGui import *
from PyQt4.Qt import *
class Component() :
def __init__(self, name, kat):
self.__name = name
self._svgItem = None
self.__nodes = []
self._kat = kat
if not isinstance(kat,pykat.finesse.kat):
raise exceptions.ValueError("kat argument is not a pykat.finesse.kat object")
kat.add(self)
def getFinesseText(self):
""" Base class for individual finesse optical components """
raise NotImplementedError("This function is not implemented")
def getQGraphicsItem(self):
return None
def _addNode(self, name):
""" Adds a node in sequential order to the component, i.e. add them
n1, n2, n3, n4... etc. by the name of the node"""
n = self._kat.nodes.createNode(name)
if n == None:
raise exceptions.RuntimeError("getNode did not return a node for '{0}'".format(name))
else:
n.connect(self)
self.__nodes.append(n)
return n
def getNodes(self):
""" Returns a copy of the nodes the component has """
return self.__nodes[:]
def __getname(self):
return self.__name
name = property(__getname)
class Param:
def __init__(self,name,value):
self.value = value
self.__name = name
def getname(self):
return self.__name
name = property(getname)
class mirror(Component):
def __init__(self,kat,name,node1,node2,R=0,T=0,phi=0,Rcx=0,Rcy=0,xbeta=0,ybeta=0):
Component.__init__(self,name,kat)
self.node1 = self._addNode(node1)
self.node2 = self._addNode(node2)
self.R = Param('R',R)
self.T = Param('R',T)
self.phi = Param('phi',phi)
self.Rcx = Param('rcx',Rcx)
self.Rcy = Param('rcy',Rcy)
self.xbeta = Param('xbeta',xbeta)
self.ybeta = Param('ybeta',ybeta)
def _getRc(self):
if self.Rcx == self.Rcy:
return self.Rcx
else:
return [self.Rcx, self.Rcy]
def _setRc(self,value):
self.Rcx = value
self.Rcy = value
Rc = property(_getRc,_setRc)
def getFinesseText(self):
rtn = []
rtn.append('m {0} {1} {2} {3} {4} {5}'.format(
self.name, self.R.value, self.T.value, self.phi.value,
self.node1.name, self.node2.name))
if self.Rcx != 0: rtn.append("attr {0} Rcx {1}".format(self.name,self.Rcx))
if self.Rcy != 0: rtn.append("attr {0} Rcy {1}".format(self.name,self.Rcy))
if self.xbeta != 0: rtn.append("attr {0} xbeta {1}".format(self.name,self.xbeta))
if self.ybeta != 0: rtn.append("attr {0} ybeta {1}".format(self.name,self.ybeta))
return rtn
def getQGraphicsItem(self):
if self._svgItem == None:
self._svgItem = ComponentQGraphicsItem(":/resources/mirror_flat.svg",self
,[(-20,0,self.node1),(20,0,self.node2)])
return self._svgItem
class space(Component):
def __init__(self,kat , name, node1, node2, L=0, n=1):
Component.__init__(self,name,kat)
self.node1 = self._addNode(node1)
self.node2 = self._addNode(node2)
self.length = Param('L',L)
self.refractive_index = Param('n',n)
def getFinesseText(self):
if self.refractive_index.value == 1:
return 's {0} {1} {2} {3}'.format(self.name, self.length.value, self.node1.name, self.node2.name)
else:
return 's {0} {1} {2} {3} {4}'.format(self.name, self.length.value, self.refractive_index.value, self.node1.name, self.node2.name)
class laser(Component):
def __init__(self,kat,name,node,P=1,f_offset=0,phase=0):
Component.__init__(self,name,kat)
self.node = self._addNode(node)
self.power = Param('P', P)
self.f_offset = Param('f', f_offset)
self.phase = Param('phase',phase)
def getFinesseText(self):
if self.phase.value == 0 :
return 'l {0} {1} {2} {3}'.format(self.name, self.power.value, self.f_offset.value, self.node.name)
else :
return 'l {0} {1} {2} {4} {3}'.format(self.name, self.power.value, self.f_offset.value, self.phase.value, self.node.name)
def getQGraphicsItem(self):
if self._svgItem == None:
self._svgItem = ComponentQGraphicsItem(":/resources/laser.svg",self,[(70,0,self.node)])
return self._svgItem
# -*- coding: utf-8 -*-
"""
Created on Fri Feb 01 09:09:10 2013
@author: Daniel
"""
import exceptions
import pykat.gui.resources
from pykat.utils import *
from pykat.gui.graphics import *
from pykat.node_network import *
from PyQt4.QtGui import *
from PyQt4.Qt import *
class Detector() :
def __init__(self, name,node,kat):
self.__name = name
self._svgItem = None
self._kat = kat
kat.add(self)
self.__node = kat.nodes.createNode(node)
self.__node.connect(self)
def getFinesseText(self):
""" Base class for individual finesse optical components """
raise NotImplementedError("This function is not implemented")
def getQGraphicsItem(self):
return None
def getNode(self):
return self.__node;
def __getname(self):
return self.__name
name = property(__getname)
class photodiode(Detector):
def __init__(self,kat,name,node) :
Detector.__init__(self,name,node,kat)
if node.find('*'):
self._alternate_beam = True
node.replace('*','')
self.__node = kat.nodes.createNode(node)
def getFinesseText(self) :
if self._alternate_beam:
return "pd {0} {1}".format(self.name, self.__node.name)
else:
return "pd {0} {1}*".format(self.name, self.__node.name)
def getQGraphicsItem(self):
if self._svgItem == None:
self._svgItem = ComponentQGraphicsItem(":/resources/photodiode_red.svg",self,[(-20,0,self.node)])
return self._svgItem
\ No newline at end of file
# -*- coding: utf-8 -*-
"""
Created on Sun Jan 27 09:56:53 2013
@author: Daniel
"""
import os
import exceptions
import subprocess
import tempfile
import numpy as np
from colorama import Fore
from pykat.node_network import NodeNetwork
from pykat.detectors import Detector
from pykat.components import Component
from pykat.commands import Command
from pykat.gui.gui import *
class MissingFinesseEnvVar(Exception) :
def __str__(self) :
return "The environment variable FINESSE_DIR was not defined"
class kat:
def __init__(self):
self.__components = {}
self.__detectors = {}
self.__commands = {}
self.__gui = None
self.nodes = NodeNetwork(self)
# Various
self.phase = None
self.maxtem = None
self.noxaxis = None
def run(self, printout=1, printerr=1, save_output=False, save_kat=False
,kat_name=None) :
""" Runs the current simulation """
# Get the environment variable for where Finesse is stored
self.__finesse_dir = os.environ.get('FINESSE_DIR')
if self.__finesse_dir == None :
raise exceptions.MissingFinesseEnvVar
katfile = tempfile.TemporaryFile(suffix=".kat")
katfile.writelines(self.generate())
katfile.flush()
kat_exec = os.path.join(self.__finesse_dir,'kat {0}'.format(
katfile.name))
p=subprocess.Popen(kat_exec,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
[out,err] = p.communicate()
if printout == 1: print Fore.GREEN + out
if printerr == 1: print Fore.RED + err
[root,ext] = os.path.splitext(katfile.name)
base = os.path.basename(root)
outfile = root + ".out"
[x,y,hdr] = self.readOutFile(outfile)
if save_output:
newoutfile = "{0}.out".format(base)
cwd = os.path.os.getcwd()
newoutfile = os.path.join(cwd,newoutfile)
os.rename(outfile, newoutfile)
print "Output data saved to '{0}'".format(newoutfile)
if save_kat:
if kat_name == None:
kat_name = "pykat_output"
cwd = os.path.os.getcwd()
newkatfile = os.path.join(cwd, kat_name + ".kat")
os.rename(katfile.name, newkatfile)
print "Kat file saved to '{0}'".format(newkatfile)
katfile.close()
return [x,y,hdr]
def add(self, obj) :
if isinstance(obj, Component):
if obj.name in self.__components :
raise exceptions.ValueError("A component with name '{0}' has already been added".format([obj.name]))
self.__components[obj.name] = obj
self.__add_component(obj)
elif isinstance(obj, Detector):
if obj.name in self.__detectors :
raise exceptions.ValueError("A detector '{0}' has already been added".format(obj.name))
self.__detectors[obj.name] = obj
self.__add_detector(obj)
elif isinstance(obj, Command):
# dont error when adding same command, just replace it
#if obj.__class__.__name__ in self.__commands :
# raise exceptions.ValueError("A command '{0}' has already been added".format([obj.__class__.__name__]))
self.__commands[obj.__class__.__name__] = obj
self.__add_command(obj)
else :
raise exceptions.ValueError("Object could not be added")
# now we have added the component we need to update the node
# network
def readOutFile(self, filename):
outfile = open(filename,'r')
# read first to lines to get to header line
outfile.readline()
outfile.readline()
hdr = outfile.readline().replace('%','').replace('\n','').split(',')
data = np.loadtxt(filename,comments='%')
rows,cols = data.shape
x = data[:,0]
y = data[:,1:cols]
return [x, y, hdr]
def generate(self) :
""" Generates the kat file which can then be run """
if len(self.__components) == 0 :
raise exceptions.RuntimeError("No components have been added")
out = []
for key in self.__components:
txt = self.__components[key].getFinesseText()
if txt != None:
if isinstance(txt,list):
for t in txt: out.append(t+ "\n")
else:
out.append(txt + "\n")
for key in self.__detectors:
out.append(self.__detectors[key].getFinesseText() + "\n")
if self.noxaxis != None and self.noxaxis == True:
out.append("noxaxis\n")
for key in self.__commands:
if self.noxaxis == None or (self.noxaxis == True and isinstance(self.__commands[key], xaxis)):
out.append(self.__commands[key].getFinesseText() + "\n")
if self.phase != None: out.append("phase {0}\n".format(self.phase))
if self.maxtem != None: out.append("maxtem {0}\n".format(self.maxtem))
out.append("gnuterm no\n")
out.append("pyterm no\n")
return out
def openGUI(self):
self.__gui = openGUI(self)
def getComponents(self):
return self.__components.values()
def __add_detector(self, det):
if not isinstance(det, Detector):
raise exceptions.ValueError("Argument is not of type Command")
name = det.name
fget = lambda self: self.__get_command(name)
setattr(self.__class__, name, property(fget))
setattr(self, '__det_' + name, det)
def __get_detector(self, name):
return getattr(self, '__det_' + name)
def __add_command(self, com):
if not isinstance(com, Command):
raise exceptions.ValueError("Argument is not of type Command")
name = com.__class__.__name__
fget = lambda self: self.__get_command(name)
setattr(self.__class__, name, property(fget))
setattr(self, '__com_' + name, com)
def __get_command(self, name):
return getattr(self, '__com_' + name)
def __add_component(self, comp):
if not isinstance(comp, Component):
raise exceptions.ValueError("Argument is not of type Component")
fget = lambda self: self.__get_component(comp.name)
setattr(self.__class__, comp.name, property(fget))
setattr(self, '__comp_' + comp.name, comp)
def __get_component(self, name):
return getattr(self, '__comp_' + name)
\ No newline at end of file
# -*- coding: utf-8 -*-
"""
Created on Tue Jan 29 11:34:58 2013
@author: Daniel
"""
# -*- coding: utf-8 -*-
"""
Created on Fri Feb 01 09:13:03 2013
@author: Daniel
"""
from PyQt4.QtGui import *
from PyQt4.Qt import *
class NodeQGraphicItem(QGraphicsRectItem):
pass
class ComponentQGraphicsItem(QGraphicsSvgItem):
def __init__(self, svgfile, component, nodes):
QGraphicsSvgItem.__init__(self, svgfile)
self.__component = component
item = QGraphicsTextItem(component.name,self)
rect = item.boundingRect()
item.setPos(-0.5*rect.width(),40-0.5*rect.height())
for n in nodes:
node = NodeQGraphicItem(n[0],n[1],8,8,self)
node.setBrush(QBrush(Qt.red))
node.setPen(QPen(Qt.black))
\ No newline at end of file
# -*- coding: utf-8 -*-
"""
Created on Tue Jan 29 11:35:48 2013
@author: Daniel
"""
from PyQt4 import QtGui, QtCore
from PyQt4.Qt import *
from PyQt4.QtGui import QCursor
from pykat.gui.graphics import *
import qt_gui
def openGUI(kat):
app = QtGui.QApplication([""])
pykatgui = pyKatGUI(kat)
pykatgui.main()
app.exec_()
class pyKatGUI(QtGui.QMainWindow, qt_gui.Ui_MainWindow):
def __init__(self, kat,parent=None):
super(pyKatGUI, self).__init__(parent)
self.setupUi(self)
# create a new scene
self.__scene = QGraphicsScene()
brush = QBrush()
brush.setStyle(Qt.CrossPattern)
brush.setColor(QColor(230,230,230))
self.__scene.setBackgroundBrush(brush)
# add scene to the graphics view
self.graphicsView.setScene(self.__scene)
self._kat = kat
def main(self):
self.show()
self.addComponentsToScene()
def scene(self):
return self.__scene
def addComponentsToScene(self):
for c in self._kat.getComponents():
itm = c.getQGraphicsItem()
if itm != None:
itm.setPos(0,0)
self.__scene.addItem(itm)
class pyKatGraphicsView(QGraphicsView):
def __init__(self,val):
QGraphicsView.__init__(self,val)
self.__selected_item = None
self.__prev_pt = None
def contextMenuEvent(self, ev):
pt = self.mapToScene(ev.pos())
menu = QMenu(self)
addmenu = menu.addMenu("Add...")
addmenu.addAction("Mirror")
addmenu.addAction("Laser")
addmenu.addAction("Beamsplitter")
addmenu.addAction("Photodiode")
item = self.itemAt(pt.x(),pt.y())
if item != None :
if isinstance(item,Component):
menu.addSeparator()
menu.addAction("Edit")
menu.addAction("Delete")
if isinstance(item,NodeQGraphicItem):
menu.addSeparator()
menu.addAction("Disconnect")
menu.popup(ev.globalPos());
def mousePressEvent(self, ev):
if ev.button()==Qt.LeftButton:
pt = self.mapToScene(ev.pos())
item = self.scene().itemAt(pt)
if isinstance(item, ComponentQGraphicsItem):
if item == None:
self.__selected_item = None
self.__prev_pt = None
else:
item.setFocus(Qt.MouseFocusReason)
self.__selected_item = item
self.__prev_pt = pt
def mouseReleaseEvent(self, ev):
self.__selected_item = None
self.setCursor(QCursor(Qt.ArrowCursor))
pass
def mouseMoveEvent(self, ev):
if self.__selected_item != None:
self.setCursor(QCursor(Qt.ClosedHandCursor))
item = self.__selected_item
pt_ = self.__prev_pt
pt = self.mapToScene(ev.pos())
item.moveBy(pt.x()-pt_.x(), pt.y()-pt_.y())
self.__prev_pt = pt
\ No newline at end of file
from PyQt4 import QtCore, QtGui
import gui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName(_fromUtf8("MainWindow"))
MainWindow.resize(809, 611)
MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8))
self.centralwidget = QtGui.QWidget(MainWindow)
sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Preferred)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.centralwidget.sizePolicy().hasHeightForWidth())
self.centralwidget.setSizePolicy(sizePolicy)
self.centralwidget.setObjectName(_fromUtf8("centralwidget"))
self.gridLayout = QtGui.QGridLayout(self.centralwidget)
self.gridLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
self.gridLayout.setMargin(5)
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
self.graphicsView = gui.pyKatGraphicsView(self.centralwidget)
self.graphicsView.setObjectName(_fromUtf8("graphicsView"))
self.gridLayout.addWidget(self.graphicsView, 0, 0, 1, 1)
self.widget = QtGui.QWidget(self.centralwidget)
self.widget.setMinimumSize(QtCore.QSize(200, 0))
self.widget.setMaximumSize(QtCore.QSize(200, 16777215))
self.widget.setObjectName(_fromUtf8("widget"))
self.verticalLayout = QtGui.QVBoxLayout(self.widget)
self.verticalLayout.setMargin(0)
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.label = QtGui.QLabel(self.widget)
self.label.setText(QtGui.QApplication.translate("MainWindow", "Toolbox", None, QtGui.QApplication.UnicodeUTF8))
self.label.setObjectName(_fromUtf8("label"))
self.verticalLayout.addWidget(self.label)
self.toolBox = QtGui.QToolBox(self.widget)
self.toolBox.setMinimumSize(QtCore.QSize(0, 200))
self.toolBox.setFrameShape(QtGui.QFrame.Panel)
self.toolBox.setFrameShadow(QtGui.QFrame.Sunken)
self.toolBox.setObjectName(_fromUtf8("toolBox"))
self.tool_components = QtGui.QWidget()
self.tool_components.setGeometry(QtCore.QRect(0, 0, 176, 136))
self.tool_components.setObjectName(_fromUtf8("tool_components"))
self.toolBox.addItem(self.tool_components, _fromUtf8(""))
self.page_2 = QtGui.QWidget()
self.page_2.setGeometry(QtCore.QRect(0, 0, 176, 136))
self.page_2.setObjectName(_fromUtf8("page_2"))
self.toolBox.addItem(self.page_2, _fromUtf8(""))
self.verticalLayout.addWidget(self.toolBox)
self.widget_2 = QtGui.QWidget(self.widget)
self.widget_2.setMinimumSize(QtCore.QSize(0, 300))
self.widget_2.setObjectName(_fromUtf8("widget_2"))
self.verticalLayout.addWidget(self.widget_2)
self.gridLayout.addWidget(self.widget, 0, 1, 1, 1)
self.gridLayout.setColumnStretch(0, 4)
MainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtGui.QMenuBar(MainWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 809, 25))
self.menubar.setObjectName(_fromUtf8("menubar"))
self.menuFile = QtGui.QMenu(self.menubar)
self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8))
self.menuFile.setObjectName(_fromUtf8("menuFile"))
self.menuAbout = QtGui.QMenu(self.menubar)
self.menuAbout.setTitle(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8))
self.menuAbout.setObjectName(_fromUtf8("menuAbout"))
MainWindow.setMenuBar(self.menubar)
self.statusbar = QtGui.QStatusBar(MainWindow)
self.statusbar.setObjectName(_fromUtf8("statusbar"))
MainWindow.setStatusBar(self.statusbar)
self.actionClose = QtGui.QAction(MainWindow)
self.actionClose.setText(QtGui.QApplication.translate("MainWindow", "Close", None, QtGui.QApplication.UnicodeUTF8))
self.actionClose.setObjectName(_fromUtf8("actionClose"))
self.actionSave = QtGui.QAction(MainWindow)
self.actionSave.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8))
self.actionSave.setObjectName(_fromUtf8("actionSave"))
self.actionOpen = QtGui.QAction(MainWindow)
self.actionOpen.setText(QtGui.QApplication.translate("MainWindow", "Open", None, QtGui.QApplication.UnicodeUTF8))
self.actionOpen.setObjectName(_fromUtf8("actionOpen"))
self.actionHelp = QtGui.QAction(MainWindow)
self.actionHelp.setText(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
self.actionHelp.setObjectName(_fromUtf8("actionHelp"))
self.menuFile.addAction(self.actionSave)
self.menuFile.addAction(self.actionOpen)
self.menuFile.addSeparator()
self.menuFile.addAction(self.actionClose)
self.menuAbout.addAction(self.actionHelp)
self.menubar.addAction(self.menuFile.menuAction())
self.menubar.addAction(self.menuAbout.menuAction())
self.retranslateUi(MainWindow)
self.toolBox.setCurrentIndex(0)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
self.toolBox.setItemText(self.toolBox.indexOf(self.tool_components), QtGui.QApplication.translate("MainWindow", "Page 1", None, QtGui.QApplication.UnicodeUTF8))
self.toolBox.setItemText(self.toolBox.indexOf(self.page_2), QtGui.QApplication.translate("MainWindow", "Page 2", None, QtGui.QApplication.UnicodeUTF8))
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>809</width>
<height>611</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<layout class="QGridLayout" name="gridLayout" rowstretch="0" columnstretch="4,0">
<property name="sizeConstraint">
<enum>QLayout::SetDefaultConstraint</enum>
</property>
<property name="margin">
<number>5</number>
</property>
<item row="0" column="0">
<widget class="QGraphicsView" name="graphicsView"/>
</item>
<item row="0" column="1">
<widget class="QWidget" name="widget" native="true">
<property name="minimumSize">
<size>
<width>200</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>200</width>
<height>16777215</height>
</size>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Toolbox</string>
</property>
</widget>
</item>
<item>
<widget class="QToolBox" name="toolBox">
<property name="minimumSize">
<size>
<width>0</width>
<height>200</height>
</size>
</property>
<property name="frameShape">
<enum>QFrame::Panel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Sunken</enum>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="tool_components">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>176</width>
<height>136</height>
</rect>
</property>
<attribute name="label">
<string>Page 1</string>
</attribute>
</widget>
<widget class="QWidget" name="page_2">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>176</width>
<height>136</height>
</rect>
</property>
<attribute name="label">
<string>Page 2</string>
</attribute>
</widget>
</widget>
</item>
<item>
<widget class="QWidget" name="widget_2" native="true">
<property name="minimumSize">
<size>
<width>0</width>
<height>300</height>
</size>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>809</width>
<height>25</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>File</string>
</property>
<addaction name="actionSave"/>
<addaction name="actionOpen"/>
<addaction name="separator"/>
<addaction name="actionClose"/>
</widget>
<widget class="QMenu" name="menuAbout">
<property name="title">
<string>About</string>
</property>
<addaction name="actionHelp"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuAbout"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="actionClose">
<property name="text">
<string>Close</string>
</property>
</action>
<action name="actionSave">
<property name="text">
<string>Save</string>
</property>
</action>
<action name="actionOpen">
<property name="text">
<string>Open</string>
</property>
</action>
<action name="actionHelp">
<property name="text">
<string>Help</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>
# -*- coding: utf-8 -*-
# Resource object code
#
# Created: Wed 30. Jan 22:29:10 2013
# by: The Resource Compiler for PyQt (Qt v4.7.3)
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore
qt_resource_data = "\
\x00\x00\x08\x23\
\x00\
\x00\x23\xb1\x78\x9c\xe5\x59\x5b\x6f\xdb\xc6\x12\x7e\xf7\xaf\x50\
\xe9\x97\x18\x35\x97\x7b\xe3\x92\x54\x2c\x17\x8e\x2f\x45\x80\x03\
\xb4\x38\x49\xda\xc7\x82\x22\x57\x32\x61\x8a\x14\x48\x3a\x92\xfa\
\xeb\x3b\x4b\xf1\x7e\xb1\xa9\xc4\x39\xe7\xa1\x34\x02\x49\x3b\xb3\
\xf3\x71\xae\x3b\xb3\xb9\xfa\x65\xbf\x09\x67\x5f\x65\x92\x06\x71\
\xb4\xd0\x08\xc2\xda\x4c\x46\x5e\xec\x07\xd1\x7a\xa1\x7d\xf9\xfc\
\xa0\xdb\xda\x2c\xcd\xdc\xc8\x77\xc3\x38\x92\x0b\x2d\x8a\xb5\x5f\
\xae\xcf\xae\x7e\xd2\xf5\xd9\x6d\x22\xdd\x4c\xfa\xb3\x5d\x90\x3d\
\xce\x3e\x46\x4f\xa9\xe7\x6e\xe5\xec\xdd\x63\x96\x6d\xe7\x86\xb1\
\xdb\xed\x50\x50\x2c\xa2\x38\x59\x1b\x17\x33\x5d\xbf\x3e\x3b\xbb\
\x4a\xbf\xae\xcf\x66\xb3\x19\xe0\x46\xe9\x3c\x58\x68\x05\x7f\x94\
\x22\xd7\x8f\x97\x12\x79\xf1\xc6\xb8\x51\xdf\x3e\x86\xe1\x73\x9a\
\x25\x6e\x16\x27\x06\xc1\x08\x1b\x5a\xbd\xcf\x7d\x61\xdf\xa7\x3f\
\x7e\xfd\x23\x90\x3b\x99\xdc\xef\x33\x19\x29\xc5\x52\x83\xb5\xb7\
\xfb\x5e\xb5\x7f\xfb\x9c\x84\xf9\xfb\xf9\x9e\x21\x43\xb9\x91\x51\
\x96\x1a\x04\x91\x26\xbb\x57\xb3\x7b\x4a\xe9\xe0\xab\x04\xb4\x0d\
\x08\xce\x77\x46\xe9\x79\x83\x39\xf1\x57\x15\xb7\x32\xc2\x8e\xe5\
\x4c\xc4\x71\x1c\x03\x53\x83\x52\x1d\x38\xf4\xf4\x10\x65\xee\x5e\
\x6f\x6f\x05\xd3\x0c\x6d\xa5\x18\x63\x03\x68\x35\xe7\x34\xae\xf9\
\x3e\x04\x0f\x8c\xbe\x4c\x4e\x6d\xa2\x83\xd7\xb7\xf0\xaf\xda\x50\
\x2e\xa0\x34\x7e\x4e\x3c\xb9\x82\x9d\x12\x45\x32\x33\xee\x3e\xdf\
\x55\x44\x1d\x23\x3f\xf3\x1b\x62\x4a\xa7\xb7\x70\x5b\x91\x10\xb9\
\x1b\x99\x6e\x5d\x4f\xa6\x46\xb9\x9e\xef\xdf\x05\x7e\xf6\xb8\xd0\
\x04\x41\xc2\xb6\xcc\x7c\xe9\x51\x06\xeb\xc7\x6c\xa1\x71\x81\xb0\
\xc3\x8a\xc5\xc0\x5f\x68\xa0\x28\xcd\x7f\x34\x62\x97\x1c\xa9\x85\
\xc8\x79\x45\xc1\x88\xdb\x88\xce\x12\xc7\x26\x4e\xce\x52\xbe\xfb\
\xdc\x8f\x3d\xf5\x32\x0b\x6d\xfb\x18\x67\xb0\x10\xfb\xf2\xaf\x75\
\x22\x65\x84\x94\x21\xaf\x81\xf7\xca\x97\xab\x54\xed\x39\xc2\xaa\
\x5f\x3c\x27\x00\x29\x71\xfd\xc0\x0d\x7f\x55\x1f\x10\x35\x47\xa6\
\xd9\x6c\x5d\xfc\xfe\x12\x05\x19\x38\xea\x39\x95\xc9\x27\xa5\xec\
\x6f\xd1\x97\xf4\xa8\x67\x93\xeb\x73\xe2\x46\x29\x58\x76\xb3\xd0\
\x36\x6e\x96\x04\xfb\x77\x14\x59\x84\x52\x9b\x3b\x97\x3a\x47\x0e\
\x63\x44\x58\xb6\xd4\xed\x4b\x82\x18\xb1\x6d\x9b\x59\x52\xb7\x2e\
\x29\x12\xa6\x6d\xf2\x4b\x9d\x08\xc4\x89\x09\x2c\xf0\xd5\x44\x36\
\x03\xcf\x9a\x17\x15\x4a\x02\xd6\x44\x96\x49\xc1\xdd\x76\xb5\xb8\
\x3a\x2c\x34\xb0\x07\x37\x29\xc1\xa2\x5e\xdd\x2f\x34\x07\x99\xb6\
\x05\x61\x54\xf3\x7a\x83\xbc\xde\x20\xaf\xb2\x4f\xdb\x24\x26\xb5\
\x68\x45\xce\xc3\x6d\xfe\x98\x48\x48\x8f\xf3\x2e\x9f\xe0\xb5\x98\
\xd2\x7f\x5e\x1c\x86\xd2\x03\xe7\xbb\xe1\xce\x3d\xa4\xda\xcc\x78\
\xd1\xee\x43\xf0\x0d\xb1\xea\x9d\x6d\x64\x5b\x0e\xc7\x98\xb5\xf4\
\xb3\x10\x17\xd8\x6e\x5a\x08\xcc\x46\x2c\x84\x85\x45\x30\x69\x19\
\xa8\x2f\x60\x35\x28\xe0\xe5\x18\xb8\x2e\xd8\xae\xd2\x2c\xde\x96\
\x5b\x66\xb3\x78\xb5\x4a\x25\xa8\x8b\xb5\x7a\x2d\xcd\x0e\x21\x84\
\xa7\x62\xd4\xc1\x1e\x71\x32\x3f\x7f\xb8\xbf\xbb\x37\xed\x06\x4f\
\x9e\x0e\xc0\x60\x52\x6e\x57\x46\x1a\x97\x0e\xc9\x65\xf2\x97\x21\
\x3e\xdc\x80\x63\xf1\x20\x84\x89\x9b\x10\xee\x7c\x13\xf8\xbf\xc7\
\x41\x94\x7d\xfa\x0e\x55\x4e\x11\x88\xcc\xb7\x17\x39\xd9\x20\x55\
\x04\x1a\xed\x40\xfb\xc1\xf5\x40\xd8\x0e\xe1\xe6\xb1\x1e\x10\x07\
\x43\x2e\x1e\xeb\x81\x60\x26\xa3\xc2\x52\x3f\xf2\x7a\xc0\x85\xc8\
\x0b\x02\x71\x98\xcd\x49\x5e\x10\x4c\x62\x62\x41\x26\x15\x04\x42\
\x05\x66\xa6\xd5\x2b\x08\x02\x78\x9d\x4e\x41\xe8\xf2\x7a\x83\xbc\
\x03\x19\xc9\xcc\x69\x05\x81\xf1\x1f\x52\x10\x9a\x62\xcb\x82\x60\
\x43\xe6\x8a\x7e\x41\x80\x2c\x27\xbd\x82\x20\xc4\x40\x41\x68\x0b\
\x58\x0d\x0a\xf8\xff\x14\x04\x46\xad\xb7\x29\x08\x98\xdc\xdc\xf1\
\xfb\x61\x08\xe7\xdf\x58\x10\x0a\x83\xbc\x52\x10\x20\xc0\xa5\x9b\
\x74\xe3\xf2\x40\x21\x59\x28\x62\x8c\xf1\x46\xdc\xec\x61\x95\x33\
\x04\x19\x52\x2b\x74\x20\x10\x77\xc4\x46\xd8\x62\xf5\xe2\x9e\xf4\
\x19\xc7\xab\x07\x46\xf6\x25\x56\x7f\xf0\xa9\x33\x8e\x6c\xe8\x2c\
\x2e\x75\x68\xb1\x08\xc1\xf6\xc5\xc4\xf8\x6c\x66\x54\x5b\x27\xd3\
\xe2\x64\x38\xa1\xbb\x7c\x54\x9c\x90\xd0\xc3\x86\x1b\x82\x6f\x88\
\x9d\xa6\x83\x32\x1f\xb5\x91\x45\x89\xd5\xc8\x4f\x65\x69\x46\x91\
\x03\xf2\x1a\x85\x51\xf9\x64\x80\x17\x56\x09\x43\x84\x61\xe7\x7b\
\x33\x37\x7f\x86\xd2\x4a\x38\x78\x4a\xe6\x62\x6c\x92\xd7\xc2\xff\
\xe1\xf6\xe1\x76\x18\x82\x4e\x81\x20\xdc\xb1\x5e\x86\xb8\x17\x37\
\xfc\x86\x0f\x43\xf0\x29\x10\xd4\x7a\x05\xe1\x8e\x99\xf7\xe6\x60\
\xf9\x11\x90\x41\x13\x10\x98\x4d\xd9\xcb\x10\xb7\x82\x7e\xa0\x1f\
\x86\x21\x26\x75\x55\x5c\x90\x57\x2a\xd1\x87\x3b\x7c\x8b\x07\x5d\
\x61\xe1\x49\xde\x36\xb1\x29\x5e\x81\x18\x6d\xdc\x2c\x3c\xc9\xdb\
\x16\x7e\xd5\x17\xb6\xb8\x17\x83\xbe\xb0\xf0\x24\x6f\x3b\xb8\xd1\
\x22\x0c\xc7\x2c\xbf\x13\x77\x62\x18\x62\x82\xbb\x5f\xcb\x88\xd1\
\xa4\xb3\xf0\x69\xe7\xc4\x24\x9c\x93\x0e\x1e\x4e\x29\x7d\x7b\xa9\
\x93\xe3\xe6\xb4\x77\xb5\xac\x57\x72\xea\x74\xa9\xd3\x5c\x57\x9f\
\xba\xed\xd3\x20\x9f\xd7\x0d\x35\xa2\xe7\xdf\xaa\x29\x5f\x8d\xf8\
\xfe\xd7\x40\xee\xce\x2a\x7f\x2f\xdd\xea\x48\xd8\xba\x6b\x99\xcb\
\x87\x43\x6b\x95\x3f\x05\x61\x19\x27\xbe\x4c\x4a\x92\xc8\x9f\x16\
\x29\x86\xd3\x25\xc8\x0e\xc7\x6b\xb3\x42\x76\x79\xb4\x29\xa9\x15\
\x1d\x0f\xd3\xd3\x47\xd7\x8f\x77\x70\xc4\x74\x89\x7f\xc7\xf1\x26\
\xcf\xc6\x2e\x41\xf5\xac\xd4\x24\x88\x62\x22\xcc\x1e\x11\x90\x98\
\x80\xee\x85\x33\xe6\x74\x89\x7e\xec\x3d\xab\xbb\x2d\xfd\xf9\x78\
\x3a\x6e\xf7\xbd\xed\xcf\x49\xa2\x18\x42\xf7\x20\x41\xe1\xfc\xa3\
\xf4\x47\xfa\x18\xef\xd6\x89\x32\xdc\xca\x0d\x2b\xcb\xad\x82\x4c\
\xdf\xb8\xc9\x3a\x88\x74\x70\x52\x9d\x10\x8d\xf5\x50\xae\xb2\x41\
\x42\x72\xbc\xd7\x19\xa0\x2c\xe3\x2c\xcb\xd5\xef\xbe\xe0\x2e\x88\
\xc0\x5c\x7a\x71\x4b\xe4\x98\x3d\xb3\x15\x0c\xe5\x9d\x91\xe3\xf4\
\xec\x57\x70\xa8\x69\x45\x8c\xc9\x3f\x8c\x43\x6f\xdc\x7d\xb0\x09\
\xfe\x96\xbe\x62\x39\x46\xe1\xd5\x46\x66\xae\xef\x66\x6e\x1d\x5b\
\xe5\x8a\x55\xdd\x13\xf9\xab\xf9\x7f\xef\x1e\xaa\x2c\xf0\xbc\xf9\
\x9f\x71\xf2\x54\x87\xba\x62\x70\x97\xf1\x33\xbc\x74\xd5\x51\xa8\
\xab\x27\x6f\xae\x7a\x39\x37\xbb\x0e\x36\x10\x2e\xea\x72\xef\xe7\
\xfd\x26\x84\x10\xaf\x08\x2d\xe6\xec\xb0\x95\xb5\xd0\xa3\xd8\x44\
\x1e\x2f\xef\x06\xef\x3b\x7d\x6f\x13\xa8\x4d\xc6\xa7\x2c\x08\xc3\
\x8f\x0a\xa4\x91\xad\x85\xd0\x20\x0b\xe5\x75\x8e\x79\xfc\x5a\x6a\
\x61\x14\x6a\x54\x1d\x70\xad\xe5\x95\x51\xda\x20\xff\xb5\xee\x58\
\x33\x74\x97\x32\x5c\x68\xff\x51\x11\x36\x23\x5d\x5b\xaf\x93\xf8\
\x79\xbb\x89\x7d\x59\xc4\xa0\x56\x5b\xb6\x15\x93\x59\xdd\xeb\xe6\
\x5f\x43\x37\x93\xef\x74\x28\xa0\x88\x60\xd3\x82\xf1\xd7\x82\x2e\
\x17\x32\x81\x89\x8b\xd2\x11\xeb\x52\xb3\xac\xd7\x27\xeb\x24\x6f\
\x93\xe1\x83\xda\x0c\x59\x0e\xa3\xe4\xd2\xc6\x30\xc8\x31\x46\x1a\
\xf3\xb3\x7a\x8b\x35\x74\x9d\x75\xa1\x0a\xe6\x45\xc2\x1c\x64\xda\
\x58\xf4\x83\x0d\x14\x9d\xdf\xa1\x7e\x40\x4e\x2d\x34\x13\x37\x68\
\xc9\x7a\xf9\x39\x09\x62\x28\x2a\xfc\x01\x63\x1b\x6a\x64\xeb\x44\
\x2a\x0a\x9f\x1f\xa4\x5b\x10\x3d\x0f\x22\x55\xe5\xde\xcb\xc8\x5d\
\x86\x52\x5f\xba\xde\x93\xb2\x50\xe4\xcf\x23\xb9\xab\xfb\xcf\x75\
\xed\xf8\xe3\x3b\x0a\x9b\x35\x63\x29\x81\x3e\xbb\x19\x1b\x05\xc8\
\x0a\xfc\x3e\x3f\x67\x98\x2e\x59\xb3\x98\x43\xeb\x9b\xb7\x4d\x96\
\xd9\x5a\x3c\x0c\x2d\x06\xf3\xa7\x28\xf6\x9e\xf2\xe8\xfd\xad\x2a\
\x9e\xc7\xa7\xc8\x55\x53\x20\xe1\xb0\xe6\x3c\xac\x9e\x32\x4f\x09\
\x45\x56\xeb\x80\x2a\x46\x77\x78\x63\xd0\xc2\x6c\x47\xe4\x5b\xe9\
\x91\x37\xfb\xec\x7f\xa9\x88\xd5\x56\x64\x78\xc4\x29\xf7\xb4\xa9\
\x04\xc2\x98\xb7\xe4\x4e\x9b\x75\x72\x03\x0c\xce\x3b\xb9\x15\x06\
\x67\x9e\x7c\xcf\xe0\xdc\x93\xef\x19\x98\x7d\x72\x75\xda\xad\x98\
\x7a\x86\xda\x24\xf5\x4c\x69\xc9\x4a\x33\x28\x26\xa5\xbc\x68\xd9\
\xee\x65\xb8\xee\x50\x34\x86\xd9\x1d\x8c\xba\x98\xf6\x29\x98\x9d\
\x29\x69\x04\xb3\x37\x29\xb5\x31\x79\xab\x59\x7a\x15\xb3\x3d\x36\
\x8d\x40\xf6\x46\xa7\x2e\x24\x3d\x05\xb2\x33\x47\x8d\x60\xf6\x66\
\xa9\x2e\x26\x3f\x05\xb3\x33\x58\x8d\x60\xf6\x86\xab\x2e\xe6\x49\
\x21\xd4\xe9\x98\xc7\x30\xbb\xd3\x56\x17\xf3\xa4\x10\xea\x8c\x5e\
\x23\x98\xbd\xf1\xab\x83\x49\x4e\x0a\xa1\xce\x2c\x36\x82\xd9\x9b\
\xc7\xba\x98\x27\xc4\xd0\x94\xcc\x7c\xb9\x1a\x70\xd2\x0b\x9f\xb1\
\xb1\xa2\xa5\xec\x64\xe0\x6f\x11\xde\x9d\xdc\x7e\x00\xc2\x49\x31\
\xf9\x6d\x3a\x58\xd6\x84\xec\xfe\x76\x84\xe9\xbe\x6f\x9d\x94\x03\
\x53\x5e\x41\x79\xa9\x19\x80\x36\xf7\x5d\xef\x12\x92\x93\x8b\xf7\
\x8a\xaa\x17\xa3\xd9\x9c\xbc\x4f\xb3\x24\x7e\x92\xf3\x73\x9c\x3f\
\xc5\xcf\xe3\x90\x31\x87\xa4\x6c\x97\x9e\xb1\x6e\x22\x3f\x12\xdb\
\xea\x7d\x7f\x37\xe1\x20\x9b\x13\xa7\x93\xa0\x55\x43\x61\x75\x32\
\x7d\xcc\x18\xa7\xea\x67\xaa\xff\xe7\xb0\xbb\x2f\xa5\x3a\x26\x98\
\x3a\x1d\xdc\x25\x4c\x50\x93\x23\x18\x59\x9d\xae\x22\xa5\x9a\xcc\
\x41\xc2\x16\x3d\xb1\xb5\x9a\x74\x7a\x03\x18\xc5\xd0\x28\xbf\x89\
\x43\x7f\x40\x9b\xcb\x4d\xc4\x4c\x3e\xa6\x65\xeb\xea\xcc\x58\x97\
\x43\xd5\xfa\x38\x4e\xc1\xc7\x95\x1a\xff\xae\xcf\xfe\x01\x6e\xad\
\x08\x71\
\x00\x00\x08\xaa\
\x00\
\x00\x29\xd5\x78\x9c\xed\x5a\x5b\x6f\xa3\x4a\x12\x7e\xcf\xaf\x60\
\x3d\x2f\x13\x6d\x68\xfa\x4e\xe3\x89\x73\x94\xeb\xd1\x48\x2b\x9d\
\xa3\x9d\x99\xb3\x8f\x2b\x02\x6d\x07\x05\x83\x05\x24\xb6\xe7\xd7\
\x6f\x35\xb6\xb9\xd8\x38\xc6\xb9\xec\x39\xd2\x2e\xa3\x51\xa0\xbb\
\xba\xaa\xfb\xeb\xaa\xaf\x0a\xda\xe7\xbf\x2c\xa6\xb1\xf5\xac\xb3\
\x3c\x4a\x93\xd1\x80\x20\x3c\xb0\x74\x12\xa4\x61\x94\x4c\x46\x83\
\x1f\xdf\xef\x6c\x35\xb0\xf2\xc2\x4f\x42\x3f\x4e\x13\x3d\x1a\x24\
\xe9\xe0\x97\x8b\x93\xf3\xbf\xd9\xb6\x75\x9d\x69\xbf\xd0\xa1\x35\
\x8f\x8a\x07\xeb\x6b\xf2\x98\x07\xfe\x4c\x5b\x9f\x1f\x8a\x62\x36\
\x74\x9c\xf9\x7c\x8e\xa2\x75\x23\x4a\xb3\x89\x73\x6a\xd9\xf6\xc5\
\xc9\xc9\x79\xfe\x3c\x39\xb1\x2c\x0b\xec\x26\xf9\x30\x1a\x0d\xd6\
\xf2\x49\x8e\xfc\x30\xbd\xd7\x28\x48\xa7\xce\xa5\xb9\xfb\x1a\xc7\
\x4f\x79\x91\xf9\x45\x9a\x39\x04\x23\xec\x0c\xea\x71\xfe\x0b\xe3\
\xbe\xfd\xf1\xeb\x1f\x91\x9e\xeb\xec\x76\x51\xe8\xc4\x2c\x2c\x77\
\x58\x7b\x78\x18\x54\xe3\x67\x4f\x59\x5c\xce\x2f\x0c\x1c\x1d\xeb\
\xa9\x4e\x8a\xdc\x21\x88\x34\xc5\x83\x5a\x3c\x30\x8b\x8e\x9e\x35\
\x58\x9b\x82\xe2\x72\x64\x92\x7f\x6a\x08\x67\xe1\xb8\x92\x36\x20\
\xcc\x59\x29\x44\x3c\xcf\x73\x30\x75\x28\xb5\x41\xc2\xce\x97\x49\
\xe1\x2f\xec\xf6\x50\x80\xa6\x6b\x28\xc5\x18\x3b\xd0\x57\x4b\xf6\
\x93\x1a\x2e\x62\xd8\x81\xbd\x93\x29\x7b\x9b\xd6\x61\xd7\x67\xf0\
\xbf\x1a\xb0\x69\x40\x79\xfa\x94\x05\x7a\x0c\x23\x35\x4a\x74\xe1\
\xdc\x7c\xbf\xa9\x3a\x6d\x8c\xc2\x22\x6c\xa8\xd9\x6c\x7a\xcb\x6e\
\xcb\x13\x12\x7f\xaa\xf3\x99\x1f\xe8\xdc\xd9\xb4\x97\xe3\xe7\x51\
\x58\x3c\x80\x13\x62\x24\xa9\x28\x5b\x1e\x74\x34\x79\x28\x46\x03\
\xea\x21\xec\x31\x77\xd5\x18\x85\xa3\x01\xac\x93\x96\x0f\x0d\xd7\
\x25\xab\xde\xb5\xc6\x61\xd5\x83\x11\x57\x88\x5a\x99\xa7\x88\x57\
\x8a\x6c\xa6\x3e\x0c\xd3\xc0\xcc\x65\x34\x98\x46\x59\x96\x66\xff\
\x1e\xc7\x7e\x81\x0c\x84\x17\x20\x76\x1e\xea\x71\x6e\xc4\x57\x16\
\xcd\x13\x2f\x3b\xa0\x2b\xf3\xc3\xc8\x8f\x7f\x35\x7f\xc0\x5f\x56\
\x42\x96\x35\x59\x3f\xff\x48\xa2\x02\xb6\xe8\x29\xd7\xd9\x37\xb3\
\xcc\xdf\x92\x1f\xf9\x6a\x85\x4d\xa9\xef\x99\x9f\xe4\x80\xe9\x14\
\xcc\xfb\x45\x16\x2d\x3e\x53\xe4\x12\x4a\x15\xf7\xce\x6c\x8e\x3c\
\xc6\x88\x74\x95\xb6\xd5\x19\x41\x8c\x28\xa5\x98\xab\x6d\xf7\x8c\
\x22\x29\x94\xe0\x67\x36\x91\x88\x13\x01\x22\x70\x2b\x90\x62\xb0\
\xa7\xe2\xb4\xb2\x92\x8d\x06\x12\xb9\x82\xc2\x46\xab\xaa\x71\xbc\
\x1c\x0d\x00\x0a\x2e\x28\xc1\xb2\x6e\x5d\x8c\x06\x1e\x12\xca\x05\
\x07\xaa\x65\x83\x4e\xd9\xa0\x53\xd6\xe0\xd3\x86\x44\x50\x97\x56\
\xdd\xa5\xa3\x0d\x1f\x32\x0d\x81\xf1\x69\x5b\x4e\xf2\x5a\xcd\x66\
\xeb\x82\x34\x8e\x75\x00\xfb\xee\xc7\x73\x7f\x99\x0f\x2c\xe7\x45\
\xdc\xbb\xcc\x37\xd4\x9a\x39\x2b\xa4\x5c\x8f\x63\xcc\x5a\xeb\x73\
\x11\x97\x58\x35\x11\x02\xd8\x88\x8b\xb0\x74\x09\x26\x2d\x80\x76\
\x15\x8c\x3b\x15\xbc\xec\x03\x17\x6b\xb1\xf3\xbc\x48\x67\x9b\x21\
\x96\x95\x8e\xc7\xb9\x86\xe5\xe2\x41\xdd\x96\x17\xcb\x18\x3c\xd3\
\x08\xda\x80\x47\x9a\x0d\x3f\xdd\xdd\xde\xdc\x0a\xd5\x90\x29\x23\
\x01\x04\x04\xe5\xaa\x02\x69\xbf\x76\x24\xc1\x71\x5e\x36\x71\x75\
\x09\x1b\x8b\x3b\x4d\x08\xdc\x34\xe1\x0f\xa7\x51\xf8\x7b\x1a\x25\
\xc5\xb7\x37\x2c\xe5\x18\x85\x48\xbc\xbf\xca\xde\x80\x54\x1e\xe8\
\xb4\x1d\xed\x83\xf9\x40\x2a\x8f\x70\xb1\xe2\x03\xe2\x61\x88\xc5\
\x15\x1f\x48\x26\x18\x95\xae\x79\x28\xf9\x80\x4b\x59\x12\x02\xf1\
\x98\xe2\xa4\x24\x04\x41\x04\x96\xa4\x17\x21\x10\x2a\x31\x13\xee\
\x0e\x21\x48\x90\xf5\xb6\x08\x61\x5b\x36\xe8\x94\xed\x88\x48\x26\
\xfa\x11\x02\xe3\x1f\x42\x08\x4d\xb5\x1b\x42\x50\x10\xb9\x72\x97\
\x10\x20\xca\xc9\x0e\x21\x48\xd9\x41\x08\x6d\x05\xe3\x4e\x05\x7f\
\x0e\x21\x30\xea\xbe\x0f\x21\x60\x72\x79\xc3\x6f\xbb\x4d\x78\xff\
\x8b\x84\xb0\x06\xe4\x00\x21\x80\x83\x6b\x3f\xdb\xf6\xcb\x25\x85\
\x60\xa1\x88\x31\xc6\x1b\x7e\xb3\x80\x56\xce\x10\x44\x48\xbd\xa0\
\x25\x01\xbf\x23\x0a\x61\x97\xd5\x8d\x0b\xb2\x2b\xb8\x9f\x3d\x30\
\x52\x67\xd8\xfc\x83\xbf\x36\xe3\x48\x41\x65\x71\x66\x4b\xa8\x93\
\x08\x56\xa7\x3d\xfd\xb3\x19\x51\xed\x35\x09\x97\x93\xee\x80\xde\
\x96\xa3\xf2\x88\x80\xee\x06\xae\xcb\x7c\x43\x6d\xbf\x35\x18\xf8\
\xa8\x42\x2e\x25\x6e\x23\x3e\x0d\xd2\x8c\x22\x0f\xf4\x35\x88\xd1\
\xec\x49\x87\x2c\xb4\x12\x86\x08\xc3\xde\x5b\x23\xb7\xbc\xba\xc2\
\x4a\x7a\xb8\x4f\xe4\x62\x2c\xc8\x21\xf7\xbf\xbb\xbe\xbb\xee\x36\
\x41\xfb\x98\x20\xdc\x73\x5f\x36\x71\x2b\x2f\xf9\x25\xef\x36\xc1\
\xfb\x98\xa0\xee\x01\x0b\x37\x4c\xdc\x8a\x4e\xfa\x91\x10\x41\x3d\
\x2c\x30\x45\xd9\xcb\x26\xae\x25\xbd\xa2\x57\xdd\x26\x7a\x55\x55\
\x5c\x92\x03\x4c\x74\x75\x83\xaf\x71\xe7\x56\xb8\xb8\xd7\x6e\x0b\
\x2c\xe4\x01\x13\x7b\x0b\x37\x17\xf7\xda\x6d\x17\x1f\xdc\x0b\x25\
\x6f\x65\xe7\x5e\xb8\xb8\xd7\x6e\x7b\xb8\x51\x22\x74\xfb\x2c\xbf\
\x91\x37\xb2\xdb\x44\x8f\xed\x3e\x14\x11\x7b\x83\xce\xc5\xc7\xe5\
\x89\x5e\x76\x8e\x4a\x3c\x9c\x52\xfa\xfe\x5a\x7b\xfb\xcd\x71\x73\
\x75\xdd\x03\x31\x75\xbc\xd6\x7e\x5b\x57\x67\xdd\x76\x36\x38\x98\
\x75\x5d\x09\x4c\xa0\xfa\x65\x5d\x78\x0d\x87\x37\xec\xbf\x68\xd6\
\xf5\x54\xed\x7c\x2f\x64\x5d\xa6\x48\xe3\xf5\xfc\xdd\xb2\x6e\x4b\
\x6d\xff\xac\xcb\x04\x24\x2c\xe5\xf2\x16\xd0\x80\x29\xa6\x5b\x29\
\x77\x57\xd0\x64\x5c\x0e\x65\x19\xdb\xad\xa8\xbb\xc0\x67\xa2\x44\
\xdf\xbc\x02\x41\xd9\x4e\x3c\x41\xe1\x8e\x23\x86\x95\x3c\x3d\x98\
\xb2\x4d\x52\x3d\x10\x2e\xca\xbb\xe4\x57\x5d\x04\xc5\x54\x4f\x26\
\x7f\x25\x45\x81\xfe\x1e\x34\x7e\x20\x8a\x5e\x9a\x3d\x3f\x8e\x03\
\x7a\x43\xf5\x9e\x15\xfd\x07\xa8\x7c\x15\xab\xbe\xb7\xca\x7e\xdb\
\xf6\xfe\xe4\x07\x6f\xb5\x6e\xe3\xb5\xfc\x25\xfa\xdb\x12\xfd\x33\
\x09\x70\xcf\x77\x84\x6d\xa6\x12\xec\x43\x08\xb0\xa1\xf6\x08\x02\
\x04\x04\x69\xab\xfc\xd9\xcb\x80\xbb\x92\x6f\xa0\x40\x81\xb8\xc7\
\xdc\xff\x1a\x05\xc2\xbb\xea\x87\x52\x20\xeb\xf1\x51\xe3\xf5\x14\
\xc8\x8e\xfb\x9e\xf1\x7f\x0a\x7c\x4f\x95\x1f\x48\x81\x7b\xa3\xff\
\x68\x1a\xd9\xa5\x03\xd2\x78\x45\x7e\xeb\xe7\xde\x9e\xcc\xd9\x4d\
\xc8\xdd\xdc\xdd\x4d\xf3\xad\x94\xb0\x82\xf4\xdc\x31\xe7\x5b\xe5\
\x5d\x75\x3a\x66\x8e\xc6\xc2\xe7\x48\xcf\x4f\xaa\xd5\xdf\xfb\xd5\
\x4a\x66\xfe\x44\x97\x9b\x03\x98\x8d\xcb\x6b\xdd\x71\x9f\x66\xa1\
\xce\x36\x5d\xb2\xbc\x5a\x5d\x29\x80\x12\x15\xcb\xd5\x69\xf3\x49\
\x7b\x8b\x8c\xd6\xaa\x1f\x77\xf7\xe7\x0f\x7e\x98\xce\x47\x03\xba\
\xdd\xf9\x33\x4d\xa7\x66\x94\x52\x14\x60\x90\x3b\xfd\xe6\xbb\x2f\
\x11\x0a\x51\x29\xaa\x29\xd5\x9d\x60\xd0\x26\x98\x23\x21\x24\x63\
\xdb\xbd\x61\x1a\x3c\x99\xa3\x61\xfb\x69\xb5\xb9\xb3\xc5\xce\xf8\
\xa7\x2c\x33\x02\xb1\xbf\xd4\xb0\xf0\xf2\xcf\xc6\xa9\xf3\x87\x74\
\x3e\xc9\x0c\x80\x63\x3f\xae\x10\x1c\x47\x85\x3d\xf5\xb3\x49\x94\
\xd8\xe0\xe9\xf5\x5b\x65\xa3\x3d\xd6\xe3\xa2\xb3\x23\x5b\x9d\x8b\
\x76\xf4\xdc\xa7\x45\x51\xc2\xb0\x3d\xc1\x79\x94\x00\x6c\xf6\xfa\
\x90\xd5\x13\x3b\xf0\xac\x05\x36\x67\xae\x5e\xe5\xda\xdb\x12\xe6\
\x93\xbf\xdc\xa7\x7f\xb9\xdf\xf4\xd4\x5f\x44\xd3\xe8\xa7\x0e\x8d\
\xc8\xda\xef\xa6\xba\xf0\x43\xbf\xf0\x6b\x1f\xdb\xb4\xb8\xd5\x61\
\x6b\x38\x1e\xfe\xf3\xe6\xae\xa2\x92\x20\x18\xfe\x2b\xcd\x1e\x6b\
\xbe\x30\x02\xfe\x7d\xfa\x04\x93\xae\x12\x9c\x39\xbf\x0d\x86\x26\
\xbe\xfc\xe2\x22\x9a\x82\xdb\x98\xb3\xf1\xbf\x2f\xa6\x31\xb8\x7a\
\xd5\xd1\x12\x2e\x96\x33\x5d\x2b\x5d\xa9\xcd\xf4\xea\xec\xbb\xf3\
\xe7\x02\x61\x30\x8d\xcc\x20\xe7\x5b\x11\xc5\xf1\x57\x63\xa4\x41\
\x79\x6b\xa5\x51\x11\xeb\x8b\xd2\xe6\xea\x76\xb3\x0a\x67\xbd\x8c\
\xea\x33\x72\xbd\xca\x73\x67\x83\x41\xf9\x34\xd9\x42\x33\xf6\xef\
\x75\x3c\x1a\xfc\xc3\x78\x98\x45\xb6\xb1\x9e\x64\xe9\xd3\x6c\x9a\
\x86\x7a\xed\x83\x83\x1a\xd9\x96\x4f\x16\x35\xff\x94\xb7\xb1\x5f\
\xe8\xcf\x36\x71\x31\xd4\x1f\xc4\x1c\x2a\x2b\x6c\xce\x8b\x20\xc9\
\x6d\xaa\x86\xcd\x44\xf6\x8c\xad\x87\x36\x46\x36\xa9\x73\x02\x64\
\x5a\xbf\xbc\x46\xc3\x75\xa4\x2c\x75\xde\x68\x0c\xa3\x29\xb0\xce\
\xef\x40\x20\x10\x4c\xa3\x41\x6b\x40\x36\xb9\xff\x9e\x45\x29\xb0\
\x0a\xbf\xc3\x18\x5e\xb8\x70\xab\x52\x58\xa7\x8d\x30\xca\x67\xa0\
\x7a\x18\x25\x86\xab\xbf\xe8\xc4\xbf\x8f\xb5\x7d\xef\x07\x8f\x06\
\x9a\x24\x1c\x26\x7a\x5e\xd7\x41\x93\x7a\xc7\xd7\x73\x64\xb4\xe9\
\x44\xdd\x29\xa5\x42\xb4\xd5\x4b\x18\x97\xcd\x0f\x23\x7d\x53\x82\
\xb9\xba\xab\x44\x73\x75\x55\x8a\xe5\x88\xce\x6a\xb1\x1c\xd1\x51\
\x31\x36\x67\xf3\xea\xaa\xb1\x44\xa4\x5d\x76\x99\x6b\x6f\x49\xd4\
\xd8\x95\x17\x6b\xb0\x0d\x9c\x46\xc8\x80\x28\x5a\x61\x74\xc0\xa6\
\x38\x6c\x70\xa7\xa4\xdc\x36\xe8\xf6\x37\x48\xde\x61\x7d\xde\xb6\
\xb9\x7d\xd5\xd1\x1b\xd0\x7d\x95\x85\x1e\x58\x7e\xb0\xfa\x9d\xca\
\xf1\xaf\xa2\xbe\xff\xbe\xb7\x52\x40\x67\xa1\x5a\xf6\xcc\xfc\xe2\
\xe1\x64\x57\xe1\x18\x52\xc9\x10\x92\xcc\xe7\xed\x4a\x14\x4a\xcd\
\xd3\x2f\xa6\xd7\x5e\x17\x48\x43\xf2\x25\x2f\xb2\xf4\x51\x0f\x3f\
\xe1\xf2\x5a\x3f\xae\x52\xfc\x10\x23\xb7\x0d\x48\x34\x7c\x4c\xd2\
\xe0\xb1\xcc\x93\xbf\x55\xe5\xda\xea\x32\x79\xd7\x52\x48\x31\x09\
\xe5\x27\x73\x85\x65\x2b\xa0\x04\x78\xb0\x02\x0b\x14\x49\x7e\x06\
\x0c\xc4\xa5\x45\x10\x75\xcf\xa0\x82\x12\x7c\x75\x0b\x14\x41\x5c\
\x6a\xe1\x33\x81\x3c\x6a\xd9\xe6\x8b\xb3\x3c\x23\x50\xb2\x52\x65\
\xd9\xb5\x04\xb7\x62\xcb\x28\x04\x92\x01\x59\x9b\xc2\xbd\x51\x86\
\xb5\xcd\xcb\x16\x6c\xfd\x6c\x4f\x15\xe6\x63\xf0\x31\xbf\x66\x68\
\x77\xd4\xb5\x7c\x92\x40\x2d\x9f\x66\x36\x14\x5e\xcf\x7e\xf1\x94\
\xe9\xba\xaa\x58\x23\x9c\x81\x40\x07\xc2\x47\x81\xb6\x28\xcf\xf4\
\x89\x68\xfd\xbc\xc1\x5c\x65\x7d\xca\x8e\x80\x78\x5d\x78\x51\x03\
\x72\xab\xa3\xfa\x91\x5b\x89\x4a\xf3\xb7\x03\x1b\x28\xcc\x42\x00\
\x0a\xd6\x7c\xa1\x72\x26\x9b\xca\x61\xb2\xaa\x19\xe0\xcf\xb9\xa9\
\x71\x2e\x4e\xfe\x03\xaa\x97\xcf\x6e\
\x00\x00\x07\xd8\
\x00\
\x00\x23\x2c\x78\x9c\xe5\x59\x5b\x6f\xdb\xb8\x12\x7e\xcf\xaf\xf0\
\x51\x5f\x1a\x6c\x44\xf1\x26\x8a\x72\xe3\x2c\x72\x5d\x14\x38\xc0\
\x2e\x4e\xdb\xdd\x67\x45\xa2\x1d\x21\xb2\x64\x48\x4a\x6d\xf7\xd7\
\xef\x50\xb6\x6e\x36\x6d\x2b\x6d\x8a\x5d\xe0\x28\x08\x2c\x91\xc3\
\x19\xcd\xed\x9b\x21\x75\xf9\xeb\x6a\x9e\x8c\xbe\xaa\xbc\x88\xb3\
\x74\x62\x11\x84\xad\x91\x4a\xc3\x2c\x8a\xd3\xd9\xc4\xfa\xf2\xf9\
\xc1\x96\xd6\xa8\x28\x83\x34\x0a\x92\x2c\x55\x13\x2b\xcd\xac\x5f\
\xaf\xce\x2e\xff\x63\xdb\xa3\xdb\x5c\x05\xa5\x8a\x46\xcb\xb8\x7c\
\x1a\x7d\x4c\x9f\x8b\x30\x58\xa8\xd1\xfb\xa7\xb2\x5c\x8c\x1d\x67\
\xb9\x5c\xa2\x78\x3b\x88\xb2\x7c\xe6\x9c\x8f\x6c\xfb\xea\xec\xec\
\xb2\xf8\x3a\x3b\x1b\x8d\x46\x20\x37\x2d\xc6\xf1\xc4\xda\xd2\xa7\
\x05\x0a\xa2\xec\x51\xa1\x30\x9b\x3b\xd7\xfa\xee\x63\x92\xbc\x14\
\x65\x1e\x94\x59\xee\x10\x8c\xb0\x63\xb5\xeb\x82\x23\xeb\x3e\xfd\
\xf9\xdb\x9f\xb1\x5a\xaa\xfc\x7e\x55\xaa\x54\x2b\x56\x38\xac\xbf\
\x3c\x0a\x9b\xf5\x8b\x97\x3c\xa9\xde\x2f\x0a\x1d\x95\xa8\xb9\x4a\
\xcb\xc2\x21\x88\x74\xc9\xc3\x96\x3c\xd4\x4a\xc7\x5f\x15\x48\x9b\
\x03\xe3\x6a\x65\x5a\xbc\xeb\x10\xe7\xd1\xb4\xa1\xd6\x46\x58\xb2\
\x8a\x88\xf8\xbe\xef\x60\xea\x50\x6a\x03\x85\x5d\xac\xd3\x32\x58\
\xd9\xfd\xa5\x60\x1a\xd3\x52\x8a\x31\x76\x60\xae\xa5\x1c\x46\x35\
\x5e\x25\xe0\x81\x83\x2f\x53\xcd\x76\xa5\x83\xd7\x17\xf0\xdf\x2c\
\xa8\x07\x50\x91\xbd\xe4\xa1\x9a\xc2\x4a\x85\x52\x55\x3a\x77\x9f\
\xef\x9a\x49\x1b\xa3\xa8\x8c\x3a\x6c\x6a\xa7\xf7\xe4\xf6\x22\x21\
\x0d\xe6\xaa\x58\x04\xa1\x2a\x9c\x7a\xbc\x5a\xbf\x8c\xa3\xf2\x09\
\x82\x10\x23\xe1\x0a\xea\x56\x63\x4f\x2a\x9e\x3d\x95\x13\x8b\xfa\
\x08\xfb\xcc\xdb\x0c\xc6\xd1\xc4\x02\x4d\x69\xf5\xd0\x09\x5e\xb2\
\x99\xdd\xf2\x1c\x37\x33\x18\x71\x89\xe8\x28\xf7\x25\xf1\x2b\x92\
\xfa\xe5\xc7\x51\x16\xea\xb7\x99\x58\x49\x50\xa8\x1c\x69\xf3\x5d\
\x01\xc1\x65\xa4\xa6\x85\x26\xdc\xc8\xd2\x4f\xbc\x9a\x80\xa9\x3c\
\x88\xe2\x20\xf9\x4d\xff\x40\xac\x6c\x88\x46\xa3\xd9\xf6\xf9\x4b\
\x1a\x97\xe0\x9e\x17\xe0\xf6\x49\xab\xf8\x7b\xfa\xa5\xd8\x68\xd7\
\xa5\xfa\x9c\x07\x69\x01\xf6\x9c\x4f\xac\x79\x50\xe6\xf1\xea\x3d\
\x45\x1e\xa1\x54\x72\xff\xc2\xe6\xc8\x67\x8c\x08\x4f\x2a\x5b\x5e\
\x10\xc4\x88\x94\x92\x79\xca\xf6\x2e\x28\x18\x46\xba\xfc\xc2\x26\
\x02\x71\xe2\x02\x09\xdc\xba\x48\x32\xf0\xa7\x7b\xde\x48\xc9\x27\
\x96\x40\x9e\x4b\xc1\xc9\xb2\x19\x9c\xae\x27\x16\x18\x81\xbb\x94\
\x60\xd1\x8e\xae\x26\x96\x8f\x5c\xe9\x41\xf0\xb4\xb4\xa1\x91\x36\
\x34\xd2\x6a\xfb\xf4\x4d\xe2\x52\x8f\x36\xd3\x55\x90\x8d\x9f\x72\
\x05\x49\xf1\x6e\x97\x4e\xf0\x96\x4d\xed\xb4\x30\x4b\x12\x15\x82\
\xc7\x83\x64\x19\xac\x0b\x6b\xe4\x1c\xb5\xbb\x49\x7c\x87\xad\x7e\
\x67\x89\xa4\xe7\x73\x8c\x59\x4f\x3f\x0f\x71\x81\x65\xd7\x42\x60\
\x36\xe2\x21\x2c\x3c\x82\x49\xcf\x40\xfb\x0c\xa6\x46\x06\xc7\x63\
\xe0\x6a\x4b\x76\x59\x94\xd9\xa2\x5e\x32\x1a\x65\xd3\x69\xa1\x40\
\x5d\x6c\xb5\x63\x45\xb9\x4e\x20\x26\x35\xa1\x0d\xf6\xc8\xf2\xf1\
\xbb\x87\xfb\xbb\x7b\x57\x76\x68\xaa\x1c\x00\x02\x97\x72\xd9\x18\
\xe9\x30\x77\x24\x20\x70\x8e\x8b\xb8\xb9\x06\xc7\x62\xa3\x08\x17\
\x77\x45\x04\xe3\x79\x1c\xfd\x91\xc5\x69\xf9\xe9\x07\x54\x79\x0d\
\x43\xe4\xbe\x3d\xcb\xc1\x06\x69\x22\xd0\xe9\x07\xda\x4f\xc6\x03\
\x21\x7d\xc2\xdd\x0d\x1e\x10\x1f\x43\x2e\x6e\xf0\x40\x30\x97\x51\
\xe1\xe9\x87\x0a\x0f\xb8\x10\x15\x20\x10\x9f\x49\x4e\x2a\x40\x70\
\x89\x8b\x05\x19\x04\x08\x84\x0a\xcc\x5c\x6f\x0f\x10\x04\xd0\xfa\
\x3b\x80\xb0\x4b\x1b\x1a\x69\x0d\x19\xc9\xdc\x61\x80\xc0\xf8\x4f\
\x01\x84\x2e\xdb\x1a\x10\x24\x64\xae\xd8\x07\x04\xc8\x72\xb2\x07\
\x08\x42\x18\x00\xa1\xcf\x60\x6a\x64\xf0\xcf\x00\x02\xa3\xde\xdb\
\x00\x02\x26\xd7\x77\xfc\xde\x2c\xc2\xff\x7f\x04\x84\xad\x41\x4e\
\x00\x02\x04\xb8\x0a\xf2\xdd\xb8\x5c\x53\x48\x16\x8a\x18\x63\xbc\
\x13\x37\x2b\x18\xe5\x0c\x41\x86\xb4\x0a\xad\x09\xc4\x1d\x91\x08\
\x7b\xac\x1d\x5c\x91\x7d\xc2\xc3\xe8\x81\x91\xbc\xc0\xfa\x0f\x7e\
\x6d\xc6\x91\x84\xce\xe2\xc2\x16\xd0\x21\x11\x2c\xcf\x07\xc6\x67\
\x37\xa3\xfa\x3a\xb9\x1e\x27\xe6\x84\xde\xa5\xa3\xe2\x15\x09\x6d\
\x36\x9c\x49\x7c\x87\xed\x30\x1d\xb4\xf9\xa8\x44\x1e\x25\x5e\x27\
\x3f\xb5\xa5\x19\x45\x3e\xf0\xeb\x00\xa3\xf6\x89\x81\x16\x46\x09\
\x43\x84\x61\xff\x47\x33\xb7\xba\x4c\x69\x25\x7c\x3c\x24\x73\x31\
\x76\xc9\xa9\xf0\x7f\xb8\x7d\xb8\x35\x8b\xa0\x43\x44\x10\xee\x7b\
\xc7\x45\xdc\x8b\x6b\x7e\xcd\xcd\x22\xf8\x10\x11\xd4\x3b\x21\xe1\
\x8e\xb9\xf7\xae\x11\x7e\x04\x64\xd0\x00\x09\x4c\x52\x76\x5c\xc4\
\xad\xa0\x37\xf4\xc6\x2c\x62\x50\x57\xc5\x05\x39\x81\x44\x37\x77\
\xf8\x16\x1b\x5d\xe1\xe1\x41\xde\x76\xb1\x2b\x4e\x88\x38\xd8\xb8\
\x79\x78\x90\xb7\x3d\x7c\xd2\x17\x52\xdc\x0b\xa3\x2f\x3c\x3c\xc8\
\xdb\x3e\xee\xb4\x08\xe6\x98\xe5\x77\xe2\x4e\x98\x45\x0c\x70\xf7\
\xa9\x8c\x38\x98\x74\x1e\x7e\x5d\x9d\x18\x24\xe7\x55\x85\x87\x53\
\x4a\xdf\x9e\xeb\xe0\xb8\x79\xdd\xbb\x7a\xde\x89\x9c\x7a\x3d\xd7\
\x61\xae\x6b\xab\x6e\xbf\x1a\x9c\xac\xba\x9e\x00\x24\x90\xc3\xaa\
\x2e\x6c\xc3\x61\x87\xfd\x2f\xad\xba\xbe\x6c\x83\xef\x48\xd5\x65\
\x92\x74\xb6\xe7\x6f\x56\x75\x7b\x6c\x87\x57\x5d\xe6\x42\xc1\x92\
\x1e\xef\x19\x1a\x6c\x8a\xe9\x4e\xc9\xdd\x27\xd4\x15\x97\x43\x5b\
\xc6\xf6\x3b\x6a\x93\xf1\x99\x5b\x59\x5f\x6f\x81\xa0\x6d\x27\xbe\
\x4b\xe1\x8e\x23\x86\xa5\x38\x3f\x59\xb2\x75\x51\x3d\x91\x2e\xd2\
\xbf\xe6\x37\x26\x80\x62\x72\x20\x92\x7f\x27\x44\x01\xff\x01\x30\
\x7e\x22\x8b\x8e\xbd\x3d\x7f\x1d\x06\x0c\x36\xd5\x5b\x76\xf4\x3f\
\x81\xe5\x77\xa1\xea\x5b\xb3\x1c\xe6\xb6\x63\xe0\x77\xe9\xe8\xf3\
\xc9\xea\xae\x39\xd7\xd4\x87\x9a\xd1\xd7\x58\x2d\xcf\x1a\x5f\x3f\
\x06\x4d\x66\x2e\x82\x99\xaa\xf8\x03\x76\x4c\xab\x6b\x3b\xf1\x98\
\xe5\x91\xca\xeb\x29\x51\x5d\xbd\xa9\x0c\x92\x3c\x2e\xd7\x9b\x2f\
\x05\x5b\xde\x35\xc2\x68\xae\xcd\x3c\x36\xcf\x17\x4f\x41\x94\x2d\
\xa1\xbf\xde\x9d\xfc\x96\x65\xf3\xaa\x15\xd9\x9d\xd0\x1b\x76\x2a\
\x3c\xe4\x0b\xd7\xdb\x5b\xa5\xf7\xed\x9c\x0a\x24\x88\xe7\x91\xdd\
\xc9\x28\x0b\x5f\xf4\x71\xbe\xfd\xb2\x01\xa9\xc5\x6a\x6f\xf9\x4b\
\x9e\x6b\x82\x24\x58\xab\x5c\x9f\x01\xc3\x4f\xcd\xa6\x78\xca\x96\
\xb3\x5c\x1b\x6e\x1a\x24\x8d\xe5\xa6\x71\x69\xcf\x83\x7c\x16\xa7\
\x36\x38\xa9\xed\x06\x3a\xe3\x89\x9a\x96\xc6\x89\x7c\x73\x92\x6d\
\x98\x79\xcc\xca\xb2\x52\x7f\xf7\x05\x97\x71\x0a\xe6\xb2\xb7\x07\
\xe3\xbe\xbb\x67\x80\x2d\x41\x7d\x4a\xee\xfb\x7b\xf6\xdb\x52\xe8\
\xa3\x1a\x71\x88\xff\xfa\xb0\xe8\x79\xb0\x8a\xe7\xf1\x37\x15\x69\
\x92\x4d\x14\x5e\xce\x55\x19\x44\x41\x19\xb4\xb1\x55\x8f\x78\xcd\
\x21\x79\x34\x1d\xff\xef\xee\xa1\xc9\x82\x30\x1c\xff\x95\xe5\xcf\
\x6d\xa8\x6b\x82\xe0\x31\x7b\x81\x97\x6e\xb0\x59\x9f\xbb\x87\x63\
\x8d\xea\x41\x79\x15\xcf\x21\x5c\xf4\xf7\x8c\x5f\x56\xf3\x04\x42\
\xbc\x99\xe8\x11\x97\xeb\x85\x6a\x99\x6e\xd8\xe6\x6a\xf3\xbd\xc2\
\xf8\x89\x27\x0a\xe7\xb1\x5e\xe4\x7c\x2a\xe3\x24\xf9\xa8\x85\x74\
\xb2\x75\xcb\x34\x2e\x13\x75\x55\xc9\xdc\xdc\xd6\x5a\x38\x5b\x35\
\x9a\xed\x7f\xab\xe5\xa5\x53\xdb\xa0\x7a\x9a\xed\x58\x33\x09\x1e\
\x55\x32\xb1\xfe\xab\x23\x6c\xb4\x17\xa9\xb3\x3c\x7b\x59\xcc\xb3\
\x48\x6d\x63\xd0\x6a\x2d\xdb\x8b\xc9\xb2\xad\x7a\xd5\x6d\x12\x94\
\xea\xbd\x4d\xb1\x8b\x18\x27\x02\x7a\x0d\xc9\xa1\xde\x11\x26\x64\
\x5d\xf0\xea\x17\xd9\x30\x9b\x41\x0d\x6f\x01\x2c\x1e\x6f\xe3\x7e\
\xad\x8a\xce\x60\x14\xcf\x01\x3b\xfe\x00\x18\x80\xd4\x98\x58\x2e\
\xee\xcc\xe5\xb3\xc7\xcf\x79\x9c\x01\x36\xf0\x07\x8c\xa1\xec\xe1\
\x5e\xc9\xda\xe2\x57\x14\x17\x0b\x60\x3d\x8e\x53\x0d\x56\x1f\x54\
\x1a\x3c\x26\xca\x7e\x0c\xc2\x67\xad\x68\x1a\x8d\x53\xb5\x6c\xd6\
\x18\x75\x6a\x55\xda\xd3\xa8\xab\x53\xad\x95\xe7\x7b\xdd\x20\x32\
\x77\x34\x8d\x45\x7b\xb3\x84\x71\xd6\x2d\x66\x43\x5b\x1b\x7d\x19\
\xdb\x1b\x7d\x99\x5a\x9c\x6a\x81\xa9\xcd\xa9\x16\x18\x5a\x9d\xee\
\xbb\x7c\x77\xbb\x53\xd9\xa3\xdf\x2f\xe8\xeb\x60\x2d\xef\x78\xf1\
\x68\xf3\x50\x1b\x53\x13\x69\x13\xca\x5e\x12\x9d\x90\xe9\x9e\x16\
\xb8\xd7\x0b\xed\x08\xe4\x78\xb8\x40\xf2\xe3\xfa\x71\xba\x2b\xee\
\x50\x59\xff\x01\xeb\x7e\x97\x84\x01\xb6\xfc\xc9\xec\xf7\x5a\x9e\
\x7f\x0b\xfb\xe1\x7e\xef\x15\x00\xe3\xf6\xb2\x9a\xc9\x61\xff\x74\
\xb6\xcf\x70\x0a\x85\x64\x0c\x25\xe6\xfd\xee\xe9\x27\xec\xd7\xce\
\x3f\xe8\x59\x7b\xdb\x16\x8d\xc9\x87\xa2\xcc\xb3\x67\x35\x7e\x87\
\xab\x6b\xfb\xb8\x29\xf0\x63\xe8\x7e\xfa\x06\x59\x55\xa7\x58\x3b\
\x83\x6b\xd3\x60\x3c\x7e\x4e\xb3\xf0\xb9\xaa\xa7\xbf\x37\xed\xdc\
\xe6\xaa\xbb\x07\xe4\x53\xec\xfb\x7e\x7f\x61\xf3\x7d\x5d\x02\xe0\
\x8a\xee\xc7\x8b\x8a\xad\xfe\x98\x02\x5a\xc3\x1e\x61\xc7\x4a\x07\
\x6c\xf1\x5a\xf5\xf4\x37\x93\x37\xd1\x8e\x22\xb9\x83\xe3\x83\x35\
\xeb\x1d\xff\x38\xb3\xba\xb8\xcf\x36\x65\x1d\x7e\x2e\x75\x1b\x72\
\x75\xf6\x37\xc0\x9a\x1a\xe3\
\x00\x00\x06\x83\
\x00\
\x00\x15\xf0\x78\x9c\xe5\x58\xeb\x6f\xdb\x36\x10\xff\x9e\xbf\x42\
\x53\xbf\xa4\x98\x45\x91\x7a\x4b\xb5\x53\x74\x4b\x52\x14\x18\xd0\
\x62\x49\xbb\x8f\x03\x2d\xd1\xb6\x10\x3d\x0c\x8a\x8e\xed\xfe\xf5\
\x3b\x52\x6f\x5b\x09\xd2\xae\xc5\x3e\x4c\x40\x60\x89\xf7\xbb\x3b\
\xde\xf1\x5e\xcc\xfc\xed\x21\xcf\xb4\x47\xc6\xab\xb4\x2c\x16\x3a\
\x41\x58\xd7\x58\x11\x97\x49\x5a\xac\x17\xfa\xe7\xfb\x5b\x23\xd0\
\xb5\x4a\xd0\x22\xa1\x59\x59\xb0\x85\x5e\x94\xfa\xdb\xab\x8b\xf9\
\x2f\x86\xa1\xfd\xce\x19\x15\x2c\xd1\xf6\xa9\xd8\x68\x1f\x8a\x87\
\x2a\xa6\x5b\xa6\x5d\x6e\x84\xd8\x46\xa6\xb9\xdf\xef\x51\xda\x2c\
\xa2\x92\xaf\xcd\xd7\x9a\x61\x5c\x5d\x5c\xcc\xab\xc7\xf5\x85\xa6\
\x69\xa0\xb7\xa8\xa2\x74\xa1\x37\xf8\xa2\x42\x34\x29\x97\x0c\xc5\
\x65\x6e\xbe\x93\x6f\x1f\xb2\x6c\x57\x09\x4e\x45\xc9\x4d\x82\x11\
\x36\xf5\x9e\x8f\x3e\xc3\x77\xf7\xe5\xfd\x97\x94\xed\x19\xbf\x39\
\x08\x56\x48\xc3\x2a\xd3\x1e\xb3\x27\x71\xc7\xbf\xdd\xf1\x4c\xed\
\x2f\x89\x4d\x96\xb1\x9c\x15\xa2\x32\x09\x22\x43\x78\xdc\xc3\x63\
\x69\x74\xfa\xc8\x40\x5b\x0e\x82\x15\x67\x51\xbd\x1a\x80\x79\xb2\
\xea\xd0\xd2\x09\x7b\x5b\x81\x48\x18\x86\x26\xb6\x4c\xcb\x32\x00\
\x61\x54\xc7\x42\xd0\x83\x31\x66\x05\xd7\x4c\xb1\x5a\x18\x63\x13\
\x68\x3d\xf2\x65\xa8\xe8\x90\xc1\x09\x3c\xb9\x19\x45\x1d\x6a\x87\
\x53\xdf\xc2\x5f\xc7\xd0\x2e\xa0\xaa\xdc\xf1\x98\xad\x80\x93\xa1\
\x82\x09\xf3\xfa\xfe\xba\x23\x1a\x18\x25\x22\x19\x88\x69\x0f\x7d\
\xa4\x77\x14\x09\x05\xcd\x59\xb5\xa5\x31\xab\xcc\x76\x5d\xf1\xef\
\xd3\x44\x6c\x20\x08\x3d\x64\x3b\xb6\xef\xaa\xb5\x0d\x4b\xd7\x1b\
\xb1\xd0\x2d\x1b\x75\x6b\x69\xb2\xd0\xc1\x50\x4b\x7d\x0c\x62\x97\
\xd4\xd4\x46\x64\xd4\x51\x30\x72\x02\x64\x69\x3c\x0c\x48\xa8\x20\
\xed\xde\xa3\xa4\x8c\xe5\x66\x16\xfa\x76\x53\x0a\x58\x28\x13\xf6\
\x37\x67\x09\x92\x6e\xbc\x02\xe4\x3c\x61\xab\x4a\x72\xd4\x4a\xe5\
\x97\xa3\x08\x40\xe2\x34\x49\x69\xf6\x5e\xfe\x40\xcc\xd4\x20\x4d\
\x5b\x37\xdf\x9f\x8b\x54\xc0\x31\xed\x2a\xc6\xef\xa4\xa9\x1f\x8b\
\xcf\x55\x6d\xe5\x10\x75\xcf\x69\x51\x81\x5f\xf3\x85\x9e\x53\xc1\
\xd3\xc3\xa5\x85\x7c\x62\x59\x81\x13\xce\x0c\x07\x85\xb6\x4d\x3c\
\x3f\x60\x46\x30\x23\xc8\x26\x41\x10\xd8\x3e\x33\xfc\x99\x85\x3c\
\x37\x70\x9d\x99\x01\xae\x72\x88\x0b\x10\x78\x75\x51\x60\xc3\xb9\
\xba\xaf\x3b\x2d\x7c\xa1\x7b\xc8\x77\x2d\x38\xec\xa0\x5b\x5c\x1d\
\x17\x3a\x78\xc3\x71\x2d\x82\xbd\x7e\xf5\xb0\xd0\x43\xe4\x06\x3e\
\x04\x51\x8f\x8d\x27\xb1\xf1\x24\x56\xfa\x67\xec\x12\xd7\xf2\xad\
\x8e\xac\x82\x2d\xda\x70\x06\xc9\xf1\xea\x14\xe7\x39\xbd\x98\xf6\
\xf4\xe2\x32\xcb\x58\x0c\x27\x4f\xb3\x3d\x3d\x56\xba\x66\x3e\xeb\
\xf7\x29\xf5\x03\xb1\x72\xcf\x01\x0a\xfc\xd0\xc1\xd8\x1e\xd9\xe7\
\x23\xc7\xc3\xc1\xd0\x43\xe0\x36\xe2\x23\xec\xf9\x04\x93\x91\x83\
\xce\x05\xac\x26\x05\x3c\x1f\x03\x57\x0d\x6c\x5e\x89\x72\xdb\xb2\
\x68\x5a\xb9\x5a\x55\x0c\xcc\xc5\x7a\xbf\x56\x89\x63\x06\xc1\x29\
\x81\x06\xf8\xa3\xe4\xd1\xab\xdb\x9b\xeb\x1b\x37\x18\x60\x54\x32\
\x00\xc0\xb5\x9c\xa0\x73\xd2\xd3\xd2\x91\x07\x81\xf3\xbc\x8a\xdf\
\xde\xc1\xc1\xe2\x49\x15\x2e\x1e\xaa\xa0\x51\x9e\x26\x9f\xca\xb4\
\x10\x77\xff\xc2\x94\x6f\x11\x88\xdc\x1f\x2f\xf2\xc5\x0e\xe9\x22\
\xd0\x1c\x07\xda\x4f\xae\x07\x5e\x10\x12\xc7\xad\xeb\x01\x09\x31\
\xe4\x62\x5d\x0f\x3c\xdb\xb5\x2d\xcf\x97\x1f\xaa\x1e\x38\x9e\xa7\
\x0a\x02\x09\xed\xc0\x21\xaa\x20\xb8\xc4\xc5\x1e\x79\x51\x41\x20\
\x96\x87\x6d\xd7\x3f\x2b\x08\x1e\x60\xc3\x93\x82\x70\x8a\x8d\x27\
\xb1\x13\x19\x69\xbb\x2f\x2b\x08\xb6\xf3\x53\x0a\xc2\x50\x6c\x5b\
\x10\x02\xc8\x5c\xef\xbc\x20\x40\x96\x93\xb3\x82\xe0\x79\x13\x05\
\x61\x2c\x60\x35\x29\xe0\xbf\x29\x08\xb6\xe5\xff\x98\x82\x80\xc9\
\xbb\x6b\xe7\x66\x5a\x45\xf8\x7f\x2c\x08\x8d\x43\x9e\x2b\x08\x73\
\x53\x0e\x0b\xea\xad\x9b\x36\xe4\xa8\x91\x3c\xc2\x68\xda\x4f\x14\
\x4b\xda\x55\x81\x2d\x5d\x33\x25\x1f\xf2\x61\xa5\x9e\x86\xb0\x2c\
\x79\xc2\x78\x4b\xf2\xd4\x33\x22\x95\x10\x4b\xa9\x38\xd6\xe3\x7b\
\x23\xbb\xcd\x1a\x29\xb5\xa3\xe3\x69\x7a\xb5\x81\x09\x7a\x0f\x33\
\xd6\x29\xf1\x6b\x59\xe6\x92\xcb\x3f\x25\xc8\xec\x21\x0e\x41\x7e\
\x88\xad\x33\x2e\x99\x44\x50\xa8\x90\xe3\x04\xae\x7d\x4a\x84\x89\
\x6b\x27\x67\x6c\x63\x57\xe7\xc2\xf6\x70\xc6\xbe\xe3\x5c\x02\x32\
\x7a\x64\x60\xb0\xfa\x69\x53\xa9\xda\x94\xfb\x35\x97\x8e\x5b\xd1\
\xac\xf3\xdc\x2a\x15\x46\x4e\xf9\x3a\x2d\x0c\x38\xa4\x3e\xcc\x06\
\xeb\x19\x5b\x89\x49\x02\xaf\xc7\xcb\x09\xca\xb2\x14\x42\x99\x7f\
\xba\xc1\x7d\x5a\x80\xbb\x8c\x66\x5a\x0d\xdd\x33\x07\x34\x80\x76\
\x74\x0d\xc3\x33\xff\x35\x08\x59\x37\xbd\xa7\xe4\x1f\x9f\x56\x9d\
\xd3\x43\x9a\xa7\x5f\x59\x22\x21\x75\x14\xce\x73\x26\x68\x42\x05\
\xed\x63\xab\x5d\xf1\xbb\x89\x35\x59\x45\x7f\x5e\xdf\x76\xa9\x10\
\xc7\xd1\x5f\x25\x7f\xe8\x43\x5d\x02\xe8\xb2\xdc\xc1\xa6\xbb\xaa\
\x24\x87\xe0\x38\x92\x3d\x89\x8a\xab\x34\x87\x70\x91\x97\x8c\x5f\
\x61\xd6\x87\x10\xef\x08\x23\xb0\x38\x6e\x59\x2f\xb4\x16\xcb\x59\
\x7d\x89\x98\xbc\x77\x25\x71\x9e\x4a\x26\xf3\x4e\xa4\x59\xf6\x41\
\x2a\x19\xa4\x6c\x23\x34\x15\x19\xbb\x52\x3a\xeb\xd7\xd6\x0a\xb3\
\x31\xa3\xcb\xc5\xde\xca\xb9\xd9\xfa\x40\x7d\xad\x4f\xbc\x99\xd1\
\x25\xcb\x16\xfa\x1f\x32\xc2\x34\x72\xea\xeb\x35\x2f\x77\xdb\x1c\
\x6e\x04\x4d\x0c\xea\xbd\x67\x47\x31\x29\xfa\x9e\xad\x5e\x33\xb8\
\x14\x5f\x1a\x30\xb9\x43\xfb\xf5\x09\x0c\xe9\x1e\xb1\x51\x80\xb1\
\x0f\x93\x79\xb3\xc7\xf5\xb0\x49\xad\xa1\x2f\xf5\x85\x31\x8d\x9a\
\xb8\x3f\xb2\x6a\xb0\x98\xa4\x39\xd4\x8e\x4f\x50\x06\x20\x35\x16\
\xba\x3b\x64\xe0\xeb\xe5\x3d\x4f\x4b\xa8\x0d\xce\x2d\x4c\xe4\x30\
\xaa\xdc\xc2\xd3\x01\x9a\xfa\x95\xa4\xd5\x16\x44\xc3\xf5\x0c\x1a\
\x2f\x7b\xc3\x0a\xba\xcc\x98\xb1\xa4\xf1\x83\x34\xb4\x48\xa2\x82\
\xed\x3b\x9e\x49\x9b\x7a\x93\xce\x2c\x1a\xda\xd4\x5b\x65\x0d\x83\
\x68\xba\x4b\xb7\xf0\x31\x95\xd8\xb6\x37\xec\x15\x4f\xb5\x6b\x45\
\x99\xec\xb8\x2a\xec\xa6\xda\xb6\x7c\xa6\x5b\xb7\xa2\x3c\x29\xec\
\x65\x2d\x5c\x59\x3a\x6e\xb4\xf2\x99\xea\x7f\x83\xa3\x79\xb6\x9d\
\xb7\x1e\x92\x20\xe9\x17\x6b\x94\x19\xcf\xab\x3b\x6d\x65\x4f\xe8\
\x3c\xeb\xef\xa7\x3a\x9d\x53\x9d\x4f\x35\xd1\xef\x33\xf6\x7b\x84\
\x8f\x1a\xff\x4f\x10\xff\x4d\x9e\x1b\xd5\xaa\xc9\xdb\x81\xa2\x6c\
\xa9\xd8\x5c\x9c\x0b\x5c\x41\xcd\x8b\xa0\x1a\x5e\x9e\x8d\xc1\xae\
\xf5\xfa\x8d\xa4\x1a\x4d\x07\x8f\xc8\x9b\x4a\xf0\xf2\x81\x81\x66\
\xf5\x34\x9f\x75\x2f\x8a\xa0\x51\x8f\xbd\x92\x46\x0f\x45\x19\x3f\
\xa8\x82\xfe\xb1\x9b\x27\xea\x47\x36\x08\xcd\x43\xd8\x71\x66\xb2\
\x8f\x5b\x5a\xac\x19\x18\x85\x81\x3b\xc3\x9a\x41\x50\x68\x7b\x33\
\x8c\x88\x13\x68\x86\x85\x02\x1b\x56\x91\x43\x7c\x2d\xd3\xf0\x8c\
\x84\x08\xe3\x10\xf0\x18\x41\x02\x01\xc1\xf2\x02\x8d\xa0\xa0\xc6\
\x78\x5a\x8f\xf7\x34\x17\x39\x3e\x40\xb4\x10\x85\x16\x91\x57\x18\
\xc7\x21\xed\x87\xfc\xb1\x40\x9e\x21\x41\xa0\x47\x12\xad\x7a\x59\
\x33\x06\x18\xa5\x14\x6b\x5f\xf5\xd3\xa2\x21\xfd\xe9\x42\x55\x1a\
\x13\xfa\xfb\x42\x51\xc0\x7d\xa1\xe4\x06\x4c\x14\x8f\x54\xec\x38\
\xeb\xdb\x65\x73\x22\x1c\x00\x13\x27\xf2\x4d\x4e\x3e\xc8\x70\xb1\
\x4f\x16\x8f\x53\x8b\xcf\x1d\x47\x33\x4d\x28\xdf\x8d\x08\xdd\x3f\
\xc0\xe0\x92\xe7\xfb\x67\x3e\x90\x16\x80\x0f\xec\xe1\x88\x6b\xae\
\xdb\x5e\xb8\xae\xbb\x20\xfc\xcc\x65\xd7\xbe\xba\xf8\x07\x5c\xed\
\xca\x43\
\x00\x00\x11\xd9\
\x3c\
\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\
\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\
\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\
\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\
\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\
\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\
\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\
\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x41\x64\x6f\x62\x65\x49\x6c\x6c\x75\x73\
\x74\x72\x61\x74\x6f\x72\x2f\x31\x30\x2e\x30\x2f\x22\x0a\x20\x20\
\x20\x78\x6d\x6c\x6e\x73\x3a\x61\x3d\x22\x68\x74\x74\x70\x3a\x2f\
\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x41\x64\
\x6f\x62\x65\x53\x56\x47\x56\x69\x65\x77\x65\x72\x45\x78\x74\x65\
\x6e\x73\x69\x6f\x6e\x73\x2f\x33\x2e\x30\x2f\x22\x0a\x20\x20\x20\
\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\
\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\
\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\
\x6d\x6c\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\
\x63\x72\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\
\x6f\x72\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\
\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\
\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\
\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\
\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\
\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\
\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\
\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\
\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\
\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\
\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\
\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\
\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\
\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\
\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\
\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\
\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\
\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\
\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\
\x68\x3d\x22\x31\x36\x2e\x33\x34\x33\x37\x35\x22\x0a\x20\x20\x20\
\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x33\x2e\x34\x33\x37\x35\x22\
\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x22\x0a\x20\x20\
\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\
\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\
\x6f\x6e\x3d\x22\x30\x2e\x34\x38\x2e\x32\x20\x72\x39\x38\x31\x39\
\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\
\x63\x6e\x61\x6d\x65\x3d\x22\x4e\x65\x77\x20\x64\x6f\x63\x75\x6d\
\x65\x6e\x74\x20\x31\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\
\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x34\x22\x3e\
\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\
\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\
\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\
\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\
\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\
\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x32\x2e\x37\x31\
\x32\x32\x38\x34\x39\x2c\x2d\x34\x2e\x39\x33\x33\x31\x36\x37\x38\
\x65\x2d\x38\x2c\x31\x2e\x33\x31\x38\x38\x38\x33\x37\x65\x2d\x37\
\x2c\x32\x2e\x36\x35\x38\x35\x34\x2c\x2d\x31\x36\x2e\x34\x31\x35\
\x36\x37\x38\x2c\x2d\x31\x35\x2e\x38\x33\x31\x39\x39\x35\x29\x22\
\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x36\x2e\x37\x35\x32\
\x39\x39\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\
\x22\x38\x2e\x32\x34\x35\x32\x31\x30\x36\x22\x0a\x20\x20\x20\x20\
\x20\x20\x20\x66\x78\x3d\x22\x39\x2e\x35\x38\x37\x30\x30\x30\x38\
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x38\x2e\x32\
\x34\x35\x32\x31\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\
\x78\x3d\x22\x39\x2e\x35\x38\x37\x30\x30\x30\x38\x22\x0a\x20\x20\
\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\
\x72\x61\x64\x69\x65\x6e\x74\x35\x32\x37\x32\x22\x0a\x20\x20\x20\
\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\
\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x35\
\x32\x36\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\
\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\
\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\
\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\
\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\
\x61\x64\x69\x65\x6e\x74\x35\x32\x36\x34\x22\x0a\x20\x20\x20\x20\
\x20\x20\x20\x63\x78\x3d\x22\x38\x2e\x38\x37\x39\x34\x30\x30\x33\
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x37\x2e\x34\
\x36\x30\x38\x39\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\
\x3d\x22\x31\x37\x2e\x30\x36\x37\x31\x30\x31\x22\x0a\x20\x20\x20\
\x20\x20\x20\x20\x66\x78\x3d\x22\x38\x2e\x38\x37\x39\x34\x30\x30\
\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x37\x2e\
\x34\x36\x30\x38\x39\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\
\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\
\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x3e\x0a\
\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\
\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x45\x44\x45\
\x35\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\
\x22\x73\x74\x6f\x70\x35\x32\x34\x38\x22\x20\x2f\x3e\x0a\x20\x20\
\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x36\x38\x35\
\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\
\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x42\
\x41\x30\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x32\x35\x30\x22\x20\x2f\x3e\
\x0a\x20\x20\x20\x20\x20\x20\x3c\x61\x3a\x6d\x69\x64\x50\x6f\x69\
\x6e\x74\x53\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\
\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x45\x44\x45\x35\x38\x22\x20\x2f\
\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x61\x3a\x6d\x69\x64\x50\x6f\
\x69\x6e\x74\x53\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\x0a\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\
\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x45\x44\x45\x35\x38\
\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x61\x3a\x6d\x69\
\x64\x50\x6f\x69\x6e\x74\x53\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x36\x38\
\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\
\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\
\x42\x41\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\
\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\
\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\
\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\
\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\
\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\
\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\
\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\
\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\
\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\
\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\
\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\
\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\
\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\
\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x30\x2e\
\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\
\x3a\x63\x78\x3d\x22\x31\x30\x36\x2e\x34\x37\x37\x33\x36\x22\x0a\
\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\
\x3d\x22\x39\x37\x2e\x32\x39\x35\x39\x35\x35\x22\x0a\x20\x20\x20\
\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\
\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\
\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\
\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\
\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\
\x64\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x66\
\x69\x74\x2d\x6d\x61\x72\x67\x69\x6e\x2d\x74\x6f\x70\x3d\x22\x30\
\x22\x0a\x20\x20\x20\x20\x20\x66\x69\x74\x2d\x6d\x61\x72\x67\x69\
\x6e\x2d\x6c\x65\x66\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\
\x66\x69\x74\x2d\x6d\x61\x72\x67\x69\x6e\x2d\x72\x69\x67\x68\x74\
\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x66\x69\x74\x2d\x6d\x61\
\x72\x67\x69\x6e\x2d\x62\x6f\x74\x74\x6f\x6d\x3d\x22\x30\x22\x0a\
\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\
\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x39\x35\x32\x22\
\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\
\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x39\x39\
\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\
\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x39\x36\x30\x22\x0a\
\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\
\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\
\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\
\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x30\x22\x20\x2f\x3e\
\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\
\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x37\x22\
\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\
\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\
\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\
\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\
\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\
\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\
\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\
\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\
\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\
\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\
\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\
\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\
\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\
\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\
\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x6e\
\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\
\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\
\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\
\x6c\x61\x79\x65\x72\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\
\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x74\x72\x61\
\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\x74\
\x65\x28\x2d\x33\x36\x36\x2e\x38\x33\x2c\x2d\x35\x32\x30\x2e\x36\
\x34\x38\x31\x38\x29\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\
\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x35\x32\x36\x31\x22\
\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x6c\x61\x79\x65\x72\x3d\
\x22\x79\x65\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x64\
\x69\x6d\x6d\x65\x64\x50\x65\x72\x63\x65\x6e\x74\x3d\x22\x35\x30\
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x3a\x72\x67\x62\x54\x72\
\x69\x6f\x3d\x22\x23\x34\x46\x30\x30\x38\x30\x30\x30\x46\x46\x46\
\x46\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\
\x22\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\
\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\
\x64\x3a\x6e\x65\x77\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\
\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x74\x72\x61\x6e\x73\x6c\x61\
\x74\x65\x28\x33\x36\x36\x2e\x38\x33\x2c\x35\x32\x30\x2e\x36\x34\
\x38\x31\x38\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x67\x0a\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x35\x32\
\x34\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x72\x61\
\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\
\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x31\x33\x33\x33\x36\x22\
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\
\x38\x2e\x38\x37\x39\x34\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x37\x2e\x34\x36\x30\x38\
\x39\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x72\x3d\x22\x31\x37\x2e\x30\x36\x37\x31\x30\x31\x22\x0a\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x38\x2e\x38\
\x37\x39\x34\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x66\x79\x3d\x22\x37\x2e\x34\x36\x30\x38\x39\x39\x38\
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\
\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\
\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x3e\x0a\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\
\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\
\x6c\x6f\x72\x3a\x23\x46\x45\x44\x45\x35\x38\x22\x0a\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\
\x6f\x70\x31\x33\x33\x33\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\
\x22\x30\x2e\x36\x38\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\
\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x42\x41\x30\x30\x30\x30\x22\
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\
\x3d\x22\x73\x74\x6f\x70\x31\x33\x33\x34\x30\x22\x20\x2f\x3e\x0a\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x61\x3a\x6d\x69\x64\
\x50\x6f\x69\x6e\x74\x53\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\
\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\
\x3a\x23\x46\x45\x44\x45\x35\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x3c\x61\x3a\x6d\x69\x64\x50\x6f\x69\
\x6e\x74\x53\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x35\x22\
\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\
\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\
\x23\x46\x45\x44\x45\x35\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x3c\x61\x3a\x6d\x69\x64\x50\x6f\x69\x6e\
\x74\x53\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x36\x38\x35\
\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\
\x72\x3a\x23\x42\x41\x30\x30\x30\x30\x22\x20\x2f\x3e\x0a\x20\x20\
\x20\x20\x20\x20\x20\x20\x3c\x2f\x72\x61\x64\x69\x61\x6c\x47\x72\
\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\
\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\
\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\
\x35\x32\x37\x32\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\
\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\
\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\
\x3a\x30\x2e\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\
\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\
\x22\x6d\x20\x36\x2e\x30\x34\x34\x2c\x31\x2e\x37\x39\x32\x20\x63\
\x20\x2d\x30\x2e\x39\x38\x36\x2c\x30\x20\x2d\x31\x2e\x39\x33\x36\
\x2c\x30\x2e\x31\x34\x38\x20\x2d\x32\x2e\x38\x33\x35\x2c\x30\x2e\
\x34\x31\x37\x20\x6c\x20\x30\x2c\x31\x39\x2e\x30\x31\x20\x63\x20\
\x30\x2e\x38\x39\x39\x2c\x30\x2e\x32\x36\x38\x20\x31\x2e\x38\x34\
\x39\x2c\x30\x2e\x34\x31\x36\x20\x32\x2e\x38\x33\x35\x2c\x30\x2e\
\x34\x31\x36\x20\x35\x2e\x34\x37\x39\x2c\x30\x20\x39\x2e\x39\x32\
\x31\x2c\x2d\x34\x2e\x34\x34\x31\x20\x39\x2e\x39\x32\x31\x2c\x2d\
\x39\x2e\x39\x32\x31\x20\x30\x2c\x2d\x35\x2e\x34\x38\x20\x2d\x34\
\x2e\x34\x34\x32\x2c\x2d\x39\x2e\x39\x32\x32\x20\x2d\x39\x2e\x39\
\x32\x31\x2c\x2d\x39\x2e\x39\x32\x32\x20\x6c\x20\x30\x2c\x30\x20\
\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\
\x3d\x22\x70\x61\x74\x68\x35\x32\x35\x32\x22\x0a\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\
\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\
\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\
\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x72\x6f\x6b\
\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\
\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x37\x35\x22\x0a\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x30\x2e\x33\x37\x35\
\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\
\x30\x2e\x33\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x69\x3a\x6b\x6e\x6f\x63\x6b\x6f\x75\x74\x3d\x22\x4f\x66\
\x66\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\
\x64\x74\x68\x3d\x22\x32\x2e\x38\x33\x35\x22\x0a\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\
\x32\x2e\x36\x37\x37\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x32\x35\
\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\
\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\
\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\
\x00\x00\x08\x93\
\x00\
\x00\x2c\x18\x78\x9c\xed\x5a\x6d\x6f\xe2\x48\x12\xfe\x9e\x5f\xc1\
\x39\x5f\x26\xba\xb8\xdd\x2f\x76\xbb\xcd\x86\xac\x92\x21\x59\x8d\
\xb4\xa7\x5d\xdd\xcc\xec\xdd\xb7\x91\x63\x37\xc4\x8a\xb1\x91\x6d\
\x02\xec\xaf\xbf\x6a\x03\x7e\x81\x06\x4c\x86\xdc\xac\x74\xe7\x28\
\x02\xba\xaa\xab\xba\xde\x9e\x6a\xdb\x7d\xf3\xf3\x62\x12\xf7\x5e\
\x65\x96\x47\x69\x32\x30\x08\xc2\x46\x4f\x26\x41\x1a\x46\xc9\x78\
\x60\x7c\xfd\xf2\x68\x0a\xa3\x97\x17\x7e\x12\xfa\x71\x9a\xc8\x81\
\x91\xa4\xc6\xcf\xb7\x17\x37\x7f\x33\xcd\xde\xc7\x4c\xfa\x85\x0c\
\x7b\xf3\xa8\x78\xee\x7d\x4a\x5e\xf2\xc0\x9f\xca\xde\x87\xe7\xa2\
\x98\xf6\x2d\x6b\x3e\x9f\xa3\x68\x3d\x88\xd2\x6c\x6c\x5d\xf5\x4c\
\xf3\xf6\xe2\xe2\x26\x7f\x1d\x5f\xf4\x7a\x3d\xd0\x9b\xe4\xfd\x68\
\x60\xac\xf9\x93\x1c\xf9\x61\xfa\x24\x51\x90\x4e\xac\x3b\xf5\xed\
\x53\x1c\xcf\xf2\x22\xf3\x8b\x34\xb3\x08\x46\xd8\x32\xea\x79\xfe\
\x81\x79\x9f\xff\xf8\xe5\x8f\x48\xce\x65\xf6\xb0\x28\x64\xa2\x0c\
\xcb\x2d\xd6\x9e\x1e\x06\xd5\xfc\xe9\x2c\x8b\xcb\xf5\x85\x81\x25\
\x63\x39\x91\x49\x91\x5b\x04\x91\x26\x7b\x50\xb3\x07\xca\xe8\xe8\
\x55\x82\xb6\x09\x08\x2e\x67\x26\xf9\x65\x83\x39\x0b\x47\x15\xb7\
\x72\xc2\x9c\x95\x4c\xc4\xf3\x3c\x0b\x53\x8b\x52\x13\x38\xcc\x7c\
\x99\x14\xfe\xc2\x6c\x4f\x05\xd7\xe8\xa6\x52\x8c\xb1\x05\xb4\x9a\
\xb3\x1b\x57\x7f\x11\x43\x04\xf6\x2e\xa6\xa4\x36\xb5\x43\xd4\xa7\
\xf0\x5f\x4d\xd8\x0c\xa0\x3c\x9d\x65\x81\x1c\xc1\x4c\x89\x12\x59\
\x58\xc3\x2f\xc3\x8a\x68\x62\x14\x16\x61\x43\xcc\x26\xe8\x2d\xbd\
\xad\x4c\x48\xfc\x89\xcc\xa7\x7e\x20\x73\x6b\x33\x5e\xce\x9f\x47\
\x61\xf1\x3c\x30\x28\x43\x36\x73\x9d\x72\xe8\x59\x46\xe3\xe7\xa2\
\x3d\x16\x85\x03\x03\xec\xa4\xe5\x8f\x46\xea\x92\x15\x75\x2d\xb1\
\x5f\x51\x30\xb2\x05\xa2\xbd\xcc\x13\xc4\x2b\x59\x36\x4b\xef\x87\
\x69\xa0\xd6\x32\x30\x26\x51\x96\xa5\xd9\xb7\x60\x96\xbd\x4a\xa4\
\x7c\x78\x0b\x7c\x37\xa1\x1c\xe5\x8a\x7f\xa5\x52\xfd\xb2\x4b\x02\
\x90\x32\x3f\x8c\xfc\xf8\x17\xf5\x01\x09\xb3\x62\xea\xf5\xc6\xeb\
\xdf\x5f\x93\xa8\x80\x18\xcd\x72\x99\x7d\x56\x76\xfe\x96\x7c\xcd\
\x57\x26\x36\xb9\xbe\x64\x7e\x92\x83\x53\x27\xa0\xdf\x2f\xb2\x68\
\xf1\x81\x22\x97\x50\x2a\x6c\xef\xda\xb4\x91\xc7\x18\xe1\xae\x90\
\xa6\xb8\x26\x88\x11\x21\x04\x73\xa5\xe9\x5e\x53\xc4\x1d\xe1\xd8\
\xd7\x26\xe1\xc8\x26\x0e\xb0\xc0\x57\x07\x09\x06\x41\x75\xae\x2a\
\x2d\xd9\xc0\xe0\xc8\x75\x28\x44\x5a\x54\x83\xa3\xe5\xc0\x00\x5f\
\xd8\x0e\x25\x98\xd7\xa3\x8b\x81\xe1\x21\x47\xb8\x90\x41\x35\x6f\
\xa0\xe5\x0d\xb4\xbc\xca\x3f\x6d\x97\x38\xd4\xa5\x15\xb9\xcc\xb4\
\xfe\x73\x26\xa1\x32\x2e\xb7\xf9\xb8\x5d\x8b\xd9\xc4\x2e\x48\xe3\
\x58\x06\x10\x77\x3f\x9e\xfb\xcb\xdc\xe8\x59\x07\xfd\xae\x53\xdf\
\x10\xab\xd6\x2c\x90\x70\x3d\x1b\x63\xd6\xb2\xcf\x45\x36\xc7\xa2\
\xe9\x21\x70\x1b\x71\x11\xe6\x2e\xc1\xa4\xe5\xa0\x5d\x01\x23\xad\
\x80\xc3\x39\x70\xbb\x66\xbb\xc9\x8b\x74\xba\x99\xd2\xeb\xa5\xa3\
\x51\x2e\xc1\x5c\x6c\xd4\x63\x79\xb1\x8c\x21\x35\x15\xa3\x09\xfe\
\x48\xb3\xfe\xe5\xe3\xc3\xf0\xc1\x11\x0d\x9e\xb2\x14\x80\xc1\xa1\
\xb6\xa8\x9c\xb4\x5f\x3a\xe2\x90\x38\x87\x55\xdc\xdf\x41\x60\xb1\
\x56\x85\x83\x9b\x2a\xfc\xfe\x24\x0a\x7f\x4f\xa3\xa4\xf8\xfc\x1d\
\xa6\x9c\x22\x10\x39\xe7\x17\xd9\xd9\x21\x55\x06\x5a\xed\x44\x7b\
\x67\x3c\xe0\xc2\x23\xb6\xb3\xc2\x03\xe2\x61\xa8\xc5\x15\x1e\x70\
\xe6\x30\xca\x5d\xf5\xa3\xc4\x03\x9b\xf3\x12\x10\x88\xc7\x84\x4d\
\x4a\x40\x70\x88\x83\x39\xe9\x04\x08\x84\x72\xcc\x1c\x77\x07\x10\
\x38\xf0\x7a\x5b\x80\xb0\xcd\x1b\x68\x79\x35\x15\xc9\x9c\x6e\x80\
\xc0\xec\x77\x01\x84\xa6\xd8\x0d\x20\x08\xa8\x5c\xbe\x0b\x08\x50\
\xe5\x64\x07\x10\x38\xd7\x00\x42\x5b\xc0\x48\x2b\xe0\xc7\x00\x02\
\xa3\xee\x79\x00\x01\x93\xbb\xa1\xfd\xa0\x57\xe1\xfd\x2f\x02\xc2\
\xda\x21\x47\x00\x01\x12\x5c\xfa\xd9\x76\x5e\x2e\x29\x14\x0b\x45\
\x8c\x31\xbb\x91\x37\x0b\x18\xb5\x19\x82\x0a\xa9\x0d\x5a\x12\xc8\
\x3b\x22\x10\x76\x59\x3d\xb8\x20\xbb\x8c\xfb\xd1\x03\x23\x71\x8d\
\xd5\x1f\x7c\x9a\xcc\x46\x02\x76\x16\xd7\x26\x87\x8d\x12\xc1\xe2\
\xaa\x63\x7e\x36\x2b\xaa\x6d\x93\xe3\xda\x44\x5f\xd0\xdb\x7c\x94\
\x9f\x50\xd0\x7a\xc7\xe9\xd4\x37\xc4\x76\xb3\x41\xb9\x8f\x0a\xe4\
\x52\xe2\x36\xea\x53\x79\x9a\x51\xe4\x81\xbc\x06\x30\xaa\x98\x68\
\x78\x61\x94\x30\x44\x18\xf6\xbe\xb7\x72\xcb\x4b\x57\x56\xdc\xc3\
\x5d\x2a\x17\x63\x87\x1c\x4b\xff\xc7\x8f\x8f\x1f\xf5\x2a\x68\x17\
\x15\xc4\xf6\xdc\xc3\x2a\x1e\xf8\x9d\x7d\x67\xeb\x55\xd8\x5d\x54\
\x50\xf7\x88\x86\x21\x73\x1e\x1c\x2d\xfc\x70\xa8\xa0\x0e\x1a\x98\
\xa0\xec\xb0\x8a\x8f\x9c\xde\xd3\x7b\xbd\x8a\x4e\xbb\x2a\x9b\x93\
\x23\x48\x74\x3f\xc4\x1f\xb1\x36\x14\x2e\xee\x14\x6d\x07\x3b\xfc\
\x88\x8a\xbd\x1b\x37\x17\x77\x8a\xb6\x8b\x8f\xc6\x42\xf0\x07\xae\
\x8d\x85\x8b\x3b\x45\xdb\xc3\x8d\x2d\x82\x3e\x67\xed\x21\x1f\x72\
\xbd\x8a\x0e\xe1\x3e\x56\x11\x7b\x8b\xce\xc5\xa7\xf5\x89\x4e\x7a\
\x4e\x6a\x3c\x36\xa5\xf4\xfc\x52\x3b\xe7\xcd\x69\x6b\x75\xdd\x23\
\x35\x75\xba\xd4\x6e\xa1\xab\xbb\x6e\xbb\x1b\x1c\xed\xba\x2e\x07\
\x24\x10\xdd\xba\x2e\xdc\x86\xc3\x1d\xf6\x5f\xb4\xeb\x7a\xa2\x4e\
\xbe\x03\x5d\x97\x09\xd2\xb8\x3d\x3f\x5b\xd7\x6d\x89\xed\xde\x75\
\x99\x03\x0d\x4b\xb8\x76\xcb\xd1\xe0\x53\x4c\xb7\x5a\xee\x2e\xa3\
\xea\xb8\x36\x6c\xcb\xd8\xee\x8e\x5a\xe7\x7c\xe6\x94\xde\x57\xb7\
\x40\xb0\x6d\x27\x9e\x43\xe1\x9b\x8d\x18\x16\xfc\xea\x68\xcb\x56\
\x4d\xf5\x48\xb9\x08\xef\xce\xbe\xd7\x01\x14\x13\x1d\x91\xfc\x8d\
\x10\x05\xf2\x3b\xc0\xf8\x91\x2a\x3a\xb4\x7a\xfb\x34\x0c\xe8\xec\
\xaa\x73\xee\xe8\xdf\x41\xe4\x9b\x50\xf5\xdc\x22\xbb\x85\xed\xfc\
\xe0\x07\x77\xb5\x6e\xe3\xb6\xfc\x10\xfc\x6d\xb1\xfe\x48\x00\xdc\
\xf3\x1c\x61\x1b\xa9\x1c\xf6\x2e\x00\xd8\x10\x7b\x02\x00\x82\x07\
\x69\x6b\xfb\xb3\x17\x01\x77\x39\xbf\x03\x02\x1d\x64\x7b\xcc\xfd\
\xaf\x41\x20\xdc\xab\xbe\x2b\x04\xb2\x0e\x0f\x35\xde\x0e\x81\xec\
\xb4\xe7\x19\xff\x87\xc0\x73\x8a\x7c\x47\x08\xdc\x5b\xfd\x27\xc3\
\xc8\x2e\x1c\x90\xc6\x2d\xf2\xf7\x3e\xee\xed\x88\x9c\x7a\x40\xd6\
\x63\xb7\x1e\xe6\x5b\x2d\xe1\x08\x04\xae\x99\x85\xc3\x9b\xef\x3e\
\x94\x60\x97\x02\xd4\x60\xdc\xc0\xaf\x72\x0d\xd8\x41\x14\x53\xd2\
\x5e\xae\x0d\xc5\xc2\x44\x03\xd4\x7e\x58\xff\x00\x9b\xf7\xf4\x8f\
\x7f\xff\xe3\xd7\x4f\xc3\x6f\xf4\xdb\x59\xba\xc6\x8e\xb0\xee\xbd\
\x62\xd7\x59\x7a\xbf\xea\x43\xa0\x0d\xd7\x9b\xbd\xfd\x4e\x0f\xb9\
\x18\xe1\xec\x1d\x91\x9c\x70\xe7\x07\xdf\xcd\xff\x05\xe1\xf1\xc6\
\x52\x6f\xb0\xcb\x6f\xd5\x0b\x70\xf5\xf6\x3b\x7c\x8d\xe4\xfc\xa2\
\x72\xe0\x93\x5f\xa5\xe3\xd4\x1f\xcb\x52\x3e\x14\xc7\xa8\xbc\xd6\
\x84\xa7\x34\x0b\x65\xb6\x21\xf1\xf2\x6a\x91\x52\xc8\xec\xa8\x58\
\xae\x0e\x94\xac\x65\x6f\x8a\x49\x49\xad\xe8\x58\x4f\xcf\x9f\xfd\
\x30\x9d\x0f\x0c\xba\x4d\xfc\x33\x4d\x27\x6a\x96\x10\x14\x80\x8e\
\xef\xd0\xd5\x9b\x1d\xca\x40\x2a\x11\xd5\xe3\xe1\x9a\x08\x0a\x4d\
\xe2\x11\x40\x3e\xf5\x4c\x6c\x8b\x1a\xa6\xc1\x4c\x9d\xfe\x30\x67\
\xab\x0a\x9d\x2e\x76\xe6\xcf\xb2\x4c\x31\xc4\xfe\x52\x82\xe1\xe5\
\xc7\x26\x2e\xf9\x73\x3a\x1f\x67\xca\x81\x23\x3f\xae\x3c\x38\x8a\
\x0a\x73\xe2\x67\xe3\x28\x31\x21\x58\x75\xa6\x35\xc6\x63\x39\x2a\
\xb4\x84\x6c\x75\xf2\x41\x43\x79\x4a\x8b\xa2\x74\xc3\xf6\x02\xe7\
\x51\x02\x6e\x33\xd7\xe7\x28\x3c\x67\xc7\xc6\x35\xc3\xe6\x54\x85\
\x57\x35\xaf\x6d\x0e\xf5\x52\x8f\xef\x93\xbf\xdc\xaf\x7a\xe2\x2f\
\xa2\x49\xf4\xa7\x0c\x15\xcb\x2a\x1b\x6f\x26\xb2\xf0\x43\xbf\xf0\
\xeb\x1c\xdb\x8c\xb8\xd5\x71\x8a\x70\xd4\xff\xe7\xf0\xb1\xaa\x86\
\x20\xe8\xff\x2b\xcd\x5e\xea\x94\x57\x0c\xfe\x53\x3a\x83\x45\x57\
\x98\xa4\x4e\x68\x04\x7d\x85\x66\x7e\x71\x1b\x4d\x20\x6d\xd4\xf1\
\x97\xbf\x2f\x26\x31\xa4\x7a\x45\x68\x31\x17\xcb\xa9\xac\x85\xae\
\xc4\x66\x72\x75\xbc\x45\x7b\x22\x28\x0c\x26\x91\x9a\x64\x7d\x2e\
\xa2\x38\xfe\xa4\x94\x34\xaa\x76\x2d\x34\x2a\x62\x79\x5b\xea\x5c\
\x7d\xdd\x58\x61\xad\xcd\xa8\x5e\x14\xd5\x56\xde\x58\x1b\x1f\x94\
\xbf\xc6\x5b\xde\x8c\xfd\x27\x19\x0f\x8c\x5f\x55\x86\xf5\xc8\xb6\
\xaf\xc7\x59\x3a\x9b\x4e\xd2\x50\xae\x73\xd0\xa8\x3d\xdb\xca\xc9\
\xa2\x46\xfb\xf2\x6b\xec\x17\xf2\x83\x09\xd0\x4b\x90\xcd\xd5\x83\
\x11\x97\x3a\xc8\x71\x1d\xf5\x96\x78\xbd\xc6\x71\xb3\x87\x95\xea\
\xbf\xd5\xc8\x13\xf5\xd7\x99\xbf\x94\x79\x63\x30\x8c\x26\x80\x22\
\xbf\x03\x20\x40\x71\x0c\x0c\x07\x37\x68\xd9\xf8\xe9\x4b\x16\xa5\
\x80\x12\xf6\x23\xc6\x02\x63\xdc\xea\x08\x6b\x24\x0b\xa3\x7c\x0a\
\xa2\xfb\x51\xa2\x60\xeb\x27\x99\xf8\x4f\xb1\x34\x9f\xfc\xe0\x45\
\x99\x9a\x84\xfd\x44\xce\xab\x39\x5a\xab\x6a\xa3\x76\x6c\x6a\x5a\
\xb5\xb2\x6b\x0c\x0d\x02\x37\xd3\x48\xdf\xc6\x2b\x9f\xb6\xa8\x84\
\xd9\xa2\xf9\x10\xbb\x6b\x67\x57\x97\xbe\xbb\xab\x4b\xdb\xe1\xcb\
\x29\xda\x2e\x5f\x4e\xd1\x76\xfa\xe6\x82\xde\xdc\xed\x4b\xa7\xb4\
\x7b\xb2\xba\x74\xfd\xb2\x11\xc5\x83\x9d\x7f\xe3\x4c\xc5\x04\x2e\
\xf4\x48\xab\x8c\x0e\xaa\x23\xc7\xd5\xed\x6c\x05\xb6\xd5\xb1\x6d\
\x75\xfb\xfa\xed\xdb\xec\x7c\x8b\xf0\xd6\x1e\xe1\xec\xe2\xbb\x3b\
\xad\x05\x67\xda\xdb\xaa\x92\x92\xc1\x06\xf8\x62\x57\xe0\x08\x60\
\xb1\x0f\x80\xf9\xe1\x72\x77\x9b\x7d\xf5\x53\x5e\x64\xe9\x8b\xec\
\x5f\xe2\xf2\x5a\xff\x5c\xf5\xa7\x3e\x46\x6e\xdb\x03\x8b\xf2\x75\
\xdd\xd6\xe0\x52\x37\x18\xf5\x5f\x92\x34\x78\x29\xdb\xc1\x6f\xd5\
\xae\x64\x75\x6d\x0e\x11\x52\xc4\x5b\xef\xb3\x1a\x67\x09\x77\x49\
\xe5\x79\x11\x30\x50\x9d\xb8\x6b\x3b\x44\x59\xb5\xcf\xec\x24\x05\
\xb0\x3a\xc9\xc4\x43\x0b\x57\xe0\xa0\xb1\x5f\x3b\x5a\xbe\x9d\x66\
\x08\x3b\x74\x07\x12\x34\xc3\x1b\x10\x03\xeb\x5a\x4f\x38\xac\xf1\
\xa6\x33\x8d\x57\x3d\x09\x3e\x6e\x54\x0f\xbd\xbd\xf8\x0f\x5d\xf5\
\x67\x02\
"
qt_resource_name = "\
\x00\x09\
\x0a\x6c\x78\x43\
\x00\x72\
\x00\x65\x00\x73\x00\x6f\x00\x75\x00\x72\x00\x63\x00\x65\x00\x73\
\x00\x09\
\x09\xc5\xbf\xc7\
\x00\x6c\
\x00\x61\x00\x73\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x10\
\x0b\x15\xed\x27\
\x00\x6d\
\x00\x69\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x5f\x00\x63\x00\x75\x00\x72\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x0f\
\x01\xaa\x01\x47\
\x00\x6d\
\x00\x69\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x5f\x00\x66\x00\x6c\x00\x61\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\
\x00\x14\
\x0d\x7a\xb6\xa7\
\x00\x70\
\x00\x68\x00\x6f\x00\x74\x00\x6f\x00\x64\x00\x69\x00\x6f\x00\x64\x00\x65\x00\x5f\x00\x67\x00\x72\x00\x65\x00\x65\x00\x6e\x00\x2e\
\x00\x73\x00\x76\x00\x67\
\x00\x12\
\x00\x01\xa1\x47\
\x00\x70\
\x00\x68\x00\x6f\x00\x74\x00\x6f\x00\x64\x00\x69\x00\x6f\x00\x64\x00\x65\x00\x5f\x00\x72\x00\x65\x00\x64\x00\x2e\x00\x73\x00\x76\
\x00\x67\
\x00\x10\
\x03\x91\x15\xa7\
\x00\x62\
\x00\x65\x00\x61\x00\x6d\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\
"
qt_resource_struct = "\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x06\x00\x00\x00\x02\
\x00\x00\x00\xa8\x00\x00\x00\x00\x00\x01\x00\x00\x1f\x38\
\x00\x00\x00\x56\x00\x01\x00\x00\x00\x01\x00\x00\x10\xd5\
\x00\x00\x00\xd2\x00\x01\x00\x00\x00\x01\x00\x00\x31\x15\
\x00\x00\x00\x18\x00\x01\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x30\x00\x01\x00\x00\x00\x01\x00\x00\x08\x27\
\x00\x00\x00\x7a\x00\x01\x00\x00\x00\x01\x00\x00\x18\xb1\
"
def qInitResources():
QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()
<!DOCTYPE RCC><RCC version="1.0">
<qresource>
<file>resources/beamsplitter.svg</file>
<file>resources/laser.svg</file>
<file>resources/mirror_flat.svg</file>
<file>resources/mirror_curve.svg</file>
<file>resources/photodiode_green.svg</file>
<file>resources/photodiode_red.svg</file>
</qresource>
</RCC>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="23.4375"
height="23.4375"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="mirror_curve.svg">
<defs
id="defs4">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7122849,-4.9331678e-8,1.3188837e-7,2.65854,-16.415678,-15.831995)"
r="6.7529998"
fy="8.2452106"
fx="9.5870008"
cy="8.2452106"
cx="9.5870008"
id="radialGradient5272"
xlink:href="#radialGradient5264"
inkscape:collect="always" />
<radialGradient
id="radialGradient5264"
cx="8.8794003"
cy="7.4608998"
r="17.067101"
fx="8.8794003"
fy="7.4608998"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5248" />
<stop
offset="0.6854"
style="stop-color:#BA0000"
id="stop5250" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#BA0000" />
</radialGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.6891459,-4.9190521e-8,1.6353267e-8,2.658466,-16.193841,-15.515061)"
r="6.7529998"
fy="8.1260357"
fx="9.5869999"
cy="8.1260357"
cx="9.5869999"
id="radialGradient5352"
xlink:href="#radialGradient5344"
inkscape:collect="always" />
<radialGradient
id="radialGradient5344"
cx="8.8788996"
cy="7.4604001"
r="17.066601"
fx="8.8788996"
fy="7.4604001"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5327" />
<stop
offset="0.6854"
style="stop-color:#01AD4E"
id="stop5329" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#01AD4E" />
</radialGradient>
<linearGradient
y2="92.333496"
x2="43.5355"
y1="118.0735"
x1="43.5355"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5741"
xlink:href="#linearGradient5726"
inkscape:collect="always" />
<linearGradient
id="linearGradient5726"
gradientUnits="userSpaceOnUse"
x1="28.721701"
y1="32.972698"
x2="28.721701"
y2="13.1309">
<stop
offset="0"
style="stop-color:#FFFFFF"
id="stop5690" />
<stop
offset="0.0051"
style="stop-color:#FEFCFC"
id="stop5692" />
<stop
offset="0.1497"
style="stop-color:#E6A4A4"
id="stop5694" />
<stop
offset="0.277"
style="stop-color:#D35E5E"
id="stop5696" />
<stop
offset="0.3823"
style="stop-color:#C62B2B"
id="stop5698" />
<stop
offset="0.4615"
style="stop-color:#BD0C0C"
id="stop5700" />
<stop
offset="0.5056"
style="stop-color:#BA0000"
id="stop5702" />
<stop
offset="0.7077"
style="stop-color:#D86E6E"
id="stop5704" />
<stop
offset="0.9099"
style="stop-color:#F4D6D6"
id="stop5706" />
<stop
offset="1"
style="stop-color:#FFFFFF"
id="stop5708" />
<a:midPointStop
offset="0"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.4222"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5056"
style="stop-color:#BA0000" />
<a:midPointStop
offset="0.4773"
style="stop-color:#BA0000" />
<a:midPointStop
offset="1"
style="stop-color:#FFFFFF" />
</linearGradient>
<linearGradient
y2="76.388496"
x2="43.5355"
y1="112.7585"
x1="43.5355"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5980"
xlink:href="#linearGradient3818"
inkscape:collect="always" />
<linearGradient
id="linearGradient3818"
gradientUnits="userSpaceOnUse"
x1="350.0874"
y1="43.0298"
x2="350.0874"
y2="14.6831"
gradientTransform="matrix(0.35,0,0,1,-117.1952,-14.3086)">
<stop
offset="0.0056"
style="stop-color:#89A4B6"
id="stop3800" />
<stop
offset="0.5"
style="stop-color:#FFFFFF"
id="stop3802" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop3804" />
<a:midPointStop
offset="0.0056"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
<linearGradient
y2="76.388496"
x2="43.666752"
y1="112.7585"
x1="43.666752"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5982"
xlink:href="#linearGradient3853"
inkscape:collect="always" />
<linearGradient
id="linearGradient3853"
gradientUnits="userSpaceOnUse"
x1="343.29099"
y1="43.0298"
x2="343.29099"
y2="14.6831"
gradientTransform="matrix(0.35,0,0,1,-115.4937,-14.3086)">
<stop
offset="0.0056"
style="stop-color:#89A4B6"
id="stop3835" />
<stop
offset="0.5"
style="stop-color:#FFFFFF"
id="stop3837" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop3839" />
<a:midPointStop
offset="0.0056"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3853"
id="linearGradient3197"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
x1="43.666752"
y1="112.7585"
x2="43.666752"
y2="76.388496" />
<linearGradient
y2="76.856003"
x2="72.350098"
y1="105.2021"
x1="44.003899"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient8492"
xlink:href="#XMLID_2_"
inkscape:collect="always" />
<linearGradient
id="XMLID_2_"
gradientUnits="userSpaceOnUse"
x1="44.003899"
y1="105.2021"
x2="72.350098"
y2="76.856003"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)">
<stop
offset="0"
style="stop-color:#FFFFFF"
id="stop3163" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop3165" />
<a:midPointStop
offset="0"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.88275862"
inkscape:cx="230.01826"
inkscape:cy="-191.38702"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="952"
inkscape:window-height="997"
inkscape:window-x="960"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-1631.4652,-725.57561)">
<g
id="Layer_1"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
style="display:inline;enable-background:new"
transform="translate(1631.4652,725.57561)">
<g
id="g3160">
<linearGradient
id="linearGradient13489"
gradientUnits="userSpaceOnUse"
x1="44.003899"
y1="105.2021"
x2="72.350098"
y2="76.856003"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)">
<stop
offset="0"
style="stop-color:#FFFFFF"
id="stop13491" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop13493" />
<a:midPointStop
offset="0"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
<rect
style="fill:url(#linearGradient8492);stroke:#000000;stroke-width:0.75"
x="0.375"
y="0.375"
i:knockout="Off"
width="22.677"
height="22.677"
id="rect3167" />
<line
style="fill:none;stroke:#000000;stroke-width:0.75"
i:knockout="Off"
x1="0.375"
y1="0.375"
x2="23.052"
y2="23.052"
id="line3169" />
</g>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="61.6875"
height="46.09375"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="photodiode_green.svg">
<defs
id="defs4">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7122849,-4.9331678e-8,1.3188837e-7,2.65854,-16.415678,-15.831995)"
r="6.7529998"
fy="8.2452106"
fx="9.5870008"
cy="8.2452106"
cx="9.5870008"
id="radialGradient5272"
xlink:href="#radialGradient5264"
inkscape:collect="always" />
<radialGradient
id="radialGradient5264"
cx="8.8794003"
cy="7.4608998"
r="17.067101"
fx="8.8794003"
fy="7.4608998"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5248" />
<stop
offset="0.6854"
style="stop-color:#BA0000"
id="stop5250" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#BA0000" />
</radialGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.6891459,-4.9190521e-8,1.6353267e-8,2.658466,-16.193841,-15.515061)"
r="6.7529998"
fy="8.1260357"
fx="9.5869999"
cy="8.1260357"
cx="9.5869999"
id="radialGradient5352"
xlink:href="#radialGradient5344"
inkscape:collect="always" />
<radialGradient
id="radialGradient5344"
cx="8.8788996"
cy="7.4604001"
r="17.066601"
fx="8.8788996"
fy="7.4604001"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5327" />
<stop
offset="0.6854"
style="stop-color:#01AD4E"
id="stop5329" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#01AD4E" />
</radialGradient>
<linearGradient
y2="92.333496"
x2="43.5355"
y1="118.0735"
x1="43.5355"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5741"
xlink:href="#linearGradient5726"
inkscape:collect="always" />
<linearGradient
id="linearGradient5726"
gradientUnits="userSpaceOnUse"
x1="28.721701"
y1="32.972698"
x2="28.721701"
y2="13.1309">
<stop
offset="0"
style="stop-color:#FFFFFF"
id="stop5690" />
<stop
offset="0.0051"
style="stop-color:#FEFCFC"
id="stop5692" />
<stop
offset="0.1497"
style="stop-color:#E6A4A4"
id="stop5694" />
<stop
offset="0.277"
style="stop-color:#D35E5E"
id="stop5696" />
<stop
offset="0.3823"
style="stop-color:#C62B2B"
id="stop5698" />
<stop
offset="0.4615"
style="stop-color:#BD0C0C"
id="stop5700" />
<stop
offset="0.5056"
style="stop-color:#BA0000"
id="stop5702" />
<stop
offset="0.7077"
style="stop-color:#D86E6E"
id="stop5704" />
<stop
offset="0.9099"
style="stop-color:#F4D6D6"
id="stop5706" />
<stop
offset="1"
style="stop-color:#FFFFFF"
id="stop5708" />
<a:midPointStop
offset="0"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.4222"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5056"
style="stop-color:#BA0000" />
<a:midPointStop
offset="0.4773"
style="stop-color:#BA0000" />
<a:midPointStop
offset="1"
style="stop-color:#FFFFFF" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="251.20165"
inkscape:cy="360.64339"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="952"
inkscape:window-height="997"
inkscape:window-x="960"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-222.10571,-761.33936)">
<g
transform="matrix(-1,0,0,-1,283.79321,807.43311)"
id="g5721"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
style="display:inline;enable-background:new">
<g
id="g5683">
<rect
style="fill:#302b33"
x="0.375"
y="0.375"
i:knockout="Off"
width="56.693001"
height="12.756"
id="rect5685" />
<rect
style="fill:#302b33"
x="0.375"
y="32.973"
i:knockout="Off"
width="56.693001"
height="12.756"
id="rect5687" />
<linearGradient
id="linearGradient13394"
gradientUnits="userSpaceOnUse"
x1="28.721701"
y1="32.972698"
x2="28.721701"
y2="13.1309">
<stop
offset="0"
style="stop-color:#FFFFFF"
id="stop13396" />
<stop
offset="0.0051"
style="stop-color:#FEFCFC"
id="stop13398" />
<stop
offset="0.1497"
style="stop-color:#E6A4A4"
id="stop13400" />
<stop
offset="0.277"
style="stop-color:#D35E5E"
id="stop13402" />
<stop
offset="0.3823"
style="stop-color:#C62B2B"
id="stop13404" />
<stop
offset="0.4615"
style="stop-color:#BD0C0C"
id="stop13406" />
<stop
offset="0.5056"
style="stop-color:#BA0000"
id="stop13408" />
<stop
offset="0.7077"
style="stop-color:#D86E6E"
id="stop13410" />
<stop
offset="0.9099"
style="stop-color:#F4D6D6"
id="stop13412" />
<stop
offset="1"
style="stop-color:#FFFFFF"
id="stop13414" />
<a:midPointStop
offset="0"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.4222"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5056"
style="stop-color:#BA0000" />
<a:midPointStop
offset="0.4773"
style="stop-color:#BA0000" />
<a:midPointStop
offset="1"
style="stop-color:#FFFFFF" />
</linearGradient>
<rect
style="fill:url(#linearGradient5741);fill-opacity:1;stroke:#000000;stroke-width:0.75"
x="0.375"
y="13.131"
i:knockout="Off"
width="56.693001"
height="19.841999"
id="rect5710" />
<rect
style="stroke:#000000;stroke-width:0.75"
x="57.068001"
y="3.2090001"
i:knockout="Off"
width="4.2519999"
height="39.686001"
id="rect5712" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.75"
x="0.375"
y="0.375"
i:knockout="Off"
width="56.693001"
height="45.354"
id="rect5714" />
</g>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="10.625"
height="29.09375"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="mirror_flat.svg">
<defs
id="defs4">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7122849,-4.9331678e-8,1.3188837e-7,2.65854,-16.415678,-15.831995)"
r="6.7529998"
fy="8.2452106"
fx="9.5870008"
cy="8.2452106"
cx="9.5870008"
id="radialGradient5272"
xlink:href="#radialGradient5264"
inkscape:collect="always" />
<radialGradient
id="radialGradient5264"
cx="8.8794003"
cy="7.4608998"
r="17.067101"
fx="8.8794003"
fy="7.4608998"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5248" />
<stop
offset="0.6854"
style="stop-color:#BA0000"
id="stop5250" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#BA0000" />
</radialGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.6891459,-4.9190521e-8,1.6353267e-8,2.658466,-16.193841,-15.515061)"
r="6.7529998"
fy="8.1260357"
fx="9.5869999"
cy="8.1260357"
cx="9.5869999"
id="radialGradient5352"
xlink:href="#radialGradient5344"
inkscape:collect="always" />
<radialGradient
id="radialGradient5344"
cx="8.8788996"
cy="7.4604001"
r="17.066601"
fx="8.8788996"
fy="7.4604001"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5327" />
<stop
offset="0.6854"
style="stop-color:#01AD4E"
id="stop5329" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#01AD4E" />
</radialGradient>
<linearGradient
y2="92.333496"
x2="43.5355"
y1="118.0735"
x1="43.5355"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5741"
xlink:href="#linearGradient5726"
inkscape:collect="always" />
<linearGradient
id="linearGradient5726"
gradientUnits="userSpaceOnUse"
x1="28.721701"
y1="32.972698"
x2="28.721701"
y2="13.1309">
<stop
offset="0"
style="stop-color:#FFFFFF"
id="stop5690" />
<stop
offset="0.0051"
style="stop-color:#FEFCFC"
id="stop5692" />
<stop
offset="0.1497"
style="stop-color:#E6A4A4"
id="stop5694" />
<stop
offset="0.277"
style="stop-color:#D35E5E"
id="stop5696" />
<stop
offset="0.3823"
style="stop-color:#C62B2B"
id="stop5698" />
<stop
offset="0.4615"
style="stop-color:#BD0C0C"
id="stop5700" />
<stop
offset="0.5056"
style="stop-color:#BA0000"
id="stop5702" />
<stop
offset="0.7077"
style="stop-color:#D86E6E"
id="stop5704" />
<stop
offset="0.9099"
style="stop-color:#F4D6D6"
id="stop5706" />
<stop
offset="1"
style="stop-color:#FFFFFF"
id="stop5708" />
<a:midPointStop
offset="0"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.4222"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5056"
style="stop-color:#BA0000" />
<a:midPointStop
offset="0.4773"
style="stop-color:#BA0000" />
<a:midPointStop
offset="1"
style="stop-color:#FFFFFF" />
</linearGradient>
<linearGradient
y2="76.388496"
x2="43.5355"
y1="112.7585"
x1="43.5355"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5980"
xlink:href="#linearGradient3818"
inkscape:collect="always" />
<linearGradient
id="linearGradient3818"
gradientUnits="userSpaceOnUse"
x1="350.0874"
y1="43.0298"
x2="350.0874"
y2="14.6831"
gradientTransform="matrix(0.35,0,0,1,-117.1952,-14.3086)">
<stop
offset="0.0056"
style="stop-color:#89A4B6"
id="stop3800" />
<stop
offset="0.5"
style="stop-color:#FFFFFF"
id="stop3802" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop3804" />
<a:midPointStop
offset="0.0056"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
<linearGradient
y2="76.388496"
x2="43.666752"
y1="112.7585"
x1="43.666752"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5982"
xlink:href="#linearGradient3853"
inkscape:collect="always" />
<linearGradient
id="linearGradient3853"
gradientUnits="userSpaceOnUse"
x1="343.29099"
y1="43.0298"
x2="343.29099"
y2="14.6831"
gradientTransform="matrix(0.35,0,0,1,-115.4937,-14.3086)">
<stop
offset="0.0056"
style="stop-color:#89A4B6"
id="stop3835" />
<stop
offset="0.5"
style="stop-color:#FFFFFF"
id="stop3837" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop3839" />
<a:midPointStop
offset="0.0056"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3853"
id="linearGradient3197"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
x1="43.666752"
y1="112.7585"
x2="43.666752"
y2="76.388496" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.88275862"
inkscape:cx="158.26566"
inkscape:cy="-104.55633"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="952"
inkscape:window-height="997"
inkscape:window-x="960"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-1703.2178,-806.75005)">
<g
transform="translate(1703.2178,806.75005)"
id="g3850"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
style="display:inline;enable-background:new">
<g
id="g3832">
<linearGradient
id="linearGradient13463"
gradientUnits="userSpaceOnUse"
x1="343.29099"
y1="43.0298"
x2="343.29099"
y2="14.6831"
gradientTransform="matrix(0.35,0,0,1,-115.4937,-14.3086)">
<stop
offset="0.0056"
style="stop-color:#89A4B6"
id="stop13465" />
<stop
offset="0.5"
style="stop-color:#FFFFFF"
id="stop13467" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop13469" />
<a:midPointStop
offset="0.0056"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
<path
style="fill:url(#linearGradient3197);fill-opacity:1;stroke:#000000;stroke-width:0.75"
i:knockout="Off"
d="m 8.836,0.375 -8.356,0 c 0.764,3.046 1.27,8.254 1.27,14.172 0,5.92 -0.506,11.128 -1.27,14.174 l 8.355,0 0,-28.346 10e-4,0 0,0 z"
id="path3841"
inkscape:connector-curvature="0" />
<rect
style="stroke:#000000;stroke-width:0.75"
x="7.4159999"
y="0.375"
i:knockout="Off"
width="2.836"
height="28.346001"
id="rect3843" />
</g>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="10.65625"
height="29.09375"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="laser.svg">
<defs
id="defs4">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7122849,-4.9331678e-8,1.3188837e-7,2.65854,-16.415678,-15.831995)"
r="6.7529998"
fy="8.2452106"
fx="9.5870008"
cy="8.2452106"
cx="9.5870008"
id="radialGradient5272"
xlink:href="#radialGradient5264"
inkscape:collect="always" />
<radialGradient
id="radialGradient5264"
cx="8.8794003"
cy="7.4608998"
r="17.067101"
fx="8.8794003"
fy="7.4608998"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5248" />
<stop
offset="0.6854"
style="stop-color:#BA0000"
id="stop5250" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#BA0000" />
</radialGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.6891459,-4.9190521e-8,1.6353267e-8,2.658466,-16.193841,-15.515061)"
r="6.7529998"
fy="8.1260357"
fx="9.5869999"
cy="8.1260357"
cx="9.5869999"
id="radialGradient5352"
xlink:href="#radialGradient5344"
inkscape:collect="always" />
<radialGradient
id="radialGradient5344"
cx="8.8788996"
cy="7.4604001"
r="17.066601"
fx="8.8788996"
fy="7.4604001"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5327" />
<stop
offset="0.6854"
style="stop-color:#01AD4E"
id="stop5329" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#01AD4E" />
</radialGradient>
<linearGradient
y2="92.333496"
x2="43.5355"
y1="118.0735"
x1="43.5355"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5741"
xlink:href="#linearGradient5726"
inkscape:collect="always" />
<linearGradient
id="linearGradient5726"
gradientUnits="userSpaceOnUse"
x1="28.721701"
y1="32.972698"
x2="28.721701"
y2="13.1309">
<stop
offset="0"
style="stop-color:#FFFFFF"
id="stop5690" />
<stop
offset="0.0051"
style="stop-color:#FEFCFC"
id="stop5692" />
<stop
offset="0.1497"
style="stop-color:#E6A4A4"
id="stop5694" />
<stop
offset="0.277"
style="stop-color:#D35E5E"
id="stop5696" />
<stop
offset="0.3823"
style="stop-color:#C62B2B"
id="stop5698" />
<stop
offset="0.4615"
style="stop-color:#BD0C0C"
id="stop5700" />
<stop
offset="0.5056"
style="stop-color:#BA0000"
id="stop5702" />
<stop
offset="0.7077"
style="stop-color:#D86E6E"
id="stop5704" />
<stop
offset="0.9099"
style="stop-color:#F4D6D6"
id="stop5706" />
<stop
offset="1"
style="stop-color:#FFFFFF"
id="stop5708" />
<a:midPointStop
offset="0"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.4222"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5056"
style="stop-color:#BA0000" />
<a:midPointStop
offset="0.4773"
style="stop-color:#BA0000" />
<a:midPointStop
offset="1"
style="stop-color:#FFFFFF" />
</linearGradient>
<linearGradient
y2="76.388496"
x2="43.5355"
y1="112.7585"
x1="43.5355"
gradientTransform="matrix(0.8,0,0,0.8,-34.8284,-61.1108)"
gradientUnits="userSpaceOnUse"
id="linearGradient5980"
xlink:href="#linearGradient3818"
inkscape:collect="always" />
<linearGradient
id="linearGradient3818"
gradientUnits="userSpaceOnUse"
x1="350.0874"
y1="43.0298"
x2="350.0874"
y2="14.6831"
gradientTransform="matrix(0.35,0,0,1,-117.1952,-14.3086)">
<stop
offset="0.0056"
style="stop-color:#89A4B6"
id="stop3800" />
<stop
offset="0.5"
style="stop-color:#FFFFFF"
id="stop3802" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop3804" />
<a:midPointStop
offset="0.0056"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="267.96572"
inkscape:cy="426.61771"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="952"
inkscape:window-height="997"
inkscape:window-x="960"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-205.34164,-844.31368)">
<g
id="g3815"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
style="display:inline;enable-background:new"
transform="translate(205.34164,844.31368)">
<g
id="g3797">
<linearGradient
id="linearGradient13436"
gradientUnits="userSpaceOnUse"
x1="350.0874"
y1="43.0298"
x2="350.0874"
y2="14.6831"
gradientTransform="matrix(0.35,0,0,1,-117.1952,-14.3086)">
<stop
offset="0.0056"
style="stop-color:#89A4B6"
id="stop13438" />
<stop
offset="0.5"
style="stop-color:#FFFFFF"
id="stop13440" />
<stop
offset="1"
style="stop-color:#89A4B6"
id="stop13442" />
<a:midPointStop
offset="0.0056"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#89A4B6" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="0.5"
style="stop-color:#FFFFFF" />
<a:midPointStop
offset="1"
style="stop-color:#89A4B6" />
</linearGradient>
<rect
style="fill:url(#linearGradient5980);fill-opacity:1;stroke:#000000;stroke-width:0.75"
x="0.375"
y="0.375"
i:knockout="Off"
width="9.9209995"
height="28.346001"
id="rect3806" />
<rect
style="stroke:#000000;stroke-width:0.75"
x="7.46"
y="0.375"
i:knockout="Off"
width="2.836"
height="28.346001"
id="rect3808" />
</g>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16.34375"
height="23.4375"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="photodiode_red.svg">
<defs
id="defs4">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7122849,-4.9331678e-8,1.3188837e-7,2.65854,-16.415678,-15.831995)"
r="6.7529998"
fy="8.2452106"
fx="9.5870008"
cy="8.2452106"
cx="9.5870008"
id="radialGradient5272"
xlink:href="#radialGradient5264"
inkscape:collect="always" />
<radialGradient
id="radialGradient5264"
cx="8.8794003"
cy="7.4608998"
r="17.067101"
fx="8.8794003"
fy="7.4608998"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5248" />
<stop
offset="0.6854"
style="stop-color:#BA0000"
id="stop5250" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#BA0000" />
</radialGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.6891459,-4.9190521e-8,1.6353267e-8,2.658466,-16.193841,-15.515061)"
r="6.7529998"
fy="8.1260357"
fx="9.5869999"
cy="8.1260357"
cx="9.5869999"
id="radialGradient5352"
xlink:href="#radialGradient5344"
inkscape:collect="always" />
<radialGradient
id="radialGradient5344"
cx="8.8788996"
cy="7.4604001"
r="17.066601"
fx="8.8788996"
fy="7.4604001"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5327" />
<stop
offset="0.6854"
style="stop-color:#01AD4E"
id="stop5329" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#01AD4E" />
</radialGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="141.79022"
inkscape:cy="190.44853"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="952"
inkscape:window-height="997"
inkscape:window-x="960"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-331.51714,-613.80075)">
<g
id="g5340"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
style="display:inline;enable-background:new"
transform="translate(331.51714,613.80075)">
<g
id="g5342">
<radialGradient
id="radialGradient13360"
cx="8.8788996"
cy="7.4604001"
r="17.066601"
fx="8.8788996"
fy="7.4604001"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop13362" />
<stop
offset="0.6854"
style="stop-color:#01AD4E"
id="stop13364" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#01AD4E" />
</radialGradient>
<path
style="fill:url(#radialGradient5352);fill-opacity:1;stroke:#000000;stroke-width:0.75"
i:knockout="Off"
d="m 6.044,1.792 c -0.985,0 -1.936,0.148 -2.835,0.417 l 0,19.009 c 0.899,0.268 1.85,0.416 2.835,0.416 5.479,0 9.921,-4.441 9.921,-9.922 0,-5.478 -4.442,-9.92 -9.921,-9.92 l 0,0 z"
id="path5331"
inkscape:connector-curvature="0" />
<rect
style="stroke:#000000;stroke-width:0.75"
x="0.375"
y="0.375"
i:knockout="Off"
width="2.835"
height="22.677"
id="rect5333" />
</g>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16.34375"
height="23.4375"
id="svg2"
version="1.1"
inkscape:version="0.48.2 r9819"
sodipodi:docname="New document 1">
<defs
id="defs4">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.7122849,-4.9331678e-8,1.3188837e-7,2.65854,-16.415678,-15.831995)"
r="6.7529998"
fy="8.2452106"
fx="9.5870008"
cy="8.2452106"
cx="9.5870008"
id="radialGradient5272"
xlink:href="#radialGradient5264"
inkscape:collect="always" />
<radialGradient
id="radialGradient5264"
cx="8.8794003"
cy="7.4608998"
r="17.067101"
fx="8.8794003"
fy="7.4608998"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop5248" />
<stop
offset="0.6854"
style="stop-color:#BA0000"
id="stop5250" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#BA0000" />
</radialGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="106.47736"
inkscape:cy="97.295955"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="952"
inkscape:window-height="997"
inkscape:window-x="960"
inkscape:window-y="0"
inkscape:window-maximized="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-366.83,-520.64818)">
<g
id="g5261"
i:layer="yes"
i:dimmedPercent="50"
i:rgbTrio="#4F008000FFFF"
style="display:inline;enable-background:new"
transform="translate(366.83,520.64818)">
<g
id="g5245">
<radialGradient
id="radialGradient13336"
cx="8.8794003"
cy="7.4608998"
r="17.067101"
fx="8.8794003"
fy="7.4608998"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#FEDE58"
id="stop13338" />
<stop
offset="0.6854"
style="stop-color:#BA0000"
id="stop13340" />
<a:midPointStop
offset="0"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.5"
style="stop-color:#FEDE58" />
<a:midPointStop
offset="0.6854"
style="stop-color:#BA0000" />
</radialGradient>
<path
style="fill:url(#radialGradient5272);fill-opacity:1;stroke:#000000;stroke-width:0.75"
i:knockout="Off"
d="m 6.044,1.792 c -0.986,0 -1.936,0.148 -2.835,0.417 l 0,19.01 c 0.899,0.268 1.849,0.416 2.835,0.416 5.479,0 9.921,-4.441 9.921,-9.921 0,-5.48 -4.442,-9.922 -9.921,-9.922 l 0,0 z"
id="path5252"
inkscape:connector-curvature="0" />
<rect
style="stroke:#000000;stroke-width:0.75"
x="0.375"
y="0.375"
i:knockout="Off"
width="2.835"
height="22.677999"
id="rect5254" />
</g>
</g>
</g>
</svg>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment