diff --git a/bin/frappy-gui b/bin/frappy-gui index 1560467..276c8ea 100755 --- a/bin/frappy-gui +++ b/bin/frappy-gui @@ -69,6 +69,7 @@ def main(argv=None): app = QApplication(argv) win = MainWindow(args.node, logger) + app.aboutToQuit.connect(win._onQuit) win.show() return app.exec_() diff --git a/frappy/gui/collapsible.py b/frappy/gui/collapsible.py new file mode 100644 index 0000000..7382708 --- /dev/null +++ b/frappy/gui/collapsible.py @@ -0,0 +1,50 @@ +from frappy.gui.qt import QToolButton, QFrame, QWidget, QGridLayout, QSizePolicy, QVBoxLayout, Qt + +class CollapsibleWidget(QWidget): + def __init__(self, parent=None): + super().__init__(parent) + self.button = QToolButton() + self.widget = QWidget() + self.widgetContainer = QWidget() + + self.button.setArrowType(Qt.RightArrow) + self.button.setToolButtonStyle(Qt.ToolButtonTextBesideIcon) + self.button.setStyleSheet("QToolButton { border: none; }") + self.button.setCheckable(True) + self.button.toggled.connect(self._collapse) + + line = QFrame() + line.setFrameShape(QFrame.HLine) + line.setSizePolicy(QSizePolicy.Expanding, QSizePolicy.Maximum) + + l = QVBoxLayout() + l.addWidget(self.widget) + self.widgetContainer.setLayout(l) + self.widgetContainer.setMaximumHeight(0) + + layout = QGridLayout() + layout.addWidget(self.button, 0, 0, Qt.AlignLeft) + layout.addWidget(line, 0, 1, 1, 1) + layout.addWidget(self.widgetContainer, 1, 0, -1, -1) + self.setLayout(layout) + + def _collapse(self, expand): + if expand: + self.button.setArrowType(Qt.DownArrow) + self.widgetContainer.setMaximumHeight(self.widget.maximumHeight()) + else: + self.button.setArrowType(Qt.RightArrow) + self.widgetContainer.setMaximumHeight(0) + self.setMaximumHeight(self.button.maximumHeight()) + + def replaceWidget(self, widget): + layout = self.widgetContainer.layout() + layout.removeWidget(self.widget) + self.widget = widget + layout.addWidget(self.widget) + + def setTitle(self, title): + self.button.setText(title) + + def getWidget(self): + return self.widget diff --git a/frappy/gui/logwindow.py b/frappy/gui/logwindow.py new file mode 100644 index 0000000..f0524c5 --- /dev/null +++ b/frappy/gui/logwindow.py @@ -0,0 +1,45 @@ +from logging import Handler, DEBUG, NOTSET + +from frappy.gui.qt import QMainWindow, QObject, pyqtSignal +from frappy.gui.util import loadUi + + + +class LogWindowHandler(Handler, QObject): + + logmessage = pyqtSignal(str, int) + + def __init__(self, level=NOTSET): + QObject.__init__(self) + Handler.__init__(self, level) + + def emit(self, record): + self.logmessage.emit(record.getMessage(), record.levelno) + +class LogWindow(QMainWindow): + levels = {'Debug':10, 'Info':20, 'Warning':30, 'Error':40} + def __init__(self, logger, parent=None): + super().__init__(parent) + loadUi(self, 'logwindow.ui') + self.log = [] + self.level = self.levels['Info'] + handler = LogWindowHandler(DEBUG) + handler.logmessage.connect(self.newEntry) + logger.addHandler(handler) + + def newEntry(self, msg, lvl): + self.log.append((lvl, msg)) + if lvl >= self.level: + self.logBrowser.append(msg) + + def on_logLevel_currentTextChanged(self, level): + self.level = self.levels[level] + self.logBrowser.clear() + self.logBrowser.setPlainText('\n'.join(msg for (lvl, msg) in self.log if lvl >= self.level)) + + def on_clear_pressed(self): + self.logBrowser.clear() + self.log.clear() + + def onClose(self): + pass diff --git a/frappy/gui/mainwindow.py b/frappy/gui/mainwindow.py index 2442c1b..242b655 100644 --- a/frappy/gui/mainwindow.py +++ b/frappy/gui/mainwindow.py @@ -23,13 +23,13 @@ import frappy.client -from frappy.gui.modulectrl import ModuleCtrl -from frappy.gui.nodectrl import NodeCtrl -from frappy.gui.paramview import ParameterView -from frappy.gui.qt import QBrush, QColor, QInputDialog, QMainWindow, \ - QMessageBox, QObject, QTreeWidgetItem, pyqtSignal, pyqtSlot -from frappy.gui.util import Value, loadUi +from frappy.gui.qt import QInputDialog, QMainWindow, QMessageBox, QObject, \ + QTreeWidgetItem, pyqtSignal, pyqtSlot +from frappy.gui.util import Value, Colors, loadUi from frappy.lib import formatExtendedTraceback +from frappy.gui.logwindow import LogWindow +from frappy.gui.tabwidget import TearOffTabWidget +from frappy.gui.nodewidget import NodeWidget ITEM_TYPE_NODE = QTreeWidgetItem.UserType + 1 ITEM_TYPE_GROUP = QTreeWidgetItem.UserType + 2 @@ -102,6 +102,7 @@ class QSECNode(QObject): return frappy.client.decode_msg(msg.encode('utf-8')) def _getDescribingParameterData(self, module, parameter): + #print(module, parameter, self.modules[module]['parameters']) return self.modules[module]['parameters'][parameter] def updateEvent(self, module, parameter, value, timestamp, readerror): @@ -118,22 +119,23 @@ class MainWindow(QMainWindow): def __init__(self, hosts, logger, parent=None): super().__init__(parent) - loadUi(self, 'mainwindow.ui') + self.log = logger + self.logwin = LogWindow(logger, self) + self.logwin.hide() + + loadUi(self, 'mainwin.ui') + Colors._setPalette(self.palette()) self.toolBar.hide() - self.splitter.setStretchFactor(0, 1) - self.splitter.setStretchFactor(1, 70) - self.splitter.setSizes([50, 500]) + # what is which? + self.tab = TearOffTabWidget(self, self, self, self) + self.tab.setTabsClosable(True) + self.tab.tabCloseRequested.connect(self._handleTabClose) + self.setCentralWidget(self.tab) self._nodes = {} - self._nodeCtrls = {} - self._moduleCtrls = {} - self._paramCtrls = {} - self._topItems = {} - self._currentWidget = self.splitter.widget(1).layout().takeAt(0) - - self.log = logger + self._nodeWidgets = {} # add localhost (if available) and SEC nodes given as arguments for host in hosts: @@ -159,87 +161,49 @@ class MainWindow(QMainWindow): QMessageBox.critical(self.parent(), 'Connecting to %s failed!' % host, str(e)) - def on_validateCheckBox_toggled(self, state): - print("validateCheckBox_toggled", state) + def on_actionDetailed_View_toggled(self, toggled): + self._rebuildAdvanced(toggled) - def on_visibilityComboBox_activated(self, level): - if level in ['user', 'admin', 'expert']: - print("visibility Level now:", level) + def on_actionShow_Logs_toggled(self, active): + self.logwin.setHidden(not active) - def on_treeWidget_currentItemChanged(self, current, previous): - if current.type() == ITEM_TYPE_NODE: - self._displayNode(current.text(0)) - elif current.type() == ITEM_TYPE_GROUP: - self._displayGroup(current.parent().text(0), current.text(0)) - elif current.type() == ITEM_TYPE_MODULE: - self._displayModule(current.parent().text(0), current.text(0)) - elif current.type() == ITEM_TYPE_PARAMETER: - self._displayParameter(current.parent().parent().text(0), - current.parent().text(0), current.text(0)) + # def on_validateCheckBox_toggled(self, state): + # print('validateCheckBox_toggled', state) - def _removeSubTree(self, toplevel_item): - self.treeWidget.invisibleRootItem().removeChild(toplevel_item) - - def _set_node_state(self, nodename, online, state): - node = self._nodes[nodename] - if online: - self._topItems[node].setBackground(0, QBrush(QColor('white'))) - else: - self._topItems[node].setBackground(0, QBrush(QColor('orange'))) - # TODO: make connection state be a separate row - node.contactPoint = '%s (%s)' % (node.conn.uri, state) - if nodename in self._nodeCtrls: - self._nodeCtrls[nodename].contactPointLabel.setText(node.contactPoint) + # def on_visibilityComboBox_activated(self, level): + # if level in ['user', 'admin', 'expert']: + # print('visibility Level now:', level) def _addNode(self, host): # create client node = QSECNode(host, self.log, parent=self) nodename = node.nodename - self._nodes[nodename] = node - # fill tree - nodeItem = QTreeWidgetItem(None, [nodename], ITEM_TYPE_NODE) + nodeWidget = NodeWidget(node, self) + self.tab.addTab(nodeWidget, node.equipmentId) + self._nodeWidgets[nodename] = nodeWidget + self.tab.setCurrentWidget(nodeWidget) + return nodename - for module in sorted(node.modules): - moduleItem = QTreeWidgetItem(nodeItem, [module], ITEM_TYPE_MODULE) - for param in sorted(node.getParameters(module)): - paramItem = QTreeWidgetItem(moduleItem, [param], - ITEM_TYPE_PARAMETER) - paramItem.setDisabled(False) + def _handleTabClose(self, index): + node = self.tab.widget(index).getSecNode() + # disconnect node from all events + self._nodes.pop(node.nodename) + self.tab.removeTab(index) - self.treeWidget.addTopLevelItem(nodeItem) - self._topItems[node] = nodeItem - node.stateChange.connect(self._set_node_state) + def _rebuildAdvanced(self, advanced): + if advanced: + pass + else: + pass + for widget in self._nodeWidgets.values(): + widget._rebuildAdvanced(advanced) - def _displayNode(self, node): - ctrl = self._nodeCtrls.get(node, None) - if ctrl is None: - ctrl = self._nodeCtrls[node] = NodeCtrl(self._nodes[node]) - self._nodes[node].unhandledMsg.connect(ctrl._addLogEntry) - - self._replaceCtrlWidget(ctrl) - - def _displayModule(self, node, module): - ctrl = self._moduleCtrls.get((node, module), None) - if ctrl is None: - ctrl = self._moduleCtrls[(node, module)] = ModuleCtrl(self._nodes[node], module) - - self._replaceCtrlWidget(ctrl) - - def _displayParameter(self, node, module, parameter): - ctrl = self._paramCtrls.get((node, module, parameter), None) - if ctrl is None: - ctrl = ParameterView(self._nodes[node], module, parameter) - self._paramCtrls[(node, module, parameter)] = ctrl - - self._replaceCtrlWidget(ctrl) - - def _replaceCtrlWidget(self, new): - old = self.splitter.widget(1).layout().takeAt(0) - if old: - old.widget().hide() - self.splitter.widget(1).layout().addWidget(new) - new.show() - self._currentWidget = new + def _onQuit(self): + for node in self._nodes.values(): + # this is only qt signals deconnecting! + # TODO: terminate node.conn explicitly? + node.disconnect() + self.logwin.onClose() diff --git a/frappy/gui/miniplot.py b/frappy/gui/miniplot.py deleted file mode 100644 index ff7dec5..0000000 --- a/frappy/gui/miniplot.py +++ /dev/null @@ -1,429 +0,0 @@ -# -*- coding: utf-8 -*- -# ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE -# -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., -# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# Module authors: -# Enrico Faulhaber -# -# ***************************************************************************** - - - -from os import path - -from frappy.gui.qt import QBrush, QColor, QPainter, QPen, \ - QPointF, QPolygonF, QRectF, QSize, Qt, QWidget - -_magenta = QBrush(QColor('#A12F86')) -_yellow = QBrush(QColor('yellow')) -_white = QBrush(QColor('white')) -_lightgrey = QBrush(QColor('lightgrey')) -_grey = QBrush(QColor('grey')) -_darkgrey = QBrush(QColor('#404040')) -_black = QBrush(QColor('black')) -_blue = QBrush(QColor('blue')) -_green = QBrush(QColor('green')) -_red = QBrush(QColor('red')) -_olive = QBrush(QColor('olive')) -_orange = QBrush(QColor('#ffa500')) - - -my_uipath = path.dirname(__file__) - -class MiniPlotCurve: - # placeholder for data - linecolor = _black - linewidth = 0 # set to 0 to disable lines - symbolcolors = (_black, _white) # line, fill - symbolsize = 3 # both symbol linewidth and symbolsize, set to 0 to disable - errorbarcolor = _darkgrey - errorbarwidth = 3 # set to 0 to disable errorbar - - def __init__(self): - self.data = [] # tripels of x, y, err (err may be None) - - @property - def xvalues(self): - return [p[0] for p in self.data] if self.data else [0] - - @property - def yvalues(self): - return [p[1] for p in self.data] if self.data else [0] - - @property - def errvalues(self): - return [p[2] or 0.0 for p in self.data] if self.data else [0] - - @property - def xmin(self): - return min(self.xvalues) - - @property - def xmax(self): - return max(self.xvalues) - - @property - def ymin(self): - return min(self.yvalues) - - @property - def ymax(self): - return max(self.yvalues) - - @property - def yemin(self): - return min(y-(e or 0) for _, y, e in self.data) if self.data else 0 - - @property - def yemax(self): - return max(y+(e or 0) for _, y, e in self.data) if self.data else 0 - - - def paint(self, scale, painter): - # note: scale returns a screen-XY tuple for data XY - # draw errorbars, lines and symbols in that order - if self.errorbarwidth > 0: - pen = QPen() - pen.setBrush(self.errorbarcolor) - pen.setWidth(self.errorbarwidth) - painter.setPen(pen) - for _x,_y,_e in self.data: - if _e is None: - continue - x, y = scale(_x,_y) - e = scale(_x,_y + _e)[1] - y - painter.drawLine(x, y-e, x, y+e) - painter.fillRect(x - self.errorbarwidth / 2., y - e, - self.errorbarwidth, 2 * e, self.errorbarcolor) - - points = [QPointF(*scale(p[0], p[1])) for p in self.data] - if self.linewidth > 0: - pen = QPen() - pen.setBrush(self.linecolor) - pen.setWidth(self.linewidth) - painter.setPen(pen) - painter.drawPolyline(QPolygonF(points)) - - if self.symbolsize > 0: - pen = QPen() - pen.setBrush(self.symbolcolors[0]) # linecolor - pen.setWidth(self.symbolsize) # linewidth - painter.setPen(pen) - painter.setBrush(self.symbolcolors[1]) # fill color - if self.symbolsize > 0: - for p in points: - painter.drawEllipse(p, 2*self.symbolsize, 2*self.symbolsize) - - def preparepainting(self, scale, xmin, xmax): - pass # nothing to do - - -class MiniPlotFitCurve(MiniPlotCurve): - - # do not influence scaling of plotting window - @property - def xmin(self): - return float('inf') - - @property - def xmax(self): - return float('-inf') - - @property - def ymin(self): - return float('inf') - - @property - def ymax(self): - return float('-inf') - - @property - def yemin(self): - return float('inf') - - @property - def yemax(self): - return float('-inf') - - def __init__(self, formula, params): - super().__init__() - self.formula = formula - self.params = params - - linecolor = _blue - linewidth = 5 # set to 0 to disable lines - symbolsize = 0 # both symbol linewidth and symbolsize, set to 0 to disable - errorbarwidth = 0 # set to 0 to disable errorbar - - def preparepainting(self, scale, xmin, xmax): - # recalculate data - points = int(scale(xmax) - scale(xmin)) - self.data = [] - for idx in range(points+1): - x = xmin + idx * (xmax-xmin) / points - y = self.formula(x, *self.params) - self.data.append((x,y,None)) - - -class MiniPlot(QWidget): - ticklinecolors = (_grey, _lightgrey) # ticks, subticks - ticklinewidth = 1 - bordercolor = _black - borderwidth = 1 - labelcolor = _black - xlabel = 'x' - ylabel = 'y' - xfmt = '%.1f' - yfmt = '%g' - autotickx = True - autoticky = True - - def __init__(self, parent=None): - super().__init__(parent) - self.xmin = self.xmax = None - self.ymin = self.ymax = None - self.curves = [] - self.plotx = 0 # left of this are labels - self.ploty = self.height() # below this are labels - - def scaleX(self, x): - if not self.curves: - return x # XXX: !!!! - x = self.plotx + (self.width() - self.plotx) * (x - self.xmin) / (self.xmax - self.xmin) -# x = max(min(x, self.width()), self.plotx) - return x - - def scaleY(self, y): - if not self.curves: - return y # XXX: !!!! - y = self.ploty * (self.ymax - y) / (self.ymax - self.ymin) -# y = max(min(y, self.ploty), 0) - return y - - def scale(self, x, y): - # scales a plotting xx/y to a screen x/y to be used for painting... - return self.scaleX(x), self.scaleY(y) - - def removeCurve(self, curve): - if curve in self.curves: - self.curves.remove(curve) - self.updatePlot() - - def addCurve(self, curve): - if curve is not None and curve not in self.curves: - # new curve, recalculate all - self.curves.append(curve) - self.updatePlot() - - def updatePlot(self): - xmin,xmax = -1,1 - ymin,ymax = -1,1 - # find limits of known curves - if self.curves: - xmin = min(c.xmin for c in self.curves) - xmax = max(c.xmax for c in self.curves) - ymin = min(c.yemin for c in self.curves) - ymax = max(c.yemax for c in self.curves) - # fallback values for no curve - while xmin >= xmax: - xmin, xmax = xmin - 1, xmax + 1 - while ymin >= ymax: - ymin, ymax = ymin - 1, ymax + 1 - # adjust limits a little - self.xmin = xmin - 0.05 * (xmax - xmin) - self.xmax = xmax + 0.05 * (xmax - xmin) - self.ymin = ymin - 0.05 * (ymax - ymin) - self.ymax = ymax + 0.05 * (ymax - ymin) - - # (re-)generate x/yticks - if self.autotickx: - self.calc_xticks(xmin, xmax) - if self. autoticky: - self.calc_yticks(ymin, ymax) - # redraw - self.update() - - def calc_xticks(self, xmin, xmax): - self.xticks = self.calc_ticks(xmin, xmax, self.xfmt) - - def calc_yticks(self, ymin, ymax): - self.yticks = self.calc_ticks(ymin, ymax, self.yfmt) - - def calc_ticks(self, _min, _max, fmt): - min_intervals = 2 - diff = _max - _min - if diff <= 0: - return [0] - # find a 'good' step size - step = abs(diff / min_intervals) - # split into mantissa and exp. - expo = 0 - while step >= 10: - step /= 10. - expo += 1 - while step < 1: - step *= 10. - expo -= 1 - # make step 'latch' into smalle bigger magic number - subs = 1 - for n, subs in reversed([(1,5.), (1.5,3.), (2,4.), (3,3.), (5,5.), (10,2.)]): - if step >= n: - step = n - break - # convert back to normal number - while expo > 0: - step *= 10. - expo -= 1 - while expo < 0: - step /= 10. - expo += 1 - substep = step / subs - # round lower - rounded_min = step * int(_min / step) - - # generate ticks list - ticks = [] - x = rounded_min - while x + substep < _min: - x += substep - for _ in range(100): - if x < _max + substep: - break - - # check if x is a tick or a subtick - x = substep * int(x / substep) - if abs(x - step * int(x / step)) <= substep / 2: - # tick - ticks.append((x, fmt % x)) - else: - # subtick - ticks.append((x, '')) - x += substep - return ticks - - - def paintEvent(self, event): - painter = QPainter(self) - painter.setRenderHint(QPainter.Antialiasing) - # obtain a few properties we need for proper drawing - - painter.setFont(self.font()) - fm = painter.fontMetrics() - label_height = fm.height() - - self.plotx = 3 + 2 * label_height - self.ploty = self.height() - 3 - 2 * label_height - - # fill bg of plotting area - painter.fillRect(self.plotx ,0,self.width()-self.plotx, self.ploty,_white) - - # paint ticklines - if self.curves and self.ticklinewidth > 0: - for e in self.xticks: - try: - _x = e[0] # pylint: disable=unsubscriptable-object - _l = e[1] # pylint: disable=unsubscriptable-object - except TypeError: - _x = e - _l = self.xfmt % _x - x = self.scaleX(_x) - pen = QPen() - pen.setBrush(self.ticklinecolors[0 if _l else 1]) - pen.setWidth(self.ticklinewidth) - painter.setPen(pen) - painter.drawLine(x, 0, x, self.ploty) - for e in self.yticks: - try: - _y = e[0] # pylint: disable=unsubscriptable-object - _l = e[1] # pylint: disable=unsubscriptable-object - except TypeError: - _y = e - _l = self.xfmt % _x - y = self.scaleY(_y) - pen = QPen() - pen.setBrush(self.ticklinecolors[0 if _l else 1]) - pen.setWidth(self.ticklinewidth) - painter.setPen(pen) - painter.drawLine(self.plotx, y, self.width(), y) - - # paint curves - painter.setClipRect(QRectF(self.plotx, 0, self.width()-self.plotx, self.ploty)) - for c in self.curves: - c.preparepainting(self.scaleX, self.xmin, self.xmax) - c.paint(self.scale, painter) - painter.setClipping(False) - - # paint frame - pen = QPen() - pen.setBrush(self.bordercolor) - pen.setWidth(self.borderwidth) - painter.setPen(pen) - painter.drawPolyline(QPolygonF([ - QPointF(self.plotx, 0), - QPointF(self.width()-1, 0), - QPointF(self.width()-1, self.ploty), - QPointF(self.plotx, self.ploty), - QPointF(self.plotx, 0), - ])) - - # draw labels - painter.setBrush(self.labelcolor) - h2 = (self.height()-self.ploty)/2. - # XXX: offset axis labels from axis a little - painter.drawText(self.plotx, self.ploty + h2, - self.width() - self.plotx, h2, - Qt.AlignCenter | Qt.AlignVCenter, self.xlabel) - # rotate ylabel? - painter.resetTransform() - painter.translate(0, self.ploty / 2.) - painter.rotate(-90) - w = fm.width(self.ylabel) - painter.drawText(-w, -fm.height() / 2., w * 2, self.plotx, - Qt.AlignCenter | Qt.AlignTop, self.ylabel) - painter.resetTransform() - - if self.curves: - for e in self.xticks: - try: - _x = e[0] # pylint: disable=unsubscriptable-object - l = e[1] # pylint: disable=unsubscriptable-object - except TypeError: - _x = e - l = self.xfmt % _x - x = self.scaleX(_x) - w = fm.width(l) - painter.drawText(x - w, self.ploty + 2, 2 * w, h2, - Qt.AlignCenter | Qt.AlignVCenter, l) - for e in self.yticks: - try: - _y = e[0] # pylint: disable=unsubscriptable-object - l = e[1] # pylint: disable=unsubscriptable-object - except TypeError: - _y = e - l = self.yfmt % _y - y = self.scaleY(_y) - w = fm.width(l) - painter.resetTransform() - painter.translate(self.plotx - fm.height(), y + w) - painter.rotate(-90) - painter.drawText(0, -1, - 2 * w, fm.height(), - Qt.AlignCenter | Qt.AlignBottom, l) - painter.resetTransform() - - def sizeHint(self): - return QSize(320, 240) diff --git a/frappy/gui/modulectrl.py b/frappy/gui/modulectrl.py index ab550c9..faaef95 100644 --- a/frappy/gui/modulectrl.py +++ b/frappy/gui/modulectrl.py @@ -183,6 +183,8 @@ class ModuleCtrl(QWidget): cmdWidgets[command] = w self.commandGroupBox.layout().addWidget(w, 0, row) row += 1 + if not commands: + self.commandGroupBox.hide() row = 0 # collect grouping information diff --git a/frappy/gui/moduleoverview.py b/frappy/gui/moduleoverview.py new file mode 100644 index 0000000..f26ea54 --- /dev/null +++ b/frappy/gui/moduleoverview.py @@ -0,0 +1,176 @@ +import frappy.gui.resources # pylint: disable=unused-import +from frappy.gui.qt import QTreeWidget, QTreeWidgetItem, pyqtSignal, QIcon, Qt + +class ParamItem(QTreeWidgetItem): + def __init__(self, node, module, param): + super().__init__() + self.module = module + self.param = param + self.setText(0, param) + + +class ModuleItem(QTreeWidgetItem): + display = {'status': 0, 'value': 1, 'target': 2, 'status/text': 3} + + def __init__(self, node, module): + super().__init__() + ModuleItem._loadicons() + self.module = module + self.param = None + #self._expanded = False + #self._params = {} + + parameters = node.getParameters(module) + self._hasTarget = 'target' in parameters + #if self._hasTarget: + # self.setFlags(self.flags() | Qt.ItemIsEditable) + if 'value' in parameters: + props = node.getProperties(self.module, 'value') + self._unit = props.get('unit', '') + else: + self.setIcon(self.display['status'], ModuleItem.icons['clear']) + + self.setText(0, self.module) + # initial read + cache = node.queryCache(self.module) + for param, val in cache.items(): + self.valueChanged(param, val) + + self.params = [] + for param in parameters: + self.params.append(ParamItem(node, module, param)) + + @classmethod + def _loadicons(cls): + if hasattr(cls, 'icons'): + return + cls.icons = { + 'disabled': QIcon(':/leds/gray'), + 'idle': QIcon(':/leds/green'), + 'warn':QIcon(':/leds/orange'), + 'error': QIcon(':/leds/red'), + 'busy': QIcon(':/leds/yellow'), + 'unknown': QIcon(':/leds/unknown'), + 'clear': QIcon(':/leds/clear'), + } + + @classmethod + def statusIcon(cls, statuscode): + if statuscode == 0: + return ModuleItem.icons['disabled'] + if statuscode in range(100, 200): + return ModuleItem.icons['idle'] + if statuscode in range(200, 300): + return ModuleItem.icons['warn'] + if statuscode in range(300, 400): + return ModuleItem.icons['busy'] + if statuscode in range(400, 500): + return ModuleItem.icons['error'] + return ModuleItem.icons['clear'] + + def valueChanged(self, parameter, value): + if parameter not in self.display: + return + if parameter == 'status': + self.setIcon(self.display[parameter], ModuleItem.statusIcon(value.value[0].value)) + self.setText(self.display['status/text'], value.value[1]) + else: + self.setText(self.display[parameter], '%s%s' % (str(value), self._unit)) + + def disconnected(self): + self.setIcon(self.display['status'], ModuleItem.icons['unknown']) + + def setClearIcon(self): + self.setIcon(self.display['status'], ModuleItem.icons['clear']) + + def hasTarget(self): + return self._hasTarget + + + def _rebuildAdvanced(self, advanced): + if advanced: + self.addChildren(self.params) + else: + for p in self.params: + self.removeChild(p) + + +class ModuleOverview(QTreeWidget): + itemChanged = pyqtSignal(str, str, str, str) + def __init__(self, node, parent=None): + super().__init__(parent) + self._node = node + self._modules = {} + self.last_was_clear = False + + #self.setHeaderHidden(True) + #self.setChildIndicatorPolicy(QTreeWidgetItem.DontShowIndicator) + self.setRootIsDecorated(False) + self.setExpandsOnDoubleClick(False) + self.setColumnCount(4) + header = self.headerItem() + header.setText(0, 'Name') + header.setText(1, 'Value') + header.setText(2, 'Target') + header.setText(3, 'Status') + for module in sorted(self._node.modules): + mod = ModuleItem(self._node, module) + self._modules[module] = mod + self.addTopLevelItem(mod) + self._resizeColumns() + + self.itemExpanded.connect(self._resizeColumns) + self.itemCollapsed.connect(self._resizeColumns) + self.setContextMenuPolicy(Qt.CustomContextMenu) + # self.customContextMenuRequested.connect(self._contextMenu) + + self._node.newData.connect(self._updateValue) + self.currentItemChanged.connect(self.handleCurrentItemChanged) + #self.itemDoubleClicked.connect(self.handleDoubleClick) + + # def handleDoubleClick(self, item, column): + # if item.hasTarget() and column == 2: + # self.editItem(item, column) + + def handleCurrentItemChanged(self, current, previous): + if previous is None or self.last_was_clear: + pmod = '' + pparam = '' + self.last_was_clear = False + else: + pmod = previous.module + pparam = previous.param or '' + cparam = current.param or '' + self.itemChanged.emit(current.module, cparam, pmod, pparam) + + def setToDisconnected(self): + for module in self._modules.values(): + module.disconnected() + + def setToReconnected(self): + for mname, module in self._modules.items(): + cache = self._node.queryCache(mname) + if not 'status' in cache: + module.setClearIcon() + continue + module.valueChanged('status', cache['status']) + + def _updateValue(self, module, parameter, value): + self._modules[module].valueChanged(parameter, value) + + def _rebuildAdvanced(self, advanced): + self.setRootIsDecorated(advanced) + for module in self._modules.values(): + module._rebuildAdvanced(advanced) + self._resizeColumns() + + def _resizeColumns(self): + for i in range(self.columnCount()): + self.resizeColumnToContents(i) + + def clearTreeSelection(self): + prev = self.selectedItems()[0] + pmod, pparam = prev.module, prev.param + self.clearSelection() + self.itemChanged.emit('', '', pmod, pparam) + self.last_was_clear = True diff --git a/frappy/gui/modulewidget.py b/frappy/gui/modulewidget.py new file mode 100644 index 0000000..2660d84 --- /dev/null +++ b/frappy/gui/modulewidget.py @@ -0,0 +1,255 @@ +from frappy.gui.qt import QLabel, QMessageBox, QWidget, QLineEdit, \ + QPushButton, QIcon, pyqtSignal, QToolButton, QDialog +from frappy.gui.util import loadUi +from frappy.gui.valuewidgets import get_widget +import frappy.gui.resources # pylint: disable=unused-import + +class CommandDialog(QDialog): + def __init__(self, cmdname, argument, parent=None): + super().__init__(parent) + loadUi(self, 'cmddialog.ui') + + self.setWindowTitle('Arguments for %s' % cmdname) + # row = 0 + + self._labels = [] + self.widgets = [] + # improve! recursive? + dtype = argument + label = QLabel(repr(dtype)) + label.setWordWrap(True) + widget = get_widget(dtype, readonly=False) + self.gridLayout.addWidget(label, 0, 0) + self.gridLayout.addWidget(widget, 0, 1) + self._labels.append(label) + self.widgets.append(widget) + + self.gridLayout.setRowStretch(1, 1) + self.setModal(True) + self.resize(self.sizeHint()) + + def get_value(self): + return True, self.widgets[0].get_value() + + def exec_(self): + if super().exec_(): + return self.get_value() + return None + + +def showCommandResultDialog(command, args, result, extras=''): + m = QMessageBox() + args = '' if args is None else repr(args) + m.setText('calling: %s(%s)\nyielded: %r\nqualifiers: %s' % + (command, args, result, extras)) + m.exec_() + + +def showErrorDialog(command, args, error): + m = QMessageBox() + args = '' if args is None else repr(args) + m.setText('calling: %s(%s)\nraised %r' % (command, args, error)) + m.exec_() + + +class CommandButton(QPushButton): + def __init__(self, cmdname, cmdinfo, cb, parent=None): + super().__init__(parent) + + self._cmdname = cmdname + self._argintype = cmdinfo['datatype'].argument # single datatype + self.result = cmdinfo['datatype'].result + self._cb = cb # callback function for exection + + self.setText(cmdname) + if cmdinfo['description']: + self.setToolTip(cmdinfo['description']) + self.pressed.connect(self.on_pushButton_pressed) + + def on_pushButton_pressed(self): + #self.setEnabled(False) + if self._argintype: + dlg = CommandDialog(self._cmdname, self._argintype) + args = dlg.exec_() + if args: # not 'Cancel' clicked + self._cb(self._cmdname, args[1]) + else: + # no need for arguments + self._cb(self._cmdname, None) + #self.setEnabled(True) + + +class ModuleWidget(QWidget): + plot = pyqtSignal(str) + plotAdd = pyqtSignal(str) + def __init__(self, node, name, parent=None): + super().__init__() + loadUi(self, 'modulewidget.ui') + self._node = node + self._name = name + self._paramDisplays = {} + self._paramInputs = {} + self._addbtns = [] + self._paramWidgets = {} + + self.moduleName.setText(name) + props = self._node.getModuleProperties(self._name) + description = props.get('description', '') + self.moduleDescription.setText(description) + + row = 0 + params = dict(self._node.getParameters(self._name)) + if 'status' in params: + params.pop('status') + self._addRParam('status', row) + row += 1 + if 'value' in params: + params.pop('value') + self._addRParam('value', row) + row += 1 + if 'target' in params: + params.pop('target') + self._addRWParam('target', row) + row += 1 + for param in params: + paramProps = self._node.getProperties(self._name, param) + if paramProps['readonly']: + self._addRParam(param, row) + else: + self._addRWParam(param, row) + row += 1 + self._setParamHidden(param, True) + + self._addCommands(row) + + cache = self._node.queryCache(self._name) + for param, val in cache.items(): + self._updateValue(self._name, param, val) + + node.newData.connect(self._updateValue) + + def _updateValue(self, mod, param, val): + if mod != self._name: + return + if param in self._paramDisplays: + self._paramDisplays[param].setText(str(val.value)) + + def _addRParam(self, param, row): + props = self._node.getProperties(self._name, param) + + nameLabel = QLabel(param) + unitLabel = QLabel(props.get('unit', '')) + display = QLineEdit() + + self._paramDisplays[param] = display + self._paramWidgets[param] = [nameLabel, unitLabel, display] + + l = self.moduleDisplay.layout() + l.addWidget(nameLabel, row,0,1,1) + l.addWidget(display, row,1,1,5) + l.addWidget(unitLabel, row,6) + self._addPlotButtons(param, row) + + def _addRWParam(self, param, row): + props = self._node.getProperties(self._name, param) + + nameLabel = QLabel(param) + unitLabel = QLabel(props.get('unit', '')) + unitLabel2 = QLabel(props.get('unit', '')) + display = QLineEdit() + inputEdit = QLineEdit() + submitButton = QPushButton('Go') + submitButton.setIcon(QIcon(':/icons/submit')) + + submitButton.pressed.connect(lambda: self._button_pressed(param)) + inputEdit.returnPressed.connect(lambda: self._button_pressed(param)) + self._paramDisplays[param] = display + self._paramInputs[param] = inputEdit + self._paramWidgets[param] = [nameLabel, unitLabel, unitLabel2, + display, inputEdit, submitButton] + + l = self.moduleDisplay.layout() + l.addWidget(nameLabel, row,0,1,1) + l.addWidget(display, row,1,1,2) + l.addWidget(unitLabel, row,3,1,1) + l.addWidget(inputEdit, row,4,1,2) + l.addWidget(unitLabel2, row,6,1,1) + l.addWidget(submitButton, row, 7) + self._addPlotButtons(param, row) + + def _addPlotButtons(self, param, row): + if param == 'status': + return + plotButton = QToolButton() + plotButton.setIcon(QIcon(':/icons/plot')) + plotButton.setToolTip('Plot %s' % param) + plotAddButton = QToolButton() + plotAddButton.setIcon(QIcon(':/icons/plot-add')) + plotAddButton.setToolTip('Plot With...') + + plotButton.clicked.connect(lambda: self.plot.emit(param)) + plotAddButton.clicked.connect(lambda: self.plotAdd.emit(param)) + + self._addbtns.append(plotAddButton) + plotAddButton.setDisabled(True) + self._paramWidgets[param].append(plotButton) + self._paramWidgets[param].append(plotAddButton) + + l = self.moduleDisplay.layout() + l.addWidget(plotButton, row, 8) + l.addWidget(plotAddButton, row, 9) + + def _addCommands(self, startrow): + cmdicons = { + 'stop': QIcon(':/icons/stop'), + } + cmds = self._node.getCommands(self._name) + if not cmds: + return + + l = self.moduleDisplay.layout() + # max cols in GridLayout, find out programmatically? + maxcols = 7 + l.addWidget(QLabel('Commands:')) + for (i, cmd) in enumerate(cmds): + cmdb = CommandButton(cmd, cmds[cmd], self._execCommand) + if cmd in cmdicons: + cmdb.setIcon(cmdicons[cmd]) + row = startrow + i // maxcols + col = (i % maxcols) + 1 + l.addWidget(cmdb, row, col) + + + def _execCommand(self, command, args=None): + try: + result, qualifiers = self._node.execCommand( + self._name, command, args) + except Exception as e: + showErrorDialog(command, args, e) + return + if result is not None: + showCommandResultDialog(command, args, result, qualifiers) + + def _setParamHidden(self, param, hidden): + for w in self._paramWidgets[param]: + w.setHidden(hidden) + + def _setGroupHidden(self, group): + pass + + def rebuildAdvanced(self, advanced): + for param in self._paramWidgets: + if param in ['value', 'status', 'target']: + continue + self._setParamHidden(param, not advanced) + + def _button_pressed(self, param): + target = self._paramInputs[param].text() + try: + self._node.setParameter(self._name, param, target) + except Exception as e: + QMessageBox.warning(self.parent(), 'Operation failed', str(e)) + + def plotsPresent(self, present): + for btn in self._addbtns: + btn.setDisabled(present) diff --git a/frappy/gui/nodectrl.py b/frappy/gui/nodectrl.py deleted file mode 100644 index 8f6df94..0000000 --- a/frappy/gui/nodectrl.py +++ /dev/null @@ -1,331 +0,0 @@ -# -*- coding: utf-8 -*- -# ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE -# -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., -# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# Module authors: -# Alexander Lenz -# -# ***************************************************************************** - - -import json -import pprint -from time import sleep - -import mlzlog - -import frappy.lib -from frappy.datatypes import EnumType, StringType -from frappy.errors import SECoPError -from frappy.gui.qt import QFont, QFontMetrics, QLabel, \ - QMessageBox, QTextCursor, QWidget, pyqtSlot, toHtmlEscaped -from frappy.gui.util import Value, loadUi - - -class NodeCtrl(QWidget): - - def __init__(self, node, parent=None): - super().__init__(parent) - loadUi(self, 'nodectrl.ui') - - self._node = node - - self.contactPointLabel.setText(self._node.contactPoint) - self.equipmentIdLabel.setText(self._node.equipmentId) - self.protocolVersionLabel.setText(self._node.protocolVersion) - self.nodeDescriptionLabel.setText(self._node.properties.get('description', - 'no description available')) - self._clearLog() - - # now populate modules tab - self._init_modules_tab() - - node.logEntry.connect(self._addLogEntry) - - @pyqtSlot() - def on_sendPushButton_clicked(self): - msg = self.msgLineEdit.text().strip() - - if not msg: - return - - self._addLogEntry( - 'Request: ' - '%s:' % msg, - raw=True) - # msg = msg.split(' ', 2) - try: - reply = self._node.syncCommunicate(*self._node.decode_message(msg)) - if msg == 'describe': - _, eid, stuff = self._node.decode_message(reply) - reply = '%s %s %s' % (_, eid, json.dumps( - stuff, indent=2, separators=(',', ':'), sort_keys=True)) - self._addLogEntry(reply, newline=True, pretty=False) - else: - self._addLogEntry(reply, newline=True, pretty=False) - except SECoPError as e: - einfo = e.args[0] if len(e.args) == 1 else json.dumps(e.args) - self._addLogEntry( - '%s: %s' % (e.name, einfo), - newline=True, - pretty=False, - error=True) - except Exception as e: - self._addLogEntry( - 'error when sending %r: %r' % (msg, e), - newline=True, - pretty=False, - error=True) - - @pyqtSlot() - def on_clearPushButton_clicked(self): - self._clearLog() - - def _clearLog(self): - self.logTextBrowser.clear() - - self._addLogEntry('SECoP Communication Shell') - self._addLogEntry('=========================') - self._addLogEntry('', newline=True) - - def _addLogEntry(self, - msg, - newline=False, - pretty=False, - raw=False, - error=False): - if pretty: - msg = pprint.pformat(msg, width=self._getLogWidth()) - msg = msg[1:-1] - - if not raw: - if error: - msg = '
%s
' % toHtmlEscaped( - str(msg)).replace('\n', '
') - else: - msg = '
%s
' % toHtmlEscaped( - str(msg)).replace('\n', '
') - - content = '' - if self.logTextBrowser.toPlainText(): - content = self.logTextBrowser.toHtml() - content += msg - - if newline: - content += '
' - - self.logTextBrowser.setHtml(content) - self.logTextBrowser.moveCursor(QTextCursor.End) - - def _getLogWidth(self): - fontMetrics = QFontMetrics(QFont('Monospace')) - # calculate max avail characters by using an m (which is possible - # due to monospace) - result = self.logTextBrowser.width() / fontMetrics.width('m') - return result - - def _init_modules_tab(self): - self._moduleWidgets = [] - layout = self.scrollAreaWidgetContents.layout() - labelfont = self.font() - labelfont.setBold(True) - row = 0 - for modname in sorted(self._node.modules): - modprops = self._node.getModuleProperties(modname) - interfaces = modprops.get('interface_classes', '') - description = modprops.get('description', '!!! missing description !!!') - - # fallback: allow (now) invalid 'Driveable' - unit = '' - try: - if 'Drivable' in interfaces or 'Driveable' in interfaces: - widget = DrivableWidget(self._node, modname, self) - unit = self._node.getProperties(modname, 'value').get('unit', '') - elif 'Writable' in interfaces or 'Writeable' in interfaces: - # XXX !!! - widget = DrivableWidget(self._node, modname, self) - unit = self._node.getProperties(modname, 'value').get('unit', '') - elif 'Readable' in interfaces: - widget = ReadableWidget(self._node, modname, self) - unit = self._node.getProperties(modname, 'value').get('unit', '') - else: - widget = QLabel('Unsupported Interfaceclass %r' % interfaces) - except Exception as e: - print(frappy.lib.formatExtendedTraceback()) - widget = QLabel('Bad configured Module %s! (%s)' % (modname, e)) - - if unit: - labelstr = '%s (%s):' % (modname, unit) - else: - labelstr = '%s:' % (modname,) - label = QLabel(labelstr) - label.setFont(labelfont) - - if description: - widget.setToolTip(description) - - layout.addWidget(label, row, 0) - layout.addWidget(widget, row, 1) - - row += 1 - self._moduleWidgets.extend((label, widget)) - layout.setRowStretch(row, 1) - - -class ReadableWidget(QWidget): - - def __init__(self, node, module, parent=None): - super().__init__(parent) - self._node = node - self._module = module - - # XXX: avoid a nasty race condition, mainly biting on M$ - for i in range(15): - if 'status' in self._node.modules[module]['parameters']: - break - sleep(0.01*i) - - self._status_type = self._node.getProperties( - self._module, 'status').get('datatype') - - try: - props = self._node.getProperties(self._module, 'target') - datatype = props.get('datatype', StringType()) - self._is_enum = isinstance(datatype, EnumType) - except KeyError: - self._is_enum = False - - loadUi(self, 'modulebuttons.ui') - - # populate comboBox, keeping a mapping of Qt-index to EnumValue - if self._is_enum: - self._map = {} # maps QT-idx to name/value - self._revmap = {} # maps value/name to QT-idx - for idx, member in enumerate(datatype._enum.members): - self._map[idx] = member - self._revmap[member.name] = idx - self._revmap[member.value] = idx - self.targetComboBox.addItem(member.name, member.value) - - self._init_status_widgets() - self._init_current_widgets() - self._init_target_widgets() - - self._node.newData.connect(self._updateValue) - - def _get(self, pname, fallback=Ellipsis): - try: - return Value(*self._node.getParameter(self._module, pname)) - except Exception as e: - # happens only, if there is no response form read request - mlzlog.getLogger('cached values').warn( - 'no cached value for %s:%s %r' % (self._module, pname, e)) - return Value(fallback) - - def _init_status_widgets(self): - self.update_status(self._get('status', (400, ''))) - # XXX: also connect update_status signal to LineEdit ?? - - def update_status(self, status): - self.statusLineEdit.setText(str(status)) - # may change meaning of cmdPushButton - - def _init_current_widgets(self): - self.update_current(self._get('value', '')) - - def update_current(self, value): - self.currentLineEdit.setText(str(value)) - - def _init_target_widgets(self): - # Readable has no target: disable widgets - self.targetLineEdit.setHidden(True) - self.targetComboBox.setHidden(True) - self.cmdPushButton.setHidden(True) - - def update_target(self, target): - pass - - def _updateValue(self, module, parameter, value): - if module != self._module: - return - if parameter == 'status': - self.update_status(value) - elif parameter == 'value': - self.update_current(value) - elif parameter == 'target': - self.update_target(value) - - -class DrivableWidget(ReadableWidget): - - def _init_target_widgets(self): - if self._is_enum: - # EnumType: disable Linedit - self.targetLineEdit.setHidden(True) - self.cmdPushButton.setHidden(True) - else: - # normal types: disable Combobox - self.targetComboBox.setHidden(True) - target = self._get('target', None) - if target.value is not None: - if isinstance(target.value, list) and isinstance(target.value[1], dict): - self.update_target(Value(target.value[0])) - else: - self.update_target(target) - - def update_current(self, value): - self.currentLineEdit.setText(str(value)) - # elif self._is_enum: - # member = self._map[self._revmap[value.value]] - # self.currentLineEdit.setText('%s.%s (%d)' % (member.enum.name, member.name, member.value)) - - def update_target(self, target): - if self._is_enum: - if target.readerror: - return - # update selected item - value = target.value - if value in self._revmap: - self.targetComboBox.setCurrentIndex(self._revmap[value]) - else: - print( - "%s: Got invalid target value %r!" % - (self._module, value)) - else: - self.targetLineEdit.setText(str(target)) - - def target_go(self, target): - try: - self._node.setParameter(self._module, 'target', target) - except Exception as e: - self._node.log.exception(e) - QMessageBox.warning(self.parent(), 'Operation failed', str(e)) - - @pyqtSlot() - def on_cmdPushButton_clicked(self): - if self._is_enum: - self.on_targetComboBox_activated(self.targetComboBox.currentText()) - else: - self.on_targetLineEdit_returnPressed() - - @pyqtSlot() - def on_targetLineEdit_returnPressed(self): - self.target_go(self.targetLineEdit.text()) - - @pyqtSlot(str) - def on_targetComboBox_activated(self, selection): - self.target_go(selection) diff --git a/frappy/gui/nodewidget.py b/frappy/gui/nodewidget.py new file mode 100644 index 0000000..155d916 --- /dev/null +++ b/frappy/gui/nodewidget.py @@ -0,0 +1,308 @@ +from collections import OrderedDict +import json +import pprint + +import frappy.gui.resources # pylint: disable=unused-import +from frappy.gui.qt import QFont, QFontMetrics, QLabel, QTextCursor, QWidget, \ + pyqtSlot, toHtmlEscaped, QVBoxLayout, QGridLayout, QPlainTextEdit, \ + QMenu, QCursor, QIcon, QInputDialog, pyqtSignal +from frappy.gui.util import Colors, loadUi +from frappy.gui.plotting import getPlotWidget +from frappy.gui.modulectrl import ModuleCtrl +from frappy.gui.paramview import ParameterView +from frappy.gui.modulewidget import ModuleWidget +from frappy.gui.moduleoverview import ModuleOverview + +from frappy.errors import SECoPError + +class Console(QWidget): + def __init__(self, node, parent=None): + super().__init__(parent) + loadUi(self, 'console.ui') + self._node = node + self._clearLog() + + @pyqtSlot() + def on_sendPushButton_clicked(self): + msg = self.msgLineEdit.text().strip() + + if not msg: + return + + self._addLogEntry( + 'Request: ' + '%s:' % msg, + raw=True) + # msg = msg.split(' ', 2) + try: + reply = self._node.syncCommunicate(*self._node.decode_message(msg)) + if msg == 'describe': + _, eid, stuff = self._node.decode_message(reply) + reply = '%s %s %s' % (_, eid, json.dumps( + stuff, indent=2, separators=(',', ':'), sort_keys=True)) + self._addLogEntry(reply, newline=True, pretty=False) + else: + self._addLogEntry(reply, newline=True, pretty=False) + except SECoPError as e: + einfo = e.args[0] if len(e.args) == 1 else json.dumps(e.args) + self._addLogEntry( + '%s: %s' % (e.name, einfo), + newline=True, + pretty=False, + error=True) + except Exception as e: + self._addLogEntry( + 'error when sending %r: %r' % (msg, e), + newline=True, + pretty=False, + error=True) + + @pyqtSlot() + def on_clearPushButton_clicked(self): + self._clearLog() + + def _clearLog(self): + self.logTextBrowser.clear() + + self._addLogEntry('SECoP Communication Shell') + self._addLogEntry('=========================') + self._addLogEntry('', newline=True) + + def _addLogEntry(self, + msg, + newline=False, + pretty=False, + raw=False, + error=False): + if pretty: + msg = pprint.pformat(msg, width=self._getLogWidth()) + msg = msg[1:-1] + + if not raw: + if error: + msg = '
%s
' % toHtmlEscaped( + str(msg)).replace('\n', '
') + else: + msg = '
%s
' % toHtmlEscaped( + str(msg)).replace('\n', '
') + + content = '' + if self.logTextBrowser.toPlainText(): + content = self.logTextBrowser.toHtml() + content += msg + + if newline: + content += '
' + + self.logTextBrowser.setHtml(content) + self.logTextBrowser.moveCursor(QTextCursor.End) + + def _getLogWidth(self): + fontMetrics = QFontMetrics(QFont('Monospace')) + # calculate max avail characters by using an m (which is possible + # due to monospace) + result = self.logTextBrowser.width() / fontMetrics.width('m') + return result + +class NodeWidget(QWidget): + noPlots = pyqtSignal(bool) + + def __init__(self, node, parent=None): + super().__init__(parent) + loadUi(self, 'nodewidget.ui') + + self._node = node + self._node.stateChange.connect(self._set_node_state) + + self._modules = OrderedDict() + self._detailedModules = {} + self._detailedParams = {} + self._activePlots = {} + + self.top_splitter.setStretchFactor(0, 2) + self.top_splitter.setStretchFactor(1, 10) + self.top_splitter.setSizes([180, 500]) + + self.middle_splitter.setCollapsible(self.middle_splitter.indexOf(self.view), False) + self.middle_splitter.setStretchFactor(0, 20) + self.middle_splitter.setStretchFactor(1, 1) + + self.infobox_splitter.setStretchFactor(0,3) + self.infobox_splitter.setStretchFactor(1,2) + + self.consoleWidget.setTitle('Console') + cmd = Console(node, self.consoleWidget) + self.consoleWidget.replaceWidget(cmd) + + viewLayout = self.viewContent.layout() + for module in node.modules: + widget = ModuleWidget(node, module, self.view) + widget.plot.connect(lambda param, module=module: + self.plotParam(module, param)) + widget.plotAdd.connect(lambda param, module=module: + self._plotPopUp(module, param)) + self.noPlots.connect(widget.plotsPresent) + self._modules[module] = widget + details = ModuleCtrl(node, module) + self._detailedModules[module] = details + viewLayout.addWidget(details) + details.setHidden(True) + self._detailedParams[module] = {} + for param in node.getParameters(module): + view = ParameterView(node, module, param) + self._detailedParams[module][param] = view + view.setHidden(True) + viewLayout.addWidget(view) + viewLayout.addWidget(widget) + + self._initNodeInfo() + + + def _initNodeInfo(self): + self.tree = ModuleOverview(self._node) + infolayout = QVBoxLayout() + infolayout.addWidget(self.tree) + self.infotree.setLayout(infolayout) + # disabled until i find a way to deselect and go back to overview + self.tree.itemChanged.connect(self.changeViewContent) + self.tree.customContextMenuRequested.connect(self._treeContextMenu) + + self._description = QPlainTextEdit(self._node.properties.get('description','no description available')) + self._description_label = QLabel('Description:') + self._description.setReadOnly(True) + self._host = QLabel(self._node.conn.uri) + self._host.hide() + self._host_label = QLabel('Host:') + self._host_label.hide() + self._protocoll = QLabel(self._node.conn.secop_version) + self._protocoll.setWordWrap(True) + self._protocoll.hide() + self._protocoll_label = QLabel('Protocoll Version:') + self._protocoll_label.hide() + + layout = QGridLayout() + layout.addWidget(self._host_label, 0, 0) + layout.addWidget(self._host, 0, 1) + layout.addWidget(self._protocoll_label, 1, 0) + layout.addWidget(self._protocoll, 1, 1) + layout.addWidget(self._description_label, 2, 0) + layout.addWidget(self._description, 3, 0, -1, -1) + self.nodeinfo.setLayout(layout) + + def _set_node_state(self, nodename, online, state): + p = self.palette() + if online: + p.setColor(self.backgroundRole(),Colors.palette.window().color()) + self.tree.setToReconnected() + else: + p.setColor(self.backgroundRole(), Colors.colors['orange']) + # TODO: reset this for non-status modules! + self.tree.setToDisconnected() + self.setPalette(p) + + + def _rebuildAdvanced(self, advanced): + self._host.setHidden(not advanced) + self._host_label.setHidden(not advanced) + self._protocoll.setHidden(not advanced) + self._protocoll_label.setHidden(not advanced) + self.tree._rebuildAdvanced(advanced) + for m in self._modules.values(): + m.rebuildAdvanced(advanced) + + def getSecNode(self): + return self._node + + def changeViewContent(self, module, param, prevmod, prevparam): + if prevmod == '': + for mod in self._modules.values(): + mod.setHidden(True) + elif prevparam == '': + self._detailedModules[prevmod].setHidden(True) + else: + self._detailedParams[prevmod][prevparam].setHidden(True) + if module == '': + # no module -> reset to overview + for mod in self._modules.values(): + mod.setHidden(False) + elif param == '': + # set to single module view + self._detailedModules[module].setHidden(False) + else: + # set to single param view + self._detailedParams[module][param].setHidden(False) + + def _treeContextMenu(self, pos): + index = self.tree.indexAt(pos) + if not index.isValid(): + return + item = self.tree.itemFromIndex(index) + + menu = QMenu() + opt_plot = menu.addAction('Plot') + opt_plot.setIcon(QIcon(':/icons/plot')) + menu_plot_ext = menu.addMenu("Plot with...") + menu_plot_ext.setIcon(QIcon(':/icons/plot')) + if not self._activePlots: + menu_plot_ext.setEnabled(False) + else: + for (m,p),plot in self._activePlots.items(): + opt_ext = menu_plot_ext.addAction("%s:%s" % (m,p)) + opt_ext.triggered.connect( + lambda plot=plot: self._requestPlot(item, plot)) + + menu.addSeparator() + opt_clear = menu.addAction('Clear Selection') + opt_plot.triggered.connect(lambda: self._requestPlot(item)) + opt_clear.triggered.connect(self.tree.clearTreeSelection) + #menu.exec_(self.mapToGlobal(pos)) + menu.exec_(QCursor.pos()) + + def _requestPlot(self, item, plot=None): + module = item.module + param = item.param or 'value' + self.plotParam(module, param, plot) + + def _plotPopUp(self, module, param): + plots = {'%s -> %s' % (m,p): (m,p) for (m,p) in self._activePlots} + dialog = QInputDialog() + #dialog.setInputMode() + dialog.setOption(QInputDialog.UseListViewForComboBoxItems) + dialog.setComboBoxItems(plots.keys()) + dialog.setTextValue(list(plots)[0]) + dialog.setWindowTitle('Plot %s with...' % param) + dialog.setLabelText('') + + if dialog.exec_() == QInputDialog.Accepted: + item = dialog.textValue() + self.plotParam(module, param, self._activePlots[plots[item]]) + + + def plotParam(self, module, param, plot=None): + # - liveness? + # - better plot window management? + + # only allow one open plot per parameter TODO: change? + if (module, param) in self._activePlots: + return + if plot: + plot.addCurve(self._node, module, param) + plot.setCurveColor(module, param, Colors.colors[len(plot.curves) % 6]) + else: + plot = getPlotWidget() + plot.addCurve(self._node, module, param) + plot.setCurveColor(module, param, Colors.colors[1]) + self._activePlots[(module, param)] = plot + plot.closed.connect(lambda: self._removePlot(module, param)) + plot.show() + + self.noPlots.emit(len(self._activePlots) == 0) + + # initial datapoint + cache = self._node.queryCache(module) + if param in cache: + plot.update(module, param, cache[param]) + + def _removePlot(self, module, param): + self._activePlots.pop((module,param)) + self.noPlots.emit(len(self._activePlots) == 0) diff --git a/frappy/gui/plotting.py b/frappy/gui/plotting.py new file mode 100644 index 0000000..11f0525 --- /dev/null +++ b/frappy/gui/plotting.py @@ -0,0 +1,114 @@ +import time + +try: + import pyqtgraph as pg + import numpy as np +except ImportError: + pg = None + np = None + +from frappy.gui.util import Colors +from frappy.gui.qt import QWidget, QVBoxLayout, QLabel, Qt, pyqtSignal +def getPlotWidget(): + if pg: + pg.setConfigOption('background', Colors.colors['plot-bg']) + pg.setConfigOption('foreground', Colors.colors['plot-fg']) + + if pg is None: + return PlotPlaceHolderWidget() + return PlotWidget() + +class PlotPlaceHolderWidget(QWidget): + closed = pyqtSignal(object) + + def __init__(self, parent=None): + super().__init__(parent) + l = QVBoxLayout() + label = QLabel("pyqtgraph is not installed!") + label.setAlignment(Qt.AlignCenter) + l.addWidget(label) + self.setLayout(l) + self.setMinimumWidth(300) + self.setMinimumHeight(150) + self.curves = {} + + def addCurve(self, node, module, param): + pass + + def setCurveColor(self, module, param, color): + pass + + def update(self, module, param, value): + pass + + def closeEvent(self, event): + self.closed.emit(self) + event.accept() + +# TODO: +# - timer-based updates when receiving no updates from the node +# in order to make slower updates not jump that much? +# - remove curves again +class PlotWidget(QWidget): + closed = pyqtSignal(object) + + def __init__(self, parent=None): + super().__init__(parent) + self.win = pg.GraphicsLayoutWidget() + self.curves = {} + self.data = {} + self.timer = pg.QtCore.QTimer() + self.timer.timeout.connect(self.scrollUpdate) + + # TODO: Shoud this scrolling be done? or with configuration? + self.timer.start(100) + + self.plot = self.win.addPlot() + self.plot.addLegend() + self.plot.setAxisItems({'bottom': pg.DateAxisItem()}) + self.plot.setLabel('bottom', 'Time') + self.plot.setLabel('left', 'Value') + l = QVBoxLayout() + l.addWidget(self.win) + self.setLayout(l) + + def addCurve(self, node, module, param): + paramData = node._getDescribingParameterData(module, param) + name = '%s:%s' % (module, param) + unit = paramData.get('unit', '') + if unit: + unit = '/' + unit + curve = self.plot.plot(name='%s%s' % (name, unit)) + if 'min' in paramData and 'max' in paramData: + curve.setXRange(paramData['min'], paramData['max']) + + curve.setDownsampling(method='peak') + self.data[name] = (np.array([]),np.array([])) + self.curves[name] = curve + node.newData.connect(self.update) + + def setCurveColor(self, module, param, color): + curve = self.curves['%s:%s' % (module, param)] + curve.setPen(color) + + def scrollUpdate(self): + for cname, curve in self.curves.items(): + x,y = self.data[cname] + x = np.append(x, time.time()) + y = np.append(y, y[-1]) + curve.setData(x,y) + + def update(self, module, param, value): + name = '%s:%s' % (module, param) + if name not in self.curves: + return + curve = self.curves[name] + x,y = self.data[name] + x = np.append(x, value.timestamp) + y = np.append(y, value.value) + self.data[name] = (x,y) + curve.setData(x,y) + + def closeEvent(self, event): + self.closed.emit(self) + event.accept() diff --git a/frappy/gui/qt.py b/frappy/gui/qt.py index 3f09079..214bbb3 100644 --- a/frappy/gui/qt.py +++ b/frappy/gui/qt.py @@ -32,15 +32,17 @@ try: from PyQt5 import uic from PyQt5.QtCore import Qt, QObject, pyqtSignal, pyqtSlot, QSize, QPointF, \ - QRectF, QPoint + QRectF, QPoint, QByteArray, QEvent, QMimeData from PyQt5.QtGui import QFont, QTextCursor, QFontMetrics, QColor, QBrush, \ - QPainter, QPolygonF, QPen, QIcon, QStandardItemModel, QStandardItem + QPainter, QPolygonF, QPen, QIcon, QStandardItemModel, QStandardItem, \ + QPalette, QCursor, QDrag, QMouseEvent, QPixmap from PyQt5.QtWidgets import QLabel, QWidget, QDialog, QLineEdit, QCheckBox, \ QPushButton, QSizePolicy, QMainWindow, QMessageBox, QInputDialog, \ QTreeWidgetItem, QApplication, QGroupBox, QSpinBox, QDoubleSpinBox, \ QComboBox, QRadioButton, QVBoxLayout, QHBoxLayout, QGridLayout, \ QScrollArea, QFrame, QTreeWidget, QFileDialog, QTabBar, QAction, QMenu,\ - QDialogButtonBox, QTextEdit, QAbstractItemView, QSpacerItem, QTreeView + QDialogButtonBox, QTextEdit, QSpacerItem, QTreeView, QStyle, \ + QStyleOptionTab, QStylePainter, QTabWidget, QToolButton, QPlainTextEdit from xml.sax.saxutils import escape as toHtmlEscaped @@ -55,7 +57,7 @@ except ImportError: QGroupBox, QSpinBox, QDoubleSpinBox, QComboBox, QRadioButton, QVBoxLayout, QHBoxLayout, \ QGridLayout, QScrollArea, QFrame, QColor, QBrush, QPainter, QPolygonF, QPen, QIcon, \ QTreeWidget, QFileDialog, QTabBar, QAction, QMenu, QDialogButtonBox, QAbstractItemView, \ - QSpacerItem, QTreeView, QStandardItemModel, QStandardItem + QSpacerItem, QTreeView, QStandardItemModel, QStandardItem, QPlainTextEdit import frappy.gui.cfg_editor.icon_rc_qt4 diff --git a/frappy/gui/resources.py b/frappy/gui/resources.py new file mode 100644 index 0000000..35fe216 --- /dev/null +++ b/frappy/gui/resources.py @@ -0,0 +1,2773 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created by: The Resource Compiler for PyQt5 (Qt v5.15.8) +# +# WARNING! All changes made in this file will be lost! + +# pylint: skip-file + +from PyQt5 import QtCore + +qt_resource_data = b"\ +\x00\x00\x02\xd9\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x02\x7b\x49\x44\x41\x54\x78\xda\xa4\ +\x93\xdf\x6f\xd2\x50\x14\xc7\x0f\x6d\xe9\x28\xc8\xc2\x18\x2c\x88\ +\x19\x46\x60\x22\x68\xb6\x2c\x61\x33\x99\x59\xc2\x5e\xf6\xb2\xf8\ +\x32\x7d\xf5\x9f\xe0\x2f\xd8\x5f\xc0\x93\x7f\x00\x89\xc9\x9e\x0c\ +\x5b\xe2\xc3\xde\xcc\x8c\xbf\x96\xc8\x8b\x59\x1c\xc1\x41\xe6\x34\ +\x99\x80\x80\x42\xa1\x2d\xa5\x2d\x9e\x53\x0a\x81\xc5\x37\x6f\xf2\ +\x6d\x6f\x7b\xcf\xe7\x7b\xcf\xbd\xf7\x5c\xdb\x60\x30\x80\xff\x69\ +\x1c\x3d\x5e\xd8\x6c\xc0\xe2\x9b\x64\x03\x08\xa2\x76\xb1\xbb\x81\ +\x0a\x59\x71\xdf\x51\x1f\x70\xaa\x1c\xea\x4a\xc7\x0f\xd2\x33\x9c\ +\x9c\xbb\x66\xf8\xd8\x2e\x08\xe9\xf0\xf2\x72\x34\xb8\xb4\xe4\x15\ +\x66\x67\x1d\x94\xa1\xdc\x6e\xaf\x5e\x9d\x9f\x6f\x5e\x9c\x9e\x3e\ +\x51\x65\x39\x83\x71\xaf\xa6\x32\x18\xc1\x82\xc7\xb3\xf7\x70\x67\ +\x27\x3e\xe0\x38\xa1\xa7\x69\xd0\x6b\xb5\x46\x63\xce\x40\x3c\xee\ +\xf4\x87\xc3\xf3\xf9\xa3\xa3\xbd\xee\xf0\xbf\x69\xc2\xd0\x03\xd3\ +\x0a\xb2\x0e\x47\x7a\x75\x7b\x3b\xde\x92\x24\x21\x90\xcd\x42\xa7\ +\xd3\x99\x92\xf9\x4f\x51\x84\x07\xa9\x54\x9c\x99\x99\x49\x13\x33\ +\x36\xc0\xf5\xec\x86\x12\x89\xe8\x6f\x51\x14\xee\xe6\x72\xe6\x94\ +\xf7\x0e\x0f\x41\x14\x45\x53\xd4\xa7\x16\x3b\x38\x00\x11\x4d\x16\ +\x22\x91\xa8\x3e\xdc\xa7\xe1\x12\x34\x80\x47\x6e\xbf\xdf\x5b\x6f\ +\x36\xe1\x65\x34\x0a\x4f\x4b\x25\x50\x14\x05\x42\xfb\xfb\x20\x49\ +\x12\x94\xf0\x9b\x61\x18\x78\x9d\x4c\x82\xdd\x6e\x07\xdf\xdc\x9c\ +\x97\x18\x44\x9f\x33\x96\xc1\xa2\xc1\x30\x0e\x0d\xd7\xed\x76\xb9\ +\x20\xeb\xf3\x41\xa1\x50\x80\x6a\xb5\x6a\x1a\xd9\xf0\x94\xde\x20\ +\xcc\xd3\x29\xf5\xfb\xa0\x48\x92\x83\x98\xc9\x0c\x40\xc3\x01\x15\ +\xd3\x95\x30\x0b\x97\x61\x00\xcb\xb2\xe6\x6c\x3c\xcf\x9b\xba\x31\ +\xb1\xdb\x2c\xc6\x6a\x56\xdf\xcc\xa0\x0f\xf0\x43\xac\xd5\x94\x41\ +\xbd\x0e\x82\xae\x43\xec\xf8\x78\x0a\xe6\x38\x0e\x52\xc5\x22\x38\ +\xe9\x38\x08\x50\x55\x85\x98\xb1\x01\xba\xbd\xaf\x55\x2a\x0d\x37\ +\x06\x2e\x4e\xc0\x9f\xd7\xd6\xe0\xd3\xca\x8a\x69\x40\xda\x28\x97\ +\x4d\x83\xb6\x2c\x37\x89\x99\x34\xc8\x7d\x6b\x34\xca\xb8\x53\xf2\ +\xe5\xd6\x96\x09\x9f\x21\x7c\x0b\xc7\x48\x27\xb1\x98\x99\xee\xbb\ +\x48\x04\x0c\xc3\x90\x2b\xbd\x5e\x89\x98\xb1\x81\x81\xe5\xd9\xd5\ +\xf5\xcc\xc7\x7a\xbd\xe0\x05\x90\xbf\xae\xaf\xc3\x6d\xfc\x2f\x58\ +\xa2\xfe\x09\xc2\x1e\x84\xf3\x9d\x4e\x41\x32\x8c\x0c\x31\xc4\xda\ +\xa8\x54\x69\x97\x29\x28\x89\xd5\x78\x87\x61\xd2\x71\x9e\x8f\xc6\ +\x78\xde\xeb\x61\x59\x07\x05\xfd\xd1\x75\xa5\xa8\xaa\xcd\x82\xaa\ +\x96\x2e\x10\xce\x63\x15\x5e\x52\x01\x12\x6b\x19\xd0\x69\xcc\xa3\ +\x7c\x58\x5e\x81\x04\xc0\xe6\x02\xc0\x7d\xbc\x5c\x37\xad\x42\xfb\ +\x59\x03\xf8\x72\x06\xf0\x16\xa7\xc5\x2e\xfc\x42\xd5\x91\xd5\x46\ +\x06\x8c\xb5\xc1\xce\x6b\xf7\xe3\x5f\x8d\x2e\x62\x17\x25\x21\x6b\ +\xfc\x15\x60\x00\xcf\x23\x1c\x65\xff\xcb\xd4\xf5\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x8e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x02\x30\x49\x44\x41\x54\x78\xda\xa4\ +\x92\xcb\x6b\x13\x51\x14\xc6\xbf\x99\xb9\x33\x49\x9d\x58\x12\xc5\ +\x47\x5b\xad\x94\x22\x38\x55\x34\x05\x5d\x74\xd1\xad\x68\x45\x44\ +\x5a\xb2\x73\x53\x29\x44\x23\xb8\x96\x2c\x74\xe1\xc6\x9d\x22\xd8\ +\x81\xba\x54\xc1\x3f\xc0\x55\x71\xd5\x85\x60\x75\x51\x11\x91\x28\ +\x0a\x45\xb0\xc5\x14\x66\x32\x79\x4c\x32\xaf\x9e\x73\xeb\x74\x23\ +\x56\xd4\x81\x6f\xce\xc9\xdc\xfb\xfd\xce\xb9\x27\x57\x49\x92\x04\ +\xff\xf3\x88\x52\xa9\x74\x91\xe2\xc0\x3f\xfa\xbf\x8b\x28\x8a\x86\ +\x6c\xdb\x9e\x0f\x82\xe0\xaf\x9c\xba\xae\xa3\x5c\x2e\x5f\x13\x71\ +\x1c\x2b\xbd\x5e\x0f\x95\x4a\x05\x94\xcb\x45\x8e\x7c\x34\x56\x9a\ +\xf3\x1e\xdf\x0f\xa0\x69\x1a\x0a\x85\x3c\x6c\xfb\x11\xaf\x29\x22\ +\x0c\x43\x85\xba\x90\x1b\x2d\xcb\x92\x91\xbe\xc1\x3f\x3d\x8a\x64\ +\xe9\x3d\xb8\x33\xd7\xf5\xd0\x68\xb4\x91\xcd\x0a\x08\x61\xa0\xdd\ +\x6e\x80\x3d\xec\x65\x80\xca\x3f\xb8\x0a\x6f\x66\x33\x2b\x1e\xda\ +\x8b\xae\xef\x93\xb9\x89\x4e\xa7\x47\x2d\x67\x49\x86\x04\x04\x81\ +\x9f\x02\x54\x09\x90\x06\xaa\xcc\x6d\x32\x84\xa5\x0f\xef\xa3\xaa\ +\x2d\x74\xbb\x11\x0c\xa3\x6f\xdb\x2c\x84\x4e\xdf\x8c\xb4\x90\xaa\ +\xa6\x00\x26\xfa\x54\x31\x9a\x38\x26\x23\x3f\x3c\xd7\xdc\xd8\x08\ +\x06\xee\xcf\xa1\x7f\xea\x0c\x32\x99\x2c\xc1\xb2\x12\xf2\x0b\x40\ +\x99\x3c\x81\xa8\x34\x49\xe7\x6b\x63\xf7\xdd\x59\x09\xc8\x59\x23\ +\x28\x5c\x9f\x82\x73\xeb\x29\x94\xe1\x3d\x18\xbd\x37\x8b\xe9\xf9\ +\xdb\x04\x10\xdb\x00\x41\xed\x4a\x40\x67\xf1\x0d\xdc\xb7\x5f\x64\ +\x27\xee\x8b\x57\x30\xad\xa3\x64\xbe\x80\xe6\xc2\x22\x4c\x33\x8f\ +\xe4\xd9\x32\x9e\x58\x0f\xf0\xb0\xd0\x80\x59\xcc\x48\x00\x7b\x55\ +\x7e\xb1\x69\xab\xe5\x40\xce\x41\xd7\x77\x21\xb3\xde\x45\xeb\xf1\ +\x4b\xf4\xfd\x08\xe5\xd9\x79\x0e\x4e\x7f\x13\x97\x67\x2e\xc1\xcb\ +\xb7\x65\x21\xf6\x8a\x14\x60\x9a\x26\x3c\xcf\x4b\xaf\x09\xfd\x2b\ +\x1b\xd0\x3e\x3a\xf0\x55\x15\xef\x8a\x35\xd4\x73\x75\x80\x46\xe3\ +\x46\x2e\xd4\x28\xc6\x95\x4f\x37\xb0\x76\x76\x7d\x5a\x38\x8e\x93\ +\x51\x69\x53\xb5\x5a\xfd\xed\xad\xbb\x5a\xbb\x89\xe2\xb9\x71\x99\ +\xd7\xc3\x3a\x4e\x96\xb6\xf2\xcf\xab\xb5\xc3\x0a\x55\x2e\x13\xe0\ +\xc8\x4e\xd7\xb6\x33\x83\xf3\xf1\x21\xe5\x00\xe7\x63\x73\xa7\x0e\ +\x7e\x58\x58\x59\x93\x0b\xab\xd1\x6b\x0e\x06\x69\x3f\x69\xf0\x8f\ +\xba\x63\xae\x0c\x7e\x3d\x9e\x70\xfc\xe9\x31\x34\x7a\xf1\x04\x5b\ +\x24\x6f\x47\x4d\x08\x0f\x85\x64\xdc\x5b\xda\x00\xba\xf1\x32\x34\ +\xe5\x39\xbe\xc5\xd1\xa6\x00\x03\x00\xfe\x0f\x58\xe5\x77\x1c\x22\ +\x63\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xeb\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x02\x8d\x49\x44\x41\x54\x78\xda\x8c\ +\x93\xdf\x4b\x53\x61\x18\xc7\xbf\x67\x3b\x6e\x3b\xdb\x59\x8e\x31\ +\x62\xc8\x06\x75\x11\xe2\xa6\xa8\xcd\x2e\x76\x23\x04\xb5\xbc\xc9\ +\xd0\xd4\x8b\xc1\x44\x52\x0b\x6a\x19\x31\xba\xe8\x42\x10\x21\xf1\ +\x4a\xba\x11\xaa\x2b\x21\x12\x6a\x8c\xba\xe8\x07\x8c\xfe\x01\x41\ +\x17\x86\xd8\xb6\xa4\x44\x64\x25\x5b\xa7\x79\x36\xf6\xfb\xec\xf4\ +\x9c\xa9\xa1\x35\xb2\x17\x3e\xbc\x70\xde\xf3\x7c\xbf\xcf\xf7\x79\ +\xcf\x61\x70\xcc\xb2\xdb\xed\x70\xb9\x5c\xb0\xd9\x6c\x2d\x26\x93\ +\xa9\xc7\x60\x30\xbc\x65\x18\x26\x76\x70\xae\xc2\x7f\xac\x6a\xb5\ +\xea\xcc\x64\x32\xbd\xc3\xc3\xe3\x73\xd1\x68\xb4\x37\x16\x8b\xa1\ +\x58\x2c\x1e\x2b\xd0\x43\xac\xc8\xb2\x3c\x96\xcd\x66\xfb\x27\x26\ +\xee\xcf\x0e\x0d\x5d\x99\x89\xc7\xe3\xef\x54\x2a\x95\x22\xfa\x4f\ +\x81\x1b\xc4\x4c\x20\x10\x38\xbb\xbd\xbd\x7d\x73\x6a\x6a\x6e\xba\ +\xaf\xcf\x33\x5f\x28\x14\x42\x66\xb3\x79\x8d\xe3\xb8\x16\x49\x92\ +\xee\x92\x78\x73\x3d\x81\x36\xab\xd5\x7a\x9b\x56\xa7\x28\x8a\xf0\ +\xfb\xfd\x9d\xdd\xdd\x1d\xab\x82\x20\xc4\xc8\x35\xa2\x56\xab\x8f\ +\xc4\x51\xd7\x73\x77\xbb\xdd\x1e\xbd\x5e\xcf\xa5\xd3\x69\x54\x2a\ +\x15\x74\x75\x75\x59\x97\x96\x96\xec\xe4\x2c\x19\x8d\xc6\x73\x93\ +\x93\xb3\x0f\x7c\xbe\x81\x19\x32\x78\xc9\xd6\x11\x68\xb7\x58\x2c\ +\x5c\x2a\x95\xaa\xe5\xcc\xe7\xf3\xa0\x56\xe1\xf1\x78\x5a\xc3\xe1\ +\xf0\x9d\xc5\xc5\xd7\x0e\x25\x0e\x19\x84\x74\x3a\xdd\x5a\x3d\x01\ +\x3b\x5d\x93\xa6\x54\x2a\x81\x32\x63\x67\x27\x09\x25\x0a\x5d\x1f\ +\x9c\xce\x36\x07\xc5\x89\xf1\x3c\xff\x39\x97\xcb\x45\x68\xb8\x7f\ +\x0d\xf1\x32\x61\xa6\x62\x55\x3a\x2d\x22\x91\x48\xa2\x54\xaa\x42\ +\xa7\xe3\x21\x49\x0c\x18\x86\x85\xc3\xd1\xde\x4c\x85\x7e\xa5\x43\ +\x1a\x30\x0e\x77\xd0\x4b\x3c\x1c\x19\x19\x39\xbd\xb1\xb1\x49\xee\ +\x55\x70\x1c\xff\xfb\x90\x65\xd5\xd8\xbc\xf8\x1d\x29\xb3\x50\x42\ +\xb2\xf1\x13\xbe\x94\x81\xb2\x8c\xc3\x43\x0c\x53\xf1\xa9\xad\xad\ +\x04\x65\x67\xd1\xd0\xa0\x05\x0d\x0c\x5a\xad\x86\x46\x20\x57\x44\ +\x31\x5d\x48\xb8\x93\x18\x1d\x1b\xd5\x44\xc4\x8f\x59\x9c\x61\x9f\ +\x10\x47\x3a\x78\xb5\xb0\xb0\x30\xe0\xf5\x5e\x6b\x12\x84\x0c\x65\ +\xd6\x21\x14\x7a\x9a\xa0\xe7\xbb\x18\xe7\x4f\xa2\x99\x2d\x43\xcf\ +\xfc\xdc\x95\x76\x5b\x50\xac\x7d\x44\xcb\x90\xb1\x72\x50\xec\x25\ +\xe4\xc1\xc1\x41\x99\x76\xc1\xeb\xbd\x5e\xdb\x89\xab\x8a\x0b\xe6\ +\x4d\xcb\xe7\xbf\xf5\xcb\x7f\xa2\x3c\x67\xf6\x8b\x9f\x51\x31\x82\ +\xc1\xa0\x22\xf6\x88\x18\x25\x7c\xc4\x73\x5c\xd2\x02\x1e\xed\x63\ +\x72\x73\x29\x87\xad\x43\xed\xae\xb5\x17\xab\x7b\xce\xcc\x5e\x07\ +\x07\xce\x0a\xb7\x08\x8b\x72\x13\x84\x89\x38\x41\x18\x09\x03\xc1\ +\x61\x9a\x8f\x34\x7d\x75\xca\xb4\xaf\xec\xff\x06\x8c\x32\xc4\xc2\ +\xfa\xfa\xfa\x05\xda\xef\x11\xef\x6b\x2f\x02\x64\x0b\x0d\xd1\xb0\ +\x8f\xba\x56\xd0\x28\x77\x64\x56\x7f\xc8\xd8\x90\x3e\x20\x5a\x7d\ +\xa3\xb8\xff\x12\x60\x00\x16\xa7\x22\x09\x8f\x08\x94\x30\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x87\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x02\x29\x49\x44\x41\x54\x78\xda\xa4\ +\x53\xbb\x6b\x14\x41\x18\xff\x66\x76\x73\xbb\x93\xbd\xcb\x49\x3c\ +\x53\xc8\x15\x22\x6a\xb4\x94\x09\x12\x3b\x1b\x4b\xb1\x12\x1f\x1c\ +\x8a\x60\x8c\x60\x73\x9d\x7f\x84\x85\x42\xaa\xab\x4d\x11\x93\xca\ +\xce\x42\x39\x88\x20\x16\xae\xcf\x48\x4c\x50\x82\xc1\x28\x39\x1f\ +\x70\xc9\x65\x77\xf6\x35\xe3\x37\x93\xdb\xa8\xa7\x49\x93\x0f\x7e\ +\x3b\xcc\xcc\xf7\xfb\xcd\xf7\x5a\xa2\x94\x82\xdd\x18\x85\x5d\x1a\ +\x39\x78\x6b\x16\x0a\xae\x6b\xd0\xe7\x38\x06\xda\x94\x94\xe0\xf6\ +\xf7\xff\x76\x24\xa4\x81\x0b\xff\x83\xeb\x37\xaf\x0e\x8d\xdb\x3b\ +\xa9\x27\x71\x0c\xd4\xb2\xf2\x2d\x3f\x7f\x7a\x3f\x4f\x12\x00\x1b\ +\x59\xd3\x8f\xbe\x6c\x93\x82\x52\x35\x84\x7e\x0d\xb2\x34\x85\x14\ +\x19\x39\xc2\x50\x42\xbb\x9d\xe2\x9a\x99\xbd\x36\xbb\x97\x8c\xaf\ +\xd6\xf3\x6d\x14\x86\x26\x15\x87\x31\x66\xdb\x16\x15\x62\x93\x4c\ +\xa9\x05\x49\x14\xfd\x1d\x81\xea\x92\x2f\x9f\x3d\xc4\xf5\xa5\xd8\ +\xd8\x30\x11\xa0\x31\x3c\xbf\x50\x74\x95\xf7\x6a\x6e\x09\x5e\xbf\ +\xfb\x08\x4b\xcb\xab\x5a\x40\x6e\x45\x60\xc8\x51\x54\x1f\xbb\x74\ +\x9c\xaf\x7c\x0d\x21\x16\x42\x1f\x3f\x37\x77\x04\x68\xb1\xe8\x78\ +\xa5\x7d\xde\x81\xe5\x9f\x01\x28\xea\x00\x8d\x54\x86\x3e\xa1\x11\ +\xc8\xc9\x37\xae\x8c\xf2\xc7\x73\x6b\xf0\x03\x63\xaa\x9e\x1c\xe6\ +\x12\xe7\x43\xe2\x88\xa4\xf8\xe9\x88\x0c\xde\x60\xe8\xd2\x1d\x00\ +\x4a\x08\x58\x89\xe8\xa0\xc0\x82\x11\x48\x84\xa8\xdf\x1c\x3b\xc5\ +\x1f\x2c\x46\xf0\x56\x31\x90\x19\x9e\x76\xfe\xd3\x12\x17\xf3\x25\ +\x00\x83\x24\x4d\x5b\x2f\x3f\xac\x64\x42\x4c\x99\x1a\xe0\xeb\x77\ +\xef\x4c\x3c\xf4\xf7\x56\x8b\xb0\x5e\x60\xd0\xe7\x31\x18\xdc\xc3\ +\xa0\x5c\x66\x50\x1a\x60\xe0\x95\x18\xb0\x22\xc2\xb5\x33\x2f\x58\ +\x6f\x8b\x67\xfe\x62\xb0\xfa\xbd\x11\x47\x51\x33\x4f\x61\x52\xf7\ +\x7b\x76\x62\xa6\x3e\x7a\xfd\x1c\xff\x14\x00\xac\xdd\x9b\xf1\x7b\ +\xde\xd7\x05\x0b\xb1\x71\x0b\x38\x50\x53\x38\x1b\x4d\x9b\x52\xf3\ +\x0f\x10\x8f\x5f\x04\x52\x39\x82\xb1\x1d\xae\xa1\x58\xbd\x3a\x5e\ +\xe3\x9f\x1b\x93\x3e\xb5\xed\x11\x74\xfe\x27\x13\xd9\x9a\x07\xf9\ +\xed\x3d\x04\x2f\xee\xeb\xe2\xc3\x96\x87\x35\x74\x0c\xe8\xd1\x33\ +\x35\x52\x19\x36\x73\x90\x3e\xb9\x3d\xa2\x1d\x77\x32\x2d\x90\x0f\ +\x92\x93\xb5\xe6\x4b\x88\xa7\x94\x5f\xab\x80\x53\x3e\x81\xe4\x7c\ +\xee\x75\x59\x63\x84\xe8\x42\xb7\x2f\xea\x9e\xa5\x79\x04\x5a\xa8\ +\xa0\x85\xba\xab\xd5\x93\xbf\x16\x49\x7b\x90\x61\x04\xf2\x97\x00\ +\x03\x00\x94\x33\x1c\xf1\xe4\x3f\xe0\xef\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x23\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ +\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\ +\x79\x71\xc9\x65\x3c\x00\x00\x01\xc5\x49\x44\x41\x54\x78\xda\xa4\ +\x93\xbb\x4a\x03\x51\x10\x86\xff\xb3\x7b\xf6\x22\xab\x92\x28\x16\ +\x22\x44\x44\x04\x57\x2c\xb5\xb0\xc8\x0b\x28\x56\x42\x1e\x40\x10\ +\xa2\x79\x02\x49\x61\x63\x63\x67\xa5\x0b\xda\xea\x1b\x58\x89\x95\ +\x85\x85\xda\x59\xd8\x28\x58\x89\x88\xb0\xb9\x98\xdd\x64\x77\xb3\ +\xce\x9c\xb0\x11\xb1\x8a\x1e\x18\xe6\x5c\xe6\xff\x66\xce\x4d\xa4\ +\x69\x8a\xff\x34\x59\x2a\x95\xd6\xc9\x4f\xfe\x51\xff\x2a\x93\x24\ +\x99\xf2\x3c\xef\x38\x8a\xa2\x81\x94\x86\x61\xa0\x5c\x2e\x6f\xcb\ +\x6e\xb7\x2b\x3a\x9d\x0e\x2a\x95\x0a\xa8\xaf\x16\xd9\xf3\xd6\xd8\ +\xb2\x3e\xc7\x84\x61\x04\x5d\xd7\x91\xcf\xe7\xe0\x79\x47\xbc\x26\ +\x64\x1c\xc7\x82\xaa\x50\x81\xae\xeb\x2a\x4f\x73\x08\x97\x66\x91\ +\x5e\x3f\x80\x2b\xab\xd5\x1a\xa8\xd7\x5b\xb0\x6d\x09\x29\x4d\xb4\ +\x5a\x75\xb0\x86\xb5\x0c\xd0\x78\xc0\x59\x38\x98\xc5\x6c\xdd\xa9\ +\x71\xb4\xc3\x90\xc4\x4d\x04\x41\x87\x4a\xb6\xc9\x4c\x05\x88\xa2\ +\x30\x03\x68\x0a\xa0\x04\x94\x99\xcb\x64\x08\x9b\x51\x98\xa0\xac\ +\x9f\x68\xb7\x13\x98\xe6\x50\x5f\x2c\xa5\x41\x73\x66\x96\x48\xd3\ +\x32\x00\x13\x43\xca\x98\xac\xcc\x2b\xcf\x8d\xcf\x75\x78\x61\x06\ +\x93\x87\x5b\x18\x5d\x5d\x86\x65\xd9\x04\xb3\x15\xe4\x17\x40\x14\ +\x17\x91\x94\x8a\xb4\xbf\x16\x46\xf6\x37\x15\x60\xd8\x9d\x41\x7e\ +\x67\x15\xfe\xee\x19\x44\x61\x0c\xb3\x07\x9b\xd8\x38\xde\x23\x80\ +\xec\x03\x24\x95\xab\x00\xc1\xe5\x1d\x6a\xf7\xcf\xaa\x92\xda\xc5\ +\x0d\x1c\x77\x8e\xc4\x6b\x68\x9e\x5c\xc2\x71\x72\x48\xcf\x6f\xf1\ +\x94\xdc\xe0\x59\x00\x42\x08\x05\x60\xad\x02\xb0\xa8\x57\x72\xef\ +\x10\x2d\x6b\x04\xd6\x5b\x1b\x9f\xa7\x57\x18\x7a\x8f\xa1\xd1\xde\ +\x59\x94\xb5\x20\x68\xaa\x44\x3f\x00\x8e\xe3\xa0\xd1\x68\x64\xcf\ +\x84\x6e\xe5\x03\xfa\xa3\x8f\x50\xd3\x94\xb8\x07\xe8\x41\x2c\x4b\ +\xff\x06\xf8\xbe\x6f\x69\x14\x54\xad\x56\x07\x7a\x89\xac\x61\xad\ +\xa0\xcc\x65\x1a\x4c\xff\xe5\x23\xd0\xd5\xbf\x70\x4d\x26\x59\x8e\ +\x3f\xd6\x80\xfa\x98\xcc\x17\xff\xfd\xce\x5f\x02\x0c\x00\x9d\xc7\ +\x2e\x5f\xac\xac\xac\x4a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x06\x0e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x03\x00\x50\x4c\x54\x45\x00\x00\x00\xff\x00\x00\x00\xff\ +\x00\xff\xff\x00\x00\x00\xff\xff\x00\xff\x00\xff\xff\xff\xff\xff\ +\xdb\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\ +\x24\x24\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\x00\x49\x00\ +\x00\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\ +\x00\x49\x00\x00\x24\x00\xdb\xdb\x00\xb6\xb6\x00\x92\x92\x00\x6d\ +\x6d\x00\x49\x49\x00\x24\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\ +\x92\x00\x00\x6d\x00\x00\x49\x00\x00\x24\xdb\x00\xdb\xb6\x00\xb6\ +\x92\x00\x92\x6d\x00\x6d\x49\x00\x49\x24\x00\x24\x00\xdb\xdb\x00\ +\xb6\xb6\x00\x92\x92\x00\x6d\x6d\x00\x49\x49\x00\x24\x24\xff\xdb\ +\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\x24\ +\xff\xb6\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\xff\ +\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\xff\x6d\x6d\xdb\x49\ +\x49\xb6\x24\x24\xff\x49\x49\xdb\x24\x24\xff\x24\x24\xdb\xff\xdb\ +\xb6\xdb\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\xb6\ +\xff\xb6\x92\xdb\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x92\xff\ +\x92\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x6d\xff\x6d\x49\xdb\x49\ +\x24\xb6\x24\x49\xff\x49\x24\xdb\x24\x24\xff\x24\xdb\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\xb6\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x92\x92\xff\ +\x6d\x6d\xdb\x49\x49\xb6\x24\x24\x92\x6d\x6d\xff\x49\x49\xdb\x24\ +\x24\xb6\x49\x49\xff\x24\x24\xdb\x24\x24\xff\xff\xff\xdb\xdb\xdb\ +\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\xff\xff\xb6\ +\xdb\xdb\x92\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\xff\xff\x6d\xdb\xdb\x49\xb6\xb6\ +\x24\xff\xff\x49\xdb\xdb\x24\xff\xff\x24\xff\xdb\xff\xdb\xb6\xdb\ +\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\xff\xb6\xff\xdb\ +\x92\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\xff\x92\xff\xdb\x6d\ +\xdb\xb6\x49\xb6\x92\x24\x92\xff\x6d\xff\xdb\x49\xdb\xb6\x24\xb6\ +\xff\x49\xff\xdb\x24\xdb\xff\x24\xff\xdb\xff\xff\xb6\xdb\xdb\x92\ +\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\xb6\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\x6d\x6d\x92\xff\xff\x6d\xdb\xdb\ +\x49\xb6\xb6\x24\x92\x92\x6d\xff\xff\x49\xdb\xdb\x24\xb6\xb6\x49\ +\xff\xff\x24\xdb\xdb\x24\xff\xff\xff\xdb\xb6\xdb\xb6\x92\xb6\x92\ +\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\x00\xff\xb6\x92\xdb\x92\x6d\ +\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\xff\xb6\xdb\xdb\x92\xb6\xb6\ +\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\x00\x24\xff\x92\xb6\xdb\x6d\ +\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\xdb\xb6\xff\xb6\x92\xdb\ +\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\x49\xb6\x92\xff\x92\ +\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x00\x6d\xb6\xdb\xff\x92\xb6\ +\xdb\x6d\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\x49\x92\xb6\xff\ +\x6d\x92\xdb\x49\x6d\xb6\x24\x49\x92\x00\x24\x6d\xb6\xff\xdb\x92\ +\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\x49\x00\x49\x24\x92\xff\ +\xb6\x6d\xdb\x92\x49\xb6\x6d\x24\x92\x49\x00\x6d\x24\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\x00\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x00\xff\xb6\ +\x00\xdb\x92\x00\xb6\x6d\x00\x92\x49\x00\xf6\xa2\x08\xf6\x61\x06\ +\xb6\x00\x6d\x92\x00\x49\x00\xb6\xff\x00\x92\xdb\x00\x6d\xb6\x00\ +\x49\x92\x00\x00\x00\x00\x00\x00\x1a\x88\xeb\xf1\x00\x00\x02\xc9\ +\x49\x44\x41\x54\x38\xcb\xb5\x55\x31\x48\x5b\x51\x14\x3d\xf7\xff\ +\x34\xfe\x24\x1a\x0b\x69\x20\x44\x12\x89\x98\x04\x7e\x5b\x74\x10\ +\x1c\x9d\xe2\x10\x37\x41\x04\x6d\xa7\x6a\x34\x4e\x75\xa9\x94\xce\ +\x52\xec\xa2\x53\x42\x63\x87\x2e\x0a\x22\xd8\x49\x29\x3a\xd9\x4e\ +\x82\x94\x48\xe9\x87\x24\x62\x30\x21\x21\x10\x1c\xb4\xe6\xff\x6f\ +\xc8\xf7\x75\x78\xc6\x5a\x2b\x36\x82\x3d\xeb\x7b\xe7\xbc\x73\xde\ +\xbb\xf7\x3e\xc2\x15\xc4\x63\x31\x8a\x4e\x4d\xb1\xd5\xe5\x25\xa9\ +\xa2\x9f\xf5\xab\xba\x1e\x2d\x1f\x9f\x84\x6a\x8c\x89\x00\x60\x22\ +\x32\x9c\xad\xf6\x2d\xab\x24\xc5\x6d\x52\xd3\xe6\xd0\xc8\xa8\x5e\ +\xe7\xd4\x35\x08\xd7\xf0\x21\x91\x08\x1f\x9d\xfc\x8c\xef\x65\xf6\ +\xbd\x05\x45\x41\x4f\x76\x1b\x6e\x2b\x5f\x2b\xaa\xc0\xae\xaf\x0f\ +\x6d\xb2\x8c\x2e\x7f\x67\xce\x61\x6f\x89\x8e\x45\x22\x1b\x57\xf9\ +\x7f\x08\x2e\x26\x12\xaf\x94\xc3\xfc\x5c\x79\x63\x05\x83\x62\x9a\ +\x75\x07\x01\x57\x87\x99\xcc\x36\xbe\xad\x5a\x61\x28\x1d\x54\x59\ +\x32\x05\xac\x19\x01\x72\x86\x87\x21\xb7\x7b\x66\xc6\x23\x91\x77\ +\x97\x82\x75\xcb\x8b\x89\xc4\xab\x6c\x3e\x3f\xa7\xad\xcc\xe3\x65\ +\xf7\x29\xbc\xbd\x16\x54\x1d\x80\x61\x62\xbf\x8f\x65\x80\x58\x23\ +\x98\x8f\x80\xdc\x8e\x86\x85\x64\x33\x2c\xc3\xd3\xf0\x79\xb8\x68\ +\x3c\x16\x23\xaa\xc7\xfc\x71\x98\x5f\xc7\xea\x3c\xde\x0e\x9c\x82\ +\x64\x0b\x6a\x16\x06\x62\x5c\x04\xd7\x32\x31\x02\x4c\x1a\x81\x29\ +\x1a\x5e\xaf\x37\x03\x43\xd3\x78\xdc\xee\x19\x18\x8b\x44\x36\x68\ +\x75\x79\x49\x3a\x28\x96\x52\xdf\x97\xde\x7b\x67\xfd\x69\xb8\x42\ +\x16\x18\x16\x06\x9c\xe3\x76\x08\x80\xa8\x11\x4a\x5b\x1a\xde\x64\ +\x02\x78\x3a\x3a\x91\xeb\x70\xbb\x82\x42\x45\x3f\xeb\xdf\xcb\xec\ +\x7b\x07\xc5\x34\xf3\xf6\x72\x67\xff\x14\x03\x80\x73\xa0\x66\x61\ +\xf0\xf6\x5a\x30\x28\xa6\xd9\x5e\x66\xdf\x5b\xd1\xcf\xfa\x05\x55\ +\xd7\xa3\x05\x45\x41\x77\x10\xa8\x3a\xc0\x63\x36\x08\x62\x9c\xd3\ +\x1d\x04\x0a\x8a\x02\x55\xd7\xa3\x42\xf9\xf8\x24\xd4\x93\xdd\x86\ +\xab\xc3\x4c\x86\x89\xfd\x7d\x67\xb7\x81\xf1\x47\x73\x75\x98\xa9\ +\x27\xbb\x8d\xf2\xf1\x49\x48\xa8\x31\x26\xba\xad\x80\xd9\x46\x37\ +\x54\x65\x23\x36\x39\xd7\x6d\x05\x6a\x8c\x89\x02\xee\x19\x82\x89\ +\xc8\x28\xaa\xbc\x68\xef\x14\xf7\x4a\xec\x6a\x85\xa1\xa8\xf2\xd6\ +\x14\x9c\xad\xf6\xad\x5d\x5f\x1f\x4a\x07\x55\x26\xd6\xee\x18\x9b\ +\x78\xa1\x97\x0e\xaa\x6c\xd7\xd7\x07\x67\xab\x7d\x4b\xb0\x4a\x52\ +\xbc\x4d\x96\x91\x4c\x01\xe6\x23\x5e\xb4\x0d\x9b\x23\xce\x49\xa6\ +\x80\x36\x59\x86\x55\x92\xe2\x82\x4d\x6a\xda\xec\xf2\x77\xe6\xd6\ +\x8c\x00\xe5\x76\x34\x98\x34\x02\x1a\xb9\x59\x81\x77\x4b\x6e\x47\ +\xc3\x9a\x11\xa0\x2e\x7f\x67\xce\x26\x35\x6d\x0a\x43\x23\xa3\xba\ +\xc3\xde\x12\x75\x86\x87\xb1\x90\x6c\x06\x53\x34\x88\x1a\x81\x09\ +\xb8\x39\x3e\x01\xec\xa2\x4b\x98\xc2\xfb\xd9\x19\x1e\x86\xc3\xde\ +\x12\x1d\x1a\x19\xd5\xc5\x78\x2c\x46\x13\x93\x93\x99\x17\xcf\x9f\ +\x69\xa7\x1e\x39\xf4\xf9\xd3\x37\x3c\x51\x55\x3c\x7a\xf8\x00\x4c\ +\x22\x30\x91\xbb\xc1\xc5\x01\xa2\x41\x90\xca\x84\xc2\x17\x0d\xb3\ +\x5f\xf9\x70\x08\x78\x3d\x33\xe3\x91\xc8\xc7\xcb\xe1\x70\xaf\xe3\ +\xeb\xbf\x0e\xd8\xfb\xf8\x02\x7e\x01\xe1\xa1\x75\x0d\x23\xd1\xf1\ +\x01\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x05\xf0\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x03\x00\x50\x4c\x54\x45\x00\x00\x00\xff\x00\x00\x00\xff\ +\x00\xff\xff\x00\x00\x00\xff\xff\x00\xff\x00\xff\xff\xff\xff\xff\ +\xdb\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\ +\x24\x24\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\x00\x49\x00\ +\x00\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\ +\x00\x49\x00\x00\x24\x00\xdb\xdb\x00\xb6\xb6\x00\x92\x92\x00\x6d\ +\x6d\x00\x49\x49\x00\x24\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\ +\x92\x00\x00\x6d\x00\x00\x49\x00\x00\x24\xdb\x00\xdb\xb6\x00\xb6\ +\x92\x00\x92\x6d\x00\x6d\x49\x00\x49\x24\x00\x24\x00\xdb\xdb\x00\ +\xb6\xb6\x00\x92\x92\x00\x6d\x6d\x00\x49\x49\x00\x24\x24\xff\xdb\ +\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\x24\ +\xff\xb6\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\xff\ +\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\xff\x6d\x6d\xdb\x49\ +\x49\xb6\x24\x24\xff\x49\x49\xdb\x24\x24\xff\x24\x24\xdb\xff\xdb\ +\xb6\xdb\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\xb6\ +\xff\xb6\x92\xdb\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x92\xff\ +\x92\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x6d\xff\x6d\x49\xdb\x49\ +\x24\xb6\x24\x49\xff\x49\x24\xdb\x24\x24\xff\x24\xdb\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\xb6\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x92\x92\xff\ +\x6d\x6d\xdb\x49\x49\xb6\x24\x24\x92\x6d\x6d\xff\x49\x49\xdb\x24\ +\x24\xb6\x49\x49\xff\x24\x24\xdb\x24\x24\xff\xff\xff\xdb\xdb\xdb\ +\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\xff\xff\xb6\ +\xdb\xdb\x92\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\xff\xff\x6d\xdb\xdb\x49\xb6\xb6\ +\x24\xff\xff\x49\xdb\xdb\x24\xff\xff\x24\xff\xdb\xff\xdb\xb6\xdb\ +\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\xff\xb6\xff\xdb\ +\x92\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\xff\x92\xff\xdb\x6d\ +\xdb\xb6\x49\xb6\x92\x24\x92\xff\x6d\xff\xdb\x49\xdb\xb6\x24\xb6\ +\xff\x49\xff\xdb\x24\xdb\xff\x24\xff\xdb\xff\xff\xb6\xdb\xdb\x92\ +\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\xb6\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\x6d\x6d\x92\xff\xff\x6d\xdb\xdb\ +\x49\xb6\xb6\x24\x92\x92\x6d\xff\xff\x49\xdb\xdb\x24\xb6\xb6\x49\ +\xff\xff\x24\xdb\xdb\x24\xff\xff\xff\xdb\xb6\xdb\xb6\x92\xb6\x92\ +\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\x00\xff\xb6\x92\xdb\x92\x6d\ +\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\xff\xb6\xdb\xdb\x92\xb6\xb6\ +\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\x00\x24\xff\x92\xb6\xdb\x6d\ +\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\xdb\xb6\xff\xb6\x92\xdb\ +\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\x49\xb6\x92\xff\x92\ +\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x00\x6d\xb6\xdb\xff\x92\xb6\ +\xdb\x6d\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\x49\x92\xb6\xff\ +\x6d\x92\xdb\x49\x6d\xb6\x24\x49\x92\x00\x24\x6d\xb6\xff\xdb\x92\ +\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\x49\x00\x49\x24\x92\xff\ +\xb6\x6d\xdb\x92\x49\xb6\x6d\x24\x92\x49\x00\x6d\x24\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\x00\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x00\xff\xb6\ +\x00\xdb\x92\x00\xb6\x6d\x00\x92\x49\x00\xff\x00\xb6\xdb\x00\x92\ +\xb6\x00\x6d\x92\x00\x49\x00\xb6\xff\x00\x92\xdb\x00\x6d\xb6\x00\ +\x49\x92\x00\x00\x00\x00\x00\x00\xcf\x2a\x02\x04\x00\x00\x02\xab\ +\x49\x44\x41\x54\x38\xcb\xb5\x95\xbf\x6b\xe3\x48\x18\x86\xdf\x19\ +\x59\x30\x04\x82\x70\xd4\x24\x81\x51\x25\x8c\x3a\xa5\x0e\x11\x81\ +\x08\x25\xb0\x57\x9a\x94\x36\xa4\x48\xe1\x22\xb8\xdb\xfd\x1b\xf6\ +\xba\x54\x2e\x54\xe4\x70\x48\x69\x52\x84\x73\x11\x45\x69\x94\x2b\ +\x52\xaa\x13\x3e\x91\x42\xaa\x85\x50\xb5\x03\xfa\x31\x57\x79\xd9\ +\xdd\xbb\x5b\x72\x21\xf7\xf4\xdf\xc3\x3b\x1f\x1f\xef\x10\x7c\x83\ +\xef\xfb\xe4\xfc\xfc\x5c\x86\x61\xc8\xca\xb2\x3c\x2e\x8a\x62\x92\ +\x65\x99\xd7\x75\x9d\x02\x00\x94\xd2\xd6\x30\x8c\x40\xd7\xf5\x59\ +\xbf\xdf\xbf\x77\x5d\x57\xac\x67\xd6\x0e\x82\x1f\xb8\xbe\xbe\xfe\ +\x90\xe7\xf9\x2c\x8a\x22\x23\x49\x12\x00\x80\xa6\x69\x00\x80\xaa\ +\xaa\x00\x00\x96\x65\xc1\x71\x9c\x8c\x73\x3e\x19\x8d\x46\xcb\x6f\ +\xe7\xbf\x13\xce\xe7\xf3\x8f\x4f\x4f\x4f\x9f\x83\x20\x80\x69\x9a\ +\xd2\xb6\x6d\x70\xce\x09\x63\x0c\x00\x20\x84\x40\x9e\xe7\x32\x8e\ +\x63\xa4\x69\x4a\x3c\xcf\xc3\xc1\xc1\xc1\xa7\xf1\x78\xfc\xeb\xda\ +\xa1\xf8\xbe\x4f\xee\xee\xee\x30\x9f\xcf\x3f\x3e\x3f\x3f\x7f\x7e\ +\x78\x78\xc0\xe9\xe9\x29\x0e\x0f\x0f\xc9\xe6\xe6\x26\x01\x80\xba\ +\xae\xd1\x34\x0d\x28\xa5\xd8\xda\xda\x22\x7b\x7b\x7b\x64\x7b\x7b\ +\x1b\xcb\xe5\x12\x8c\x31\xef\xe2\xe2\xe2\xcb\xed\xed\xed\x1f\xbe\ +\xef\x13\xb2\x7e\x66\x14\x45\xbf\x3f\x3e\x3e\x62\x3a\x9d\x42\x51\ +\x14\xd4\x75\x0d\x42\xfe\xb6\x11\x00\x80\x94\x12\xaa\xaa\xa2\x6d\ +\x5b\x5c\x5e\x5e\xe2\xe8\xe8\x08\x8e\xe3\xfc\x32\x1a\x8d\x96\x34\ +\x0c\x43\x96\xe7\xf9\x2c\x08\x02\x0c\x87\x43\x28\x8a\x82\xa6\x69\ +\xfe\x55\x06\x00\x84\x10\x34\x4d\x03\x45\x51\x30\x1c\x0e\x11\x04\ +\x01\xf2\x3c\x9f\x85\x61\xc8\x68\x59\x96\xc7\x51\x14\x19\xa6\x69\ +\xca\xc1\x60\x80\xba\xae\xf1\x5a\xea\xba\xc6\x60\x30\x80\x69\x9a\ +\x32\x8a\x22\xa3\x2c\xcb\x63\x5a\x14\xc5\x24\x49\x12\xd8\xb6\x0d\ +\x21\xc4\x4f\x93\xfd\x53\x52\x21\x04\x6c\xdb\x46\x92\x24\x28\x8a\ +\x62\x42\xb3\x2c\xf3\x00\x80\x73\x4e\xba\xae\xc3\x7f\xa5\xeb\x3a\ +\x70\xce\x09\x00\x64\x59\xe6\xd1\xae\xeb\x14\x4d\xd3\xc0\x18\xc3\ +\x5b\x85\x8c\x31\x68\x9a\x86\xae\xeb\x14\x8a\x77\x86\x52\x4a\xdb\ +\xaa\xaa\x20\x84\x00\xa5\xf4\x2d\x02\x08\x21\x50\x55\x15\x28\xa5\ +\x2d\x35\x0c\x23\x00\x80\x3c\xcf\xe5\x5b\x85\x79\x9e\x4b\x00\x30\ +\x0c\x23\xa0\xba\xae\xcf\x2c\xcb\x42\x1c\xc7\x60\x8c\x41\x4a\xf9\ +\x6a\x99\x94\x12\x8c\x31\xc4\x71\x0c\xcb\xb2\xa0\xeb\xfa\x8c\xf6\ +\xfb\xfd\x7b\xc7\x71\xb2\x34\x4d\xc9\x6a\xb5\x82\xaa\xaa\xaf\x16\ +\xaa\xaa\x8a\xd5\x6a\x85\x34\x4d\x89\xe3\x38\x59\xbf\xdf\xbf\xa7\ +\xae\xeb\x0a\xce\xf9\xc4\xf3\x3c\x2c\x16\x0b\xb4\x6d\x8b\x5e\xaf\ +\xf7\xd3\xa4\x52\x4a\xf4\x7a\x3d\xb4\x6d\x8b\xc5\x62\x01\xcf\xf3\ +\xc0\x39\x9f\xb8\xae\x2b\x14\xdf\xf7\xc9\xd9\xd9\xd9\x9f\xd3\xe9\ +\xf4\x0b\x63\xcc\xbb\xb9\xb9\xc1\xee\xee\x2e\x76\x76\x76\xbe\x9e\ +\xd1\x5a\x4e\x29\x85\xa2\x28\xd8\xd8\xd8\xc0\xcb\xcb\x0b\xae\xae\ +\xae\x70\x72\x72\x82\xfd\xfd\xfd\x4f\xe3\xf1\xf8\xb7\xaf\xe5\xf0\ +\x9e\xf5\xf5\xff\x16\xec\x7b\x7c\x01\x7f\x01\xe6\x7c\x7d\xed\x70\ +\xe4\x03\xa4\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x2d\x7f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x1d\xd8\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\ +\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x65\x78\x69\x66\x00\x00\x78\ +\xda\xa5\x9b\x59\x96\xe4\x3a\x92\x64\xff\xb9\x8a\x5e\x02\x31\x03\ +\xcb\xc1\x78\x4e\xef\xa0\x97\xdf\x57\x14\xf4\xc8\x78\x91\x2f\xb3\ +\x2a\xab\x62\x72\x0f\x73\x1a\x09\xe8\x20\x2a\xa2\x50\x7b\xf6\xff\ +\xfb\xbf\xe7\xf9\x3f\xfc\x2a\xe5\x8d\x4f\x4c\xa5\xe6\x96\xf3\xcb\ +\xaf\xd8\x62\xf3\x9d\x6f\xea\x7b\x7f\x75\xfb\xd7\xbd\xd1\xfe\xbd\ +\xff\x89\xdf\xcf\xdc\x5f\x5f\x7f\x7e\xfd\xc0\xf3\x52\xe0\x6b\xb8\ +\xff\xad\xf9\xbb\xfe\xe7\x75\xf7\xeb\x06\xf7\x4b\xe7\xbb\xf4\xdb\ +\x8d\xea\xfc\x7e\x30\xfe\xfa\x83\xf6\x3d\xc0\xd7\x3f\x6e\xe4\xef\ +\x97\xa0\x15\xe9\xfb\xf5\xdd\xa8\x7d\x37\x0a\xfe\xfe\xe0\x67\x85\ +\xfd\x6e\xeb\xcd\xad\x96\xdf\xb7\x30\xf6\xfd\xfa\xbd\xff\x9a\x81\ +\xbf\x8f\xfe\x89\xf5\xaf\xcb\xfe\xa7\xff\x17\xac\xb7\x12\xcf\x09\ +\xde\xef\xe0\xc2\xcb\xbf\x21\xf8\xbb\x80\xa0\xbf\xe1\x09\xdd\xbe\ +\xe9\xfc\x98\x9f\xe8\x5f\x7b\xa5\xf0\x6f\x0a\xed\xbb\x19\x06\xf9\ +\x3b\x3b\xfd\xfa\xc5\x75\xcf\xd1\x52\xe3\xdf\x5e\xf4\x17\xaf\xfc\ +\xfa\xce\xfd\xfd\xeb\xcf\x9f\xde\x8a\xfe\xbb\x24\xfc\x61\xe4\xfc\ +\xeb\xeb\xdf\xbe\xfe\xb8\xf4\xc7\x0f\xc2\xaf\xe7\xf8\xdf\x9f\x1c\ +\xeb\xf7\x9d\xff\xeb\xeb\xb3\xb9\x79\x57\xf4\x87\xf5\xf5\xf7\x9c\ +\x55\x8f\xed\x99\x5d\xf4\x98\x31\x75\xfe\x36\xf5\xb3\x15\xfb\x8e\ +\xeb\x06\x8f\xd0\xa3\xeb\xc3\xd2\xf2\x5b\xf8\x9b\xb8\x45\xb1\xdf\ +\x8d\xdf\x95\xa8\x9e\x84\xc2\x7a\xe7\x3b\xf8\x3d\x5d\x73\x1e\x77\ +\x1d\x17\xdd\x72\xdd\x1d\xb7\xed\xeb\x74\x93\x25\x46\xbf\x1f\x5f\ +\xf8\xc6\xfb\xe9\x83\xbd\x58\x43\xf1\xcd\xcf\x20\xff\x45\xfd\x76\ +\xc7\x97\xd0\xc2\x0a\x15\xdf\x4e\x73\x7b\x0c\xfe\xd7\x5a\x9c\x3d\ +\xb6\xbd\xf3\xb1\xa7\x55\x9e\xbc\x1c\x97\x7a\xc7\xcd\x1c\x6f\xf9\ +\x8f\x7f\x3f\xff\xe9\x1b\xce\x91\x6d\x9d\x7b\xeb\x2f\x5b\xb1\x2e\ +\xef\x65\x6c\x96\x21\xcf\xe9\x5f\x2e\xc3\x23\xee\x7c\x46\x4d\x66\ +\xe0\x9f\xdf\x7f\xfe\x92\x5f\x03\x1e\x4c\xb2\xb2\x52\xa4\x61\xd8\ +\x71\x6f\x31\x92\xfb\x07\x12\x04\x73\x74\xe0\xc2\xc4\xd7\x9b\x83\ +\xae\xac\xef\x06\x98\x88\x47\x27\x16\xe3\x02\x1e\xc0\x6b\x2e\x24\ +\x97\xdd\x5b\xbc\x2f\xce\x61\xc8\x8a\x83\x3a\x4b\xf7\x21\xfa\x81\ +\x07\x5c\x4a\x7e\xb1\x48\x1f\x43\xc8\xf8\xa6\x7a\x3d\x9a\xb7\x14\ +\x67\x97\xfa\xe4\x79\xf9\xe1\x75\xc0\x0c\x4f\xa4\x90\xc9\xb0\x8a\ +\x87\x3a\xce\x8a\x31\x11\x3f\x25\x56\x62\xa8\xa7\x90\x62\x4a\x29\ +\xa7\x92\x6a\x6a\xa9\xe7\x90\x63\x4e\x39\xe7\x92\x05\x8a\xbd\x84\ +\x12\x9f\x92\x4a\x2e\xa5\xd4\xd2\x4a\xaf\xa1\xc6\x9a\x6a\xae\xa5\ +\xd6\xda\x6a\x6f\xbe\x05\x40\x33\xb5\xdc\x4a\xab\xad\xb5\xde\x79\ +\x66\xe7\xce\x9d\x77\x77\x2e\xe8\x7d\xf8\x11\x46\x1c\xe9\x19\x79\ +\x94\x51\x47\x1b\x7d\x12\x3e\x33\xce\x34\xf3\x2c\xb3\xce\x36\xfb\ +\xf2\x2b\x2c\xf0\x63\xe5\x55\x56\x5d\x6d\xf5\xed\x36\xa1\xb4\xe3\ +\x4e\x3b\xef\xb2\xeb\x6e\xbb\x1f\x42\xed\x84\xe7\xc4\x93\x4e\x3e\ +\xe5\xd4\xd3\x4e\xff\xe5\xb5\xcf\xad\xff\xf4\xfb\x3f\xf0\x9a\xfb\ +\xbc\xe6\xcd\x53\xba\xb0\xfc\xf2\x1a\xaf\x52\x31\xbe\x5b\x38\xc1\ +\x49\x92\xcf\x70\x98\x7f\xa2\xc3\xe3\x45\x2e\x20\xa0\xbd\x7c\xf6\ +\x56\x17\xa3\x97\xe7\xe4\xb3\xb7\x01\x7f\x21\x79\x16\x99\xe4\xb3\ +\xe5\xe4\x31\x3c\x18\xb7\xf3\xe9\xb8\x1f\xdf\x3d\xfe\x7a\x54\x9e\ +\xfb\x5f\xf9\xed\x29\xf1\x2f\x7e\xf3\xff\x53\xcf\x3d\x72\xdd\x7f\ +\xe8\xb9\x7f\xf6\xdb\xdf\x79\x6d\xa9\x0c\x4d\xf3\xd8\xcd\x42\x19\ +\xf5\x0d\x64\x1f\x3f\xdf\xb5\xfb\xda\x55\xec\xee\xd7\xcd\x4b\x6e\ +\xe3\xa7\x7a\xa8\x22\xa5\x00\x2e\xe9\x70\xe9\x72\xdc\x75\xef\x96\ +\x4e\xd8\xa5\xa6\x91\x72\x25\xe4\x0f\x46\x65\x1b\x06\x54\x01\xa4\ +\xda\x67\xcd\xc1\xcd\x53\xdd\xc9\x81\x9d\xc1\xc7\x82\x8d\xd2\x6e\ +\x41\x37\xc1\xf3\x27\x7a\x7d\xd7\x4e\x5c\xb1\x1c\xae\xef\x45\xff\ +\x77\x25\xbe\x6e\xb2\xd5\xc4\x7f\xf1\x4f\x5e\xe3\xec\x31\xf5\xb6\ +\x18\x0a\x31\x9a\xc7\xf2\xe7\x49\x71\xb9\xcd\xa6\x7d\x4a\xb3\xef\ +\x41\x39\x0b\x93\x74\x1f\x80\xa5\x5f\x98\xf8\xbc\x2d\x15\xbf\xdf\ +\x86\xcb\x89\xa7\x19\x5c\x2d\x6e\x9d\x95\x3b\xb0\x3e\x7d\x8f\xab\ +\x70\xdf\xb2\xb1\xd1\x3a\x67\x9c\xe6\xef\xd3\x81\x69\x77\x78\x07\ +\xcf\x4a\x67\xf7\x59\xf4\x8e\x82\x11\x57\xd7\xcf\xe7\x09\x6d\x1c\ +\xef\xce\x26\x1e\x4e\x62\xdb\x51\xd1\xb0\x86\x7f\xc6\x60\xc9\x40\ +\x4b\x79\xc3\x26\x52\x58\xed\xe6\x46\x44\x23\x51\xb4\xc3\xe1\x79\ +\x65\xbb\x33\x71\x71\xc0\xb0\xa1\xac\xc0\xae\x31\x20\x8f\x5f\xc7\ +\x12\x42\xe1\xb5\xd6\xa3\xcc\x58\x44\xc6\xe8\x85\x80\x3c\x65\x34\ +\x57\x77\xad\x43\x0e\x39\xb0\x13\xd6\xb2\x6d\x2d\xa5\xeb\x4e\x67\ +\xee\xe1\xfd\xf0\x58\x63\x96\xd3\x53\x1c\xe2\x03\x6b\xac\x67\x57\ +\xf0\x6c\x25\x90\x0f\xe7\xed\xde\x65\xf9\x46\xf4\xf1\xc4\x30\xf3\ +\x66\xff\x07\x2f\x9e\xed\x7b\x7d\x43\x77\x61\xe5\xe6\xc7\xdb\x30\ +\x7d\x23\xc3\xde\x59\x2b\xe1\xb4\x42\x7b\x92\x39\xde\x29\x08\xa6\ +\x57\x92\xe8\x06\x9d\x4d\xdd\x1b\x88\x3e\xac\xd1\x93\x5b\x79\xbc\ +\xba\x92\x0c\x6b\xc3\x99\x77\x77\x2a\x7c\x53\xa6\x59\xef\xa9\x2b\ +\xe0\x22\xdd\xde\x11\xc9\xf7\xf6\x35\xfd\xdc\xe2\x74\x8c\x64\x41\ +\x51\x4f\x8c\x87\xdd\xb4\x55\x78\xf9\x9f\x57\xfd\xdc\x65\xf7\x93\ +\x06\xb1\xcd\x1b\x22\xe9\x83\xd3\x94\x34\xcb\xc7\x5c\xba\xf7\x0a\ +\xf8\xb1\xf0\x00\xa6\x18\xba\x86\xab\xed\x9e\x29\x6d\xc2\xa8\x2f\ +\x82\xe7\x7d\x72\x4b\x3e\x2d\xef\xab\xde\x49\x72\x1d\xd2\x9c\xb4\ +\xe1\xf2\xd2\x47\xfa\xd7\x9e\x7a\x85\x3d\x79\x28\x44\x14\x54\xf9\ +\xe9\xbb\x8c\x38\x6f\x3c\xac\x34\xa0\x59\xf0\x5c\x02\xbd\xf8\xb0\ +\xb3\xc2\x81\x5c\x4a\x25\x1c\xa2\x60\xe9\x76\x6d\xae\xd3\xde\x6b\ +\x57\xe5\x5f\xda\x63\xf4\x53\xd3\x83\xb9\xa8\x3b\x6b\x5a\xae\x95\ +\x9b\x2e\x1b\x8c\x61\x51\xb2\x4c\x8a\xad\x93\xd1\x3c\x75\x37\xdb\ +\x56\x39\xde\xd6\xbb\xbd\xef\x07\x68\xe9\x61\x91\x3d\x01\xf0\x6f\ +\x79\xe5\x92\x5a\xa9\x9d\xd8\x6b\xed\x5d\xbd\xf7\xd5\x20\x12\xdb\ +\x4d\xc8\x81\x08\x82\x23\x33\xdf\x4a\x2a\x74\xed\xa8\x57\xa8\x39\ +\x46\xfa\x32\xd3\xed\x92\x58\x0d\x25\x7b\x64\x0c\xde\x49\x6d\xad\ +\xd1\x56\xd1\x4f\x77\x5a\x85\x72\xde\x56\xb1\x97\x7d\xad\x5c\x40\ +\xd0\xba\xb8\xfb\x7a\xf3\x68\xdb\xc7\x81\x17\xf2\x6a\x1e\xe6\x5f\ +\x33\xdf\x80\x18\x49\x65\x63\xb2\xe0\x36\x49\xd1\xbd\x21\xd8\xc1\ +\xfd\x09\x40\x7f\xf3\x95\xc0\x7f\x81\x90\x87\x48\xed\xa3\xd4\x91\ +\x01\xc5\xcc\xc2\x78\xe4\xea\x00\x12\x00\x91\xb7\x1f\x6d\xc6\x3c\ +\x23\x1c\xaa\x82\x93\xaf\x45\x09\x96\x2d\x69\x3b\xb3\x14\x91\x82\ +\x07\xe2\x8c\xe3\xb1\x3c\x92\x37\x01\xf2\x29\x3b\x36\x97\xbc\x62\ +\x0c\x44\xd0\xcf\xc8\xe0\x8a\x63\x40\xd8\xb8\xfa\xca\x94\xbc\xd1\ +\xce\x70\x99\xe8\x3d\x99\x68\x23\xb1\x4e\xf0\x39\x3e\x63\xa7\x79\ +\x5e\x20\x78\x78\x82\xaf\x92\xe7\x78\x07\xc4\x14\x78\x4c\x85\xdd\ +\x0e\x95\xdb\x0a\x5e\xa8\x33\x98\x96\x00\xc5\xff\x65\x1a\xec\x24\ +\x41\xa0\x0f\x69\xa6\xc7\x52\xac\xf4\x75\xd1\x86\x44\xdf\xd1\xfc\ +\xdb\x5b\x26\x1c\x20\x2a\x2b\xa6\x39\x03\x65\xc6\x6d\x4a\x10\x88\ +\x8b\x6c\x71\xb1\x40\x06\x49\xbe\x12\x78\x40\xee\x83\x4a\x9b\xdc\ +\xcd\xa4\xd3\xca\x79\x75\x97\x01\x96\xb8\x03\x58\xc1\x0d\x16\x30\ +\x7b\xc6\x1c\xf0\x5a\xe2\xb6\xac\xe3\xc7\x06\x9f\xf3\xc9\xae\xc1\ +\x38\x4b\x0e\x5b\xa9\x33\xc3\x72\x60\x76\x25\x92\xb6\xab\x20\x6e\ +\x1c\xa4\x6b\x1e\x64\x3f\x9e\x8b\x85\x50\x04\x95\xb8\x25\x81\x5c\ +\x29\x02\x10\x53\xec\x66\x0f\xa6\x54\x9d\x5f\xd6\xe5\xc2\x74\x8d\ +\xdd\x47\xe0\x7a\xbc\xb7\xfc\xa6\x36\x03\x6c\x10\xaf\xed\x67\x19\ +\x77\xc3\xa9\xdc\x58\xee\x3d\xea\x96\x71\x70\xd7\x7f\xdc\x92\xe0\ +\xdb\x21\x3e\x2f\x5b\x87\xfd\x2f\xe1\xdd\xd0\x96\xce\x45\xa8\x9f\ +\xeb\x55\x55\x44\x2d\xab\x05\x2b\x50\xed\xe6\xd8\xce\xc1\xbf\x21\ +\xe2\xf0\x7a\x55\x16\x4a\xa4\x22\xfb\xcb\xe5\x06\x3f\x00\x16\xe4\ +\xf3\x4a\x05\x15\xc0\xed\x7b\x23\xd7\x6e\xde\x75\x12\x1d\xdf\xbf\ +\x33\xd7\xe3\xd6\x0c\x9e\x54\xda\x96\x3e\x61\x2e\xbc\x16\x41\x2f\ +\x6e\xf4\x0e\x43\x49\xfe\xa4\x8b\x4c\x78\x75\xac\x44\xb2\x10\x16\ +\xd8\x0a\xbe\x40\x0d\x99\x2e\x9f\xe1\x53\x9c\x64\xe8\xda\xb3\xb8\ +\x16\xea\x06\x0c\xf7\x03\x70\x98\x93\x58\x76\x27\x8b\xcd\x2a\x1e\ +\x78\x00\x89\x06\xcb\x93\x1b\x41\x8a\xb9\x7d\xb9\xc1\x10\x88\xf5\ +\x40\xd6\xbb\x2d\x82\xc0\x7b\x15\x0c\x27\xac\x27\x8c\x8a\x33\x93\ +\xfb\x97\xf1\xc4\xde\xc9\xa2\x8d\x06\xf5\xcb\x6c\xd5\x80\x33\x41\ +\x24\x1b\xee\x08\x73\x79\x02\x16\xf2\xa4\xf7\x1a\x54\x75\xb3\xd8\ +\xed\x1a\x71\x43\xac\x91\x93\x88\xa4\x91\x40\x26\x02\x8a\x7d\xab\ +\x1a\x04\xea\x03\x16\x47\xfe\xf8\x41\xf6\xb9\x0a\xd4\x11\x48\x58\ +\x5f\xba\x7f\x4c\x15\x5f\x20\xe2\xa5\xd8\xaf\xd7\xdf\xed\x65\x9f\ +\x3e\xa7\xab\xce\x4f\x56\x55\xe0\x12\x0d\x7c\x5e\x63\x0f\x36\x54\ +\x07\x65\x33\xf3\xef\x58\xb5\x8d\x87\xbc\x0f\xc1\x75\x2e\x05\x54\ +\x0e\xdc\x1b\xf4\x78\xf3\x3f\xd3\x17\xd2\x2d\x6d\x96\x49\xf2\x55\ +\x67\x71\xd5\x20\x3c\x7c\x03\x9f\x87\xa4\xe7\x87\x6c\xce\xa4\xa8\ +\x03\x18\xd7\xdc\x3d\xe4\x02\x2a\x00\x8f\x88\xe7\xb5\x49\xad\x9c\ +\xaa\x4a\x68\x4d\xbe\x50\x54\x85\xe1\xd4\xa3\xc1\xdb\x65\x45\xd2\ +\x20\x63\xa9\xb3\xe2\x79\xd8\x0b\xf0\x45\x24\x50\x34\x28\x03\x42\ +\xa9\x53\x2b\x8f\x18\x04\xce\x81\x45\x18\xee\x18\x48\x4d\xdc\x7d\ +\xa4\xbe\x85\x7c\x6f\xa9\x7e\xbe\x14\x75\x2e\x84\xd7\xec\x07\x8a\ +\x40\x75\xa0\xf2\x02\x64\x56\x00\xc4\xb9\xd0\x86\x62\x12\x33\x92\ +\x10\xa0\x54\xe8\x1b\xca\x05\x66\x0e\xd0\x6d\x24\x14\xca\xf1\xc2\ +\xf4\x75\xb6\xd2\x59\xeb\x0e\x68\x91\xd9\x29\xad\x70\xdb\xde\xd8\ +\xdf\x10\xc0\x8c\x0c\x95\xc4\x1f\x43\x59\x54\x97\xd0\x28\xdf\x32\ +\xed\x81\x35\xd0\x09\x2a\x08\xac\xbf\x7d\x03\x5b\xd4\x4d\xec\xb0\ +\x9e\x3c\x30\xf1\x8a\x98\x44\x2c\x66\x27\x6a\xd6\x86\x82\x24\x00\ +\x22\x55\x29\xce\x66\x01\xff\x41\x9c\x6e\x9a\xe4\x39\x8b\x7d\x34\ +\xa8\xf0\x2d\x81\xc5\x70\xc8\xdc\x67\x54\x99\xbf\x15\x9e\x47\xdf\ +\x5c\x6f\x2a\xb7\xec\xb8\x89\x53\x61\xbc\x71\x5e\x0a\xaa\x7e\x92\ +\x65\x03\x88\x80\xad\x8b\x04\x65\xbb\x14\xe9\x07\x8e\xad\xeb\x6e\ +\x21\x3a\xd7\x4e\xc5\x82\x34\x08\x5e\x45\x35\x30\x52\xe8\x2a\xd4\ +\x47\xce\x87\xc9\xdf\x3a\x4b\xed\x71\xe0\x0e\xf7\xda\x73\x87\xa7\ +\xf6\x54\x4b\x1e\x54\x6e\x0f\x8a\x52\x36\xe1\x0b\x50\xae\x84\x8b\ +\x41\x75\x6e\xd5\x12\xf9\x49\x98\x21\x42\x3a\x8c\xb7\xc2\x64\xa1\ +\x08\x90\x13\x52\x7d\x42\x87\xda\x6e\x94\x85\xf7\x51\x91\x47\x50\ +\x56\x0f\x4b\xe1\x16\x2c\xdf\x1b\x99\xaa\xc4\xf6\xda\xc4\x30\x6c\ +\x33\xc3\x41\xd9\x3c\x7a\x02\xce\x0f\x52\xa0\xc7\x53\x03\xaf\x75\ +\xff\x56\xde\x09\xc8\x42\x6b\x42\x05\x7d\xed\x01\xdc\x9e\x18\xd6\ +\x7e\xc4\xe1\x5b\x41\x53\xb8\x5c\x7c\x4c\x08\xd4\xc1\x63\x50\x2f\ +\xa3\xbe\x90\xbe\xa5\x14\xc1\xec\xae\xad\x9b\x46\xf0\x15\x83\x5a\ +\x8f\x9c\x3d\x75\xa1\x47\x78\xce\x84\x30\x2b\x0f\x59\x6f\x2f\xd5\ +\x6c\x4f\xe8\xa8\xa8\x17\x95\xb9\xd3\x72\x05\x12\x41\xa0\x6e\x9e\ +\xc3\x80\x49\x06\x7c\x04\x1a\xbf\x6c\xa8\x38\x3c\x4b\xc5\x33\x6c\ +\xaa\xca\x9a\x90\xcf\x09\xc1\x54\xba\x11\x04\x83\xea\xb3\x85\xd6\ +\xf7\x16\x85\x65\x91\xec\x19\x39\xd0\xba\x4a\xf6\x5e\x1d\x45\xf4\ +\x26\xa1\xa3\x58\xf0\x24\xcb\x60\x2b\x64\x3d\x7f\x33\xd7\x5a\xc5\ +\x45\xe1\x19\xda\x29\x20\x08\x3e\xd6\xdc\x55\x49\x51\xdb\x80\xf2\ +\x3a\xb6\x35\x37\xe5\x75\x44\xce\x3e\x00\x2b\x59\x91\x26\xd4\x71\ +\x82\x76\x0d\x18\x6b\x3c\x13\x2b\xc0\xb0\x28\x54\x03\xfb\xaa\x64\ +\x62\x20\x18\xfb\x3b\x2d\xdd\x0a\xfb\xa7\x40\x12\xd7\xbb\x9e\x2f\ +\x01\x28\xd4\xfb\x15\xcd\x71\x46\xc8\xde\x86\xaf\xa6\x2b\x90\xc4\ +\xe5\x33\x18\x8a\x1b\xc5\x71\x2e\x12\xb9\xb1\xe0\xdd\x95\x65\x35\ +\xb5\x34\xb6\x3a\x33\x2b\xd6\x4e\x54\x9c\x82\x01\xa8\xf5\x24\x25\ +\x4b\xe7\x86\x79\x1a\xcc\x51\xab\x61\x57\x41\x5c\x63\x0a\xdc\x1c\ +\xb1\x35\xd2\x84\x0d\xe1\xce\x40\x75\x99\x10\x76\xd4\xcc\xcc\x50\ +\x64\xad\x58\x9d\x8a\x0d\x4d\x8a\x25\x8b\xda\xc9\x36\x98\x73\x9d\ +\x4b\x62\x40\xcf\xf3\xa1\xa7\xff\x41\x4f\x23\x90\x97\xb1\xa1\x08\ +\x20\x24\xa8\x8e\xad\x6c\x47\x74\xa3\x2c\x54\xe8\x54\xfc\xa6\x27\ +\x46\x8b\x48\xe8\x32\x87\xc1\xef\x10\x38\xb7\x58\xaf\x4c\x49\x3e\ +\x56\x7d\x9d\xef\xcf\x5e\x07\xee\x86\xd0\x0d\xc8\x2a\x28\xc0\x5c\ +\x8b\x1b\xb7\xea\xc1\x08\x34\x76\x7f\x9d\x9f\x48\x5c\x20\x1f\x16\ +\xc1\xfe\xa8\xf3\x05\x7c\x79\xe5\x41\x32\x5c\x6c\xb1\xe3\x22\x43\ +\xc8\x1d\x6e\x55\x13\x44\x80\xd9\xaa\xb1\x07\x74\x12\x85\x9a\x16\ +\x31\x98\x8d\xb8\xc7\x20\x18\x87\xdb\x41\x52\x3a\xa6\x2b\x88\xb9\ +\x8c\x12\x40\x3b\xe0\xef\x07\xde\x43\xdd\x87\xe3\xbf\x85\x0b\x09\ +\x9c\x8e\x12\x21\x00\xba\xe8\xd4\xb8\x9c\xe3\x75\xd7\x42\x91\x1d\ +\x27\xd2\x71\x60\x43\xd8\x62\x8f\x91\x38\x2e\xaf\xf8\x90\x6c\xf4\ +\x4a\x50\xc1\x99\xf4\x7e\x16\x05\xa0\x2e\x11\x83\x74\x6d\x51\xe6\ +\x50\xfa\x80\xf2\xa3\xdd\x10\x29\xf6\xf5\x1f\x28\x19\xa4\x9b\x28\ +\x90\x0b\xc5\xc8\x7a\xa9\x0b\x8b\x70\x26\x5d\x89\x3a\xa7\x3f\xe2\ +\x36\x6a\x3a\x7a\xf5\x11\x91\xf3\x01\x27\xcf\x2c\x8a\xb2\x1d\xf8\ +\xea\x4d\x81\x42\x5e\x59\x06\x38\xff\x20\x69\x20\x17\xef\x7b\xb9\ +\x8e\x4a\x24\xc6\x63\xf7\xd8\x8e\x20\xe9\x6a\x22\x53\xc7\xd1\xfb\ +\x76\xc5\x5d\x4d\x70\x66\xce\x19\xf2\x6e\x19\xa7\xac\x77\xb8\x07\ +\xeb\x20\x3a\x3a\xf0\x44\x79\xf2\x06\xe5\x72\xcf\x4b\x51\x2d\x50\ +\x2d\x4a\x5a\x9c\x5d\x1c\x83\xb4\xf1\xd9\x2a\x27\xb7\x06\x3d\x93\ +\x1a\xd6\xf9\xa7\x84\x86\x27\x44\xe0\x3d\xea\xc7\xea\x43\xc2\xf9\ +\xea\x4c\x01\x23\xe7\xa3\xf6\xcb\xf2\xe2\xf1\xa2\xc1\x71\x08\xad\ +\x76\xaa\x6a\x29\x00\xaf\x68\xa8\xbb\x4c\x2d\x92\x57\x1e\xd6\x48\ +\xcc\xf7\x64\x26\x6b\x5e\xd4\xee\x2d\x82\x70\x72\x65\x98\xd4\x19\ +\x92\x45\x42\xf4\x66\x8a\x2a\x98\x45\x5f\x56\x09\x39\x48\x2a\xfd\ +\x08\x09\x24\x44\xf5\xce\xab\x3b\x0a\x71\xa9\xaa\xca\xc0\xe3\xec\ +\x92\x25\xec\x1d\x32\xbd\xae\xa7\x7c\x15\x82\x6c\x15\x98\x08\x1d\ +\xc6\x69\xe9\x0f\x0f\x3f\xbf\xb9\xb8\xe0\x37\x4f\xf0\x01\x26\x23\ +\x56\x72\xa5\x6e\x8a\x9c\x97\xf6\x43\x65\x21\xe3\xd3\xce\x2b\x2d\ +\x12\xa3\x7c\x81\xa0\xdb\x7f\x58\xf1\xe8\xee\xb5\x53\x1d\x60\x1a\ +\x7e\x29\x5f\x78\xc8\x5a\x14\x82\x99\x03\x75\x0a\xf8\xab\x8b\x1a\ +\x49\xc5\x08\x94\xe2\x44\x3a\xf7\xb9\x7f\x69\xb9\xeb\x6d\x9e\xf3\ +\xf4\xf4\xc9\xb9\xf0\x4b\xce\xed\x7a\x19\x92\xfb\xc7\x13\x5f\x38\ +\xdb\x90\x15\xe1\x69\xa9\xae\x24\x8c\xc7\x03\x90\xa6\x80\x2a\x21\ +\xe8\xce\x93\x29\x5e\x19\xb2\x89\xf7\x11\x03\x38\x06\x32\xe7\x5f\ +\xa2\x04\x17\xd7\x28\x3d\x0c\x83\x57\xc9\xc8\x60\x9a\x3d\x00\x38\ +\xb7\x0e\x0f\x10\x2e\x61\x2d\xee\xe4\x64\x23\xcb\xe1\x64\x39\x1c\ +\x15\x86\x3b\x62\x77\x3d\x7c\x23\x89\x66\xbf\x1e\xdb\x61\x26\xa3\ +\xa7\x55\xd7\x5b\x9b\x29\xc1\xfc\x60\xe6\xfc\x00\x9a\x36\x03\x24\ +\xa2\xa3\x55\xf6\x1e\xde\xa1\xb4\xd4\x20\xa1\xdc\x82\xa1\xe2\x4c\ +\x9e\xf4\xc4\x89\xf2\x95\x0f\x32\xe0\xb1\x1e\xd5\x51\x17\xa6\x9b\ +\x56\xc6\xe3\x43\xd2\x6c\x97\x27\x48\x82\xab\x74\x64\xe8\xed\x22\ +\x0e\x32\x28\x9d\x28\x5d\x9b\xab\x5c\xa6\x72\x64\xe5\x27\x1e\xe2\ +\x09\xe8\x1a\x95\xe0\xa1\x7a\xa7\xa5\xbd\xb7\x81\x55\x2f\x42\xf2\ +\x6c\x3c\xc5\x5f\x84\x0a\x8c\xa3\x95\x70\x0b\x5f\x94\xac\x57\x2b\ +\x85\x68\x22\x32\x61\x16\x14\x0b\xb9\x29\xa7\x0b\xbc\x2a\x6f\x21\ +\x5c\x2d\xe7\x9f\xad\xc6\x84\xdb\x00\xe5\x3e\xc6\xcf\x09\x44\x6e\ +\x01\xb5\x4c\x1d\x28\x07\x04\x7c\x6c\xec\x8f\x6a\x4b\x7c\xa9\x25\ +\x84\x0e\xf7\x5f\xca\xfd\xf6\xf5\xf9\xf3\x85\x7f\xf3\xd5\xc7\xae\ +\x86\xe1\xad\xb2\x57\x91\x0f\xc8\x59\xc3\xe6\xc8\x2c\x5e\x22\x01\ +\x8b\x63\x05\x08\x6f\x6b\xc1\x47\xa5\x89\xea\x7f\x25\x96\x29\xf2\ +\x22\xdc\x0d\xbe\x22\xa5\x2b\xb0\x14\xb2\x88\x86\xed\x29\x09\x04\ +\xc3\xa5\xf4\x96\x47\xe5\x06\x4e\x84\x4e\xee\xe9\x03\xd6\x86\x54\ +\x2d\xd3\xe4\x18\x72\x51\x0c\xc0\x74\x22\xa9\xe7\xdb\xf5\x1f\xa8\ +\x35\xdf\x4f\x3a\x13\x0c\x00\x0d\xd4\xaf\x12\x3a\xb8\x2a\x0c\x11\ +\xea\xbd\xb3\x47\x04\x53\x89\x72\x24\x95\x0b\xc1\x49\x34\x12\x93\ +\xc3\x54\x24\x35\x20\x58\x7f\xc4\x6e\x52\x6e\x69\x30\x8a\x01\xf8\ +\x47\x5d\xa2\x82\x72\xba\x2a\x49\x03\x10\x93\x3a\x2f\x70\x07\x05\ +\x9a\x74\x43\x24\x4f\x87\xb7\xc2\x08\x08\x2a\xce\xd8\x30\xf4\x62\ +\x2f\xdf\xa8\xd8\x5a\xad\x7f\x80\x35\x92\xfd\x02\xad\x31\x0b\x55\ +\x4e\x03\x5a\x4c\xc8\xa5\xce\x6a\x2a\x95\x0c\x9c\x9b\x08\xb1\xf8\ +\x8e\xd1\xe0\x5a\x6f\x7e\x49\x4b\x92\x31\xab\xdd\x85\xca\x3e\x25\ +\x19\xa4\xa9\x23\x2c\xf6\x04\x49\xe7\xdd\x37\xab\x9a\x6a\xaf\xca\ +\xa9\x2c\x47\xd6\x8e\x98\xc0\x17\xf0\x3e\x4a\x56\x50\xf4\xd5\x16\ +\x1b\xb0\x26\xd6\xfc\x40\x50\x40\x20\xe0\x83\x9d\x52\xac\xb2\x38\ +\x57\x76\xff\x88\xd8\x5f\x01\xdb\xd5\xd7\xf1\x1b\xe9\x48\x31\x80\ +\x74\x42\x62\x45\xa2\xf6\x40\xb8\xaf\x19\x9f\x93\x03\x15\x69\x83\ +\xd1\x42\xf8\xa8\x1a\x57\xd5\x16\x24\x7a\x8b\x4f\x15\x06\x08\x50\ +\xfc\x37\x42\xed\xf9\xf7\x17\xc0\x0e\x12\x2a\x44\x8d\x65\x20\x8d\ +\xc2\x8a\x9c\xdd\x56\x70\x31\x2d\x55\xd0\x05\xe9\x18\xb9\xc4\xa0\ +\xf6\x56\xb5\xa5\x7a\x5c\xda\x30\x08\x82\x9f\x51\xb8\xd8\x86\x04\ +\x7a\xcb\xa9\x51\xce\xe7\x5e\x75\xb6\x25\xce\x63\x5c\x1e\xf5\xb4\ +\x44\x4b\xb3\x28\xeb\x93\x09\x3f\x8a\x1a\xb8\x72\x70\xef\x44\x6d\ +\xe6\xbd\xf8\x0a\x6b\xa6\x12\x90\x81\x70\x1e\xac\x9d\xab\x50\x44\ +\xbc\xd9\x12\x84\xe2\x5e\xad\xbb\xb5\x51\x5b\xe2\x25\x2f\x2a\x1b\ +\xb0\x43\x5e\x4b\x19\xc2\x67\x96\xb7\x3e\x23\xa0\x8f\x08\x6f\x21\ +\x42\xf3\x47\xd8\x50\xdd\xde\x6a\x89\x0e\x34\x27\xc8\xfa\x5f\xc3\ +\x82\xd5\x21\xfc\xf6\x1a\xa6\x3f\xd8\xb1\xc1\x07\x82\x5c\xf1\x02\ +\x12\x82\xdf\xad\x44\x5f\xa9\x93\xc3\x17\x82\x8f\x8c\x25\xad\x58\ +\xa2\x78\x60\x20\x5f\xad\x01\x04\x44\x5a\x67\x34\x9d\xd7\x6e\xf0\ +\x95\x2b\x07\xc0\xb2\xcd\x00\x49\x0c\x68\x3a\xa7\xb7\x25\x72\x09\ +\xb0\xa9\x54\x11\xe9\x13\x12\xb9\xa8\x65\xb1\x6f\xb6\x35\x97\xc4\ +\x96\x9e\xfd\x2a\x39\x08\x1c\x75\x95\x50\x53\x2a\x0c\xa3\xc1\x7f\ +\x50\xb6\x75\x6e\x7c\x04\x4f\x83\x8b\x47\x74\x3a\xb1\xab\x18\x81\ +\x11\x53\xe4\xd5\xd8\xe7\x3d\x1f\x09\x48\xcf\xcf\x37\xff\xe9\x57\ +\x5f\xd1\x3b\x08\x17\xc5\xb1\x54\xf2\xa3\xa6\x36\x0a\xc8\xc3\x75\ +\x47\xf7\x6c\x03\x52\x8b\x60\x82\xfe\x44\x1c\x7a\x7b\x1d\x11\x94\ +\x39\xda\x6b\xd1\x5e\x7b\xce\x5a\xed\x6a\xed\xee\xd5\xd9\x5e\x1f\ +\x6d\x36\xdc\x6e\x04\x9b\x3d\xe5\x62\x17\x11\x89\xb2\x03\x45\xd4\ +\x7e\xe9\xa1\x00\x8f\x5b\xfd\xdc\xe8\x11\x44\x6b\xa8\x33\x09\xe7\ +\x31\xdb\x73\x19\x65\x26\x3f\x6b\x58\x07\xc8\x08\x54\xa5\xf4\x6d\ +\x37\xa6\x1b\x3f\x24\xaf\x88\x3a\xdc\x3e\xb6\x05\x87\x4b\x02\x13\ +\x14\x3a\x22\x8a\xd0\x67\x27\x9d\xcb\xa4\xa3\x9f\xaa\x3a\x31\xc0\ +\x20\xaa\x24\x45\x48\x18\xd8\xde\x1c\xbf\x9e\x5e\xb5\xf0\xb2\x3e\ +\x9a\xf1\xa1\x40\x18\x49\x88\xeb\x58\x17\x81\xfc\x8e\xd5\xd4\x47\ +\x04\xb9\x45\x8f\x4d\x07\xc1\xef\x83\x1a\x36\x57\xbf\x4d\x14\xa2\ +\xa1\xa9\x02\x23\x28\x30\x16\x96\x11\x02\xb8\x86\x8d\x14\x48\x67\ +\xd4\xdc\x85\x8e\x10\xa5\xea\xe2\x93\x34\x74\x20\x5f\xfc\x2f\xbf\ +\x3e\x36\x13\x10\xd0\xfe\xf1\x95\x86\x6a\xbd\x6e\xb0\x95\xc7\xa9\ +\x57\xab\xb6\x19\xc9\xd0\xb4\x87\xfd\x6a\x0f\x5f\x7a\x8b\x6b\x8f\ +\x81\xba\x46\x4c\x2e\xa2\x73\xec\xc7\xaf\xeb\xb1\x6c\x44\xf7\x77\ +\x8f\x59\x56\x92\xd0\x3a\x7e\x75\x9b\x32\x50\x4d\xe2\x4d\x0a\xbd\ +\xa5\x1c\x2a\x5d\x2d\xd7\x9a\x54\xbd\xdd\xa3\x23\x1a\x74\x74\xb8\ +\x2d\xdc\xbe\xf2\x92\x8c\xfe\xb1\xbb\x6a\x93\x59\xfe\x97\xdd\xd3\ +\x68\x12\x64\x30\x99\xa0\x03\x85\xae\x16\x03\x5e\xdf\xc8\xf5\x9b\ +\x88\x6a\xce\x93\x42\x3a\xe7\xf2\x3f\x6b\x9c\x3a\xf4\x2f\x77\x8d\ +\xd4\xfd\x86\x7c\xd0\xc9\x88\xfb\x71\x9c\xef\xb6\xe9\x06\xd8\x92\ +\x6b\xe1\xdb\xb5\x4a\x80\xdd\xd4\x75\xdc\x11\xe1\x5c\x73\x54\xf3\ +\x91\x10\xf3\xbf\x34\xf8\xf3\xdf\xf6\x8c\xbb\xcc\x3c\x76\x52\x63\ +\x8b\x8a\xa9\xdb\x97\x0a\x21\x01\x2c\xa8\x13\x81\x2f\x5c\xbe\x75\ +\x6d\xb8\x2b\x11\xde\xdf\x7c\x23\x01\xe9\xe5\x3c\xdf\x2d\x00\x37\ +\xbc\xde\x9c\xf7\xcb\x75\xeb\x55\x95\x7c\x74\x6e\xd2\xcb\x67\xfa\ +\x7f\x58\xfe\xb3\x7b\x86\x90\xc6\x55\xa1\xaf\x29\xf6\xa8\xf6\x0f\ +\x09\x6d\x0f\x43\x94\x8d\x32\x9c\x9d\xed\xc2\x72\xa9\x6b\xba\xc3\ +\xab\x92\x0d\xe0\x7e\x2b\x21\x0d\xac\x8d\x9e\xbe\xa6\x6f\x50\x6b\ +\x11\x1e\x4e\x81\xd6\x01\x89\x78\x34\x1e\xce\x68\x60\x77\x46\x54\ +\xe4\xa1\x20\x49\x33\x35\x03\x4a\xf8\x01\xbd\x0f\x07\xf4\x80\xbf\ +\x78\x6c\x95\xee\x29\xa0\x7e\xa3\x6c\xce\x0c\x2b\xa3\x9c\xa4\x8b\ +\x91\xa5\x01\x90\x7d\xc6\x56\xc3\x10\xa5\x09\xe9\x83\x08\xf7\xa5\ +\x2b\x9b\xdf\x04\x21\xdc\xb2\x17\x30\xa7\x2a\x1c\xd9\xbe\xf6\x31\ +\x43\x4c\x2c\xcc\x30\xed\x2f\x68\xf7\xfc\x8f\xe0\x51\x0d\x4a\x9d\ +\x94\xa9\x92\x46\x75\x89\xb0\x91\x4b\xad\x15\xf8\x14\xf0\x57\xfc\ +\xae\x55\xab\xad\x13\x16\x6c\x6c\xa0\x27\x43\xbd\xdf\x31\xef\x07\ +\xf1\x6c\xa7\x84\x74\x56\x17\x29\x2c\xf8\x11\xe2\x89\xb2\x38\x6c\ +\xfe\xe7\x8c\x0d\x81\xdb\x22\xd9\xb0\xe5\xf7\x0b\x0b\xb7\x8d\xd0\ +\xd7\xcf\x9b\x25\xa6\xd4\x0a\x02\x55\x76\x07\x43\xbb\xda\x6b\x0f\ +\x61\x44\xed\x30\xb5\x3e\x60\x44\x0b\xfc\xaa\xb7\x87\xbc\x15\x54\ +\x50\xfe\x2c\x9c\x2d\x0b\x31\x45\xd8\x9f\x8d\x06\x6b\x11\x0d\xe5\ +\xac\x9f\xd5\x59\xbb\x4b\xc1\x17\x0a\x64\x34\xaa\xaa\x7c\x63\x87\ +\xea\xd3\xd4\xa5\xf6\xe9\x7b\x8f\x0a\x09\x0a\xff\x41\xed\xed\x4f\ +\x15\x21\x65\x31\x7f\x06\x35\x4e\xdc\xb6\xc3\xd6\x87\xf8\xab\x03\ +\x15\x65\x04\x80\x32\x49\x05\x15\x01\x28\x59\x8d\x08\x11\x00\xb2\ +\x14\x39\x03\x62\xc6\x99\xbf\x83\xbf\xa2\xbe\x99\x4e\xc9\x49\xcb\ +\x29\x0f\xf8\x0c\x87\xcc\x53\x5c\x14\xce\xe9\x3a\xdc\x0c\xda\x06\ +\x8c\x52\x25\xdc\x05\x11\x57\xb3\x34\xc7\x17\x51\xaf\x5a\x5e\x1a\ +\x50\x43\xb2\xbd\x30\x4c\x9d\x47\xc7\x16\x54\x93\x1e\x41\x8a\xfa\ +\xa4\xf9\xbf\x3e\xb7\xfa\xb7\x5f\x1f\x8f\xae\x46\xb6\x4f\xf4\xb9\ +\x4e\x6f\x11\xb1\xc1\x1c\x0f\x92\x2d\xe2\x70\x4a\xca\x6b\x1b\xf9\ +\x74\xed\x13\x1d\xcc\x12\xd3\x44\x51\x2d\x49\x60\xa8\x09\xa9\x0b\ +\x53\x7e\xe2\x95\xbf\xe1\x5d\x6a\x22\x7f\x84\xc2\x86\xd0\x48\xd9\ +\x0e\x5e\xa8\xc2\x10\x31\xfe\xbd\x27\x3e\x8b\x9a\x03\x25\x0a\x35\ +\x8b\xd3\x50\x7c\xa8\xb6\x60\xf7\x78\x86\xa9\xe4\xdb\x60\x7d\xd5\ +\xf7\x53\x1f\x1a\x9b\x1e\xeb\xe0\x0c\x5c\xb2\x7a\xc4\x35\x55\xef\ +\x8d\xca\xd2\x14\xdc\xee\xe1\x57\xb0\x7c\x61\xf1\x28\x2e\x7c\x98\ +\x4e\x87\x9a\xb8\x4e\x07\x6b\xfb\x56\x5a\x88\x35\xa2\x59\x51\xa4\ +\x96\x46\xb3\xda\x78\x05\x63\x8e\x97\xc7\x67\xe8\xb0\xf1\x78\x9c\ +\xf3\xa0\x11\x24\x18\xfb\x20\xf4\xff\x5e\x78\x12\xe5\x35\x4b\x40\ +\x94\x6c\x02\xa2\xc7\x2b\x20\x6e\xb7\x44\xed\x9a\x93\x66\xa3\xf6\ +\x47\x38\x23\x76\x8b\x15\x81\x52\xe1\xf4\x98\xe0\x50\x73\x50\x6d\ +\xd0\x6f\x72\x0c\x82\x24\x7d\xa7\x2e\x3f\x04\x76\xdc\x58\x14\x42\ +\x3a\x5b\xad\x75\x4f\x63\x7b\xbe\x83\x6e\x89\xca\x26\x5a\x19\xd4\ +\xd8\x1f\x55\x62\x03\x61\x80\x45\x44\xe1\x15\xcf\x18\x55\x9d\x53\ +\x72\xf8\xb5\xde\xfe\x94\xc0\x34\xba\xb7\x14\xff\x4f\x17\x2d\xce\ +\x33\x81\xce\xb8\xd5\x35\x8d\xbc\x38\xd5\x28\x32\x02\x4d\x84\x9a\ +\x4b\x69\x49\xaf\x07\x78\x94\x98\x1f\xf7\xd0\xd4\x83\xb8\xcb\xef\ +\xa1\xf4\xfc\x0f\x62\x8f\x64\xd0\xb9\x34\x22\x27\x52\x6b\x87\x83\ +\xee\x6a\x8c\xd1\xf3\x74\x1b\x70\xe0\xcf\x77\x8c\x58\x6e\x77\x62\ +\xaa\x3f\x41\x4c\x81\xe7\xb9\xab\xc1\x38\xbf\x53\x2e\x25\xe9\x95\ +\x96\xd6\x93\xb0\x16\xff\x23\x85\xb9\x23\x57\x54\xb2\x0d\x6b\x58\ +\xb3\x8d\x00\xbb\xaa\xf2\x0b\xd6\xf4\x47\xb0\xba\x5c\x62\x68\x44\ +\x1c\x28\x89\x79\x63\xab\xd0\x63\xe9\x96\xd5\xc8\x14\xf0\x00\x42\ +\x7c\xcf\xfc\xb7\x8e\x33\x40\xed\x11\xaf\xdc\xba\x87\xe5\x68\x28\ +\x71\xa8\x51\xef\x31\x93\x7c\x98\xdb\x67\xf0\xe7\x55\x25\x0f\xe2\ +\x30\xc9\x44\x23\xc1\x66\xcd\x89\x5a\xeb\xb2\xe6\x04\x5c\x3d\x7b\ +\x13\x8d\xea\x49\xef\x39\x8d\xc9\xc4\xf0\x87\xf2\x7c\xae\xf4\x14\ +\xf1\xa6\xf8\x0e\x68\x79\x34\x01\x9c\x94\x7a\xc4\xc8\xb8\xa0\x56\ +\x10\x04\x5a\xa3\x46\x13\xc6\x6d\x78\x5a\x9f\x65\x7e\xc7\x9c\x7e\ +\x3c\x88\xa7\x42\x09\xfa\xda\x38\xa7\x6b\x9c\x63\x39\xf5\xd8\x42\ +\xcc\x19\xdf\x67\xd6\x60\x5d\x1c\xd2\x54\x7f\xad\x8b\x83\xc2\x52\ +\x73\x83\x02\xa2\xac\xc5\x75\xe4\x5a\xf4\x56\x49\x2f\x74\x45\xf5\ +\xbb\xf5\xe8\xbc\xec\x3c\xf3\x36\x79\xac\xdb\x3a\x6e\xcf\xbb\x0e\ +\xeb\xb6\x26\x3b\x4a\x2a\x11\x6a\xa9\x6e\x6b\xc9\x68\x5a\xd7\x56\ +\x1d\xe1\x90\x61\xb9\x41\x03\xbc\x98\x15\x17\x5a\xbf\xa6\xb1\x43\ +\x53\x51\xbf\x3f\xcc\x13\x41\x70\xeb\x1e\x41\x60\x38\xc5\x40\xd6\ +\x79\xff\x94\xd7\x47\x9e\x0d\x1f\xab\x16\x25\xa5\xaa\xf1\x7e\xfb\ +\x5b\x3c\x5e\x63\x2c\xa8\xb4\x51\x6e\x03\xa3\xe9\xb8\x40\x95\xb9\ +\x5b\xbe\x7d\x1d\x50\x75\x26\x9e\x96\x3f\xe2\x60\x6d\xd0\xed\x64\ +\xb2\x0c\x70\x4c\x0f\x82\x08\xc2\x67\xf3\xf7\x8f\x6b\xd5\x51\x5a\ +\xf1\xbe\x57\xc7\x20\xb2\x54\xdf\xfa\xc5\x00\x02\xf2\x7c\xe7\x46\ +\xed\xd8\x59\x24\x60\xc4\x23\xaa\x3a\xab\x5b\x4a\x09\x9b\xf6\x7b\ +\xf4\x84\x72\x3d\x86\xa2\x5a\x3c\x79\xf8\x2e\x58\xf9\x0a\x2d\x42\ +\x87\xd1\xe3\x4f\x3b\xcd\xce\xc8\x74\x00\x57\x9a\x0e\x32\x78\x4c\ +\xb2\x12\x31\xad\x2b\x4a\x31\x9d\x1a\x0b\xfc\x14\x33\xb5\xdd\x48\ +\x80\xba\xad\x96\x7e\x01\x1c\xaf\x62\x6c\x10\x28\x98\x46\x44\xa3\ +\xe8\xfc\x6a\x1f\xef\xd4\xbe\xe1\x16\xc9\xfa\xa5\xd6\xf0\x73\xb0\ +\x59\xc8\x27\xa4\x26\x56\xeb\x25\x29\xfd\xfe\xba\xc4\xc7\x94\xf7\ +\x4f\x13\xf4\x2f\x2d\xd0\xab\x2a\x6d\x96\x65\xdf\xa6\x33\x96\x57\ +\xd3\xb9\xde\x31\x1a\x1d\xc9\xd7\x6b\xcf\x84\xfb\x2b\x42\x3c\x6b\ +\xde\xd4\x7a\xc5\xaf\x46\xd5\x26\xfe\xa9\xc2\x1b\x54\x5a\x00\xc9\ +\xfa\x77\xde\xe0\xae\x61\x15\x0c\xaf\x92\xf8\x22\x3b\x59\xa0\x4c\ +\x7c\xfe\xa5\x93\x47\x47\x4a\x23\xbf\xdb\x6d\xca\x6b\x14\x97\xb7\ +\xb3\x27\xea\xc4\x3e\xee\x48\xe9\x50\x9d\x35\x44\x5a\xd3\x7e\x9f\ +\xdb\x03\x31\x56\xaf\xe3\xba\x8e\x8a\xdd\x62\x1b\x89\x0a\x76\xa8\ +\x2a\xe4\xc2\x4e\x83\xf2\x4f\x2d\x9f\x3a\xf2\x59\x13\xb6\x00\xa6\ +\x54\xb7\x52\x2d\xc5\xfa\xad\x70\xd9\xc7\xfa\x78\x36\xb4\xc2\xce\ +\xcb\x16\x7f\xdf\xde\x82\x3a\x9f\x3a\xca\x4d\xe0\x7e\x79\xc9\x3d\ +\x37\x2e\x1e\x72\x90\x10\x09\xdc\xc4\x7a\x84\x33\xb2\x6f\x2a\x2d\ +\x20\x85\x2f\xb7\x68\x53\x46\xa6\x43\x43\x71\x22\xca\xac\xbc\x71\ +\x38\x99\x3f\x43\xe1\x42\xdd\x6a\x4a\xb4\x75\x4b\x50\x0f\xe9\x8a\ +\x21\x6a\xa9\x00\xfd\x6c\x35\x34\x7f\xc6\xce\x40\x33\x9c\x7c\xbe\ +\xc1\x37\x0d\x95\x69\x0c\x25\x59\x27\x54\x83\x6f\xea\x84\x8a\x78\ +\xdb\xba\x3e\xc9\xe3\x0d\x91\x10\x50\x8f\x0e\xb4\x35\x76\x33\x92\ +\x8e\x6f\x79\xb3\x46\x43\x50\x52\x6a\x48\x7a\xd8\xd6\x4e\xde\x6f\ +\x52\x83\x72\xdf\xd4\x1b\x75\xe1\x6b\x07\x1e\xe5\xb9\x48\x3a\x98\ +\x12\x8a\x5a\x1a\x9a\xb2\x80\x8d\x93\x86\x19\x0d\xc6\x4a\xd9\xf9\ +\xcf\x31\x98\xd7\x79\xfc\x8a\xe1\x1e\x83\xe9\x36\xb3\xdd\x63\x30\ +\x50\x19\x59\x12\x96\x7a\xda\xe0\x3c\x2a\x3b\x0b\x26\x5c\x51\x23\ +\xe8\x37\x98\x10\x02\x08\xb5\x59\x79\x56\x1b\x4e\x74\x7f\x1e\xd0\ +\x9d\xcc\x54\x61\x08\x0d\x47\x34\x8a\x66\x8b\x75\x34\xa2\xfe\x09\ +\xef\x4e\xaa\xce\xfd\xc5\x95\x2a\x48\x54\xda\xcb\x1e\xd1\x8e\x42\ +\x65\xeb\xe2\xeb\x44\x24\x71\x33\x3d\x54\xf5\x0b\x14\xe6\x21\x3a\ +\x5a\x74\x12\x3d\x65\xc6\xc7\x46\x30\xec\x14\x32\xc7\x3b\x13\x36\ +\x87\xe7\x9a\x6c\x3d\xa6\xad\xb3\x70\xee\x7b\x8f\xc4\x9a\xa6\x44\ +\xc8\x25\xe2\xd5\xe4\x02\xe1\xbe\xa4\xb7\xa7\x8e\x57\xad\xd0\x1f\ +\xe4\xe5\x09\x1f\xb2\xb4\xf2\x73\x9a\xad\x63\xe7\x9a\x25\x2a\xef\ +\x69\xb6\xf3\xfb\xb7\xd3\xec\xef\x94\xdd\x4f\x8d\x70\x96\xc7\x44\ +\x68\x9f\xeb\x4e\x5c\x15\x08\xc0\xb5\xd4\xdb\x82\x3a\xe9\x42\x6d\ +\x9b\x56\x79\xad\x2d\x30\x80\xe8\x02\x45\x44\x5c\x0e\x42\x2b\x35\ +\xea\xc3\xdc\xab\x89\xd6\xc8\x38\x77\x68\x47\x0a\x4e\xe7\xd2\x14\ +\x92\xac\xae\xa5\x66\x76\x10\x16\x77\x64\x07\x32\xd5\x53\x86\xb4\ +\xe9\x23\x07\x05\xed\x93\x28\x7d\x1d\xd2\x1b\x89\x2b\x48\xc8\x63\ +\xcc\x53\xe3\x66\x70\xb0\x56\x10\xed\x1a\x7d\x65\x7d\x75\x9a\x1a\ +\x5a\xf7\x58\x9a\x92\x64\xf3\x30\xd6\x15\x1d\xbc\x5b\xe2\xb8\x4e\ +\x9b\x7f\xd7\x28\x59\xee\x0f\x16\x85\x43\x05\xbc\xbd\xa8\xa5\x88\ +\x18\x32\xb4\x09\xa4\x53\xb8\xf4\xf5\x45\x6b\x16\x4d\xa9\xf4\x69\ +\xbc\xad\xd9\x40\x80\x19\x50\x3a\xc5\x4c\xc8\x76\x9e\x95\xb2\x8e\ +\xa2\x9d\x19\x4f\x27\x33\x39\x77\xc2\x13\x79\x0d\x6e\x9a\xdd\xef\ +\x49\x76\x3a\xdf\x49\x76\xb6\x93\xec\xfe\x73\x92\x1d\x47\xb7\x5b\ +\x3e\xf3\x98\xf2\x08\xdf\xf8\x0b\xa1\x81\x77\x6d\x9e\xaf\xc6\x7d\ +\x27\xc3\x36\xd4\x85\x72\x41\x25\x3e\xd9\x59\x6b\x3f\xec\x5b\x2c\ +\x6f\x90\x61\xff\x5a\x1e\x14\x21\xee\x2b\x49\xb3\xfd\x17\xd8\x9a\ +\x5a\x0f\xe4\x81\x4d\x28\x08\xfe\x47\x6f\xeb\x76\x6d\x35\x11\x7a\ +\x7e\xc3\x46\x2e\xcc\x61\xd9\x58\xd8\xf3\xfe\x0a\x31\x69\x6f\x64\ +\x39\x68\x44\x75\x8d\x4e\x73\x84\x3b\x37\x98\xc9\x3a\xa5\xd9\x21\ +\xce\x3c\x7e\xab\x98\x91\x7f\x2d\xa6\x0c\xcc\x79\xcb\x36\x1d\x29\ +\x3c\x70\x20\x02\xdc\xba\xfa\xef\x91\x35\x6c\x62\x4f\x87\x7a\x09\ +\x09\xe8\x34\x95\x42\xde\x38\x0c\x76\xa7\x52\x9a\xe6\xe6\x08\xbe\ +\x3b\x38\xc7\xf7\xf1\xf8\x0c\xfc\x3c\x3a\x56\x0b\x9a\xd0\x3e\x28\ +\xd5\xf1\x2a\xf4\x59\x2b\x8e\x50\x9d\xe9\xaa\xfc\x27\x9d\x7b\x18\ +\xdd\x5f\xb0\x11\x5a\x80\x89\x6c\x58\xa7\x2d\x1d\x6d\xea\x3c\x1b\ +\x02\xfe\x90\x1a\x20\x43\x6a\x13\x08\x27\xf6\x62\xb6\x71\xe0\x5c\ +\x34\xef\x62\x4d\xf4\x7b\x9e\x0d\xe0\xfd\x9c\x67\x27\xe3\x05\x3e\ +\xed\xef\x3c\x5b\xcf\x6e\xb0\xda\xbf\xf6\x9d\x03\x85\xdb\xa1\x28\ +\xd7\xcf\x84\x90\xd3\xc1\x7c\x2b\xdf\x84\xd0\xa4\xde\xa8\xeb\x19\ +\x82\x3e\xcc\x43\xdd\xd2\x80\x10\xf9\x6f\xa7\x59\xea\x41\x55\x49\ +\x86\x7a\x27\x8f\x80\xcf\x3b\x73\x00\x80\xee\xd7\xaa\x6e\x19\x43\ +\xc7\x26\xe2\x44\xe1\xe4\xb5\x50\x85\x20\x60\xde\x84\x25\x24\x6c\ +\xba\x38\xc3\x03\x17\x05\xda\x33\x48\x91\x41\x29\x81\xe6\x70\x45\ +\x63\x52\x86\x19\x6a\x39\xab\x2a\x6b\x6e\xf8\xdf\x8e\x14\x52\xfb\ +\xbf\x5e\x4d\x8d\xe4\xc9\x5d\xd1\xf1\x77\x16\x4b\x74\xda\xe3\x38\ +\xa9\x2a\xb5\x24\x28\xed\xa8\x13\x12\x7f\xa1\x4f\x85\x83\x40\x7b\ +\x27\x90\x36\xa1\xb3\x1e\xb7\xa5\xb2\x62\xfa\xa6\xc5\x2c\xf0\x7f\ +\xd3\x45\x0d\x27\x17\xf5\x5b\xd9\x8a\xe6\xff\xb6\x40\xc3\x6b\xf0\ +\x32\x64\xb5\x92\x16\xc1\xe7\x90\x42\x30\x36\x79\x1b\x6b\x41\xaf\ +\x5e\xe9\xb9\x3b\x78\xe7\x6d\xcc\xd8\xda\x75\x25\x01\x96\xbe\x2c\ +\xa7\xb4\x4f\xd9\x5a\x4a\x6a\x2b\x83\xd6\x1a\x05\x8c\x1f\xd5\x7a\ +\x2a\x86\x8a\x77\x04\xf8\xd8\x10\xf9\x35\xf4\x8c\xd6\xb7\xb0\x72\ +\x27\x16\x53\xc7\xd0\xe7\x2d\x0a\x74\x5b\xb9\x69\xe3\xae\xaa\x87\ +\x41\x1a\x42\x43\x17\x4f\xbf\xa3\x7f\x47\xad\x8f\x68\xc2\xa2\x1f\ +\xb0\xf8\xb6\x58\x73\xe1\x2e\xc1\x30\x54\x68\xcd\xf5\xba\x7c\xde\ +\x73\xd4\xef\x72\x22\x07\xa8\x3c\x8f\xd3\xa4\xbe\x18\xfe\x19\x5f\ +\xdb\xc9\x7f\x24\x3c\x4b\x16\x77\x27\x5a\xac\xd9\x03\x9b\x39\x69\ +\x1f\x0c\xd7\xfc\x91\x67\x61\x47\xd3\x09\xac\x86\x06\xeb\x45\x3f\ +\xe2\x66\xd7\xe3\xd3\x0c\xc1\xaf\xfd\x75\xb6\x67\xb7\x61\xc0\x54\ +\x20\xca\xda\xe7\x52\x5a\x53\x95\x8b\x38\x0a\x52\xf8\x55\xba\xb5\ +\x74\x1c\xe0\x5f\x72\x78\xe7\xd6\xf0\x84\xc1\xe0\xbc\x6e\x72\xdf\ +\x54\x86\x74\x93\x9d\xc5\x69\xae\x19\xb6\xe9\x79\xe8\x0d\x88\x3a\ +\x58\xc1\x12\x61\x9b\x90\xd3\x47\x7d\x00\x2e\x50\x44\x50\x03\x60\ +\x66\xfe\xdf\x44\x15\xe5\xbd\x6a\xf8\xc3\x3e\x44\x74\x34\xf0\x24\ +\xd7\xea\x64\xe9\x7d\x32\x3f\xc8\xd4\x2b\xf7\x1b\xee\x91\xa9\x15\ +\xe2\x9b\xf5\xaa\x4d\xbf\xe6\xad\x21\xed\x6f\xfa\x95\xb4\xd3\x08\ +\x61\xc2\x9a\x2f\xe4\x44\xc3\xaf\xed\xcc\xe7\x8e\x65\xfc\xcb\xd9\ +\x42\x4d\xc1\x5e\x03\x93\x39\x76\x74\x18\xdd\x3d\xad\x69\xea\xbf\ +\xcb\xbe\x9a\x6a\x76\xfd\xd1\x34\xdb\x37\xeb\x7b\x34\x49\x07\xac\ +\xdd\x59\x5f\xaf\xe0\x5f\x77\xd6\x17\xb4\xd2\x67\x47\x56\x74\x1a\ +\xc0\xf9\xef\x9c\x66\x05\xf0\xd3\xaf\x1e\xb9\x7c\x53\x44\xbc\x06\ +\x61\xe0\x6e\xfa\x5c\x16\xf4\x63\xef\x8c\x1e\xd4\xc0\x56\x9d\x33\ +\xb8\xa6\x32\xd5\x4f\x6c\x37\xb2\x53\x72\x77\xf6\x79\xed\x6f\xf6\ +\x99\x38\x30\x5b\x55\xb1\xb4\x9f\x0f\x4d\xfc\xdd\x67\x26\x14\x59\ +\xc0\x67\x47\x69\x97\xc7\xe9\xd8\x19\x82\x1e\x33\x28\xe3\x3d\xc4\ +\x64\x67\x8a\x45\x54\x8b\xec\xa5\xbe\x17\x4f\x6e\xb2\xe2\xa6\x66\ +\xa0\xa7\x5a\x12\x45\x36\xa8\xa2\x99\xb2\xf5\xa3\xe8\x04\x6c\x48\ +\xba\xf6\x33\x7d\x9d\xef\x27\x27\xd4\xc9\xfa\xfd\xb3\x13\x3a\x40\ +\xb0\x4f\x4f\xe8\xf0\x5e\xc0\x30\xed\x34\x5c\x9a\x19\xc1\x2b\x72\ +\xd1\xdb\x43\xd9\xd4\xe4\x0d\xfc\x9c\xf2\x11\x0b\x3e\xd7\x08\x12\ +\x59\x0b\xbb\x85\x0a\xdf\xee\x4b\xd5\x0c\xbe\x66\xff\x6c\xde\xd5\ +\xb2\xf3\x68\x9c\x4f\xd3\xe8\x28\x44\x4d\x98\x3e\x1a\x67\xd1\x34\ +\x8b\x3e\x95\x20\xec\xd8\x36\x65\x0f\x5b\x84\xb8\x68\xca\x5e\x1f\ +\x95\xf9\xa6\xec\x45\x51\x20\xc6\xea\x9e\x6b\x4e\x9f\xf2\x9e\x6c\ +\xd6\x11\x3d\x89\xee\x0f\x36\xd8\x9f\x4b\xd2\x1b\x35\xd6\xc2\x12\ +\x6e\xf9\x19\x9f\x31\xde\x65\x54\x9a\xfa\x26\xe1\x2d\x8e\x60\x20\ +\x03\xeb\xb4\xe6\xa1\x41\x21\x25\x1b\x77\x4c\x29\xaf\x49\x0a\xbf\ +\xa8\x5b\x0d\xee\x7a\x4d\xf6\xc0\x4b\x9a\x0d\xb5\xca\xa2\x75\xa4\ +\xfa\xcd\x21\x0b\x0d\x54\x57\x44\xbb\xca\x77\x42\xf6\xea\x78\xf5\ +\x66\x56\xd7\xbc\x23\xfc\x69\x7e\x0f\xa5\x42\xae\x7c\xef\x5c\x03\ +\x20\x63\x77\x76\xdf\xdb\x2f\x9b\x52\xef\x74\xfc\x5a\xf1\xf3\xe7\ +\x92\xd3\xd6\xc0\xcb\xab\x0f\x24\xcc\x57\x83\x0f\x54\xb9\xb7\xc1\ +\x8c\x31\x95\xd4\x4a\xd6\xa8\x67\xda\xd3\x1a\x41\x04\x9c\xbb\x93\ +\xb5\xf5\x71\x30\x25\x40\x57\x7d\xf2\xdd\x5c\x45\x76\xa2\x7b\x73\ +\x31\x4b\x51\x9a\x80\x1e\x1b\x6b\xfe\x8b\x87\x7e\x39\x08\x09\x75\ +\xe5\x4e\xb7\xe3\x8c\xa9\xcf\x54\xa8\x4c\xef\xd6\x6e\x28\x24\x48\ +\x67\x8c\x0a\x85\xea\x81\xf9\x39\x15\x0a\x01\x76\xb5\x81\x8a\x57\ +\x63\x57\x2c\x91\x3b\xdf\x41\x24\xfb\x70\x03\x8c\xad\x11\x1d\x36\ +\x70\x78\x2e\xa0\x4f\x7d\x20\xc5\x3e\x71\x43\xa6\xad\x3b\x72\x56\ +\x84\xbf\xce\x66\x39\xa9\x38\xfe\xfb\x30\x0f\x55\x5c\xa3\x25\x51\ +\x1f\xe6\x79\xa8\x2d\x59\x9d\xf8\x39\x9d\x7d\x9a\x47\x25\xa8\x69\ +\x8a\xd5\x55\x2a\x15\x11\x61\x47\x66\x3f\x63\x6f\xea\x26\xd9\x07\ +\x27\xee\xc7\x26\xec\x43\x13\x3a\x91\xbd\x63\x8c\x1e\xce\xf0\xda\ +\xc4\xd5\xd7\xd3\x1a\xa7\x5a\x46\x13\x6b\xa5\xa9\xfb\x5d\x62\xfb\ +\xf9\x28\xd3\x82\xfb\x65\x30\xcd\x3e\xca\x24\xa2\xe8\x9b\x7d\x94\ +\xe9\x71\xfc\x5b\x54\x07\xbf\x71\xe0\x7f\xfe\xb8\xc4\x6f\x9f\x96\ +\x30\x02\xf3\x27\x7f\x61\x79\xfa\x3c\xed\xff\x07\xde\xd1\xb1\xc6\ +\x01\x47\x75\xe4\x00\x00\x01\x83\x69\x43\x43\x50\x49\x43\x43\x20\ +\x70\x72\x6f\x66\x69\x6c\x65\x00\x00\x78\x9c\x7d\x91\x3d\x48\xc3\ +\x40\x1c\xc5\x5f\x53\xa5\x22\x2d\x0e\x76\x50\x71\xc8\x50\x9d\xec\ +\xa2\x22\x8e\xb5\x0a\x45\xa8\x10\x6a\x85\x56\x1d\x4c\x2e\xfd\x82\ +\x26\x0d\x49\x8a\x8b\xa3\xe0\x5a\x70\xf0\x63\xb1\xea\xe0\xe2\xac\ +\xab\x83\xab\x20\x08\x7e\x80\xb8\xba\x38\x29\xba\x48\x89\xff\x4b\ +\x0a\x2d\x62\x3c\x38\xee\xc7\xbb\x7b\x8f\xbb\x77\x80\xd0\xac\x32\ +\xcd\xea\x49\x00\x9a\x6e\x9b\x99\x54\x52\xcc\xe5\x57\xc5\xd0\x2b\ +\x04\x44\x10\x46\x08\xc3\x32\xb3\x8c\x39\x49\x4a\xc3\x77\x7c\xdd\ +\x23\xc0\xd7\xbb\x38\xcf\xf2\x3f\xf7\xe7\x88\xa8\x05\x8b\x01\x01\ +\x91\x38\xc1\x0c\xd3\x26\xde\x20\x9e\xd9\xb4\x0d\xce\xfb\xc4\x51\ +\x56\x96\x55\xe2\x73\xe2\x09\x93\x2e\x48\xfc\xc8\x75\xc5\xe3\x37\ +\xce\x25\x97\x05\x9e\x19\x35\xb3\x99\x79\xe2\x28\xb1\x58\xea\x62\ +\xa5\x8b\x59\xd9\xd4\x88\xa7\x89\x63\xaa\xa6\x53\xbe\x90\xf3\x58\ +\xe5\xbc\xc5\x59\xab\xd6\x59\xfb\x9e\xfc\x85\xe1\x82\xbe\xb2\xcc\ +\x75\x9a\xa3\x48\x61\x11\x4b\x90\x20\x42\x41\x1d\x15\x54\x61\x23\ +\x4e\xab\x4e\x8a\x85\x0c\xed\x27\x7d\xfc\x23\xae\x5f\x22\x97\x42\ +\xae\x0a\x18\x39\x16\x50\x83\x06\xd9\xf5\x83\xff\xc1\xef\x6e\xad\ +\xe2\xd4\xa4\x97\x14\x4e\x02\xbd\x2f\x8e\xf3\x31\x06\x84\x76\x81\ +\x56\xc3\x71\xbe\x8f\x1d\xa7\x75\x02\x04\x9f\x81\x2b\xbd\xe3\xaf\ +\x35\x81\xd9\x4f\xd2\x1b\x1d\x2d\x76\x04\x0c\x6c\x03\x17\xd7\x1d\ +\x4d\xd9\x03\x2e\x77\x80\xa1\x27\x43\x36\x65\x57\x0a\xd2\x14\x8a\ +\x45\xe0\xfd\x8c\xbe\x29\x0f\x0c\xde\x02\xfd\x6b\x5e\x6f\xed\x7d\ +\x9c\x3e\x00\x59\xea\x2a\x7d\x03\x1c\x1c\x02\xe3\x25\xca\x5e\xf7\ +\x79\x77\x5f\x77\x6f\xff\x9e\x69\xf7\xf7\x03\x2e\x8f\x72\x8b\x0d\ +\x14\x42\x02\x00\x00\x0d\x78\x69\x54\x58\x74\x58\x4d\x4c\x3a\x63\ +\x6f\x6d\x2e\x61\x64\x6f\x62\x65\x2e\x78\x6d\x70\x00\x00\x00\x00\ +\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\x69\x6e\ +\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\x30\x4d\ +\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\x7a\x6b\ +\x63\x39\x64\x22\x3f\x3e\x0a\x3c\x78\x3a\x78\x6d\x70\x6d\x65\x74\ +\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\x62\x65\ +\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\x6d\x70\ +\x74\x6b\x3d\x22\x58\x4d\x50\x20\x43\x6f\x72\x65\x20\x34\x2e\x34\ +\x2e\x30\x2d\x45\x78\x69\x76\x32\x22\x3e\x0a\x20\x3c\x72\x64\x66\ +\x3a\x52\x44\x46\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\x3e\x0a\x20\x20\ +\x3c\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\ +\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x0a\x20\x20\ +\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\ +\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x0a\ +\x20\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\ +\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\ +\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\ +\x23\x22\x0a\x20\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\x20\x78\x6d\x6c\x6e\x73\x3a\x47\x49\x4d\ +\x50\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x67\x69\ +\x6d\x70\x2e\x6f\x72\x67\x2f\x78\x6d\x70\x2f\x22\x0a\x20\x20\x20\ +\x20\x78\x6d\x6c\x6e\x73\x3a\x74\x69\x66\x66\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ +\x2f\x74\x69\x66\x66\x2f\x31\x2e\x30\x2f\x22\x0a\x20\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\ +\x61\x70\x2f\x31\x2e\x30\x2f\x22\x0a\x20\x20\x20\x78\x6d\x70\x4d\ +\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x67\x69\ +\x6d\x70\x3a\x64\x6f\x63\x69\x64\x3a\x67\x69\x6d\x70\x3a\x64\x65\ +\x61\x63\x32\x64\x35\x38\x2d\x63\x34\x63\x61\x2d\x34\x62\x63\x38\ +\x2d\x61\x32\x33\x35\x2d\x32\x33\x36\x62\x36\x34\x36\x32\x36\x36\ +\x39\x37\x22\x0a\x20\x20\x20\x78\x6d\x70\x4d\x4d\x3a\x49\x6e\x73\ +\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\ +\x3a\x63\x38\x34\x37\x36\x38\x31\x31\x2d\x36\x63\x38\x61\x2d\x34\ +\x33\x39\x31\x2d\x62\x38\x31\x37\x2d\x36\x63\x62\x64\x36\x33\x34\ +\x62\x61\x36\x63\x64\x22\x0a\x20\x20\x20\x78\x6d\x70\x4d\x4d\x3a\ +\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\x74\ +\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\x64\x3a\x35\x32\x66\x61\ +\x38\x31\x64\x38\x2d\x37\x62\x38\x38\x2d\x34\x35\x36\x39\x2d\x38\ +\x61\x31\x31\x2d\x38\x39\x37\x64\x37\x30\x36\x39\x30\x61\x64\x63\ +\x22\x0a\x20\x20\x20\x64\x63\x3a\x46\x6f\x72\x6d\x61\x74\x3d\x22\ +\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x22\x0a\x20\x20\x20\x47\x49\ +\x4d\x50\x3a\x41\x50\x49\x3d\x22\x32\x2e\x30\x22\x0a\x20\x20\x20\ +\x47\x49\x4d\x50\x3a\x50\x6c\x61\x74\x66\x6f\x72\x6d\x3d\x22\x4c\ +\x69\x6e\x75\x78\x22\x0a\x20\x20\x20\x47\x49\x4d\x50\x3a\x54\x69\ +\x6d\x65\x53\x74\x61\x6d\x70\x3d\x22\x31\x36\x37\x36\x32\x39\x30\ +\x30\x38\x39\x32\x33\x39\x39\x31\x34\x22\x0a\x20\x20\x20\x47\x49\ +\x4d\x50\x3a\x56\x65\x72\x73\x69\x6f\x6e\x3d\x22\x32\x2e\x31\x30\ +\x2e\x33\x32\x22\x0a\x20\x20\x20\x74\x69\x66\x66\x3a\x4f\x72\x69\ +\x65\x6e\x74\x61\x74\x69\x6f\x6e\x3d\x22\x31\x22\x0a\x20\x20\x20\ +\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\ +\x22\x47\x49\x4d\x50\x20\x32\x2e\x31\x30\x22\x0a\x20\x20\x20\x78\ +\x6d\x70\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\x3d\ +\x22\x32\x30\x32\x33\x3a\x30\x32\x3a\x31\x33\x54\x31\x33\x3a\x30\ +\x37\x3a\x35\x39\x2b\x30\x31\x3a\x30\x30\x22\x0a\x20\x20\x20\x78\ +\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\x61\x74\x65\x3d\x22\x32\ +\x30\x32\x33\x3a\x30\x32\x3a\x31\x33\x54\x31\x33\x3a\x30\x37\x3a\ +\x35\x39\x2b\x30\x31\x3a\x30\x30\x22\x3e\x0a\x20\x20\x20\x3c\x78\ +\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x64\x66\x3a\x53\x65\x71\x3e\x0a\x20\x20\x20\x20\ +\x20\x3c\x72\x64\x66\x3a\x6c\x69\x0a\x20\x20\x20\x20\x20\x20\x73\ +\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\ +\x65\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x73\x74\x45\x76\x74\x3a\ +\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\ +\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x30\x34\x61\x37\ +\x63\x31\x39\x64\x2d\x62\x33\x34\x33\x2d\x34\x34\x39\x32\x2d\x62\ +\x33\x36\x31\x2d\x63\x34\x63\x36\x63\x39\x65\x64\x32\x38\x64\x66\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\ +\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x47\x69\x6d\ +\x70\x20\x32\x2e\x31\x30\x20\x28\x4c\x69\x6e\x75\x78\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\ +\x3d\x22\x32\x30\x32\x33\x2d\x30\x32\x2d\x31\x33\x54\x31\x33\x3a\ +\x30\x38\x3a\x30\x39\x2b\x30\x31\x3a\x30\x30\x22\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x53\x65\x71\x3e\x0a\x20\x20\ +\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\ +\x3e\x0a\x20\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\ +\x70\x74\x69\x6f\x6e\x3e\x0a\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ +\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x77\ +\x22\x3f\x3e\x3c\x24\x30\x11\x00\x00\x00\x06\x62\x4b\x47\x44\x00\ +\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09\x70\x48\x59\ +\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\ +\x00\x07\x74\x49\x4d\x45\x07\xe7\x02\x0d\x0c\x08\x09\xf7\x20\xc1\ +\xef\x00\x00\x00\x15\x49\x44\x41\x54\x38\xcb\x63\x60\x18\x05\xa3\ +\x60\x14\x8c\x82\x51\x30\x0a\xa8\x03\x00\x06\x54\x00\x01\x43\x87\ +\x1f\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x21\xfd\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x1f\x77\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\ +\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x65\x78\x69\x66\x00\x00\x78\ +\xda\xad\x9b\x69\x96\xdc\x38\x92\x84\xff\xe3\x14\x73\x04\x62\x07\ +\x8e\x83\xf5\xbd\xb9\xc1\x1c\x7f\x3e\x03\x18\xa9\x94\x4a\xaa\xae\ +\xee\x19\xa5\xa4\xcc\x8c\x60\x90\xa0\x2f\xe6\x66\x0e\xa7\x59\xff\ +\xf3\xdf\xdb\xfc\x17\x7f\x8a\x4d\xc9\x84\x98\x4b\xaa\x29\x3d\xfc\ +\x09\x35\x54\xd7\xf8\xa1\x3c\xf7\xcf\xfd\x6e\x9f\x70\xfe\xbf\xbf\ +\x84\xf7\x3d\xfb\xf3\xeb\xe6\xeb\x0d\xc7\x4b\x9e\xef\xfe\xfe\x9a\ +\xd6\x7b\x7c\xe3\xf5\xf8\xe3\x03\xf9\x3d\xde\xf6\x9f\x5f\x37\x79\ +\xbc\xe7\x29\xef\x89\xec\xd7\x89\xcf\x1f\xaf\x2b\xeb\xe7\xf7\xb8\ +\xf2\x9e\xc8\xbb\xfb\xfa\x67\x21\xa6\xbe\x9f\x6b\xe1\xdb\xed\xbc\ +\xff\xdc\x78\x4f\xfb\x9e\xfc\xd7\xdf\x43\xc6\x18\x33\x72\x3e\xef\ +\x8c\x5b\xbe\xfa\xca\xff\x56\x57\xf1\xac\xc0\x17\xdf\xf8\x5e\xf9\ +\x9f\xdf\x9d\x5e\xb1\xfc\x1c\x7d\x38\xaf\xd4\xdf\xdb\xce\x7c\xfd\ +\xf8\x8b\xf1\xbe\x7e\xfa\xc5\x76\x4f\x7b\x5f\xf7\x3f\x9b\xc2\x3c\ +\xe9\x3d\x20\xfd\x62\xa3\xf7\x75\x1b\x7f\x79\xdd\x7f\x5d\xc6\xfd\ +\xec\xb5\x1f\x57\xfe\xe9\x8d\xf9\xd8\xf5\x7c\xff\xf3\xcd\x76\x7b\ +\xcf\xb2\xf7\xba\x77\xd7\x42\xc2\x52\xc9\xbc\x37\xf5\xb9\x95\xf3\ +\x13\x07\x76\x4c\xe9\xcf\xc7\x12\x5f\x99\x7f\x91\x9f\xf3\xf9\xaa\ +\x7c\x15\x6e\x71\xe0\xb1\x89\x37\x3b\x5f\xc3\xd8\x6a\x9d\xf5\xcf\ +\xb6\xc1\x4e\xdb\xec\xb6\xeb\x7c\x1f\x76\xb0\xc4\xe0\x96\xcb\x7c\ +\x77\x6e\x38\x7f\x5e\x2b\x3e\xbb\xea\xc6\x71\x4a\xd0\x97\xdd\x2e\ +\xe3\x98\x69\xf0\x91\xf3\x03\xaf\x79\x5e\x76\x5f\x6b\xb1\xe7\xba\ +\xf5\x5c\x6f\xd8\xc2\x95\xa7\xe5\x48\x67\x39\x99\xe5\x13\x7f\xf9\ +\x32\xbf\x7b\xf1\x3f\xf9\xfa\x3a\xd1\xde\x0a\x5d\x6b\x9f\xf2\x65\ +\x2b\xd6\xe5\x14\xd3\x2c\x43\x9e\xd3\xff\x1c\x85\x43\xec\x7e\x6d\ +\x1a\x8f\x7d\xcf\x97\xf9\x16\x37\xcf\x37\xc7\x7a\x3c\x18\x8f\x99\ +\x0b\x37\xd8\x9e\x7e\x4f\xd1\xa3\xfd\x11\x5b\xfe\xf8\xd9\x73\x5c\ +\x7c\x82\x79\x6e\x6a\xd8\x3c\xdf\x13\x60\x22\xae\x1d\x59\x0c\x11\ +\x1d\xec\x93\xac\x8f\x36\xd9\x27\x3b\x97\xad\xc5\x8e\x05\xff\x34\ +\x56\xee\x7c\x70\x1d\x0f\xd8\x18\xdd\xb4\x66\xe3\x1b\xef\x13\xce\ +\x29\x4e\xd7\xe6\x33\xd9\x9e\x63\x5d\x74\xf7\x65\xa0\x05\x47\x44\ +\x9f\x7c\xc6\x35\xa4\x0e\xce\x0a\x21\x12\x3f\x39\x14\x62\xa8\x45\ +\x1f\x83\x89\x31\xa6\x98\x63\x89\x35\xb6\xe4\x53\x48\x31\xa5\x94\ +\x93\x30\xaa\x65\x9f\x43\x8e\x39\xe5\x9c\x4b\xae\xb9\x15\x5f\x42\ +\x89\x25\x95\x5c\x4a\xa9\xa5\x55\x47\x9a\x86\x1a\x6b\xaa\xd9\xd4\ +\x52\x6b\x6d\x8d\x8b\x36\x4e\xdd\xf8\x74\xe3\x88\xd6\xba\xeb\xbe\ +\x87\x1e\x7b\xea\xb9\x97\x5e\x7b\x1b\x84\xcf\x08\x23\x8e\x34\xf2\ +\x28\xa3\x8e\x36\xdd\xf4\x93\xf4\x9f\x69\x66\x33\xcb\xac\xb3\x2d\ +\xbb\x08\xa5\x15\x56\x5c\x69\xe5\x55\x56\x5d\x6d\x13\x6b\xdb\xef\ +\xb0\xe3\x4e\x3b\xef\xb2\xeb\x6e\x5f\x5e\x7b\xbd\xfa\xb3\xd7\xec\ +\x2f\x9e\xfb\x7b\xaf\xd9\xd7\x6b\xf2\x58\x38\xc7\xe5\x1f\x5e\xe3\ +\xe5\x9c\x3f\xa7\xb0\x82\x93\x28\x9f\xe1\x31\x17\x2c\x1e\xcf\xf2\ +\x00\x01\xed\xe4\xb3\xa7\xd8\x10\x9c\x3c\x27\x9f\x3d\xd5\x91\x14\ +\xd1\xe1\x35\x1b\xe5\x9c\x69\xe5\x31\x3c\x18\x96\x75\x71\xdb\x2f\ +\xdf\xfd\xf0\xdc\xdf\xfa\xcd\xc4\xf0\x6f\xf9\xcd\xfd\xc9\x73\x46\ +\xae\xfb\xff\xf0\x9c\x91\xeb\x5e\xcf\xfd\xd5\x6f\xbf\xf1\xda\x6c\ +\xa7\xa2\xf8\xe3\x20\x65\xa1\x6c\xfa\xf8\x0d\xb0\x71\xc0\x2a\xcd\ +\x95\xa6\x9a\x74\xbf\x2f\x5e\xb2\x0b\x47\x95\xed\x5b\xce\x60\x4b\ +\xdc\x24\xea\xb4\x9c\x75\xad\x1a\xb7\x5f\xb9\xc4\x1e\x53\x21\xe4\ +\x37\x36\x6d\xc9\xb4\x83\x54\x1e\xa8\x5a\x7b\x8e\xce\xd9\x63\x59\ +\xd1\x02\x9e\xde\x85\x9c\x7d\x5c\xd5\xeb\x24\x78\x7e\x07\xa7\x9f\ +\xea\x0e\x33\xe4\xcd\xe1\x2d\xeb\x77\x4b\xcd\xb4\xc3\x70\xaf\x91\ +\xdf\xf1\x4f\x9a\x7d\xaf\x3e\xf4\xb9\xe0\x33\x31\x9a\xfa\x74\x3b\ +\x86\x69\x17\xf7\xec\x62\x1c\x6d\x75\x2a\x92\x1f\xa4\x7b\x07\x2c\ +\xdd\x24\x39\xf6\x53\x63\x76\x8b\x02\x89\xcb\x09\xa8\xe1\x6d\xc9\ +\x76\xee\x99\x1a\xb8\x3e\x5c\x0b\x33\x73\xde\xbc\xb8\xfc\xde\x7d\ +\x57\x77\xaf\x0e\x4c\xdb\xcd\x07\xb8\x54\xdc\xab\x8d\xac\x0f\x64\ +\x8c\x68\x66\xd3\x01\x63\xfb\xda\xb7\xb3\x7b\x91\xc8\x3b\x72\xdf\ +\x41\xd1\x30\xf1\x5b\x67\xc5\x20\x4b\x7e\xfc\x22\x50\x58\x2c\xe7\ +\x86\x11\x58\xa2\x68\xf9\xcd\xe5\xf2\xb2\x7b\x34\xd3\x9d\xc7\xb0\ +\x3e\x4f\xcf\x6d\x63\x41\xae\x3f\xf7\xc9\x08\x85\xd7\x9c\xca\x8c\ +\x49\x60\xf4\x96\x09\xc8\x9d\x7b\xb5\x65\x95\xd2\xe5\x8f\x0d\x89\ +\x48\x7b\x2e\x2d\x05\x1b\x35\x9d\x69\x8f\xd5\x9d\xeb\x0e\x73\x8c\ +\xbc\x5b\x0c\x9d\x02\xee\x66\x9f\xab\x80\x67\x33\x02\x7c\x38\x6f\ +\xb5\x26\xcb\x57\x82\x8f\x0b\xfa\x91\x16\xb7\xbf\xf1\xe2\x5e\xc6\ +\xb5\xf2\xf8\x66\xfd\x4c\xd5\xf5\xa7\x62\xfa\x4a\x86\x3d\xa3\x14\ +\xc2\x69\xfa\x1a\x8f\xe3\xad\x82\x60\x38\x25\x89\x4e\xd0\xb8\xa9\ +\x7b\x02\x58\xcf\x33\x7b\x8b\x96\x80\xec\x8f\x0e\x25\xc3\x6a\xb7\ +\xc7\xbd\x2b\x66\x7e\xc8\xe3\x58\xaf\x4c\x8f\x8b\x74\x76\x4b\x24\ +\xdf\xb3\x97\xf8\x39\xc5\x6e\x18\xe9\x04\x85\x29\x3b\x84\xcd\xdd\ +\xd4\x99\x79\xfd\xf7\xcb\x76\xad\xed\xd8\x89\x6d\x3e\x10\xc8\x1e\ +\x9c\xa6\xa4\x99\x2e\xa4\xdc\x9c\x53\xc0\x77\x33\x71\x01\xa6\xe8\ +\x3a\x88\xc3\xcf\x39\x63\x5c\x84\x51\x9b\x44\xcf\x93\x6a\x74\x71\ +\x3a\x57\xf4\x49\x92\x8b\xc0\xc2\x75\x3a\x3a\xb7\x1e\x7f\x38\xca\ +\xfc\xea\xa9\x47\xe0\x93\xba\x62\x44\x41\x95\xda\xca\x3d\x8c\x1b\ +\x0e\x33\x76\x4f\x5e\x47\x41\x57\x76\x7e\x25\x85\x03\xa9\x14\x33\ +\xb9\x46\x18\x4c\x39\xbe\x8e\xb9\xeb\x73\x0d\xab\xfc\x8b\xab\xf7\ +\xb6\x4b\xc4\x5a\xd4\x9d\x39\x4e\xae\xe5\x9b\x2e\x0b\x88\x61\x51\ +\xb2\x60\x0c\xb5\x91\xd1\x83\x80\x5c\xf5\xdc\x56\xde\xee\x2c\x78\ +\x39\xd7\x36\xd0\xd2\xfc\x24\x7b\x30\x74\x4d\x33\xe5\x58\x73\x69\ +\xc4\x5e\xad\xcf\x6c\xad\xcd\x0a\x91\x58\x76\x88\x1b\x54\xb1\x92\ +\xe4\xcd\x53\x48\x85\xa6\x3b\x6a\x05\xa6\x8c\x91\xde\xd4\xb4\x2b\ +\xc7\xe3\xc5\x9e\x30\x78\x23\xb3\xb5\xc4\xb3\x8a\xb6\x9b\xd5\x2a\ +\xb8\xf1\xb3\x42\x6e\xca\x9b\xf3\x16\x47\x10\xb5\x36\xac\x36\x9f\ +\xd4\xeb\x72\xa1\xf7\x19\xd2\xac\x2e\x84\x92\xf8\x0e\x62\x44\x95\ +\x8d\xc1\x7a\xeb\x58\x84\xc8\x82\x06\x7b\xfb\x03\x7f\xcc\xcf\x40\ +\xf4\xed\x3b\x91\xff\x80\x21\x04\x6a\xeb\xb9\xf4\x04\x28\x26\x16\ +\xc6\x15\x67\x03\x90\xc0\x87\xb4\x5c\xaf\x23\xa4\x11\xe0\x50\xa6\ +\x00\x94\xcf\x09\x13\x2c\x9b\xe3\xb2\xc7\x52\x84\x0a\x1e\x08\x23\ +\x1c\xfb\x1d\x67\x82\xe3\x43\x66\xac\x36\x3a\x85\x18\x88\xa0\xf7\ +\xc8\xe0\x82\x5f\xa6\x69\x2b\xcc\x36\x13\x35\xaf\xd7\xdd\x6d\x22\ +\x7c\x77\x22\xdc\xc8\xac\xed\x5d\x0a\x7d\xc5\xb1\x1f\x10\xb8\x3b\ +\x82\xaf\x90\xe7\x38\x07\xc4\x14\x78\x0c\x45\xdd\xf2\x85\xd3\x5a\ +\x23\x48\xf0\x11\xd3\x12\xa1\xf8\x3f\x8f\x83\x3b\x51\x18\xe8\x7c\ +\x14\xe8\x91\x62\xb9\xcd\x0b\x36\x24\xfa\x0a\xc7\xbd\xdc\x6f\xb2\ +\x6d\x08\x94\x54\x21\xac\xc9\xdd\x6f\x92\xac\x35\x4c\xd2\xbb\x8d\ +\x04\x14\xf5\x0c\xc6\x0a\x2a\x71\x11\x17\xd3\xb3\xae\x6f\x14\x51\ +\x07\x27\x64\x82\xbc\x02\x97\x02\x65\xa8\x20\x39\xf6\x46\x81\x84\ +\x5e\x82\x38\xa1\x87\x5a\x00\x91\xb5\xa8\x37\xa3\x72\xbf\x93\x5b\ +\x1d\xab\x3e\x29\x3f\x40\xd2\x7a\x48\xfc\x26\xe5\x61\x17\x0b\x88\ +\xe4\x8b\x72\xf2\x59\x18\x0e\x2a\xba\x83\xc9\x84\x55\x8b\x69\x61\ +\xfc\x15\xf2\x84\x15\x59\x91\xe8\x1e\x63\x3f\xb7\xf3\xb4\x96\x87\ +\x25\x92\xc0\xd7\x73\x7b\x55\x46\xda\x44\x8c\xe2\x7f\x38\xa5\x57\ +\xa4\x50\x19\x15\xb7\x1d\xea\xec\x9c\xba\x60\xd5\x5d\x13\x06\x24\ +\x90\xce\x69\x00\xed\x96\x94\xff\xe7\x9b\x82\x31\xc2\xe3\x71\x57\ +\x7b\x4e\xd8\xb2\x72\x61\xfa\x88\x93\xba\x96\xc7\x40\xe1\x4c\x01\ +\x23\x80\xa4\xb0\xc5\xde\x0b\x4c\xce\x80\x23\x25\xef\x39\x21\x50\ +\x29\xfd\xbc\x6e\xb3\x0e\xdd\x5f\x17\xf5\x9f\x8b\x9a\xef\x57\x2d\ +\x02\x78\xee\x0e\x40\x2e\xef\xf5\xfd\x22\xc8\xfe\x7a\xfd\xeb\x81\ +\x6b\xa1\x47\x77\x64\x85\xd9\x31\xcd\x40\x35\x7f\x8e\x85\xfc\x24\ +\x40\x7a\x94\x51\xed\x3e\x00\xcb\xdf\x78\x41\x8d\x78\xe8\xf0\x33\ +\x40\x35\xae\x67\xce\x07\x54\x98\x2e\xe5\xde\x21\x08\xe6\xd9\x0e\ +\x48\xda\x49\x60\x22\xba\x52\x06\xd4\x9f\x9b\x9a\xd4\x0a\x3c\xeb\ +\xe2\x37\x3f\x13\xde\x63\x97\xac\x98\x97\x72\xa0\x16\x81\x6c\x44\ +\x03\x95\x14\x0e\x09\x2a\xae\x6e\x4f\xe5\x58\xfd\x89\x00\xcd\x02\ +\x49\x07\xf5\xac\xad\x81\x3b\xb3\x00\x95\x48\x9d\x4f\x8c\x27\x7d\ +\x4a\xb8\x19\xa5\xe2\xad\x1b\x85\x20\xbd\x91\x0d\x08\xc4\x61\xa9\ +\x1f\xfd\x66\x92\x80\x8e\x4c\x52\xe9\x86\x8f\x1d\xe8\xd8\x80\x52\ +\x3b\xa0\x42\xed\xc4\xf9\xcb\x5d\x1b\x7a\xa1\x95\x95\x22\x32\xca\ +\xaf\xee\xc8\xaf\xda\x73\xe0\x0a\xae\xa5\xd0\x92\x1d\xc0\x29\xd5\ +\x04\x94\xf2\xaa\x79\xb8\x01\x04\x29\x80\x61\xfd\x43\x72\x9b\x37\ +\xbb\x33\xc5\x9d\xca\xc3\xdd\x85\xe9\xb4\x38\x8a\x3a\xb1\x6c\x73\ +\xc5\x15\xfc\x9f\x3b\x20\x6f\x41\x92\x04\x5f\xe4\xe0\x00\x7d\x3a\ +\x46\x13\xd7\x89\x04\xbc\x41\x2c\x9c\x1f\xec\xf4\x22\x0f\x84\xc4\ +\xbd\xd6\x94\xc7\xe5\xa9\xe4\xae\xeb\xa9\x49\x25\x81\x52\x96\x9b\ +\xe9\xc1\x2b\xf4\x2b\xe0\x47\x4c\x55\x58\xe3\x30\x21\xd9\x3e\xf4\ +\x02\xd4\x28\x2c\x8f\x6c\xdf\x68\xc6\xbe\x90\xda\xcb\x66\xa0\x4b\ +\xe6\x04\x67\x30\x6b\xdc\xed\xc4\xb4\x9f\xf2\xeb\x8e\x09\x7b\xcc\ +\x45\xbc\x42\x7f\x49\x11\x4a\x68\xdc\x90\x2b\x4c\x0f\x43\x0a\x5c\ +\xa6\x50\x54\xa8\x80\x75\x50\xba\x41\xc9\x62\x57\x7b\x08\x41\x6a\ +\x2a\x97\xf7\xed\x22\xfa\x73\xf8\x8e\x10\x9d\x4b\x01\x44\x46\x76\ +\x2c\x75\x3f\x65\x17\xf8\xeb\x98\x64\x0c\x62\x28\x37\x28\x6d\x4c\ +\x70\x4a\x56\xed\xfb\x06\x10\xfc\x59\x77\x12\x99\xcb\x4f\x1b\x90\ +\x1f\xc7\xfd\xe5\x76\x42\x35\x0d\x13\x0f\xd2\x91\x45\x23\xdb\xae\ +\x1c\x9a\xca\x1f\xf8\x10\x99\x35\x28\x52\xf0\x3d\x1b\x47\x17\xf4\ +\x77\xc0\x99\x9b\xac\xab\xb7\x12\xd2\xc9\xce\xd1\xe1\x54\xe3\x81\ +\xa6\x18\xf2\x42\xdc\xa1\x67\x3c\x76\x83\xac\x7c\x9d\xb4\xcb\x7f\ +\x27\x7a\xd0\x01\xe7\xca\xab\x97\x22\x13\xc4\x52\xe5\x9f\xf3\x1e\ +\xc7\xad\x4d\x40\x12\xe9\x37\x25\xf7\x75\x10\xee\x81\x77\xea\x7e\ +\x1e\xa8\x04\x14\x92\xcb\x23\xda\x61\xe3\x24\x0a\x9f\xa4\x54\x96\ +\x2e\x24\xc6\x6f\xab\x57\xb8\xed\xb2\xe5\x64\x3f\x62\x9a\x20\xdf\ +\x71\x1c\xb7\xfb\x03\x82\xf1\x05\xb5\x25\xbe\xa4\x08\xbf\x04\xb1\ +\x72\x0e\x02\x12\x5c\x26\xe4\xdc\x7e\x46\x22\x9c\x63\x53\x2e\x1b\ +\x28\x46\xac\x6b\x54\xd0\x26\x2d\xea\x55\x7c\x96\x77\x9c\x13\x43\ +\xc3\xa9\xab\x0d\x54\xb3\x2e\xca\x42\xea\x01\x84\xa2\x22\xb0\x37\ +\x8b\x71\x86\x45\x2b\x49\xf3\xf3\xf6\x4e\x46\xc7\xf7\x4e\x94\xd7\ +\x93\xe2\x49\xd2\xad\x06\xf1\xfb\x84\x6e\x6a\xce\x62\x54\x8b\xc3\ +\x7a\x2f\x58\xda\x2b\x90\xb1\xc2\x1c\x50\x3c\xca\xf8\x38\x24\x1b\ +\x6e\x51\x0d\x1c\x53\x4d\x28\x07\x41\xf0\x20\x03\x18\x11\x51\x1c\ +\x13\xf9\x23\xc2\xb9\x58\x03\x04\x5a\xfd\x07\x12\xe6\xc9\x78\x9b\ +\xea\x30\xf1\x5b\x6e\x19\x81\x20\x33\xf0\xe2\xda\xc5\x90\x3b\xd8\ +\x6e\x5a\xa4\xc8\x5c\x73\x8d\x43\xf9\xa8\x59\x6d\x57\x34\xac\x2f\ +\xe0\x1d\xe5\x84\x85\xde\x44\x21\x14\x00\x7e\x02\xa4\xa8\x20\x54\ +\x84\xc8\xe5\xdf\xd1\xc4\xb5\x49\x03\x02\x50\xec\x99\xc2\x25\x9f\ +\x70\x77\xb0\x98\xca\x5a\xcb\xb0\xb0\x7f\xbb\x7b\x3b\x55\x8d\x8f\ +\xb5\x53\xa8\x53\xbb\xb4\x3a\x72\x7c\x3b\xa7\x35\xf9\xa7\xf3\x62\ +\xca\xb4\x09\x74\xd5\xd3\x1b\x41\x13\xe9\x48\x60\xcf\xe4\x4e\x86\ +\x81\x55\x69\x5d\x96\xb9\xcf\xfb\x65\x11\xb9\x80\x24\x98\x5d\x50\ +\x2e\x98\x91\x7a\x4e\x24\x3c\xfd\x04\x5e\x45\x1b\xee\x62\x15\x2f\ +\xa4\x81\x58\xcd\xe4\xe8\x5b\x00\x50\x94\x42\x59\x0b\xca\xce\x44\ +\x82\x4d\x20\xa9\x27\x83\x92\x23\x47\x89\x0e\xc8\xc0\xd4\x62\x89\ +\x21\x0a\xca\x16\xc7\x10\xab\x2b\x62\x32\xa0\xa6\x97\xd4\xdb\x1d\ +\xa5\x01\xf0\x72\x2a\x2c\x48\x5a\x8b\x2e\x2d\x5b\xc9\x6b\xd3\x1e\ +\x59\x92\x12\xd4\xaa\xe2\x56\x59\x76\x98\xe4\x50\x39\x0b\xce\x9f\ +\x72\xe2\x49\xcd\xe2\x20\x73\x16\x34\x2b\x01\xd4\xcb\xd2\x58\x07\ +\xf4\xd0\xb9\xe0\xf2\x34\xb6\x4b\x98\x11\x6f\x0f\x2a\xb8\x01\xd9\ +\x05\x89\x26\x03\x58\x61\x68\x80\x3d\x41\x5a\x66\x55\xa5\x9c\xa0\ +\x3e\x66\xc6\x6e\x45\x28\xea\x44\x87\xa0\x98\x70\x76\xd4\xa1\x21\ +\x03\xea\x84\xa4\x54\xea\xd0\x59\x2f\x0e\xe7\xb4\xc9\x16\x22\x26\ +\x5c\x01\x21\x94\xee\xcb\xd5\x17\xa5\xf7\x41\xe9\xf8\x01\x69\xf4\ +\xd6\xd3\xe0\x90\x40\x0e\xe7\x05\x9c\x30\x20\x84\x00\x26\x03\xe9\ +\x14\x43\xb0\xeb\x8b\x7a\xae\xcb\x8e\xda\x71\xd7\x21\x9f\xfb\xe5\ +\x9e\x53\x10\x00\x47\x86\xb0\x23\x0d\x27\xc8\x3a\xdb\x40\xc6\x49\ +\x1a\x7a\x8b\x9c\xe6\xe4\x9e\x42\x36\x7a\x71\xe4\x84\x23\x68\xc9\ +\x50\x3b\x50\x78\xdc\x9f\x0f\x9c\x1a\x99\x86\xf7\x06\x01\xc1\x92\ +\x36\x08\x79\x21\xa4\x51\x80\x84\x30\xe1\x22\x8c\x2a\x44\x3e\x02\ +\x32\x9e\xf7\x31\xe7\x89\x1a\x4c\x47\xb2\x27\x2e\x39\x1c\x01\x55\ +\x45\xf6\x38\x88\xa4\x30\x30\x45\xf8\x5a\x86\x29\x22\xd5\x7a\x59\ +\xa1\x8c\x47\x12\x93\xf0\x41\x34\x0c\x82\x80\xeb\x39\xab\x7a\x06\ +\xd9\xba\x56\x12\xef\x6d\x12\x46\xd8\x11\x7e\x12\x0a\x2c\xcf\x94\ +\xf5\x88\xcf\xe1\x62\x74\x9d\x74\xc5\x38\x9a\x16\x80\xe8\x47\x99\ +\x61\x0d\x34\x52\x92\xac\x52\x8b\x40\x30\x0c\xe0\xdd\x00\xf9\x00\ +\x31\xb9\xf4\x98\x8c\x84\x52\x88\x90\x45\x99\x1a\x93\x83\xe2\x18\ +\xf2\xe5\x12\xc8\x9c\x88\x47\xc9\xa4\x49\xc0\x20\x69\x22\x1a\x0b\ +\x81\x3a\xea\x94\x3d\x7d\xcd\x70\xbe\x49\x04\x72\xf7\xc5\x44\x47\ +\x68\x7e\x28\x81\xa2\x7d\xed\x75\x99\x2d\x8a\x4d\x61\x78\x9c\xee\ +\x5c\x9a\x8b\xc4\x28\xd0\x90\xa3\xda\xb4\x0c\xc1\x9e\x44\xcc\x80\ +\xee\x24\x25\x2d\x18\xc5\xff\x78\x4e\xd9\x17\x6b\x77\x90\x9e\x67\ +\xfa\x96\xbc\xf0\xd4\x79\x6f\xf1\x6b\x81\xdd\x17\xdc\x9a\xbb\x52\ +\x81\xc8\x43\x64\x57\x9d\xa7\x16\xa2\xbc\x3e\xa6\x5b\x07\x7f\x08\ +\xdc\xa5\x23\xab\xf9\xa8\xea\xf7\xa7\x8e\x7f\x7d\x4f\x80\xbf\x0f\ +\x55\x87\xf9\xa2\xc6\x12\xe2\x77\xf8\x35\xc3\x68\x42\x45\x0a\xae\ +\x59\xd5\x13\xf6\xde\x3f\xb5\x91\x8d\x64\x88\x5b\x73\x00\xb0\x4f\ +\x52\x07\x16\xef\x61\x9f\xcb\x8a\x70\x3a\x86\xcf\xfa\x5f\x41\x39\ +\x95\x92\x6d\x16\xee\x10\x6e\xfd\x18\x68\xf3\x5b\x31\xa2\x1f\xa2\ +\x9b\x1e\x14\x3b\x35\x63\x9e\x66\xb3\x12\x64\xe2\xad\xbe\x7c\xb8\ +\x2a\x67\x3d\x6e\xaa\x35\x0c\xa1\x07\x1f\xe0\x9f\xa8\xe9\x8e\xb1\ +\x81\xd5\xa8\xee\x00\x3a\xaa\x1d\x0b\x11\x6f\x92\x52\xf1\x39\xf8\ +\x8d\x41\x08\x65\xac\xa7\x04\x92\xcd\x8f\xf1\x65\x75\x11\xb1\x38\ +\x0e\x6c\x03\x5e\x06\x5d\x1d\xe2\x9b\x4b\x54\x00\x19\x1d\xe6\x46\ +\xc1\xa2\x76\xc1\xe2\x02\x31\x31\x5b\x08\x4f\x90\xa1\x89\x3e\x8e\ +\xc7\xb1\x16\x70\x46\x70\x41\x0e\x73\xf0\xd2\x30\xde\x8c\x13\xfa\ +\xb7\xd6\x4e\x54\xbe\x76\x3e\x62\x0e\xe3\x70\x89\x25\x9e\x41\x3c\ +\x2c\xca\xc2\xf2\x00\x66\xe3\x9e\x46\x9a\x5e\x18\x41\x38\xab\x33\ +\x01\x7a\x8a\xfb\x9a\x5f\xd2\xea\x26\xd5\xe9\xcb\x10\x53\xc2\x8a\ +\xfa\xf4\x9f\x2f\x26\x15\x33\xcf\x0d\xed\x36\x52\x83\x6b\x4a\xfa\ +\x1a\xa8\x9e\xed\x21\x41\x90\xa4\x7d\x61\x8c\xac\x86\x24\x7a\xba\ +\x27\x72\x02\x01\xf2\xb4\x1a\x6d\x19\xee\x61\x55\x3d\x1e\x1c\x21\ +\xfd\x54\xd3\xd5\x91\xf2\xea\x32\xa8\x6b\xa0\xd6\x18\x9f\xbd\xe8\ +\x22\x73\xfa\x78\x1b\x41\x53\xb2\x1a\x58\x84\x69\x03\x2e\x2a\x55\ +\x71\xcd\x14\x45\xab\xb4\xde\x17\xe6\x3e\xba\x4e\x0d\x84\x49\x8e\ +\x14\xf1\x14\xe4\xee\x0c\xa4\x4b\x9c\xde\x79\x40\xa6\x3e\x14\x48\ +\xd5\x3a\xa0\xbd\xcc\xd3\x35\x42\x90\xac\x74\xf9\xa0\x58\x5b\x4d\ +\x12\x82\xcf\xb9\x71\xc0\x1f\x5e\xad\xeb\xf0\x46\x6c\x22\x5d\xfe\ +\x5c\x6b\xc9\x58\xcb\x9f\x7e\x98\x4d\x16\x79\x44\x78\x71\xd3\xa7\ +\x1d\x34\x32\x71\x40\xf6\xbb\x80\xf1\x11\x73\xe3\xd9\xa6\x1d\x2e\ +\x06\x90\xe4\x3f\xf4\xf8\x48\x4e\x96\x2f\xae\xe4\xb9\xe2\x5c\x9e\ +\x1a\x28\x22\xff\xdc\xfa\x47\xa8\xa8\x73\x87\x84\x20\x92\x81\xf6\ +\x7e\x92\xf8\x80\x10\x27\x3e\x24\x56\xab\x3a\x4d\x2a\xf1\x0d\x79\ +\x06\x0b\x3e\xea\x01\x22\xaa\xad\x4a\x71\x47\x44\x7b\x94\x11\x7c\ +\xdf\x07\xb3\xd4\x4d\x4c\x29\x05\xf5\x55\xdd\xac\x48\xdf\x82\x52\ +\xe2\x24\xa0\x73\xdf\xbd\x68\xc5\xbf\x69\x0b\xfc\xfa\xdd\xfc\xed\ +\x01\xd5\x75\x58\xb8\xc4\x3f\x6b\xd1\x2e\x4f\x07\x44\x50\xad\xd4\ +\x42\x98\x6d\xb3\x90\x44\xd8\x5e\x23\xf6\x9b\x19\xfe\x39\xcd\x35\ +\x62\x75\x74\xee\x1c\x16\x14\x72\x02\x90\x09\x71\x2b\x7e\x58\xe1\ +\xe3\xaa\x95\xb9\x9e\x36\xe6\xad\x95\x8d\x5a\xd2\xd4\xde\xb3\xb6\ +\x5c\xd1\x6a\x20\xbb\x07\x26\x76\xbe\x1c\x15\x54\x17\xb3\x2d\x54\ +\x1b\xae\x1f\xb7\x85\x99\x05\xd8\xe3\x73\xb8\x30\x54\xf5\xe0\xb5\ +\x87\x77\x4f\x75\xe7\x10\xca\x8f\x7c\x5d\xcc\xe8\xe9\xb8\xfb\x56\ +\x08\xea\x63\xeb\xc4\x11\x1c\xbf\x43\x44\x9e\x9a\x43\x03\x90\xc8\ +\xb2\x3a\xab\x6d\x70\xe4\x9c\xc0\x7b\x17\x50\x51\xe4\xb3\xdc\xf2\ +\x82\x8e\x81\xfb\xe2\xcf\xd3\x89\xba\x80\xa5\x2a\xa2\x5e\x14\x8e\ +\x0f\xc7\xc5\x65\x5f\xf6\x04\xf4\xc0\x1b\xc0\xb2\xa8\x2e\x17\x75\ +\x0d\xb0\xf1\x39\x22\xcb\x10\x9b\xdd\xb8\x23\x80\xfc\x4a\x9c\x1d\ +\xba\xaa\x1b\x7d\x83\x1d\xaf\x47\x27\x6a\x63\x8f\xb0\x21\x2a\x6f\ +\x1f\xee\xf2\x24\x04\xa5\xf8\x38\x58\x43\x2e\x13\x35\x26\x50\x97\ +\x1a\xb8\xf3\xf4\x5e\x01\x4b\x04\x18\x9a\xb1\x78\xf0\x2c\x5a\xc1\ +\x02\x97\x94\x29\xf8\x54\xe7\x37\x12\xf8\x6d\x11\x92\x6b\x13\x73\ +\xe7\x1b\x77\x02\x36\xb1\x00\xf1\xab\x6e\xa5\x9c\x95\xc0\x30\x19\ +\x54\x78\x82\x67\x64\xfc\xb7\x12\x06\xc9\xb5\x42\x34\x30\xda\x00\ +\x63\xcb\x43\x7e\xa9\xc2\x3b\xed\xfe\x95\x7c\x73\x8d\xbb\x5a\xf5\ +\x12\x4c\x81\x69\x40\xaf\x43\x61\x44\xf7\x76\x49\x94\x23\x51\x35\ +\x42\x89\xb4\x47\x40\x22\x6d\xbb\xa3\x7c\x92\x0c\x1d\x4d\x29\xad\ +\x84\xe8\x3e\xd4\xde\x14\x98\xf8\x89\x1a\xd4\xa5\xee\xf5\x69\x09\ +\xc9\x0b\x07\xe0\x0c\x45\x8c\x5d\xb1\xf9\x0f\xbe\x9b\x3f\xbd\xa1\ +\x46\xd2\xd7\x79\x03\x77\x4d\x79\x55\xdf\x00\xdc\xb6\x97\x94\xe6\ +\x79\xb9\xcb\x8d\x51\x73\x82\x94\xa8\x55\x8b\xbb\x8f\xc5\x5d\x40\ +\x71\x24\xb9\xa1\x68\x94\xf5\x0e\x85\xeb\xa4\x30\x52\x6a\xcc\x31\ +\xfb\x84\x0f\xc0\x46\x60\x30\x3b\x5d\x36\x76\xab\x4a\x30\xb7\xaf\ +\xbd\x70\x07\x58\x86\x9e\xb9\xe6\xf6\x6a\x7a\x80\xbd\x39\x41\x44\ +\xd4\x1c\xb3\xc8\x2b\xbc\x7d\x0d\x33\x83\x5a\x36\x98\x1b\xa6\x31\ +\xce\x89\x7a\x30\x69\xdd\xf6\x4e\x13\x41\x06\x35\x86\xda\x82\x14\ +\xc4\xa1\x3b\x70\x0f\x85\x8e\x54\x7d\x69\x06\xa1\x82\x44\x4a\xa4\ +\x25\xbe\x42\xb6\x90\x28\x0d\x3f\x42\x43\x5d\x36\xaa\xdf\x1e\x8e\ +\xbc\x16\xc4\x09\xec\x4d\x85\x3b\x26\x0f\xdb\x23\x36\x95\xe5\xa7\ +\x7c\x9b\xd3\x6a\x1d\xc0\xd1\x56\x54\xeb\x5c\x9b\x7f\xe8\x0a\x84\ +\x5c\x99\x40\x54\xaa\x06\x77\x9f\x44\xc8\x0a\x54\x02\x19\xdd\x5f\ +\x95\x84\x56\x9c\x90\xd0\xb4\x12\xe8\x92\xb4\xd0\x6f\x4a\x5c\x54\ +\xaf\x27\xa0\x8e\xaa\x14\x6f\x83\x2b\xd9\x11\x7b\xb5\xdd\x60\x42\ +\x2b\xf8\x25\xb7\x59\x0f\x77\xf8\x88\xc6\x22\xfb\xd4\x47\x20\xc7\ +\xc3\x94\x7a\xd1\xb2\x16\x15\x4b\x24\xbb\xf2\x4a\x80\x20\x40\xc8\ +\x43\x49\x11\x15\x06\x0e\x50\xd7\xba\x76\xc4\x64\x1b\x25\x1a\x79\ +\x88\xd0\xbc\xdc\x5f\xd9\xa9\x46\x12\xb5\xa7\xc3\x68\xec\x7f\x18\ +\x47\xbf\x7e\x27\xf3\x52\xa5\x32\x49\x3f\x72\x31\x08\x42\xcc\x93\ +\xac\x68\x59\x34\xb1\x22\x6a\xa8\x8b\x10\x90\xcf\x0d\x02\x1a\x08\ +\xc2\xba\x54\x7a\x70\xd7\xc9\x58\x94\x20\x78\x06\x59\x87\x74\x52\ +\x83\x29\xed\x15\x60\xef\x48\x51\xd4\x08\x92\x56\x76\xac\x86\xe2\ +\xad\x54\x39\x5b\x43\x62\x0e\xc0\x65\x75\x6a\xf4\x6a\x5b\xfb\x2a\ +\x36\x3b\xb4\xed\x74\x3a\x22\xe4\x3b\x04\x6d\xa9\x73\x1f\xe0\x69\ +\x50\x42\xc9\x00\xea\x5c\x33\xf6\x87\xe3\xff\xe2\x68\x80\xdf\x1e\ +\xe0\xcf\x4a\x82\x0e\x91\xc6\xe2\x8e\x52\x6c\xc5\x14\x29\x46\xea\ +\x7f\x70\xeb\x38\x04\x1b\x1d\x2a\xd2\x8b\x82\x03\x69\x81\xe2\x3e\ +\xd5\xfb\xc4\x6b\x7d\xa4\xff\x20\x0c\x45\x3e\x73\x47\xb4\xc7\x8d\ +\xdb\xbc\xfc\x20\xd0\x28\x70\x9f\x1b\xdb\xe6\x51\xe1\x2c\x22\x57\ +\xfc\x7b\x7d\xbc\xa9\x79\x9f\xe3\x0e\x39\x0e\x3a\xe6\xf6\x66\xa6\ +\x7a\x33\x55\xad\x19\x04\x0d\x20\x28\xd3\xe2\xea\x6d\xa8\xf7\x50\ +\x56\xe4\x0e\x69\x55\x7f\xc3\x67\xff\xe9\x77\xf3\xa7\x37\x38\x7b\ +\x4b\x4f\x84\x85\x96\x0a\xbf\x85\xba\xe2\x69\xa4\x98\x5a\x0b\x92\ +\x1c\xae\x83\x71\xaa\xf3\x5d\x3d\x5a\xdc\x7f\xa9\x80\x3f\x0b\xe6\ +\x7e\x52\x42\xb7\x36\xed\x9d\xe4\x79\x9b\xcf\xaf\x24\xe6\xb4\x6f\ +\xff\xef\xea\x82\x20\xe2\x84\xfa\x96\xa4\x42\x69\x04\x33\x43\xc8\ +\x0d\x91\xf1\x9c\x36\x92\x93\x0a\xca\xc2\xd5\xee\xa3\x8a\x64\xfa\ +\x18\xbd\x1e\xa3\xdf\x5d\x11\x27\xa4\xd5\xea\x51\xaf\x87\x8e\x05\ +\x5b\x71\x3f\xca\x31\xbd\xa9\x89\xa4\x77\xd7\xa7\x50\x13\x7c\xea\ +\xdc\x75\xa9\xbd\x2e\x95\xd7\x08\xcb\xe9\xbd\xc4\xe7\x3e\xcb\xbc\ +\x3a\x2e\x4d\x23\x2d\x8d\xca\x61\x95\x60\x5e\x09\x1b\x82\x4f\xce\ +\xb2\x96\xa0\x32\x75\x6d\xe0\x7c\xb9\x2b\xfb\xe6\x33\x81\x52\xef\ +\x48\x08\x70\x67\x22\xf6\xcc\x94\x01\x40\x7f\xc0\xf3\xff\xe0\xb3\ +\x68\xcd\x1f\xde\x60\x8d\x90\x6b\x84\x11\x21\xe4\x21\x30\x90\x76\ +\x4b\xb4\x04\xf9\x2c\xf4\x97\x45\x1e\x94\xb9\xce\x98\x46\xac\x87\ +\xe2\x43\x10\x56\x05\xab\xdf\xea\xa3\x9e\xc0\x66\x95\x31\x0b\x64\ +\x57\x7c\x8d\x7c\x0f\xeb\x6b\x3e\x6f\x49\x9f\x4d\xfb\xbe\xd7\xd8\ +\xa7\xcf\x71\xdc\xff\x48\x6b\xce\x64\xf1\x25\x52\xa3\xca\x95\xe1\ +\xba\xf2\xd2\xd3\xeb\x4c\x7b\x76\xfd\xc7\xda\x65\xf4\x23\x4b\xad\ +\x4e\x30\x1e\xf3\x45\x08\xce\xfe\xca\x6d\x2f\x0f\x89\xd6\xa1\xd6\ +\x0c\x6c\x02\x8e\xa9\x06\x09\x52\x8f\x20\x88\xb8\xa4\x23\x48\x45\ +\x4c\xae\x1b\x57\xf6\x07\x37\xcc\xd0\x6d\x1c\xe0\x50\xff\xef\x92\ +\x2e\x80\x63\x1f\xe0\x40\xad\xe5\xe1\xd5\x92\x5d\xd4\x07\x3e\x55\ +\x29\x47\x19\x45\x87\xb6\x80\xfc\x51\x8b\x4f\xd0\x3a\x0c\x65\x0e\ +\xef\x02\xe4\x08\x07\x21\x6b\x52\x73\x03\x7f\xc7\x47\xf8\x2e\x50\ +\x16\x9d\x98\xa3\xcc\x2e\x01\x06\x86\x09\x93\x9b\x30\x59\x65\x26\ +\x01\xc0\x15\x16\xdd\x82\xf9\x7b\xae\xfa\x0f\xbf\xe3\x6b\xa0\x16\ +\x68\xc7\xdf\xd2\x7c\x5b\xdb\x02\x71\x70\xad\x0b\xc9\xc1\xa9\xdd\ +\x0b\x24\xf3\x89\x9a\x81\x56\x54\xea\x43\xd6\x1e\xaa\x58\x4e\xcd\ +\x1e\xd4\x4a\xf5\x06\x9c\x09\x72\x32\xf2\x2a\xdd\x2e\xc3\xcd\x5c\ +\xd2\x9c\xbf\x05\xda\x5b\xc4\x14\x16\x37\x1f\xf4\xd6\xb9\xc7\x15\ +\x21\xe5\x93\xc2\xb3\x22\x05\x87\x0b\x16\x75\xcd\x4c\xce\x22\x58\ +\x37\x35\x3d\x1e\x55\x09\x14\x4f\x52\x75\x2e\x0d\x1e\x3b\x1e\xab\ +\xcd\x40\x95\xd5\x05\xc9\x38\x65\x35\x9d\x26\x8a\xe2\x41\x9c\xfe\ +\xf8\xda\x7c\x73\x36\x37\xa8\xe6\x17\x67\x3b\xbb\x17\x51\x71\x09\ +\x08\x4e\x20\xc1\x07\x0b\xe8\xc3\x3b\xe1\x7b\x32\xae\xe5\x10\x84\ +\xe8\x4a\x5f\x1c\xd3\xfc\x8e\x64\xaa\x04\x69\x23\xca\xab\x71\xb4\ +\x0e\xf2\x23\x69\x24\x74\x67\x82\x5d\x74\xf5\xa2\xc9\x6c\x3e\xe1\ +\x34\x5d\xb1\xb4\x93\x6e\x44\x41\xb5\xa3\xe8\xd2\x48\xda\x5d\xe9\ +\x96\x9c\xd2\x4e\xbc\xf6\x75\x31\x40\x3a\xa6\x85\x15\xa8\x3d\xed\ +\x45\x89\xb4\x3b\xc8\x39\x7b\x43\x2a\x61\x47\xe5\xc3\x52\x03\x21\ +\x9f\x56\xa8\x3a\x76\x23\xd9\x2a\x89\xc4\x05\x88\x14\x88\x12\xd7\ +\x3d\x6d\xb5\x0f\xe1\xfc\x03\xdf\x04\x2e\xc3\x30\xfe\x51\x47\x63\ +\x83\xca\xea\x51\x81\x2f\xff\x61\x3c\xfd\x14\x90\x75\x34\x7f\x3a\ +\x25\xdc\xc6\x3d\x2f\x09\xca\x6f\x0d\x92\x8b\xc6\x25\xd2\xe7\x87\ +\xe4\xe2\x31\x38\x12\xa5\x41\x24\x17\xea\x9c\x4d\xf2\x87\xe5\x06\ +\x6e\xfd\x36\xb0\xff\x86\x70\x8a\x6f\x4a\xd0\xa4\x78\xcd\x5d\x01\ +\x11\x47\x85\xc6\xb1\xcb\xdc\x1d\xc7\xcd\xef\xb0\x26\x19\xc9\xa3\ +\xe4\xc7\x19\x7c\xf8\xda\x04\x4f\x39\xbe\xbb\xa2\xee\x04\xca\x69\ +\x70\x68\x4b\x5d\xde\x86\x64\xe2\xd1\x6a\xc8\x00\xa1\x5e\x93\xac\ +\x05\x06\xa1\xa9\xa7\xf9\x1c\x84\x17\x11\xc3\x37\x35\x5d\x28\xf7\ +\x2a\xd5\x0b\xed\xb1\xb6\xda\xa8\xee\x2f\x1c\xd3\x7c\x23\x99\x84\ +\x1c\x81\x58\xeb\xa9\xec\xd6\x8f\x68\x89\xc0\xab\x7f\x52\x81\x73\ +\x88\x38\x40\x3e\x22\x05\x46\xdd\x0d\x62\xbd\x11\x46\xa7\xca\x2d\ +\x6f\x86\xa6\x08\xe0\x71\x52\x98\xda\x6b\x01\x90\x0a\x12\xf2\x28\ +\xaf\x16\x5e\x49\xf8\xbc\x5b\x09\x9a\x2e\xea\xfb\x15\x71\xa9\x93\ +\xf6\xf1\x88\xb8\xb4\x1e\xd3\xcb\x51\x71\xc4\x99\x93\x8a\xd3\xee\ +\xfa\x18\xfb\x8c\xc9\x38\x58\xf7\xb5\xcd\x73\xf6\xda\xe2\x19\xdf\ +\xf1\xa7\x6d\x5e\xb4\x45\x38\xb4\xda\x4a\x04\xdb\x93\x6b\xda\x98\ +\x2b\xe1\x35\xe6\xe1\xa3\xf9\xed\x61\x41\xc1\xce\x70\xc2\x05\xe0\ +\xa9\x77\x09\xe9\x95\x1d\x11\x2a\xe8\xf0\x63\xa9\x57\x72\xa2\xd3\ +\xa8\x83\xa7\x00\xad\x22\x64\xf8\x35\xcc\x35\x8e\x6e\xa6\x30\x7a\ +\x27\xbb\xf6\x1a\x35\xd2\x28\xd9\xcc\x6d\x52\x02\xb1\x3b\xaf\xdb\ +\xdb\x0a\xd0\xe4\x97\x8a\x8f\xf9\xd6\x0d\xc0\xd8\xfe\x1f\xab\xa1\ +\x3f\xb0\x5a\xd5\x86\x18\x41\xc3\xb6\x13\x2b\x39\xb6\xd4\x2e\x71\ +\xad\x64\xdf\xc2\x08\xa4\x60\x71\x88\x93\x49\x09\xff\x6a\x06\x9c\ +\xd5\xbc\x7b\x4a\xe6\x76\x04\x58\x8c\x76\xb5\xb0\xfb\xdb\xd4\x18\ +\xed\x6d\x6a\xa8\x85\xe1\xa3\x3a\xb0\x16\x5e\x4c\x34\xdc\xf6\x48\ +\x28\x55\xcd\x59\x88\x51\x54\x39\x40\x66\x69\xf3\x91\xa2\x23\xd7\ +\xa2\xa0\x86\x3a\x9f\x9f\xb9\x8a\x33\x55\xa1\xd5\x57\xad\xb9\x37\ +\x3f\x91\x07\x0d\xb1\xdd\xa1\xff\xf0\xae\x42\x6d\xaa\x14\x17\x4d\ +\x45\x66\x43\xb6\x60\x69\x18\x59\x9c\x67\x48\xc0\xbf\x7d\x00\x58\ +\xcd\x09\xb5\xb7\x61\x9a\xed\xdd\x08\x55\xd3\x48\x31\x26\x38\x6e\ +\x0f\x70\xdf\x34\x75\x41\x09\xe6\x44\xd4\xc9\x82\x07\x03\x09\x66\ +\x6d\x0b\xee\x19\x88\xbf\xa1\x4d\x39\xb7\xcf\x3e\xc6\x1b\xec\xad\ +\xa8\xac\x6d\xfb\x76\xc0\xe3\x4d\x67\x47\x56\x50\x86\xac\xd9\xfc\ +\x94\xa5\x39\x65\x8c\x90\xde\xd9\x90\xf6\x36\x0d\x26\xc1\x0f\x5b\ +\xd2\xac\x95\x5a\xe9\x77\xd6\x6a\xdd\x56\x79\x39\x0d\x07\xe9\x66\ +\x12\x5c\x8d\x28\x4d\xbb\x4c\x02\x75\xc7\x3a\xb5\x59\x06\xc5\x5d\ +\xa9\x8c\x3f\x4c\xac\x7c\x1b\x58\x21\xfc\x89\x97\x29\x51\x86\xca\ +\xe6\xc2\xe5\x32\x7a\x77\x06\x2f\x34\x05\x75\x38\x3c\xf5\xee\xb4\ +\x13\xf3\xdb\x4e\xcc\xa7\x47\xdf\x6e\x7f\xb2\x22\x55\x6a\x7e\xfb\ +\x93\x70\xb4\x84\x82\xbc\x0d\xca\x00\x43\x39\x0d\x4a\x5c\xc8\xd5\ +\x7c\x6f\xeb\xca\xbf\xaf\x0b\x11\x3e\xbc\xaf\x61\x05\xb2\xd1\xd7\ +\xdb\x30\x5d\x4f\x50\x1f\xe7\x39\x29\x02\xb0\xac\x7d\xf6\x6b\xc2\ +\x69\x08\x65\x35\x84\x6e\x37\xe8\x74\x89\xcf\x26\x93\x6e\x65\xe5\ +\x71\x77\x95\xab\xf5\x89\x62\xb8\x86\x1a\x6d\x27\x40\x80\x11\xae\ +\x01\x47\x83\x4d\x3f\x71\x9f\xcd\x6c\xd8\x4b\x2a\xdb\x6b\xe0\xa7\ +\x09\x8d\x50\x8b\x6e\x92\x56\xd0\x52\x3c\x47\xee\x11\x30\x0d\x19\ +\xef\x3b\x4a\x81\x04\xc6\x66\xf0\xeb\x6c\xee\x8e\x0b\x24\x66\xdf\ +\x26\xb4\x0a\xfa\xcd\xf5\xf6\x36\xa1\x55\x6f\x32\x31\xe8\x3c\x38\ +\x24\xb6\x0e\x2c\xa4\x71\xb5\x79\x7d\x11\x6b\x14\x73\x47\x97\xba\ +\x4f\x0a\x07\xdb\xca\xd0\x6e\x4f\x74\x38\x95\x02\xd2\xdd\xe2\x5d\ +\x72\x21\xa7\x3b\x07\xc7\x02\xd4\x44\x4a\xa7\x3b\xcf\xdf\xa4\x90\ +\x0f\x11\x05\x67\xaa\xff\x03\xed\x85\x61\x65\xfd\x58\x81\x19\x4d\ +\x68\xaa\x3b\xdf\xd5\x9d\x57\xf7\x57\x63\x93\xf0\x84\x49\x9c\x9e\ +\xdd\x01\xfb\x18\x8a\xc8\xdd\x1e\x98\xd2\x46\x05\x62\xe7\xcf\x9e\ +\xe3\x4d\xda\xa7\x3a\x75\xc2\x41\xbc\x7a\xf6\x47\xd4\x2c\xd5\x75\ +\xd4\xcc\x19\xe9\x4c\x2c\xf8\x7b\x9b\x46\xa6\xd7\x16\x94\x83\xfb\ +\xaa\x7b\x99\xb1\xb9\x86\x3f\xb8\xbc\xb6\xb2\xba\x98\xc7\xb9\xfd\ +\xd1\x54\xdd\x51\x64\x5e\x3d\xe3\x91\x49\x62\x4a\x17\x95\x30\x3f\ +\x14\x3f\x4f\x5d\x13\x59\xc8\xcf\x20\xdb\x50\xea\x90\x62\x0d\xea\ +\x51\xdc\x53\xf2\x75\x10\x3a\x53\x8c\xce\x6a\x60\x50\x83\x1b\xf9\ +\xa2\x50\x2e\x4a\x5c\x8d\x5c\x91\x9e\x92\x90\xc5\xa8\x4f\xaf\x40\ +\x6e\x6a\x4a\x4f\x6d\xe2\x2f\xee\x33\x27\xed\x8d\x52\x9c\x35\xc2\ +\xa6\xbd\x5f\x3e\x48\xfd\x28\x38\x32\x97\xad\xc6\x44\x2c\xf3\x6c\ +\xe5\x39\xf1\xb2\xf1\x7c\xea\x9a\x8f\x2a\x9d\x2e\xe3\xe0\xbb\x4f\ +\xb5\xc9\x01\x6a\xa1\xf6\xa9\x26\x4c\x0a\x1e\xff\x6e\x53\x85\xa4\ +\xdd\xc1\xd5\x86\xe7\xc5\xfc\x23\xa7\xcc\x27\xa9\x94\xcf\xf9\xdd\ +\xfa\x3a\xb3\x9b\xfd\xce\x7f\x28\x8e\xdb\x19\x75\xeb\x2a\x81\xba\ +\xac\x78\x66\x71\x44\xb2\x78\x57\xc0\x35\xda\xa3\x83\x67\xa7\x33\ +\xbf\x19\xde\x4d\xba\xa2\x01\xb1\x3e\xdc\xdd\xa4\x43\x71\x3f\x36\ +\xf8\xb3\x49\x77\x77\xa7\x97\xc6\x3d\x28\x8b\x1a\x4d\xdd\xf3\x94\ +\xa3\xbc\x6f\x5d\x13\xeb\x3a\x44\xec\x6b\x9a\x02\x94\x79\xe7\x29\ +\xb0\xc5\x6e\xef\xde\x23\x45\xeb\x0c\xfe\xf4\xe7\x6b\x6d\xb7\x11\ +\x93\xcb\x25\xa3\xa5\x9e\x3e\xb0\x44\x25\x74\x25\x3b\xed\x81\xf5\ +\x48\xa1\x80\xe9\x01\x7a\x16\xa6\x40\x18\x59\x1c\x4b\x7e\x43\xa1\ +\x8a\x9d\x7c\x84\x8b\xe5\x33\x8f\x52\x72\xbc\xed\x43\x67\xdf\x21\ +\xbd\x4b\xe7\x34\x70\x53\xfc\x3b\xca\x41\xc2\x6a\xc3\xc9\x6b\x92\ +\xa3\xe0\xfd\xa6\x30\x20\x25\x2a\xa7\x5a\x01\xfc\x29\x84\x33\x49\ +\x1d\x43\x35\x77\x20\x25\xf7\x9e\x6e\x27\xc4\x3d\x5d\x4c\x45\xd5\ +\xbe\x59\xf1\x06\xc4\xc9\xe9\xbd\x94\x8e\xba\xd2\xc8\xc7\x19\xe2\ +\x40\xe5\x20\x0d\xf0\x54\x1d\x53\x43\x1c\x24\xed\x68\x88\x27\x60\ +\xa8\x96\x0c\x3c\x00\xea\xe8\xd5\x79\xa6\x38\xd2\x99\x45\x1a\xfb\ +\xee\x24\x67\x7d\x20\x9d\xe6\x4d\xff\xcd\xc8\x85\x79\x67\x2e\x34\ +\xd0\xbb\x44\x7c\x32\x24\x10\x11\x02\x97\xd4\xee\x63\xac\xd4\x4f\ +\x50\x2c\xaa\xfb\x59\xee\xf6\x53\x3e\xe3\x4d\xbb\x5f\x5e\x44\x98\ +\x29\xfd\x2c\xb9\xd6\x3f\x83\x16\xef\x94\x85\x04\x00\xde\x20\x91\ +\xb7\x57\xbb\xcd\x0d\xcd\x05\x69\x98\xe3\xfa\xca\xc5\x77\x88\xc0\ +\xa5\x77\x9c\x43\x35\xd8\xc4\xa0\x71\x12\x6d\xc3\xd5\x72\xe7\x39\ +\x08\xc1\x9c\xdf\x89\x0e\x7f\xb6\x68\x40\x0a\xdb\x35\x88\x59\xfc\ +\x39\x31\xda\x24\x9d\x13\xe7\x1f\x27\x36\xf7\xcc\x70\x98\xe7\x34\ +\x45\x47\x5c\xe8\xde\x43\x7d\x2d\x58\x41\x21\xd7\x64\x5c\xc7\x90\ +\xe2\xa9\x16\xcf\xe7\xd3\x02\x6c\xee\xce\x60\x2c\x62\x7b\x4f\xf2\ +\xd5\x50\x36\x90\xcf\x4e\xa0\x87\x84\xaa\xfc\xfb\x34\x50\x61\x6b\ +\x1e\xf2\x27\xc2\xad\xdd\x38\x58\x0a\xda\xbd\xa8\x7b\xef\x22\x45\ +\xbe\xc2\x8e\xd3\x15\xf0\x54\x6d\x10\x52\xcd\x7d\xc0\x23\x92\x41\ +\xa5\x68\xeb\x20\x0b\xba\xf6\x19\xc2\x88\x41\x53\x7a\xfe\x34\x38\ +\x63\xb2\x49\x81\x3b\xcf\xe0\x88\x13\x92\x6e\x0d\x8e\xd8\x62\x91\ +\xde\xdb\x90\xd6\x47\xc1\x93\xb8\x53\x2d\x3c\xdd\x4f\xef\x0b\xe1\ +\x9a\xdc\x20\xd7\x4f\xd7\x97\xe8\x99\x15\x95\x35\x67\x43\xf7\x39\ +\x51\xfc\xf2\x48\xb2\xe0\xf8\x7e\xf7\xe0\x0d\x8a\xd0\x8d\xa3\xfa\ +\x2f\xd7\x27\x46\x34\xd2\x7f\x3a\x73\xe5\xcc\x59\x9c\x39\x88\x78\ +\x9a\x31\x5f\x73\x16\x19\xd0\xd5\x38\x07\x9a\xba\xb4\x8a\xd5\x8a\ +\x19\x75\x46\xef\xef\x3c\x87\xf6\x6a\xf7\x9d\xe8\x10\xf9\x15\xf2\ +\xa2\xb2\xee\x3c\xc7\xdb\x75\x73\x87\x5d\x58\x79\x73\xac\xef\x23\ +\x17\xe6\xa7\x99\x0b\x42\x6a\x43\xe1\x3e\x03\x44\x67\x2a\xe9\x04\ +\x34\x92\x97\x32\x0d\xb0\xdf\xe1\x23\xc4\x9c\x54\xa3\xae\x45\xc2\ +\xa1\x0e\xd0\x6b\x2a\x4c\x50\x9d\x75\x49\x0a\x99\xa6\x0e\xdf\x07\ +\x8d\x59\xa9\x5d\x67\x8c\x43\xaf\xde\x28\xfe\x8c\x71\x20\xe7\xd0\ +\xa1\x5a\xb0\xdb\xd4\x03\x83\x6e\xda\x7d\x14\x6d\x39\x6a\x8e\xc3\ +\xee\x1a\x88\x80\x21\xfe\xbb\xb4\xc3\x44\x52\x6f\xf5\x7a\xd7\xec\ +\xeb\xce\x8f\x8d\x42\x96\x54\xb5\x2d\xf4\x2c\x8f\x6d\x55\x83\x7f\ +\xd1\x20\x2a\x8a\x8a\xbe\x46\x39\x7a\x2c\x41\x1b\x55\xbc\x84\xf3\ +\x90\x4f\xcb\x93\x58\x94\x50\x2a\x91\x9e\x6b\x81\x07\xc9\x05\x9a\ +\xe4\x50\x61\x19\x9f\xc6\x96\x86\x2a\xcc\xe5\x67\xf3\xe5\x67\x77\ +\xb2\x62\x57\x16\x5b\x35\xb0\x0b\x6f\xb0\x70\xf7\xd8\xd5\xa9\x15\ +\x04\xc1\xbb\x12\x05\x4b\xca\x86\x10\x00\x0b\x7c\xd5\x18\x0f\x49\ +\x7b\xf3\x65\xe9\x09\x98\xbb\x0d\x7a\x9b\x2e\x2f\xf5\xbb\xee\x19\ +\xbf\x54\x74\xaa\xca\x7a\xce\x28\xf0\xb9\x1e\xf8\x36\xb7\x81\x8b\ +\xf6\x0b\x7b\x6a\x1d\x72\x57\xb1\x03\x4d\x67\x37\xe6\xb9\x13\x29\ +\xeb\xb4\x70\xbb\xcd\xe3\x86\x40\x50\x47\x11\xa4\xae\xe7\x52\xa0\ +\xae\xa6\x52\x9c\x51\xaf\x86\x80\x5d\xed\xcc\x10\xc2\xad\x57\x39\ +\xb5\xfc\x1d\x22\x14\x6f\x78\xce\x10\xa1\xd3\x0c\x9e\xfa\xc7\x8f\ +\xd2\xa6\xef\x59\xfa\x1d\xd2\x3d\x73\x39\xcb\xf4\x33\xda\xef\xdf\ +\x21\x10\x0d\x1d\xdd\xda\x71\x37\xc9\xda\x13\x90\xa1\xeb\x4c\x0c\ +\x9d\xfd\x4e\x57\xc5\x2e\xc6\x96\xc4\x0d\x77\x3e\xd2\x9e\x59\x5d\ +\x23\x3e\x4f\x76\x52\x42\xb5\xc7\x84\xa4\xb2\x94\xfe\xf1\x50\x3e\ +\x49\xf1\x51\x7c\xd1\xd0\x6a\x20\x7a\xca\x1f\xe7\x81\x31\x5a\x99\ +\x54\xda\xa1\x01\x7e\x60\xea\x4e\xec\xaa\x77\x16\x40\xb2\xac\x81\ +\x5d\xb5\x2b\x14\xc1\xda\x30\x03\x96\x10\xcd\xf5\x0e\x95\x15\xd2\ +\x0f\x06\x4e\x71\xa1\x64\x9f\x49\x54\xf3\xcb\x30\xb0\x0a\x4a\xd1\ +\x08\x8d\xb5\xfd\x9d\x50\xc5\x3a\x55\x93\x6b\xaa\x11\xe1\x48\x64\ +\x7f\x46\x78\xfd\x67\x84\x97\xe8\x18\xb8\x5f\x2d\x9e\x77\xdc\x2d\ +\x9e\x19\xde\xa2\x1e\xe1\x3a\xd5\xb7\x51\x70\x4f\xd3\x11\x89\x85\ +\xd9\x6f\x40\xdc\x91\x1d\xd8\x66\xf7\xef\x83\x16\x9a\xb8\x35\x43\ +\x4a\xf4\x09\x9a\xf3\x11\x03\x73\x08\x35\x8d\xe9\xa9\x1d\xf5\xdc\ +\xd6\x7d\x4c\x99\xc0\xf4\xf1\x50\xe5\xaf\x67\x47\xc6\x19\x65\xf8\ +\xb1\x04\x73\xd7\xa0\x27\x0a\xbe\xae\x6c\xff\x78\x65\x58\xb3\x1e\ +\xf0\xb0\xef\x03\x1e\x1a\xe8\x2d\xef\x74\xbd\x01\xf2\xee\x2c\xaf\ +\x98\x4b\xd0\x26\xc6\x96\x4e\x39\x93\xbc\xd7\x4e\x9a\x75\xa6\x30\ +\x43\xbb\x97\x46\x9d\x41\x28\xd9\xc9\x9e\x41\x5e\xaf\xfd\x0b\x4d\ +\x93\x64\xa3\x21\xd6\xb3\x1d\xf6\x68\xa4\x4b\x73\xbb\xa1\x5f\x99\ +\xe9\xd5\xc9\x42\xec\x50\xdb\xd3\xa9\x21\x8f\xa6\x4e\xfb\xed\x75\ +\x50\x83\xbe\xb9\x9b\xe8\x32\xbf\x19\x0a\x26\x2e\x2c\xc1\x55\x24\ +\xa9\x21\x44\xdd\x43\x78\xed\x62\x2d\xda\x19\x45\x59\xc4\xa8\xa9\ +\xdd\x45\xb5\xf0\xb8\x52\x51\x09\xd0\x19\x7f\xc6\x72\xf7\x8b\x34\ +\xa0\xec\x3a\xc3\x0c\xbf\x1f\x0c\x56\xbf\x25\xef\xe4\xd6\x3b\xac\ +\x7b\xad\x58\xf4\x54\x85\x39\x0f\x72\xd4\xa4\xb7\xce\x38\x7c\x5a\ +\xf7\xb1\x8d\x77\x20\x1e\xc6\x80\x15\xb4\xe7\x87\xf0\x87\xf8\x53\ +\x19\x2b\xbc\xa3\x37\xd8\x32\xaf\xbb\xf9\x59\x80\x39\x53\x0c\xca\ +\xad\x97\x97\x05\x15\xc3\xf6\xaf\xf2\x1d\x52\x64\xf5\xdc\xc1\xe7\ +\x21\x80\xdd\x8c\x66\x3f\xe2\xfb\x14\x80\xd3\x38\xe5\xbc\x4f\x01\ +\xa8\xc9\x1b\xd4\xc8\x84\x47\xdb\x7f\xd0\x43\x30\x1a\x72\xd7\x6c\ +\x5b\x18\x02\xd4\x82\x64\xd0\xdc\x30\x57\xb7\xce\x82\x24\x0b\x55\ +\x0a\x10\xe2\x32\xe4\x8e\xb7\x55\x19\x24\xf5\xf7\x52\xd2\xf3\x48\ +\x84\xca\xc8\x36\xe2\xa4\xfe\x04\xa5\xa8\xe8\x9d\x5d\xfb\x69\xca\ +\xe2\xf3\x1c\xd5\xa1\xff\xb8\x11\x66\x47\x44\x4a\x05\xc7\x0c\x46\ +\xda\x0a\xb4\xa8\x7d\x48\x88\xfc\xfd\xec\xca\x91\x95\x14\x2f\x65\ +\xa8\x47\xcc\xde\x8e\xf7\x56\xaf\x55\xb3\xf5\xe9\x7d\x92\xca\xfc\ +\xee\x51\x2a\x85\xbe\x5a\x53\xe3\xb9\x83\x1f\x15\x22\x91\x21\x30\ +\x52\xed\xd4\x27\x16\x9e\xbb\x36\x83\xc9\x97\x5c\xcf\x53\xce\xeb\ +\x11\x87\x1c\xea\x36\xdc\x56\x57\xd1\x23\x39\x50\xc1\x77\x26\x62\ +\xdf\x86\x73\x48\xf5\x1d\x03\x59\x77\x57\x77\xdf\x0b\x88\x59\x09\ +\xb1\xb4\x97\x64\xce\xb3\x37\x10\x22\x68\x85\x9e\xbd\xd1\x03\x74\ +\x7a\xf6\x86\x32\x4a\x1d\x6d\x27\x41\xf5\xe8\xce\xa3\x81\x74\x0a\ +\x8a\xc6\xc5\x58\xf0\x79\xd6\x27\x81\x84\xe5\x3c\xeb\xe3\x5b\x47\ +\x1c\xeb\x61\x9f\xd7\x14\x28\x2f\x8d\xef\x40\xca\xf4\xdc\xd3\x7e\ +\x1f\xf2\x08\x33\x67\x7f\xbb\x38\x56\xd9\x5e\x34\x36\x3f\x04\x58\ +\x83\x00\x7c\x20\xdd\xe7\x51\x18\xa7\xd9\x43\x0a\xfa\xe1\x9d\x77\ +\xba\xf0\x41\x90\x68\xbe\x6e\xc7\x3b\xf8\xd9\xd7\x79\xb3\x6b\xcf\ +\xf7\xf4\x34\xc7\xcd\x2f\x49\x65\x09\x34\x65\xaf\xd1\x65\x17\x9c\ +\x2e\xdd\x53\x17\xaf\xe4\xd0\x99\xed\xfb\xe1\x54\xb9\x5b\x15\x7f\ +\x3d\x86\xf6\xc7\x35\x47\xa3\xf2\xf7\x9c\xc7\x94\xd4\xea\x87\xdf\ +\xc0\x18\xea\xd8\x32\xd5\x31\x28\xc6\x8a\x28\xfe\xa5\xed\x14\x68\ +\xb8\x66\x57\x35\xbe\x01\xe1\x4b\xf5\x52\x79\x6d\x93\x2c\xdc\x5f\ +\xa2\x98\xac\x1e\x8e\xea\xe7\x31\x08\xec\x75\xf5\xd0\xdf\x7b\x2b\ +\x6a\xb8\x12\x85\xc0\xe9\x71\x7c\xa3\x64\x0b\x1a\x16\x68\x7f\x62\ +\x03\xb6\x90\x42\x50\x6c\x14\xd4\x32\x3c\x4f\xa1\xe1\x67\x53\xa7\ +\x24\x69\x97\xfb\x34\x19\x03\xe7\xf7\x67\x24\xe3\x3c\xfd\xf4\xf5\ +\x98\x87\x48\xf9\x01\xf5\xab\x2b\xcf\x23\x79\x64\xdc\x79\x24\x2f\ +\xbf\x8f\xe4\x21\x54\xbb\x14\xa3\x7b\x1f\xf7\xeb\xe9\xcc\x74\x86\ +\xf7\x71\xbf\xa4\x38\x6a\x63\xd8\xf3\xbc\x9f\xaa\x5a\x85\xcb\xea\ +\x71\x3f\xcf\x19\x1d\x5c\xd6\xfd\x8b\x07\xab\x3e\x63\xfd\x0d\x56\ +\xfb\xdc\x87\x02\x4f\x7b\xee\xd0\x58\xf5\xbd\xeb\x11\x82\x54\xdb\ +\xf7\x41\x47\x89\xce\x34\xf6\x7d\xce\x71\xc0\x92\x55\x3c\xf5\x9c\ +\xa3\xc6\xcd\x70\x49\x36\xda\x8b\xb2\xf3\xeb\x59\xaa\xdf\x76\xfc\ +\x7c\x2d\xbf\x80\x10\xab\xa0\x96\x98\xff\x05\xa2\x87\xc1\x0f\xaa\ +\x4f\xc1\xbf\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\ +\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\ +\x23\x00\x00\x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\x07\x74\x49\ +\x4d\x45\x07\xe2\x09\x14\x09\x36\x1d\xa0\xf8\x74\xb3\x00\x00\x02\ +\x07\x49\x44\x41\x54\x38\xcb\xb5\xd5\xb1\xaa\xe2\x40\x14\x06\xe0\ +\x7f\xc6\x14\x76\x61\x48\x65\x61\x40\x48\x91\x07\xb0\xb1\x48\x25\ +\xb1\xf0\x11\x84\x94\x06\xc4\xfe\x3e\x8a\x16\x76\xce\x3b\xac\x90\ +\x21\x55\x0a\x1b\x1f\x20\x75\xa6\x94\x30\xa4\x8b\x38\xce\xd9\xca\ +\xcb\xe5\xc2\x65\xd7\xc5\xfd\xe1\x94\xf3\x31\xa7\x98\x7f\x18\xbe\ +\xe4\x70\x38\xb0\xf5\x7a\x4d\x65\x59\x0e\x8d\x31\x8b\xb6\x6d\x37\ +\x4d\xd3\xa4\xce\xb9\x01\x00\x70\xce\x1f\x61\x18\xaa\x20\x08\xf6\ +\x42\x88\x62\x3e\x9f\xf7\xcf\x33\x4f\x83\xe1\x5b\xa4\x94\x4b\xad\ +\xf5\xbe\xaa\xaa\xb0\xae\x6b\x00\x80\xef\xfb\x00\x80\xae\xeb\x00\ +\x00\x71\x1c\x23\x49\x92\x66\x3c\x1e\x6f\xb2\x2c\xfb\x85\x9f\x72\ +\x3c\x1e\x3f\xf2\x3c\xa7\xc9\x64\x42\xab\xd5\xca\x9d\x4e\x27\x77\ +\xbd\x5e\xc9\x5a\x4b\xd6\x5a\xba\x5e\xaf\x74\x3a\x9d\xdc\x6a\xb5\ +\x72\x93\xc9\x84\xf2\x3c\xa7\xe3\xf1\xf8\x81\xef\x6b\x3e\xb1\xed\ +\x76\x4b\x51\x14\x51\x51\x14\x44\x44\x74\xbf\xdf\xe9\x76\xbb\x51\ +\xdf\xf7\xd4\xf7\x3d\xdd\x6e\x37\xba\xdf\xef\x44\x44\x54\x14\x05\ +\x45\x51\x44\xdb\xed\xf6\x13\x7d\x5a\x90\x52\x2e\xf3\x3c\xa7\x28\ +\x8a\x48\x6b\x4d\xd6\xda\x4f\xe4\xa7\xb1\xd6\x92\xd6\x9a\xa2\x28\ +\xa2\x3c\xcf\x49\x4a\xb9\x04\x00\x5e\x96\xe5\x50\x6b\xbd\x57\x4a\ +\x61\xb7\xdb\x61\x34\x1a\xc1\x5a\x8b\x3f\xc5\x5a\x8b\xd1\x68\x84\ +\xdd\x6e\x07\xa5\x14\xb4\xd6\xfb\xb2\x2c\x87\xdc\x18\xb3\xa8\xaa\ +\x2a\x9c\xcd\x66\x94\xa6\xe9\x5f\x61\x5f\xd1\x34\x4d\x31\x9b\xcd\ +\xa8\xaa\xaa\xd0\x18\xb3\xe0\x6d\xdb\x6e\xea\xba\x46\x96\x65\x2f\ +\x61\x5f\xd1\x2c\xcb\x50\xd7\x35\xda\xb6\xdd\xf0\xa6\x69\x52\x00\ +\x98\x4e\xa7\xcc\x39\xf7\x32\xe8\x9c\xc3\x74\x3a\x65\x00\xd0\x34\ +\x4d\xca\x9d\x73\x03\xdf\xf7\x21\x84\x00\x11\xbd\x0c\x12\x11\x84\ +\x10\xf0\x7d\x1f\xce\xb9\x01\xc7\x9b\xc3\x39\xe7\x8f\xae\xeb\x60\ +\x8c\x01\x63\xec\x65\x80\x31\x06\x63\x0c\xba\xae\x03\xe7\xfc\xc1\ +\xc3\x30\x54\x00\x70\xb9\x5c\x88\x73\xfe\x2f\x37\xc2\xe5\x72\x21\ +\x00\x08\xc3\x50\xf1\x20\x08\xf6\x71\x1c\x43\x4a\x09\xcf\xf3\x5e\ +\x06\x3d\xcf\x83\x94\x12\x71\x1c\x23\x08\x82\x3d\x17\x42\x14\x49\ +\x92\x34\xe7\xf3\x99\x29\xa5\x5e\x42\x3d\xcf\x83\x52\x0a\xe7\xf3\ +\x99\x25\x49\xd2\x08\x21\x8a\xb7\x3f\xbd\xff\x53\x0e\xef\xac\xaf\ +\xb7\x17\x2c\x7b\xf7\x17\xf0\x1b\x39\x76\x0e\x01\xc1\xbf\xd8\xe3\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x06\x15\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x03\x00\x50\x4c\x54\x45\x00\x00\x00\xff\x00\x00\x00\xff\ +\x00\xff\xff\x00\x00\x00\xff\xff\x00\xff\x00\xff\xff\xff\xff\xff\ +\xdb\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\ +\x24\x24\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\x00\x49\x00\ +\x00\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\ +\x00\x49\x00\x00\x24\x00\xdb\xdb\x00\xb6\xb6\x00\x92\x92\x00\x6d\ +\x6d\x00\x49\x49\x00\x24\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\ +\x92\x00\x00\x6d\x00\x00\x49\x00\x00\x24\xdb\x00\xdb\xb6\x00\xb6\ +\x92\x00\x92\x6d\x00\x6d\x49\x00\x49\x24\x00\x24\x00\xdb\xdb\x00\ +\xb6\xb6\x00\x92\x92\x00\x6d\x6d\x00\x49\x49\x00\x24\x24\xff\xdb\ +\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\x24\ +\xff\xb6\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\xff\ +\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\xff\x6d\x6d\xdb\x49\ +\x49\xb6\x24\x24\xff\x49\x49\xdb\x24\x24\xff\x24\x24\xdb\xff\xdb\ +\xb6\xdb\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\xb6\ +\xff\xb6\x92\xdb\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x92\xff\ +\x92\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x6d\xff\x6d\x49\xdb\x49\ +\x24\xb6\x24\x49\xff\x49\x24\xdb\x24\x24\xff\x24\xdb\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\xb6\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x92\x92\xff\ +\x6d\x6d\xdb\x49\x49\xb6\x24\x24\x92\x6d\x6d\xff\x49\x49\xdb\x24\ +\x24\xb6\x49\x49\xff\x24\x24\xdb\x24\x24\xff\xff\xff\xdb\xdb\xdb\ +\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\xff\xff\xb6\ +\xdb\xdb\x92\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\xff\xff\x6d\xdb\xdb\x49\xb6\xb6\ +\x24\xff\xff\x49\xdb\xdb\x24\xff\xff\x24\xff\xdb\xff\xdb\xb6\xdb\ +\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\xff\xb6\xff\xdb\ +\x92\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\xff\x92\xff\xdb\x6d\ +\xdb\xb6\x49\xb6\x92\x24\x92\xff\x6d\xff\xdb\x49\xdb\xb6\x24\xb6\ +\xff\x49\xff\xdb\x24\xdb\xff\x24\xff\xdb\xff\xff\xb6\xdb\xdb\x92\ +\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\xb6\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\x6d\x6d\x92\xff\xff\x6d\xdb\xdb\ +\x49\xb6\xb6\x24\x92\x92\x6d\xff\xff\x49\xdb\xdb\x24\xb6\xb6\x49\ +\xff\xff\x24\xdb\xdb\x24\xff\xff\xff\xdb\xb6\xdb\xb6\x92\xb6\x92\ +\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\x00\xff\xb6\x92\xdb\x92\x6d\ +\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\xff\xb6\xdb\xdb\x92\xb6\xb6\ +\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\x00\x24\xff\x92\xb6\xdb\x6d\ +\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\xdb\xb6\xff\xb6\x92\xdb\ +\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\x49\xb6\x92\xff\x92\ +\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x00\x6d\xb6\xdb\xff\x92\xb6\ +\xdb\x6d\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\x49\x92\xb6\xff\ +\x6d\x92\xdb\x49\x6d\xb6\x24\x49\x92\x00\x24\x6d\xb6\xff\xdb\x92\ +\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\x49\x00\x49\x24\x92\xff\ +\xb6\x6d\xdb\x92\x49\xb6\x6d\x24\x92\x49\x00\x6d\x24\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\x00\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x00\xff\xb6\ +\x00\xdb\x92\x00\xb6\x6d\x00\x92\x49\x00\xff\x00\xb6\xdb\x00\x92\ +\xb6\x00\x6d\x92\x00\x49\x00\xb6\xff\x00\x92\xdb\x00\x6d\xb6\x00\ +\x49\x92\x00\x00\x00\x00\x00\x00\xcf\x2a\x02\x04\x00\x00\x02\xd0\ +\x49\x44\x41\x54\x38\xcb\xb5\x95\xbd\x4f\x5a\x61\x14\xc6\x9f\xf3\ +\xe2\xb5\x54\x50\xb8\x61\x50\x50\xee\x2a\x13\x9b\x18\x4c\x1d\x1a\ +\x05\x4d\xfb\x0f\x18\x8d\x10\x63\x34\x21\x69\xd3\xad\x8e\x4d\x47\ +\x5d\x3b\x90\x60\xfa\x21\x8d\xc6\x7f\xa0\xc6\xcf\x74\xa0\x95\x88\ +\x1b\x13\xa6\x4b\x7b\x51\xd0\x81\x5c\x50\xb0\xc6\x2b\x9c\x0e\xb7\ +\x12\xdb\xf8\x51\x12\xfb\xcc\xe7\xfc\xde\xe7\x7d\x4f\xce\xf3\x12\ +\xae\x28\x36\x1f\xa3\xe9\xa9\x69\x5e\xdd\x5a\x33\x1f\x6b\xa5\xa0\ +\x56\xd0\x22\x39\x35\x17\xe0\x2a\x9b\x00\x80\x4c\x54\x75\x29\xae\ +\x0d\xd9\x21\x47\xdb\x64\xdb\xfa\xf0\xc0\xd0\xd9\x65\xcf\x25\x83\ +\xf0\x97\x16\x3e\x2e\x3c\xc9\x67\xf3\xd1\x64\x22\xa9\xa4\x33\x69\ +\xa8\xb4\x0f\xd8\x7f\x97\x15\x19\x0a\x77\xc1\xeb\xf1\xc2\xdf\xef\ +\x57\x9d\x6e\x67\x24\x3c\x1e\x5e\xb9\xda\xff\x07\x30\x1e\x8f\xbf\ +\x4c\x7d\xd9\x99\x5d\xda\x5c\x46\xb1\xbb\xcc\x56\x9f\x0d\xb2\xc7\ +\x41\x52\x6b\x33\x00\x40\x3f\x39\x87\x96\x29\x70\x39\x55\x82\x7d\ +\xcf\x4a\xa3\x83\x23\xf0\x3d\xea\x9d\x09\x85\x42\x73\x75\xe0\xa5\ +\xe5\x78\x3c\xfe\x72\x77\x67\x77\x36\xb6\xfe\x16\xd2\x98\x05\x9d\ +\x7d\x6e\x58\x9a\x5a\x20\x20\x40\x6c\x9c\xcb\xc4\xa8\xa1\x86\xca\ +\xc5\x29\x0e\xb6\xb3\xd0\x17\x2b\x98\x0e\x4e\xa2\xa7\xb7\x67\x26\ +\x14\x0a\xcd\xc5\xe6\x63\x44\x97\xd7\xdc\x4d\xa4\x3e\xcd\x7f\x7e\ +\x0f\xfb\xab\x0e\x74\xb4\xb7\x43\x22\x09\x0c\xc6\x75\x22\x10\x74\ +\xd6\x71\x78\x74\x84\xe2\xeb\x43\x4c\x3d\x9e\x40\x4f\xbf\xef\x69\ +\x78\x3c\xbc\x22\x56\xb7\xd6\xcc\xf9\x6c\x3e\xba\xb4\xb9\x0c\x69\ +\xcc\x62\xc0\xc4\xcd\x30\x00\x60\x30\x24\x21\x19\xb5\x63\x16\x2c\ +\x6d\x2e\x23\x9f\xcd\x47\x57\xb7\xd6\xcc\xe2\x58\x2b\x05\x93\x89\ +\xa4\x52\xec\x2e\x73\x67\x9f\xdb\x70\xc6\x37\xc3\xea\x50\x66\x48\ +\x24\xa1\xb3\xcf\x8d\x62\x77\x99\x93\x89\xa4\x72\xac\x95\x82\x42\ +\x2b\x68\x91\x74\x26\x0d\xab\xcf\x06\x4b\x53\xcb\xad\xce\xae\x73\ +\x6a\x69\x6a\x81\xd5\x67\x43\x3a\x93\x86\x56\xd0\x22\x22\xa7\xe6\ +\x02\x2a\xed\x43\xf6\x38\x48\x40\xa0\x51\x09\x08\xc8\x1e\x07\xa9\ +\xb4\x8f\x9c\x9a\x0b\x08\xae\xb2\x09\x76\x82\xd4\xda\x5c\x9f\x66\ +\x23\x22\x36\x7a\x61\x27\x70\x95\x4d\x8d\x5b\xba\xcb\x31\x99\xa8\ +\x8a\x22\x43\x3f\x39\x07\x13\x37\x0c\x60\x32\x7a\x51\x64\x90\x89\ +\xaa\xc2\xa5\xb8\x36\x14\xee\x82\x96\x29\x70\x0d\xb5\x86\x81\x35\ +\xd4\xa0\x65\x0a\xac\x70\x17\x5c\x8a\x6b\x43\xc8\x0e\x39\xea\xf5\ +\x78\x51\x4e\x95\x50\xb9\x38\x05\xe1\xdf\xdf\x91\x40\xa8\x5c\x9c\ +\xa2\x9c\x2a\xc1\xeb\xf1\x42\x76\xc8\x51\xd1\x26\xdb\xd6\xfd\xfd\ +\x7e\xd5\xbe\x67\xa5\x83\xed\x2c\x74\xd6\x41\x74\x37\x94\xc8\xd8\ +\x96\x83\xed\x2c\xec\x7b\x56\xf2\xf7\xfb\xd5\x36\xd9\xb6\x2e\x86\ +\x07\x86\xce\x9c\x6e\x67\x64\x74\x70\x04\xfa\x62\x05\x87\x47\x47\ +\xd0\x6b\xfa\xad\x4e\x09\x04\xbd\x66\xac\x9e\xbe\x58\xc1\xe8\xe0\ +\x08\x9c\x6e\x67\x64\x78\x60\xe8\xcc\x14\x9b\x8f\xd1\xe4\xc4\xe4\ +\xb7\x67\x2f\x9e\xff\x74\x9a\xdb\x03\x5f\xdf\x25\x50\xb2\x97\xf1\ +\xa0\xeb\x21\x24\x93\x04\x41\xc2\x08\x08\x22\x40\x18\x43\x28\x57\ +\x2b\xf8\xb1\xfd\x1d\xa7\x6f\x34\x4c\x07\x27\xe1\xeb\xf3\xcd\x84\ +\x43\xe1\x0f\xf5\x70\xb8\xd7\xf8\xfa\xaf\x01\x7b\x1f\x5f\xc0\x2f\ +\xcd\x6b\x87\x8d\x37\xf2\x80\xb0\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x28\xad\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x24\xae\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\ +\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x65\x78\x69\x66\x00\x00\x78\ +\xda\xad\x9c\x6b\x92\x1e\xb7\x12\x5c\xff\xf7\x2a\xbc\x84\xc6\x1b\ +\x58\x0e\x9e\x11\xde\x81\x97\xef\x93\x85\x1e\x92\xd2\x95\xae\xc3\ +\x0e\x8b\x12\x87\x9c\xe9\xaf\x1b\x5d\x8f\xac\xcc\x42\x41\xcf\xfe\ +\x5f\xff\xf3\x3c\xff\x83\x7f\x9a\x7f\xe3\x13\x53\xa9\xb9\xe5\xfc\ +\xf2\x4f\x6c\xb1\xf9\xce\x1f\xea\x7b\xff\xb9\x5f\xdd\x1b\xed\xf7\ +\xfb\x97\xf8\xfd\xcc\xfd\xf5\xfb\xcf\xaf\x1f\x78\xbe\x15\xf8\x1a\ +\xee\x5f\xf3\xfe\xae\xef\x7c\x3f\xfd\xfe\x40\xf9\xae\x77\xe3\xaf\ +\xdf\x7f\xca\xfc\xee\x53\xbf\x1b\xb9\x5f\x37\xb6\x7f\x82\x9e\xac\ +\x3f\x7f\xd7\xd5\xef\x46\xc1\xdf\xef\xff\x2c\xe4\x69\xdf\xe7\x7a\ +\xfc\xe3\x75\xbe\xff\xfc\xfc\x6e\xfb\xdd\xfc\xef\x7f\x8f\x05\x63\ +\xac\xc4\xfd\x82\x7f\xfc\x0e\x2d\x34\x7e\x77\x7a\x4a\x60\x05\xa1\ +\x86\xce\xd7\xc6\xef\xfc\xdd\xeb\x3b\x8e\x3f\x27\xfe\xd6\x43\x0c\ +\xfe\x9f\x6d\xf7\xfc\xfa\xe3\xdf\x8c\xf7\xeb\x4f\x7f\xb3\xdd\xdb\ +\xbf\xef\x87\xbf\x9a\xe2\x79\xf3\x77\x41\xfe\x9b\x8d\xbe\xef\xbb\ +\xf4\xb7\xef\x87\x5f\x8f\xf1\x7f\xf5\xda\xef\x27\xff\xe5\x07\x6b\ +\x7b\xff\xfe\xf9\xcf\x1f\xb6\x3b\x67\xd5\x73\xf6\x7d\xbb\x1e\x33\ +\x96\xca\xcf\xf7\x52\x3f\xaf\x62\x7f\xe2\xc2\x81\x29\x83\x7d\x2c\ +\xf3\xab\xf0\x5f\xe2\xcf\xc5\x7e\x35\x7e\x55\x5e\x71\xe2\xb1\x85\ +\x37\x07\xbf\xe6\xe3\x9a\xf3\x2e\xbc\xc7\x45\xb7\x5c\x77\xc7\x6d\ +\xfb\x3a\xdd\x64\x89\xd1\x6f\x5f\xf8\xea\xfd\xf4\xc1\xbe\x57\x43\ +\xf1\xcd\x4f\x73\x4a\xd4\x2f\x77\x7c\xc1\x31\xeb\xc1\x47\x3e\x4c\ +\xbc\x16\xe4\x91\x5f\x6b\x71\xf6\xdc\x66\xcf\x9b\xae\xf2\xe4\xe5\ +\xb8\xd2\x3b\x6e\xe6\xf8\xc4\x7f\xfc\x7a\xfe\xe9\x9b\xff\x2f\xbf\ +\x7e\xdd\xe8\x1c\x85\xae\x73\x6f\xfd\x65\x2b\xd6\x65\x06\x67\x19\ +\xf2\x9c\x7e\xe7\x2a\x1c\xe2\xce\x67\xd3\x64\xf6\xb5\x5f\xcf\x1f\ +\x71\xf3\xfe\xe1\xd8\x80\x07\x93\x99\xb9\xf2\x82\xfd\x1d\xf7\x16\ +\x23\xb9\xdf\xb1\x15\xcc\xcf\x81\xeb\x12\xd9\xff\xde\xd4\x70\x65\ +\x7d\x37\xc0\x44\x3c\x3b\xb1\x18\x22\x3a\xba\x37\xbb\x90\x5c\x76\ +\x6f\xf1\xbe\x38\x87\x1d\x2b\xfe\xe9\xac\xdc\x87\xe8\x07\x1e\x70\ +\x29\xf9\xe5\x9e\x83\x6f\x42\xc8\x38\xa7\x7a\x3d\x9b\xcf\x14\x67\ +\xd7\xfa\xe4\xef\xb7\x81\x16\x1c\x91\x42\x0e\x05\xd7\x90\x3a\x38\ +\x2b\xc6\x44\xfc\x94\x58\x89\xa1\x9e\x42\x8a\x4f\x4a\x29\xa7\x92\ +\x6a\x6a\xa9\xe7\x90\x63\x4e\x39\xe7\x92\x85\x51\xbd\x84\x12\x4b\ +\x2a\xb9\x94\x52\x4b\x2b\xbd\x86\x1a\x6b\xaa\xb9\x96\x5a\x6b\xab\ +\xbd\x79\xd2\x34\xb6\xd4\x72\x2b\x4f\xab\xad\xb5\xde\x79\x68\xe7\ +\xd6\x9d\x4f\x77\xae\xe8\x7d\xf8\x11\x46\x1c\x69\xe4\x51\x46\x1d\ +\x6d\xf4\x49\xf8\xcc\x38\xd3\xcc\xb3\xcc\x3a\xdb\xec\xcb\xaf\xb0\ +\x48\xff\x95\x57\x79\x56\x5d\x6d\xf5\xed\x36\xa1\xb4\xe3\x4e\x3b\ +\xef\xb2\xeb\x6e\xbb\x1f\x62\xed\x84\x13\x4f\x3a\xf9\x94\x53\x4f\ +\x3b\xfd\x97\xd7\x3e\xaf\xfe\xd5\x6b\xee\x6f\x9e\xfb\xef\x5e\x73\ +\x9f\xd7\xe4\xb1\x68\xd7\x95\xdf\x5e\xe3\xdb\xa5\xfc\xdc\xc2\x09\ +\x4e\x92\x7c\x86\xc7\x7c\x74\x78\xbc\xc8\x03\x04\xb4\x97\xcf\xde\ +\xea\x62\xf4\xf2\x9c\x7c\xf6\x36\x4f\x52\x24\x8f\xd7\x5c\x92\x73\ +\x96\x93\xc7\xf0\x60\xdc\xce\xa7\xe3\x7e\xf9\xee\xb7\xe7\xfe\xab\ +\xdf\x9e\x14\xff\xaf\xfc\xe6\xff\xcd\x73\x8f\x5c\xf7\xff\xc3\x73\ +\x8f\x5c\xf7\x79\xee\x3f\xfd\xf6\x0f\x5e\x5b\xdd\x2a\x4a\x30\x07\ +\x29\x0b\x65\xd3\x37\x1c\x80\x8d\x0b\x76\xed\xbe\x76\xd5\xa4\xfb\ +\x75\xf3\x2d\xb7\x71\x54\x3d\xa1\x97\x02\xb6\xa4\x43\xa2\x2e\xc7\ +\x5d\xf7\x6e\xe9\x84\x5d\x6a\x1a\x29\x57\x42\xfe\x60\xd3\x9e\x9f\ +\x6e\x48\x15\x80\xaa\x7d\xd6\x1c\xdc\x3d\xd5\x9d\x1c\xe0\x19\x7c\ +\x2c\x25\xa4\xdd\x82\x6e\x82\xe7\x4f\xf4\xfa\x53\x3b\x71\xc5\x72\ +\xb8\xbc\x17\xfd\xdd\x51\x33\xdd\x7c\x78\xd7\xc4\xdf\xf1\x4f\x5e\ +\xe3\xec\x31\xf5\xb9\x18\x0a\x31\x9a\xc7\xf2\x27\xc5\xe5\x36\xef\ +\xec\x53\x9a\x7d\x0f\x2a\x52\x98\xa4\xfb\x00\x2c\xfd\x22\x39\xce\ +\xdb\x52\xf1\x9b\x02\x89\xcb\x09\xa8\x19\x5c\x2d\x6e\x9d\x95\x3b\ +\xb8\x3e\x7d\x8f\xab\x70\xdf\xb2\x79\xfc\x39\xe3\x34\x7f\x9f\x0e\ +\x4c\xbb\xc3\x07\x78\x54\x3a\xbb\xcf\xa2\x0f\x14\x8c\xf8\xac\xae\ +\x0b\xe6\x09\x6d\x1c\xef\xce\x26\x91\x4f\xe2\xbd\xa3\xa2\x61\xe1\ +\xb7\xc1\x8a\x41\x96\xf2\x86\x4d\xa0\xb0\x58\xee\x0d\x23\x70\x44\ +\xd1\x0e\x87\xc7\x95\xed\xce\xec\xcf\xf0\x01\xc3\x86\xb2\x02\xaf\ +\x8d\x05\x79\xfe\x3a\x96\x11\x0a\xaf\xb5\x94\x19\x8b\xc0\x18\xbd\ +\x10\x90\xa7\x8c\xe6\xea\xae\x75\xc8\x1f\x07\x12\x91\xcf\xda\x5a\ +\x0a\x36\xea\xba\xd3\x99\x7b\x78\x3f\x3c\xe6\x98\xe5\xf4\x14\x07\ +\x05\xdc\xaf\xb1\x76\x05\xcf\x56\x02\xf8\x70\xde\xee\x5d\x96\x6f\ +\x04\x1f\x0f\x0c\x33\x6f\x5e\xff\xe0\xc5\xb3\x1f\xdf\xeb\x1b\xba\ +\x0b\x2b\x37\x3f\xde\x86\xe9\x1b\x19\xf6\xce\x5a\x09\xa7\x15\x5a\ +\x32\xc7\x3b\x05\xc1\xf4\x4a\x12\xdd\xa0\xf3\x52\xf7\x06\xb0\x9e\ +\x77\x8d\x9e\x1c\x01\x39\x5e\x5d\x4a\x86\xb5\xe1\xcc\xbd\x3b\x15\ +\xfe\x50\xa6\x59\xaf\xae\x80\x8b\x74\x77\x47\x24\xdf\xbb\xd7\xf4\ +\x73\x8b\xd3\x31\x92\x05\xc5\x53\x4f\x8c\x87\xb7\x69\xab\xf0\xfd\ +\x7f\x5e\xb6\xef\xfd\xa4\x41\x6c\xf3\x81\x48\xf6\xe0\x34\x25\xcd\ +\xf2\x31\x97\xee\xbd\x02\x7e\x3c\x0b\x17\x60\x8a\xa1\x8b\xb8\xdc\ +\xee\x99\xd2\x26\x8c\xfa\x22\x7a\xde\xdc\x92\x4f\xcb\xfb\xaa\x4f\ +\x92\x5c\x04\x16\xae\xd3\xd5\xa5\x8f\xf4\xdb\x51\xcf\xdf\x3d\xf5\ +\x0a\x7c\xf2\x50\x8c\x28\xa8\x72\xdf\x65\xc4\x79\xc3\x61\xa5\x11\ +\xc8\xeb\x24\xe8\x2a\x3e\xec\xac\x70\x20\x95\x52\x21\xd7\x08\x83\ +\x25\xc7\xb7\xb9\x4e\x7b\xaf\x61\x95\x7f\x69\x8f\xd1\x4f\x4d\x58\ +\x8b\xba\xb3\xa6\xe5\x5a\xb9\xe9\xb2\x81\x18\x16\x25\x0b\xa6\xd8\ +\x3a\x19\x3d\x09\xc8\xdd\xec\xb5\xca\xf1\xb6\x60\xd8\x4c\x3f\x40\ +\x4b\x0f\x8b\xec\xc1\xd0\x2d\xaf\x5c\x52\x2b\xb5\x13\x7b\xad\xbd\ +\xab\xf7\xbe\x1a\x44\x62\xbb\x29\x6e\xd0\xc4\x4a\x72\x78\xde\x4a\ +\x2a\x74\xbd\x51\xaf\x30\x65\x8c\xf4\xa5\xa6\xdb\x25\x99\x17\x47\ +\xc6\xe0\x9d\xcc\xd6\x12\x6d\x15\xfd\x74\xa7\x55\xf0\xe2\xb6\x42\ +\x5e\x2a\x3c\xf6\x23\xae\x20\x6a\x5d\xdc\x7d\xbd\x79\xb4\xed\xe3\ +\x18\x2b\xe6\xd5\x7c\x8c\x35\xf3\x15\xc4\x48\x2a\x1b\x93\xf5\xb6\ +\xb9\x09\x91\x0d\x0d\x0e\xee\x37\xfe\x3c\x7f\x05\xa2\x3f\xbe\x12\ +\xf9\x2f\x18\x42\xa0\xf6\x51\xea\xc8\x80\x62\x66\x61\x3c\x71\x75\ +\x00\x09\x7c\xc8\xdb\x8f\x36\x63\x9e\x11\x0e\xf5\x54\x80\xf2\xb5\ +\x30\xc1\xb2\x25\x6d\x67\x96\x22\x54\xf0\x40\x9c\xd1\xec\x67\xce\ +\x04\xc7\xa7\xcc\xd8\x5c\xf2\x0a\x31\x10\x41\x3f\x23\x83\x2b\x7e\ +\x59\x4f\xdf\x71\xf5\x95\xa9\x79\xa3\x9d\xe1\x32\xe1\x7b\x32\xe1\ +\x46\x66\x9d\xe0\x73\x1c\x3b\xcd\xf3\x82\xc0\xc3\x13\x7c\x95\x3c\ +\xc7\x39\x20\xa6\xc0\x63\x2a\xea\x76\xa8\xdc\xd6\x3d\x82\x84\x90\ +\x30\x2d\x11\x8a\xff\xcb\x34\xdc\x49\xc2\x40\x1f\x92\x40\x8f\x14\ +\x2b\x7d\x5d\xb0\x21\xd1\x77\x34\xf7\xf6\x96\x09\x07\x88\xca\x8a\ +\x69\xce\x50\x9e\x52\xdc\xa6\x04\x81\xb8\xc8\x0b\x17\x4b\x58\x81\ +\xe4\x2b\x81\x07\xe4\x3e\xde\xcf\x73\x64\x47\x2b\xe7\xd5\x5d\x06\ +\x58\xe2\x0e\x58\x45\x81\x59\xc0\xec\x19\x73\xc0\x6b\x89\xec\x51\ +\xd6\xf1\x63\x83\xcf\xf9\x64\xd7\xa0\x9c\x25\x87\xad\xd4\x99\x61\ +\xb9\xb4\x2b\x91\xb4\x5d\x05\x71\xe3\x20\x5d\xf3\x20\xfb\xf1\x5c\ +\x2c\x84\x22\xa8\xc4\x2d\x89\xe3\xfa\x50\x05\x60\xa6\x18\xce\x9e\ +\x4c\xad\x3a\xbf\xcc\xcb\x95\xe9\xe6\xe0\x08\x5c\x8f\xf7\x16\x2c\ +\xf7\x60\xdc\x0a\xf1\xda\x7e\x96\xeb\x8a\x23\xd0\x7f\x14\xcb\xbd\ +\xf3\xd6\x35\xc6\xc1\x5d\x7f\xdf\x92\xe8\xdb\x7a\xc3\x9d\x61\xff\ +\x4b\x70\x37\xf4\x4a\xe7\x22\xd4\xcf\xe5\xaa\x2a\xa2\x96\x4f\xb5\ +\x68\x05\xaa\xdd\x1c\xdb\x39\x08\x38\x4c\x1c\x62\xaf\xca\xb2\xed\ +\x67\x5f\x2a\x37\xaf\xf7\xec\xf2\x79\xa5\x80\x0a\xe0\xf6\xbd\x91\ +\xe3\x7b\x5a\x51\xed\x24\x3a\xbe\x7f\x67\xae\xc7\xad\x19\x3c\xb9\ +\xb4\x95\x3f\x6f\x98\x24\x74\x04\xbd\xb8\xd1\x3b\x0c\x25\xf9\x37\ +\x5d\x64\xc2\xa9\x63\x25\x92\x85\xb0\xd8\xed\x39\xf0\x05\x6a\xc8\ +\x74\xf9\x0c\x9f\xe2\x24\x45\xd7\x9e\xc5\xb5\x50\x37\x68\x48\x25\ +\x0b\xe6\x24\x56\xdd\x49\x62\xb3\x8a\x07\x1d\x40\xa2\xc1\xf2\xe4\ +\x46\x80\x62\x82\xd9\xe5\x46\x43\x20\xd8\x03\x59\xef\xb6\x18\x02\ +\x1f\x56\x30\x1c\x05\x43\xc5\x97\xc9\xfd\x6b\x3c\xf1\xee\x64\xd1\ +\x7e\xde\xb1\xfd\x52\x95\x27\xc2\x78\x1c\xd9\xcf\x1b\x77\x74\xb2\ +\x5c\x01\x0d\x49\xef\x35\xa8\xca\x66\xb1\xdb\x35\xe2\x86\x50\x23\ +\x25\x11\x49\x23\x81\x4c\x04\xd4\x78\x7a\x11\x30\x07\x0a\x04\x16\ +\x47\xff\xf8\x41\xf6\xb9\x0a\xd4\xc9\x61\x54\xd6\x54\xc6\x54\xed\ +\x05\x21\x5e\x8a\xfd\x7a\xfd\x7d\xbd\xec\xd3\xc5\xaf\xae\x32\x3f\ +\x1f\x96\x55\x20\x13\x0d\x7c\x5e\x63\x0f\x5e\xa8\x8e\xd9\x47\xe6\ +\xf7\xb1\x6a\x83\x16\xe5\x10\x5c\xe7\x52\x30\xe5\x40\xbd\x41\x8f\ +\x37\xff\x27\x7b\x79\xc8\xb7\xb4\x59\x27\xd9\x57\x9d\xe5\x59\x83\ +\xf1\xf0\x07\x08\x3d\x2c\x1d\x92\xa0\xf7\xeb\x0e\x60\x5c\x73\xf7\ +\x90\x0b\xa0\x00\x3c\x22\x77\xd7\x26\xb3\x72\xaa\x2a\xa1\xf5\x49\ +\xbe\x50\x54\x05\xe2\xd4\xa3\xc1\xc7\x65\x46\xf2\x20\x63\xa9\xb3\ +\x30\x27\xd2\x62\xb3\x0a\x2a\x32\x75\x24\x0a\xa4\x4e\xad\x3c\x61\ +\x10\x37\x07\x16\x61\xb0\x13\x32\x24\x22\x4d\xdc\x7d\xa4\xa3\x05\ +\x7d\x6f\xa9\xa8\x72\xaa\x3a\x57\xc2\x6b\xe0\x23\x3c\x01\x5f\x54\ +\x80\xcc\x0a\x80\x38\x17\xd2\x50\x4c\x62\x46\xf2\x01\x94\x0a\x7d\ +\x67\x80\x0d\xd0\x1c\xa0\xdb\x48\x48\x94\xe3\x05\xea\xeb\x00\x08\ +\xcd\x16\x0e\x1f\x9e\x9d\xd2\x0a\xb7\xed\x8d\xf7\x1b\xc2\x97\x91\ +\xa1\x92\xb8\x63\x28\x89\x2a\x57\x13\xbd\xcf\x2d\xd3\x1e\x58\x03\ +\x9e\xe0\x82\xe0\xfa\xdb\x37\xb8\x45\xdd\xc4\x10\x54\x74\x4c\xbc\ +\x22\x26\x11\x8b\xd9\x89\x92\xb5\xa1\x20\x09\x7c\x48\x55\x82\xb3\ +\x59\xc0\x9f\xe7\x62\x9c\xee\x9a\xe4\x39\x0b\x7e\x34\xa8\xf0\x2d\ +\x01\xc6\x40\x74\x9f\x51\x65\xde\xdf\x54\xc5\xf2\xe5\x23\x80\x8a\ +\xbe\xda\x44\xa9\x30\xde\x33\xce\x4b\x41\xd5\x8f\xb2\x8c\x00\x11\ +\xb0\x75\x91\xa1\xbc\x2e\x55\x1a\x8e\xad\xeb\x6e\x21\x3a\xd7\x4e\ +\xc5\x82\x34\x88\xbd\x89\x69\x60\xa4\x00\xd1\x3a\x2a\x50\x42\xfa\ +\x18\x6f\x9d\xa5\xf8\x38\x80\x87\x7b\xed\xc9\x62\x7b\xaa\x25\x0f\ +\x2a\xb7\x07\x44\xa9\x9a\x87\x9b\x23\xd0\xf0\x30\xa0\xce\xad\x5a\ +\x22\x3d\x5b\xe0\xd5\x0a\x36\xd9\x8d\xe2\xdc\xe0\x08\x90\x13\x72\ +\x7d\xc2\x87\xda\x6e\x51\xa4\x9a\x1b\xa0\x27\xab\x87\xa4\x70\x0b\ +\x56\xef\x8d\x4b\x55\x62\x9b\x94\xde\xa4\x47\xc9\x50\x50\x60\x84\ +\x37\x88\x70\x7e\xa0\x02\x41\x9e\x1a\x78\x9d\x15\xc7\xe5\x9d\xa0\ +\x2c\xd9\x53\x01\x5f\xbb\x3f\x77\x27\x86\xf5\x3e\xe2\xf0\xad\xa0\ +\x29\x5c\x2e\x3e\x26\x04\xea\x78\x78\x0e\xea\x65\xd4\x17\xd2\xb7\ +\x94\x22\x98\xdd\xb5\x75\xf3\x08\xc2\x62\x3e\x45\xce\x9e\xba\xd0\ +\x23\x3c\x66\x42\x98\x95\x86\x2c\xb7\x97\x6a\xb6\x27\x72\x48\x91\ +\xce\x45\xea\x62\xb4\x5c\x81\x44\x10\xa8\x9b\xe7\xb0\x60\xea\x1f\ +\x26\xff\x32\xa1\xe2\xf0\x2c\xd5\xce\xb0\xa9\x2a\x6b\xc2\x3d\x27\ +\x04\x13\x0b\x50\x45\xb8\x23\xd5\x67\x0b\xad\xef\x2d\x0a\xcb\x22\ +\xdb\x33\x72\xa0\x51\x3b\xdb\x5e\x1d\x45\xf4\x26\xa1\xa3\x48\xf0\ +\x24\xcb\x20\x2b\x64\x3d\xff\x65\x2e\x35\xea\x07\xb9\x0e\x06\x77\ +\x8a\x08\xa2\x8f\x45\x77\x95\x52\xd4\x36\xa8\xbc\xac\xa6\xb8\x29\ +\xaf\xa3\x71\xf6\x01\x58\xc9\x8a\x04\x04\x43\x2c\x1d\x75\x06\xa6\ +\xc8\x23\x37\x9a\x16\x86\x45\xa5\x1a\xd8\x57\x35\x13\x03\xc1\xd8\ +\xdf\x69\xe9\x56\x30\x40\x72\xc4\xf5\xae\xe7\x8b\x7f\x0a\xf5\x7e\ +\x45\x73\x9c\xf1\xb1\xb7\xe1\xaa\xe9\xca\xf6\x0f\x21\x9b\x01\x51\ +\xfc\x08\xc9\x39\x17\x89\xdc\x80\xa7\xef\xca\xb2\x9a\xc7\xe4\xea\ +\xcc\xac\x58\x3b\x41\x71\x0a\xef\x4f\xad\x27\x27\x59\x39\x37\xcc\ +\xd3\xec\x48\xae\x75\xd8\x55\x10\xd9\x98\x02\x37\x47\x70\x8d\x34\ +\xa1\x43\xa3\xad\x40\x75\xe1\x7e\xa8\x99\x99\xa1\xc8\x5a\xb0\x1a\ +\x15\x1b\x9a\x14\x4b\x16\xb3\xb3\x62\xe5\x79\xac\x8b\x46\xb4\x80\ +\xcf\xf3\xc1\xa7\xff\x81\xcf\x1f\x02\x29\xe7\x73\x6b\xd2\xb3\x6c\ +\x65\x3b\xa2\x1b\x61\xa1\x42\xa7\xda\x37\x3d\x31\x5a\xc4\x41\x9f\ +\x65\x0e\x83\xe0\xa1\x70\x6e\xb1\x5e\x99\x9a\x7c\xac\xfa\x3a\xdf\ +\xf7\x3a\x50\x37\x74\x6e\x40\x56\x41\x01\xe6\x5a\xdc\xb8\x55\x7e\ +\x92\xd0\xd8\xfd\x75\x7e\x22\x71\x89\x6c\xb1\x08\xde\x8f\x3a\x5f\ +\x00\x98\x57\x1e\x24\xc5\x45\x17\xfb\x11\xe4\x2e\xde\xe5\x56\x35\ +\x21\x04\x98\xad\x1a\x7b\x40\x27\x31\xa8\x69\x01\x83\xd9\xfa\xb3\ +\x1c\x06\xc1\x38\xdc\x0e\x96\xd2\xb1\x5d\x41\xcd\x65\x94\x00\xe2\ +\x01\x87\x43\x7b\xa8\xfb\x70\x7c\x18\x4e\x56\xf0\x74\x94\x08\x01\ +\xd0\xc5\xa6\xc6\xa5\x1c\xea\x2b\x29\xd7\xde\xc8\x2b\x27\xf2\x71\ +\x60\x44\xe8\x62\x8f\x91\x40\x2e\xaf\x08\x91\x2e\x93\xa0\x82\x32\ +\xe9\xf3\x2c\x0a\x3c\x5d\xe2\x05\xe9\x9a\xa2\xcc\xa1\xf4\x01\x21\ +\xf1\xcf\x8d\x91\x62\x5f\x7f\xa3\x64\x90\x6e\x1a\x69\xa1\x18\x59\ +\x2e\x65\x61\x11\xce\xa4\x2b\x41\xe7\xf4\xaf\xb8\x8d\x7a\x8e\x5e\ +\x7d\xc4\xf2\x50\x0f\x71\xf2\xcc\xe2\x28\xdb\x81\xaf\xde\x14\xa8\ +\x84\xfa\x3e\xc3\x24\x0d\xdc\xe2\x7d\x2f\xd5\x51\x89\xc4\x76\xbc\ +\x3c\xb6\x23\x46\x20\xef\xd0\x27\x14\x6c\x7b\x96\x5d\x72\x57\x13\ +\x9c\xd9\x73\x86\xbc\x1b\x22\x24\xad\x77\x38\xac\x83\xe8\xe8\xa0\ +\x13\xd5\xc9\x1b\x92\xcb\x3b\x6f\x87\x7d\x25\x14\x57\x8b\x95\x18\ +\x88\xe3\x49\x71\x5f\xfa\x39\x05\x0e\xce\x8a\x9e\xf8\x4a\x87\xe0\ +\x55\xc4\x00\x98\x53\x67\x85\x9a\x0c\x28\x89\x80\x95\xfc\xdd\x5a\ +\x2e\xea\xc5\x54\x5d\xbb\xb8\xfa\x50\x45\xdb\x5d\x76\x20\xe4\xa9\ +\x32\xad\x02\xab\x14\x66\xc4\x38\xca\x69\xc0\x22\x40\xc7\xb7\x22\ +\x42\x86\xc3\x25\xdc\x7f\xdc\x3a\xac\xd7\x76\xac\x2a\xca\x16\x54\ +\x5a\x11\x83\xf3\xae\x8f\x39\x8a\xe0\x5e\x61\x7e\x64\xac\x4d\xf1\ +\xc9\xbc\x98\x72\xc8\x64\x3c\xfc\x49\x37\x28\xab\xab\xfc\x9c\x5a\ +\xbe\x4c\xe8\x0f\x15\x82\x78\x72\xb0\xb6\xe5\xc1\x71\xca\x32\x79\ +\x4a\xf8\x50\x78\x4c\x3b\x02\x2f\x2c\xe1\xde\x5c\x72\x09\xf4\x02\ +\x65\xa2\xe9\x3a\x0b\xc6\xb7\x0d\xa5\xef\x83\x37\xfd\x92\x87\xea\ +\xf7\x41\xaa\x68\x51\x3c\x35\xb0\xbb\xa8\xdc\xb8\x49\xa9\x18\x10\ +\x31\x98\x51\x49\x56\x33\x95\x20\xad\x44\x0b\xca\x7c\x29\xe9\x43\ +\xbe\xb2\x78\x29\x6d\xd6\x82\x59\xf0\xf6\x18\xb1\x22\x8c\x84\x20\ +\xb8\x27\x5c\x2e\xcd\x4a\xf8\x44\x27\x49\x29\x62\xf9\x5a\x35\x92\ +\xe3\x92\xae\xae\xef\xfa\xe0\xd1\x17\x46\x4e\x21\x5b\x35\x36\xef\ +\xf2\x1b\xf5\x0a\xe3\x66\x7e\x2e\x7c\x1a\x87\x13\x69\xc4\x6f\x22\ +\x59\xb1\x5b\x3b\x92\xbb\x3c\xbb\x7d\xd5\xf7\x65\x71\xcf\x47\xec\ +\x94\x35\x43\xa2\xf4\x60\x13\xa9\xd9\x60\xe1\xfc\xf6\xd4\x61\x66\ +\x49\xb4\x0b\x11\xe7\x63\xf5\xce\xab\x33\xdd\x37\xce\x84\x10\x51\ +\x9a\x66\x97\x24\x44\x1d\x25\x84\x0c\x4e\x23\xd6\xab\xb0\x7b\xdf\ +\xda\x1e\x91\x22\xbc\x5b\xfa\x9d\x5e\xd6\x11\xb8\x06\xfe\x12\xac\ +\x90\x35\x1e\x57\x01\xe5\xe3\x89\x15\xa8\xaa\x72\xb3\x57\x58\xf0\ +\x1e\x01\xd9\xbc\xf1\xf2\x02\x96\x8a\x1e\x50\xf4\x80\xd7\x2a\xdd\ +\x85\x6a\x74\x23\xa5\x19\x9a\xe7\x97\xd0\x8a\xa7\xac\xf5\x50\x87\ +\x67\x0e\x04\x01\xc5\xa7\x2e\x28\x0a\xf5\x3a\xc0\x84\x12\x68\xda\ +\xe7\x96\x1c\x44\x48\xbf\x62\x08\xcb\x50\x5a\xf2\x4b\xfe\x05\x69\ +\xb7\xa1\xb7\xb3\x07\x3d\xdf\x93\x5e\xa8\xf2\x50\xba\x13\xf2\xa9\ +\xae\xa4\xd2\x4a\x50\x41\x55\x03\x5a\x90\x5c\x07\xa2\x42\xcc\x50\ +\x7c\x72\x0e\x05\x46\xf1\x86\x41\xfb\x97\xd4\xec\xc1\xd5\xe8\xb4\ +\x22\x84\x93\x0a\x75\xa6\x92\x0c\x29\x0c\xa3\x4e\xeb\x8c\x2f\x6a\ +\xf7\xcd\x26\xb3\x8e\x81\xe7\x7d\xf4\xb9\xa2\x15\x00\x8d\x58\xbe\ +\x3f\x2c\x62\x93\xa2\x53\x91\x42\x25\x9e\xc9\xb4\x41\x15\xde\x5a\ +\x95\x80\x63\xc2\xbb\x11\x46\xfc\x08\x96\x0c\x32\x8c\x4e\x1e\xed\ +\x3d\xbc\x43\xe7\xaa\x3d\x05\xd9\xc1\xd8\x4b\x01\x41\x10\x4e\xfc\ +\x78\xfd\xe5\x83\x6c\x48\x61\xb6\x88\x8d\x6f\xea\xd6\xab\xc0\xed\ +\x23\x5e\xdf\x15\xfb\xc9\x92\xb1\x00\xb2\x4a\x81\x41\x65\x67\x4a\ +\x65\x82\x3e\x6c\xae\x74\x99\xea\x9d\x85\x91\x78\x8a\x07\xa1\x2d\ +\xc5\x83\x86\x48\x87\x96\xa8\xce\xdf\xa9\xce\x8a\x12\xbe\xe2\x3f\ +\x74\x22\x84\xaf\xa9\x37\x42\x46\x47\x35\x55\xd4\xc8\x22\x9e\xe6\ +\x47\xed\x28\xd6\xdd\x20\x2f\x27\x71\xed\x4b\x2f\x82\x40\x14\xd4\ +\xc2\x6c\x16\x57\x6e\x53\xac\xf6\x31\x8d\xa4\x80\xe4\x46\xf0\x7b\ +\x60\x2b\xa3\xfe\xaa\x8f\x8d\xb7\x84\xf2\x10\x66\xea\xcb\x61\x25\ +\x53\x0a\xd8\x77\x3a\x6b\x40\x8a\xdc\x1a\x72\x01\xb2\xbb\x0b\x1f\ +\x1d\xe2\x78\x6c\x08\xef\xb2\xef\xe2\x94\x0c\x8f\xb2\xca\x3e\x93\ +\x12\xec\xb5\x9e\x24\xa5\x27\x58\x8f\x81\x9a\x1a\x77\x1b\xda\x2b\ +\xe8\x48\x17\x4c\x11\x13\x0a\x65\x81\x06\x9b\xc8\x76\xda\xc0\x59\ +\x55\xd4\xc3\x99\xd0\x74\x26\x38\xe1\x6f\xbc\x27\x05\x20\xdf\x02\ +\x40\x8e\x16\x65\xd5\x0b\xc5\x87\xe7\x0c\x57\xde\x9a\xc8\xf5\xac\ +\x86\x79\x71\xcf\x54\xec\xe8\x7d\x83\x82\x10\x46\xe0\x56\xb6\x3a\ +\x32\x6e\x87\xc8\x3a\x62\x02\x0d\xc3\x32\x74\xbe\x9a\xd2\x62\x4b\ +\x10\xc9\x26\x72\xd6\x6e\x8f\xee\xf9\xe3\xc2\x24\x21\x01\x1d\x53\ +\xc9\x48\xf0\x15\xea\x14\xa5\x35\xf8\x11\xaa\xd5\x85\xfa\xf5\x69\ +\x28\x6f\x6a\xd5\x00\xee\x04\xc4\x38\x54\x1a\xcc\xc0\x8d\xa0\x49\ +\x59\x6b\xe9\x75\xa9\x79\x99\xd5\x62\xa0\xd4\xba\x8c\x26\xa5\x5e\ +\x03\x63\x7a\xaf\xf8\x51\x3c\x82\xc7\xa5\xdb\x4d\x7d\xbf\x26\x0b\ +\x91\x2b\x7e\x74\xd0\x58\xaf\xfa\x99\x79\xe1\x41\x44\x1f\x4f\x4d\ +\x30\x97\x06\x68\x92\xd5\x84\x21\x21\xb7\xd7\xc0\x56\x7b\xb3\x00\ +\xf5\xcf\x0c\x02\xa6\x75\x1e\xa4\x07\xdc\x6d\x20\x74\xa1\x85\x5c\ +\x19\x51\x1d\x47\xbc\x06\x12\x8f\xa8\x92\x64\xcc\x8e\x92\xc8\x12\ +\x28\x52\x42\x62\xf8\x8d\x0a\x55\xea\xea\xc1\xdf\x72\x70\xbb\x5c\ +\x63\x3f\x41\x90\x3b\x58\x09\xba\x03\x43\x3a\x02\x6a\xf1\x79\xed\ +\x6a\x45\xc1\x9f\xca\x66\x05\xa0\xe0\xcd\x12\xb1\x0d\x0d\xa0\xee\ +\x91\x08\x88\xaa\xb5\xa4\xcd\x9e\x5d\x52\x14\x23\x9d\x6b\x24\xe0\ +\x16\x3e\x32\x7a\xfa\xc8\x4a\x7b\xd3\x2a\xd3\x3a\x1c\x85\x24\x80\ +\x55\x5b\xeb\x05\x44\xf5\x4d\xbd\x40\xaf\xce\xf8\x8f\xa5\x1e\x33\ +\x15\x45\x07\x54\x83\x89\xc8\xd2\x12\xa9\x7b\x67\xef\x10\x7c\xa7\ +\xe4\x08\x44\x17\xa0\x07\xa8\x21\x30\xe4\x6b\x8a\x76\x5f\xb7\x68\ +\x7f\xc0\x5b\xcd\x46\x66\x39\xa9\x73\x2e\x31\xbb\x75\xb1\x33\x19\ +\x2d\xa9\x9b\x89\xb3\x84\x1e\x92\xe2\x54\xfd\x6a\xf5\x33\xab\x9b\ +\x29\xf4\x50\xab\x02\x27\x50\x5b\x1f\x58\xb0\x96\xeb\x51\x82\x40\ +\xf8\xad\x57\x46\xd6\x45\x46\x8d\xbc\x60\x41\x2e\x75\xe6\x7c\xc8\ +\x61\x74\x69\x76\x4a\xe8\x3b\x46\x43\xbe\xbc\xf9\x05\x74\x6b\x78\ +\x4e\xee\xc9\x2d\xd8\x59\x91\xfc\x0c\xb6\xc9\x22\x41\x82\x03\xf9\ +\xf4\x18\x17\x81\xd4\xca\xdb\xe6\x27\x9c\x4c\x01\x4d\xd4\x50\x28\ +\x54\x94\x54\x87\x47\x97\x49\x5d\x1b\x28\x11\x16\x0d\xe7\xa7\xae\ +\x50\x14\x24\xd1\x00\x20\xe9\x98\xec\x2e\xac\x56\x77\x1b\xab\x06\ +\x42\x5d\xbd\x52\xbf\x61\x13\x10\x2c\x84\x1c\xc2\x50\xc2\xe4\xd9\ +\x03\x9e\x43\x48\x9f\x0c\x43\x01\x37\xb2\x75\x66\xa2\x78\x63\x55\ +\xa7\x1d\x38\x2a\x3e\x55\x54\x15\x55\x80\xf5\xfc\x82\x94\x74\x73\ +\x14\x7c\x84\x08\xbf\xe7\xb1\xf6\x1b\x04\xae\x01\x0b\x84\x34\x39\ +\xdc\x33\xf2\x39\x81\x95\x8a\xa0\xb8\x70\x1c\xf2\x8f\xda\x25\x80\ +\x94\xda\xbd\xa2\xc1\x09\x96\x02\x0f\x5c\x4d\x59\x2e\xaf\x05\xfd\ +\xe4\xfb\x3e\x66\xb7\xfd\x0b\x3d\x29\x5f\x21\x6c\x2e\xf6\x44\x8f\ +\x6f\x59\xa8\xdb\xe5\x19\xf0\x88\x88\x47\xdf\xe5\x1e\x97\x76\x12\ +\x88\x23\x52\x10\xf3\x1f\x77\x43\xbe\x7a\xa9\x08\x44\xae\x20\x8d\ +\xaa\x4d\xaa\x4f\xed\xd1\x80\x8e\x07\x1c\x0b\x6e\xa8\xc7\x04\x8e\ +\x37\xe1\xaf\x69\x86\xcd\x05\x1a\x65\x68\xea\x6b\x97\x2e\xd9\x5d\ +\x63\xff\xc1\x50\xa4\xd2\x9e\x1f\x51\x0d\xbc\x28\xaa\x0f\x49\xd7\ +\x41\xad\x8a\x4e\xa5\x0e\xbc\x6a\xca\xf7\x57\xbd\x9a\xaa\xce\xf9\ +\xc3\xa7\x6a\xfc\xdd\x35\x5b\x6a\x77\x8e\x0e\xc3\x4a\x5f\x33\xcd\ +\x5a\x69\x00\x80\x35\xda\x3a\xf5\x59\x55\x84\x28\x82\xbb\x2d\x63\ +\x70\xbb\x22\x4e\xd6\x13\x58\x8f\x83\x22\x78\xd4\x1d\xb5\x48\x42\ +\x67\xdf\xee\x23\x91\x07\x57\xc0\xe9\xbc\x61\x02\x5f\xb5\x2d\x06\ +\x23\x00\xaa\x3c\x54\xd8\xd4\x02\x41\x0c\x87\x77\xdc\x6d\x3e\x55\ +\xd1\x6f\x29\x43\x14\xc3\x5a\x4b\x1b\x56\xc5\x11\x96\x49\xd4\xb3\ +\xab\xb3\xd8\x72\x6a\x08\x91\x09\x19\x9b\x6d\x49\xad\x59\x17\xa2\ +\x76\x11\x0b\xb4\x07\x75\xef\x49\x99\x24\x07\x5b\x29\xc9\x87\x24\ +\x9a\x08\xfd\xbc\x17\x5f\xd1\xfb\xf0\x28\xea\x16\x6a\xcd\x5e\x3c\ +\xd7\xf5\xb5\xea\x92\xfa\x6d\x51\x14\x4e\x6f\x0b\x71\xa5\xe4\x3e\ +\xff\xf0\xba\xde\xb6\x48\x60\x4c\xa4\x32\xd1\xe4\x1a\xf0\xbd\x91\ +\xe9\x1d\x74\x03\x14\x97\x92\xb9\x7f\xe9\x67\xc9\xc7\xea\x50\x90\ +\xa0\xe8\xd5\x39\x41\xdd\x02\x30\x5a\x39\x29\xaa\xe8\x3d\xc4\xd5\ +\x57\x97\xdc\xf0\x85\x04\x07\x15\x41\x2e\x16\x88\xc9\x70\xc8\x0e\ +\x77\x6f\x80\x38\x64\x85\xe9\x39\xef\x17\x31\xda\xf5\x81\x97\xf0\ +\x8a\x01\x65\x4b\xcc\xea\xaf\x89\x8a\x0d\xfe\x11\x32\x90\x2f\x75\ +\x55\x80\xca\xa2\x46\x2b\x14\xef\xb6\x57\x93\x24\xde\x46\x1d\x5d\ +\x42\xa7\x90\x4a\x8b\xe2\x22\x66\x35\x1a\x34\x3b\x4e\x4f\x22\xe3\ +\x1d\xe4\x65\x6e\x38\x29\xa0\xfc\xba\xf2\x10\x21\xdf\x49\xed\xa5\ +\x61\x98\xe4\xd4\x19\xd1\xd7\xe7\xe7\x0f\x7f\xf9\xea\x5e\x34\x82\ +\x5e\xe4\xdb\x4e\x19\xb6\x7e\x24\x4e\x9f\xa1\xc7\x19\x97\xb6\x29\ +\x64\x3c\xd8\x86\xb4\xef\x3b\xd0\x6b\xb6\x51\xf4\xdf\x98\xed\x14\ +\x04\xb6\xdb\x6e\x21\xc8\xc2\x1f\xbd\x09\x22\x8e\x48\xe7\x1d\xea\ +\x7a\x90\xbb\x24\x63\x5e\xb3\xae\x81\xfa\x54\x4f\xd4\x39\xec\xa2\ +\x4d\xda\xc3\x02\xd4\xb2\x1f\xb1\xc1\xa0\x60\x52\x60\xd6\x0e\x44\ +\x55\x00\xbb\x03\x39\x04\x7b\x03\x3d\x41\x0c\x4b\x91\xfb\x8c\x7a\ +\xac\xf0\x81\xd0\x9f\x52\xaa\x77\x53\xe9\x2d\x97\xac\x5a\xc3\x50\ +\xbd\x36\x2e\xc4\x9a\x13\x57\xf7\x10\xa9\x7d\xa4\x25\x98\xaa\xad\ +\x43\xa7\xde\x23\xf2\x99\x00\xca\x54\x6c\xc4\x92\x3a\x02\x36\x59\ +\x72\xd4\x05\x23\x99\x93\xa0\x91\x60\x51\xbf\xca\x27\x9b\x55\xd2\ +\xfe\x48\x6b\xa5\x98\x83\x0b\xb4\xe6\x3f\xba\x56\x11\xf9\x73\x75\ +\x86\x0b\x4b\x1b\x0d\xdc\x98\x9c\x6b\x0d\x8e\x14\x72\x96\x1f\xd5\ +\x8d\x02\xaa\x57\x51\x2b\x4a\x1d\xc9\x98\x50\xd9\x17\xc6\x5e\x85\ +\x75\x1e\x09\x33\xab\xf3\x53\x17\xd2\x79\x54\x71\x7b\xf4\x30\x4c\ +\x06\x38\x22\x38\x9c\xaa\xfb\xd0\xe2\xd3\x21\x8e\x97\x24\xa0\x1a\ +\x0b\x10\x0d\x54\x36\xbc\xef\x93\x4d\x6e\x27\x2b\x43\x12\xec\x94\ +\x35\xb8\x10\x11\x01\x43\x37\x50\xf3\x80\x43\xec\xb5\x7e\xfb\x94\ +\x44\xe4\x17\xe7\xd8\xc8\x23\x45\xad\xed\xe5\x9a\xbb\x1b\x71\xd9\ +\x5d\xd3\x8e\xcb\xaa\x0e\x32\xeb\x90\x12\x54\x0b\x98\xdc\xc4\x46\ +\x38\x23\xe7\x20\x5d\x60\x91\x1d\x03\x3f\xe4\xfe\xe7\x76\x6b\xde\ +\xa6\xb6\xee\x70\x46\xc5\xde\xcb\xaf\x41\x38\xd5\x39\x0c\x4a\x01\ +\xa4\x32\x65\x8d\x04\x34\x9c\xbd\x5d\xaf\x59\x20\xa5\x4d\xcd\xdf\ +\x41\xfc\xfc\x67\x54\x3b\x74\xd9\xf0\x36\xf8\x04\x0d\x06\xb4\x7f\ +\xb4\xa3\x2b\xbc\xcc\x20\xe8\x7d\xd7\xb4\xdb\x09\xb7\xc1\x12\x11\ +\xa8\xef\x8d\xa3\x3c\x7e\x75\x39\x14\xb5\x89\x72\xb4\x81\x18\xf7\ +\x2e\x09\xa2\x0e\xf4\xbc\x73\x21\x6d\x35\x93\x50\xb3\x9e\x48\x0e\ +\x4f\xc8\xa0\xda\xa4\xbc\x39\xd7\xa0\xb2\xc1\xa8\xbb\x65\x0b\x30\ +\x88\x2b\x61\xf5\xa5\x2d\x72\xb5\x2c\x6a\x22\x8b\xd1\xf8\x73\x8d\ +\x3e\xe7\xa6\x1a\x4b\x25\xbf\x3d\xe6\x00\x72\x2e\x6d\x59\xf3\x70\ +\xd5\xaf\x0a\x8c\xd4\xcb\x90\x8c\x28\x02\x6f\xb0\x19\x78\x5e\xc1\ +\xf5\x10\x71\xb4\x36\x66\x15\xf7\xdb\xee\x88\x00\xc1\x08\x66\x10\ +\x01\x39\xda\x45\xfd\x61\x03\x68\xe4\xe7\x6b\x8a\x05\xf7\xc3\x9a\ +\x4c\xc8\xe8\x33\x68\x08\x6e\x8d\x83\x2b\x4b\x59\xd0\x5b\xe9\xb6\ +\x37\x8d\x52\x50\xca\xf0\x72\x89\x65\x74\x14\x4f\x18\xa4\x13\xd9\ +\x4f\xcc\xbf\x66\x67\xbd\x56\x80\xbe\x12\x3d\x6a\x27\x36\x2e\x82\ +\x13\x71\x99\xc8\xb0\xb6\x90\x00\xd7\x06\x64\x10\xac\xc8\xc3\x6d\ +\xe5\x42\x4d\xa7\x31\x78\xd2\x43\xd9\x45\xed\xf7\xbb\xcd\xd2\x88\ +\x3b\x35\x50\x8c\x21\x3a\x42\xb2\x19\xbe\x53\x1c\x34\x84\xe4\xa0\ +\xdf\xfe\x06\x24\x15\x05\xb5\x65\xf0\x8d\x40\xd0\xce\xe3\x83\x3d\ +\x2d\x22\x2d\x43\xf3\x17\xd3\x79\x29\x47\xa5\xbe\xc4\x16\xd5\x6d\ +\xf8\x36\x14\xab\x15\x88\x95\x46\xab\x37\xde\xc3\xab\x14\xad\xb5\ +\x3d\x3f\x01\x5f\x6e\xc0\xab\x7f\x0d\x28\x6b\xdc\xc3\xdf\x15\xce\ +\xdb\xe7\x12\x25\x04\x91\x61\x93\x80\xa7\x33\x51\xb9\x6c\x07\xc2\ +\x77\x7b\xdd\xa7\xa9\x0d\x24\x48\xfa\x42\xd9\x6e\xa8\xe0\xc5\xc7\ +\x84\xcf\xa8\xae\x41\xfd\x45\x89\xcc\x8e\xe9\x9f\xbe\xb6\xd8\xcb\ +\xd3\x81\x48\x83\x0d\x0d\x54\x28\x53\xe2\x05\xba\xae\x90\xd4\x8e\ +\xb1\x27\x9c\x4e\x15\x25\x85\x48\x61\x13\xaf\x61\x1b\x1f\xa7\x1a\ +\x35\x62\x8c\xad\xab\x49\xb7\x9f\xa5\xc6\xe2\xc0\x44\x3b\x4a\xa1\ +\x72\x4b\x38\x89\xa5\x1d\xec\xe3\x40\x0c\xc9\x57\x48\xd8\xee\xd2\ +\xf9\x90\x03\x87\xe0\x4d\xcb\x26\x88\x60\x4d\x2f\xea\xa8\xc2\x67\ +\xdc\xd6\xe0\xc0\x7b\xfa\x1d\x05\xf8\xb7\xe4\x1d\x55\xc8\xfc\x4a\ +\x2d\x34\xe9\xc4\x8f\xdf\x7f\x35\xd0\x79\x98\xbc\x74\x7f\xaa\x8b\ +\x14\x6f\x70\xe3\xae\x96\xc6\x51\xe5\x20\x3c\xae\x9f\xb6\xc9\x30\ +\xf5\x6e\x13\x6f\x85\xc1\x3c\x41\x06\x75\x85\xeb\xf7\x11\xfe\x28\ +\x64\x4f\xba\x7b\x5c\x28\xde\x2f\xf8\x3a\x32\x34\xac\x84\xec\xda\ +\x48\x53\x69\xf9\xff\x22\x4f\xa3\x54\x5a\xec\xe0\x14\x29\x52\xaa\ +\x9a\xa0\xf5\xaa\x7c\x5d\x81\x2c\x1e\x08\x87\x1e\xac\xff\x45\x30\ +\xe6\x1b\x4b\xed\x8b\xa5\x73\xc9\xc6\xd0\xf0\x13\x91\xca\xbb\xe5\ +\x96\x1e\xdf\xac\x25\x3f\xeb\xef\x40\xe5\xf3\x6a\x5c\xfd\x9d\x26\ +\xfc\x62\x09\x90\x14\x2e\xba\x0d\xa0\x70\x05\x10\xc6\xfe\x21\x1f\ +\x4b\x9b\x5a\xd1\xe6\xef\xca\x6b\xe4\x23\x68\xd3\xf3\xc6\x28\xac\ +\xcb\x2a\xc6\xad\xb6\xda\x7e\xf3\x7f\x12\x79\xa2\x62\x3f\xda\xe3\ +\x27\x15\x5c\x1d\x40\xa9\x98\x37\x20\x45\xe6\xb9\x98\x31\x07\x36\ +\x85\xf1\x89\xa8\x8c\x68\x14\x02\xa1\x19\x75\x21\xbf\x45\x98\xc6\ +\xdd\xd4\xce\xb0\xad\xf4\x60\x83\xd7\xa6\x14\x60\x17\x30\xa0\xe5\ +\xff\x21\x76\x75\x61\xc8\x0d\x41\xf8\xde\xf5\x1d\x75\xd7\x09\x3c\ +\x70\xf7\xdc\x51\x96\xfd\xc0\xed\xd5\xe3\x2f\x6a\xa5\xef\x2a\x25\ +\xdc\x8b\x9a\xfd\x45\x7b\xea\x19\x9a\x48\x99\x77\x87\x82\x4f\x29\ +\x6c\x61\x55\x89\x82\x64\x0d\x33\x90\xf8\x95\xb0\xbf\x13\x02\x8f\ +\x0f\xe1\x9a\x2b\xa9\x30\x7a\xc4\x42\x20\xd5\xae\x91\x35\x8d\xa0\ +\x5d\xb6\xdb\x10\x26\x95\xcd\x6f\x2f\xba\xa8\xde\x6e\x52\x75\xeb\ +\x9b\xe8\xb8\xe5\x48\x2d\x52\x6d\x5f\xbe\xd4\x99\x94\x8b\xd7\x2e\ +\xc6\x40\xe7\xcf\x88\x0e\x2a\x73\x97\x00\x5d\x27\x4d\x6c\x06\x60\ +\xa8\x83\x60\xe3\x1e\xd5\x69\x23\xf9\xeb\xbe\x3d\x6a\xbf\x29\x01\ +\xfc\x9d\x64\x12\x9f\x77\x27\xdf\x8e\x30\x6f\xa5\x49\x9f\x4c\xd9\ +\x9e\x41\x6a\xa0\x12\x15\x8a\xee\x32\x90\x96\x40\x56\xd8\x2d\x7f\ +\x6a\xe9\xf9\x91\x4d\x8a\xf5\x6f\x73\x2c\xc2\x1a\xe0\x55\x08\x8e\ +\x80\xb8\x55\x59\xd8\x1b\x98\xa5\xd8\xaa\x9d\xc6\x2f\xdb\x1b\x8b\ +\x63\xe6\x5f\xdb\x1d\x5b\xfd\xa3\xf7\x8f\x98\x1e\x56\x28\xc0\xad\ +\x39\x79\x29\xa3\x21\xa9\x91\x6a\x05\x1a\x92\xdf\x5f\x34\x44\xda\ +\x10\xb9\x20\x70\xbe\xe2\x4a\xb9\x76\xde\xf2\x4b\x30\xe0\x23\x2a\ +\x8b\x1a\x73\x3c\xb0\xbb\x08\xa8\x53\x05\x0e\x9c\xce\xad\x3b\x2a\ +\xa4\xf6\xbc\xda\x21\xc9\xb6\x1c\xc3\x6d\x22\x20\xd0\xb9\x11\xd5\ +\x52\x37\x85\xd5\xab\x81\x00\x46\x23\xa2\x58\x8d\x98\x7a\x7d\x2d\ +\x93\x61\xea\x51\x34\x62\x2d\xa5\x47\xfe\x67\x19\xfd\x98\x8e\x56\ +\xff\xd1\x8a\xdd\xa0\x82\x5e\xd2\xd9\x44\x7b\xa6\x75\xe3\xb0\xb2\ +\xcb\xc0\xfa\xa0\xb6\x7a\xb5\x68\xcb\x82\xf1\x41\x67\x00\x62\x0f\ +\xe1\x83\xd5\xc0\x6a\xd5\x85\xdc\xad\xa2\x38\x6d\xea\x6b\x6b\x3f\ +\xb4\x5f\x29\x63\x5b\xe7\x51\x52\xa6\xa9\x19\x84\x94\x31\xd9\x0b\ +\xa1\x55\xe7\x11\x61\x27\x61\x4a\x4a\xf4\x3b\x7e\xf6\xd3\xbc\x81\ +\xd4\x57\x05\x65\xa2\x1a\xc0\x05\x43\xe4\x8d\xa8\x51\x43\xbb\x84\ +\xc9\x19\x22\xb8\xbf\x93\xf2\x46\x55\xfd\x36\x4f\x9f\x0e\xa1\xec\ +\x42\xc9\x3a\x3b\x8e\x24\x78\x33\xe2\x7f\x4d\xed\x93\x29\x0e\xa9\ +\x85\xfd\xdb\x8b\x04\xf6\x8d\x9d\xa3\x8f\x14\x88\x31\xdc\xce\x16\ +\xd4\x2d\x9b\x38\x16\x69\x35\x1d\x6b\x78\xe3\xb3\x36\xe4\xb0\x92\ +\x2a\xae\xd3\x9c\x57\xb0\x91\xbf\x2b\x91\x6d\x26\x28\x40\x1a\xdc\ +\xab\xee\x23\x79\x53\xd5\x23\x05\x7e\xaf\x16\x19\x77\x8f\x11\x0d\ +\x2a\xb5\x2e\xa6\x23\xae\xa4\x7d\xc2\x66\x03\x06\x47\x5b\xa8\xda\ +\xcc\xff\x73\x47\x1d\x62\x44\xcd\x43\x6a\x7b\xed\xc2\x00\xfe\xc0\ +\x7e\x47\x12\x78\x74\x80\x44\x75\xd4\x40\xce\x9b\xe6\x9d\x82\xf4\ +\xb7\x92\x28\x52\xd2\xef\x86\xe4\xcf\x57\x0d\x81\xcf\xf2\xfa\x26\ +\xa8\xa5\xd0\xa2\xed\x6d\x37\x07\xb7\x68\xab\x0d\x1e\x42\xfa\x21\ +\x33\x06\xf7\x05\xf2\xfd\xa4\x50\x2e\xfc\xec\xd0\x12\x5b\x63\x16\ +\x7f\x68\xd9\x1f\x29\xfb\x7c\x5a\x96\x04\x04\x02\xc7\xb8\xad\x13\ +\xc0\xae\x3a\x1b\xd2\x1b\x25\xab\xbd\xaf\xce\x89\xdb\x77\xb2\x4e\ +\x8c\xfd\x3f\xe3\xed\x21\xe0\xf2\xc2\x98\xc9\xf6\x15\xd0\x32\x1a\ +\x93\x6c\x1a\x81\x78\xc5\xf4\x82\xf0\x1b\xba\xa9\xc6\x34\x04\x88\ +\x6a\x0d\x65\x6e\xb6\xcb\xd2\x21\x24\x08\x13\xab\xf3\x2e\x3f\x36\ +\x44\x51\x7f\x6d\x73\x49\xd9\x61\x67\x72\x54\xfc\x1a\x4c\x03\xbc\ +\x35\xbc\xb6\xf8\x1d\x52\x38\xa2\x76\x3f\x58\x6d\xc3\x94\xc0\x3a\ +\xcb\x45\x2f\x90\xfe\xe7\xf9\x1a\x80\x77\xc4\x4b\x5c\xd8\xf8\xe8\ +\xbe\x9b\xe3\xeb\xa7\x83\xdd\xbe\x0e\xb6\xf8\x81\xbf\x1d\xec\x72\ +\xdb\x68\x8d\x5c\x70\xda\xcd\x0a\xf5\x64\xd2\xe8\xa8\x8f\xf6\x6a\ +\x3a\x0a\x21\x84\x98\xfd\xe9\x93\x7f\x5d\x72\x1b\xa5\x3d\x1a\x16\ +\xd5\x8a\x93\x26\x0a\xd3\x9d\x22\xad\x11\xe2\x05\x03\x79\xaa\x3a\ +\x6b\xc3\x48\x11\xe9\xa6\x1e\xe5\x5e\xc9\xb0\x99\xb8\x38\x32\xec\ +\x54\xfb\x1d\x7b\x26\xcb\xac\xbf\x75\x45\x95\x58\x12\x87\xe3\x21\ +\xbc\x83\x36\xc9\xb2\xd2\x42\xad\xc7\x62\xbd\xec\xa9\xa1\x42\x94\ +\xd2\xbe\xaf\x5e\xfe\xde\x02\x02\x61\xc2\x5f\xc2\xea\xa9\x62\x96\ +\xbe\x8d\xb8\xef\x17\x4a\x09\x88\x8c\xd6\x04\x8e\x61\x2a\x30\x1a\ +\x47\xc6\xd6\x90\x29\xc8\x5b\x20\x39\x26\xf5\x8b\x20\xcf\xd7\x7e\ +\x6b\x5a\x23\xe6\x3c\x5b\xcd\x18\x52\xe7\x16\x63\x75\xfb\xcf\xb2\ +\x26\x10\xee\xa0\x14\x35\x8b\x30\x65\xdd\xaf\xc6\x9d\x28\xc7\x92\ +\xbc\xe4\x9d\xd5\x25\x42\x86\xa5\x99\x1e\xb8\x18\xa9\x52\xbc\x8f\ +\x00\x83\xc6\x40\x1a\x66\x4a\x7a\x31\x6e\x92\xa1\x2a\x77\xb8\x31\ +\x7a\xd5\xd3\x55\xee\xe6\xab\x17\x6a\xa3\xfb\x32\x41\x17\x81\xe8\ +\x81\xcc\x52\xe6\xf7\xa8\xad\xb0\xde\xae\x7f\x54\xa0\x36\x22\x63\ +\x78\xab\xa4\xea\x4c\x9f\xbf\xe7\x5d\xae\x7f\x07\xa7\x87\x62\x15\ +\xc4\x10\x07\xda\x16\x82\x1d\xd4\x25\x64\x89\xfb\xee\xa9\xea\x5f\ +\x75\x4c\xb6\x4d\xa2\xda\xb6\x0b\x66\xf6\xff\xe0\xd9\xe7\xa7\xd3\ +\x7b\x21\xeb\x7c\x9d\xde\xab\x28\x5f\x31\xf8\x65\x0e\x5c\x0d\x19\ +\xc0\x8b\xb6\x72\x37\x48\xfa\x6f\x25\x2c\xd1\xed\x27\x2a\x1b\x4a\ +\x95\x29\x8d\x13\x0e\x45\x6a\x51\xab\x49\xf6\xe1\x85\xb6\xd3\x43\ +\x1b\xe0\xb2\xc6\xf8\xe1\xe6\xd2\x5c\xa4\xbd\x22\x71\x6c\x53\x35\ +\xc5\xfd\x0c\x3e\x3e\x8d\x2a\xa0\x56\xf0\x4f\xa3\x20\x40\x4c\x34\ +\x8d\x09\x1b\xa5\xc8\xc4\x09\x8b\x2a\x91\x15\x62\xb8\xe8\xdf\x49\ +\xf6\xf1\x5f\xe9\x1e\xa4\xcb\xda\x7a\xe6\x51\x30\xaa\x9a\x9f\xcb\ +\xba\xe0\x21\xe7\x1b\x5f\xd4\x8e\x19\x80\xa2\xf1\x69\x85\xde\xbf\ +\xcf\x00\xfc\x6c\x14\xd8\x00\xc2\x7e\x8e\x82\xf7\x9b\xe2\x3d\x13\ +\x56\x67\xe3\x07\xc9\x62\x18\x7f\xc1\x9a\x52\x5b\x39\x09\x52\xe1\ +\x4b\x75\xfe\xcb\x10\xeb\xfb\xfc\x1e\x62\x25\x49\x09\x7b\x9b\xa3\ +\x4a\x77\x7f\xbb\xde\x30\xad\xde\xdb\x3c\xa6\x86\xa3\x5f\xa3\x2c\ +\x21\x5d\xf1\xaa\xc9\x48\x2d\xc0\x95\xf4\x74\x94\x7b\x87\x1b\x50\ +\x4b\x09\xd1\xd5\x0a\xfc\x63\xed\x1d\x82\x04\x80\xb6\x64\xb4\xbb\ +\x41\x30\x41\x7b\xb9\x4e\x5c\x46\x7d\xca\x6d\x68\xf6\xe7\xe3\xf0\ +\x1a\x41\xcb\x45\x27\xaa\x79\x4b\xc0\xab\xe1\x12\xe3\x7e\x63\xbb\ +\x23\x08\xce\xd9\x00\x42\xfe\x06\x10\x5c\xf9\xd9\x21\x1d\xdf\x0e\ +\xa9\x88\x55\x4d\x8f\x18\x46\x32\xc9\x28\xb2\x77\x5d\x09\xa7\x96\ +\x9e\xb4\xb6\x46\x4a\x88\x00\x99\x4d\xf4\xbf\x6a\xff\x49\x35\xbb\ +\xf9\x64\xff\xc6\x10\xec\xd0\x4b\x2a\x3a\x54\xe1\x8c\xae\x6f\x48\ +\x66\xd7\xfd\xa8\xb5\x1a\xa6\x0e\xfb\xdc\x71\x82\x32\xfd\x6f\x96\ +\xa9\x8d\x9c\x84\x51\x93\xb5\xef\xad\xe5\x72\x97\xf0\x5c\x92\x07\ +\x01\x1a\x95\xf8\x06\x68\x44\xc9\xb4\x25\x27\x01\x01\x67\x47\x00\ +\x12\x06\xda\x33\x09\xb1\x1b\x29\x50\xc9\xcc\x77\x5e\xaa\xa8\x63\ +\x24\x5e\x12\xd4\x86\x96\x68\xfa\x2f\x30\xa2\x4a\x07\x01\x23\xca\ +\xd1\xa0\x4a\x40\xeb\x27\xc4\x01\x75\xae\x03\xbc\x98\x95\x98\xae\ +\xee\x21\x74\x33\xf4\x59\xb3\x93\x7a\x05\xa2\xbe\x74\x63\x63\x33\ +\xd9\x88\xc9\x37\xdf\x12\xe5\xae\xb6\xfe\x1d\x58\xe0\x47\xd3\x22\ +\x74\x0b\x2c\xbe\x6d\x35\xcc\xfd\x67\x88\x36\xe5\xd5\x6b\x39\x11\ +\xb2\xb6\xa7\x1b\x30\x33\x29\xd3\xd4\xe1\x0e\xe4\xaa\x47\x30\x35\ +\x7b\xbc\x8a\x64\x31\x34\x64\xcf\x11\x6d\xde\x37\xdc\x46\xf4\xd4\ +\x14\x79\xf4\x01\xd2\xa3\x9d\xc0\x79\x27\xfa\x27\xd5\xfc\xa6\xed\ +\x1d\xb2\x2e\x51\xc7\x1f\x9e\x1e\x1b\xfc\x9b\x88\x7c\x23\x3c\x6b\ +\xf8\x5d\x7c\xa2\x2c\xce\xe6\xef\x80\x05\x30\x30\xb5\xef\x8a\x0f\ +\x7a\x29\x4d\x53\x55\xa2\x09\xa0\xa0\xe7\x4d\xdf\xc8\xbb\x69\x34\ +\xc4\x3d\x0e\x59\xaa\xe9\x78\x8d\xf7\x41\x57\x63\x36\xfd\x7f\x7e\ +\xa4\xb2\x47\x60\x79\xb1\xb6\x9f\x38\x73\x52\x6e\xde\xda\xf4\xdf\ +\x70\xc1\x8d\x17\x73\xff\x17\x32\xe5\xdb\xd3\x73\x09\xf8\xeb\xda\ +\xaf\xcc\x67\xfb\x31\x62\xd4\xe0\x26\x2b\x0f\xfa\xf7\x8d\x33\xce\ +\xad\x41\x13\x1d\x3b\x84\x88\x4a\x68\x27\xd8\x08\xd8\xf4\xb3\xb5\ +\x6f\x13\x36\x3f\x9b\xfb\x82\x6e\x89\x9a\x1a\x93\x88\xd6\x46\x0d\ +\x0c\x6d\xfd\x46\x23\x59\xab\xe4\x8a\xaa\x9b\x28\x0c\x51\xdd\x37\ +\x3f\x91\x0f\xf2\x4e\xc8\x27\x1c\x7b\xac\x8b\x0c\xb0\x0b\x50\xbd\ +\x62\xca\xec\xad\xc2\x49\x11\x55\xe3\xa0\x20\x85\xb5\xf2\x0c\xf7\ +\x95\xf1\x6d\x24\x70\x69\x02\x61\x65\x4d\xd2\x92\xee\x98\x07\xed\ +\xf3\x6e\xf4\xcb\x58\xb9\xfc\x1f\x60\xc3\x74\xd2\x95\xdf\x92\x59\ +\x7d\x3f\xea\xc7\x0e\x6d\xce\x9b\x1e\x69\x5e\x82\x1d\x15\xae\xe9\ +\x8a\x81\xa6\xf5\xbc\x37\x12\x4c\x07\x57\x62\x91\x56\x42\xd6\xa8\ +\x5d\x4e\xa4\x93\xcd\x5c\x0c\x1f\xc1\x05\x00\x1b\x12\x67\xf2\xf8\ +\xf4\x8d\x2d\x24\x27\x2a\xa6\xb1\x05\xed\x7b\x97\x3b\x19\xad\xd1\ +\x29\x0d\xf4\xf2\x33\x8d\xac\x7d\xf2\x41\xdd\x21\x83\xe7\xa3\x8d\ +\xe6\xc7\x00\xdf\x06\x58\x8f\xce\x21\xfe\xac\x4d\x78\x32\xc1\x26\ +\xfb\x50\x85\x54\x3a\xcd\xd6\x6b\x04\x97\x70\x20\x53\xa0\x05\x8e\ +\x4a\x16\xc8\xe3\xe2\x3c\x37\x93\xee\x2f\x84\xb0\x73\x6d\xf6\xaa\ +\xdd\x61\xb5\xfd\xca\x9d\x7c\xbb\x1b\x26\x9a\x7d\xbb\xa7\x13\xb2\ +\xa6\x14\x34\x95\xa1\xd1\x37\xe8\x5a\x5b\x3b\x44\xa3\xdc\x21\x3f\ +\x70\x0d\x58\x3f\x04\x60\xa7\x34\x22\x40\x0f\x07\xd3\x4c\x74\xb5\ +\xc9\x5e\xa2\x9c\x5a\x6b\x19\x3b\x46\xfe\xb7\x41\xd5\x41\x7a\x3f\ +\x90\x1f\x0d\x19\x7d\x53\x80\x59\xc7\x00\xc0\x8d\x85\xab\x34\x04\ +\x48\x11\xd3\x44\xfe\x1d\x02\x6c\xb5\x20\x7e\x35\x04\x88\x5f\x6d\ +\xc7\x57\xb8\xa1\x11\xd6\xf7\x4a\x08\x09\x59\xeb\x1c\xcd\xae\x9b\ +\x5d\x32\x15\x2c\x25\xf7\x20\xc0\x34\x8d\x52\x9b\x4e\x32\x69\x3e\ +\x56\x83\xf4\x59\xf3\xb1\xde\xda\xd0\x36\x1f\x0b\x28\x3c\x49\x83\ +\x2b\xf6\x21\x6e\x7e\x47\x64\xc7\x1d\x46\x57\x23\x40\xac\x6e\x11\ +\xfa\xdb\x66\xc0\x82\x6c\xb5\x24\xe2\xa4\x48\xad\x42\xc5\x71\xd1\ +\x6b\x3d\x1f\x32\xde\x46\x54\x1f\x3a\xe7\x00\x53\xb0\xf9\xcd\xa0\ +\xe3\x3e\x3f\x03\x6f\x9a\x09\xca\xcd\x06\x2a\x59\xfb\xca\x59\x8a\ +\x7d\xa0\x27\xd5\x30\xa9\x1a\x65\xb0\x03\x55\xe7\x8b\x8d\xac\x76\ +\x5f\x1a\x21\x43\xdd\x13\x11\x8f\x78\x2b\x7e\xf2\xf7\x5d\xb2\xb6\ +\x5b\x16\xe6\x69\xd6\xaa\xa2\x8c\xa1\xff\xec\x2c\x09\xfa\x62\xe2\ +\x7e\xb5\x9c\xc2\xd8\x9a\x1e\xd3\x49\x61\xde\x21\x06\x61\xd1\x6b\ +\x53\xaf\x94\x38\x9d\xb7\xf2\x60\xff\x10\x25\x4b\x8a\x7f\xd3\xf5\ +\x71\x0c\x57\x00\x25\xc8\x39\x35\x1b\xf0\x57\x4d\x58\xa1\x92\x8c\ +\xd0\x7d\x1e\xb0\xe6\xe2\x01\x36\x5d\xef\xc3\x37\x5c\xff\xde\x99\ +\x83\x24\x83\xea\x88\xdc\x68\x79\xc0\xb5\xfc\x1d\xe2\x05\x60\x7c\ +\xd3\x88\x1e\x02\x16\x4a\x55\x75\xf6\x45\x03\x84\x66\xc3\xf5\x33\ +\xc1\x7a\xb5\xe2\x37\xf6\xbe\xd1\x9a\xe9\x1b\x1e\x4e\x77\xc2\xa4\ +\x88\x5d\x13\xa4\x0f\x48\x0c\x98\x9a\xf1\x97\x8d\x26\xfa\x1f\x2e\ +\x86\x69\xe2\x9d\x7a\xbe\xc3\x82\xe9\x0e\x9e\xed\x3b\xd0\xe0\xfa\ +\xdd\xa8\xcb\x9a\xe7\x57\xc9\xfe\x4a\x4b\xb1\x5e\xad\xc3\xb3\x9a\ +\xf5\x04\x73\xdf\x73\xc9\x7a\xd3\x19\x84\x2f\xd4\xbe\x09\x59\xbf\ +\x9b\xe6\x78\x22\x90\x27\xd7\xdb\x84\x6c\x7e\x6c\x44\x56\x04\x74\ +\xfc\xeb\xb4\x6a\x40\x62\x6c\x9b\xec\xae\x36\x9a\xab\xf8\xc2\xa5\ +\x6b\xdb\x78\xac\x1a\x0a\xe0\xc3\xa3\x53\x32\x71\xa9\x60\x8d\x59\ +\x07\x46\x97\x1c\x33\x19\x65\xba\x9b\x5b\xa4\x66\xf9\x76\xd4\x28\ +\xdf\x6b\xec\x3b\x57\x6a\xc3\xe8\x32\x85\x95\x49\xd4\x11\xa1\xff\ +\x2e\x0d\x09\x92\x73\x0b\x63\x69\x40\x02\x16\xa0\xbd\x7a\xd8\x55\ +\x1b\xda\x49\x47\xa0\x96\x16\x40\x23\x9d\x88\x73\xf0\x30\x9d\x2d\ +\x22\xd9\xed\xec\x06\x4b\x7d\xbb\x6d\x66\xa6\x6f\xb4\xb2\x9f\x55\ +\x2e\x25\x77\x9a\x27\xeb\x84\xa9\x36\xbd\x9d\xba\xf5\x1a\xcf\xd7\ +\x79\x48\x91\xe4\x3b\x9e\x9f\x29\xd9\x3b\x79\x1b\xcf\x87\x73\xb4\ +\x07\x9d\x32\x34\x30\x71\x8f\x9e\x65\x57\xee\xc8\xbf\x35\xc4\xfd\ +\xb9\x93\xff\x4e\x8f\x26\xbf\xfe\xb6\x81\xa2\x9e\xbd\x1d\x4f\xd2\ +\xf3\x90\x59\xab\x6a\x80\x53\xc7\x79\x04\x48\x3b\xc3\x13\xc8\xb8\ +\x01\x6a\xac\xfa\x52\xc0\x6c\x9e\x3e\x6d\x6b\xde\x12\xcc\x36\xa2\ +\x61\x6d\x22\xc3\xd0\x76\xe9\x5f\x7b\xfa\x79\xb3\x8a\x30\x14\x40\ +\xb2\xdf\xe9\xa4\xf7\x19\x79\x57\xe3\xb5\xb9\x0d\x50\x63\x69\xa3\ +\xf6\xed\x42\x77\xcd\xa4\x0c\x4c\xa4\xcd\x04\xc3\x82\x3a\xee\xc1\ +\xa1\xc7\x3a\x0b\xaa\xd1\xc4\x27\x19\x21\xf5\x44\x12\x5c\x90\x45\ +\x44\x9d\x4b\xe3\x63\xc1\xdb\xc2\xc9\x3a\x14\xf8\x64\x98\xa6\xb8\ +\x8e\x09\x8a\x74\x99\xbf\xb3\x03\x44\xc0\x9e\x1d\x19\x01\x28\x11\ +\x8b\xf7\xc8\x08\x49\x83\x05\x90\x0c\x05\x88\xcd\xd2\x9c\xe7\xdf\ +\xce\x27\x61\xb0\x67\xe2\x60\x35\x76\xba\x86\xdf\xc8\x77\x3b\xd1\ +\x42\x81\xa7\x16\xda\x89\x16\xf5\xe9\xaa\x9d\x68\x69\x78\x5a\x27\ +\x5a\xf6\x3f\x9d\x46\xaa\xcf\xab\xce\x4a\x3e\x2e\x6c\x3b\x50\xe3\ +\x07\x8f\xce\xe4\x3c\x39\x83\xf8\xd4\x81\x9a\x94\x0d\x0b\xa9\x6a\ +\x36\xa8\x67\x9d\xfe\x1d\xdd\x37\x2e\x97\x35\x1f\x44\xd9\x7b\xd4\ +\xe5\xad\xa2\x02\xdd\xb5\x18\x20\x06\xfb\x6b\x2f\xdf\x23\x5c\x94\ +\xa7\x66\xfd\x9f\xa5\x71\x04\x18\xba\x4d\xf7\x85\x8f\x62\xb5\xa4\ +\x6c\xb3\x63\x49\x0f\xe8\x52\xef\x7e\xb8\x1d\x61\x5c\x77\x7c\xe1\ +\x7e\xc2\x8a\x80\x8d\x0d\x16\xaf\x5a\x43\x65\xae\x81\x90\xb7\xbd\ +\xc7\x16\x7e\x46\xb2\xe0\x82\xd0\x9a\xdf\x27\x93\xa4\xe3\xd5\x68\ +\x8a\x33\xdc\xb3\x51\xfb\x1b\xb7\xf8\xa1\xa3\x02\x3d\x96\x78\x62\ +\x69\x7e\xbb\xd6\x10\xfa\xbe\x17\x57\x03\x14\xfd\x3c\x1d\xb8\x1c\ +\x98\xd4\x1a\x4e\xca\x67\x1d\xdf\x12\x59\x51\xc7\x46\x69\x36\xfb\ +\xd1\x2e\xee\x70\x35\x03\x63\x1f\xfa\xe5\xeb\xa1\xda\x7e\x9d\x45\ +\x7a\xfe\x38\x8c\xa4\x4e\x1d\x4f\xb5\x50\xa0\x24\xb2\x04\x1e\x7a\ +\x8f\x92\x51\x94\xb5\xc3\xa3\x50\x00\xa0\xbe\xd3\x43\x7f\x89\xa6\ +\x27\x7d\x47\x29\xf6\xfa\xd7\xe3\x49\x4a\x4a\x75\x43\xcb\xcf\xd1\ +\xa1\x0b\x75\x92\xc4\x0d\x92\xc4\x77\x6b\x9a\x0f\x80\xa2\xc3\x89\ +\x07\xb7\x0f\x8d\xf6\x82\xc9\x44\x34\xe4\x16\x92\x4c\x91\x0f\x3a\ +\x67\xcc\x37\xd1\x7e\xd0\xa3\xf3\x33\x15\x09\xff\xfd\xa6\x22\xf7\ +\x37\x15\xf9\x78\x3b\x55\x62\xbe\x11\x29\xfc\x4e\xf8\x49\x42\xc4\ +\x71\xdb\xb9\xbc\x23\xd6\x2d\x3a\x7d\xea\x46\x5c\x6a\x4c\x8f\xa2\ +\x73\x1a\xc1\x1f\xc3\x2b\xde\x6d\xb8\x47\xd4\x56\x87\x7f\x92\x4e\ +\xe5\xe8\xd8\x01\xfa\xf3\xef\xd3\x05\xff\x3c\x5c\x00\x78\x02\x1d\ +\xde\x4e\xe8\xcd\xa8\x03\xde\xd0\x27\xd8\x29\x14\x4e\xf4\xa3\xe8\ +\x30\xf9\x9b\x5d\x8d\x39\xdb\x40\xf5\xa2\xce\xab\x29\x60\x42\xf8\ +\xbd\xe7\x90\x95\x21\x43\x91\x20\x89\x21\x92\xf6\x9e\x47\x16\xd7\ +\x50\x13\x57\x2c\xd3\x44\x5d\x2c\x4b\xef\x7b\xfc\xa1\x52\xf1\xc2\ +\xd5\xe6\x50\xfd\xb0\x39\xd4\xc6\xdb\x2b\x80\xde\x41\x41\x1d\xf3\ +\xa5\xa8\xc3\x3c\x53\x7c\xea\x9b\x62\xaf\x53\xff\x93\x03\xcd\x30\ +\xd9\x99\xcd\x21\xe9\xa2\x90\x8c\xd6\xbf\x07\x8f\xf4\xec\xb4\x42\ +\x30\x02\x39\x31\x97\x28\x4d\xda\xda\x05\xea\x20\x25\x8b\xd2\xf1\ +\xc5\xa3\x0a\x98\x7f\x7a\x55\x88\xdb\x71\xee\x10\xba\x9d\x87\x06\ +\x4d\xed\x00\xac\xd7\x00\x91\x1d\x80\x7d\xd1\x1b\xd9\xce\x43\x2f\ +\x0d\xf5\xdc\x93\xd5\x8f\x1d\xad\xd6\xf6\xdc\x1d\x94\x8a\x3a\xf3\ +\x7a\xc5\xef\x21\x68\x85\xba\x97\x59\x07\x62\xa4\x7c\x03\xfb\xb1\ +\x37\x4d\x7b\x56\xcc\xb7\xa1\x28\x70\xe7\xae\x14\xd1\xae\xde\xd2\ +\x39\x14\xed\xf0\x41\xa9\xd4\x89\xd4\xa6\x37\x10\xb6\x03\x34\x55\ +\x83\x5a\x84\x64\xd7\xc7\x9a\x76\x86\xd3\xb2\x23\xd1\xeb\xda\x81\ +\xa7\xa3\xf4\x2f\xd1\x82\x3c\x59\x5b\xa7\xa7\x1f\x8c\x81\x6e\x7e\ +\x03\x56\xea\xe9\x84\x83\x94\xd7\xde\x4f\x7e\x41\x81\xb8\xf5\x7f\ +\xe8\xa8\xac\x71\x9e\x6e\x23\x5b\x84\xdf\xbe\x7d\xc8\x98\x6c\x24\ +\x1d\xdd\x32\x25\x3f\x35\xde\x0e\xdd\xaa\xdf\x56\x52\xb6\xd1\x4d\ +\xbf\xec\x28\xf5\xb2\x93\x55\xf7\x99\x5d\x9d\x18\xdd\x37\xba\xfa\ +\x84\x7b\xe3\x77\xde\x0f\x8f\x6f\x73\xa4\x84\xf5\x7b\xd9\xff\xb8\ +\xea\x7b\x30\xfa\x85\x75\x01\xfa\xe8\x7e\x48\x20\xd2\x05\xba\x26\ +\x8b\xdd\xd9\x46\x4d\xec\xe3\xc2\x7c\x8f\x76\xef\xfa\x1d\xda\xd1\ +\x19\x0d\xc4\x92\xc6\x41\x6c\x34\xaa\xe8\xa8\xc0\xf6\x07\xa2\x17\ +\xf4\x7f\x1c\xd0\xd9\x22\x0c\x77\xf7\x3d\xfe\x9b\xd7\xba\x14\xf7\ +\x26\x68\xb4\xab\x9f\x92\x6d\x36\x84\x13\xe7\x0d\x90\x07\x39\x07\ +\xc7\x8b\xc3\x4e\xcc\xfb\x42\xa1\xb5\x23\xd2\x4b\x47\xa4\x87\xb6\ +\x10\x65\xba\xf8\x7b\x6f\x7f\x9c\x3f\xcf\x5a\xdb\xff\xaf\x40\x0f\ +\xda\x2a\xd9\xfb\x7a\x48\xf3\xd4\xea\x22\x9f\x71\x5b\xbc\xd4\x50\ +\xb1\xe5\x3d\x34\x0b\xa1\xb3\x2c\x54\x74\x9d\x65\xf1\xde\xce\xb2\ +\x10\x87\x91\xfa\x95\x35\xfc\xc7\x2a\x34\x55\x1f\x75\xc8\xa8\x4e\ +\x6b\x35\x35\x83\x72\x14\xfc\xd4\x51\x36\xfd\x7f\x08\xb6\x09\xba\ +\xef\x58\x70\x88\xf7\x8c\xa1\xc5\x7d\xae\x66\x45\x1d\x67\xa9\xda\ +\xa9\x39\xda\x89\x23\xfa\x06\xc9\x8f\xca\xea\x71\xea\x7f\xf2\x52\ +\x09\x5e\xd8\xdf\x80\x77\x01\x17\xf0\x2f\x1d\x2e\x8b\xd5\x53\xfe\ +\x2b\xb1\x12\x74\x96\xa4\xe1\x1e\x54\x06\xca\x74\xfb\xc7\x76\xdc\ +\xd0\x5d\x76\xcc\xce\x7f\xff\xef\x85\xf6\x8f\x34\x86\x24\x5a\xed\ +\xf9\xdf\x4c\x49\x23\x27\xd0\xb4\x8b\xee\x00\x00\x00\x06\x62\x4b\ +\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00\x09\ +\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\x2e\x23\x01\x78\xa5\x3f\ +\x76\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xe2\x09\x14\x09\x34\x2c\ +\xc3\x10\x16\x0b\x00\x00\x03\x80\x49\x44\x41\x54\x38\xcb\xb5\x95\ +\xcf\x4b\x72\x59\x1c\xc6\x9f\x73\xd4\x38\x21\x61\xf7\x15\x24\x83\ +\x2b\x44\x52\x4a\x90\x25\x81\x9b\x2e\x82\x72\xa7\xe1\x1d\x68\x13\ +\xe2\x4a\x77\xc1\xb8\x08\x77\xef\x0b\xfd\x07\xef\xbb\x6b\xd5\x80\ +\xab\x6c\x25\x61\x05\x32\x31\x65\xb6\x31\x83\x68\x11\x12\x84\x89\ +\x05\x5e\xa3\x0c\x92\xba\x42\xcd\x05\xbb\xe7\xce\xe2\xc5\xe8\x07\ +\xcd\x6c\xde\x79\x96\xe7\x9c\xe7\xc3\xf3\x3d\x1c\x9e\x43\xf0\x42\ +\xa9\x54\x8a\xcc\xcf\xcf\x1b\x85\x42\x81\xdd\xdd\xdd\xfd\xd2\x6a\ +\xb5\x12\x8a\xa2\xc8\x9c\x73\x13\x00\x50\x4a\x75\x97\xcb\x95\xb7\ +\xdb\xed\xcb\x82\x20\xec\x84\xc3\x61\xad\xeb\xe9\x32\x08\xde\x68\ +\x75\x75\xf5\x73\xa3\xd1\x58\x2e\x16\x8b\xae\x4a\xa5\x02\x00\xb0\ +\xd9\x6c\x00\x00\x55\x55\x01\x00\x1e\x8f\x07\x92\x24\x29\xa2\x28\ +\x26\x62\xb1\xd8\xd6\x4b\xff\x2b\x60\x3a\x9d\xfe\xb2\xbf\xbf\xff\ +\x2d\x9f\xcf\xc3\xed\x76\x1b\x3e\x9f\x0f\xa2\x28\x12\xc6\x18\x00\ +\x40\xd3\x34\x34\x1a\x0d\xa3\x5c\x2e\xa3\x56\xab\x11\x59\x96\x31\ +\x3d\x3d\xfd\x35\x1e\x8f\x7f\xef\x32\x4c\xa9\x54\x8a\xe4\x72\x39\ +\xa4\xd3\xe9\x2f\x87\x87\x87\xdf\x76\x77\x77\x11\x89\x44\x10\x0c\ +\x06\x49\x5f\x5f\x1f\x01\x80\x4e\xa7\x83\xa7\xa7\x27\x50\x4a\xf1\ +\xe9\xd3\x27\x32\x31\x31\x41\x06\x06\x06\xb0\xb5\xb5\x05\xc6\x98\ +\xbc\xb0\xb0\xf0\xf7\xc6\xc6\x46\x29\x95\x4a\x11\xd2\x1d\xb3\x58\ +\x2c\xfe\xb9\xb7\xb7\x87\x64\x32\x09\x93\xc9\x84\x4e\xa7\x83\xfb\ +\xfb\x7b\x9c\x9c\x9c\xe0\xe2\xe2\x02\x8a\xa2\x40\x14\x45\xf8\xfd\ +\x7e\x8c\x8d\x8d\x81\x31\x06\x5d\xd7\xb1\xb4\xb4\x84\x50\x28\x04\ +\x49\x92\x7e\x8b\xc5\x62\x5b\xa6\x42\xa1\xc0\x4e\x4f\x4f\xff\x5a\ +\x5b\x5b\xb3\x45\x22\x11\x08\x82\x80\xa7\xa7\x27\x10\x42\x50\xaf\ +\xd7\xb1\xb2\xb2\x82\xeb\xeb\x6b\x3c\x3e\x3e\xa2\xd9\x6c\xe2\xf8\ +\xf8\x18\x0e\x87\x03\x4e\xa7\x13\x66\xb3\x19\x83\x83\x83\xc8\xe5\ +\x72\x70\xbb\xdd\xd2\xe2\xe2\xe2\x1f\xa6\xd9\xd9\xd9\xcf\x9b\x9b\ +\x9b\xbf\xf7\xf7\xf7\x1b\xc1\x60\x90\x68\x9a\x06\xf2\x23\x38\x54\ +\x55\xc5\xd4\xd4\x14\xa2\xd1\x28\x42\xa1\x10\x6e\x6f\x6f\xd1\x6c\ +\x36\xc1\x39\xc7\xe4\xe4\x24\x38\xe7\x70\x3a\x9d\xb8\xba\xba\x32\ +\x2e\x2f\x2f\xfb\xbd\x5e\xef\x11\x6d\xb5\x5a\x89\x4a\xa5\x02\x9f\ +\xcf\x87\x97\x30\x00\x18\x1e\x1e\xc6\xe8\xe8\x28\x7a\x7a\x7a\xd0\ +\xdb\xdb\x0b\x87\xc3\x81\xee\x9d\x02\x00\x21\x04\x9a\xa6\xc1\xe7\ +\xf3\xa1\x52\xa9\xa0\xd5\x6a\x25\xa8\xa2\x28\x32\x00\x88\xa2\x48\ +\x38\xe7\xf8\x48\x37\x37\x37\x28\x95\x4a\x00\x80\xf1\xf1\x71\x50\ +\x4a\x01\x00\x9c\x73\x88\xa2\x48\x00\x40\x51\x14\x99\x72\xce\x4d\ +\x36\x9b\x0d\x8c\x31\x7c\x04\x6c\xb7\xdb\xc8\x64\x32\x78\x78\x78\ +\x80\xd7\xeb\x85\xdf\xef\x7f\xde\xe3\x9c\x83\x31\x06\x9b\xcd\x06\ +\xce\xb9\x89\xe2\x3f\x64\x18\x06\x0e\x0e\x0e\x70\x7e\x7e\x0e\x87\ +\xc3\x81\x68\x34\x0a\xab\xd5\xfa\xe1\x79\x4a\x29\xd5\x55\x55\x85\ +\xa6\x69\xcf\x63\xbc\x05\x9e\x9d\x9d\xc1\x6a\xb5\x22\x10\x08\x40\ +\x10\x84\xb7\x00\x68\x9a\x06\x55\x55\x41\x29\xd5\xcd\x2e\x97\x2b\ +\x0f\xe0\xd7\x46\xa3\x61\x0c\x0d\x0d\x11\x5d\xd7\xdf\x19\x92\xc9\ +\xe4\xbf\x25\x42\xbd\x5e\x37\x00\x10\x97\xcb\x95\xa7\x76\xbb\x7d\ +\xd9\xe3\xf1\xa0\x5c\x2e\x83\x31\x06\xc3\x30\x5e\x19\x38\xe7\x58\ +\x5f\x5f\x47\x26\x93\xc1\xd1\xd1\xd1\xbb\xf4\x8c\x31\x94\xcb\x65\ +\x78\x3c\x1e\xd8\xed\xf6\x65\x2a\x08\xc2\x8e\x24\x49\x4a\xad\x56\ +\x23\xd5\x6a\x15\x16\x8b\xe5\x5d\x8a\x4a\xa5\x82\x52\xa9\x84\x76\ +\xbb\xfd\x6a\xdd\x62\xb1\xa0\x5a\xad\xa2\x56\xab\x11\x49\x92\x14\ +\x41\x10\x76\x68\x38\x1c\xd6\x44\x51\x4c\xc8\xb2\x8c\x6c\x36\x0b\ +\x5d\xd7\x61\x36\x9b\xdf\x25\x7d\x9b\xcc\x6c\x36\x43\xd7\x75\x64\ +\xb3\x59\xc8\xb2\x0c\x51\x14\x13\xe1\x70\x58\x23\xdd\x3e\xeb\x96\ +\xc3\xf6\xf6\x36\xe6\xe6\xe6\x30\x32\x32\x02\x4d\xd3\xc0\x39\x7f\ +\x7e\x4e\x94\x52\x50\x4a\xc1\x18\x43\xb5\x5a\x45\x36\x9b\xc5\xcc\ +\xcc\x0c\x02\x81\xc0\xd7\x78\x3c\xfe\xfd\xb9\x1c\x7e\x66\x7d\xfd\ +\xbf\x05\xfb\x33\xbe\x80\x7f\x00\xa1\xec\xdc\x87\x9e\x22\x70\xd1\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x05\xd1\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x03\x00\x50\x4c\x54\x45\x00\x00\x00\xff\x00\x00\x00\xff\ +\x00\xff\xff\x00\x00\x00\xff\xff\x00\xff\x00\xff\xff\xff\xff\xff\ +\xdb\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\ +\x24\x24\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\x00\x49\x00\ +\x00\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\ +\x00\x49\x00\x00\x24\x00\xdb\xdb\x00\xb6\xb6\x00\x92\x92\x00\x6d\ +\x6d\x00\x49\x49\x00\x24\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\ +\x92\x00\x00\x6d\x00\x00\x49\x00\x00\x24\xdb\x00\xdb\xb6\x00\xb6\ +\x92\x00\x92\x6d\x00\x6d\x49\x00\x49\x24\x00\x24\x00\xdb\xdb\x00\ +\xb6\xb6\x00\x92\x92\x00\x6d\x6d\x00\x49\x49\x00\x24\x24\xff\xdb\ +\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\x24\ +\xff\xb6\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\xff\ +\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\xff\x6d\x6d\xdb\x49\ +\x49\xb6\x24\x24\xff\x49\x49\xdb\x24\x24\xff\x24\x24\xdb\xff\xdb\ +\xb6\xdb\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\xb6\ +\xff\xb6\x92\xdb\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x92\xff\ +\x92\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x6d\xff\x6d\x49\xdb\x49\ +\x24\xb6\x24\x49\xff\x49\x24\xdb\x24\x24\xff\x24\xdb\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\xb6\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x92\x92\xff\ +\x6d\x6d\xdb\x49\x49\xb6\x24\x24\x92\x6d\x6d\xff\x49\x49\xdb\x24\ +\x24\xb6\x49\x49\xff\x24\x24\xdb\x24\x24\xff\xff\xff\xdb\xdb\xdb\ +\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\xff\xff\xb6\ +\xdb\xdb\x92\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\xff\xff\x6d\xdb\xdb\x49\xb6\xb6\ +\x24\xff\xff\x49\xdb\xdb\x24\xff\xff\x24\xff\xdb\xff\xdb\xb6\xdb\ +\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\xff\xb6\xff\xdb\ +\x92\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\xff\x92\xff\xdb\x6d\ +\xdb\xb6\x49\xb6\x92\x24\x92\xff\x6d\xff\xdb\x49\xdb\xb6\x24\xb6\ +\xff\x49\xff\xdb\x24\xdb\xff\x24\xff\xdb\xff\xff\xb6\xdb\xdb\x92\ +\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\xb6\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\x6d\x6d\x92\xff\xff\x6d\xdb\xdb\ +\x49\xb6\xb6\x24\x92\x92\x6d\xff\xff\x49\xdb\xdb\x24\xb6\xb6\x49\ +\xff\xff\x24\xdb\xdb\x24\xff\xff\xff\xdb\xb6\xdb\xb6\x92\xb6\x92\ +\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\x00\xff\xb6\x92\xdb\x92\x6d\ +\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\xff\xb6\xdb\xdb\x92\xb6\xb6\ +\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\x00\x24\xff\x92\xb6\xdb\x6d\ +\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\xdb\xb6\xff\xb6\x92\xdb\ +\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\x49\xb6\x92\xff\x92\ +\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x00\x6d\xb6\xdb\xff\x92\xb6\ +\xdb\x6d\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\x49\x92\xb6\xff\ +\x6d\x92\xdb\x49\x6d\xb6\x24\x49\x92\x00\x24\x6d\xb6\xff\xdb\x92\ +\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\x49\x00\x49\x24\x92\xff\ +\xb6\x6d\xdb\x92\x49\xb6\x6d\x24\x92\x49\x00\x6d\x24\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\x00\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x00\xff\xb6\ +\x00\xdb\x92\x00\xb6\x6d\x00\x92\x49\x00\xff\x00\xb6\xdb\x00\x92\ +\xb6\x00\x6d\x92\x00\x49\x00\xb6\xff\x00\x92\xdb\x00\x6d\xb6\x00\ +\x49\x92\x00\x00\x00\x00\x00\x00\xcf\x2a\x02\x04\x00\x00\x02\x8c\ +\x49\x44\x41\x54\x38\xcb\xb5\x95\xbf\x4b\x23\x51\x10\xc7\xbf\xfb\ +\xb2\xab\x12\x03\x66\xcd\xc6\xd5\xac\x44\x45\x41\x21\x9d\x01\xb9\ +\x98\xe2\x82\xe0\x0a\x5a\x09\x96\x47\x1a\xf1\x60\x35\xb5\x57\x58\ +\x5b\xdc\xfd\x03\x81\xb3\x5b\x2c\x05\x2b\x0f\x5d\x41\x72\x85\xe6\ +\x1a\xcb\x74\x82\x1a\x8c\x24\xb2\x71\x23\x44\x51\x77\xb3\x73\x85\ +\x11\x7f\xa0\x9c\x81\xdc\x17\xa6\x99\xc7\x7c\x98\x79\xf3\xf8\x3e\ +\x0e\xcf\xb4\xb6\xf6\x93\x5b\x58\xf8\x4a\x19\xc3\x68\x33\xaf\x2a\ +\x6a\xf9\xd2\xd2\x4e\xce\x0a\x93\x0e\xb9\x1e\x00\xe0\x39\x56\xeb\ +\xef\x55\x76\x03\x9d\x62\x5a\xea\xf0\x1b\x09\x55\xbd\x7d\xac\x79\ +\x64\x70\x78\xa5\x75\x5d\x9f\x3e\x2d\x9c\xa7\x33\x07\xfb\xe1\xa3\ +\x5c\x0e\x62\xc5\x84\xdc\x22\x00\x00\x4a\xf7\x36\x2c\xbf\x84\xa1\ +\x48\x04\x89\xf1\x78\xbe\x4f\x09\x69\x5f\x92\xc9\x5f\xcf\xeb\x5f\ +\x00\x75\x5d\x5f\xfe\x9d\xfd\xf3\x3d\xbb\xb9\x81\x89\x56\x8e\x66\ +\x02\x3e\x44\x3d\x2e\x27\xba\x36\x00\xc0\x62\x02\x0e\x6b\x8c\xb6\ +\xca\x55\xec\xdd\x11\x17\x9b\x9d\xc3\xe7\xd8\xa7\x6f\xc9\x64\xf2\ +\xc7\x8b\x31\x1f\x61\x4b\xa9\x14\x45\x83\x22\x6d\x8f\x0d\x13\x8d\ +\x2a\x44\x61\x9e\xa8\x07\x44\x72\x3d\x7a\xf0\x90\x1b\x55\x68\x7b\ +\x6c\x98\xa2\x41\x91\x96\x52\x29\xd2\x75\x7d\xf9\x39\x0b\xeb\xba\ +\x3e\x3d\xaf\x2d\x52\x34\x28\x52\x31\x3e\x42\x34\xe8\x25\xea\xae\ +\x03\x42\xaf\xa2\x07\x0f\x67\x83\x5e\x2a\xc6\x47\x28\x1a\x14\x69\ +\x5e\x5b\xa4\x75\x5d\x9f\x06\x00\x96\x31\x8c\xb6\xd3\xc2\x79\x3a\ +\xbb\xb9\x81\xd5\x81\x2e\xc8\xc5\x3c\x70\x7d\x03\xb0\xb7\x6e\xb8\ +\x9e\x63\x00\xae\x6f\x20\x17\xf3\x58\x1d\xe8\x42\x76\x73\x03\xa7\ +\x85\xf3\x74\xc6\x30\xda\x98\x79\x55\x51\x33\x07\xfb\xe1\x89\x56\ +\x8e\xa6\x9c\xea\x13\xec\x5f\xaa\x43\xa7\x9c\x2a\x26\x5a\x39\xca\ +\x1c\xec\x87\xcd\xab\x8a\xca\xca\x97\x96\x76\x94\xcb\x61\x26\xe0\ +\x03\xcc\xd2\xdb\x5d\xbd\x27\x0e\x80\x59\xc2\x4c\xc0\x87\xa3\x5c\ +\x0e\xe5\x4b\x4b\x63\x27\x67\x85\x49\xb1\x62\x22\xea\x71\x39\xd8\ +\x4e\xe3\x40\xdb\x79\x78\x09\x15\x13\x27\x67\x85\x49\xe6\x90\xeb\ +\x91\x5b\x04\x88\xae\x0d\xb8\x68\x5c\x2e\x20\xba\x36\xe4\x16\x01\ +\x0e\xb9\x1e\x86\x26\x8b\xf1\x1c\xab\x95\xee\x6d\x58\x4c\xf8\xd8\ +\x32\xde\x58\x8e\xc5\x04\x94\xee\x6d\xf0\x1c\xab\xb1\xfe\x5e\x65\ +\xd7\xf2\x4b\x38\xac\x31\x82\xc0\x03\xd4\x00\x8c\x00\x08\x3c\x0e\ +\x6b\x8c\x2c\xbf\x84\xfe\x5e\x65\x97\x05\x3a\xc5\xf4\x50\x24\x82\ +\xad\x72\x15\x90\xe4\xc6\x81\x92\x8c\xad\x72\x15\x43\x91\x08\x02\ +\x9d\x62\x9a\x49\x1d\x7e\x23\x31\x1e\xcf\xef\xdd\x11\xb7\xc3\xfb\ +\x80\x76\xef\xc7\x96\xe3\x02\x68\xf7\x62\x87\xf7\x61\xef\x8e\xb8\ +\xc4\x78\x3c\x2f\x75\xf8\x0d\x96\x50\xd5\xdb\x3e\x25\xa4\xc5\x66\ +\xe7\xb0\x72\x7c\x81\x52\x77\xf8\x09\x4a\xef\x74\x55\x87\x95\xba\ +\xc3\x58\x39\xbe\x40\x6c\x76\x0e\x7d\x4a\x48\x4b\xa8\xea\x6d\xd3\ +\xcd\xa1\xe9\xf6\xf5\x7f\x0d\xb6\x19\x5f\xc0\x5f\x68\x3a\x9d\x16\ +\x4d\x7f\x65\x90\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x05\x27\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x14\x00\x00\x00\x14\x08\x06\x00\x00\x00\x8d\x89\x1d\x0d\ +\x00\x00\x03\x00\x50\x4c\x54\x45\x00\x00\x00\xff\x00\x00\x00\xff\ +\x00\xff\xff\x00\x00\x00\xff\xff\x00\xff\x00\xff\xff\xff\xff\xff\ +\xdb\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\ +\x24\x24\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\x00\x49\x00\ +\x00\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\x92\x00\x00\x6d\x00\ +\x00\x49\x00\x00\x24\x00\xdb\xdb\x00\xb6\xb6\x00\x92\x92\x00\x6d\ +\x6d\x00\x49\x49\x00\x24\x24\x00\x00\x00\xdb\x00\x00\xb6\x00\x00\ +\x92\x00\x00\x6d\x00\x00\x49\x00\x00\x24\xdb\x00\xdb\xb6\x00\xb6\ +\x92\x00\x92\x6d\x00\x6d\x49\x00\x49\x24\x00\x24\x00\xdb\xdb\x00\ +\xb6\xb6\x00\x92\x92\x00\x6d\x6d\x00\x49\x49\x00\x24\x24\xff\xdb\ +\xdb\xdb\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\x24\ +\xff\xb6\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\xff\ +\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\xff\x6d\x6d\xdb\x49\ +\x49\xb6\x24\x24\xff\x49\x49\xdb\x24\x24\xff\x24\x24\xdb\xff\xdb\ +\xb6\xdb\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\xb6\ +\xff\xb6\x92\xdb\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x92\xff\ +\x92\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x6d\xff\x6d\x49\xdb\x49\ +\x24\xb6\x24\x49\xff\x49\x24\xdb\x24\x24\xff\x24\xdb\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\xb6\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x92\x92\xff\ +\x6d\x6d\xdb\x49\x49\xb6\x24\x24\x92\x6d\x6d\xff\x49\x49\xdb\x24\ +\x24\xb6\x49\x49\xff\x24\x24\xdb\x24\x24\xff\xff\xff\xdb\xdb\xdb\ +\xb6\xb6\xb6\x92\x92\x92\x6d\x6d\x6d\x49\x49\x49\x24\xff\xff\xb6\ +\xdb\xdb\x92\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\xff\xff\x6d\xdb\xdb\x49\xb6\xb6\ +\x24\xff\xff\x49\xdb\xdb\x24\xff\xff\x24\xff\xdb\xff\xdb\xb6\xdb\ +\xb6\x92\xb6\x92\x6d\x92\x6d\x49\x6d\x49\x24\x49\xff\xb6\xff\xdb\ +\x92\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\xff\x92\xff\xdb\x6d\ +\xdb\xb6\x49\xb6\x92\x24\x92\xff\x6d\xff\xdb\x49\xdb\xb6\x24\xb6\ +\xff\x49\xff\xdb\x24\xdb\xff\x24\xff\xdb\xff\xff\xb6\xdb\xdb\x92\ +\xb6\xb6\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\xb6\xff\xff\x92\xdb\ +\xdb\x6d\xb6\xb6\x49\x92\x92\x24\x6d\x6d\x92\xff\xff\x6d\xdb\xdb\ +\x49\xb6\xb6\x24\x92\x92\x6d\xff\xff\x49\xdb\xdb\x24\xb6\xb6\x49\ +\xff\xff\x24\xdb\xdb\x24\xff\xff\xff\xdb\xb6\xdb\xb6\x92\xb6\x92\ +\x6d\x92\x6d\x49\x6d\x49\x24\x49\x24\x00\xff\xb6\x92\xdb\x92\x6d\ +\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\xff\xb6\xdb\xdb\x92\xb6\xb6\ +\x6d\x92\x92\x49\x6d\x6d\x24\x49\x49\x00\x24\xff\x92\xb6\xdb\x6d\ +\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\xdb\xb6\xff\xb6\x92\xdb\ +\x92\x6d\xb6\x6d\x49\x92\x49\x24\x6d\x24\x00\x49\xb6\x92\xff\x92\ +\x6d\xdb\x6d\x49\xb6\x49\x24\x92\x24\x00\x6d\xb6\xdb\xff\x92\xb6\ +\xdb\x6d\x92\xb6\x49\x6d\x92\x24\x49\x6d\x00\x24\x49\x92\xb6\xff\ +\x6d\x92\xdb\x49\x6d\xb6\x24\x49\x92\x00\x24\x6d\xb6\xff\xdb\x92\ +\xdb\xb6\x6d\xb6\x92\x49\x92\x6d\x24\x6d\x49\x00\x49\x24\x92\xff\ +\xb6\x6d\xdb\x92\x49\xb6\x6d\x24\x92\x49\x00\x6d\x24\xdb\xff\xb6\ +\xb6\xdb\x92\x92\xb6\x6d\x6d\x92\x49\x49\x6d\x24\x24\x49\x00\xb6\ +\xff\x92\x92\xdb\x6d\x6d\xb6\x49\x49\x92\x24\x24\x6d\x00\xff\xb6\ +\x00\xdb\x92\x00\xb6\x6d\x00\x92\x49\x00\xff\x00\xb6\xdb\x00\x92\ +\xb6\x00\x6d\x92\x00\x49\x00\xb6\xff\x00\x92\xdb\x00\x6d\xb6\x00\ +\x49\x92\x00\x00\x00\x00\x00\x00\xcf\x2a\x02\x04\x00\x00\x01\xe2\ +\x49\x44\x41\x54\x38\xcb\xb5\x95\x31\x8b\xe2\x40\x18\x86\xdf\x89\ +\x29\xac\x96\x0c\x11\x72\x58\xec\x46\x48\x95\xc6\x22\x95\x5d\x10\ +\xd4\x43\xff\xc2\xc2\x15\x61\x0f\x44\x6d\xf7\x1f\x58\xec\x2f\x10\ +\x6e\x2b\x43\xfe\x82\x67\x5c\x41\xd2\x59\x59\xd8\x07\x8c\x16\xe2\ +\x4a\x42\x16\xab\x83\x8d\x7e\x57\xe4\xe4\xee\x96\xdb\xe3\x14\xef\ +\x81\xb7\x1a\xe6\x61\x86\xe1\x7b\x87\xe1\x17\x1e\x1f\xbf\xb0\xbb\ +\xbb\xcf\xe4\x79\x6e\x36\x0c\x77\xd5\x28\x8a\x9b\x41\xb0\xae\x24\ +\x09\x32\x00\x20\x8a\xd8\xab\x6a\x7e\x2c\xcb\xbc\x97\xcb\x5d\x3d\ +\x99\xe6\xc7\x6f\xc7\x3d\x47\x07\xc3\x1b\x1c\xa7\x5f\x5f\x2e\x37\ +\x3d\xcf\x9b\x5e\xfb\xfe\x1c\x9c\x2f\xa0\x28\xe9\xda\xf3\x33\x10\ +\xc7\x05\x68\x5a\x11\xa6\x59\x5a\xdd\xdc\x7c\x68\xde\xde\x7e\xfa\ +\x8a\xf7\xb0\x6d\xfb\xde\xb2\x3a\xa4\xeb\x12\xb5\xdb\x38\x0c\x87\ +\x38\x6c\xb7\xa0\xd7\xd7\x34\xdb\x2d\x68\x38\xc4\xa1\xdd\xc6\x41\ +\xd7\x25\xb2\xac\x0e\xd9\xb6\x7d\x8f\xb7\xd7\x3c\xca\x5a\xad\x0e\ +\x19\x86\x48\xae\x0b\x22\x62\x44\x84\x77\xc2\xc8\x75\x41\x86\x21\ +\x52\xab\xf5\x53\x7a\x74\xc1\x71\xfa\x75\xcb\x4a\x65\x9b\x0d\xfe\ +\x22\xfa\x3d\x9b\x4d\x2a\xb5\xac\x0e\x39\x4e\xbf\x0e\x00\xf0\x3c\ +\x37\xdb\xed\x3e\x2c\x75\x5d\xfa\x71\xb2\xd3\xe2\xba\x20\x5d\x97\ +\xa8\xdb\x7d\x58\x7a\x9e\x9b\x15\xc2\x70\x57\xf5\xbc\xe9\x75\xb9\ +\xfc\x42\xb5\x1a\xc3\xa9\xd4\x6a\x0c\xe5\xf2\x0b\x79\xde\xf4\x3a\ +\x0c\x77\x55\x21\x8a\xe2\xa6\xef\xcf\xd1\x68\x00\x00\xe1\x74\x08\ +\x8d\x06\xe0\xfb\x73\x44\x51\xdc\x14\x82\x60\x5d\xe1\x7c\x01\xc3\ +\x00\xc3\x99\x18\x06\x18\xe7\x0b\x04\xc1\xba\x22\x24\x09\x32\x8a\ +\x02\x70\x8e\xb3\xe1\x1c\x50\x14\x20\x49\x90\x11\x70\x61\x04\x51\ +\xc4\x3e\x9d\x80\xf3\x25\x71\x9c\x4e\x91\x28\x62\x2f\xa8\x6a\x7e\ +\x1c\xc7\x05\xcc\x66\x67\xbd\x08\x00\x60\x36\x03\xc5\x71\x01\xaa\ +\x9a\x1f\x0b\xb2\xcc\x7b\x9a\x56\xc4\x60\xf0\xc7\xd1\xfe\x07\x18\ +\x06\x03\x40\xd3\x8a\x90\x65\xde\x13\xd2\xd6\x28\xad\x26\x13\x89\ +\x8d\x46\xa7\x1f\x72\x34\x22\x4c\x26\x12\x33\xcd\xd2\x2a\x97\xbb\ +\x7a\xba\xfc\xe8\xfd\x97\x72\xb8\x64\x7d\x5d\xbc\x60\xd9\xa5\xbf\ +\x80\xef\x45\x6a\xde\x22\x6c\x4c\x7b\x8e\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +" + +qt_resource_name = b"\ +\x00\x04\ +\x00\x07\x2b\xb3\ +\x00\x6c\ +\x00\x65\x00\x64\x00\x73\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x04\ +\x00\x07\xab\x60\ +\x00\x73\ +\x00\x74\x00\x6f\x00\x70\ +\x00\x08\ +\x03\x67\x39\x44\ +\x00\x70\ +\x00\x6c\x00\x6f\x00\x74\x00\x2d\x00\x61\x00\x64\x00\x64\ +\x00\x07\ +\x0a\x65\x4b\x64\ +\x00\x63\ +\x00\x6f\x00\x6e\x00\x6e\x00\x65\x00\x63\x00\x74\ +\x00\x06\ +\x07\xab\x94\x04\ +\x00\x73\ +\x00\x75\x00\x62\x00\x6d\x00\x69\x00\x74\ +\x00\x04\ +\x00\x07\x73\x64\ +\x00\x70\ +\x00\x6c\x00\x6f\x00\x74\ +\x00\x06\ +\x07\x68\x84\xd5\ +\x00\x6f\ +\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x04\ +\x00\x06\xe8\x89\ +\x00\x67\ +\x00\x72\x00\x61\x00\x79\ +\x00\x05\ +\x00\x6a\x2b\x82\ +\x00\x63\ +\x00\x6c\x00\x65\x00\x61\x00\x72\ +\x00\x05\ +\x00\x7d\xf0\xa5\ +\x00\x77\ +\x00\x68\x00\x69\x00\x74\x00\x65\ +\x00\x05\ +\x00\x6e\x8b\xbe\ +\x00\x67\ +\x00\x72\x00\x65\x00\x65\x00\x6e\ +\x00\x07\ +\x0c\x52\x56\x3e\ +\x00\x75\ +\x00\x6e\x00\x6b\x00\x6e\x00\x6f\x00\x77\x00\x6e\ +\x00\x03\ +\x00\x00\x78\xb4\ +\x00\x72\ +\x00\x65\x00\x64\ +\x00\x06\ +\x07\xfc\x33\x67\ +\x00\x79\ +\x00\x65\x00\x6c\x00\x6c\x00\x6f\x00\x77\ +" + +qt_resource_struct_v1 = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x08\ +\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x05\x00\x00\x00\x03\ +\x00\x00\x00\x68\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xe9\ +\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x02\xdd\ +\x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x08\x5e\ +\x00\x00\x00\x42\x00\x00\x00\x00\x00\x01\x00\x00\x05\x6f\ +\x00\x00\x00\xda\x00\x00\x00\x00\x00\x01\x00\x00\x97\x64\ +\x00\x00\x00\x88\x00\x00\x00\x00\x00\x01\x00\x00\x13\x22\ +\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x19\x16\ +\x00\x00\x00\xb6\x00\x00\x00\x00\x00\x01\x00\x00\x68\x9a\ +\x00\x00\x00\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x46\x99\ +\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x10\ +\x00\x00\x00\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x9d\x39\ +\x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x6e\xb3\ +" + +qt_resource_struct_v2 = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x08\x00\x00\x00\x08\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x05\x00\x00\x00\x03\ +\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x68\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xe9\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01\x21\x2b\x70\x0c\x40\ +\x00\x00\x00\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x02\xdd\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x08\x5e\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\x42\x00\x00\x00\x00\x00\x01\x00\x00\x05\x6f\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\xda\x00\x00\x00\x00\x00\x01\x00\x00\x97\x64\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\x88\x00\x00\x00\x00\x00\x01\x00\x00\x13\x22\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x19\x16\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\xb6\x00\x00\x00\x00\x00\x01\x00\x00\x68\x9a\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\xa6\x00\x00\x00\x00\x00\x01\x00\x00\x46\x99\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\x76\x00\x00\x00\x00\x00\x01\x00\x00\x0d\x10\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\xe6\x00\x00\x00\x00\x00\x01\x00\x00\x9d\x39\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +\x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x6e\xb3\ +\x00\x00\x01\x86\x72\xb9\x01\xa1\ +" + +qt_version = [int(v) for v in QtCore.qVersion().split('.')] +if qt_version < [5, 8, 0]: + rcc_version = 1 + qt_resource_struct = qt_resource_struct_v1 +else: + rcc_version = 2 + qt_resource_struct = qt_resource_struct_v2 + +def qInitResources(): + QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/frappy/gui/tabwidget.py b/frappy/gui/tabwidget.py new file mode 100644 index 0000000..1e77b42 --- /dev/null +++ b/frappy/gui/tabwidget.py @@ -0,0 +1,525 @@ +# -*- coding: utf-8 -*- +# ***************************************************************************** +# NICOS, the Networked Instrument Control System of the MLZ +# Copyright (c) 2009-2023 by the NICOS contributors (see AUTHORS) +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# Module authors: +# Jens Krüger +# +# ***************************************************************************** + +"""Detachable TabWidget, taken from NICOS GUI TearOffTabBar.""" + +from frappy.gui.qt import QApplication, QCursor, QDrag, \ + QEvent, QMainWindow, QMimeData, QMouseEvent, QPixmap, QPoint, QSize, \ + QStyle, QStyleOptionTab, QStylePainter, Qt, QTabBar, QTabWidget, QWidget, \ + pyqtSignal, pyqtSlot + + +# def findTab(tab, w): +# widget = w +# while True: +# parent = widget.parent() +# if not parent: +# return False +# widget = parent +# if isinstance(widget, AuxiliarySubWindow) and tab == widget: +# return True +# return False +# +# +# def findTabIndex(tabwidget, w): +# for i in range(len(tabwidget)): +# if findTab(tabwidget.widget(i), w): +# return i +# return None + + +class TearOffTabBar(QTabBar): + + tabDetached = pyqtSignal(object, object) + tabMoved = pyqtSignal(object, object) + + def __init__(self, parent=None): + QTabBar.__init__(self, parent) + self.setAcceptDrops(True) + self.setElideMode(Qt.ElideRight) + self.setSelectionBehaviorOnRemove(QTabBar.SelectLeftTab) + self.setMovable(False) + self._dragInitiated = False + self._dragDroppedPos = QPoint() + self._dragStartPos = QPoint() + + def mousePressEvent(self, event): + if event.button() == Qt.LeftButton: + self._dragStartPos = event.pos() + self._dragInitiated = False + self._dragDroppedPos = QPoint() + QTabBar.mousePressEvent(self, event) + + def mouseMoveEvent(self, event): + if not event.buttons() & Qt.LeftButton: + return + if not self._dragStartPos.isNull() and \ + self.tabAt(self._dragStartPos) != -1 and \ + (event.pos() - self._dragStartPos).manhattanLength() \ + < QApplication.startDragDistance(): + self._dragInitiated = True + if (event.buttons() == Qt.LeftButton) and self._dragInitiated and \ + not self.geometry().contains(event.pos()): + finishMoveEvent = QMouseEvent(QEvent.MouseMove, event.pos(), + Qt.NoButton, Qt.NoButton, + Qt.NoModifier) + QTabBar.mouseMoveEvent(self, finishMoveEvent) + + drag = QDrag(self) + mimedata = QMimeData() + mimedata.setData('action', b'application/tab-detach') + drag.setMimeData(mimedata) + + pixmap = self.parentWidget().currentWidget().grab() + pixmap = pixmap.scaled(640, 480, Qt.KeepAspectRatio) + drag.setPixmap(pixmap) + drag.setDragCursor(QPixmap(), Qt.LinkAction) + + dragged = drag.exec(Qt.MoveAction) + if dragged == Qt.IgnoreAction: + # moved outside of tab widget + event.accept() + self.tabDetached.emit(self.tabAt(self._dragStartPos), + QCursor.pos()) + elif dragged == Qt.MoveAction: + # moved inside of tab widget + if not self._dragDroppedPos.isNull(): + event.accept() + self.tabMoved.emit(self.tabAt(self._dragStartPos), + self.tabAt(self._dragDroppedPos)) + self._dragDroppedPos = QPoint() + else: + QTabBar.mouseMoveEvent(self, event) + + def dragEnterEvent(self, event): + mimedata = event.mimeData() + formats = mimedata.formats() + if 'action' in formats and \ + mimedata.data('action') == 'application/tab-detach': + event.acceptProposedAction() + QTabBar.dragEnterEvent(self, event) + + def dropEvent(self, event): + self._dragDroppedPos = event.pos() + event.acceptProposedAction() + QTabBar.dropEvent(self, event) + + +class LeftTabBar(TearOffTabBar): + def __init__(self, parent, text_padding): + TearOffTabBar.__init__(self, parent) + self.text_padding = text_padding + + def paintEvent(self, event): + painter = QStylePainter(self) + option = QStyleOptionTab() + + for index in range(self.count()): + self.initStyleOption(option, index) + tabRect = self.tabRect(index) + tabRect.moveLeft(10) + painter.drawControl(QStyle.CE_TabBarTabShape, option) + text = self.tabText(index) + painter.drawText(tabRect, Qt.AlignVCenter | Qt.TextDontClip | + Qt.TextShowMnemonic, text) + + def tabSizeHint(self, index): + fm = self.fontMetrics() + tabSize = fm.boundingRect( + self.tabText(index) or 'Ag').size() + QSize(*self.text_padding) + return tabSize + + +class TearOffTabWidget(QTabWidget): + """Tab widget with detachable tabs. + + Detached tabs will reattach when closed. + + Options: + + * ``position`` (default top) -- sets the position of the tab selector. + Choices are top or left. + * ``margins`` (default (0, 6, 0, 0)) -- sets the margin around the tab item. + * ``textpadding`` (default (20, 10)) -- sets the right padding and vertical + padding for the text in the tab label. + """ + + class TabWidgetStorage: + def __init__(self, index, widget, title, visible=True): + self.index = index + self.widget = widget + self.title = title + self.visible = visible + self.detached = None + + def setDetached(self, detached): + self.detached = detached + + def __repr__(self): + return 'index %d, widget %r, title %s, visible %r, detached %r' % ( + self.index, self.widget, self.title, self.visible, + self.detached) + + def __init__(self, item, window, menuwindow, parent=None): + QTabWidget.__init__(self, parent) + self.menuwindow = menuwindow + # if item.options.get('position', 'top') == 'left': + # tabBar = LeftTabBar(self, item.options.get('textpadding', (20, 10))) + # self.setTabBar(tabBar) + # self.setTabPosition(QTabWidget.West) + # else: + # tabBar = TearOffTabBar(self) + # self.setTabBar(tabBar) + tabBar = TearOffTabBar(self) + self.setTabBar(tabBar) + + self.setMovable(False) + self.previousTabIdx = 0 + tabBar.tabDetached.connect(self.detachTab) + tabBar.tabMoved.connect(self.moveTab) + self.currentChanged.connect(self.tabChangedTab) + self.tabIdx = {} + # don't draw a frame around the tab contents + self.setStyleSheet('QTabWidget:tab:disabled{width:0;height:0;' + 'margin:0;padding:0;border:none}') + self.setDocumentMode(True) + # default: only keep margin at the top (below the tabs) + # margins = item.options.get('margins', (0, 6, 0, 0)) + # for entry in item.children: + # self.addPanel( + # AuxiliarySubWindow(entry[1:], window, menuwindow, self, + # margins), entry[0]) + + def moveTab(self, from_ind, to_ind): + w = self.widget(from_ind) + text = self.tabText(from_ind) + self.removeTab(from_ind) + self.insertTab(to_ind, w, text) + self.setCurrentIndex(to_ind) + + def _findFirstWindow(self, w): + widget = w + while True: + parent = widget.parent() + if not parent: + break + widget = parent + if isinstance(widget, QMainWindow): + break + return widget + + def _tabWidgetIndex(self, widget): + for i in range(self.tabBar().count()): + if self.widget(i) == widget: + return i + return -1 + + def tabInserted(self, index): + w = self.widget(index) + for i in self.tabIdx.values(): + if i.widget == w: + return + self.tabIdx[index] = self.TabWidgetStorage(index, self.widget(index), + self.tabText(index)) + + def _setPanelToolbars(self, panel, visible): + for tb in panel.getToolbars(): + tb.setVisible(visible) + + def _setPanelMenus(self, panel, visible): + for m in panel.getMenus(): + m.menuAction().setVisible(visible) + + # @pyqtSlot(QWidget, bool) + # def setWidgetVisibleSlot(self, widget, visible): + # w = self._findFirstWindow(widget) # get widget which is related to tab + # for i in self.tabIdx.values(): # search for it in the list of tabs + # if i.widget == w: # found + # if isinstance(widget, Panel): + # if not visible or (visible and self.currentWidget() == + # widget): + # self._setPanelToolbars(widget, visible) + # self._setPanelMenus(widget, visible) + # if visible: + # if not i.visible: + # newIndex = -1 + # for j in self.tabIdx.values(): + # if j.visible and j.index > i.index: + # cIdx = self._tabWidgetIndex(j.widget) + # if cIdx < i.index and cIdx != -1: + # newIndex = cIdx + # else: + # newIndex = i.index + # break + # self.insertTab(newIndex, i.widget, i.title) + # else: + # i.visible = False + # index = self._tabWidgetIndex(i.widget) + # self.removeTab(index) + + def _getPanel(self, widget): + panel = widget + if isinstance(widget, QMainWindow): # check for main window type + panel = widget.centralWidget() + if panel and panel.layout(): # check for layout + panel = panel.layout().itemAt(0).widget() + return panel + + def detachTab(self, index, point): + detachWindow = DetachedWindow(self.tabText(index).replace('&', ''), + self.parentWidget()) + w = self.widget(index) + for i in self.tabIdx.values(): + if i.widget == w: + detachWindow.tabIdx = self.tabIdx[i.index].index + break + + detachWindow.closed.connect(self.attachTab) + + tearOffWidget = self.widget(index) + #panel = self._getPanel(tearOffWidget) + #if not isinstance(panel, QTabWidget): + # panel.setWidgetVisible.disconnect(self.setWidgetVisibleSlot) + # panel.setWidgetVisible.connect(detachWindow.setWidgetVisibleSlot) + tearOffWidget.setParent(detachWindow) + + if self.count() < 0: + self.setCurrentIndex(0) + + # self._moveMenuTools(tearOffWidget) + # self._moveActions(tearOffWidget, detachWindow) + + detachWindow.setWidget(tearOffWidget) + detachWindow.resize(tearOffWidget.size()) + detachWindow.move(point) + detachWindow.show() + + # def _moveMenuTools(self, widget): + # for p in widget.panels: + # if hasattr(p, 'menuToolsActions'): + # topLevelWindow = self.topLevelWidget(p) + + # if hasattr(topLevelWindow, 'menuTools'): + # for action in p.menuToolsActions: + # topLevelWindow.menuTools.removeAction(action) + + #def _moveActions(self, widget, window): + # for p in widget.panels: + # for action in p.actions: + # action.setVisible(False) + + # for menu in p.getMenus(): + # action = window.menuBar().addMenu(menu) + # action.setVisible(True) + + # for toolbar in p.getToolbars(): + # toolbar.hide() + # topLevelWindow = self.topLevelWidget(p) + # topLevelWindow.removeToolBar(toolbar) + + # window.addToolBar(toolbar) + # toolbar.show() + + def attachTab(self, detach_window): + detach_window.closed.connect(self.attachTab) + #detach_window.saveSettings(False) + tearOffWidget = detach_window.centralWidget() + #panel = self._getPanel(tearOffWidget) + # if panel and not isinstance(panel, QTabWidget): + # panel.setWidgetVisible.disconnect(detach_window.setWidgetVisibleSlot) + tearOffWidget.setParent(self) + # if panel and not isinstance(panel, QTabWidget): + # panel.setWidgetVisible.connect(self.setWidgetVisibleSlot) + + #for p in tearOffWidget.panels: + # if hasattr(p, 'menuToolsActions'): + # topLevelWindow = self.topLevelWidget(self) + + # if hasattr(topLevelWindow, 'menuTools'): + # for action in p.menuToolsActions: + # topLevelWindow.menuTools.removeAction(action) + + newIndex = -1 + + for i in range(self.tabBar().count()): + w = self.widget(i) + for j in self.tabIdx.values(): + if j.widget == w and j.index > detach_window.tabIdx: + newIndex = i + break + else: + continue + break + + if newIndex == -1: + newIndex = self.tabBar().count() + + newIndex = self.insertTab(newIndex, tearOffWidget, + detach_window.windowTitle()) + if newIndex != -1: + self.setCurrentIndex(newIndex) + + def tabChangedTab(self, index): + # for i in range(self.count()): + # for p in self.widget(i).panels: + # for toolbar in p.getToolbars(): + # self.menuwindow.removeToolBar(toolbar) + # for action in p.actions: + # action.setVisible(False) + + # if self.previousTabIdx < self.count(): + # if self.widget(self.previousTabIdx): + # for p in self.widget(self.previousTabIdx).panels: + # if hasattr(p, 'menuToolsActions'): + # topLevelWindow = self.topLevelWidget(p) + + # if hasattr(topLevelWindow, 'menuTools'): + # for action in p.menuToolsActions: + # topLevelWindow.menuTools.removeAction(action) + + # if self.widget(index): + # for p in self.widget(index).panels: + # p.getMenus() + + # if hasattr(p, 'menuToolsActions'): + # topLevelWindow = self.topLevelWidget(p) + + # if hasattr(topLevelWindow, 'menuTools'): + # for action in p.menuToolsActions: + # topLevelWindow.menuTools.addAction(action) + + # for toolbar in p.getToolbars(): + # if hasattr(self.menuwindow, 'toolBarWindows'): + # self.menuwindow.insertToolBar( + # self.menuwindow.toolBarWindows, toolbar) + # else: + # self.menuwindow.addToolBar(toolbar) + # toolbar.show() + + # for menu in p.actions: + # menu.setVisible(True) + + self.previousTabIdx = index + + def addPanel(self, widget, label): + #sgroup = SettingGroup(label) + #with sgroup as settings: + # detached = settings.value('detached', False, bool) + index = len(self.tabIdx) + self.tabIdx[index] = self.TabWidgetStorage(index, widget, label) + #if not detached: + index = self.addTab(widget, label) + if not label or label.isspace(): + self.setTabEnabled(index, False) + for i in self.tabIdx.values(): # search for it in the list of tabs + if i.widget == widget: + i.setDetached(None) + #else: + # detachWindow = DetachedWindow(label.replace('&', ''), + # self.parentWidget()) + # detachWindow.tabIdx = index + # detachWindow.setAttribute(Qt.WA_DeleteOnClose, True) + # self.tabIdx[index].setDetached(detachWindow) + # detachWindow.closed.connect(self.attachTab) + + # panel = self._getPanel(widget) + # if panel and not isinstance(panel, QTabWidget): + # panel.setWidgetVisible.disconnect(self.setWidgetVisibleSlot) + # panel.setWidgetVisible.connect( + # detachWindow.setWidgetVisibleSlot) + # widget.setParent(detachWindow) + + # self._moveMenuTools(widget) + # self._moveActions(widget, detachWindow) + + # detachWindow.setWidget(widget) + # detachWindow.destroyed.connect(detachWindow.deleteLater) + # # with sgroup as settings: + # # detachWindow.restoreGeometry(settings.value('geometry', '', + # # QByteArray)) + # detachWindow.show() + + def topLevelWidget(self, w): + widget = w + while True: + parent = widget.parent() + if not parent: + break + widget = parent + return widget + + +class DetachedWindow(QMainWindow): + + closed = pyqtSignal(object) + + def __init__(self, title, parent): + self.tabIdx = -1 + QMainWindow.__init__(self, parent) + self.setWindowTitle(title) + self.setWindowModality(Qt.NonModal) + # self.sgroup = SettingGroup(title) + # with self.sgroup as settings: + # loadBasicWindowSettings(self, settings) + + @pyqtSlot(QWidget, bool) + def setWidgetVisibleSlot(self, widget, visible): + self.setVisible(visible) + + def setWidget(self, widget): + self.setCentralWidget(widget) + widget.show() + + def closeEvent(self, event): + # with self.sgroup as settings: + # settings.setValue('detached', False) + self.closed.emit(self) + self.deleteLater() + + def moveEvent(self, event): + QMainWindow.moveEvent(self, event) + # self.saveSettings() + + def resizeEvent(self, event): + QMainWindow.resizeEvent(self, event) + # self.saveSettings() + + # def saveSettings(self, detached=True): + # with self.sgroup as settings: + # settings.setValue('detached', detached) + # settings.setValue('geometry', self.saveGeometry()) + # settings.setValue('windowstate', self.saveState()) + + +def firstWindow(w): + widget = w + while True: + parent = widget.parent() + if not parent: + widget = None + break + widget = parent + if widget.isWindow(): + break + return widget diff --git a/frappy/gui/ui/console.ui b/frappy/gui/ui/console.ui new file mode 100644 index 0000000..ca34ee1 --- /dev/null +++ b/frappy/gui/ui/console.ui @@ -0,0 +1,101 @@ + + + Form + + + + 0 + 0 + 779 + 246 + + + + + 0 + 0 + + + + Form + + + + + + + 0 + 0 + + + + + 0 + 100 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:11pt;"><br /></p></body></html> + + + + + + + + + Clear + + + + + + + + + + >>> + + + + + + + Send + + + false + + + false + + + + + + + + + + + msgLineEdit + returnPressed() + sendPushButton + animateClick() + + + 313 + 221 + + + 729 + 221 + + + + + diff --git a/frappy/gui/ui/logwindow.ui b/frappy/gui/ui/logwindow.ui new file mode 100644 index 0000000..9cae014 --- /dev/null +++ b/frappy/gui/ui/logwindow.ui @@ -0,0 +1,85 @@ + + + Form + + + + 0 + 0 + 350 + 271 + + + + Log + + + + + 0 + 10 + 351 + 261 + + + + + + + + + Info + + + + Error + + + + + Warning + + + + + Info + + + + + Debug + + + + + + + + Clear + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + + + diff --git a/frappy/gui/ui/mainwin.ui b/frappy/gui/ui/mainwin.ui new file mode 100644 index 0000000..fa72f95 --- /dev/null +++ b/frappy/gui/ui/mainwin.ui @@ -0,0 +1,137 @@ + + + MainWindow + + + + 0 + 0 + 1228 + 600 + + + + frappy-gui + + + + + + + + 0 + 0 + 1228 + 30 + + + + + File + + + + + + + + Help + + + + + + + Options + + + + + + + + + + + + toolBar + + + TopToolBarArea + + + false + + + + + + + :/icons/connect:/icons/connect + + + Add SEC node + + + + + Exit + + + + + About + + + + + About Qt + + + + + true + + + Show Log Window + + + + + true + + + Advanced Mode + + + + + true + + + Detailed View + + + + + + + + + actionExit + triggered() + MainWindow + close() + + + -1 + -1 + + + 613 + 299 + + + + + diff --git a/frappy/gui/ui/mainwindow.ui b/frappy/gui/ui/mainwindow.ui deleted file mode 100644 index b647870..0000000 --- a/frappy/gui/ui/mainwindow.ui +++ /dev/null @@ -1,187 +0,0 @@ - - - MainWindow - - - - 0 - 0 - 1228 - 600 - - - - frappy-gui - - - - - - - Qt::Horizontal - - - - - - - 0 - - - - - false - - - - user - - - - - admin - - - - - expert - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - false - - - Validate locally - - - true - - - - - - - - - - 200 - 0 - - - - false - - - - 1 - - - - - - - - - - - - - - - - - 0 - 0 - 1228 - 33 - - - - - File - - - - - - - - Help - - - - - - - - - - - toolBar - - - TopToolBarArea - - - false - - - - - - Add SEC node - - - - - Exit - - - - - About - - - - - About Qt - - - - - - - actionExit - triggered() - MainWindow - close() - - - -1 - -1 - - - 613 - 299 - - - - - diff --git a/frappy/gui/ui/modulectrl.ui b/frappy/gui/ui/modulectrl.ui index 0978226..22d1d54 100644 --- a/frappy/gui/ui/modulectrl.ui +++ b/frappy/gui/ui/modulectrl.ui @@ -6,39 +6,72 @@ 0 0 - 257 - 162 + 801 + 436 Form - - - - - Parameters: + + + + + + 18 + 75 + true + + + + TextLabel - - - 0 - - - 6 - - - 0 - - - 6 - - - 6 - - - + + + + Properties: + + + + + + + + Qt::Horizontal + + + + Parameters: + + + + 0 + + + 6 + + + 0 + + + 6 + + + 6 + + + + + + Commands: + + + + + + Qt::Vertical @@ -51,54 +84,6 @@ - - - - Properties: - - - - - - - - - - - 75 - false - true - - - - Module name: - - - - - - - - 18 - 75 - true - - - - TextLabel - - - - - - - - - Commands: - - - - diff --git a/frappy/gui/ui/modulewidget.ui b/frappy/gui/ui/modulewidget.ui new file mode 100644 index 0000000..5c83ea9 --- /dev/null +++ b/frappy/gui/ui/modulewidget.ui @@ -0,0 +1,91 @@ + + + Form + + + + 0 + 0 + 656 + 428 + + + + Form + + + + + + + + + 18 + 75 + true + + + + moduleName + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + TextLabel + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 0 + + + + + + + + + diff --git a/frappy/gui/ui/nodectrl.ui b/frappy/gui/ui/nodectrl.ui deleted file mode 100644 index 4d4fe24..0000000 --- a/frappy/gui/ui/nodectrl.ui +++ /dev/null @@ -1,291 +0,0 @@ - - - Form - - - - 0 - 0 - 652 - 490 - - - - - 652 - 490 - - - - Form - - - - - - 1 - - - - Console - - - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Noto Sans'; font-size:12pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:11pt;"><br /></p></body></html> - - - - - - - - - Clear - - - - - - - - - - >>> - - - - - - - Send - - - false - - - false - - - - - - - - - - NodeInfo - - - - - - true - - - - - 0 - 0 - 610 - 413 - - - - - - - - 75 - true - - - - Contact point: - - - - - - - TextLabel - - - - - - - - 75 - true - - - - Equipment ID: - - - - - - - TextLabel - - - - - - - - 75 - true - - - - Protocol version: - - - - - - - TextLabel - - - - - - - - 75 - true - - - - Description: - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - true - - - - 0 - 0 - - - - description - - - true - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse - - - - - - - true - - - - 0 - 1 - - - - - - label - contactPointLabel - equipmentIdLabel - label_3 - protocolVersionLabel - label_5 - nodeDescriptionLabel - label_2 - verticalSpacer - - - - - - - - true - - - Modules - - - - - - true - - - - - 0 - 0 - 610 - 413 - - - - - QLayout::SetMinimumSize - - - - - - - - - - - - - - - msgLineEdit - returnPressed() - sendPushButton - animateClick() - - - 387 - 459 - - - 498 - 462 - - - - - diff --git a/frappy/gui/ui/nodewidget.ui b/frappy/gui/ui/nodewidget.ui new file mode 100644 index 0000000..75fa0c2 --- /dev/null +++ b/frappy/gui/ui/nodewidget.ui @@ -0,0 +1,136 @@ + + + Node + + + + 0 + 0 + 788 + 531 + + + + + 0 + 0 + + + + Form + + + true + + + + + + Qt::Horizontal + + + false + + + + + 0 + 0 + + + + + 100 + 50 + + + + + + + Qt::Vertical + + + + + + 0 + 0 + + + + + 100 + 50 + + + + NodeInfo + + + + + + + + + + 0 + 0 + + + + Qt::Vertical + + + + true + + + + + 0 + 0 + 93 + 176 + + + + + QLayout::SetMinimumSize + + + + + + + + 0 + 0 + + + + + 16777215 + 16777215 + + + + + + + + + + + CollapsibleWidget + QWidget +
frappy.gui.collapsible.h
+ 1 +
+
+ + + + +
diff --git a/frappy/gui/util.py b/frappy/gui/util.py index 911e33a..3a7969a 100644 --- a/frappy/gui/util.py +++ b/frappy/gui/util.py @@ -24,7 +24,7 @@ from os import path -from frappy.gui.qt import uic +from frappy.gui.qt import uic, QColor uipath = path.dirname(__file__) @@ -52,3 +52,36 @@ class Value: if self.readerror: args += (self.readerror,) return 'Value%s' % repr(args) + +class Colors: + @classmethod + def _setPalette(cls, palette): + if hasattr(cls, 'palette'): + return + cls.palette = palette + background = palette.window().color().lightness() + foreground = palette.windowText().color().lightness() + if background > foreground: # light + cls.colors = { + 'orange': QColor('#FA6800'), + 'plot-fg': QColor('black'), + 'plot-bg': QColor('white'), + 0: QColor('black'), + 1: QColor('blue'), + 2: QColor('#FA6800'), + 3: QColor('green'), + 4: QColor('red'), + 5: QColor('purple'), + } + else: + cls.colors = { + 'orange': QColor('#FA6800'), + 'plot-fg': QColor('white'), + 'plot-bg': QColor('black'), + 0: QColor('white'), + 1: QColor('#72ADD4'), + 2: QColor('#FA6800'), + 3: QColor('olive'), + 4: QColor('red'), + 5: QColor('purple'), + } diff --git a/resources/frappy-gui.qrc b/resources/frappy-gui.qrc new file mode 100644 index 0000000..3f101b0 --- /dev/null +++ b/resources/frappy-gui.qrc @@ -0,0 +1,19 @@ + + + leds/simplegray.png + leds/clear.png + leds/simplegreen.png + leds/simpleorange.png + leds/simplered.png + leds/simpleunknown.png + leds/simplewhite.png + leds/simpleyellow.png + + + icons/cross-circle.png + icons/system-monitor--plus.png + icons/arrow-turn-180.png + icons/plug--plus.png + icons/system-monitor.png + + diff --git a/resources/icons/arrow-turn-180.png b/resources/icons/arrow-turn-180.png new file mode 100644 index 0000000..a9b557a Binary files /dev/null and b/resources/icons/arrow-turn-180.png differ diff --git a/resources/icons/cross-circle.png b/resources/icons/cross-circle.png new file mode 100644 index 0000000..20d6f5e Binary files /dev/null and b/resources/icons/cross-circle.png differ diff --git a/resources/icons/plug--plus.png b/resources/icons/plug--plus.png new file mode 100644 index 0000000..d380b17 Binary files /dev/null and b/resources/icons/plug--plus.png differ diff --git a/resources/icons/system-monitor--plus.png b/resources/icons/system-monitor--plus.png new file mode 100644 index 0000000..27a8418 Binary files /dev/null and b/resources/icons/system-monitor--plus.png differ diff --git a/resources/icons/system-monitor.png b/resources/icons/system-monitor.png new file mode 100644 index 0000000..a139103 Binary files /dev/null and b/resources/icons/system-monitor.png differ diff --git a/resources/leds/clear.png b/resources/leds/clear.png new file mode 100644 index 0000000..f4ed73b Binary files /dev/null and b/resources/leds/clear.png differ diff --git a/resources/leds/simplegray.png b/resources/leds/simplegray.png new file mode 100644 index 0000000..1eaf013 Binary files /dev/null and b/resources/leds/simplegray.png differ diff --git a/resources/leds/simplegreen.png b/resources/leds/simplegreen.png new file mode 100644 index 0000000..67860e5 Binary files /dev/null and b/resources/leds/simplegreen.png differ diff --git a/resources/leds/simpleorange.png b/resources/leds/simpleorange.png new file mode 100644 index 0000000..745c136 Binary files /dev/null and b/resources/leds/simpleorange.png differ diff --git a/resources/leds/simplered.png b/resources/leds/simplered.png new file mode 100644 index 0000000..2096d0b Binary files /dev/null and b/resources/leds/simplered.png differ diff --git a/resources/leds/simpleunknown.png b/resources/leds/simpleunknown.png new file mode 100644 index 0000000..e81244e Binary files /dev/null and b/resources/leds/simpleunknown.png differ diff --git a/resources/leds/simplewhite.png b/resources/leds/simplewhite.png new file mode 100644 index 0000000..916f477 Binary files /dev/null and b/resources/leds/simplewhite.png differ diff --git a/resources/leds/simpleyellow.png b/resources/leds/simpleyellow.png new file mode 100644 index 0000000..95f89ad Binary files /dev/null and b/resources/leds/simpleyellow.png differ