diff --git a/.gitignore b/.gitignore index 7e39803..24dff1d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,8 @@ envPaths !*configure/ExampleRELEASE.local O.*/ QtC-* +ui_*.py +*_rc.py *.so *.pyc __pycache__/ diff --git a/configure/CONFIG_SITE b/configure/CONFIG_SITE index da28f95..8221ca5 100644 --- a/configure/CONFIG_SITE +++ b/configure/CONFIG_SITE @@ -45,3 +45,8 @@ USR_INCLUDES += -I $(INSTALL_LOCATION)/include # default if not set PYTHON ?= python +PYRCC ?= pyrcc4 + +PYRCCFLAGS_NO = -py2 +PYRCCFLAGS_YES = -py3 +PYRCCFLAGS = $(PYRCCFLAGS_$(PY_IS3)) $(CMD_PYRCCFLAGS) diff --git a/makehelper.py b/makehelper.py index ef36d63..8e5dde8 100644 --- a/makehelper.py +++ b/makehelper.py @@ -42,6 +42,11 @@ print('TARGET_CFLAGS +=',get_config_var('BASECFLAGS'), file=out) print('TARGET_CXXFLAGS +=',get_config_var('BASECFLAGS'), file=out) +if tuple(int(comp) for comp in get_config_var('VERSION').split('.')) >= (3,0): + print('PY_IS3 := YES', file=out) +else: + print('PY_IS3 := NO', file=out) + print('PY_VER :=',get_config_var('VERSION'), file=out) ldver = get_config_var('LDVERSION') if ldver is None: diff --git a/python/Makefile b/python/Makefile index 7ef1d76..7c3809e 100644 --- a/python/Makefile +++ b/python/Makefile @@ -36,6 +36,12 @@ PY += minimasar/test/__init__.py PY += minimasar/test/test_db.py PY += minimasar/test/test_ops.py +# generated to remove +QTCLEANS += masarclient/ui/ui_commentdetail.py +QTCLEANS += masarclient/ui/ui_commentdiag.py +QTCLEANS += masarclient/ui/ui_masar.py +QTCLEANS += masarclient/ui/masarRC_rc.py + include $(TOP)/configure/RULES include $(TOP)/configure/RULES_PY @@ -44,3 +50,22 @@ nose.%: [ -d "$(P4P)/python$(PY_LD_VER)/$(T_A)/p4p" ] PYTHONPATH="${PYTHONPATH}:$(abspath $(P4P))/python$(PY_LD_VER)/$(T_A):$(abspath $(TOP))/python$(PY_LD_VER)/$(T_A)" $(PYTHON) -m nose -P -v $* $(NOSEFLAGS) endif + +ui_%.py: ui_%.ui + $(PYTHON) -c 'import PyQt4.uic.pyuic' -o $@ --from-imports $< + +# pyrcc4 is not python code... +# So there is no recipe like: python -c '...' +%_rc.py: %.qrc Makefile + $(PYRCC) $(PYRCCFLAGS) -o $@ $< + +ifndef T_A +ifdef BASE_3_15 +realclean: qt_clean +else +realclean:: qt_clean +endif + +qt_clean: + $(RM) $(QTCLEANS) +endif diff --git a/python/masarclient/masarClient.py b/python/masarclient/masarClient.py index d579075..da248b2 100644 --- a/python/masarclient/masarClient.py +++ b/python/masarclient/masarClient.py @@ -182,7 +182,7 @@ def saveSnapshot(self, params): otherwise, False if nothing is found. """ - print "saveSnapshot", params + print("saveSnapshot", params) R = self._proxy.saveSnapshot(**params) return (R.timeStamp.userTag, # actually new event # R.channelName, diff --git a/python/masarclient/ui/authendlg.py b/python/masarclient/ui/authendlg.py index 2a18730..81a758d 100644 --- a/python/masarclient/ui/authendlg.py +++ b/python/masarclient/ui/authendlg.py @@ -10,12 +10,9 @@ from PyQt4.QtGui import (QDialog, QVBoxLayout, QGridLayout, QLabel, QDialogButtonBox, QLineEdit) -from PyQt4.QtCore import (QString, QObject, SIGNAL,Qt) +from PyQt4.QtCore import (QObject, SIGNAL,Qt) -try: - _fromUtf8 = QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s +_fromUtf8 = lambda s: s class AuthenDlg(QDialog): def __init__(self, password, parent=None): @@ -67,4 +64,4 @@ def result(self): return None else: return (self.password) - \ No newline at end of file + diff --git a/python/masarclient/ui/commentdetail.py b/python/masarclient/ui/commentdetail.py index 2342dc2..2e61025 100644 --- a/python/masarclient/ui/commentdetail.py +++ b/python/masarclient/ui/commentdetail.py @@ -8,7 +8,7 @@ from PyQt4.QtCore import (pyqtSignature) from PyQt4.QtGui import (QApplication, QDialog, QDialogButtonBox) -import ui_commentdetail +from . import ui_commentdetail class CommentDetail(QDialog, ui_commentdetail.Ui_commentdetail): diff --git a/python/masarclient/ui/commentdlg.py b/python/masarclient/ui/commentdlg.py index e1044d4..1bed4da 100644 --- a/python/masarclient/ui/commentdlg.py +++ b/python/masarclient/ui/commentdlg.py @@ -8,7 +8,7 @@ from PyQt4.QtCore import (pyqtSignature) from PyQt4.QtGui import (QApplication, QDialog, QDialogButtonBox) -import ui_commentdiag +from . import ui_commentdiag class CommentDlg(QDialog, ui_commentdiag.Ui_commentdlg): diff --git a/python/masarclient/ui/finddlg.py b/python/masarclient/ui/finddlg.py index 9197c4a..aa7b48d 100644 --- a/python/masarclient/ui/finddlg.py +++ b/python/masarclient/ui/finddlg.py @@ -9,13 +9,10 @@ from __future__ import unicode_literals from PyQt4.QtGui import (QDialog, QGridLayout, QLineEdit, QPushButton, QBrush, QLabel) -from PyQt4.QtCore import (QString, QObject, SIGNAL, Qt) +from PyQt4.QtCore import (QObject, SIGNAL, Qt) import re, fnmatch #from masar import masarUI #ImportError: cannot import name masarUI -try: - _fromUtf8 = QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s +_fromUtf8 = lambda s: s class FindDlg(QDialog): #def __init__(self, info, parent=None): @@ -120,4 +117,4 @@ def cleanup(self): table.item(self.foundPVPos[i],0).setBackground(QBrush(Qt.white)) self.close() - \ No newline at end of file + diff --git a/python/masarclient/ui/getmasarconfig.py b/python/masarclient/ui/getmasarconfig.py index 06d4502..1c08727 100644 --- a/python/masarclient/ui/getmasarconfig.py +++ b/python/masarclient/ui/getmasarconfig.py @@ -9,7 +9,10 @@ import os import platform -import ConfigParser +try: + from configparser import SafeConfigParser as ConfigParser +except ImportError: + from ConfigParser import SafeConfigParser as ConfigParser def getmasarconfig(): '''Get configuration file for MASAR service which enables service integration for Olog and channel finder for example. @@ -29,7 +32,7 @@ def getmasarconfig(): ''' system = platform.system() - config = ConfigParser.ConfigParser() + config = ConfigParser() if system == 'Windows': raise RuntimeError("Does not support Windows platform yet.") @@ -55,4 +58,4 @@ def getmasarconfig(): return masarconfig if __name__ == "__main__": - print getmasarconfig() + print(getmasarconfig()) diff --git a/python/masarclient/ui/gradualput.py b/python/masarclient/ui/gradualput.py index ef7aa8a..06e0a4e 100644 --- a/python/masarclient/ui/gradualput.py +++ b/python/masarclient/ui/gradualput.py @@ -10,14 +10,11 @@ from PyQt4.QtGui import (QDialog, QGridLayout, QDialogButtonBox, QLineEdit, QPushButton, QLabel, QMessageBox) -from PyQt4.QtCore import (QString, QObject, SIGNAL, Qt) +from PyQt4.QtCore import (QObject, SIGNAL, Qt) import cothread from cothread.catools import caget, caput import traceback -try: - _fromUtf8 = QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s +_fromUtf8 = lambda s: s class GradualPut(QDialog): @@ -136,4 +133,4 @@ def rampingPut(self): #QMessageBox.warning(self, 'Warning', "Oops: something wrong with multiple-step gradual put") return True - \ No newline at end of file + diff --git a/python/masarclient/ui/masar.py b/python/masarclient/ui/masar.py index 859d2f6..332e543 100644 --- a/python/masarclient/ui/masar.py +++ b/python/masarclient/ui/masar.py @@ -18,13 +18,10 @@ from PyQt4.QtGui import (QApplication, QMainWindow, QMessageBox, QTableWidgetItem, QTableWidget, QFileDialog, QColor, QBrush, QTabWidget, QShortcut, QKeySequence, QDialog, QGridLayout, QLineEdit, QPushButton, QLabel, QDialogButtonBox) -from PyQt4.QtCore import (QDateTime, Qt, QString, QObject, SIGNAL, QThread, QEventLoop) +from PyQt4.QtCore import (QDateTime, Qt, QObject, SIGNAL, QThread, QEventLoop) #import PyQt4.QTest as QTest -try: - _fromUtf8 = QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s +_fromUtf8 = lambda s: s if sys.version_info[:2]>=(2,7): from collections import OrderedDict as odict @@ -38,14 +35,14 @@ except ImportError: pyOlogExisting = False -import ui_masar -import commentdlg -from showarrayvaluedlg import ShowArrayValueDlg -from selectrefsnapshotdlg import ShowSelectRefDlg -from finddlg import FindDlg -from verifysetpoint import VerifySetpoint -from gradualput import GradualPut -import getmasarconfig +from . import ui_masar +from . import commentdlg +from .showarrayvaluedlg import ShowArrayValueDlg +from .selectrefsnapshotdlg import ShowSelectRefDlg +from .finddlg import FindDlg +from .verifysetpoint import VerifySetpoint +from .gradualput import GradualPut +from . import getmasarconfig import masarclient.masarClient as masarClient @@ -293,13 +290,14 @@ def setTable(self, data, table): The data has to be an ordered dictionary, and table is a QtGui.QTableWidget Here is an example to construct an ordered dictionary. """ + datavalues = list(data.values()) if data: - length = len(data.values()[0]) + length = len(datavalues[0]) else: print ('data is empty, exit.') return - for i in range(1, len(data.values())): - if length != len(data.values()[i]): + for i in range(1, len(datavalues)): + if length != len(datavalues[i]): QMessageBox.warning(self, "Warning", "Data length are not consistent.") @@ -307,19 +305,19 @@ def setTable(self, data, table): return if isinstance(data, odict) and isinstance(table, QTableWidget): - nrows = len(data.values()[0]) + nrows = len(datavalues[0]) ncols = len(data) table.setRowCount(nrows) table.setColumnCount(ncols) # Removes all items in the view, and also all selections table.clear() - table.setHorizontalHeaderLabels(data.keys()) + table.setHorizontalHeaderLabels(list(data.keys())) n = 0 for key in data: m = 0 for item in data[key]: - if not isinstance(item, basestring): + if not isinstance(item, str): item = str(item) if item: newitem = QTableWidgetItem(item) @@ -344,7 +342,7 @@ def createNewTableWidget(self, eventID, label): types of tables in snapshotTab: comment(Welcome page), ordinary(double-click on event table), preview, compare, filter """ - if self.tabWindowDict.has_key(str(eventID)): + if str(eventID) in self.tabWindowDict: tableWidget = self.tabWindowDict[str(eventID)] else: tableWidget = QTableWidget() @@ -427,7 +425,7 @@ def createLogEntry(self, logText, logbookName = None): #import requests #print("requests version: %s"%requests.__version__) from pyOlog import OlogClient, Tag, Logbook, LogEntry - if 'https_proxy' in os.environ.keys(): + if 'https_proxy' in os.environ: #print("unset https_proxy: %s"%(os.environ['https_proxy'])) del os.environ['https_proxy'] @@ -496,7 +494,7 @@ def saveMachineSnapshot(self): self.data4eid[str(eid)] = data self.e2cDict[str(self.previewId)] = [configID, configDesc, cname]#needed for configTab - label = QString.fromUtf8((cname+': Preview: '+str(eid))) + label = ((cname+': Preview: '+str(eid))) tabWidget = self.createNewTableWidget('preview', label) self.setSnapshotTable(data, tabWidget, eid) #sort the table by "Connection" @@ -952,7 +950,7 @@ def setSnapshotTabWindow(self, eventNames, eventTs, eventIds): "Can't get snapshot data for eventId:%s"%eventIds[i]) ts = eventTs[i].split('.')[0] - label = QString.fromUtf8((eventNames[i]+': ' +eventIds[i]+": "+ ts)) + label = ((eventNames[i]+': ' +eventIds[i]+": "+ ts)) tableWidget = self.createNewTableWidget(eventIds[i], label) self.setSnapshotTable(data, tableWidget, eventIds[i]) @@ -1011,7 +1009,7 @@ def __showArrayData(self, row, column): def __find_key(self, dic, val): """return the key of dictionary dic given the value""" - return [k for k, v in dic.iteritems() if v == val][0] + return [k for k, v in dic.items() if v == val][0] def retrieveMasarData(self, eventid=None): """ @@ -1073,14 +1071,15 @@ def setSnapshotTable(self, data, table, eventid): called by setSnapshotTabWindow(), saveMachineSnapshot()(preview table), and searchPV() This table is different from compareSnapshotsTable, see setCompareSnapshotsTable() """ + datavalues = list(data.values()) if data: - length = len(data.values()[0]) + length = len(datavalues[0]) else: print ('data is empty, exit.') return - for i in range(1, len(data.values())): - if length != len(data.values()[i]): + for i in range(1, len(datavalues)): + if length != len(datavalues[i]): QMessageBox.warning(self, "Warning", "Data length are not consistent.") @@ -1090,7 +1089,7 @@ def setSnapshotTable(self, data, table, eventid): table.setSortingEnabled(False) table.clear() - nrows = len(data.values()[0]) + nrows = len(datavalues[0]) keys = ['PV Name', 'Saved Connection', 'Not Restore', 'Saved Value', 'Live Value', 'Diff', 'Saved Timestamp', 'Saved Status', 'Saved Severity', 'Live Connection', 'Live Timestamp', 'Live Status', 'Live Severity'] @@ -1440,7 +1439,7 @@ def simplePut(self, eid, eid4Log, r_pvlist, r_data, no_restorepvs, rowCount): configFile = dirPath + '/configure/' + self.e2cDict[eid][2] + '.cfg' if not os.path.isfile(configFile): return - if not self.verifyWindowDict.has_key(configFile): + if configFile not in self.verifyWindowDict: verifyWin = VerifySetpoint(configFile, rowCount, self.verifyWindowDict, self) verifyWin.show() self.verifyWindowDict[configFile] = verifyWin @@ -1872,7 +1871,7 @@ def compareSnapshots(self): #data[i]['keyword'] is a tuple; data[i]['keyword'][index] is the element value in the tuple #try: - if self.tabWindowDict.has_key('compare'): + if 'compare' in self.tabWindowDict: tableWidget = self.tabWindowDict['compare'] else: tableWidget = QTableWidget() @@ -1882,7 +1881,7 @@ def compareSnapshots(self): labelText = "" for eventId in eventIds: labelText += '_' + eventId - label = QString.fromUtf8("Compare Snapshots: IDs" + labelText) + label = ("Compare Snapshots: IDs" + labelText) self.snapshotTabWidget.addTab(tableWidget, label) self.snapshotTabWidget.setTabText(self.snapshotTabWidget.count(), label) self.snapshotTabWidget.setCurrentIndex(self.snapshotTabWidget.count()) diff --git a/python/masarclient/ui/masarRC_rc.py b/python/masarclient/ui/masarRC_rc.py deleted file mode 100644 index add22fd..0000000 --- a/python/masarclient/ui/masarRC_rc.py +++ /dev/null @@ -1,1741 +0,0 @@ -# -*- coding: utf-8 -*- - -# Resource object code -# -# Created: Mon Aug 19 19:16:06 2013 -# by: The Resource Compiler for PyQt (Qt v4.6.3) -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore - -qt_resource_data = "\ -\x00\x00\x6a\x50\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\xeb\x00\x00\x00\x4b\x08\x06\x00\x00\x00\x91\x16\x70\x3b\ -\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\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\xdd\x08\x13\ -\x17\x08\x25\x8a\x1c\xfd\x5b\x00\x00\x00\x19\x74\x45\x58\x74\x43\ -\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\x64\x20\x77\ -\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\x00\x20\x00\ -\x49\x44\x41\x54\x78\xda\xec\xbd\x49\xb0\x6d\x69\x76\xdf\xf5\xfb\ -\xda\xbd\xf7\x69\x6e\xfb\xfa\x7c\xd9\x37\x55\xaa\xb2\x54\x65\x4b\ -\xb2\x25\x85\xc3\xb2\x6c\x64\x87\x01\x87\x85\x98\x80\x09\x07\x0a\ -\x03\x03\xf0\x80\x01\xe1\x01\x33\x4d\x21\x98\x01\x86\x20\x98\x60\ -\x13\x61\x41\x84\x43\xe1\x08\x99\x40\x58\x2e\x19\x83\x85\x0a\xa9\ -\xd4\x94\xa4\x54\x65\x65\x56\x65\x65\x56\xbe\xfe\xdd\xe6\x74\xbb\ -\xfb\x9a\xc5\x60\x9f\x73\xde\xbd\x2f\x5f\x23\xea\x92\xa4\x55\xce\ -\x1d\xb1\xe3\x9e\x7b\xce\xb9\xbb\xbb\xdf\xfa\xd6\x7f\xfd\xd7\x7f\ -\xad\x4f\xfd\xf4\x7f\xf3\x6b\xc2\xff\xcb\x4d\x54\x06\x40\x01\xc6\ -\x18\x72\xce\x88\x08\xce\x58\x52\x4a\x18\xa3\x50\x4a\x91\x04\x62\ -\x8c\x88\x08\x5a\x6b\x04\x3d\xbc\x46\x3d\xfb\x04\xeb\xe3\x3f\xfd\ -\x02\xf4\x33\x3f\x9e\x8e\x2c\x56\x1b\x8c\x31\x68\x32\x64\x41\x09\ -\x18\xa5\x50\x0a\x82\x18\xb2\x08\x59\x7a\x94\x82\xc2\x6b\x76\xab\ -\x8a\x9d\xaa\xa2\x72\x96\x97\x0e\x76\x98\xcf\x8e\x98\x94\x9e\xaa\ -\xb4\x74\x5d\x87\xf6\x05\xf3\x55\x4d\x51\x4d\x68\x16\x33\x92\xb1\ -\xcc\x9b\xc4\xc3\x45\x8b\xf3\x15\x7d\xdf\x33\x19\x97\x78\x67\x48\ -\xa1\x01\x20\x66\x8d\xd2\x16\x57\x8d\x69\xbb\xc0\xed\x7b\xf7\x79\ -\xf8\xe0\x88\x54\x7a\xb2\x28\x92\xb2\xc4\x94\xb1\xda\x50\x38\x4b\ -\x0e\x2d\x29\x34\x88\x29\x87\xdb\x34\x1a\x51\xc0\xfa\xb9\x29\x01\ -\x2d\xa0\xc8\x68\xfd\xe8\x19\x28\xa5\x48\x29\x01\xe0\xbd\x27\xf4\ -\x89\xcf\xb6\xef\xbf\xcd\x5e\xe4\x8f\x73\xce\x28\xa5\xb6\x3f\x37\ -\xbb\xd6\xc3\xe0\x12\x91\xed\x60\x3a\x3b\xb0\x90\x4f\xf6\xa6\x96\ -\x4d\x8d\x37\x16\xef\x3d\xde\x3a\xbc\x33\x28\x81\x1c\x13\x39\xe5\ -\xc1\x88\xb5\x42\x94\x03\x84\x18\x23\xb3\xc5\x92\xd0\xb4\x14\xce\ -\x63\x2d\xe4\x20\x8c\x76\x47\x2c\xda\x9a\x66\x51\xb3\xbf\x5f\x30\ -\x76\x25\x1a\x08\xde\xe3\xad\x47\x19\xc1\x39\x47\xdd\x25\xda\xc5\ -\x8a\x59\xbb\xc4\x7b\xcf\xc1\xce\x94\x10\x02\xf5\x72\xc1\x72\xd5\ -\x60\x9c\x67\x3c\x9e\x72\x65\xba\xc3\x95\xe9\x0e\xdf\xbc\x77\x87\ -\x3e\x24\x72\x8e\x4c\xca\x11\x4d\xd7\xb3\x5a\xad\x98\x8c\x0b\x04\ -\x8f\x35\x9e\x24\x99\x98\x12\x19\x41\x6b\x30\xda\xa2\x05\x24\xe5\ -\xed\xe3\xdb\x3c\xdf\xb3\xff\x8f\xbe\xef\x51\x98\xcf\x46\xf6\x67\ -\xc6\xfa\x98\x03\x54\xe7\x3d\xe4\xc6\x40\xb5\xd6\x5b\x8f\xfa\xf8\ -\x77\x06\x63\xfd\x64\xad\x35\x8b\xa2\x8d\x89\x90\x3a\x82\x0d\x6b\ -\xe3\x72\x28\xab\x50\x59\x23\x12\xb7\x13\x86\x52\x8a\x2c\x42\x17\ -\x13\x29\x0a\x6d\x14\x3e\x7a\xe7\x3d\xae\x5f\xbe\xcc\xe4\xe0\x10\ -\x30\x8c\x77\xf7\xe9\x42\xa6\x59\xcc\x39\x3c\x3c\xc4\xfa\x12\x6b\ -\x2d\xe4\x1a\x57\x1a\x46\x56\x31\x76\xfb\xb4\x21\x91\xd1\x1c\x87\ -\x30\x7c\x3e\x19\xa1\x94\xd0\x87\x44\xea\x57\x60\x34\x4a\x29\xae\ -\x1e\xee\x33\x9b\x2f\x59\x36\x0d\x8b\xd3\x23\xca\xd1\x98\x62\x34\ -\x62\xb9\x5c\x30\x1e\x8f\x09\x4d\x87\xb2\x06\xa3\x35\x4a\x04\xc9\ -\x02\x39\x20\x6b\xcf\x9a\xf4\xf0\xac\x73\x1e\x10\x88\xd6\xfa\x9c\ -\xa7\xfd\x6c\xfb\xfe\xdc\xd4\xf7\x0a\x83\x37\x46\xa7\xb5\xde\x0e\ -\x1a\xab\x0d\x7d\xdf\x33\x1e\x57\x84\x10\x08\x29\x6f\x0d\x42\x44\ -\x10\x86\xc1\xaa\x9e\x77\xc6\x0b\xc2\x60\x65\x20\xe5\x80\xac\xcf\ -\x6f\xad\xa6\xf0\x1e\xe7\x1c\x5a\x6b\x46\x64\x72\xce\x24\x61\x8b\ -\x04\x36\x83\x5d\x44\x40\x29\x24\x47\x9c\x24\xc6\xde\xf2\x43\x6f\ -\xbd\x81\x47\x58\xcd\x4e\x71\x56\x53\xa7\xc4\xfe\xde\x0e\xd2\xb7\ -\x38\xad\xe8\x53\x44\xb4\xe5\xc1\xac\xe6\x78\xb6\x20\x74\x9a\xf1\ -\x78\xcc\x74\x67\x82\x73\x0e\x11\x19\x9e\x47\x08\xe4\x9c\x69\x8c\ -\x02\x6d\xf8\xd6\x07\x1f\x52\xf7\x91\xb2\x1a\x13\x92\x02\xad\x68\ -\x9b\x9e\x69\x35\xc0\xe0\x2e\x06\xfa\x18\x86\x6b\xca\x09\xb5\xbe\ -\x9f\x6c\xed\xc7\x26\xc7\xb3\x93\xa2\x64\xf5\xd9\xc8\xfe\x7e\xf4\ -\xac\xf2\x3d\x78\x39\xd9\xb8\xa5\x27\xcc\xee\x67\x21\xf0\x59\xcf\ -\x3a\x18\xeb\xe6\xef\x9e\x7f\x86\x67\x7f\xfc\xec\xcf\x73\xca\x80\ -\x46\xad\x0d\x30\x49\xa6\xe9\x03\x21\x66\xb4\x86\xa2\x2c\xd0\xc6\ -\x62\x44\xb6\xb1\x9e\xb5\x16\x41\x11\x42\xc0\xe1\xc8\x28\xb4\xf1\ -\x2c\xbb\x96\xaf\xbd\xfd\x4d\x26\x95\xe1\xe5\x17\xae\x23\x4a\xa8\ -\x4f\x3a\xc6\x7d\xc4\xc8\xda\xb8\x53\xc6\x5a\xc3\xde\x74\x42\x59\ -\x8c\xb8\xb5\x6a\x38\x6d\x1a\x1e\x3c\x58\x20\x0a\x52\x4a\xc4\x18\ -\x31\x46\x0d\x13\x06\x86\xe5\x62\xc5\xb5\x4b\xfb\x2c\xeb\x9e\x07\ -\x47\xc7\xb8\x72\x4c\x88\x20\x24\x16\x8b\x15\x98\x61\x22\xf1\x85\ -\xa7\x2a\x3c\x4a\x84\xbe\x5e\x11\x63\xa4\x59\x3f\xd7\xcd\x04\xb3\ -\xe1\x0c\xfe\xa8\x93\xd9\x67\xdb\xbf\xc4\x31\xeb\x66\xb7\xd6\x92\ -\x73\x3e\x67\xc0\x67\x8d\x56\xd6\x83\x5b\xf1\xc9\xce\xfc\x39\xb3\ -\xf6\x36\xb2\xfe\x5d\x21\x2a\x13\x44\xd0\xa2\x59\xb4\x2d\x65\x51\ -\xe0\x8d\x45\xab\xe1\x9a\x52\x4a\xb0\x26\xa0\x52\xe8\x06\xd2\x46\ -\x19\x94\x2b\x59\x75\x2b\x9a\xae\x05\x7b\x1f\x67\x0d\x57\xa6\xfb\ -\xb4\x41\x50\x92\xd1\x65\x01\xce\xd2\x87\x84\x31\x96\xe9\xb8\xe0\ -\x5a\x0f\xb3\x36\xd2\x6b\x70\x85\x47\x94\x21\xa4\x21\x2c\xc0\x68\ -\xba\x9c\x39\x3c\x2c\xf1\xd6\x30\xbd\x3c\x41\x49\xe2\xe1\xe9\x82\ -\xf1\x68\x4c\xea\x22\xc9\x78\x94\x52\x84\xd4\xd3\xaf\x3a\xba\xc6\ -\x60\x35\x4c\xca\x82\x4b\x07\xfb\x7c\xeb\xce\x7d\x72\x1e\x62\x6f\ -\x63\xcc\x39\xde\xe0\xb3\xed\x33\x63\x7d\xe2\xb6\x81\x5f\x8f\xcf\ -\xf2\x8f\x48\x26\xb6\x86\x0b\xa0\x95\x3e\xf7\xfb\x27\x76\x53\xda\ -\xac\xe1\x20\x64\xd6\x93\x05\x7a\xe0\xaf\x45\xb3\x0a\x91\x20\x81\ -\x91\x15\x0a\x33\xc4\x85\x29\xf4\x68\xab\x30\xd6\x10\x53\x40\xb2\ -\x22\x85\x80\x31\x06\x5f\x54\x78\x2d\x2c\x97\x2d\xfb\xd3\x11\x4a\ -\x29\x4e\x17\x2b\xda\xb6\x1d\x3e\x77\x06\x49\x89\xfd\x9d\x11\xe3\ -\x52\x50\xa5\x42\xf7\xd0\xa7\xc8\xa2\xe9\xe9\xb3\x10\xd6\x61\x40\ -\x46\x30\x51\x91\x62\x4f\x55\x58\xac\x51\x4c\xca\x02\x7f\x69\x8f\ -\xa3\xd9\x92\x49\xe5\x79\xb0\x08\x58\xef\xd0\xc6\x20\x40\xce\x89\ -\x2e\x46\x46\xaa\x60\x34\x19\x31\x1e\x8f\xa9\xeb\x9a\x9c\x1f\xb1\ -\xc2\x9b\xff\xc3\x1f\x01\x78\x7c\xb6\xfd\xcb\x64\xac\x22\x32\xcc\ -\xe8\x6b\x83\xdd\x6c\x29\x25\xfa\xbe\xa7\xaa\x0a\x94\x52\x98\xc7\ -\x0c\x18\xd4\xff\x2f\x6c\xb0\x12\x45\x66\x80\x86\x5a\x0d\x70\x56\ -\xd4\xe0\xf1\x63\x8c\x28\xef\xe9\xfa\x80\x4a\x19\x5b\x14\x38\xab\ -\x10\xc9\x48\x4e\x28\x14\xc6\x1b\x9a\xa6\xc3\xfa\x11\x39\x26\x44\ -\x14\x2f\xbd\xf0\x22\xa1\x5e\xa2\x52\xcf\xec\x74\x41\x54\x0a\x53\ -\x8c\xe9\x63\x26\x27\x88\x6d\xc3\xb8\xf0\x58\x84\xdd\x62\x8c\x9f\ -\xec\x50\xb9\x82\x65\xdf\xb3\xea\x22\x5d\xce\xc4\xa4\x68\xfa\x8e\ -\xac\x34\xda\x1a\xb4\xd6\x8c\xc7\x23\xaa\xa2\x44\x69\xcb\x68\x34\ -\xe1\xee\xbd\x07\x14\x55\x49\xc8\x03\x74\xd6\x06\xac\xd1\xc4\x90\ -\x98\xcf\x67\x38\xad\x39\x38\x38\x04\x60\xb5\x5a\x6d\x27\xbf\x4d\ -\xec\xba\x7e\x02\x9f\x8d\xec\xef\x47\x63\x8d\x2a\x3d\x36\x2b\x0b\ -\x26\xa5\xf3\xc4\x91\xb5\x5b\x2f\x6a\x8c\xc1\xda\xf1\x76\xe0\xc7\ -\x18\xcf\xc5\x4c\xce\x39\xba\x2e\x9c\xf3\xb8\xdb\x9c\xe7\x3a\xa6\ -\x8d\xb1\x3f\x37\xc8\x42\x08\xe7\x60\x33\xb8\x73\x04\xca\xe6\xf5\ -\xf6\x3a\xf5\xa3\x6b\x7d\xd2\xcf\xa8\x65\x3b\x66\x95\x82\xac\x84\ -\x21\x3b\x39\xec\x2e\xf5\x64\xad\x59\x09\xb4\x6d\xa4\xb4\x96\xb1\ -\x77\x8c\xd0\xb8\xac\xe8\xc3\x02\xe7\x0a\xda\xa8\x28\xb5\xc1\x86\ -\x25\xbb\xb6\xc7\xee\x38\x6e\xdf\x39\x46\x15\x05\x08\xa4\x9c\x51\ -\x5a\x13\xd1\x50\x14\x9c\x84\xc8\x3c\x0b\xd7\xaa\x8e\xb2\xf2\x34\ -\x4d\x43\xea\x13\x6d\x4a\xd4\xa1\x63\xe4\x0a\x2e\x95\x05\x68\x4d\ -\xd3\x5b\xea\x3e\xb2\x38\xee\xd0\xa6\xa5\xd4\x99\x71\x01\xaf\x5c\ -\x1d\x11\xef\xaf\x38\x6d\x3b\xba\x24\x38\x3b\x25\x36\x1d\x95\xdd\ -\xa1\xa3\xe1\x4e\x3d\xe3\xcb\xd3\x3d\x3a\x0f\xcb\x2e\xd3\xf5\x91\ -\x3d\x3f\xa1\x6f\x03\x7a\xe4\xa9\x25\x52\xc4\x8b\x0d\x0a\x79\x5e\ -\x1a\xfc\x53\xf6\xdc\xa2\x2e\x3a\x99\xff\xf1\x7c\x3e\xd6\xa0\x90\ -\x2c\x88\xac\xe3\xcf\xb5\x87\xdc\xc4\xa0\x9b\xb8\x68\x43\x92\xc4\ -\x18\x59\x2e\xeb\x73\xb1\xea\x59\x63\xdf\x18\xec\x59\xe3\xd9\xfc\ -\xed\xe6\xf7\x8d\x68\xe2\xec\x24\x90\x52\x22\xe7\x4c\x08\x01\x63\ -\xcd\xc7\x0c\xf4\x91\x21\x0f\x42\x8b\xed\x83\x79\x2c\xbf\xab\x94\ -\xda\x7e\xbe\x61\xac\x37\x97\x66\x50\x18\x6d\x50\x12\x51\x5b\x03\ -\x4f\x04\x11\x5a\x22\x46\x0c\x64\x43\xcc\x19\x41\xa1\xd6\x04\xda\ -\x78\x3c\xa6\x28\x1c\xa9\xae\xb9\x7a\xe5\x80\x5b\x0f\x4f\x07\x02\ -\xca\x3a\xb4\xb1\x83\xc0\x22\x0b\x31\x0c\x93\xcb\x62\xd9\xb2\x5b\ -\x19\x76\xa7\x63\x94\x73\xc4\xe5\x82\x3e\xa9\x21\x07\xaa\x1c\x2b\ -\x6a\x92\x08\xbd\x32\xa4\x2c\x78\x65\x29\xaa\x11\x3b\xd3\x8a\x69\ -\xe1\x78\x41\x46\x1c\x7f\xeb\xdb\x8c\xab\x09\x75\xd3\x50\xfa\x82\ -\x2e\x76\x68\x6b\x11\xc9\xdc\x3e\x7a\xc0\xe1\x95\x2b\xcc\xeb\x16\ -\xeb\x0c\x4d\xdf\xe1\xcb\x92\xb6\xeb\x30\xce\x20\x17\xc4\xc1\x72\ -\xe1\x2f\x7c\xc2\xc6\xfa\x29\x1f\xe0\xd3\x7a\x3e\xd6\x1a\x73\x2e\ -\x27\xaa\xb5\x66\xb4\xb3\xb7\x35\x8a\x61\xcf\x5b\x63\xd2\x5a\xe3\ -\xcb\x62\xeb\x25\x37\x04\xc7\x59\x2f\xf8\x38\x64\xde\xec\x1b\x0f\ -\x9c\x63\x22\xc6\x44\x8c\x79\x6b\x60\xd6\x7a\x8c\x31\x8c\x46\x8a\ -\xb6\x1b\x52\x1c\x29\xa5\x8f\x1d\x73\x03\xc1\xcf\x9e\x6f\xe3\xa5\ -\x37\x13\x86\xd1\xf9\xfc\xf9\xb3\x3c\x36\x43\x59\x8c\xd2\xd8\xb5\ -\x32\x08\x49\xc4\x08\xad\xce\x88\x12\x4a\x5f\x21\xca\x02\x1a\x9d\ -\x02\x7e\x9d\xf6\x41\x43\xe5\x3d\xa3\xd1\x88\x2e\x44\x52\x5e\x5f\ -\xbb\xd6\x24\x80\x35\x89\xb4\x58\xb6\x58\x31\xec\x8e\x47\x4c\x0b\ -\x43\xc8\x7e\x9d\x8a\x01\x67\x2b\x5e\xd2\x63\xb2\x72\xac\x72\xe6\ -\x64\xd9\xb0\xe8\x1a\x66\xa7\x0b\x16\x8b\x19\x5a\xc1\xcd\xc3\x2b\ -\xbc\x71\xf3\x06\xef\xdc\xba\x83\x75\x15\x89\x3c\x1c\x5f\x0c\xa9\ -\x4b\x1c\xf7\x4b\x26\xdd\x2e\x2f\x5c\xba\xc2\x77\x6f\xdd\x21\xe8\ -\x4c\x27\x01\xd1\x0a\x1b\x3f\x0b\x58\xbf\x6f\x61\xb0\x46\x61\xb5\ -\x41\x19\x8b\xb5\xc3\xbe\xac\x57\xe7\x24\x6c\xd6\x5a\x5c\xe1\xd7\ -\x10\xd8\xb2\x5a\xad\xb6\x9f\x9d\x35\xc6\xb3\xde\xf0\x71\xaf\x77\ -\x76\x1b\x4f\xc6\xc4\x18\x09\x21\x0c\x06\x99\x33\x29\x64\x54\x1c\ -\xbe\xe7\x5d\x79\x4e\x1d\xb5\xd9\xb7\x50\x3d\xa7\xc7\x3c\xeb\xf9\ -\x29\x2d\xc7\xb4\x9d\x4c\xd4\x63\x24\x98\xd6\x9a\xbe\xe9\xd1\x9a\ -\x41\x24\xa1\x20\x25\x35\x18\x6c\x1a\xae\x7d\x64\x47\xa4\x94\xb1\ -\x46\x41\x52\x2c\x57\x0d\x75\xdb\x31\x2e\x3d\xa1\x5d\xb1\x3b\xdd\ -\x61\xb6\x58\xb0\xac\x5b\x52\x4a\x68\x37\xa8\x8b\x20\xa3\x44\x91\ -\x52\xa6\x6d\x5b\x76\x2a\x4f\xe1\x60\x4f\x79\xb4\x71\xdc\x7a\x38\ -\x67\xde\x2d\xb9\xcf\x0c\x6d\x1c\x49\x2c\x7d\xc8\xc4\x9c\xf1\xc6\ -\x32\x2e\x2a\xc6\x65\x85\x93\xc4\x1b\x2f\xbd\xc8\x83\xd9\x8c\xa3\ -\xba\xa3\x97\x8c\x36\x66\x80\xf0\xa6\x20\x1a\xcd\xbd\x07\x47\xfc\ -\xc0\x2b\xaf\x73\x52\x16\xd4\xf5\x9c\x6c\x14\x06\x8d\xc5\x12\x3e\ -\x61\x9c\x2a\x7f\xcc\x43\xe2\x4f\xfa\xfa\x3f\xa9\xe3\xdb\x8d\x57\ -\xdc\x40\x55\x80\x98\x13\xce\xb9\xad\x88\x60\x03\x83\xdb\xb6\x5d\ -\x8b\x06\xcc\xc7\x8c\xf4\x11\xa9\xa1\xb6\xaf\x73\xde\x40\x50\x39\ -\x67\xb4\xf3\xf9\x7c\x7b\x5c\xef\x3d\x5a\x6b\x52\x4a\x84\x10\x06\ -\x02\x08\x73\xce\x6b\x9f\xf5\x9e\x83\xc6\x58\x3e\xc6\x42\x9f\xf5\ -\xa4\xbe\xf0\xe7\xce\xb7\xf1\xe8\x9b\xfb\xb4\x85\xc7\x1b\x8b\xf3\ -\x06\x6f\x07\x6d\x73\xca\x81\xbc\xf6\xda\x5d\x37\xc4\xd4\x1a\x05\ -\x92\x39\xa9\x1b\x3e\xba\x77\xc4\xab\xd7\xf6\x31\xd6\x31\x32\x86\ -\x58\x7a\xc8\x42\xd8\x08\x2b\x04\x8c\x35\x58\xad\xa9\x8a\x3d\x24\ -\xf5\xb0\x16\x5f\x8c\x9c\xc3\x17\x9e\x28\x96\x79\x13\xb8\x6e\xa6\ -\x08\x9a\x60\x1c\x4d\x16\x4e\x56\x2b\x8e\x96\x4b\x16\x75\xc3\x2a\ -\x04\xea\xd5\x31\xee\xf8\x98\x9b\x57\xae\xb0\xfa\xf0\x16\x4a\xab\ -\x41\x57\x1d\x87\x09\x54\x8c\xa6\xed\x03\x47\x47\x47\x5c\xb9\x74\ -\xc8\xc9\xed\x25\xd1\x18\x62\x1f\xc0\xd8\x0b\xc3\xe0\xcf\xb6\x7f\ -\x41\x3d\x6b\x48\x11\x41\x10\xf5\xc8\x4b\x3a\x5b\x60\xf4\x60\x90\ -\x29\x0a\x39\x25\x52\x4a\xa4\xb4\x1e\x04\x3a\x7f\x2c\x5d\xf0\x24\ -\xf8\x7b\xd6\xf3\x9e\x23\xb1\x12\x28\x14\x49\x04\xc9\x83\x50\x41\ -\x04\x10\x8d\x35\x9e\xae\xeb\xb6\x5e\x7e\x43\x6a\x9d\xf5\xd6\xda\ -\xe8\x73\xc7\x3b\x0b\xc3\x45\x84\x3e\x86\x73\x69\xa5\xc7\x3d\x7f\ -\x0a\x42\xd4\x91\x0a\x83\xd1\x1e\x73\xc6\xa0\x53\x56\x44\x19\x52\ -\x3a\x21\xf6\x68\x65\x48\xda\xf3\xdd\x87\x33\xaa\xc2\xf3\xe2\x95\ -\x3d\x24\xf4\x4c\x4a\x47\xe9\x3c\x21\x09\x31\x27\xc8\x82\xb7\x1a\ -\xe7\x0c\x26\x29\xb2\xb6\x28\x33\x4c\xb3\x92\x41\xe7\x8c\xc9\x3d\ -\x7d\x3b\xe7\x6b\x6d\xbd\x2e\x78\x70\x58\xeb\x88\x21\xd3\xf6\x3d\ -\x5a\x5b\x4a\x6d\xb9\xfa\xf2\xcb\xd4\x75\xcb\xce\x78\xcc\x1b\x2f\ -\xde\xe4\xed\xef\x7c\x48\x1b\x7b\x76\xc6\xbb\xb4\x31\x91\x03\xa0\ -\x2d\xf7\x67\xc7\xdc\x9c\x5c\xe3\xc6\x95\x2b\xdc\xba\xfb\x00\xa5\ -\x0d\x9d\xa4\xcf\xf2\xad\xdf\xaf\xc6\x9a\xd7\xb1\xe4\x59\x81\x83\ -\x2b\xfc\x30\xe8\xbb\x8e\x10\xc2\xf6\x9f\xaf\xb5\xc6\x5a\x4b\x9f\ -\xe2\x13\x13\x04\x1b\x83\xd0\x5a\x0f\x34\xec\xfa\x1b\xea\xb1\xb8\ -\xdb\xe8\x21\x63\x14\x62\x24\xf5\x69\x4b\x62\x6d\x3c\xed\x59\xb2\ -\xe9\xac\x94\xee\x11\x63\x9d\xb6\xb9\xc4\xc7\x8d\x56\x29\x48\xd9\ -\x12\xd3\xc6\x40\x1f\x8b\x97\x73\x46\x79\x8b\x49\x19\xd3\x27\xbc\ -\x06\xe3\x0c\x86\x75\x4a\x49\x0f\x14\xb2\xb1\x1a\xc9\x86\xac\x14\ -\xc6\x8f\x59\x36\x35\x1f\x3e\x38\xa5\x28\x3d\x87\x36\x61\xb4\x45\ -\x29\x0d\x5a\xd0\x92\x51\x56\xe1\xb4\x60\x24\x62\x44\x10\x67\xe8\ -\xb2\x40\x16\x9c\x1a\x0c\xf9\x60\x3a\x22\xa4\x9e\x6b\x7b\xd7\x06\ -\x0f\xa9\x41\x94\x62\xd5\xb5\x9c\xac\x56\x34\x5d\x20\x48\xe0\x5b\ -\xb7\x4e\x98\xb8\x92\xe3\x07\x27\x5c\xb9\xf1\x02\x3b\x85\xa7\xeb\ -\x6b\x62\xec\xd0\x5a\x20\x6b\xd0\xd0\xe4\x96\x07\x27\xc7\xbc\x70\ -\xf5\x1a\x33\x7b\x42\x23\x86\x55\xca\xb8\x0b\xda\xaa\x7e\x8e\x63\ -\xfe\xb4\xd5\x8c\xfa\x82\xc0\x21\xff\x31\x7d\x3e\x36\x2b\x88\x92\ -\x41\x81\x73\x43\xa5\x4a\x53\x37\x5b\x78\xb9\x61\x6c\xb7\x9e\x27\ -\xa5\xf3\x12\xc2\xc7\x62\x54\xce\xb0\xc9\xe7\x0d\xec\xac\x77\x63\ -\x9b\xca\x39\xcb\xf4\x6e\x60\x78\x59\x96\x5b\x2d\x6d\x8c\xf1\x63\ -\x44\x56\xe9\x1f\x29\xa5\x36\x86\x7d\x16\xfa\x65\xed\xce\x9d\x4f\ -\x0f\x65\x2b\x43\x49\x1f\x86\xc8\x20\x34\xd0\x51\x28\xa3\xc6\x2a\ -\xd0\xa2\x07\xca\x5d\x06\x79\x62\x0a\x19\x83\x10\xb3\x42\x69\x8f\ -\x58\xe1\x68\x71\x4a\x71\xeb\x2e\x2f\xbe\x79\x83\x98\x84\x2e\x05\ -\x24\x44\x8c\xb6\x78\xab\x51\x0a\x24\x67\x4c\x4a\x50\xba\xc1\x58\ -\xb5\xc6\x28\x87\xd6\x0a\x2b\x90\x63\xcd\x1f\xde\x5f\x0c\xd7\x85\ -\x70\x2e\x0c\xc9\x42\xcc\x30\xbd\x74\xc0\xd5\xf1\x2e\x71\xd9\x90\ -\x43\xe2\x8b\x6f\x7e\x8e\xdf\x7e\xef\x5d\x1e\x9e\x9c\xb2\x33\xd9\ -\x45\x85\x61\x92\xe8\x62\xa2\xed\x3b\x96\x27\x27\x5c\x3f\xbc\xcc\ -\x37\xef\xde\x07\xe7\x90\x78\xb1\x12\xb9\xe7\xa1\xe8\x4f\x1b\x64\ -\xcb\x27\xcd\xe6\xfe\x0b\xfa\x7c\xcc\xcd\xbf\xfc\x37\x7e\x5e\x44\ -\xb0\x4a\x33\x2a\x4b\x42\xd3\x12\xf3\x08\x2d\x11\x95\x1a\x8c\x82\ -\x3e\x1a\x30\x05\xd1\x24\xa2\xa9\x31\xc1\x43\x56\x28\x51\x28\xd1\ -\xeb\x9f\x6a\x98\x52\xf2\xd3\xde\xdb\xbc\xaf\x87\x61\x9a\x41\x44\ -\x6d\x61\xa2\x88\x42\x44\x91\x92\x60\x8d\x42\x59\x43\x9b\x23\xbd\ -\x1a\xbc\x14\x2a\x63\x14\x58\x81\xd3\xb8\xa2\x68\x21\xad\x22\xbd\ -\xd5\x04\x9b\xd1\x11\x24\x15\x74\x7a\x42\xcc\x0d\x4a\xf2\x00\x6f\ -\x95\xa5\xd7\x05\xbd\xd2\xa4\xdc\xa3\x55\x43\xee\x35\x56\x19\x04\ -\x43\x9f\x85\xac\x0c\xda\x3b\x94\x31\x44\x09\x68\x19\x54\xcc\xa2\ -\xf4\x90\xd2\x8d\x1d\x46\x22\x0a\xcd\xb2\xcb\xa4\x30\x63\x77\xef\ -\x80\x71\x51\xe1\x95\xa6\xb4\x76\xf8\xbe\x35\x50\x38\xac\x56\x84\ -\x98\x40\x32\x85\xb7\xa0\x33\x29\xb7\x58\x2b\xec\x8e\x3c\x29\x95\ -\xbc\xb2\x6b\x79\x65\xb7\xe2\xf2\x64\x97\xea\x60\x8f\x2b\x28\xe6\ -\x5e\x51\x77\x8a\x2e\x77\xdc\x5b\x06\xee\x2c\x7a\x66\xcb\x05\x97\ -\xa7\x05\xd2\xce\x39\x6d\x5b\x9a\x72\x84\x8e\x43\x91\x44\x59\x8c\ -\x59\xae\x3a\xb2\xf5\xec\x1d\xee\x63\x52\x4f\x9c\x1d\x91\x5c\x89\ -\x00\xb1\x8f\x78\xed\xd1\x68\x42\x0c\x68\x67\x06\xc4\xf3\xbc\xc1\ -\xa6\x9e\xbd\xf7\xbd\xc6\x17\x96\x3e\xf7\x88\x83\x6c\x14\xa9\x17\ -\x6c\xf2\x94\x52\x90\x24\x6f\xff\xff\x9f\xc4\xfe\xbc\x0b\xec\x6d\ -\x81\x42\x90\xd8\x51\x58\x0b\x4a\xb3\xe8\x3b\x74\xe9\xe9\x54\xc6\ -\x5e\x90\x01\xd2\x69\xc2\x6a\xb4\x42\xd5\x1d\x63\x3b\x01\x95\x90\ -\xa4\xe9\xca\x1d\xfa\x1c\x29\xc8\xf4\xce\x23\x69\x81\xa3\x07\x33\ -\x86\x98\x30\xa9\x25\x96\x15\x7d\x6f\x29\x7c\xa4\x29\x2c\xb4\x96\ -\x64\x12\x56\x5a\x56\x1a\xca\xe4\x90\xa7\xb8\x6e\xfb\xb8\xae\x57\ -\x44\x08\x76\x46\x4b\xc2\xf8\x21\x55\xe0\x9d\x21\x87\x80\x68\x0d\ -\xa6\x42\xe9\x4f\x76\x6e\xed\x9b\x9a\x72\x3c\x61\xe2\x4a\x42\x8a\ -\xe4\x94\x11\x01\x65\x0d\xda\x19\x6c\x4c\xf4\x65\x41\x2a\x34\x5d\ -\x6a\xf0\x28\x32\x3d\xd6\x39\x52\x58\x31\xb5\x96\x1c\x5b\x30\x90\ -\x01\x42\xc2\xe3\xa9\xb2\xc3\xf6\x89\x65\xb9\xf6\x82\x22\xa4\x34\ -\xc0\xed\x68\xf5\x36\x46\x56\x46\x9d\x9f\x21\x95\x42\xa1\xd0\x6b\ -\x31\xc6\x47\xc7\x01\x3b\x4e\xec\x14\x10\x5b\xe8\xba\x96\x65\x5b\ -\xb3\x8a\x3d\x51\x32\x47\x64\x54\x8a\xec\x79\xc7\xab\x57\xaf\x72\ -\x65\x5c\x51\x66\x4f\x15\x05\x95\x14\xf7\xea\x05\x77\xe6\x33\x42\ -\xd7\x10\xec\x98\x85\x55\x5c\x0b\x99\x87\x46\x30\x76\xc2\x1b\x66\ -\x86\x1a\x55\xe8\x6a\x8f\x7b\xb7\xef\x50\x9f\x2e\x78\xe1\xea\x4d\ -\xee\xcc\x33\xa7\x9d\x5e\xe7\xaa\x0d\x5d\xd7\xe1\xbd\x67\xb5\x5a\ -\x71\x74\x74\xc4\xc1\xde\x1e\x8b\xf9\x29\x4d\x8e\x18\x35\xe4\xc8\ -\x43\x4e\x5b\x64\xb2\xf9\xff\xea\x0b\x2a\x9c\x0a\x0f\xaa\x8b\xf8\ -\x00\x22\x86\x3e\x26\xc6\xd5\x88\x40\xe4\x94\x96\x51\xf8\x74\x3d\ -\x6f\x6a\xe6\xf8\xe9\x0e\xd9\x3a\x8e\xeb\x9a\xc2\xc0\xe5\x9d\x5d\ -\xe6\xf3\x39\xa5\x75\x6b\x91\xcc\x05\x8e\x1f\x7b\x54\x16\x7c\x51\ -\x11\x51\x34\x6d\x8f\x51\x0e\xc2\x8a\x69\x5a\x12\xe5\x80\x84\xc5\ -\xe7\x11\xc6\x08\x6d\x30\x18\x29\x30\xf4\xe4\x3e\xb1\xaf\x05\x5b\ -\xaf\xe8\x6c\xc5\x84\x43\xba\x28\x54\x40\x50\x8a\x91\x56\x2c\x9e\ -\xe2\xba\xad\xc8\x5a\x4c\x60\x1d\x31\x0c\xe9\x8b\xbd\x28\xb4\xda\ -\x11\x70\xe4\xd4\x32\x72\x2d\x29\x2f\x06\xef\x87\x25\x68\xf7\x89\ -\x3e\x6c\xef\x33\x99\x8e\x94\x02\x39\x64\xd0\x03\x64\xce\x4e\x53\ -\xe7\xc4\x38\x25\xee\x36\x73\xdc\xfe\x01\x74\x1e\x42\x37\x28\xaa\ -\x4c\x8b\xb3\x86\x46\x5f\x07\x99\x51\xa6\x16\xab\x13\x89\x80\xd8\ -\x4c\x30\xc2\x82\x1a\xeb\x26\x64\x19\x2a\x5c\x86\x32\xba\x84\xce\ -\x82\x4b\x76\x48\xbf\xa8\x8f\x17\x6f\x2b\xa5\xd6\x8a\x28\xc5\x22\ -\x29\x9a\x07\x0f\x21\x24\x72\x8c\x43\x8a\x89\xc1\xc3\xf4\x29\xb2\ -\x37\xae\x08\x7d\xcb\x62\xbe\xe4\x2e\x3d\x79\x7f\x87\xdd\xe9\x0e\ -\xfd\x78\x4a\xca\x70\x78\x18\x19\xdb\x92\x32\x3b\x8c\x99\xf2\xdd\ -\xf9\x09\x37\x24\x93\x56\xc7\x34\x7d\xe0\x78\x76\xcc\x72\xd6\xd2\ -\xf9\x39\x7d\xea\x69\x34\x7c\x61\xef\x90\xcb\x87\x05\xab\x3b\x27\ -\x68\x37\x26\xaf\xc3\x0d\xe7\x4a\xba\xa6\xe7\xf8\x74\xce\xee\xce\ -\x84\xbd\xfd\x43\xe6\x0f\x8f\x51\x5a\x61\x8c\x25\x25\x59\xe7\xc7\ -\x87\x94\x92\xd2\x17\xcf\x2d\x28\x93\x91\x36\x51\xf8\x31\xbd\x37\ -\x48\x77\xca\xa8\x5d\x92\xd2\x0a\xe7\x33\x9d\x9a\x7c\xaa\xc6\x7a\ -\xa3\xe8\x39\x5a\x1d\xb3\xb2\x53\x54\x35\x21\x74\x4b\x62\xd7\xa2\ -\x43\xc0\x6b\x4f\x7b\xc1\xa2\x24\x6f\x85\x3a\x26\x9a\x4e\xa1\x4d\ -\xa4\xac\x4a\x8c\x68\xea\xe5\x43\x5e\x98\x0a\xdf\x89\xf7\x20\x19\ -\xac\xea\x31\xca\xd3\x74\x30\xae\x26\x78\x35\x26\x26\xcd\x43\x93\ -\xb9\x59\x69\x7c\xa8\xf1\xaa\x60\xb9\x7a\x80\x9b\x4c\x39\x36\x23\ -\x5a\x5d\x30\xee\x16\x4f\x36\xd6\x24\x79\x8b\xc1\x63\x1e\x44\x08\ -\x27\xd9\x61\x8b\x29\x6d\xb3\xe4\xb2\xce\xfc\xc5\x97\x76\xf9\x57\ -\xbe\xf8\x27\x79\xeb\xe6\x0e\x39\x83\xcb\xf1\x13\x7e\xdc\x11\x6f\ -\x3c\x39\x64\x54\x16\xd0\x8e\xa4\xa0\x91\xcc\xa2\x69\xf9\x7b\xbf\ -\x7e\x8b\x5f\x7e\xf7\x9b\x1c\x77\x0b\x26\x94\xd0\x09\xb6\xf4\xd4\ -\x31\x50\x58\xcb\x91\x3f\xe6\x45\xd7\xf0\x53\xd7\xf7\xf8\x6b\x7f\ -\xe2\xf3\x7c\xfe\xca\x08\x15\x19\x74\x60\x06\x3a\x15\xcf\x30\xd3\ -\xc3\x6b\x67\x1e\xc5\xd6\xf1\x29\xb5\x06\xdb\x54\x90\x03\x52\x26\ -\x87\x38\xa4\x6c\x8c\xc1\x78\x47\x56\xd0\x86\x9e\x22\x8e\xb0\x06\ -\xc8\x3d\x89\x44\x27\x8a\x59\x84\x5b\xa7\x0d\xef\xdf\xbe\xc7\xf2\ -\x64\xcc\x71\x58\x32\x9b\x1f\x51\x18\xcd\xe1\x24\xf0\xef\xfd\xc5\ -\x1f\x63\xb2\x73\x1d\xd3\x38\x1a\xf7\x25\xbe\x71\x9a\xf8\x47\xbf\ -\xf3\x3e\x77\xea\xc0\xdd\x87\x77\x79\xef\xdd\xbb\xec\xee\xde\xa4\ -\xf2\x8e\x40\x4d\x0c\x71\x9b\x52\x33\xce\x13\x52\xe4\xde\xfd\x87\ -\x5c\xbf\x76\x85\xf1\x72\xc5\xaa\x6e\x31\x56\x63\x8c\x26\x66\x21\ -\xaf\xbd\xa9\x51\x9a\x9c\x2f\xe6\x59\x9a\xae\xa1\x30\x25\xd9\x68\ -\x8e\x56\x47\xbc\x34\xd5\xfc\xf4\xcb\xd7\xf8\xb1\x57\x5f\xe0\xb5\ -\x37\x77\x98\xf6\xf1\x53\x35\xd6\xdf\xbc\x3b\xe7\x7f\xff\xc6\x1d\ -\xbe\xf2\xad\xfb\x9c\xc4\x48\x51\x5a\xba\xb6\xc1\x17\x15\x29\x6b\ -\x44\x5d\xec\xfa\x72\xea\xa8\x26\x23\xb4\xf5\xd4\x75\xc4\x84\x48\ -\x97\xe0\xea\xc1\x84\x9f\xff\x77\x7f\x8a\x57\x32\xb4\x16\xba\x04\ -\xbf\xfb\xdd\x39\x7f\xe7\x2b\x6f\x73\xab\xee\x59\xaa\x9e\x56\x3b\ -\x2e\xa5\x25\xff\xe5\xbf\xff\x97\x99\xa8\xc0\x4e\x74\xe8\x0a\xbe\ -\xf6\xc1\x9c\xbf\xfd\x8b\xff\x9c\xec\x27\xe4\xa7\x79\xd6\xb3\x4c\ -\xee\x56\x0e\x58\x8e\xa8\xe7\xa7\x5c\xab\x2c\x3f\xf7\xd3\x7f\x96\ -\xbf\xf0\x5a\xc5\x61\x6e\x60\x79\x0a\xca\x83\xf3\x9f\xac\xa9\xe6\ -\x0c\x6a\x93\xe7\x54\x90\xe2\x10\x53\x5b\x8d\x2e\x1c\x7f\xe3\x27\ -\xde\xa4\xda\x55\xfc\x4f\xbf\xfe\xfb\x58\x3d\xc4\xc1\x9a\x02\x94\ -\x22\x06\xc5\xcb\xb3\xef\xf0\x37\xff\xca\x4f\xf2\xaf\x7e\xf1\x06\ -\x63\xe9\xa1\x3f\x02\x27\xc4\x42\xa8\xa5\x65\xa7\xb9\xba\xd5\x17\ -\x23\x06\x72\x82\x75\x5a\x4a\xe5\x8c\xb7\x0e\x1e\x4f\x7f\x88\x3c\ -\xc2\xc5\x5d\xbf\x81\x00\x90\x05\x42\x80\x26\x62\x94\x62\x24\x42\ -\xb0\x0d\x38\x03\x12\x30\x39\x51\x89\x45\xfb\x02\x6d\x07\xa1\xff\ -\xd7\x96\x1f\x70\x50\x96\xbc\x72\xfd\x25\x0a\x2c\xd2\xde\x65\x77\ -\xa7\xa4\xd1\x0d\x49\xad\xb0\x6a\x4a\xdd\xc1\x7b\x1f\xde\xa2\x2b\ -\xc7\x1c\x1c\x1c\x70\xe0\x35\x2f\x5f\x29\xf9\xee\xd7\xbf\x43\x3d\ -\xda\x27\x67\xc1\xfa\x82\x3e\x04\xbc\x35\x80\xe1\x68\xb6\x64\xba\ -\xbb\xcf\xb5\x4b\x87\x7c\xf0\xd1\x5d\xba\xbe\xc5\x14\xd5\x36\xd7\ -\xac\x51\xe4\x24\x17\x4e\xda\xdb\xa2\x84\xe4\xe8\x9b\x19\x57\x6c\ -\xc7\xbf\xf5\xe3\x7f\x8a\x7f\xfd\x8d\x1b\xec\x9b\x08\xed\x0a\x28\ -\x3e\x55\x63\xfd\x89\x1b\x63\x5e\xda\x7b\x8b\xb2\x28\xf8\xc5\xaf\ -\x7e\x1d\xb3\xbb\x4f\x34\x8a\x80\x26\x2a\xe1\xa2\x99\x2d\x51\x42\ -\xdf\xf4\xa8\xac\xc8\x0a\x8a\xa2\x60\xd9\x06\xea\xd5\x09\xd7\x0c\ -\xa4\x70\x17\xeb\x76\x71\x4e\xb0\x76\xc1\xe9\xea\x01\xb5\x94\x8c\ -\xbd\x66\xec\x1c\x4d\x6b\xb9\xe4\xa1\x12\x81\xb6\x23\x2f\xe7\x98\ -\xa0\xc9\x66\x4c\xab\x2c\x4e\x3d\x39\x8e\xb0\x5a\x99\x21\xe7\x99\ -\x05\xad\x0d\x59\x0b\xa6\x5f\x72\xc3\x07\xfe\xc2\xe7\xaf\xf3\x23\ -\x2f\x56\x4c\x5c\x00\x05\xd1\x5a\x62\x56\x68\xd5\x7f\xb2\x31\x87\ -\x57\x24\x22\x22\x69\x80\x6d\xeb\xb8\x51\x3b\x0b\x3a\x70\xa3\x30\ -\xfc\xec\x8f\xbc\xc1\xef\x7d\xe3\x7d\x3e\x98\x05\x7a\x3b\xa2\x89\ -\x11\x6b\x0a\x12\x89\xff\xf0\xcf\xfe\x28\x3f\xfe\xda\x0d\xc6\x0a\ -\x72\xdb\xa1\xf4\x88\x20\x1e\xd5\x6a\x46\x22\x44\xd7\xa1\xd4\x5a\ -\x28\xa1\xe5\xb1\x14\x90\x26\xe7\xf0\xcc\xdc\xb1\xd3\x6e\xa8\x27\ -\x45\x91\x11\xf2\x19\x66\x5b\x69\x8d\xeb\x2c\x12\x80\xac\x51\x06\ -\x14\x09\x4f\xe0\x72\x51\xb2\x77\x6d\x9f\x83\xb7\x1f\xf0\xc1\x87\ -\x0f\x38\x4e\x33\x9c\x2f\x19\x71\x4c\xdb\x25\x2a\x9f\x40\x0a\x24\ -\x9d\x72\x30\xf6\x5c\xbf\xbe\xc7\xb7\x97\x99\xdb\xf3\x25\x1f\x75\ -\x0d\x61\x72\x89\xea\xd5\x37\x09\x1f\xdd\xc1\x38\xbf\x55\x91\xf5\ -\x31\xa1\x11\xac\xf5\xdc\xb9\x77\x9f\x2f\xbe\xfe\x32\xbb\xd3\x31\ -\x77\x8f\x4e\xc9\xb1\x47\x19\x4b\x16\xd0\x80\xa4\x84\x98\x0b\x55\ -\x46\xd2\xd6\x81\xb1\xb7\x5c\xb6\x9a\xbf\xfa\x83\x5f\xe0\xaf\xbe\ -\x7e\x83\xbd\xa2\x86\xd0\xd0\x2a\xd9\xc6\xf6\x9f\xd6\xe6\x97\xa7\ -\xdc\xdc\xb9\xc6\xcf\xfc\xd8\x1b\xbc\xf7\xdd\x5b\xfc\xfe\xfd\x25\ -\xbd\x1f\x83\xd6\x64\x95\xf1\x17\x9c\xad\x92\x82\x18\x33\xde\x28\ -\xac\x0e\xf4\x6d\x20\xea\x82\x8c\xc1\xf7\x19\x93\x2f\xc3\x52\x41\ -\x6e\x29\x3b\x87\xce\x0e\x57\x4d\x48\xcc\x69\xdb\x63\x46\xb1\xa3\ -\xa2\x83\xd4\xd2\xbb\x11\xd6\x17\x88\x8d\xc4\xb0\xc4\x9b\x4c\x96\ -\xdd\xa7\xa7\x6e\x40\x50\x31\xe2\xcc\x40\xb0\xdc\x2f\x12\x65\xbf\ -\xe2\xc7\xfe\xc4\x4d\x5e\x1d\x03\x7d\x24\x89\x22\x49\x85\xd1\x06\ -\x9b\xbb\x4f\xf6\x61\xcb\x20\xc8\xc8\x80\x31\x16\x48\x10\x13\xe4\ -\x88\x0b\x91\xac\xee\x72\x6d\x7c\x83\x1f\x7d\xfd\x75\xbe\xfb\xf5\ -\xf7\xa9\x75\x22\xf5\x89\x4a\x67\xac\x86\x1f\x7c\x73\xc2\xfe\xb4\ -\x27\xe5\x9a\x60\x23\xca\x17\x90\x0d\x0e\x50\x9d\x42\xf2\x46\x13\ -\x3c\xb0\x48\x4a\x19\xd0\x67\x0a\x02\x24\x9d\x33\xce\xb3\x10\x58\ -\x29\x05\x61\x48\xf3\x48\x82\x8c\xc2\xda\x02\x94\x26\x75\x1d\x92\ -\x02\xb6\x10\x50\x09\x9c\x80\xb7\x20\x91\x18\x3b\xac\xe9\xb0\x36\ -\xf3\xe5\xd7\xae\xe0\x4c\x62\xa1\x76\x30\x6e\x97\xdc\x94\x58\x0c\ -\xf3\xbe\xa0\xc2\xe1\x04\xe6\x47\x2b\x66\xf7\x6b\x46\xa3\x03\xae\ -\x5f\xbd\xc4\x98\x96\x2a\x2c\x38\xd8\x2f\xb9\xfd\xa0\x18\x3a\x47\ -\xa6\x84\x32\x6e\x5d\x38\x0f\xca\x58\x56\xf5\x8a\xd3\xa3\x23\xf6\ -\xf7\x76\x58\xb6\x1d\xf3\xb6\x47\xdb\xb5\xe8\xe3\xff\x23\xb1\xc4\ -\xb8\x98\xd2\xd3\x10\xba\x39\x7f\xfe\x07\x5e\x67\x4f\x07\x08\x2b\ -\x6a\xed\x31\x7a\x0f\x17\xba\x4f\xd5\x58\x99\x5e\xa1\x8f\x91\x5d\ -\xef\xf9\xd2\x6b\x2f\xf1\x87\x77\xbf\x89\x30\x42\x6b\xd0\x71\x09\ -\xea\x62\x9c\x8b\x38\x8b\x89\xb2\x6e\x0d\xd4\x91\x93\x02\x37\x25\ -\xa9\x02\x1d\x33\xb3\x4a\xa1\x95\xc6\xa4\x92\x76\x9c\x99\x2b\x43\ -\x23\x9a\x49\xb2\x8c\x04\xac\x3b\xa0\x9d\x81\x2f\xc6\xe0\x2c\xab\ -\x2e\xd0\x76\x8e\xa2\xba\x41\x53\xdf\x43\x3f\x05\xb8\xda\x47\x82\ -\x81\x84\xb7\x83\xbc\xd0\xc5\x5d\x46\xdd\x92\x2f\x5d\x9a\xc0\xb2\ -\x01\x32\xa6\x1c\x73\xd2\x74\xdc\xbf\x7f\x97\xb9\xfa\x64\x61\x70\ -\x95\x1d\x19\x21\xaa\x08\x64\x24\xb4\x8c\x9c\xe3\xe6\x95\x2b\xec\ -\x8d\x47\x28\x5a\x62\x97\x78\xe3\xe6\x4d\xc2\xef\xbe\x4b\xad\x14\ -\x55\x61\x48\x7d\x87\xa8\xcc\x0b\xbb\xd7\xb0\x3d\xe4\x36\x52\xfa\ -\x29\x27\xcb\xcc\xfb\xf7\xef\x0c\xea\x1e\xab\x30\x52\x9c\xc9\x11\ -\xeb\x73\x49\x6c\xc9\x0a\xbb\x8e\x69\xce\x1a\xeb\x59\x45\x94\x52\ -\xeb\x7a\x5e\xa3\x69\x43\x3f\xc4\xbc\xda\x90\x42\x1c\x4a\x04\x97\ -\x0b\x14\x8e\x94\x15\x1a\x83\xca\x8a\x52\x5b\x76\xca\x02\x25\x99\ -\x95\xd2\x7c\xfb\x64\xc1\xed\xba\xc6\x96\x0b\x2e\xfb\x23\x30\xc2\ -\x8e\x59\x40\xeb\xc8\x85\xc1\xed\x38\x3a\x22\x0f\x96\x0b\x6e\x9f\ -\xdc\x67\xa7\x10\xaa\xd2\xf1\xfa\xeb\xaf\x33\x1a\x9d\x32\x5b\x2c\ -\xcf\x5d\x17\x79\xd0\x5a\x7b\xef\xb9\x7d\xfb\x23\xbe\xf8\x43\x5f\ -\x66\x67\xa7\x63\xd9\x1f\x3f\xd2\x58\x2b\x85\x53\x9a\x70\xc1\x44\ -\x65\xd7\x74\xd4\xe3\x8c\xb7\x81\x2b\xd7\x80\xd3\x05\x79\x64\x31\ -\x6a\x8f\x74\x0c\x5f\x9d\xcf\x3f\xdd\x3c\x6c\xea\xa8\x2c\xf4\x51\ -\x18\x17\x05\xde\x56\x84\xa0\xd1\xa9\x63\xaa\x85\xfe\x82\xf7\xdf\ -\x86\x84\xb5\x0e\x95\x15\x4a\x65\xbc\x72\x2c\x04\x24\x66\x94\xb6\ -\xec\xc6\x93\x21\x14\x48\x19\x1f\x7b\x48\x19\x54\x41\x92\x16\x87\ -\xe5\x38\x81\x1f\x7b\x74\x9e\x93\x3a\xc3\xb4\xaa\x71\x46\xb3\x0a\ -\x0d\xa9\x2c\xf0\xe9\x69\x31\x6b\xca\x28\x11\x94\xd6\xf4\x71\xe8\ -\x8c\xb0\xa3\x5b\x1e\x54\x87\xe8\x3c\x54\xa1\xf4\x0e\x5c\x6c\x79\ -\xff\xee\x9c\xff\xe8\x97\xdf\x45\x3f\x87\xa0\x78\xbc\x9d\xcb\x59\ -\xd9\x5f\xce\xf9\x51\xbc\x98\xd7\x8a\xa2\x3c\x14\x4e\x17\x6e\xa8\ -\x6e\x69\xfb\x8e\x88\x21\x4b\x4f\x99\x3d\x8d\x09\x14\x2a\xf1\x7f\ -\xfe\xcd\xab\xe4\x50\x93\xd4\x2e\x36\x05\x46\xae\x63\x49\xc9\x34\ -\xd4\xe4\x3c\x42\x25\xa0\x2c\xf0\xaa\x21\xe2\x09\x3b\x1e\xd7\x64\ -\xde\x3e\x4a\xfc\x27\xbf\xf4\x87\xa0\x0f\xb0\x61\x8e\xfa\x23\x74\ -\xea\x3c\xdb\xf1\x02\x49\x18\x49\x54\xa5\x67\x5a\xf9\x2d\x59\xf3\ -\xd4\xd4\x53\xe1\xa0\x69\x29\xb5\x06\xf1\x84\x28\x38\x93\xf9\xe2\ -\x2b\x97\x78\x61\xdf\xd3\x9c\xcc\x78\xf1\xd2\x4d\xae\x9b\xcc\xac\ -\x59\xd0\x36\xbb\x58\x12\x74\x23\x72\xa9\x88\xc1\x41\x3b\xa7\x77\ -\xc2\x5b\x87\x97\x28\xa7\x8a\xd9\xdd\x15\x1f\x2e\x66\x84\x07\xb7\ -\x39\x18\x17\xb4\x8b\x53\x9a\x90\x07\x9d\xb4\xb1\xf4\x21\xe0\x9c\ -\x21\x09\xd4\x76\xca\x37\xde\x7f\x9f\xb7\x5e\x7e\x89\xe5\xe9\x09\ -\xc7\x75\x8b\xad\x76\x08\x5d\x8b\x51\x99\xc4\xc5\xe8\x50\xa7\x03\ -\x7b\xb9\x24\xe8\x29\x3b\x3d\x34\x76\x4a\xd5\x27\xc4\x37\xfc\xde\ -\xf1\x82\xbf\xfd\xbf\x7c\xe3\x53\x35\xd6\xac\x86\x26\x79\x4d\xd3\ -\xa0\x9d\x46\xb4\x62\x64\x6b\x42\xdb\xd3\x8b\xb9\x70\xa3\x56\x93\ -\x03\x62\x5a\x42\x02\x9b\x21\x4c\x2b\xf4\xf2\x01\x85\x3e\x00\x1a\ -\xa2\x2e\xb0\x49\x21\x14\x48\x3e\x25\x59\xc7\x28\xd4\x28\xd1\x34\ -\xf4\x94\x0a\x92\x4a\xe8\x5c\x52\x68\x21\xf7\x13\x50\x2b\x74\x52\ -\x64\x93\x48\x4f\x19\x5f\xd6\x18\xb3\x55\x0b\xa5\x94\x86\x1a\x56\ -\x6f\xd1\x66\x60\x12\x15\x16\xad\x13\x4a\xd4\x13\xc4\xfb\x4f\x21\ -\x88\x62\x7c\x2a\x93\xba\xa9\xe6\xd9\x34\xad\x1e\xda\xa2\x0c\x2a\ -\x29\x59\x57\xab\xc4\x9c\x48\x0a\x84\x4c\x94\x75\xd5\x8d\xca\xdb\ -\xcc\xa7\x88\x60\xb4\xda\x16\xae\x97\xce\xa0\xad\x47\x91\xe8\x45\ -\x01\x09\x13\x6a\x92\x4a\xd8\x64\xd1\x29\x01\x2d\x41\x37\xc4\x22\ -\x12\x9f\xa3\x07\x33\x7a\x98\x0c\x87\x02\x04\x41\x72\x44\xeb\x4c\ -\x32\x19\x2c\x14\xcf\x29\x43\x8b\xab\x16\x6f\xa1\x37\x42\xca\x3d\ -\xe2\x14\xc4\x86\xd8\x95\x54\xea\x80\xbb\x22\xbc\x7f\xef\x23\xea\ -\xd0\xe2\x27\x1e\x6f\x26\x34\x39\x63\x8c\x90\x94\x50\xd1\x40\xee\ -\x38\x5d\xb4\xdc\x9b\xdf\x41\xbb\xc8\x81\x9f\x70\x6d\x7f\x8f\x57\ -\xaf\x97\x7c\xf8\xad\x9a\x72\x34\x42\x79\xa1\x6e\x03\xa2\x86\x1c\ -\x74\x14\x30\x08\x62\x0c\x75\xd3\x72\x74\x74\xc4\x0b\x37\xae\xb1\ -\x7c\xff\x36\x31\xf4\x68\xad\x09\x83\x30\xfb\x82\x9c\x82\x25\x4b\ -\x18\x34\xd1\x92\xf1\x85\x81\x10\x48\xd6\x80\x33\x2c\xf4\xa7\xdb\ -\x64\x3c\x2a\x85\x6e\x03\x57\x27\xfb\xac\x96\x73\x92\x51\x34\x31\ -\x50\x56\x05\xb1\xe9\xa8\x2f\x16\xb2\x33\xb2\x53\xda\xb4\x42\xb9\ -\x6a\x10\xa8\xf4\x02\xc6\x92\x48\x03\x12\x5c\xd7\x51\x67\x35\xa4\ -\xc9\x86\xb6\x42\x1f\xe7\x3e\x9e\xc5\x8b\x3c\x99\x60\xd2\x16\x6b\ -\xd5\xb6\xe3\x43\x08\x89\x44\x46\x8b\x19\x28\xfe\x27\x74\x63\x30\ -\xc6\x6d\xbd\xcf\x93\xbb\x39\xe8\x73\x32\xc3\xe1\x7b\x1b\xc8\xa6\ -\x87\x99\x4d\x3d\xd2\x1a\xbb\x75\xcf\xa4\x90\xf3\xba\xb1\x98\x5a\ -\x43\xd3\x41\xd5\x94\xc9\xc8\xc6\x1b\x2b\x83\xce\x91\x1c\x64\x48\ -\x4c\xbb\x92\x2c\x0d\x7d\x08\x18\x31\x44\xa3\x41\x59\x44\xfa\x81\ -\x4d\x76\x05\x49\xd5\xa0\x33\x3d\x2d\xa2\x85\x51\x7c\x36\x8c\xb7\ -\x40\x92\x75\xba\x43\x86\xa9\xda\x22\xf8\xec\xf0\xe2\x89\xfa\xd9\ -\xd4\xff\xc8\x17\x64\x2d\xac\x72\x4b\x30\x42\xe9\x3c\xed\x02\x96\ -\x6d\x4f\xc8\x8e\x1b\x87\xd7\xd8\xd9\x7f\x8d\x65\x33\xe7\x68\x76\ -\xcc\xf2\xa4\xa3\x8c\x1a\xe5\x3d\xb4\x0d\x2b\x3d\x02\x2b\xbc\xf2\ -\xc2\x65\xc6\xc5\x1e\x47\xf3\xdb\x1c\xdf\x3b\xe1\x5e\xed\x98\x9a\ -\x3d\xda\x7e\x68\x35\x63\xad\xa5\x8f\xf5\x70\xcd\xd6\x0e\x93\xa4\ -\xb1\xa0\x2c\x75\xbf\xe2\xc1\xf1\x31\x9f\x3b\x38\xe0\x60\x6f\xc4\ -\xbd\xa3\x25\xca\x95\x24\x65\x51\x72\xb1\x3e\x58\x6d\x52\x28\x3d\ -\x48\x54\x7b\x15\xf1\x46\x41\x4a\x88\x32\xc4\x1c\xf1\xd9\x7d\xaa\ -\xc6\xda\x95\x82\x15\xc5\xe9\x7c\xc9\xb8\x18\x53\xf7\x2d\x6e\x5c\ -\x30\x5f\x2e\xa8\xaa\x02\x1f\x2f\x66\xad\xbd\x16\x52\x9f\x48\xb6\ -\xc2\xa0\x09\x4d\x87\xf6\x6b\x6e\xc5\x99\x27\x0a\x0e\x45\x84\x7c\ -\xa6\xc3\xe7\x93\xea\xb4\x9f\xe7\x0c\x6d\x94\x8c\xb6\x06\x67\x87\ -\x22\xf4\x4d\x1f\x25\xab\xd6\xc4\x05\x8f\x62\xbb\x8d\x12\x26\xf4\ -\xe1\xdc\x49\x36\x30\xf7\xac\x7e\xf7\x69\x9e\x75\x03\x93\x37\xb1\ -\x56\xce\x99\xb6\x0f\xe7\x0a\xcd\xf3\x96\x99\x55\x8f\x08\x20\x36\ -\xdd\x07\x15\xb6\x28\x48\xb1\x7b\x54\xeb\x9a\x22\x98\x31\xde\x59\ -\xba\xd4\x93\x28\x31\x46\xd3\xd3\xa3\x94\x25\x64\xa8\x34\xd0\x35\ -\x64\xc5\x73\x41\x60\xca\x11\xd0\xe8\x35\x15\x2d\x43\xdb\x35\x10\ -\x45\x4e\x9a\xe2\x39\xc8\xc2\xc4\x1e\x6d\x35\x15\x99\x42\x69\x54\ -\x88\x84\x3e\x12\xa9\xe8\xcb\x43\xbe\xfe\x8d\xdf\xa4\x51\x13\x84\ -\x84\xf1\x0a\x46\xc5\x5a\xec\xa1\x08\xc6\x30\xd6\x3d\xb9\x5b\xf1\ -\xe1\xed\x7b\x64\xdd\x31\x9a\x16\x5c\xb9\x79\x9d\x09\x89\xfd\xb2\ -\xe3\xa3\x39\x84\x10\x28\x46\x05\xd6\x7a\xba\x94\xd1\x56\x93\xd7\ -\x32\x4e\xc5\x50\xf5\xd3\xf4\x89\x3b\xf7\xef\x71\xf5\xf0\x80\xc5\ -\xb2\x65\x19\x03\xa2\xfd\x96\x40\xfb\x9e\x61\x66\xb6\x58\x1d\xd1\ -\xca\x12\x95\xc5\xd7\x0b\x30\xa0\x93\xa2\x20\xa2\xf3\xa7\x4b\x30\ -\xed\xb4\x01\x31\x1e\x3d\xad\x38\x5e\x35\x54\xae\x24\xad\x3a\xc6\ -\x65\x45\x90\x88\xbf\xe0\xf5\xf9\x66\xc5\xbe\x56\x7c\xd8\x75\x68\ -\xa7\xa9\x30\xb4\x64\x42\x6e\x49\x39\xaf\x3b\xc1\xaa\x6d\x4b\xd8\ -\xb4\x2e\xb5\x54\xa2\xd6\x9c\xe6\xb3\x3d\xeb\x53\x8d\x35\xac\xbb\ -\xc7\x6f\xaa\x5e\x06\x01\x7f\xc2\xa8\xf5\x6b\x51\x1f\x6b\x9d\x52\ -\x8d\xcb\x73\x45\xe1\x67\x3d\xec\xe3\xfd\x90\xb4\xd6\x14\x45\x71\ -\x4e\xb8\xdf\xd5\x0d\x6a\xdd\x3c\x2d\xc5\xa1\x73\xdf\xd9\xd6\x9a\ -\xe4\x4c\x5e\xdf\x94\x1b\x80\x05\x09\x81\xac\x10\x2d\x84\xba\xc6\ -\xdb\x62\xe8\xf5\xbb\xb9\xb1\x94\xc9\x04\xc8\x91\xdc\x83\x71\x0a\ -\xc9\x2d\x5a\x39\x6e\x1e\x8c\xf8\x6b\x5f\x7a\x8d\xaa\x2f\x50\xa2\ -\x69\xdd\xf3\x9a\x88\x87\xa1\x66\x57\x1b\x10\x4d\x96\x88\x41\xf0\ -\xce\x50\x78\x87\x4d\xcf\x1e\xec\x29\x05\x94\x32\x18\xed\xc8\x4a\ -\xd1\xf5\x91\x7b\x47\x15\x75\xee\x79\xfb\x0f\xbe\x4e\xb5\x33\x21\ -\xc5\x82\xe3\xd9\x11\xdd\xbc\x65\xea\x77\x86\x4e\x14\x0a\xb2\x44\ -\x52\x1f\x39\x3c\x3c\xe4\xa5\x97\x5e\xe2\xc1\x49\xe2\x78\x76\x9f\ -\xd9\xbd\x25\xb9\x72\xbc\xf5\xe6\x25\x46\xa5\xe1\x61\xec\xd1\x5a\ -\x31\x99\x8c\x06\xc1\xff\x99\x62\x7d\x08\x58\x5b\x12\x52\xc7\x9d\ -\xfb\x27\xec\xec\xee\x71\xf9\xf0\x80\xfa\xf6\x7d\xa2\x24\xf2\x05\ -\x59\xe1\x42\x39\x54\xaa\x31\x38\x3a\xa5\x19\xc5\x0c\xce\xe2\xc4\ -\xf0\xc2\x74\xc2\x5f\xff\xe1\x57\x3e\x55\x63\xfd\xe8\x83\xbb\xfc\ -\xfe\xf1\x11\x1f\xf4\x4b\x92\x9b\x30\x29\x3c\xb9\x69\x70\xe2\xa9\ -\xfb\x9a\x9f\xfb\xd1\x37\x2f\x74\x7c\xad\x5b\x8a\xac\xf8\x6f\x7f\ -\xeb\x21\x2a\x66\x4c\xce\x84\xa4\x71\x44\xc0\x22\xc4\x73\xf1\xf3\ -\x36\xf3\x80\x90\x95\x9c\x8b\x99\x95\x52\xe7\x96\x43\x19\x3c\xf0\ -\x53\x62\xd6\x14\x85\x14\x03\x4a\xc5\xad\xd1\x3a\xe7\xd0\xb2\x36\ -\xd6\xc4\xba\xba\x85\x6d\x77\x07\xe9\xcf\x7a\x4b\x85\xd1\xee\x5c\ -\x21\xb8\xb5\x76\x5d\xff\x3a\x54\xc4\x0c\xe7\x88\x8f\x5a\xc3\x90\ -\x9f\x48\x4a\x6d\xa1\x75\x56\x64\x35\xcc\x3f\x71\x1d\xaf\x8a\x52\ -\x44\xc9\x88\x28\xb4\x71\x60\x3d\x29\x2c\xf1\x56\x33\xa9\x26\xcc\ -\xe6\x89\xb8\x5a\xe1\x47\x9e\xbb\xf3\x86\x17\x2f\x1b\xaa\xdc\x83\ -\x34\xbc\x79\xb0\xc7\xbf\xfd\x23\xaf\x71\x55\x97\x90\x20\x3d\x47\ -\xdb\xac\x48\x28\x0c\xb2\x91\x11\x66\x80\x8c\x05\xb4\x55\xf4\xcf\ -\xf3\x4c\x5a\xc8\x09\x34\x16\x23\xc3\xc4\x31\xeb\xe1\xdd\xfb\x73\ -\x7e\xed\xf7\xdf\xe1\xdb\x47\x2d\xcb\x56\x53\x59\xb8\xb4\xbb\xcf\ -\xa4\xd8\xc5\x1b\x0d\x4d\x43\x51\x19\x82\x1d\xf1\xf0\xde\x11\x47\ -\xf7\x6e\xb3\x53\xee\x73\xed\xe5\x6b\x34\x4b\xc3\x37\x8f\x67\x7c\ -\x34\xeb\xd1\x02\xab\xe5\x29\xca\x38\x4c\x39\x42\x33\xc4\xee\x7a\ -\x3d\x79\xa9\xd8\x23\xae\xa0\x13\x83\x55\x96\xbb\x0f\x4f\x78\xe1\ -\xea\x15\x76\xc6\x25\xc7\x8b\x15\x62\x2f\x26\x5a\x50\x29\x93\x54\ -\x8f\xf2\x53\x3e\x9a\x0b\xfb\xa3\x29\x38\x41\x75\x99\x6b\x93\x92\ -\xbf\xf5\x67\x5e\xfb\x74\x61\xf0\x4f\xbc\xce\xaf\x7e\xe7\x98\xff\ -\xfe\xff\xf8\xbf\x79\xe7\xe1\x9c\x0e\x8f\xf3\x8e\x7a\xd5\x32\x99\ -\x8e\x2f\x7c\x7d\xf3\x52\x21\x4d\xe6\xef\xfe\xce\x3f\x63\xd5\xaf\ -\x70\x14\x44\xb1\x14\x16\x8c\xf2\x44\xf2\x10\xc2\xa9\x4d\x81\xca\ -\xda\x9f\x2a\xd9\x36\xbb\xff\x9e\x60\xb0\xa8\x75\x17\x06\x81\x1c\ -\x05\x23\x19\x67\x1f\xd5\xb8\x0e\x1d\xb3\x39\xd7\x47\x29\xc4\xf0\ -\x4c\x98\xfb\x2c\x18\xbc\x09\xb6\x45\x06\x25\xcd\x06\x3e\x0f\x85\ -\xdf\x99\x14\x23\xd6\xfa\xf5\x0c\x93\xcf\x2d\x6e\xb5\x99\x85\x94\ -\x71\x10\x86\x65\x25\xf6\x76\xa6\x5c\xbf\x3c\x61\x77\x14\x98\x3f\ -\xbc\xcb\x51\x3d\xe3\x7f\x7b\xf7\x23\x7e\x76\xff\x65\xf6\xfc\x08\ -\xb5\x04\x42\xc3\xbe\x0f\x43\x62\x74\x4d\x1a\x3d\xd3\xd6\x58\xc3\ -\x7f\xec\x1a\xfe\xcb\xda\xbf\x67\x24\x81\x7f\x5e\x07\x57\xd9\xf4\ -\x28\x0e\x10\x1a\x10\xc3\xae\x2b\xf9\x93\x2f\xee\xb0\xeb\xbf\xc0\ -\x7f\xf5\xd5\x77\xe8\x43\x04\x9d\x79\x70\x74\x17\x2b\x47\xb4\x72\ -\x9d\x72\x6c\x69\xe8\xa9\x72\x47\x65\x33\x51\x3b\xde\x7d\xd8\x92\ -\x8e\x17\x5c\x19\x1f\x70\xe3\xf2\x3e\x3f\xfc\xe6\x21\x5f\xff\xce\ -\x03\x2a\xe7\x20\x76\x78\x3d\xa1\x2a\x0c\x61\x19\xd0\x68\x84\x8c\ -\xc9\x91\x94\x1d\xbd\x18\x74\xe1\x79\x78\xb2\x64\x3a\x19\x71\xf5\ -\x70\x8f\xa6\x59\x51\x5f\x30\x75\x11\x52\x44\x1c\x74\xd9\xf2\x2b\ -\xbf\xfb\x36\x5f\xf8\x91\xcf\x91\x4b\x45\x56\x0a\xab\x3a\xd4\x27\ -\x2c\x9a\x79\x2e\x01\x94\x14\x3f\xf5\xda\x01\xa5\xfb\x73\xfc\x67\ -\xbf\xf0\x8f\x98\xe5\x8e\x46\x5b\xf0\x86\x66\xd9\xa0\xd4\xf2\x62\ -\x69\xdc\x38\x34\x38\xc3\x41\x84\x00\x00\x20\x00\x49\x44\x41\x54\ -\x67\x68\x42\x24\x38\x8b\x88\x1b\x26\xc0\xb4\x40\xba\x84\x14\x43\ -\x37\xcd\x6d\xc7\x14\x51\x88\x92\xa1\x67\xc3\x33\x62\xb0\xe7\x1a\ -\x2b\x70\xae\x01\x59\xdf\xf7\x18\x6d\xd0\x9b\x19\x41\x6b\xac\xd5\ -\x18\x3d\x78\x5c\x6b\xed\x56\x08\xfe\x78\x37\x88\xc7\x6b\x48\x37\ -\xb0\xf7\xf1\xf7\x26\xe5\x30\xb3\x6f\xd6\x43\x4b\x6c\x26\x81\xb8\ -\xf6\xe2\x1b\x54\x3f\x54\xbb\x28\x6d\x31\x86\x75\x6e\x73\x50\x8f\ -\x18\x3b\x5c\xcb\xc3\xfb\xf7\x99\xdf\x7f\x9f\x2b\x57\x5e\xe1\x73\ -\x6f\xbe\xc2\x83\xd9\x09\xbf\xf0\x5b\xef\xf0\xe6\x9b\x2f\xf0\xc3\ -\x37\xf6\x18\x6b\x20\x43\xd2\x8a\xa4\x12\x73\xa3\xd8\x8d\x7f\x04\ -\x63\x53\x03\xb9\x35\x94\xc9\x59\x94\x1e\x3a\xf0\x23\x42\xa7\x9e\ -\x1d\xf5\x16\xd9\xd2\x23\x64\xa7\x30\x4e\x63\xe9\x88\xcd\x12\x5d\ -\x78\x5e\x3c\x1c\xf3\xd6\xd5\x9b\xa4\xee\x01\xbb\x07\x13\xc4\x5e\ -\x63\x76\xb4\xa4\x48\x19\x42\xa0\x2a\x14\x5d\xf2\x28\x67\x78\xfd\ -\xe5\x17\x79\x39\x96\x7c\x78\xe7\x7d\x8e\xee\xdd\x67\x79\x6a\xb9\ -\x3e\x86\x9b\x37\xae\x73\x3c\x3b\xa5\xed\x05\x37\x1e\x21\x66\xe8\ -\x73\x9c\x73\x44\x72\xc2\x69\xa1\x4f\x89\x44\x41\x97\x35\x36\x2b\ -\xee\xdf\xbf\xcf\x0f\x7d\xe1\xf3\x3c\x7c\x78\x9f\xba\xb9\x60\x1e\ -\xd3\x82\xf6\x8e\x65\x1b\xf9\x5f\x7f\xfd\x6b\xfc\xcc\x6b\xd7\xd8\ -\xa9\x26\x4c\x5c\x01\x31\x80\x54\x9f\xae\x28\x42\x3f\x64\xd4\xc3\ -\x9f\xbb\x39\xe1\xb7\x7e\xe0\x8b\xfc\xc2\x1f\xbc\x47\xb7\xb3\x87\ -\xcd\x8a\x2a\x5b\x90\x8b\x11\x60\x3a\x0f\x0b\x9c\x05\xe3\x09\x26\ -\x51\xb7\x91\x4e\x65\xc6\x24\xd4\x9a\x2c\x1d\x3c\xd2\x93\xc7\xd6\ -\xf3\x62\xd6\xa7\x12\x9f\x21\x09\xd6\x9a\x75\xbc\x94\x71\x45\x81\ -\xf5\xd0\x2e\x3a\x36\x71\x72\x8e\x11\x93\x84\x18\x13\x59\x0c\x96\ -\x4d\x41\xb8\x3d\x17\x8b\x3e\x82\xb4\x76\xeb\x85\x9f\x14\xd7\x9e\ -\x34\xdd\xb9\xee\x0d\x1b\xcf\x39\x1c\xc7\xb0\x3b\xb6\x74\x39\x50\ -\x2f\x3d\x29\xf4\xd8\xd2\x92\xa2\x01\xd5\x93\xd2\x50\xf5\x40\x5a\ -\x92\x03\x18\x9b\x69\x1b\xcf\x77\x1e\xdc\xe3\xde\xac\x46\x26\x9a\ -\x2f\x5f\xbb\xcc\x3f\xfc\x95\x5f\x63\xfe\x43\xaf\xf1\x93\x5f\x78\ -\x8d\x89\x74\xf8\xa6\x47\x8c\x67\x62\xfc\x20\x97\x94\xb3\xeb\xee\ -\xe8\xc7\x1e\xac\x1b\xe0\xfd\x5a\x9a\x9c\x73\x84\x38\xb0\xdc\x28\ -\x8d\xd7\xcf\x26\x28\x24\x1b\xa2\x0e\x8c\x54\xc1\xb2\x2e\x71\xd3\ -\x48\x30\x25\x23\xad\x89\xb9\xe6\x4f\xed\x67\x7e\xe5\x0f\x3e\xe2\ -\x83\xe3\x31\xe3\x83\x3d\x7c\x61\x11\xab\x91\x6c\x89\xc9\x50\x90\ -\x99\x77\xc2\x6f\xbf\xf7\x4d\xc6\xd5\x21\x85\xda\xe1\xe6\x1b\xaf\ -\x90\x8e\x67\xd4\xbd\xe6\xbb\x1f\xdd\x45\x67\xcd\xc1\xa4\x44\x74\ -\xa6\x1a\x59\xf2\xa8\xa4\x09\x09\xb1\x05\xab\x98\xd1\x39\xb0\x33\ -\x12\xea\x76\x4e\x54\x91\x26\x15\xbc\xfd\xce\x87\xbc\xf9\xd2\xe7\ -\x38\x7a\xff\x03\xda\xbe\x27\x8b\xe0\xb4\xc3\x46\x41\x48\x04\x0b\ -\xbd\xc9\x98\x54\x0c\x8b\x83\xe9\x81\x2b\x10\x11\x0c\x43\x3d\x32\ -\xa2\x89\x5e\x18\xb5\x8a\xbd\xb0\xe2\x96\x7d\x93\xff\xe0\x97\xfe\ -\x90\x9f\xfb\xf1\x1b\xfc\x9b\x5f\x7a\x11\xb2\x47\x3f\x6f\xad\x1d\ -\x75\x31\x36\x5a\x54\xc1\x42\x29\x76\x5c\x03\xd1\xd0\x2b\x83\x77\ -\x0d\xab\x65\x64\x6c\x0a\x92\x5c\xc1\x48\xc0\xb2\xe2\x07\x5f\xd9\ -\xe5\x7f\x7c\x7f\x8c\x6e\x32\x5a\x77\x74\xaa\xb8\xb0\x36\xba\x55\ -\x8e\xdb\x25\xec\xeb\x23\x8e\xdb\x82\x58\x5d\xa2\xac\x17\x68\x76\ -\x41\x2d\x30\x52\x00\xed\x20\x46\xcd\x06\xc9\x9a\x6c\xe2\x00\x8b\ -\xb1\x84\xac\x70\x92\xc0\x40\x9f\x2d\x45\x1a\x96\x77\x59\x99\x88\ -\xce\x4f\x9f\xe8\xac\x73\x6e\x9b\xb6\xf1\x7e\x68\x34\xb6\x5c\x2e\ -\xb0\x38\xb4\x35\x10\x7a\xa2\x44\x9c\x1d\xe2\xd2\xbe\xef\xe9\xfb\ -\x78\xae\x4f\xef\x59\x88\xfb\x38\xe4\x7d\x22\xc3\x65\xdd\xc7\x3c\ -\xf1\xd9\xf5\x5a\x66\xb3\x06\x53\x1a\x8a\x62\x82\xd2\x8a\x4e\x22\ -\x7d\xdf\x93\x72\xc0\xd8\x92\xb6\x5d\x52\x16\x96\xcb\x97\xa7\xbc\ -\xfa\xea\xab\x9c\x1e\x2d\xb9\x77\xfa\x90\xe5\x72\x49\x16\xcd\x2f\ -\x37\x97\xd8\x2b\x2e\xf3\xee\xdb\x35\xff\xe0\xdd\xaf\xb3\xe7\x0d\ -\x92\x13\x75\xd7\x61\x5c\xc1\x2a\xf5\x8f\x60\x75\xe2\x4c\x17\x47\ -\x8f\xb5\x96\x10\xba\x21\x86\xd6\xb2\xcd\x07\x5b\xa3\x18\xb9\x02\ -\x6f\x2d\xfa\x79\x83\x4d\x05\xd0\x82\xef\x1a\x1c\x9e\xff\xf8\x2f\ -\xbd\x45\xe9\x1d\x74\x0d\x05\x99\x83\xfd\x7d\xde\x7a\xeb\x2d\x4e\ -\x4e\x22\x0f\x4f\x67\xd4\xcb\x9e\xd0\xbd\x48\x51\x16\x43\x7b\xf3\ -\xae\x67\x54\x16\x4c\xca\x82\xb6\xa9\xa9\xeb\x39\x7a\xb9\x60\xda\ -\xf7\xdc\xf8\xdc\xeb\x3c\x78\x38\x83\xd4\xd2\xae\x5a\x26\x93\x09\ -\xa3\xb2\xc4\x5e\x1e\xd3\x67\x35\x68\x80\xad\x67\xd5\xd4\x88\xd1\ -\x28\x33\xa2\xef\x5a\x96\xa7\x33\x6c\x08\xd8\xbc\xe4\xa0\x80\xd3\ -\xd4\x53\xc7\x8c\x92\x84\xa8\xa1\xfd\x8c\xca\x19\x2d\x99\xdd\x5e\ -\x10\xad\x08\x39\x0d\x5d\x13\x8d\x41\xa2\x60\xd4\xb0\x1f\x9b\x8c\ -\x32\x42\x12\x45\xef\x0b\xbe\x13\x33\xff\xf9\x3f\x79\x87\xff\xe1\ -\x9f\xbf\xc7\xf5\xcb\x2f\x62\xcc\xb3\x5d\xf7\xf3\x7a\x44\x3d\x2f\ -\x8f\x5f\xaa\x92\x65\xce\x8c\xf2\x92\x3e\x59\xb2\x11\x52\x6e\x99\ -\x16\x53\x7e\xfe\xdf\xf8\x32\x87\x31\x0c\xa8\x4c\x69\xbc\xf7\xe7\ -\x38\x11\x11\xe1\x6f\xfd\xe2\xdb\x17\x83\xc1\xdd\x29\xec\xef\x71\ -\x7f\x9e\xf1\x45\x49\x6a\x23\x88\x10\x54\x06\x6f\x18\xa2\x28\xfd\ -\x31\xcc\xfb\x68\x71\xb6\xef\xed\xfe\xed\x46\x0c\xb1\xe9\x32\xd8\ -\xf7\x3d\x46\x59\x94\x76\x68\xcd\x20\xa0\x57\x6b\x58\xb8\x16\x3c\ -\xe8\x75\x93\xee\xbc\x11\xd7\xca\x79\xc3\x7c\x7c\x31\xdf\xa1\x16\ -\xf4\x4c\x4c\x1b\xe3\x13\x2f\xea\x6c\x5b\x18\xad\x33\x8a\x8e\x62\ -\x23\xa9\x5b\x9f\x33\xc6\x48\x59\x8e\x48\x5d\xc3\x9d\x7b\xa7\xdc\ -\x7b\xf8\x80\x69\xb5\xc7\x0b\x2f\xbe\xc4\xea\xa4\xe5\x6e\x7d\x1f\ -\xbb\x3c\xa1\x5e\x24\xee\x97\x8e\xae\x2a\x59\x54\x25\x29\x07\x8e\ -\x4f\x4f\x69\x9a\x8e\x7e\x1b\x13\x6f\x6a\x79\x0d\x82\x26\xa5\x05\ -\x31\x46\x9c\x1a\x1a\x91\x0b\x03\x49\x66\xc9\x8c\x0b\xcf\xb8\xa8\ -\x28\x9c\x41\xe7\xf4\x9c\x99\xb7\xa0\xd4\x8e\xae\xed\x19\xe9\x96\ -\x52\x8f\x29\x88\x44\x95\xb0\xae\xa2\x5d\xcd\xb8\x77\xf7\x36\x31\ -\x8c\xb9\x71\xed\x2a\xd5\xa8\xa0\x18\x55\xc4\xd5\x02\x53\x94\x50\ -\x95\x74\x47\x2d\x07\x07\x07\xec\xec\x5c\xe3\xe8\xf6\x7d\xee\x9f\ -\x1e\x93\xa4\x66\x71\x7a\x87\xe3\xb4\x4b\x1c\x1d\x92\x63\x4f\x59\ -\x4e\x68\x42\xa0\xee\x65\x80\xec\x5a\x53\x9c\x36\xec\x57\x15\x51\ -\x2b\xb4\x31\x98\xe9\x84\xce\x4e\x28\xd0\xec\x56\xfb\x5c\x1d\x43\ -\x0c\x8a\x36\x34\x04\x31\x38\x65\x51\x7a\x58\x19\x1e\x05\xb5\x1a\ -\xc8\xab\x96\x8c\xb1\x1e\x65\x0c\x49\x3a\xcc\x7a\xb5\x1e\x6a\x87\ -\x96\x8c\xd7\x01\xd3\x9e\x12\x8d\x42\xfa\xcc\x9d\x26\xf3\xa0\x3d\ -\x42\x64\xf5\x5c\x02\xee\x22\xc6\xaa\xdb\x8c\x14\x16\x2f\x99\x3e\ -\x59\x46\x4e\x58\xe6\xcc\x98\x15\xfb\x41\xd6\x10\x74\xdd\xfc\xcf\ -\xb9\x75\x5a\xd0\x92\xd6\xad\x62\xff\xe9\x77\x2f\x16\xb3\x56\x5d\ -\x4b\xbe\x77\x97\xce\x1d\x52\x69\x0f\x49\xd0\xd6\x12\x62\xa2\xcd\ -\xb2\xb5\x97\x01\xad\xa9\x2d\xc9\xb4\x21\x9a\x36\xd7\xc6\xd6\xd1\ -\x3d\x16\x46\x3e\x35\xcf\x1a\xe3\x36\xb5\xb2\x59\x3f\xb4\x1c\x17\ -\xe4\x4e\x08\x21\x63\xb4\xc2\x6a\x37\x60\x6d\x59\x33\x5c\xe8\x27\ -\x1c\x4f\x6d\x7f\x3c\xfe\xd1\xc7\x30\xfa\xb6\x6b\xe9\x63\x8b\x31\ -\x6f\xde\x76\xc3\xaa\x6b\x29\xf4\x64\x2d\x58\x6f\x71\x66\x18\x88\ -\x39\x46\x52\x32\x18\xeb\xc8\xb4\xdc\x3f\x3e\xe1\x28\x2d\x19\xef\ -\xef\x32\xf6\x13\x2e\x5f\xba\x8a\x6b\x5a\x66\xb3\x39\xcd\xaa\xa6\ -\x6d\x7b\x1e\xce\x1a\xca\x71\x49\xb5\x77\x85\xea\x92\xa6\x9b\x47\ -\xda\xae\x63\xd5\x36\x84\x28\x9b\x4c\x0d\x82\x23\x61\x50\xd9\xac\ -\x29\xf7\x44\x4e\x61\x58\x79\x5c\x55\x68\x65\x21\x69\xda\xe7\xb1\ -\xc9\x61\x81\x4a\x23\x8c\x2f\xc8\xf4\xf8\x9c\x21\xb6\x44\x03\x36\ -\x19\x8c\x55\x84\x6e\x80\x6d\x47\xb3\x53\xca\xca\x91\x7f\x78\x84\ -\xd6\x0a\x65\x2d\xfd\x6a\x41\xc6\x71\xeb\xa3\xbb\x7c\x57\xcd\x39\ -\xd8\xbf\xc4\xc1\xcd\x97\x99\xb4\x0d\x66\x6a\x70\x6d\xcf\xee\xa4\ -\x20\xc5\xcc\xc1\xc4\x33\x3f\x59\x92\xfa\x19\x79\x2d\x46\x29\xbd\ -\xe6\xf0\xf2\x94\xba\xef\x68\xfb\x1a\xe3\x1c\xd6\x81\x55\x42\x9d\ -\x8e\x38\xbc\x52\x31\x43\x71\x24\x3d\x7d\x14\x42\x1e\x72\xa4\xe4\ -\x81\x3f\x28\xd5\x68\xdd\x72\x47\x90\x6c\x48\x7d\x40\x72\xc6\x39\ -\x83\x84\x88\x4c\xc6\xcc\xba\x25\x1e\x41\xdb\x84\xd2\x19\x31\x99\ -\x1c\x13\x75\x7e\x88\xcd\x7b\xcf\x41\xc1\x17\xf3\xac\x78\x85\x98\ -\x4c\x8f\xa6\x4f\x1e\xa4\xa5\x29\xc7\xa8\x7a\x85\xa7\x21\x29\x0f\ -\x22\xc4\x35\x52\xeb\xfb\x1e\x63\x0a\x86\xbe\xce\x82\xe1\x62\xc6\ -\x1a\x26\x57\x58\xad\x8e\x30\x65\x41\xe8\x5b\x92\x44\xac\x33\x28\ -\x65\x50\x62\xb7\xdc\x92\x9c\x4d\xc7\xe4\xcd\x08\x7f\xba\x31\x6e\ -\x0d\xf6\x29\x31\xad\x2d\xaa\x12\xe7\x1c\x4d\xd3\x10\x63\x64\x34\ -\x1a\xd1\xb6\x2d\x2a\x6a\xfa\x18\x29\xad\x22\x49\x42\x6d\x96\xd7\ -\x50\x86\xf4\xd8\x4a\x70\x8f\x37\x47\x7b\x9c\x80\x7a\xfc\xb5\x39\ -\xd3\xeb\xf7\x71\xc8\x0c\x10\x93\x90\x8d\x1e\x52\x34\xd2\xd3\x75\ -\x61\x2d\xff\x63\x40\x00\xa2\xc9\xa9\x23\x09\xeb\x66\xd9\x70\x32\ -\x9f\xd1\xd0\xa1\xc6\x9a\x17\xa6\xb0\xbb\x7b\xc8\xa2\x09\x3c\x3c\ -\x59\x50\xf7\x35\xf5\xaa\xc6\xa7\x25\x55\x55\x30\x32\x96\x6a\xa2\ -\xb0\x95\xa7\xed\x3b\xea\xb6\x21\xa4\x61\xdd\x1a\x67\x0d\x5d\x34\ -\x28\x04\x94\xa0\x9d\x60\x0a\x8b\xae\x34\x58\x45\x4c\x81\xf0\x1c\ -\x63\x4d\x95\xa3\x5d\x45\x54\x69\xd9\xb5\x9e\x68\x32\x4e\x34\x56\ -\x43\x5a\x75\x14\xbe\xe2\xd2\x95\x6b\xbc\xfc\xca\x35\x3e\xbc\x7d\ -\x87\xd3\xd9\x31\xba\x18\x41\x8e\xc4\xae\xc3\x8e\xa6\x8c\x3a\xc3\ -\xd8\x15\x1c\x9f\x2e\xb9\xbd\x6a\x91\xe9\x0e\x6f\x5e\xbe\xca\x2a\ -\x26\x3e\xbc\x37\x63\x52\x16\xe4\xd4\x21\x78\xac\x1b\x33\x39\xd8\ -\xd4\xad\xc2\x24\x67\x5c\xf6\xd0\xf5\xd8\xec\x50\x9d\x66\xd5\x76\ -\x8f\x42\x17\xa0\x9b\xf7\xa4\x3a\x41\x06\xad\x3c\x8e\xf5\xd2\x91\ -\x0a\x96\x58\xf4\xba\x17\xd6\x20\x09\x49\xe0\x2c\xc9\x59\x7a\x05\ -\xd5\xf1\x09\x6e\xba\x43\xdd\x27\xfa\x90\xc9\xa2\x50\x6e\x87\x0c\ -\x14\x4e\x13\xe3\xf3\x84\xfc\x17\x0b\x1a\x45\x09\x99\x88\xd2\x1e\ -\x55\x79\x42\xea\x99\xb5\x89\x1c\x7b\x30\x91\x2c\xc5\x80\x12\x18\ -\x16\xad\x5e\xe3\x81\x81\x2d\x17\x41\x2e\xa8\x0e\x56\x4d\x3d\xe4\ -\x54\x55\x4f\x50\x0d\x49\x09\x7d\x14\xca\x3c\xa6\xa0\xa0\x27\x6e\ -\x21\xb0\x6c\x08\x54\x64\x2d\x8a\x50\x4f\x25\x84\xb7\xdd\x37\x9f\ -\x12\x26\x58\x6b\x2d\x6d\xdb\x6e\xa1\xb0\x88\xd0\xb6\x3d\x23\x3f\ -\xc6\x39\x0f\x84\x47\x71\xa5\x19\x9a\x71\x1b\xfd\x58\x23\xe9\x47\ -\x6b\x2b\x3f\xe6\x23\x9f\x1c\xa7\x9c\x5d\xf6\xf1\x49\xc6\x9a\x65\ -\x7d\x73\x5a\x21\x49\x13\x72\x8f\x4a\x9b\x32\x2f\x4d\xdb\xf4\x94\ -\x85\xa5\x1c\x59\x5c\x55\x12\xea\x44\x1f\x03\x5d\x1f\x48\x92\xb9\ -\x77\x5a\x33\x1e\xf7\x8c\xc6\xbb\xbc\x78\x70\x95\xa6\x0f\xcc\x57\ -\x4b\xba\xae\x67\xb5\x98\x0d\x4d\xcd\x0a\x8f\xf7\x25\xae\xaa\x28\ -\xad\xa5\xe9\x7a\xfa\x18\x48\x31\xe0\xd6\x4a\x20\x14\x58\xa5\x31\ -\xca\x22\x32\xb0\xd0\xd2\x67\xbc\x7b\x36\x9b\x68\x42\xc0\x64\x4d\ -\x19\x23\x87\xd5\x98\xae\x0d\xb8\xc2\x61\x55\x86\x4a\x71\xfa\x60\ -\xce\xbb\xef\x7d\x9b\x4b\x87\x0a\xed\x1c\xa3\xf1\x74\x48\x9d\xf5\ -\x11\xed\x1c\x42\xa2\x9b\x2d\xf8\xe2\x8d\x4b\x14\x2f\x55\xbc\xf7\ -\xfe\x77\xb8\x55\x1f\x31\x6a\x2b\xe6\xc7\x47\x28\xa9\xe8\xfb\x44\ -\xdf\x46\x1e\xdc\x3f\xa5\x70\x43\x69\xa3\xa8\xe1\xff\xb3\x18\x59\ -\xf4\x62\x49\xd3\x34\xc8\xba\x41\xf8\x62\x55\x3f\x12\x9e\x88\xe1\ -\xa8\xeb\x07\x0a\xc4\xba\x61\x60\xe5\x21\x61\xdf\x4b\x64\xc7\x05\ -\xa4\x6b\xf0\x79\xd0\x45\x67\x6d\x08\xba\x64\xde\x07\x92\x2b\xd1\ -\x45\x47\x67\x60\x21\x2d\xd7\x77\x46\xd4\xb3\x53\x4c\x8e\xa0\x84\ -\xb8\x98\xa3\xca\xe9\x73\x52\x63\x5c\xc8\xb3\xfa\x9c\x11\xef\x90\ -\xb6\x23\x24\xf0\xde\xb1\xaf\x15\xbb\x93\x1d\x8e\xc2\x0e\x53\x13\ -\x41\x19\x8c\x51\xa4\x14\xb6\x0b\x65\x8b\xac\x97\x01\xd5\x17\xab\ -\x1a\x1b\xa5\x16\xef\xa0\xcd\x11\xad\x21\xba\xe1\xb9\xe7\x08\xc4\ -\x8c\xb8\xf5\x32\x9c\x18\x86\xe6\x80\x83\x64\x76\x78\x4f\x6f\x3d\ -\xee\xd9\x49\xeb\x79\x10\x18\xc0\x76\x5d\x47\xdf\xf7\x78\x3f\x2c\ -\x8f\xd1\x34\x0d\x6a\xdd\x7a\x34\x84\x48\x65\x05\xad\x2d\xe4\xe1\ -\xa4\x31\x67\x78\x5e\x5b\x97\xe7\xb1\x81\x67\x3c\x93\x3c\xb6\x4e\ -\xcd\xf0\xe7\xc3\xe2\x50\x29\xa6\x41\x66\x68\x1e\x7d\x1e\x63\xa4\ -\x2c\x4a\x50\x89\xba\xad\x59\xac\x56\x58\x3c\xe5\xa8\x42\x10\x9a\ -\x7e\xc5\x7f\xf1\xef\xfc\x79\xa4\x8f\x18\x25\x8c\x7c\x39\x74\xfb\ -\x4f\x11\x57\x78\x62\x86\x24\xfd\x96\x89\x36\xc6\x6d\x65\x92\x9b\ -\x46\xe6\x4a\xa9\xb5\x28\x9b\x6d\x33\x39\xaf\x87\xae\xfb\x92\xf2\ -\x73\xd7\x98\xd5\x79\x07\x2c\x68\xc9\xf4\xa2\x99\xf8\x44\xcc\xa0\ -\x72\x24\x92\xd9\xdd\x3b\x60\xb2\xb3\xcb\x7c\x55\xd3\xe7\x44\x8c\ -\x3d\xf5\xaa\xa1\xac\x3c\x18\x87\x8a\x2b\xde\xb8\xba\xcb\x4f\xaa\ -\xc0\x44\x29\xfe\xb5\xcf\xff\x08\x4d\x35\x66\x9c\x2c\xc7\xf3\xfb\ -\x18\x3f\x46\xb3\x36\xa4\xb5\x40\x7f\xa3\x0b\x56\xda\x12\x43\xc3\ -\x7a\x41\xce\xb5\x37\x5d\xb7\x6e\x5d\x7b\x16\xaf\x85\x26\x25\x92\ -\xd2\x68\x6d\x71\x59\xa3\x8d\x42\x8c\xd0\x91\x89\x41\x61\x63\x60\ -\xe2\x35\x49\xa0\xd1\x15\xbf\xf1\xc1\x11\xbf\xf8\x7f\xfd\x1e\xb3\ -\xa4\x70\x66\x87\xc5\x6c\xc1\x35\xd7\xf2\x9f\xfe\x95\x9f\xe0\x3a\ -\x01\x92\x41\x69\xc1\xcb\x8a\xe5\x73\x7a\x74\xe9\xe7\x78\xb6\xe7\ -\x19\xab\x69\x7b\x64\x3c\xc6\x87\x15\x21\x79\xb2\x33\x24\xdd\x11\ -\x1b\x38\x24\xd2\xaf\x43\xac\x24\x79\xbb\x8e\xad\x00\x46\x0f\xc8\ -\xc1\x70\xb1\xb6\x2e\xad\x1d\xcc\xb0\x6d\x3b\x46\x5a\x0d\xc2\x7d\ -\x6d\x88\x0c\xda\x80\xcd\x74\x74\xbe\xf4\x12\xb6\xbd\x6e\x9f\x41\ -\xb0\x89\x3c\x3d\xb1\x63\x37\x1d\xf2\x94\x52\x5b\x28\x5c\x14\x8e\ -\x7a\x55\x33\x9b\xcd\x18\x4d\x0b\xf4\xa8\x80\xfc\xa8\x6c\x4c\x92\ -\xfa\x38\xf4\x3d\xeb\x45\xf5\xb3\x61\xf0\x93\xde\x3b\xdb\x7f\x38\ -\x8b\x1a\x4a\xbf\x78\xb4\x2a\x79\xca\x6a\xbb\xd2\x1d\x5a\xd3\xd6\ -\x35\x8b\xc5\x40\x08\x59\x57\x91\x07\x5d\x39\xa3\xd1\x88\x1d\x3d\ -\xe7\xf5\xcf\xbd\x8c\x4b\x81\xdc\xd6\x94\xd5\x18\x49\x91\x36\x46\ -\x9c\x2f\x91\x5c\x6c\xe7\x0b\x25\x83\xca\x44\xcb\xd9\x7b\xe9\x86\ -\xf4\xcd\x3a\x46\x5f\x5f\xd4\xfa\x73\x4b\x7e\x4e\x17\x6d\x1d\x3b\ -\x82\x0d\xb8\x6c\xe9\x64\x8a\xa4\x23\x92\x39\xa0\xd0\x15\x51\xb5\ -\xdc\xba\x7d\x97\xe9\xee\x1e\x92\x77\x79\x78\x7a\xc2\x6c\x31\xe7\ -\x64\xbe\xe0\x8a\x3b\x20\x23\x14\xb9\x63\xbf\x18\xf3\xa3\xaf\x5e\ -\x66\x9c\x7a\x90\x96\x5e\x07\x5c\x1f\x60\x77\x32\x10\x70\x02\xba\ -\x28\x48\x4d\xc2\x94\x25\xe4\x61\xb1\x66\xa5\x0d\x59\x7b\x62\xd7\ -\x63\xf5\xb0\xca\xdd\x50\x8a\xb8\xbe\x5f\x63\x51\xb9\x1d\x42\x15\ -\x63\x86\xb6\x07\x61\xe8\x04\x82\x57\xb4\x24\x9c\x19\x43\xe8\x30\ -\x64\x72\x56\xd4\xa3\x8a\x07\x0b\x8f\x74\x2b\x54\x59\x32\x0b\x91\ -\x62\x52\xe2\x9b\x7b\xbc\x32\x5a\xf2\xc3\x97\xa6\xa8\x5c\xd0\xf4\ -\x89\x6a\x3c\x86\xd0\x5f\x0c\x06\x3f\x2f\x66\xb5\x53\x6a\xd1\x8c\ -\x72\x40\xf4\x88\x5a\x34\x45\x61\x48\xb9\x84\xba\x45\xd9\x0a\x18\ -\xc6\xcd\x6a\xb5\x22\x84\x84\x10\xd0\x7e\x9d\xd7\xbf\xe0\x82\xde\ -\x4b\x67\xa9\x30\x28\xed\x71\xc2\x90\xe3\x2e\x15\x5a\x81\x14\xfa\ -\x63\xc0\x32\x9f\x79\x23\x2b\xd0\xf2\xbd\x11\x6c\xda\x58\x47\x16\ -\xe8\xfa\x40\x9f\xf3\x50\x5e\xd5\x3a\xc6\x45\xc9\xdf\xf9\x8d\x7b\ -\xd4\xc5\x04\x13\x1b\xf2\xf2\x88\x99\xb3\x8c\x65\x49\xd2\x10\x95\ -\x10\x95\x10\xc8\x1f\xdb\x7b\x49\xf4\x92\xce\xbd\xb7\xf9\x7e\x54\ -\x42\x14\x88\x32\x08\x9c\xcf\xee\x9b\xf7\x6d\xd6\x68\xe6\x74\xe5\ -\x84\xb6\x6d\x69\x4b\x87\xd2\x89\x9c\x14\xca\xb5\xa0\x66\xdc\x33\ -\x23\xfe\xe9\x47\x27\x4c\xdd\x08\x91\x44\xbd\x38\x46\x15\x09\xeb\ -\x3c\xff\xf0\x77\x8e\x69\x00\x6f\x7a\xca\x78\x0c\x52\x93\xb2\xc1\ -\x99\x1d\x4c\x74\xb8\xa0\x30\x32\xe4\x51\x95\x16\x94\x1e\x0a\x13\ -\x45\xcb\x50\x8a\x67\x2d\x11\x88\x0a\xb0\x16\x31\x86\x64\x2c\xbd\ -\x31\x04\x6b\x40\xbb\xa1\xcc\x4e\x0c\x39\x0c\x79\xe5\x1c\xf3\x40\ -\xd0\x84\x04\x51\xe3\xd4\x1e\xab\x68\x51\xb6\x43\xfc\x04\x15\x66\ -\xe0\x22\x1a\xc7\xdf\xfb\x9d\x19\xb7\xbe\x3b\xe7\xdb\x0f\x6f\x11\ -\x4d\xe4\xcb\xaf\xde\xe0\x2b\x1f\x35\xa4\xc2\x53\xc8\x31\xbd\x9b\ -\xd2\xe5\x25\x65\x3f\x07\x23\x44\x3d\x22\x47\x45\x52\x11\xa5\x22\ -\xda\x78\xb0\x9e\x9c\x34\xca\x4f\xc8\xd9\x92\x71\x08\x86\x9c\x41\ -\x82\xc6\xe8\x12\xc1\x90\x92\x90\xe4\x51\x5b\xdd\x9c\x23\x09\x4b\ -\x52\x86\x94\x21\x29\x21\xf9\x21\x1e\x4d\x62\x71\x52\xb1\x12\x30\ -\xb6\x82\xd3\x1e\xed\xa7\x1c\x05\xf8\xca\x3b\xef\xf3\x50\x8d\x68\ -\xed\x01\xda\x1a\xea\x00\x33\x7f\x9d\x7f\xf0\x9b\xf7\x38\x95\x09\ -\xd8\x8c\xd6\x35\x2b\xb3\x3e\xf6\x33\x77\xfd\xec\x5d\x9b\x67\xee\ -\x59\xa0\x24\x93\xf5\x14\xc1\x50\x29\x85\xee\x0b\x5c\x14\xb2\x77\ -\xb8\xd5\x1d\xf0\x96\x5b\x66\xc2\xdf\xfd\xcd\x6f\x23\x29\xa3\x4a\ -\xc3\xbc\x8b\x68\xd3\x7d\x6c\xdc\x3d\xbe\x67\xa5\x9f\xb9\xfb\x9c\ -\x31\xcb\x88\xb6\x9e\x53\x9b\xf0\x2a\x91\x64\xc2\xb8\xb9\x83\x61\ -\x85\x8b\x35\x24\x85\x4b\x96\x2e\x95\x8c\xe2\x09\x2b\x53\xd0\x50\ -\xe0\x42\x20\x11\xb0\x85\x87\xee\x1e\xc6\x65\xc8\x0d\xc9\x38\xba\ -\xbe\xa6\x71\xbb\x4f\xbd\x2e\xbb\xe9\x84\x9f\x78\xe4\xd9\xbc\xaf\ -\xb9\xd5\x64\x7e\xe9\x5b\xb7\x78\xf5\xeb\x53\xfe\xfa\x17\xf6\x98\ -\x1c\x1c\xa0\xe7\x89\xae\x2e\x60\xf4\xc9\x0a\x50\xda\x2e\x60\xc7\ -\x16\x52\xe2\xa0\x9a\x70\xdc\x76\xd8\xd6\xe0\xfc\x98\xba\x71\xdc\ -\x2f\x3c\x7f\xff\x9f\xfd\x2e\xbf\xf2\xb5\x77\x58\xb8\x5d\x76\x76\ -\x27\x94\x40\xdf\x47\x92\xb4\xfc\xe3\x6f\xc1\x95\xdf\x3c\xe5\x67\ -\xbe\xb8\xc7\xd5\xc9\xab\x10\x12\x1a\x85\xb6\x40\xdf\x80\x1f\x91\ -\x52\x24\xc5\x80\x28\x85\x36\x6a\x80\x8d\x6a\xe8\x14\xd1\x77\x19\ -\x5f\x8e\x07\x28\xd5\xf7\xe4\xac\x30\xd6\x62\x36\x55\x42\x31\x32\ -\x2a\x2b\xe8\xd3\x20\x00\x88\x1a\x15\x34\x7a\x32\x22\xe5\x96\x76\ -\xec\x91\x7e\xe8\x53\x04\x19\x66\x0d\x7e\xb2\xcb\x22\x79\x7e\xf5\ -\xb7\xde\xc1\xed\x08\xb6\x8e\x84\x59\xe6\xc4\x1b\x72\x48\x84\xe6\ -\x01\x2f\x5c\xdd\xe1\xcf\xbc\xb8\x83\x49\x86\xb2\x98\x20\xf5\x92\ -\xd4\xf4\x88\xad\x70\xb6\x24\x34\x82\xb5\x0e\xe1\xd9\xa2\x0c\x75\ -\xc1\x1e\x48\x3b\xa9\x85\x64\xe0\xca\x25\x3e\xe8\xe0\xbf\xfb\xca\ -\x57\xf9\x8d\x6f\xbe\xcf\xb8\xb8\xc2\xea\xe8\x21\xe5\xa8\x43\x9b\ -\x31\x27\x8d\xe3\x57\xff\xe0\x84\xcf\x5f\xb9\xc7\xcf\x7e\xe9\x2a\ -\xd3\x0a\xdc\xec\x1e\x54\xbb\xcf\x71\xac\x17\x5c\x3f\xf6\x39\x8e\ -\x31\xec\xdd\xe4\xc3\x25\xfc\xcf\xbf\xfe\x2e\xef\xdd\x3f\xc1\x8e\ -\xaf\xd0\x47\xc5\xc8\x4f\xe8\x9a\x15\xca\x5d\x0c\x86\x6b\xe3\xf1\ -\x85\x66\x19\x23\x99\xb0\x2d\x4f\xec\x94\xa3\xb1\x53\x92\x6b\xb0\ -\x29\x93\x34\xf4\xe5\xa0\x9c\x4b\x29\xe0\xb4\x45\x8b\x22\x36\x15\ -\xa7\x8d\x63\xcf\xef\x13\x94\x47\xa4\x27\xe1\x18\xd9\x09\xcb\x46\ -\xf3\x34\x35\xab\x4d\x49\x08\x79\xb3\xc4\xbd\x5a\xaf\x68\xde\x30\ -\xda\xb9\xc2\x07\xab\x9a\xff\xfa\x9f\x7c\x95\xe3\xd3\x97\xf8\x4b\ -\x7f\xfa\x4f\x73\x4f\x2c\xbe\x18\xd3\xe7\x4f\xb6\xb8\xd8\x18\x83\ -\x4a\x8a\xd0\xce\x49\x66\x58\xd8\x58\x8f\x77\x79\x7b\x0e\x77\x4e\ -\x7b\xfe\xfe\x57\x7f\x8b\xdf\x7e\xff\x21\x73\x77\x48\xb0\x96\x79\ -\xdd\xb1\x5f\x15\xe4\x98\xe8\xbb\xc4\xbb\xff\x0f\x6d\xef\x1d\x6d\ -\xdd\x79\xd7\x77\x7e\x9e\xb2\xdb\xe9\xb7\xbe\xbd\xea\x95\x5e\x35\ -\x24\xd9\x92\x2c\x4b\xc6\xbd\x20\x6c\x8a\x31\xc6\xc6\x1e\xb0\xa9\ -\x01\x67\x11\xc0\x06\x86\x64\xa5\x20\xc8\x0c\x2d\x33\x81\x38\x38\ -\x90\xc4\x04\xc6\x66\x30\x90\xc1\x36\x71\x95\x2d\xc9\x45\xb6\x6c\ -\x35\xab\xbd\xb2\x7a\x7b\xfb\xed\xe7\xdc\x73\x76\x7d\xda\xfc\xb1\ -\xaf\x45\x92\x05\x78\xcd\xf2\x78\xdf\xf5\xfc\x77\x6e\xdb\x7b\x3f\ -\xed\xf7\x7c\xbf\x9f\xaf\x9d\xf2\xc1\x2f\x7c\x01\x5f\x5c\xc4\x6b\ -\x2e\x3b\xc4\x72\x27\x26\x89\x3d\x82\x29\x52\xcf\x88\x9a\x04\xa5\ -\x04\x4a\x27\x2d\x94\xcd\xfb\x9d\x88\x74\x07\x21\xb4\xcb\x4a\xc0\ -\x35\x4d\x7b\x56\x17\x47\x04\x02\x76\x87\xa4\xd1\x41\x61\xca\x92\ -\x28\x49\x30\xc1\xa0\x84\x42\x25\x1a\xaa\x9c\x48\xc8\x9d\x29\x39\ -\xc2\x18\x4f\x94\x46\x14\xa3\x25\x6e\x7d\x64\x95\x8f\x9d\x38\xc3\ -\xd3\x85\x24\x4b\x2a\xfa\x73\x23\xf6\xee\x9a\xe3\x81\x47\x9f\xe1\ -\x6c\x51\xb1\x19\x59\xf2\xcf\x3d\xc8\xea\xf5\x57\xf2\xca\x65\x05\ -\xa9\x24\xd5\x02\x25\x24\x21\x18\xca\xda\xd3\xed\x67\x6c\x4f\x0a\ -\x06\x71\xf7\x1f\xbe\x81\xdf\x22\x6a\xd4\x26\x1d\xa6\x0e\xee\x3c\ -\xb1\xc6\xdf\x3c\xf8\x04\x5f\x38\x7d\x96\xf3\x4e\x93\xa8\x86\x6c\ -\x18\x41\x55\x90\x26\x7d\x7c\xd4\xe7\xf1\xcd\x55\xde\x77\xcb\x9d\ -\x9c\x19\x1f\xe2\x07\x5e\x74\x19\x47\xe7\x77\x93\xe4\xdf\xe6\x80\ -\x8d\x6f\x32\x18\xfd\xf1\x43\x9b\xdc\x76\xd7\xd7\xf8\xfa\xe9\x2d\ -\xaa\xa8\x87\x75\x60\x4c\x43\x94\x24\x28\x62\xdc\xb7\x78\x74\x34\ -\x2b\x4a\x22\xd5\xc2\x0e\xb0\x16\x23\x14\x41\x49\x92\xd1\x12\xcf\ -\x59\x38\x6e\x1a\x84\x57\x18\xe9\x50\x95\xa5\xa3\x14\xde\x94\x14\ -\x32\x46\x4b\xc1\xb0\xbb\x0d\x19\xb8\x5a\x51\xcd\x1c\xa3\x4e\x0f\ -\x69\x57\xd0\xf9\x49\x86\xe9\x90\xdc\xff\xdd\xdc\x65\x71\xe0\xd7\ -\x3f\x11\xda\x64\x36\xf5\x7c\xde\x4c\x2a\x04\x56\x68\x9a\x10\x88\ -\x84\x25\xa3\x41\x06\x83\x0d\x8a\x46\xc4\x04\xf9\xed\x45\x4d\x46\ -\x36\xc2\xab\x09\x46\x0c\x88\x7c\xc9\x24\x52\x54\x15\x5c\xdd\x6f\ -\x38\xb5\xb5\x06\x7a\x89\x3c\x28\x92\xfe\x02\xd6\xd4\xc8\xa6\xa4\ -\x13\xb5\xb3\x62\xd2\x1d\x50\xaa\x8a\x7a\x63\x85\xc5\x2c\x21\x4b\ -\xfb\x14\x4e\xb3\x55\x79\x4a\x53\x33\x1c\xf6\xa9\x66\x2b\xe8\x24\ -\x7e\x5e\xa5\xa3\x08\x64\x71\x4c\x3f\x4b\x49\x63\xcd\xec\xcc\x2a\ -\x73\x73\x73\xf4\x7a\x3d\xb4\x6e\x8b\x32\xd5\x8e\xa0\x76\x38\x1c\ -\x12\xd5\x0e\x62\xcd\xe9\xad\x35\x9c\x0a\x0c\x06\x03\xe6\xd2\x2e\ -\x73\x49\xc6\xc6\x99\xf3\x6c\x9a\x19\x95\xa9\x88\x63\xcd\xd2\x28\ -\x63\xef\xe2\x02\x38\xcd\x33\x67\xb6\xd9\xca\x61\x4b\x7a\x92\xa6\ -\xe0\xe2\xdd\x4b\xcc\xcf\xcf\xb3\x5a\x54\x3c\x71\xea\xf4\xf3\x76\ -\xab\xde\xf2\x22\xcb\x83\x8c\x50\x6d\xd3\xe9\xf7\x78\xf6\xec\x3a\ -\x4f\x9d\xdb\x44\x46\x31\x12\x41\xfe\x4d\xc6\xca\x6f\x35\x45\x2e\ -\xf2\xeb\x64\xba\x47\xa8\x22\x72\xe3\x21\xeb\xa2\xd2\x18\x57\x17\ -\x48\x53\x23\x07\x92\x7c\x66\x51\xaa\x83\x4e\x04\xce\xe6\xc4\xde\ -\xd0\x0d\x11\x21\xb7\x4c\x7a\xdd\x6f\xeb\xfb\xf1\xcd\x3a\xd3\x30\ -\x16\xe4\x45\x85\x45\x23\xe3\xac\x3d\xae\xf2\x01\xdf\xd4\xc4\x3a\ -\xfa\xa6\xf9\xb5\xdf\xec\xe7\x87\x2c\x45\xcd\x0c\x8d\x6b\x48\x62\ -\x4b\xa2\x52\x66\xba\xcb\x64\xe3\x2c\xd7\x76\x1d\x27\x93\x25\x74\ -\x5d\x22\x9a\x86\x90\x74\x58\xb1\x96\xde\x68\x0e\x91\x8f\xc9\x4c\ -\xc5\x9a\xe9\x70\x3c\x9b\x30\xb5\x81\xed\xce\x6e\xea\xd9\x16\x59\ -\x96\x51\xcb\xac\x65\x36\xfd\x7d\xcf\x75\xff\xaf\x7f\x2a\x7c\x83\ -\x99\xe4\x76\x36\xc2\x9a\x80\x77\x12\x85\x86\x20\x11\x5a\x80\xf2\ -\xd8\xd0\xb4\xba\x4e\x2b\xbf\xad\x0f\x23\x0e\x31\x9e\x1c\x11\xf7\ -\x30\x4d\x41\xd3\xc9\x30\x68\xd2\x7c\x93\x90\x25\x64\x41\x52\xd9\ -\x80\x0f\x0a\x19\x3c\xe9\x0e\x7a\xc5\x3a\x41\x9c\xf5\xd1\xc1\xa3\ -\x35\x18\x5b\x53\x34\x86\xa4\x3b\x20\x12\x11\xcd\x74\x4a\x8a\x87\ -\xb4\x43\x5e\xd5\x54\xd6\x12\x54\x8b\x94\x51\xc1\x91\x28\x49\x96\ -\x28\x0e\xcd\x8d\xc8\xb2\xac\x95\x56\x96\x05\x49\x92\xa0\x95\x78\ -\xfe\x88\x4b\x86\xd6\x06\xd8\xef\xf7\x31\xb6\xa1\xaa\x2a\x22\xa5\ -\xdb\xce\xb9\xb0\xc8\x6e\xd5\xe3\xc9\x73\x2b\x6c\x99\x86\x59\x3d\ -\x43\x88\x9a\xe5\xf9\x21\x52\xc4\x54\xb5\xe5\xfc\xac\x21\x9f\xad\ -\x90\xa6\x16\x25\x3d\x87\x0e\x5e\xc8\x70\xb0\xcc\xd3\xcf\x9c\x64\ -\x7d\x73\x83\x4c\x66\x08\x5b\x71\xec\xf0\x3e\x2e\x38\x7e\x29\x1f\ -\xbd\xf9\xf3\x6c\x36\x1e\x63\x77\x82\xac\xe2\x7f\xb8\x9a\xe9\xbf\ -\xc5\x02\xca\x34\xea\xa2\x1a\xc7\x30\x8a\x11\xc1\x53\xb8\x06\x2b\ -\x03\x5e\x0a\x54\xa4\x71\xb6\x42\x54\x86\x58\x78\xa2\x54\x53\x63\ -\xb0\x24\xe0\xbb\x04\x9b\xd2\x61\xfd\xdb\x3b\xb1\xca\x7f\xf8\xfd\ -\xcb\x6b\xcf\x68\x30\xa4\x28\x67\x24\x5a\xb5\xef\x86\x6d\x76\xfc\ -\xcf\x1e\x1f\xf4\xb7\x34\xd8\x15\xc1\x92\xb8\x98\x2c\x8d\x08\xbe\ -\xa0\xca\x2d\xae\xdb\x43\x48\xcf\x20\x2f\x58\x97\xd0\xd5\xb2\x5d\ -\xcd\xea\x98\xdc\xfa\x56\x25\x57\x97\x0c\xb4\x66\xbb\x93\x10\x17\ -\x9b\x84\x5a\xa3\x3a\x7b\x09\x58\x7c\xa8\x31\xd2\xe0\x65\x4d\x5a\ -\xff\xdd\x47\x4b\x6a\xf4\xea\x77\xdc\x64\x43\xeb\x78\x09\x21\xb4\ -\x5e\x54\x6d\x68\x44\x8c\x97\x3d\x84\x57\x50\xcd\x08\x75\x01\x41\ -\x11\x44\x0f\x82\xe5\x6f\x2d\x40\xff\xff\x37\x2f\x02\x8d\xf3\x78\ -\xeb\x91\x80\x32\x81\xa8\xf6\x44\x5e\x91\x12\x53\x34\x33\xb4\x14\ -\xad\xbf\x14\x4f\xf0\xbe\x75\x3b\x68\x4d\x5e\xe7\xc4\x2e\x10\xa7\ -\x31\x46\x78\x0a\x5b\xe1\x7c\xc3\x30\x51\x1c\xdb\xbd\xc4\xb1\xfd\ -\x7b\x58\xe8\x25\xf8\xa6\xc2\x98\x86\x2c\x49\xe8\x64\xad\xe9\x2d\ -\x16\x9e\x4c\x2b\x4a\x55\x61\x75\xc0\xc7\x1e\x91\x48\x48\xa0\xa2\ -\xa6\xb0\x05\x85\x9b\xb1\x9d\x79\x3a\xf3\x5d\xb2\x58\xb0\x7f\x69\ -\x01\x81\xe5\xdc\xd6\x59\xb6\x28\x39\x6d\xb6\xf0\xfe\x0c\xbd\x7d\ -\x23\xb2\x85\x11\x79\x6d\x68\x8c\x27\x6f\x3c\x2b\x45\xcd\x36\xad\ -\xd1\xa0\x3b\xcc\xd8\xa8\x73\x8a\x20\x59\xdf\x2a\x30\x79\xc5\xf1\ -\x43\x7b\xd9\x35\xca\x38\x37\x39\x4f\xd2\x95\x2c\x1f\xda\xc3\x57\ -\x1e\x7e\x88\xa7\x27\x13\xaa\x48\x52\x08\x43\xd4\xd5\x60\xec\x0e\ -\x74\xfc\xef\x6e\x52\xfc\x8f\xc0\x80\xff\xaf\xad\xc1\x12\x69\x8b\ -\x71\x33\x1a\x9f\x93\x28\x90\xc6\x23\x66\x8e\xbe\x4d\x69\x04\x74\ -\xe2\x2e\x42\x44\x04\x23\xf1\x36\x90\x06\x85\xb6\x96\x4e\x68\xad\ -\x7f\xe2\x5b\xfc\x1b\xfe\xa1\x16\xfe\x81\xff\x9d\x10\x88\xe2\x8c\ -\x7c\x7b\x8a\x02\x22\x29\x31\x75\x8d\xdf\xf9\x92\x4a\xe1\xbd\xfa\ -\x96\xde\x4f\xa1\x2c\xc1\xed\xa8\xa4\x9c\x21\x88\x18\x2f\x1c\x4a\ -\x79\xaa\x10\xa3\xe4\x22\xd6\x69\x08\x09\x5e\x44\x38\xef\x90\x41\ -\xb4\xe9\x08\xce\x90\x99\x0e\x1e\xdd\x56\xe8\x7d\x83\x53\x0e\x61\ -\x1d\x69\x23\x49\x42\x8c\x0b\xe1\xef\xfe\xbd\x7b\x7f\xe3\xe6\xf0\ -\xbc\xfb\x65\x47\xe1\x62\x68\x90\x22\x45\x78\x89\x0c\x1e\x2d\x1d\ -\x52\x04\xb0\x12\xd3\x48\x7c\xf2\xed\x8d\x47\x90\x5a\x60\x4d\xcb\ -\x10\x8c\x44\x84\x0a\x20\x83\x6d\xd5\x28\xa6\xc1\x77\x23\xaa\xaa\ -\x42\x06\x89\xd6\x2d\xec\xda\xe1\xd0\x5a\x22\x64\xa0\xb6\x1d\x94\ -\x70\x0c\x07\x9a\x3d\x73\x5d\xe6\x3b\x30\x17\x09\x32\x09\xd2\x3a\ -\x64\x77\x81\x95\xad\x29\xa7\x36\xb6\x39\x3f\x99\x51\x34\x16\x89\ -\xa0\x9f\x25\xf4\xb3\x94\x2c\x56\x98\xba\x6a\x53\xcb\xd3\x98\x7e\ -\xb7\x83\x92\xed\xbe\xc7\x19\x83\xe8\x24\x60\x1c\x94\x0d\x99\x8a\ -\x98\x9f\x1f\xb1\xb0\x7b\x99\xd3\xab\xe7\x79\xf6\xf4\x29\xb4\x8c\ -\x71\x21\x62\x71\x71\x17\x0b\xfd\x1e\xe5\x6c\x93\x73\xab\xe7\x19\ -\x37\x0d\x8d\x8e\x98\xb7\x31\x87\x8e\xee\x27\xca\x62\x4e\x9e\x5f\ -\x65\x6d\x73\x8a\x08\x92\x7e\x0c\x8b\xbd\x94\x5d\x73\x1d\x7a\x83\ -\x3e\xd9\x68\x91\xbf\xf8\xd8\x67\x99\xa9\x1e\x06\x45\x37\xd5\xe4\ -\x93\x0d\x54\x3c\xfa\xd6\xe4\x7a\xdf\xe4\x1a\xd9\x9a\x26\x38\xbc\ -\x16\x78\x2d\xa9\xad\x45\xaa\x88\x38\xea\x50\xd7\x06\xed\x04\x44\ -\x0a\xeb\x1d\x89\xd4\x60\x2d\x5a\x78\x9c\xaf\x51\x91\x20\xf7\xdf\ -\x6c\x9b\xf4\x2d\x66\xed\x7c\x93\x6f\xf7\x4d\x89\xd6\x9a\x4e\xa7\ -\xc7\x78\x73\x42\x9a\x65\x24\x69\xc4\xe6\x64\x93\x6e\x37\xc3\x39\ -\xf1\xad\x19\x0d\xc4\x0c\xdf\x0c\x50\x5a\xe0\x7c\x43\x1c\x0f\x30\ -\x66\x0b\x21\x2d\x36\xcc\x93\xa6\xeb\x3b\x66\x17\x89\x0c\x11\xc2\ -\xcb\x1d\x5f\x61\x82\xb1\x1e\x21\x03\x36\x56\xf4\x6b\x4b\xc7\x36\ -\x94\x91\x6a\x79\x5f\x16\xb6\x63\x45\xfa\xf7\x54\xd0\x54\xe7\x65\ -\x6f\xbf\x49\x4a\x89\xd2\x3b\x01\xc7\xc6\x80\xef\xd1\xf3\x0d\xba\ -\x5e\xc7\x8a\x9a\x69\x9a\x32\x26\x82\xe0\x49\x43\x89\x93\xfa\xdb\ -\xda\x59\xad\xa9\x01\x8d\x4e\x22\xa6\xce\xb6\xc0\xb4\xc8\x32\x11\ -\x0e\x17\x79\x6a\x23\x5b\x85\x8a\x8e\xb1\xbe\x15\xb0\xeb\x48\x23\ -\xa4\x23\x89\xe0\x25\xfb\x07\x1c\xed\x47\x5c\xb2\x30\xe4\x60\x16\ -\xd1\x75\x01\xe9\x15\x95\x8d\x29\x65\x17\xc6\x1b\x8c\x86\x23\xfa\ -\xfd\x39\xca\xda\x92\xcf\x6a\xd2\x28\x61\xd8\xed\x93\xea\x04\x0c\ -\x44\x2a\x23\x12\x11\xae\xf1\xb8\xda\x91\xea\x8c\x41\xd6\x27\x8d\ -\x3a\x5c\x3c\xda\x8f\x96\x31\x2b\xe3\x6d\xb6\x7c\xc3\x46\x59\x62\ -\x2b\xcf\xbe\xfe\x02\x97\xef\xbd\x80\xd3\x93\x0a\x2f\x22\xf2\xaa\ -\x64\x32\xdd\xa0\x2a\x0b\x06\xfd\x11\xdd\xce\x2e\xca\xa9\x64\x9c\ -\x28\x26\x2b\x2b\x74\x8b\x82\x8b\xf7\xed\xa3\x3b\x18\xb0\x5e\x96\ -\x6c\xd5\x81\xdc\x28\x0e\xc4\x70\xf8\xc0\x05\xdc\xf3\xb5\x47\x78\ -\x76\x25\x47\x65\x0b\x38\x1f\x51\xe7\x25\x83\x24\xc5\x07\x8f\x6c\ -\x15\xda\xdf\x96\x56\xa8\x0e\x56\x67\xb8\x90\x21\x48\x10\x06\x70\ -\x16\xa1\x1d\xc6\xcd\x48\x84\x24\x68\x8b\x0f\x0d\x91\xa4\x9d\xe9\ -\x55\xcc\x4c\x4a\x26\x71\x44\xc7\x05\xbe\xe1\x39\xf9\xbb\x5b\xf8\ -\xb6\x36\x9d\x49\x6a\xeb\xa8\x8d\x27\xc9\x7a\x80\x66\x96\xd7\x0c\ -\x87\x23\x9a\xda\x7e\xd3\xce\xfe\x3f\xfb\xb3\xff\xe7\xa6\x45\x85\ -\xf7\x5d\xe2\x9d\x8c\x21\x44\x44\xb0\x53\x94\x72\x58\xd1\x25\xd4\ -\x02\xa5\x7a\x04\x9f\xe0\x2c\xa4\x3a\xc3\x3b\x8f\x0b\x20\xb4\xa6\ -\x4b\xce\x96\x14\xed\x11\x5a\x14\xb1\xae\x25\x41\x2a\x12\x6f\xf0\ -\xb2\x41\xfe\x3d\xe5\x60\x25\x5f\xf5\xb6\x9b\xbc\xd2\xed\x71\x09\ -\x11\xd2\x48\x74\x3a\x41\x37\x12\x46\x0b\xbc\xfd\xda\x79\xf6\x5f\ -\xb8\x1b\xf3\xf8\x04\x69\x1c\x95\x56\xa4\x21\xc5\x93\xf3\xfa\x97\ -\x5e\x86\x6f\x1a\x5c\x3e\x61\x45\x8f\xf0\x75\x45\x47\xf4\x31\xa1\ -\x46\xd0\xda\xe8\x44\x68\xd0\xae\x26\x18\x83\x56\x11\xde\x7a\xb6\ -\xa3\x40\x1c\x22\x7c\x30\x44\x51\x46\xa8\xb6\xf0\xa9\xa4\x0a\x8b\ -\xc4\xae\xa6\x21\x21\x53\x11\xc1\x95\x18\xa1\x10\xd1\x32\xb6\xaa\ -\x19\xc9\x1c\x59\x5b\x44\x9c\xa2\x7c\x84\x71\x16\x23\x67\x74\xe3\ -\x8a\xc3\xb1\xe2\xa2\x85\x05\x2e\xd8\xbf\x8f\xf9\x8e\x24\x8e\x3b\ -\x04\x2d\xc8\xdd\x0c\xaf\x35\x9e\x2e\xa6\x32\xf4\x12\x47\x99\x75\ -\x69\xca\x9a\x34\x6c\xb2\xa7\xbf\x8f\x41\x27\xa1\xd3\x9f\x50\x17\ -\x10\x87\x84\x10\x3c\x45\x6c\xa9\x74\x46\x22\x66\xec\x59\x88\x31\ -\xde\x52\x85\x92\x7c\xaa\x79\x2c\x2f\x98\xeb\xe6\x5c\x79\xa0\x47\ -\xc8\x05\x1b\x65\xc2\xa6\x6b\x70\xee\x1c\x97\x1f\xcd\x78\xd5\x0d\ -\x7b\x79\xe1\x77\x5c\xc0\xe1\x61\x97\xe5\x28\xe6\xd4\xe9\x31\x5b\ -\x36\x62\x30\x4c\xb8\x70\x7f\xcc\xf6\xfa\x84\x2a\x52\x6c\xd8\x94\ -\xb3\x2b\x33\xd2\xc4\xb3\x6f\x77\x8f\x90\x4f\x59\x8a\x62\x2e\x3b\ -\x76\x19\x0f\x9c\x79\x8a\xaf\x3e\x79\x92\xed\x6c\x88\x72\x8a\x58\ -\x9f\x67\x43\x75\x88\xf5\x04\x61\x63\x3a\xa6\xc6\xab\x3e\xdb\x40\ -\x14\x12\x94\x77\x94\x6a\x1d\xa5\x47\x38\x57\x53\x75\xe6\x11\xf9\ -\x59\x9c\x0a\xb8\xce\x10\x53\x6d\xb6\xb9\xb7\xbe\xc2\x91\x60\xa2\ -\x01\x8d\x68\x70\xc6\x21\xa2\x92\x52\x0c\x90\xb1\x43\x36\x05\x13\ -\xbd\x88\x2e\xcf\x93\x76\x37\x29\x4c\x42\x14\x40\x25\x8e\x86\x39\ -\x04\x9e\x88\x9a\xb1\x5a\xa4\xb4\x92\xae\xf4\x34\xae\x55\x3a\x45\ -\x11\x58\xa9\x30\x72\x80\xb4\x15\x16\x45\xe6\xb6\x29\x54\x97\x4a\ -\xc5\x4c\x75\x46\xdf\xad\x91\x62\x29\x49\x30\x42\x11\xcb\x00\xc2\ -\x50\x34\x0d\x21\x49\xa9\x64\x8c\xac\x24\x81\x1a\x1f\x37\xcc\x82\ -\x40\xc4\x1d\x22\x53\x12\xf9\x1a\x13\x69\xb4\xdb\x40\xb9\x2e\x13\ -\xb7\x84\xef\x65\x48\xbf\x02\x3e\x60\x75\x87\x60\xb7\x89\xea\x06\ -\x91\xce\xd3\x10\x21\xcd\x14\x15\x72\x64\xaa\x28\xad\x45\x84\x9a\ -\x97\x5f\x34\xe4\x95\x97\x2e\x72\xef\xd9\x8a\x48\x38\xaa\xda\xb4\ -\xfb\xe0\x28\xc3\xd5\x0d\x5a\x76\x58\xf5\x81\x45\xe5\x18\x47\x02\ -\x6d\x06\x48\x3f\x45\x04\x4d\x9d\x04\xb6\xc2\x22\x4b\xca\xe2\xec\ -\x16\xd3\xb8\x8d\xc7\x08\x4d\x4e\xda\xcd\xb0\xb3\x06\xad\x14\x2e\ -\x4a\x49\x66\xa7\x88\xbb\x23\x26\xbe\x4b\x62\xa6\x98\x20\xa8\x64\ -\x4a\x95\x0c\x18\x8e\x4f\x43\x3c\x87\xc0\xa1\x6d\x81\x50\x8a\xe0\ -\x3c\xa9\x13\xd8\x38\xc3\xd6\x05\xb1\x6c\x15\x7e\x41\x47\x2d\x66\ -\x76\xee\x3b\xdf\x78\x53\x4c\x5b\x85\x8c\xb4\x82\xe0\x69\xbc\xa3\ -\x10\x0b\xcc\x42\xce\xbf\xff\x89\x97\x71\xe4\xc0\x32\x75\xa5\x79\ -\xf0\xf4\x29\x1a\x7a\x6c\xfb\x15\x52\x6d\x78\xfb\x6b\x5f\xcc\x73\ -\x2b\x05\xa7\x4e\x9f\x6b\x11\x9f\x5d\xc9\xb4\x9e\x10\xe3\xe8\xa8\ -\x92\x2d\xd3\xa7\x88\xe7\x81\x40\xdc\x5d\x66\xea\x0d\x03\x61\x11\ -\x8d\x62\xce\x2b\x84\x2d\x29\xa6\x35\x83\x8e\x26\xea\x44\xcc\x4a\ -\x88\x42\x4e\x2f\x4c\xc9\xeb\x18\x9f\xf4\xa0\x29\x88\xcb\x31\xf3\ -\x99\xe5\xe8\x81\xdd\xec\x59\xd8\x8b\xf5\x53\xe4\x74\x8b\x5d\xfd\ -\x94\xa3\x07\xf7\x71\x74\xef\x3e\x2e\xd8\xb5\xcc\x5c\xe6\x09\x6e\ -\x13\x82\xc6\x36\xe0\x5d\x40\x46\x1e\xb0\x08\x07\x3a\x52\xf8\x60\ -\x70\x16\x84\x9b\x11\x49\x8f\xb7\x82\xb4\xd7\x21\xe9\x24\x04\x2f\ -\xa8\xcb\x9a\x3c\xa9\xe8\xbb\x9c\x7d\xf1\x80\x4e\x37\xc6\xfa\x88\ -\x43\xbb\x2e\xc4\x87\x92\xb3\xd3\x15\x4a\x13\x73\x7e\x63\x03\x43\ -\xcc\xa1\x43\xc7\xd8\x3b\x97\xb0\x34\xf0\xbc\xe9\x4d\x37\xf0\xe4\ -\xb9\xc0\x63\xf7\x3f\xcd\xda\xf9\x73\xf4\x16\xbb\x1c\xbe\x64\x3f\ -\xc7\x2f\x3d\xc0\x97\x1f\x7c\x98\xb5\x19\x44\xc6\x73\xdd\xf1\x43\ -\x4c\x73\x98\x56\x05\x41\x8d\xd9\xdc\x3e\x43\x53\x39\x8e\xed\xda\ -\xcb\xf5\x17\x1e\x24\x6e\x9e\xe3\x23\x5f\x5f\xa3\x0c\x1d\xa4\x9d\ -\x10\x09\x41\x35\x7b\x86\x7e\x32\x22\xd8\x1e\x33\x29\x89\x55\x49\ -\x51\x6d\x73\xfc\xe2\x65\x0e\xf7\x60\x18\x09\x26\x55\x45\x53\x2f\ -\x90\x29\xc9\xe6\xb8\x62\x77\xda\x4a\xfb\xb6\x0b\xc8\x64\x8c\x8e\ -\x06\x34\xb5\x44\x25\xe7\x98\xd6\x0e\xa5\x20\x33\x8a\x61\xe4\xa9\ -\xf3\x1d\x5c\x8b\x4e\xe8\xe9\x4d\x84\xea\x32\x2e\x17\x49\x63\x4f\ -\x24\xb6\x28\x7c\x07\x1f\x3c\x57\x2c\xf7\xe8\x2c\xec\x66\xd4\x95\ -\x88\xed\x53\x48\xeb\x68\x64\x87\xb9\x41\x87\x7a\x7c\x1a\xad\x25\ -\x51\xb9\xc9\x90\x6d\x8c\xb5\xf4\x62\x70\x2a\x41\x08\x49\x59\x55\ -\x2c\xca\x31\x5b\x22\xa5\x4c\x87\x44\xcd\x26\xb1\x99\xb0\xe5\x47\ -\x74\x46\x7b\x70\x5b\x6b\x64\x41\x52\xa6\x82\x4c\x1a\xae\x3b\x38\ -\xe4\xd8\x62\x8f\xed\x59\x45\x6d\x1a\x1c\x09\x53\x96\xa8\xe2\x0e\ -\x8b\xe5\x59\xe6\xe5\x84\xcd\x32\xc7\xa8\x94\x58\xc6\x84\xba\x22\ -\xd3\x86\x48\xc0\xb8\xb2\x08\x1d\xd1\xd1\x02\x6b\x2a\x6a\x2b\xf0\ -\x48\x94\x90\xdc\x70\xc5\x11\x0e\xec\x5e\xe0\x4b\x8f\xaf\xe1\x9a\ -\xb2\x75\x18\x01\x1e\x89\xf0\x0e\xa1\x0a\x12\xd5\xa1\x37\x5e\x45\ -\x76\x5a\xe3\x8a\x52\x05\x91\xb1\xe8\x50\xf2\xa2\x7d\x1d\x76\x67\ -\x82\x41\x2f\xc6\x54\xdb\xd8\xbc\x80\xce\x80\x49\x6d\x19\xa5\x29\ -\xde\xe6\x14\x7a\x08\x2a\x66\xab\x11\xf8\xa6\x60\x6f\x56\x92\x57\ -\x0d\x4d\x32\x47\xd9\xd4\x1c\x59\xe8\x33\x29\x0d\xc2\x16\xc4\xb2\ -\xa6\x09\x12\x2d\x15\x89\xce\xd8\x2e\x72\x3a\x59\x8f\xc6\x06\x82\ -\x6c\x41\x08\xa2\x9e\xa0\xaf\x3b\xb2\x9f\x49\xed\x38\xb9\xba\x41\ -\x69\x72\x2c\x0a\xd2\x79\xc2\xb4\x02\xd5\xce\x6c\xb7\xde\x7c\x1f\ -\x6f\x7e\xdd\x0b\x78\x7a\xed\x61\xbe\xf4\x84\x22\xe9\x0d\xa8\x67\ -\x39\x69\xb9\xcd\xac\x2c\x20\xd6\xe8\x62\x46\x11\xfa\x78\x25\xf8\ -\x95\x37\x5f\xcf\x0b\x2e\xdc\xc5\x1f\x7d\xe2\x29\x6e\xfe\xda\x13\ -\x74\xea\x75\x44\x35\xe5\xba\xcb\x0e\xf3\x2f\x7f\xf4\x9a\x56\xde\ -\x5c\x55\x64\x69\x4a\xbe\x23\xee\xfb\xe0\xc7\xee\xe0\xcb\x77\x9f\ -\xe1\x45\x97\x1f\xe6\x1d\x6f\xbd\x96\x7f\xfc\x6f\x3e\xcb\xc9\xf1\ -\x84\xc3\x83\x6d\xae\x3d\xbc\xc4\x1b\xde\xf4\x5a\x36\xa7\x9e\x66\ -\x26\x59\xda\x73\x05\x62\x03\x1e\x7f\xf0\x71\xce\x8c\x67\x34\xde\ -\x72\xd9\xb1\xa3\xbc\xf0\x92\x84\xbb\xef\xf9\x1a\x27\x9e\xad\xc8\ -\xb2\x25\xf2\x59\xcd\x35\xd7\x5c\x45\x90\x35\xf7\xdc\xfd\x10\x9d\ -\x64\x8e\xbc\x28\x11\x0e\x6e\x78\xc9\xe5\x5c\x70\x60\xc0\x63\x8f\ -\x4d\x78\xe8\xf1\x53\xe4\x05\xec\x5b\x1e\xb0\xa1\x4a\xbe\xeb\x85\ -\x97\x71\xe9\xc1\x05\x6e\xfd\xcc\xfd\x3c\xba\x39\xa1\x89\x46\x3c\ -\x7b\xdf\x23\x5c\x7d\xc9\x88\x57\x5f\x75\x19\x0f\x3d\x71\x96\xf3\ -\xb3\x98\x33\x33\x58\x7b\xe0\x51\x5e\x78\xb0\xcb\x77\x5d\x7f\x01\ -\xcf\x9c\x78\x86\x3b\xef\x7c\x04\xe3\x32\xb6\x5c\x07\x71\xff\xdd\ -\xbc\xf1\x55\xd7\x72\x72\x2b\x47\xdb\x09\xef\x78\xc3\x71\x5e\x70\ -\xd9\x51\x3e\x71\xeb\x13\x1c\x3b\xda\x63\x7f\xbe\xc8\xa1\xa5\x84\ -\x97\x5f\xbf\xcc\xa7\xbe\x78\x92\xe9\x6a\xc3\x95\xd7\x2c\xb1\x18\ -\x8f\x78\xff\x89\x4f\xb2\xba\x95\x11\x27\x43\x6c\x39\xe5\x37\xdf\ -\xf3\x13\xdc\xf2\x95\xb3\xdc\x7c\xc7\x49\xba\x69\xc2\xf1\xc5\x2e\ -\x3f\xfc\x96\x1b\x61\x10\xf0\x93\x31\xa3\xee\x1c\x3e\x85\x7b\xbf\ -\xfc\x24\xff\xf7\x6d\xf7\xb3\x38\xec\xf2\xcb\x3f\xf5\x46\xbe\xfe\ -\xe4\x29\x3e\xf4\x99\xbb\x48\xb4\x62\x5a\x35\x0c\x17\xe6\xf9\xf3\ -\x5f\xfc\x31\xde\xfb\xe1\x87\xf9\xdc\x43\x4f\x33\x8c\x14\xbf\xfa\ -\xce\x1b\xb9\xfc\x60\x8a\xa0\x26\xc6\x33\x25\xe3\x8e\x87\x4f\xf3\ -\xfb\x7f\xf5\x24\x4e\xa7\xd4\xb3\x8a\xab\x8e\xed\xe7\xad\x6f\xb8\ -\x9a\xe3\x3a\x65\x5c\xac\x42\x9c\x92\xfb\xe3\xfc\xe1\xc7\xbf\xc6\ -\x89\xf3\x81\xc3\x73\x31\xbf\xf9\xcb\xef\x20\x15\x96\x89\xd7\xec\ -\x92\xf0\x94\x6d\xbd\xd8\x1f\xff\xe2\x29\x3e\x71\xf3\x2d\xec\xea\ -\xf6\xf8\x93\x7f\xfa\x4e\x84\x30\xe4\x21\xa2\xa7\x60\x3c\x83\xcf\ -\xdc\x7f\x96\xff\xf2\xa9\x7b\xd1\x69\x07\x4c\xc1\x0d\x57\x1c\xe0\ -\xdd\xaf\x7a\x19\x6b\xeb\x86\x09\x5d\x7e\x7e\x0f\xdc\xf7\xf4\x3a\ -\x7f\xf0\xd1\x87\x88\x67\x6b\x9c\x8a\x97\x79\xc3\x6b\xaf\xe3\x87\ -\x5f\x73\x11\x7f\xf4\x99\x47\xf8\xe8\xed\x4f\x50\x7b\x8d\xf6\x0d\ -\x81\xa3\xda\xea\x00\x00\x20\x00\x49\x44\x41\x54\x3f\xf0\xba\xef\ -\xa4\x6c\x04\x9f\xfc\xca\x43\x6c\x15\x0d\x8d\xf2\x20\x34\x69\xd2\ -\xc5\x78\x89\x6b\x0a\x9c\x73\xa4\x69\xda\x6e\xf9\xac\x25\x8a\x3b\ -\x7f\xab\x1f\x56\x0a\x61\x23\xfa\x69\xc5\x07\xfe\xed\x8f\xf0\x5b\ -\xff\xf5\x8b\xdc\xf1\x60\x83\x62\xc4\x85\xbb\x05\x3f\xf4\x8e\x57\ -\xb3\xab\x2c\x98\x15\x82\x3a\x49\x59\xde\xa3\xf8\xfc\x6d\x4f\xf0\ -\xff\x7c\xf9\x04\x4a\x09\xde\xfa\xd2\xe3\x5c\x77\xe9\x90\x1f\xff\ -\xdf\xff\x1a\x35\x7f\x04\x9d\xa4\xa4\xfe\x1c\xbf\xf2\x63\xaf\xe6\ -\xa9\x67\xd6\xf8\xf3\x4f\xdf\x8f\xe2\x0c\xff\xfe\xdd\xbf\x84\x92\ -\x80\x73\x0c\x55\xc1\x26\x7d\x2c\xf0\xdc\x33\xeb\xfc\xea\x9f\xdd\ -\xc7\x2c\x2f\x90\x71\x86\x90\x11\xc2\x57\xcc\x25\x02\x7d\xc9\x81\ -\x83\xac\xe5\x25\xeb\xe3\x6d\xc6\x75\x49\x88\x63\x42\xb1\x46\x2f\ -\x0c\x98\xa1\xd8\x02\xfe\xf2\xf6\x27\x49\x7b\x43\xde\xf5\x23\xaf\ -\xa7\x78\xdf\xad\x3c\xb2\xe2\x71\x6e\x1e\x1d\x12\x4c\x68\xb0\x4a\ -\xd0\xc9\x16\xd8\xb4\x3d\x0e\x0e\x2b\xae\x3b\x3e\xe2\xf4\x33\x27\ -\xb9\xfc\x70\x8f\xdb\xef\xb6\x34\xe9\x6e\xa6\xde\xf2\xf0\x2a\xfc\ -\xd0\x3f\xfb\x20\x21\x48\x7e\xe4\xd5\x2f\x63\xf7\xa1\x25\x7e\xef\ -\x4f\x3f\x41\xd0\x11\x7a\x90\x50\xa6\x7b\xf9\xfa\x4c\xd2\xc3\x62\ -\x4b\x4f\x2c\xfa\x1c\x1a\x25\xfc\xd4\x5b\x5f\xcb\xef\xfd\xe5\x17\ -\xb8\xfb\xc1\x27\x98\xf3\x7d\x46\x23\xcd\xcf\xbf\xf5\x46\x5e\x73\ -\xcd\x31\x3e\xf6\xf9\xaf\xb0\x56\xd5\x48\x61\x28\xf2\x84\x17\xbf\ -\xe0\x85\x9c\x9d\xdc\xcb\xea\xd9\x4d\x94\x4c\xb1\x4d\x81\xb1\x33\ -\x24\xa1\x2d\x8e\x44\x7d\xb2\xc8\x90\x69\x4b\x3e\x85\xc3\x07\x87\ -\x9c\x78\xe4\x11\x32\x39\x87\x35\xdb\x8c\x46\x1d\x76\xf9\x0a\xe7\ -\x6b\x96\x0e\xee\x22\x1a\x0e\xb8\xfb\xe1\xa7\x49\x87\x23\xee\x7f\ -\xfc\x31\x2e\x1b\xef\xe3\x55\x97\x1f\xe2\xb1\x95\x75\xee\x7d\xf4\ -\x34\x24\x73\x3c\x76\x7a\x9d\x4b\xc7\xbb\xb8\xee\x8a\x23\xa8\xba\ -\xe1\xae\xa7\xe1\xb0\xaf\x28\x97\x2e\xe6\x13\xb7\x3c\xc0\x55\xc7\ -\xf6\x73\xf5\x55\xdf\xcd\x87\x3e\xf5\x10\x89\x19\x72\xe5\xd5\x07\ -\xf8\x8f\xef\xbb\x95\xe3\x47\x86\xbc\xfc\xf5\x2f\xe3\xfe\x3b\xcf\ -\x93\x6f\x8e\x59\xdc\x6d\xd8\xda\xcc\x99\x0d\x14\xff\xfc\x9d\xaf\ -\xe6\xa6\xdf\xfb\x0c\x8f\x9b\x7d\x1c\x89\x15\xbd\xa6\x64\x6d\xf5\ -\x2c\x59\x3f\x90\x89\x09\xbf\xf8\x73\xdf\xc3\xbd\xf7\x9f\xe7\x8f\ -\xfe\xe8\x53\xcc\x1a\x4d\xa6\xfa\x5c\x7c\xb0\xc7\x0b\xf6\xec\xc1\ -\x58\x85\x8a\x25\x76\x56\x41\x55\xe2\x1b\x43\x1d\x04\x2a\x1e\xb2\ -\x31\x2e\x19\x68\x98\xe4\x5b\x6c\xb9\x02\xa5\x03\x63\xdb\xf0\xa7\ -\x9f\x7c\x8e\x8f\xde\x7e\x37\xb5\xde\x4d\xaf\x2a\x79\xf7\xcf\x5c\ -\xcc\xcf\xfd\xf8\x15\xfc\xce\xfb\x6e\xe7\xe8\x70\x2f\xbf\xfc\x13\ -\x2f\xe1\x63\xb7\x3f\xc0\x4d\x9f\x3a\xcd\x96\x4e\x18\xa5\x8e\xb7\ -\xbe\xf4\x18\xbf\xf0\xbf\xbc\x9c\x7f\xf5\xde\x8f\xf3\xe8\x8a\xe3\ -\x7b\xfe\xf5\x27\x98\x58\xf8\xa9\x57\x5e\xc0\xa1\x85\x3e\x7f\xf0\ -\xdf\xee\xa1\xac\xc1\x46\x3d\x8c\xda\x83\xf4\x09\x85\x82\xdf\xf8\ -\xe0\xd3\x3c\xf9\xd8\x09\xce\x37\x31\x07\x86\x92\xdf\x7d\xd7\x1b\ -\x98\xd4\x35\x7f\xf5\xc5\x07\x78\xc9\x25\x3d\xde\xf5\xfd\xd7\xf0\ -\x87\x1f\xbc\x8d\x13\x4f\x6f\x33\x2d\x3d\x73\x19\xfc\xc4\x0f\xbe\ -\x9c\x7f\xf2\x96\x97\xf2\x3b\x1f\xf8\x0c\xbd\x7a\x9b\x86\x0e\xe7\ -\xa6\x0d\x6f\x7c\xc5\x25\x3c\xfb\xd8\x49\x1e\x5e\x71\x38\xa9\x71\ -\xe5\x04\x15\xf7\x29\xf2\x09\xc6\x6a\x4c\x50\x48\xdf\xaa\x9e\x9c\ -\x0b\x68\xa9\x5a\x0b\xe8\x8e\x1a\x2d\x52\xea\x6f\x6b\x35\xba\x3d\ -\x0a\x74\xf5\xac\x05\x2c\x00\xd5\x4c\x81\xb0\x0c\xb2\x19\xef\x7e\ -\xd7\x9b\xb9\xe5\xce\xf3\xfc\xee\x67\x6f\xa7\x36\x0e\xa7\x63\x2e\ -\x3f\x7e\x84\xa3\x07\xf6\x53\x92\xd0\xd4\x0d\xb3\xb2\xe0\xb9\x62\ -\x44\x3a\xb7\x1b\x5f\xcc\x50\x7e\x4c\xaf\xb7\x4d\x59\x6d\xb3\xd2\ -\x48\xce\xf8\x05\x64\x77\x1f\x3f\xfa\x9b\x9f\xa5\xa9\x2a\x5e\x70\ -\xe1\x2e\x7e\xe1\x47\x5f\xc4\x8f\xfc\xda\x5f\xa3\x64\x8a\x8c\x06\ -\xd4\x75\x8d\x90\x90\x28\xc8\xeb\x12\x82\x61\xea\x6b\xe4\x74\x3a\ -\x63\xb2\x5d\x90\x57\x8e\xda\x2b\x1a\x1d\x93\xc8\x6d\x82\xea\x61\ -\x6d\x87\x18\xc3\x34\x44\xbc\xef\xe3\x0f\xf0\xb5\x47\xd7\xf8\xe7\ -\xef\xfc\x4e\x5e\xb0\x37\x25\xd8\x9a\x2a\x48\xb2\x6e\x8f\xc6\x05\ -\x72\xd9\xc1\x99\x9a\x57\x5c\x30\xe4\xee\x27\xd7\xf8\x8b\x2f\x9d\ -\xe6\x85\x57\xed\xe6\xe8\x30\x10\xc7\x29\x3a\x4c\x90\x5b\x63\x6c\ -\x9c\x42\x32\x87\xb5\x0d\x59\xbc\x13\x9f\x17\x24\xf9\xd6\x16\x61\ -\xb6\x45\x3f\x6a\xd0\x68\x42\x5d\x13\xd5\x25\xaf\xfb\xce\x1b\xb8\ -\xfd\xce\x53\xdc\xf3\xd8\x3a\xf4\x0f\x31\xb7\x70\x90\x48\xcd\xb1\ -\xb6\xba\xc1\xfc\x48\x72\xc1\xe1\x5d\xf4\x32\x28\xaa\x2d\x9e\x7a\ -\xf6\x1c\x0f\x3f\xb6\xc6\x4b\xbe\xf3\x6a\x8e\x1e\xdd\x4d\xa4\x6b\ -\xbc\x2d\x11\x78\x94\x4a\x08\x22\xa6\xaa\x03\x99\x72\xec\xdf\x3b\ -\xcf\x6d\xb7\x7d\x8e\xac\x0b\x47\x0e\x2f\x23\x5c\xc3\x9e\x5d\xbb\ -\xd9\x1c\x6f\x31\xb6\x63\x66\xb6\xe6\xab\x77\xdc\x4b\xa7\x34\xbc\ -\xe5\xfa\x6b\x98\x0f\x15\xe9\xdc\x80\xaf\x6d\xe6\x7c\xea\xf6\xfb\ -\x18\x76\x53\x5e\x72\xc5\x61\x94\x68\x38\xd7\x44\xfc\xf5\x5d\xcf\ -\x72\xc7\xc3\xab\x5c\x78\xe1\x71\x7e\xfa\x87\x0f\xf0\xa6\xb7\x5f\ -\xc9\x3f\x7a\xfb\x45\xfc\x6f\xef\x79\x05\xfd\xbd\x1d\x56\x36\x9e\ -\xe1\x95\xd7\x1e\xe5\xe3\x5f\xbe\x8f\x41\x19\xf3\xfa\x57\x5c\xc9\ -\x2b\x5e\x75\x25\xcf\x9d\x5f\xe5\xec\xac\x20\x5b\xe8\xe2\xac\x45\ -\xe5\x9e\xbf\xf8\xc8\x43\xb8\xda\xf3\xee\x7f\xf4\x3d\xec\x1f\x4d\ -\xc9\xf3\x35\x26\xa5\x23\x1b\xcc\x51\x55\xdb\xbc\xf4\xaa\x83\x14\ -\xd3\x9a\x0f\x7d\xf8\xf3\x6c\x99\x7d\xf8\xe4\x30\x95\xde\xcb\xfd\ -\x67\x1a\x3e\xf4\x95\xaf\x13\x62\x49\x59\xcf\x10\xaa\xc1\xf9\x12\ -\xd5\x89\x09\x71\xca\xfa\x6c\x86\x51\x12\xef\x6c\xab\x71\xed\xcf\ -\x61\xbc\xc6\x11\x5a\x9f\x70\x9c\x92\xa3\x91\xca\xe3\x6b\x81\x29\ -\x57\xe8\x26\x29\x97\x5d\x78\x21\xdb\xe3\x19\x1f\xbb\xf5\x5e\xd6\ -\x92\x65\x16\x98\x50\x04\xcd\x07\x3f\x7e\x1b\xdd\x18\xae\x3a\xb6\ -\x4c\xd1\x18\xf2\x06\x94\x6f\x98\x55\x35\xdd\x4e\x4a\xed\xa0\x0a\ -\x0a\x11\x2c\xb1\x70\xf8\x7c\x93\x45\xa0\x2a\x67\x78\x24\x83\x7e\ -\x17\xdf\x4c\x89\x85\xc1\x87\x16\xe0\x79\xf9\x25\xc7\x78\xe0\xce\ -\x27\xf8\xc2\xe3\x13\x4e\x56\x82\xba\xb3\xc0\x53\x66\x91\x8f\xdd\ -\x7c\x07\x2f\x3e\xa6\x99\x5f\x0c\x0c\xfd\x16\x95\x33\x7c\xea\xee\ -\xaf\x73\xd7\x83\x67\x79\xcf\x4f\x7f\x17\x2f\xd8\xa3\x88\xec\x26\ -\x85\x4f\x68\xf2\x1c\x2d\x04\xdd\x6e\xb7\xc5\xba\x28\x4d\x6d\x5c\ -\xdb\x21\xa1\x45\xed\xee\x38\xcb\x84\x10\xcf\x43\x17\xbe\xa1\x37\ -\x48\x55\x46\x6e\x6a\x1a\xc0\xd1\xde\xa3\x17\x5c\x76\x88\x72\xb2\ -\xcd\x87\x3f\xfd\x55\x4e\xdb\x05\x5c\x36\x47\x2d\x33\xbe\xf4\xc0\ -\x93\x7c\xe2\xb6\x2f\xe0\x6c\x43\x12\xa5\x90\xf5\x88\x68\xa0\x9e\ -\xd0\x4b\x04\x21\x8a\xd9\x70\x1d\xa6\xe9\x02\x95\x8c\xc9\xd2\x18\ -\xef\xa6\xcc\x4c\x41\x63\xa6\x08\x51\x32\x94\x10\x94\xa1\xb2\x39\ -\x45\x35\x45\x45\x31\x69\xa4\xf1\x75\x4e\x4c\x43\x37\x4b\xf1\xc9\ -\x00\xbd\x95\x97\x94\x16\xe2\xac\x43\x44\x43\x61\x1c\xdb\xd1\x02\ -\xbd\xd9\x26\x0b\xdd\x08\x45\x81\x8a\x33\x8c\xd5\xbc\xf7\x3f\xfd\ -\x0d\xfb\x7e\xe5\x87\xf9\xd9\x77\xbe\x02\xf5\xd1\xbb\xa9\xec\x14\ -\xdf\x18\x04\x11\xe3\x7a\x9b\xa5\x74\x9b\x1f\x78\xdd\x95\xfc\xeb\ -\x0f\x9f\xe0\xc4\x53\x05\xaf\x5b\xa9\x78\xf5\xcb\xaf\xe5\xdf\x7d\ -\xfc\x41\x64\xd6\xa1\xd8\x6e\xc8\xbb\xf3\xc4\x72\x13\xc3\x26\xa8\ -\x2e\x46\xd4\x78\x52\x62\x29\x49\x84\x20\x6e\xfd\x12\x38\x33\x66\ -\xd8\x9b\xa3\x93\x7a\x36\xd7\x4a\x46\x0b\xf3\x44\xd9\x88\x66\x6d\ -\x13\xad\xd3\xf6\x4c\xd5\x04\xe6\x16\x17\x38\x2a\x53\x06\xbd\x84\ -\xe9\xa4\xe4\xc9\x67\xd6\xb8\x7e\xbe\xcf\x95\x57\x1e\xa2\x29\xc7\ -\xc8\x50\x90\xa5\x7d\x9a\xc2\xa0\x33\x45\x9c\x05\x2e\xff\x8e\xc3\ -\x3c\xf6\xf8\x2a\xdb\x79\xc5\xa3\x4f\x3e\xcb\x45\xc7\x8f\x70\xe7\ -\x3d\xb7\x30\x79\x2a\x47\xc4\x29\xb3\xaa\x66\x1f\x29\x2e\x68\xbe\ -\xfc\xf4\xe3\x5c\x14\x0a\x5e\x73\xfd\x8b\xf9\xf2\x83\x77\x51\x26\ -\x82\x35\xb1\x87\xcf\x7f\xed\x09\x2e\x39\x30\xc7\xb5\x57\x5e\xca\ -\x3d\x4f\x9e\xe3\xcc\x74\xcc\x9f\x7e\xfa\x1e\x7a\x21\x90\x75\x3b\ -\x5c\x7d\xfc\x10\xa7\x9e\x7b\x96\xcb\x8e\x1d\xe6\x07\x5f\x76\x94\ -\xdf\xff\xc0\x9d\xdc\xfd\xf0\x69\xae\xbf\xe8\x28\x5f\xfc\xca\x53\ -\xbc\xf1\x4d\x17\xb0\xba\xd6\x70\xf7\x57\x56\xd9\x0c\xcf\x31\x77\ -\xe0\x32\x6e\xfd\xf4\x06\x17\xbc\x6d\x42\x39\x49\xf9\x67\x7f\x78\ -\x33\xbf\xfe\xee\x1f\xe2\xa6\x9f\xbc\x8e\xff\xfc\x27\xb7\x30\x21\ -\x6a\x69\x86\x21\x66\x31\x4e\x58\x5f\x1f\x33\x9e\x4a\xe6\x16\x17\ -\x70\xe5\x73\x68\x19\xb1\x62\x0b\xfc\xdc\x00\x53\x7b\xba\x09\x68\ -\xb6\x79\xcb\x6b\x2f\xe1\xfb\xbf\xeb\x4a\x86\x40\x0a\x6d\x01\x86\ -\x06\x61\x1c\xa2\x96\xd8\x6d\xc3\xb2\x14\xbc\xea\x55\x47\x78\xe3\ -\xcb\x97\x91\x51\x17\xd5\x18\x9e\x3a\x5d\xf3\xd7\xb7\x7c\x15\x13\ -\xc5\x24\x23\xcf\x56\x59\x11\xbb\x0e\xf3\x9c\x42\x05\x43\xe5\x35\ -\xf3\x83\x39\xce\x9c\x3c\xc7\xee\x85\x21\xb3\x7a\x05\xdd\x1b\xa2\ -\xcc\x18\xa2\x2e\x42\x6a\x2a\xa7\xa8\x42\x44\xa8\x4a\xd2\x24\x42\ -\x28\x89\xb5\x86\xf7\xff\xe4\xc5\xac\xab\xab\x49\x80\xbe\xad\xf8\ -\xcc\x03\x27\xf9\xf4\x57\x1e\xc3\x55\x9e\xe1\xae\x23\x9c\x7c\xe4\ -\x59\x5c\x59\xb2\x30\xea\x32\x9e\x9e\xa3\xd3\xd9\xcd\xd9\x73\xe7\ -\xa9\x03\xec\x9f\x17\x3c\xbc\x2a\xd0\xc1\x50\xbb\x0e\xff\xf1\xa3\ -\x5f\xc1\xf9\x57\xf2\xee\x9f\x7e\x0d\xbf\xfd\x07\x1f\x42\xa7\x7d\ -\x42\xb1\x05\xbe\xf5\x65\x1b\x67\x88\x94\x44\x68\x89\x16\x01\x19\ -\xec\xf3\x96\x42\x6b\x2d\x41\x07\x42\x68\x3b\xb0\xd8\xe9\xac\x32\ -\x1a\x20\x64\x85\xc4\xd3\x04\x83\x97\x1d\x16\x7a\xfb\xc9\x27\x9b\ -\x94\xd4\x0c\x44\xce\xd5\x47\x17\xd9\xbb\x7b\x7f\x5b\x98\xb2\x63\ -\x3e\xf7\xd5\x47\xc8\x8d\xa3\x2c\x72\x5e\x7c\x78\x1f\x7f\xf1\x5b\ -\x3f\xcc\x82\x05\xaf\xdb\x6d\xde\x02\x96\x67\xee\xbe\x87\x4e\xb5\ -\x0e\xf1\x3c\x4d\x25\x19\x46\x09\x4d\x11\x93\x05\xa8\x67\x92\x6e\ -\xdc\xc3\xcb\x3e\x95\x9d\x62\x9a\x82\x61\x1a\x63\xbd\xa4\xac\x6b\ -\x84\xd2\xc8\xad\xe9\x98\xda\xd6\x28\x09\x31\x81\xd4\x3b\x6a\xb5\ -\x48\x1c\x4d\x10\xcd\x94\xc0\x90\xda\x2a\x5c\x3d\xa6\x3b\x7f\x94\ -\x9b\xfe\xf4\xf3\x4c\x1b\xc1\x9b\x6f\x7c\x21\x17\x1d\x5d\x80\xaa\ -\x44\x5a\x4b\x1a\x39\x5e\xfb\xe2\x63\x24\xdd\x11\x6f\xbf\xf6\x42\ -\x7e\xe7\x27\xae\xe5\x88\x98\xf1\xba\x6b\x76\xb1\x9c\x6e\x12\x6a\ -\xd9\xea\x21\x5d\x0f\x5f\x1d\x44\x9b\xdd\x44\x6e\x11\xc9\x12\x41\ -\x8c\x30\xb6\x05\x83\x0b\xe9\x09\x4e\xb1\xb4\x70\x80\xde\x70\x99\ -\x8d\xad\x9a\xab\x2e\xbc\x88\xb9\xca\x11\x17\x15\x5a\x65\x0c\x06\ -\x1a\x2b\x0c\x46\x0a\x66\x33\x68\x26\x15\xcb\xfd\x0e\xf3\xc3\x01\ -\xd3\xca\xf2\xb9\x5b\xef\x66\xbc\xe5\xb9\xfe\xfa\x2b\xd9\xb3\x6b\ -\x9e\xaa\x28\x89\x54\xca\x74\xb6\x41\xda\x69\x38\x74\x74\xc4\xe2\ -\xe2\x32\xdf\xf3\xc6\xef\x66\x30\xb7\x9b\xc5\xbe\x60\xb8\x98\xb0\ -\xb6\x59\xb2\x36\x29\xd9\x37\xda\x83\xab\x2c\x2e\x49\xc9\x87\x23\ -\x6e\x7f\x6e\x85\xcf\xdf\xff\x08\x37\x5c\x75\x25\xd7\xce\x77\xf1\ -\x55\x81\x4f\x7a\x3c\x76\x6e\x9b\xfb\x1f\x7a\x84\x39\x5d\xf0\xbd\ -\x37\x5c\x4a\x8c\x61\x26\x3a\xb8\xcd\x3e\xf7\x9d\x98\x72\xfc\xc8\ -\x01\xa6\x2b\xf7\x72\xae\x02\xd3\xd3\x9c\x9f\x6d\xf3\xe1\xfb\x56\ -\xb1\x9d\xc0\x99\xed\x9c\x26\xf7\x2c\xf6\x32\x7a\xd1\x12\x77\xdd\ -\x7f\x9e\x33\xb5\x60\x35\x4a\xc8\xb5\x65\x4d\xcd\xf1\xeb\xbf\xff\ -\x97\xf8\xd2\xf3\x53\x3f\x70\x23\xfb\xe7\x62\x9a\xa6\x42\xea\x84\ -\xc7\x26\x13\x76\x1f\xdb\xc5\xfc\x9e\x0e\x5b\xd5\x06\x5b\xd6\xe2\ -\xe3\x11\x1d\x3d\xcf\xa1\xfe\x12\x3d\x1b\xe1\xa6\x12\xe7\x16\xf9\ -\xc8\xe7\x4e\xf1\xa3\xbf\xf1\x59\x5e\xfd\xab\x7f\xc3\x8b\x7e\xe9\ -\x6f\xf8\xee\xdf\xf8\x32\x1b\xaa\xc3\x96\x12\x18\x51\xd3\xeb\x67\ -\xac\x96\x92\xf7\x7f\xfa\x59\xde\xfa\x5b\xb7\xf2\x9a\xdf\xba\x8b\ -\x93\x3e\xe2\x8e\xc7\xcf\xf3\xe0\xd3\x39\x93\xba\x64\x5a\x6c\x70\ -\x78\xff\x22\x2e\xca\xc8\x93\x05\x66\x3e\x21\x11\x86\x39\x5d\x73\ -\xe4\xf0\x1e\x9e\x5b\x59\x47\xc4\x1d\xaa\xbc\x40\x7a\xd7\xe2\x4d\ -\xac\x01\x1f\x48\xb2\x14\x1d\x49\x5c\xb0\x34\x52\x83\x56\xbc\xeb\ -\x03\xf7\xf3\xf2\x9b\x3e\xcf\xcf\xbd\xff\x2e\x4e\xba\x94\xbf\xb9\ -\xeb\x69\xb6\x6c\x42\x37\xd1\x3c\xfb\xec\x1a\x47\x0e\x2e\x21\x17\ -\x8f\x32\xce\x0d\xdd\x58\x32\x13\x92\x63\xdf\x71\x29\x21\xc0\x7d\ -\xa7\x53\x36\x8d\x44\xaa\x18\x11\x14\x0d\x5d\xfe\xf3\x47\x6e\xe1\ -\x0b\x27\x9e\xe1\x57\xdf\xf3\x36\x8e\x24\x15\xc2\xb7\x71\x2f\x5a\ -\xc7\xe8\x38\x41\xca\x9d\x77\x4b\x81\x75\xd5\xff\x80\xc6\xfd\xef\ -\xaf\xba\xae\x5b\xf3\xbe\x3b\x8b\xaf\x13\xd2\x20\xc9\x84\xc7\xa6\ -\x53\x9e\x39\x73\x8a\x43\x7b\xf6\x30\x4c\x62\x04\x8a\x4a\xa7\xd4\ -\x22\x42\xe4\x5b\xbc\xf5\xb5\x97\xb1\x59\x59\xa6\x72\x0e\x17\xc5\ -\x7c\xf5\x89\x09\x6f\xfb\x17\x1f\xe6\x35\xbf\xf6\x11\x5e\xf9\x6b\ -\x9f\xe1\xf5\xff\xf2\x23\xfc\xb7\xc7\x2b\xca\xc1\x45\x6c\x77\x77\ -\x53\x84\x0a\x3b\x1c\xb0\x19\x1c\x76\xd4\x67\xcb\x81\x5a\x5e\x64\ -\x5b\x58\xa6\xa1\x1d\x5c\x94\x8e\xc9\x2d\xe4\xc6\xb5\xc6\x05\x53\ -\x20\x93\x2c\xa6\xd3\x4d\x90\xc2\x22\x6c\x4d\xe4\x1d\x69\xbe\x45\ -\x15\x07\xb6\x64\x07\xbd\x63\xf6\x95\xdd\x1e\x2b\x45\xcc\x76\x01\ -\xbf\xfd\xde\x4f\x91\x35\x8e\xf9\x4c\xd2\x89\x02\xca\x37\xa4\xa2\ -\xe6\xea\xe3\x97\xf0\xd1\x4f\x3e\xc9\x07\xee\x9c\xf1\xe7\xb7\xdf\ -\xc5\x7f\xf8\xd8\xd7\xb9\x67\x2d\xe7\x86\x57\x5e\x4f\x14\x3a\x08\ -\xbb\xca\x2e\x33\x86\x70\x9e\x2c\xda\x40\x84\x55\xac\xdb\x24\x08\ -\x4f\x9a\x76\xe8\x76\x86\x74\xba\x23\xb4\x0a\xc4\x5d\x8b\xec\x59\ -\x1e\x79\xea\x6b\xec\x9e\x83\xef\xbb\xe1\x30\xbb\xb2\x09\xcb\x7b\ -\x62\xf6\xef\xef\x71\xf0\xc8\x3e\x4e\x3c\xfa\x1c\x4f\x3d\x71\x16\ -\xed\x14\x66\x32\x66\xd0\x8b\x58\xda\xbd\x8c\x12\x43\xbe\xfa\xa5\ -\xbb\xd9\x58\xdd\x60\xdf\xee\xd1\xce\xfe\xc4\xb2\xef\xc0\x22\x7b\ -\x0f\x0f\x38\x75\xfa\x0c\x9f\xfb\xfc\x09\x3e\xf9\x99\x3b\x78\xf0\ -\xa1\xaf\x73\xe2\xd9\x33\xbc\xe8\xfa\x2b\xf0\x22\xc5\x86\x88\x8d\ -\xed\x1c\xd7\x4b\x50\x89\x22\xa9\x63\xfa\xf1\x5e\x9e\x1a\x97\x7c\ -\xf1\xde\x3b\xb8\x6c\x6f\x97\xeb\xf7\x29\x92\x60\xc9\xf5\x90\xd5\ -\x59\xc5\xae\xd8\xf0\x83\x57\x2f\xf0\x8b\x6f\x7b\x2d\x57\x1d\x3b\ -\xc4\x99\xe1\x16\x2b\xfe\x0c\x27\x4e\x9d\xe7\xea\x97\xbc\x99\xb8\ -\x81\xc7\x1e\x78\x1a\x1d\xa5\xec\x1a\x41\x7e\x7e\x83\x84\x84\xb5\ -\x49\xcd\x8a\x2d\x59\x11\x39\x8f\x9c\xda\x62\x6b\x33\xa6\x13\xc5\ -\xac\x67\x39\x92\x09\xe3\x7a\x81\x7f\xfb\xfe\x3b\xd9\xa5\x33\xae\ -\x5c\x4e\xd1\x91\xc3\x50\x71\xdf\xfd\xa7\x98\x9e\x39\xc5\x3f\x7d\ -\xe7\x8d\x1c\xdb\x25\x88\x07\x81\xa4\xeb\xf8\x99\xd7\x5f\xcc\x1f\ -\xbc\x65\x1f\x5d\x6d\x89\xa4\x41\x2b\x98\x55\x35\x9b\x45\x49\x48\ -\x7b\xc4\xfd\x39\x66\x8d\x41\x37\xb0\xa4\x32\x22\x5b\x60\xec\x06\ -\x51\x56\x13\x25\x35\xa1\x5c\xa5\x53\x6d\xf0\xe7\xff\xd7\x6d\x7c\ -\xef\x2b\x0e\x72\x74\x4f\x8c\xef\x74\xf9\xc2\xed\x0f\xd1\x3c\x3b\ -\xe3\x97\xde\x7a\x15\x7b\x7b\x82\x4a\x0f\xd8\x3d\x4c\xf9\xd9\xb7\ -\xde\xc8\xe6\xfa\x3a\xf7\x3c\xfc\x24\x5e\x48\xd2\x58\x10\xbc\x25\ -\xd4\x35\xa9\x0a\xa8\x60\xa9\x8a\x1c\x67\x1a\x02\x12\x2b\x14\x06\ -\xc9\xb0\x29\x19\x38\xc7\x83\x8f\x9c\xe2\xb6\x2f\x3f\xc2\x8f\x7e\ -\xef\xcb\x88\xed\x1a\xb9\x16\xdc\x7c\xf7\x97\xb9\xe1\x70\xe0\x6d\ -\x2f\x9c\x23\xcd\x06\xd8\x74\x9e\x97\x1e\x6c\x78\xd7\xf7\x5d\xc9\ -\x6d\x5f\x78\x18\x3d\x31\xc8\xa4\x43\x23\x7b\x04\x2b\x51\xb6\xa6\ -\x54\x09\x7f\xf0\xf1\xdb\xb9\xf9\x2b\x8f\xf0\xe6\x6b\xf7\xb7\x64\ -\x0f\x1b\xb0\xa6\x4d\x70\xb0\xbe\x75\xbd\x28\x2d\xf0\xa1\xd9\x01\ -\xf2\xb5\xb9\x4d\xdf\x48\x89\xf8\xc6\xd5\xeb\xf5\xf0\x2a\xa1\xa3\ -\x3a\x0c\x44\x8d\x30\xcf\xd1\x78\xcb\xbd\xf7\x6d\x31\xdb\xac\xf9\ -\x95\x9f\xff\x3e\x0e\xec\x9a\xe7\xa1\x47\x9f\xe4\xfe\xfb\xef\x67\ -\x49\xe6\x0c\x30\xec\x5d\x18\xa0\x5c\xc5\x9c\xdb\x64\x20\x5a\x1f\ -\xf4\xd4\x41\xe5\x21\xf3\x96\x05\x1a\x32\x5b\x50\x97\x63\x3a\x7e\ -\x86\xa8\x67\xa8\x50\xe1\xaa\x19\x5d\x69\xa8\x67\x5b\xc4\xae\x20\ -\xa5\xa4\x69\xda\xb4\x7a\x2b\x22\x54\x3a\xc0\x0b\xb8\xec\xe8\x3e\ -\x74\x50\x03\xbc\x13\x0c\xd3\x1e\xd1\xa0\x5d\xc7\x57\x41\xe1\x8a\ -\x84\x85\xa1\xe5\xd9\x00\x8b\x73\x92\xb5\xbc\xa0\xab\x4b\x04\x96\ -\xb5\x69\xca\x47\x6f\xbf\x8b\x1f\x7b\xcb\x2b\x10\xc9\x12\x82\x35\ -\xbe\xfb\x9a\x3d\x1c\x3e\x9a\xf1\x27\x7f\xf6\x38\xcf\x56\x4d\x9b\ -\xba\xc6\x98\xfd\x8f\x5e\xc0\x8d\x2f\x3e\xcc\xc9\xfb\x1e\xe3\x91\ -\xd3\x09\x65\xe2\x18\x95\x9b\xd8\xd1\x4b\xb0\xc9\x22\x57\x2c\x75\ -\x88\xbb\x01\x15\x2d\xe0\xea\x19\xfb\x7b\x3d\x66\x5e\x70\xb8\xe7\ -\x29\xa4\x60\x6d\x12\xf1\xde\xbf\xfe\x02\xaf\xba\xee\x72\xde\xf3\ -\x63\x37\x12\x2b\x38\x37\x86\x13\x4f\xad\x72\xcb\xe7\x1e\xe0\xf8\ -\x05\x47\x89\x82\xa3\x61\x44\xcf\xa4\x5c\xba\x98\x70\x7f\xd9\x8e\ -\xf2\x5f\x7f\xe2\x2c\x7b\x8e\x2c\x50\xc5\x23\xd6\xeb\xc7\x60\x2b\ -\x70\xe3\xcb\xae\xe5\x13\x9f\x3d\xc1\xdd\xa7\xcf\x13\xfa\xbb\xe1\ -\xec\x06\x92\x3e\x6f\x78\xd5\x3e\xae\xbe\x6c\x89\xaf\x3e\xb1\x46\ -\xdc\x37\x1c\x5d\x50\xfc\x1f\x3f\xf9\x52\x82\x87\x32\x6a\x7d\xb6\ -\xa7\xcf\xc0\x1f\x7e\xf8\x93\xbc\xf0\xd0\x05\x2c\x0d\x6b\x66\x27\ -\x57\x11\x9d\x11\xb7\xac\x04\x9e\xfe\xf3\xfb\x78\xcb\x4b\x2e\xe6\ -\xcd\x37\x8c\xf8\xc5\xe5\xd7\xe2\xf0\x6c\x9d\x33\xdc\xf6\xf8\x73\ -\x9c\x3c\x75\x9e\x17\x5f\x71\x25\x8f\x6f\xae\x72\xe5\x52\xcc\x92\ -\x8e\x51\xb9\x64\x7e\x21\xe6\x43\xb7\x3e\xc4\xc3\x2b\x0a\x99\x0c\ -\xe8\x0e\xd7\x90\x62\xc8\xa2\x52\x74\x6b\x45\x25\xe0\x4c\x99\xf3\ -\xfe\x3b\xef\xe5\x1d\x07\xaf\x66\xd0\xc9\x90\x8d\x63\x1a\xc5\xfc\ -\xc6\x9f\xde\xc3\x8d\xd7\x1c\xe1\xb7\x7f\xec\x65\x2c\x0d\x13\x56\ -\x0a\xf8\xf2\x89\xf3\xbc\xfb\xcf\xee\x67\xad\xb6\xcc\x65\xb0\x9a\ -\xa4\x44\x8b\xbb\x98\x8f\x1e\xc3\x62\xc9\xcb\x6d\x16\xe6\x33\x26\ -\x31\x64\x89\x22\x9d\x6a\x7a\xa3\x0e\x56\x8f\x10\x9d\x35\x12\x95\ -\x51\x14\x8a\xfb\x9f\x39\xcd\xc3\xe7\x14\x3f\xf5\xe6\xef\xe2\x3f\ -\x7d\xe0\x23\x3c\x27\x46\xfc\xc2\x07\xee\xe6\x35\xd7\x1d\xe2\xdf\ -\xfc\x93\x97\xb1\x14\xc3\x7a\x19\xb8\xf5\xde\xa7\x79\xdf\x57\x1e\ -\x65\x2c\x47\x24\xa1\x41\x38\x8f\x08\x1d\x46\x0b\x92\xf3\xd9\x12\ -\xb1\xf2\x44\xa5\x25\xca\x86\x84\x6a\x8d\x0b\x06\x96\x33\x80\x19\ -\xec\x27\x0e\x8f\x62\x64\xc5\x47\xef\x79\x94\x7f\xf1\x92\x4b\xf8\ -\x99\x1f\xbc\x91\x3f\xfe\xab\xcf\x70\xb6\x9a\xe3\x67\xff\xe8\x4b\ -\xbc\xe1\xe5\xd7\xf0\x5f\xff\xd5\x71\x86\xc0\x99\x8d\x9c\x8f\xdf\ -\x7e\x82\x4f\xdd\xfd\x34\x79\x34\xa0\xe7\xb6\x20\xbe\x8a\x48\x07\ -\xd2\x28\x60\x42\x07\x53\x0a\x3e\xfe\xc5\x27\x79\xe9\xf5\x97\x30\ -\xed\xef\x47\x66\x8f\xa2\x8b\x1c\xa9\x12\x1a\x1f\x88\xa2\x98\x22\ -\xaf\x10\xd1\x88\x03\xd9\x84\x8b\x0e\xf4\xf8\xc2\xaf\x7f\x37\x85\ -\x87\x48\xb6\x9a\x2a\xef\x03\x5a\x0a\x5e\xf1\xbf\xde\xcc\x68\x61\ -\x9b\xfb\x48\xe8\x2e\xee\x63\xf4\xf4\x0a\x79\x1c\xf3\x73\x7f\xfc\ -\x79\xbe\xff\xc6\xcb\xf9\xdd\x9f\x7e\x31\x69\xfa\x62\x72\x03\x9f\ -\xff\xda\x49\x7e\xf2\xff\xfc\x34\x67\xce\x6f\x31\xca\x12\x4c\x7a\ -\x9c\xed\xf9\x01\xd8\x86\x44\xcc\xa3\x9a\x9a\x34\x6e\xd8\xec\xcd\ -\x63\x47\x92\xc8\x9d\xc0\xf6\x16\xb1\xe3\x35\xe6\xfb\x31\xc3\x6e\ -\x87\xc7\x64\xc4\xfe\x6e\xc6\xaa\x57\xd4\x52\x12\xe3\x30\xce\xef\ -\x00\x03\x2a\x54\x80\xaf\x3f\x71\x0a\x71\xed\x7b\x6f\x0b\x48\xfd\ -\xbc\xed\x48\x4a\x49\xa2\xbb\xd0\xcc\x70\xd5\x8c\x5e\x7f\xc8\xf9\ -\x69\x49\xed\x25\x51\x14\x61\xea\x82\x52\x8c\x88\xeb\x73\x74\x53\ -\xc1\xc4\x44\x18\x14\x1d\x6a\xfa\x49\xcc\xd6\xcc\xa0\x7b\x83\x76\ -\x4f\x50\xe5\x44\xb6\x64\xef\xe2\x80\xd5\x8d\x4d\x64\x67\x11\x1b\ -\xf5\xe8\x8a\x82\x54\x7a\xf6\x2c\xcc\x31\xde\x9e\xe2\x54\x82\xf3\ -\xe0\xeb\x92\x44\x04\x22\x21\x69\x54\x87\x71\x0d\x49\x9a\xe2\xca\ -\x09\x3d\x65\x49\x54\x2b\xce\xd7\xa2\xa4\x30\x02\x19\x0f\xe9\xa6\ -\x19\x97\x1c\xd8\x45\x37\x0a\xac\xaf\x9e\x27\xc9\xba\x3c\x3d\xb6\ -\x24\xc2\x70\x60\xcf\x3c\x27\xcf\x9e\xe1\xdc\xfa\x18\x15\x77\xd1\ -\x4a\xb0\x38\xe8\xb1\x38\xec\xf2\xf5\x53\x5b\x8c\xad\xa2\x9f\x6a\ -\xe2\x72\x9d\x43\xbb\x17\xa8\x44\xca\xe3\xe7\xc6\x48\x53\x91\x24\ -\x19\x93\xd9\x84\x17\x1c\x3b\x4c\x52\xd5\x3c\x3a\x5e\xc5\x75\x17\ -\x49\xf2\x88\x8a\x6d\x0e\xf6\xe7\xa8\x62\xc1\x23\x67\xce\xd2\x25\ -\x85\x54\x90\x57\x1b\xbc\xe8\xc0\x5e\xd6\x67\x8a\xd3\xd3\x75\xca\ -\x2a\xc2\xf5\x22\xf6\xab\x09\x2f\x39\x74\x04\xd5\x1f\x30\x5f\x97\ -\x3c\x33\x0b\x48\x65\xd8\x73\xe4\x20\xff\xe5\xa3\xb7\xb0\xe6\x86\ -\xe4\x0d\x64\x7e\xc6\x7c\x5c\x51\x79\xc9\xd4\x77\x10\xc9\x10\xed\ -\x2b\x44\x7e\x8e\xe5\xb9\x2e\x2b\x5b\x25\xba\xb7\x8b\x6d\x35\x84\ -\x6a\x4a\x26\x0a\x3a\xa2\x81\xe0\x08\x32\xc6\xaa\x0e\x79\xe5\xd0\ -\x71\x86\x2f\x56\x58\x1e\x44\x54\x65\xcd\xa4\x54\x24\x83\x65\x3c\ -\x0e\x67\x4b\x16\xd5\x8c\x49\x13\x41\x6f\x91\x62\x7b\x8b\x5d\xa3\ -\x94\x62\x7b\xcc\xd4\x27\x74\x16\x0f\xc2\x6c\x95\x98\x82\x58\x06\ -\x36\x4b\x20\x5b\xc6\x18\xc7\x50\xcf\x88\xcd\x2a\xdd\x90\xe2\xa3\ -\x0e\xdb\x46\x32\x73\x12\x9d\x76\xdb\x1c\x5b\x53\xa1\x65\x40\xd6\ -\xdb\xcc\x2d\xec\xe6\xd4\xda\x98\x6c\xb0\xd0\xd2\x3c\x42\x43\x28\ -\xb7\xe9\x75\x22\x9c\x8c\xd9\xae\x1d\x49\xb7\x4b\x33\x5b\x67\x39\ -\x6b\x11\xb8\xdb\xbe\x83\xc9\x16\x91\x4d\x49\xa2\x03\xca\xe6\xe0\ -\x6a\x92\xb4\x43\x2d\x33\xc6\x95\x42\x64\x03\xba\xcd\x59\x52\x1c\ -\x91\xd2\x8c\xab\x40\xa3\x7b\x28\xad\x91\xd5\x0a\x4b\xb1\xa1\xd0\ -\x8b\x6c\x6e\x6e\xd2\xed\x0d\x90\x3a\xa2\xb1\x0e\xa9\x22\x8c\x31\ -\x08\x1d\xe1\x7d\xab\x09\xaf\xeb\x16\xc4\x9d\x46\x31\xa6\xa9\x90\ -\x04\xb2\x2c\xa3\xb0\x31\x2e\x5f\x61\xf7\x30\x63\x6b\x56\xd1\x44\ -\x43\x50\x19\x89\x28\x20\xdf\x40\xc5\x49\x4b\x7e\x94\x31\x95\x48\ -\xa9\x65\x07\xa9\x22\xca\xf1\x3a\x4b\x83\x0c\x59\x9f\x25\x0f\x7d\ -\x44\xb2\x80\x70\x06\x3f\x3b\xc7\x9e\xc5\x01\x9b\xa5\xa5\xa2\x8b\ -\x0d\xd0\x8f\x35\xb6\x9c\x10\x9a\x8a\xe5\xe5\x65\xce\xad\x6f\x12\ -\x75\x46\x14\x2e\x90\x08\x83\x52\xdf\x00\x1c\xb4\xa0\x3d\x4c\x8e\ -\x78\xd1\xef\xdd\x1c\x82\x50\x48\xdd\xa6\x66\xb7\x49\xe4\x82\x6e\ -\x1a\xa1\x31\x4c\xa7\x39\x51\xda\x47\xc6\x59\x7b\xd3\x95\xa0\xf4\ -\x96\x21\x19\xe5\x6c\x8b\x6c\x41\xd3\xa0\x51\x4d\x87\x72\x3a\x61\ -\x7e\x57\xc2\xfa\x4c\x22\xa2\x84\x28\x4e\xa9\x67\x63\x94\xaf\x49\ -\x22\x8d\x53\x09\xdb\x95\xa7\x97\x69\x9a\xd9\x36\x11\x9e\x34\xeb\ -\x50\x58\x81\x0b\x01\xed\x1d\x5a\x58\xaa\xa6\x26\xea\x8d\x68\xbc\ -\x44\x21\x90\xae\x24\x91\x10\xc5\x09\x1e\x4d\x47\x97\xd8\x90\x90\ -\x74\x86\x48\xc0\xe6\xdb\x24\xca\xb3\xb8\x34\xcf\x93\x4f\x3e\x49\ -\x99\xce\x21\x9b\x92\x6e\xa4\xd8\xbd\xbc\xcc\x99\xd5\x0d\x6a\x04\ -\xd6\x36\x38\x67\xb9\xe2\xc0\x22\x5b\x55\xe0\xdc\xd6\x8c\xbc\xa8\ -\x58\x18\x74\x28\xb6\xb7\x58\x5e\x5e\xa6\x34\x9e\x93\xd3\x9a\x34\ -\x68\x4c\x0c\x3a\x12\x5c\x7f\xf8\x08\x9b\xab\x2b\x3c\xb9\x76\x9e\ -\x7e\x6f\x9e\x59\x69\x49\xb4\x63\x79\xd0\xa5\xa9\x6b\xce\x4d\x73\ -\x2a\xa7\x68\x4c\x40\x44\x9a\xab\xf6\x76\x29\x4c\xc9\xfa\x6a\x4d\ -\x3c\x18\x70\xc3\xc5\x7b\xa8\xb7\x2b\xee\x3e\xb9\xc2\xde\xd1\x90\ -\x4a\x2a\xd6\xce\x9d\xa5\xdb\xed\xf3\xc0\x93\xcf\xb1\x2d\x62\x74\ -\xa7\x4b\x14\x3c\x94\x39\x51\x9c\x52\x21\x29\x1b\x43\xb7\x93\xa2\ -\xeb\x1c\x61\x0c\x5e\x6b\x6c\x94\x82\x69\xc3\x93\x3d\x6d\x3e\x90\ -\x92\x12\xbc\x47\xfa\x40\x12\x29\x6a\x1f\xd1\x8d\x0d\x75\xbe\x8e\ -\x44\x21\xe3\x39\x1a\xa7\x11\x0a\x8c\x2d\x48\x64\x42\xee\x2b\xe8\ -\x48\x5c\xe3\xc8\x5c\x42\x24\x34\x46\x07\x72\x57\xd0\x8d\x3a\x54\ -\xdb\x63\xb2\x48\x13\x92\x8c\x90\x75\x29\xb6\xb7\x49\x44\xa0\xe7\ -\x1d\x25\xe9\x4e\x48\x58\xcb\xe5\x55\x0a\x82\xad\x08\xae\x21\x52\ -\x12\x17\x7a\xb8\x60\xf1\xd2\xe1\x69\xa3\x3c\x93\x28\x25\xd5\x19\ -\xd3\xc9\x8c\x24\x31\x38\xdd\xc1\x79\x41\x2c\x1c\x76\xba\x4e\x96\ -\xc6\xb8\x64\xc0\xd8\x08\xe6\x15\x34\xd6\xe3\xe5\x4e\x30\x58\x08\ -\xe8\x1d\x85\x8f\xf0\x01\xa1\x15\x34\x33\x22\xe5\x11\x69\x97\xa9\ -\x6d\xd3\xfe\x06\x2a\x10\x66\x6b\x98\x1d\xae\x96\x52\x8a\xc6\xba\ -\x96\xa7\xac\xa2\xe7\x81\x71\x9e\x04\x6b\x5b\xaf\x72\x1a\x47\x88\ -\xe0\xf1\xb6\x85\x9f\x85\x10\x68\x22\x8f\xac\x25\xa1\x30\xc4\xdd\ -\x84\x52\x36\x10\x49\xb4\x53\x44\x8d\xa4\xd9\xc9\x16\x0e\x21\x60\ -\x11\x78\x19\x91\xc6\x1a\x5f\x6e\x13\x4b\x43\xd3\x34\x24\xa3\x05\ -\x36\xa7\x25\xbd\x34\x23\x71\x06\xdf\x54\x14\xc1\xa1\x3a\x3d\x64\ -\x13\x90\xb2\x35\xa1\x24\xb1\x66\x3a\x9d\x92\xa4\x1d\x8c\x0b\xed\ -\x7e\x9f\xa2\xa5\x8f\xa0\xb0\x2e\x20\x11\x24\x91\x40\x5d\xf3\xa6\ -\x7f\x7c\x53\x2f\x89\x11\xce\x13\x23\x51\x1e\x9c\x30\x04\xef\x68\ -\xaa\x9a\xe1\x70\x88\xad\x2d\x92\x80\x2d\x0b\x14\x50\x04\x49\x70\ -\x29\x49\x92\x52\xb9\x19\x79\xe5\xb0\x7e\x80\x8e\x3a\x8c\xa7\x6b\ -\xa4\xc1\x20\x02\xe4\x79\x81\xd6\x6d\xe9\x1e\x67\x08\xce\x90\x6a\ -\xc9\xac\xa8\xe8\x77\x62\x74\xf0\x54\x75\x8d\xd2\x11\x52\x2a\xa4\ -\x37\xc4\x32\xb0\xb4\xd4\xa3\x29\x67\xf4\x53\x45\xec\x0b\x0e\x2d\ -\xf6\xd1\xc1\xd0\x49\x3b\x2d\xd6\xd1\x0a\x0e\x1c\x3c\xc4\xe9\xd3\ -\x67\x31\xc6\x30\xd9\x9e\x52\x58\xc3\x60\x61\x91\x49\x59\xb0\x5d\ -\xb6\xa5\xf8\xa6\x6a\xe8\x0f\xe6\xd8\xbd\x7b\x1f\x27\xcf\x9c\x45\ -\xc4\x31\x86\xc0\xf6\xda\x2a\x4b\xcb\x4b\xc4\x49\x4a\x6d\x3d\x9b\ -\xb3\x8a\xa8\x3b\x62\x63\x6b\x8b\x8b\x8e\x1c\x42\x56\x33\x36\x66\ -\xeb\x28\x67\x48\xb5\x60\x63\xb2\xc6\x95\x07\x0f\x32\x27\x3c\x8f\ -\xac\x3d\x41\x9a\x2c\xb0\x5e\xcd\x30\x79\xce\xd2\x68\x1e\x1b\x09\ -\xaa\xbc\x66\x10\xf7\x18\x1b\xc3\xd6\x34\xe7\xe0\x20\xe1\xea\x0b\ -\xf6\xb1\x3b\x8b\x19\x46\x8a\x95\xcd\x31\x93\xd9\x84\x4b\x0f\x0e\ -\xb9\xf9\xc4\x19\xd6\xb6\x0a\xce\xae\x4c\x88\x7b\x5d\x4a\x57\xa3\ -\x12\x4d\x31\x2d\xe8\x74\x16\x70\x16\x2c\x8e\x20\x3d\x58\x47\xaa\ -\x3a\x44\x51\x07\xaf\x14\x95\x2d\x18\x51\xa2\x77\x98\xc6\x04\x8b\ -\x56\x12\x1d\x2c\xb8\x12\x69\x2b\xaa\xa0\xda\x98\x4a\x2d\x11\x32\ -\xc2\x38\x68\x9c\xc7\x06\x8b\x50\xa0\x9c\x40\x68\x8b\xf3\x05\x99\ -\x52\xc4\x5e\x22\x6d\x40\x52\x21\x75\x45\xa8\x0c\x83\x4e\x87\x48\ -\x69\xaa\x72\x0a\xa2\x44\x84\x8a\x14\x49\x22\x32\xa6\x59\x83\x8c\ -\x1c\x4a\x39\x42\x28\xc1\xb5\xe7\x96\x5a\x6a\x1c\x8a\x0a\x87\x8c\ -\x02\x51\x04\xc1\x96\xa4\xb1\xa2\x6a\x6a\x2a\x53\x93\xf6\xbb\xd8\ -\xba\x44\xe8\x84\xb2\x34\x64\x71\x97\x24\x4e\x41\xb4\x86\x01\xaf\ -\x24\x69\x33\x6d\x4d\x01\x3b\x6c\x78\xe1\x1b\xa2\xd0\xfa\xaa\x53\ -\x4a\x72\xdb\x21\x4b\x63\xea\xa6\xa2\xb1\x06\xa9\xe3\x36\x33\xd8\ -\x7a\x92\x38\x03\xdd\xfa\xb3\x8d\xb5\x04\x21\x77\x40\xdf\xff\x1d\ -\xe8\xce\x54\xc4\x02\x12\x0d\x38\x83\xa9\x4a\x24\x9e\x58\x4a\xbc\ -\x31\x34\x32\x20\x43\x44\x27\x9d\x03\x29\x29\x6d\x8e\xd0\x92\x3a\ -\x6f\x18\xa4\x73\x38\x3b\x23\x56\x02\x85\x47\x62\xa1\x99\x21\xcc\ -\x84\x8e\x36\x44\xd4\x20\xe7\x29\x4c\x8d\x17\x16\x2d\x24\x4d\x61\ -\x88\xa2\x0e\x22\x8a\x29\xea\x9c\x4c\x49\x1a\xdb\xe0\x85\xa4\x34\ -\x01\xa1\x13\x84\x94\xed\xbe\x9a\x80\xd2\x2d\x89\x51\xaa\x16\xb6\ -\x6f\x9d\xc7\xfa\x80\x7a\xd1\x8f\xfc\xc2\x4d\x73\xa3\x21\x42\x0a\ -\xd2\x4e\x8f\xac\xd3\x61\x6e\x90\x31\xbf\x30\xbf\x03\x8d\x8e\x98\ -\x1b\xf4\x11\xde\x31\x3f\x37\x42\x12\x48\x92\x04\xe9\x1a\xa4\x2b\ -\x50\x4d\x49\x27\xca\xd0\x91\x26\x8e\x21\x11\x96\x2e\x0d\x59\x9a\ -\xa0\x95\xa6\x13\x6b\x12\x02\xc3\x2c\x42\x79\x47\x37\x4b\xc8\x3a\ -\x19\xda\x37\xcc\x75\x53\x08\x8e\x6e\xb7\x4b\x27\x89\xd8\x35\x3f\ -\xe4\xd0\xde\x25\x66\x53\x43\x27\x19\x10\x2c\xa4\x32\x61\xff\xd2\ -\x2e\xa6\xe3\x82\xc9\x76\xc3\x2c\x87\xb2\x1c\x93\x25\x1a\x19\x2c\ -\xf9\xf6\x36\x4a\x49\x94\x56\x6c\xcf\xb6\xb9\xf0\xc2\x63\xac\x9d\ -\x3f\x4f\x12\xc5\x64\x71\xc6\xea\xea\x1a\xbd\x6e\x46\x27\x8d\x99\ -\xe5\xd3\x36\xf3\x55\x6a\xc6\xe3\x31\x4a\xb6\xb3\x57\x6d\xc1\x78\ -\x01\xce\xd0\x14\x53\x5e\x7e\xf8\x62\xc6\xa1\xa2\xa9\x0d\xfd\x4a\ -\x22\x6b\xc5\xf9\x8d\x09\x07\x8f\x1c\x43\x34\x9e\x73\xdb\x5b\xcc\ -\x89\x98\x46\x29\xb6\x6c\xc3\xc1\xfe\x3c\x89\x0c\x9c\x59\x7b\x8e\ -\x0b\x7a\x5d\xd2\x74\x9e\xfd\x83\x14\x23\x3d\xcf\x9d\x3f\x4d\x5e\ -\x8c\x69\x70\xec\xea\xcf\xb1\x2b\x55\xdc\x71\x66\x9b\xa6\x69\xc3\ -\xb5\x9c\x37\xa8\x28\xe0\x6d\x4d\x96\x76\xb1\x95\x45\xe3\x11\xd2\ -\x91\xa6\xad\xeb\x29\x18\x4f\x55\xd6\x20\x1c\x69\xaa\x28\xac\xc0\ -\x0a\x09\x5a\x22\x95\xc4\x06\x8b\x41\x10\x54\x82\xd3\x19\x51\x24\ -\xa8\x6d\x81\x0d\x16\x1f\x5a\xc8\x7a\x1c\x45\x28\x15\x10\xca\xb7\ -\x2f\x7f\x1c\xe1\x4c\x40\x84\x80\xf0\x0d\x5a\x58\x08\x06\x6f\x3d\ -\x49\x9c\x60\xaa\x86\x60\x3d\x41\x5a\xa4\x74\xc4\x4a\xa2\x82\x22\ -\xdf\x2e\x69\x64\x83\xf2\x8e\x58\x06\x74\xb0\xc8\xb0\x83\x9b\x91\ -\x11\xd6\x05\x84\x6e\xf0\xce\xb4\xc5\xc9\x20\xf0\xc6\x11\x45\x9a\ -\x80\xc3\xba\x8a\x54\xb6\x00\xf1\x34\x4e\x30\x4d\xdd\xea\xcb\xbd\ -\x41\x6b\x01\x38\x8c\xca\x08\x3a\xc6\x8a\x00\xc2\x21\x85\xc0\x11\ -\xb0\x48\x1a\xa1\x89\x75\x84\x33\x25\x22\x58\x22\x2d\xd0\x52\x22\ -\x85\x40\x3a\x87\xb7\x16\x13\x1c\xce\x07\xfc\xce\x91\x4c\x08\x01\ -\x6b\x1a\xd4\x37\xbc\xcb\x51\x84\x0d\x6d\x07\x70\xd0\x06\x51\x0b\ -\x81\xa1\x5d\x19\x29\x34\x91\x00\x67\x0a\xac\xad\x48\x93\x14\xe5\ -\x25\x91\x92\x34\xf5\x8c\xa0\x25\x8d\xf3\xd4\xc1\x23\xa2\x16\x6b\ -\xeb\x95\xc4\xaa\x88\xa9\x81\x50\x07\x74\x14\xe8\x24\x0a\xe1\x1d\ -\xde\x38\xe4\x0e\xf1\x23\x8e\x15\xc1\x37\x48\x25\x51\x49\x8c\xb1\ -\x16\x1d\x69\x1a\x53\xa1\x44\x40\x8a\x96\x84\x59\xd5\x0d\xce\xf9\ -\x16\xe8\x47\x8b\x99\x55\x87\xbf\xff\xc7\x6f\x2a\x4c\xc3\xca\x78\ -\x8b\x71\x55\xb2\x59\x14\xc4\xae\x46\x10\x51\xd9\x16\x07\x2a\x09\ -\x10\x1c\xcb\xcb\x4b\x18\xe7\x98\x4b\x14\xfb\x96\x33\xf6\xcf\x67\ -\x5c\xb8\x7b\x0f\xc2\x7a\xb2\x5e\x44\xaa\x2d\xcb\xdd\x8c\x85\x85\ -\x11\x3e\x08\xfa\xfd\x21\x49\xa4\x89\x65\xe0\xe0\xde\x3d\x58\x1f\ -\x10\x2a\xc2\x18\x8b\x37\x15\xcb\x0b\x73\xad\x50\x19\xc9\x74\x36\ -\xa3\xce\x67\x64\x5a\xb1\xbe\x5d\x30\x29\x4a\xc6\x79\x49\x6d\x0c\ -\x45\x5d\xd2\x1d\x0d\x39\xbb\xb1\x85\x4c\x13\xd2\x44\x52\xcc\x26\ -\x1c\x3b\xb4\x8f\xd9\x74\x42\x51\x36\x08\x25\xa9\xca\x82\xb9\x41\ -\x8f\xae\x52\x6c\x6d\x6d\xb7\x10\x70\xad\x29\xf3\x19\x73\x73\x03\ -\x5c\xd3\x60\x8c\xc1\x09\x8d\x75\x81\xe9\x6c\xc6\xc5\xc7\x8f\x33\ -\x9b\x4e\xa9\xca\x62\x07\xf0\xed\xa8\xcc\x8c\x2b\x8e\x1c\x65\x6b\ -\xb2\xc9\xc4\xd4\x74\xe2\x0e\x95\x94\x3c\xbd\xb1\xca\xbe\xe5\xdd\ -\x08\xdf\x50\xd6\x0d\x5e\x46\x14\xd3\x82\x26\x9f\xb0\x6f\x71\xc8\ -\xa1\xe5\x21\x83\x4c\x73\xf1\x9e\x2e\x73\x91\xe4\x8b\x27\x9e\xa0\ -\x32\x9a\x7d\x7b\xf7\xf0\xc0\xa9\x75\xbe\x76\xaa\xe6\xee\x35\x43\ -\x95\x4f\x77\x30\xa8\x50\x35\x15\x71\x1c\x63\xea\x86\x4c\x47\xd8\ -\xba\x42\x47\xad\x33\xa5\x2e\x0a\x44\x08\x44\x5a\x23\xa4\x27\xd2\ -\x92\xa6\xae\x08\x49\x0f\x87\x47\x4b\xd1\x3e\x5c\xdb\xb4\xf8\x57\ -\x15\x53\x7b\x90\x4d\x4e\x94\x68\xd8\xa9\x78\x6a\xa1\xda\xa4\xf8\ -\xe0\x70\xc1\x62\x01\x17\x62\x02\x19\xa8\x08\xe3\x1a\xac\xf2\x88\ -\xa8\x43\x10\x5d\x6a\x17\xf0\x68\x44\x9c\x22\x54\x44\x6d\x02\xc6\ -\x0a\x64\xdc\x21\xce\x7a\xc4\x2e\x41\x3a\x8d\x74\x0a\x11\x5a\xee\ -\xb0\xf1\x6d\xfe\x28\xaa\x0d\x5b\xa6\x01\x8c\x26\x52\x1d\x9c\x91\ -\x24\xba\x83\x12\x12\x6f\x3d\xb1\x96\x34\x75\x3b\x8b\x34\x75\x45\ -\xd6\x89\x11\x12\xbc\x33\xd8\xa6\xa6\x96\x09\xd1\xce\x8a\x4c\x0a\ -\x8b\xc0\xb7\x35\x0d\xa5\x41\xa7\x44\xc1\xe2\x6c\x4d\x9a\x26\x48\ -\x09\x75\x55\x21\x83\x47\x29\x49\x9c\x44\x04\xd9\x46\x75\x0a\x21\ -\x71\xbe\xc5\xf1\xc8\x1d\x80\xbb\xf7\x0e\x67\x1b\x82\x77\x08\xda\ -\xe5\xa8\x7a\x9e\x92\x62\xd0\x5a\xe1\x9b\x80\x14\x06\x9d\x58\x1a\ -\x53\x21\xd0\xd8\x3a\x10\x47\x02\xa9\xea\xf6\x33\x04\x90\xed\x00\ -\x44\xf0\x34\xa6\x01\x19\x41\x94\xd1\xd5\x12\xa9\xa0\x98\x4d\x20\ -\x38\x3a\x59\x02\x32\xb4\xab\x04\x02\x32\x6a\x2b\xd4\xb5\x69\x88\ -\x23\x8d\xb5\x4d\xbb\x12\x92\x20\x95\x40\xaa\xb8\x45\xe4\x4a\xd9\ -\x9a\xe5\xad\x6b\x31\x44\x97\xfe\xd0\xcf\xde\x34\x1e\x8f\x77\xf6\ -\x08\x1a\xa1\x62\x8e\xcc\x8f\x98\x4c\x2b\x26\xb9\x01\x21\x99\x4e\ -\xc6\xc4\x91\xa0\xb1\x96\x95\x8d\x2d\xd6\xa6\x35\xe7\xb7\x67\x78\ -\x19\x33\x37\xbf\xcc\x13\xa7\x56\x39\x5f\x07\x36\x2a\x47\x51\xd4\ -\x74\xb3\x2e\x67\xd6\x36\x99\xcc\x4a\x8a\xbc\xa0\x2a\x72\xa4\x8e\ -\x59\x9f\x14\xac\x4f\x6b\x8a\xa6\xc2\x9a\x96\x06\x3f\x2d\x6a\xa6\ -\xa5\xc1\x7a\x49\x5d\x56\x28\x25\x19\x2d\x74\x39\xbb\xb2\x42\x3a\ -\xe8\xa1\x63\x45\x65\x66\x1c\x3e\xbc\x9f\xf5\xc9\x2a\x56\x18\x8a\ -\xc6\xa1\x04\x24\xba\x4d\xb2\xab\xbd\xc0\xec\xc4\x43\x16\xb3\x29\ -\x47\xf7\xec\x63\x3c\x2d\xb1\x71\x87\xc6\x07\x8c\x6f\x98\x4d\x26\ -\xcc\xcd\x2d\x30\x1e\xcf\xa8\x83\xc4\x86\x16\x6d\x9a\x68\xc5\x85\ -\x07\x96\xd9\xde\x58\x41\x46\x09\x56\x44\xac\xd9\x29\xf3\x41\x72\ -\x68\xef\x2e\x9e\x9b\xac\x60\x22\x45\x1c\xc7\x4c\x66\x63\x8a\x26\ -\x67\x39\xeb\x73\xb6\x98\x21\x0c\xec\xea\xf7\x69\x54\xc3\x9e\xa5\ -\x11\xdf\x71\xf4\x12\xd6\x9c\x61\x9c\xe7\x04\x13\x58\xa9\x25\x97\ -\x1d\x7f\x01\x73\xdd\x2e\x77\x3c\xf2\x04\x5b\x95\x67\x2a\x2d\x89\ -\x0d\x44\xb1\x22\xb7\x35\x52\x47\x58\xaf\xc0\x2b\x9c\x69\xe8\x76\ -\x63\x0a\x53\xa1\xe3\x04\x44\x84\x54\xad\x6f\x34\xa8\x40\x90\x0a\ -\xd3\x08\xa2\x60\x09\xb6\x21\xb8\x36\x82\x52\x21\x89\x95\x24\x26\ -\xa0\x5d\x83\x40\xec\xb0\x97\x05\xce\x81\xf6\xed\x67\xa4\x00\x21\ -\x15\x3a\x4e\x30\x75\x7b\x7c\x11\xf0\xa0\x04\xd6\xb7\x1d\xd2\x79\ -\x85\x0f\x01\x15\x49\xac\xb3\x18\x1b\xd0\xba\xd3\x52\x2e\x9a\x1a\ -\x4b\x4d\xe4\x5b\x50\xb5\x05\x82\x52\x20\x5b\xb1\xbb\x73\x16\x41\ -\x40\xd8\x08\x81\xc2\xe2\xf1\xc2\xa1\x63\x4d\xd5\x34\x6d\xb6\xad\ -\x4e\xa9\x6c\x83\x90\x0a\xa9\x25\x4e\x78\x82\xa4\x5d\x02\x07\xe8\ -\x77\x07\x28\x53\xa1\xbc\xc5\xdb\x1a\x89\x44\x0a\x89\x08\x82\x48\ -\x00\x4d\x83\x88\x25\x3e\x04\x8c\x6b\xe9\x19\x49\x94\x20\xb4\xa6\ -\x6a\x2a\x2a\xdb\xb4\x20\xef\x9d\x25\x6f\x08\x01\xa9\x34\x51\xa4\ -\x31\xa6\xdd\x4f\xca\xa4\x8f\xd0\x09\x32\x4a\xa9\x6c\xa0\x32\x9e\ -\x20\x23\x82\x4c\x09\x32\x26\x56\x92\xca\x54\x08\xad\xda\x09\x46\ -\x46\x44\x71\xdc\xee\xc3\xf1\x48\xd3\xec\xd4\x0a\x34\xc2\x18\x32\ -\xe1\xd1\xce\x80\x17\x6d\xc7\x76\x15\x8d\xf1\xe8\x28\x46\x47\x09\ -\x0e\x43\xe3\x6a\x7c\x90\x38\xd7\x66\xe2\x08\x21\xd0\x42\xb5\x2b\ -\x9b\x10\xe8\xa4\x1d\x02\x82\xb2\xb4\xd4\x2e\x20\xa4\x22\x52\xea\ -\xf9\x7c\x21\x11\x3c\xea\xba\xb7\xbd\xe7\xa6\xf1\xfa\x66\x1b\x2d\ -\xe0\x24\xb6\xf1\x2c\x75\x63\xd6\xc7\x33\x9c\x8c\xa8\x4d\x4b\xbf\ -\xef\x77\x33\x6a\x63\x68\x9c\x27\xd5\x16\x6b\x03\x83\x34\xa3\x2f\ -\x1b\xce\x9d\x3f\x47\x11\x22\xb4\x92\xf8\x72\x0d\x11\xf5\x68\xbc\ -\xa2\x6c\xdc\xf3\x25\x71\x27\x24\x8d\x48\xc9\x9d\x46\x6b\x09\x41\ -\xd0\xeb\xf7\xe8\xf4\x47\xac\x8e\x67\x44\x49\x07\x44\x3b\x92\x5c\ -\xb0\x77\x2f\x1b\x1b\x53\x5c\x88\x68\x6a\x87\x30\x96\x44\x47\x04\ -\xeb\xb1\xb5\xc1\x26\x5d\x82\x37\x54\xf9\x8c\x83\x87\x8f\x70\x7e\ -\x6d\x42\x13\x24\x49\x9a\x92\xe7\x33\xea\xc9\x94\xa8\x33\x62\xbd\ -\x6c\x70\x91\x6e\xa3\x30\x82\xa3\x2e\x2a\xba\xdd\x39\x26\x55\x0d\ -\x52\x21\xa5\x62\xb6\xb9\xca\x05\x7b\x17\x10\xde\xb2\x3e\xc9\x71\ -\xba\x4b\xec\x12\x4e\x8d\xb7\xd8\x3d\x18\x71\xb0\xb3\xc4\x93\xeb\ -\x9b\xe4\x4a\xd1\x21\x26\xcc\x2a\x2a\xef\xd8\x37\xbf\x1b\x2b\xa0\ -\x3b\x48\xb9\x74\xef\x1e\x4e\x9d\x39\xcd\xa7\xee\xbe\x97\x33\x2b\ -\x33\xf6\x8d\xe6\xd9\x15\x49\xce\x6c\xaf\xb2\x99\xe7\x3c\xb7\xb5\ -\xc5\xd3\xdb\x05\x3d\x62\x3a\xcd\x06\x9e\x0e\x4d\x68\xf0\x3a\x20\ -\x93\x0c\x63\x22\xb4\x4c\xd0\x4a\xd2\x98\x19\xc4\x8a\xba\x09\x88\ -\x10\x61\x83\xa0\x09\x35\x32\xd1\x94\x95\x25\x8a\xfb\x88\xc6\x22\ -\x74\x8a\x57\x19\x56\xa4\x58\x12\x9c\x0d\x60\x1c\xb1\x68\x47\xe6\ -\x59\x65\xd1\x69\x07\x67\x3c\xc1\x38\xba\x49\x8a\x31\x0e\x2f\x44\ -\x7b\x9e\x8e\x23\xd5\x01\x5b\xff\xbf\xed\x9d\xcb\x8e\x64\xc7\x71\ -\x86\xbf\x8c\xcc\x3c\x97\xba\xf5\xfd\x36\x33\xa4\xc8\x01\x44\x91\ -\x96\x00\x0b\x16\x4c\xc0\x0b\xad\xbc\xf5\x13\xf8\x69\xfc\x18\x5e\ -\xfa\x31\x6c\xc0\x30\xbc\x12\x64\x53\xa2\x01\x91\x12\x39\x14\x39\ -\x34\xa7\xe7\x3e\x3d\x5d\xdd\x55\x75\xea\x5c\xf2\xe6\x45\x56\x53\ -\xe2\xc6\x03\xb3\x3d\x90\xc7\xe8\x00\x7a\xd3\xd5\x9d\x05\x04\x4e\ -\x9e\x88\x8c\x88\xfc\xbf\x35\xa5\xcd\x6f\x71\x52\xa0\xd0\x89\x42\ -\x29\x52\xea\xd0\x71\xc0\x8a\xa0\x83\x60\x10\xac\x38\x90\x35\x49\ -\x5a\x30\x01\xa7\x3c\x2e\x46\xd0\x3a\x83\xc3\x52\xda\x44\x4f\x85\ -\xb2\x89\x64\x1c\x7d\x5a\x60\x6a\xe8\x5d\xbf\xe9\x26\x04\xb0\x55\ -\x26\xda\x13\x11\x6b\x58\x0f\x03\xb6\xac\xb1\xb6\x62\xb9\xea\xa8\ -\x15\xa4\xa4\x89\xba\x22\xd9\x19\x7d\xd0\xb8\x20\x58\x5d\x90\x86\ -\x40\x2f\x03\x49\x69\x90\x0a\xa5\x8a\x2c\xa9\x1a\x03\xc9\x0a\xca\ -\x1a\x44\x59\x50\x82\xd1\x9b\x89\x24\x11\x62\xcc\xe3\x86\x75\x5d\ -\x53\xba\x01\xd7\xae\x30\xd1\x53\x90\xb0\x29\x50\x19\x85\x78\x0f\ -\x43\x87\x93\x9c\xde\x76\x2e\x52\x8e\x26\x38\xef\x71\x21\x93\xe5\ -\x87\x00\x31\x19\x9c\xaa\x10\x3b\xa6\x1f\x3c\x85\xb4\x0e\x46\x37\ -\x00\x00\x09\x87\x49\x44\x41\x54\x48\x46\xba\xa4\x02\x65\xc6\x44\ -\x3d\x10\xa3\xa1\xac\x26\x34\xdd\x9a\x21\xf5\xd8\xca\xd2\x7b\x85\ -\x31\x33\x94\x64\x71\x85\xca\x5a\xfa\xb6\x65\x54\xd5\xac\x9b\x16\ -\x1f\x84\xb2\x9e\xa0\x0b\x4b\x0a\x01\x3f\x0c\x10\x03\x42\xc6\xb1\ -\xaa\xbf\xf9\xfb\x7f\x4b\x8f\x42\x00\x1f\x99\x78\x4f\x2a\x3d\x27\ -\xfb\x87\x9c\x3e\x3d\xa3\x0d\x92\x37\xe9\xea\x82\x93\x83\x7d\x56\ -\x4d\x4b\xe7\x23\x5d\x4a\xd4\x2a\xb2\x3b\xad\x98\x6d\xed\xf0\xe5\ -\x37\x4f\x18\x30\xa8\x14\xb1\x2a\x72\x3c\x33\x3c\xeb\x0b\xe2\xd0\ -\x63\xa2\xc3\x4b\xc9\xce\xd8\xe2\x87\x15\x2f\x5d\x41\x4d\x47\xa7\ -\x2a\x26\x45\xc5\x87\xc7\xc7\xfc\xe3\xe3\x7b\xd8\xa1\xde\x68\x21\ -\x75\xdc\xde\x99\xb2\x68\x3a\x5e\xb6\x9e\x9d\x68\x69\x2b\x85\xd7\ -\x03\x3f\x3b\x7c\x8b\x8f\x9e\x7d\x81\x19\x46\xf8\x90\xb9\x37\x23\ -\xab\xb0\xe2\x78\xf1\xf2\x0c\x99\xec\xd0\x62\xb1\xed\x9a\x5b\x87\ -\x7b\xf8\x7e\xcd\x7c\xb5\xc6\xe9\x2a\x37\xc0\x9b\x0b\x7e\xf2\xde\ -\xdb\xdc\x7f\x72\xc1\x72\xed\xb8\xd4\x8a\x4a\x27\x4e\xd6\x1d\x3f\ -\xff\xab\x0f\xf9\xc5\xbd\xcf\x38\x5f\xac\x31\xa3\x8a\x61\xb5\x62\ -\x56\x56\xbc\xf7\xce\x5d\x16\xab\x86\x2f\x1f\x3c\x24\x16\x35\x41\ -\x34\xef\xa8\x96\xbb\xef\xbf\x4f\xaf\x34\xff\x71\xef\x1e\x5f\x3f\ -\x79\x4e\x8f\x21\x8a\x21\x24\xc5\x5f\xbe\x7f\x97\x27\x4f\x9f\x73\ -\x36\x3f\x47\xc4\x60\x6c\xc9\xe0\x3c\x43\xd8\xa8\x28\x72\x5d\x0d\ -\xab\x57\x69\x2c\xbd\x5e\x8d\xac\xff\xff\x16\xaf\xab\x75\xf2\x7a\ -\x54\x3f\x8f\xfe\xfa\x6f\xff\xae\xf3\x7e\x43\x3b\x77\xec\x6e\xcd\ -\xf0\x31\xd0\x76\x8e\x24\x36\x47\xa5\x21\x9f\x0f\x96\xab\x86\x90\ -\x04\xd1\x1a\x49\x81\xd2\x08\xc6\x58\x2e\x16\x0d\x68\x8b\x28\xd0\ -\x2a\x51\x9b\xc4\x65\x0f\x2a\x45\x44\xe5\xf2\x76\x65\x04\x2d\x89\ -\xc6\x83\x24\x47\x54\x16\x49\xb0\x63\x34\x0f\xd7\x73\x4c\xb2\x59\ -\x4d\xde\xf7\x8c\x4a\x43\x69\x4a\xd6\x29\x22\x64\x64\x87\x4f\x81\ -\x91\x52\x2c\xbb\x06\xef\x14\xba\x2c\x08\x31\xe2\xfa\x35\x6f\xdd\ -\xbe\xc5\xba\x6d\x18\x3c\x44\x34\x85\xd6\x24\x3f\x70\xfb\xd6\x31\ -\x17\x8b\x05\xce\x45\x90\xcc\x23\x71\xce\xf3\xb3\xb7\x0f\xf8\xea\ -\xf9\x43\x46\xba\x66\x84\xa5\x97\x40\xb3\xbc\xe0\xbd\x93\x13\xe6\ -\x8b\x97\xb4\xc3\x08\x5b\x4d\xb8\x6c\xd7\x2c\x43\x4b\x31\xb2\x88\ -\xef\xd8\x52\x91\x3f\x3b\x39\x66\x55\x56\x7c\xf1\xe8\x09\x1f\xfd\ -\xf6\x73\x4e\xcf\x2e\x88\xba\x04\x29\x88\x51\x61\x75\x49\xf0\x1d\ -\xeb\xae\x25\x44\x32\x7f\x26\x46\x5c\x8c\xc4\x8d\xea\x7f\xba\xb6\ -\x52\xe7\xab\x16\x50\x37\xfb\xed\xb5\xfa\x97\x3f\x89\xff\x65\xd0\ -\x8a\x4a\x69\x46\x85\xc5\x49\x62\x36\x1a\xd3\xae\x7b\xa2\xca\xc5\ -\x89\x18\x1c\xe3\x71\xcd\xa8\x2a\xb3\xf2\xc3\xa6\x7f\x75\x35\x5f\ -\xd9\xf7\xfd\xb7\xb7\x17\xae\x28\x64\x57\x3d\x28\x44\x7d\x07\x62\ -\x3b\xae\x6a\x74\x22\xf7\x92\x54\xee\x7b\x5e\x36\x0b\xaa\x8d\x83\ -\xae\xfe\x76\xd9\x76\x98\xa4\x08\xb1\x67\xad\x73\x9f\x2e\xfa\xc4\ -\x79\xd3\x70\x67\xba\x0f\x92\xe8\xdd\x80\x0b\x9e\xd6\x0d\x74\x7d\ -\xcf\xee\xf6\x0e\xca\x39\x4c\x8c\x78\x60\xd9\x75\x00\xec\x6e\xcd\ -\xb0\x2a\x97\xed\x75\x35\xe1\xf9\xc2\x61\x24\xf0\xc3\x3b\xb7\x69\ -\xcf\x2f\x71\x83\xa2\x91\x8a\xc7\xab\x9e\x75\xe7\xb9\xb3\xbf\xcf\ -\x3a\xac\x11\x1d\x18\x59\xc1\xcf\x17\x54\x41\xf1\xe3\x0f\x7e\xc2\ -\xf4\xf0\x80\x8f\x3e\xff\x84\x5f\x7e\xf5\x88\x4f\x1e\x9f\xf1\xc2\ -\x41\xa8\x26\x38\x29\x58\xf7\x81\xe0\x81\xa4\x38\x9b\x5f\xd0\x0e\ -\x8e\x20\xe0\x42\xa0\xf3\x1e\x8f\x22\x89\xfa\x56\x41\xf2\xc6\x6e\ -\xec\x7f\xbc\x59\xfd\xe6\xb6\x0b\xbe\x27\x24\x0f\xde\xd1\x39\xbf\ -\x11\x4e\x0f\x24\x1f\xd8\x9a\xcd\x18\x8f\xc7\x88\xb1\xf9\x07\x85\ -\xd9\xf4\xaf\x9c\x73\xdf\x36\xc8\xc3\x06\x59\x57\x96\x15\x22\x7a\ -\x73\xae\xc8\x6c\x1a\xa5\x12\xd3\xc9\x28\xa3\x23\xb5\xc9\x9f\xa7\ -\xc4\x3a\x74\xec\x16\x55\x06\x14\xab\x88\x31\x86\xd6\x79\xa2\x1f\ -\x50\xc1\xd1\xa5\x4c\x29\x97\x24\x2c\x87\x9e\x5b\x5b\x7b\x58\x23\ -\x59\x9c\x5b\x84\xa2\x1e\xf1\xe2\x7c\xce\xd1\xc1\x21\x56\x09\x23\ -\x51\x19\x41\x28\x86\xd3\x87\x8f\xd9\xdb\xdd\x66\x5c\x5a\x7c\xd7\ -\x11\x92\x66\x1d\x35\xff\xf4\xe9\x57\xbc\x7b\xf2\x3e\x47\x07\x27\ -\x98\x51\x45\x19\x35\x4e\x59\x7e\xf5\xe0\x3f\xd9\xae\xf6\x79\xef\ -\x48\xd8\xe6\x92\x3f\xbf\x7b\x8b\x0f\x7f\xfa\x53\x9a\x36\xf2\x2f\ -\x1f\x7d\xca\xbf\xfe\xee\x94\xcf\xd7\xc2\xfc\xb2\x61\x48\x9a\x72\ -\x34\x45\x8a\x92\x21\x05\xc4\x28\x74\x29\x84\x38\xe0\x51\xb9\xb0\ -\xe5\x23\x43\xdc\xf0\xc3\x44\x81\x64\x58\xd2\x8d\xdd\xd8\xf7\x31\ -\x13\x53\x56\x7d\x0f\xc1\xb1\xb3\x3d\x43\x6b\x8d\x0f\x79\x43\x25\ -\x20\x05\x8f\x91\x0c\xa4\x0d\x21\x33\x6c\x6a\xab\x11\x11\x46\x65\ -\xc5\x79\x9f\xdb\x10\x3e\x06\x52\x8a\x48\x0c\x14\xba\x00\x7c\x56\ -\xf7\x97\x98\x37\x2d\x30\xa9\x73\x64\x4d\x9b\x9c\x5e\x6b\x0d\x85\ -\xe2\xd6\x78\xc6\xbc\x39\xc3\x87\x80\x15\x81\x64\x51\xd6\xb0\x3f\ -\x19\xf1\xb0\x59\x13\xa3\x45\x21\x34\xbe\xa7\xef\x1d\x95\x31\xf4\ -\x61\x60\x88\x01\xb1\xb2\xe1\xab\x7a\x66\xd3\x09\x97\x8b\x06\x55\ -\x56\x88\x31\x9c\x2f\x2e\xb9\x1d\x4f\xd8\xdb\xdd\x66\xb1\x7e\x4a\ -\x08\x03\x95\x2d\x68\x99\xf0\xec\xc5\x9c\x93\xed\x9a\xfb\xa7\xf7\ -\xd9\xae\x6a\xcc\x6c\x4c\xef\x46\xb4\x43\xcb\xcf\x7f\xf4\x01\xf7\ -\x1f\x3d\xe6\xf1\xe2\x82\xaf\xbf\x7e\xc0\x37\xcf\x2f\xe9\x42\x41\ -\x8a\x86\xd2\xcc\x98\x4e\x22\x4d\xd7\xd0\xaf\x1b\x94\x16\x24\x85\ -\x2c\x38\x27\x7e\x73\x25\xab\xd8\x0c\x88\xe7\x17\x15\xea\x0f\xe4\ -\x6b\xa5\x14\xe9\x9a\x8a\xf9\xf1\x95\xf8\x89\x57\xe0\x1f\xd2\xab\ -\xd6\xbf\x66\x04\x78\xc3\x93\x87\x57\xf9\xf7\xd5\xfe\x4b\xaf\xc5\ -\x7f\x19\xad\x6b\x40\x54\xe0\xad\xfd\x03\xc4\x0a\x3e\x45\x50\x79\ -\x43\x1a\xab\x51\x29\xb0\x5e\x2d\xc8\x08\xc1\x5c\x6e\x16\x14\x65\ -\x59\x7e\xa7\x44\x1e\x63\x24\x90\x72\xb4\xf5\x11\x1f\x33\x37\x35\ -\xc6\x7c\x77\xb0\x2c\x0a\x34\x19\xd7\x11\x43\x86\x42\xa5\x42\xb8\ -\xb3\x9d\x87\x2d\xe2\x26\xba\x12\x15\x41\x2b\xde\x39\x3c\xa4\x8a\ -\x01\x4f\x42\xa4\x20\x2a\xe1\xe1\xd9\x33\x6e\x1f\xec\x21\x2e\x40\ -\x88\x84\xa4\xe8\xbc\xe7\xd1\x93\xc7\xbc\xfb\xee\x0f\x72\xcf\x31\ -\x3a\x06\xe7\xd0\xe5\x88\xd3\x47\x4f\xd1\x5a\x31\x2e\x04\x35\xac\ -\xb1\xa9\x67\x1a\x3c\xf7\x4f\x3f\xe3\x78\x02\x3f\xde\x9f\x70\x74\ -\x5c\xf3\xf6\xd1\x2e\x1f\x1c\x1d\x32\x14\x81\x8f\x1f\x2f\xf8\xf7\ -\xaf\xcf\xf8\xf8\xf7\x4f\x78\xf8\x6c\x95\x95\x17\x54\xca\x92\xac\ -\xd2\xe1\x9a\x06\x1d\x02\xb5\x48\x46\x41\x2a\x08\xc1\xe3\xc3\x40\ -\x8c\x9e\xc1\x25\x7c\xc8\x5c\xd4\xab\xd4\x3e\xfa\x40\x0a\xf9\x0c\ -\x7e\x63\x37\xf6\xbd\x22\xab\x89\x42\x2f\x01\x1d\x1d\x13\xd1\x3c\ -\x98\xcf\xd1\xda\xe6\x33\x28\x11\xab\x05\x11\xb2\xea\x7c\x99\x67\ -\x73\x09\xc3\xb7\x25\xf1\xb0\x49\x99\xf3\x43\x99\x71\x65\x7d\xe7\ -\x88\x29\x91\x94\xda\x08\x16\x27\x06\xd7\x6f\xd6\xdc\x20\x65\x08\ -\xc4\xe0\x69\xbd\x67\x6a\x0b\xcc\x1f\x9d\x6d\x09\x30\xef\x97\xfc\ -\xc5\xf4\x16\x5b\x68\xe6\x56\xe3\x07\x10\x53\xf0\xbc\x5d\xf2\xa3\ -\xad\xbb\x3c\x28\x9e\x11\x92\xce\x5a\xc7\xc6\x30\x5f\x5c\x62\x0a\ -\xcb\x74\x3a\xe1\xc2\xe5\x94\x57\x17\x35\x2f\x2e\x2f\x19\x57\x96\ -\xdd\x69\x05\x7e\x89\x32\x89\xad\x72\xcc\xe4\x70\xc2\xce\xed\x5b\ -\x4c\x0e\x8f\xf8\xf5\xfd\x53\x7e\xff\xc5\x53\x56\xf3\x4b\x1a\x3d\ -\xb0\xd6\x53\x9a\xc5\x0a\x4b\x41\x69\x2a\x4c\xea\x09\x29\x12\x75\ -\xa4\x09\x2b\x4a\x55\xa0\x8c\x25\x28\x85\xf3\x81\x88\x42\x6b\x8d\ -\x24\x85\x4a\x01\x9f\xae\xb2\x5e\x95\xc3\xd4\x06\x2b\xa9\x49\xa8\ -\x98\x6e\x0a\x40\x37\xf6\xfd\x36\x6b\xa1\x0c\x5e\x27\x20\xa2\x9c\ -\xe7\xf9\xfc\x25\x76\x72\x48\x08\x39\x42\xda\x8d\x16\x8d\x73\x0e\ -\x55\x54\x04\xbf\xd1\x4f\x8d\x11\x62\x66\x60\x2a\x95\x1f\x56\x04\ -\x92\xf7\x9b\xfb\x82\x06\xa5\xb3\x7a\x60\xba\xd2\xb8\x89\x01\xb5\ -\x89\xda\x29\x29\x06\x37\xb0\x6c\xfd\xa6\xe8\x04\xa2\x04\x08\xa8\ -\x04\xf3\x66\x49\x6d\x34\x53\x6d\x58\x58\x4b\xdb\x0c\x68\xab\xe9\ -\x74\x62\x79\x7e\xc1\xa8\xaa\xb9\x6c\x3a\xba\x6e\x60\x6b\x54\xe2\ -\x57\x1d\x9f\xdd\xfb\x1d\xe3\xf1\x84\xc5\xf9\x8a\xa2\xac\x71\x09\ -\xea\xf1\x14\x11\xe1\xee\x9d\xb7\x39\xda\x59\x51\xd4\x63\x56\xeb\ -\x8e\xf9\xd9\x4b\xfe\xe1\x93\x7f\xe6\x32\x96\xc4\xb6\x66\x35\x04\ -\xd8\x1a\x23\x5d\xa2\xea\x57\xd4\xd5\x88\x4e\x09\x1d\x11\xaa\x12\ -\x82\x47\xc7\xc0\x48\x2c\xae\xd8\x0c\x2a\xc4\x84\xd2\x05\x1a\x21\ -\x86\x00\x21\x61\x74\x89\x92\x3f\xe8\xcf\x86\xe8\xd1\x28\xac\xe8\ -\xcd\xef\xc2\xb5\xab\x8d\x89\xeb\xa5\xc1\xaf\xaa\x46\x5f\x37\x8b\ -\x4d\x6f\x78\x1a\x9c\xae\xed\xbf\xf4\x5a\xfc\x67\x4c\xea\x71\x43\ -\xc3\x6c\x36\xc5\x69\x45\x32\x25\x2a\x80\x4f\x1e\x6b\x35\x66\x88\ -\x4c\xc7\x07\x7c\xf3\x62\x01\x31\x30\x55\x8a\x0e\x61\x56\xd4\xf8\ -\x3e\xd2\x2a\x8d\xb7\x1a\x36\x73\x99\x52\x6b\x52\x61\x18\xf7\x6b\ -\x9c\x57\x28\x5d\x6f\xa8\xdc\x23\x1e\x5d\xf6\xd8\x02\x2a\xef\xf0\ -\x2a\x32\x88\xa5\x6f\x84\x8f\x97\x4b\x20\x22\x61\xa0\x4f\x05\x49\ -\xb5\x4c\xa5\xe2\x57\x8f\x1e\xa1\xf6\x76\xe0\xf9\x39\xd5\xb8\x26\ -\x45\x8f\x1b\xe0\x37\xcf\x2e\x39\x3a\x3a\x22\x9e\xdf\xa7\x12\xc1\ -\x7a\x4d\x59\x4c\xf1\x9d\xe7\xe0\x78\x42\x3d\x0a\xcc\x4a\xcb\xfe\ -\x68\x84\xeb\x7a\xd6\x2e\x71\xd1\x06\xbe\xbc\x08\x7c\xfa\xeb\x4f\ -\x69\xfc\x55\x91\xa7\xde\x1c\x06\x7a\x4c\x05\xf4\x1e\xd0\x0c\xa5\ -\x86\x14\x20\x85\x2c\xb7\xfc\x47\x35\xa1\x21\xe6\xd9\x1d\x7d\x55\ -\xa1\x8f\x99\xce\x2e\x99\xb3\x8c\xc7\x7f\xe7\x69\x57\x4a\x6d\xfe\ -\xfd\x8a\xde\xfc\xbf\xd1\x83\xbb\xde\x1a\xf1\x35\x07\xf6\xf8\xc6\ -\x27\x0e\xf2\x7f\xd2\x7f\x26\x44\x8b\x2d\x66\xd4\xd5\x16\x43\x2f\ -\x44\x4a\x82\x6f\xc1\x24\xb4\x52\x94\x56\xe3\xfa\x06\x63\x22\x41\ -\x39\x82\x73\x04\x0d\x31\xe5\x69\x1b\x49\x03\x95\x2e\xb1\x5e\x11\ -\x93\xc3\xb7\x1e\x26\x3b\xb8\xd4\x12\xc5\x12\x31\x0c\x31\x62\x25\ -\xd1\x87\x44\x90\x2c\x57\x11\x95\x20\xba\x24\xfa\x96\x61\x08\x4c\ -\xc7\x33\x9a\xb3\x73\x4c\x61\x59\x55\x53\xdc\xd0\xa2\xe6\x4b\x8e\ -\x0e\x8e\xe9\xba\x0b\x6c\x69\x90\xa8\xd9\x1b\x8d\x21\x9c\x31\x61\ -\xcc\x3b\xfb\x15\xd6\x08\x5b\xd3\x11\x93\xc2\xa0\x71\xec\x6e\x5b\ -\x2e\x96\xdb\x7c\x71\x7a\xc6\x2f\xce\xce\x78\xd2\x24\x96\xce\x23\ -\xfa\x01\x92\x3a\x24\x75\x20\xdb\x37\x39\xd5\x8d\xbd\x79\x69\x70\ -\x32\x01\x55\x00\xc6\x73\xbe\x7c\x49\x32\x01\xa7\x26\x0c\x3a\x11\ -\x43\xa0\x32\x05\x2f\x56\x3d\x6d\x2a\x49\x62\x18\x24\x12\x4a\xc3\ -\x00\x2c\xbd\x66\x15\x84\x98\x0c\xa5\x37\x94\xda\x82\x72\x68\x02\ -\xf8\x01\xa5\x53\x1e\x74\x0e\x8e\xe8\x3d\x7d\xb3\x44\x92\x47\xdb\ -\x82\x14\x13\xb6\x50\xb8\xc1\xb1\x5e\xce\xd9\xdb\x1a\x31\x3f\xeb\ -\xb0\xa6\x64\xa6\x3c\x21\x2c\x99\x79\xe1\x07\xa3\x23\xd8\x2b\x51\ -\xa6\x60\x5c\x16\x4c\x2a\xcb\xc4\xd4\x94\xe3\x29\xab\xad\x5d\xce\ -\x1a\xcf\x8b\xd5\xc0\x6f\x1e\x2e\x79\xfa\xec\x8c\xa6\x3b\xa5\x29\ -\xd5\x26\x35\x57\xb8\x30\x90\x12\x18\x4a\x52\x98\x10\xd3\x98\xa4\ -\xfe\x7b\x56\xcf\x2b\x59\x27\xaf\x39\xcf\xbb\xee\xf7\x5f\x17\xf9\ -\xf8\xa7\x5e\xff\x75\xfb\xe7\x4d\xb5\xff\x02\x5a\xc5\xe4\xb6\x99\ -\x1f\xb2\xad\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -" - -qt_resource_name = "\ -\x00\x05\ -\x00\x6f\xa6\x53\ -\x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x73\ -\x00\x0e\ -\x01\xce\xea\x47\ -\x00\x6e\ -\x00\x73\x00\x6c\x00\x73\x00\x32\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ -" - -qt_resource_struct = "\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\ -\x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -" - -def qInitResources(): - QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) - -def qCleanupResources(): - QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) - -qInitResources() diff --git a/python/masarclient/ui/selectrefsnapshotdlg.py b/python/masarclient/ui/selectrefsnapshotdlg.py index d6382c0..0be3690 100644 --- a/python/masarclient/ui/selectrefsnapshotdlg.py +++ b/python/masarclient/ui/selectrefsnapshotdlg.py @@ -10,12 +10,9 @@ from PyQt4.QtGui import (QDialog, QVBoxLayout, QGridLayout, QLabel, QGroupBox,QRadioButton, QDialogButtonBox) -from PyQt4.QtCore import (QString, QObject, SIGNAL,Qt) +from PyQt4.QtCore import (QObject, SIGNAL,Qt) -try: - _fromUtf8 = QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s +_fromUtf8 = lambda s: s class ShowSelectRefDlg(QDialog): def __init__(self, eventIDs, parent=None): @@ -90,4 +87,4 @@ def result(self): else: #print(self.refSnapshot) return (self.eventIDs) - \ No newline at end of file + diff --git a/python/masarclient/ui/showarrayvaluedlg.py b/python/masarclient/ui/showarrayvaluedlg.py index 90c615e..07833d6 100644 --- a/python/masarclient/ui/showarrayvaluedlg.py +++ b/python/masarclient/ui/showarrayvaluedlg.py @@ -9,16 +9,13 @@ from __future__ import unicode_literals from PyQt4.QtGui import (QDialog, QTableView, QGridLayout, QLabel, QPushButton) -from PyQt4.QtCore import (QString, SIGNAL, QAbstractTableModel, QVariant, Qt) +from PyQt4.QtCore import (SIGNAL, QAbstractTableModel, QVariant, Qt) from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.backends.backend_qt4agg import NavigationToolbar2QT as NavigationToolbar import matplotlib.pyplot as plt -try: - _fromUtf8 = QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s +_fromUtf8 = lambda s: s class ShowArrayValueDlg(QDialog): def __init__(self, pvname, savedValue, liveValue=None, parent=None): diff --git a/python/masarclient/ui/ui_commentdetail.py b/python/masarclient/ui/ui_commentdetail.py deleted file mode 100644 index 43c0f51..0000000 --- a/python/masarclient/ui/ui_commentdetail.py +++ /dev/null @@ -1,47 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'ui_commentdetail.ui' -# -# Created: Mon Apr 21 23:44:11 2014 -# by: PyQt4 UI code generator 4.9.3 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -try: - _fromUtf8 = QtCore.QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s - -class Ui_commentdetail(object): - def setupUi(self, commentdetail): - commentdetail.setObjectName(_fromUtf8("commentdetail")) - commentdetail.resize(416, 209) - self.verticalLayout = QtGui.QVBoxLayout(commentdetail) - self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) - self.horizontalLayout = QtGui.QHBoxLayout() - self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) - self.verticalLayout.addLayout(self.horizontalLayout) - self.label_2 = QtGui.QLabel(commentdetail) - self.label_2.setObjectName(_fromUtf8("label_2")) - self.verticalLayout.addWidget(self.label_2) - self.commentTextEdit = QtGui.QTextEdit(commentdetail) - self.commentTextEdit.setObjectName(_fromUtf8("commentTextEdit")) - self.verticalLayout.addWidget(self.commentTextEdit) - self.buttonBox = QtGui.QDialogButtonBox(commentdetail) - self.buttonBox.setOrientation(QtCore.Qt.Horizontal) - self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) - self.buttonBox.setObjectName(_fromUtf8("buttonBox")) - self.verticalLayout.addWidget(self.buttonBox) - - self.retranslateUi(commentdetail) - QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), commentdetail.accept) - QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), commentdetail.reject) - QtCore.QObject.connect(self.commentTextEdit, QtCore.SIGNAL(_fromUtf8("textChanged()")), commentdetail.on_commentTextEdit_textChanged) - QtCore.QMetaObject.connectSlotsByName(commentdetail) - - def retranslateUi(self, commentdetail): - commentdetail.setWindowTitle(QtGui.QApplication.translate("commentdetail", "Comment", None, QtGui.QApplication.UnicodeUTF8)) - self.label_2.setText(QtGui.QApplication.translate("commentdetail", "Put your detailed comment which will be shown in the Olog:", None, QtGui.QApplication.UnicodeUTF8)) - diff --git a/python/masarclient/ui/ui_commentdiag.py b/python/masarclient/ui/ui_commentdiag.py deleted file mode 100644 index 7a69296..0000000 --- a/python/masarclient/ui/ui_commentdiag.py +++ /dev/null @@ -1,60 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'python/masarclient/ui/ui_commentdiag.ui' -# -# Created: Wed Oct 2 14:36:38 2013 -# by: PyQt4 UI code generator 4.9.3 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -try: - _fromUtf8 = QtCore.QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s - -class Ui_commentdlg(object): - def setupUi(self, commentdlg): - commentdlg.setObjectName(_fromUtf8("commentdlg")) - commentdlg.resize(426, 135) - self.gridLayout = QtGui.QGridLayout(commentdlg) - self.gridLayout.setObjectName(_fromUtf8("gridLayout")) - self.commentLineEdit = QtGui.QLineEdit(commentdlg) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) - sizePolicy.setHorizontalStretch(1) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.commentLineEdit.sizePolicy().hasHeightForWidth()) - self.commentLineEdit.setSizePolicy(sizePolicy) - self.commentLineEdit.setMinimumSize(QtCore.QSize(408, 0)) - self.commentLineEdit.setText(_fromUtf8("")) - self.commentLineEdit.setMaxLength(80) - self.commentLineEdit.setDragEnabled(True) - self.commentLineEdit.setObjectName(_fromUtf8("commentLineEdit")) - self.gridLayout.addWidget(self.commentLineEdit, 2, 0, 1, 2) - self.label_2 = QtGui.QLabel(commentdlg) - self.label_2.setObjectName(_fromUtf8("label_2")) - self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1) - self.horizontalLayout = QtGui.QHBoxLayout() - self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout")) - self.authorInfo = QtGui.QLabel(commentdlg) - self.authorInfo.setObjectName(_fromUtf8("authorInfo")) - self.horizontalLayout.addWidget(self.authorInfo) - self.gridLayout.addLayout(self.horizontalLayout, 0, 0, 1, 1) - self.buttonBox = QtGui.QDialogButtonBox(commentdlg) - self.buttonBox.setOrientation(QtCore.Qt.Horizontal) - self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) - self.buttonBox.setObjectName(_fromUtf8("buttonBox")) - self.gridLayout.addWidget(self.buttonBox, 3, 1, 1, 1) - - self.retranslateUi(commentdlg) - QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), commentdlg.reject) - QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), commentdlg.accept) - QtCore.QObject.connect(self.commentLineEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), commentdlg.on_commentTextEdit_textChanged) - QtCore.QMetaObject.connectSlotsByName(commentdlg) - - def retranslateUi(self, commentdlg): - commentdlg.setWindowTitle(QtGui.QApplication.translate("commentdlg", "Comment", None, QtGui.QApplication.UnicodeUTF8)) - self.label_2.setText(QtGui.QApplication.translate("commentdlg", "Concise Description (<80 characters):", None, QtGui.QApplication.UnicodeUTF8)) - self.authorInfo.setText(QtGui.QApplication.translate("commentdlg", "Author:", None, QtGui.QApplication.UnicodeUTF8)) - diff --git a/python/masarclient/ui/ui_masar.py b/python/masarclient/ui/ui_masar.py deleted file mode 100644 index ad76ac8..0000000 --- a/python/masarclient/ui/ui_masar.py +++ /dev/null @@ -1,418 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'ui_masar.ui' -# -# Created: Thu Aug 14 11:21:33 2014 -# by: PyQt4 UI code generator 4.9.3 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -try: - _fromUtf8 = QtCore.QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s - -class Ui_masar(object): - def setupUi(self, masar): - masar.setObjectName(_fromUtf8("masar")) - masar.setWindowModality(QtCore.Qt.WindowModal) - masar.resize(1199, 1265) - palette = QtGui.QPalette() - brush = QtGui.QBrush(QtGui.QColor(255, 255, 255)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Base, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Window, brush) - brush = QtGui.QBrush(QtGui.QColor(255, 255, 255)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Base, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Window, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Base, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Window, brush) - masar.setPalette(palette) - masar.setFocusPolicy(QtCore.Qt.ClickFocus) - masar.setAcceptDrops(False) - icon = QtGui.QIcon() - icon.addPixmap(QtGui.QPixmap(_fromUtf8(":/icons/nsls2-logo.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) - masar.setWindowIcon(icon) - masar.setWindowOpacity(1.0) - masar.setToolTip(_fromUtf8("")) - masar.setAutoFillBackground(False) - masar.setDocumentMode(True) - masar.setTabShape(QtGui.QTabWidget.Rounded) - masar.setDockNestingEnabled(True) - masar.setDockOptions(QtGui.QMainWindow.AllowNestedDocks|QtGui.QMainWindow.AllowTabbedDocks|QtGui.QMainWindow.AnimatedDocks|QtGui.QMainWindow.ForceTabbedDocks|QtGui.QMainWindow.VerticalTabs) - masar.setUnifiedTitleAndToolBarOnMac(True) - self.mainwidget = QtGui.QWidget(masar) - self.mainwidget.setObjectName(_fromUtf8("mainwidget")) - self.verticalLayout_2 = QtGui.QVBoxLayout(self.mainwidget) - self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2")) - self.splitter = QtGui.QSplitter(self.mainwidget) - self.splitter.setOrientation(QtCore.Qt.Horizontal) - self.splitter.setObjectName(_fromUtf8("splitter")) - self.configEventSplitter = QtGui.QSplitter(self.splitter) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Expanding) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.configEventSplitter.sizePolicy().hasHeightForWidth()) - self.configEventSplitter.setSizePolicy(sizePolicy) - self.configEventSplitter.setOrientation(QtCore.Qt.Vertical) - self.configEventSplitter.setObjectName(_fromUtf8("configEventSplitter")) - self.layoutWidget = QtGui.QWidget(self.configEventSplitter) - self.layoutWidget.setObjectName(_fromUtf8("layoutWidget")) - self.configVerticalLayout = QtGui.QVBoxLayout(self.layoutWidget) - self.configVerticalLayout.setMargin(0) - self.configVerticalLayout.setObjectName(_fromUtf8("configVerticalLayout")) - self.configGridLayout = QtGui.QGridLayout() - self.configGridLayout.setObjectName(_fromUtf8("configGridLayout")) - self.systemLabel = QtGui.QLabel(self.layoutWidget) - self.systemLabel.setObjectName(_fromUtf8("systemLabel")) - self.configGridLayout.addWidget(self.systemLabel, 0, 0, 1, 1) - self.systemCombox = QtGui.QComboBox(self.layoutWidget) - self.systemCombox.setCursor(QtGui.QCursor(QtCore.Qt.ArrowCursor)) - self.systemCombox.setMouseTracking(True) - self.systemCombox.setObjectName(_fromUtf8("systemCombox")) - self.configGridLayout.addWidget(self.systemCombox, 0, 1, 1, 1) - self.configFilterLabel = QtGui.QLabel(self.layoutWidget) - self.configFilterLabel.setObjectName(_fromUtf8("configFilterLabel")) - self.configGridLayout.addWidget(self.configFilterLabel, 1, 0, 1, 1) - self.configFilterLineEdit = QtGui.QLineEdit(self.layoutWidget) - self.configFilterLineEdit.setDragEnabled(True) - self.configFilterLineEdit.setPlaceholderText(_fromUtf8("")) - self.configFilterLineEdit.setObjectName(_fromUtf8("configFilterLineEdit")) - self.configGridLayout.addWidget(self.configFilterLineEdit, 1, 1, 1, 1) - self.fetchConfigButton = QtGui.QPushButton(self.layoutWidget) - self.fetchConfigButton.setObjectName(_fromUtf8("fetchConfigButton")) - self.configGridLayout.addWidget(self.fetchConfigButton, 2, 0, 1, 1) - self.configTableWidget = QtGui.QTableWidget(self.layoutWidget) - self.configTableWidget.setFocusPolicy(QtCore.Qt.WheelFocus) - self.configTableWidget.setFrameShape(QtGui.QFrame.WinPanel) - self.configTableWidget.setFrameShadow(QtGui.QFrame.Sunken) - self.configTableWidget.setLineWidth(1) - self.configTableWidget.setSelectionMode(QtGui.QAbstractItemView.ExtendedSelection) - self.configTableWidget.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) - self.configTableWidget.setObjectName(_fromUtf8("configTableWidget")) - self.configTableWidget.setColumnCount(0) - self.configTableWidget.setRowCount(0) - self.configGridLayout.addWidget(self.configTableWidget, 3, 0, 1, 2) - self.configVerticalLayout.addLayout(self.configGridLayout) - self.layoutWidget1 = QtGui.QWidget(self.configEventSplitter) - self.layoutWidget1.setObjectName(_fromUtf8("layoutWidget1")) - self.eventVerticalLayout = QtGui.QVBoxLayout(self.layoutWidget1) - self.eventVerticalLayout.setMargin(0) - self.eventVerticalLayout.setObjectName(_fromUtf8("eventVerticalLayout")) - self.eventGridLayout = QtGui.QGridLayout() - self.eventGridLayout.setObjectName(_fromUtf8("eventGridLayout")) - self.timeRangeCheckBox = QtGui.QCheckBox(self.layoutWidget1) - self.timeRangeCheckBox.setObjectName(_fromUtf8("timeRangeCheckBox")) - self.eventGridLayout.addWidget(self.timeRangeCheckBox, 2, 0, 1, 3) - self.eventStartLabel = QtGui.QLabel(self.layoutWidget1) - self.eventStartLabel.setObjectName(_fromUtf8("eventStartLabel")) - self.eventGridLayout.addWidget(self.eventStartLabel, 3, 0, 1, 1) - self.eventStartDateTime = QtGui.QDateTimeEdit(self.layoutWidget1) - self.eventStartDateTime.setEnabled(False) - self.eventStartDateTime.setAlignment(QtCore.Qt.AlignCenter) - self.eventStartDateTime.setReadOnly(False) - self.eventStartDateTime.setCalendarPopup(True) - self.eventStartDateTime.setObjectName(_fromUtf8("eventStartDateTime")) - self.eventGridLayout.addWidget(self.eventStartDateTime, 3, 2, 1, 2) - self.eventEndLabel = QtGui.QLabel(self.layoutWidget1) - self.eventEndLabel.setObjectName(_fromUtf8("eventEndLabel")) - self.eventGridLayout.addWidget(self.eventEndLabel, 4, 0, 1, 1) - self.fetchEventButton = QtGui.QPushButton(self.layoutWidget1) - self.fetchEventButton.setObjectName(_fromUtf8("fetchEventButton")) - self.eventGridLayout.addWidget(self.fetchEventButton, 5, 0, 1, 3) - self.eventEndDateTime = QtGui.QDateTimeEdit(self.layoutWidget1) - self.eventEndDateTime.setEnabled(False) - self.eventEndDateTime.setAlignment(QtCore.Qt.AlignCenter) - self.eventEndDateTime.setReadOnly(False) - self.eventEndDateTime.setDateTime(QtCore.QDateTime(QtCore.QDate(2000, 3, 1), QtCore.QTime(0, 0, 0))) - self.eventEndDateTime.setCalendarPopup(True) - self.eventEndDateTime.setObjectName(_fromUtf8("eventEndDateTime")) - self.eventGridLayout.addWidget(self.eventEndDateTime, 4, 2, 1, 2) - self.eventFilterLineEdit = QtGui.QLineEdit(self.layoutWidget1) - self.eventFilterLineEdit.setObjectName(_fromUtf8("eventFilterLineEdit")) - self.eventGridLayout.addWidget(self.eventFilterLineEdit, 0, 3, 1, 1) - self.authorTextEdit = QtGui.QLineEdit(self.layoutWidget1) - self.authorTextEdit.setObjectName(_fromUtf8("authorTextEdit")) - self.eventGridLayout.addWidget(self.authorTextEdit, 1, 3, 1, 1) - self.eventFilterLabel = QtGui.QLabel(self.layoutWidget1) - self.eventFilterLabel.setObjectName(_fromUtf8("eventFilterLabel")) - self.eventGridLayout.addWidget(self.eventFilterLabel, 0, 0, 1, 1) - self.ByWho = QtGui.QLabel(self.layoutWidget1) - self.ByWho.setObjectName(_fromUtf8("ByWho")) - self.eventGridLayout.addWidget(self.ByWho, 1, 0, 1, 1) - self.eventVerticalLayout.addLayout(self.eventGridLayout) - self.eventTableWidget = QtGui.QTableWidget(self.layoutWidget1) - self.eventTableWidget.setMinimumSize(QtCore.QSize(350, 0)) - self.eventTableWidget.setMouseTracking(True) - self.eventTableWidget.setFocusPolicy(QtCore.Qt.StrongFocus) - self.eventTableWidget.setSelectionMode(QtGui.QAbstractItemView.ExtendedSelection) - self.eventTableWidget.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) - self.eventTableWidget.setObjectName(_fromUtf8("eventTableWidget")) - self.eventTableWidget.setColumnCount(0) - self.eventTableWidget.setRowCount(0) - self.eventVerticalLayout.addWidget(self.eventTableWidget) - self.snapshotGridLayout = QtGui.QGridLayout() - self.snapshotGridLayout.setObjectName(_fromUtf8("snapshotGridLayout")) - self.fetchSnapshotButton = QtGui.QPushButton(self.layoutWidget1) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.fetchSnapshotButton.sizePolicy().hasHeightForWidth()) - self.fetchSnapshotButton.setSizePolicy(sizePolicy) - self.fetchSnapshotButton.setObjectName(_fromUtf8("fetchSnapshotButton")) - self.snapshotGridLayout.addWidget(self.fetchSnapshotButton, 3, 0, 1, 2) - self.snapshotIdLineEdit = QtGui.QLineEdit(self.layoutWidget1) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.snapshotIdLineEdit.sizePolicy().hasHeightForWidth()) - self.snapshotIdLineEdit.setSizePolicy(sizePolicy) - self.snapshotIdLineEdit.setObjectName(_fromUtf8("snapshotIdLineEdit")) - self.snapshotGridLayout.addWidget(self.snapshotIdLineEdit, 1, 0, 1, 1) - self.searchSnapshotButton = QtGui.QPushButton(self.layoutWidget1) - self.searchSnapshotButton.setStatusTip(_fromUtf8("")) - self.searchSnapshotButton.setObjectName(_fromUtf8("searchSnapshotButton")) - self.snapshotGridLayout.addWidget(self.searchSnapshotButton, 1, 1, 1, 1) - self.eventVerticalLayout.addLayout(self.snapshotGridLayout) - self.layoutWidget2 = QtGui.QWidget(self.splitter) - self.layoutWidget2.setObjectName(_fromUtf8("layoutWidget2")) - self.verticalLayout = QtGui.QVBoxLayout(self.layoutWidget2) - self.verticalLayout.setMargin(0) - self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) - self.snapshotTabWidget = QtGui.QTabWidget(self.layoutWidget2) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.snapshotTabWidget.sizePolicy().hasHeightForWidth()) - self.snapshotTabWidget.setSizePolicy(sizePolicy) - self.snapshotTabWidget.setMinimumSize(QtCore.QSize(500, 0)) - self.snapshotTabWidget.setContextMenuPolicy(QtCore.Qt.DefaultContextMenu) - self.snapshotTabWidget.setAcceptDrops(False) - self.snapshotTabWidget.setToolTip(_fromUtf8("")) - self.snapshotTabWidget.setDocumentMode(False) - self.snapshotTabWidget.setTabsClosable(True) - self.snapshotTabWidget.setMovable(True) - self.snapshotTabWidget.setObjectName(_fromUtf8("snapshotTabWidget")) - self.commentTab = QtGui.QWidget() - self.commentTab.setObjectName(_fromUtf8("commentTab")) - self.commentTabWindowLayout = QtGui.QVBoxLayout(self.commentTab) - self.commentTabWindowLayout.setObjectName(_fromUtf8("commentTabWindowLayout")) - self.currentCommentText = QtGui.QPlainTextEdit(self.commentTab) - self.currentCommentText.setMinimumSize(QtCore.QSize(500, 0)) - palette = QtGui.QPalette() - brush = QtGui.QBrush(QtGui.QColor(231, 231, 231)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Base, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Active, QtGui.QPalette.Window, brush) - brush = QtGui.QBrush(QtGui.QColor(231, 231, 231)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Base, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Inactive, QtGui.QPalette.Window, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Base, brush) - brush = QtGui.QBrush(QtGui.QColor(237, 236, 235)) - brush.setStyle(QtCore.Qt.SolidPattern) - palette.setBrush(QtGui.QPalette.Disabled, QtGui.QPalette.Window, brush) - self.currentCommentText.setPalette(palette) - self.currentCommentText.setAutoFillBackground(True) - self.currentCommentText.setReadOnly(True) - self.currentCommentText.setTextInteractionFlags(QtCore.Qt.LinksAccessibleByMouse|QtCore.Qt.TextSelectableByMouse) - self.currentCommentText.setBackgroundVisible(False) - self.currentCommentText.setObjectName(_fromUtf8("currentCommentText")) - self.commentTabWindowLayout.addWidget(self.currentCommentText) - self.snapshotTabWidget.addTab(self.commentTab, _fromUtf8("")) - self.verticalLayout.addWidget(self.snapshotTabWidget) - self.gridLayout = QtGui.QGridLayout() - self.gridLayout.setObjectName(_fromUtf8("gridLayout")) - self.compareSnapshotsButton = QtGui.QPushButton(self.layoutWidget2) - self.compareSnapshotsButton.setObjectName(_fromUtf8("compareSnapshotsButton")) - self.gridLayout.addWidget(self.compareSnapshotsButton, 0, 3, 2, 1) - self.pvFilterLineEdit = QtGui.QLineEdit(self.layoutWidget2) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.pvFilterLineEdit.sizePolicy().hasHeightForWidth()) - self.pvFilterLineEdit.setSizePolicy(sizePolicy) - self.pvFilterLineEdit.setLayoutDirection(QtCore.Qt.RightToLeft) - self.pvFilterLineEdit.setText(_fromUtf8("")) - self.pvFilterLineEdit.setObjectName(_fromUtf8("pvFilterLineEdit")) - self.gridLayout.addWidget(self.pvFilterLineEdit, 2, 3, 1, 1) - self.getLiveMachineButton = QtGui.QPushButton(self.layoutWidget2) - self.getLiveMachineButton.setToolTip(_fromUtf8("")) - self.getLiveMachineButton.setObjectName(_fromUtf8("getLiveMachineButton")) - self.gridLayout.addWidget(self.getLiveMachineButton, 0, 1, 2, 1) - self.saveMachineSnapshotButton = QtGui.QPushButton(self.layoutWidget2) - self.saveMachineSnapshotButton.setObjectName(_fromUtf8("saveMachineSnapshotButton")) - self.gridLayout.addWidget(self.saveMachineSnapshotButton, 0, 2, 2, 1) - self.restoreMachineButton = QtGui.QPushButton(self.layoutWidget2) - self.restoreMachineButton.setObjectName(_fromUtf8("restoreMachineButton")) - self.gridLayout.addWidget(self.restoreMachineButton, 0, 0, 2, 1) - self.saveDataFileButton = QtGui.QPushButton(self.layoutWidget2) - self.saveDataFileButton.setObjectName(_fromUtf8("saveDataFileButton")) - self.gridLayout.addWidget(self.saveDataFileButton, 0, 4, 2, 1) - self.pvSearchButton = QtGui.QPushButton(self.layoutWidget2) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.pvSearchButton.sizePolicy().hasHeightForWidth()) - self.pvSearchButton.setSizePolicy(sizePolicy) - self.pvSearchButton.setObjectName(_fromUtf8("pvSearchButton")) - self.gridLayout.addWidget(self.pvSearchButton, 2, 4, 1, 1) - self.rampingMachineButton = QtGui.QPushButton(self.layoutWidget2) - self.rampingMachineButton.setObjectName(_fromUtf8("rampingMachineButton")) - self.gridLayout.addWidget(self.rampingMachineButton, 2, 0, 1, 1) - self.verticalLayout.addLayout(self.gridLayout) - self.verticalLayout_2.addWidget(self.splitter) - masar.setCentralWidget(self.mainwidget) - self.menubar = QtGui.QMenuBar(masar) - self.menubar.setGeometry(QtCore.QRect(0, 0, 1199, 19)) - self.menubar.setObjectName(_fromUtf8("menubar")) - masar.setMenuBar(self.menubar) - self.statusbar = QtGui.QStatusBar(masar) - self.statusbar.setObjectName(_fromUtf8("statusbar")) - masar.setStatusBar(self.statusbar) - - self.retranslateUi(masar) - self.systemCombox.setCurrentIndex(-1) - self.snapshotTabWidget.setCurrentIndex(0) - QtCore.QObject.connect(self.eventFilterLineEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), masar.eventFilterChanged) - QtCore.QObject.connect(self.authorTextEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), masar.authorTextChanged) - QtCore.QObject.connect(self.timeRangeCheckBox, QtCore.SIGNAL(_fromUtf8("stateChanged(int)")), masar.useTimeRange) - QtCore.QObject.connect(self.fetchEventButton, QtCore.SIGNAL(_fromUtf8("clicked(void)")), masar.fetchEventAction) - QtCore.QObject.connect(self.fetchSnapshotButton, QtCore.SIGNAL(_fromUtf8("clicked(void)")), masar.retrieveSnapshot) - QtCore.QObject.connect(self.restoreMachineButton, QtCore.SIGNAL(_fromUtf8("clicked(void)")), masar.restoreSnapshotAction) - QtCore.QObject.connect(self.getLiveMachineButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.getLiveMachineAction) - QtCore.QObject.connect(self.saveDataFileButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.saveDataFileAction) - QtCore.QObject.connect(self.systemCombox, QtCore.SIGNAL(_fromUtf8("currentIndexChanged(QString)")), masar.systemComboxChanged) - QtCore.QObject.connect(self.configFilterLineEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), masar.configFilterChanged) - QtCore.QObject.connect(self.fetchConfigButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.fetchConfigAction) - QtCore.QObject.connect(self.snapshotTabWidget, QtCore.SIGNAL(_fromUtf8("tabCloseRequested(int)")), masar.closeTab) - QtCore.QObject.connect(self.snapshotTabWidget, QtCore.SIGNAL(_fromUtf8("currentChanged(int)")), masar.configTab) - QtCore.QObject.connect(self.compareSnapshotsButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.openMsgBox) - QtCore.QObject.connect(self.saveMachineSnapshotButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.saveMachineSnapshot) - QtCore.QObject.connect(self.pvFilterLineEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), masar.pvFilterChanged) - QtCore.QObject.connect(self.pvSearchButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.searchPV) - QtCore.QObject.connect(self.rampingMachineButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.rampingMachine) - QtCore.QObject.connect(self.snapshotIdLineEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), masar.snapshotIdChanged) - QtCore.QObject.connect(self.searchSnapshotButton, QtCore.SIGNAL(_fromUtf8("clicked()")), masar.retrieveSnapshotById) - QtCore.QMetaObject.connectSlotsByName(masar) - masar.setTabOrder(self.systemCombox, self.configFilterLineEdit) - masar.setTabOrder(self.configFilterLineEdit, self.fetchConfigButton) - masar.setTabOrder(self.fetchConfigButton, self.configTableWidget) - masar.setTabOrder(self.configTableWidget, self.eventFilterLineEdit) - masar.setTabOrder(self.eventFilterLineEdit, self.authorTextEdit) - masar.setTabOrder(self.authorTextEdit, self.timeRangeCheckBox) - masar.setTabOrder(self.timeRangeCheckBox, self.eventStartDateTime) - masar.setTabOrder(self.eventStartDateTime, self.eventEndDateTime) - masar.setTabOrder(self.eventEndDateTime, self.fetchEventButton) - masar.setTabOrder(self.fetchEventButton, self.eventTableWidget) - masar.setTabOrder(self.eventTableWidget, self.snapshotTabWidget) - masar.setTabOrder(self.snapshotTabWidget, self.currentCommentText) - - def retranslateUi(self, masar): - masar.setWindowTitle(QtGui.QApplication.translate("masar", "MASAR Viewer", None, QtGui.QApplication.UnicodeUTF8)) - self.systemLabel.setText(QtGui.QApplication.translate("masar", "System", None, QtGui.QApplication.UnicodeUTF8)) - self.systemCombox.setToolTip(QtGui.QApplication.translate("masar", "sub-system to which configs/PV list belong", None, QtGui.QApplication.UnicodeUTF8)) - self.configFilterLabel.setText(QtGui.QApplication.translate("masar", "Config Filter", None, QtGui.QApplication.UnicodeUTF8)) - self.configFilterLineEdit.setToolTip(QtGui.QApplication.translate("masar", "using expression like *LN*", None, QtGui.QApplication.UnicodeUTF8)) - self.configFilterLineEdit.setText(QtGui.QApplication.translate("masar", "*", None, QtGui.QApplication.UnicodeUTF8)) - self.fetchConfigButton.setToolTip(QtGui.QApplication.translate("masar", "

get pre-defined configurations

", None, QtGui.QApplication.UnicodeUTF8)) - self.fetchConfigButton.setText(QtGui.QApplication.translate("masar", "Select Config(s)", None, QtGui.QApplication.UnicodeUTF8)) - self.configTableWidget.setToolTip(QtGui.QApplication.translate("masar", "

ConfigTable: a list of pre-defined configs

CLICK on ONE row to fetch its list of snapshot(s)

", None, QtGui.QApplication.UnicodeUTF8)) - self.configTableWidget.setSortingEnabled(True) - self.timeRangeCheckBox.setText(QtGui.QApplication.translate("masar", "Use time range:", None, QtGui.QApplication.UnicodeUTF8)) - self.eventStartLabel.setText(QtGui.QApplication.translate("masar", "From:", None, QtGui.QApplication.UnicodeUTF8)) - self.eventStartDateTime.setDisplayFormat(QtGui.QApplication.translate("masar", "yyyy-MM-dd hh:mm:ss", None, QtGui.QApplication.UnicodeUTF8)) - self.eventEndLabel.setText(QtGui.QApplication.translate("masar", "To:", None, QtGui.QApplication.UnicodeUTF8)) - self.fetchEventButton.setToolTip(QtGui.QApplication.translate("masar", "get a list of snapshot(s) or event(s)", None, QtGui.QApplication.UnicodeUTF8)) - self.fetchEventButton.setText(QtGui.QApplication.translate("masar", "Select Snapshot(s)", None, QtGui.QApplication.UnicodeUTF8)) - self.eventEndDateTime.setDisplayFormat(QtGui.QApplication.translate("masar", "yyyy-MM-dd hh:mm:ss", None, QtGui.QApplication.UnicodeUTF8)) - self.eventFilterLineEdit.setToolTip(QtGui.QApplication.translate("masar", "using expression like *BPM*", None, QtGui.QApplication.UnicodeUTF8)) - self.eventFilterLineEdit.setText(QtGui.QApplication.translate("masar", "*", None, QtGui.QApplication.UnicodeUTF8)) - self.authorTextEdit.setToolTip(QtGui.QApplication.translate("masar", "using expression like *mei*", None, QtGui.QApplication.UnicodeUTF8)) - self.authorTextEdit.setText(QtGui.QApplication.translate("masar", "*", None, QtGui.QApplication.UnicodeUTF8)) - self.eventFilterLabel.setText(QtGui.QApplication.translate("masar", "Snapshot Desc", None, QtGui.QApplication.UnicodeUTF8)) - self.ByWho.setText(QtGui.QApplication.translate("masar", "Author", None, QtGui.QApplication.UnicodeUTF8)) - self.eventTableWidget.setToolTip(QtGui.QApplication.translate("masar", "

snapshotTable: a list of saved snapshot(s) for the selected config(s)

Double CLICK on one row to display ONE snapshot data

", None, QtGui.QApplication.UnicodeUTF8)) - self.eventTableWidget.setSortingEnabled(True) - self.fetchSnapshotButton.setToolTip(QtGui.QApplication.translate("masar", "get PVs data", None, QtGui.QApplication.UnicodeUTF8)) - self.fetchSnapshotButton.setText(QtGui.QApplication.translate("masar", "Display Snapshot(s)", None, QtGui.QApplication.UnicodeUTF8)) - self.snapshotIdLineEdit.setToolTip(QtGui.QApplication.translate("masar", "

Please enter one integer number and only one, then press Enter key or click the right-side button

", None, QtGui.QApplication.UnicodeUTF8)) - self.searchSnapshotButton.setToolTip(QtGui.QApplication.translate("masar", "

please enter a snapshot ID (one integer number, and only one) in the left box, then click this button

", None, QtGui.QApplication.UnicodeUTF8)) - self.searchSnapshotButton.setText(QtGui.QApplication.translate("masar", "search a snapshot by its ID", None, QtGui.QApplication.UnicodeUTF8)) - self.currentCommentText.setPlainText(QtGui.QApplication.translate("masar", "\n" -"MASAR is an EPICS V4 service which does MAchine Snapshot, Archiving, and Retrieve [1] [2]. This software was originally developed by National Synchrotron Light Source II at Brookhaven National Laboratory.\n" -"\n" -"\n" -"Quick Start ...\n" -"\n" -" 1. To restore the machine to a particular state/snapshot: click (either single or double) on one row in the left-top Config table --> double click on one row in the left-bottom Snapshot table --> click the button \"Restore Machine\";\n" -" \n" -" 2. To save a machine snapshot: click on one row in the left-top Config table --> click \"Save Machine Snapshot ...\" --> put a concise description (<80 characters) such as: \"SBM EmitX and Y 69 nm. This is golden\";\n" -"\n" -" 3. To compare multiple saved snapshots: click on one row in the left-top Config table --> Ctrl + mouse click to select multiple rows in the left-bottom Snapshot table --> click \"Compare Snapshots...\";\n" -"\n" -" 4. To search / filter PVs by clicking the button \"PV search\" or using the keyboard \'Ctrl + F\': use * to match multiple characters, use ? to match single character, use [m-n] to match the range from m to n, and use [!character-set] to exclude PVs which contain any character in the \'character-set\', i.e. *BPM:[1-3]* means searching any PV name which contains BPM:1, BPM:2 and BPM:3, *[!SP] means searching PV which doesn\'t have \'SP\' at the end. The searching can be nested -- you may search the filtered snapshot again and again using different search pattern to refine your search result; \n" -"\n" -" 5. To partially restore snapshot (don\'t restore some PVs): click \'Not Restore\' in the snapshot Tab for the PV you don\'t want to restore; better way: firstly filter PVs as #4 instruction, then only restore the filtered PVs by clicking \"Restore Machine\".\n" -"\n" -"\n" -"Tips ...\n" -" \n" -" 1. Always put the mouse cursor over the things you don\'t know for 2 seconds, the GUI will show you what it is or how to do it;\n" -" \n" -" 2. Always follow the instructions on the pop-up message which shows something is not working as expected and how to fix it; \n" -" \n" -" 3. MASAR GUI is mainly table-based. Treat the table as Microsoft Excel: resize the column, sort by the column, select multiple rows, Ctrl + c to copy one single cell ... \n" -" \n" -"\n" -"Terminology ...\n" -" \n" -" * machine: it can be accelerator, system, etc.: Linac, Booster, Storage Ring, BPM system, Magnet system ...\n" -" \n" -" * snapshot: a list of PVs associated with data (value, time stamp, alarm status ... ) saved at a particular time for a particular machine state.\n" -"\n" -" * config table: pre-defined a list of configurations for different machines; it has a unique Name, Description, Date when it is created ... \n" -"\n" -" * snapshot table: a list of saved snapshots (without EPICS data) for a particular config; it has Config Name which is listed in the config table, Description, Author ... \n" -"\n" -" * snapshot tab: the EPICS data of one snapshot is presented in the form of table in a Tab window.\n" -"\n" -"\n" -"More Info ...\n" -"\n" -" please check out the links below:\n" -"\n" -" [1] http://epics-pvdata.sourceforge.net/\n" -" [2] http://epics-pvdata.hg.sourceforge.net/hgweb/epics-pvdata/masarService/raw-file/tip/documentation/userManual.html", None, QtGui.QApplication.UnicodeUTF8)) - self.snapshotTabWidget.setTabText(self.snapshotTabWidget.indexOf(self.commentTab), QtGui.QApplication.translate("masar", "Welcome to MASAR", None, QtGui.QApplication.UnicodeUTF8)) - self.snapshotTabWidget.setTabToolTip(self.snapshotTabWidget.indexOf(self.commentTab), QtGui.QApplication.translate("masar", "How to use MASAR", None, QtGui.QApplication.UnicodeUTF8)) - self.compareSnapshotsButton.setText(QtGui.QApplication.translate("masar", "Compare Snapshots...", None, QtGui.QApplication.UnicodeUTF8)) - self.pvFilterLineEdit.setToolTip(QtGui.QApplication.translate("masar", "

*BPM:[1-3]* to search any pv containing BPM:1, BPM:2, and BPM:3; press Enter key or click the button \'PV Search\' when you are done with the search pattern

", None, QtGui.QApplication.UnicodeUTF8)) - self.getLiveMachineButton.setText(QtGui.QApplication.translate("masar", "Compare Live Machine", None, QtGui.QApplication.UnicodeUTF8)) - self.saveMachineSnapshotButton.setText(QtGui.QApplication.translate("masar", "Save Machine Snapshot ...", None, QtGui.QApplication.UnicodeUTF8)) - self.restoreMachineButton.setToolTip(QtGui.QApplication.translate("masar", "one-step simple put", None, QtGui.QApplication.UnicodeUTF8)) - self.restoreMachineButton.setText(QtGui.QApplication.translate("masar", "Restore Machine", None, QtGui.QApplication.UnicodeUTF8)) - self.saveDataFileButton.setText(QtGui.QApplication.translate("masar", "Export Snapshot to File ...", None, QtGui.QApplication.UnicodeUTF8)) - self.pvSearchButton.setToolTip(QtGui.QApplication.translate("masar", "

search/filter pvs in the active snapshot Tab (the one you are watching. You can use Ctrl + F to search)

", None, QtGui.QApplication.UnicodeUTF8)) - self.pvSearchButton.setText(QtGui.QApplication.translate("masar", "PV Search", None, QtGui.QApplication.UnicodeUTF8)) - self.rampingMachineButton.setToolTip(QtGui.QApplication.translate("masar", "multiple-step grdual put", None, QtGui.QApplication.UnicodeUTF8)) - self.rampingMachineButton.setText(QtGui.QApplication.translate("masar", "Ramping Machine...", None, QtGui.QApplication.UnicodeUTF8)) - -import masarRC_rc diff --git a/python/masarclient/ui/verifysetpoint.py b/python/masarclient/ui/verifysetpoint.py index e85f915..a660b9e 100644 --- a/python/masarclient/ui/verifysetpoint.py +++ b/python/masarclient/ui/verifysetpoint.py @@ -10,14 +10,11 @@ from PyQt4.QtGui import (QDialog, QGridLayout, QTableWidget, QLineEdit, QPushButton, QBrush, QLabel, QSizePolicy, QTableWidgetItem, QDesktopWidget) -from PyQt4.QtCore import (QString, QObject, SIGNAL, Qt, QSize) +from PyQt4.QtCore import (QObject, SIGNAL, Qt, QSize) import cothread from cothread.catools import caget, camonitor, FORMAT_TIME, connect import threading, time, traceback -try: - _fromUtf8 = QString.fromUtf8 -except AttributeError: - _fromUtf8 = lambda s: s +_fromUtf8 = lambda s: s class VerifySetpoint(QDialog): def __init__(self, configFile, rowCount, verifyWindowDict, parent=None): @@ -193,4 +190,4 @@ def updateTable(self): def cleanup(self): del self.verifyWindowDict[self.configFile]#closed verifyWindow can be opened again self.close() - \ No newline at end of file +