diff options
Diffstat (limited to 'kindlecomicconverter')
| -rw-r--r-- | kindlecomicconverter/KCC_gui.py | 1133 | ||||
| -rw-r--r-- | kindlecomicconverter/KCC_rc.py | 11315 | ||||
| -rw-r--r-- | kindlecomicconverter/KCC_ui.py | 271 | ||||
| -rw-r--r-- | kindlecomicconverter/KCC_ui_editor.py | 124 | ||||
| -rw-r--r-- | kindlecomicconverter/__init__.py | 4 | ||||
| -rw-r--r-- | kindlecomicconverter/cbxarchive.py | 105 | ||||
| -rwxr-xr-x | kindlecomicconverter/comic2ebook.py | 1185 | ||||
| -rw-r--r-- | kindlecomicconverter/comic2panel.py | 303 | ||||
| -rw-r--r-- | kindlecomicconverter/dualmetafix.py | 185 | ||||
| -rwxr-xr-x | kindlecomicconverter/image.py | 374 | ||||
| -rw-r--r-- | kindlecomicconverter/kindle.py | 44 | ||||
| -rw-r--r-- | kindlecomicconverter/metadata.py | 173 | ||||
| -rw-r--r-- | kindlecomicconverter/pdfjpgextract.py | 68 | ||||
| -rw-r--r-- | kindlecomicconverter/rarfile.py | 1990 | ||||
| -rw-r--r-- | kindlecomicconverter/shared.py | 196 |
15 files changed, 17470 insertions, 0 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py new file mode 100644 index 0000000..63f004c --- /dev/null +++ b/kindlecomicconverter/KCC_gui.py @@ -0,0 +1,1133 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +import os +import sys +from urllib.parse import unquote +from urllib.request import urlopen, urlretrieve, Request +from time import sleep +from shutil import move +from subprocess import STDOUT, PIPE +from PyQt5 import QtGui, QtCore, QtWidgets, QtNetwork +from xml.dom.minidom import parse +from psutil import Popen, Process +from copy import copy +from distutils.version import StrictVersion +from xml.sax.saxutils import escape +from raven import Client +from .shared import md5Checksum, HTMLStripper, sanitizeTrace, saferRemove +from . import __version__ +from . import comic2ebook +from . import metadata +from . import kindle +from . import KCC_ui +from . import KCC_ui_editor + + +class QApplicationMessaging(QtWidgets.QApplication): + messageFromOtherInstance = QtCore.pyqtSignal(bytes) + + def __init__(self, argv): + QtWidgets.QApplication.__init__(self, argv) + self._key = 'KCC' + self._timeout = 1000 + self._locked = False + socket = QtNetwork.QLocalSocket(self) + socket.connectToServer(self._key, QtCore.QIODevice.WriteOnly) + if not socket.waitForConnected(self._timeout): + self._server = QtNetwork.QLocalServer(self) + self._server.newConnection.connect(self.handleMessage) + self._server.listen(self._key) + else: + self._locked = True + socket.disconnectFromServer() + + def __del__(self): + if not self._locked: + self._server.close() + + def event(self, e): + if e.type() == QtCore.QEvent.FileOpen: + self.messageFromOtherInstance.emit(bytes(e.file(), 'UTF-8')) + return True + else: + return QtWidgets.QApplication.event(self, e) + + def isRunning(self): + return self._locked + + def handleMessage(self): + socket = self._server.nextPendingConnection() + if socket.waitForReadyRead(self._timeout): + self.messageFromOtherInstance.emit(socket.readAll().data()) + + def sendMessage(self, message): + socket = QtNetwork.QLocalSocket(self) + socket.connectToServer(self._key, QtCore.QIODevice.WriteOnly) + socket.waitForConnected(self._timeout) + socket.write(bytes(message, 'UTF-8')) + socket.waitForBytesWritten(self._timeout) + socket.disconnectFromServer() + + +class QMainWindowKCC(QtWidgets.QMainWindow): + progressBarTick = QtCore.pyqtSignal(str) + modeConvert = QtCore.pyqtSignal(int) + addMessage = QtCore.pyqtSignal(str, str, bool) + addTrayMessage = QtCore.pyqtSignal(str, str) + showDialog = QtCore.pyqtSignal(str, str) + hideProgressBar = QtCore.pyqtSignal() + forceShutdown = QtCore.pyqtSignal() + + +class Icons: + def __init__(self): + self.deviceKindle = QtGui.QIcon() + self.deviceKindle.addPixmap(QtGui.QPixmap(":/Devices/icons/Kindle.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.deviceKobo = QtGui.QIcon() + self.deviceKobo.addPixmap(QtGui.QPixmap(":/Devices/icons/Kobo.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.deviceOther = QtGui.QIcon() + self.deviceOther.addPixmap(QtGui.QPixmap(":/Devices/icons/Other.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + + self.MOBIFormat = QtGui.QIcon() + self.MOBIFormat.addPixmap(QtGui.QPixmap(":/Formats/icons/MOBI.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.CBZFormat = QtGui.QIcon() + self.CBZFormat.addPixmap(QtGui.QPixmap(":/Formats/icons/CBZ.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.EPUBFormat = QtGui.QIcon() + self.EPUBFormat.addPixmap(QtGui.QPixmap(":/Formats/icons/EPUB.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + + self.info = QtGui.QIcon() + self.info.addPixmap(QtGui.QPixmap(":/Status/icons/info.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.warning = QtGui.QIcon() + self.warning.addPixmap(QtGui.QPixmap(":/Status/icons/warning.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.error = QtGui.QIcon() + self.error.addPixmap(QtGui.QPixmap(":/Status/icons/error.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + + self.programIcon = QtGui.QIcon() + self.programIcon.addPixmap(QtGui.QPixmap(":/Icon/icons/comic2ebook.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + + +class VersionThread(QtCore.QThread): + def __init__(self): + QtCore.QThread.__init__(self) + self.newVersion = '' + self.md5 = '' + self.barProgress = 0 + self.answer = None + + def __del__(self): + self.wait() + + def run(self): + try: + XML = parse(urlopen(Request('https://kcc.iosphe.re/Version/', + headers={'User-Agent': 'KindleComicConverter/' + __version__}))) + except Exception: + return + latestVersion = XML.childNodes[0].getElementsByTagName('LatestVersion')[0].childNodes[0].toxml() + if StrictVersion(latestVersion) > StrictVersion(__version__): + if sys.platform.startswith('win'): + self.newVersion = latestVersion + self.md5 = XML.childNodes[0].getElementsByTagName('MD5')[0].childNodes[0].toxml() + MW.showDialog.emit('<b>New version released!</b> <a href="https://github.com/ciromattia/kcc/releases/">' + 'See changelog.</a><br/><br/>Installed version: ' + __version__ + + '<br/>Current version: ' + latestVersion + + '<br/><br/>Would you like to start automatic update?', 'question') + self.getNewVersion() + else: + MW.addMessage.emit('<a href="https://kcc.iosphe.re/">' + '<b>New version is available!</b></a> ' + '(<a href="https://github.com/ciromattia/kcc/releases/">' + 'Changelog</a>)', 'warning', False) + + def setAnswer(self, dialogAnswer): + self.answer = dialogAnswer + + def getNewVersion(self): + while self.answer is None: + sleep(1) + if self.answer == QtWidgets.QMessageBox.Yes: + try: + MW.modeConvert.emit(-1) + MW.progressBarTick.emit('Downloading update') + path = urlretrieve('https://kcc.iosphe.re/Windows/KindleComicConverter_win_' + + self.newVersion + '.exe', reporthook=self.getNewVersionTick) + if self.md5 != md5Checksum(path[0]): + raise Exception + move(path[0], path[0] + '.exe') + MW.hideProgressBar.emit() + MW.modeConvert.emit(1) + Popen(path[0] + '.exe /SP- /silent /noicons', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + MW.forceShutdown.emit() + except Exception: + MW.addMessage.emit('Failed to download update!', 'warning', False) + MW.hideProgressBar.emit() + MW.modeConvert.emit(1) + + def getNewVersionTick(self, size, blockSize, totalSize): + progress = int((size / (totalSize // blockSize)) * 100) + if size == 0: + MW.progressBarTick.emit('100') + if progress > self.barProgress: + self.barProgress = progress + MW.progressBarTick.emit('tick') + + +class ProgressThread(QtCore.QThread): + def __init__(self): + QtCore.QThread.__init__(self) + self.running = False + self.content = None + self.progress = 0 + + def __del__(self): + self.wait() + + def run(self): + self.running = True + while self.running: + sleep(1) + if self.content and GUI.conversionAlive: + MW.addMessage.emit(self.content + self.progress * '.', 'info', True) + self.progress += 1 + if self.progress == 4: + self.progress = 0 + + def stop(self): + self.running = False + + +class WorkerThread(QtCore.QThread): + def __init__(self): + QtCore.QThread.__init__(self) + self.conversionAlive = False + self.errors = False + self.kindlegenErrorCode = [0] + self.workerOutput = [] + self.progressBarTick = MW.progressBarTick + self.addMessage = MW.addMessage + + def __del__(self): + self.wait() + + def sync(self): + self.conversionAlive = GUI.conversionAlive + + def clean(self): + GUI.progress.content = '' + GUI.progress.stop() + GUI.needClean = True + MW.hideProgressBar.emit() + MW.addMessage.emit('<b>Conversion interrupted.</b>', 'error', False) + MW.addTrayMessage.emit('Conversion interrupted.', 'Critical') + MW.modeConvert.emit(1) + + def run(self): + MW.modeConvert.emit(0) + + parser = comic2ebook.makeParser() + options, _ = parser.parse_args() + argv = '' + currentJobs = [] + + options.profile = GUI.profiles[str(GUI.deviceBox.currentText())]['Label'] + options.format = str(GUI.formatBox.currentText()).replace('/AZW3', '') + if GUI.mangaBox.isChecked(): + options.righttoleft = True + if GUI.rotateBox.checkState() == 1: + options.splitter = 2 + elif GUI.rotateBox.checkState() == 2: + options.splitter = 1 + if GUI.qualityBox.isChecked(): + options.autoscale = True + if GUI.webtoonBox.isChecked(): + options.webtoon = True + if GUI.upscaleBox.checkState() == 1: + options.stretch = True + elif GUI.upscaleBox.checkState() == 2: + options.upscale = True + if GUI.gammaBox.isChecked() and float(GUI.gammaValue) > 0.09: + options.gamma = float(GUI.gammaValue) + if GUI.borderBox.checkState() == 1: + options.white_borders = True + elif GUI.borderBox.checkState() == 2: + options.black_borders = True + if GUI.outputSplit.isChecked(): + options.batchsplit = 2 + if GUI.colorBox.isChecked(): + options.forcecolor = True + if GUI.currentMode > 2: + options.customwidth = str(GUI.widthBox.value()) + options.customheight = str(GUI.heightBox.value()) + + for i in range(GUI.jobList.count()): + # Make sure that we don't consider any system message as job to do + if GUI.jobList.item(i).icon().isNull(): + currentJobs.append(str(GUI.jobList.item(i).text())) + GUI.jobList.clear() + for job in currentJobs: + sleep(0.5) + if not self.conversionAlive: + self.clean() + return + self.errors = False + MW.addMessage.emit('<b>Source:</b> ' + job, 'info', False) + if str(GUI.formatBox.currentText()) == 'CBZ': + MW.addMessage.emit('Creating CBZ files', 'info', False) + GUI.progress.content = 'Creating CBZ files' + else: + MW.addMessage.emit('Creating EPUB files', 'info', False) + GUI.progress.content = 'Creating EPUB files' + jobargv = list(argv) + jobargv.append(job) + try: + comic2ebook.options = copy(options) + comic2ebook.checkOptions() + outputPath = comic2ebook.makeBook(job, self) + MW.hideProgressBar.emit() + except UserWarning as warn: + if not self.conversionAlive: + self.clean() + return + else: + GUI.progress.content = '' + self.errors = True + MW.addMessage.emit(str(warn), 'warning', False) + MW.addMessage.emit('Error during conversion! Please consult ' + '<a href="https://github.com/ciromattia/kcc/wiki/Error-messages">wiki</a> ' + 'for more details.', 'error', False) + MW.addTrayMessage.emit('Error during conversion!', 'Critical') + except Exception as err: + GUI.progress.content = '' + self.errors = True + _, _, traceback = sys.exc_info() + if len(err.args) == 1: + MW.showDialog.emit("Error during conversion %s:\n\n%s\n\nTraceback:\n%s" + % (jobargv[-1], str(err), sanitizeTrace(traceback)), 'error') + else: + MW.showDialog.emit("Error during conversion %s:\n\n%s\n\nTraceback:\n%s" + % (jobargv[-1], str(err.args[0]), err.args[1]), 'error') + GUI.sentry.extra_context({'realTraceback': err.args[1]}) + if ' is corrupted.' not in str(err): + GUI.sentry.captureException() + MW.addMessage.emit('Error during conversion! Please consult ' + '<a href="https://github.com/ciromattia/kcc/wiki/Error-messages">wiki</a> ' + 'for more details.', 'error', False) + MW.addTrayMessage.emit('Error during conversion!', 'Critical') + if not self.conversionAlive: + if 'outputPath' in locals(): + for item in outputPath: + if os.path.exists(item): + saferRemove(item) + self.clean() + return + if not self.errors: + GUI.progress.content = '' + if str(GUI.formatBox.currentText()) == 'CBZ': + MW.addMessage.emit('Creating CBZ files... <b>Done!</b>', 'info', True) + else: + MW.addMessage.emit('Creating EPUB files... <b>Done!</b>', 'info', True) + if str(GUI.formatBox.currentText()) == 'MOBI/AZW3': + MW.progressBarTick.emit('Creating MOBI files') + MW.progressBarTick.emit(str(len(outputPath) * 2 + 1)) + MW.progressBarTick.emit('tick') + MW.addMessage.emit('Creating MOBI files', 'info', False) + GUI.progress.content = 'Creating MOBI files' + work = [] + for item in outputPath: + work.append([item]) + self.workerOutput = comic2ebook.makeMOBI(work, self) + self.kindlegenErrorCode = [0] + for errors in self.workerOutput: + if errors[0] != 0: + self.kindlegenErrorCode = errors + break + if not self.conversionAlive: + for item in outputPath: + if os.path.exists(item): + saferRemove(item) + if os.path.exists(item.replace('.epub', '.mobi')): + saferRemove(item.replace('.epub', '.mobi')) + self.clean() + return + if self.kindlegenErrorCode[0] == 0: + GUI.progress.content = '' + MW.addMessage.emit('Creating MOBI files... <b>Done!</b>', 'info', True) + MW.addMessage.emit('Processing MOBI files', 'info', False) + GUI.progress.content = 'Processing MOBI files' + self.workerOutput = [] + for item in outputPath: + self.workerOutput.append(comic2ebook.makeMOBIFix( + item, comic2ebook.options.covers[outputPath.index(item)][1])) + MW.progressBarTick.emit('tick') + for success in self.workerOutput: + if not success[0]: + self.errors = True + break + if not self.errors: + for item in outputPath: + GUI.progress.content = '' + mobiPath = item.replace('.epub', '.mobi') + saferRemove(mobiPath + '_toclean') + if GUI.targetDirectory and GUI.targetDirectory != os.path.dirname(mobiPath): + try: + move(mobiPath, GUI.targetDirectory) + except Exception: + pass + MW.addMessage.emit('Processing MOBI files... <b>Done!</b>', 'info', True) + k = kindle.Kindle() + if k.path and k.coverSupport: + for item in outputPath: + comic2ebook.options.covers[outputPath.index(item)][0].saveToKindle( + k, comic2ebook.options.covers[outputPath.index(item)][1]) + MW.addMessage.emit('Kindle detected. Uploading covers... <b>Done!</b>', 'info', False) + else: + GUI.progress.content = '' + for item in outputPath: + mobiPath = item.replace('.epub', '.mobi') + if os.path.exists(mobiPath): + saferRemove(mobiPath) + if os.path.exists(mobiPath + '_toclean'): + saferRemove(mobiPath + '_toclean') + MW.addMessage.emit('Failed to process MOBI file!', 'error', False) + MW.addTrayMessage.emit('Failed to process MOBI file!', 'Critical') + else: + GUI.progress.content = '' + epubSize = (os.path.getsize(self.kindlegenErrorCode[2])) // 1024 // 1024 + for item in outputPath: + if os.path.exists(item): + saferRemove(item) + if os.path.exists(item.replace('.epub', '.mobi')): + saferRemove(item.replace('.epub', '.mobi')) + MW.addMessage.emit('KindleGen failed to create MOBI!', 'error', False) + MW.addTrayMessage.emit('KindleGen failed to create MOBI!', 'Critical') + if self.kindlegenErrorCode[0] == 1 and self.kindlegenErrorCode[1] != '': + MW.showDialog.emit("KindleGen error:\n\n" + self.kindlegenErrorCode[1], 'error') + if self.kindlegenErrorCode[0] == 23026: + MW.addMessage.emit('Created EPUB file was too big.', 'error', False) + MW.addMessage.emit('EPUB file: ' + str(epubSize) + 'MB. Supported size: ~350MB.', 'error', + False) + else: + for item in outputPath: + if GUI.targetDirectory and GUI.targetDirectory != os.path.dirname(item): + try: + move(item, GUI.targetDirectory) + except Exception: + pass + GUI.progress.content = '' + GUI.progress.stop() + MW.hideProgressBar.emit() + GUI.needClean = True + if not self.errors: + MW.addMessage.emit('<b>All jobs completed.</b>', 'info', False) + MW.addTrayMessage.emit('All jobs completed.', 'Information') + MW.modeConvert.emit(1) + + +class SystemTrayIcon(QtWidgets.QSystemTrayIcon): + def __init__(self): + super().__init__() + if self.isSystemTrayAvailable(): + QtWidgets.QSystemTrayIcon.__init__(self, GUI.icons.programIcon, MW) + self.activated.connect(self.catchClicks) + + def catchClicks(self): + MW.showNormal() + MW.raise_() + MW.activateWindow() + + def addTrayMessage(self, message, icon): + icon = eval('QtWidgets.QSystemTrayIcon.' + icon) + if self.supportsMessages() and not MW.isActiveWindow(): + self.showMessage('Kindle Comic Converter', message, icon) + + +class KCCGUI(KCC_ui.Ui_mainWindow): + def selectDir(self): + if self.needClean: + self.needClean = False + GUI.jobList.clear() + dname = QtWidgets.QFileDialog.getExistingDirectory(MW, 'Select directory', self.lastPath) + if dname != '': + if sys.platform.startswith('win'): + dname = dname.replace('/', '\\') + self.lastPath = os.path.abspath(os.path.join(dname, os.pardir)) + GUI.jobList.addItem(dname) + GUI.jobList.scrollToBottom() + + def selectFile(self): + if self.needClean: + self.needClean = False + GUI.jobList.clear() + if self.UnRAR: + if self.sevenza: + fnames = QtWidgets.QFileDialog.getOpenFileNames(MW, 'Select file', self.lastPath, + 'Comic (*.cbz *.cbr *.cb7 *.zip *.rar *.7z *.pdf)') + else: + fnames = QtWidgets.QFileDialog.getOpenFileNames(MW, 'Select file', self.lastPath, + 'Comic (*.cbz *.cbr *.zip *.rar *.pdf)') + else: + if self.sevenza: + fnames = QtWidgets.QFileDialog.getOpenFileNames(MW, 'Select file', self.lastPath, + 'Comic (*.cbz *.cb7 *.zip *.7z *.pdf)') + else: + fnames = QtWidgets.QFileDialog.getOpenFileNames(MW, 'Select file', self.lastPath, + 'Comic (*.cbz *.zip *.pdf)') + for fname in fnames[0]: + if fname != '': + if sys.platform.startswith('win'): + fname = fname.replace('/', '\\') + self.lastPath = os.path.abspath(os.path.join(fname, os.pardir)) + GUI.jobList.addItem(fname) + GUI.jobList.scrollToBottom() + + def selectFileMetaEditor(self): + if self.UnRAR: + if self.sevenza: + fname = QtWidgets.QFileDialog.getOpenFileName(MW, 'Select file', self.lastPath, + 'Comic (*.cbz *.cbr *.cb7)') + else: + fname = QtWidgets.QFileDialog.getOpenFileName(MW, 'Select file', self.lastPath, + 'Comic (*.cbz *.cbr)') + else: + if self.sevenza: + fname = QtWidgets.QFileDialog.getOpenFileName(MW, 'Select file', self.lastPath, + 'Comic (*.cbz *.cb7)') + else: + fname = QtWidgets.QFileDialog.getOpenFileName(MW, 'Select file', self.lastPath, + 'Comic (*.cbz)') + if fname[0] != '': + if sys.platform.startswith('win'): + fname = fname[0].replace('/', '\\') + else: + fname = fname[0] + self.lastPath = os.path.abspath(os.path.join(fname, os.pardir)) + try: + self.editor.loadData(fname) + except Exception as err: + _, _, traceback = sys.exc_info() + GUI.sentry.captureException() + self.showDialog("Failed to parse metadata!\n\n%s\n\nTraceback:\n%s" + % (str(err), sanitizeTrace(traceback)), 'error') + else: + self.editor.ui.exec_() + + def clearJobs(self): + GUI.jobList.clear() + + # noinspection PyCallByClass,PyTypeChecker + def openWiki(self): + QtGui.QDesktopServices.openUrl(QtCore.QUrl('https://github.com/ciromattia/kcc/wiki')) + + def modeChange(self, mode): + if mode == 1: + self.currentMode = 1 + GUI.gammaWidget.setVisible(False) + GUI.customWidget.setVisible(False) + elif mode == 2: + self.currentMode = 2 + GUI.gammaWidget.setVisible(True) + GUI.customWidget.setVisible(False) + elif mode == 3: + self.currentMode = 3 + GUI.gammaWidget.setVisible(True) + GUI.customWidget.setVisible(True) + + def modeConvert(self, enable): + if enable < 1: + status = False + else: + status = True + GUI.editorButton.setEnabled(status) + GUI.wikiButton.setEnabled(status) + GUI.deviceBox.setEnabled(status) + GUI.directoryButton.setEnabled(status) + GUI.clearButton.setEnabled(status) + GUI.fileButton.setEnabled(status) + GUI.formatBox.setEnabled(status) + GUI.optionWidget.setEnabled(status) + GUI.gammaWidget.setEnabled(status) + GUI.customWidget.setEnabled(status) + GUI.convertButton.setEnabled(True) + if enable == 1: + self.conversionAlive = False + self.worker.sync() + icon = QtGui.QIcon() + icon.addPixmap(QtGui.QPixmap(":/Other/icons/convert.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + GUI.convertButton.setIcon(icon) + GUI.convertButton.setText('Convert') + GUI.centralWidget.setAcceptDrops(True) + elif enable == 0: + self.conversionAlive = True + self.worker.sync() + icon = QtGui.QIcon() + icon.addPixmap(QtGui.QPixmap(":/Other/icons/clear.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + GUI.convertButton.setIcon(icon) + GUI.convertButton.setText('Abort') + GUI.centralWidget.setAcceptDrops(False) + elif enable == -1: + self.conversionAlive = True + self.worker.sync() + GUI.convertButton.setEnabled(False) + GUI.centralWidget.setAcceptDrops(False) + + def togglegammaBox(self, value): + if value: + if self.currentMode != 3: + self.modeChange(2) + else: + if self.currentMode != 3: + self.modeChange(1) + + def togglewebtoonBox(self, value): + if value: + GUI.qualityBox.setEnabled(False) + GUI.qualityBox.setChecked(False) + GUI.mangaBox.setEnabled(False) + GUI.mangaBox.setChecked(False) + GUI.rotateBox.setEnabled(False) + GUI.rotateBox.setChecked(False) + GUI.upscaleBox.setEnabled(False) + GUI.upscaleBox.setChecked(True) + else: + profile = GUI.profiles[str(GUI.deviceBox.currentText())] + if profile['PVOptions']: + GUI.qualityBox.setEnabled(True) + GUI.mangaBox.setEnabled(True) + GUI.rotateBox.setEnabled(True) + GUI.upscaleBox.setEnabled(True) + + def changeGamma(self, value): + valueRaw = int(5 * round(float(value) / 5)) + value = '%.2f' % (float(valueRaw) / 100) + if float(value) <= 0.09: + GUI.gammaLabel.setText('Gamma: Auto') + else: + GUI.gammaLabel.setText('Gamma: ' + str(value)) + GUI.gammaSlider.setValue(valueRaw) + self.gammaValue = value + + def changeDevice(self): + profile = GUI.profiles[str(GUI.deviceBox.currentText())] + if profile['ForceExpert']: + self.modeChange(3) + elif GUI.gammaBox.isChecked(): + self.modeChange(2) + else: + self.modeChange(1) + self.changeFormat() + GUI.gammaSlider.setValue(0) + self.changeGamma(0) + GUI.qualityBox.setEnabled(profile['PVOptions']) + GUI.upscaleBox.setChecked(profile['DefaultUpscale']) + if not profile['PVOptions']: + GUI.qualityBox.setChecked(False) + if str(GUI.deviceBox.currentText()) == 'Other': + self.addMessage('<a href="https://github.com/ciromattia/kcc/wiki/NonKindle-devices">' + 'List of supported Non-Kindle devices.</a>', 'info') + + def changeFormat(self, outputFormat=None): + profile = GUI.profiles[str(GUI.deviceBox.currentText())] + if outputFormat is not None: + GUI.formatBox.setCurrentIndex(outputFormat) + else: + GUI.formatBox.setCurrentIndex(profile['DefaultFormat']) + GUI.qualityBox.setEnabled(profile['PVOptions']) + if str(GUI.formatBox.currentText()) == 'MOBI/AZW3': + GUI.outputSplit.setEnabled(True) + else: + GUI.outputSplit.setEnabled(False) + GUI.outputSplit.setChecked(False) + + def stripTags(self, html): + s = HTMLStripper() + s.feed(html) + return s.get_data() + + def addMessage(self, message, icon, replace=False): + if icon != '': + icon = eval('self.icons.' + icon) + item = QtWidgets.QListWidgetItem(icon, ' ' + self.stripTags(message)) + else: + item = QtWidgets.QListWidgetItem(' ' + self.stripTags(message)) + if replace: + GUI.jobList.takeItem(GUI.jobList.count() - 1) + # Due to lack of HTML support in QListWidgetItem we overlay text field with QLabel + # We still fill original text field with transparent content to trigger creation of horizontal scrollbar + item.setForeground(QtGui.QColor('transparent')) + label = QtWidgets.QLabel(message) + label.setStyleSheet('background-image:url('');background-color:rgba(0,0,0,0);color:rgb(0,0,0);') + label.setOpenExternalLinks(True) + GUI.jobList.addItem(item) + GUI.jobList.setItemWidget(item, label) + GUI.jobList.scrollToBottom() + + def showDialog(self, message, kind): + if kind == 'error': + QtWidgets.QMessageBox.critical(MW, 'KCC - Error', message, QtWidgets.QMessageBox.Ok) + elif kind == 'question': + GUI.versionCheck.setAnswer(QtWidgets.QMessageBox.question(MW, 'KCC - Question', message, + QtWidgets.QMessageBox.Yes, + QtWidgets.QMessageBox.No)) + + def updateProgressbar(self, command): + if command == 'tick': + GUI.progressBar.setValue(GUI.progressBar.value() + 1) + elif command.isdigit(): + GUI.progressBar.setMaximum(int(command) - 1) + GUI.toolWidget.hide() + GUI.progressBar.reset() + GUI.progressBar.show() + else: + GUI.progressBar.setFormat(command) + + def hideProgressBar(self): + GUI.progressBar.hide() + GUI.toolWidget.show() + + def convertStart(self): + if self.conversionAlive: + GUI.convertButton.setEnabled(False) + self.addMessage('Process will be interrupted. Please wait.', 'warning') + self.conversionAlive = False + self.worker.sync() + else: + if QtWidgets.QApplication.keyboardModifiers() == QtCore.Qt.ShiftModifier: + dname = QtWidgets.QFileDialog.getExistingDirectory(MW, 'Select output directory', self.lastPath) + if dname != '': + if sys.platform.startswith('win'): + dname = dname.replace('/', '\\') + GUI.targetDirectory = dname + else: + GUI.targetDirectory = '' + else: + GUI.targetDirectory = '' + self.progress.start() + if self.needClean: + self.needClean = False + GUI.jobList.clear() + if GUI.jobList.count() == 0: + self.addMessage('No files selected! Please choose files to convert.', 'error') + self.needClean = True + return + if self.currentMode > 2 and (GUI.widthBox.value() == 0 or GUI.heightBox.value() == 0): + GUI.jobList.clear() + self.addMessage('Target resolution is not set!', 'error') + self.needClean = True + return + if str(GUI.formatBox.currentText()) == 'MOBI/AZW3' and not self.kindleGen: + self.detectKindleGen() + if not self.kindleGen: + GUI.jobList.clear() + self.addMessage('Cannot find <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&docId=' + '1000765211"><b>KindleGen</b></a>! MOBI conversion is unavailable!', 'error') + if sys.platform.startswith('win'): + self.addMessage('Download it and place EXE in KCC directory.', 'error') + elif sys.platform.startswith('darwin'): + self.addMessage('Install it using <a href="http://brew.sh/">Brew</a>.', 'error') + else: + self.addMessage('Download it and place executable in /usr/local/bin directory.', 'error') + self.needClean = True + return + self.worker.start() + + def saveSettings(self, event): + if self.conversionAlive: + GUI.convertButton.setEnabled(False) + self.addMessage('Process will be interrupted. Please wait.', 'warning') + self.conversionAlive = False + self.worker.sync() + event.ignore() + if not GUI.convertButton.isEnabled(): + event.ignore() + self.settings.setValue('settingsVersion', __version__) + self.settings.setValue('lastPath', self.lastPath) + self.settings.setValue('lastDevice', GUI.deviceBox.currentIndex()) + self.settings.setValue('currentFormat', GUI.formatBox.currentIndex()) + self.settings.setValue('startNumber', self.startNumber + 1) + self.settings.setValue('windowSize', str(MW.size().width()) + 'x' + str(MW.size().height())) + self.settings.setValue('options', {'mangaBox': GUI.mangaBox.checkState(), + 'rotateBox': GUI.rotateBox.checkState(), + 'qualityBox': GUI.qualityBox.checkState(), + 'gammaBox': GUI.gammaBox.checkState(), + 'upscaleBox': GUI.upscaleBox.checkState(), + 'borderBox': GUI.borderBox.checkState(), + 'webtoonBox': GUI.webtoonBox.checkState(), + 'outputSplit': GUI.outputSplit.checkState(), + 'colorBox': GUI.colorBox.checkState(), + 'widthBox': GUI.widthBox.value(), + 'heightBox': GUI.heightBox.value(), + 'gammaSlider': float(self.gammaValue) * 100}) + self.settings.sync() + self.tray.hide() + + def handleMessage(self, message): + MW.raise_() + MW.activateWindow() + if type(message) is bytes: + message = message.decode('UTF-8') + if not self.conversionAlive and message != 'ARISE': + if self.needClean: + self.needClean = False + GUI.jobList.clear() + if self.UnRAR: + if self.sevenza: + formats = ['.cbz', '.cbr', '.cb7', '.zip', '.rar', '.7z', '.pdf'] + else: + formats = ['.cbz', '.cbr', '.zip', '.rar', '.pdf'] + else: + if self.sevenza: + formats = ['.cbz', '.cb7', '.zip', '.7z', '.pdf'] + else: + formats = ['.cbz', '.zip', '.pdf'] + if os.path.isdir(message): + GUI.jobList.addItem(message) + GUI.jobList.scrollToBottom() + elif os.path.isfile(message): + extension = os.path.splitext(message) + if extension[1].lower() in formats: + GUI.jobList.addItem(message) + GUI.jobList.scrollToBottom() + else: + self.addMessage('This file type is unsupported!', 'error') + + def dragAndDrop(self, e): + e.accept() + + def dragAndDropAccepted(self, e): + for message in e.mimeData().urls(): + message = unquote(message.toString().replace('file:///', '')) + if sys.platform.startswith('win'): + message = message.replace('/', '\\') + else: + message = '/' + message + if message[-1] == '/': + message = message[:-1] + self.handleMessage(message) + + def forceShutdown(self): + self.saveSettings(None) + sys.exit(0) + + def detectKindleGen(self, startup=False): + if not sys.platform.startswith('win'): + try: + os.chmod('/usr/local/bin/kindlegen', 0o755) + except Exception: + pass + kindleGenExitCode = Popen('kindlegen -locale en', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + if kindleGenExitCode.wait() == 0: + self.kindleGen = True + versionCheck = Popen('kindlegen -locale en', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + for line in versionCheck.stdout: + line = line.decode("utf-8") + if 'Amazon kindlegen' in line: + versionCheck = line.split('V')[1].split(' ')[0] + if StrictVersion(versionCheck) < StrictVersion('2.9'): + self.addMessage('Your <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&docId=' + '1000765211">KindleGen</a> is outdated! MOBI conversion might fail.', 'warning') + break + else: + self.kindleGen = False + if startup: + self.addMessage('Cannot find <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&docId=1000765211">' + '<b>KindleGen</b></a>! MOBI conversion will be unavailable!', 'error') + if sys.platform.startswith('win'): + self.addMessage('Download it and place EXE in KCC directory.', 'error') + elif sys.platform.startswith('darwin'): + self.addMessage('Install it using <a href="http://brew.sh/">Brew</a>.', 'error') + else: + self.addMessage('Download it and place executable in /usr/local/bin directory.', 'error') + + def __init__(self, KCCAplication, KCCWindow): + global APP, MW, GUI + APP = KCCAplication + MW = KCCWindow + GUI = self + self.setupUi(MW) + self.editor = KCCGUI_MetaEditor() + self.icons = Icons() + self.settings = QtCore.QSettings('KindleComicConverter', 'KindleComicConverter') + self.settingsVersion = self.settings.value('settingsVersion', '', type=str) + self.lastPath = self.settings.value('lastPath', '', type=str) + self.lastDevice = self.settings.value('lastDevice', 0, type=int) + self.currentFormat = self.settings.value('currentFormat', 0, type=int) + self.startNumber = self.settings.value('startNumber', 0, type=int) + self.windowSize = self.settings.value('windowSize', '0x0', type=str) + self.options = self.settings.value('options', {'gammaSlider': 0}) + self.worker = WorkerThread() + self.versionCheck = VersionThread() + self.progress = ProgressThread() + self.tray = SystemTrayIcon() + self.conversionAlive = False + self.needClean = True + self.kindleGen = False + self.gammaValue = 1.0 + self.currentMode = 1 + self.targetDirectory = '' + self.sentry = Client(release=__version__) + if sys.platform.startswith('win'): + from psutil import BELOW_NORMAL_PRIORITY_CLASS + self.p = Process(os.getpid()) + self.p.nice(BELOW_NORMAL_PRIORITY_CLASS) + self.p.ionice(1) + elif sys.platform.startswith('linux'): + APP.setStyle('fusion') + if self.windowSize == '0x0': + MW.resize(500, 500) + elif sys.platform.startswith('darwin'): + for element in ['editorButton', 'wikiButton', 'directoryButton', 'clearButton', 'fileButton', 'deviceBox', + 'convertButton', 'formatBox']: + eval('GUI.' + element).setMinimumSize(QtCore.QSize(0, 0)) + GUI.gridLayout.setContentsMargins(-1, -1, -1, -1) + for element in ['gridLayout_2', 'gridLayout_3', 'gridLayout_4', 'horizontalLayout', 'horizontalLayout_2']: + eval('GUI.' + element).setContentsMargins(-1, 0, -1, 0) + if self.windowSize == '0x0': + MW.resize(500, 500) + + self.profiles = { + "Kindle Oasis": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': True, 'Label': 'KV'}, + "Kindle Voyage": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': True, 'Label': 'KV'}, + "Kindle PW 3": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': True, 'Label': 'KV'}, + "Kindle PW 1/2": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': False, 'Label': 'KPW'}, + "Kindle": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': False, 'Label': 'K45'}, + "Kindle DX/DXG": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 2, + 'DefaultUpscale': False, 'Label': 'KDX'}, + "Kobo Mini/Touch": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, + 'DefaultUpscale': False, 'Label': 'KoMT'}, + "Kobo Glo": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, + 'DefaultUpscale': False, 'Label': 'KoG'}, + "Kobo Glo HD": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, + 'DefaultUpscale': False, 'Label': 'KoGHD'}, + "Kobo Aura": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, + 'DefaultUpscale': False, 'Label': 'KoA'}, + "Kobo Aura HD": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, + 'DefaultUpscale': True, 'Label': 'KoAHD'}, + "Kobo Aura H2O": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, + 'DefaultUpscale': True, 'Label': 'KoAH2O'}, + "Kobo Aura ONE": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, + 'DefaultUpscale': True, 'Label': 'KoAO'}, + "Other": {'PVOptions': False, 'ForceExpert': True, 'DefaultFormat': 1, + 'DefaultUpscale': False, 'Label': 'OTHER'}, + "Kindle 1": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': False, 'Label': 'K1'}, + "Kindle 2": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': False, 'Label': 'K2'}, + "Kindle 3": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': False, 'Label': 'K3'}, + } + profilesGUI = [ + "Kindle Oasis", + "Kindle Voyage", + "Kindle PW 3", + "Kindle PW 1/2", + "Kindle", + "Separator", + "Kobo Aura ONE", + "Kobo Aura H2O", + "Kobo Aura HD", + "Kobo Aura", + "Kobo Glo HD", + "Kobo Glo", + "Kobo Mini/Touch", + "Separator", + "Other", + "Separator", + "Kindle DX/DXG", + "Kindle 3", + "Kindle 2", + "Kindle 1", + ] + + statusBarLabel = QtWidgets.QLabel('<b><a href="https://kcc.iosphe.re/">HOMEPAGE</a> - <a href="https://github.' + 'com/ciromattia/kcc/blob/master/README.md#issues--new-features--donations">DO' + 'NATE</a> - <a href="http://www.mobileread.com/forums/showthread.php?t=207461' + '">FORUM</a></b>') + statusBarLabel.setAlignment(QtCore.Qt.AlignCenter) + statusBarLabel.setOpenExternalLinks(True) + GUI.statusBar.addPermanentWidget(statusBarLabel, 1) + + self.addMessage('<b>Welcome!</b>', 'info') + self.addMessage('<b>Remember:</b> All options have additional informations in tooltips.', 'info') + if self.startNumber < 5: + self.addMessage('Since you are new user of <b>KCC</b> please see few ' + '<a href="https://github.com/ciromattia/kcc/wiki/Important-tips">important tips</a>.', + 'info') + rarExitCode = Popen('unrar', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + rarExitCode = rarExitCode.wait() + if rarExitCode == 0 or rarExitCode == 7: + self.UnRAR = True + else: + self.UnRAR = False + self.addMessage('Cannot find <a href="http://www.rarlab.com/rar_add.htm">UnRAR</a>!' + ' Processing of CBR/RAR files will be disabled.', 'warning') + sevenzaExitCode = Popen('7za', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + sevenzaExitCode = sevenzaExitCode.wait() + if sevenzaExitCode == 0 or sevenzaExitCode == 7: + self.sevenza = True + else: + self.sevenza = False + self.addMessage('Cannot find <a href="http://www.7-zip.org/download.html">7za</a>!' + ' Processing of CB7/7Z files will be disabled.', 'warning') + self.detectKindleGen(True) + + APP.messageFromOtherInstance.connect(self.handleMessage) + GUI.directoryButton.clicked.connect(self.selectDir) + GUI.clearButton.clicked.connect(self.clearJobs) + GUI.fileButton.clicked.connect(self.selectFile) + GUI.editorButton.clicked.connect(self.selectFileMetaEditor) + GUI.wikiButton.clicked.connect(self.openWiki) + GUI.convertButton.clicked.connect(self.convertStart) + GUI.gammaSlider.valueChanged.connect(self.changeGamma) + GUI.gammaBox.stateChanged.connect(self.togglegammaBox) + GUI.webtoonBox.stateChanged.connect(self.togglewebtoonBox) + GUI.deviceBox.activated.connect(self.changeDevice) + GUI.formatBox.activated.connect(self.changeFormat) + MW.progressBarTick.connect(self.updateProgressbar) + MW.modeConvert.connect(self.modeConvert) + MW.addMessage.connect(self.addMessage) + MW.showDialog.connect(self.showDialog) + MW.hideProgressBar.connect(self.hideProgressBar) + MW.forceShutdown.connect(self.forceShutdown) + MW.closeEvent = self.saveSettings + MW.addTrayMessage.connect(self.tray.addTrayMessage) + + GUI.centralWidget.setAcceptDrops(True) + GUI.centralWidget.dragEnterEvent = self.dragAndDrop + GUI.centralWidget.dropEvent = self.dragAndDropAccepted + + self.modeChange(1) + for profile in profilesGUI: + if profile == "Other": + GUI.deviceBox.addItem(self.icons.deviceOther, profile) + elif profile == "Separator": + GUI.deviceBox.insertSeparator(GUI.deviceBox.count() + 1) + elif 'Ko' in profile: + GUI.deviceBox.addItem(self.icons.deviceKobo, profile) + else: + GUI.deviceBox.addItem(self.icons.deviceKindle, profile) + for f in ['MOBI/AZW3', 'EPUB', 'CBZ']: + GUI.formatBox.addItem(eval('self.icons.' + f.replace('/AZW3', '') + 'Format'), f) + if self.lastDevice > GUI.deviceBox.count(): + self.lastDevice = 0 + if profilesGUI[self.lastDevice] == "Separator": + self.lastDevice = 0 + if self.currentFormat > GUI.formatBox.count(): + self.currentFormat = 0 + GUI.deviceBox.setCurrentIndex(self.lastDevice) + self.changeDevice() + if self.currentFormat != self.profiles[str(GUI.deviceBox.currentText())]['DefaultFormat']: + self.changeFormat(self.currentFormat) + for option in self.options: + if str(option) == "widthBox": + GUI.widthBox.setValue(int(self.options[option])) + elif str(option) == "heightBox": + GUI.heightBox.setValue(int(self.options[option])) + elif str(option) == "gammaSlider": + if GUI.gammaSlider.isEnabled(): + GUI.gammaSlider.setValue(int(self.options[option])) + self.changeGamma(int(self.options[option])) + else: + try: + if eval('GUI.' + str(option)).isEnabled(): + eval('GUI.' + str(option)).setCheckState(self.options[option]) + except AttributeError: + pass + self.worker.sync() + self.versionCheck.start() + self.tray.show() + + if self.windowSize != '0x0': + x, y = self.windowSize.split('x') + MW.resize(int(x), int(y)) + MW.setWindowTitle("Kindle Comic Converter " + __version__) + MW.show() + MW.raise_() + + +class KCCGUI_MetaEditor(KCC_ui_editor.Ui_editorDialog): + def loadData(self, file): + self.parser = metadata.MetadataParser(file) + if self.parser.compressor == 'rar': + self.editorWidget.setEnabled(False) + self.okButton.setEnabled(False) + self.statusLabel.setText('CBR metadata are read-only.') + else: + self.editorWidget.setEnabled(True) + self.okButton.setEnabled(True) + self.statusLabel.setText('Separate authors with a comma.') + for field in (self.seriesLine, self.volumeLine, self.numberLine, self.muidLine): + if field.objectName() == 'muidLine': + field.setText(self.parser.data['MUid']) + else: + field.setText(self.parser.data[field.objectName().capitalize()[:-4]]) + for field in (self.writerLine, self.pencillerLine, self.inkerLine, self.coloristLine): + field.setText(', '.join(self.parser.data[field.objectName().capitalize()[:-4] + 's'])) + if self.seriesLine.text() == '': + self.seriesLine.setText(file.split('\\')[-1].split('/')[-1].split('.')[0]) + + def saveData(self): + for field in (self.volumeLine, self.numberLine, self.muidLine): + if field.text().isnumeric() or self.cleanData(field.text()) == '': + if field.objectName() == 'muidLine': + self.parser.data['MUid'] = self.cleanData(field.text()) + else: + self.parser.data[field.objectName().capitalize()[:-4]] = self.cleanData(field.text()) + else: + self.statusLabel.setText(field.objectName().capitalize()[:-4] + ' field must be a number.') + break + else: + self.parser.data['Series'] = self.cleanData(self.seriesLine.text()) + for field in (self.writerLine, self.pencillerLine, self.inkerLine, self.coloristLine): + values = self.cleanData(field.text()).split(',') + tmpData = [] + for value in values: + if self.cleanData(value) != '': + tmpData.append(self.cleanData(value)) + self.parser.data[field.objectName().capitalize()[:-4] + 's'] = tmpData + try: + self.parser.saveXML() + except Exception as err: + _, _, traceback = sys.exc_info() + GUI.sentry.captureException() + GUI.showDialog("Failed to save metadata!\n\n%s\n\nTraceback:\n%s" + % (str(err), sanitizeTrace(traceback)), 'error') + self.ui.close() + + def cleanData(self, s): + return escape(s.strip()) + + def __init__(self): + self.ui = QtWidgets.QDialog() + self.parser = None + self.setupUi(self.ui) + self.ui.setWindowFlags(self.ui.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) + self.okButton.clicked.connect(self.saveData) + self.cancelButton.clicked.connect(self.ui.close) + if sys.platform.startswith('linux'): + self.ui.resize(450, 260) + self.ui.setMinimumSize(QtCore.QSize(450, 260)) + elif sys.platform.startswith('darwin'): + self.ui.resize(450, 310) + self.ui.setMinimumSize(QtCore.QSize(450, 310)) diff --git a/kindlecomicconverter/KCC_rc.py b/kindlecomicconverter/KCC_rc.py new file mode 100644 index 0000000..e4334c8 --- /dev/null +++ b/kindlecomicconverter/KCC_rc.py @@ -0,0 +1,11315 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# Created by: The Resource Compiler for PyQt5 (Qt v5.6) +# +# WARNING! All changes made in this file will be lost! + +from PyQt5 import QtCore + +qt_resource_data = b"\ +\x00\x01\x1d\x8c\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\xec\xbd\x77\x98\ +\x64\x57\x7d\xe7\xfd\x39\xe7\x86\xca\xd5\x39\x4c\xf7\x4c\x4f\xd6\ +\x24\x4d\x90\x46\x1a\xe5\x60\x21\x61\xb0\x02\x08\x0b\x84\xf1\x02\ +\x62\x79\xc1\xe6\x59\x3f\x6b\xd6\x80\x17\xcc\x2e\xd8\x06\xc3\x1a\ +\x16\x6c\xd6\xe6\xb1\x8d\xe1\x65\xd7\xd8\xd8\xbc\x80\xb1\x05\x28\ +\x8c\xe2\x0c\x23\x8d\x34\x4a\x93\x73\x9e\xe9\xe9\x9c\x2b\xdf\x7b\ +\xce\x79\xff\xb8\xb7\xaa\xab\xbb\xab\x67\x84\xd7\x04\x41\x1d\x3d\ +\xad\xba\x75\xef\xe9\x5b\x3d\xb7\xce\xf7\x17\xbe\xbf\x70\xa0\x3e\ +\xea\xa3\x3e\xea\xa3\x3e\xea\xa3\x3e\xea\xa3\x3e\xea\xa3\x3e\xea\ +\xa3\x3e\xea\xe3\x67\x3f\xb2\x53\xa3\x0d\xd9\xcc\x68\x77\xfd\x49\ +\xfc\xe4\x86\xa8\x3f\x82\xfa\xf8\x79\x1a\xb9\xcc\x68\x1b\x70\x0f\ +\x70\x2f\xf0\x06\xc0\x02\x76\x02\xdf\x33\xc6\x7c\x33\x91\x6a\xe9\ +\xad\x3f\xa5\xba\x00\xa8\x8f\x5f\x24\xd0\x67\xc7\x3a\x81\xfb\x42\ +\xe0\xdf\x01\x60\x8c\x09\x96\xa7\x98\x5e\xa4\xc1\x39\x76\x00\xdf\ +\x01\xbe\x95\x48\x36\xf7\xd7\x9f\x5e\x5d\x00\xd4\xc7\x6b\x70\xe4\ +\xb3\xe3\x3d\xc0\xfd\x21\xe8\x6f\xac\xc2\x7b\x35\xd8\xa7\x97\xa9\ +\x08\xce\x55\x2f\x58\x63\xcc\xf7\x40\xfc\x49\x22\xd5\xf4\x52\xfd\ +\x89\xd6\x05\x40\x7d\xfc\xbc\x83\x3e\x37\xbe\x02\xb8\xdf\x18\xee\ +\x05\xb1\xb9\x36\xe0\xe7\x03\x3b\xd5\x93\x67\x2c\x5f\x83\xfe\x1e\ +\xf0\x27\xc9\x64\x73\x5d\x10\xd4\x05\x40\x7d\xcc\x1e\xa3\x03\xc7\ +\x57\x00\x0d\xe1\xdb\x53\xcd\x1d\x2b\x46\x7f\x7a\xa0\x9f\x58\x2f\ +\xe0\x3e\x63\xb8\x0f\xc1\xda\x39\x80\x37\x12\x64\x35\xa8\xc1\x68\ +\x82\x73\xd5\x60\x37\x02\x23\x74\xd5\xa2\x15\xc1\x3d\xc4\x8c\x69\ +\x7f\x05\x7c\x2c\x99\x6a\x9a\xa8\x7f\xeb\x75\x01\xf0\xcb\x0e\xfa\ +\xdb\x80\xbf\x00\xd6\xce\x33\x65\x02\x38\x02\xec\x06\x0e\x02\xc7\ +\x81\x27\x9b\x3b\x56\xe4\xff\x6f\x3f\xbb\x90\x9b\xe8\x34\xc6\x3c\ +\x80\x90\x0f\x08\x58\x55\xd6\xe8\xe5\x25\x67\xa8\xad\xdd\xc5\x2c\ +\xdf\xbf\x6c\x05\xcc\xd5\xfe\x55\xd7\x4d\x59\x60\x98\xb2\x60\xe9\ +\x17\x88\x0f\x26\xd3\xcd\xdf\xaa\xaf\x82\xba\x00\xf8\x65\x04\x7e\ +\x0f\xf0\xe7\x04\x2c\xfa\x8f\x3b\x4a\xc0\x36\xe0\x49\xe0\xc1\xe6\ +\x8e\x15\x07\x5f\xbd\x4f\x3f\x61\x21\xc4\x9d\x08\xde\x2f\xe0\xce\ +\x99\x26\xbd\x98\xa9\xe1\xcb\x80\x9e\x23\x14\xca\x26\xbd\x99\x31\ +\xb1\xfc\x5e\x54\xb4\xbe\xa9\x7d\x4d\x19\x84\x25\x30\x46\x63\x0c\ +\xdf\x13\xf0\x9e\x54\x43\x4b\xdd\x1a\xa8\x0b\x80\x5f\x0a\xe0\xc7\ +\x80\x8f\x02\x1f\x01\x62\xff\x4e\xb7\xed\x07\xbe\x01\x7c\xa5\xb9\ +\x63\xc5\xf1\x9a\xc0\xcf\x4f\xae\x12\xf0\x7e\xe0\x9d\xc6\xd0\x36\ +\x5b\xcb\x8b\x2a\x93\x5e\x88\x69\x0d\x5f\xbe\x3e\x2d\x0c\x60\x62\ +\x62\x92\xa1\xe1\x51\x06\x06\x87\xc8\xe7\xf2\x44\x22\x11\xba\xba\ +\x3b\x59\xd0\xd1\x4e\x34\x1a\xad\x08\x89\xb2\xe9\x5f\xb1\x10\x66\ +\x0b\x88\xf0\xbe\x52\x70\x4a\x63\xde\xd2\xd0\xd0\xba\xbb\xbe\x42\ +\xea\x02\xe0\x17\x19\xfc\xf7\x01\x5f\x00\x7a\x7e\x82\x1f\xf3\x58\ +\xe8\x63\x3f\x18\x4b\xb7\xc7\x04\xbc\xc3\x18\x1e\x00\xae\xab\x84\ +\xeb\x2a\xc0\xac\x36\xe9\x99\x07\xf0\x06\x21\x04\xd9\x5c\x8e\xe1\ +\xe1\x51\x06\x07\x87\x99\x9a\x9a\x62\x69\x5c\xd0\xec\x0a\xda\x62\ +\x30\x56\x82\xf3\x53\x3e\xbd\x9e\xa4\xab\x73\x01\x8b\x16\x75\xe1\ +\x46\xdc\x00\xe8\x18\x40\x22\xd0\x68\xa3\x11\x42\xa2\x95\x42\x08\ +\x31\xed\x46\xa0\xd1\x90\x97\x42\x7e\xb0\xb1\xb1\xf5\x2b\xf5\x95\ +\x52\x17\x00\xbf\x68\xc0\x5f\x0a\xfc\x0d\x61\xec\xfc\x27\x3d\x2c\ +\xcb\x41\x3a\xf1\xbc\xed\x44\x2c\x61\x84\x6b\x84\x41\x54\x93\x70\ +\xa2\x26\xfa\xa9\x18\xff\x26\x98\xe2\x2b\xc5\xc8\xf0\x18\x83\x43\ +\x43\x8c\x8e\x8e\xd1\x1d\x35\x74\xc5\x04\x96\x80\x88\x2d\x71\x30\ +\x64\x7d\x8d\x23\x35\x11\x29\x18\x29\x6a\xfa\x73\x9a\x33\x79\x49\ +\x4f\xcf\x22\x7a\x16\x76\x21\x2d\x09\x48\xb4\xf1\x43\xcd\x2f\x10\ +\x42\x07\xd6\x06\x26\xb4\x0b\x2a\x51\x02\x84\x11\x5f\x6a\x6e\xe9\ +\xf8\x60\x7d\xd5\xd4\x05\xc0\x2f\x02\xf0\x2d\xe0\xf7\x80\x3f\x9a\ +\xcf\xdc\xff\x8b\x2f\xff\x2d\x7f\xff\x8f\xdf\xc1\x18\x43\x73\x53\ +\x03\xf1\x78\x9c\xee\xee\x05\x2c\x5e\xb4\x90\x65\xcb\x97\xb0\xf1\ +\xf2\x75\x74\x77\x2f\x20\x1a\x8d\x5e\x7c\x81\x08\x89\xed\xc4\x90\ +\x4e\x14\x4b\xd8\x18\x69\xa6\x59\xf8\x59\x4e\x7d\x2d\x2d\x5f\xed\ +\xdf\x4f\x65\xa6\x18\x1a\x1a\x61\x78\x78\x94\x14\x45\x5a\x1d\x68\ +\x8d\xca\x69\xc2\x3f\xfc\x7d\x6d\x34\x68\x83\x21\xd0\xe8\x60\xc0\ +\x40\xb6\xe4\x73\x26\xa3\x19\x32\x51\x56\xae\x58\x41\x5b\x5b\x13\ +\xc6\x04\xae\x40\x20\x00\x4c\xf0\x69\xa6\x4a\xe8\x84\x7f\x9f\xc1\ +\x80\x31\xdf\xd4\x86\xf7\xb4\xb7\x77\x95\xea\xab\xa8\x2e\x00\x5e\ +\xab\xe0\xdf\x0c\x7c\x1d\x58\x5f\xeb\xfa\x89\x13\xa7\xf8\xd8\x7f\ +\xff\x34\xfa\x54\x0b\x37\x5c\x76\x1b\x13\xb1\x3e\x06\xc4\x29\x0a\ +\xa2\x40\xa6\x34\x45\x26\x9b\x63\x7c\x68\x94\x33\xc7\x4e\xd1\xd5\ +\xd5\xc9\x75\xd7\x5e\xc5\x0d\xd7\x6e\xe1\xa6\x9b\xae\xa3\xbb\x6b\ +\x41\xe5\x3e\x52\xda\x38\x6e\x1c\xcb\x89\x62\x04\x33\x40\x5f\xcd\ +\xd6\x57\x40\x5f\xa5\xe5\xab\x05\x41\xc9\xf3\x19\x1b\x1b\x67\x70\ +\x70\x88\x89\x89\x49\x7a\x12\xd0\x1d\x95\x38\xd2\x50\xf0\x35\x29\ +\x47\x52\xd2\x50\xf0\x15\x29\x47\x50\xd2\x86\x82\xa7\x49\xbb\x86\ +\xa2\x32\x14\x7d\x4d\xca\x11\x14\x95\xa2\xe8\x43\xca\x31\x9c\x9d\ +\x52\x9c\x98\xf0\x88\xb7\x77\xb1\x6a\xe5\x0a\x6c\xdb\x0a\x1c\x02\ +\x21\x50\x46\x57\x2c\x0d\xad\x03\xb2\x50\x4a\x89\x2e\x87\x0c\xb5\ +\x79\x0c\xc1\x9b\xda\xdb\xbb\xf3\xf5\xd5\x54\x17\x00\xaf\x25\xe0\ +\x27\x81\x4f\x03\xbf\x43\x90\x1f\x3f\x67\x7c\xfb\x9f\x1f\xe4\x93\ +\x7f\xf4\xa7\xac\x5e\xba\x81\x4d\xb7\xac\xa7\x18\x2f\x12\x6f\x49\ +\x93\x68\x48\x93\xcf\xe4\xc0\x68\x74\xc9\x27\x37\x94\x43\x64\x04\ +\xfe\xa8\xcf\xc0\x89\x21\xfa\xfa\x2f\x70\x70\x60\x37\xd7\x5e\x73\ +\x15\xff\xe9\x03\xef\xe7\xd6\x5f\x79\x1d\xd1\x78\xbc\x4a\x89\x8b\ +\x69\xd0\x57\x99\xf9\xa1\x56\x9d\xa1\xe5\x4d\xa8\xad\xa7\xb2\x19\ +\x06\x06\x86\x19\x1e\x1e\x21\x99\x48\x12\x17\x9a\x05\x66\x8a\xa6\ +\x88\x60\xb2\xa4\x89\x5a\x02\x5b\x18\xa6\x3c\x8d\x2b\xc1\x95\x30\ +\x59\xf4\x89\xd8\x82\x88\x34\x4c\x95\x34\xae\x65\x70\x85\x60\xd2\ +\x53\x38\x28\x22\x52\x30\x59\xf4\x89\x5a\x60\x09\xcd\x4b\x03\x1e\ +\x03\x26\xc6\x15\x1b\x37\x90\x6e\x68\x40\x4a\x83\xd6\x1a\x11\xfe\ +\xcd\x5a\xab\xe9\xbf\xcd\x84\xd1\x81\x40\x4a\xed\x14\x42\xbc\x7e\ +\xc1\x82\x9e\x4c\x5d\x00\xd4\xc7\x6b\x01\xfc\xf7\x10\xc4\xf4\x6b\ +\x92\x7c\xc3\xc3\x23\xfc\xe1\xa7\x3f\xc7\x0b\x2f\xef\x63\xf3\xed\ +\x9b\x59\xbc\x61\x25\xd2\x76\x88\x26\x63\x4c\x0d\x8d\x92\xe9\x1b\ +\x23\x96\x4b\x12\x9b\x4a\xd1\x98\xe9\x60\xad\x77\x0d\x11\x3f\x81\ +\xa3\x6d\xba\xa3\x4b\x30\x25\x83\x75\xcb\x28\xe9\x3b\x0d\xa9\x9e\ +\xc8\x5c\x4d\x1f\x82\x7e\x3e\xd3\xbe\x0c\x7a\x5f\x69\x46\x47\xc6\ +\x18\x1c\x1e\x62\x62\x7c\x82\x65\xcb\x97\xd3\xde\xd6\x8e\x1b\x71\ +\xf1\x0d\xf4\x9f\x38\x46\xf3\xd4\x39\x22\xb6\x15\xd2\x03\x1a\x13\ +\x9a\xfa\x98\x80\x44\xd4\x42\x83\xd6\xc8\xd0\xbf\x27\xfc\x1b\x84\ +\x56\x81\x93\x60\x74\xa0\xcd\x8d\x42\x2b\xc5\xe9\x29\xc3\xee\x11\ +\xc3\xc6\x8d\xeb\xe9\x59\xbc\x10\xa3\x75\x08\x74\x31\xed\x4e\x18\ +\x89\x31\x0a\x44\x39\x8a\x00\xc6\xe8\x27\xa5\x94\x6f\xec\xee\x5e\ +\x52\xaa\x0b\x80\xfa\xf8\x79\x05\x7e\x67\x08\xfc\xfb\xe6\x9b\xb3\ +\xfd\x47\x3b\xf9\xaf\x7f\xf0\xc7\x34\x2f\x6e\xe7\xf6\x77\xde\x8d\ +\x65\x5b\x14\x32\x19\x32\x03\x63\x98\x51\x43\xeb\xd8\x22\x96\x66\ +\xae\xa0\xd3\x5b\x46\x93\xea\x20\x66\xa2\x58\x58\x18\x14\x4e\x93\ +\xa1\xe1\x2e\x9f\xf4\xeb\x14\x32\x69\x2e\x0d\xfa\xca\x39\x39\x03\ +\xfc\x85\x7c\x81\xa1\xe1\x21\x06\x87\x46\x48\xa7\xd2\xb4\x77\xb4\ +\xd3\xd4\xd4\x8c\x10\x41\x68\x4e\x9b\x80\x94\xcb\xe4\xf2\x64\x0e\ +\x3c\xc7\xc2\x38\x14\x7c\xf0\x94\x22\xee\x82\xe7\x19\x0a\x4a\x93\ +\x0a\x8f\xf3\xbe\x22\x1d\x31\x14\x8a\x3e\x99\x62\x89\xb8\x23\xc9\ +\x7b\x9a\xbc\xaf\x49\x59\x3e\x46\x1b\x94\x80\xa6\xa8\xa0\x50\xd2\ +\x9c\x1c\x2b\x71\x2e\xa3\x88\x76\xaf\x62\xc3\xfa\xd5\x54\xe2\x8a\ +\x08\x84\x00\xa5\x82\x38\xa4\x6d\x83\x52\x8a\xc0\x4b\x30\x00\x0f\ +\x0a\x21\xde\xd2\xd3\xb3\x5c\xd5\x05\x40\x7d\xfc\xbc\x81\xff\x03\ +\xc0\x67\x99\x4e\xe1\x9d\x31\x8a\xc5\x22\x9f\xff\xe2\x97\xf9\xd2\ +\x5f\xfc\x0d\xf7\xbc\xef\x3e\x36\xdc\x72\x15\x7e\xbe\xc0\xd0\xd1\ +\xf3\xa4\xc6\x9a\x58\x3e\xb5\x85\x96\x6c\x0f\x3d\x6a\x0d\x89\x54\ +\x9c\xf1\xa9\x21\x52\x22\x4d\x34\x1e\xa1\xd4\x31\xca\xc2\x37\x26\ +\x48\xdc\xe4\x61\xaa\xe3\xf3\x3f\x06\xe8\x41\x33\x3e\x91\xa1\xbf\ +\xbf\x9f\xb1\xd1\x71\x16\xf5\x2c\xa2\xbd\xad\x9d\x58\x3c\x5e\xf1\ +\x12\x4c\x08\xfc\xe0\x36\x82\x92\xef\x33\xb5\x6f\x07\x31\x5d\xc4\ +\x15\x02\xd7\x81\xc9\xbc\x22\x62\x1b\xa2\x52\x30\x59\xf2\xb1\x8c\ +\x8f\xf0\x3d\x06\x3d\x0b\x62\x49\x44\xb4\x01\x13\x4b\x62\xd9\x0e\ +\xd2\x92\xe4\x73\x79\x28\x64\x10\x13\x7d\xa8\xa9\x41\x3a\xe2\x82\ +\x98\x2d\x38\x9f\xf1\xd9\xd7\x5f\xa0\xd8\xb8\x88\x1b\xae\xbf\x1e\ +\xcb\x0a\x08\x4c\xa5\x7d\x6c\xcb\x46\x6b\x8d\xaf\x14\x96\x0c\xbc\ +\x27\xa3\x15\xda\x00\x98\x6f\x2c\x5f\xbe\xfa\x5d\x75\x01\x50\x1f\ +\x3f\x2f\xc0\x5f\x0b\x7c\x15\xb8\x6e\xbe\x39\x7b\xf7\x1d\xe4\xa3\ +\x1f\xff\x23\x74\x32\xc2\x4d\xbf\xfe\x3a\x12\xa9\x04\xa3\xa7\x7a\ +\x11\xa7\x1d\x36\x67\xde\xc4\x82\xc2\x65\x38\xbe\x43\x73\xaa\x85\ +\x62\xae\x40\xde\x4c\xd0\x91\xea\x20\xb2\xca\x23\xf5\xa6\x2c\xc9\ +\x55\x76\x0d\x53\x3e\x24\xf2\x6a\x80\x5e\x0a\x19\x98\xd2\x80\xef\ +\x2b\x46\x47\x47\xe8\xef\x1b\xc4\x72\x6c\x3a\x3a\x3a\x68\x6d\x6d\ +\x43\x4a\x39\x03\xec\x5a\xeb\xc0\x74\x0f\xe3\x84\xc6\x18\x72\xd9\ +\x29\x8a\x87\x9f\xa7\x41\xaa\xe0\xb3\x44\xe0\xb3\x5b\x46\xa3\xbd\ +\x12\x03\x79\x45\xde\x4d\x91\x6c\xef\xc6\x69\xe8\x20\x9a\x6e\xc0\ +\xb1\xad\xaa\xba\x01\x81\x52\x0a\x69\x09\x3c\xdf\x67\xf0\xf4\x09\ +\xd4\xa9\xe7\x59\x60\x65\x40\x0a\xb4\xaf\xd8\xd1\xeb\x31\xe4\xb6\ +\xf3\xab\xaf\x7f\x1d\x8e\x6d\xa1\x8d\xc1\x68\x83\x90\x02\x61\x42\ +\x0b\x40\x68\x84\xb0\xd0\x5a\x21\x00\xcb\xb6\xfe\xc7\xf2\x65\x6b\ +\x3e\x56\x17\x00\xf5\xf1\xb3\x04\x7e\x39\x93\xef\xa3\x80\x3b\xdf\ +\xbc\xaf\xfd\xbf\x7f\xcf\xa7\xff\xc7\x17\xb9\xe9\xbe\x3b\xd8\x7c\ +\xdb\x35\x4c\x5e\x18\xa2\x78\x2e\xc7\xca\xc1\x1b\xb8\x3c\x77\x3b\ +\x09\xd5\x08\x42\x21\x30\x38\xc6\xc6\x42\x12\xb9\x36\x43\xeb\x7d\ +\x1e\xa9\x25\xd1\xf9\x41\x5f\xe5\xcb\x07\x7a\x7e\x66\x9a\x6d\xbe\ +\x98\x63\x68\x70\x84\xbe\xfe\x41\x52\xa9\x24\x0b\xbb\x17\xd2\xd0\ +\xd8\x58\xbe\x03\xc6\x80\xd6\x3a\x64\xdc\x03\xdf\xbe\x9c\x94\xa3\ +\x30\x58\xd2\x62\xf0\xd8\x7e\x62\x43\x27\x68\x8a\x5a\x14\x95\x09\ +\x98\x7f\xdb\x90\x29\x7a\x9c\xf0\x12\xc4\xba\x57\xd2\xb6\x60\x11\ +\x31\xd7\x46\xa9\xd0\x67\x0f\xef\x61\x20\x48\xf5\x0d\x85\x0b\x32\ +\x30\xef\xfb\x4e\x9f\xa4\xb8\xe7\x07\xac\x6e\x11\x64\x0a\x3e\x99\ +\x82\xcf\x2b\x03\x45\xce\x89\x05\xdc\x79\xe7\x1b\x71\x23\x16\x02\ +\x89\x31\x06\x69\x85\x82\x49\x87\xf9\x0b\x42\xe2\xfb\x25\x6c\xcb\ +\xc6\x68\xfd\xae\x55\xab\x37\x7c\xa3\x2e\x00\xea\xe3\x67\x01\xfe\ +\x5b\x08\x12\x7a\x56\xcd\x37\xe7\xec\xb9\xf3\xfc\xb7\x4f\x7e\x86\ +\xde\x89\x11\x6e\xba\xef\x0e\x62\x91\x08\x53\xbd\xc3\x34\xf7\x2f\ +\x64\xf5\xc8\xaf\xb0\xa4\x74\x05\x91\xa8\xcb\x58\xb1\x9f\x06\xd3\ +\x4a\xd4\xb1\xc9\x5c\x7f\x88\xa5\xf7\x36\xd0\xbc\x30\x5d\x01\xd1\ +\xec\xf4\xdb\x32\xe8\x67\xbc\x87\x20\xae\x8e\x21\x93\xc9\xd1\x37\ +\x30\xc0\xf0\xf0\x30\x4d\x49\x8f\x86\x96\xc5\x74\x2f\x5c\x5e\xd1\ +\xf6\x65\xed\x0e\xa0\x8c\x41\x68\x0d\x55\x5a\xbf\x7c\x7e\x72\x6c\ +\x14\xff\xf0\x4e\xba\x62\x30\x52\xf0\x89\x3b\x12\x57\x95\x38\x3d\ +\xa5\x30\x1d\x2b\x68\x58\xb2\x8a\x58\x24\x1a\xc6\xf4\x03\xcb\x40\ +\xda\x12\xa1\x05\x4a\x18\x8c\x56\xd3\xd6\x84\x0a\x42\x7b\x45\xaf\ +\x84\x65\xdb\xf4\xee\xfc\x3e\xf1\x81\xdd\x34\x27\x5c\xe2\x8e\xa0\ +\x77\xb2\xc8\x73\xe7\x8a\x9c\x15\x1d\xdc\x77\xdf\x9b\x88\x44\x22\ +\x81\x20\x52\x1a\xdb\x0e\x5c\x00\xad\x14\x96\x25\x03\x8b\x20\xe0\ +\x0a\x4a\xc0\x4d\x6b\xd7\x6c\xda\x55\x17\x00\xf5\xf1\xd3\x02\x7e\ +\x03\x41\xe1\xce\x03\x17\x9b\xf7\xc3\x87\xb6\xf2\xf1\x4f\x7c\x86\ +\x15\x57\xaf\xe5\xa6\xb7\xde\x41\x76\x68\x9c\xe2\xd9\x29\x16\xf6\ +\x5e\xc1\xea\xcc\xad\x74\x45\x97\x90\xcf\xe7\xf0\x74\x8e\xa4\x9b\ +\x24\x7f\xdb\x61\x96\xdf\xdd\x44\x6b\x47\x73\x05\xd9\xb3\x41\x2f\ +\x66\x68\x7c\x33\x03\xfc\x18\x98\x98\xcc\xd0\xd7\xd7\xc7\xc8\xc8\ +\x28\x0b\x3b\x35\x6d\xcd\x9a\x5c\xc1\xa1\xa9\xe3\x5a\x6c\xdb\x99\ +\xf1\xf7\xa9\x10\xe8\x41\x08\x6e\xda\xec\xd7\x5a\x23\x84\x20\x97\ +\xcd\x30\xf2\xca\x76\xda\x4c\x06\xc7\xb1\x31\xc6\xe0\xfb\x25\x86\ +\x95\x8b\x58\x72\x25\x6d\xdd\x3d\x15\xd0\x6b\xad\x11\x96\x44\xfb\ +\x2a\xb0\x26\xb4\xc6\xb2\xac\x00\xec\x96\x55\xb9\xaf\x94\x21\x78\ +\x8d\xe1\xfc\xbe\xe7\x48\x9f\x78\x84\x54\xd4\xc1\x60\x30\x46\x21\ +\x85\xe6\xe1\x63\x79\x4e\xd3\xc5\xdb\x7f\xe3\x3e\x22\xae\x03\x46\ +\x20\xad\xc0\x1a\x28\x79\x1e\x96\x90\x68\x34\x52\xc8\x20\x7a\x80\ +\xe9\x95\xc2\xba\x62\xc3\x86\xcd\x43\x75\x01\x50\x1f\x3f\x69\xf0\ +\xbf\x21\xf4\xf5\xe7\x6d\x7a\x99\xcd\xe6\xf8\xcc\x9f\xfe\x19\x8f\ +\x3e\xba\x83\xab\xee\xba\x9a\x35\x37\x5c\x41\x61\x2c\xc3\xc4\xa1\ +\x01\xd6\x0d\xbe\x81\x0d\xb9\x5f\x45\x60\xb0\xb4\x85\xe7\x66\xd0\ +\x77\x9c\x60\xcd\xdd\x9d\x34\xb6\x34\xd5\xf6\xeb\xcb\x5a\x39\xb4\ +\x06\xa8\x2a\xb3\x35\x26\xc8\x9d\x1f\x1d\x1d\xa7\xb7\xb7\x8f\xb1\ +\xb1\x71\x96\x74\x2b\xba\x3b\x04\xbe\x0f\x45\xcf\xc3\x53\x29\x1a\ +\x3b\xae\x43\x8a\x40\x03\xab\xb2\xa6\x0e\xc1\x28\xa5\x04\xad\xd1\ +\x55\xda\x3f\x00\xbb\x4f\xb6\xff\x0c\xd9\xfe\xb3\xf8\xe3\x83\x74\ +\xca\x3c\x23\x32\x8d\xb3\xf6\x46\x1a\x1a\x9b\xa7\x85\x85\x15\x9a\ +\xfb\x21\x81\x58\x16\x20\xe5\x1f\xad\x75\xe0\x1a\x54\xfe\x1d\xc1\ +\xb9\x33\xbb\xb7\xd3\x73\xee\x21\x44\x24\xca\x68\xd6\x63\x61\xca\ +\x90\xf1\x34\xe3\x59\x8f\x67\xcf\x95\xb8\x10\xbb\x8c\xfb\x7f\xe3\ +\xad\xb8\x96\x8d\xaf\x3c\x94\x52\xb8\x6e\x04\xad\x15\x4a\xa9\x2a\ +\xc1\xa2\x00\xf1\x08\xc6\xdc\x75\xe5\x95\xd7\xaa\xba\x00\xa8\x8f\ +\x9f\x04\xf0\x93\x04\x85\x3b\xef\xbf\xd8\xbc\x3d\x7b\x0e\xf0\xe1\ +\x8f\x7e\x02\x53\x8a\x70\xe3\xbb\x6f\xa2\x7d\xd9\x22\x26\x2e\x0c\ +\x33\x79\x6c\x88\xab\x07\xee\xa7\x2b\x7b\x39\x09\x91\x24\x91\x88\ +\x91\xbb\x71\x1f\x2b\xee\x69\xa0\xa9\xad\x79\x16\x8b\x3f\xcb\xc4\ +\x67\xe6\x39\x5d\x8e\xc5\x1b\xc1\xf0\xf0\x08\xbd\x17\xfa\xb0\x18\ +\xa7\xa9\x01\x5a\x1a\x0d\xae\x6b\xc8\x66\x0c\x6e\x04\x1c\xcb\xa7\ +\x6f\xc8\xa6\x75\xe1\xcd\x44\x22\x91\xc0\x0f\x0f\x81\x6b\x4b\x89\ +\x1f\x82\x55\x6b\x8d\x56\x06\x4f\xc1\x85\x13\x87\x89\xe9\x3c\xe9\ +\x45\x4b\x88\x26\xd2\x28\x05\xd9\xc9\x71\x26\x7a\x4f\xd2\xd8\xbd\ +\x94\x54\x53\x2b\x25\xbf\x54\x15\x31\x20\xbc\xaf\x41\x6b\x83\x65\ +\x3b\x28\x2f\xc8\x05\x28\xe7\x0b\x1b\x63\xb0\x6d\x1b\xcf\xf3\xd0\ +\x7e\x60\x2d\x9c\x78\xf4\xeb\xb4\x8c\xef\x23\x1d\x73\x68\x88\x1a\ +\xce\x8d\xf9\xc4\x1d\x4d\x53\xd4\x70\x76\xdc\xe7\xe1\xa3\x79\xd4\ +\xc2\x2d\xdc\xfb\x96\xbb\x11\x42\x20\xa5\x8d\xd6\x0a\xcf\xf7\x30\ +\x5a\x63\xdb\x76\xe5\x81\x49\x29\x31\xf0\xa1\xcd\x57\x5c\xf3\xc5\ +\xba\x00\xa8\x8f\x9f\x84\xaf\xff\x75\x60\xe9\xc5\xe6\x7d\xed\xeb\ +\xff\xc0\xa7\x3e\xf3\x3f\xb9\x7e\xed\x1d\xac\xfb\xf5\x65\x24\xbb\ +\x3a\x28\x66\xf3\xe4\x4e\x8f\xb0\xf4\xe4\x75\xac\xca\xfc\x0a\xad\ +\x89\x76\xd2\x37\x64\x69\xf9\xf5\x2c\x89\xa6\xd8\x0c\x6d\x5f\x85\ +\xff\x39\x7e\x3d\x68\xca\x88\xf2\x7d\x9f\xc1\xc1\x41\x7a\x7b\xfb\ +\x70\xed\x2c\x0b\xda\x20\x19\xd3\x08\xa1\x43\xf2\x2d\x48\xaa\x41\ +\x12\x02\xc6\x27\x5b\x5a\x48\x73\xdb\x06\xdc\x88\x5d\x61\xfa\x31\ +\xa2\x52\x7b\x57\xc8\x17\xc9\x4c\x9e\x67\x70\xe0\x08\x67\x4e\x8f\ +\x11\x2d\x28\xba\xa2\x86\x86\xb6\x4e\x9c\xee\x15\x24\xda\x16\x22\ +\x6d\x89\xd6\xa6\xa2\xcd\x2d\xcb\xc2\xf7\x34\x42\x30\x4d\xd4\x19\ +\x83\x0e\x49\xbf\x42\xa1\x10\x80\x54\x12\x02\x58\xe2\x79\x1e\x18\ +\xc3\xd8\xf0\x08\xe3\x5b\xbf\xc8\xd2\x54\x89\x92\x6f\x40\xfb\x20\ +\x41\x4a\x85\xd1\x1a\xa5\x15\x52\x6b\xfe\xee\x95\x1c\xed\x57\xbf\ +\x99\xeb\x6f\xd8\x42\xc4\x8d\xa0\x94\x5f\x71\x31\x84\x94\x18\x6d\ +\x90\x52\x94\x1f\x5a\x49\x48\x79\xc5\xd5\x57\x5d\x7f\xb0\x2e\x00\ +\xea\xe3\xdf\x8b\xe1\xff\x34\x41\x01\xcf\xbc\xa3\xbf\x7f\x80\xff\ +\xf6\xc9\xcf\x92\x7f\xa5\x83\xb5\x6b\xd6\x91\xbb\xf2\x18\xad\xab\ +\x17\x23\xa5\x64\xf8\xc4\x39\x3a\x8e\x5d\xc6\x8d\xe3\xef\xa1\xe3\ +\x56\xe8\x7e\xab\x26\xd2\x56\x2e\x82\x09\xe3\xee\x55\x8d\x34\xc2\ +\x34\x98\x19\x7e\xbd\x41\x60\x4c\x60\xf6\xf6\xf5\x0d\xd1\x7b\xe1\ +\x02\xc9\x48\x96\x96\x26\x4d\x7b\xb3\xa0\xe4\x19\x8a\x9e\x26\x1e\ +\xd5\x94\x3c\x28\x94\x14\x0d\x69\x43\x3e\xaf\x28\x96\x0c\x0d\x09\ +\xc5\xd8\xa4\xc7\x44\xbe\x9d\x54\x6a\x21\x4e\x34\x8d\x14\x81\x7f\ +\xee\x15\xa6\x28\x16\x87\x90\xfa\x3c\xb6\x1c\x47\x5a\x25\xa2\xb6\ +\xe4\xe0\x69\x87\xf3\xa7\x2d\xba\xbc\x1c\x8d\xb2\x00\xab\xaf\x63\ +\xf1\xba\x2b\x2b\xa4\x24\xc6\x54\x92\x73\x84\x10\x15\x4d\x1f\xf0\ +\x09\xd3\x5c\x82\x09\xdd\x0e\xad\x35\xda\x08\xb4\xf6\x91\xd2\x66\ +\xff\xc3\x5f\xa7\xb5\xff\x19\x96\xb6\xc5\x99\xca\xfb\x4c\x94\x7c\ +\xba\x53\x30\x51\x50\x4c\xe4\x15\x3d\x4d\x82\xc9\x9c\xe2\xd0\xb0\ +\xc7\x67\x9f\xce\xf3\xe1\x0f\xfd\x2e\x2b\x2f\x5b\x81\xe7\x2b\x1c\ +\x5b\x62\x94\x41\x1b\x8d\xb4\x82\x70\xa3\xf2\x3d\x5c\xd7\x45\x29\ +\xfd\x92\x31\xfa\xfa\x1b\x6f\xb8\xed\x17\x3a\x53\xd0\xaa\xc3\xf3\ +\x27\x0e\xfe\x2d\xc0\xa3\xc0\xdd\x17\x9b\xf7\xd4\xd3\x3b\xf8\x8f\ +\xef\xff\x5d\x56\x8c\xde\xcd\xeb\xd7\xdf\x47\xef\xd2\xed\xb4\x5c\ +\xde\x8d\x36\x90\x19\x1e\x25\x76\xb2\x91\x37\xac\xbc\x9f\xcb\x7f\ +\x2f\x4a\xfb\xeb\x0c\x56\xa2\x4c\xdc\x05\x72\x7c\x46\xb3\x8c\x59\ +\x9a\x3f\x60\xbd\xc1\xf3\x3d\x2e\x5c\xe8\xe7\xf0\x91\x63\x58\xa6\ +\x8f\x8e\xd6\x12\x5d\x6d\x9a\x64\x5c\x33\x95\x53\x08\xe1\xe3\x46\ +\x7c\x32\x59\x85\x2d\x15\xb1\xa8\x62\x7c\xc2\xc3\x98\x12\xb1\x98\ +\x62\x62\xd2\x27\x16\x85\xc6\xf8\x28\x63\xa3\xa7\x28\xe5\x4f\xe2\ +\xe5\x8f\x30\x39\x76\x0c\x5b\x1c\x25\x19\x39\x8b\x52\x19\xe2\x11\ +\x45\x2c\xa2\x98\xcc\x96\xe8\x5e\x50\xa0\x6b\x41\x86\x13\x53\x82\ +\xe3\x63\x0e\xeb\xae\xbc\x01\xdb\x75\x51\xbe\x8f\x25\xed\x4a\x63\ +\x0f\x19\xd6\xf3\x9b\x4a\xe6\x9e\x40\xe9\x20\xed\xd7\x08\x30\xda\ +\x50\x2a\x79\x58\xc2\xc6\xf3\x4b\x08\x21\x38\xf4\xd2\x0e\x1a\x8e\ +\xff\x80\xe5\x2d\x16\xa7\x86\x0b\xc4\x1c\x45\xda\x51\xf4\x4d\x7a\ +\x38\x42\xd1\x1a\xd7\x9c\x1a\x2e\x12\xb1\x15\x2b\x5a\x40\xf8\x05\ +\xbe\xf1\xe8\x5e\x36\x6f\xbe\x02\xc7\xb6\x51\xa1\xa9\x54\x4e\x58\ +\xf2\x95\x0e\xac\x00\x6d\x50\xc6\x74\x39\xb6\x6d\xbe\xfa\xd5\xaf\ +\x3f\x5d\xb7\x00\xea\xe3\xdf\x02\x7c\x17\xf8\x04\x41\x5c\x7f\x5e\ +\x41\xeb\x79\x3e\x9f\xfb\xc2\x5f\xf0\x67\x5f\xfa\x2b\x3e\xbc\xf9\ +\xff\xb0\xb1\xf3\x06\x0e\xb7\x7d\x8f\xa9\x55\xbd\x24\xda\x5b\xb1\ +\xa4\xa4\x69\x3c\xc2\x5b\x7f\xe5\x37\x68\x5e\x1e\x9b\xc1\xdc\x55\ +\xda\x5e\x98\xb9\x2c\x3e\x22\xcc\x7f\x07\x4a\xa5\x12\x17\x2e\x0c\ +\x72\xbe\xb7\x97\xa6\x64\x9e\xce\x36\x43\x2c\x12\x92\x81\x26\x30\ +\xf9\x95\x0e\xe6\x6a\x14\xc2\x04\x4c\xba\x11\x01\x51\x60\x8c\xc2\ +\x18\x3f\xbc\xb1\xc6\x57\x1e\x02\x83\x14\x06\x85\x1f\xe4\xe9\x5b\ +\x06\x65\x34\x82\xc0\xc2\x90\x80\x16\x3e\xca\xf7\xb0\x6d\x8d\xd6\ +\x25\x4e\xf7\xad\x62\xe5\x9a\xb7\x61\x59\xe0\xfb\x3e\x12\x89\x32\ +\x0a\xa5\x02\xa6\xbf\xcc\xea\x0b\x23\x42\xb7\x43\xe3\xab\x90\x08\ +\x44\x63\x8c\x44\x5a\x81\x30\x3b\x77\xfc\x10\x99\xa7\xff\x92\xd5\ +\xe9\x02\x4a\x08\xb4\xd1\x14\x3d\x1f\x4b\x18\x5c\xdb\x50\xf2\x34\ +\xa0\xb1\xac\x40\x88\x08\x34\x9e\xd6\x3c\xb8\xb7\xc0\x2b\xc5\xa5\ +\xfc\xde\x87\xff\x0b\x8e\x6b\x83\x81\x88\x6d\xe3\xf9\x3e\x86\x80\ +\x5f\x30\x08\xb4\x51\x08\xad\x15\xc8\x6b\x6e\xbd\xe5\xf6\x97\xea\ +\x02\xa0\x3e\x7e\x1c\xf0\xaf\x07\xfe\x81\x79\x4a\x76\xcb\xe3\xf0\ +\x91\xe3\x7c\xe4\xa3\x9f\x24\xd5\xbf\x81\xfb\x57\x7d\x84\x56\xab\ +\x8b\x93\xf1\xa7\x39\xba\xf4\x21\x9a\xd7\xf6\xd0\xd5\xda\xc1\x0d\ +\x4b\x37\xb1\x7c\xf1\x32\x84\x06\x23\x67\xc7\xec\x03\xb3\x39\x28\ +\xa8\x09\xbd\x70\xad\x2b\xfe\x7f\xa9\xe4\x73\xfe\xfc\x05\x7a\xcf\ +\xf7\xd2\xdc\x50\xa0\xb5\xd9\xd0\xda\x00\xc5\x92\x4f\xb1\x64\x48\ +\x25\x0c\xf9\x82\x4f\xc9\x83\x64\xd2\x50\x28\x04\xe7\x93\x71\x9f\ +\x92\x27\xc8\x17\x15\xe9\xa4\xa2\x50\xd4\x14\x8a\x9a\x74\x42\x91\ +\xcb\x2b\xf2\x25\x9f\x96\x46\x41\x2e\xe7\x93\x2b\x28\x1a\x1a\x14\ +\x5a\x2b\x26\xa6\x34\xad\x4d\x86\x42\xd1\x23\x9b\xd7\x34\xa5\x34\ +\x99\xbc\x22\x9b\xf5\x49\x26\xf2\x0c\x4c\xbe\x9e\x9e\xa5\xb7\x95\ +\x7b\xf6\x85\xac\x3b\x18\x05\x46\x18\xb4\xa1\x12\xef\x97\xd2\xa6\ +\xe4\x95\x90\x52\x06\xc4\x9c\xaf\x02\xa2\x51\x0a\xce\x1c\xd9\xc3\ +\xd0\xe3\x7f\xc5\x8d\x6d\x59\xc6\x7c\x9b\xb1\xbc\xc7\xca\x56\x8b\ +\xbe\x09\x8f\xbc\x67\x58\xde\x2a\xb9\x30\xee\x91\x2d\x29\x3a\xd3\ +\x82\x6c\x49\x33\x96\xf3\x59\xd1\x6a\x93\x2d\xf9\x7c\xe1\xa9\x0c\ +\xcd\x57\xde\xc3\xbd\x6f\xbe\x07\x6d\x82\xb2\x61\x21\xc0\x92\x22\ +\x28\x7d\xd6\x41\x13\x91\x58\x2c\x06\x86\x83\xbe\x52\x57\xdc\x7a\ +\xf3\xed\xa5\xba\x00\xa8\x8f\x57\x03\xfe\x8f\x84\xfe\xbe\x7b\xb1\ +\x79\xff\xf4\xad\x7f\xe6\x13\x7f\xfc\xa7\xbc\x69\xc1\x47\xb8\x77\ +\xe9\x87\x98\xa4\x17\x0b\xc9\xcb\x5d\x5f\xa5\xf9\xba\x06\xde\x70\ +\xe3\xed\xac\xec\x5c\x52\x95\xa9\x17\xf0\x77\x65\x21\x50\xdd\x6b\ +\xc7\x18\x19\x5e\x34\x81\xb6\x13\x82\xb3\xe7\x7a\x39\x7e\xe2\x24\ +\x0b\x9a\x8b\x34\x37\x41\x2a\xae\xb1\x6d\xc8\x64\x34\x8e\xa3\x70\ +\x1d\xc3\xd4\x94\x8f\xe3\x18\x5c\x57\x31\x3e\xa1\x88\x46\xc1\xb1\ +\x15\x63\x93\x8a\x58\xc4\x10\x8d\x6a\xc6\xc7\x7d\x5c\xd7\x10\x4f\ +\x6a\x46\x86\x7c\x62\x31\x83\xe3\x28\xc6\xc6\x15\xf1\x98\x21\x1a\ +\x57\x0c\x8f\x28\x4e\x9e\xb1\x98\x1a\xb7\xc9\x96\x4a\xc4\x1b\x34\ +\x6d\x8d\x1e\xc2\x14\x58\xd0\xe1\x91\x4a\xf9\xf4\xf6\x66\x28\xea\ +\x37\xd2\xb3\xfc\x75\x68\xa3\xb1\x90\x20\x45\xc0\x4b\x68\x85\x0a\ +\x33\x07\x31\x41\x54\xc2\xa0\x00\x19\x24\xef\x38\x0e\x46\x2b\x72\ +\xf9\x22\x07\x7e\xf4\x43\x62\x47\x1f\x64\x53\xab\x4f\x5f\x0e\x62\ +\xb6\x21\x1d\x85\x0b\x13\x1e\x0d\x51\x88\xbb\x86\x33\x23\x25\x9a\ +\x53\x16\x4d\x11\x38\x3e\x54\x22\x16\x31\x74\xa6\x2c\xce\x8d\x79\ +\xa4\xa2\xa0\x85\xe1\xad\x5f\xcf\xf0\xf1\xff\xf6\x07\xac\x5a\xb3\ +\x12\xad\x82\x50\xa6\x10\x02\x09\x48\x4b\x52\xf4\x7c\xa2\xae\x1d\ +\x58\x69\x5a\xfc\x69\x91\xc4\xb7\x2d\x29\x7b\x84\x10\x6d\x52\xd0\ +\x6d\x59\x56\xa7\x84\x6e\xc7\xb1\x3a\x83\xa6\x29\x42\x59\x58\xbb\ +\xa5\x90\xa7\x30\xec\xba\xfa\x8a\x75\x4f\xd6\x05\xc0\x2f\x17\xf0\ +\xdb\x80\xbf\x23\xd8\xcf\x6e\xde\x31\x32\x3a\xc6\x1f\x7d\xea\x73\ +\x9c\xfc\x91\xcf\xbd\x4b\x3f\xc4\x92\xa6\xd5\x14\xcd\x04\x9d\x62\ +\x19\x67\x7a\x1e\x61\xe5\x7f\x88\xb0\x79\xdd\x95\x33\xe3\xf4\x21\ +\x81\x27\x85\xc1\xa8\xc0\x27\x0e\x92\x7b\x0c\x46\x88\xa0\xba\x6d\ +\xc6\x4e\x3a\x30\x36\x3a\xc6\xf1\x13\x27\xd1\xfe\x20\x8b\x3a\x0d\ +\xe9\x78\x40\xa4\x09\x14\x52\x80\xd2\x2a\x2c\x9b\x35\x60\x7c\x34\ +\x1a\xa3\xc2\x92\x5b\xa9\x30\x4a\x03\x0a\x21\x34\xbe\xe7\x23\x25\ +\x18\xe3\xe3\x2b\x1f\xcb\x32\x18\xe1\x07\x29\xbf\xbe\xa2\xa4\x14\ +\x0f\x3d\x9e\x46\x8c\x29\x56\xc4\x8a\x28\xa1\x18\x2e\x18\x26\x8d\ +\x24\x27\x15\x91\x44\x09\x28\x10\x4d\x2f\xe3\xce\x3b\xdf\x83\xef\ +\xfb\xd8\x96\x44\x19\xb0\xa4\xa4\x54\x2c\x61\x3b\x36\xbe\xef\xa3\ +\xb5\x41\x6b\x85\x94\x56\x70\x7f\x63\x70\xdd\x08\x67\x8f\xed\xa7\ +\x6f\xc7\xb7\xe8\x98\xdc\x47\x4f\x53\x84\x92\x01\x5f\x19\x6c\x4b\ +\x53\xf0\x35\x11\x2b\x88\x42\x14\x3d\x45\x34\x12\x64\x0b\xfa\x4a\ +\xe3\x1b\x8d\x14\x86\x68\x44\x50\xf4\x82\x34\xe0\x78\x04\x1e\x3e\ +\x94\xe7\xdb\xc7\x5a\xf9\xc3\x3f\xfe\x04\xb1\x78\x1c\xcb\x76\xd0\ +\x58\x58\x96\x8d\xb4\x6d\x2c\xe1\xe0\xba\x2e\xb1\x68\x84\x48\xc4\ +\x21\xe6\x44\xb0\xa4\xc0\xb2\x2c\xa4\xb4\x90\xb6\xc0\x91\x12\x69\ +\x5b\x48\x11\x5a\x29\x65\x1e\x26\x70\x49\x86\x8c\x6f\xbe\xa4\xd1\ +\x7f\xd9\xde\xd2\x3c\x51\x17\x00\xbf\xd8\xe0\xbf\x23\x04\x7f\xe7\ +\xc5\xe6\x3d\xf7\xfc\x4b\x7c\xe4\xa3\x9f\xe0\x32\xff\x4e\xde\xbe\ +\xe6\x63\x08\x04\xb6\x81\x78\x93\xcd\xe2\xb7\x14\x59\x78\x9b\x8b\ +\x14\x40\xc5\xac\x9f\xe9\xcf\x07\x1a\x92\xd0\x6c\xd5\x41\x0b\x2c\ +\x21\xf0\xbc\x12\xbd\xbd\xfd\xf8\x4a\xb1\x78\xf1\xc2\xb0\x41\x66\ +\xd0\x1e\xeb\x7c\x6f\x1f\x07\x0e\x1e\xa2\xb3\x65\x8a\x45\x9d\xd0\ +\x98\x0a\xcc\xfe\x6c\x5e\xd3\x90\x52\xe4\x8b\x50\x2c\xfa\x34\xa4\ +\x0c\xf9\xa2\x4f\x2e\xe7\xd3\xd8\xa8\x29\xe4\x35\x85\x92\xa1\x21\ +\x1d\x98\xf0\xd9\xac\xa6\xb5\xd5\x90\xc9\x79\xe4\xb2\x9a\xe6\x66\ +\x45\x21\xaf\x99\xca\xfa\x34\x35\x2a\x32\x39\xc3\x8b\x7b\x5d\x06\ +\x4f\x3b\xf4\xe8\x22\xcb\xe3\x39\x16\x27\x2d\x46\x8a\x86\x53\xe3\ +\x1e\xca\x58\x9c\xcb\x14\x59\x74\xf3\x9b\x59\x73\xd5\xf5\x68\xa5\ +\xb1\x6c\x2b\xe8\xda\x23\x40\xab\xc0\x7d\xf1\x7c\x0f\x81\x40\x4a\ +\x11\xf4\x17\x18\xbc\xc0\xe0\xee\x27\xf0\x8f\x3c\x41\x87\x9d\x65\ +\x69\x47\x8c\xc9\xa2\x62\x38\xab\x58\xde\x22\x19\xc9\x29\x46\xb3\ +\x8a\x45\x8d\x82\xc9\x92\x62\x3c\xa7\x59\xd2\x2a\x19\x99\x52\x4c\ +\x15\x15\x4b\x5a\x24\x53\x25\xc3\x50\x56\xd0\xb5\x78\x29\x53\x6e\ +\x0f\xa5\xd4\x22\x62\x0d\x6d\x8c\xd2\x4a\xd7\x92\xb5\x44\x23\x2e\ +\x51\xc7\x21\x1e\x8b\x61\xbb\x16\x96\xb0\x70\x6c\x1b\xcb\xb2\xb0\ +\x6d\x89\x1d\x94\x16\x06\x04\x21\xd3\xaf\x41\x82\xd2\x5c\x10\x55\ +\xea\x17\x8c\x41\x43\xbf\x14\xe2\x5d\x8e\x6d\x3f\x56\x17\x00\xbf\ +\x98\x44\xdf\x1f\x85\x44\xdf\x45\xc7\xff\xfa\xcb\xaf\xf0\xd9\xcf\ +\x7d\x89\x77\xad\xfb\x0c\xb7\x2f\x7a\x27\x49\x1a\xc9\x24\xce\xb3\ +\xfe\x4d\x4d\x2c\xbc\xdd\x20\x6d\x31\x4d\x15\xce\x48\xcf\x25\x24\ +\xea\xc2\x22\x98\xb0\x01\x66\x90\xc0\x63\x38\x77\xee\x02\xa7\x4e\ +\x9d\xa6\xa5\xb5\x15\xa5\x34\x13\xe3\x63\xac\x5f\xbf\x86\x44\x32\ +\x09\x48\x8c\xf6\xc9\xe5\xf3\xbc\xf2\xca\x5e\x6c\x73\x9e\x85\x9d\ +\x9a\x96\x06\x83\xeb\x68\x86\xc7\x4a\xc4\x62\xe0\xba\x3e\x23\xa3\ +\x9a\x58\x54\x13\x75\x3d\xc6\x26\x20\x16\x53\x44\xa3\x9a\x81\x41\ +\x8f\x64\x12\x22\xae\xc7\xe0\xb0\x22\x9d\x82\x48\xc4\x67\x60\xc0\ +\x23\x99\x02\xd7\xf1\x18\x1b\x87\x64\x52\x91\x4e\xfb\xbc\x7c\xc0\ +\x70\xe8\x58\x82\xb1\x33\x16\xeb\xec\x1c\x57\xb6\x94\x48\xc7\x25\ +\xc3\x19\x9f\xb4\xed\xd3\x9b\x83\xb3\x0b\x6e\xa0\x67\xf3\xad\xa4\ +\x1b\x9b\x51\xbe\x4f\xc4\x89\x04\x19\x7a\xda\xe0\xfb\x1a\xa3\x3d\ +\xe2\x89\x24\x03\x67\x4f\xd0\xff\xe0\xa7\x89\x15\x06\xe9\x6e\x8c\ +\x92\x8e\x49\x7a\x33\x8a\xb8\x65\x68\x88\x0b\xce\x8c\x95\x68\x89\ +\x4a\x12\x51\xc3\xd1\x61\x9f\xc6\x08\xa4\xa2\xd0\x57\x4c\xd0\xb8\ +\x60\x19\xb1\x8e\xa5\x4c\xc6\x96\x92\x68\x5f\x46\xac\x75\x19\xb1\ +\xa8\x43\x3c\x12\xc3\x71\x02\x70\x3b\xae\x8d\x6b\xdb\xd8\x96\x8d\ +\x94\x41\x9a\xb0\x10\x12\x21\x03\x57\xa0\x9c\x81\x58\x6b\x98\x39\ +\x27\xcc\xa5\xe6\xfc\x96\x63\xdb\x5f\xa9\x0b\x80\x5f\x1c\xf0\x2f\ +\x05\xfe\x09\xd8\x72\xb1\x79\xe7\x7b\x2f\xf0\xd1\x8f\x7f\x8a\xe2\ +\xa1\x6e\x5e\xbf\xf2\xdd\xac\x89\x5f\x8f\x17\x99\xa4\xe7\xd7\x3c\ +\x2e\xfb\xb5\x38\x56\x4c\x4f\xfb\xf4\x9a\x8a\x79\x5f\x4d\xf4\x55\ +\x16\x94\xd6\x95\xe3\x0b\x17\xfa\x38\x7a\xec\x14\xa9\x54\x8a\x65\ +\xcb\x97\xd3\xdc\xdc\x8c\x31\x86\x23\x47\x8e\xb1\x67\xcf\x2b\xac\ +\x5b\xb7\x9a\xe5\xcb\x96\x85\x91\x80\x80\x60\xdb\xbf\xef\x20\x2f\ +\xbd\xbc\x9b\xeb\xae\xf4\x58\xd0\x6a\x40\x28\x30\x3a\x74\x07\x02\ +\x33\x5f\xeb\x80\xd0\x43\xf8\x95\x72\x59\x21\x35\xbe\xef\xa1\x95\ +\x0f\x96\x46\x18\x8d\x90\x9a\x5c\xb1\x84\x6b\x83\x25\x35\x06\x85\ +\xa7\x7c\x22\x96\x42\x4b\xcd\xf1\x33\x36\xcf\xbd\x18\x47\x5d\xd0\ +\xdc\xda\x5c\x60\x79\xda\x47\x58\x02\x5d\xf2\x18\xc9\x17\x38\x53\ +\x8c\xa3\x5b\x97\x93\x68\xee\xa4\x24\x1c\x7c\x20\x56\x9a\x60\xb2\ +\xf7\x28\xa6\x79\x39\x1b\xef\x7a\x0f\x27\x0f\xee\x22\xba\xfd\xf3\ +\x34\x46\x03\x20\x5a\x96\xc1\xf3\x35\xc2\x0a\x1e\x96\xc4\xe0\x25\ +\xba\xf0\x1b\x7b\x70\x9a\x97\x62\xb5\x2c\x23\xde\xb9\x92\x78\x43\ +\x3b\xf1\x48\x14\xc7\x71\x70\x22\x16\x8e\xed\xe0\xda\x36\x8e\x63\ +\x23\xa5\x15\x00\x5b\x8a\xc0\x74\x17\x5c\x1a\xe4\x66\x2e\x9c\x4d\ +\xcd\xc9\x66\xfe\xeb\xc1\xc9\xb7\xbb\xae\xf3\xad\xba\x00\x78\xed\ +\x83\xff\x7e\x82\x3c\xfe\xe4\xc5\xe6\x3d\xf1\xe4\x76\x7e\xff\x63\ +\x9f\x64\x4b\xfc\xdd\xdc\xb3\xf2\x3f\xe3\xd8\x82\x25\xb7\x0b\x56\ +\xbc\x49\x60\x27\x0d\x52\x5a\xa1\xa9\x1f\x76\xda\x35\x54\xba\xe7\ +\x94\x1b\xec\xeb\x50\xbb\x94\x9b\x70\x0e\x0c\x0e\x71\xf4\xe8\x71\ +\x2c\xcb\x66\xc5\xca\x95\x74\x2c\x08\x1a\x79\x06\xdb\xeb\x09\x94\ +\x51\x8c\x0e\x0f\x73\xe0\xc0\x01\x30\x8a\x2b\xaf\xd8\x88\x65\x5b\ +\xf8\xbe\x0f\x42\x70\xe6\xf4\x59\x9e\x78\x72\x1b\x1b\x2e\xcb\xb3\ +\xe9\x72\x45\xa1\x08\xd9\xac\x4f\x7b\xab\x61\x62\xd2\x23\x57\xd0\ +\x74\xb4\x19\xc6\x27\x3c\x72\x05\x68\x6b\x56\x4c\x64\x7c\xb2\x59\ +\x9f\xce\x76\xc3\x64\x46\x33\x3e\x5e\xa4\xbb\x5b\x90\xc9\x28\x32\ +\x19\x45\x47\xbb\x66\x62\x4a\x91\xc9\x69\xba\x3b\x15\xe3\x93\x3e\ +\xf9\x82\xa2\xa5\xc5\xb0\x6b\x77\x84\x27\x9f\x8a\xb0\x42\x69\xae\ +\x6f\x2b\xd0\x16\x37\xa4\x63\x30\x95\x29\x31\x30\x55\xa0\x25\xa6\ +\xc9\x14\x3d\xa6\x0a\x8a\xce\x94\x45\xc1\xf3\x78\x59\xae\x66\xcb\ +\x7f\xfc\x0c\x87\x9e\xfc\x2e\xf1\xbd\xff\x87\xb5\x0b\xe3\x4c\xa9\ +\x08\x23\x6e\x17\xed\x5d\x8b\x29\xa5\x17\x43\xeb\x0a\x52\x0b\x56\ +\x91\x48\x26\x88\x47\xa3\x38\x8e\x4d\xc4\xb6\xb1\x2b\x3f\xa1\xaf\ +\x1e\x66\x0e\x8a\x1a\x40\x37\x17\x01\xf0\xdc\xeb\xe6\x62\xc0\xae\ +\x3a\x34\x17\x33\x03\x32\x06\x73\x4d\x34\x12\x39\x58\x17\x00\xaf\ +\x4d\xe0\x27\x09\x5a\x74\x3d\x70\xb1\x79\x4a\x29\x3e\xff\xc5\x2f\ +\xf3\x85\x3f\xfb\x32\x1f\xbe\xea\x9f\xb8\xac\x7b\x13\x6b\x6e\x6e\ +\x64\xd5\xbd\x36\x6e\x63\x40\xbc\x05\x7e\x62\xd8\xb3\x5e\xc8\x0a\ +\xf8\xcb\x64\x5e\xd0\xb0\xc2\xa3\xdc\xd6\x6a\x64\x64\x9c\xc3\x87\ +\x8e\x70\xfa\xec\x59\x6e\xbe\xf9\x16\x16\x2f\x5e\x3c\xb3\xe8\x46\ +\x19\x90\xc1\x2e\x3c\xda\x04\x99\x75\x3f\xda\xb1\x9d\xa1\x81\x7e\ +\x6e\xbc\xf9\x3a\x92\xb1\x24\x42\x4a\xb4\xf2\xe8\x1b\x1c\xe4\xa1\ +\x1f\x3c\xca\xaa\x25\x53\x5c\xbe\xaa\x48\x73\x93\xa0\x7f\x48\x13\ +\x71\x7d\xe2\x31\x9f\xc1\x61\x4d\x2c\xaa\x48\x26\x34\xfd\xc3\x8a\ +\x78\x5c\x91\x8a\x69\xce\xf5\x7a\x34\x34\x68\x92\x29\x38\x73\xae\ +\x44\x4b\x13\x44\xa3\x8a\x81\x61\x48\xc6\x7d\xe2\x09\x45\xdf\x05\ +\x45\xba\xc1\x90\x48\x28\xce\xf5\x2a\xda\x5b\x7c\x8a\x4a\xf0\x2f\ +\x0f\xc7\x38\x76\x30\xc6\xd5\x6e\x89\x8d\x4d\x39\x7a\x9a\x2d\x2c\ +\xa1\x39\x3b\xe6\x93\x8a\x42\x6b\x5c\x70\x6a\xcc\x23\x29\x8b\x1c\ +\x6d\xb8\x86\x96\xd7\xfd\x0e\x85\xc3\x8f\xd3\xd9\xde\x04\xcd\x2b\ +\x48\xb6\x2f\x26\x11\x89\x10\x8d\xb9\x38\x96\x83\x1b\x09\xb4\xba\ +\xeb\xba\x48\x2b\x20\xe1\xac\xd0\x64\x97\x52\xce\x6c\x46\xf2\x6a\ +\xb4\xf4\xcc\x49\x35\x4d\x7c\x33\x0f\xf0\xe7\x15\x0d\xb5\x7e\x07\ +\x76\xc4\xa2\xd1\x9b\xea\x02\xe0\xb5\x07\xfe\x4d\xa1\xc9\xbf\xea\ +\x62\xf3\x4e\x9d\x3a\xc3\x47\x3e\xf6\x87\x38\xa7\x2f\xe7\x9e\x35\ +\xff\x89\x35\xb7\xa7\x58\x77\x77\x92\x68\xbb\x66\x06\xb5\x5f\x15\ +\xca\x2b\x0b\x83\x72\x81\x4d\x79\xf1\x6a\x63\xc8\x66\x32\xec\x3f\ +\x70\x98\xe3\x27\x4e\x71\xed\xf5\xd7\xb3\x72\xe5\x4a\xc2\xa0\x5f\ +\xd8\xdc\x82\x60\xaf\x3c\x40\xab\x60\xdf\x3c\x29\xc2\xa4\x1a\x61\ +\x78\xee\x99\x9d\xec\xdb\xb7\x87\x3b\x7f\xed\x0e\xd2\x0d\x0d\x95\ +\xcf\x18\x1d\x1d\xe5\xdb\xdf\xfe\x1e\xeb\x56\x8c\x71\xd5\x46\x8d\ +\xef\xfb\x78\x4a\x23\x51\xa1\xa9\xed\x01\x0a\x83\x41\x2b\x2f\x10\ +\x54\xd2\x60\x49\x4d\xb1\xe4\xa3\x94\x1f\xac\x1e\xa1\x88\xba\x50\ +\xf4\x3d\xa4\x31\x68\x34\x96\xad\x83\xd0\x9e\xd1\x28\x5f\x21\x65\ +\xc0\x29\x9c\xef\xb3\xf8\x97\x47\x12\x8c\x1e\xb7\xb9\xbb\xbb\xc0\ +\xa6\x36\x1f\x4f\x81\x17\x6d\xc0\x6b\x59\x86\xd3\xb9\x0a\xd5\xbe\ +\x86\xd4\x82\xcb\x88\xc7\x63\x24\xe2\x51\x5c\x19\x80\x3c\x12\xb1\ +\x71\x1d\x27\x60\xdd\x91\x48\x49\x68\xce\x33\x17\xe8\x35\x7c\xf2\ +\xd9\x42\x60\x7e\x30\x9b\x9a\xbe\xfd\x6c\x61\x31\xaf\xb1\x6f\xe6\ +\x0a\x84\x1a\xc6\xc5\x6f\x26\xe2\xb1\x6f\xd6\x05\xc0\x6b\x07\xfc\ +\x1f\x20\xa8\xdb\xbf\x68\x6c\xff\x87\x0f\x6d\xe5\xa3\x1f\xff\x14\ +\xb7\xb4\xfe\x36\xbf\xf5\xce\x0f\xb0\xea\xcd\x82\x78\x7b\xa8\xa5\ +\xb5\x0c\x32\xeb\xca\x60\xd5\x66\xc6\x97\x50\x06\xbd\x52\x41\xb2\ +\x4b\x2e\x9b\xe3\xe0\xa1\x23\x1c\x3d\x7a\x9c\x8d\x9b\xae\x60\xdd\ +\xfa\xf5\x33\xca\x6e\xcb\xc5\x32\x86\xa0\xfa\xce\x76\x2c\x7c\x2f\ +\x00\x9d\x6d\x5b\xf8\x25\x1f\x61\x49\xfc\x92\xcf\xae\x5d\xcf\xf3\ +\xfc\xce\x1d\xdc\x7d\xcf\xaf\xd1\xde\xd6\x16\x80\x5a\x2b\xc6\x26\ +\x26\xf9\xc7\x7f\xf8\x36\x4b\xbb\xfb\x78\xc3\x6d\x90\xcd\x6a\x26\ +\x33\x3e\x0b\xda\x15\x53\x59\x45\x2e\x6f\xe8\x68\x57\x4c\x4e\x69\ +\x46\xc6\x15\x4b\x7a\x34\x43\x83\x8a\x92\xa7\xe9\xee\x82\xb1\x71\ +\x9f\x91\x71\xc5\xd2\x1e\x18\x19\x53\x4c\x65\x14\x0b\xbb\x15\x13\ +\x93\x9a\xf1\x71\x4d\x67\xa7\x26\x97\x87\x89\x49\x4d\x47\xa7\x46\ +\x1a\xcd\xc0\xb0\x66\x2c\xb7\x8c\xbd\xfb\x37\x70\x59\xd7\x4a\xd6\ +\xac\x59\x45\xac\x75\x21\xc9\x44\x8c\x78\x2c\x82\x6b\xbb\xb8\x11\ +\x87\x88\xe3\x20\xa5\x8d\x6d\x4b\xa4\x14\x58\x61\x9c\x3e\x34\x8f\ +\x2e\xee\x7b\x9b\x79\xf4\xf2\x45\xc0\x6f\xaa\x0e\x6a\xd1\x79\xa6\ +\xb6\xb9\x30\xe3\xe3\x75\xf8\x3f\x21\xcc\x45\xfd\x04\x03\x07\x53\ +\x89\xc4\xba\xba\x00\xf8\xf9\x07\x7e\x2c\x34\xf9\xdf\x7b\xb1\x79\ +\xc5\x52\x89\xcf\xfe\xe9\x9f\xb3\xfd\xbb\x27\xf9\xf0\xfb\xfe\x3b\ +\xb7\xbd\x63\x2d\xf1\x8e\xc0\x9c\x0f\xe2\xe7\x33\x36\xc2\xc5\x68\ +\x3d\xed\x02\x94\xcb\x77\xc3\x45\x56\x2c\x95\x38\x72\xf4\x38\xfb\ +\xf7\x1d\x64\xcd\xda\xb5\x6c\xd8\xb0\x01\x27\x12\x09\x84\x83\xaf\ +\xc3\x9d\x71\x03\x5f\x1f\x1d\xc4\xbe\x85\x16\x28\x54\xd0\x4a\x1b\ +\x8d\xd6\x06\x49\xb8\x49\x46\x08\x98\x1d\xdb\x9e\x62\xfb\xb6\xed\ +\xbc\xe9\x4d\x77\xd1\xbd\xa8\x2b\x68\xc1\xad\x35\x23\x63\x63\xfc\ +\xef\xaf\xff\x3d\xeb\x57\x0e\x72\xfd\xd5\x9a\x86\x94\xe6\x7c\xbf\ +\x26\x9d\xd6\xc4\xe3\x9a\x81\x01\x85\x1b\x51\x24\x13\x3e\xfd\x43\ +\x86\x44\x5c\xd3\xde\x0a\x27\x4f\xfb\x24\x12\x86\x54\x5a\xd3\x7b\ +\x41\x93\x48\x68\x1a\xd2\x8a\xd3\xe7\x34\xc9\x84\xa2\xa5\x51\x70\ +\xfa\xbc\x22\x95\xd4\x34\xb5\xaf\xa6\x6f\x68\x25\xb1\xc4\x1a\xe2\ +\x89\xcb\x89\x45\xdb\x49\xc5\x62\xc4\xe2\x2e\xae\xe3\xe2\x38\x0e\ +\x51\xd7\x45\x4a\x1b\xcb\x12\xd8\xa1\x49\x2f\x84\x98\x6d\x99\xcf\ +\x05\xb6\xa9\xe1\x7d\xd7\x32\xcd\x6b\x68\xe6\xf9\x34\x79\x55\xde\ +\x55\xb0\xdf\x21\x35\x3e\x7b\x16\xc6\x67\xcf\xd5\x95\xaf\xdb\xd4\ +\x34\x14\x34\xdc\xd5\x98\x4a\xfe\xb0\x2e\x00\x7e\x7e\xc1\xdf\x03\ +\x7c\xfb\x52\x2c\xff\x91\xa3\xc7\xf8\xf0\x7f\xfd\x24\x77\x6c\xfe\ +\x4d\xde\xfb\x5b\x6f\x23\xd5\x25\x2a\x0c\xbe\x2e\xf7\xd7\x84\xb0\ +\xda\x2d\xe8\x53\x3f\xbd\xd5\x7d\x50\xf7\x2e\xa5\xa0\xe4\xf9\x1c\ +\x3d\x72\x8c\xdd\x7b\x0f\xb0\x74\xf9\x0a\x36\xae\x5f\x4f\x2a\x95\ +\x42\x5a\x32\x88\xfb\x87\xda\x5e\x20\xd1\x46\x05\xef\x8d\x09\xaa\ +\xe4\x90\xf8\x5a\x55\x2d\x60\x53\x21\xfd\xca\xb9\xf5\xe7\xcf\xec\ +\x66\xff\xbe\xaf\xb0\xe3\xd9\x14\xbf\xf1\x9b\x6f\xa5\xbb\xbb\x1b\ +\xb4\x06\x4b\xd0\x7b\xb6\x8f\xbf\xf9\xca\x57\x79\xfd\x2d\x93\x5c\ +\xb9\x5e\x53\xf2\x14\x52\x28\x0c\x3a\xdc\x6c\xc3\xa7\xe4\x69\x1c\ +\x1b\x8c\x08\xf2\xf5\x8d\xf2\xd0\x32\x20\x2c\x95\xaf\x88\xc5\x20\ +\x57\x50\x41\x0d\xbf\x5c\x0d\x72\x15\xc2\x5e\x43\x22\xb1\x81\x44\ +\x2c\x45\x32\x11\x21\xea\x46\x71\x6c\x07\x27\x6a\x13\xb1\x1c\x2c\ +\x27\x48\xa2\xb1\xad\x50\xbb\x8b\x80\xac\xfb\xb1\x34\xf8\x3c\xa6\ +\x7b\x05\x8b\x33\xfc\x70\x53\xc3\x43\x98\x1f\xd4\xd5\xbf\xab\xcb\ +\x60\xae\xe5\xea\x87\x27\xf5\xec\x7b\x54\xe4\xaf\x99\x23\x2c\x80\ +\x6d\x4d\xe9\xd4\xad\x75\x01\xf0\xf3\x09\xfe\x5b\x42\xf0\xb7\x5d\ +\x6c\xde\x77\xbe\xf7\x7d\x9e\xdf\xf5\x0a\x1f\xfa\x9d\x8f\xd2\xd5\ +\xd3\x88\x29\xab\x7b\x40\x69\x83\x14\x61\x95\x5e\x55\xb9\xee\x74\ +\xe3\x0b\x13\xb4\xad\x56\x3e\x87\x0e\x1e\x61\xf7\x9e\xfd\x2c\x58\ +\xd0\xcd\xfa\x4d\x1b\xe9\xec\xec\x04\x23\xa6\x01\x1f\xa8\xfa\xe0\ +\x55\x81\x42\xa3\xb5\xc2\xb2\xc2\xe6\x99\xda\xe0\x6b\x1f\x19\xb6\ +\xbc\xf6\xcb\xbb\xe4\xaa\xa0\xd4\x56\x19\x38\xb0\xfb\x6f\x68\x4e\ +\xed\xe4\xec\x39\x97\x1f\x6e\x6d\xe4\xdd\xef\xf9\x0f\xb4\xb6\xb6\ +\x52\xce\x28\x3c\x71\xfc\x14\x7f\xf5\xd7\x7f\xcb\x7d\x77\x65\xb9\ +\xf1\x1a\x18\x9f\xf0\xc9\x64\x0d\x8b\x7b\x34\xa3\x63\x8a\xb1\x31\ +\xcd\xe2\x45\x86\xe1\x31\xcd\xe4\xa4\xa1\xb3\x43\x51\x2c\xc1\xd0\ +\x78\x8a\xce\x85\x2b\x29\x7a\xab\x91\xce\x7a\x92\xc9\xd5\xc4\xa2\ +\x36\xe9\x64\x02\xc7\x72\x71\x23\x81\x0f\xef\x5a\xe5\x30\x9c\xa8\ +\x68\x77\xa4\x0c\x3d\xa2\xf9\xfc\xe5\x5a\x5a\xfd\x55\xf8\xdc\x33\ +\xf7\x29\xab\x5c\x31\x73\x00\x6c\xe6\xd7\xe6\x55\x9a\x5b\x57\xab\ +\xf4\x10\xd0\x73\x34\xfc\x3c\x73\x2b\x97\x44\xcd\x3c\x81\x2b\x5a\ +\x1a\xd2\xbb\xeb\x02\xe0\xe7\x0b\xfc\xbf\x55\x12\x1a\xf5\x00\x00\ +\x20\x00\x49\x44\x41\x54\x07\x7c\x8e\x8b\x54\xf0\xe5\x72\x79\x1e\ +\x7f\xfa\x19\xae\xdb\x7c\x03\x6d\x0b\x9a\x10\x96\x40\xa9\xe9\x87\ +\x29\xa4\x41\x6b\x51\x65\xde\x97\x17\xa6\xae\xb4\xcd\x56\xca\x67\ +\xdf\x81\x23\xbc\xfc\xd2\xcb\x74\x2e\xe8\x66\xf3\xe6\xab\x59\xd8\ +\xb3\x30\xac\x77\x0f\xdb\x79\xe9\x20\xa2\x20\x2c\x81\xd6\x41\xe5\ +\x1e\xca\x60\xa4\xa8\xcc\x93\xa1\x96\x2f\x6b\x7c\xcb\xb2\xf0\x8a\ +\x5e\x20\x68\xc2\x79\xa7\x4f\x1d\xc2\xcf\x7c\x9e\xcb\x96\x2b\xce\ +\x5d\x30\xbc\xf4\xb2\xe6\x85\x57\xba\x79\xef\xfb\x1e\x20\x95\x4a\ +\x86\x84\xa1\x60\xef\xcb\x7b\xf9\xdb\xbf\xfd\x2a\xff\xf9\x7d\x86\ +\x45\x0b\x7d\x1a\xd2\x86\x73\xe7\x35\xe9\x26\x45\x3c\xaa\x19\x18\ +\x30\xc4\x92\x71\x62\x8d\xab\x19\x9b\x5c\x43\x2c\x75\x35\x89\xd8\ +\x22\xe2\xb1\x28\xc9\x78\x84\x88\xed\xe2\xc6\x1c\x5c\xcb\xc5\x89\ +\x38\xb8\xb6\x85\x15\x16\xf3\x08\x29\xc3\x05\x27\xe6\x01\x9f\xb9\ +\xa4\x00\x30\x97\xd2\xe2\x35\x4c\x83\x19\xf7\x33\x33\xb5\x75\x2d\ +\x8d\xae\x6b\x99\xed\x95\xee\x49\x55\xa7\x45\x35\x87\x33\x73\xfe\ +\x6c\x21\x50\x99\x39\x57\x08\x7c\xab\xa5\xb1\xe1\xed\x75\x01\xf0\ +\xf3\xe3\xef\x7f\x15\x78\xc7\xc5\xe6\x0d\x8e\x8c\x93\x48\x24\x89\ +\x47\xe3\xe8\xb0\x78\x04\x61\x30\x61\xeb\xe9\xea\x85\x58\x7e\xb8\ +\xba\x2a\x81\x27\x5f\x28\xb0\x6f\xff\x41\x5e\x7c\x71\x37\xe9\xa6\ +\x24\xb7\xdd\xf6\x06\x16\x2d\x5a\x14\xfc\x5e\x58\x85\xe6\x7b\x8a\ +\x0a\xd5\x2f\x45\xa5\x6a\x0e\x44\xa5\x71\xa6\xb4\x24\xbe\xe7\x07\ +\xdd\x6c\xc2\xa6\x1a\x22\xec\x9b\x8f\x0c\xb2\x05\x7d\xdf\x47\xf9\ +\x9a\x43\xbb\x3f\xc3\xe2\x45\x7b\xc0\xb8\xb8\xae\xc6\xd7\x3e\x0f\ +\xfe\x10\x8e\x1e\x5f\xce\x6f\xff\xf6\x7b\xc1\xb2\x2a\x16\xc5\xa3\ +\x0f\x6f\x65\xb0\xf7\x7b\xbc\xf9\x4e\x45\x34\x6a\x50\x0a\x8c\xbd\ +\x1a\xdc\xb5\x18\x6b\x2d\xb1\xf8\x7a\x12\xf1\x28\xc9\x78\x94\x68\ +\x24\x82\x6b\x3b\xb8\x8e\x43\x34\xea\x62\x5b\x16\x96\x25\x11\xd6\ +\x74\xfc\x7d\x7e\xb3\xdd\xcc\xc3\xac\x9b\xb9\xda\x7e\xd6\x7b\x53\ +\xc3\x37\x30\xa6\xb6\x59\x5e\x3d\x4f\xeb\x69\xed\x5d\xcb\x37\xd7\ +\x33\x80\x31\x7d\x3d\x33\x39\xc9\x85\xe3\xc7\x39\xba\x67\x2f\xe3\ +\x23\x43\x68\x29\x49\x36\x35\xb3\x76\xcb\x16\x5a\x3b\x3a\x68\x68\ +\x6a\x0a\xf7\x45\x98\xfe\xdd\x19\xee\xc0\x3c\xd6\x03\xa0\x80\x65\ +\xad\x4d\x8d\x67\xeb\x02\xe0\x67\x0b\xfe\xa5\xc0\xbf\x32\x4f\xf9\ +\xae\x01\x90\x16\x5a\x07\xfe\xbd\x10\x02\x94\x01\x21\x83\xd8\xbb\ +\x31\x33\xfc\x6f\x1d\x36\xab\x0c\xda\x4e\x07\x5f\xf7\xe4\xe4\x14\ +\xaf\xbc\xbc\x87\x17\x5f\xda\xcd\x82\xd6\x21\x56\x2e\x5f\xc8\x96\ +\x5b\x3e\x84\xed\xc8\x20\x94\x27\x41\x85\xc0\x17\x42\xe0\xfb\x61\ +\x06\x9f\x36\x81\xf6\xac\xe4\x07\x04\xc0\xf6\xd5\xb4\x50\x30\xe1\ +\x67\xe8\xd0\x9c\xf7\x7d\xbf\xb2\x20\xf7\xbc\xf4\x8f\x74\xb7\xfd\ +\x23\x91\x48\x84\x91\x51\xcd\x92\xc5\x9a\xd1\x31\xcd\xc4\x84\x66\ +\xdb\x33\x9a\xf1\xc9\x9b\xf9\x8d\xdf\xbc\x9f\x5c\x3e\x8f\xeb\x04\ +\xdd\x7e\xbf\xf3\x9d\xef\xb3\x64\x89\xcf\xaa\x35\x97\x93\x4c\xaf\ +\x27\x16\x4d\x93\x4a\xc4\x49\x44\x23\xd8\xae\x4d\xc4\x0d\x58\x7a\ +\xc7\x75\xb0\x65\x00\x78\x4b\x5a\x15\xd0\xcc\x24\xef\x4c\xcd\x10\ +\xdd\x45\xdf\xc3\x8c\xc6\x26\xf3\x13\x7a\xb5\x80\x6e\xe6\x0d\x07\ +\xd6\x74\x27\x66\x09\x80\x13\x7b\xf7\x70\x6a\xff\x01\x4e\x1e\xd8\ +\xcf\x99\xc3\x87\x39\xb5\x7f\x3f\x17\xfa\xfa\x30\x35\xf8\xfc\x98\ +\xe3\xb0\xe9\xf6\xdb\xb9\xeb\xff\x79\x1f\x6b\x36\x6e\xa4\xb9\xb5\ +\x75\x86\x4b\xa0\x6b\xf1\x0a\x73\x85\xcc\x17\x5b\x9a\x9a\x3e\x54\ +\x17\x00\x3f\x3b\xf0\xdf\x41\x10\xdf\x6f\xae\x05\x7c\x63\x64\x98\ +\x9e\x2b\x2a\xe6\x7b\xb0\x02\x03\xdf\x7c\x66\xdb\x2a\x11\xa8\x19\ +\x69\x05\xe6\xba\x10\x0c\x0c\x0c\xb2\xeb\x85\x97\x78\xe1\x85\x57\ +\x58\xb3\x74\x8a\xeb\xaf\x12\x34\x24\x8b\x0c\x97\xde\xce\xea\xf5\ +\xb7\x07\xc9\x3f\xca\x54\x5a\x61\x6b\x4c\x99\xe8\x0f\x2c\x07\x21\ +\x50\xbe\x3f\xdd\x0b\x2f\x6c\xa4\xe1\x6b\x1f\xa3\x0c\x9e\xf2\x83\ +\x9e\x7a\xca\x47\xf9\x0a\xc7\x71\x42\x8b\xc0\x70\xf8\xc0\xe3\x58\ +\xfe\x5f\xd0\x90\x96\x44\xe2\x9a\xc6\x06\xc3\x99\xb3\x9a\xc6\xc6\ +\xa0\xc8\xe7\xf4\x19\xc3\x3f\xfe\x7f\x8a\xb5\x1b\x7e\x8b\xab\xb6\ +\x6c\xc1\x37\x36\x42\xda\x24\x62\x51\xe2\xd1\x28\xa9\x78\x0c\x37\ +\x1a\xf8\xef\x91\xa8\x4b\xc4\xb6\x91\x96\x83\xed\xc8\x40\xc3\xd7\ +\x0c\xcb\xfd\x18\xe0\x9e\xef\xfd\x6c\xe0\x9a\x39\x92\x60\x5e\x01\ +\x30\x97\x7d\xaf\x1d\xb1\xef\x3b\x75\x9a\x53\xfb\xf7\x73\xe6\x48\ +\x00\xf2\x53\x07\x0e\x70\xfc\xf0\xe1\x79\x83\x77\xf3\xbd\x2a\xa0\ +\xa5\xb9\x99\xdf\xfe\xc2\x17\xd8\x78\xcd\xb5\x74\x76\x75\xcd\x14\ +\x02\x35\x04\xc0\xac\xc8\xc2\x04\xb0\xa0\xa5\xb9\x39\x5f\x17\x00\ +\x3f\x7d\xf0\x7f\x94\xa0\x76\xdf\x9a\xad\x34\x82\x94\x5c\x8b\x4a\ +\x1f\x4d\x39\xbd\xdf\x5d\xc0\xec\x07\xcc\x9e\x08\xcb\x71\xb5\x00\ +\xc9\xf4\xa6\x16\x47\x8f\x9f\x66\xe7\x73\x2f\xb0\x7b\xf7\x1e\x6e\ +\xdd\x52\xe2\x8a\x75\x82\x86\x34\x08\xa3\xb9\x30\x28\x68\x5e\xfa\ +\xfb\x74\x75\xad\xc6\x57\x7e\xd0\x84\xa2\x0c\xf8\xb0\xad\x97\xe7\ +\xfb\x58\xa1\x79\x6f\xc2\x3a\xff\xea\xc8\x41\x39\x1f\x40\x18\x81\ +\xaf\xfd\xca\x7b\xcf\x0b\x2c\x83\x83\x07\x9e\xa0\x38\xf1\x97\x2c\ +\x5f\xe2\x21\x2c\x89\x65\x1b\x84\xd0\x14\x4a\x0a\xa3\x0d\x58\x4b\ +\xf0\xd8\x48\xae\xb8\x81\x64\xc3\x7a\x12\xd1\x28\xe9\x44\x8c\x48\ +\xc4\xc1\xb1\x1d\x22\x8e\x4b\xc4\xb5\x71\x9d\x20\xd3\xce\x92\x12\ +\xcb\x92\xd3\x80\x37\x97\xf0\xdb\x2f\x61\xc6\xcf\xd1\xec\xb3\xde\ +\x9b\x39\x11\xbb\xf9\x4d\xf6\x8a\x2f\x6f\x66\x82\x4e\x08\xc3\xd4\ +\xe8\x68\xa0\xc9\x0f\xec\xe7\xe4\x9e\x3d\x9c\xd8\xbb\x97\xb3\x87\ +\x0e\x91\x29\x16\xe7\x00\x60\x7a\x4b\xd1\xf9\x85\x40\xf5\x8f\xae\ +\x3a\xee\xea\xe9\xe1\x83\x7f\xf3\xd7\xac\x5c\xb5\x8e\x74\x63\x9a\ +\x79\x2d\xc9\x5a\x24\xa1\x30\xef\x69\x6f\x69\xfe\xdf\x3f\x0b\x0c\ +\xd8\xbf\xc4\xfe\xfe\xdf\x51\xb5\xeb\x6e\x99\xb0\x53\x61\x41\x8e\ +\x30\x02\x21\xf4\xb4\x04\xf7\x4d\x08\x54\x81\xd6\x41\x38\xcf\xb2\ +\x24\xbe\x52\x41\x34\x4d\x42\xd1\xf7\xd9\xfd\xca\x3e\x9e\xde\xfe\ +\x2c\x07\x0e\x1c\xe2\x4d\x77\xc0\x67\x3e\x68\x91\x2f\x19\xa6\x32\ +\x86\x58\x04\x72\x39\xcd\xd0\xa8\x4b\xdb\x8a\x28\xbe\x09\xfc\x75\ +\xdf\xf7\x90\x46\x84\x0d\x32\x82\xb0\x9d\x0c\xcd\x68\x6d\x82\xa4\ +\x9d\xb2\xf5\xe1\x79\x7e\x45\x63\x16\x8b\x45\x2c\x4b\x86\x7b\xf8\ +\x09\xb4\xaf\xf1\x0d\xfc\xe8\xe9\x07\xe9\x6e\xfa\x0a\x3d\x2b\x4a\ +\x4c\x65\x1c\x3a\xda\x8b\x4c\x66\xa2\x4c\x16\x37\x90\x4c\x6f\xa6\ +\xa4\x37\x11\x8f\x76\xd2\x18\x8b\x92\x4c\x44\x71\x2c\x1b\xc7\xb6\ +\x89\x44\x82\x1a\x78\xcb\xb6\x90\xc2\x0e\xc3\x73\x01\x22\x66\x90\ +\x77\xc6\x5c\x12\xc0\x33\xac\x6b\x53\x8b\xd1\x37\xf3\x9a\xf5\xb3\ +\xcf\xcd\x01\xfa\x3c\xda\xb8\x77\xcf\x4b\x0c\x1c\xda\xc7\xc0\xb1\ +\x43\x0c\x8d\x0e\xb3\xed\x91\xed\x9c\xef\xed\xab\x80\x5b\x54\x81\ +\xdb\xad\x3a\x16\xb3\x8e\x67\x0b\x04\x6a\x00\x7f\xf6\xcf\x85\xb3\ +\x67\x39\xf4\xf4\x63\x44\xa2\x31\xd6\xa6\x36\x22\x2d\x51\x53\xdb\ +\x06\xee\xe4\x1c\x21\xf0\x5e\xa0\x2e\x00\x7e\x4a\xe0\xef\x0c\xfd\ +\xfd\x2d\xe5\x70\x9c\x0a\xb5\xbe\x30\xe5\x54\xdc\x10\x88\x3a\x58\ +\x1a\x0a\xbf\x62\x02\x88\xb0\x39\x07\x04\x0c\xbd\xd6\x82\xd1\x91\ +\x51\x9e\xdd\xb9\x8b\x1d\xcf\x3c\x4b\x5b\xc3\x39\xd6\xaf\x90\x3c\ +\x70\xb7\xa4\x31\x05\x67\xfa\xa0\x31\x05\xdd\x0b\xe0\xec\x05\x68\ +\x4e\x6b\x16\x75\x7a\xe4\x73\xd9\xaa\xb6\xda\xe0\x1b\x8d\xf0\x05\ +\x08\x83\x0a\x49\xc3\xb2\x56\xd7\xda\x54\xfa\xfe\x95\x5b\x62\x97\ +\x4a\x3e\xae\xeb\x22\x44\xa0\x99\x73\xf9\x3c\x63\x63\x63\x9c\xd8\ +\xf9\x0d\x9e\x7e\x6c\x07\x5d\x2b\x23\xbc\xe3\x6d\x6d\x24\x5b\xaf\ +\xa4\x77\x6a\x3d\x89\xf8\x95\x74\x34\x07\x80\x77\x1d\x1b\xdb\x76\ +\x70\xca\xa6\xbd\xe3\xe0\x84\xc5\x33\x41\x74\x4e\xce\x80\x82\x09\ +\xff\x9b\xc3\xc4\xcf\xe9\x4c\x34\x7f\x78\xcd\xcc\x74\xdc\xc3\x1c\ +\x09\x73\x11\x57\x61\xfa\xf3\x44\x0d\xc5\x39\x70\x68\x2f\xe7\x5f\ +\x7e\x81\xfe\xbd\x2f\xd3\xfb\xca\x2e\x4e\x1d\x3a\x44\xb9\xa9\xb0\ +\x04\xe2\x16\xac\x59\xd4\x43\xbe\x0f\xb2\x41\x67\xf3\x19\x42\xa0\ +\xfa\x5f\x68\xcd\x03\xfe\x5a\x82\xa6\x0c\x78\x3f\x34\xff\x55\x78\ +\x1c\x15\x70\xe6\x99\x27\x58\x75\xd3\xeb\x18\x1c\xe8\xa3\x73\x41\ +\x77\x2d\xd6\x7f\x86\x50\xa9\x8a\x11\xde\x38\x38\x32\xba\xaa\xbd\ +\xa5\xf9\x48\xdd\x05\xf8\xc9\x82\x7f\x3d\xf0\x03\x63\x4c\x8f\xd6\ +\x26\xd0\xf6\x46\x61\x8c\x44\x58\x65\x21\x10\x2c\x35\x8d\x98\x36\ +\x75\x43\x33\x40\x8b\x20\x76\x5f\xd6\xc0\xfb\x0f\x1c\xe6\xa9\x27\ +\xb7\xb1\x6b\xd7\xcb\x5c\xb3\x31\xcb\x0d\x57\x4a\x7a\xba\x83\x8d\ +\x35\x11\x41\x19\xad\x65\x09\x84\x2c\xc7\xef\x2d\x4a\x25\xc3\x44\ +\x26\x47\x29\xfa\x7e\xd6\x6c\xbc\x0f\x21\x05\x7e\x49\x85\x59\x7b\ +\xe5\x74\x60\x55\x21\xf1\x3c\xdf\xc7\xaf\x70\x00\x36\x5e\xc9\x0b\ +\xf1\x12\xb4\xd1\x32\x04\xf1\xf4\xd3\x87\x76\x31\xb1\xff\x6b\x74\ +\xb6\x26\x31\x2d\x57\x52\x48\x5e\x43\x5b\xfb\x02\x12\xb1\x28\xc9\ +\x58\x14\xdb\xb2\xb0\x5d\x0b\xd7\x72\x70\x5d\x1b\x37\xe2\x62\x5b\ +\x36\x96\xb4\x90\x92\x90\x68\xac\x41\xa3\xcd\x6a\x36\xfa\xea\x00\ +\x6f\xe6\xa4\xc8\x8a\x1a\x84\xdb\x0c\x7f\x78\x56\xa8\x6d\x5a\x38\ +\x18\x86\x8e\x1d\xe1\xfc\x2b\x2f\xd0\xb7\xf7\x25\xfa\x5e\x7e\x81\ +\xde\x03\x7b\x28\x06\xb5\x4f\x58\x62\xfa\xd5\xaa\x7a\x6f\x0b\x48\ +\x09\x90\x2b\x56\xb2\xf3\xf9\x63\x64\xd4\x4c\xe0\x8b\x57\xa1\xf9\ +\xc5\x45\x4c\x7f\x5d\x05\x7e\x2f\xfc\xbc\x8d\x57\x2d\x67\xd9\xad\ +\x77\xb1\xe2\xf5\x77\xb1\x61\xd3\xe6\xe0\x3b\x14\xe6\xd5\xba\x02\ +\x5f\x6c\x6f\xfd\xe9\x93\x81\xbf\x34\x02\x60\x64\xe0\xf8\xed\x46\ +\x9b\xef\x29\xad\x93\xe5\x78\x7c\x20\x7c\x65\xd0\xf9\x56\x98\x30\ +\x4d\x97\xb0\xbd\x5e\x50\xa5\x37\x5d\x9f\x1f\x6c\x1e\x91\xcb\xe5\ +\x78\x76\xe7\x2e\xb6\x3e\xf6\x14\xfb\xf6\x1f\xe4\x7d\xf7\xc1\x9a\ +\xe5\x82\x0d\x6b\x61\x6c\x5c\xd2\x3f\x02\x1d\xed\x82\x91\x09\x8b\ +\xe3\xe7\x2c\x12\x71\x8b\xd3\x7d\x36\x7d\xfd\x82\x54\xdc\x66\x62\ +\x0c\xfc\x52\x81\xce\x9e\x66\xde\xfc\xf6\xcf\x91\x4c\x34\xa0\x31\ +\xa1\x39\x6f\x85\x26\x3d\x94\x3c\xbf\x92\xf3\x1f\xd4\xf4\xcb\xa0\ +\x6b\x8e\x99\xde\x76\xbb\xa4\x14\xfd\x67\x8e\xd1\x77\x72\x17\x4d\ +\x2d\xcd\x34\x74\x6d\x22\x9e\x68\x22\x15\x8b\x11\x8d\xb9\x58\xd2\ +\xc6\x72\x24\x11\xcb\x09\x7c\x7b\xd7\xc1\xb1\x2c\x84\x0c\xba\xdc\ +\x94\xf7\x0e\x98\x69\x9e\xcf\x73\xcc\xdc\x68\xc7\xbc\xa4\xdd\x25\ +\x22\x00\xf3\x92\xe3\xc6\x90\xcf\x64\x39\xf4\xdc\x73\x1c\x7a\xfe\ +\x79\x8e\xec\x7a\x9e\x42\xff\x49\xe2\x03\xa7\x03\xcd\x6e\x66\x02\ +\xbd\xdc\x43\xc5\x96\xe1\xab\x08\xcf\x97\xe7\x09\x48\x5a\xc0\x65\ +\x6b\x79\xf2\xe9\x43\x4c\x29\x33\x03\xf4\xaf\x06\x00\xb3\xdd\x0c\ +\x5d\x43\x08\x94\x80\xa8\x2b\xd9\x78\xe5\x32\x0a\x93\x39\x6e\xf8\ +\x9f\x5f\x65\xe9\xb2\xe5\xb4\xb6\xb7\xcf\xc7\xfc\x4f\x63\x7f\xfa\ +\x41\xf4\x03\x0b\xdb\x5b\x9a\x55\x5d\x00\xfc\x3b\x8e\x0b\x67\x0f\ +\x2f\xb5\x24\x5f\x36\x46\xbf\x51\x9b\xe9\xb0\x9d\x30\x81\x96\x0f\ +\x8c\x7d\x89\x09\xdb\x4f\x1b\x61\x10\x26\x28\xdc\x29\x97\xd8\x22\ +\x24\xa7\x4e\x9d\x62\xeb\xd6\xa7\x78\xfa\xe9\x1d\x2c\x5b\x38\xc0\ +\xaf\xdd\x64\xe1\x46\x6c\x3c\xe3\x52\xf0\x6c\x8e\x9e\xb5\xf0\x3d\ +\x1b\xe5\xd9\xf4\x0f\x6a\xb4\x1f\xa1\x35\xaa\xa1\x54\xa2\x23\xaa\ +\x58\xd0\x12\x41\x78\x79\x6c\xcb\x67\xdb\x99\x34\x76\xeb\x08\x5b\ +\xae\xde\xc0\x86\x6b\x7f\x9f\x64\x2a\x1d\x6c\x77\xe5\x7b\x08\x61\ +\x4d\xc7\xf5\xcb\x5d\x80\x4c\xd0\x2a\x2b\xf0\xf5\x03\x50\x9e\x3f\ +\x7b\x1a\x2f\x3f\x4a\x53\xc7\x32\x12\x89\x44\x90\x88\xe3\x38\xd8\ +\xb6\x8d\x65\x07\x9d\x6e\xca\xa1\x3a\xc7\xb6\xa7\xe3\xf2\x61\x79\ +\xf1\x6c\xa0\x9a\x1f\x03\xe4\x35\x01\x7f\x11\x01\x50\x13\xf0\xe1\ +\xb5\xa1\xde\x5e\x0e\xee\xdc\xc9\xa1\x67\x9f\x65\xef\xd3\x4f\x73\ +\xf6\xd8\xb1\x8a\xa6\x96\x40\x77\x53\x82\x4d\xf1\x3c\x85\x92\xc6\ +\x96\xe0\x94\x01\x2f\x02\xff\xd5\x16\x60\x99\x99\xda\x5f\x96\xad\ +\x82\xf0\x38\x69\x83\x5e\xb3\x89\x1f\x3c\xba\x9b\x49\x35\xd7\xbc\ +\x9f\xad\xe9\xf9\x31\x49\x40\x0f\x48\xc7\x5d\x36\x5d\xb5\x84\x13\ +\xfb\x8e\xb2\xf9\x63\x7f\xc2\xe2\x6b\x6e\x64\xed\xfa\x0d\x17\x0b\ +\xff\xd5\x0a\x13\xbe\xa5\xbd\xa5\xf9\x7b\x75\x01\xf0\x7f\x0d\xfa\ +\x83\x16\x70\x0f\xf0\x01\xe0\x8e\xe9\x2d\xb1\x2c\x90\xa6\x52\x77\ +\x2f\x74\xb5\x2d\x16\xfa\xda\x21\x13\x2f\x6c\x41\x21\x5f\xe0\xf9\ +\xe7\x5e\xe0\x91\xc7\x9e\xe4\xd9\x9d\x2f\x70\xc5\x3a\x41\x3a\x9d\ +\xc4\xb5\x1c\x72\x39\x9b\x52\x5e\xd2\x68\x6b\x1a\x6d\xc5\x82\xa4\ +\x24\x6a\x4b\xda\xe2\x1e\xdd\x29\x8f\xc6\xb4\x85\x25\x04\x11\xc7\ +\x90\x74\x35\x45\x0d\x0f\x1e\xb0\xd8\x7a\x36\xc6\xea\xf5\x79\xee\ +\xba\x75\x8c\xf1\x89\x3c\xa7\x06\x56\xb3\x68\xf9\x3b\xe8\x58\xb0\ +\x85\x74\x53\x13\x8e\x63\x93\xcd\x66\x2b\x8d\x42\x00\x0a\x05\x9f\ +\x42\x31\x8b\x36\x06\x85\x85\x25\x05\xe9\xb0\x5c\xd6\x16\x12\xcb\ +\xb1\xb0\x2d\x49\xc4\x75\x70\x1d\x17\xcb\x71\x88\xd8\x36\x22\x6c\ +\x62\x89\x99\x4d\xdc\x9b\x79\x8e\x99\xeb\xeb\x5f\xcc\xef\x37\xcc\ +\xeb\xb7\xd7\x82\x91\x31\xd0\x7f\xfa\x34\xfb\xb6\x3d\xcd\xde\xa7\ +\x9f\xe6\xe8\xf3\xcf\xd3\x77\xfe\x7c\x05\xec\x65\xd0\x8a\x32\x78\ +\x81\x84\x84\x37\x6f\x68\x61\x6a\x68\x04\x3b\x24\xef\x6a\x81\xbd\ +\xfc\x1a\xb6\x54\x0c\x12\xb4\xaa\x12\xb2\xd2\x0e\x14\xd7\x6d\xe2\ +\x9f\x7f\xb0\x9b\x9c\x9e\x2b\x94\x4c\x0d\xd2\x6f\xbe\x57\x33\xcb\ +\x22\xf0\x81\xb6\x86\x28\x9b\xaf\x5c\xcc\xf1\x3d\x47\x48\x6e\xbc\ +\x8a\x0d\x1f\xf9\x63\xd6\xae\xbb\x9c\x44\x2a\x35\xc7\xdc\x2f\xbb\ +\x37\x73\x32\x86\x35\x0f\xb6\xb7\x35\xbf\xa9\x4e\x02\xfe\xdb\xb5\ +\x7d\xb7\x10\xfa\x03\xc6\xf0\x5e\x63\x44\x67\xf9\x11\xeb\xa0\xf9\ +\x34\x5a\xf9\x08\x1d\xee\x07\x67\x05\xe7\x83\x36\x5c\x26\xd8\x6d\ +\x22\xec\x0b\x7f\xe2\xf8\x49\xb6\x3e\xfe\x24\x8f\x3d\xbe\x8d\xa9\ +\xf1\x01\x96\xb4\xa7\x78\xe3\xaa\x38\x0d\x5a\xb3\x2a\x62\xd1\x1c\ +\x29\x10\x4f\x15\xd9\xb0\x28\x46\x4e\x69\x32\x79\x8f\xa5\x0b\x1c\ +\x72\x05\x18\xc8\xc2\xc2\x16\x8b\x89\x9c\xc7\x48\xd6\xd0\xd1\x6c\ +\xf1\xc2\x09\xc5\x5f\xbf\x10\x25\xd9\x25\xb9\xf7\xcd\xfd\x74\xb5\ +\x17\x68\x6c\x10\xb8\xae\x8d\x36\x07\x10\xf9\x8f\xb1\xef\xb9\x6e\ +\x3c\x79\x39\x91\xd8\x02\x2c\xab\x01\xa5\x0c\x42\x96\x88\xc4\xdb\ +\x89\x26\x3a\x68\x68\x5a\x41\x3a\x11\x82\xde\x92\x41\xe3\x4a\xc7\ +\xc6\x76\x2c\x5c\xbb\x9c\x7a\x6b\x63\x49\x81\x90\x32\xd8\xf2\xda\ +\xe8\x19\xda\xbc\x16\xe8\x67\xfa\xf7\x17\x03\xb9\x99\xb1\x17\xc1\ +\xbc\xfa\x44\x94\x89\xd2\xe0\x33\x07\xcf\x9d\xe3\xc0\x8f\x7e\xc4\ +\xcb\x8f\x6d\xe5\xd0\xf6\x1f\x31\x3c\x34\x58\x01\xb7\x24\x68\xa9\ +\x24\xab\x00\x5f\x7d\x2c\x00\xa9\x21\xde\xd0\x40\x6c\x64\x24\x00\ +\x79\xa8\xf1\x85\x08\x5c\x82\x72\x53\xce\xd9\xbe\xbc\xa8\x3a\x69\ +\x80\x82\x82\xe4\xe1\xdd\xdc\xfd\xab\x1b\x78\xf0\x91\xbd\x14\x67\ +\x45\x13\xcc\xac\xdf\x9f\x0d\x78\x71\x11\x21\xe1\x00\x09\xd7\x25\ +\x8e\x20\x61\xc1\xf8\xbe\x17\x29\x8c\x8d\x32\x38\x30\xc0\xd2\xb2\ +\x00\x98\x61\xfc\x08\x84\x30\x73\x83\x01\x92\x3b\x07\x87\x46\xdb\ +\xda\xdb\x9a\x87\xea\x02\xe0\xd5\x6b\x7b\x57\x08\xee\xd1\x5a\x3c\ +\x00\xfa\xce\xa0\xce\x3e\x28\xa3\x09\x4a\x5e\x03\x89\xab\x34\x95\ +\x9e\x77\xe5\x42\x19\x23\x0c\x84\x7e\x76\x26\x9b\xe5\xe9\x6d\x3b\ +\x78\xf8\xe1\xc7\x78\xee\xb9\x17\xb8\xb1\xc7\xe1\xf7\x2e\xb3\xb9\ +\x7d\xa5\xcb\xf9\x6c\x89\xae\x64\x91\xb6\x46\x8b\xb3\x23\x45\xd2\ +\x49\x49\x32\x66\x71\x74\xb0\x40\x53\x42\xd0\xd3\x64\xb1\xef\x9c\ +\x47\x7b\x4a\xd0\x93\x96\x1c\xea\xf3\x58\xd8\x28\xe9\x4e\x2b\x3e\ +\xfb\x43\x9b\xbd\xd9\x28\x77\xdc\x9e\x61\xe5\xe2\x09\x5a\x9b\x0c\ +\x89\x24\x1c\x39\x69\x68\x4a\xc3\x92\xc5\x92\xb3\x17\x0c\x1b\xd6\ +\x9e\xc5\xb6\x4e\x70\xe6\x7c\x33\x91\xa6\xdb\x21\x72\x23\x91\xf8\ +\x46\xd2\xf1\x58\x85\xc4\x93\x32\xd0\xf6\x8e\xb4\x03\xd3\xde\xb5\ +\x71\x2c\x07\xc7\x96\x41\x43\xcb\xd0\xbc\x37\x33\x00\x6f\x6a\x03\ +\xfd\x92\x1a\x7f\x26\x61\x57\x0d\x79\x65\x66\xe5\xc1\x9b\xe9\x85\ +\x9c\x1f\x1b\xe5\xcc\x33\x4f\x72\x6e\xe7\x76\x2e\x9c\x3e\xc2\xf9\ +\xd3\x67\x39\xb8\xef\x1c\x65\x6f\x2a\x59\x05\xf0\xd9\xa0\x9f\x01\ +\xfc\x2a\x92\xae\xa4\x2d\x5a\x2c\x2a\xad\x12\x29\x6b\x78\x31\xb7\ +\x35\x40\x2d\xa0\x96\x47\xae\x04\xed\xc7\xf7\x71\xe7\xed\x97\xf3\ +\xe0\xe3\xfb\x83\x8d\x48\x6a\xcc\xad\x75\x9f\xf9\xee\x6d\x85\xcf\ +\x27\x1e\xb5\x89\x08\x43\x4c\x42\x4e\xc1\xc0\xf6\x47\x89\xb7\xb4\ +\xb2\xd8\x5f\x82\x0c\x37\x36\x35\xb5\xea\x03\x66\x7e\xae\x05\xdc\ +\x0f\xfc\x65\xdd\x05\xb8\xc4\xe8\x3d\x73\x60\x33\xf0\x80\x94\xf2\ +\x1d\xc6\xe8\xe6\x72\x23\x0d\xcc\xf4\x2e\xb8\xba\xd2\x9c\xa1\x2a\ +\x4f\x5f\x94\xf3\xc6\x03\xff\xfa\xe0\xc1\x43\xfc\xe0\xa1\xad\x6c\ +\xdd\xfa\x24\x57\x24\x46\x79\xdb\x1a\x87\xdb\x96\x06\x9d\x67\x74\ +\x40\x8f\xe3\x19\x4d\x49\x0b\x84\x08\x3a\xd1\x78\xe1\x93\xb3\xa4\ +\xc0\xd7\xa0\x25\x18\x82\xb2\x5d\xd7\x31\x28\x34\x7b\x2e\x08\xbe\ +\x75\x28\x46\x7a\x89\xcf\x5d\xb7\x8c\xd3\xbd\xc0\x27\x5f\x14\x18\ +\x2d\x40\x6a\x0a\x85\x80\x7e\x2b\x2a\xc8\x96\xda\x31\x91\xdb\x70\ +\x13\x57\xd3\xd8\xbc\x8e\x54\x3c\x46\x32\x1e\xc1\x16\x56\x48\x0c\ +\x5a\xd8\x96\x85\x13\xb1\x71\x1c\x87\x88\x13\xc4\xed\x45\xb9\xc8\ +\xc6\x98\x1a\x04\x5e\x0d\x4d\x7f\x09\xcd\x3e\xb7\xd6\xfe\xd2\xed\ +\xb1\xb4\x52\x9c\x7e\xe6\x29\xce\xef\xdc\xce\xf9\xed\x8f\xd3\x7b\ +\x70\x1f\x96\x00\x57\x40\x04\x68\x5e\xd8\x8e\x6e\xed\x64\xd7\x8e\ +\x43\x4c\xe4\xbc\x19\x40\xaf\xfe\x11\xd4\x66\xe9\x01\xae\x5c\xd3\ +\xc5\x35\xfa\x02\x13\xa5\x8b\x87\xe9\x44\x6d\x5e\x71\xce\xdf\xdf\ +\x90\x8a\x72\x2c\xdd\xc3\xe3\xcf\x1c\x9d\x97\xec\x9b\xcf\xf4\x9f\ +\xcf\x1d\x58\xbb\xb2\x83\xf5\x8b\x52\x9c\x3b\x78\x9c\x11\x0d\x7e\ +\xba\x89\x4d\x7f\xfe\x0d\x96\xaf\x58\x41\x5b\x48\x06\xea\x4b\xa7\ +\x05\xa3\x61\x67\x47\x4b\xcb\xf5\x75\x0b\xa0\xb6\xb6\x6f\x43\xf0\ +\x4e\x01\x0f\x68\x6d\xd6\x07\x05\x2f\xd3\xdb\x5d\x07\xdb\x49\x97\ +\x2d\x80\xe0\x71\x06\x5d\xb2\x7c\x8c\x09\xf6\xa1\x13\x02\x06\x06\ +\x86\x78\xf2\xa9\xed\x3c\xf2\xe8\x93\xbc\xf8\xe2\xcb\x7c\xfc\xfa\ +\x08\x5f\xb9\xc9\xe1\xd6\xa5\x49\x86\xf2\x86\xb3\x19\xc3\x9a\x4e\ +\xc1\xc0\x94\xcf\x70\x01\x56\xb7\xda\x0c\x15\x34\x23\x39\xc5\x8a\ +\x76\x9b\xa1\x8c\x66\x2c\xa7\x59\xd9\xee\x30\x5c\xd0\x0c\x4d\x19\ +\x56\x77\xda\x0c\x64\x35\xa7\x87\x3d\x9e\xeb\x8b\xf3\x4f\x07\x22\ +\xc4\x12\x3e\x1b\x94\xe6\x5f\xb7\xa6\x98\x9c\x32\x34\x35\x5b\x4c\ +\x4d\x6a\x26\x33\x86\x8e\xce\x46\xda\x3a\xaf\x60\xc5\x9a\x9b\x59\ +\x7e\xd9\x9a\xd0\xa7\x8f\x60\xdb\x36\x52\x06\x35\xf2\x96\x65\xe3\ +\xd8\x81\x89\x6f\xbb\x36\x11\xc7\xae\x6c\x95\x35\x63\x3b\x70\x33\ +\x9f\x19\xff\x6f\x03\xfd\xa5\xfa\xe1\x4d\xf5\x5d\xe0\xd4\xd3\x8f\ +\x72\xfa\xf1\x1f\xd2\xf7\xa3\xc7\xc8\x29\x8d\x23\x20\x22\xa0\xdd\ +\x09\x4c\x62\x37\x64\xe9\x9d\xa1\x41\x5a\x8b\x59\x56\xde\xbb\x85\ +\x1d\xdb\x0f\x72\xea\xdc\x58\x4d\x2d\x3f\x1f\x33\x2f\x81\xe1\xc1\ +\x09\xdc\x55\x2d\xc8\xfe\x91\x69\xf3\x7e\x3e\xd6\xbe\xda\xb4\x2f\ +\xbb\x07\x61\x37\xb6\x20\xc1\x0b\x26\xb2\x05\x2e\x73\xfa\x98\x58\ +\xb7\x88\x17\x0e\x9c\x9b\x13\xfa\x9b\xef\x95\x79\xce\x01\x44\x1d\ +\x07\xdb\x53\xb8\x02\x62\x02\x06\xc6\xc6\x18\x3b\xb8\x87\xa1\x86\ +\x86\x8a\x00\x08\xf7\x1d\x9d\x87\x21\x11\x65\x21\x70\xdd\xc0\xf0\ +\x48\x4f\x47\x6b\xcb\xd9\xba\x00\x08\xfc\x7a\x0b\xb8\x53\x08\xf3\ +\x5e\x63\xf4\x9d\x18\xac\x80\xc4\x0b\x3d\x28\x29\x29\x67\xa7\x69\ +\x63\x82\x34\x57\x41\xd0\x9f\x2e\xf4\xef\x0d\x90\xcd\x65\xf8\xd1\ +\xf6\x67\x79\xe4\xd1\xc7\xd9\xbe\x63\x27\x6b\x1b\x14\x97\x77\x44\ +\xb8\xfe\xba\x06\x56\x75\x18\xb6\x74\xc1\xfe\x41\x8f\xa6\x84\xe4\ +\xf2\x0e\xc9\xde\xc1\x12\xed\x09\xc9\x9a\x76\x8b\xc3\x43\x1e\x4d\ +\x71\xc9\x8a\x56\xc1\x91\xfe\x12\xe9\x98\xe0\xb2\x0e\x8b\xc3\xc3\ +\x45\x9a\x93\x16\xab\xda\x25\x07\xfa\x8b\xb4\x24\x2d\x2e\xeb\x90\ +\x9c\x9b\x9c\xe2\x0f\x6f\xc9\xd2\x10\x15\xbc\xdc\x2b\x49\x46\x25\ +\xa9\x6e\xc1\xe9\x61\x8f\x25\x1b\xaf\xa4\x61\xe5\xcd\xb8\xdd\xd7\ +\x90\x4a\xa5\x48\x45\xa3\x01\x73\x2f\x25\x96\x23\xb1\xa5\x1d\x98\ +\xf9\x8e\x4d\xc4\x76\x02\x3f\xdf\x0a\x08\x3d\x51\xb5\xfa\xab\x4d\ +\x7c\x33\x3b\x66\x3f\x0f\xd0\x4d\xcd\x32\xdb\x57\xd7\x04\xb3\xf7\ +\xa5\xe7\x39\xf5\xc4\x0f\x39\xf7\xf8\x43\x0c\x1e\x3f\x82\x2d\x03\ +\x90\x47\x05\x34\xd8\x21\xe0\x01\x47\x4c\x33\xf5\x76\xe8\x1f\xcb\ +\x4c\x96\xe4\xf3\xcf\xf0\x96\xd7\x5d\xcf\x2b\x87\x06\x78\x6e\xd7\ +\x89\x19\x15\x93\xe2\x12\xe6\xe8\xe8\x58\x16\xab\x65\x21\x76\x28\ +\x00\xe6\x27\x1a\x67\x59\x05\xe5\x79\x62\x56\xeb\x2e\x03\x13\x63\ +\x53\x6c\xe9\x8e\x31\xb1\xa8\x99\x63\xe7\x46\x5f\x95\x10\xe0\x22\ +\xe7\x62\x89\x08\xc2\x78\x38\x04\x82\x30\x26\x60\x70\xdb\xa3\x34\ +\xaf\xdb\x44\x21\x9f\x27\x1a\x8b\xfd\x38\x76\xf9\xfd\xc0\xe7\x7f\ +\xa9\x5d\x80\x0b\xe7\x0f\xaf\x17\xc6\x3c\x60\x8c\x79\x27\xc8\xb6\ +\x20\x61\xc7\xcc\x20\x52\x66\x9a\xf5\xa6\x92\xce\x2b\x09\xc2\x79\ +\xa5\x92\xc7\x4b\x2f\xef\x66\xeb\xd6\xa7\x78\xe2\xc9\x6d\x6c\x8a\ +\x0e\x71\x5d\xb7\xe4\x9b\xbd\xed\x9c\xce\xc7\xb1\x2b\x95\x7c\x82\ +\x3f\x58\x3f\xcc\xbb\xd6\x1b\x72\x2a\xd8\xaf\xae\x42\x74\x49\x50\ +\x61\xee\xbf\xaf\x05\xb6\x0d\x4a\x05\x66\xbf\x90\x84\x3b\xd8\x18\ +\xb4\x08\x88\x9d\x82\x86\xa8\x13\x2e\x10\x19\x26\x8b\xa4\x97\x31\ +\xd9\x7a\x0b\xa5\xce\x9b\x48\xa4\x3b\x49\x25\xe2\xb8\x6e\x68\xde\ +\xcb\x80\xd0\xb3\x6d\x0b\xc7\x91\x38\xb6\x83\x6d\xbb\x44\x5c\x0b\ +\x84\x0c\x48\xbd\x72\x75\x5d\x8d\x70\x9d\x31\x17\xd7\xee\xaf\x1a\ +\xf4\xb3\x00\xaf\xbc\x12\x67\xb6\x3f\xc1\xe9\xad\xdf\xe7\xdc\xe3\ +\x0f\x92\x99\x98\xc0\x2d\x9b\xf6\xe1\x6b\x19\xf4\xae\x98\x8e\xcb\ +\x3b\x61\x0c\xbe\x4c\xd8\xc9\x2a\x4d\x1e\x91\xd0\x78\xc5\x06\xfa\ +\x75\x84\x87\xbe\xff\x22\x59\xcf\xbc\xea\x05\xf9\x9e\xb7\x6c\xc2\ +\xdb\xb3\xbb\xa6\xa6\x9f\x2f\x6c\xc7\x7c\xe1\xbd\xaa\xd2\x81\xc4\ +\xf2\x65\x7c\xff\xc5\x3e\xfa\xc7\xf3\xaf\xca\x1d\x98\xef\xf8\x96\ +\xeb\x57\xb1\x90\x49\x86\xce\xf4\x91\xd1\x30\xa6\x20\x2b\x04\xeb\ +\xbf\xfc\x6d\x96\xac\x5c\xc9\xc2\xb0\xe4\xfb\xd5\xb8\x02\x3f\x4d\ +\x37\xe0\xe7\xca\x02\xe8\x3f\x7f\xa8\x19\x78\x87\xd6\xfa\x01\x61\ +\xf4\xe6\xa0\x53\x2e\x08\x11\xe4\xdb\x97\x93\x52\x11\x41\x86\x95\ +\xd1\x61\x7b\xaa\x30\x3b\xcf\x60\xb0\x90\x1c\x3d\x71\x9c\xad\x8f\ +\x3e\xc5\xc3\x8f\x3e\xce\xa1\x43\x47\xf8\xc8\xd5\x31\x1e\xbb\x33\ +\x42\xdc\x49\xd1\x3b\xa5\x59\xd2\x51\x60\xeb\x79\x8f\xc1\x9c\xa0\ +\x29\x66\xb3\x30\x56\x64\x6d\xb3\x22\x12\xb1\x99\xca\x68\x06\xb3\ +\x9a\x55\x6d\x36\x43\x79\xcd\x70\x46\xb3\xaa\xdd\x66\x20\xa3\x99\ +\x2c\x19\x96\xb5\xd9\x8c\x64\x15\x23\x19\xc3\xca\x0e\x9b\xa1\xac\ +\x62\x24\x1f\xb8\x00\xfd\x53\x9a\xd1\xac\x66\x69\xbb\xc3\x98\x6a\ +\x60\xb8\xf5\x16\x9c\x9e\x5b\x71\x5a\x56\x90\x8e\xc5\x88\xc7\xdc\ +\x80\xc8\xb3\x82\xed\xa7\x2c\x27\x48\xfc\x29\x67\xe7\x95\x77\xac\ +\x91\x22\xc8\xce\x2b\x17\x00\x55\x17\x02\xcd\x78\x25\x6c\x11\x78\ +\x31\xd0\x57\xd4\xd5\xa5\x41\x5f\x98\x9c\xe0\xcc\x13\x0f\x73\xf2\ +\xe1\x7f\xa6\x7f\xdb\x63\xf8\xbe\x1f\x00\xde\x82\x94\x15\x00\xdf\ +\x09\x7f\xca\x49\x37\x8e\x99\x4e\xc8\x09\xab\xa3\x83\xcd\x36\x82\ +\x7e\x24\x33\x81\x6d\x60\xfc\xe5\xbd\x2c\x58\xb9\x98\x77\xbc\xeb\ +\x56\x7e\xf8\x2f\x2f\x30\x30\x92\x79\x55\x6b\x63\xac\x00\x4d\x55\ +\x26\xb4\x91\x55\xf7\x36\xe5\x0d\x55\xe6\x17\x0e\x33\xaa\x8b\xab\ +\x2c\x82\xe2\xc9\x93\xbc\xf1\xc6\x35\x7c\x77\xeb\x31\x32\x25\xff\ +\x92\x6e\x80\x99\xe7\xd8\x8d\xda\x58\x53\x7e\x45\x20\x46\x05\x8c\ +\x2b\xc3\xc8\x4b\x3b\x49\x36\x35\xcd\x10\x00\x35\x81\x1f\x2a\x9c\ +\xe0\x39\x99\xeb\x06\x46\x46\x7a\x3a\x5a\x7e\xf2\x6e\xc0\xcf\xdc\ +\x02\xe8\x3f\x77\x38\x06\xe6\x1e\x63\xcc\x3b\x84\x10\x6f\x30\xc6\ +\xb8\xd5\x0b\xb9\xd2\xc4\xc1\xe8\x69\xe6\x3a\x04\x7c\x70\x2e\x4c\ +\x28\x19\x1a\xe1\xc9\x27\xb7\xf3\xc8\xd6\xc7\xd9\xf9\xdc\x8b\xfc\ +\x97\x4d\x16\x97\xb7\x59\xdc\xb2\xd8\xa5\x2d\x21\xd8\x3b\xe8\xd3\ +\x99\xb6\xe9\x48\x08\x4e\x84\xbb\xc4\x26\x5d\x87\xa3\x63\x8a\x45\ +\x0d\x90\x4c\xd8\x1c\xe8\xf7\x69\x89\x0b\xda\x52\x16\x07\x87\x15\ +\x4d\x31\x49\x5b\x52\x70\x68\xd0\xa7\x25\x61\xd1\x94\x92\x9c\x1d\ +\xf7\x69\x88\x08\x62\x11\x8b\xc3\x43\x8a\x8e\x34\x34\x36\x48\x4e\ +\xf6\x1b\x92\xc9\x18\x91\xc5\xd7\x70\xbe\xe1\x16\xdc\xae\xab\xa7\ +\xfd\x7a\x69\x63\xd9\x81\xa6\x97\x52\x60\xbb\x36\x8e\xb4\x83\x57\ +\xcb\xc1\x75\xac\xa0\x62\x4f\x4c\xa7\x1f\x57\x4a\x65\x6a\x24\xe6\ +\xcc\x6e\x3c\x62\xaa\x98\x78\x31\xfb\xf8\x12\xa6\x7d\x29\x9b\xe1\ +\xd4\x13\x0f\x73\xf2\xc1\x7f\x62\x70\xfb\x56\xb4\x09\x35\xbc\x0c\ +\x5e\x23\x21\xd8\x2b\x5a\x9e\xe9\x04\x9c\x72\x28\x4e\xca\xd0\xa7\ +\x9f\x05\x78\x61\xa6\x43\x72\xb3\x7d\xfc\x54\x43\x0a\xfb\xda\xeb\ +\x78\xe8\xe1\xdd\x1c\x3f\x39\x78\xc9\x85\x78\xc3\xb5\x2b\xd8\x38\ +\x79\x82\x4c\xa9\x46\x6a\xad\xb8\x04\xe0\xab\xb5\xb6\x99\xfe\x9d\ +\x32\x2b\x6f\x4b\x18\x5b\xb2\x96\x07\x1f\x3f\xf8\x63\xe5\x00\x54\ +\xbf\xde\x73\xcf\x95\x24\xce\x9f\x66\x7c\x60\x94\xa2\x81\x49\x03\ +\x03\x3e\xd8\x6b\x37\xb1\xe6\xc3\x9f\x62\xfd\xc6\x8d\xc4\x93\xc9\ +\x1a\xcc\xa5\xa8\x91\x2f\x61\x00\x7e\xbf\xa3\xa5\xe5\xf3\xbf\x90\ +\x02\x60\xa0\xf7\x88\x05\xe6\x0d\xc6\xf0\x4e\x30\x77\x02\xc9\xca\ +\x66\x98\x84\x25\xf5\x32\xac\xb1\x37\xa2\xd2\x4f\x4d\x95\xb3\xf5\ +\x54\xd0\x7f\x3e\x9f\x2f\xf0\xec\xce\xe7\x78\xe8\xe1\xc7\xd9\xbe\ +\x6d\x07\x77\xb4\xe7\xb9\x7b\xa5\xcb\x75\x5d\x0e\x8e\x13\x6e\xa4\ +\x19\xb2\x4d\x52\x04\x09\x1b\xda\x80\xaf\xc1\xb5\xc3\x12\x5e\x01\ +\x05\x23\xd0\x80\x2d\x05\xca\x18\xa4\x1d\xf6\xfb\x00\x4a\x2a\xd0\ +\xc0\x52\x0a\x14\x86\x27\xcf\x58\xbc\xd2\x6f\x31\xe9\x59\x64\x95\ +\xa4\xd9\x29\x71\xeb\x35\x97\xb3\xf2\x8a\x1b\xd1\x0b\x6f\x22\x91\ +\x6c\xa2\x21\x1e\x0b\x34\x82\x0c\x43\x77\xc2\xc2\x72\x24\x8e\x6d\ +\x63\x0b\x1b\x27\xea\xe0\x5a\x16\x96\x63\x57\xf6\xa0\x2b\x37\x0e\ +\x34\x73\xe2\xf6\x73\xb5\x3e\xb3\xaf\xcd\xe1\x02\xcc\x74\xb7\xa2\ +\x1a\xa0\xf7\x0b\x05\xce\x3c\xf5\x08\xc7\xff\xe5\x9b\x0c\x3d\xfd\ +\x08\xbe\x36\x44\x64\xa0\xb5\xa2\x65\xd3\xbe\x9c\x75\x17\x6a\x77\ +\xa7\x6c\xd2\x97\x63\xf0\x62\x26\xb0\xab\x01\x2f\xc5\xfc\x8b\xac\ +\x7a\xbd\xa7\x24\x44\x6e\xbe\x99\xc7\x9e\x3d\xc9\x81\x03\xe7\x2f\ +\xba\x66\x2e\x5b\xd1\xc9\xeb\x3b\x15\x13\xfd\xf3\x87\xc8\xcb\x24\ +\xdf\x6c\xa1\x30\x3b\x12\x50\x16\x04\xd5\x42\x20\x69\xc3\xee\xe4\ +\x62\x76\xbd\x7c\x26\x58\x6b\xb3\x48\xbf\xf2\xb1\x9e\x75\xbe\x9c\ +\x0d\xf8\xb6\xfb\xae\xc1\x3e\x7a\x90\x89\xf1\x29\x3c\x05\x59\x03\ +\xc3\x1a\x86\x14\x6c\xfe\xd2\xdf\xb3\x78\xf5\x5a\x16\x2d\x59\x52\ +\x65\xb5\x4c\x6f\x5c\xa2\x6b\x92\x99\x66\x47\x47\x4b\xcb\x4f\x7c\ +\x03\x11\xfb\xa7\x0b\xfc\xc3\xb7\x01\xf7\x19\xa3\xef\x07\x9a\x67\ +\xf6\xcb\x33\xe1\x17\x53\xee\x71\x57\x5e\x4d\xa6\x52\x35\x67\x0c\ +\x14\x0a\x05\x5e\x7c\xe9\x15\x1e\x7f\x7c\x1b\x4f\x6d\xfb\x11\xcb\ +\x74\x3f\xef\xbe\x3c\xca\xa7\xee\xb5\xf1\x54\x9c\x35\xed\x16\x43\ +\x59\xc3\x60\x56\xb1\xb6\xdd\xa1\x3f\xa7\x18\xcc\x18\x56\xb6\x5a\ +\x8c\x17\x34\x03\x19\xcd\xea\x36\x9b\xb1\x12\x4c\x14\x7c\x7a\x5a\ +\x2c\x4c\xde\x67\x24\xa7\x59\xda\xe6\x30\x92\x55\x8c\x65\x35\x8b\ +\x5a\x6c\xb2\x79\xc3\x88\x07\x4b\x9a\x1d\xb2\x25\x9f\xaf\xbc\x60\ +\xf1\xaf\xbd\x29\x7e\xe5\xda\x09\xae\x5a\x9d\x62\xf9\xea\xdb\x51\ +\x91\x5f\x25\x95\x5a\x40\x3a\x1e\x25\x11\x8d\x06\xe6\xbd\x5d\xde\ +\xa9\x46\xe2\x38\x0e\xb6\x2d\xb0\x1d\x17\xd7\xb1\x71\x6c\x27\x60\ +\xf2\xcb\x29\x6b\xd5\x64\x5e\x8d\x54\x5b\x73\x11\xf3\x7f\x36\xe8\ +\x01\x74\x28\x4c\xe4\x6c\xd0\x97\x4a\xbc\xf2\xd8\x63\xec\xfa\xee\ +\x77\x89\x3f\xf7\xaf\x08\xbf\x44\x4c\x06\x99\x76\x51\x7b\xda\xa7\ +\x77\xaa\x00\x5f\xce\xb8\x23\x7c\x15\x55\x00\x9e\x41\xde\x99\x99\ +\x89\x37\x62\x3e\xe5\x36\x4b\x18\x64\x0c\x14\xb7\x6d\xe7\xf6\x2d\ +\x57\x13\x8b\x3a\xbc\xf4\xd2\xa9\x9a\xf5\xf8\x00\x63\x23\x19\xac\ +\xd5\x1d\x88\xc1\xa1\x79\xfd\x7e\x39\x0b\xf8\x15\xd3\x5d\x4c\x7b\ +\x41\x33\xee\x2f\x08\x8a\xc0\x08\x2a\x06\xaf\x10\x63\x5c\xe8\x6c\ +\xe0\x5c\xff\xc4\xbc\xbd\x01\xa8\x91\x2f\x00\x90\x88\x47\x29\x78\ +\x25\x2c\x01\xda\x02\x4b\x05\x44\xa0\x05\x0c\x3e\xb7\x9d\x54\x5b\ +\x07\x0b\x17\x2f\x9e\x36\xf5\xc5\x74\x81\xb5\xac\x71\x6f\x05\xd7\ +\x0d\x8c\x8c\x34\x77\xb4\xb4\x8c\xbe\xa6\x05\xc0\xd0\x85\x23\x9b\ +\x0d\xdc\x1f\x9a\xf8\xdd\xe5\x42\x96\x00\xd0\x02\x11\x34\xb2\x0a\ +\xc3\x34\x81\x48\x36\x02\x84\x0c\xe6\x28\x4f\x31\x3a\x31\xc6\xd1\ +\xa3\xc7\x79\xea\xa9\x67\x78\xe2\x89\x6d\x2c\xf6\xcf\xb1\xb9\xdd\ +\xe1\x9b\xd7\xbb\x6c\xe9\x6a\x64\xdf\x88\x4f\x63\x44\xd0\x14\x93\ +\xec\x1d\xf0\x43\xf6\xde\x66\xdf\x70\xc0\xde\xaf\x6e\xb7\x39\x34\ +\xe4\xd3\x14\x15\xac\x6a\xb3\x39\x36\xa6\x88\xc9\x12\xbb\xfa\x6d\ +\x3e\xb3\x3d\x83\xeb\x5a\x2c\x6b\x8b\xd1\xda\x0f\x8d\xa9\x08\xae\ +\x1b\xe5\x85\x23\x1e\x49\xc7\xa3\x3d\xe1\xb1\xeb\xc4\x18\x2b\x3b\ +\x5c\xde\xb0\xb1\x85\xc2\xca\x5b\xb8\xfc\x9a\x5b\x58\xb2\x74\x25\ +\xa9\x78\x8c\x54\x3c\x12\xec\x58\x23\xaa\x80\x6f\x59\xd8\xb6\x8d\ +\x23\xac\x40\xdb\xdb\x16\xb6\xe3\x54\x36\xa3\x9c\x01\xf8\x8a\xe0\ +\xbb\x08\xf8\xe7\xd3\xfa\x35\xb4\xbb\xa8\xba\xae\x95\xe2\x95\xc7\ +\x1e\xe3\xf9\xef\x7e\x97\x3d\x0f\x3d\x84\x37\x39\x89\x0d\x2c\x6f\ +\x8e\xb0\x29\x11\x98\xf9\x65\xd0\x57\x18\xfb\xaa\x94\xda\x4a\xff\ +\x8f\xd9\x60\xaf\x15\xb6\x33\x73\x41\x2f\xcc\xa5\xcd\x4e\x05\x4c\ +\x3e\xff\x02\x37\x6e\xde\x48\x2c\xb6\x86\x67\x76\x1c\xaa\x39\x7f\ +\x62\x3c\x83\x68\x5c\x55\x13\x2c\xd5\x32\xf0\x62\x79\xfe\x62\x96\ +\x6b\x60\x66\x25\x02\x65\xc7\x27\xb9\x6d\xf5\x12\xbe\x33\x9e\x27\ +\x57\x28\xd5\x34\xfb\xad\x1a\xee\x80\x65\x07\xdf\xb7\xe5\xf9\x48\ +\x03\xb6\x0e\x72\x20\x22\x02\x62\x12\x26\x76\x6d\xa3\x70\xc7\xdd\ +\xe4\x32\x19\x12\xa9\xd4\x0c\x8b\x6f\xbe\xa4\x20\x01\x96\x31\xe6\ +\x0d\xc0\x37\x5f\x73\x02\x60\xe8\xc2\xd1\x15\xc0\x3b\x0c\xe6\x9d\ +\x06\x56\xd4\x30\x6f\x82\x5e\x77\x15\x4f\x57\x84\x3b\xe5\x04\x55\ +\x6f\x61\xb3\x9d\xb0\xd3\x2d\x3c\xf2\xe8\x13\x7c\xf6\xb3\x5f\xe4\ +\x83\xeb\x0c\x5f\xbb\xca\x65\x79\x53\x8a\xa0\x2d\x9f\x60\x20\xa7\ +\x68\x8d\x49\x14\x30\x98\xd3\xb4\xc6\x25\x3e\x30\x90\xd3\x34\x45\ +\x83\xca\xba\x81\x8c\xa2\x39\x26\x90\x96\xa6\x77\x32\x4f\x3e\xe7\ +\xf1\xb5\x53\x69\x9e\x2d\xae\x65\xf5\x15\x6b\x58\xb6\x76\x35\x8b\ +\x16\x2f\xa6\xa3\x31\x41\x4b\x53\x33\x0a\xc1\x02\xa0\x94\x1d\xa7\ +\x38\x31\xc8\x78\xef\x49\xf6\xc7\xe3\x24\x97\x6c\xe2\xde\x78\x9a\ +\x74\x3c\x4e\x22\x16\x82\xde\xb2\xc2\x8d\x2c\x02\x42\xcf\x0e\xdb\ +\x5f\xbb\x8e\x8d\xe3\x04\xd7\x83\xb2\x50\x51\xb5\xf9\x67\x6d\x7f\ +\x7e\x3a\x43\xcf\xd4\x64\xf7\xe7\x8d\xd5\x9b\x72\x03\xf1\x60\x9c\ +\xdc\xbd\x9b\x6d\x7f\xff\x0d\x76\x7d\xfb\xdb\x14\xc6\xc6\x70\xc3\ +\x2f\x3a\x16\x2e\xe0\xd1\xd1\x22\x56\x14\x1a\x9d\x99\xa0\x97\x55\ +\xe6\xfb\x1c\xf3\x7e\xbe\x58\xbd\xb8\x74\x75\x5d\xcd\x73\xb3\x4e\ +\x4e\xbe\xb2\x87\xab\xd7\xaf\x81\x1b\x57\xf3\xcc\x8e\xc3\x33\xf2\ +\x00\xca\xcc\x79\x4e\xba\x73\xdc\x8b\xf9\xb8\x80\x6a\x61\x30\x23\ +\x84\x27\xaa\xc9\x53\xe6\x98\xe0\xa2\xf7\x34\xb7\x5f\xbf\x9a\x87\ +\x9e\x3a\x5c\xc9\x14\xd4\xb3\x9e\xc3\x6c\xc0\xc6\xe3\x0e\xc2\x09\ +\xfa\x38\xca\xb0\x90\xc1\xd6\xe0\x1a\x88\x29\x18\x3c\x7e\x04\x6f\ +\x6a\x82\xb1\xd1\x51\x12\xc9\xb9\xa9\xc1\xb2\x56\x64\x20\x90\x2e\ +\x77\xbe\x26\x05\xc0\x63\x4f\xbf\xf0\xbb\xc9\x44\xec\x77\x92\xc9\ +\x38\x89\x58\x84\x96\xe6\x46\xd2\xa9\x78\xa5\xc0\xc5\x54\x76\xbf\ +\x96\x94\xc3\x7b\xa6\xbc\x53\x8e\xf2\x10\x96\x15\xe4\xeb\x87\xf9\ +\xec\x6f\xbb\xef\x5e\xd6\x5f\xbe\x96\xaf\x7e\xed\x1b\x6c\xdb\xf1\ +\x18\x6f\xbe\xcc\xe5\x77\x36\xc7\xe9\xcf\x68\xfa\xb2\x9a\x35\xad\ +\x36\x83\x79\x4d\x5f\x4e\xb3\xa9\xdd\xe6\x7c\x46\x33\x98\x31\xac\ +\xeb\xb4\xb9\x30\xe5\x33\x59\xd0\x2c\x4c\x14\x78\x71\xd0\xe6\x54\ +\x74\x3d\x0b\xb6\xbc\x9e\x7b\xdf\x7d\x2b\xbf\xd5\xd9\x4d\x2c\xea\ +\x92\x2f\x14\x89\x44\xa2\x94\x4a\xa5\xa0\xad\xb6\xe7\xa1\x8c\xc1\ +\xb6\x1d\x4c\x24\x4d\x47\xeb\xff\xcf\xdd\x9b\xc7\xc9\x71\x5d\xf7\ +\xbd\xdf\x7b\x6f\x55\xaf\xb3\x00\x33\x98\xc1\x4e\x10\x20\xc4\x05\ +\xdc\x09\x5a\x12\x28\x6a\x7f\x5a\x28\xc9\x8a\xad\x38\x71\x9e\xa3\ +\x24\xd6\x7b\x8e\xed\x24\x72\x9e\xf3\x49\x5e\xe2\xe4\xd9\x79\xde\ +\x63\xc7\x89\xbc\x5b\xb6\xac\x44\x8e\x43\x4a\x96\xe5\x27\x47\x92\ +\x25\x92\x96\x64\x6b\x97\x4c\x71\xdf\xb0\x91\x00\x41\xac\x33\x18\ +\xcc\x4c\xcf\x74\x4f\x2f\x55\xf7\xde\xfc\x71\x6f\x55\xdd\xea\xe9\ +\x01\xe9\x67\xc9\xb1\x34\xf8\xf4\xa7\x31\x35\xdd\xd5\xd5\x55\x75\ +\xce\x3d\xe7\x77\x7e\xe7\x77\xf6\x31\x5e\xab\x32\x31\x56\xa7\x92\ +\x21\xf5\x4a\xa2\xc8\x8c\x5e\x21\xe3\x88\x6a\xa4\xdc\x48\xea\x38\ +\x2a\x46\x59\xf9\x68\x87\x60\xb5\x5f\xb7\xea\xdb\x21\xf4\xde\xda\ +\xd1\x25\xbd\x0d\xc0\x3c\x8b\x60\x75\xe1\x22\x5f\xfc\xd0\x1f\xf0\ +\xa5\x0f\x7e\x90\xb9\xa7\x9e\xcc\x57\xf4\x09\x40\x09\x41\x6c\x6d\ +\xc1\xc0\x13\x82\xc3\xed\x0a\x6f\xa8\xf7\xf3\x6d\xbe\x4f\xaa\x64\ +\xfc\xc3\x2b\xf8\x28\xa3\x17\x23\x56\xdb\x17\x0a\xfd\xc5\x06\x6d\ +\x77\x2b\x8f\x1f\xe6\x3b\xae\xbd\x8a\xc1\xcb\x5e\xc2\x43\x7f\x71\ +\x7c\x9d\xd1\xad\x0c\x04\x13\x5e\x76\xf1\x72\xe1\x78\xe8\x0c\x4a\ +\x51\x80\x0d\xd0\x7b\x51\x38\x01\x85\xc3\x83\xb2\xc3\xda\x7e\xe6\ +\x08\xb7\x1e\xdc\xc7\x43\x0f\x9e\x58\xf7\x1d\xf3\x88\x21\xf8\x92\ +\xf5\x5a\x15\x61\x3c\xe9\xcc\xe3\x24\x59\xe3\xd2\x98\x82\x45\x03\ +\x17\x1f\xf8\x12\xe3\xb3\xdb\xd8\x75\xc5\x9e\xc0\xb1\x15\xee\x64\ +\x9d\x63\x13\x82\x54\xdb\x37\xcf\x2d\x5c\x52\x5b\xb7\x4c\xeb\x6f\ +\x29\x07\x60\x8c\x7d\xcf\xca\xea\xda\xd9\x95\xd5\xb5\x57\x03\xaf\ +\x3e\x7e\xe2\x6c\xbd\x5a\xad\x30\x33\x3d\xc9\xb6\x6d\xd3\x4c\x8c\ +\x35\xfc\xcd\xaf\xbd\xa1\x7b\x46\xb5\x71\x5d\x79\x3a\x31\x0e\x74\ +\xb3\x26\x57\xa3\xb9\xe6\x9a\xab\xf9\xc5\x5f\xfc\x69\xbe\xf2\x95\ +\xb7\xf1\xcb\xbf\xfc\x1b\x3c\x72\xdf\x09\xfe\xd9\x6d\x75\x6e\x98\ +\x89\x78\xe2\xa2\x66\x73\xc3\x85\xf7\x0f\xce\xa7\x6c\x6d\x0a\xae\ +\x9e\x51\x1c\x9e\x4f\x69\xc8\x2e\x2b\xfd\x88\x8f\x37\x5f\xc7\xec\ +\xdb\xff\x2e\xaf\xbe\xe9\x15\x28\x55\x4c\x90\xed\x0d\x52\xe2\xb8\ +\x42\xaf\xd7\xcd\x8d\x72\xa5\xd3\x65\xad\xd7\x23\x8e\x14\xe3\xcd\ +\x3a\x13\x8d\x2a\x4a\x46\xc8\x48\x12\x09\x89\x8c\x14\xca\x3f\x57\ +\x7d\xf8\x57\xf1\x6d\xb7\xf8\x09\xb5\x59\x9a\x83\xef\x4d\xb0\x23\ +\x90\xfd\xb0\x41\xa7\xac\x98\x33\xb4\xda\x8b\xd1\x86\x9f\x0e\x06\ +\x3c\xf8\xa9\x7b\xf9\xd2\x3d\x77\xf3\xc4\xfd\xf7\xe7\x2b\xfd\x18\ +\x10\x0b\x41\x64\x2d\x11\x8e\x14\x25\x3d\x2e\x20\x7c\x9a\xb0\xbc\ +\xd2\xe7\xc2\x54\x95\x3d\x95\x42\x1b\x4f\xc8\x0d\x56\x73\x39\x94\ +\xdb\x8f\x30\x5e\x79\x99\x15\x5e\x8c\xf0\x06\x1b\x39\x97\xd5\xa3\ +\xcf\xf2\xaa\xeb\xae\xc6\xdc\xb6\x97\xc7\x1e\x3e\x59\x0a\xbf\x3b\ +\x9d\x3e\xdb\x2b\x8a\x76\xff\xf2\xf6\x60\xc5\x08\x5d\xbf\xb0\x23\ +\xd2\x1b\x69\xc6\x25\xb3\xa2\x50\xe9\xb2\xc0\x9a\x85\xdb\x58\xe4\ +\xc2\x9e\x19\x4e\x9f\xba\xe8\xb0\x85\x00\x04\x34\x41\xc9\x4e\x00\ +\xf5\x46\x15\x7a\x7d\x32\x65\x70\x0d\x48\xe5\x1a\x99\x2a\xd6\x61\ +\x01\x2b\x0f\x7e\x91\xde\xeb\xdf\x4a\xb7\xd3\xa1\x31\x36\x96\x3b\ +\x10\x71\x99\xd2\xa5\x10\x62\xca\x5a\x7b\x08\xf8\xd2\xb7\x6c\x15\ +\xe0\xee\xbb\xef\x56\xc0\xab\x71\xfa\x7b\xff\x00\x18\x9b\x18\x6f\ +\xb0\x6b\xc7\x2c\x33\xb3\x53\x1e\x0b\x30\x58\xed\x00\x99\x4c\xf7\ +\x1e\xdc\xa0\xcc\xac\xdc\x67\x6d\xe1\xc2\xd7\xd6\xba\x7c\xe0\xf7\ +\xee\xe1\xfd\xef\xff\x6f\xfc\xfc\x2b\x22\xbe\xf3\x9a\xaa\x43\xef\ +\x85\xeb\xe6\x4b\x2c\x44\x18\x4e\x2e\x74\x38\x35\x7e\x13\xbb\xdf\ +\xfc\xcf\xd9\x75\xf3\x1d\xe8\xc1\x80\x38\xae\x62\xad\x45\x49\x81\ +\x46\x30\xe8\xf5\xf3\xc1\x18\x4b\x2b\x6d\x52\xad\x69\x56\x2b\x8c\ +\x37\x1b\xd4\xe2\x18\xa5\x7c\xbb\xad\x90\xce\x01\xf8\x1a\x7e\x14\ +\xf9\x30\xbf\x12\x11\xa9\xd8\x51\x90\x85\xc8\x15\x06\xca\xac\xbc\ +\xe2\x79\x38\x9f\x0f\x1d\x80\x18\x55\xcb\x17\xeb\x43\xfe\x13\x8f\ +\x3e\xca\xe7\xef\xb9\x87\x07\x3e\xf2\x11\x06\x4b\x4b\xc4\xd6\x12\ +\x0b\xe1\x50\xfb\x2c\x97\x67\x34\xd7\x3e\xcc\x63\x2b\xb5\x88\xef\ +\xde\x99\x10\xcb\x11\x79\xbb\x2c\x97\xf1\x42\x23\x1a\x15\x0e\xbf\ +\x60\x1a\x60\x37\x0e\xff\x47\x39\x8e\xc9\x9b\x6f\xe0\x93\x8f\x2e\ +\x71\xec\xd8\xb9\xa2\x14\xf8\xea\xeb\xb8\xcd\x9c\xa7\x33\xbf\xf4\ +\xe2\x6a\xfe\x62\x34\x19\xc8\x86\x0e\xc1\x06\x15\x81\xa1\xaa\x81\ +\xda\x73\x25\x7f\xf0\x95\x73\xf4\xbb\x49\x49\x05\x18\x1f\x01\x08\ +\x1f\xb9\x5e\x7b\x60\x37\x87\x6e\x9c\x65\xf9\xab\x5f\x77\x63\xdc\ +\x3c\x5f\xa1\x6f\xa1\xad\xe1\x82\x86\xf9\x14\x6e\xff\xb5\xbb\xd9\ +\x7b\xe0\x06\x76\xee\xbe\xc2\xb5\x69\xb3\x7e\xb2\xd0\x70\xaa\x9c\ +\x1a\xf3\x4b\x5b\xb7\x4c\xff\xeb\x6f\x8b\x32\xe0\xdd\x77\xdf\x3d\ +\x89\x1b\xbc\xf1\x6e\xe0\x40\x25\x8e\xd9\xbb\x67\x1b\x5b\x67\x37\ +\xa3\x33\x9a\xa6\x9f\x78\xe3\x90\x7f\x97\xd9\x6a\xab\xc1\x0a\xe7\ +\x08\x8c\xf5\x5a\xfb\x96\x0f\xc3\x51\xc8\x00\x00\x20\x00\x49\x44\ +\x41\x54\x47\x1f\x7d\x92\x9f\xfb\xf9\x5f\xe2\xbb\x67\xce\xf1\xfd\ +\x37\x57\x99\xef\x58\xae\x9b\x8d\x98\x5f\xed\xf1\xe5\xe7\x53\xc6\ +\xef\xf8\x7e\xf6\xde\xf5\x4f\xa8\xd5\xaa\xa4\xa9\xce\x4f\x7a\x26\ +\xb6\x61\x81\x6e\xbf\x4f\x7b\xad\x87\xb1\x96\x89\x7a\x8d\xf1\x66\ +\x2d\x0f\xe1\xf3\x50\xdf\x97\xf2\xe2\x4a\x84\x8a\x14\xb5\xb8\x42\ +\x14\xb9\x06\x1d\x20\x6f\xc8\x09\x8d\xb9\x08\xeb\xed\xc8\xba\xbe\ +\xb5\xeb\xc7\x5e\x0d\xcf\xb1\x0b\xef\x87\x95\x85\x05\x3e\x77\xcf\ +\x3d\x7c\xe5\xc3\x1f\xe6\xfc\x53\x4f\x51\xf5\x61\x7d\x2c\x44\x6e\ +\xf4\x51\x10\xe2\xe7\xab\xfd\x90\xd1\x0f\x5f\xfc\x9b\xf6\x8c\x71\ +\x73\xbc\xb2\xce\x00\x5f\x4c\x2e\xff\xa2\x43\xfe\x0d\xee\x32\x61\ +\x2f\x8f\x0d\xd4\x6e\xbc\x89\x8f\x7c\xfe\x79\xe6\x2f\xba\xe3\xbb\ +\xe1\xc6\x2b\x78\xdd\x76\x4d\xe7\xd4\x69\x82\x0c\x29\x77\x58\x36\ +\x4c\xea\xb3\xdf\x45\x61\xd0\x25\x00\x50\x04\x29\xc1\xd0\x76\x6c\ +\x21\x0f\x77\x7a\xdb\x4b\xf8\xb3\xaf\x3c\x5b\x2a\x03\xda\xa1\x2f\ +\x74\xdb\xc1\xab\xb8\x71\x57\x9d\xd5\x47\x1e\x23\x43\xb2\x0c\x90\ +\x18\x17\x4d\x2c\xa4\x70\x26\x85\xdd\xff\xf0\xdd\xec\x7f\xeb\xdf\ +\xe6\xfa\x9b\x6e\x76\xf3\x14\x44\x19\x51\x18\x05\x06\x26\xa9\x7e\ +\x7e\xeb\x96\xe9\x3d\xdf\x76\x44\xa0\xbb\xef\xbe\xfb\xad\xb8\x11\ +\x5c\x07\x9a\xcd\x3a\x7b\xaf\xd8\xce\xc4\x64\xd3\x4d\xc1\x11\x4e\ +\xfe\xca\xfa\xc1\x93\xda\x18\xa4\x10\xce\x31\x78\x97\x3d\x48\x53\ +\x94\x90\x2c\x2e\xb7\xf8\xb5\x5f\xfb\x4d\x6a\xcf\x7c\x86\x7f\x7c\ +\x7b\x93\x9a\x49\x78\x72\x59\x30\xf1\x96\x7f\xcf\xf5\xaf\xfe\x5b\ +\x5e\x44\xb3\x50\xd2\x4d\x92\x04\xa5\x24\xed\xde\x80\x4e\xb7\x97\ +\x8b\x6b\x8c\xd7\x5d\x09\xcf\x85\xf9\x2e\xb7\x97\x91\x03\xf0\x22\ +\xa9\xa8\x78\xb5\x9d\x4a\x25\x0a\x86\x59\xfa\x32\xde\xf0\x2a\x5f\ +\x02\xf0\xec\x50\x8e\x5f\x3c\x1b\x23\x10\xd2\x5e\x76\xca\xcd\xe9\ +\x47\x1f\xe0\xf8\xe7\x3e\xc5\xdc\x23\x5f\x66\x6d\xb1\xcd\xc5\x73\ +\x97\x58\x38\xbd\x88\x4d\x52\x22\xef\x00\x94\x0f\xf3\xd5\x50\x68\ +\xaa\x5e\xc4\x45\x97\x4a\xf2\x77\xf6\xa4\x54\xd5\xc6\x06\x3e\xf2\ +\x77\xf1\xc2\x46\x5e\x5a\xf5\xff\x12\x77\x5f\x69\xf3\xcd\x07\xf9\ +\xd0\x27\x9e\xa6\xb7\xd6\x63\xd7\xbe\xad\xbc\xe3\xa6\x09\x56\x8f\ +\xb8\x2e\x3e\x2b\x87\x0a\xf3\xc1\x0e\xb2\x55\x3d\x0b\xf1\x73\x06\ +\xa0\x59\x1f\x11\x20\x4a\x0d\x95\x6e\x26\x83\x7f\xae\x29\xc9\xa7\ +\x07\xb3\x9c\x3c\x31\x5f\x94\x1a\x33\x67\xe0\x17\x91\x57\xbf\xe6\ +\x00\xfb\x9a\x29\xab\x4f\x1d\xce\x23\x0a\x6d\x9d\x23\xe8\x5a\x68\ +\x69\x78\x3e\x81\xf8\x25\xd7\x73\xed\xbf\xf9\x05\x6e\xbe\xe5\x56\ +\x1a\x8d\xb1\x5c\xf7\x71\xe4\x38\x71\x9b\x3b\x00\xc0\xec\x99\x9d\ +\xd9\xf2\x4d\x61\x05\xaa\xff\x55\x0e\xe0\xa3\x1f\xfd\xe8\xf1\x77\ +\xbc\xe3\x1d\xbf\x03\x5c\x48\x92\xf4\xd0\xfc\xc2\x52\xbd\xdb\xeb\ +\x33\x39\x39\xe1\xf2\x7f\xa3\x9d\x5a\xae\xf1\xca\xb8\x16\x84\x90\ +\x18\xad\x7d\xd3\x8f\xbb\x72\x4a\x45\xbc\xea\x95\x77\x32\x67\x37\ +\xf1\xa3\xff\xf5\xab\x28\xa1\xd9\xf5\x77\x7e\x8a\x5b\x5e\xf3\x5d\ +\x2e\x7d\xd0\x29\x19\xc9\x28\xd5\x9a\xd5\x6e\x8f\x56\x7b\x0d\x01\ +\x4c\x8d\x8f\x31\x35\x3e\x46\xa3\x51\x75\x53\x6b\x23\xd7\x67\x1f\ +\x29\x17\xda\x57\xa2\x0a\xf5\x7a\x85\x7a\xad\x46\xad\x56\xa1\x5a\ +\x71\x29\x41\x36\xe7\x6e\xbd\xe1\xdb\x21\x4e\xc3\x7a\xe0\x2f\x34\ +\x70\xe1\x1b\x95\x44\xfe\x77\xf7\x87\xee\xf2\x22\x4f\xdc\xf3\x7e\ +\x3e\xff\x6f\x7e\x88\x23\xff\xf5\x57\x31\x4f\x7c\x9d\x4d\xc2\xb0\ +\x7d\xc7\x34\xd7\x5f\xb3\x8b\xdb\x6f\xbd\x92\x5d\xb3\x93\xc4\x16\ +\x3a\xad\x35\x14\x02\xe5\x07\x75\x48\x51\xfc\x9f\xe0\x21\x82\x47\ +\xf8\x3b\x16\x56\xab\x63\x5c\x55\x1d\xe4\x6c\x3e\x19\x12\x7d\x86\ +\x1e\x59\x41\x43\x0c\xbf\x66\x28\xd5\x90\x76\x48\x7c\x53\x8e\xd8\ +\x17\x94\xe4\xbf\x72\x1a\x71\xf0\xbe\x78\xe1\x3c\x57\xbc\xe2\x36\ +\x8e\x1c\xbd\x80\x88\x14\xb7\x1e\xd8\x4a\x72\xee\x7c\xa1\x00\x2c\ +\x8a\xd2\x64\x76\x47\xdb\x51\x55\x0c\x51\xb0\x15\x45\xf0\x3e\x25\ +\x8b\xef\x62\x02\x67\x92\xbd\x2e\xb5\x96\x9d\x5b\x1a\x3c\x7b\x29\ +\x25\xf5\x44\xb4\xec\xfc\x59\xff\x7c\xe0\x86\x2b\x18\xeb\xae\x92\ +\x2e\x2e\xe5\x20\x60\xe6\x54\x32\x70\xb1\x23\x60\x75\xfe\x22\xb3\ +\x6f\x7a\x07\xcd\xf1\x71\xc6\xc7\xc7\x7c\x9f\x47\x98\x9e\x0d\x79\ +\x4c\xe1\xef\x11\x6b\x8f\xff\xd2\x2f\xfd\xc7\x07\xbf\xe5\x89\x40\ +\xc3\x3f\xef\x7c\xe7\x3b\x35\xf0\xde\xbb\xef\xbe\xfb\x83\xc0\x4f\ +\x2d\x2c\xb4\xfe\xaf\xd5\x95\x35\xf6\x5d\xb9\x83\x46\xb3\x96\xe7\ +\xd4\xda\x18\xac\x4f\x0d\xb2\x34\x21\xd5\x2e\x1d\x50\xca\x49\x79\ +\xbd\xfd\xed\x6f\x63\xc7\xce\xed\xfc\xfc\xcf\xfe\x12\xcd\xd3\x8b\ +\xdc\xea\xc3\xfc\x6e\x7f\x80\x8a\x62\x56\xd7\xba\x74\xbb\x3d\xea\ +\xd5\x2a\x5b\xa7\x26\xa9\x55\x23\x94\x28\x80\xbd\xac\x5c\xa7\xa4\ +\x53\xcf\x8d\x94\x9b\x79\x57\xa9\xb8\x11\xd6\x25\x1d\x3d\x63\x82\ +\x5a\x7e\xe0\x04\x02\x23\x5e\x9f\xe7\xdb\x17\xcc\xef\xcf\x3c\xf8\ +\x15\x9e\xba\xe7\xfd\x9c\xb9\xff\xa3\x28\x6b\x69\x0a\xd8\x1a\x41\ +\xc3\xa6\xd4\xe7\xce\x52\x9b\x3b\x4b\x73\xf3\x38\xd5\xdd\x7b\x98\ +\xd9\xb7\x93\x9b\x0f\xec\x26\xe9\xf7\x79\xfa\xf1\x33\x3c\xf9\xf0\ +\x49\x3a\x6b\xbd\x17\xbf\x82\x07\x3f\xa7\xe7\xd6\x58\x6e\xc6\x6c\ +\x56\xc9\x65\x57\xf9\x17\x5a\xad\x4b\x0b\x99\x7c\xe1\x68\xc0\x0e\ +\x23\xf8\x23\x6a\x6c\xa9\x86\xd9\x67\x1f\xe5\xf6\xdb\xf7\xf1\xd4\ +\xe1\xf3\xa8\xac\x8c\x16\x18\x59\xf6\xbe\x5c\xbf\x35\x58\xd1\x11\ +\xae\x1d\x38\x23\x2a\x65\x61\xbf\xc1\x39\xb3\xbc\x24\xe8\x9b\x98\ +\xfc\xba\x92\x8b\xa0\x08\x20\x5a\x98\xe7\xe0\x0d\x7b\xf9\xe2\x43\ +\xcf\x17\x65\x3b\x8a\xfd\x8c\x35\xab\xd8\xa5\xbe\x73\x72\x5e\x1f\ +\x02\x3f\x2b\x22\x32\x8e\x4d\x39\x66\x61\x49\xc0\xf2\x53\x8f\xb0\ +\xb4\x75\x2b\xdb\xb6\x6d\x5f\x17\x36\x89\xa0\x30\x5e\xf0\x2a\x24\ +\x60\xee\x04\xde\xfb\x6d\x95\x02\x8c\xfa\xf9\xe2\xe7\x3f\xfd\xe3\ +\x17\xe6\x16\x7f\xba\x3f\x48\xc4\xb6\xad\x53\x6c\xdd\x3a\x9d\xe7\ +\xc2\xc6\x98\x7c\xea\x8d\x93\xc9\x96\xa4\x3a\x25\x8a\xdc\x88\xec\ +\x6c\x6a\xcf\xc9\x93\xcf\xf1\x53\x3f\xf9\x73\xbc\xe1\x4d\x6f\xe5\ +\x9d\xef\xfa\x01\x3a\xfd\x3e\xfd\x41\xc2\x58\xad\xca\xc4\x58\x8d\ +\x4a\x1c\x3b\x6a\x6e\x24\x73\x15\xde\xec\xf7\xc8\x8b\x69\x66\xa5\ +\x3c\x81\x40\x7a\x42\xd2\x3a\x63\x0e\x73\x7e\x6b\x47\x02\x7d\xe5\ +\x3c\x75\x74\x67\x5e\x6f\x79\x89\xc3\x7f\xfc\x21\x8e\x7c\xf8\xbf\ +\xd2\x79\xee\xb8\x63\xe7\x09\xa7\x6b\x5f\xf7\x5c\xfc\x9a\x74\x9d\ +\x74\x4a\x14\x00\x5f\x04\x54\xb7\xcd\x12\xed\xdb\x87\xda\xba\x0d\ +\x89\xe0\xe4\xb3\x17\x78\xec\xa1\x93\x9c\x39\xbd\xf0\x82\x17\x78\ +\x78\xfb\xcc\xe6\x06\x6f\x9b\x5e\xd9\xb8\x12\xf0\x62\x6e\x98\x11\ +\xc8\xbf\x18\x1d\xa1\x6f\x8c\x09\x8c\x54\xf5\x80\x78\x6a\x8a\x3f\ +\x7e\x5e\xf2\xf7\xff\xde\x4b\x69\x7d\xf2\x53\x65\x7a\xaf\x28\x8c\ +\x31\xd4\x01\xb4\x01\x03\x90\xa1\xd7\xe3\x57\xfc\xe1\xfd\x64\x58\ +\x81\xb1\xc5\xfe\xac\x00\x55\x89\xf8\xe4\xf2\x66\x2e\x9c\x5f\x72\ +\x9d\x9f\xd6\xe6\x87\xfa\x0f\x7f\xe8\xf5\xa4\x0f\x7c\x9d\xc1\xe2\ +\xa2\x7b\xaf\xff\x6c\xed\x69\xe7\x5d\x03\x4b\x06\x9e\x4b\x61\xec\ +\x65\xaf\xe5\x25\x3f\xf8\xaf\xb8\xed\xe0\xed\xd4\x6b\xb5\x75\xf2\ +\x6a\x23\xd4\x18\x18\x0c\x92\x45\x60\x76\x76\x66\x8b\xfe\xb6\x8a\ +\x00\xc2\x9f\xc5\xb9\x67\xde\x0c\xfc\xbb\xfd\x7b\x77\x8a\xc7\x9f\ +\x3e\xc1\x85\xb9\x45\x3a\x6b\x5d\xf6\x5c\xb1\xdd\x19\x95\xb1\xa8\ +\x48\x32\x18\xa4\xbe\xc4\x66\x90\x4a\xa1\xb5\xa6\xdf\x1f\xa0\x8d\ +\xa5\x5a\x89\xd9\x7d\xc5\x6e\x7e\xee\x17\x7e\x8e\xa3\xcf\x9e\x63\ +\x69\xb5\xcd\x58\xbd\xc6\x96\x99\x71\x62\x99\x89\x67\x16\x25\xbc\ +\x22\xbf\xcf\x50\x7d\x97\xe7\x0b\x1f\x13\x8a\x8c\xb8\x53\x5a\xe9\ +\x6d\xc1\x22\xb3\xb6\x9c\xdb\x6f\x80\xf0\x17\x92\x25\x85\x13\x98\ +\x3f\xf2\x38\x8f\xfd\xfe\xef\x70\xf2\x4f\xfe\x90\x38\x1d\xd0\x90\ +\xb0\x2d\x82\x86\x74\xec\xb1\x8a\x74\x0e\x20\xce\xba\xee\xb2\xc6\ +\x9b\x60\x55\x4e\xe6\xe7\xd1\x73\xf3\xc4\x15\x49\xb4\x6f\x3f\xfb\ +\xf6\x5f\xcd\xfe\x6b\x76\xb0\x74\xa9\xcd\x63\x0f\x9d\xe4\xc8\x53\ +\xa7\x49\x92\xf4\x45\x19\xef\xa5\xe5\x2e\xcf\x6d\x1e\xe3\x2a\xd1\ +\xbe\xac\xd1\x8b\xcb\x78\x07\xf1\x42\xbe\x41\x14\x30\xba\x08\xc3\ +\xf5\x12\xbc\x3e\x94\x98\x6a\xaf\xbc\x7b\x69\x91\xd7\x5d\x7f\x0d\ +\x54\x2a\x39\x71\xa6\x18\xc7\x1e\xbc\xcd\x04\x3d\x01\xb2\xf8\x70\ +\xa3\x09\x34\x0d\x3d\x75\x58\x82\x4e\x83\xc8\x40\x94\x73\xfc\x8c\ +\xb5\x29\x05\xd8\x41\xca\x2b\xf7\xc4\x7c\xe4\xa2\x42\x18\x87\xfe\ +\x4b\x6b\x51\x91\x22\xae\x54\x48\x93\x41\x1e\xc0\x0c\x47\x12\x11\ +\xee\x5a\xd6\x25\x74\x1f\xff\x1a\x5a\x6b\x5a\xad\x16\x71\xb5\x8a\ +\x92\x72\xf4\x39\x2c\x45\x53\x72\xca\x18\x73\x23\xf0\xe8\xb7\xa5\ +\x03\xb8\x74\xe1\xf8\xdb\xad\xb5\x1f\x01\x2a\x95\x4a\xcc\xc1\x5b\ +\xae\xe1\xd4\xf3\x17\x38\x72\xfc\x79\x8e\x1d\x3f\xcd\xce\x9d\x33\ +\x54\xab\x11\x69\xdf\xa0\x94\x62\x90\xa6\x0e\x24\x14\x06\x93\xba\ +\x5b\x48\x49\x41\x92\x68\x7a\x54\x18\xdb\xb2\x87\xd7\x5c\x71\x0d\ +\xe3\x8d\x1a\x91\x54\x44\xb1\x42\x2a\x55\xaa\xe1\xab\x58\xb9\xf9\ +\xf5\x51\x26\xb1\x15\xfb\x30\xd1\x77\xe3\x19\xeb\x44\x43\x43\xc3\ +\x1f\x5e\xed\x4b\x0a\x3c\xa3\x43\xfd\xac\x5c\x64\x7c\xf5\xe1\xe8\ +\xbd\xff\x83\x27\x3f\xf8\x3e\x2e\x3d\xf2\x35\x1a\x02\xa6\x24\xd4\ +\x23\x18\x93\xd0\xf0\xad\xb7\x35\x20\x56\x4e\xfc\x32\x62\x7d\xae\ +\x2d\xc2\x72\x9c\x00\x93\x18\x92\x63\xc7\x48\x8f\x1d\xa3\xb2\x63\ +\x3b\x93\x57\xed\xe7\x75\x6f\xbe\x89\x57\xbc\xf6\x00\x87\x9f\x3c\ +\xcd\xe3\x5f\x7f\x96\xe5\xd6\xda\x0b\x46\x01\x0f\xcd\xc1\xfe\x1d\ +\x65\x27\x33\x0a\xfc\x5b\xb7\xca\x0f\x95\xdd\x36\x42\xf7\xad\x09\ +\xd2\x8a\xe1\x70\x5f\x52\xe2\xe5\xe6\x61\x7c\x60\x1f\x53\xa7\x8f\ +\xc2\x0d\x7b\x5d\xee\x1e\x18\x2d\x26\x28\x55\x06\x00\xa0\xf4\xce\ +\xc0\x04\xc6\x6c\x83\x1c\xdf\x04\xfb\xb1\xc1\x71\x19\x8f\x61\x58\ +\x4f\x10\xca\x6e\x8b\x89\x8b\xe7\xb8\x61\xff\x6e\x9e\x3c\x3e\x9f\ +\x53\xd7\xc7\x26\xeb\x4e\x8b\xb1\xdb\xcb\x31\x89\x8c\x57\x90\x1a\ +\x17\xb1\x69\x09\x55\xed\xae\xef\xf2\x5a\x97\xf6\xf3\x27\x58\xde\ +\xba\x95\xe9\x99\x99\x0d\xa9\xcd\x61\x09\x33\x92\x92\x41\x6a\xde\ +\xfc\x6d\xe9\x00\x2e\x5d\x38\xfe\x76\xe0\x23\x20\x2a\xee\xa2\xbb\ +\xd0\x6a\xcf\xee\xad\x34\xea\x55\x1e\x7e\xec\x18\xa7\x4f\xcf\xb1\ +\x6b\xd7\x2c\x71\x1c\xa1\xb5\x41\xa7\x1a\xa4\x45\x18\x89\xc5\x55\ +\x09\xb4\xac\xa3\x65\x85\x89\x7a\xcd\x29\xe7\x4a\x55\x5a\xf1\x33\ +\x6d\x3d\x19\x49\x2a\x4a\xba\xd1\x58\x3e\xd4\xcf\x72\x7c\xeb\x15\ +\x85\xca\x2b\x7d\x39\x02\xc8\xf8\x08\x25\xb4\x3f\x37\x7c\xb1\xae\ +\x94\x87\xb5\xb4\x2f\x2d\xf0\xe4\x1f\xfe\x1e\x4f\xdd\xf3\x3e\xd2\ +\x4b\xf3\x34\x15\xcc\x46\xae\x11\xa7\xa1\xdc\x8d\x51\xc3\x75\x28\ +\x66\xaa\x3a\x79\xfd\x5e\x96\x41\xb6\x51\x21\x76\xb8\x2a\x0f\x2e\ +\x9c\x47\x5c\x38\x8f\x19\x1b\x23\xde\x7f\x35\xb7\xde\xb6\x97\xdb\ +\x5e\xba\x8f\x67\x8e\x5c\xe0\xeb\x5f\x39\xca\xfc\x85\xe5\x0d\x1d\ +\x41\xa7\x3b\xe0\xb0\xd8\xc2\x0d\x62\xe1\x85\x8d\x3e\xcc\xe1\x87\ +\x94\x79\x09\x57\x60\x33\x22\x7a\x90\x43\x2b\xdd\xf0\x4e\x6d\x60\ +\xdc\x01\xe1\x40\x5b\xe8\x7f\xed\xab\x6e\xbb\xef\xf0\xb4\xba\xa8\ +\xe5\xe7\xfb\x0e\x5e\x1f\x92\x99\x64\x16\xde\x13\x38\x23\x15\x74\ +\xf5\xd9\x62\xe5\x16\xaa\xd8\x8f\x29\xba\xce\xb9\x25\x5e\xe2\x99\ +\xc8\x0d\x61\xd5\x42\xd0\x9c\x68\x42\x9a\x62\x6c\x8a\xf4\xd3\xa5\ +\x70\x83\xa0\xdc\xa1\x47\x4e\x33\x21\xb1\xd0\xb4\xae\xf7\x62\xf9\ +\x91\xaf\xd1\x7a\xc9\x75\x18\x9d\x42\x1c\x0d\xad\xf8\x21\x41\x28\ +\x63\x09\x0a\x84\xb0\xaf\x03\x7e\xe1\xdb\x0a\x03\xb8\x34\xf7\xcc\ +\x9b\x85\x9b\xd3\x57\x29\x21\xe8\xbe\x57\xe0\x91\x47\x1f\xe7\x5f\ +\xff\xbb\x9f\xe1\x5f\xfe\xc8\x0f\x13\x37\x37\xb3\x6b\xd7\x0c\x51\ +\xe4\x22\x00\xad\x0d\x51\x14\xd1\x4b\x04\x89\xa8\x32\x51\x6f\x30\ +\x56\xaf\x12\xc5\x0a\x25\x23\x67\xf8\x71\xc0\xd1\x17\x8a\x38\x92\ +\x44\x9e\xb1\x17\xc7\x15\x8f\x4e\x8b\xcb\x18\x7b\x78\x4c\xeb\x0d\ +\x7f\x74\xae\x5f\x44\x01\x17\x9e\x7e\x82\x47\x7f\xff\xbd\x9c\xf8\ +\xd4\x1f\x52\xd5\x29\x0d\x9f\xdb\x37\xa4\x5b\xf1\xeb\xbe\x05\x37\ +\xeb\xb9\xcf\xea\xf8\xb9\xae\xbd\x27\xe3\xc8\x0d\xf2\x6a\x21\x8a\ +\x70\x77\x23\x62\x8e\x8c\x15\x95\x2b\xf7\xa1\xf6\x5f\x8d\x98\x18\ +\xe3\xd4\x89\x05\x1e\xfa\xca\x61\x4e\x3f\x7f\x69\xe4\x35\xa9\x57\ +\x62\xfe\xde\x15\x1d\x2a\xc2\x0e\x03\xd2\xa5\xfb\x74\x23\x7e\xbf\ +\x35\x45\x78\x1f\x86\xf1\x62\x04\x21\x21\x2b\xc9\x09\xeb\x0c\x2e\ +\xdf\x1e\x64\xba\xe1\xf6\x90\x02\x1c\x62\x15\x7e\x76\x8a\x0b\xd7\ +\x55\x71\x49\x42\x54\x3f\x4b\x13\x72\x83\xce\x7c\x4f\xc0\x1f\xd0\ +\xa6\xdc\xa6\x9f\x21\xf8\xa5\xd7\x03\x8f\x46\x3b\x78\xe4\xf8\x25\ +\x52\x21\xb8\xe1\xc6\x5d\x1c\xba\x69\x17\xfd\x2f\x7d\xce\xb1\x04\ +\x6d\xf1\xb9\xda\x57\x01\xb4\x15\xf4\xb0\x2c\x27\xf0\x6c\x02\x72\ +\xc7\x95\x5c\xfb\x93\xbf\xce\xf5\x37\xde\xc8\xf4\xd4\xd4\x48\x99\ +\xf5\x61\x05\xa3\x7e\xbf\xdf\xb5\xd6\x4e\x6f\x9d\x9d\xe9\x7e\x5b\ +\x44\x00\x8b\x73\xcf\xbc\x0e\xf8\x68\x68\xfc\x59\xdb\xaf\x31\x96\ +\xa7\x9e\x3e\xc2\xbb\xfe\xf1\x8f\xf0\xbd\xdb\xe7\x18\x7c\xea\xdf\ +\x63\xef\xfa\x29\xce\x9c\x81\x6d\xdb\xa6\x88\x2a\x31\x1a\x49\x27\ +\xa9\xd2\x68\x34\x98\xae\x57\xf3\x50\x3f\x8a\xa2\x7c\xb5\x57\x42\ +\x3a\x70\x2f\x76\x1d\x79\x71\x34\x62\xc5\xb7\xeb\xc3\xfb\x52\xa3\ +\x4e\x00\xf8\x95\xea\xf8\x19\x45\x37\x84\x9b\xfd\x44\x9f\xaf\x7c\ +\xe2\x13\xfc\xe9\x7f\x79\x3f\x6b\x8f\x7f\x95\xeb\xc6\x34\x53\x12\ +\x9a\xd9\x8a\x3f\x64\xf8\x99\xc8\x86\x0a\x0d\x7f\x88\x8b\xbf\xd1\ +\x6a\x0f\x05\x7f\x7f\x23\x72\x8e\x4d\x35\x83\x67\x8f\xc3\xb3\xc7\ +\xa9\xec\xdc\xc9\x9e\x03\xd7\xb3\xf7\x1f\xbe\x9a\x33\xa7\x16\xf8\ +\xe2\x67\x9e\x64\xee\x7c\xb9\xdb\xb4\x37\x48\x78\x82\xad\xdc\xce\ +\x85\x91\x1c\xf8\x61\x3c\x20\x64\x07\xe6\x9f\x2f\x87\xc2\x7c\x55\ +\x90\x73\xc2\xf0\xbe\xf4\xfd\x4c\xb0\x9d\xf2\xfc\x3c\x21\x46\xf4\ +\xcc\xdb\x72\xfd\x9e\x00\xf0\x0b\xf7\x9f\x91\x77\xb2\x81\x23\x46\ +\x16\xce\x22\x37\x34\xb1\xbe\x33\x30\x6c\x18\x2a\x1d\x8f\x84\xeb\ +\xb9\xc4\x53\x95\x88\x34\xd1\x4c\x4c\x8c\x41\xaf\x9b\x7f\xaf\xec\ +\x85\xba\x94\xdd\x58\x94\x85\x8a\x10\xd4\x85\x65\xe1\xcc\x73\x24\ +\xab\x2d\x5a\xcb\xcb\x6c\xde\xbc\xd9\xe1\x00\x23\xaf\x63\xb1\x51\ +\x49\x59\x4f\xb5\x3e\x04\xfc\xd9\xb7\xbc\x03\x58\x9c\x7b\xe6\x4e\ +\xe0\x4f\x80\xba\x31\x26\x37\xb6\x6c\x0a\xee\x33\xcf\x9c\xe4\x5d\ +\x3f\xf0\x23\xd4\x4d\x87\x0b\xf5\x7d\xdc\xf6\xc6\x1f\xe1\xd6\x3b\ +\x5e\xc3\xb1\xa3\x47\x99\x9b\x5f\x62\xd3\xec\x36\x6a\xb5\x31\xb6\ +\x8c\x57\x89\x95\x13\xcd\x8c\x22\x1f\xf2\x4b\xe5\xf2\x7c\xe5\x04\ +\x38\x2a\xca\x29\xef\x54\xa2\x18\xa1\xa4\x0f\x03\xad\x23\x7a\xd8\ +\x0d\x42\xfd\x75\x8e\x60\xc8\xf0\x83\x1c\x3f\xab\xe1\xb7\x57\x57\ +\xf8\xdc\x87\xfe\x80\x4f\xfe\xf6\x7b\x69\x9d\x39\x43\x2c\x04\x15\ +\x14\x17\x85\x60\xdf\xe6\x94\x86\x37\xfe\x4c\x2e\x2a\x92\xce\x78\ +\xe3\x2c\x3c\xb5\x45\x98\x2a\x46\xa0\xe3\xd9\x0a\x16\xf6\x90\xaf\ +\x33\x3e\x71\x79\xf4\x3e\x3d\x7b\x16\x7d\xe6\x2c\x6a\xdb\x36\x76\ +\xde\x70\x80\xef\xfb\x81\xd7\xf2\xcc\xd1\xb3\x7c\xf9\xb3\x4f\xb1\ +\xb4\x58\x48\x73\x3d\x76\x6a\x85\x1b\xf6\xc5\xd4\x4d\x32\x52\xcd\ +\x67\x5d\xe3\x8f\xa5\xd0\xe8\x8f\x28\xb7\xd9\x89\x60\x25\xb7\x05\ +\x48\x97\x7d\xdf\x3c\xd7\x0f\x57\xdf\x2c\xbc\xb7\x05\x22\x4f\x80\ +\x85\x64\x29\x42\x56\xfa\x13\x32\xc8\xff\x75\x11\x41\x48\x55\xe0\ +\x8e\xc6\x14\x9f\xa9\xa2\x20\xec\x0f\x3e\x37\xf2\xd6\x60\xac\xdb\ +\x87\x11\x85\xc6\x40\x06\x3c\x1a\x0b\x51\xda\xe7\xda\x3d\xd3\x3c\ +\xf6\xec\x12\x9b\xa7\x1b\xd0\xef\x78\x27\xe2\xeb\xfa\x5e\x10\x35\ +\x35\x59\x15\xc1\x85\x12\xb1\x84\x31\x69\x59\x34\xb0\xf4\xd8\xd7\ +\x99\xda\xb1\x0b\x63\x4c\xce\x28\xdd\x30\x02\x10\x8e\xb0\x85\xd6\ +\xaf\xfe\x96\x77\x00\x8b\x73\xcf\xbc\xd4\x5a\x7b\xaf\xb5\xb6\x1e\ +\x86\xd7\xc6\x93\x76\x4e\x3d\x7f\x96\x77\xfd\xc0\xbb\x79\xc5\x9e\ +\x33\x6c\xd9\x75\x23\xaf\x7f\xe7\x2f\xb2\xef\x8a\x5d\xac\x75\x3a\ +\x4c\x6c\x9a\x66\x20\x62\x26\x27\x9a\xc4\x91\x72\xc6\x1f\x39\x8d\ +\xfc\x28\x72\xf9\xbd\x52\x8a\x48\xba\x52\x5e\xad\x1a\xbb\xed\x19\ +\xed\xd2\x83\x71\x39\x3d\x37\x30\x74\x5b\x2a\xed\x95\x59\x7c\x39\ +\xda\x1f\x84\xf8\xd9\x55\x9a\x3b\x73\x86\x7b\x7f\xf7\x77\xf9\xdc\ +\x07\xef\x61\xb0\xba\x4a\x45\x08\xc6\xa4\xa4\x2a\x04\x15\x6b\x69\ +\xf5\x23\x4e\xad\x0a\x5e\x31\xed\xd8\x76\xae\x41\xc7\xb1\xf7\xac\ +\x02\xe5\xf7\x25\xe5\x0b\x37\xdb\x88\x51\xa8\xfa\x65\x0c\x5f\x6c\ +\x00\xe2\xd9\xb9\x0b\x0c\xe6\x2e\x10\x6d\x9d\x65\xff\x2d\xb7\x71\ +\xf5\x3f\x7d\x23\x8f\x7c\xfd\x59\xbe\xfa\xb9\xa7\xe8\x0e\x34\xa9\ +\xb6\x3c\xac\xa7\x79\x95\xbc\x70\x79\x26\xa0\x28\x1b\x79\xe9\xd9\ +\x14\x2b\xb2\x0c\xe6\x6f\x9b\x70\xb8\x87\x2c\x4a\x7f\x26\xd8\xb9\ +\x0c\xf6\xa3\x6d\x08\x86\xfb\x55\x59\x7a\x54\x1f\x4a\xec\xbc\x7c\ +\xc2\xb0\x28\xb7\x03\x47\x78\x61\x57\xb1\x7e\x2c\xb8\x1e\xfa\x3e\ +\x19\x1f\x20\x95\xa0\xb2\x8a\x82\xdf\xee\x00\x3e\xf7\xee\x03\xe6\ +\x22\x87\x65\xcc\xe4\xe4\x18\x9c\xbd\xe8\xa6\x37\x7b\x76\xa0\xf2\ +\xdf\x53\xaa\xcc\xe1\xb9\x6d\xb1\xb1\x34\x23\xa8\x19\x58\x79\xec\ +\x01\x3a\xaf\x7a\x23\x49\x7f\x40\x25\xae\x94\x2f\xba\x5d\x8f\x04\ +\xf8\xe6\xb5\x3b\xbf\xa5\x41\xc0\x4b\x17\x8e\x1f\xb4\xd6\xfe\xa9\ +\xb5\x76\x2c\x5b\x4b\xac\xb5\x68\x63\x30\x5a\x73\xee\xdc\x05\x7e\ +\xe0\x87\x7f\x94\x5d\xcd\x53\x5c\x7f\xfd\x75\xbc\xf2\xef\xbd\x87\ +\xc6\xd8\x26\x96\x97\x5b\xac\xf6\x53\x6a\xf5\x26\x53\xb5\x2a\x51\ +\x24\x9d\x5c\x76\x6e\xfc\x51\x9e\x02\x54\x22\x45\x54\xa9\x7a\x0d\ +\x7d\xa7\xc1\x97\x1b\xbb\x1d\xce\xeb\xed\x48\x67\x40\xa9\xcc\xe7\ +\x9f\x03\x80\x12\x6b\x39\xf6\xc8\x23\x7c\xea\x77\x7f\x97\xaf\x7d\ +\xec\x63\x28\xad\x89\x85\x60\x4c\x08\x2a\x42\x50\xb5\xd6\x6b\xe3\ +\x3b\x56\xde\xb9\xb5\x88\xc7\x24\xbc\x6a\x36\x45\x52\xb0\xbf\x5c\ +\x97\xde\x7a\xfb\x29\x69\xeb\x5d\x8e\x50\x23\x2e\x6f\xec\x23\xe9\ +\xb9\x01\x52\xaf\x17\xe6\xd1\x9f\xb9\x8f\x78\xe7\x15\xdc\x7a\xf3\ +\x2d\x5c\x7b\xfd\x6e\xbe\xf0\x67\x4f\xf0\xf4\x63\xcf\x73\xf8\xd4\ +\x2a\xb7\x5f\xdd\xa0\x99\xae\x8d\x7c\x7f\x0e\xf0\xc9\x72\x48\x20\ +\x02\x72\x8e\x21\x08\xcb\x65\x81\xbe\xdb\x21\xcf\x66\x87\xea\xff\ +\x99\xd1\x19\x3b\xc2\xa3\x85\x9f\x43\xa1\xbe\x2c\x02\xe0\xd0\x10\ +\x00\x88\xd2\xef\xc7\x04\x1a\x00\xa2\x8c\xd9\x6c\x98\xd6\x84\xac\ +\x42\xff\xfa\xac\xb2\xd0\x30\x29\x7b\xb7\x6d\x66\x7c\xb2\x41\xfa\ +\x4c\x67\x5d\x84\x24\x45\x01\x42\x0a\x6b\x51\x56\xa0\x24\xd4\x8c\ +\x20\x16\x96\xfe\xd1\x47\x31\xc6\xb0\xdc\x6a\xd1\x6c\x36\x2f\x4b\ +\xbe\x10\x9e\x10\x24\xa5\x3c\x74\x61\x6e\x5e\x6d\xdb\x3a\xab\xbf\ +\xe5\x1c\xc0\xa5\x0b\xc7\x6f\x04\x71\x2f\xd8\x49\x67\x43\xc6\x0f\ +\xe3\xd4\xa4\x69\xca\xc2\xa5\x65\x7e\xf8\xdd\xff\x8a\x4d\xcf\x9e\ +\xa0\x7b\xdd\x7e\x6e\x7d\xdb\xcf\x11\x55\x1a\xb4\x5a\x2d\x3a\x89\ +\xa5\x31\x36\xe1\x8d\x1a\x97\xdb\x8b\x00\xe1\x17\x4e\x4e\xbb\x56\ +\x8d\xa9\x54\x2a\xc4\x91\xf2\xcd\x3e\x62\x03\xa3\x0f\xc8\x3c\x61\ +\x14\x50\x58\x7e\xfe\xde\xdc\x01\xf8\x9f\x07\xee\xbb\x8f\x8f\xff\ +\xe6\x6f\x72\xfc\xeb\x5f\x47\x59\x4b\x2d\x33\x7a\x21\xa8\x78\xa3\ +\x8f\xa5\xcc\xc5\x33\x5d\x6e\x2f\x38\xb9\x56\xa1\x76\x49\x72\xc7\ +\x96\x24\xbf\x29\x42\x59\xa8\x61\xa0\x4d\x8a\x0d\x0c\x58\x5e\x9e\ +\x5d\x37\x4a\x08\x34\x6c\xf0\xb1\x23\x58\x7e\xe9\xd9\xe7\xd1\xe7\ +\xcf\x50\xb9\xea\x6a\xee\x7a\xeb\xad\xdc\x78\xcb\x5e\x3e\xf5\xff\ +\x7d\x9d\x47\xd3\x3a\xaf\x60\xad\xf8\xcc\x70\x07\x9a\xb2\xe6\xb7\ +\x37\xb2\x7c\x85\x97\x0e\xd8\xcc\x42\x75\x3f\x7a\xb1\x40\xef\x03\ +\xb0\x4c\x06\x14\x63\x9b\x85\xe5\x7e\x3f\x52\x0d\x81\x7d\x01\x38\ +\x98\x41\x0b\x26\x0d\x30\x02\x15\xf4\xf7\x7b\x70\x10\x2f\x5c\x8a\ +\x5f\xa1\xd1\x2e\x22\xc8\xd2\x84\xac\x01\x48\xfb\x99\xdf\x46\xe4\ +\xc2\xd3\x79\x4a\x90\x79\x26\x11\x44\x33\x37\x47\x1d\x94\x35\xa4\ +\xab\x6d\xa4\x14\x1e\x34\x14\x2e\x0d\xc9\x22\x8c\x4c\x67\x41\x09\ +\x48\x9c\x36\x43\x1d\x4d\xab\xdb\xa5\xf3\xfc\x09\x5a\xb3\x5b\xd9\ +\xbe\x7d\xfb\x3a\x3e\xc0\xa8\x1f\xa5\x54\xdd\x18\x73\x10\x78\xe0\ +\x5b\xca\x01\x2c\xce\x3d\x73\xc0\x5a\xfb\x59\x6b\xcd\x4c\x66\x74\ +\xda\xcf\xba\xd7\xa9\x66\x75\x75\x95\x7f\xf1\x2f\xff\x2d\xd7\x1e\ +\x79\x92\xeb\x63\xc1\xf8\xdf\xff\x21\x9a\xe3\x53\xb4\x5a\x2b\xac\ +\x0d\x06\x34\x26\xa6\x91\xb8\x48\x41\x79\x91\xd0\x70\x05\x97\x91\ +\xa4\x56\xab\x52\xab\x57\x50\x1e\x1e\x2e\x6a\xf2\x43\x21\xfe\x30\ +\xa9\xa7\x84\x05\x94\x07\x68\x66\xf9\xbe\xd1\x9a\x3f\xff\xa3\x8f\ +\xf0\xc9\xdf\xfe\x6d\xce\x1e\x39\x42\x64\x2d\xf5\xc0\xf0\xab\xe0\ +\x73\x7e\x77\x81\x43\xc3\xcf\x56\x7a\x80\xa3\x2b\x8a\x48\xc0\xa1\ +\xa9\xc1\x48\x6d\xbd\x51\xf3\xee\x86\x5b\x72\xb1\x1b\x85\xfb\xa3\ +\x0d\x5f\x5c\x86\x85\x97\xc9\x69\x0b\xeb\x20\xf0\xf4\xd8\x11\xcc\ +\xe9\xe7\xd9\x71\xf0\x20\xef\x7a\xf7\x9b\xf8\xd3\x3f\x79\x88\xae\ +\x1d\xa3\x31\x68\x17\xe8\x7d\x40\xe6\xc9\xd1\xb5\x6c\xc5\x0b\xc3\ +\xeb\xa0\x7e\x9e\x0d\x6f\x32\xd6\x61\x1f\x50\xd6\x10\xdc\xd0\x49\ +\x31\x7a\x70\x48\x18\xf6\x87\x40\x62\x48\xc2\xc9\x23\x0f\x28\xc6\ +\xc0\x5b\x3c\x27\x43\xe4\x75\xfe\xbc\x64\x19\x96\x28\x6d\xc1\x24\ +\x24\x00\x13\xb3\xfc\x21\xa3\x1c\x37\x74\x17\x73\xee\x1c\xa6\xdf\ +\x2f\x1d\x6b\x16\x31\x04\xa7\xc7\xdd\xa7\x42\x10\x79\x42\x50\xc5\ +\x40\xeb\xf0\xa3\xb4\x5e\x72\x1d\x5a\xa7\x44\x51\x75\x03\x00\xa0\ +\x60\x92\x2a\x25\x49\x12\xee\xfc\x96\x72\x00\x97\x2e\x1c\xdf\xef\ +\xc3\xfe\x19\x93\x29\x02\x19\x8b\xd6\x29\x69\xea\x58\x7c\x3f\xf6\ +\xe3\x3f\xcb\xd8\x83\x0f\xf0\x72\x34\x8b\x6f\xfc\x6e\xae\xbb\xe5\ +\x26\x96\x97\x97\xe9\xac\x75\xa9\x4d\xcd\x92\x24\x03\x30\xda\x57\ +\x09\x22\x47\xd2\x51\xae\x65\x58\xd5\x6b\xd4\x2b\x15\x6a\xb5\x4a\ +\x3e\x0a\xbb\x30\xee\xb2\xc1\x0f\x87\xfc\x61\x59\x2f\xcc\xf3\xb3\ +\x0b\x3e\xe8\xf5\xf8\xcc\x07\xef\xe1\x63\xbf\xf5\x5e\x96\xce\x9e\ +\x21\x02\x6a\x42\x50\x95\xd2\x91\x75\x82\x55\x3f\x33\xfa\x28\xab\ +\xdb\x66\xab\x7c\x70\x77\x0b\xe0\xf0\x4a\x84\x12\xf0\xf2\x2d\x49\ +\xe9\xc6\x96\x23\x04\x35\x6d\xa8\xad\x2f\x47\xac\xf6\x7e\x69\xb2\ +\x52\xe4\xa3\xce\x47\x19\x92\xdc\xc8\xe8\x03\xf2\x4b\xbe\xca\x0f\ +\xba\x24\x5f\xfd\x12\x6a\x76\x1b\x6f\x7b\xeb\x1d\x74\x4f\x8e\x21\ +\x1e\x7f\xd8\xe7\xb7\xeb\x51\xfd\x9c\xfc\x62\x03\x6e\xfd\x10\x40\ +\x18\x8b\xb2\x62\x6f\x1e\xbe\x8b\x00\x74\x13\x65\x04\x7e\x24\x07\ +\x41\x14\xc6\x4f\xc0\xda\x13\x81\x60\x89\x0d\x2a\x28\x56\x16\xe7\ +\x50\x08\x81\xf5\x27\x53\x04\x1d\x81\x61\x79\x30\x3f\x07\xb6\xa8\ +\x64\x08\x1b\x38\x36\xe1\x1c\x89\x11\x4e\xed\x53\x59\x48\x8e\x1f\ +\x43\xa4\x29\x42\x09\xef\x78\x44\x5e\x42\x0c\x53\x3a\xe7\x0c\x04\ +\x91\x84\x66\xe2\x98\x9e\x6b\x4f\xfc\x05\x83\x37\xff\x6d\x3a\x9d\ +\x35\xaa\xd5\xea\x0b\x30\x2c\x05\x91\x8a\x80\xfe\x9d\xc0\x7b\xbe\ +\x25\x1c\xc0\xa5\x0b\xc7\xf7\x1a\x63\x3f\x87\x60\x27\x5e\xf8\xc3\ +\xe5\xfb\x86\x41\x92\x92\x26\x09\x3f\xf3\xf3\xff\x89\xf4\xb3\x9f\ +\xe6\x87\x6a\x8a\xcf\xd4\xa6\x78\xd9\xdf\xfa\x6e\x67\xfc\x9d\x35\ +\x88\x2b\xac\xb5\xdb\x08\x21\x1c\xa2\x1f\x45\x44\x71\x4c\x35\x8e\ +\x89\x22\x49\xbd\x5a\x67\x6c\xbc\x49\xa5\x56\x43\x45\xaa\x5c\xb6\ +\x1b\xca\xeb\xb5\xb5\x4e\xc0\x61\x28\x1d\x28\x89\x6d\x7a\x15\x9f\ +\xd5\xe5\x65\xee\xff\xc0\x07\xf8\xf8\xfb\xde\x47\xaf\xd5\x22\xf2\ +\xa1\x7e\x4d\x08\xe2\xa1\x70\x3f\xb2\x96\x28\x6b\xc9\xcd\x56\xfc\ +\x17\x00\xe4\x9e\x5a\x89\x11\x42\x70\x68\x3a\x29\x0c\x70\x44\xde\ +\x1e\x72\x01\xb0\xa3\x94\x75\x44\x51\x25\x10\x23\x9a\x60\x46\x21\ +\xf7\xa1\xd1\x5f\x86\x05\x62\x2e\xce\x31\xb8\xef\x53\xd4\x5e\xf6\ +\x72\x92\xb1\x26\xa6\xb3\x96\x1b\xbd\xc0\x21\xe9\x59\x78\xaf\x4d\ +\x11\xde\xab\x20\xec\xcf\x81\x38\x55\x18\x41\x46\xc9\x95\xa2\x08\ +\xef\x65\xc8\x09\xf0\x68\x7c\xee\x0c\x82\xb0\x1f\x55\x9c\x5b\xad\ +\x0b\x4f\xa1\x54\x81\x39\x98\x34\xd0\xfd\x93\xc1\x7e\xb4\x28\x2a\ +\x10\xaa\xa8\x44\x18\xdf\xbc\xaf\x45\xc0\x39\x08\x52\x07\x2b\x5c\ +\x53\x8f\xf1\xde\x45\x1b\x51\x50\x8a\x23\x88\x7a\x6b\x18\x3f\x24\ +\x36\xfb\x06\x52\x16\x55\x83\xc4\x14\xe9\x43\x24\x3d\x10\x18\x0b\ +\x2a\xda\xd2\x39\xf6\x34\x46\x6b\x5a\xad\x65\xa6\xa6\x36\x97\x95\ +\x57\x46\xf1\x2c\xa4\x40\x48\xf1\x0d\x05\x02\xbf\x69\x0e\x60\xe1\ +\xc2\xf1\x9d\xd6\xda\xcf\x82\xdd\x69\x8d\x33\x48\x6d\x0c\x3a\x4d\ +\x49\x92\x94\x41\x92\xf0\x1b\xbf\xf5\x7e\x3e\xf3\x89\xfb\xf8\xd1\ +\x7a\x9d\x87\xd6\xda\x6c\x7a\xfd\x6b\x88\x2a\x15\x97\xf7\x77\x3a\ +\x8c\x6f\xdd\xcd\xd2\xd2\x32\x95\x48\x21\x95\x6f\xd4\xf1\x12\x5c\ +\x71\x14\x31\x35\x0d\x15\x15\x13\x2b\x15\xe8\x0d\x96\x0d\x3e\x37\ +\x7c\x5c\xa5\x21\x73\x02\x59\x35\x40\x06\x0e\xa0\xbd\xbc\xcc\xc7\ +\x7f\xfb\xb7\xb9\xf7\x03\x1f\xa0\xbf\xba\x4a\x94\x85\xf8\x52\x52\ +\xf5\x06\x5f\x15\x82\xc8\x3b\x00\x37\x20\x43\xe4\xa1\xfe\xc6\x06\ +\x6a\x47\x3a\x81\x4a\x24\xb8\x7d\x73\x52\x00\x47\xc3\xe1\xb0\xbc\ +\x0c\x9a\x3f\x82\xd3\xe5\x56\x55\x7b\x59\xc6\xd7\x65\xd5\x78\x86\ +\x26\x5e\x98\x64\x40\xff\x4b\x5f\x40\x54\x2a\x88\x0c\xa6\x37\xde\ +\xe0\xfc\xbe\x74\x80\xf6\xab\x20\xbc\x4f\x03\xc3\x95\x72\xbd\x2a\ +\x91\x1d\x22\x38\x85\xa2\x98\xa3\xb6\xdb\xa1\x0a\x23\x43\x55\x10\ +\x2d\xd6\xff\x31\x6f\xb7\x36\x43\x22\x1e\xc1\x7f\x4d\xc8\xbb\x08\ +\xa2\x2d\x9b\xeb\x08\x38\x4f\x21\xfc\x52\x2e\x6c\x50\x99\xf0\x65\ +\x4f\x6b\x41\x24\x60\x3c\xc2\x99\x45\x00\x18\x77\x0d\x1d\x2e\x22\ +\xf2\xf2\x60\x1c\xc7\x54\xfa\x03\x96\x2d\xac\x1c\x7b\x92\x95\xd9\ +\x59\x74\x58\x0e\xdc\xe0\x22\x59\x6b\x89\x94\x9a\x39\x3f\x37\x77\ +\xcd\xf6\xad\x5b\x8f\xfe\x8d\x75\x00\x0b\xe7\x8f\x6d\xb3\xc6\x7c\ +\x0e\xc4\xde\xbc\xbe\x6f\x34\xa9\xd6\x24\x49\x42\xbf\xd7\xe7\x0f\ +\xfe\xe8\x63\x3c\xfe\xe7\x1f\xe0\xf6\x5b\x26\xb9\xe7\x58\x95\x9b\ +\x6a\x70\xfb\x6d\x07\x69\xb5\x5a\xac\x75\xd6\xe8\x0f\x06\xa4\x2b\ +\x2b\xb4\x57\x57\xf3\xe6\x1d\x25\xa5\x1b\xa8\xa1\x14\xf5\x5a\x8d\ +\x89\x89\x09\xa2\xaa\x1b\x9c\xa9\xed\xa8\x5c\xdf\xa1\x49\xc6\x1b\ +\xbc\xb0\xd6\x85\x73\x43\xf5\xff\xd5\xe5\x65\xfe\xf8\x37\x7e\x83\ +\xfb\xfe\xfb\x7f\x67\xd0\x6e\x17\x86\xef\x0d\xbd\xe6\x9f\xab\x5e\ +\x76\x4b\xe5\x61\xbb\x58\x77\x63\x17\xa5\x3c\xfb\x82\xc6\xfb\xc8\ +\x62\x44\x55\x5a\x6e\xda\x9c\x16\x82\x9c\x43\xab\xf3\x28\xf2\x8f\ +\xb8\xcc\x68\xcc\x8d\xf4\xec\xc5\x06\x1e\x61\xa3\x91\xda\x22\xe4\ +\xec\x27\x03\x44\x14\xac\xe8\x3e\x65\xb0\xa6\xd0\xd5\x07\x48\x83\ +\x3a\xbd\x52\x41\x89\x4d\x96\x4b\x7c\xf9\xa2\x28\xcb\x55\x03\x39\ +\x82\xfd\x97\x7d\x21\x95\x29\x9c\xd8\xa2\xf4\x68\x3d\x83\xd0\x84\ +\x2b\x7d\x00\x4c\xda\x21\xaf\x6c\x74\x98\x7e\xb8\x68\x2f\x67\x53\ +\xae\x83\xf1\x7d\x04\x90\xad\xe6\x52\x94\x27\x0f\x0f\x75\x4d\xba\ +\x74\xc8\xa2\x83\x12\x8e\xc8\xe6\xd7\xe2\xfa\x01\x50\xee\x73\x15\ +\xae\xff\xa3\xa2\x61\xf5\xc9\x07\x69\xdf\xfc\x1d\xe8\x34\x1d\xc9\ +\x07\x28\xaf\x27\x02\x15\x45\x90\x24\x77\x02\x7f\x33\x1d\xc0\xc2\ +\xf9\xe3\x33\xc6\x9a\xcf\x0a\xd8\xef\x42\x7e\x37\xc3\x6f\x30\x48\ +\x48\x74\xca\xa0\xd7\xe7\xd3\x9f\xfd\x02\xbf\xf0\x8b\xbf\xc2\x4f\ +\xfc\x6d\x09\x62\x85\xb4\x5f\xe5\xf8\xe0\x25\x1c\x9a\x98\x64\x75\ +\x65\x95\x5e\xaf\x4b\x54\xa9\x33\xb7\xb0\x80\xd5\xda\xd1\x61\xa5\ +\x17\xbc\x50\x0a\x29\x04\xe3\x63\x63\xec\xb6\x16\x21\xa5\x33\xfe\ +\x20\x02\x30\x9e\x3d\x52\x42\xf9\x4b\xf5\x7b\xe7\x10\x5a\x17\x2f\ +\xf2\xc7\xbf\xfe\xeb\x7c\xe6\x83\x1f\xa4\xbf\xb6\xe6\xc2\x7b\x29\ +\x89\x33\xa3\xf7\x61\x7f\x25\x28\xe9\x29\x0f\xe6\x28\x2e\x43\xd1\ +\x1d\x66\xe8\x5c\x86\x9c\xf3\xc0\xa5\x0a\xd5\x48\x70\x60\x3c\x2d\ +\x83\x50\x1b\x18\x68\x5e\x92\xf2\x4d\x46\xa3\x3e\xe3\xc5\xf0\xbb\ +\x2f\xdb\xb9\x27\x8b\xd5\x34\x04\xd9\x94\x2c\xda\x64\x33\xca\xaf\ +\x1d\x4a\x3d\x72\x1a\xae\x1c\x12\xc6\x08\xf6\x9d\xa3\xf7\x01\xbd\ +\x2f\x52\x45\x2e\x9e\x06\x45\x2e\x25\x0b\xa3\xd4\xba\x20\x12\x09\ +\xe5\x31\x07\x5b\x94\xf9\xf0\xe1\x7d\xfe\x7a\xa4\xab\x3e\x78\x47\ +\x13\x4b\x4f\xf7\xb5\xd0\xb8\xe9\x6a\x56\x9f\x7c\x16\x25\x75\x8e\ +\x43\x68\x8d\x9f\xa8\x64\xf3\x1e\x0c\x70\x61\xbf\x49\x7d\x4a\x11\ +\x15\xd5\x8d\xac\x6a\x80\x00\x19\xf9\x28\xc5\x42\x6a\x44\x5e\xb1\ +\x90\xa2\x70\x26\xa9\x76\x15\x02\x29\x5c\xcb\x77\x55\x41\xf7\xc8\ +\x23\x24\x49\x42\xbb\xdd\xa6\x56\xab\x5d\xfe\xa2\x59\x4b\xac\x14\ +\x5d\x38\x04\xfc\x97\xbf\x71\x0e\x60\xe1\xfc\xb1\x29\x6b\xcd\x67\ +\xb1\x1c\x30\xd6\xe4\x48\x7f\x9a\xa4\x24\x69\x4a\xaf\x37\xe0\xa1\ +\x47\x1e\xe5\xdf\xff\xe4\x7f\x60\xfb\xe6\x71\xbe\xf8\x9c\xe6\x8d\ +\xd7\x74\xd9\x3f\xdd\xe1\x42\x75\x9a\x4e\xa7\xc3\x5a\xb7\xcb\xa0\ +\xdf\xa7\x26\x23\xba\x49\x48\xdc\x76\x58\xae\xcc\x95\x69\x04\xda\ +\xa4\xce\x98\x43\x63\xf7\x63\xc3\xf0\x6c\xbf\x60\xd6\x5a\xe9\x2e\ +\xfd\xd2\xff\xf8\x1f\xbc\xe7\x87\x7f\x08\x19\x45\x48\x6f\xec\x21\ +\xaa\x9f\x85\xfd\xb1\xcf\xfb\xa5\x97\xd5\xce\x08\x1f\x72\xa3\x10\ +\xfb\x32\x2b\xff\x46\xff\xff\xf2\x7c\x85\x86\xb4\xec\x9d\xd0\x39\ +\xeb\x6f\x3d\x62\x6f\x4b\xc8\xf6\xb0\xf1\xbf\x98\x3e\xfd\x0d\xf5\ +\xf9\x4d\x99\xea\x9a\xbd\x58\x99\xc2\x70\x95\x2a\x00\xb5\x34\x34\ +\xdc\x80\x07\x10\x36\xdf\xa8\xe0\x04\xe9\xd0\xa0\xc5\x08\x12\xce\ +\x30\x36\x61\x46\x94\x3d\xb3\xed\xb2\x38\x9e\xac\xde\x2f\xd2\xe0\ +\x3b\xca\x00\xdd\xcf\xa6\xc7\xfb\x48\x25\x23\x1f\xe9\x14\xa2\x66\ +\x93\xe9\xff\xed\xe5\x2c\x7f\xe6\xcb\xb9\xa1\xba\x1e\x33\x07\xf2\ +\x29\x99\x35\xe2\x38\xe9\xb6\x9c\xad\x1b\x4c\x06\x11\xd9\x79\x33\ +\xce\x01\x18\x5b\x70\x12\x32\x0c\x40\x66\x29\x80\x04\xa9\xdd\xf9\ +\xd2\xc6\xd2\x54\x10\xa7\xd0\x3e\xfd\x1c\x49\xb7\x4b\x6b\xb9\xc5\ +\x96\x2d\x5b\x5e\xc0\x6b\xe7\x0b\xe0\xc1\xbf\x71\x18\xc0\xc5\x73\ +\xc7\x26\x8d\xb5\x7f\x8a\xb5\x37\x1a\x63\xbd\x8a\x8f\x26\x49\x35\ +\xc9\x20\xa1\xd7\x1f\x70\xf2\xe4\x73\xfc\xd8\xbf\xfd\x19\xde\x61\ +\xba\xec\xea\x1b\x3e\x75\xac\xce\x87\x3b\x4d\xf6\x4e\xf6\x99\xda\ +\x3a\x4e\xa7\xb3\x46\x7f\xd0\x27\x49\x12\x44\x6f\x40\x9a\xb1\x38\ +\x8c\x93\x0c\xb7\x42\x20\xbc\x1a\x4f\xbd\x3a\x20\x19\x38\x99\x26\ +\x6d\x5d\x01\xda\x0d\x72\x30\x45\x14\x10\xf4\xeb\x0b\x0a\xa9\xae\ +\x4f\xbc\xf7\xbd\xfc\xd6\x4f\xfc\x38\x35\xa0\x5e\xa9\xe4\xa1\x7d\ +\xcd\x1b\x7d\x35\x73\x08\xfe\x04\xb9\xd5\x4f\x96\x4e\x98\xb8\xcc\ +\x45\xda\x68\x65\xbe\xdc\xff\xff\x7c\xbe\x46\x2c\x7a\x5c\x31\x6e\ +\x46\x13\x7a\xbc\xfe\x5c\xe8\x60\x2e\x3b\xba\xea\xc5\x88\x7b\x8a\ +\x22\xcc\xc5\x0e\xe5\xc2\xb6\xac\xad\x9f\x06\x5c\xf7\x8c\xcc\x23\ +\x7c\xdd\x5f\x49\x6f\x8c\x01\xba\xae\x29\x9a\x95\xc2\xd3\xa1\x09\ +\x3a\x1b\x47\x8d\xf1\x09\x87\xee\xc9\xf5\xdb\x33\x52\x51\x1e\xde\ +\xeb\xf5\xc4\x9e\x50\xfc\xdf\x0e\xa5\x54\xb9\x02\x70\x92\x50\x19\ +\x13\x34\x6f\xbc\x96\xce\x93\x47\x1d\x55\x58\xf8\x92\x61\xd0\x8a\ +\x6c\x7d\x7e\x10\x36\x2e\x65\xc7\x9b\xf7\x0c\x64\x1a\x82\x59\x7e\ +\x23\x0b\x15\x22\x11\xb6\x38\x5b\xe1\xa3\x59\xdc\x18\xf8\x41\x82\ +\x06\x56\x8f\x3f\x45\x6b\xc7\x0e\x57\xd5\xca\xd2\x80\x91\x59\x9e\ +\xc7\x34\xa2\xe8\xc6\x33\x17\xe6\xea\xbb\xb6\x6d\xed\xfe\x8d\x70\ +\x00\x0b\xe7\x8f\xd5\x8d\xb1\xf7\x5a\x38\x68\x8d\x0b\xfb\x8d\x4e\ +\x49\x53\xc3\x20\x19\xd0\xed\x0e\x58\x58\x5c\xe0\xc7\xfe\x9f\x9f\ +\xe2\xd5\xab\x8b\xec\x8c\x15\x75\x93\xf0\x5d\x42\xf3\x89\x93\x31\ +\x5f\xa8\x8f\xf3\xa6\x3d\x31\xbd\x5e\x8f\x24\x49\x48\xd3\x04\x11\ +\x75\xe9\xa6\x82\xce\x6a\x1b\x8c\x46\xf9\x06\x6e\x6b\xa1\x56\xaf\ +\xd1\x6f\xd4\xe8\x0e\x06\xe8\x44\x63\xf4\xa8\xfc\xdf\xe6\xa5\xbd\ +\x7c\xf1\x17\x30\xf7\xdc\x49\xde\xf7\x13\x3f\x8e\x00\xaa\x4a\x51\ +\xf7\x25\xbd\xaa\x10\xb9\x03\x88\x3c\xd0\x97\x0f\xd2\xb8\x4c\x68\ +\x3d\x32\xff\xe7\x45\x18\xdf\xd0\xff\xb5\x85\xcf\x5c\xac\xf3\x9d\ +\x95\x1e\xb3\x35\xb3\xae\x8e\x2f\x86\x0b\xe6\x81\x22\x8d\x78\x91\ +\x86\x3f\xe2\x7e\x2a\x56\x5e\x59\x54\x1a\xc2\xd6\xda\xbc\x4e\x1e\ +\xd4\xe7\x72\xae\xbe\x2c\x04\x30\x01\x44\x5c\x94\x19\xb3\x36\x5d\ +\x6c\xd0\x5a\x4b\xb1\xdd\x08\xcf\xbd\xf7\xc6\x9e\xfa\x70\x5a\x08\ +\x97\x0e\x64\x88\x5f\x1a\x84\xd9\x42\x15\xdd\x7e\x19\xe7\x3f\xa7\ +\x1a\x67\xa9\x86\x16\xb9\xba\xaf\x8c\x8a\x0e\x45\x6b\xdc\x70\x58\ +\x21\x7c\x2f\x80\xb2\xd0\xef\xd3\x9c\x32\xac\x4d\xcf\x90\x5e\xbc\ +\x84\x54\xd6\xa7\x39\x02\x63\x44\x61\xf4\xca\xbd\x27\x4f\x13\xb2\ +\xde\x84\xa8\xf8\xdc\x2c\xbc\xcf\xc9\x45\xca\x39\x01\x6d\x82\xf3\ +\x16\xfb\xe8\xd1\x80\xb2\x31\xb1\x4d\x88\x80\xce\x91\x47\xe9\x1c\ +\x3c\x44\x9a\x14\x38\x80\xdd\x40\x45\x55\x00\x15\x15\xa9\x01\xc9\ +\x41\xbe\x01\xf3\x02\xe4\x37\x60\xe5\xaf\x18\x63\x3e\x6a\xad\x3d\ +\x64\x8c\x46\xe7\x35\x7e\x43\x7f\xd0\xa7\xdb\x1d\xd0\x6e\xb7\xf9\ +\x7f\x7f\xf2\x3f\xb2\xeb\xd4\x49\xf6\x47\x92\x29\x21\x58\x41\x70\ +\x26\x31\xbc\x96\x1e\x2f\x59\x1d\xb0\xdc\x4e\x48\x92\x01\x49\x9a\ +\x60\x8c\x65\xad\xd3\xa1\xd7\xeb\xe6\x08\xbb\x4e\x35\xa9\x4e\x49\ +\x53\x97\x2f\x0d\x12\x4b\xbf\xd7\xa7\xaf\xb5\x6b\xbb\xb4\x4e\x33\ +\xd0\xfa\x67\xb3\x8e\xe5\xe7\x9e\x3f\xfd\xc1\x0f\x91\xfa\xfb\xab\ +\xae\x14\x0d\x29\x69\x28\x45\xd3\x3b\x83\x8a\x52\x39\x0e\xa0\x02\ +\x81\xcd\x7c\xca\xcf\x90\xb0\x26\x23\xc4\x37\x09\xa6\x02\x85\x62\ +\x9c\xf2\x05\xfe\x9f\x1a\xf8\xd4\xb9\x3a\x8b\xfd\x4c\x32\xda\xb1\ +\x19\xf3\xe7\xe0\x73\xac\x94\x1e\x5e\x97\x58\x29\xb1\xca\x3d\x08\ +\x8e\x93\x8d\x1e\x52\x04\xcb\x62\xa1\xee\x29\x64\xf9\x73\x84\xf4\ +\xc7\x38\xa4\x12\x2a\x64\xf9\x39\x57\x11\xb5\xfe\xfd\x56\x94\x9a\ +\xf9\x05\xc2\xaf\x7e\xc5\xdf\x2c\x02\x23\x05\x46\x08\x8c\x2a\xef\ +\xcf\x4a\x77\xfc\x36\xfc\x7c\x21\x10\xca\xef\x4f\x08\xac\xf1\xe7\ +\x40\xc9\xe2\xd8\xa4\xaf\xf5\xcb\xe2\x7b\x09\xff\xbe\xd4\x1f\x87\ +\xb1\x7e\xdf\x56\x40\x14\xc3\xe2\x05\x66\x6e\xdd\x89\xad\x54\xdc\ +\x79\xcc\x05\x05\xdc\xb1\x9a\xec\xf3\x82\x67\xc7\x12\x15\xf9\x35\ +\xca\x5e\x1f\x0a\x85\x0a\x5b\x7e\x3d\x42\xfa\xa8\x47\x20\x91\x28\ +\x04\x35\x3f\x81\xb9\x77\xf4\x71\xd2\x34\x65\xb5\xbd\x5a\x9c\xe3\ +\x91\xff\xfc\xaa\xed\xba\x96\x5e\xfa\x8d\x58\xbc\xe5\x5f\xcd\xf8\ +\x8f\x2a\x63\xcc\xef\x03\x6f\xce\x06\x7a\x68\x9d\x92\x26\x9a\xfe\ +\x20\xa1\xd7\x4b\xe8\x0d\x7a\xbc\xe7\x57\x7f\x93\xf8\xe1\x07\x78\ +\x7d\x35\x22\x96\x30\xaf\x0d\x5d\xe1\xc0\xb4\x45\x04\xdb\xd2\x3e\ +\xd1\xca\x0a\xa9\xd6\xbe\x37\x40\x93\x0e\xfa\x8e\x37\xaf\xb2\x82\ +\xb1\x5b\x8b\x85\xa7\xf9\xf5\x7b\x1d\x56\xdb\xab\xf4\x07\x03\xb4\ +\x57\x0a\x36\xd6\xf8\x6a\x80\xf1\x8e\xc0\xd1\x8d\x09\xa2\x81\x73\ +\xc7\x8f\xe5\x3a\xfa\x8d\x28\xa2\x21\x04\xf5\xac\x79\xc7\x13\x7a\ +\x64\x50\xda\x1b\x5e\xe9\xe5\x0b\xac\xfa\x7f\x59\xd0\x4d\x0c\x5d\ +\x8c\xbe\xb6\xdc\x3b\xd7\xa0\xa3\xc5\x7a\xdb\x25\xe8\x21\xf0\x25\ +\xcd\xec\x16\xcb\xb7\x8d\x38\x4e\x31\x82\xa5\x26\x44\xf9\x77\x49\ +\xf0\x3c\xe2\xfb\x66\x2a\xbf\x43\xd4\xff\x21\x55\xdb\xa1\x21\xa2\ +\x43\x3a\x05\x21\x0f\x3f\x6b\x01\xce\x6b\xee\xc1\x09\xc9\xc3\xf4\ +\x61\xd6\xa3\x29\x6a\x77\x42\x38\x22\x54\xf8\x9d\xf3\xcf\xcc\x3a\ +\xff\x82\xae\xc4\x12\x9b\xd9\x80\x8a\x63\x07\x48\x48\x01\x17\x4f\ +\xb2\xed\x65\xd7\xac\x0b\xbb\x73\x20\x73\x28\x1d\xcb\xfc\x4d\x48\ +\x66\xca\x98\xbc\x92\x32\x88\x5b\x28\x1d\x97\xb1\x21\xa9\x60\x42\ +\x39\x60\x72\xed\xf9\x67\xd1\x49\xc2\xca\xca\x4a\x71\x2e\x37\xb8\ +\x78\x42\x08\xe2\x38\x02\xec\x37\xc4\x01\xfc\x95\x52\x00\x63\xec\ +\x6f\x21\xf8\x5e\x63\x5c\x79\xcd\xa4\x9a\x24\x35\x68\x9d\xd0\xef\ +\x3b\xe3\xff\x6f\xbf\xff\x21\x9e\xbc\xf7\xb3\x7c\x5f\xac\x18\x58\ +\x88\x10\x2c\xe1\x9a\x23\x22\xe1\xe6\xa6\x09\x01\xe9\xc2\xbc\x1f\ +\x10\xea\x9b\x6e\x84\x40\x5a\x83\x15\x12\xa3\xc8\x25\x5c\x32\xd5\ +\x9d\x7e\xaf\x4f\xab\xdd\xa6\xd3\xed\x32\xa5\x8d\xd3\x58\xcf\x29\ +\xbc\x45\x1c\x2c\x3c\xaf\xdf\x5d\x78\x83\x08\xe6\xb6\xd5\x7c\x14\ +\x90\x35\xee\xc8\xa0\x9e\xbf\xd1\x40\x4c\x71\x99\xf0\x5f\xbc\x08\ +\x2c\xe0\x72\x00\x61\x46\x61\xed\x0c\x2c\x9f\x3a\xdf\xe0\xbb\x76\ +\xae\x51\x55\x97\xa9\x30\x88\xbf\xa4\x68\x27\x8c\xe8\x29\x66\xdd\ +\xf8\xdb\x0c\x38\xb3\xc5\xac\xd2\x42\x69\x87\x82\xe6\x9a\x57\x2d\ +\xb2\x5d\x0f\x71\xf5\x09\x14\x75\x08\x6e\xfc\xe1\xed\x62\x68\xbb\ +\x35\xb8\x99\x09\xd6\xe6\x61\x76\xe6\x2c\xb2\x2e\xc0\x7c\xbb\x75\ +\x82\x1b\xf9\xe7\x46\x45\x89\x52\xeb\x62\x4a\x8f\x8c\x9c\xbd\x6b\ +\x03\xa9\x15\x18\x21\x0b\xb9\x25\x6b\x89\x07\xf3\x34\xaf\xdb\xcb\ +\xca\xd3\xcf\xb9\xfd\xc7\x05\x90\xa7\x83\x5e\x03\x19\x15\xad\xd8\ +\xa9\x11\x79\x2b\xb3\x88\x7c\x9a\xe0\x8f\x51\x07\xe9\x52\xae\x50\ +\x84\x8b\xf2\x84\x02\x25\x2c\xb5\x8a\xa4\xaa\x0d\x2d\x03\xab\xcf\ +\x1e\xa6\xbd\x7d\x3b\xc6\xb8\x7b\x59\x5c\xe6\xf2\xf9\x28\xe0\xe0\ +\xff\xd2\x08\xe0\xc2\x99\x23\xff\x01\xf8\x41\x63\x8c\x2b\xad\xa4\ +\xae\x8d\x34\x49\x8a\x95\xff\xde\xfb\x3e\xc3\xef\xbc\xef\xf7\xe8\ +\xcd\x36\x39\x52\x19\x43\x63\x39\xab\x35\x9b\xa4\x44\x5b\x58\x30\ +\x96\xcd\x52\x50\x51\x8a\xe5\x53\x27\xe9\x75\xd7\x7c\x0d\x5a\xf8\ +\x83\x73\x35\x9c\x2c\x14\x0d\xc3\xec\x34\x49\x58\xeb\x76\x59\x59\ +\x59\x21\x51\x34\x89\x7f\x00\x00\x20\x00\x49\x44\x41\x54\x49\x92\ +\x1c\xf8\xcb\x7a\xb6\x4b\x0d\x3e\x14\x6d\xc7\xb3\xdb\xb7\xe7\x0e\ +\xa0\x3a\x54\xe2\x93\x7e\x75\x15\xe1\xaa\xf2\x97\xcc\xe5\x73\xc4\ +\x7e\x83\xd5\x78\x23\x3c\xc1\x52\xd6\xc8\x5f\xee\x5a\x3e\x3d\xd7\ +\x28\x75\xb6\x09\x6c\xe9\x45\xa1\x64\x96\x10\x43\x12\x5a\xa3\xa2\ +\xff\x21\xf2\x4c\x1e\x01\xc8\x3c\xc0\x2a\x50\xf7\x21\xfd\xb1\xfc\ +\xf5\x32\x60\xda\x0d\x7d\x9f\xd2\xc0\x8c\x21\x2f\x67\xf3\xb4\x64\ +\xc4\xf6\xc0\x50\x84\xf4\xa5\x38\x3f\x76\x2b\xfc\xdc\x82\x54\x27\ +\x4a\xaf\xcf\x57\xf6\xb0\x82\xe2\xd9\x7b\x99\x0f\x96\x19\x9b\x4f\ +\x06\x74\x43\x93\x16\x6f\xee\x77\xd8\xb4\x0d\xd4\xe6\x71\xd7\x3a\ +\x1c\x06\x10\x43\xe7\xd4\xca\x80\x6f\x80\xcb\xf7\x65\xb6\xc2\x4b\ +\x30\xaa\xb8\x16\x2a\xbb\xa0\xaa\xe8\x55\x90\xd6\x3d\x2a\xb1\x9b\ +\x76\x5c\x01\xda\xc7\x9f\xa2\xdd\x76\xa3\xe9\xb8\x4c\xfa\x96\xa5\ +\x8d\x95\x28\xda\x7f\xe6\xfc\x85\x99\xff\x25\x11\xc0\xdc\x99\x23\ +\x3f\x66\xb1\x3f\xe6\x7a\xf8\x1d\xbd\x37\x4d\x53\x92\x34\x21\x4d\ +\x12\xfa\xfd\x01\x8f\x3d\xf2\x04\xff\xe9\x3d\xbf\xc1\x0f\xbe\x21\ +\xa2\x52\xed\xf0\xb1\x47\x27\x58\x6d\xd5\xb8\x4e\xf4\x68\x1b\x83\ +\x46\x50\x17\x82\x9e\x76\xb5\xfc\x99\x6e\x87\x73\x0f\x3d\xc8\x95\ +\x77\xbe\x0a\x29\xdd\xd9\x52\x5a\xa3\x23\xe7\xad\x85\x6f\xcf\x32\ +\x3e\xf6\x4a\x75\xca\xa0\x9f\xd0\x5e\x59\xa1\x9b\x0e\x88\x22\x3f\ +\x9f\x2f\xab\xcb\xd8\xa0\x9b\xda\x16\x40\xd6\x75\xb7\xdf\xca\x89\ +\x3f\x99\x60\x5c\x09\x66\xa6\xa7\xb9\x62\xfb\x94\xeb\x2a\x94\x12\ +\x29\x61\xd0\xd7\x74\x56\x7b\x9e\x98\x22\x8a\xba\xbc\x84\xe5\x8b\ +\xab\x39\x9a\xa8\x53\xcd\xf2\x52\xe7\x2f\x55\x09\xb8\x9c\x03\x91\ +\x21\x33\xcd\xff\x9c\x6b\xc3\xe7\xe6\xeb\xbc\x7e\x5b\x2f\xe7\xa2\ +\x87\xa4\x15\x1b\x38\x1c\x7b\x19\x1e\x80\x1d\xe2\x10\x84\x25\x33\ +\x86\xe4\xae\x72\xf9\x2c\x13\x0c\xd3\x1c\xb1\x54\xe4\x22\x9b\x61\ +\xc3\x91\x12\xa5\xd6\xde\x7c\xf8\xa6\x2a\x3c\x46\xde\x54\x53\xda\ +\x5e\x90\x72\x8c\x5f\x00\x8c\x8f\xc6\x6c\x49\x20\x54\x94\x8d\x3d\ +\x6f\x19\x1e\xfa\xdc\x80\x15\x98\xa5\x1d\xda\x47\x37\xae\x53\x4f\ +\x20\x54\x50\x2f\xcc\x9e\x96\xe6\xd9\x71\xf3\x6e\x9e\xfb\xc2\x71\ +\x0c\xd6\x95\x0c\x4d\x99\xac\x14\xa6\x26\xc2\x5f\x0f\x69\x3d\x51\ +\xc8\x7f\xa0\xc2\x01\x8e\x50\x74\x1d\x66\xce\xac\x98\x4b\x28\x50\ +\xb1\xa4\x46\x8f\x48\x40\xef\xd8\x93\xf4\xfb\x7d\x7a\xdd\x1e\xd5\ +\x4a\xe5\x05\x6d\x30\x76\x38\xc0\x41\xe0\xbe\xbf\x56\x07\x30\x7f\ +\xee\xe8\x0f\x1a\x6d\xff\x83\xf5\xc0\x9b\x36\x06\x63\x34\x5a\x6b\ +\x92\xbe\xcb\xfd\xcf\x9d\x3b\xcf\x4f\xff\xfc\x2f\xf1\xda\xeb\x06\ +\x6c\x9f\x92\x34\x6b\x9a\x3b\x5f\xd2\xe2\x8b\x47\xc6\x88\xda\x96\ +\x59\xdd\x23\x92\x50\xc1\x72\xd1\xaf\xc4\xb3\x95\x0a\xa7\x0e\x3f\ +\xc9\x99\x7a\x83\x1d\xb7\xdd\xe6\x4e\x90\xd5\x58\xa5\x5c\x2f\x57\ +\x64\x11\x46\x20\x92\x14\xa4\x03\xfa\x06\x49\xc2\xd2\xca\x2a\x83\ +\x7e\x1f\xdb\x68\x78\x72\x8a\x25\x1b\xb1\x50\xd0\x63\xb3\x1b\x55\ +\x70\xed\x1d\x77\xb0\x7c\xfb\x55\x4c\x36\x2a\x6c\x1e\x1f\x63\xac\ +\x31\x46\x1c\xb9\xa5\x24\x92\x20\xfd\xd2\x22\x7c\xdb\xb1\x10\x59\ +\xed\xdf\x7a\x3a\x67\x19\xc0\x13\x02\x5a\x4b\x6d\xb4\xb6\xf4\x7a\ +\x09\x9d\x95\x35\x3a\x9d\x3e\xdd\x76\x9f\xa5\xa5\x36\xfd\xee\x80\ +\xc5\x4b\xed\xcb\x56\x09\x2c\xeb\x25\xaf\xb2\x7b\xf8\x78\x4b\x30\ +\x16\x57\x79\xf9\x96\x41\x9e\xff\xdb\x21\x8a\x71\x68\xf2\x62\x94\ +\xe1\x87\xfb\x55\xc5\x52\x9d\x91\x79\x44\xc0\xe0\x0b\xb7\x67\x2c\ +\xb8\xe1\x91\x5a\x25\x3d\xbe\x50\xb4\xc2\xdf\xfd\xd6\x7a\x90\x2d\ +\x64\xf8\x65\xcc\x3a\x0a\x2a\xa0\xf4\xec\x39\xe3\xc1\xb9\xec\x60\ +\xa5\xb0\x85\x20\x27\xd9\x54\x28\x17\x36\x67\xce\x29\xdb\x9e\x61\ +\x98\x99\x71\x27\xc6\x2b\x02\x79\x8c\x0f\x6f\xc4\xa9\x16\x30\x70\ +\xdf\x49\x29\x50\xf5\x0a\xd0\xf3\xc4\x84\x42\x13\x4c\xb4\xcf\xb3\ +\xe5\xb6\xfd\x2c\x3c\xfc\x0c\x7e\x38\x95\x4b\x37\x08\xaa\x0c\xd9\ +\xe7\x2a\xeb\x10\x7f\x23\xd0\xda\x9f\x23\x8f\xcd\xc6\x9e\x9e\xac\ +\xb5\x3f\x47\xb6\xa0\x44\x6b\x40\x27\x6e\x1f\x55\xa0\xa2\x20\x39\ +\xfe\x38\xd6\x5a\x5a\x2b\x2d\x26\x37\x4d\x96\x79\x2b\x1b\x38\x00\ +\x8b\xbd\xe5\xaf\xd5\x01\xcc\x9f\x3d\xfa\x3d\xc6\x98\xdf\x42\x38\ +\x89\x6b\xe3\xf3\xea\x34\xd1\x24\x89\x26\x49\x13\xda\x6b\x6b\xfc\ +\xf4\xcf\xff\x47\xf6\x6f\x9e\xe7\x4d\xb7\x46\x5c\x6c\x59\x9e\x5b\ +\xb0\x5c\xbb\x3d\x45\xa9\x36\xf7\x3f\xd6\xe0\x50\xaf\xc6\x15\xa6\ +\xc7\x92\xb1\xcc\x2a\x49\xd7\xc2\xb2\xb5\xec\xab\x44\x9c\x7f\xf8\ +\x2f\x38\x76\xf6\x34\x5b\xae\xbe\x86\x78\x6a\x0b\xb2\x36\x8e\x90\ +\xd2\xa1\xb7\xd6\x0d\xea\x30\x3e\xb6\xeb\xf5\x7a\x2c\xaf\xac\xd2\ +\xef\xf4\x31\x63\xc6\xcd\xc6\xf3\xe3\x94\xb2\xab\x34\x3c\xe7\xbe\ +\x39\xb3\x8d\xcd\x4a\x50\x99\x3f\x8b\x68\x37\x31\x63\xe3\x24\x9d\ +\x35\x22\xe9\xa9\xac\x08\x64\x25\x46\x35\x1a\xbe\x96\x2d\xfc\x4d\ +\xea\xbd\xf6\xa6\x89\x1c\xf1\x95\xb1\x42\x36\x27\xd8\x3c\x35\xee\ +\x90\xea\x2c\x3a\x97\xd9\x71\x88\x1c\x8f\x58\xeb\xf4\xb8\x74\xb1\ +\xc5\xc5\xf9\x55\x16\x17\x56\xb8\x34\xb7\xc2\xe2\x62\x7b\x43\x86\ +\x60\x89\x32\x7c\x29\x62\x32\x36\x1c\xd8\xa4\xcb\x63\xa5\x03\xb6\ +\xe1\x70\xc4\x61\xa5\x8f\x42\x42\x8a\x71\xa0\xd5\x67\x02\x83\x96\ +\x01\xb2\x17\x8e\xda\xcb\x80\x2d\xeb\xa9\xb0\xc3\x9a\x03\x42\x82\ +\xd0\xc1\xf1\x04\x11\x80\x0d\x85\x40\x83\xbb\x2c\x33\x4e\x8b\x67\ +\xd4\x65\x0e\x44\x07\x91\x86\x2a\x5a\x07\x6d\x22\x0a\x5b\x88\x8b\ +\x08\xc2\x26\x41\xfe\x5d\x2d\xca\x8d\xf9\xd2\xeb\xf3\x72\x9d\xd7\ +\xe1\x45\xde\xcd\x28\x23\x50\xd5\x0a\xa4\x6b\xe4\x8a\x24\x19\xad\ +\xd1\x18\xc6\xc7\xda\xac\xcc\x4e\xd3\xf3\x53\x88\xb3\xfe\x0a\x21\ +\x40\x6b\x51\xea\x79\xce\xa5\xcb\xb3\x26\x24\x03\xaa\x12\x70\xce\ +\x8c\x28\x4a\xb9\x91\xfb\xbb\x14\x2e\xaf\x90\x58\x6a\xca\x9d\x9e\ +\xe5\x44\xb3\x76\xe1\x34\xab\x3b\x76\xba\x12\xaf\xb8\x7c\xb7\x96\ +\x9f\x5f\x71\xf0\xaf\x2d\x05\x98\x3b\x7b\xe4\x0d\x5a\x9b\x7b\x84\ +\x40\xb9\x49\x3c\x02\x6b\x52\x52\x6d\x49\x75\x4a\xa2\x13\xd2\x34\ +\xe5\x97\x7f\xf9\x37\x19\xeb\x3f\xc5\x5b\x0e\x46\x2c\x77\xdc\x2c\ +\xb5\xb1\xba\xa0\xd5\x15\x6c\x1d\x4f\x79\xe3\xcd\x6b\x7c\xfe\xc9\ +\x31\xf4\xaa\x61\xbf\x1c\x30\xb0\x8e\x6d\x37\x29\x04\x7d\x60\xaa\ +\x52\x61\xfc\xe2\x79\x96\xe6\xce\xd3\x89\x23\x9a\xaf\x7d\x33\xf5\ +\xfd\xd7\x3a\x45\x14\x61\xb1\x52\x7a\xb6\x96\x64\xd0\xeb\xd1\x5e\ +\x5d\xa5\xd5\xe9\xb0\x49\x6b\x1a\xb1\xd7\xf6\xc7\x62\x85\x2c\xa2\ +\x80\x50\x4f\x1f\xc1\xec\xee\xfd\x3c\xff\xc4\xc3\x58\x01\x55\xef\ +\x6d\x4d\x88\x66\x7b\xc1\xcf\x0c\xf1\xcd\x87\x46\x88\x6c\xf2\x6b\ +\x91\xdf\xa7\xfe\x7d\x6a\x7c\x1c\x11\x45\x88\x4a\x15\x51\xaf\x13\ +\xd5\x6a\xd8\x46\x03\x39\x31\x81\x8c\x2b\x34\xc7\x27\x18\x9b\xa8\ +\xb3\xf7\xaa\xed\x7e\x05\x15\xa4\x69\xca\xfc\x85\x16\x8b\x17\x57\ +\x99\x9f\x6f\x71\xf1\xc2\x32\x97\xe6\x57\x30\x7a\x9d\x04\x26\x5f\ +\x9e\xaf\x32\x5d\xed\xb1\xad\xbe\xfe\x6f\xeb\x8c\x5f\x14\xc6\x1f\ +\x6a\xf6\x31\x24\x97\x65\x87\xc2\xe9\xd0\x59\x18\x29\x30\xbe\x09\ +\xc6\x78\x02\x4b\xc9\xb9\x08\x3b\x92\x24\x23\x02\x2e\x7d\x38\xfd\ +\x58\x8a\xf2\x14\x5e\x11\x90\x68\xc2\xd7\xcb\x5c\xe2\x5b\x8c\x18\ +\x97\xed\x86\xa9\x5a\x53\x90\x75\xac\xe7\x15\x0b\xe9\x49\xa3\xde\ +\x99\x19\xe9\x8d\x5f\x16\x2b\x33\xfe\xef\xc6\x82\xa8\x55\x61\x45\ +\x97\xc3\xb1\xcc\x11\xb6\x5b\xec\xbc\x61\x37\x27\x3e\xdf\x02\x6d\ +\xdc\xeb\x95\x5b\xfd\x85\x0f\xeb\x65\x98\x16\x98\x02\x6f\xb0\x1e\ +\x68\xcc\x96\xfa\x12\x4d\x5a\x17\xaf\x97\xd2\xa2\x0d\xd4\x94\x22\ +\xd2\x9a\x58\x38\x1c\xa0\x73\xcd\x0d\x24\x49\x4a\xa5\x12\xbf\x70\ +\x1a\xa0\xd4\x8d\x7f\x2d\x0e\x60\xee\xec\x91\x97\x02\x1f\xb3\xd8\ +\x4a\xc6\xb9\x37\xc6\xa2\xb5\x25\xf1\x35\x7f\x93\x1a\x3e\xf8\xa1\ +\x3f\xe2\xfc\xe1\xfb\x79\xdd\x8d\x8a\xf1\x06\x5c\x9a\x87\x7a\xc5\ +\xb2\xa9\x01\x67\x16\x0d\xb5\x9a\xe4\x25\xdb\x53\x7a\x7a\x95\x07\ +\x0e\x8f\x33\xb6\xa6\xd8\xa2\xbb\x48\x21\xa8\x0b\x98\xd3\x96\xba\ +\x94\x34\x2a\x15\xfa\x5a\x33\x85\x45\xce\x9d\x23\xb9\xfa\x80\xeb\ +\x7d\xf7\xf4\x2a\x97\x4f\x59\x92\x64\x40\xb7\xdb\xa3\xb5\xd2\x62\ +\x30\x18\xd0\x88\x63\xac\x71\x77\x9b\xc8\xb1\x7f\x77\xcb\xe5\x9c\ +\x76\x2b\x98\x7c\xd5\x5d\xa8\x7b\xff\x30\x5f\x2c\x84\x14\xeb\xe9\ +\xb1\x41\xde\xbb\xae\xf1\x23\xbc\xaa\xd9\x0d\xd7\x6e\xe7\xe5\x67\ +\x9c\xf8\x0b\x22\x73\x2c\xc6\x85\xb4\xb2\x5e\x47\x4e\x6c\x46\x6c\ +\xde\x84\x18\x9f\x44\x6c\xda\xc4\x8e\x3d\xd3\xec\xdc\x33\x9d\x47\ +\x2b\x16\xb8\x34\xbf\xcc\xa9\x67\xe6\x39\x73\x6a\x81\xd3\xa7\x16\ +\x9c\x7e\x82\x85\xfb\xcf\xd5\xf9\x9e\x2b\xbb\x8c\xc5\x76\x28\xbc\ +\x17\xeb\x23\x08\x2b\x10\xca\xe6\x2b\xac\xa3\xae\xda\x5c\x1c\x23\ +\x53\xe6\xc9\xda\x76\x0d\xc1\x30\x82\xec\xdc\x69\x51\x46\xf5\xf3\ +\xea\x8f\x67\xc8\xf9\xed\x59\x5a\xa1\x87\x38\xf9\x19\x06\xa0\xb5\ +\x77\x94\xbe\x49\x48\xe6\xe4\x99\x42\x27\x20\x52\x05\xf6\xe0\x89\ +\x9f\x3e\xd4\x2d\x8c\xd7\x18\xb7\x02\x4b\xe1\xf6\x13\xc5\x6e\x5b\ +\x9a\x91\x82\xa4\x7b\xbd\xc9\x7b\x07\x44\x8e\xf3\x65\xa8\xbe\x06\ +\xd2\x01\x10\x55\x20\x4d\x8a\x1c\x68\x38\x5f\x6a\x9d\x61\xe6\xe0\ +\x95\x2c\x3c\x7c\xd2\xa5\x0f\xde\xc9\xc8\x8a\xd7\x37\xd0\x90\xe8\ +\x22\x22\x51\x9e\x74\xa4\x2d\xa4\xa9\x3f\x5e\x21\x90\xca\x3a\x5e\ +\x83\xf6\xa9\x48\x48\x2e\x92\x10\xd7\x2a\xd0\xef\x22\x2d\x74\x8e\ +\x1f\xa6\xd3\xe9\x90\x24\x09\xd5\x6a\x65\xc3\x0a\x40\x01\xc4\xc8\ +\xfd\xa7\xcf\x9d\x1f\xdb\xbd\x63\x7b\xfb\x9b\xe6\x00\xe6\xce\x1e\ +\xb9\xd1\x5a\xfe\xd4\x1a\x5b\x77\xab\xbe\xc9\x8b\xb2\xc6\x18\xac\ +\xa7\xe2\xa6\x69\xca\x35\xd7\xbc\x84\xb3\xe7\xbf\x93\xff\xfe\xd5\ +\x07\xa8\xeb\x0b\x7c\xc7\xb5\x8a\x2b\xb6\xc0\x6a\x1f\x76\xcf\x48\ +\x56\xd6\x2c\x0b\x2b\x70\xf0\x2a\x4d\xb3\xde\xe6\xfe\x07\x9b\xbc\ +\x79\x50\x63\xa7\x1e\x70\xc9\xc0\xae\x48\xb1\x6a\x2c\x2d\x6b\xd9\ +\x1e\x29\x5a\xda\xd2\x9e\xbb\x40\x45\x4a\x37\x46\x1b\xe5\x29\xa8\ +\x8e\xe4\xad\x8d\x63\x1a\xb6\x56\x56\x49\x07\x03\x4c\xb3\x51\x20\ +\xc3\xbe\x12\x90\x6b\x3c\x88\x82\x4b\xd5\x7c\xe9\xeb\x18\x57\x6e\ +\x66\x9b\xb4\x29\x82\x4a\xa9\x9e\x1d\x86\xcb\xa5\x1a\xb3\x1c\x92\ +\xed\x1e\x42\xd3\xe5\x50\xc7\xa9\xab\xab\x5b\x4f\xec\x00\xdb\xed\ +\x61\x7a\xe7\x61\xfe\x7c\xb1\xd2\x2a\x89\xd8\x3c\x85\x98\x98\x44\ +\x6e\xda\x84\x9c\x9c\x62\x66\xcb\x26\x66\xb6\x6e\xe6\xf6\x57\x5c\ +\x43\xaa\x53\xce\x3e\xb7\xc0\xf1\xa3\xe7\x39\x7e\xe4\x1c\xf7\xcf\ +\x35\xf8\xae\x5d\x6b\x2e\x75\xb5\x1b\xe4\x0e\x39\x1a\x9e\xa1\xe8\ +\xd6\x0b\x6f\xca\xcc\x1d\xfa\x33\x99\x85\xfd\x22\x28\x0b\x15\x02\ +\xe0\x76\x44\x47\x62\xa8\xc2\x63\x03\x3d\x7f\xeb\x39\xf9\x26\x2c\ +\x1b\xda\x10\x78\x73\xaf\x89\x02\x2e\xbd\x4d\x29\x8d\xeb\xca\xca\ +\x90\x26\x0d\xb4\xf9\x82\xaa\x84\xd1\xa3\xd1\xfe\xcc\x93\x0b\x03\ +\xc2\xeb\x6b\x46\x02\x06\xa9\x08\x58\xc5\x0e\x40\x96\x59\x00\x55\ +\xab\xb9\x44\x3c\xeb\x28\xb2\xeb\x01\x94\x71\xd5\xa2\x3d\xbb\x89\ +\xd5\xb9\x96\x33\x68\x0a\x45\x23\x54\xb9\x01\x4a\xc6\x7e\xe5\xcf\ +\x40\x51\x21\x88\xc6\x1a\x98\xee\x5a\x7e\xef\x24\x01\xa0\x98\xed\ +\x26\xaa\x54\x88\xe8\x12\x03\xfd\x67\x0f\xa3\xb5\x66\x75\x75\x85\ +\xb1\xb1\xe6\x65\x81\xe3\x41\x92\x30\x18\x0c\x94\xc5\x1e\xe0\xaf\ +\xa0\x10\xa4\x2e\x6f\xfc\x47\x77\x62\xf9\x9c\x35\x66\x26\xeb\x35\ +\x37\x22\x9b\xd6\xeb\xa7\xf4\x9a\x14\xad\x35\xa9\x36\x6c\x99\x9a\ +\xe6\x96\x5b\x6f\xe4\x0d\x6f\x78\x2d\x53\xdb\xf6\x71\xf8\x0c\x7c\ +\xec\x8b\x0b\xf4\x7a\x7d\x6a\x35\xd8\x34\x2e\xa8\xd5\x25\x03\x0d\ +\xd3\x4d\xcd\x96\x2d\x86\xcf\xcf\x37\xd9\x94\x18\x76\x4b\x4b\xdf\ +\xe7\xd6\x31\x90\xe2\x56\x2f\xd5\xeb\x60\x6f\x7d\x99\x2b\x07\x66\ +\xfc\xfe\x40\xd4\x23\x8a\xaa\x34\x9b\x0d\xb6\x6e\x9b\xa1\xd9\x68\ +\xba\x91\xcb\xfe\x0e\x14\xf9\xba\x5a\x46\xc8\x6d\x14\xa1\x1f\xf9\ +\x22\xed\xf3\x67\x68\x5a\x8b\xaa\x56\xd7\x93\x5f\x44\x59\x68\xa3\ +\x5c\x4e\xb3\xa5\x32\x5b\xae\x75\x37\x14\x24\x88\x61\xa1\x0f\xb1\ +\xbe\x74\x87\xb6\xd8\xde\x1a\x62\x79\x09\x7b\xe1\x3c\xf6\xb9\x13\ +\xa4\x47\x9f\xc6\x9e\x3f\x8b\x59\x6b\xa3\x84\x62\x6a\xd7\x2c\x57\ +\x5d\xb3\x9d\x5b\xbe\xe3\x2a\x1a\xe3\x75\x96\xcf\x5f\x62\x4a\xa5\ +\x97\x25\xf9\xac\x63\xeb\xf8\x30\x3e\x94\x28\x73\x61\x77\x39\xbc\ +\x27\x27\x40\x89\x12\x92\x5e\x94\x22\xcb\x1c\x80\x1c\xed\xb7\x85\ +\x0e\x5f\x89\x07\x60\xd6\x05\x4b\x45\x03\x92\x1d\x2a\x57\xaa\x42\ +\x2b\xd0\x12\x50\x88\x55\xa1\x13\x88\x2f\xc3\x09\x55\x34\xde\xe4\ +\x63\x05\x03\xc9\x2e\xed\x01\x47\x1b\xe2\x0a\xfe\xd8\xb5\x85\xc9\ +\x3b\x6e\x83\xb9\xe7\x20\xe9\x95\xeb\xa2\xe1\xcd\xa2\x13\x9a\xdb\ +\xa6\x59\x3a\xbb\x8a\xf5\x51\x5c\x76\x1e\x4c\x86\xa3\x98\xa2\x34\ +\x1a\xf9\xb4\xc3\xf8\xd4\xa8\xb6\x7b\x96\x74\x79\xd5\x7d\x6e\x38\ +\x23\x52\x14\xc7\x9e\x22\xe8\x75\x7a\x74\x2d\xb4\xdb\x2b\xcc\xbe\ +\xe9\x7b\x18\x9b\x9c\x64\x7a\xcb\x96\x0d\x31\x80\xfe\x60\xc0\xa5\ +\x56\x2b\x2b\x6d\x3f\xf2\x2b\xef\xf9\xcf\x0f\x7e\xc3\x23\x80\xb9\ +\x33\x47\x26\xad\x31\xf7\x02\x3b\x33\x39\x67\x8c\x75\x11\x40\x8e\ +\xfc\x9b\xc0\x1e\x2d\x56\x58\x24\x82\x7a\xad\xc6\xa1\x43\xdf\xc1\ +\xed\x07\x6f\x61\xfe\xe2\x25\xbe\xf2\x95\xaf\x71\xdf\xe7\xbe\x4c\ +\x93\x53\xbc\xfa\x16\xc5\x58\x03\xe2\xa6\xe0\xb6\x7d\x09\xdd\x64\ +\x95\x2f\x3e\x3a\xc1\xa6\x7e\x9f\x46\xd2\x23\x96\x82\x89\x48\x70\ +\x26\xb5\xc4\x52\xd0\x40\x70\xe9\xc2\x59\xe4\xae\x3d\x0e\x04\xb4\ +\x12\xe3\x5b\xd3\xa4\x10\x24\x49\x9f\x95\x76\x87\xd5\x95\x0e\x33\ +\xd3\x9a\x8a\x72\x72\x2f\x39\x70\x13\x30\x66\xf2\x45\xc6\x0a\x1a\ +\x77\xbe\x05\x1e\xfe\x1a\x7d\x9d\x12\x53\x2e\xaf\x21\x03\x71\x8d\ +\xa1\xb9\x77\x1b\x95\xf9\x72\x01\xc9\x00\x54\x13\xa1\xd6\x97\xb1\ +\xa3\x61\x7a\x55\xe6\xe2\xe4\xa9\x68\x6b\x19\xd3\x5a\x86\x63\x47\ +\xd1\x4a\x21\x66\x67\x61\xdb\x2e\xf6\x5f\xbd\x13\xbb\x73\x1c\xfd\ +\xf9\x3f\x1b\xa2\xd0\x05\x2b\xe2\x50\x34\x60\x87\xf4\xf3\x33\xe3\ +\xb6\x21\x59\x85\xe2\x30\xb3\xb4\x21\xe0\xc9\xf8\x39\x0a\x43\x9f\ +\x91\x19\x9a\x86\xc9\x3b\x6f\xc1\x76\x13\x7a\xc7\x9e\x25\x69\xf7\ +\xd0\x69\x71\xce\x64\x54\x84\xfd\xda\xa7\x04\x62\x68\x7b\x6a\x80\ +\xbe\x77\xa4\x91\x0b\x8f\x75\xa6\xa8\x93\x78\x47\x1b\x15\x33\xfd\ +\x52\x5d\x60\x17\x4a\xb9\xbf\xa5\xb8\xe8\x41\x1b\xbf\x04\xc4\x10\ +\x5b\x4b\x2a\x04\x69\xe2\x0c\x56\x08\x88\xab\x0a\xe2\x8a\x8b\x00\ +\x84\x28\x77\x13\xe5\xe5\x07\xdf\x0d\xd8\xbe\xc8\xcc\x4d\x57\xb2\ +\xf4\xe4\x49\x0c\x10\xcc\x5a\xcd\xc9\x45\xa9\xaf\x3c\xf4\xb5\xf0\ +\xe9\x80\x7b\x6f\x6d\xfb\x16\xda\x27\xce\x91\xb5\x03\x48\xdf\x5c\ +\x62\x52\xe7\x24\xb4\x6f\xef\xa9\x57\x20\x4e\xc0\x26\xb0\x76\xfa\ +\x59\xba\x7b\xae\x24\x4d\x12\xe2\x38\x5e\xe7\x04\xd6\xd6\xba\x2c\ +\xae\xac\x84\x9b\xfe\x4a\x38\xc0\x86\x11\xc0\xbf\xfa\x17\xff\xec\ +\x13\x16\x0e\x81\x6b\x87\x14\xde\x7f\xb9\xde\x7b\xe3\xf2\x34\x2c\ +\x26\x4d\x1c\x01\xc7\xa7\x06\xc5\x4c\x37\x81\x44\xd1\x68\xd6\xb9\ +\xfa\x9a\xfd\xbc\xf6\x35\xaf\xa2\x3e\xb1\x8b\x3f\x7f\x70\x95\x23\ +\xcf\xce\x53\xab\x82\x54\x82\x1b\xaf\x32\x54\x9b\x9a\x8f\x3f\x5f\ +\xe3\x5a\x25\xd9\xac\x35\x17\x8d\x65\xab\x92\xa4\x58\x16\xb5\xa5\ +\xbe\x69\x13\x7a\xd7\x9e\x91\xe3\xb7\xac\x31\x34\xaa\x35\x36\x4f\ +\x4d\xb1\x79\x72\x92\x7a\xbd\xea\x0c\xd7\x97\xf0\x08\x18\x7e\x85\ +\x7d\x0b\x98\x9c\x61\xee\x8f\xde\x87\x06\xc6\x1a\xf5\xdc\x40\x44\ +\xae\x1d\x6f\xcb\x23\xba\x32\x46\xb2\x08\xc8\x33\x7e\x75\x0a\x7f\ +\x17\xc3\x24\x1c\x02\x02\xcf\x90\xd0\x47\x89\xc0\xa3\x8a\xb4\xc3\ +\x8a\x62\x55\x71\x11\xaa\xc5\x76\xda\x30\x7f\x0e\x73\xe2\x19\x4c\ +\xbf\x07\xe3\xe3\xb0\xb6\xe2\x56\x5a\x19\x84\xfd\xa2\x38\x5e\x21\ +\xfc\xac\xfa\x90\x34\x13\xac\x60\xf9\x31\x05\xdb\xad\x28\x30\x0f\ +\x21\x8b\xe3\x2a\xd1\x72\x7d\x5e\x6e\xb3\x2e\x38\x20\x5d\x5c\xa5\ +\xf6\xb6\x37\x11\xdf\x7e\x90\xda\xb6\x4d\x90\xa6\x24\x8b\xad\x32\ +\x6b\x4f\x3a\x86\x5f\xc6\xe8\x2c\x6f\x0f\xe8\xb3\xb1\x87\x12\x64\ +\x79\x4c\x58\xd6\x3c\x24\x7c\x79\x2d\x1c\xe8\x61\x64\xa6\x44\x24\ +\x72\x40\x51\x45\x14\x80\xab\x29\x7c\x5f\x65\xb2\x49\xf3\xa6\x03\ +\xf0\xfc\xe1\x22\x9e\x19\x06\x03\x45\x81\x87\xd4\xea\xb0\xd6\x8f\ +\xd1\x83\x7e\xde\xdc\x63\x3d\x3e\xa1\xfd\xf9\xd3\x56\xe4\x99\x84\ +\x92\x0e\x9c\x1c\xbb\xfe\x6a\xd6\x9e\x3f\x8f\xf1\x1f\xae\x02\x67\ +\x5f\x92\x16\xd3\x5d\x96\x35\x0c\x80\x68\x66\x27\x9b\xae\xbb\x89\ +\x99\x99\x19\xe7\x00\x82\x9f\x95\xd5\x36\xad\xf6\x50\xba\x6f\xb0\ +\xbf\xf2\xcb\xff\xf9\xfd\xdf\xf0\x08\xe0\x91\x27\x8e\xd7\x67\xa6\ +\x37\x31\xb3\x65\x33\x51\xe4\xbf\x9c\x6f\x70\x30\x22\xd3\xf4\x07\ +\xa1\x22\x84\x4d\x9d\x26\x1f\x60\x63\xeb\xb5\xcb\x24\x52\x6a\x44\ +\x0a\x52\x47\x44\xcd\x88\x57\xbe\xf2\x4e\xee\x78\xc5\xcb\x79\xe8\ +\xa1\x47\xf8\xe4\x27\xef\xe7\x6b\x4f\x3d\xc9\x1d\x37\x49\x6e\xbe\ +\xba\x0f\xaf\x85\x8f\x7f\x61\x82\xb7\xa6\x96\xed\x32\x61\xd5\xb8\ +\x66\x9c\x49\x05\xbd\xf3\xa7\x11\xbe\xe9\x45\x5a\x83\xb1\x12\x2b\ +\x95\x53\x78\x35\x86\x7e\xd2\x67\xb9\xb5\x4c\x7f\xd0\xc5\xca\x49\ +\xd7\x74\x32\xb2\x53\xae\xa0\xfa\x56\x76\xec\x66\xdb\xf6\x1d\x5c\ +\xbc\x70\x0e\xab\x07\xc8\xa8\x5a\xf4\xe2\x07\xf3\xf6\x42\x74\xbb\ +\x24\xc3\x6d\x03\xe2\xcc\x50\xb8\xef\x55\xa4\x02\xf6\x9d\x28\xeb\ +\x04\x04\x18\x42\x16\x0a\x0e\xdf\x87\x21\xe3\x37\x1f\x7d\x6d\xc1\ +\x1a\x8d\x38\x7f\xd6\x39\x63\x44\xc1\x3d\x5f\x47\xd2\x2f\x5a\x74\ +\x4b\xfc\xf2\x2c\x9a\xd1\x43\xc3\x3c\x33\xc6\x9b\xf6\x7d\xee\xb2\ +\xe8\xa9\xc9\x8c\x50\x14\xdd\xae\xe5\xf7\x00\x69\x67\x0d\x3e\xfd\ +\x09\xb8\xe9\x7a\xd8\xb1\x97\xfa\x95\xfb\xa9\x2f\x2f\x31\x78\xf0\ +\x51\xd6\x8e\x9f\xc0\xa6\x69\xa1\x90\x61\xd6\xa3\xf3\x21\x99\xc7\ +\xda\x82\x84\x53\x52\xf4\xc9\x9c\x9a\x29\xbe\x90\x10\x96\x34\xdb\ +\x8d\xc9\x94\x7e\xc2\x31\x63\xa2\xc0\x2d\x84\x07\xe6\x6a\x55\xbf\ +\x13\x5d\xce\x97\xec\x06\x68\x5b\x77\x95\x2d\x57\x6d\xe3\xf4\x83\ +\x6d\x77\xee\x94\x07\x54\x87\x48\x4a\xd9\xe7\x6a\xcf\x64\x24\x31\ +\x8c\x4d\x55\x69\x9d\x4f\x73\xae\x47\xe6\x60\xa5\x15\x7e\x5a\x91\ +\x40\xa9\x1a\x91\xe8\x11\x01\xbd\xe7\x8e\xd3\x5d\x5b\x63\x90\x24\ +\x34\x02\x16\xeb\x72\xab\x45\xb7\xd7\x5b\x0f\x04\x0a\x7b\xe0\xd4\ +\x99\xb3\x6a\xcf\xae\x9d\xfa\x1b\x1a\x01\xdc\x75\xd7\x5b\x1f\x5f\ +\x58\x6c\xe9\xd3\x67\xe7\xaf\x5a\x59\x5d\xab\x5b\x63\xa9\xd4\x2a\ +\x08\x6b\xf2\xc8\xd3\x58\x93\x5f\x3c\x6d\xbc\xce\xbd\x50\x3e\x2c\ +\x73\x49\xa0\xf4\xcb\xa6\x94\xca\x91\x68\xa4\x64\xfb\xb6\x6d\xdc\ +\xf9\xca\x43\x4c\xcd\xee\xe3\x0b\x0f\x2e\xf3\xc8\x53\xf3\x1c\xd8\ +\x6b\x69\x6e\x4e\xf8\xe2\xdc\x18\xfb\xad\xd3\x12\x88\xa5\xa0\xae\ +\x04\x4b\xab\x1d\xd4\xad\x2f\xcb\x8d\x5e\xf8\xc6\x9e\x0c\x13\x50\ +\x51\x4c\xbd\x5e\x67\xfb\xd6\xad\x8c\x35\xc7\xf2\xde\xfd\xb0\xf1\ +\x8d\x9c\x23\x50\x5c\xeb\xf4\xdc\x29\x5a\x4f\x3f\x42\xd3\xa4\xa8\ +\x6a\xbd\xd4\xa7\x1e\x0e\xe9\x14\x41\x6e\x59\x8a\x00\x46\x34\xc5\ +\x0c\xd3\x6c\x87\xff\x56\x9a\xf0\x13\xd2\x58\xe5\x90\x1c\xd8\xd0\ +\x00\x8c\x12\x50\x16\x7c\x07\x11\x6a\x64\x07\x4a\x3e\x26\x70\x52\ +\x39\xc8\x6d\x0b\xbc\x2b\x8b\x66\x72\xfd\xbb\xa0\x75\x57\xaa\x82\ +\xef\xaf\x75\x11\x25\x64\xef\x49\x8d\x03\xf0\x32\x9a\x72\xa6\xda\ +\xd3\x6b\x0d\xa8\x55\x56\xe1\xfc\x51\xe8\x2c\x43\xa3\x89\xba\xf1\ +\x26\x6a\x37\x5c\x4f\x2c\x0d\xbd\x8b\xcb\x08\x34\x4a\xd9\x7c\xb5\ +\xd6\xda\x45\x03\xca\x93\x6a\x9c\xce\xa0\x40\xa7\x2e\x1c\x51\x51\ +\xd1\x0b\xe6\x94\x79\x44\x2e\xc0\x91\x89\x81\xda\xc4\xf3\xf2\x8d\ +\x43\xdd\x95\x72\x39\xbf\x49\x1d\x52\x6f\x8c\x03\xfd\x95\xdf\x4f\ +\xb4\x65\x9a\xc6\xde\x9d\x70\xfe\x78\xf9\x24\xaf\x1b\x71\x5c\x5c\ +\xb0\x28\x6d\xd3\x1f\xdb\x41\xba\xdc\x42\x45\x19\xc1\x48\xe4\x8f\ +\x28\xfb\x5c\x29\xf2\x34\xa4\x79\xd5\x6e\x6a\x6b\xe7\xe9\xae\xa4\ +\x7e\xd5\x2f\x22\xa0\xbc\x15\x41\xba\xc9\xc1\x4b\xed\x3e\x03\x0b\ +\x66\xd0\x63\xfa\xf5\x7f\x8b\xc9\xcd\x9b\x99\x9c\x98\xc0\x5a\xcb\ +\xe2\xd2\x12\x3d\x2f\x3d\x6e\x4a\x65\x51\xf0\xac\xf6\xdf\xfb\x95\ +\xf7\xbc\x67\xf9\x1b\xea\x00\x3e\xfa\xd1\x8f\x9e\xff\xe8\x47\x3f\ +\xfa\xc9\x77\xbc\xe3\x1d\xff\xb9\xdb\xed\x3f\xb4\xb0\xd8\x8a\xcf\ +\x9d\x5b\xd8\xdb\xed\x0d\xe2\x4a\x1c\xa3\x2a\x32\x3f\x6f\x26\xe0\ +\xef\x67\xcc\x39\x17\xf2\xb8\x3b\x29\x52\xca\x4d\xe9\x95\x59\x98\ +\x24\x50\x4a\xb1\x7d\xfb\x36\xee\xbc\xf3\x0e\x6a\x63\xbb\xf8\xe3\ +\xfb\xce\x51\x13\x97\xd8\xb5\xd7\x70\xff\x99\x26\xb7\x45\x96\x2a\ +\x96\x05\x63\xd8\x22\x25\xdd\xdd\x7b\x61\x62\xc2\xdf\xc8\x86\x50\ +\xb7\x5f\x00\xb5\x5a\x95\xe9\xe9\x69\x26\x27\x26\xa8\x55\x2b\x39\ +\x4b\xaf\xd4\x96\x5b\x34\xa7\xba\x48\xa6\x52\xe3\xe2\x7d\x7f\x80\ +\xb0\x96\xda\x58\xd3\x3b\x2a\xdf\xb6\x9a\x11\x5f\xbc\x07\x91\x7e\ +\x3f\x52\x16\xef\x77\xbf\x53\x6e\x8b\xa5\x60\x09\xe6\x6d\x9d\xb2\ +\x68\x1d\x15\x61\xc9\xc0\x06\x6d\xb0\x04\x6d\xaf\x59\xd3\x93\x6f\ +\x6d\xb5\xe1\xb6\xb0\x35\xd8\x16\x6d\xbf\x36\xf2\x0d\xa3\x52\xa0\ +\x83\xd7\xc8\xa8\xd8\x8f\xce\x5e\x9f\x1d\xbf\xff\xbc\xbc\x45\x16\ +\x81\x54\x45\x4b\xab\x36\x41\xab\x6b\x54\xfc\x3f\xdc\x8f\x8c\xfd\ +\xff\xa5\x5b\xd1\x2a\xf5\x06\xb2\x0e\x74\xdb\xb0\x70\x06\x2e\x9e\ +\x86\x38\x46\x5e\x7b\x3d\x8d\x5b\x6e\xa0\xa6\x52\x06\x97\x96\xc1\ +\x1a\x57\x57\x17\xae\xe5\x36\x8a\xc9\x5b\x7e\x53\x53\xb4\x34\xab\ +\xb8\x38\x5f\x5a\x8b\xbc\xa7\x40\x55\xc8\xbf\x57\x6a\x1c\x4f\xd3\ +\x0a\x81\xaa\x16\xd7\x2c\x49\xdd\xb3\xb1\x82\x28\x2e\xde\x1b\xcf\ +\x6e\xa1\xbe\x73\xda\x81\x80\x62\x84\xc7\x96\x94\x9b\x27\x7c\x90\ +\x30\x3e\x06\xad\x25\xa7\x6a\x2d\x84\x20\x0d\xc8\x22\x2e\x9d\x71\ +\xe7\x50\x1b\xf7\x39\xcd\xab\x76\x51\xd3\x4b\x2c\x5f\x4a\xbc\xf1\ +\xca\xbc\x3d\x58\xaa\xe2\x9a\xa6\x42\xb1\xb2\xb6\x46\x62\x61\xb5\ +\xdb\x61\xeb\x1b\xde\xc1\xf8\xa6\x4d\xd4\xeb\x75\x96\x5b\x2d\x92\ +\x24\x19\x5d\x0a\x2c\xe6\x9f\xfd\xd9\xaf\xbc\xe7\x3d\x47\xbf\xa1\ +\x29\x40\xf6\xf3\xce\x77\xbe\x53\x03\x1f\x07\x3e\x7e\xf7\xdd\x77\ +\x4f\xcd\x5f\x5c\xfa\x27\xf3\x17\x97\xde\xdd\x6c\xd6\xb7\xcd\xcc\ +\x6c\x66\x6a\x73\xb3\x18\xbf\x25\x55\x10\x6d\x0b\x52\x6d\x51\xd6\ +\x4b\x74\x79\x67\x11\x5b\x41\x14\x49\x92\xc4\xa0\x94\xeb\x7b\x3f\ +\x74\xe8\xa5\xdc\x7c\xcb\x4d\x7c\xe6\x33\x7f\xc6\x9f\x7c\xe2\x3e\ +\xae\xd8\xb1\xcc\x87\xe7\x36\xf1\x9d\x76\x8d\x59\x09\xab\xc6\x20\ +\xcf\x9f\xc6\xec\xbc\x02\x21\x2c\x42\xaa\x42\x7e\xc9\xa4\xe8\x54\ +\xd3\xef\x0d\x68\xad\xb4\xe9\xf7\xfb\x30\x31\xe6\xc3\x75\x01\x01\ +\x69\x27\x04\x03\x85\x10\xd4\x6e\x3e\xc4\xcc\x78\x93\x4b\xed\x0e\ +\x93\xda\x20\x22\x95\x2b\xdc\x14\x17\xbf\x60\x81\xc9\x60\xe5\xce\ +\x4a\x39\x19\x67\x5e\x0c\x35\xcd\x84\xa1\x78\xa8\xc3\x5f\xa2\xf1\ +\x06\x43\x26\x04\xeb\xf9\xeb\x21\x50\x57\x9a\x52\x1b\xa8\xd6\x8a\ +\x61\x14\xde\x96\x6f\x14\xbd\x41\x1d\xd9\x88\x40\xbc\x23\x58\xf4\ +\xc2\xd9\x7a\x01\x85\x20\xaf\xb3\x33\x34\x6c\x24\x67\x14\x7a\xc7\ +\xbe\xfc\xfc\x32\xd3\x33\x5b\x7c\x8d\xcf\x35\xd9\x70\xf2\x51\x38\ +\xfd\x14\x6c\xdb\x8f\x3c\xf8\x52\x36\xdd\x7a\x3b\x83\xbf\xf8\x1a\ +\xcb\x8f\x3e\x8b\xd6\xda\x45\x03\x56\xe4\xdd\x7a\xc2\x16\xb3\xf5\ +\xb4\x15\x79\x96\x50\xee\x44\x15\x48\xe9\xf1\xa9\xac\xe3\x4f\x78\ +\xb2\x4e\x36\x0e\xcc\x8b\x7b\x20\x1d\x76\xe5\xbe\x9f\xa0\x32\xde\ +\x84\xc1\x60\xa8\x8d\x29\xe8\x53\x1e\x1e\x4e\x90\x11\x1a\xba\x6d\ +\x66\xaf\xdb\xc1\xb9\xc7\x4e\xfb\xae\xd4\x80\x39\x99\x4f\x10\x0d\ +\x77\xe5\x1c\x5c\x7d\x5c\xd1\x5e\x2a\xe6\x96\xe5\x83\x5e\xb3\x61\ +\x2a\x52\xd0\x10\xd0\xf6\xd5\x91\xf6\xa9\xe3\xf4\xf6\x5d\xc5\xd2\ +\xca\x4a\x09\x6c\x36\x1b\xb4\x07\x5a\x38\xe0\x6d\xf4\x9b\x4b\x05\ +\x7e\xe7\x3b\xdf\xb9\x08\xfc\xdc\x13\x8f\x3f\xf4\xe1\xe5\xc5\xd6\ +\x13\xf3\xf3\x4b\xb5\x33\x67\xe6\x98\x9e\x9a\x60\x7a\x7a\x32\x37\ +\x68\x21\x1d\xca\x24\xfd\x38\x56\x91\x25\x8f\x5a\xa3\xe2\x08\x9d\ +\x0a\xe2\xd8\x90\xa6\x9a\x28\x76\x5e\xb1\x5e\x17\xbc\xe5\xae\xbb\ +\xb8\xfd\xf6\xdb\xf9\xc3\x3f\xfc\x08\xe7\xe6\x1e\xe0\x0f\xf4\x38\ +\xff\x47\x45\x32\x48\xfb\x44\x67\x4e\xa3\xbf\x43\x20\x95\xc4\x5a\ +\x89\x30\x06\xe9\x05\x20\x8c\xd1\x8e\x0f\xd0\x6a\xd1\xed\xf6\xdc\ +\xc4\xd5\x30\x22\xa1\x0c\xbc\xe5\xe1\x8f\x52\xd4\xef\x78\x0b\xdc\ +\xff\x11\x4c\x77\x15\x35\xb6\x79\x7d\x18\xee\xf3\x77\x1b\x0c\xa5\ +\x28\xf5\xd3\x07\xf5\x2d\x11\x34\x8c\xc8\xb0\x3a\x60\xcb\x51\x66\ +\x8e\x47\x18\x5b\x6a\xa7\xdd\xb0\x6d\x77\x5d\x1f\xf6\x50\x2b\xf0\ +\x90\xe4\x21\x5e\x27\xc3\xda\x72\xa1\x40\xa8\xc0\xe8\x4d\x91\x16\ +\xc8\xe0\x2e\x30\xda\xd7\xd5\x7d\x68\x6f\x03\x12\x8e\x4d\xfd\x77\ +\x0e\xc8\x3c\x46\x8b\xdc\xf1\xb8\x50\xdd\x62\x56\x04\x72\x62\xe8\ +\xe0\x75\x0a\x67\x8f\xc0\x85\x13\xb0\x73\x3f\x95\x57\xdc\xc9\xec\ +\xc1\x83\x0c\xbe\xf6\x00\x2b\x87\x4f\x90\xa6\xde\xf8\x15\xa8\xd8\ +\x93\x6d\xac\x03\xea\x33\xc9\xbf\xa8\x52\x54\x01\x4c\x82\x5f\x81\ +\xa1\xe2\x5b\xfb\x8d\x71\xdc\x9e\x2c\xcd\x89\xa2\x02\x60\x4c\x52\ +\xe9\x9c\x95\x84\x68\xac\x0e\x69\xbf\xa8\xd0\xd8\xa1\xc6\x0c\x11\ +\xd0\xfa\x08\x68\xc2\x52\x30\x66\x2f\x12\x4d\x4d\xd3\x99\x5b\x22\ +\xae\x14\x52\xe5\x83\x41\xb1\x9b\x38\xf6\x69\x64\x2d\x42\x08\x41\ +\x55\x6a\x56\xac\x44\x2a\x50\xca\x62\xac\x20\xf1\xc4\x20\x37\x77\ +\xc0\x32\x51\x81\xa5\x81\xd3\x0d\x5c\x3b\x71\x94\xde\xa1\xd7\xbc\ +\xb0\x41\x16\xe2\x50\x07\xfe\xda\xda\x81\x8f\x3c\xfd\x98\x12\x42\ +\xfc\xfe\xc4\xa6\xf1\xda\xbe\xbd\xbb\xb8\x62\xf7\x76\xda\x9d\x3e\ +\x87\x8f\x3c\xc7\xd9\x73\x17\x49\xb5\x76\x9d\x7b\x79\x24\x26\xf2\ +\x94\x20\x43\x35\xa5\x52\x79\xb8\x24\x25\x6e\xb4\xb7\x8a\x30\x42\ +\x30\x3d\x3d\xc5\xf7\xbf\xeb\x1f\xf1\x77\xbf\xef\x87\x10\xe3\x63\ +\xfc\x7a\x7b\x80\x88\x2a\x34\xe7\xce\xb8\x50\x5a\x49\xd7\x2f\xad\ +\x64\x0e\x36\x22\x05\xbd\x5e\x9f\xd6\xca\x0a\x6b\xbd\x1e\x7a\x90\ +\x96\x94\x78\x4a\xca\x3c\x41\x1a\xa0\x94\xa2\xf1\xaa\xb7\x80\x80\ +\x4e\x92\x38\x5a\xa9\x1a\xd2\xcc\x0b\x4b\x80\x01\x51\xc0\x8a\xa2\ +\xcd\x33\x44\xde\x91\x43\x82\x3b\x81\xa6\x58\x9e\x8b\x67\x68\xbb\ +\x1a\x9a\x0f\x26\xca\x9f\x99\x3d\x4a\x04\x85\x51\x73\xb3\xe4\x50\ +\x5b\xff\x50\x24\x60\x4b\xad\xba\x43\xd1\x80\x2d\xda\x5b\xc3\x16\ +\xd7\x8c\x4e\x9b\x49\x6d\x1b\xaf\xd0\x63\xa4\x28\x09\x6f\x86\x51\ +\x47\x26\x11\xbe\x72\xae\x05\x71\x7d\xf4\x0d\xa4\x07\xf0\xfc\xd3\ +\xf0\xf0\xbd\xb0\x32\x47\xe5\xb5\xaf\x61\xcb\xf7\xbe\x8d\xea\xd6\ +\xe9\x82\xa6\x2b\x03\xb5\x61\x59\x00\x67\x64\x12\xe0\xca\x4f\xfb\ +\xcd\xfe\x96\x71\x02\x22\x2f\x1b\x20\x82\x01\x20\xb2\x68\x25\x36\ +\x9e\xa9\x17\x37\xab\x90\xf4\x5f\x9c\x81\x65\xd3\x5b\x33\x67\xa1\ +\x53\x76\x5d\x19\x79\x3a\x74\x71\xdd\xb3\xc8\xcc\x10\xd2\xa0\xdd\ +\x09\x6d\x8c\x19\xdf\x44\x65\x8b\xf3\x94\xf9\x15\xdf\x5c\x16\x57\ +\x63\x94\x1b\x38\xc4\xda\xa9\x67\xe8\xae\xad\x5d\x7e\xf5\xb7\x36\ +\x8c\x54\xfe\xfa\x1c\x80\xb1\xe6\xff\x36\xc6\x1c\x32\xc6\xa0\x53\ +\x43\xa5\x52\x61\xd7\xce\x6d\xec\xdc\xb1\x95\xb5\xb5\x01\xc7\x8e\ +\x9d\xe1\xfc\xf9\x4b\x24\xa9\xc1\x60\x89\x22\xe5\x0d\x5d\x38\xb1\ +\x03\xa1\x90\xca\xb5\xf7\x2a\x2f\x61\x95\x19\x7f\xad\x52\x21\x8a\ +\x62\x54\x14\x73\xfd\x0d\x07\xf8\xe7\x3f\xfa\x4f\xb9\xe5\x8e\x97\ +\xf2\x6b\x4b\x6d\x1e\x5f\xeb\x21\xcf\x9f\x47\x08\x89\x55\x0a\x29\ +\x94\x33\x7e\xa5\x10\x42\x92\x0c\x06\x74\x3b\x6b\x2c\xad\xac\xd2\ +\xe9\xf5\xb0\xb9\x7a\x50\x26\xa6\xb4\xbe\x23\x5f\x09\x45\xf5\xd0\ +\x9b\x98\x8e\xa0\xa3\xc1\x7a\xc4\xcb\xc8\x21\xb6\x8e\x94\x79\x8e\ +\x1c\x2a\x05\xb8\x6d\x81\x8c\x54\x96\x53\x67\x0f\x0a\xe7\x93\xf7\ +\xc3\x53\x96\x15\x73\xfb\xf6\xb2\x5e\xc1\xff\x19\x92\xfc\xc2\x7f\ +\x96\x93\xbd\x2a\xbf\xd6\x8a\x40\x1a\x2c\xfb\x3d\xd3\x0a\x0a\xb6\ +\x13\x60\x08\x56\x4a\x8c\xf0\x32\x62\xda\x59\xb2\xd5\xa2\xf4\xba\ +\xdc\xfb\xd8\xb2\x1e\x83\xf5\xdb\x8d\x90\x45\xfe\xef\x9b\xb4\xac\ +\x10\xe8\xb5\x01\xe8\x4a\x21\x15\x36\xea\xa1\x13\x38\xf5\x38\x3c\ +\xf2\xa7\x60\x06\x6c\xfe\xbe\x77\xb0\xf5\x8d\x87\x50\x63\x0d\xb4\ +\x97\xe2\xd2\x99\x84\x97\x75\xe7\xd3\x6a\x07\xf4\x19\x53\xc8\x72\ +\x59\xdc\xef\xc2\x1f\xbf\xc3\x0e\xdc\xf9\xd0\xde\x83\x6a\x21\x73\ +\x79\x2e\xa4\x40\x8d\x4f\x80\xee\x17\x7a\xe1\x25\x0c\x40\xac\xaf\ +\xa5\x86\x2c\x28\x21\xa8\xf4\x2f\x31\x7d\xd5\x76\xdf\xe5\x57\x60\ +\x16\xd9\x79\xd2\x56\xb8\x4a\x40\x45\x21\x6c\x4a\xa5\x0a\x2a\x96\ +\x58\xe3\xae\x8d\x36\x1e\xfb\x90\x85\xf4\x9b\x54\x8e\xfa\xab\x24\ +\xf4\x4f\x3f\x43\x9a\xa6\xa4\x69\x9a\xeb\x5b\x10\x4c\x5b\x0a\x6d\ +\xdf\x83\xb7\xd7\x9c\x38\x7d\x56\x7d\xd3\x1d\xc0\xb1\xa3\x4f\xde\ +\x02\xfc\x94\x35\x5e\x72\xcb\x4f\xf6\x4d\xd3\x84\x4a\x1c\xb1\x7d\ +\xdb\x16\x66\x66\x36\xd3\x6e\xf7\x38\x79\xf2\x2c\x0b\x0b\x2d\x7a\ +\xbd\xc4\x0f\x06\xc9\x56\x0d\x4b\x9a\xea\x02\xf0\x12\x12\xad\x9d\ +\xde\x79\x6a\x9d\xf2\xaf\x52\x8a\x8a\x8a\xa9\x37\x9a\xdc\x75\xd7\ +\x5d\xfc\xa3\xef\x7f\x27\x0f\x8f\x4d\x72\xe1\xf4\x09\x5f\x5e\x74\ +\xd5\x04\x29\xdc\x8c\x00\x29\x24\xda\x68\xfa\xfd\x3e\x2b\xad\x65\ +\x3a\xbd\x5e\x69\xd5\x1d\x59\x9f\xf7\xc8\x76\x54\x89\xa9\xbd\xec\ +\x8d\x0e\xa5\xed\xac\x06\x0d\x35\xe5\x19\xf3\x61\x3e\x6f\x02\x75\ +\x1c\x2b\x0a\x46\xdd\xba\xb2\xa3\x64\xfd\x0a\x2f\x8b\xf6\xe4\x92\ +\x9d\x85\x94\x65\xb1\xbe\x2a\x65\x3d\x59\xc9\x48\xe1\x56\x3e\xbf\ +\x2a\x64\x04\x9d\x00\xaf\x73\x7c\x74\x9c\x11\xd9\xe0\x7b\x6b\x6f\ +\x54\x69\x46\x11\xf6\xd1\x8b\x16\x05\xb0\x27\x85\x75\x74\xda\xc8\ +\x51\x84\x53\xed\x6e\x70\x21\x2c\x52\xd9\x1c\x8d\x4f\xb5\x6b\x81\ +\x95\xca\xd5\xed\x55\xe4\xc8\x39\x69\xe2\x14\x84\x57\xce\xb5\x8b\ +\x76\xc2\xcb\xfd\x24\x5d\x38\xf9\x10\x3c\xf6\xe7\xc8\x3d\xbb\x98\ +\x7d\xd7\xf7\x32\x7e\xeb\xf5\xf4\xb5\x62\xa0\x1d\xa8\x57\xa9\xb9\ +\xb4\xa0\xaf\x05\x83\x01\x0c\x52\xf7\x7b\xb6\x3d\x49\xa0\x37\x70\ +\x7f\x77\xaf\xb7\xa8\xd8\x32\x48\x05\xfd\x81\x20\x1d\xb8\xd7\x55\ +\xeb\x3e\x3c\x6f\x8e\xc1\xa0\x3f\x14\x49\x89\xb2\x22\x8b\xd8\x80\ +\x81\xef\x5f\xbb\x63\xb2\x85\x56\x31\xbd\xc4\x7d\x6f\x15\x43\x54\ +\x75\xcf\xa9\x16\x24\x89\x40\x54\x2a\x79\x57\x65\x7d\x4c\x92\x18\ +\x18\x24\xae\x8a\x22\x22\x88\x23\x8b\x92\xd6\xbd\xde\x46\xa0\x21\ +\x56\x90\x5e\x3a\x87\xf1\xf7\x73\xa0\x42\xe8\x0b\x9a\xb6\xdc\xb5\ +\xe5\x72\xcc\x31\x8b\xbd\xe2\x9b\xea\x00\x4e\x9c\x38\xac\x24\xe6\ +\x03\x58\x2a\x59\xad\xd6\x5a\x37\xf4\xc3\x89\x81\xa4\x0c\x06\x03\ +\x94\x12\x4c\x4f\x8d\x33\xd6\xac\xb3\xd2\xea\x70\xfa\xf9\x79\x96\ +\x96\x57\x30\xd6\xa0\xa4\xcb\xc3\x94\x50\x9e\x45\xe8\x9a\x8a\xa2\ +\xd8\x8d\xf3\x8e\xa4\xf0\xa3\xa2\xa5\x57\x95\x71\x4a\x3d\x57\x5d\ +\x7d\x35\xdf\xf7\x0f\xfe\x3e\x0b\xfd\x3e\x42\x29\xa4\x94\x58\xe5\ +\xd3\x01\x01\x42\xb9\x53\x33\x48\x13\x96\x97\x97\x59\x5b\xeb\xa2\ +\x75\x5a\x2e\xa7\x51\x80\x7f\xa1\x43\x88\x55\x44\xfd\x95\x77\x01\ +\xd0\x1b\x0c\x0a\x31\xce\x4c\x84\x52\x04\xa8\xbf\x7f\x56\xb6\x2c\ +\xf6\x29\x7c\x35\x20\x17\xa1\x0c\x1e\x36\xa8\x3a\xe4\xc2\xa2\xa1\ +\xc2\x11\x62\xa4\x80\x68\x18\x39\x88\x21\xe1\x49\x54\x51\x39\x08\ +\x8f\xd5\x2a\xff\xb7\x50\xc0\xd4\x6f\xb3\x4a\x94\x04\x27\x89\xfc\ +\xb6\x28\xeb\xdd\xf7\x3d\xf9\xd9\xeb\x94\x8f\x60\xb2\x15\x3b\x72\ +\xab\xaa\x50\x05\xea\x6f\x45\xf1\xfa\xec\xbb\x1a\xff\x3c\xb8\x78\ +\x09\xaa\x9b\xd9\x40\xdc\x6e\xfd\x63\x6d\x19\x9e\xf8\x73\x38\xf5\ +\x18\xf5\x97\x1d\x64\xd7\xf7\xb9\xb4\x20\x17\x07\xf1\xd5\x0a\x23\ +\x25\xc6\xba\xe3\x30\xfe\xfb\x69\xe1\xa3\xa1\x40\xa8\x53\x4a\x77\ +\xfc\xd9\x23\xab\x6e\xc8\x58\x7a\x07\xd0\x2d\xbe\x5b\x49\x30\xb5\ +\x1c\xcd\xad\x13\x53\xcd\xce\xa1\xee\x31\xb3\x77\x1a\x84\x2c\xad\ +\xe4\x22\x8b\x90\xa4\x44\xc5\x11\x58\xd7\xc2\xdd\x6c\xe8\xfc\xfc\ +\x18\xe1\xd2\xd7\xac\x82\xa3\xbb\x1d\x2e\x2d\x3b\xd2\x54\x24\x61\ +\x7c\xbc\xc2\x60\xe9\x22\x83\x7e\x7f\x1d\xf4\x53\x2a\x01\x9a\x90\ +\x19\xf7\xff\x8f\x11\xf8\xa2\x1d\x40\x24\xc4\x0f\x4a\x29\x6f\x71\ +\x92\xd0\x99\x28\x46\x16\x86\x68\xb4\xd1\xe8\x34\x21\xe9\x27\x0c\ +\x06\x03\x84\xb0\x34\xea\x11\x91\x82\xd6\x72\x87\x73\x67\x17\x58\ +\x69\x77\x19\xe8\xd4\x51\x86\xa5\x44\x4a\x85\x15\xc2\xf3\xb3\x8d\ +\x6f\xa3\x94\x58\x7c\xe9\x50\x48\x84\x1f\xfa\xd9\x6c\x36\x79\xf9\ +\xed\xb7\x80\xd1\x08\xe9\xca\x8a\x0e\x0b\x88\xdd\xef\x42\x32\xe8\ +\x0f\xe8\xb4\x3b\xb4\xdb\xab\x0c\x06\xc9\x3a\xa3\xca\x31\x00\x1f\ +\x12\x0a\x21\x88\xe2\x88\xea\x1d\x77\xd1\x50\xb0\x6a\xc0\x18\xbd\ +\xfe\xe6\x0c\x6f\x0c\x7f\x43\xad\xbf\x89\x83\xb0\x5b\x94\x15\x77\ +\x0b\xc1\x0b\x7f\x73\xda\xa1\x7d\x9b\xf2\xbe\x8c\x4f\xae\xb3\xcf\ +\xc9\x8c\xca\x7a\x23\x10\xa6\xd8\x5f\xf6\x9a\x2c\x3c\xb6\xda\xad\ +\xf2\xb9\x73\x30\xc5\xc3\xf8\xe1\x96\x86\x4c\xf6\x5a\x38\x10\x0f\ +\xaf\xa6\x2b\x84\x23\x59\xe1\x8c\x0c\x11\x1c\x83\x71\xaf\xd1\x46\ +\x94\x22\x06\xe3\x13\x6e\x6d\xbc\x53\xf0\xef\xb7\x5a\xd0\x5f\xe8\ +\x5d\x56\xde\x6a\xe4\xe3\xe2\x69\x78\xe4\x7e\x48\x96\xd9\xf2\x77\ +\xdf\xce\xe6\x97\xdf\x82\x88\x14\xda\x06\x61\xbc\x10\x5e\x98\xc3\ +\x3d\x13\x9c\xf3\x2c\x3d\xd0\xbe\x64\x91\xa5\x5e\x5a\x7b\x47\xdc\ +\x68\x3a\x43\x4e\x7a\x23\xa8\x90\xb2\x9c\xfa\x08\xb1\x1e\xe0\x09\ +\xd2\xbd\xad\xf5\x4b\xa8\x89\x46\x71\xdd\x83\xeb\x2f\x2b\xae\xc1\ +\x4c\xfa\xb4\xb2\x5e\xb7\x25\x25\x69\xe3\x9d\xd5\x60\xf1\x22\xe7\ +\x56\x56\x48\x44\x41\x36\x1b\xbf\x62\x3b\x83\xc5\x73\x0c\x06\x83\ +\x17\x65\x9b\xde\x07\x5c\xf3\x4d\x73\x00\xe7\xce\x3e\x33\x25\x24\ +\x3f\x2b\x24\x28\x25\x5c\xc3\x8d\x0c\x64\xa3\x85\x83\x9c\x33\x45\ +\xde\x34\x19\x30\x18\x0c\xe8\x0f\xfa\x68\x9d\x00\x4e\xeb\x7f\xf9\ +\xd2\x0a\xab\xcb\x1d\xba\xdd\x1e\x5a\x1b\xfa\x49\x82\xce\xc6\xbc\ +\x0a\x0f\x04\x1a\xeb\x9e\xad\xc3\x0f\x9c\x37\x97\x28\x9f\xf3\xc7\ +\xd6\xf8\x34\x40\xe6\x00\xa0\xf4\x06\x9d\x24\x03\xba\xbd\x1e\x2b\ +\xab\xab\x74\xda\x6b\x43\x82\xca\xbe\xbe\x9f\x0b\x6a\x14\xff\x2a\ +\x9b\xa6\xe9\xee\x3f\xe4\xc8\x41\xed\x56\x89\x70\x63\x87\x43\xf4\ +\x0c\xfc\x92\x43\x95\x22\x51\x4e\x03\xc4\x90\xcb\x0e\x17\x94\xbc\ +\x41\x25\x03\xde\xfc\xb3\x09\x42\xcf\x9c\x18\x24\x0b\x4a\xee\xb0\ +\x98\x87\xf6\x7e\x29\x93\xbc\xd2\xb6\x90\xbe\x42\x16\x3d\xf1\xd9\ +\x03\xe5\xba\xe5\x50\x99\x4a\x8e\xdb\x2e\x55\xd1\xd6\x9b\x6a\x1f\ +\xa6\xea\x42\x0f\x1f\xbf\x3d\xe9\x3b\x62\x50\xa4\x3c\x22\xef\xd9\ +\x7a\xfd\x54\xe4\xfb\x89\xab\x16\x15\x59\x06\x46\x70\xe9\x99\x79\ +\xa8\x8f\x15\x61\xf5\x8b\x7d\x58\xed\xca\x86\x87\x3f\x4f\x74\xcd\ +\x7e\xb6\x7c\xcf\xdb\x89\x67\xb6\x20\x23\xbf\xff\x0a\x0c\xb4\xa0\ +\x3b\x10\x2e\x4d\xa8\x40\xc5\x6f\x4f\x52\xbf\x3d\x71\xc7\x58\xab\ +\x38\xda\x7f\xdf\x08\x3a\x7d\x81\xa8\x8f\xf9\xe5\x34\x19\xad\xc4\ +\x22\x47\xa4\x6e\x32\x04\x03\x83\x14\xc1\x6a\x76\xef\x1f\x23\x8e\ +\x2c\x03\x2d\xe8\x25\xee\x78\xa2\x18\xea\x93\xb5\x9c\xa5\x24\x04\ +\x54\xaa\x10\xd7\x24\x51\x15\x22\x61\x19\xf4\x12\xe6\xcf\x9e\xe3\ +\x4c\x27\x45\x29\x97\x9a\x44\xca\x09\xd5\x36\x66\x36\x93\x5c\x38\ +\xe1\x4a\xda\xb6\x68\x4d\xb0\x25\x44\xd7\x96\x6f\x4a\xfb\x4d\x8c\ +\x00\x04\xfc\xac\x10\x4c\x49\x6f\x78\x32\x92\xc4\x91\xf4\xce\xc0\ +\xe5\xe4\x91\x27\xce\x68\xa3\xfd\xdc\x37\x37\x11\x68\x90\x0c\xe8\ +\xf7\xbb\x74\xbb\x2b\xf4\xfb\x6d\x7a\xdd\x1e\xad\xa5\x0e\x6b\x9d\ +\xbe\x43\xe2\xa5\x22\x4d\x8d\x27\xda\x40\x14\xc5\x5e\x19\x55\xf9\ +\xfe\x02\x07\xd6\x59\xe1\x98\x86\x76\xd0\x45\x44\xce\x19\x58\x25\ +\x91\x5e\x17\x5e\x28\xd7\xa5\xd8\x1f\x0c\x58\x6e\xad\xd2\x6a\x77\ +\x5c\xe6\x3c\xbc\x48\x53\x66\xe5\x49\x20\x52\x8a\xb5\xdb\xdf\xc2\ +\x97\xcf\x41\xab\x37\xc8\x43\xb9\x10\xc8\xb3\x19\xe5\xcd\x87\xd3\ +\x59\x38\x57\xa2\x1b\xca\xe2\xb5\x59\x98\x9c\x11\x6e\x2c\x7e\xe5\ +\x14\x62\x1d\x08\x60\xfd\xef\xd1\xd4\x24\x63\x77\xde\x46\xfd\x86\ +\x97\xd0\xb8\xee\x2a\xe2\x9d\xb3\x44\x53\x9b\xa1\x5a\x71\xab\x76\ +\x18\xd6\x5a\xe7\x80\x4d\x4e\xcd\x0e\x48\x42\x36\x88\x0c\x82\x47\ +\x78\x9c\x26\x8b\x28\x82\xfd\x22\x86\xc2\xfb\x2c\xdc\x8d\xca\xe1\ +\x7d\xa6\xe7\xef\xd2\x04\xe9\x22\x83\x0c\xa0\xcc\x56\x68\x84\x1b\ +\xda\xd2\x16\x2f\x3e\x0d\x18\x7e\x74\x56\xe0\xe9\xcf\x43\xe7\x02\ +\xd3\xdf\xf3\x56\xb6\xdc\x79\x2b\x22\x8a\x0b\xb2\x93\x70\xcf\x59\ +\x38\x2d\xa4\x20\x15\xc5\x76\xa9\x8a\x74\xcb\x78\xe7\x1f\x4d\x36\ +\x7c\x05\xc0\x16\x33\x05\x64\x91\xf6\xe4\xd7\x51\x05\x6a\xa9\xd9\ +\x6b\x94\xa4\x24\xfa\xa0\x04\x93\xf2\x22\xf5\xe9\x09\x77\x3e\x3d\ +\xc6\x22\x3c\xdd\x58\x24\xfd\xd2\xcc\x85\x5a\xd3\x95\xbc\xd3\xce\ +\x12\x17\x2e\x5d\x64\x55\x53\x16\x44\x55\xb0\x75\xef\x34\x71\x24\ +\x31\xe7\x0e\x3b\xa9\x3b\xff\x2f\xcb\xff\xf3\x7f\xb6\xf8\xbf\xdf\ +\xbe\xff\x9b\xc2\x03\x78\xe0\x6b\x5f\x9a\xec\x75\xfb\xff\x67\xa5\ +\x1a\x21\x11\x44\x4a\xba\x51\xa7\x4a\x11\xe5\x1c\x52\xb7\x84\x45\ +\x46\x61\x6c\x84\xd5\x29\xda\x97\x8b\x48\xdd\xe0\xce\x34\x4d\xe9\ +\xf5\xfa\xac\xae\xae\xd2\x68\x8c\x63\xad\x45\xf5\x15\x71\x35\x42\ +\x78\x56\x94\xd6\x9a\x24\x4d\x73\xb1\x45\x0b\x28\x25\x49\x7c\xb5\ +\xc0\x58\x89\xd2\x03\x97\x07\x2a\x85\x34\xd6\x8f\x59\xf1\x04\x1e\ +\x9b\x92\x0c\xfa\xac\xb4\x5a\x74\xba\x6b\x74\x7b\x09\xcd\xe5\xf8\ +\x99\xbb\x00\x00\x20\x00\x49\x44\x41\x54\x7a\xb5\x44\xe8\x1a\xee\ +\xfb\x00\xa8\xc6\x31\x57\xdf\xf5\x16\x3e\xfe\x13\x3f\xc1\x87\xbb\ +\xf0\xbf\x8f\x6b\x66\xc6\x95\xeb\xe7\xf7\x33\xe6\x1c\xf5\xd7\x16\ +\x2d\xb5\xc1\x4e\xd6\x51\x7f\x19\x4d\x08\x12\xac\x6f\x19\x0e\xa3\ +\x04\xbd\xb4\x82\x9e\x5f\xa4\xfa\xaa\x43\xa0\x22\x2a\xf9\x1b\xfd\ +\xbb\xd6\xda\xd0\xe9\xc0\xea\x0a\xe9\xf2\x2a\xe9\x6a\x87\x64\x61\ +\x99\x64\xb5\x83\xed\xf6\x47\x6a\x00\x96\xa2\x17\x33\xa4\x0c\x94\ +\x71\x1c\x0c\xb9\x76\x5e\x08\x3e\x66\x75\x79\x9b\x92\x4f\xe6\xcd\ +\x78\x01\x25\x2e\xbf\x2d\x6b\xa4\x18\xcf\x9a\xb2\x1a\x16\xe7\x7a\ +\x6c\xd9\xa3\xca\x03\x02\xff\x72\x65\x27\x38\x77\x1c\x96\xce\x13\ +\xef\xbb\x8d\xd9\x2b\x76\xb3\x70\xff\xe7\xe8\xcf\xaf\x16\xc2\xa0\ +\xc6\xa5\xa5\xc6\x96\xfb\x28\x32\xae\x7e\x12\x08\x9c\x56\xc7\x9b\ +\xd0\x6b\xaf\xaf\xf9\x87\x37\xc5\x3a\x85\xd5\xa1\x21\x05\x19\x19\ +\xc1\x7f\xd8\x96\xad\x8a\xa5\xf9\x32\xb9\x27\x6a\x56\x11\xa6\x97\ +\x77\x4f\x5a\x0b\x55\xdb\xe5\xfc\xfc\x45\x5a\x89\xef\xa2\x0c\xce\ +\x5b\xa6\x65\x3b\x79\xe5\x4e\xda\x66\x80\x38\xf7\xb8\x9f\xb3\xa1\ +\xf3\x71\x61\xf6\x9b\x90\x02\xbc\xa0\x03\x78\xe9\xcb\xef\x6c\xdd\ +\x7d\xf7\xdd\xbf\x3a\x31\xde\x78\xf7\x96\x2d\x9b\xeb\x33\x5b\x36\ +\xa1\xa4\x44\x09\x09\x26\x82\xc8\x79\x23\x6d\x35\x15\x22\x77\xd0\ +\x71\x8c\x34\xd6\x85\xe6\x39\x2f\x5f\xf8\xca\x41\xca\xe2\xe2\x45\ +\x96\x56\x96\x98\x99\x9a\xc5\xe8\x2a\x51\x25\x76\x35\x78\xeb\x44\ +\x46\xfa\x83\x81\xd3\xf9\x17\x02\x63\x9d\xf3\x70\x5d\x5f\x02\xd3\ +\x4f\x9d\xbe\xbf\x52\xbe\x31\x48\x81\x34\xb9\x56\x60\x92\x68\xd6\ +\xd6\x3a\xac\xb6\x3b\xb4\xd7\xd6\x68\x36\xaa\xe5\x9e\xfc\x3c\x01\ +\x28\x4e\x9d\x54\x92\xa9\xdd\xbb\xd9\x77\xf3\xcd\x1c\x7b\xec\x31\ +\x3e\xfe\x74\x87\x3b\xae\x99\xe6\xc0\x64\x9a\xd7\xc1\x85\xc8\x74\ +\x72\x2c\x81\xd4\x5e\xc1\xb9\xcf\x05\x2c\x44\x41\x51\x16\x05\x87\ +\x24\x23\x0a\xd9\x40\xfe\x77\x78\x2c\x36\x40\xe7\xf8\xf3\xa4\x17\ +\xe7\x69\x1c\xba\xde\xc1\xd6\xf5\x31\x17\xcb\x56\x9a\x0e\xbc\x6a\ +\x8e\xc1\xec\x56\x37\xbe\x0c\xa8\x65\xce\xa1\xd7\x83\xd5\x16\xe6\ +\xc2\x1c\x83\xc5\x15\x06\x8b\x2d\x92\x4b\xcb\x2e\x9e\xf7\x9f\x9f\ +\x9a\x82\xb9\x98\x09\x72\x5a\x21\x73\xdb\x14\x5e\xaa\x4a\xe4\xaf\ +\x77\x77\xb3\x95\x2e\x6c\x55\x91\xb3\xe3\xc4\x8a\x9c\xe8\x17\x29\ +\xeb\xed\xd4\x57\x06\xb2\x4e\xb9\xd8\x39\x8f\x64\x7e\x01\x6e\x38\ +\x00\x2b\xe7\xf9\x2b\xfd\xf4\xda\x70\xe4\x0b\xb0\x6d\x3f\x5b\xfe\ +\xce\x77\x52\xfd\xc2\x57\x68\x1f\x3b\x85\xb6\xd0\x4f\x8a\x6b\x13\ +\x55\x8a\x16\xdd\x7e\x2a\x1c\xff\x5e\x40\x35\x72\x0d\x46\xf5\x4d\ +\x4d\xe8\x75\xcb\x1d\x59\xd9\x85\xb4\x76\xfd\xf6\xd2\x44\x93\x20\ +\x74\xb4\x22\x27\x64\x4d\xca\x25\xc6\xa6\xc7\x49\x56\xd7\x30\x1a\ +\xfa\x03\xb0\x51\x1d\x12\xbf\x98\x69\x83\x69\xcf\xb1\xfc\x3f\xa9\ +\x7b\xf3\x18\xcb\xae\xfb\xbe\xf3\x73\xce\x5d\xde\x5a\xfb\xd2\xd5\ +\x7b\x37\xc5\xb5\x29\x92\x92\x28\x4a\xa2\x25\x6b\x37\x25\xd9\xb2\ +\xac\xc5\x1e\xd9\x72\x23\x99\x71\x8c\x0c\x26\x08\x92\x20\xcb\xc4\ +\x80\x27\x93\x71\xe0\xc1\x04\x1e\x38\xb0\xc7\x03\x0f\x02\x64\x06\ +\x48\xdc\x19\xc4\x08\xcc\x38\x4a\x14\x29\x76\x24\xcb\x1a\x6b\xb3\ +\x28\x71\xa7\xc8\x26\x7b\x5f\xaa\xaa\xab\x6b\x7b\xfb\xbb\xf7\x9e\ +\x73\xe6\x8f\x73\xee\xbd\xe7\xbe\xaa\x6e\x92\x71\x14\x4a\x25\x3c\ +\x55\xf3\xd6\xab\xfb\x5e\xbd\x7b\xcf\xef\xfc\x96\xef\x32\x80\x9b\ +\x83\x7c\x63\xb3\x40\x25\x65\xec\x54\x43\x19\x58\x99\x09\xa9\xcf\ +\xb6\x48\x2f\x9e\xa5\xdf\xd9\x41\x27\x23\x92\xf1\x98\x46\xb3\xb9\ +\x17\x03\xb0\xf7\x6b\xfe\x95\xcb\x57\xe7\xef\x3c\x76\x64\xeb\xbf\ +\x38\x12\xf0\xf4\xe9\xd3\xff\xe3\x99\x33\x67\xfe\x51\xa7\x3b\xf8\ +\xa9\xf3\x17\xae\x7d\x76\x66\xba\xf5\xd1\xe5\xe5\xf9\xc6\xec\x4c\ +\x9b\x00\x89\x36\x01\x31\x31\xa9\xc8\x88\x0a\x9f\x3e\x8d\xa1\x0e\ +\x62\x84\xd6\x0a\x03\xa4\xa9\xe5\x6d\x85\x61\xc0\x78\x3c\xe6\xda\ +\xb5\xcb\x4c\xcf\xcc\xb1\x30\xbf\x88\x0c\x24\x61\x3d\x22\x8a\x02\ +\xc6\xe3\x14\x9d\x69\xc2\x20\x20\x71\xc1\x23\x8a\x62\xdb\x14\x11\ +\x12\x92\x11\xb2\xde\x46\x0b\x85\x90\x92\x40\x86\x56\xbf\x4e\x84\ +\x28\xa5\x18\xa7\x29\xbb\x3b\x3b\xec\xf6\xfa\x1c\x5c\x9a\xdf\x5f\ +\xc3\xdf\x2d\x68\x59\x64\x01\x21\x77\x3d\xf6\x11\x5e\x7a\xfa\x69\ +\x3a\xdd\x1e\xcf\xec\xac\xb0\x31\x0e\x78\x74\x39\xa5\x2e\x8c\x07\ +\x7c\x11\x4e\x12\xdb\x33\xe9\xf4\x6e\x18\x0d\x65\x83\x74\x42\x09\ +\xc3\x4c\xd4\x1f\xd2\x05\x84\x3c\x88\x18\x57\xa7\x8f\x76\xc7\xa8\ +\xaf\x7e\x8f\xa9\x3b\x1a\x10\x7b\x1c\x58\x0c\xc4\x0d\x88\x6a\x50\ +\x6f\x41\xad\x6d\xbf\x37\xe7\xa0\xd1\x84\xe5\x03\xc8\xe5\x03\xd4\ +\xb1\xb5\x24\x48\xe8\x75\x61\x6b\x83\xec\xe6\x26\xc3\x8d\x5d\xc6\ +\x9b\x3b\x8c\xb7\xba\x4e\xc9\x47\x14\x02\x1c\x22\x1f\x25\x7a\xe0\ +\x24\x93\x7a\x9b\x5f\x64\xc7\x88\x22\x34\x98\x44\x94\x10\x58\x4f\ +\xf2\x3b\x97\xf8\x2a\x76\x3d\xb7\x81\x27\x3b\x09\xb1\x14\x7f\xb1\ +\x00\x90\x83\xa0\xd6\xcf\x41\x67\x83\xa9\x77\xbf\x93\xd6\xb1\x83\ +\xac\xff\xe9\x13\x8c\x13\xed\x76\x7c\x41\x4d\x5a\x01\x57\x19\x40\ +\x96\x88\x0a\x0a\xd2\x80\x6d\xda\xa5\xc3\xea\x78\x28\x87\x78\x6a\ +\xcf\x15\x55\x7a\x58\xfb\xcc\xbb\x70\xd2\x13\x5e\x90\xa5\x37\xf9\ +\xca\xa1\x80\xcb\x2f\x09\xfb\x3a\x5a\x10\xb6\x6a\xf6\x75\x86\x37\ +\xd9\x1c\x66\x24\xca\x5e\x22\xe5\x4e\x1b\x04\x54\xd8\x84\x06\x98\ +\xb9\xe7\xb8\x9d\x80\xf5\x36\x09\x04\x8c\xd7\x2f\x90\x1e\x3d\x4e\ +\xe3\x56\x30\xe0\xbd\x59\xc1\x3d\xc0\x37\x7f\x20\x50\xe0\xd3\xa7\ +\x4f\xf7\x80\xdf\x07\x7e\xff\xcc\x99\x33\xf3\xbb\x9d\xfe\x5f\x8d\ +\xe3\xe8\x6f\x2e\x2f\xcd\xae\xcc\xcf\x4d\x59\x50\x0f\x21\xd4\xec\ +\xe2\x10\xce\x1c\x5e\x08\xe5\x7c\xfa\x2c\x61\x27\x49\x04\xe3\xb1\ +\x75\x3f\x51\x5a\x71\xf3\xe6\x3a\x83\x7e\x9f\x03\x07\x0e\x12\x2b\ +\x0d\x91\xbd\x78\x49\x92\x31\x1e\x2b\x8c\xb6\xbd\x06\x1b\x3c\x9c\ +\x27\x5b\x32\x82\xd6\x34\xc2\x84\xd6\x3d\x48\xb9\xc6\x60\x60\xed\ +\xc1\xd3\x71\x42\xa7\xd3\x61\xd0\xb7\xb4\xca\x38\x8a\x3c\x0a\xeb\ +\x3e\xfa\x79\x18\xa2\x28\xe2\xee\x8f\x7d\x0c\xfe\xf7\xdf\x60\x00\ +\x64\xa3\x11\x6b\xd4\xf9\xe2\xb5\x98\xf7\x2e\xa7\x2c\x35\xaa\xae\ +\xbd\xc2\x17\xdc\x10\x55\x51\x90\xfd\x84\xf9\x0b\xb2\x9e\x27\x67\ +\xb5\x6f\x20\x77\xe5\x46\x36\x82\xdd\x73\x23\x66\xee\xca\x83\x80\ +\x3b\x71\x3a\xb2\x8f\x41\xa7\x9a\x92\x82\x1d\x42\xd7\x5b\xd0\x98\ +\x83\xd6\x14\x34\x67\xa0\x39\x0b\xc7\xef\x20\x3c\x7e\x07\x53\xc0\ +\x14\xd8\xac\x60\xed\x1a\xe9\xc6\x06\xc3\xf5\x2d\x06\xd7\xb7\x51\ +\xc3\x61\x91\x71\xe7\xda\x7c\xf9\x02\x96\x8e\xa1\x27\x1c\x9f\x5f\ +\xe7\x3c\x7d\x59\x96\x15\x5a\x97\x41\x15\x20\x73\x0a\x3a\x4a\xc3\ +\xf6\x95\x1d\x0e\xdc\x59\x2f\xd5\x77\xfe\x73\x17\x7f\xfe\xb9\x8e\ +\x3a\xf0\xfc\x57\x90\x27\xdf\xca\xc1\xcf\x7e\x9c\xeb\x9f\xff\x2a\ +\xc3\x8d\x8e\x4d\xf7\x95\x33\x01\xd1\x8e\x4b\x50\x30\x57\x2d\xc6\ +\x41\xce\xcc\xc2\xfa\xcd\x3d\xc6\x27\x65\x10\xc0\x23\x68\xb8\x05\ +\x5e\xe0\xb9\xbd\x0b\x5a\x1c\xb3\x70\xee\x19\xb1\x43\x3c\x35\x45\ +\x7f\x67\x68\x7b\x59\x35\x60\xf3\x15\xd6\x87\x59\x71\xca\x28\xb4\ +\x8f\x2c\x2b\x3f\xb7\xcc\x65\x5f\xcd\x08\x66\xee\x38\x48\xba\xbd\ +\x41\xaa\xed\x38\x30\x5d\x7d\x99\x24\xf9\xb1\xc2\x08\xd6\xec\x87\ +\x06\xac\x46\x81\x3b\x7f\x60\x01\x60\x1f\x4e\xc0\x3f\x3e\x73\xe6\ +\xcc\x3f\xb9\x7a\x6d\xe3\xb3\xd7\x57\x37\xff\xe6\xdc\x5c\xfb\xe1\ +\xf9\x99\x29\xa2\x38\xc4\x18\x4d\x20\x73\x2e\xb6\xa1\xa6\x73\x56\ +\x9c\xd5\xf1\x0b\x9d\xd2\xaa\xd2\x9a\x20\x08\x19\x8e\xfa\x5c\xb8\ +\xf0\x32\x07\x0f\x1e\xa1\xd5\x6a\x23\x65\x40\x18\x42\x16\x2a\x54\ +\x66\x08\x83\x90\x20\xc8\x08\x83\x08\x1d\x1a\x46\xa3\x41\x31\x09\ +\xd0\x32\x40\x87\x1a\x61\x24\x04\x1a\x63\x02\x92\x34\xa5\xdb\xed\ +\xd1\x1f\xf4\xe9\x0d\x47\x2c\xc4\x71\xa5\xf1\x87\x98\x0c\x00\x82\ +\x28\x0c\x39\x70\xdf\xbd\x1c\x3f\x79\x92\xcb\x17\x2e\x30\xd8\xde\ +\x66\xfa\xe0\x41\x46\x99\xe0\x2b\x6b\x31\x6f\x99\x4f\xb9\x77\x56\ +\xb9\x67\xef\x55\x03\x32\x5e\xa9\xbe\x5f\xb1\x56\x41\x13\x9b\x92\ +\xc8\x93\x2b\xd5\x1a\x01\x81\xb1\xae\x32\x45\x2d\x3d\x32\x74\xce\ +\x8e\x98\xbe\xc7\x0b\x02\xe2\x36\x64\x01\x95\x5a\x1a\x6e\x7f\x07\ +\x6e\x7a\x91\x2a\xae\x43\x73\xda\x06\x83\xfa\x34\xb4\x66\xe0\xd8\ +\x09\xa2\x63\x27\x88\x80\x69\x80\x5e\x07\xd6\x56\x19\xae\xde\x64\ +\xb0\xb6\xc5\x68\xed\x26\x61\x60\xd3\xe9\x5c\xb1\xc7\x64\x39\x76\ +\x82\x42\x13\x6f\xac\x3d\x65\x9e\x10\x22\x0c\x99\x81\x54\x09\xab\ +\xe1\x27\x80\x9b\x5b\xf0\xd0\x7d\xaf\xaf\x0c\x10\xb7\x28\x7a\xf3\ +\xe3\x5a\xc1\xb9\x27\x60\xe1\x28\x87\x7e\xee\x63\xec\xfc\xa7\xaf\ +\xd2\xbd\xb8\xc6\x38\xb3\x74\x5c\x29\x20\x92\x86\x38\xb2\xc1\x6b\ +\x9c\x80\x91\xa1\x2d\xa1\xf4\x68\xaf\x13\x8b\x31\xc5\xf4\xa4\x60\ +\x51\xe5\x75\x5c\xe0\xc3\x6f\xbd\x26\x49\x6e\xf5\xeb\xca\xaa\xd9\ +\xe5\x88\x8d\xcb\xab\xa4\x83\x2e\x51\xfd\x0e\x70\xb3\x7d\x1c\xe6\ +\x9f\x00\x66\xa7\x61\x7b\xd7\xc6\x60\xe5\x7d\x6e\xc7\xee\x5d\xb1\ +\x4d\xca\x9b\x97\x0a\xd8\x85\x5a\x3f\x47\x9a\x24\xb7\xa8\xfd\xcd\ +\x7e\xc7\x5f\x77\x1f\xe0\x2f\xe4\x0d\x78\xfa\xf4\xe9\x04\xf8\x3d\ +\xe0\xf7\xce\x9c\x39\xf3\x9e\xcd\xcd\xce\xaf\xb6\x5b\xf5\x8f\xce\ +\xcf\x4f\x23\x64\x00\x42\x11\x47\x71\xe9\x6a\xe3\x6e\xd8\x40\xca\ +\x22\xb5\x94\xa1\x62\x38\x1c\x62\xd0\x5c\xbe\x72\x91\xe9\x99\x39\ +\x56\x96\x57\xac\xd6\x00\x12\x21\x02\x92\x2c\xc1\xaa\x11\x83\xd2\ +\x19\x5a\xa7\x84\xc9\x18\x11\xc5\x18\x6d\x08\xb4\xc6\x48\x6b\x0d\ +\x26\xb0\x9e\x05\xa3\x64\xc4\xee\x6e\x87\x9d\x6e\x87\x25\x27\xfd\ +\xed\x07\xfa\xfd\xbe\xe2\x28\xe6\xfe\x4f\x7d\x9a\x4b\xff\xe4\x37\ +\xe9\xf4\xfb\x76\x61\x08\x5b\xd7\x7e\x77\x33\x66\x6b\xac\x78\xd7\ +\x52\x4a\x18\xd8\x32\x40\x38\x4a\x60\xc5\xc8\xd2\x47\xf7\x39\x75\ +\x1a\x91\x93\xeb\x27\x1a\x82\x4c\xf8\xfe\xe9\xa0\x3a\x8e\x32\x06\ +\xb2\xd4\xd0\x7d\x65\xc4\xd4\x5d\x0d\xbb\x7d\xf8\x4a\x21\xb7\x35\ +\x28\xf3\x02\x40\x32\xb2\x8f\x9d\x1b\xde\xae\x1a\xc2\xf4\x9c\x2d\ +\x1f\x5a\xf3\xd0\x9e\x83\xbb\xee\xa5\x71\x17\x34\xf2\x2c\xe1\xfa\ +\x25\xc6\xd7\x6e\x30\xb8\xba\x46\xb2\xb6\xeb\x71\x18\xca\xc6\x9f\ +\x76\xbe\x00\xda\x40\x28\x9d\x48\x06\x1e\x0b\x0f\x88\x84\x21\xdd\ +\x4d\x88\x5e\xad\x0c\x30\xfb\x44\x4b\x73\x0b\xf2\x7a\xde\x53\xdc\ +\xbc\x0a\xa3\x1d\x66\x3f\xf8\x1e\xe2\x27\x9f\xe1\xca\xb7\x5f\xb1\ +\x3f\x36\x50\xab\x39\x9d\x7e\x09\x4a\x48\x6a\x53\x0d\x9b\x7b\x8f\ +\x07\xd5\x22\xdf\x97\x21\xf7\x6d\x94\xf0\x77\x7e\x51\x8a\x15\x56\ +\x62\x6f\x00\x28\xcc\x60\x93\x7a\x7f\x95\x4e\xdf\x11\x8e\x5a\x4d\ +\x44\xd2\xa9\xf6\x87\xb0\x99\x81\x74\x65\x5f\x9e\x61\xd5\x02\x98\ +\xbb\xe7\x04\x26\x4b\xd8\x19\x8e\x2c\xc5\x44\x82\x5a\x3f\x4f\xe2\ +\x51\x81\xcb\x0d\xc7\xdc\xaa\x21\x78\xe7\x7f\xd5\x00\x30\x11\x0c\ +\xfe\x0c\xf8\xd8\x99\x33\x67\xde\xd3\xeb\x8f\x7e\xb3\xd9\xac\xbf\ +\x63\x6e\xae\x45\x1c\x07\x96\x43\x5f\x10\x84\x72\x7b\x68\x08\xc2\ +\x90\xe1\x68\x8c\xd6\x9a\x34\x4d\x51\x4a\xb3\xb5\xbd\x49\x7f\xd0\ +\xe3\xf0\xca\x11\x4b\x33\x76\xed\xeb\xcc\xd8\x9a\x3a\x8a\x42\x54\ +\x96\xa1\x06\x5d\xc2\xb9\x25\x64\x28\xd1\x2a\x40\x07\x36\x0b\x90\ +\x91\xc6\x64\x9a\x2c\xc9\xd8\xed\xec\xd2\xe9\xf6\x49\x33\xab\xaf\ +\x26\x5f\x65\xb9\x34\x6a\x35\xde\xfc\xe9\x4f\xf1\x1f\xfe\xc9\x6f\ +\x32\x02\xd2\xc1\x80\xb8\x55\xaa\xb3\x5e\xea\x05\x74\x12\xc1\xfb\ +\x0f\xa5\xb4\x23\xb3\xe7\x5c\xfb\x11\xf8\x8c\xc6\xa2\xf3\x30\xb7\ +\x25\xf8\xdd\x6e\x07\x4c\x46\x9a\xee\xb9\x21\x53\x77\x37\x9d\xaa\ +\xc5\xeb\x19\xe8\x9a\x0a\xad\xb9\xfc\xca\xa0\xb3\x61\x1f\x45\x04\ +\x6c\xda\x60\x30\xe5\x02\xc2\xc9\x3b\xa9\x9d\xbc\x93\x1a\x30\x37\ +\x18\xa0\xaf\x5e\xa6\x7f\xe5\x06\xa3\x6b\x6b\xa4\xdd\x7e\x91\xf6\ +\xe7\x8b\x5e\x39\xec\x40\x4e\x29\xce\x1b\xe5\x99\x16\xec\x5c\xd9\ +\x66\xe9\xee\x06\x8c\x87\xaf\xca\x6e\xab\xfc\xfd\x62\x1f\x58\xb5\ +\x99\x08\x06\xe3\x1e\xbc\xf4\x35\x9a\x0f\xbe\x83\x93\xb3\x33\x9c\ +\xff\xca\x53\xa0\x15\x99\xa3\x12\x2b\x6d\x9f\x1f\x2f\x4c\xdb\x37\ +\x95\x8e\xcb\xcf\xc3\xe7\x00\x14\xc2\x8e\x66\x7f\x56\xa6\xf4\x24\ +\x7d\x8d\x8b\x42\xfd\x4d\xb6\x47\xa3\x82\x5d\xfc\xa6\x43\x36\xe1\ +\x91\xa1\x60\x34\xca\x0a\xaa\x76\x7e\xae\x7a\xdd\xb1\x00\xbd\xb7\ +\x7f\xe8\xe0\x14\x61\xab\x8e\xb9\xf4\x5c\x61\x94\x1a\x28\xc8\x6e\ +\x5e\xb2\xf8\x1a\x95\x15\x93\x80\xdb\xee\xff\x70\xec\x0d\x0b\x00\ +\x13\x81\xe0\x9d\x67\xce\x9c\xf9\xd4\x60\x30\xfa\xf5\x76\xbb\x79\ +\xaa\xdd\xae\x11\x86\x11\x91\xe3\xa6\xa6\x46\x53\x33\x35\x3b\xeb\ +\xcf\xe1\xad\xda\xa0\x63\x2b\xaa\x3e\x1c\x0e\x79\xf9\xfc\x59\x56\ +\x96\x0f\xd2\x6c\x34\x89\x83\x08\x1d\x5a\xeb\x31\x1b\x3c\x0c\xc1\ +\x78\x80\x74\x10\x50\x02\x81\xd1\xd2\x89\x52\x48\x10\x9a\x71\x32\ +\xa6\xdb\xe9\x32\x18\x0c\xe8\xf5\x07\xcc\xcf\xce\xee\x61\xf9\x4d\ +\xde\x73\x71\x1c\xb1\x78\xf2\x0e\x4e\xbe\xe9\x4d\x5c\x3c\x77\x8e\ +\xfe\xce\x0e\xb5\x76\xbb\x72\xdf\xed\xa4\x01\xff\xe1\xb2\xe4\xfd\ +\x07\x53\x96\x5b\x56\xe2\xa1\x30\xb6\x30\xd5\x71\x60\xe1\x2b\xc8\ +\xfe\xf4\xdd\xc9\x71\x9d\x98\xd0\x03\x90\xb2\x2c\x41\xc7\x03\xe0\ +\xec\x90\xa9\xfb\xda\x13\x4d\x08\x51\x1d\x69\xed\xf7\x15\x88\x5b\ +\xcf\x90\x26\x71\xf9\xbb\xd7\xed\x23\xbf\x3d\x66\x16\x61\x6a\x01\ +\xa6\x0f\x20\xef\xbe\x8f\xa9\xbb\xef\xb3\x7d\x84\x9d\x2d\x86\x2f\ +\x9e\xa3\x7f\xe9\x1a\xa3\x9b\xdb\xce\x96\x4b\x16\xee\xbd\x51\x68\ +\x2d\xbe\x94\x11\x24\x19\x6c\x5e\xdd\x61\xe9\xc1\xfb\x6c\x73\xe3\ +\x76\xbb\x3e\xfb\x8d\xe1\xd8\xeb\x62\x3c\xf9\x7c\xad\xe0\xec\xb7\ +\x89\x8f\x9d\xe2\xde\x9f\x7b\x2f\x97\xbe\xf0\x75\x06\xfd\xac\xf8\ +\xfc\x6a\xa1\x61\x66\xc1\x61\x00\x8a\x79\xa8\xab\xbb\x7c\x19\x25\ +\x7f\x65\xe8\x32\x56\x16\xaf\x23\x1d\x88\x68\xb0\xce\x6e\x3f\xb5\ +\x1b\x93\x2e\x9b\x8c\x8d\x45\x68\x24\x4d\xa4\xd2\x0c\xd3\x32\x70\ +\x19\x27\x92\x1a\x05\x30\xce\x6c\x45\x97\x8f\x30\xe7\xdf\x7c\x17\ +\x46\x29\x46\x3b\x37\xad\x25\x9d\xcb\x5a\x3a\x83\x1e\x6a\x34\x40\ +\x65\x8a\x40\x06\xd5\xb8\x6f\xf6\xfd\xf7\xeb\x2e\x01\x24\x3f\xa0\ +\xaf\xd3\xa7\x4f\xff\x1b\xe0\xc1\x5e\x6f\xf0\xcb\xeb\xeb\x3b\xd7\ +\x06\xc3\xb1\x75\x43\x95\x01\xcd\x7a\x83\x7a\xab\x49\x14\x47\xd4\ +\xa3\x88\x28\x8a\xa9\xd7\xeb\xc4\xb5\x98\x30\x0c\xa9\xd7\xeb\x48\ +\x29\xb9\x7c\xed\x0a\xab\xeb\xab\xa0\x0d\x01\x8e\x03\x90\x43\x5a\ +\xc7\x43\x4c\x96\xb8\x70\x19\x3a\xc9\x31\xcb\x32\x14\x52\xa0\x32\ +\xcd\x60\x9c\xb0\xbb\xdb\x65\xb7\x3f\x28\x30\x1e\x79\x23\xd0\x47\ +\x08\xe2\xfd\x57\x14\x47\x9c\xfa\xf4\xa7\x31\xc0\xee\x60\x60\x4d\ +\x2b\x27\x3e\xac\xd4\x08\xbe\xbc\x16\x73\xa1\x13\x94\xb4\xe0\x9c\ +\x0e\x3a\x49\xf4\x99\x44\x99\xe6\xc8\xbf\xa0\x44\x00\x1a\x4f\x7c\ +\xb3\x00\x2b\x79\x52\xd9\x5a\xda\x74\x7a\x3c\x32\x8c\x2e\xf4\x5f\ +\x4f\x1e\x31\x01\x3a\x78\x2d\xb8\x52\x53\xcd\x12\x76\xd7\xe0\xea\ +\xf3\xf0\xc2\x57\xe0\xa9\x2f\xc2\x2b\xdf\x81\x1b\x97\xa0\xd1\xa0\ +\xf1\xae\x47\x58\xfc\xec\x27\x39\xf2\x97\x3e\xc3\x81\x77\x3f\x48\ +\xf3\xd0\x62\xc1\x56\x93\xd2\x1a\x62\x88\x20\xb7\xef\x16\x24\x5d\ +\x73\xeb\x1a\xff\x56\x56\xcc\xa5\xc1\xc2\xde\x3b\x57\x4e\xde\xc1\ +\x1a\x2e\x3f\x0b\xa3\x4d\x8e\xff\xcc\x07\x90\x61\x6c\x37\x7c\x97\ +\x52\x87\xf3\x33\x90\xf4\x3c\x88\xe7\xc4\xeb\xee\x09\x32\x5e\xa3\ +\x4f\x18\x18\x77\x60\xf7\x3c\x3b\x9b\x57\xd9\x1e\xb8\xc5\x3f\x11\ +\x58\xe3\x18\x0e\x1c\x8d\x10\xa3\x5e\x5e\x01\x16\x43\x03\x61\x2c\ +\x22\x30\xa3\xe4\x49\x1d\x59\x8e\x69\xcc\x4f\x23\xb7\xae\x30\x56\ +\x0e\x77\x22\x1d\x0e\x09\x48\x6e\x5e\x26\xcd\x4a\x4d\x41\x3b\xad\ +\x34\x7b\x62\xa2\x7b\xcc\xbf\x7c\xf1\xf2\xcc\xeb\xb9\x2d\x02\x7e\ +\x80\x5f\x8f\x3f\xfe\xb8\x79\xfc\xf1\xc7\x9f\xfc\xf4\xa7\x3f\xfd\ +\x7f\xa5\x49\xd6\x1b\x8e\x92\x77\x87\x61\x10\xc5\x71\x44\xe6\xf4\ +\x95\x73\x38\xb1\x76\xe1\x56\x08\x47\x1b\x0e\xac\x18\xfc\x78\x9c\ +\xb0\xdd\xd9\xa1\xd5\x68\x22\x11\x24\xd9\x18\x9c\x15\xb8\x09\x22\ +\xc2\x66\xb3\x90\xac\x31\xe5\x64\x1e\x63\x14\x61\x10\xd0\x68\x34\ +\x68\x4f\x4d\xb1\xb2\xb8\x60\x1b\x87\x1e\x19\x48\xec\xb1\xd5\xb6\ +\xa5\x49\x7d\x69\x89\x3f\xfb\x67\xff\x0c\x0d\xb4\x6b\x35\xc2\x7a\ +\xbd\x94\x00\x2b\x4a\x18\xc1\xd5\x7e\x80\x14\xb0\x5c\x37\x9e\x03\ +\xa9\x7b\x0e\xc2\x11\x92\x3d\x02\x8e\xf0\x9c\x0a\x84\x17\x80\xa4\ +\xa8\x44\x0e\x41\x4e\x18\xc1\x62\xf2\x3d\x29\xdf\x24\x81\x58\x8f\ +\x91\xd3\xb5\x09\x8f\x6f\xb1\x17\x73\x5c\xf1\x97\xf3\x84\x0e\x5f\ +\xf5\xc1\xfe\xc8\x3c\xad\x60\xd4\xb5\x41\xe1\xc6\x39\x5b\x7f\xab\ +\x04\x9a\x6d\x82\x13\x77\xd0\x7e\xf3\x3d\x2c\x3c\x74\x27\xcd\xe9\ +\x1a\xc9\x70\x8c\xea\x8f\xc9\x8c\xe3\x0b\x08\x81\x6c\x34\x68\xcd\ +\x05\xe5\x76\x38\x79\x7e\x29\xf6\x1e\xf7\xdf\xcb\xfe\x17\xad\xfa\ +\x6f\xe9\xa6\x04\x66\xcc\xe2\x43\xa7\xd8\x3c\xbb\x8a\xd1\x1a\x29\ +\x61\xe9\xa1\xbb\x90\x8c\x61\xf7\x46\xd5\x57\x1c\x0f\xec\xe3\x6b\ +\x00\x08\x61\xe9\x8d\x83\x0d\x46\xdb\xeb\x0c\x92\x01\xa3\x1c\x04\ +\xe5\xed\xbc\xb9\x5e\x41\x7e\x6c\x3a\x1e\x23\x1b\x53\x8c\x76\x36\ +\x4a\x60\x95\x28\x8d\x54\xae\xaf\x95\x09\xdb\xc9\x77\xdd\x47\x34\ +\xdd\xc4\x5c\x78\x8a\x91\x37\x79\x49\xb5\xcd\x14\x6a\x27\x1e\x62\ +\xea\xf8\x29\x6a\xb5\x5a\x25\xf9\xd1\xb7\xaa\xa1\x8c\xf9\xfd\xdf\ +\xf9\xed\xdf\x5a\x7b\xc3\x33\x80\x89\x6c\x60\x78\xfa\xf4\xe9\x7f\ +\x6c\xb4\xb9\x7f\xd0\x4f\xfe\xb8\xbb\x3b\x42\x06\x21\x8d\x46\x03\ +\x19\x44\x84\x61\x44\xa3\xd1\x24\x8a\x62\xe2\x9a\xcd\x06\xa2\x20\ +\xa2\x16\xd7\x91\xa1\x2d\xa2\xae\xad\x5d\xb7\x96\x49\x32\x76\xf0\ +\x63\x89\x19\x76\x91\x32\xb4\xfa\x02\x41\x64\xe9\xc1\x32\x2c\xc8\ +\x3e\x49\x9a\xd1\xeb\xf6\x19\x0e\x87\x74\x07\xc3\xbd\xbb\xfe\x3e\ +\x64\xa1\x7a\xad\xc6\xcc\x91\xa3\xdc\x79\xdf\x7d\xd6\x26\x6e\x6b\ +\xab\x72\xd3\x69\x51\xe5\xf3\x3f\xbd\x15\xf3\x8d\x1b\x35\xc7\x41\ +\x17\xc5\xa8\xd2\x88\xaa\x76\x9e\xf1\x88\x05\x96\xaf\x2f\x1d\x9f\ +\xdd\xf2\xc4\x31\x8e\x8b\x1f\xe4\x7a\x84\x02\xad\xec\xe2\xb7\x62\ +\xaa\x8e\xd5\x87\x60\x73\x4d\x62\xd6\x3b\xdc\x26\x92\xb1\xaf\xca\ +\x88\xaf\xff\xfd\x6a\x8f\x7c\x21\xdc\xee\x91\x0e\x60\xed\x2c\xbc\ +\xf8\xa7\xf0\xec\x1f\xd9\x4c\xc1\x24\x34\xde\xfa\x16\x0e\xfe\xfc\ +\x27\x39\xfe\xa9\xf7\xd3\xbe\xe3\x08\x71\x08\xb5\x18\xfa\xd7\xd6\ +\x61\x6a\xb9\x54\xfb\x70\x6c\xc4\x82\x81\x38\x79\x3c\xa4\xaa\x8c\ +\x12\x78\x8f\xc9\xe3\xa1\x7b\x68\xf7\xd8\xdd\x84\xdd\x8b\x9c\xfa\ +\xcc\xbb\x69\xb7\x62\x46\xa9\x24\x9c\x9d\xb7\x5a\x85\xfe\xeb\xfa\ +\x5b\x68\x7e\x6e\x14\x0c\x6e\xc2\x8d\xb3\xf4\x37\x2f\xd2\x1b\xf4\ +\xc8\x02\x6f\x4c\x98\x95\x68\x48\x1c\x57\x42\xe8\x32\x20\x74\x14\ +\x04\x5b\x2f\xef\xa9\xff\x71\xfe\x05\xed\x3a\x24\x0a\xe6\x5a\x31\ +\xcd\x43\x4b\x04\x9d\x75\xba\xba\x9a\xa4\x05\xd2\x02\x85\x92\xb5\ +\x97\x1d\x5f\xa6\x6c\x00\xea\xdb\x64\x6f\xe6\x75\xf6\x01\x02\xfe\ +\x2b\x7e\x3d\xfe\xf8\xe3\x3b\x8f\x3f\xfe\xf8\xef\x7d\xea\x53\x9f\ +\x3a\xaf\x52\xfd\x3e\xad\x4d\x23\x8c\x02\xc2\x28\x24\x53\xaa\xe0\ +\xf6\x1b\xc7\x0e\xb4\x7a\xee\xda\x99\x91\x18\x3a\xfd\x2e\x02\x41\ +\x14\x44\xa4\x2a\x43\x8f\x53\xa2\x85\x65\xe7\xc2\x6b\x93\x24\x63\ +\x4a\x8d\x6d\x61\x0c\x41\x18\x30\x3d\x3d\x45\x7b\xaa\xc5\xd2\xcc\ +\xf4\xc4\xc6\x38\x59\x02\xd8\xdd\x7b\x9c\xa6\xcc\xcf\x06\x2c\x6d\ +\xbf\x42\xb3\x26\x59\x3c\x7c\x90\x28\x0a\x49\xc6\x59\x51\x12\xf8\ +\xd9\xea\x4e\x22\xd9\x1a\x0b\x4e\x4c\xab\xc2\x25\x48\x50\xa6\x71\ +\xbe\x8d\x55\xa1\x30\xec\xd2\x5a\xe9\xa5\xb3\xbe\xdc\xb6\x71\x16\ +\xe5\x46\x54\xe1\xe7\x79\xf7\xbd\xdf\x91\xb4\x5a\x99\x65\xbb\xec\ +\x69\x6c\xdc\x66\x22\x20\xc4\x0f\xa6\x74\x50\x19\xf4\xb7\x60\xf3\ +\x32\x6c\x5c\xb2\xc1\x61\xf1\x20\xed\xfb\xee\x65\xee\xfe\x13\x84\ +\x01\x0c\x6f\x6e\x33\xbb\x32\x03\x69\x77\x6f\x63\x4f\xdf\x62\x5b\ +\x32\xb7\x39\x6e\xbc\xbb\x58\xec\x73\x1e\x3d\x86\x6c\xc8\xdc\x5b\ +\x1f\x64\xfb\xda\x16\x8b\x8f\xbc\x19\x6e\x5c\x80\xa4\xef\xcd\x6f\ +\xbd\xf7\x9f\xee\x40\x6f\x95\x61\xf7\x06\xd9\x70\x48\xaa\xaa\xaf\ +\x9b\xcb\xa9\x57\x60\xd6\x3e\x92\x50\x97\x60\xae\xfe\x58\x15\x9c\ +\x9d\xdc\x6e\x3d\x7f\xdb\x3b\x3b\xd0\x1b\xc2\x7d\xef\x3b\x45\xdc\ +\x6e\x12\x5c\x7e\xc2\xf6\x0b\x9c\xdf\x01\xc6\x6a\x2a\x24\x06\x44\ +\x63\x86\x99\xb7\x7d\xcc\xa2\x01\xbd\xd4\xff\x36\x5f\xdf\xfe\x9d\ +\xdf\xfe\xad\x6f\xbf\x61\x4d\xc0\xd7\x98\x11\xfc\xde\x99\x33\x67\ +\xbe\xa4\x95\xf9\x2d\xad\xcc\xe7\x44\x08\x8d\x7a\x83\x20\x0c\x18\ +\x0f\x47\xa4\x4a\x53\xaf\x19\xd2\x20\x20\x33\x96\xdc\x3a\x36\x63\ +\x4c\x9a\xb0\xb5\xbd\x4d\xb3\xd1\xa0\xd5\x6c\x31\x16\x09\xaa\xbf\ +\x4b\xd4\x9e\x75\x73\x93\x00\x21\x15\x46\x06\x4e\x84\x44\x91\x8c\ +\xc7\x74\x3b\x1d\x36\x77\x7a\xa4\x87\x34\x51\x10\xbc\x4a\x05\x2d\ +\xa8\xd5\x6b\x1c\x7a\xcf\x87\x69\x3e\xf9\x79\xa4\x14\xd4\x66\x97\ +\x08\x9b\x6d\xa4\x94\x0c\x7b\x23\xb6\xb6\xfb\xec\xee\x0c\xd9\xda\ +\xec\xb2\xb1\xda\x21\x4b\x33\xae\xf7\x03\xfe\xe4\x5a\x8d\xf7\x1f\ +\x4e\x08\xdc\x8d\x65\x26\x9b\x8d\xfe\xb1\x92\x4b\xbd\xa7\xee\x35\ +\xce\x7e\xcc\x52\x46\x4b\xe7\xe2\xca\xc4\x4a\x18\x6e\x5e\x82\xc5\ +\x7a\x02\xad\xf8\xb5\x35\xf9\x8c\x29\xd3\xdb\xd7\xfc\xf5\x7a\x66\ +\x17\xee\x4d\xa8\x21\x6c\x9c\xb7\x8f\xd6\x3c\x2c\xdd\xc9\xd4\xbb\ +\x1f\x65\xea\x1d\x6f\x87\xee\x36\x5c\xb8\xb1\xd7\xd5\x48\x4e\x00\ +\x2b\x78\x95\x49\xe7\x64\xbf\xa0\x50\x06\x9d\x78\xcb\xe3\x5d\xd8\ +\xb9\xc0\xbd\x9f\x7c\x8f\xfd\xc1\xb0\x53\xfe\x6e\x96\xc2\x70\x07\ +\x86\x3b\x8c\xd3\x71\xb5\x9f\xe3\xa7\xf5\x93\x33\x64\x3f\xf5\x9f\ +\xfc\x1b\xb4\x17\x1c\xf0\x7a\x3f\xba\x1a\x73\x4e\x2e\xc7\xcc\x1c\ +\x59\x42\x74\xd6\xd9\x1a\x99\x82\x63\x51\x70\x8f\x94\x4b\x50\x6e\ +\x9e\x47\xe9\xd2\x5f\xed\xf6\xbb\xbf\x00\x38\xf9\x86\x4e\x01\x5e\ +\x47\x10\xd8\x00\x7e\xf1\xcc\x99\x33\xbf\x67\x32\x7e\x57\x48\x71\ +\x32\x90\x01\xf5\x46\xd3\xd2\x72\xc3\x10\x33\x1c\xd0\xa8\xd7\x09\ +\x43\xab\x25\xa8\xb5\xc6\x18\x41\x77\x30\x60\x34\x1e\x33\x33\x35\ +\x8d\xe9\xf5\x11\xd3\xf3\x20\x02\x84\x50\x16\xec\x21\x4c\x61\xfa\ +\x98\x66\x19\x9d\x6e\x8f\xd1\x70\xc0\x6e\xaf\xcf\xe2\xcc\xf4\x3e\ +\xf7\x53\xf5\x06\x6f\xd5\x6a\xec\x4c\x2f\x20\x33\x81\x3a\xfb\x3d\ +\xd2\x03\x87\x08\x8f\xde\x85\xa9\xd5\x68\xb4\xa6\x38\xda\xae\x73\ +\xec\x98\xcd\x1b\xa4\x14\xec\x6c\xf7\x59\xbb\xbe\xc3\xd5\x73\x6b\ +\x7c\x6d\xb5\xc7\xfb\x0e\xa5\xce\xc2\x7c\x82\x4f\xe2\x95\xe2\xc5\ +\x3d\x5a\x8c\x08\x45\x65\xc6\xef\x7b\x68\xe4\x0b\x3f\xaf\x21\xf3\ +\xd9\x72\x96\x6a\x36\xcf\x65\x2c\x9c\x0a\x9d\xbd\xee\x6b\xc0\x05\ +\x14\x38\x5d\xf3\xfa\x2f\xda\xad\xb2\x01\x33\xd1\x9a\xf7\x59\x51\ +\x83\x1d\xb8\xf0\x04\x5c\x7b\x1e\x96\x4e\xc2\xd2\x09\x98\x9a\x83\ +\xde\x56\xf5\x6e\x0e\x7c\x64\x9b\xd8\x3f\x47\x9d\xc4\x04\xe4\x0b\ +\x2e\x17\x3b\xf4\x15\xdf\xfc\xd4\xbe\xbb\x03\xe6\x39\xa8\x3f\x0c\ +\xc9\x26\x0c\xbb\x30\xea\x58\x90\x4d\x58\xf2\xd9\x50\x25\xe5\xd6\ +\x78\xde\x86\xf9\x71\xa3\xb1\xcf\xcf\x71\x08\xa5\x3a\x7d\x61\xf1\ +\x56\x18\x97\xe4\x78\x08\x59\x1d\x09\xe7\x7f\xc2\x1d\x8f\xde\x01\ +\x81\x24\x5c\x7b\xa1\x3a\xfd\xc9\xc9\x55\x21\x04\x19\x0c\xb7\xd6\ +\xdc\x28\x50\x39\x23\x84\xbd\xa2\xc5\x13\x5f\x3f\x1a\x01\xc0\x0b\ +\x04\x5f\x3a\x73\xe6\xcc\x83\x46\x9b\x5f\x0b\x08\xfe\x76\x20\xc1\ +\xd4\xeb\x0c\xcd\x90\x28\x8e\x2c\x4b\xd0\x8c\xa8\xd5\x6b\xa4\x59\ +\x46\xec\x1c\x5d\xc6\xe3\x8c\x1b\x5b\x9b\x2c\x02\x46\x1c\x23\x08\ +\xa5\x1d\x01\x6a\x4b\x13\x16\x48\xb4\x31\xa8\x4c\xd1\xef\x0f\xe8\ +\xf7\xfb\x6c\x75\xba\x2c\xcf\xce\xbc\xea\xf8\x3d\x0c\x43\xa2\x28\ +\x24\x7e\xf3\xbb\xb9\xfc\xad\xaf\x12\xee\x74\x38\xd2\xed\x23\x43\ +\xfb\x71\xe9\x46\x83\xa0\x3d\x85\x68\xb5\x10\x53\x33\xcc\xcf\xcc\ +\x31\xbf\x70\x98\xfb\x1f\x3a\xc2\xf0\xfa\x2a\xbd\x17\xbf\xcf\x74\ +\x94\x15\xf7\xb2\x16\xd5\x86\xb5\xf1\x20\xe7\x45\x63\x0e\x9c\x75\ +\x77\x15\x55\x28\x74\xf5\xde\x97\xb9\xdd\x97\xc3\xdd\x27\x03\x45\ +\xef\xe2\x98\xf6\x9d\xcd\xd7\xbf\x98\x5f\x6f\x10\x78\xad\xcf\x37\ +\x66\x2f\xab\x2e\x1d\xc0\xf5\xe7\xe1\xc6\x8b\x96\xdc\x84\xd9\x7f\ +\xf4\x77\xbb\x2e\x95\xda\xe7\xb8\xc4\x7a\x8f\x73\x0b\x94\x57\x96\ +\x40\xd2\x85\xde\x39\x58\xfb\x0e\xe9\x68\x68\xc7\x02\x1e\x9a\xcf\ +\xe4\x44\x2d\xe5\x2d\xe8\x89\x29\xeb\x1e\x88\xc2\xc4\x7b\x37\x01\ +\xce\x12\x7c\xa2\xee\xdf\x63\xd4\x0a\x47\x8e\x40\xad\x15\xa3\x77\ +\xae\xb1\x39\x36\x95\xa4\x27\xbf\x2c\x81\x1b\x03\x8f\x12\x48\x77\ +\xd6\x51\x73\x73\x04\x81\xdc\xff\x63\x32\x15\x74\xc0\xb1\x1f\xa9\ +\x00\xe0\x82\x40\x0f\xf8\x3b\x67\xce\x9c\xf9\x02\x9a\x7f\x11\x89\ +\xe8\x70\x1a\x66\xb4\x83\x90\xa1\x1c\xa1\x8c\x42\x22\x30\x6d\x49\ +\x28\x02\x8c\x32\x64\x81\x62\x34\x4a\xd9\xd8\xb8\xc1\xe1\x23\x3d\ +\xc2\x76\x1b\x21\x23\x84\x74\x20\x70\x6d\x10\xc2\x8a\x94\x8c\x47\ +\x63\x3a\xbb\x5d\xb6\x77\x3a\x64\x87\xed\x74\xe0\xd5\x92\xda\x56\ +\xad\x4e\xf2\xbe\x4f\x10\xfe\xb3\xff\xd5\x22\xf2\xba\x5b\xc4\x73\ +\xcb\xf6\x42\x8e\x86\x98\x64\x88\xdc\x72\x3e\x6f\x02\x64\x7b\x1a\ +\x33\x33\x4f\x73\x61\x19\xf1\x96\x37\x63\x5e\x78\xa6\x08\xf9\xbe\ +\xcd\x40\x05\x38\xe4\x49\x89\xef\x87\x87\x11\xba\x48\xeb\x2a\xeb\ +\xa5\xc0\x15\xb8\x71\x76\x6f\x33\xa3\xde\xec\x11\x1e\x6e\x57\x49\ +\x0a\xb7\xfc\x2b\x3d\x3f\xb3\xff\x9c\x4c\xe0\xf5\xb4\x98\x27\xec\ +\xbd\xac\xa9\xdf\x90\x3d\x62\xff\xb2\x3a\xcd\x9b\x5c\x34\xb7\x5a\ +\x4c\x15\xe2\x4e\x3e\x70\x4f\x7b\x30\xee\xc2\xa0\x8b\xca\x92\x32\ +\xd0\x7a\xa9\x57\x71\x3a\x5d\x06\x81\xe2\xe7\x3e\xd4\x57\x55\x03\ +\xb6\xaf\xea\x3c\x19\xc0\x4c\xfe\x7c\xef\xef\x36\xfb\xf4\x38\x9a\ +\x2d\x10\xd9\x10\x75\xfd\xe5\xca\xe7\x34\x79\x2f\x04\xd2\x42\x82\ +\x93\xcd\x2b\x98\xe3\x77\xdf\xfa\x52\x55\xcb\x8e\x93\xaf\xf7\x12\ +\xfd\xd0\x7c\x9d\x3e\x7d\xfa\x2b\xc0\x5b\x05\xe2\x0b\xcd\xa8\x01\ +\x42\x52\x6f\x34\xa8\xd7\xea\x84\xb5\xd0\x6a\x32\xc4\x01\x51\x2d\ +\x22\x8e\xeb\xd4\xeb\x75\x32\xad\xd9\xbe\x7e\xc9\xd2\x83\x43\x89\ +\x0c\x03\x2b\x19\xee\x34\x03\x85\x80\x34\x4b\xd9\xed\x76\x19\x0e\ +\xc7\xec\xf4\xfa\xa5\xd0\xc5\x6d\x1e\xcd\x66\x03\xb1\x70\x88\x85\ +\xbb\x4e\x61\x80\x41\xaf\x6f\xbb\xf7\xb9\xd4\x94\x53\xab\x2d\x64\ +\xc2\x7a\x5d\xcc\xf5\x4b\xa8\x67\xbe\x83\x7a\xe5\x25\x4c\xa3\x51\ +\x4c\x00\xb4\x13\x02\x29\x9c\x7d\x8c\xa7\xd1\x67\x9c\x9c\x97\x73\ +\xc9\x31\x79\xc7\x4f\x59\x59\xab\x5c\xc5\x48\x7a\xee\x3e\x2a\xb3\ +\x42\x9d\x41\x50\x6a\xfe\x6d\x5c\x13\xb0\xd3\xdb\xdb\xf9\xbf\x55\ +\x07\x3f\xef\xf2\xfb\xa2\x18\xff\xa5\x1f\xdc\xe6\x38\xb7\x38\x96\ +\x1f\x8f\xbc\xe3\x7a\x9f\xe3\x79\x6a\x95\x26\x90\x6c\xc3\xe0\x12\ +\x6c\x3d\x8f\x5e\x7f\x0e\xbd\x79\x11\xdd\xdf\x44\x89\xc4\x1a\x67\ +\xb9\xdd\x19\xe7\x19\x40\x88\x25\xad\x45\xe5\x71\x94\x7b\x5e\x64\ +\x8f\x1b\x8d\x75\xeb\x54\xf6\xf9\x26\x2e\xc1\x41\x26\x73\xc7\x73\ +\x4c\x47\xe8\xb2\x87\x52\xdc\xca\x9e\x27\xd7\x50\x50\x7b\xb1\x0b\ +\x6a\xfd\x65\x7a\x89\x97\xf6\x07\x14\x9a\x0b\xc5\x64\xd7\xd9\xb1\ +\xa9\xed\x35\xdb\x08\x7f\x6d\x59\xd9\xcc\x4b\xe7\x2f\xce\xff\x48\ +\x06\x80\xbc\x37\x70\xe7\xc1\xb9\x3f\x3d\x32\x57\xa7\x15\xd7\xa9\ +\x05\x11\x71\x1c\xd3\x88\x1b\xb4\xdb\x6d\x64\x10\xd1\x68\x36\x89\ +\xe2\x90\x5a\x14\x11\x46\x11\xdd\xf5\x35\xe7\xe1\x17\x20\x02\xa7\ +\x16\x24\x83\x62\x31\x67\x59\x46\xbf\xdf\xa5\xdf\xef\xb1\xbe\xb1\ +\x65\x35\x0b\x5f\xe5\x7d\xc4\x51\x44\x10\x06\xd4\x3e\xf4\xb3\xb6\ +\x73\x6b\x40\xa7\xe3\x02\xd8\x93\xeb\x04\xf8\x19\x58\xa1\x8d\x32\ +\x1e\xc3\x70\x60\x9f\xe7\xe1\xfb\xb5\x5d\xd7\xe5\x48\x5b\xee\xa3\ +\x0e\xec\x74\xef\xcd\xc4\x64\x0c\xf6\x5a\x7f\x17\xcf\x97\xa0\xb4\ +\x61\xf5\xbc\x84\xf1\xf8\x16\x20\x99\xdb\xdc\x3c\x42\xfc\x97\xdb\ +\xf1\xf7\x7b\xdd\xd7\x7b\x3c\xaf\xbf\x83\xc9\x94\x28\x83\xa4\x03\ +\xc3\x35\xd8\x3e\x07\x37\x9e\xc1\xdc\x7c\x1e\xdd\xbb\x88\x1e\x6f\ +\xa3\x45\x5a\x4d\xbf\x65\x79\x1e\x5f\xc3\xc1\xe4\x0c\x6b\x39\xd1\ +\xd1\x97\xd5\xbe\x83\x61\x42\x12\xce\x6f\x00\xe6\x75\x7f\x50\x7d\ +\xff\xfe\xf3\xfd\xeb\x95\x93\x81\xf2\x6b\xdd\x1d\x4f\x5c\xc7\x49\ +\xd7\x68\x97\x01\x04\x12\x92\x1b\xe7\xdc\x74\x6b\xbf\x47\x7e\x8e\ +\xca\xf1\xd7\x5c\x06\x84\x3f\x6c\x01\xe0\xf3\xff\xf1\x0b\xbf\x12\ +\x8b\xf4\x7f\x9b\x6a\x0b\xe4\xf9\xaf\xf0\x52\xed\x11\x5a\xb5\x96\ +\x2d\x05\x74\xc6\xcc\xf4\x14\xfd\x4e\x97\x5a\xad\x86\x34\x82\xa6\ +\xd6\x8c\xc7\x63\x06\x3b\x5b\xd4\x67\xe7\x11\x3a\x40\x84\x01\x52\ +\x6b\x8c\x0c\x30\x58\xe5\xe1\x24\x49\xe9\x76\xbb\x74\xc6\x03\xce\ +\xad\x6d\x10\x47\x21\x71\x18\x50\x0f\x42\xe2\x38\x24\x0a\xec\x7f\ +\x87\x61\x58\x98\x8b\x36\x6b\x35\xb2\xf7\xfe\x0c\xf2\x9f\xfe\x23\ +\x8c\x81\xb4\xb3\x45\x6d\xd1\xea\xc1\x07\x58\x25\x1d\xed\x6e\x9c\ +\xc0\x57\xc5\xc9\x2d\xc0\x8c\x29\xb3\xce\x49\xf1\x0f\xed\x09\x85\ +\x88\x7d\x33\xba\x0a\x36\x65\x4f\x3a\xec\x4e\x24\x9d\x0e\xa0\x14\ +\xa0\x32\xcd\xe6\x39\xc5\xc2\x29\xed\x49\x72\xbf\x4a\x17\xbf\x98\ +\x0c\x08\x5e\xdb\x28\xe1\xd6\x29\xe8\x6d\x7f\xfe\x5a\xb6\x1a\x3f\ +\xcd\x4f\x47\xa0\x46\x36\xa0\xa5\x7d\xc8\xfa\x68\xb2\xb2\xf4\x51\ +\x5e\x1f\x45\xb1\xc7\x96\xcb\xef\xa9\x9a\xfd\xd2\xf1\x89\x0e\x7e\ +\xa5\x8f\x69\x26\xd2\x7c\x73\x8b\xef\xba\x54\xf2\xa9\x9c\x4f\xb3\ +\x47\x44\xa8\x72\xcd\xf5\xfe\x7d\x0f\x3f\x1e\x0b\x0f\x12\xa1\xb7\ +\x57\x2b\xe8\xbf\xe2\xbb\x87\x58\x9c\x68\x0c\x1e\x06\x9e\xfa\x91\ +\x0b\x00\x5f\xfc\x8f\xff\xf1\x57\xd3\x34\xfd\x75\x82\x14\xb9\xfe\ +\x55\x5e\x79\xe1\xcf\xf9\x7f\x9e\x3f\xc7\x67\x3e\xf1\x53\x2c\x2e\ +\x2d\xa3\x6a\x29\x98\x84\x7a\xb3\xe1\x9a\x2d\x16\x27\x90\x19\xc5\ +\x70\x6b\x83\xe6\xc2\x22\x46\x07\x90\x39\xa3\x8c\xdc\xdb\xca\x64\ +\x24\xe3\x84\xdd\x4e\x97\x41\x6f\xc4\x74\x4b\x93\x98\x8c\x2c\xc9\ +\x18\xca\x31\x72\x20\x4a\x89\x75\x07\xdb\x89\xa3\x90\x2c\x4d\x61\ +\x66\x89\xa5\x7b\x1f\x62\xfd\xc5\xa7\xe9\x0d\x06\xc4\x08\x26\x49\ +\x6d\x62\xe2\x06\x17\xfb\x2c\xec\x0a\xa4\xdd\x31\x4f\x8b\x9a\x2f\ +\x6f\xf8\x29\x6f\x5c\x24\xab\x75\xa8\x32\xa5\x54\x1d\x51\xee\x34\ +\x5b\x12\x6f\x72\x93\xd2\x71\x5f\x31\xbc\x32\xa4\x71\xbc\x3d\xb1\ +\xdb\xbe\x1a\x13\x6f\x82\x10\xf3\x17\x29\x24\xcd\x6d\x66\xf6\x95\ +\xe3\xda\xca\x73\x67\x43\xd0\x43\x37\xb7\x1f\xa3\xd3\x71\xf5\xf9\ +\xf9\x42\x54\x65\xdf\x83\xd0\xab\xb5\x55\x49\x55\x16\x91\xf7\x72\ +\x99\xb3\x3a\x73\x9f\x59\xb1\xe3\x26\xe5\x38\xce\xc4\xd5\xf6\x81\ +\xc8\x17\x75\x50\x96\x02\x26\xf5\xfe\x8c\xd0\xb3\x56\x4b\xbd\x85\ +\x1b\x95\xef\x11\x8f\xef\x5f\x64\x38\xca\x7b\xe0\x65\x38\x3e\xc6\ +\x97\x6a\x19\x20\x95\x8b\x6b\x9b\x17\x0b\xdb\xf3\xd7\xd8\x9b\xfd\ +\xd1\xcb\x00\x2e\x7c\xf3\xdf\xfd\xcf\xdf\x5b\x1d\xfd\x5a\x3d\xd6\ +\x34\x76\x9f\x63\xfd\xb9\x2f\xf3\xf4\x7a\x84\xea\x26\x9c\xfd\xc6\ +\xbf\xe4\xd8\x87\x3e\x80\x69\x3e\x44\x40\x88\x31\x86\x4c\x65\xa8\ +\x2c\x43\x98\x3a\x32\x10\xa4\x3b\x5b\x96\x71\x28\x25\x22\x0c\x11\ +\xda\x20\xb4\x76\xae\x38\x01\x59\xa6\xe8\xf7\x7a\x56\x24\x24\x49\ +\xa9\xd7\x6b\x65\x54\x96\xa5\xd9\x5f\x7e\xff\xe7\x02\x24\x02\x43\ +\xfc\xc1\x4f\xc3\x4b\x4f\xd3\xd3\x30\xb5\x79\x1d\x29\x43\xc2\x66\ +\xcb\x2e\xba\x5a\xc3\x49\x97\x95\xa5\x75\x91\x05\x38\xf6\x58\xb1\ +\xe9\xc8\xf2\xe2\x2a\x07\x14\xaa\x50\x82\xfd\x29\x9a\x37\x05\xc8\ +\x3c\xdf\x49\xe9\x05\x86\x62\x67\xcb\x0d\x3d\x30\x68\x21\xb8\x79\ +\x5d\x73\x74\xa6\x0b\x73\x53\xaf\x63\x2a\x60\xaa\xbe\xe4\xaf\xb5\ +\x39\x78\x2b\x12\x4f\xb1\xeb\x8d\x6c\xb4\x4a\x47\x36\xc2\xa5\x7d\ +\xeb\xca\xa3\x46\xa8\x44\xed\x7f\x27\xea\xbd\xe7\x17\x81\xd7\x60\ +\xf3\xca\x2f\x3b\x05\x60\x8f\xa5\xda\x24\xce\x07\x59\x95\x00\x9c\ +\x84\xf1\x82\xad\xf9\x0b\xa9\x7d\x39\xf1\xdd\xbf\xae\x66\xaf\x8d\ +\x5a\xfe\x9a\x26\xf0\x94\x94\x34\xa5\x79\x60\xe0\x35\x1c\x73\x0d\ +\x88\x7c\x03\xc8\x26\x32\x0f\x6f\x5a\x1b\x48\x50\x9b\x57\xac\x44\ +\xde\x2d\x57\xbf\xf8\xd1\x0e\x00\x97\xbf\xf5\xef\x7f\xbd\x93\xa8\ +\x5f\x15\x18\x76\xaf\x7e\x9f\xe1\xc6\x1f\x40\x14\x70\x7e\x3b\xa6\ +\x11\x67\xbc\xfb\xce\x31\xed\xdd\x2f\x71\xfd\xc6\x75\x9a\x87\x3f\ +\x44\xa3\xd6\x20\x55\x0e\x95\x27\x05\xca\x28\xb4\xca\x48\xfa\x5d\ +\xa2\x46\xcb\xf2\x08\x64\x86\xce\x21\xc3\xd2\x82\x82\x86\xe3\x31\ +\x9d\x4e\x87\xf1\x78\x8e\x46\x23\x46\xb9\x71\x4b\x9e\x4f\x09\x2f\ +\x0d\x2e\xb3\x3d\x43\xf4\xe3\x3f\x83\xfc\xdd\x7f\x88\x16\xb0\xd6\ +\x1b\xd8\xa0\xde\xed\x20\xbd\x66\x7a\xdb\xf5\xd3\x9a\x81\xd5\x3b\ +\x90\x71\x0d\x2d\x43\x64\x10\x10\xd4\xea\x85\x88\x88\x6e\x34\x91\ +\x6e\x7b\xd7\xee\xff\xa4\xb4\xcd\xf1\xc0\xbf\xa1\x98\x70\xe1\x15\ +\x65\xd7\x5a\x3b\x62\x89\x74\x32\x58\x85\x48\xa7\x73\x69\x16\x06\ +\xae\x9e\x0b\x38\xf2\x50\x66\x9d\x33\x5f\x0b\x36\xa0\xb2\x80\x5f\ +\xad\x27\x60\x40\x39\x71\x3b\x35\xb6\x2b\x73\x3c\xb4\x6f\x4e\x8d\ +\x40\x67\xa0\xc7\x56\x8a\x9c\xdb\x74\xfb\xf3\x4c\xc9\x87\xe5\x4f\ +\x00\xa8\xfc\x2e\xb9\x31\xd5\xf4\xdb\xef\xea\x17\x94\x7d\xef\x83\ +\xcb\x17\xb3\x1f\x08\x8c\xaa\xca\xb8\x15\x8b\x3a\x9b\x98\xde\xe5\ +\xc7\x55\x99\x6e\x17\xb6\x5c\xb9\x22\x92\xf0\xba\xff\x79\x46\x91\ +\x5f\x0b\x45\x15\x0a\xac\xab\x29\xfe\x64\xdf\x68\xbf\x32\x2a\xbf\ +\xc6\x5b\xc3\x04\x3d\x1e\x12\x44\xd1\xde\xf1\xe3\xfe\x65\xdb\xe1\ +\x1f\x99\x00\xf0\xad\x2f\xff\xfb\x5f\x1f\x67\xe9\xaf\xf6\xc6\x8a\ +\x2b\xab\x1b\x6c\x7c\xe3\x0f\x38\xf8\xa6\x0c\x25\x61\xa3\x2f\xb9\ +\x73\x79\xc0\x91\x63\x82\xa7\xcf\x69\xfe\xe5\x97\x5f\xe0\x23\x87\ +\x76\x38\xfa\x53\x3f\x4d\x2b\x6e\x38\x91\x51\x43\x16\x67\x18\x0c\ +\xd9\xce\x26\xb5\xf6\xb4\x15\x0d\x95\x12\x11\x04\xa0\x35\x46\x6a\ +\xa4\x82\x2c\x4d\xe9\x76\xba\xf4\xfa\x43\xda\x53\x33\x84\xce\x51\ +\xa8\x1c\xcb\x19\xe7\xc4\x43\xc5\x98\x51\x4c\xcd\xb1\xf8\x96\x77\ +\x71\xe3\xe9\x6f\x55\xea\x4b\xed\x65\x72\x3d\x63\x77\xeb\x9e\x02\ +\x29\x35\x32\x1d\x16\x99\x77\xd1\xd8\x51\xa5\x8e\xbf\x10\x10\x0b\ +\xa8\x8b\x72\xa4\xd7\x8c\x45\x91\x41\xe4\x36\xe2\x52\xc6\x10\x85\ +\x45\xba\xab\xb4\xf7\x9e\x65\xf9\x8f\x4c\x36\x8a\x9e\x42\xbe\x2b\ +\x6e\xbd\x54\x63\xfe\xde\x9a\x9b\x2a\x8c\xed\x5d\x79\xbb\x52\x20\ +\x1d\x96\xfc\x63\x93\x59\xda\x6b\xf1\x33\xbb\xd0\xf7\xd4\xca\xde\ +\x8d\x9b\x7b\x19\x98\xc9\xb1\x65\x30\x51\x7f\x9b\x32\x8d\x2f\x7e\ +\x41\x79\xbb\x75\x58\x2e\x3e\xb2\x89\xe7\xe7\x8b\x2a\xef\xc4\xbb\ +\xf4\xde\xe4\x00\x9c\xb4\xcc\xc2\x4c\xec\xed\xb8\x49\xb9\x58\x85\ +\x77\x9c\xb1\x37\xe2\x8b\xbc\xe7\xa7\xa5\x05\xbb\x89\xca\x6c\xbe\ +\x1d\xc1\x4e\xc7\xfe\x87\x0e\xbd\x71\x6e\xe6\x59\xa5\x87\xde\xe2\ +\xcf\xbc\x5e\x41\xe0\x2d\x7a\x55\xfe\xdd\xc8\x6a\x39\x93\x7f\xa6\ +\x22\xb4\x3d\x1e\x29\x21\xd9\xba\x46\x3c\x35\x5d\x11\x30\xf2\x37\ +\xab\x09\x38\xc0\x8f\x46\x00\xf8\x93\x2f\x7c\xf1\x37\x86\x69\xfa\ +\xf7\x54\xa4\x51\xbb\x57\xf9\xfd\x7f\xf5\x79\x3e\x71\x0f\x4c\x2f\ +\xc7\x7c\xe9\xc9\x94\xb1\x36\xbc\xeb\x6e\x78\xe5\x6a\xc6\xe7\xbf\ +\xd3\xe4\x9d\xe9\x18\x75\xee\x65\x56\xff\xf5\x19\x16\x7f\xfa\x67\ +\xa9\x85\x35\x4c\x6c\x50\x4e\x35\x38\xeb\x6c\x23\xc5\x1d\xd6\xaa\ +\x29\x8a\x10\x46\x83\x0e\x08\xb4\x46\x47\x56\x30\xb4\x3f\xe8\xd1\ +\x1b\x0c\x48\x46\x09\x61\xa3\x56\xed\x51\x49\x3b\x7b\x9f\x44\xd4\ +\x19\x0c\xf5\xc7\x7e\x01\xf3\xf4\xb7\xf6\x82\xdd\x3c\x4a\xa9\x98\ +\xc4\xc2\x04\x1e\xe3\xd4\x94\x3c\x80\xbc\xb3\x9f\x52\x6a\xc2\x01\ +\xf4\xd2\x92\x7a\x6c\xb4\x71\x0d\xa3\x91\x75\xb9\xcd\x41\x45\x69\ +\xf9\x6f\xe9\x75\xb7\xd3\x64\xb7\x98\x67\x07\xf9\xf3\x6f\x58\x1d\ +\x81\xe5\x13\x13\x3b\x8b\xac\xee\x32\xfb\xb6\x03\xf6\xfb\x99\xe0\ +\xd6\xda\xea\x13\xe9\xb2\x50\xde\xcc\x5c\x7a\xc8\x5f\x55\x0d\x18\ +\x7b\xef\xde\x89\x69\x80\xf2\x5e\x23\xd8\xdb\x10\x2d\xea\xf5\x5c\ +\x24\x24\x75\xeb\xc7\x2b\xaf\x74\x50\x55\x67\xd6\x9e\xbb\xb3\x99\ +\xf4\x78\xf4\xb0\x00\x7e\x40\xd5\xc0\xec\x14\x84\x6f\x79\x18\xfd\ +\xa5\xef\xda\x03\x61\x19\xff\x72\x03\xcf\xa2\xba\x90\x9e\x82\x98\ +\x98\x28\x27\xb4\x87\x0a\xf4\x16\xbf\xf1\xef\x2d\x5d\x36\x8d\x83\ +\x00\x92\x9b\x97\x10\x27\xee\xf7\xa2\x8c\xd9\xdb\x0c\xfc\x51\xca\ +\x00\xfe\xfc\x3f\x7c\xf1\x37\x65\xab\xf9\xb7\xd3\x58\x32\x62\xc8\ +\x20\x6a\xf1\x4b\x7f\xe5\x17\x98\xab\x25\xac\x47\x43\xda\xf7\xae\ +\xf3\x68\xa3\xcb\xfc\xca\x39\xbe\xfa\xd4\x16\x73\x9b\x63\x8e\xe8\ +\x84\x81\x84\x64\x75\x9d\xcb\xff\xea\xf7\x38\xf8\x33\x9f\xa1\xd6\ +\x6a\x41\xd3\x20\x47\x92\xd1\x68\x44\x36\xe8\x22\x1b\x6d\x02\x6d\ +\x81\xd5\xd6\xd6\x5a\x3a\x50\x0d\x8c\xc7\x09\xbd\x4e\x97\xe1\xfc\ +\x80\x7a\xa3\x0e\xb8\x4e\xbd\xf4\x05\x3b\xb4\x63\xec\x95\x0b\x32\ +\x7c\xe7\x47\x59\x8c\x60\x2b\xf5\x14\xa1\xdd\x05\x56\xd8\x29\x80\ +\x9f\x56\x0a\xe9\x1a\x4a\x4e\xd4\x23\xd0\xe5\xcd\x55\xdc\x8c\xba\ +\xec\xbb\x19\x1f\xbe\x2a\x4b\x08\x30\xa2\xaa\x53\xe9\xd7\x05\xb9\ +\x30\x27\x9e\x0e\x7e\x21\xe4\xe9\x74\xfe\x2f\x9d\x83\xa9\x25\xab\ +\x2e\x5e\x09\x4e\x1e\xc1\xc5\x5f\xe8\x66\x32\xb0\xf9\xeb\x53\xdc\ +\xa2\x71\x5f\x72\xb1\xca\xb4\x38\xff\x99\x9e\x58\xec\xc1\x6d\x40\ +\x3e\x93\xc1\x66\x22\xcd\x87\xea\xa2\x2c\xba\xed\xba\xfc\x6f\xed\ +\x95\x15\x46\x79\xb3\x78\x59\x4a\xa2\x17\xec\x92\xb4\xaa\x00\x00\ +\x20\x00\x49\x44\x41\x54\x02\x2e\xaa\x8a\xf5\xcf\x95\x8d\x7c\xce\ +\x85\xf6\xca\x92\xb0\xd1\x40\x1f\x39\xc2\xf2\xd1\x67\x58\xbb\x9a\ +\x96\xe5\x03\x55\x55\xb1\x2a\xe7\x63\xef\xdf\x56\xb1\x70\x17\x13\ +\xc1\xc6\xeb\x79\x08\x55\x72\x03\xc6\x1b\x97\x1c\xcd\x7c\x6f\xc5\ +\xf6\x17\x29\x01\x82\x37\x62\xf1\x3f\xf9\xe4\x93\xbf\xd3\x5c\x5e\ +\xfc\x9b\xb2\xd5\x42\xa1\xd9\xee\x0f\xa1\x36\x4d\xbd\x5e\x43\xc9\ +\x06\x2a\x9a\xa7\x35\x7b\x88\xc3\x47\x0e\x93\x4d\x3f\xc8\xcc\xf2\ +\xdd\xac\x2c\x2d\x92\x08\x08\x3b\x1d\x12\xa5\xd9\x1d\x8e\x50\x2f\ +\x7f\x9f\xe8\xe0\x11\xc2\x56\x1b\x65\x34\x61\x64\xad\xc8\xa3\xa9\ +\x59\xaf\xb5\x6b\x5c\x3a\xef\x22\xa6\xd1\xd4\xe2\x98\x76\x6b\x8a\ +\x76\xbb\x45\xe0\x0c\xd9\x4a\x72\xa0\x28\x9a\x7f\x05\x35\x1e\x03\ +\x41\x88\xd9\xb8\x4a\xf7\xdc\x0b\x45\x16\xed\xcf\x6c\xe5\x24\xeb\ +\xd6\x94\x8b\x4b\x78\x33\x69\x7f\xda\x56\x40\xff\x3d\x94\x5a\xae\ +\x46\x25\x4a\x2b\x42\xbb\x5b\xe4\x2e\x32\x41\x79\x7e\x6d\xca\x49\ +\x80\x0c\x3c\x9b\x30\x65\x1f\x79\x32\x93\xf5\x60\x76\x65\x22\xb1\ +\x31\xde\xa4\x42\xb0\x47\x2d\x49\xdc\xae\xd9\xe7\x63\xe0\x27\x67\ +\xd8\x7e\x89\xe0\xa3\xef\x3c\xb4\x5a\xee\x4a\x5c\x74\xef\xb5\x07\ +\x86\x71\xdd\xfb\x82\x72\x1b\x78\xf3\xf3\xb4\x4c\xfd\x4d\x0e\xd8\ +\xf1\x8e\x9b\x0c\x0b\xfc\x09\xbd\xba\x3e\x75\x81\x38\x2c\x3b\xf5\ +\x26\xb3\x25\x81\xd6\xae\x1c\x88\xcb\xf3\xe8\xc4\x05\x92\xd8\x7b\ +\x7e\x62\xcf\xd3\x3a\xb4\x00\x47\x66\x10\xed\x55\x46\x57\x53\x7b\ +\x8e\xb4\xe4\x08\xe4\xdb\xa9\xf1\xfe\x2e\x13\x3a\xa1\xd7\xfc\xb8\ +\x9a\xc0\x10\x38\xa0\x50\xee\xb1\xa3\xbd\x8c\xc1\x28\x67\xd5\xa6\ +\xa1\xbe\x70\x84\xc5\x87\x3f\x42\xa6\x94\xd7\xd3\xb8\xd5\x58\x80\ +\xf8\xaf\xfd\x8d\xbf\xf1\x5b\xbf\xfb\x3b\xff\xc7\xf8\x87\x0e\x08\ +\x74\xfe\xe2\x85\xdf\x68\x4c\xb5\xff\xba\x02\x46\xa3\x1e\x83\xee\ +\x2e\x2a\x4d\x19\x8f\xc7\xd6\xec\xd1\x18\xd2\x54\x91\xa6\x09\x89\ +\x52\x28\xa5\x69\x4d\xcd\x30\x75\xef\xbd\x1c\xf8\xc4\x67\x68\x7d\ +\xee\x2f\x33\xf5\xe8\xa3\x2c\x4e\xb7\xe9\x0c\x86\x3c\xf1\x87\xff\ +\x96\x9b\x1b\x1b\xc4\x41\x64\x53\xae\x6e\xc7\x2d\x58\xb7\x22\xa4\ +\x95\x0d\x13\x22\x77\x1f\xd2\xf4\x7b\x7d\xfa\x83\x01\xe3\xd1\xb8\ +\xb8\x2b\x4b\x18\x85\x99\x68\xb2\x94\x77\x7f\xfc\x13\xbf\x50\xe9\ +\xd2\x6a\x4f\xd3\x5d\x7b\xe3\x2f\xc3\xad\xc1\x21\x1a\xcf\x7a\xdc\ +\xf7\x1e\x34\x25\xe0\xcd\x4c\xee\x1c\x13\x3b\xbf\xce\xeb\x6a\x2f\ +\xc5\x14\xd2\x03\x11\x99\xf2\x35\x64\x00\x5b\x3d\xb8\x79\xd1\x53\ +\x27\xf2\xc1\x47\xa6\x4c\xd3\xb5\x07\x91\x65\x12\xa0\x24\xaa\x23\ +\x39\xc3\xc4\x31\x59\x96\x26\xc5\x8e\x3f\xf9\x1a\xba\x7c\x7e\xf1\ +\x99\xe5\x25\x42\xe8\x7d\x17\xa5\x52\xb2\x76\xef\x4b\xbb\x4c\xaa\ +\x50\xc5\x91\x25\x18\x2b\x3f\xee\xa7\xf1\x3a\x28\xcb\x0e\xa3\x5d\ +\x77\x5e\xb8\xf3\x6b\x6f\x67\x77\xc2\xa5\xf9\x79\x0a\xd3\x5d\xb7\ +\xfb\x6b\x51\xfa\xf2\x99\x03\x4b\x08\x35\xa0\x9b\x0d\x58\xb8\xbb\ +\x5d\x91\x0e\xc4\x9b\x02\x30\x31\x2d\xd8\x03\x1a\xd3\x65\xd0\x35\ +\x72\x6f\x79\xe6\xdf\x17\x4e\x0c\x8a\x74\xfb\xaa\x95\x05\x2b\x88\ +\x43\xb7\x5c\xfc\xf9\xcf\x56\x7e\xe8\x90\x80\xe7\x2f\x5e\xf8\xd5\ +\x54\xa9\xbf\x37\x4a\xc6\xf4\xbb\xdb\x0c\x3a\xdb\x64\x59\x46\x92\ +\x2a\x94\x32\xd6\x50\x74\x9c\x92\xa4\x29\x49\x9a\x81\x16\xae\x56\ +\xb2\x75\x78\xa6\x33\x1a\xcb\xcb\xd4\xdf\xfe\x4e\x66\x7f\xee\x73\ +\xa8\xb7\x3f\xca\xd9\xf9\x3a\x5f\x5b\xfd\x03\xb6\x93\x35\xea\x61\ +\x4c\x2d\x08\x60\x34\x74\x3e\x01\x81\x75\x31\x0a\x24\x32\x0c\x11\ +\xa1\xdd\x3e\x47\xe3\x84\x6e\xb7\xc3\xa8\x3f\xb0\x37\x8f\xf1\x9a\ +\x53\x4e\x7c\x34\x77\x63\xf3\x41\x57\xc1\xdd\x0f\xb3\x34\x37\x5f\ +\x76\x73\xcd\x44\x2d\xed\x81\x3c\xcc\x84\xbe\xa4\xf1\x47\x45\xfe\ +\x7a\xf6\x9a\x62\xd2\x4c\xa4\xe9\x54\x6b\xdd\x4a\x73\xcd\x78\xb8\ +\x05\xe3\xd5\xd8\xba\xec\xf3\xe5\xcc\x34\x01\x5c\xba\x00\xdd\x2d\ +\x4f\x82\x6c\x22\x08\xf8\xbb\xb9\x91\xd5\x47\x65\x16\x0f\x55\x43\ +\xdd\x7d\x7a\x03\x3e\x5a\xb2\x10\x13\xca\x47\x64\x54\xe5\xec\xb5\ +\xb7\xdb\x19\x53\x66\x3a\x05\x72\xcf\xec\xc5\x33\x15\x73\x78\xbc\ +\x79\xbb\xf7\x39\x15\x81\x39\x28\x11\xc3\x79\x17\x5e\x6b\x8a\xe9\ +\x84\xf1\x6a\xf7\xc2\xd7\x40\x94\xc1\xd3\xf8\x75\xbd\x00\xb3\xbc\ +\x02\x59\xd7\xf2\xf5\x57\x7a\x44\x71\xb9\x5b\xe7\x81\x49\x7b\x23\ +\x3e\x3d\xf1\x3e\xb5\xd7\xfb\x30\xfe\x82\x95\xd5\x7b\xc3\xef\x05\ +\xe4\xc1\x5d\x6d\x5d\x21\x08\x02\x87\x07\x30\x55\x30\xa0\xf6\xb3\ +\xb2\xe2\x67\x3f\x5c\x01\xe0\xfc\xc5\x0b\xff\x43\x92\xa4\xbf\x3e\ +\xec\xf7\xe8\x6d\x6f\x30\x1a\xf4\x48\xb4\xb1\x3b\xbf\x56\x8c\xc6\ +\x63\x94\x32\x4e\xcd\x27\xb0\x96\x60\x2a\x25\x53\x29\x5a\xd9\x6e\ +\xbf\x40\x90\xa5\x29\x51\x1c\x63\x9a\x4d\x0e\xbf\xe5\x21\x1e\xfb\ +\xf0\x63\x1c\x3a\x78\x90\x27\x3a\xff\x86\xcd\xe1\x2a\xc2\x18\xc4\ +\xa0\x43\x10\x86\xd6\x41\x38\x0c\x21\x28\x61\xc1\x08\x81\x52\x19\ +\xbd\x6e\x97\xee\x70\x80\x52\xaa\x64\xe9\x69\xef\x62\x1b\x53\x3a\ +\xfb\x78\x21\x3e\xfa\x89\x5f\xa8\x60\x5b\xb4\x28\xb3\x01\xed\x79\ +\xbc\xe5\xd7\xc1\xf7\x0a\x30\xde\x28\xa8\x58\x0c\xee\xa6\xd1\xaa\ +\x44\x15\x1a\x69\xff\x3b\x73\x40\x16\xe1\x1a\x7e\xc2\x8d\x0b\x55\ +\xe6\xdc\x7b\x43\x97\xe8\xe4\x6e\xbf\xce\xbd\x57\x06\x56\x94\x33\ +\xc8\xdd\x7e\x13\x18\x2b\xb8\x7e\xd6\xbb\xd1\xf7\xcb\x06\xc4\xc4\ +\x68\xd9\xcb\x70\x8a\xc5\xe9\x9a\x68\x3a\xa8\xfe\x0d\x26\xf7\x34\ +\x90\x65\xbd\x6d\xb4\x2b\x45\x02\x6f\x87\x57\x6e\x4a\x98\x53\x6b\ +\x63\x0a\x4a\xae\xc9\xca\xee\xbd\xa9\xdb\x2e\xbb\x4e\x2d\x3e\x48\ +\xa7\xa0\x23\xd0\x75\x97\xfa\xa7\x60\x46\xee\x7b\x04\xa6\x69\xd3\ +\x76\x9d\x00\x43\x97\xb6\x87\x40\xd3\xa6\xf8\x3a\xb1\x1c\x24\x93\ +\x80\xa8\xdb\xe7\x9b\x9a\x9b\xfd\x8f\xc1\x8c\xed\xf9\x45\xc3\x7e\ +\x37\x09\xe8\x81\x7b\xed\x1a\x34\x66\x40\xcc\xcc\x41\xb2\x81\x10\ +\xd6\x0f\x61\xfe\xbe\x3a\xa6\xe1\xa6\x07\x89\x3d\x87\xc9\x9c\xbc\ +\x7b\x5e\x8a\xa4\xf6\x67\xe4\x59\x48\x7e\x3c\xf3\x52\x7f\xe9\x26\ +\x19\xa1\x37\x09\x70\x63\x44\x19\x3a\x97\xa3\xed\xeb\xf6\x7e\xbe\ +\xcd\x88\xb6\x7a\xbf\xb2\xf4\x43\x13\x00\xce\x5d\x38\xff\xb9\xce\ +\xee\xce\xef\xae\x5e\xbb\xc4\xa5\x8b\xe7\xd9\xd8\xd8\x66\x63\x73\ +\x87\xdd\xad\x0e\xc3\xc1\x88\xfe\x70\x8c\x52\x8a\x4c\x29\x8c\xd6\ +\x8c\x47\xc3\x62\xe6\x1d\x48\x5b\x88\x49\x21\xc8\xdc\x73\x74\xa6\ +\x90\x52\x12\x86\x21\xb3\xed\x05\xee\x69\x7e\x98\x13\xe2\xbd\x3c\ +\xb3\xf3\x27\x6c\x8e\xaf\xa3\x76\x77\x6c\xfd\x1e\x86\x88\x20\xb7\ +\x12\xcf\xa5\xb5\x0c\xa9\x31\xf4\x07\x03\xfa\xbd\x3e\xa3\xe1\x08\ +\x7d\x9b\x19\xb9\x99\xd0\x60\x8f\x1f\xfb\x45\xa7\x7b\x5f\xed\xc4\ +\xf8\x0d\x1d\xed\xed\xf8\xf5\x10\x0e\x9c\x9c\x65\x79\x5a\xb0\xd8\ +\x82\xa5\xb6\x93\x2a\xd0\xde\xce\x68\xbc\xdd\xc1\xa1\xbf\x98\xc8\ +\x1c\xcc\x7e\xf5\xb9\xf4\x46\x5e\x5e\x23\x29\x0f\x3a\xd2\xdf\xc9\ +\x34\x74\xfa\xb0\x7b\x69\xff\xd2\x64\x72\xf6\x9e\x2f\x60\xbf\x44\ +\xf1\x01\x83\xfe\xce\xef\x07\x36\x3f\x83\x31\x5e\x37\x3d\x97\xd4\ +\xcf\x7b\x16\x7a\x62\x67\xd4\xaa\xec\x75\x14\x3f\x97\x13\x01\xc8\ +\x4b\xa7\x8b\xd2\xcb\x0e\x7a\x6c\xf0\x95\xde\x7b\x71\x19\x40\x71\ +\x3c\x3f\x4f\xe6\x82\xb5\x0b\xc2\x5a\x95\xaf\xe9\xe3\x08\xb4\x2a\ +\xd7\x22\xc0\xf4\xa1\x19\xbb\xc0\xd2\x9b\xc5\xdf\x98\xac\x8c\x88\ +\x63\x17\x10\x75\xa9\x19\xe0\x97\x29\x2a\xcf\x3c\x94\x97\x59\xe4\ +\x9b\x85\x27\x23\x56\x34\x06\x27\xe9\xdf\xae\x05\xb2\xd9\xcf\xd0\ +\xc9\xa8\x80\xa9\xbf\x86\xaf\xd7\xd4\x08\xfc\x81\x4f\x01\x9e\x7d\ +\xf6\xc9\x4f\x7c\xff\xf9\xe7\xfe\xc5\xee\x6e\x77\x32\x42\xdd\x12\ +\x91\x6a\xb4\x25\xb7\x18\x47\xe4\x49\x55\x56\x44\x3e\x29\x85\xbb\ +\x98\x86\x40\x4a\x94\x52\x08\x21\x58\x6e\x9c\xa4\x25\xe7\x78\x79\ +\xf3\x09\xee\x9a\x85\xc5\xfe\x31\x44\x63\x0a\x19\x84\x18\x99\x39\ +\x72\x90\x46\x04\x11\x5a\x29\xc6\x49\x4a\xaf\xd7\xa5\xdb\xef\xd2\ +\x6a\xb7\xf6\xc0\xd5\x8d\x3f\x37\x32\xa6\x7c\xfd\xc5\x43\x2c\xde\ +\xf7\x16\x36\xbe\xff\x54\x99\x76\xe6\x0c\x30\x4a\xc7\x9f\xbc\x51\ +\x37\xcc\x20\x5c\xdb\x61\xfa\xee\xa3\xd4\x1f\xb8\x8b\xa0\x51\x63\ +\x0a\x08\x02\xcb\xf0\x53\x1b\xd6\xcb\x51\x0c\x86\x30\x18\xa0\x3b\ +\x7d\xf4\x70\x8c\xda\xde\x45\x8f\x52\x6e\x76\xcb\x9b\x70\x4f\x36\ +\x6c\xca\x2e\xbc\xf0\x3b\xd2\x79\xf3\x4f\x97\xa2\x22\xf9\x22\x38\ +\x77\x1e\xde\xbc\x64\x0d\x82\x2a\x9f\xf9\x3e\x9c\x04\x3f\xe8\xec\ +\xeb\x32\xac\xbd\x72\x66\x02\x44\x98\x37\x40\x8d\xdc\x5b\x13\x57\ +\x6a\x20\xcf\x6d\x58\xfb\x58\x7e\x7f\x04\x68\xf6\x76\xcd\x2b\xbf\ +\xef\x4d\x43\xda\x53\x92\x5e\x47\x97\xef\x4f\xee\xed\x41\x98\x89\ +\x45\x6e\xa8\x02\x86\xb4\x27\xf3\x4e\x9e\xd6\x1f\x3e\x89\x34\x23\ +\x06\x63\x5d\xf4\x48\x94\x81\xb9\x13\x01\x83\xe7\x95\xad\xfd\xb3\ +\x72\xa4\xa7\xf3\xf7\x1f\x94\xd3\x07\x33\x81\x1c\x2c\x02\x81\xa8\ +\x42\xa8\xfd\xb2\x46\x7b\xce\xe4\xa3\xad\x6b\x04\x73\x47\x60\x1f\ +\xb3\x10\x53\x81\x3d\x02\x30\xff\x86\x07\x80\xaf\x7f\xfd\x2b\xef\ +\x7b\xe6\x99\x17\xfe\xf5\xa5\x8b\xaf\x04\x97\x2e\x5d\x60\x67\x67\ +\x07\xb4\xf5\xfb\x7b\x69\xf5\x45\x92\xc5\x2d\xa2\xd8\x32\xf8\xc2\ +\x71\x83\xf9\xdd\x43\x3c\x70\xe4\x08\x87\x4f\x9c\x64\xfe\xf8\x09\ +\x64\xad\x86\x42\x5b\x3c\x85\x52\x84\x4e\x90\x23\xcb\x32\x02\x11\ +\x30\x74\x1a\xf3\xf5\x7a\x9d\x7e\xbf\x47\x28\x1a\xbc\xa9\xf5\x6e\ +\xd6\x86\x2f\xd2\xb8\x71\x88\xa9\x3b\x1e\x04\x25\x91\x91\xed\xfc\ +\x18\xa3\x31\x99\x41\x3a\xb9\xb0\x6e\xbf\xcf\x60\x30\x24\x4d\x53\ +\xe2\xd0\x0a\xb5\x1b\x27\x2b\x35\x99\x0f\x68\x63\xdc\x18\xc6\x50\ +\xfb\xa9\xff\x16\xf3\xfd\xbf\x55\xc0\x7f\x0b\xa4\x97\xa7\xcb\xe9\ +\xd7\xd5\x9d\x01\x74\x9f\xb9\x42\xf8\xfc\x15\x56\x0e\xd5\xa8\x9f\ +\x3a\x41\x70\xfc\x24\xc6\x04\x04\xcb\xf3\xd6\x4f\xde\x59\x6a\xcb\ +\x82\x92\x6c\xb1\xfd\x8b\x08\x84\x30\xa4\xeb\x9b\x08\x65\xc8\x6e\ +\x6c\xa2\x07\x03\xd2\xad\x1e\xe3\xb5\x2d\x6e\x74\x8d\x95\x93\x0e\ +\xcb\x45\x94\xa9\x12\x89\x16\x84\x6e\x2d\x39\x17\x5a\x6d\xe0\xd2\ +\xb3\x70\xf7\xa3\xec\x61\xc4\xf9\x65\xc0\x9e\x59\x93\x2f\x6d\xe5\ +\x8d\x32\x85\xff\x3b\x5e\xd6\x20\x26\x68\xb2\xc6\x5b\xd8\x26\x1f\ +\x91\xe6\x9d\x7b\xe9\x75\xee\xb5\x97\x36\xe7\x18\xfe\x7c\x31\x25\ +\xde\xa8\xd1\xa3\xe7\x32\x2a\x7b\x26\xa3\x40\xd3\x7e\xec\xdd\xe8\ +\xef\x7c\x9d\xee\x8e\x07\xc2\xa9\x3b\x89\xf5\xcc\x82\x7f\x94\x0b\ +\x2e\xa6\xe6\xf0\x05\x99\x4b\xf7\xdd\x62\xd5\xb5\x32\xd8\xe9\x31\ +\x70\xe8\x28\x8c\xaf\x57\x7b\x1e\x0a\xb2\x65\x45\xf8\x1c\x24\xa1\ +\x9d\x28\x98\xac\x7c\xff\xc6\xc9\xbf\xe7\x9c\x02\x9d\xba\xeb\xe2\ +\x9a\x91\x7a\x62\x32\xa0\xf3\xac\xc5\x89\x8c\xe6\x13\x0c\xe1\x7a\ +\xda\xe3\x9b\x57\x68\x2f\x1e\xdf\x7f\xf1\xef\xbd\x64\x6f\x6c\x06\ +\xf0\xad\x6f\x7e\x35\x38\x77\xfe\xda\x3f\x7d\xee\x99\xef\xc5\xe7\ +\x5f\x39\x4b\xaa\xac\x85\xb7\x94\xd2\x3a\x01\xa9\x14\x11\x0a\x44\ +\x64\x50\x03\x8d\x6c\xf6\x58\x1b\x5e\x66\xe3\x9b\xd7\xb8\xf7\x9b\ +\xff\x1f\x33\x33\x33\xcc\xde\x7d\x2f\x87\xef\x7f\x90\xd9\x13\x27\ +\x18\x67\x8a\x41\x62\x25\xc1\xc3\x28\xc4\x68\x4d\x1c\x45\x28\x65\ +\x27\x06\x52\x06\x48\x21\x51\x46\xb1\x20\xee\x62\xfd\xfa\x59\xda\ +\xc7\xee\xb7\xdc\x00\x19\x20\x44\x80\x91\xda\x79\x60\x87\x68\xa5\ +\x18\x0e\x06\xf4\x07\x7d\xfa\xc3\x3e\xc1\xd4\xb4\xf5\x88\x90\x93\ +\xda\xf5\xa5\xa3\x8f\x36\x06\x69\x04\xd1\xa3\x3f\xc5\x7c\xe3\xef\ +\xb2\x3d\xcc\xf0\xfb\x31\xd2\x4b\xd7\xa5\xf0\x1c\x7f\x5d\x27\x57\ +\x69\xb8\x76\x75\x8c\xb8\xf2\x12\xb5\xd6\x4b\x34\x0f\x42\x63\x01\ +\xe6\x9b\xf6\xf9\x61\x14\x43\xad\x85\xa8\xb5\xad\x35\x78\x6d\xda\ +\x3a\x01\x37\xe7\x88\x57\x16\x00\x41\x7c\x64\xd9\x53\x17\x35\xac\ +\x08\x09\xfd\x3e\x6a\x6b\x87\xe4\xc6\x26\xe3\xd5\x4d\x76\x2f\x6e\ +\x70\x7d\xc7\x14\x63\xc0\x3c\x50\x69\xb7\x38\x57\xb7\xe0\xc8\x3a\ +\xb4\x0e\x79\x53\x05\x79\x0b\x64\xb0\xf1\x16\xae\x27\x9a\x61\x4c\ +\x75\xda\xe1\x37\xf6\x04\x5e\x17\x5e\x96\xfd\x0f\x1f\x0f\xa0\xe5\ +\x44\x23\x34\x9a\xc0\xf8\x4f\x52\x70\x3d\xb8\xad\x98\x84\xcf\x7a\ +\xaf\x9d\x18\xa8\x5f\x7c\x1e\xf9\xf1\x9f\x67\xe6\x8f\xff\x1d\x5b\ +\xd7\xfb\x56\x94\x25\xc7\x56\x04\x36\x33\xca\x83\x8d\x88\xca\xfa\ +\x5c\x79\xe5\x83\xf0\xa6\x1a\xcb\x4b\x81\xe5\x7c\xec\x5e\xab\xea\ +\xad\xb8\x09\xc5\xc2\x9b\x42\xae\x5f\xcc\x6c\x06\x93\xa7\xfd\x5e\ +\xc0\xd3\x93\xf8\x0d\x53\x4a\x85\x15\xbd\x8f\x49\xd4\xb4\xac\x1a\ +\xcc\x48\x01\xe3\x9b\x97\x99\x0d\x03\xb4\x3f\x03\x70\x8d\x28\x23\ +\xcc\x24\xa6\x6a\xe5\x0d\x0d\x00\x17\x2e\x5e\x7f\xb4\xb3\xbb\x7b\ +\xcf\xd5\xcb\x17\xed\xdb\x15\xa5\xba\x8d\xd1\x06\x11\x59\xb1\x4f\ +\xd5\x17\xd4\x66\xc0\x68\x49\x6d\x3e\x23\x1d\x85\xac\x5d\x8f\x89\ +\x7a\x5d\xa2\xa7\x9e\xe0\xeb\x4f\x3f\x4d\xf7\xae\x37\x71\xdf\x07\ +\xdf\xc5\x7d\x73\xc7\xd0\xca\x30\xce\x32\x94\xd1\x44\x2e\x00\x44\ +\x51\x8c\xca\x14\xc4\x31\x5a\x6b\x94\x52\x04\xd9\x14\xbd\x1b\x57\ +\x99\x5a\x39\xe6\xf4\x01\x4a\xb1\x0f\xed\xf4\xff\xd3\x34\xa3\xdb\ +\xed\xd1\xeb\xf6\x99\x6a\x4f\xa1\x84\x07\xd8\xf1\xc4\x3b\x7d\x58\ +\xb0\x16\x06\x29\x23\xe2\xc7\x7e\x11\xf3\xf9\x7f\x5e\xa6\xfc\x1e\ +\xfa\x4b\x8a\x6a\x7a\x8e\xa8\x32\x62\x8d\x80\x71\x1f\x92\x73\xd0\ +\xbd\x0a\xfd\x03\xd0\x5a\x84\xa0\x96\x20\xba\x09\x52\x6c\x97\x92\ +\xff\xb2\x44\x11\xce\x36\x03\xbb\x15\x34\x17\x21\xaa\x43\x7d\x16\ +\x5a\x73\x50\x9f\x25\x38\x76\x84\xc6\xf1\x63\x34\x80\x59\x21\x39\ +\x0e\xe8\xf5\x55\x46\x17\x57\xe9\x5e\xb8\xc6\xc6\x95\x5d\xc6\x49\ +\x59\x4e\x9c\x7d\x01\x1e\x5c\xb2\x86\xc2\xc2\x4c\xa4\xd9\xfb\x7d\ +\xe9\x52\x4a\xd0\x37\x37\xf5\xe9\x03\xfe\x0d\xe8\x6b\x7e\x1a\x5d\ +\x05\xf1\xe4\x14\x5e\x1f\xd6\x2a\x94\x97\x19\x68\x2f\x08\x64\x65\ +\x06\x60\xbc\x4c\xab\x78\x3f\xba\x6a\x4b\x86\x82\xed\xab\x3b\xcc\ +\x1d\xff\x1a\x7c\xe4\xe3\xcc\x7f\xe5\x8f\xb8\x79\x69\xdb\x32\xfd\ +\x02\xdb\x40\xcd\xcf\xa3\x05\x88\xc4\x9e\x5f\x65\x1e\x0c\xd8\x38\ +\x48\xb1\x3b\x2e\x4f\x9c\xb0\x6f\x7c\xbc\xb6\xa7\x5b\x64\x00\x7d\ +\x38\xc3\x9c\x2f\xff\xee\x62\x4a\x21\xca\x66\x5e\xbe\xc8\x0b\x94\ +\xa2\x9a\xe8\xad\x98\x2a\xd7\xa1\xb0\x4e\xf0\xbe\x86\x37\xaf\x14\ +\xfa\x98\x93\x8b\x7f\x9f\xaf\xa5\x37\x34\x00\x28\xa5\x3f\x7a\x73\ +\x73\x1d\x23\x44\x89\x6b\x77\x9d\x75\x11\x80\xd4\x81\xe5\xd1\xc7\ +\x02\x91\x09\x82\x18\xa2\x58\x10\x9d\x4c\xd9\x1e\x34\x59\xe9\x0b\ +\x7a\x02\x2e\xb5\x5b\x74\x8e\xc0\xc5\xcd\x67\x79\xa2\x7f\x85\x87\ +\xe7\xef\xe0\xbe\x70\x19\x19\xd5\x18\x8c\x87\x84\x61\x48\x9a\x26\ +\x84\x2e\x18\x48\x21\x09\xa4\x24\x45\xd0\x5f\x5f\x67\xfa\xf0\x49\ +\xb4\xd6\x8e\x21\xa8\xed\xbf\x8d\xc1\x04\x01\x4a\x29\x7a\x7d\xc7\ +\x10\x4c\x13\x6a\x71\xad\x44\xaf\x05\xb7\x40\xbd\xb9\x94\xab\xf6\ +\xb1\xff\x0e\xf9\xf9\x7f\x5e\x99\x6d\x57\x90\x70\xa2\x4a\xae\xf3\ +\x57\x87\x2f\xcf\xaf\xc6\xd0\xb9\x04\xbd\xab\xd6\x56\x6a\xfa\x10\ +\x84\x8d\x52\x2a\xd0\xaf\x7b\x77\x86\x0a\x61\x14\xa2\x7f\xbd\x54\ +\x8d\x71\xa7\xad\x47\x10\x34\xa7\x6c\x4a\xd1\x5e\x80\xd6\x02\xf2\ +\xc0\x0a\xcd\x95\x83\x34\x1f\x7d\x1b\x07\x10\xb0\xb9\x41\xef\xec\ +\x45\x36\x9f\x3a\xc7\xd9\xab\x29\x9b\xaf\xc0\xd2\xbd\xa5\xaa\x96\ +\x0f\x71\x36\x3e\x12\x4f\xef\xdd\xc5\xcd\x3e\x37\xb2\x91\xd0\x98\ +\x89\xe1\xd4\xdb\x6d\x9d\xba\xbe\x06\x37\xae\xd1\xd7\xba\x7c\x4e\ +\xea\xfd\x4d\x41\xf9\x3a\x26\xf1\x46\x60\x5e\xfa\x2d\x5c\xca\x8e\ +\x9b\x24\x50\x77\x65\xc5\xd8\xc3\x52\xc4\x38\xeb\x72\x5b\x0e\xa0\ +\x81\xe7\x37\xa0\xf9\x05\xf8\xc0\x8f\xb3\xf8\xe7\xdf\x63\xe3\xfb\ +\xeb\xe5\x88\xb1\xee\xae\x81\xb2\x4e\x65\x85\x6c\x77\x5c\xd6\xec\ +\x66\x50\xf6\x02\xe4\x89\x3b\x10\xd9\x0d\xc6\xa9\x17\xe8\x7c\xc0\ +\x53\x0c\x07\x0e\xc0\xb5\x8b\xee\x6f\xcb\xcf\x93\x95\x7f\x6f\x0e\ +\x59\x16\x91\x2d\x43\xf2\x09\x40\xde\x8c\xcc\x91\x89\xa4\xd5\x40\ +\x42\x0c\x32\xb5\x8f\xf1\xc6\xe5\xa2\x0c\x2e\x9b\xb2\xb7\xec\xab\ +\xbd\xb1\x19\x00\x70\xaa\xbb\xbb\x6b\xf5\x6e\x4d\x49\x6f\x0b\x84\ +\x93\xea\x32\x21\x22\x80\xa8\x25\xd0\xdb\x21\x51\xdb\x10\x37\x04\ +\x26\x84\xf0\x9e\x94\xab\xcf\x37\xc9\x02\x49\xf7\x6d\x07\xe1\xd8\ +\x0c\x72\x77\xcc\x8e\x19\xf2\xf5\x3f\xff\x06\xeb\x6b\x19\x77\x3d\ +\xf8\x10\x87\xee\xbc\x8b\xc1\x78\x84\x52\x0a\x95\x69\xbb\xc3\x07\ +\x82\x40\x07\x44\x61\xc8\x60\x67\x9b\xb4\xdf\x25\xac\x5b\x79\x31\ +\x21\xec\x24\x20\x37\xf6\xd0\x52\x32\x1e\x25\xf4\xfa\x36\x0b\xa8\ +\xcd\xd7\xdc\x3d\x6f\x9c\xe5\x73\x8e\x05\x10\x15\x58\x30\x06\xe4\ +\xf2\x71\x16\x4f\xbd\x8d\x1b\xcf\x7f\xaf\x6c\x7a\xc9\x32\xed\x17\ +\x1e\x94\x34\x10\xe5\xc5\xf6\xb3\x80\x0a\xda\x55\xc1\x70\x13\x46\ +\x9b\x76\x83\x9f\x3a\x0c\x71\xab\x3a\x0f\xf6\x81\x46\x72\xc2\x69\ +\x78\x94\x01\x9d\x2e\xa2\xd7\x45\xdc\xb8\x58\xbc\x50\xa3\xd1\x84\ +\xe9\x03\x36\xb2\xcc\x1c\xa2\xfd\xe8\x23\xb4\x1f\x7d\x84\xe3\xdd\ +\x1d\xb6\xbe\xfb\x7d\x42\xf9\x0a\xc9\x3e\x16\x57\x15\x45\x1e\x0f\ +\x54\xb3\x1f\x6c\x57\x78\xd0\xd9\x41\x37\x21\xfa\xde\x37\x88\xde\ +\xfd\x18\x9c\x7a\x1b\x00\xad\xce\x0e\x5c\x3b\x07\x6b\x57\x18\x5f\ +\x59\x67\xe4\x08\x38\x44\x65\x5a\x4e\x32\xd1\x0d\x77\x60\x27\x35\ +\x2e\x39\x04\xa2\xe6\xc1\xab\x55\xf9\xda\xb2\x5e\x82\x68\x32\x37\ +\x36\xbd\x71\x39\x65\xf9\xbe\x26\xe8\x3f\x81\x77\xfe\x38\x4b\xea\ +\x59\xd6\x5e\x58\xab\x40\x97\x8d\x67\xc5\xae\xa0\xe0\x5c\xf8\xd3\ +\x99\xa9\x06\xc8\xf9\x79\xe8\x7e\xb7\x2a\x97\xe0\xf9\x84\x2a\x03\ +\xe2\x28\x98\x0b\x65\x59\x24\xbc\xe6\xaa\xf1\xec\xc1\xf3\x46\xa8\ +\xce\x3c\x8c\x81\xbb\x56\xf5\x1a\x0c\x32\xaf\x49\x18\x96\x99\x80\ +\x14\x90\x6e\x5f\x27\x0c\x02\x24\x02\x45\x3e\xa6\x16\xb7\xc2\x06\ +\x2f\xbd\xd1\x01\x60\x66\x30\x1c\x90\x23\xea\x2d\xde\xde\xb6\x33\ +\x03\x19\xd2\xac\xd7\x18\x09\x81\x48\xa1\x3e\x27\x10\xa9\x40\x07\ +\xd0\x9c\x13\x30\xa3\xe8\x6c\xa4\x8c\xc3\x65\xcc\x4a\x1b\xd1\x49\ +\x10\xf3\x6d\x6a\x4f\x6f\xb0\xf2\xe2\x06\xa3\x66\x8d\x3f\xba\x79\ +\x96\x85\xe5\x94\x87\x67\x4e\x30\x4f\x83\x1d\xad\x90\x4a\x12\x85\ +\x91\x6b\xe4\x59\xe4\x5f\x77\x6d\x95\xf9\x3b\xee\x82\x50\x23\x74\ +\x68\x95\x82\x02\x6b\x2d\x86\x31\x64\x59\x46\xb7\xd7\xa3\xd7\xed\ +\x31\x37\x37\xeb\x2c\xbb\xca\xc6\x5f\xb1\x8b\x1b\x53\xe9\x9a\x0b\ +\x20\xfe\xf8\x2f\x61\x5e\xf8\x5e\xb9\x98\x75\x79\xf1\x45\x29\x31\ +\x50\xd4\xe2\xc2\xc3\x9b\xef\xb1\x77\xf2\x52\xe8\xfe\x06\x74\x6f\ +\x40\x7b\x09\x66\x8f\x43\xd4\x98\x70\xc8\x9a\xc4\x9a\xfb\x3b\xb7\ +\x17\x14\x10\x30\x1c\x0d\x10\xc3\x0b\xb0\x7e\xc1\xde\x64\x8d\x18\ +\xe6\x8f\xc3\xdc\x49\xe6\x3f\xf0\x28\xac\xcf\xc0\xc5\xef\xee\xc1\ +\x95\x15\x99\x90\xa8\xd6\xd8\xfb\x51\x59\x8d\xae\xa6\xb3\x49\x0a\ +\xc9\x97\xff\x88\xd6\x43\x07\xe1\xee\x07\xa0\xb9\x0c\xf7\x3e\x0c\ +\xf7\x3e\x4c\x0d\xa8\x5d\xbd\x00\x97\xcf\x32\xbe\x7a\x91\xfe\xa8\ +\x9a\xe5\xe4\xe3\x5f\x91\x2f\x72\x2f\xcd\x37\x79\x57\xdd\x1b\xa9\ +\x15\xc1\x29\xdf\x71\x3d\x12\x0e\x17\x13\x38\x95\xc1\xf6\x9f\xc2\ +\x3b\xdf\xcd\x81\x7a\x8d\xeb\x4f\x5e\x2a\xa1\xc1\xe3\x12\x1c\x54\ +\xb8\x7f\xbb\xf3\xe4\xd3\x81\xd6\xb1\x03\x68\x0d\xc1\x68\xb5\x9a\ +\x91\x51\x55\x74\xd2\x33\x30\x33\x0b\x5b\xbb\x54\x14\x82\xb4\x3f\ +\x49\xc9\xdc\xf9\xbd\x11\x70\xfe\xc1\x4e\xb5\x21\x98\x5d\x64\x70\ +\xfe\x66\x85\x47\x21\x72\xbd\x03\x09\xe3\xed\x55\x3b\xd2\x0e\x24\ +\x26\xcd\x6e\x81\x5a\x2d\xbe\x37\x9e\x7d\xf1\x6c\xe3\x81\x7b\xef\ +\x1e\xbe\x51\x01\x20\x4e\xd3\x04\x81\x20\x94\x92\x14\x43\x14\x04\ +\x04\x41\x48\xa3\x5e\xa3\x11\x34\x49\x25\x44\xad\x80\x40\x18\xf4\ +\x6e\x44\x34\xa3\x30\x4a\x12\x85\x82\x85\x07\x53\xf8\xce\x0e\xea\ +\xc6\x34\xea\xf0\x14\xf5\xef\xae\x73\xe8\xfc\x4d\x74\x14\x71\xed\ +\xde\x65\xb2\x07\x0e\xb1\x1e\xa4\x7c\x29\x3b\xcf\x7d\xb5\x25\x1e\ +\xc8\x5a\x08\x23\x18\xea\xa1\xab\xf5\x25\x41\x18\xd0\x5d\xbd\xca\ +\xc2\x9b\xee\xb6\x01\x41\x4a\x2b\x10\xe2\x32\x00\x23\x84\x6d\x06\ +\x0e\x07\x0c\x06\x7d\x86\xa3\x21\xcd\x46\xd3\xfb\x4c\x8d\x13\xe5\ +\xac\x06\xd8\x7c\xed\x45\xef\xf8\x08\x0b\xad\x3a\xdb\x83\x51\x45\ +\x2c\xa2\xe8\xae\x7b\x73\x70\xe1\x1a\x46\x42\x4c\x64\x09\x1e\x45\ +\x34\x97\xa5\xce\xe1\xa0\xfd\x4d\xfb\x68\x2d\xc1\xdc\x09\x5b\xf6\ +\xfb\xbb\xbe\x99\x30\xab\x10\x13\x1a\x85\xf9\xcd\x99\xef\x30\xc2\ +\xc0\x68\x94\xc0\xf5\x97\x61\xf5\x65\xea\x71\x08\x0b\x27\x08\x44\ +\x55\xa8\xa6\x80\xad\xea\x89\xe0\xe4\x93\x7e\x3c\x54\x5b\xd1\xa5\ +\x37\x55\x96\x5b\xef\xb9\x55\x5a\xa3\x55\xc4\xb1\x06\x84\x53\x50\ +\x3f\x02\xe1\x01\x38\x74\x18\x0e\x9f\xb0\xc1\x60\xed\x32\x5c\x3e\ +\x4b\x72\xf9\x3c\xdd\xa1\x9b\x97\xe7\x38\x7d\x69\xd3\x7b\xe9\x82\ +\x81\x4e\xca\xd1\x9a\xa8\x95\x3d\x00\x35\x2c\x83\x91\x88\x1d\x1c\ +\x5a\xc1\xda\xd9\x21\x2b\x77\x2e\x42\xbc\x0b\xbb\x7f\x86\x78\xe0\ +\x5d\x1c\x96\x8a\x2b\x4f\x5c\x2d\x89\x54\xae\x1c\x30\x99\x15\x26\ +\x2a\x38\x17\x75\xbb\x3a\x82\xbb\xef\x06\xd5\x27\x4b\xfb\x76\xb7\ +\xf7\xae\x9f\xf4\xe6\xfa\xd2\xc0\xd4\x3d\xb0\xf5\xa4\x03\x1d\xa9\ +\x12\xe0\x93\xbf\x1f\x3d\xb2\x93\x00\x21\xdc\x98\x30\x2c\xa9\xca\ +\xe1\x89\x53\xa8\xde\xae\x6d\x9e\xba\xdd\x41\x3b\xb1\x52\x91\x67\ +\x00\xdd\xeb\x08\x21\x88\x82\x90\x24\x4d\x6f\xcf\x08\x32\xc5\x28\ +\xf0\xda\x1b\x15\x00\x7a\x46\x1b\x44\x28\x90\x84\x84\x4a\x10\x05\ +\xd6\x06\x2c\xae\x45\x34\x6b\x53\xf4\x4c\x40\xad\x25\x50\x3d\x41\ +\xd4\x30\xc8\x61\x08\x52\x21\x42\x41\x63\x51\x33\x7b\xd7\x88\xe4\ +\xa5\x2d\xe4\xc6\x90\xa5\xf3\x5b\x64\x71\xc0\xc6\xdb\x8e\x90\x1e\ +\x9f\xb1\x63\xb3\x76\x03\xb3\x35\xe4\xc2\xd9\xe7\xa8\x6f\xa5\x1c\ +\xba\xe7\x7e\x5a\xb5\x3a\x2a\xcb\xd0\x4a\x31\x48\x53\xa4\xd1\x0c\ +\xb6\x6e\xd2\x9c\x9d\x47\x06\x0a\x23\x25\x32\xb0\x2e\xc3\x52\x0b\ +\x8c\x80\x34\x49\xe9\xf5\x7a\xf4\x7a\x3d\x9a\x8d\xa6\x4d\xcb\xb5\ +\xa5\x04\x69\x69\x6c\x9a\x69\xec\x38\xae\xf2\xf9\xca\x80\xda\x4f\ +\xfe\x65\xcc\xbf\xfe\xa7\x15\xba\x6f\x05\xce\x2b\xaa\x73\xe6\x8a\ +\x56\x9d\x99\xa8\xbd\x8d\x57\xfb\x06\x65\xe2\xd1\x5b\x85\xde\x3a\ +\x4c\x1d\x80\xb9\x3b\xec\x60\x60\x0f\xab\x50\x56\x1b\x75\x78\xea\ +\x44\x62\x62\xc4\x97\x37\xfd\x46\xe3\x0c\xae\xbf\xb2\x27\x83\x30\ +\x66\x2f\x81\xc7\x77\x2d\x36\x13\x1c\x05\x33\x21\x9e\xe1\xc3\x78\ +\x3b\xaf\x40\x3b\x1b\x12\xdc\x61\xa0\xf7\x02\xf0\x82\xfd\xdd\xda\ +\x21\x1b\x10\x96\x8f\xc1\xc1\xa3\xc4\xef\xfc\x10\x0b\x1b\xd7\xe0\ +\xea\x59\x46\xcf\xbf\xc2\x4e\xd7\x2e\x4a\x19\x7b\xe0\x9c\xac\x24\ +\x0b\x15\xe5\x80\x28\xcb\x01\xb4\x3d\x9e\xef\xc0\x59\x06\x5c\x4a\ +\xe0\x6e\x77\x11\xba\xdf\x86\x53\x0f\x71\xb0\x9b\x70\xf5\xd9\x1b\ +\xf6\x73\x6e\x96\xa4\x1d\xa5\x4a\x58\xb5\x0e\x6c\xfa\x1f\xac\x1c\ +\x46\x8e\xbe\x6f\xe3\x9b\xa8\x8a\x8b\x4c\x12\x1a\xcd\x82\xb5\x3c\ +\x18\x0d\x4a\x50\x97\xa8\x57\x41\x46\xb9\x8e\xa4\x88\x4b\x70\xd0\ +\xc2\x52\x8c\x5e\x39\x84\x3c\xb7\x55\xd2\x88\x4d\x15\x17\x03\x70\ +\xb3\x97\xa2\x55\x42\x10\xbc\x0a\x87\xaf\xe4\x0b\x2c\xbd\x5a\x00\ +\xf8\x41\x22\x01\x77\xc3\x40\x10\xca\x90\x38\x8a\xa9\xc5\x21\x61\ +\x14\x11\xc5\x21\x81\x90\xcc\x4d\x4f\xa3\x87\x01\x6a\x00\xf5\x59\ +\x43\x6d\x56\x31\xda\x94\xd4\x6a\x01\x41\x60\x18\x6f\x4b\xe6\xef\ +\xd3\x2c\x2c\x77\xa8\xbd\xb4\x4d\xd6\x8c\xb9\xf1\xe0\x21\xc6\xc7\ +\x66\x60\x7e\x06\x13\x85\x88\xd5\x0e\x33\x4f\x5d\xe7\x4d\x2f\x5e\ +\x63\xbc\x7e\x83\x6f\x6f\x5e\xe4\xea\x8c\x66\xaa\xd1\x24\x8e\x6b\ +\x34\xea\x0d\xb4\xd6\xec\x5e\xbf\xe2\x88\x41\x4e\x35\x58\xd8\xd1\ +\x60\x7e\x2c\x55\x9a\xfe\x60\x40\xaf\xdb\xb3\x68\xc4\xfc\x0a\x08\ +\x53\xe1\x07\xe4\x57\xc6\xff\x77\xfc\xd1\xbf\x44\x94\x37\x71\xc4\ +\x04\xff\x7b\x12\xc7\x2f\xaa\x58\x6f\xed\x09\x8b\x28\x53\x92\x4f\ +\x8a\x1a\x94\x2a\x5c\x78\x77\x15\xae\x7c\x1b\x36\xce\x39\x9b\x7b\ +\x1f\x5b\x9e\xd7\x96\x54\x47\x58\x46\x54\xf1\xf7\x15\xac\xff\x2d\ +\xe0\xbf\xbc\x1a\x95\xd5\x5b\xe4\xda\x43\xb6\xe9\xc0\xc5\x0c\x59\ +\x1d\xf9\x75\xce\x82\xbe\x3c\xaa\xaa\x5d\x26\xab\xd0\xf9\x0e\x6c\ +\xfc\x01\x6c\xfd\x31\xf4\xbe\x0f\xf3\x73\xf0\x96\xf7\x53\xff\xc5\ +\x5f\x66\xe5\x67\x3f\xce\xca\x23\x77\xd2\x76\x96\x78\x4a\x79\xbc\ +\x01\x97\x11\x28\xb7\xf8\x0b\x38\xbc\x0b\x12\x46\x94\x65\xc2\xcd\ +\x17\x3b\x6e\x95\xe7\xdb\xd2\xd3\x84\xef\x38\xc1\xca\xc9\x29\xfb\ +\x19\xbb\xe7\x2b\xd7\xac\x53\xb9\x5e\x40\x06\x33\x27\x8f\xda\x8f\ +\x21\xb9\x5a\x94\x5e\x85\xb7\xa3\xc7\x77\x10\xde\xf7\xf9\x03\x0e\ +\x19\x88\xfb\xee\xde\x9f\x52\x55\xb0\x94\x76\x69\x7d\x08\x88\x37\ +\x3f\x62\xfb\x64\xfa\x46\x15\x8e\x3e\x01\xc0\x92\x02\x86\x9b\x6b\ +\x44\x61\xe8\xc1\x3f\xf7\x79\x60\x30\x76\x9c\xf1\xaa\x60\xa0\x1f\ +\x64\x00\x78\x25\xaa\xd5\x89\xa2\x88\x7a\x2d\x26\x8e\x6a\x84\x61\ +\x48\x28\x2d\x3c\x77\xaa\x3d\x45\x98\xd6\x08\x6b\x06\x3d\x16\xc8\ +\x00\x9a\x07\x15\xbd\x2b\x21\x41\x20\xa8\x35\x2c\xb6\x7a\xf1\xfe\ +\x31\xd1\x92\xe1\xe6\xf1\x05\x46\x6f\x3e\x88\x68\xd4\x41\x29\xc2\ +\x8d\x3e\xb3\xdf\xb8\xc8\xf1\xf3\x6b\x64\x48\x2e\xbd\xe5\x24\x3b\ +\xef\x3c\xc1\xf3\x4b\xf0\xfc\xd1\x88\x7a\xad\x46\x18\x06\x48\x19\ +\x90\x6c\x6f\xda\x4f\xdc\xd5\x4f\xc2\x41\x83\xa5\x1b\x0d\x1a\x34\ +\xa3\x74\x44\xaf\xdf\x67\xd8\xed\x4d\x7c\x28\xa6\x88\xc4\xda\x88\ +\x2a\x03\x0c\x10\xb3\x2b\xcc\xbd\xe3\xc3\x55\xd6\x98\xf2\x20\x9f\ +\x5e\xc1\x9f\x83\x68\x8c\xc7\xb0\x2b\x78\x00\xda\x13\xf9\x70\x1d\ +\x61\xa5\x4a\x51\x4b\x19\x3a\x11\x91\x0c\xb6\x2e\xc2\xb9\x6f\xc0\ +\xfa\x59\x6b\x7c\xe3\x07\x01\xbf\xb6\x9c\x34\xb1\xd8\x13\x08\xf0\ +\x9a\x50\xc2\x03\xa3\x78\xcd\xa9\xa2\x43\xed\x11\x4e\x72\x5b\xae\ +\x82\xce\x3a\xd1\xe9\x2e\x6e\xfc\xd4\x8d\xdd\x02\xd8\x7e\x19\xcc\ +\xfa\x2d\xca\xd1\x64\x1d\x7a\xdf\x85\x8d\xc7\x61\xf3\x8f\xa0\xff\ +\x02\xcc\x4f\xc3\xdb\xdf\x4f\xf3\xe7\x7e\x99\x95\x0f\x7f\x80\xe5\ +\xc3\x73\xc8\x1a\x18\x87\xd5\x57\x23\x50\x5d\xdb\xc5\xa7\x06\xb4\ +\x2c\xe0\x26\x1b\x41\xda\xb1\xe2\x46\xd4\xa0\x17\x03\x9b\x8d\x6a\ +\x70\xeb\x3f\x49\xfd\x83\xf7\x73\xf0\x88\x95\x28\x4c\x76\x6d\x19\ +\x41\x13\xc4\x94\x7d\x0d\x35\x04\x79\xf4\x2e\x50\x7d\xf4\x78\xb3\ +\xda\xfc\x34\xd5\x3e\x8f\x9f\xdd\x05\x2b\xae\x0c\x69\xdb\x8e\xbf\ +\x1a\x41\xd6\x77\x7c\x83\xd8\xbe\x86\x89\xdd\x67\x33\x84\x99\x53\ +\xf7\xa0\x1b\x2d\x44\x76\x93\x81\xd1\x16\x2c\xe4\x54\xd5\x08\x6d\ +\x66\x22\x22\x37\x15\xd2\x16\x0d\x58\x4c\x02\x98\x60\x67\xee\xe5\ +\x04\xbc\xa1\x01\xe0\x42\xb3\xd9\xb2\xfa\xfd\xb5\x1a\xb5\x38\xb6\ +\x1d\x4c\x29\x91\x58\xe3\x8d\xa9\x70\x0e\x29\x35\xa4\x02\x89\xa0\ +\x7d\x50\x91\x0d\x05\xe9\x56\x48\x63\x06\xb2\x81\xa0\xd6\x30\xac\ +\xbc\x7d\x4c\xb4\xd1\x43\xa6\x06\x66\xea\x84\x2f\x6d\xb0\xf2\xb5\ +\x97\xb9\x77\xbb\xc3\x56\x14\x71\xe1\xd1\x3b\x19\xfe\xf8\x3d\xc8\ +\xcc\xa0\x65\xc8\xa5\x64\x97\xfe\xb8\xc3\xfc\xd4\x14\xed\x7a\xdd\ +\x36\xfa\xd6\x57\xdd\xc2\xb7\x3b\xbf\x91\x96\x45\x23\xa4\xb5\x11\ +\xcb\x12\x45\xaf\x37\xa0\xd3\xef\x95\x0e\xd0\x1a\x8c\x16\x0e\x78\ +\x61\xf6\xe0\xdc\xf3\xf5\x10\x7f\xe6\xaf\xef\x99\xa3\x57\x30\xec\ +\xf9\x0e\xe5\x2f\x2e\xca\x06\xa1\xaf\x15\x57\x80\x77\xa8\x82\x6d\ +\x74\x0e\x37\xce\x75\x00\x14\xec\xac\xc2\xf9\x6f\xc2\xcd\x0b\x1e\ +\xac\xd5\x4c\x88\x56\x8a\x89\x6c\x40\x78\x70\x57\x0f\xa7\x50\xc9\ +\x0a\x3c\x06\x5c\x85\x24\xe4\x13\xcf\x3c\x1e\xc0\xad\x98\x80\x79\ +\xca\x9b\x77\xdb\x37\x9f\x07\xb6\x12\x0a\xa1\x80\xfd\xec\xcd\xd5\ +\x4d\xe8\x3f\x05\x37\xff\x10\x36\xbf\x08\xbd\xe7\x60\xe5\x00\xe1\ +\x47\x3e\xcd\xa1\xcf\xfd\x02\x87\x1e\xb9\x8f\xd9\x59\x1b\x58\x94\ +\xdb\x49\x95\x2c\x5f\x27\xe7\x1a\x98\xac\x94\xec\x4a\xae\xed\x58\ +\xe6\x14\x1e\xaf\xb9\xf7\x24\xcd\x0f\xbc\x8b\x76\xdd\x9d\xc3\x05\ +\x2a\xed\xbc\x1c\x16\xe7\x24\xc1\xf2\x32\x41\x7a\xd9\x8e\xad\x73\ +\xec\x95\x27\x2a\x62\x64\xd9\xaf\xc9\x03\x42\x3c\x0d\x53\x33\xee\ +\x7a\x04\x5e\x70\xd7\x65\xa6\x84\x03\x1d\x2d\x1c\x99\x43\x1c\x3e\ +\x86\xd1\x9a\x60\xf4\x7c\x35\x43\xd4\x13\x99\xa2\xcb\x00\x46\x37\ +\xaf\x12\x86\x21\xb7\x72\x09\xd0\xc6\xf8\xff\xfd\x86\x06\x80\xa7\ +\x5a\xcd\x16\x51\x10\x11\xd7\x22\x6a\xb5\xd8\xd2\x72\x1d\xa3\x29\ +\xae\x45\x4c\x87\x0b\x0c\x36\xa0\xb9\x68\x75\xb2\x93\x5d\xc1\xc2\ +\x9d\x8a\xdd\xf3\x31\xa3\x4d\x6b\x25\x8f\x16\x34\xe6\x14\x07\x97\ +\x7b\xd4\x9e\xb9\x41\xf8\xad\x8b\x1c\x7f\xea\x2a\xc7\xfb\x43\x2e\ +\xd5\x62\xd6\x3f\xf2\x20\xc9\x03\x47\x11\xbb\x43\xb2\xb9\x36\xf2\ +\xd9\x0b\x7c\xf8\x9a\xe6\xb1\xb7\xbf\x8d\x53\xf7\x1e\x67\x76\xaa\ +\xcd\x4c\xab\x45\xf7\xda\x15\xa4\x7b\x7d\x19\x86\x0e\x95\x28\x0a\ +\x92\x90\x52\x9a\xd1\x70\x40\xa7\xd3\x65\x3c\xde\xdf\x38\xc4\xa2\ +\xad\x4c\x85\x9a\x0b\x10\x9c\x7c\x80\xa5\x3b\xef\xbd\x35\x9c\x96\ +\x52\x6b\xa4\x42\xfb\xa4\x14\x12\x29\x08\x33\xa6\x84\xa3\x9a\x09\ +\xc7\x6f\xed\x35\x18\xf3\x9b\x51\x19\xb8\x71\x0e\xce\x7e\x0d\xb6\ +\xae\x78\x37\x83\x7f\xc3\x99\x89\xba\xd2\x07\xac\x18\x8f\xf8\xa3\ +\xf7\xde\x51\xda\x54\x83\x87\x7f\xe7\xf8\x7a\xfb\x15\xe3\x0d\x3d\ +\x01\x96\xc9\xd3\xf4\x14\xb6\x9e\x50\x58\x2f\x6c\x3f\xcf\xbd\xc5\ +\x23\xdb\x86\xfe\x33\x70\xf3\xf3\xb0\xfd\x15\x30\x1b\xc8\xfb\xdf\ +\xc5\xd4\xa7\xff\x0a\x27\x3f\xfd\x7e\x0e\xdd\x31\x4f\xe0\xe0\xbd\ +\x99\x0b\x06\xda\xa5\xdb\x19\x36\xad\x57\x19\x5c\xb9\x38\x04\xb1\ +\x52\xdd\x2a\x05\x90\x3e\xcd\xf2\x47\x1f\x46\xba\x8c\x5a\xa5\xf6\ +\xef\x55\x29\xd4\xef\xb3\x00\x09\x91\x5c\xae\xda\x9b\xc9\x89\xc2\ +\x9f\xb2\xc7\x92\x0b\xb2\xb4\x96\xca\xe0\x54\xa1\x0b\xbb\xe0\xa4\ +\x32\x98\x9f\x82\xe0\x81\x87\x31\x48\xa2\xd1\x33\x56\xd6\x4e\x4f\ +\x70\x51\x5c\xd9\x23\xbc\x91\xe7\x78\x77\xc3\x96\x00\xaf\xce\x06\ +\x7c\x4d\xa3\xc0\x1f\x64\x00\x78\xa1\xd5\x6e\xab\x30\x0e\x09\xc2\ +\x90\xa8\x16\x13\xc6\xa1\xc5\xba\x07\xf6\xd3\x5c\x9c\x59\x46\x8c\ +\x22\x4c\x06\xa1\x10\xc4\x35\x41\x3c\x65\x3f\xb5\xc1\xf5\x1a\x26\ +\x35\x84\x42\x50\x6f\x19\x96\x1f\x18\x31\x75\xfd\x06\x27\x9e\xbe\ +\xce\xd2\x68\xc4\xb9\xc5\x19\xd6\x3e\xf2\x10\xe9\xd1\x39\x84\x90\ +\xa4\x52\x32\xf5\xc4\x79\x7e\xb6\x7d\x98\xf7\x3e\xfc\x16\x88\x23\ +\x9a\xf5\x98\x37\xdf\x7f\x07\xb3\xd3\x53\x04\x69\xc2\xb8\xd7\x43\ +\x04\xb2\x80\x07\x1b\x61\xcb\x01\x9b\x09\x40\x92\xa6\x0c\x06\x36\ +\x08\x88\x4a\xbd\x5f\xd2\x83\xad\x25\x98\x27\x1f\xe2\x9e\x57\xfb\ +\xe4\x5f\x2b\xe8\xc0\x93\x9c\xf2\xbc\xf1\x53\xd9\x35\xfd\x86\x50\ +\x50\xde\x9b\x4a\x95\x4c\x38\xe9\x04\x3e\x72\x0a\xb0\xca\x9c\x54\ +\xb4\x2b\x07\x32\x65\x4b\x00\xe5\x28\xb6\xeb\x67\xe1\xe5\x6f\x41\ +\x6f\x7b\xe2\xf5\x27\x7a\x12\xda\xef\xf4\xfb\x99\x81\xf4\x44\x39\ +\x02\x2f\x50\x64\xd5\xe7\x69\x05\xca\x75\xea\x95\x13\xc7\xd4\x41\ +\xa9\x23\xaa\x33\x50\x81\x3b\x1e\xbb\x85\x90\xda\x47\x6a\xa0\xfb\ +\x64\x02\x99\xe7\xbe\xf1\x5a\x1e\xe3\x1b\xb0\xfb\x4d\xd8\xf8\xb7\ +\x36\x43\x58\x59\xa6\xf6\xd1\x4f\x72\xec\xaf\x7c\x96\xc3\x6f\x3d\ +\xc5\xb4\x2e\xd3\xfe\x60\xda\xd2\x7a\xb3\x3e\xa4\x3b\xb6\x24\x48\ +\xae\x65\xd5\x3c\xd9\x51\x10\xc3\xd6\xcb\x1c\x7d\xff\x9b\xa0\x0d\ +\xd9\xc0\xba\x8c\xc9\x11\xd4\x4e\xdd\x6f\x7f\x39\xd9\xf6\x9e\xef\ +\x72\x17\xb7\xeb\x07\xae\x59\x5c\xa8\x32\xbb\x40\x1d\xce\x83\xee\ +\xbb\xb2\xa2\x06\xa2\x65\x39\x07\x66\x64\x29\xc6\x81\x82\xf8\x9d\ +\xef\x01\x19\x21\x46\x57\xd0\xc9\x0d\x7b\x2d\x52\x97\x35\xd4\xca\ +\x71\x24\x63\x7b\x0d\x64\x08\xb2\x06\x49\x77\x9d\xc0\xef\x01\xb8\ +\x14\xd2\xe8\xbd\xfd\xa9\x37\xb4\x07\x70\xfa\xf4\xe9\x61\xbb\x3d\ +\xf3\xe7\x51\x60\x9d\x76\xa2\x20\x24\x8a\x22\x64\x20\x9c\xc6\xb9\ +\x61\x7e\x7e\x96\x86\x9a\x23\xeb\x6b\x02\x69\x81\x2f\x2a\x81\x99\ +\x63\x19\x3b\x17\x9b\x8c\xb7\x02\x82\x18\x6a\x0d\x49\xad\xa1\x39\ +\xf8\xc0\x90\x91\x0c\xf9\xfe\xca\x3c\x1b\x1f\xba\x1f\x7d\xe7\x01\ +\x18\x29\x92\xb5\x5d\x4e\x3c\xbf\xca\x2f\x1e\x3d\xc5\x7d\xa7\xee\ +\x25\x73\x05\xab\x14\x82\x76\xb3\xce\x5b\xde\x7c\x17\x73\x33\x33\ +\x0c\xd6\xaf\x81\xcc\xe9\xc1\x76\x1a\x20\x72\xdf\x3d\x04\x4a\x29\ +\x06\xc3\x3e\xdd\x6e\x07\xa5\x4d\xc5\x8c\xb6\x7a\xe7\x94\x9f\x3d\ +\xc5\x48\xf0\x31\x16\x67\x66\x2a\xb3\x58\x3d\x51\x0a\x68\xaf\xc6\ +\xce\x55\x6c\x7c\x2d\xbf\x0a\xd8\x46\x57\xfb\x3a\xda\x4b\xdb\x2b\ +\xac\xb6\x89\x45\x3e\xee\xc1\xd9\xaf\xc3\xb9\x27\x6c\x37\xba\xb2\ +\xc9\x7a\x9d\x68\x31\xa1\x67\xa7\xc5\x3e\x65\xcb\xc4\xee\x5f\xa4\ +\xff\x3e\x65\x55\x4e\x50\x5c\x7d\xd7\xdd\x49\x7a\xb1\xfb\xfd\x5e\ +\x17\xfa\xcf\xba\x56\xb9\x34\xaf\xfe\xf0\xeb\x77\x33\x86\xfe\x8b\ +\xb0\xf9\x05\xd8\xf9\x2a\x98\x4d\xe2\xb7\x3d\xcc\xe2\x2f\xfd\x65\ +\x4e\x7e\xe2\x7d\xac\x1c\xa9\x91\xb9\xc0\x94\x29\x47\xad\x57\x30\ +\xba\xba\x66\x5b\xf4\xc5\x4e\x9e\x37\x4c\x46\x34\x8f\x8d\x38\x74\ +\xb4\x61\xe1\xc0\x1a\x96\xef\x5a\x46\xc4\x35\x64\x7a\xbe\xb2\xe3\ +\x0b\xff\x0e\x10\x5e\x29\x44\x15\xa7\x51\x9b\x81\x76\xdb\x5d\x63\ +\x59\xe2\x14\x94\xcb\x00\x16\xde\xfe\x20\xb4\xa7\x11\xa6\x4b\x90\ +\xbe\x58\x1a\x44\xeb\x52\x1b\x21\x47\x49\xe6\x23\xc6\xfc\x75\x46\ +\xdb\xab\x84\xfe\x14\x40\x54\x15\x82\x27\xb1\x38\x6f\x64\x06\x40\ +\xad\xde\xf8\xb3\xb8\x51\x47\x4a\x49\x10\x04\xd4\xa2\x98\xc0\x21\ +\x99\x90\x82\x66\xb3\xc6\x7c\x7c\x04\x19\x18\xc2\x08\x92\x1d\x98\ +\x9e\x87\xd9\xa3\x29\xd9\x48\xd3\x5f\x6d\x10\x04\x30\xdc\x16\xb4\ +\xe7\x04\x47\x4e\x8d\x90\x4b\x29\xe3\x3b\x8f\xa0\x57\xe6\x30\x1b\ +\x5d\xd4\x76\x8f\x47\xae\x0d\xf9\xf9\x07\x1e\xe1\xc0\xe1\x03\xa4\ +\x59\x56\xb2\xe9\x1c\xfa\xaf\xdd\x6e\x70\xf4\xf0\xf2\x17\xc4\xee\ +\x8e\x83\x22\xdb\x26\x20\x79\x06\x90\x0b\x85\x68\xcd\x68\x9c\xd0\ +\xeb\xf7\xe9\x0f\xfa\xa5\xee\x9d\x37\xf4\x31\x42\x60\xbc\x9e\x40\ +\x89\xf4\x0a\x89\x3f\xf9\xdf\x4f\x0a\xb4\x54\x7c\xe5\x8c\xb7\xe9\ +\xe5\x8b\xde\x57\xa7\xc9\xbb\xf8\xda\xf3\xbe\xd4\xde\xe2\xc4\xfb\ +\xb9\xaf\x60\xa3\xbd\xa9\x81\x72\xcf\xdb\x5e\x83\x67\xbf\x0a\xd7\ +\x5e\x84\x2c\xad\xa6\xa2\x85\xdc\x96\xd9\xe7\xb6\x31\x7b\x17\x77\ +\xa5\xb7\xe1\xc9\x74\x15\xdd\x7f\xe9\xf1\xee\x45\xc9\x83\xaf\xf4\ +\x02\x44\xb5\xb3\xbd\xbd\x0a\xa3\x97\x26\xcd\x4c\xf7\x7b\x50\x0a\ +\x2b\x4e\x3e\xb2\x35\xe8\x7e\x03\xb6\xbf\x00\xbd\xa7\x89\x8e\x2e\ +\xd2\xfa\xd8\xcf\x73\xc7\xc7\x1f\x63\xe5\x40\xab\x64\x65\x0a\xb8\ +\x76\x3d\x01\xb3\x58\x45\x49\xe5\x58\x8d\x74\x83\xa9\x87\x0e\x5a\ +\x61\x15\xa0\xf1\xf0\xc3\x18\x9d\x22\xc7\x17\x9c\x32\x94\x33\x71\ +\x45\xa0\xdc\x7b\xca\xc5\x79\x6d\xf3\x56\x14\x0a\x52\xf9\xe7\xd9\ +\x5c\x2e\x95\x8e\xf2\xe9\x84\x06\x56\x1e\xbe\x07\x79\xf0\x08\x68\ +\x8d\x1c\x7c\xaf\x38\x91\x76\xe2\x29\xb9\x91\x68\x31\x0d\x30\x25\ +\x78\x4c\x02\xe9\xee\x46\xb1\x9e\xac\xb1\xac\xd7\x95\xdc\xfb\xd5\ +\x7e\x43\x03\x80\x94\xf2\x2b\xad\xd6\x14\x01\x76\xd7\x8d\xa2\x88\ +\x28\x8a\xec\xae\xeb\x8a\xa8\x23\x07\x8e\x30\x5a\x6b\x20\xa5\xa1\ +\xde\x82\x6c\x24\x89\xeb\x9a\xa5\xbb\x52\xd6\x9e\x8b\x19\xdd\x8c\ +\x68\xce\x18\xb2\x01\x84\xa1\xe0\xee\xf7\x8e\x98\x3e\x7f\x05\xb3\ +\xba\x43\xf0\xe2\x35\x3e\xb6\x19\xf0\xd3\xef\x7c\x94\xfa\x4c\x9b\ +\x4c\x59\xa1\x10\x44\x3e\xea\x13\x48\x21\xd6\x8c\x11\x8f\x6d\xef\ +\x74\x7f\x46\xc2\x53\xe9\xd6\xa6\x4d\xf9\xc3\xd0\x66\x00\x2e\x1b\ +\xb0\xa6\xa2\x56\x7f\x60\x38\x1c\xd0\xed\xed\xa2\x8c\xae\x88\x55\ +\x94\x8b\x5a\x14\xfa\x81\x06\x53\xdc\xd8\xd1\x87\x3e\xc7\x4c\x4e\ +\x54\x99\x10\xc7\x2c\xbc\xe7\xf3\xae\x7e\x50\xd6\x91\xca\xd3\x94\ +\xcf\x8f\x6b\x55\x3e\xa4\x53\x86\xc9\x15\x81\x32\x0f\x28\x13\x38\ +\xc5\x18\x95\x59\xe5\x1f\x95\xda\x63\x71\x6c\xad\xa5\xaf\xbd\x04\ +\x4f\xfe\x27\x58\x3b\x5f\xf6\x18\x60\xaf\xa2\x54\xb1\xc3\xe7\x42\ +\xa3\xba\x1c\xe9\xf9\x59\x04\x39\x46\x21\x2c\xb9\x00\x24\xae\x4e\ +\x75\x69\xbf\x72\x63\x34\x35\x76\xe3\xb5\xc8\xa6\xb5\x3a\xb0\x20\ +\x99\xcc\x29\xf9\x6c\x9c\x07\xb6\x87\xfb\xcc\x1f\xf7\x74\x4f\x6e\ +\xff\xd0\x63\x18\xbd\x0c\x5b\x5f\x44\xec\x7e\x95\x70\x5e\xd2\xfe\ +\xc9\xcf\xf0\xa6\x5f\x78\x8c\x23\xf7\x35\xa0\x09\xe3\x5d\xe8\x9d\ +\xd3\x55\x15\x54\x0f\x81\x18\x86\x57\x38\xf6\x9e\x43\x1c\x7b\xeb\ +\x3c\xe1\xfc\x22\x32\xb9\x04\x5a\xa1\xb5\xc4\x20\x0b\x87\x67\x8c\ +\xc0\x68\xdb\xc4\x34\x22\xc0\x04\x41\xe9\x14\xad\x24\x46\x4b\x34\ +\x92\xe6\x61\x9b\xfe\xab\x91\x55\x11\xcb\x46\x70\xf0\xad\x27\x08\ +\x4f\x5a\x9b\xef\x60\xf4\x24\xe8\xa1\xfd\x5d\x5c\x59\x1c\x39\x2e\ +\xc0\xd8\xb9\x0b\x45\xae\x74\xc8\x69\xc6\x19\x24\xdb\xeb\xb6\xef\ +\x94\x37\x02\xa5\xa9\x64\x6d\x13\xd7\xf5\x8d\xcd\x00\x80\x3f\x6e\ +\xb7\x67\xb7\x84\xb4\x56\xd6\x41\x10\x10\xc7\x36\x0b\x08\x02\x89\ +\xc1\xb0\xb0\x30\x43\x73\x74\x98\x2c\x51\x34\xa6\x05\x6a\x04\x81\ +\x14\x2c\xdf\x65\x3b\x32\x37\x9e\xaf\x53\x6f\x08\xb2\xa1\xfd\x80\ +\x57\xee\xd6\x2c\x2e\xac\xb3\xf8\x95\x97\xf9\xf9\xc3\xf7\xf0\x63\ +\x8f\x3c\x8c\x09\x04\x5a\xe7\x5c\x7a\x0a\x7e\xbd\x14\x7c\x41\x08\ +\xf9\xe0\x07\x1f\xfb\xe4\x1f\xff\x9d\xbf\xfb\xf7\x55\x18\x86\xff\ +\x30\xbd\xb9\x5e\xa0\x02\x71\xc8\x40\x21\x4b\xd1\x50\xad\x0c\xc3\ +\xe1\x88\x4e\xa7\x87\x4a\x33\xdb\x55\x9d\x5c\x35\xba\xda\x58\xcb\ +\xfb\x03\xa2\xd6\xa6\xf9\x91\xcf\x15\xbb\x9e\x10\x13\x23\x5a\xbf\ +\xfc\x9c\x50\xca\xc9\x79\xeb\x95\x12\x42\x7b\xd3\x06\x9f\x4a\xea\ +\xc3\x57\xd9\x2b\x09\xee\xe1\xcb\x8c\xce\x00\x00\x20\x00\x49\x44\ +\x41\x54\x0b\x93\x6a\x6c\xc0\x38\xff\x34\x3c\xf7\x35\xd8\xdd\xf4\ +\xce\x6f\x26\xd2\xff\x89\x49\x41\xe5\xcf\xf5\x1a\x85\xda\x19\x92\ +\xfa\x9a\x77\xda\x54\xf5\xef\x2b\x10\x55\x59\x6d\x4a\x5a\xc1\x17\ +\x7b\x8e\xd5\xef\x6a\x1b\xb9\x8c\xd9\xff\x2e\xf6\x39\xc9\xb7\x6b\ +\x18\xe6\xa9\x45\x72\x13\xb6\xbf\x46\xb0\xf3\x65\x6a\x73\x92\xa9\ +\x8f\x7c\x96\x13\x3f\xf1\x2e\x5a\x35\x18\x5c\xeb\x38\x26\x90\xd7\ +\xbd\xd3\x65\xd7\x6d\xe6\xc4\x80\xc6\xdb\xde\x63\xaf\xdd\xe0\x25\ +\xbb\xa8\x8b\x92\xad\xb4\x76\x47\x0b\x8c\x91\xa5\x04\xb8\x14\x68\ +\x2d\xd0\x08\x8c\x33\x6e\x89\xa6\x04\x32\x76\x2c\x43\xe0\xe0\x89\ +\x45\xe2\x3b\x1f\xc4\x18\x08\x47\xcf\x59\x69\xb1\xfc\x5c\x0e\x85\ +\xa5\x33\x47\x25\xd6\x13\x2a\x51\xa5\x2e\x0d\xa3\x5d\xdb\x2f\x08\ +\x83\xb0\xec\x4f\xe9\x5b\x7e\x26\x6f\x6c\x00\x38\x7d\xfa\xb4\x6a\ +\xb6\xa6\xbf\x14\xc5\x35\x84\x08\x8a\x00\x60\xb3\x00\xbb\xe8\x82\ +\x30\xe0\xf8\x81\x3b\xe8\xaf\x86\x8c\x3a\x30\xb3\x6c\x11\x78\x42\ +\x2a\x66\x0f\xc3\xe6\x85\x98\x2b\x4f\x45\x2c\x1e\x81\xb8\x6e\x38\ +\xff\xbd\x94\x9a\x38\xc2\x67\x3f\xf2\x61\xee\xbe\xe3\x04\xa9\x83\ +\x81\x49\x69\x5c\x47\x5f\x22\x85\x49\x84\x10\x7f\xeb\x03\x8f\x7d\ +\xe6\xe3\xef\xff\x89\x4f\x6e\xe4\xef\xe7\xd7\x7e\xed\xd7\x3e\x2f\ +\x92\xf1\x37\xcd\x60\x80\x70\xfa\x01\x52\xba\x6c\xc1\x3d\xc0\x90\ +\x26\x09\xc3\xc1\x88\x6e\xb7\x5b\xdc\x23\xda\xad\x90\x12\xa4\x31\ +\xa1\xd1\x6e\xec\x94\x20\xfa\xf8\x2f\x5b\xf2\x8f\xa7\xf6\xa2\xbc\ +\x39\xbd\xa2\x2a\xff\x54\xd4\xe6\x13\xe0\x1f\xcd\x5e\xc5\xe0\x42\ +\x3d\xc6\xa5\xe0\xca\x2b\x23\x8c\xa7\x8c\x9b\xf3\xd1\x73\x6e\x42\ +\xde\x3b\x18\xf4\xe1\xe5\xef\xc0\xcb\xdf\x85\xf1\xa8\x5a\xcf\xfa\ +\x80\x21\xed\xa9\x0a\xfb\x4a\xbc\xda\x1b\x7d\x16\xc1\xc0\xef\x2f\ +\xb8\x1b\x57\x39\xe1\x11\x25\x4a\x39\xac\x8a\x0c\x98\x17\xe0\x86\ +\x09\x6c\x3d\x91\x94\xa3\x8d\x7d\xab\x00\x6f\xd7\xbe\xed\xc3\x53\ +\x4a\xcd\xb6\x11\xbb\x5f\x23\xe8\x7d\x99\xc6\xd1\x39\x8e\xfd\xd2\ +\x67\x11\xd3\x33\x98\x78\x65\x42\xb2\xb8\xf4\x68\x17\x66\x40\x2d\ +\xbc\x84\x18\x5f\x45\xe8\x9e\xeb\x69\x48\xb4\xb0\xb8\x5d\x23\xac\ +\x46\xb9\xce\x53\x7e\x23\xd1\x04\x68\x23\xdd\x4e\x9e\x3b\x3a\x05\ +\x10\x84\xb4\xa7\xec\xe9\x97\x4f\x2c\x52\x7b\xe4\x51\x8c\x36\xc8\ +\xf1\x59\x44\x7a\x1d\x90\x68\xe3\xe0\xe8\x46\xa0\xb4\xb0\x48\xc4\ +\x09\x81\x95\x49\x1e\x86\xea\xda\x08\x1e\x4e\x4a\x83\x4d\x62\x01\ +\x7e\x18\x7a\x00\xae\x0c\xf8\x42\xab\x3d\x83\x94\x36\x03\x88\x42\ +\x8b\x0b\x08\x1c\x26\xc0\x18\xc3\xa1\x83\x87\x08\xfb\x07\x90\x61\ +\x86\x1a\x0b\x42\x21\x98\x9e\x83\x99\xe5\x31\xc9\xd2\x0c\xeb\x17\ +\xa6\xe8\xde\x84\xd5\x97\x15\xe1\xcd\x47\xf8\xf0\xa3\x9f\x64\x69\ +\x65\x81\x34\x53\x5e\xbd\x2f\x90\x36\xa8\xbc\x24\x84\x78\xe7\x07\ +\x3f\xf2\x99\xdf\xde\x17\xfb\x1c\x86\xff\x53\xba\xbd\x61\xf3\xea\ +\xd0\xa6\xfd\x78\x9a\x81\x60\x7b\x01\xc3\xd1\x80\xdd\x6e\xd7\x65\ +\x00\xe5\x98\x65\x3f\x59\xb3\x8a\x74\xe8\xc2\x51\x16\x1e\x79\x6f\ +\x99\x96\x69\x6f\x77\x97\x25\xd7\x3b\x4b\xcb\x6e\x7f\x7e\x15\x74\ +\xde\xed\x77\x37\x42\x3e\x1d\xf0\xbb\xfd\x08\x97\x7e\xe7\x82\x9f\ +\x63\x0b\x79\x95\x21\x84\x91\x4d\xff\xb3\x14\x86\x43\x18\x27\x10\ +\x86\x50\xab\x5b\x48\x6d\x9a\xc2\x68\x04\xab\x97\xe0\xa9\x3f\x81\ +\xd5\x8b\x1e\x3c\x55\x7b\x59\x40\xe0\x19\x5c\x68\x8f\xd3\xee\xd4\ +\x6a\xb4\x9b\x0c\xe4\x7a\x7c\x4a\x7a\x28\xbc\x5c\x00\x33\xb2\x40\ +\x16\x1d\xb9\x29\x82\x13\xcc\xcc\xcb\x01\x13\xd9\xcc\x5d\xf5\x61\ +\xe3\x2a\x0c\xcf\x76\x27\x48\x06\xaf\xf1\x81\xd7\x09\xc5\xe3\x46\ +\xe4\x41\x61\xbc\x49\xb0\xfb\xa7\xc4\xd9\x93\xcc\xfc\xf8\x3b\x51\ +\xd1\x4a\x05\xd0\x60\x84\x76\x92\xe8\xc6\x32\x37\x87\x2f\x12\x0e\ +\xbf\x87\x09\x04\x26\x08\xd1\x81\xfd\xe3\xb4\x36\x9e\x9e\x60\x00\ +\x81\x40\x2b\x9b\x31\xda\x29\x80\xc0\x88\x10\x13\x48\xb7\x83\x1b\ +\xe2\x06\x1c\xbe\x7f\x99\xe6\x8f\xbd\x07\x90\x88\xe4\x12\xc1\xe8\ +\x7c\x29\x7d\x26\x6c\xd6\x90\x47\x50\x35\x70\xe9\x7e\xfe\x50\xf6\ +\x73\x23\x75\x14\xe3\x3a\x0c\x92\x81\xdd\x38\xfd\x00\x70\x6b\x67\ +\xf7\x37\x3e\x00\x00\x5f\x6a\x4f\xcf\xaa\x7c\xa7\x95\x91\xcd\x02\ +\xc2\x30\xb4\x33\x70\x09\x8d\x66\xcc\xf1\x85\xfb\x18\x77\x04\x3a\ +\x33\x48\x09\xb5\x16\xb4\x17\x12\xc2\x29\xc1\xd6\xd4\x02\x4f\xfd\ +\x61\x8d\xf9\xf1\x63\xbc\xef\xc7\x3e\x44\xa3\x15\xa1\x54\x66\x67\ +\xfa\x45\xba\x2f\x11\x42\xfc\xdf\x02\xf1\xd6\x0f\x7d\xf4\x67\x6f\ +\xe9\x8d\xfe\x0f\xfe\xc1\x3f\xf8\x8a\xec\x75\xbf\x21\xb4\xb6\xbb\ +\x7f\x0e\x06\xca\xff\x2d\x24\xda\x68\xc6\xc3\x84\xc1\x60\xc0\x70\ +\x38\x28\x76\x96\x7c\xf1\x6b\x63\x0a\x70\x50\x05\x76\xe1\xe0\xc3\ +\xf1\xc7\xff\x6a\x89\x0f\x37\xfb\x34\xd7\x7c\x36\xdd\xc4\xb1\xca\ +\x28\x91\x09\x01\x4c\x4f\xab\x4e\x68\xcf\x25\x4a\x55\x6f\x02\x3d\ +\x21\x54\x9a\xe3\x0d\x2a\xaf\xa7\xe1\xf2\x0b\xf0\xe2\x37\xa0\xdf\ +\xab\xee\xf6\xfe\xeb\x69\x31\x21\xe4\xe1\x89\x5d\x54\xa6\x0b\x62\ +\x2f\xe0\x49\x4f\xcc\xbf\xf5\x04\xb8\x45\xb9\x2e\xbd\x36\x70\xf5\ +\x2c\x98\xce\xa8\x0a\x93\x7c\x2d\x0f\x21\xab\x5d\xd3\xa2\xc6\xf7\ +\x21\x7a\x20\xd2\xab\xc4\x9d\x2f\xda\xba\xdb\xff\x9f\x08\xed\x82\ +\x16\xd6\x90\x40\xbb\x9e\x82\xd6\x81\x2b\x01\xa4\xfb\x3c\xed\xae\ +\x6f\x9f\x2b\x50\x4a\x16\x9e\x11\xc6\x08\xdb\x0f\x70\xfd\x01\xe3\ +\x1a\x3f\xb3\x77\x86\x34\xdf\x7c\x0f\x5a\x0b\x44\x76\x8d\x60\xfc\ +\xa2\xfb\xcc\x04\xca\xd8\x5e\x81\x11\x79\xf6\x20\xc9\xc6\x5e\xcf\ +\x48\x94\xce\x4f\xda\xb3\x5b\xef\xab\x2a\x79\xc4\x54\x94\x44\xca\ +\xce\x94\xfb\xf7\x1b\x1f\x00\x4e\x9f\x3e\xbd\x15\xc7\xf5\x2f\x34\ +\x1a\x4d\x9b\x05\x10\x10\xc6\x21\xb5\x5a\x8c\x0c\x42\x24\x12\xa3\ +\x15\xc7\x0f\x9f\x20\xb9\x7a\x80\xf6\x9c\x22\x90\x82\xde\x0d\xc1\ +\xe1\x53\xd0\x18\xac\xd2\xde\x49\xf8\xc0\x7b\x7e\x9a\xb7\xbf\xf5\ +\xad\x18\xac\x72\xb0\xaf\xf4\x2b\x84\xdc\x15\x42\xfc\xdc\x4f\xfc\ +\xe4\x7f\xf3\xcb\x1f\xfe\xd8\xcf\x0e\x5f\xed\x3d\x05\x52\xfe\x2f\ +\xba\xbb\x63\xb3\x80\x20\x70\xfd\x00\xcf\x85\x01\x2b\x1d\x3e\x1a\ +\x0e\xe9\xf6\x76\xab\xcc\x38\x9f\x2b\x68\xc4\x9e\xa6\x1a\x40\x70\ +\xef\x23\x2c\x1e\x7b\x53\xb9\x38\xf2\x1b\xde\xc3\xac\x2b\x51\x5e\ +\x5c\xdf\x88\xa2\x48\xa5\x75\xd5\xf9\x27\x5f\x4c\xb9\xe3\x8f\xca\ +\xfb\x5f\xae\x2b\x9f\xb9\x9a\x5a\x4d\xb8\xd8\xe6\xa3\xa7\xc9\x32\ +\x21\xd3\xde\xd8\xf0\x49\x9b\x49\x54\x78\x0c\xde\xe8\x49\x9b\x7d\ +\x74\xef\x27\x46\x9c\x4c\x60\x20\xf2\x06\x62\x9e\xf6\x2b\x51\x7d\ +\xff\xbe\x8a\x2f\xc2\x66\x3e\xd7\x9e\x50\xd5\x0f\x5a\xe8\xf2\x71\ +\xab\x14\x20\x37\x33\xcd\x8d\x12\xfc\x66\x49\x91\xc5\xd8\x39\xb9\ +\x31\x19\x72\xf0\x8c\x4d\xdd\x8d\xc4\x98\xc0\xb1\x1b\x85\xcb\x84\ +\x64\x81\xdc\xc3\x80\x56\xa5\x1e\x84\x72\x69\xba\x31\x06\xad\x9d\ +\x30\xad\xfb\x63\x8d\xc9\x7f\x4f\x38\xdf\x01\x9b\xce\x13\x48\x44\ +\xba\x83\x1c\x5d\x24\x18\x3d\x6b\x51\xa5\xc6\xf6\x09\x8a\xa4\xc5\ +\x18\x0c\x36\x6b\xc8\xb4\x87\x16\xf5\x80\x5a\x39\xd1\x4b\x0a\x98\ +\xaf\x4d\xec\x1e\xdc\x9a\x14\x68\x8c\x79\xd5\x29\xc0\x7f\x2d\x6f\ +\xc0\xff\xb7\xd1\x9e\xf9\x84\xee\xdc\xb4\x34\x5d\x21\x09\x6a\x41\ +\x89\x5e\x12\xd0\x6a\xd7\x39\x3a\xf7\x00\x37\xce\xfd\x09\x87\xee\ +\x30\x34\x9b\x82\x1b\x57\x52\x0e\xce\x9e\xe0\xc7\xdf\xf1\x41\x96\ +\x0e\xce\x93\xa5\xa9\xd5\xfe\x73\xda\x82\x8e\xf6\xfb\x4d\x21\xc4\ +\x2f\x3e\xf6\x53\x9f\xbd\xf0\x5a\xdf\xcc\xaf\xfc\xca\xaf\xfc\xf1\ +\x6f\xfc\xd6\x6f\x3f\x2d\x67\xe6\x1f\x42\x0a\xb4\x47\x15\xd6\x6e\ +\x07\xc9\xb4\x66\x3c\x1e\xd1\xeb\xf6\x58\x5c\x50\x10\x04\xfb\x88\ +\x04\x69\xb7\x53\x0a\xdf\x55\x0c\x8c\x20\xfe\xc4\x5f\xc5\xfc\x9f\ +\x7f\xbf\x32\x3c\x96\x94\x4a\x41\x52\x7a\x46\xbc\xda\xf3\x10\x10\ +\xa5\xa2\x6f\xce\x03\x17\xa1\xfb\xdd\x9c\x14\x93\x43\xf2\x83\xdc\ +\x22\xdc\x96\x01\x39\x7f\x49\x46\xa5\x29\x88\xca\x60\x79\x46\x10\ +\xcf\xb6\xa8\xcf\x34\x68\x1e\x9a\x27\x9a\x6a\x21\x9b\x75\xda\x47\ +\x17\x6c\xe9\xd4\x5b\x27\xbb\xfe\x6d\xba\x43\xc7\xb0\xf3\x75\x0f\ +\x44\xc9\xf4\x2b\xd4\x7f\xa4\xc7\x6b\xcf\x3c\x3d\x80\xff\x9f\xbd\ +\x37\x8f\x92\x2c\xbb\xeb\x3b\x3f\x77\x79\x2f\xf6\xdc\x33\x6b\xaf\ +\xea\xaa\xae\xae\xea\x6e\x55\xb5\xba\xa5\x16\xa0\x05\x09\x23\x84\ +\xf0\x88\x1d\xb1\x48\x02\x0f\x0c\xb6\x6c\x33\x62\x38\x33\x83\xb7\ +\x19\x33\x36\xb6\xe5\x73\xbc\x8c\x7d\x7c\x6c\x0f\x3e\x0c\x58\xcc\ +\xa0\x19\x24\x63\x23\xa3\x03\x66\x11\x18\x84\xd0\x08\x09\x84\xa4\ +\x6e\xd1\x8b\x7a\xa9\x7d\xcb\x3d\x33\xb6\xb7\xdd\x7b\xe7\x8f\x7b\ +\xe3\xc5\x8b\xc8\xac\x5e\x10\xa2\xeb\x8f\x7a\x75\xf2\x64\x56\x44\ +\x64\xc4\xcb\x88\x77\x7f\xf7\xb7\x7c\x97\xaa\xa7\x61\x5a\x09\x12\ +\x7a\xac\x97\x60\xb2\x31\xc2\x0d\xed\x53\x5b\x67\x3c\x68\x66\x6b\ +\x00\x9d\xcf\x0f\x99\x7d\xa4\x15\xae\x0d\xf9\xe2\xac\xb7\xe9\x91\ +\xde\x68\x51\x59\x59\xca\x2a\x39\x5c\x39\x6f\xf5\xc6\x1a\xfe\xcd\ +\xb6\x81\xfd\x53\xee\x99\x52\x86\x06\xdf\x08\x58\x03\xce\x8c\x24\ +\xe4\xbc\x5e\x99\x0f\x26\x61\x34\x28\xfd\xa2\x77\x32\x3c\x8f\x1d\ +\x0d\x87\xa5\x2f\x21\x8c\x43\xa6\x17\xc0\x14\xde\xf5\x4a\x10\x76\ +\x7d\x87\x2b\xfc\xab\xfa\x29\x03\x58\x21\xb1\x22\xf7\xa5\xd2\x28\ +\xf8\x46\x4c\x2a\x05\x15\xd0\x39\x74\xd4\xc3\x9b\x8d\xd9\x57\xbe\ +\xcd\x4d\x21\x02\xff\xf8\x8b\x7f\x32\xfb\x9a\x73\xaf\xda\x79\xa5\ +\x03\xc0\x47\x6b\xf5\xd6\x4e\x3a\xd8\x9d\xc5\x8d\x77\x6f\xa8\x51\ +\xe4\x29\x42\x48\x9c\x33\xdc\x77\xea\x34\xd7\xff\xe8\x69\xb2\x23\ +\x57\xd8\xb8\x54\xa3\xb6\xf5\x3a\xbe\xf1\xeb\xde\x44\xb3\x19\x51\ +\xa4\x05\x4a\xab\x80\xc2\x92\x20\x84\x91\x42\xbc\x5f\x0a\xf1\x0f\ +\xde\xfe\xcd\xdf\x67\x5e\xee\x09\x45\xce\xfe\x8d\x7c\xd8\xff\x4d\ +\x59\x6f\x80\xf6\x22\xa3\x8c\x2c\xc5\x1d\x38\x6b\x02\x32\x30\xa5\ +\xb7\xbb\xcb\xcc\xfc\xfc\x78\x0c\x26\x43\x13\x50\x30\xe5\x3b\x28\ +\x4a\x9e\x78\xfc\xc6\x6f\x61\xe1\xe7\x7e\x92\xcd\xde\x60\xec\x17\ +\x50\xf9\x2e\xc2\xe8\xd6\xd8\x31\xad\xb7\xaa\x16\xe4\x2a\xdd\x5f\ +\x25\xc6\x69\xe0\x4a\x6b\xfc\x41\xd7\xe6\x9b\xc8\x66\x1d\x19\x29\ +\xa2\xc5\x39\x8f\xbd\x58\x9c\x45\x37\x34\xaa\x51\x27\x9a\x6f\x97\ +\xab\x79\x34\x21\x19\x43\x1a\x5c\xd9\xd3\xb0\xf1\x0c\xea\xc8\xa3\ +\x34\x2e\xff\x11\x83\x64\x52\x8a\xcc\xb9\xa9\x5d\xc6\x4d\x96\x36\ +\x96\x49\xfd\xff\xaa\x87\x81\x35\x93\x86\xa9\x23\x46\x9d\x11\x53\ +\x30\xe2\xca\x34\xe4\xc2\x13\x8e\xfb\x4f\xe4\x44\xf3\xf1\xfe\x1f\ +\xdc\x04\x1a\x87\x8a\x94\x76\x90\x9d\x0b\x78\x69\xff\xb7\x8d\xe1\ +\x79\xc2\xd9\xca\xfb\x2a\x2b\x2d\x04\x3b\x2e\xd7\xc2\x2c\x5f\x08\ +\x11\x54\xa4\x47\x99\x94\x0a\xd6\xf1\xca\x5f\x27\xe1\x30\xa3\xc6\ +\x9f\x13\x58\x67\x2b\x58\x00\x59\x96\x8a\x84\xdb\x6d\x78\xfe\xd1\ +\x98\xc4\x89\xf1\xa0\xdf\x86\x8e\xb1\x71\x53\x59\x95\xaa\x08\xa0\ +\x86\xa9\xd2\xf2\xc3\xdf\xe8\x01\x41\x49\xb2\x97\xa1\xb9\x0f\x1c\ +\xd8\xf9\xee\xc1\x6d\x0f\xf1\xe7\x14\x00\xf8\xe0\x07\x3f\xf8\x81\ +\x61\x7f\xeb\x07\x8b\x6c\xe0\x81\x0c\xd2\x7f\x48\x59\x96\x62\x9d\ +\x43\x49\x45\xbd\x5e\xe3\xc2\xa5\x8b\x7c\xee\xd9\xdf\xe5\xc1\xa3\ +\x6f\xe6\x91\x57\x9f\x43\x06\xd8\xb0\x5f\xfc\x5e\xef\x4f\x2a\x75\ +\x4d\x4a\xf9\x9e\x77\x7c\xdb\xf7\x7f\xfc\xcb\x39\xa7\x7f\xf5\xb3\ +\xff\xfe\xa9\x62\x76\xe9\xac\x2d\x72\x5c\x9a\xe1\x8a\x02\x67\x0a\ +\x5c\x9e\x7b\x82\x86\x92\xb4\xdb\x1d\x0e\xac\x2c\x73\xec\xd8\x31\ +\xb4\xaa\xec\xf4\x80\x08\x17\x8f\x08\x6f\xa5\xa8\x60\xfe\x01\xb2\ +\x5f\xfd\x19\xae\xff\xfc\x3f\x9b\x30\xcd\x94\xf8\xe6\xde\xa1\x07\ +\x0e\x40\xbd\x16\x02\x9a\x40\x2f\xce\x79\xed\x84\xc0\x50\x04\x88\ +\x57\x16\x18\xe3\x94\xc4\x44\xc3\x13\x49\xf9\xff\x91\x6b\xac\x6f\ +\x84\xfa\xef\x76\x64\x13\x1e\x56\xad\x4c\x36\x91\x59\x1f\x51\x0c\ +\x50\xd9\x26\x14\x03\x5c\x91\xb2\xd9\x67\x52\xe1\xc6\x54\x02\x40\ +\x75\x03\x36\xec\xb1\xb1\xb2\xa3\x0c\x80\x4a\x03\x71\x34\xf2\xcb\ +\x2b\xa3\xd2\xa8\x82\x6d\xc8\xc6\xe5\xcd\x48\xf2\xdb\xe6\x41\x2c\ +\x23\xac\xca\x99\x45\xb8\xe7\x6d\xc1\x41\x65\xbf\x2b\xb6\x72\xc5\ +\x8f\x35\x19\xc7\xdc\x6a\x57\x9a\xbd\x86\xd1\x1d\x23\x98\xec\xa8\ +\x46\xab\xd8\xfe\xda\xb1\x9d\x96\x0d\x39\x9e\x07\xf0\xd8\x4a\x15\ +\x51\x01\xff\x18\x3b\x36\xf5\x50\x22\x34\x50\x1d\xce\xb8\xb1\xa5\ +\x9c\x13\x25\x96\x02\x67\x03\xab\xd3\x4b\x13\x5b\xe3\x5f\xcf\xe6\ +\xae\xe4\x7d\x58\x07\x36\x29\xb8\xf2\x05\x9f\x01\x8c\x30\x1e\xa3\ +\xa5\x6b\x5d\x10\x0d\x01\xbe\xee\x5f\x3d\x86\x5a\x39\xcd\xb3\x17\ +\x2e\xec\x09\xd0\xb6\xa2\x04\x53\xb9\xf9\xc4\x6b\xcf\x9d\xbb\xfc\ +\x4a\x67\x00\x00\x3f\x5b\xab\x77\x7e\xd0\x16\x69\x48\x5d\x65\x79\ +\x01\x67\x59\xee\x4d\x32\xac\xe1\xf8\xd1\xe3\x2c\xce\x7d\x0f\x07\ +\x0e\x2e\x79\x1d\x7f\x2b\xbc\xcd\x57\x68\xf6\x09\x21\x3f\x2a\x85\ +\xf8\xa1\x77\x7c\xdb\xf7\x6f\x7e\xb9\x27\x14\x65\xe9\xdf\x48\x4d\ +\xf1\x51\x29\x25\x4e\x79\x20\xbc\x70\x12\xa7\xbc\x77\x93\x0d\xd6\ +\x65\xc3\x7e\x9f\x24\x4d\xa9\xd7\xeb\x1e\xff\x5d\xfa\xcd\x8f\x8d\ +\xef\x05\x7b\x3d\xb6\xe3\xb7\xbd\x9b\xf9\x5f\xf8\xe7\x6c\x66\x6e\ +\xc2\x8e\x1b\x0b\xbd\xe7\x6f\x31\xf7\x4d\xaf\x43\x34\x1a\xa5\x49\ +\x48\x39\xcd\x18\xd1\x94\x43\xbd\xe9\x6f\x73\xa5\x90\x88\xce\x37\ +\xc3\xae\x0e\xa2\xe8\x23\x5d\x86\xb0\x05\x2a\xf7\x99\x9e\xcc\x76\ +\x7c\x70\xb5\xd0\x4b\x28\x1f\xbb\x5f\xe8\x17\x15\x83\x8f\x89\x1d\ +\x45\xb2\x57\xf9\x47\x54\xdc\x6d\xcd\x58\xe7\xae\x44\xae\x99\xb1\ +\x68\x47\x69\xf2\x19\x14\x6f\x4a\xec\x42\x34\x06\x10\x95\xe5\x00\ +\x15\x85\x1f\x03\x5b\x6b\xd0\xf9\xe3\x84\xf9\xd7\xb6\xf7\x9a\x60\ +\x4e\xb0\x0f\xa5\x07\xe3\x57\x05\x17\x42\x84\x75\xce\x86\x96\xc0\ +\x28\xf2\xca\xd2\x92\xc9\x15\xe1\x7d\x0d\x0c\x9e\x32\x4b\x09\x8d\ +\x11\xaf\x62\xad\xc6\xba\x02\xd6\x86\x97\x09\x94\x4c\x19\x5a\x6d\ +\xb9\x0b\xb2\x65\x02\x2b\x7c\xc9\x61\x72\xfc\x7e\x3f\x12\x47\x41\ +\xf9\x94\x5f\x0a\x1f\x54\x6c\xa0\x95\x4b\x89\xb3\x0e\x2b\x9c\xc7\ +\x45\xf4\x8c\xf7\x1f\x88\xc7\x44\xaf\x72\xa2\x12\x4a\xae\x47\xde\ +\xfb\x2f\x69\x1f\x3f\xc7\xf3\x17\x2f\xee\x69\x03\xd8\x0a\x1c\xd8\ +\xbd\x0c\x34\xa0\xf8\x73\x0c\x00\x7c\xf0\x83\x1f\x7c\x2c\x1d\x6c\ +\x9d\xc7\x19\x54\xd8\xc1\x00\xb2\x3c\x0b\x8d\x3d\x85\xd6\x8a\x28\ +\x8a\x46\xcd\x3a\xa4\x92\xa3\x91\xe1\x50\x4a\xf9\x3f\x7f\xdb\x3b\ +\x7f\xe8\xa7\xfe\x2c\xcf\xe9\x9f\xfc\xcc\xcf\x5d\x51\x73\xf3\x47\ +\x5d\x96\x61\xf3\x1c\x8a\x22\x64\x02\x06\x67\x2c\x5a\x4b\x66\x67\ +\x66\x38\x7c\xf8\x20\x2b\x2b\x87\x50\x62\x72\x5c\x4d\x10\x3d\xdd\ +\xa3\xa3\x31\xc2\x6e\xff\xc2\x3f\xe7\xe6\x7f\xfe\x99\x09\xb3\x91\ +\x91\xce\x48\xab\x09\x87\x5f\xd7\x40\xd6\xb5\xbf\x6e\x8b\x6e\x29\ +\x05\x3e\x9a\x90\xec\x0e\x2b\xaf\x57\x95\x0a\x67\x2c\x42\x3a\xea\ +\x1b\x4c\xdf\x36\xba\x1a\x64\xc5\xb6\xdc\x55\x95\x8b\xf6\x31\x34\ +\x95\xd5\x39\xb4\xa9\xa4\x96\xaa\xb2\xeb\x16\x95\x54\xb5\x42\x1a\ +\x22\xab\x80\x9d\xa2\x71\x60\xb1\x41\x04\xd4\x5a\x8f\x8e\x2b\x01\ +\x48\xbd\xf1\xef\x8a\xd6\x38\x03\xc8\x77\xfd\x73\x3c\xf8\xf6\x16\ +\xb5\x83\xf1\x6d\xe6\xad\x95\x4b\xd7\x9a\x31\x2e\xa3\x92\x35\xb8\ +\xc2\x56\x6c\xd4\xe4\xb8\x72\x28\xc6\x64\x06\x1b\x22\xb3\x03\xa4\ +\x35\x63\xf2\x96\x96\xe3\xe6\x6f\x61\x26\xcb\x81\xd1\xcb\xa6\x66\ +\x0c\xda\x09\x23\x6d\xff\xf7\x5a\x9c\x71\x41\xf0\x54\x05\xfa\xb6\ +\x83\xdc\x86\x92\xc9\xf9\xf2\x61\x34\x7e\x2d\x2c\xe9\xd5\x01\x37\ +\x9f\x03\x3a\x63\xd9\x35\x17\xda\xd9\x73\x11\x9c\xfd\xef\xff\x1d\ +\x07\xff\xc2\x5f\xe5\xca\xb5\xeb\x6c\x6d\x6f\xef\x99\x1c\xbd\x80\ +\x61\xf8\x23\x8f\x9e\x3f\xf7\xf9\x57\x72\x0c\x58\x3d\x7e\x2a\xaa\ +\x35\x4b\x2a\xae\x52\x0a\x3d\xc2\x05\x84\x99\xbc\x10\xc2\x4b\x77\ +\x0b\x51\x02\x7b\x10\xe2\x09\x21\xe4\xa3\x7f\xd6\x8b\x1f\x20\x2e\ +\xb2\x9f\x10\x42\x04\x68\xf0\x48\x23\x40\x95\xd0\x60\x67\x2d\x49\ +\x92\xb2\xb3\xdb\xc5\x99\x62\xcc\x71\x67\x6c\x1d\x3e\x86\x06\xef\ +\xc3\x87\xf8\x96\x1f\xa6\x29\x27\x41\x6e\xa3\xba\x79\x30\x80\x8b\ +\x9f\x19\xb2\xbe\xd6\x65\x63\xb7\xcb\xe6\x10\x36\x53\xd8\x4a\x60\ +\x63\xe8\x51\xb2\xb6\x8a\xd8\x63\x0a\xa0\xe3\xa6\x6e\xab\x76\xec\ +\xdd\x94\x6b\x6d\x25\x45\x2c\xef\x1f\xed\xda\x15\xcc\x89\x61\x92\ +\x20\x64\xa6\xe0\xc1\xc6\x4d\x72\x08\x5c\xa5\xfb\x62\x2b\x00\xa5\ +\x11\x94\xd8\x84\x8c\xc1\x4c\x79\x00\x8e\x78\xfc\xe5\x74\x63\xa4\ +\x9b\x5f\x8c\xa7\x23\xd7\x3f\xdd\x0f\xac\x43\xe9\x67\xee\x56\x78\ +\x4c\x7d\xc1\xb8\xeb\x6e\xc0\x1a\x89\x33\x22\x7c\xf9\x7e\x80\xb3\ +\xa3\x0e\xbd\x1f\xed\x15\x46\x50\x84\xe7\x71\x61\xf1\x99\xd0\xe5\ +\x74\x22\xfc\xdf\x4a\x4c\x40\xf4\xd9\x42\x62\x8d\xf2\xaf\x6d\x25\ +\xb6\x10\xbe\x81\x17\x50\x80\x9e\xea\x2b\xc3\xe7\x1a\x5c\xac\x85\ +\xf2\xe7\xe0\x7c\xb7\x1f\xe7\xcf\xcf\x8c\xce\x65\xf4\x3a\x26\x3c\ +\x87\x53\x7e\x02\x20\x24\xc9\x30\xf4\x42\xf2\x71\x46\x55\x53\xf0\ +\xe0\xdb\xde\xc3\xeb\x7f\xfa\x1a\x07\xde\xf2\x57\xb8\x72\xf5\xea\ +\x6d\x17\xff\xfe\xd7\x9f\x04\x64\xfb\x95\xc6\x01\x4c\x4c\x03\xa4\ +\xaa\xf5\xa4\xd6\x1e\x13\x10\xac\xbb\xe3\x28\x22\x8e\x62\x54\x69\ +\xe0\x29\x43\x1a\x2c\x11\x42\xfc\x94\x14\xe2\xd1\x6f\xff\xee\x1f\ +\x7a\xe2\x2b\x71\x42\x1d\x2d\x7f\x3e\xd9\xd9\xd9\x16\x42\x96\x80\ +\x20\x9f\x5b\x8f\x6b\xe9\xbc\xc8\x49\x87\x29\xbb\xdd\x1d\x2c\x16\ +\x87\xad\x80\x82\xf6\x62\x31\x1d\xe3\xfb\x44\x7b\x86\x99\x6f\xf8\ +\xae\xc9\x51\x6d\x00\xbd\x39\xe1\x29\xac\x3b\x4f\x8c\xb9\xe8\x25\ +\xcb\x50\x4c\x11\x42\x98\x5c\xe4\x55\xa3\xc9\x89\xb9\xbc\x9b\x62\ +\xfe\x55\xd9\x86\x23\x08\xef\x68\x31\x57\x66\xf6\xe5\x68\x6f\x04\ +\xd3\xb5\x15\x94\xa0\xac\xd0\x82\x47\x2e\x3a\x32\x34\xf3\x8c\xc7\ +\xbb\xdb\x2c\x64\x03\x23\x27\xe0\xcc\xd7\xf5\x04\x8a\xab\xab\x05\ +\x9e\x40\xe0\x02\x98\x11\xd6\xbd\xe1\xef\x33\x09\x64\x5d\x2f\xcc\ +\x49\x0d\x64\xc7\x07\xc1\xcd\x3f\xc9\x3c\x5e\xc0\x48\xff\x25\x14\ +\xc6\xa9\x12\x39\x67\xac\xf0\xff\x9f\xbe\xdd\x80\x11\x8a\x02\x4d\ +\x61\x55\xe8\xa4\xdb\x60\x08\xa2\x30\x2a\xc6\x09\x85\x2d\x1c\x36\ +\x0b\x3b\xb6\xd0\xb8\x28\xc6\x08\xed\x3b\xfa\x79\x81\x33\x16\x2b\ +\x35\x26\x1a\x3f\xde\xe5\x06\x6b\x1d\xc6\x4a\xac\x8e\x31\x28\xac\ +\x71\xb8\xb4\xf0\xf7\x2b\x0d\xb5\x18\xab\xbc\xff\x97\xcc\xad\x77\ +\x74\x76\x0a\x2b\xb5\x2f\x2f\x0a\xe7\x33\x8b\xc2\x8f\x01\x0b\x09\ +\x34\x3c\x65\x78\xd1\x49\x1e\xfa\xe6\x1f\xe3\xad\x1f\xb8\xc9\x99\ +\xf7\x7d\x90\x34\xea\xf0\xf4\xf3\xcf\xb1\xb5\xbb\x53\x2e\x75\xe7\ +\x82\xb2\x75\xe9\x13\xb4\x5f\x08\xb0\x80\x6d\xdc\x31\x25\x40\x28\ +\x03\xfe\xb5\xb3\xe9\xfb\xa4\x4b\xc6\x40\x1e\xe9\xc1\x37\x79\xe6\ +\x0d\xe1\x82\x70\xc8\xa6\x52\xea\x87\xde\xf9\xae\xf7\x7e\xf4\x2b\ +\x7d\x4e\xef\xff\x37\xff\xee\x27\x1a\x87\x8e\xfc\x03\x97\x65\xd8\ +\x22\xc7\xe5\x39\x18\x13\x4a\x01\x8b\x52\x82\x56\xb3\xc5\xd2\xca\ +\x02\x27\x8e\x9f\xf0\xc1\xa9\x84\xa2\x88\xd0\xf7\x75\x7b\xa9\x2b\ +\xa1\xeb\x6d\xd7\xaf\x72\xf9\x7d\x6f\x1b\x97\xd4\x21\x9d\x96\x15\ +\x4c\x7f\x54\x83\xb9\xf3\xa0\xe2\x10\x7f\x42\xf3\x4f\x32\xfe\xb9\ +\x6c\x22\x56\x04\x3a\x27\x4a\x82\xf0\xc2\x72\x4a\xb8\xb2\xfa\xf8\ +\x51\xaa\x5f\x35\x15\xb1\x62\x62\x38\x30\x56\x28\xaa\xaa\x03\x57\ +\x64\xce\xa8\xe0\x00\x1a\x12\x5a\x8d\x30\xca\x1a\x79\x56\x38\x81\ +\x73\x75\x68\x7a\x7a\xb4\xd0\x60\x76\xd7\x10\xc6\x7a\xe5\xdd\x70\ +\x7e\xdb\xa9\x21\x1d\x65\x08\xbd\x71\x76\xa0\x66\x2b\x78\xf8\x3e\ +\xbc\xea\x1d\x73\x44\x33\x6a\xd2\xbf\x6c\x02\x2f\x20\xc7\x69\x7e\ +\x91\x8f\xeb\x63\x1d\x8d\x27\x85\x79\x3e\x6e\x9a\x45\x7a\xfc\x77\ +\x16\xf9\x18\xef\xaf\x63\x9c\x73\xbe\x0c\xca\xf3\x30\x0e\x04\x17\ +\x45\xa1\xf7\xe1\x10\x85\xe7\x87\x78\xea\x6e\xe4\xc7\x80\x80\x4b\ +\xb2\x31\x78\x4a\xe9\xf1\x64\x24\xcb\x7d\x90\xb4\xfe\x7c\xac\xf3\ +\x7d\x03\x7f\x6d\x8d\x40\x65\x8a\x5b\x8f\x6f\x73\xf0\xe8\x7d\x1c\ +\x7a\xd3\x8f\xb2\xf2\x75\x3f\x88\xac\xb7\xd9\xdd\xdd\x65\x7d\x63\ +\x83\xde\x60\x38\x91\xde\xef\xdf\xec\xbb\xed\x52\xfe\xe6\x47\xcf\ +\x9f\xfb\xd5\x3b\xa1\x09\x58\x36\xdf\x85\x8c\xff\xba\xb4\x85\x92\ +\xc2\x21\xa4\x46\x48\x88\x84\x42\x08\x81\x29\x0a\x84\xe0\xe3\x52\ +\xc8\xf7\xbc\xf3\x5d\xef\xbd\xf6\xe7\x71\x42\x62\xd0\xfd\xc7\x79\ +\x32\xf8\x5f\x75\x5c\xab\x09\x6b\x71\x2a\x5c\x7d\x81\x77\x6d\xad\ +\x23\x2f\x72\x86\xdd\x21\xbd\xfe\x90\x56\xab\x89\xaa\xb8\x84\x08\ +\x87\xc7\x12\xb8\x49\x86\xc0\x48\x91\x57\x2e\x1d\x61\xf1\x6b\xde\ +\xca\xcd\x3f\xf8\xed\x09\xeb\xef\x72\x87\x75\x90\x27\xb0\xfd\x45\ +\x98\x3b\xe7\x21\x9f\x92\xca\xc8\xd0\x8e\x17\x79\x39\x42\xac\x1a\ +\x85\x8c\x18\xb2\xc1\x54\xd2\x30\x29\x11\x5e\xea\xcb\xbb\x0a\x01\ +\x6e\x5a\x47\x5e\x4c\xea\x0b\x88\x4a\x87\x39\x8e\xa0\x7d\xec\x30\ +\xb6\xbd\x82\x6b\xcd\x7a\xa3\x82\xce\x72\x59\x3f\x17\x2f\xb0\xb3\ +\x8c\xbe\xab\xf0\x64\xd5\x99\xd4\xc1\x12\x6c\xe0\xb0\x3b\x1b\xb8\ +\xbc\xa0\xd8\x5a\xc7\xa6\x3d\x4c\x6f\x9b\x74\xed\x16\x37\xbb\xb0\ +\xfa\xa9\x6d\x0e\x7d\xe3\x4a\x45\x56\xc9\x55\x9a\x12\x95\x28\xe7\ +\x57\x7d\xf9\x07\x38\x3b\xc6\x01\x88\x60\x20\xe0\x08\xe5\x82\x12\ +\xb8\x62\x7c\x3b\xe5\xe8\x4f\x52\x18\x8b\x33\xbe\x49\x27\x85\xc3\ +\x16\x2e\x8c\xaa\x9d\x07\x03\xd9\xb1\xf7\x9b\xf5\xf3\xc0\x52\x33\ +\xd2\x21\x82\xfe\xbf\xc0\x1a\xeb\x91\x81\xe1\x42\xb0\x61\xe4\x67\ +\x43\xd4\xb7\xd6\x21\xe2\x19\x16\xef\xfb\x76\xee\xfb\xf6\x77\x33\ +\x73\xef\x1b\x28\x8a\x82\xf5\xcd\x4d\x36\x2f\x5d\x27\xcb\x8b\xbd\ +\x9d\x7e\x28\xfd\x2a\xf7\xdb\xc7\xdd\xde\x40\x10\xdf\x51\x19\x40\ +\xc8\x02\x7e\x59\x92\x7d\x6b\x24\x4d\xd9\xf1\x96\x4a\x21\xc0\xe4\ +\x79\xf6\x0f\x8c\x15\xef\xff\xde\xf7\xfc\x15\xf3\xe7\x79\x4e\xff\ +\xf0\xa7\xfe\xcf\x7f\xdb\x5a\x39\xf0\x23\x2e\xcb\x7c\xea\x17\x46\ +\x82\x98\x22\x34\x03\x15\xad\x56\x9b\xe5\xa5\x25\x8e\x1c\x3b\x32\ +\xaa\x12\xf6\x6f\x06\x0a\xb1\x87\xcb\x62\x2e\x3f\xcd\xc5\xbf\xf5\ +\xed\x65\x13\xb0\x9a\x2e\x88\xca\xa6\xa6\x6b\xb0\x70\xde\xdb\x83\ +\x89\x51\xa7\xff\x36\x3b\xfd\xb4\x3d\x58\xd5\x47\xb0\x3a\x2e\x93\ +\x15\x43\x91\xca\x90\xa2\xfc\xdd\x69\x94\xa3\x93\x15\xbf\xc0\x51\ +\x9c\x91\x30\xbf\xd4\xc2\xae\xdc\x87\x3d\x74\x3f\x4e\xd7\xc6\x99\ +\x82\xcb\xc0\x8e\x01\x98\xe5\xc4\xc1\x15\x08\x3b\x28\x83\xa1\x53\ +\xed\x09\x70\x8f\x10\x0e\x4b\x0b\x17\xe0\xb5\x93\x91\x33\x34\xb5\ +\xf2\x82\x7c\xe3\x06\x8d\xe6\x05\xb4\x4a\x27\x8a\x57\x87\xf4\x1d\ +\x77\x3b\x4e\x6b\x9c\x14\x25\x0e\x40\x5a\x5b\xba\xa8\x08\x2d\x31\ +\xd6\xb7\xd7\x45\x98\xbd\xf9\x32\xdd\xfb\x44\x60\x1c\x76\xa4\x0b\ +\x6e\x43\xb3\x4f\x28\x84\x31\x58\x63\x3c\x30\x48\xf8\x74\xc6\x06\ +\x17\x69\x67\x8a\xb2\x07\x52\xc2\x7a\x0b\x8b\x33\xbe\x44\x00\xe1\ +\xcb\x0a\xf0\xa9\x7e\x78\x1e\x67\xa1\x79\xec\x6b\x99\xbf\xff\x7b\ +\x99\x3b\xfd\x2d\x88\xa8\x4d\xb7\xd7\x63\x7b\x67\xc7\xf3\x4f\xec\ +\x98\xad\x38\x0d\x17\xb7\x13\x73\x7e\x39\x3d\x78\xda\x0f\x0d\xf8\ +\xd6\xaf\x7e\xe8\xdc\x7f\xbd\x93\x32\x00\x80\xf7\x3b\xa2\x6f\x15\ +\xd2\x06\xf6\x9e\x40\x08\x71\x41\x0a\xf1\x9e\x77\xbe\xeb\xbd\x9f\ +\x7a\x25\x4e\x28\xeb\x0f\x7e\xbc\x9e\x17\xef\x95\x4a\x6b\xac\x45\ +\x04\x7d\xac\x11\xa2\xcc\x18\x43\x9a\xa5\x74\xfb\x5e\x33\xb0\x5e\ +\x8b\x26\xc2\xa7\x1f\x0b\x8a\x09\xf1\xbd\x12\x8e\x0e\xa8\xe3\xa7\ +\x39\xf0\xaa\xd7\x70\x2b\x58\x89\x89\x7d\x9a\xd9\x0e\x28\x52\xd8\ +\x78\x0c\xe6\xcf\xfb\x8d\xb6\x1c\xc7\x8b\xbd\xe2\x38\x54\xe0\xee\ +\x65\x87\x7f\x74\xbf\xad\x34\xf9\xc5\x18\x29\x3b\x1d\xfe\xab\x95\ +\xe3\xc8\x14\x64\x0f\xc2\x2c\x20\xf7\x56\x6f\xf5\x71\xb7\x3e\x8f\ +\x78\xfc\xf3\x2c\x1e\x8a\x90\x47\x67\xa0\x11\x4d\x2c\x7c\x6b\x6f\ +\x0f\xd8\x13\xfb\xdc\x31\xc1\x1c\x16\x6d\x10\x12\x27\x9b\x38\x51\ +\x07\xd9\xc4\xaa\x45\xa2\x95\x93\x18\x33\x87\x4c\xff\xa0\x1c\xb9\ +\x3a\x37\x9a\xd9\x4b\x44\xa9\xa2\xe1\x4a\x9a\xae\x60\x6c\x9a\xe9\ +\xeb\x65\x55\x3a\xb1\x08\x5b\x94\x72\xdd\xa2\xa6\x7c\x9a\x2f\x09\ +\x12\x42\x21\x9c\x2b\x15\xe8\x05\x23\xd7\x13\x4f\xfe\x71\x91\x1c\ +\x03\x75\x02\x24\x18\xe7\xb0\xc1\x6b\xc2\x49\x85\xcd\x8d\xa7\x96\ +\x97\xae\xc3\x3e\xd2\x46\x33\xa7\x59\xb8\xff\x7b\x98\x7b\xf0\xdd\ +\xe8\xe6\x41\x7a\xfd\x3e\xd7\xd6\xb6\xd9\xe9\x5e\xc5\x5a\xbb\x77\ +\x14\xeb\xb8\x4d\xb7\x7f\x8c\x86\x72\x42\xdc\x16\x0e\x1c\xae\x87\ +\x9d\x3b\x2e\x03\x08\x59\xc0\x6f\xd7\x54\xf1\xf5\x91\x76\x48\x29\ +\xff\xa3\xb1\xf2\x2f\x7f\xc7\x77\xff\xc0\x0e\xaf\xe0\xf1\x0f\x7f\ +\xfa\x03\x1f\x6e\x2d\x2e\x7e\x8f\x4b\x33\x28\x72\x1f\xb1\x03\x28\ +\x08\x6b\xd1\x91\xa6\xdd\x6a\x71\xe0\xe0\x01\x56\x0e\xae\xa0\xd8\ +\x47\x4a\xbf\x04\x07\x89\x89\x91\xa0\x04\xf2\x27\x3f\xcd\xa5\x7f\ +\xf8\x43\xe5\x78\x4c\x88\x4a\xaa\xee\x98\x30\x17\x55\x11\xcc\xbd\ +\x0a\xea\x33\x61\xf1\x4f\xef\xf4\xd5\x0c\x64\xaa\x27\x50\x96\xc5\ +\xb6\x72\x9f\x9b\x1c\x05\x8e\x36\x90\xd2\x72\xab\x32\x16\x74\x4c\ +\xfe\x4e\x55\x5e\x7c\x04\x09\x1e\x05\x95\xd9\x25\xa8\x9f\x9c\x47\ +\xb4\xea\xb7\x45\xeb\xbe\xf4\x23\xec\xd0\xd5\x21\xb7\xf0\x2e\x1a\ +\x46\xcc\x20\xed\xb6\xef\x36\x56\xa9\x92\x54\x74\xd8\x01\x27\xf5\ +\x68\xf9\x83\x2d\xc6\xe5\xce\x48\x57\xdd\x39\x9c\xc9\x2a\xc8\x45\ +\x2f\x50\x83\x75\x38\x93\x97\x88\x42\x13\xc6\x7d\x22\xd4\xf1\x65\ +\x2c\x94\xca\xcf\xf6\xad\x81\xdc\x67\x0c\x9e\x76\x1d\xf9\xe7\x2b\ +\x1c\xae\xc8\xbd\x36\x80\x01\xe2\x39\xe6\x1f\xf8\x7e\x66\xee\xfd\ +\x36\x1a\xcb\x0f\xd1\xef\xf7\xd9\xde\xd9\xa1\xdb\xeb\x52\x58\xbb\ +\x67\x9e\xef\xf6\x79\xdf\xec\x7e\x90\x5f\x21\x6e\xfb\xfe\x4e\x05\ +\xf0\xc5\xaf\x79\xe8\xdc\xe6\x9d\x96\x01\x00\xfc\x9d\xdc\xc9\x1f\ +\xd6\xb8\x4f\x7d\xeb\x77\xfd\xb7\x3f\xc7\x1d\x70\x14\xc3\xc1\xfb\ +\xac\x9d\x7f\xa7\x54\x52\xba\x20\xe6\x26\xe4\x78\x84\x63\x8c\x21\ +\xcb\x72\xba\x5b\x3b\x2c\x2e\x2e\x22\xf5\x24\x3b\xc0\xcf\xf7\xc7\ +\x76\xba\x62\x94\x9b\x05\x52\x8c\xbe\xff\xab\x58\x3c\x76\x8a\xf5\ +\x4b\xcf\x97\xb8\x79\x69\x26\x3f\x44\x19\x08\x3e\x79\x06\x1b\x5f\ +\x80\x85\x73\xde\x05\xdc\x84\xc5\x2a\x47\x4f\x5f\x11\xa1\x14\x76\ +\x32\x03\x18\x9d\x4b\xe9\x4b\xe8\xf6\x06\x02\x57\xc9\x12\x46\x9d\ +\x7e\x61\x27\xfb\x6b\x4e\x8d\x7d\x08\x5d\x95\xa7\x33\xf2\x03\x10\ +\x1e\xb4\xe3\x6e\x6d\x31\xb7\x0c\xb5\x53\x8b\xc8\xdb\x04\x82\x17\ +\xb8\x40\xa7\xc2\xc5\x94\xec\xae\x0b\xc6\x03\x6c\xf8\x9e\x83\x88\ +\xc6\x62\x02\xa3\x88\x39\x5a\xdc\x38\xc8\xcc\x18\xb8\xa4\xa2\xf1\ +\xf3\xe4\xc6\x63\xf9\x11\xa0\xbc\x09\xac\xb0\xae\xc4\x7b\x38\xc0\ +\xaa\xc8\x0b\xc4\x08\x0b\x59\x11\x32\x0a\xe1\x9b\x7d\xc1\x94\xd0\ +\xe5\x9e\xaf\xed\x67\xfc\x11\x16\x89\x10\x06\x97\xe6\x63\x6c\xbf\ +\x8a\xfd\x35\x13\xc5\x1c\x7d\xfb\xcf\x53\x5f\x7e\x84\x8d\xcd\x4d\ +\x2e\x7d\xe9\x4b\xbe\x9c\xa8\xfc\x85\xd6\xdd\x7e\xe1\xbb\x3d\xc1\ +\x61\xff\xdd\x7e\x5a\x7b\xb1\x72\x5c\x78\xfd\xc3\xe7\x36\xef\xc8\ +\x0c\xe0\x4e\x3d\xfe\xd1\xcf\xfc\x5f\xbf\xd1\x9c\x9b\xfb\x46\x97\ +\xe5\x13\x59\x00\xd6\xe2\xac\x21\x8e\x6b\xcc\xb4\x5b\x1c\x3c\x7c\ +\x84\xb9\xf9\x39\x94\xac\xd0\xcf\xcb\xd2\xcd\xee\x01\x06\x8d\xd2\ +\xf8\xec\xb3\xbf\xc5\xa5\x7f\xf1\x63\x63\x93\xcf\xca\x07\x36\x72\ +\xa7\x15\x61\x6e\xee\xbc\x5a\x3a\x73\x0f\x42\x73\xb9\x02\xe8\xa9\ +\x78\x0c\x22\x6f\xd3\x0b\xd8\x07\x33\x73\xbb\x0f\x5b\x54\xd0\x7c\ +\x23\xd2\xd1\x34\xec\xd7\x15\x95\xc5\x5b\x75\x0b\x2e\x02\xcf\x26\ +\xf4\xe5\x96\x0f\x41\x74\xcf\x41\xa8\xed\xdd\x5b\xac\xdd\x07\x91\ +\x58\xb9\x8c\xc7\x44\x3e\x39\xb6\x22\xb3\xb6\xb4\x64\xf3\xbb\xfb\ +\xe8\xf6\xb1\xca\xaf\x47\x6e\x86\xf0\x61\xc6\x2d\x49\xab\x2a\x8f\ +\x2f\xf2\xd2\xaf\xcf\x05\x59\x6d\xe7\x24\xe4\x89\x7f\x5f\x2c\x58\ +\x5d\xf7\x86\xb0\x80\xcb\x12\xdf\xf5\x17\x0e\xab\x1a\x25\xce\xde\ +\x05\x25\x15\xe7\x1c\x56\xd6\xc7\x92\x04\x59\x16\xc6\xa8\x0e\xab\ +\x6b\x38\x0b\x8b\x8f\xfe\x04\xb3\x67\xdf\xc3\xcd\xd5\x55\x86\x83\ +\xc1\x64\x2d\xbf\x4f\x8a\xef\xf6\x2c\x7c\x19\xc6\x7c\x62\x4f\x9d\ +\xbf\x5f\x0c\x1d\x95\x5f\x62\xbc\x23\xbd\xff\xf5\xaf\x3e\xff\x77\ +\x5f\xe8\x7a\xd7\x77\x97\xfc\xd4\x9b\x58\xe4\x3f\xe2\xac\x7d\x06\ +\x21\x44\x69\x0f\xae\xa4\xb7\x5a\x12\x12\x53\x18\xd2\x2c\x67\x67\ +\x7b\x83\xd9\xb9\x19\xac\x93\x7b\x1a\x72\xbe\x2e\x9d\x0c\x02\xa3\ +\x51\x9b\x7e\xed\x37\xb0\x78\xe8\x18\x1b\x37\xae\x4c\x74\xe2\x99\ +\xde\x0d\x2a\xb6\xd5\x9b\x4f\xf9\xd9\xf9\xcc\xb1\x71\xa2\x3c\x42\ +\xf4\x55\xd5\x7d\xa7\x7b\x01\x13\xb5\xf6\x94\x62\x4c\x39\x15\x08\ +\xe8\x9f\xd1\xef\x55\xd3\x4d\x57\x6d\x04\xba\xc9\x5d\xa6\x34\xaf\ +\xa8\x4e\x34\x80\x9b\xd7\x41\xde\xb8\xc9\xf2\x89\x1a\xea\xe8\x32\ +\xd3\x14\x4a\xe3\x6e\xb3\x5b\x4d\x8f\x4f\x46\x3a\x65\x82\xb2\x2e\ +\xc7\xba\x90\x91\x85\xc6\x5e\xe8\xef\x8f\x81\x0c\xbe\x4b\x5f\x06\ +\x8c\x20\xd4\xe1\xa3\x29\x25\xa9\xc6\xdb\x86\x85\xcf\xd4\x88\x71\ +\xf0\x71\x5e\x03\x30\x80\x05\xfc\x90\xcd\x4a\x9c\x74\x7e\x8c\x67\ +\xc3\xd4\xa0\x30\x1e\xf4\x23\x9c\x67\x8f\x9a\xd1\xeb\xf9\x29\x82\ +\x73\x0e\xd1\x58\x21\x3e\xfe\x1d\x6c\x6d\x6f\x33\x08\x8b\xdf\x56\ +\xdf\x57\xb1\x77\xd7\x1f\xdb\xae\xf9\x13\x75\xe1\xc3\xbd\xed\x6e\ +\x3f\xb5\xf0\xab\xcd\x55\x60\x53\xc0\xbf\x78\xb1\xeb\x5d\xdd\x5d\ +\xf2\x93\xc7\xef\xfc\xca\x47\xb7\xde\xf2\x4d\xef\xf8\x96\xa8\xd1\ +\x38\x3c\xa2\x77\x0a\x67\xf7\xf0\xcc\xa5\xd4\x34\x9b\x4d\xa2\x38\ +\xda\xd3\xf9\x1f\x35\xaa\xa6\x1b\x5f\xe5\x2c\x7f\x66\x81\x9d\x4f\ +\x7d\xac\x5c\xc4\x52\x56\x16\x7d\xc0\x14\x09\x39\xde\x99\xad\x85\ +\xe1\xa6\x47\x89\xd5\xe7\xd9\xe3\x49\x37\x5a\x27\x55\xff\x41\xaa\ +\xd0\x10\xc9\x04\x1b\x71\x54\x7e\xb8\x49\x34\xed\x1e\x09\xf0\xaa\ +\xaf\xc1\xc8\x33\xa0\x14\xf6\x08\xbc\xfe\x91\x4a\xd0\x48\x01\xd7\ +\xf9\xd2\x9b\xee\xb6\x21\x5b\xdd\xa5\xd6\x10\x50\xab\x97\xc2\x99\ +\xd5\xaf\x49\x27\x55\x59\x91\x22\xaa\xae\x16\x1d\xde\x88\x80\xe3\ +\xb7\xae\xac\xe9\x9d\xd4\x38\xa7\xb0\x85\x0d\x7d\x1a\x70\xd2\xa7\ +\xeb\x16\xe5\x27\x39\x85\xef\xc8\x5b\x19\x87\xfb\x24\x2e\x38\x86\ +\xd8\xc2\xe1\x74\x84\x11\x11\x48\x85\xcd\xbc\x54\x93\xb3\x0e\xa3\ +\x22\xac\x8c\x31\x56\xe2\x8a\x1c\x57\x78\xc1\x3e\xa3\x22\xac\x8e\ +\x7c\xe0\x2f\x0a\x6c\x6a\x7c\x03\x4f\xc5\x38\xe5\xd9\x4d\x36\xcf\ +\x89\xe6\x5e\x4d\x74\xf8\xed\xf4\x06\x03\xcc\xa8\x64\x98\x1e\xb9\ +\xee\xd9\xf5\x7d\x2e\xe9\x42\xfd\xe6\x5e\x24\xdd\xb7\x13\xef\xe3\ +\xc4\xd5\x37\x14\x82\xef\x7d\xe3\xab\xcf\x3f\xfe\x52\xba\x2e\x77\ +\x8f\xe9\x5e\x40\x9e\xff\xe8\xa8\x43\xa7\x84\xa8\x68\x06\xfa\x37\ +\xb8\xb0\x96\x2c\xcf\xd8\xd9\xda\xaa\x7c\x18\xae\xb4\x65\xf2\xe9\ +\x9a\xdc\x1f\x9e\xe9\x20\xfe\x9a\xff\x86\xe5\x03\x07\xc7\xa2\xb6\ +\x95\xe0\x30\xa1\xb1\xc7\x78\xce\xef\x80\xdd\x6b\xb0\xf6\xa4\x6f\ +\x56\x8f\x28\xb4\x55\x39\x70\x2b\xa6\x60\xc3\x54\xa0\xb9\x6e\x52\ +\x98\xb3\x94\x02\xab\x08\x92\x94\x70\x5d\x37\x69\x2c\x52\xa2\x10\ +\xed\x94\xbc\xf8\xd4\xf3\x56\x85\x43\x9d\x80\x41\x02\xd7\x1e\xdb\ +\x21\x79\xe2\x0a\x26\x77\x63\x58\x6d\xf5\x2b\x88\x73\x58\xab\x3c\ +\xb4\xd7\x8d\xbe\x8b\xca\x77\xb0\x22\xfc\xbf\xfc\x0a\xb0\x5e\x21\ +\xc6\xc2\x1c\x21\xfb\xb2\xa5\xe0\x87\xab\xd8\xb1\x79\x94\x60\x61\ +\x25\xc6\x78\x45\x1f\x0f\x6d\x56\x58\x27\x28\x82\xec\x97\x31\x12\ +\x9b\x3b\x6c\xd0\xec\xb3\x4a\x91\xe7\x8e\xc2\x08\x8c\x71\x58\xb4\ +\x57\xf3\x91\x8a\xa2\xf0\x9f\xb9\x2d\x5c\x89\x42\x2c\x90\x58\xe3\ +\xb0\xa2\x49\x96\x65\x93\x8b\xdf\xed\xaf\x7d\x6a\x83\xa8\xc8\x68\ +\xd7\xdf\xa3\x7a\x36\xf5\x58\x5b\x42\x8d\xa7\xe5\x51\x1c\xc0\xaf\ +\x03\x5f\xfb\xc6\x57\x9f\xff\xf5\x97\xda\x76\xbd\x7b\x4c\x1d\x7f\ +\xef\xaf\xfd\xf0\xa7\x06\xdb\xdb\x17\x85\xf2\x73\x65\x37\xd2\x0d\ +\x0c\xc5\xb7\xb3\x86\x2c\xcd\xd8\xe9\x76\xc9\x92\x6c\xdc\x8f\xb2\ +\x78\x5a\xa8\x71\x63\xc5\xce\x7d\xac\xb9\x70\x50\xff\xce\xf7\x4d\ +\xa0\xee\x46\x0b\x91\xca\xe2\x2b\x51\xc6\x95\x1d\x63\xb0\x01\xab\ +\x5f\x80\x2c\x99\x54\x8f\x19\x65\x0a\xce\x56\x54\x83\x2a\xb6\x5f\ +\xa3\xd3\xb1\x76\x52\x25\x68\x04\x0b\xae\xca\x96\x8f\x38\x02\x13\ +\x17\x60\xc5\x94\x64\x94\x10\x95\x0e\x47\x8c\x5d\x8e\x46\x32\x62\ +\x25\xcd\xd5\xc0\x8d\xab\x70\xe3\x13\x57\x49\xd7\x76\x28\x1c\x14\ +\x4e\x50\xb8\x10\x34\x4b\x09\x72\x9f\x66\x8f\x04\x4f\x4a\xb8\xb2\ +\xf1\xe7\xe9\x9d\xb3\x44\x78\x9f\x44\x79\x7b\x68\xcf\xf8\x00\x81\ +\xa0\x08\x74\x5d\x6b\xad\x5f\xc4\x41\xbc\xd3\x58\x13\x74\x0f\x5d\ +\x49\xe1\x35\x0e\xac\xb1\x41\xa5\xc7\x52\xa8\x19\xac\x73\x18\xe1\ +\x42\xc0\x02\x93\x59\x84\x73\x18\x63\xc3\xe3\x8b\xe0\xd2\x64\xfd\ +\xfb\x38\xfa\xbb\x0b\x13\x8c\x5e\xad\x3f\x8f\xc2\x90\x65\x99\x07\ +\xfd\x54\x07\x15\x6e\xca\xd0\x65\xb4\xeb\x07\xba\x72\xa9\x21\x39\ +\xf5\x35\x0a\x7c\xec\xa3\x32\x8d\x73\x6b\x38\xf7\xcf\x70\x9c\x7a\ +\xd3\xc3\xe7\xfe\xe2\x9b\x1e\x3e\xf7\xd9\x97\x7a\xad\xdf\xed\x01\ +\xdc\xe6\xc8\x93\xe4\x6f\x33\x37\xf7\x21\x8c\x37\x1a\x71\x62\x8c\ +\xc8\xf1\x78\x79\x83\xcd\x73\x76\xb6\x36\x59\x39\x74\x60\x4f\x7a\ +\x26\xca\x99\xb4\x2d\x01\x3d\x23\x51\x07\x80\xfa\x9b\xbe\x95\xa5\ +\x5f\xfc\xdf\x59\x5f\xdf\x9a\x48\xd5\x4b\x5a\xbb\xad\x88\x68\x08\ +\x2f\xf6\x39\xb2\xb3\x1e\xee\xc0\xb5\xcf\xc0\xca\x39\x68\xce\xf9\ +\x0b\x50\xba\x71\xaf\xa1\xda\xfd\x2f\x91\x82\xe3\x52\x75\x6c\xb2\ +\x53\xbd\x88\xe4\x14\x28\xa8\x6a\x30\xca\x24\xe9\xa7\xf4\x3f\x94\ +\x63\xf2\x4a\xd9\xe7\x88\xc2\xc5\x9e\x57\xb8\x09\x0a\x32\xe0\xda\ +\xe3\xdb\x2c\x2d\x6c\xd3\x7c\xf0\x18\x4e\x2b\xcc\x48\x66\x9b\x4a\ +\xb4\x13\x78\x5f\x31\x82\x80\xc9\xc8\xf5\x34\x8c\xe0\xbc\xb8\x47\ +\xb8\xdd\x04\xb1\x0d\xe9\xbb\xfd\xce\x5a\xdf\x1c\xa4\x00\x04\x46\ +\xf9\xd4\x1e\x6b\x70\x59\x8e\x70\x1e\x59\x67\x54\x0d\xf0\x22\x34\ +\x22\x4b\x81\xcc\xb7\x09\xe6\x1f\x02\xbd\x8a\x1b\xde\xc4\xa5\x99\ +\x17\xf9\x70\x02\x1b\xd7\x70\x4e\x61\xac\x81\x61\x86\x23\xc1\x39\ +\x85\x68\x1d\x84\x7c\x07\x6b\x0c\x22\xcf\x3d\xb2\x4f\x0a\xac\xf0\ +\xe5\x86\xce\xf3\x31\x3b\x44\xb0\xb7\x09\x18\xe4\x7e\x1c\x62\xcf\ +\xfd\xae\x92\xe6\x57\x6f\xa9\x68\xa1\x6e\x22\xf8\x08\xce\xfd\xc7\ +\x37\x3f\xf2\xd2\x76\xfb\xbb\x19\xc0\xcb\x38\x7e\xf2\x7d\x7f\xf5\ +\xc3\x83\x9d\xed\xad\x72\x05\x56\x58\x7f\xe0\x77\x80\xcc\xe4\x6c\ +\x6e\xed\x90\x17\x76\x7a\xc3\x0f\x32\x52\xe3\x7f\xa3\x1d\xb7\x18\ +\x11\x7a\xa4\xa4\xf1\x9d\xef\x9b\x20\xea\x4c\x80\x83\xaa\x57\x82\ +\x98\xf0\xb0\xf0\xf5\x7c\x06\xab\x5f\x84\xad\xcb\x15\x01\x4f\x37\ +\xd6\xdb\x9f\x36\x07\x35\xd5\x8c\x80\x29\x03\x10\x31\xe9\x37\x60\ +\xdd\xa4\x5d\x99\x75\x93\x9e\x00\x23\x3f\x80\x2a\xd9\x68\xc4\x42\ +\x34\x6e\xd2\x35\x68\xa2\x2f\xa1\xe0\xe6\x35\xb8\xf2\xbb\x57\x48\ +\xaf\xef\x60\x8d\xf2\x50\x59\xab\x3c\x7c\xd6\x08\x5c\x21\x82\x56\ +\x9f\x1c\xb3\x00\x4d\xb8\xcf\xf9\xc7\x5b\x27\x7d\xda\x1d\xd8\x7f\ +\xc6\x29\x9f\xba\x3b\x8d\xb1\x6e\xfc\x3b\x56\x87\x9d\xd7\x93\x81\ +\x4a\xd5\xe5\x42\x51\x14\x02\x63\x7d\x1a\x9f\x17\x0e\x53\x38\x5c\ +\xd6\xc3\x75\x4e\xe3\xe2\x03\xe4\xc6\x95\xc4\x22\x6b\x55\x10\xf2\ +\x50\x18\xe3\x02\x31\xc9\x42\xe3\x2c\x56\xcc\xe0\xd0\xe4\x45\x10\ +\xf8\xc8\x83\xd0\x68\xe1\xc8\xf3\x9c\x62\xd4\xb3\xa8\x96\x65\x50\ +\x7a\x4c\x5a\x21\xc6\x0e\x50\xd5\xaf\x90\xe6\x57\x19\xa4\x16\x36\ +\x1d\xfc\xac\x73\xfc\x45\x8b\x5b\x79\xf3\xc3\xe7\xfe\xf2\x97\xb3\ +\xf8\xef\x66\x00\x2f\x72\xec\xdc\x5a\xfd\xb7\xf5\x93\x27\xff\xae\ +\x0d\xc2\x25\x2e\x14\xe7\x7e\xde\x6b\xc8\x73\x43\xa6\x33\x76\xb6\ +\xb7\x59\x58\x5c\xc0\xba\xa9\x31\x97\xc0\x0b\x8c\x54\x71\x01\x10\ +\x44\x3e\xa0\xfe\xe6\xef\x66\xf1\xc3\xff\x92\x8d\x9d\xde\xb8\x17\ +\x50\xe9\x12\x8f\xca\x81\x91\x64\x18\xfb\x78\xf2\x6d\x5d\x82\xa4\ +\x0b\x4b\xf7\xfb\x2c\x61\xb4\xbd\x54\x27\x09\x13\x3b\xfe\x14\xb6\ +\x7c\xc2\xe2\x7b\x5a\x06\xcc\x4c\x05\xa1\x6a\x59\x02\x13\xbe\x84\ +\x65\xf6\x20\x2b\x25\x02\x15\x6e\x7b\x50\x04\x42\x78\x1f\x90\x2b\ +\x9f\xdb\xe2\xf0\x7d\x7d\xe2\x13\xc7\x42\xfa\x22\xcb\xd7\x11\xb6\ +\xe2\xdc\xe3\x46\xa3\x30\x19\x00\x79\xa1\x6b\x6f\xa5\x9f\x02\x04\ +\x59\x36\xeb\xc2\x3c\xde\x4a\x84\xaa\x51\x5b\x7c\x88\xc6\xca\x6b\ +\xa9\xcd\x9c\x2a\xeb\x95\x64\xfb\x59\xb2\xdd\x8b\xf4\x56\x3f\x8d\ +\x2b\x32\x9c\xf1\xa6\x7d\x36\xe8\x03\xb8\x74\x8b\xa8\x13\xfb\x71\ +\xcb\x60\x17\x33\xf4\xd4\x5b\x93\x1b\x84\xd2\x3e\xcd\x37\x21\xd3\ +\x10\x02\x2b\x22\x5c\xfb\x38\x66\xe3\x8b\x38\x27\x28\xac\xf3\x10\ +\x24\x63\x91\xb2\x81\x31\x06\xa9\xf5\xa4\x29\x4c\x45\x6a\xc9\x89\ +\x7d\xea\x7c\x37\x09\xf0\xe9\xf7\x7a\xdc\xba\x7a\x81\x8d\x9b\x37\ +\x36\x5e\xfb\x96\x6f\x3c\xf0\x96\x47\xce\xfd\x99\x42\xe4\xef\x06\ +\x80\x17\x38\x6e\x3e\xf3\xd4\x3f\x6e\xcc\xce\xfe\xcd\xf6\xcc\x6c\ +\x6c\x43\x4a\xea\xa4\x08\xce\xb6\x50\x64\x05\x46\xe5\x6c\x6e\x6d\ +\x33\xbf\xb0\x30\x01\xeb\xbd\x1d\xcc\xc5\xdb\xb8\x05\x79\x71\x29\ +\x68\x7e\xd7\x8f\xb1\xf1\x81\xf7\xfb\x0b\xb9\x22\xf8\x39\x9a\x02\ +\x88\x20\x04\x3a\xc6\x14\x8f\xc7\x80\x36\x18\x70\x74\x6f\x41\xda\ +\x87\x03\xaf\x82\xa8\x55\xd1\x91\xb3\x13\xba\x20\xfe\x9c\xc5\x5e\ +\x54\xa0\x98\xaa\x5f\x46\xbb\xf6\x84\x3b\xaa\xac\x04\x01\x3b\xe9\ +\x15\x58\xed\x3f\x10\xfa\x0f\xa8\x71\xf6\x31\x92\x01\x1b\x35\xf5\ +\x47\xe7\x76\xf5\x4b\x19\x0b\xab\xcf\xd1\x79\xf8\x18\x32\x8a\x4b\ +\xbe\xbc\x35\xfd\x97\xf9\x00\x00\x20\x00\x49\x44\x41\x54\x10\xa6\ +\x12\x74\x94\x7f\x23\x1c\x88\xf0\x46\x08\x01\x56\x78\x4a\x79\xdc\ +\x39\x4c\xd4\x3a\x4a\x7d\xee\x14\xf5\x85\x73\xd4\x96\x1e\xa2\x36\ +\x7b\x86\x61\x92\x90\x24\x09\x49\x96\x51\x18\x43\x92\x24\xb8\xa5\ +\xaf\xa2\x75\xbc\xc5\xf1\x78\xc8\xad\xdf\xfb\x51\x7a\xb7\x3e\xef\ +\x39\x0d\x35\x89\x2b\x0a\x6c\x7f\x03\x39\x77\x00\x1d\x3d\x87\x5c\ +\x78\x00\xb3\xf1\x24\x2e\x1f\x62\x86\x29\xce\x25\x38\x29\x50\xba\ +\xe6\xa5\xbd\xac\x06\x67\xd0\xf1\x4d\x8c\x9e\xa7\xc8\x37\x90\x42\ +\xe3\x28\x70\x69\x82\x4d\x13\x94\xb5\x63\xe0\x95\x1b\x0b\x86\x4e\ +\x2f\xfe\x71\x9f\xc5\x5f\x19\x1b\x6b\x37\xb9\x7e\xe9\x02\xd7\x2f\ +\x3d\x47\x77\x67\x9b\x48\x49\x94\x8e\xf4\x9f\xf5\xe2\xbf\x1b\x00\ +\x5e\xe4\xf8\xf9\x0f\xfc\xec\xf0\x47\x56\x0e\xfc\xa7\xe6\xf9\x87\ +\xde\x85\x70\x93\x9a\x2b\x02\x9c\xf3\xfc\x00\x3d\xe8\xd3\xeb\x76\ +\x69\x77\x3a\xc1\x23\xc2\x4d\x65\x01\x8c\x26\xd6\x95\x67\xf0\x63\ +\xc3\xc6\xd7\x7f\x0f\x0b\x1f\xf9\x37\x6c\x6c\xef\x94\xe0\x10\x51\ +\x19\xf1\x55\x5f\xb2\x5c\xac\x62\x6a\x36\xef\x3c\x87\xe0\xc6\xe7\ +\x60\xfe\x0c\xb4\x57\xc6\xcf\xe3\x98\xe4\x1b\x4c\x33\x02\xc5\x34\ +\x7e\x5f\xec\x9d\xfb\x57\x7f\xaf\x9a\xc7\x4e\x0b\x7e\x96\x16\x67\ +\x95\xfe\x81\x95\x15\xfb\xb1\x60\x73\x3d\xca\x04\x9c\x83\xf5\x0d\ +\xe8\x7d\xf2\x0a\x07\x5e\x7f\x02\x11\x47\x93\x99\x07\x60\x95\x7f\ +\xe2\xc6\xfc\xfd\xc4\x9d\xc3\xd4\x66\x4e\x11\xcf\x9e\xa2\xbe\xf0\ +\x00\xf5\xf9\xfb\x30\x56\x92\xa4\x29\x49\x32\x64\x37\x49\x18\xae\ +\x0d\x49\xae\xfe\xc9\x6d\x3f\xd3\xe1\x30\x61\x1d\xcb\xdc\x23\xff\ +\x0c\xf9\xfb\x7f\x85\x3c\x59\x0d\xf2\x5d\x9a\x3c\x4b\x50\xa9\xc7\ +\x11\xc8\xe8\x3a\x62\xe6\x2c\x66\xf3\x8b\x18\xe3\x39\xcc\xae\xf0\ +\x0c\x51\x57\x80\x8c\x3b\x58\x63\x91\x3a\x27\x9a\x55\x14\x49\x1d\ +\xeb\x72\x40\x63\x4d\xea\x29\xd9\xce\x79\x59\xbb\xc9\xfc\x6f\x42\ +\x40\xc6\x01\x79\x96\xf1\x99\x3f\xf8\x03\xb6\xd7\x6e\x31\xd8\xd9\ +\x24\x49\x06\x5e\x0d\x2b\x98\x80\x4a\xe1\x35\x34\xbf\x12\xc7\xdd\ +\x00\xf0\x22\xc7\xe6\xb5\xab\xff\x68\xee\xe0\xa1\x77\xb5\xe7\xe7\ +\x03\x09\xc5\x85\xa8\xee\x30\xce\x21\xf2\x82\x34\xcf\x59\xdf\xd8\ +\xa0\xd5\x6e\x7b\xa3\xc7\xa9\xb9\xff\xf4\x0c\x77\x94\xe4\xf9\x54\ +\x5e\xd0\xfa\xbe\x1f\x67\xfd\xdf\xfd\xc4\x78\x61\x56\x30\x30\xce\ +\x4d\xd2\x3f\xdc\x94\xe9\x07\x15\xf1\x10\x2b\x60\xf5\x09\xdf\x24\ +\x5c\x3c\x35\xe6\x0c\x58\xbb\xf7\x5c\xa6\x77\xfd\x89\xdb\xa7\x82\ +\x80\x98\xf2\x08\xa8\x5a\xf5\x95\xd4\xe6\xca\x44\xa0\xb4\xb6\xb6\ +\x95\x79\x7e\xc8\x46\x6c\x11\xf0\x04\xc5\x38\xc3\x1f\xa4\xb0\xfb\ +\xc4\x25\x3a\xaf\x7e\x90\xfa\xfc\x59\x1a\x0b\x27\xa9\xcd\xdc\x4b\ +\x6d\xee\x24\xf1\xdc\x29\x1a\xf3\x67\x3d\x19\x2b\x4d\x49\xd2\x84\ +\x41\x92\xb0\xd1\x4d\x49\xd6\x9e\xa3\x28\x5e\xca\xa6\xe8\xa6\x9a\ +\x5d\x82\xed\x9e\x41\x9c\xfa\xab\x98\x2f\xfc\x7d\x2f\xf4\x61\x3d\ +\x44\xb7\x48\x32\x64\xec\xdf\x58\x15\xaf\xa3\x5a\xf7\x92\xed\x7e\ +\xc1\x23\x41\xa5\xc2\x16\x06\x94\x46\x88\x3a\x88\x02\x6b\x2c\x48\ +\x87\xa8\xcf\x50\xf4\x37\x3d\x1e\xc1\x09\x90\x8d\x40\x45\x9e\x3a\ +\x93\x29\xf5\xa8\xdf\xf9\xf5\x5f\xe6\x97\xff\xc3\xcf\xf1\x85\xc7\ +\x2f\xf3\x8d\x6f\xfb\x0b\x1c\x3d\x72\x64\x82\x21\x2b\x83\x96\xa1\ +\x50\xea\x6e\x00\x78\x25\x8e\x0f\x7d\xf0\xff\x7e\xe2\xbf\x9b\x9b\ +\xfb\xd2\xbd\x8f\x7e\xf5\x99\x11\xb4\xc7\x73\xf4\x1d\xc2\x3a\x32\ +\x1c\x22\xcd\xe8\xf7\x77\x49\x93\x84\x7a\xa3\x81\x75\xc2\xf3\xc8\ +\xdd\x58\x34\x44\x4e\x75\x72\xcb\x1d\x5a\x40\xe3\x8d\xdf\xc2\xe1\ +\x8f\xfe\x34\xd7\xaf\x5f\x29\x8d\x3e\x45\x75\x0a\xa0\xc6\x8d\x41\ +\x67\xa0\x53\x87\x9d\x61\xd0\xa7\x14\x15\x6b\xe9\x70\x55\x75\xaf\ +\x41\xde\x0b\x7d\x81\x78\xcc\xf2\x9b\x4a\x04\x4a\x6d\xc2\x3d\x77\ +\xec\x03\x3a\x11\x76\x92\x44\x34\x82\x03\x8f\x44\x40\xcb\xc0\xa5\ +\xfd\x0e\xee\xf2\x4a\x39\x10\xf9\x2f\x5b\xf8\xdb\x17\x62\x68\x1e\ +\xbd\x9f\xe6\xe9\xd7\xd2\x38\x7c\x9e\xe6\xc1\x07\x69\xac\x3c\x40\ +\xfd\xc0\x69\x9c\x73\x24\x49\xc2\x30\x49\x18\xa4\x29\x9b\xbb\x09\ +\xc3\xb5\xa7\xc9\xf3\x7c\x6a\xf4\xc5\xed\xb1\xcd\x95\xc8\x54\xc5\ +\x57\x4c\x77\xbe\xdd\xcc\x23\xb0\xf0\x7a\xf2\xab\xbf\x85\x13\x12\ +\x19\xd5\x30\x85\xc6\x98\x0e\x42\xf4\xc0\xa5\xe8\xa6\x41\xcf\xde\ +\x43\x31\xbc\x85\x33\x86\x62\xe8\xb3\x01\x55\x3f\x1a\xd4\x7f\x1b\ +\x38\x67\x50\xed\x9c\xe1\xc6\x10\xb0\x08\x5d\x47\x47\x8d\x4a\xc6\ +\x27\x26\x16\xff\xe8\xf8\xe2\x17\x3e\xcb\x47\xff\xe3\xcf\xa1\xb5\ +\x44\x0a\x89\x56\xba\x94\xca\x93\x4a\xa1\xa5\x40\x2b\xaf\x93\x19\ +\x2b\x7d\x37\x00\xbc\x52\xc7\xee\xfa\xda\xcf\x6c\xaf\xde\xfa\xa7\ +\x9d\x85\x05\x82\x8f\x0b\x16\xeb\x83\x80\x70\xe4\x26\x27\x4d\x73\ +\xd6\xd6\xd6\x38\x76\xfc\x18\xec\x43\xda\xb0\x08\x84\x13\x38\x6c\ +\xd9\x28\x2c\xe9\xba\x52\x32\xf3\x03\x7f\x8b\x6b\xff\xe4\x7d\xe5\ +\x45\x5b\x4d\xef\x85\xa8\x36\x89\x20\xaa\x49\x8e\x7f\xed\xfd\xa8\ +\x38\xc2\x0e\x92\xca\xa8\x2f\x48\xa8\xb7\x6a\xc4\xf6\x06\xdd\x9d\ +\xd5\x12\x54\x24\xec\xfe\xf8\x71\x31\x1d\x00\xa6\x56\x4a\xd5\x99\ +\x76\xdf\xc6\x61\xa5\xe9\xe8\xf4\xf8\xf6\x83\x2b\x4b\xe8\xd6\x0a\ +\x8d\x23\x8f\xa0\x97\x0e\x11\xcd\x1e\xa3\x79\xe4\x11\x6a\xcb\x67\ +\x88\x3a\x7e\x6c\x9a\x24\x09\x49\x9a\x90\xa4\x29\xbb\x69\xca\xf0\ +\xd9\x67\x48\xd3\x74\x12\x33\x21\xf6\xa4\x4e\x7b\xec\xd6\xf6\xf9\ +\xcf\x84\xfa\x11\x53\x23\xd8\x11\x88\x49\x02\xfa\xd4\x5f\x26\xb9\ +\xf6\x49\x9c\x19\x62\xa3\x08\x9d\x0f\xb1\x45\x13\xa9\xba\xa1\x21\ +\x97\x10\xcd\xad\x90\xa5\x3d\x70\x03\x8a\x3c\x04\x16\xd5\xc2\xba\ +\x02\x69\x65\x78\x5c\x86\x6a\xcd\x93\x6f\xaf\x23\x22\x8d\x93\x0d\ +\xaf\x67\x79\x9b\xf8\xe4\x80\xa7\x1f\xff\x63\xb4\x12\xe4\xb9\x41\ +\x69\xbf\xd0\xbd\x73\xb6\x42\xab\x10\x10\x22\x4d\xa4\x35\x71\x1c\ +\xdd\x0d\x00\xaf\xd4\xe1\x8c\xfb\xf0\xf5\xa7\x9e\xfa\xa7\x67\xde\ +\xf0\xc6\x71\x27\x37\x38\xc8\x08\x07\x45\x5e\x90\x0f\x13\x76\x77\ +\xb6\x48\x92\x65\x1a\xf5\x1a\xc6\x82\x12\x95\x82\xa0\xb2\x2b\xd9\ +\x2a\x4c\x78\x54\x87\x9f\xff\x5a\x4e\xbd\xe9\xed\x3c\xf7\xfb\xbf\ +\x31\xc9\xd8\x63\x6c\x35\x3e\x4a\xb1\xd7\xb7\x2d\xf2\xb7\x9e\xe0\ +\xc0\xd9\x25\xea\x0f\xde\xe3\xed\xce\xcb\x0b\xdf\xff\x94\x8b\x7b\ +\x68\xe8\x59\xb2\xad\x67\xc8\xec\xa4\x16\x40\x45\xcd\x7c\x72\xe4\ +\x78\x9b\x2b\xd5\x4d\xaf\x2f\x0b\x87\x0f\x1e\x40\x36\x16\xa9\x1f\ +\x7e\x84\x68\xee\x18\x51\xe7\x10\x8d\xe3\x8f\xa2\x5a\x8b\xd4\x97\ +\xcf\x96\x8d\xaf\x24\x49\xc8\x8b\x9c\x22\x2f\xd8\x49\x12\x8a\xad\ +\x84\xf4\xd6\x33\x0c\xaa\xc6\x16\xb7\x79\x7d\x37\x0d\xa5\xdc\x5f\ +\xf7\x7e\xdf\xa0\xe6\xa6\x7e\x4f\x32\xe6\x39\x08\x31\xce\x7e\x64\ +\x6d\x91\xda\x7d\x3f\xcc\xe0\xc9\x7f\x0b\x79\x4e\x21\x86\x28\x33\ +\x5b\xd1\xe6\x16\x08\x76\x88\x67\x8e\x33\xb8\xf5\xc5\x20\xe1\xa6\ +\x10\xaa\x0d\x6e\xcb\x83\x73\x84\x97\xaf\x8f\xda\x92\x74\x5b\x20\ +\x72\xe3\xbb\xb1\x8c\x7d\x19\xf6\xa2\xfb\x04\xbd\xee\x06\x52\x08\ +\x8a\xac\x40\x49\xaf\x86\x1d\x47\x1a\x29\xc3\xe2\xd7\x9a\x28\x56\ +\x44\x52\x13\xd5\xee\x06\x80\x57\xec\xf8\x4f\xbf\xf8\xa1\xcb\xdf\ +\xfa\x9d\xdf\xf5\xfb\x9b\x37\x6f\xbc\x69\x6e\x79\x79\x72\xb6\x66\ +\x1d\xd6\x5a\x92\xa2\x40\xe5\x39\x9b\x1b\xeb\x1c\x39\xe2\x15\x83\ +\x8c\x13\xa8\xaa\x17\x7d\x20\xb0\xec\xc7\x02\x13\x02\xd4\x0f\xfe\ +\x3d\x8e\x5d\xbf\xc0\x95\x67\xbf\xe4\x5d\x61\xa8\x58\x71\x8f\x4c\ +\x68\xf5\x18\x06\x7c\xed\xc9\x75\xd4\x85\x75\x0e\x3e\x08\xf5\xce\ +\x58\x68\x14\x3c\x2b\x36\x30\x63\x27\xcd\x63\xe5\xde\xac\x82\x7d\ +\x9a\x80\x87\x0f\x1f\x46\x37\x17\xa9\x1f\x3c\x4f\xbc\x78\x12\xd5\ +\x5e\xa1\x71\xfc\xab\xd1\xcd\x45\x6a\x4b\xa7\xc7\x4d\xb5\x24\xc1\ +\x14\x05\x59\x96\xb1\x9d\xa6\x98\xb4\x60\xf8\xdc\xb3\x25\x0c\xb6\ +\x7c\x5a\xb7\x0f\xaf\x5d\xbc\x48\x00\x78\x11\x35\x81\xdb\x3c\xdd\ +\x1e\x30\x8d\xa0\x02\x82\x12\xe3\xbe\x4a\x00\xdf\x12\x1f\xff\x66\ +\x92\xeb\xbf\x43\xba\xfa\x27\xb8\x64\x8d\x78\x6e\x19\x6b\xea\x5e\ +\x0c\x46\x58\x20\x41\xd7\x6e\x22\xe3\x65\xc8\xd7\x88\xdb\x47\x30\ +\xa6\x86\xd6\xbb\x38\xeb\x1d\x3d\x9d\x6b\x78\xe8\x78\x13\xf2\xee\ +\x3a\x38\xaf\x33\xf0\x42\x7f\xc1\xf6\xd6\x36\x5a\x29\x3a\xed\xba\ +\x5f\xfc\xb5\x98\x48\x47\xa5\x09\x4e\x14\x6b\xb4\x8c\xd0\x35\x4d\ +\xa4\xa2\xc6\xdd\x00\xf0\x0a\x1e\xd6\xba\x0f\x5f\x7e\xec\xf3\x6f\ +\xea\x7c\xfd\xd7\x87\x8b\x6a\xd4\xf5\xf2\x50\xd1\x3c\x2b\x48\x07\ +\x09\x9b\xeb\x9b\x2c\xae\xac\x50\x8f\xa2\xb1\x23\xef\x84\x21\x80\ +\xdb\x73\xa1\x8e\x76\x23\x51\x6b\xd1\xfa\xdf\xfe\x5f\xee\xff\xd0\ +\x3f\xe7\xa9\x5f\xff\xd0\x1e\xe2\x88\xa8\xee\xc6\x23\x9a\xfb\x10\ +\x2e\xff\x11\x74\x8e\x41\xf3\xe8\xa4\x80\x68\xf9\x3a\x95\x4c\xf4\ +\xd8\xd1\x93\x08\xa9\xa8\x1f\x79\x18\xa1\x6a\xd4\x0f\x3c\x80\xaa\ +\x75\xa8\x2d\x9f\x45\x36\xe6\x88\x17\xee\x21\xea\x1c\xc0\x5a\x4b\ +\x9a\xa6\xe5\x77\x63\x0c\x5b\x59\x86\x1d\x18\x92\x67\x9f\xf5\x20\ +\x97\xa2\xb8\xfd\xfb\xb5\xdf\x62\x15\x7b\x77\xe6\x17\xd0\xb3\x7f\ +\xc1\xdb\xf7\x2e\xfb\x91\x53\xe3\x8b\xfc\x62\x78\x4d\x21\x4a\x59\ +\x05\x10\x92\xc6\xab\x7e\x84\xfe\x8d\xbf\x86\x2b\x86\xd8\x42\xe2\ +\x84\x1e\xc3\x18\x43\xe4\x6a\x2e\x44\x18\x33\x8b\x8c\x66\xfd\xc8\ +\xce\x8c\xca\x15\xe7\x45\x42\x1c\xa8\x66\x83\x64\xdb\xa0\xe2\x76\ +\x59\x02\xb8\x3d\xcd\x3f\x11\x24\xd0\x13\x74\xac\xe8\x77\x73\xa2\ +\x58\x13\xc7\x31\x2a\x8a\x88\xf4\xa8\x0c\xd0\xe8\x48\x13\xeb\x98\ +\x5a\x2d\x8a\xef\x06\x80\x57\x34\x02\xb8\x8f\x26\xfd\xc1\xbf\x5e\ +\xbb\xf0\x3c\x4b\xf7\x9c\x9a\x30\xb8\xf3\x34\xd0\x82\x34\x81\x24\ +\x8a\xd8\x58\x5d\xe5\xd0\xe1\x23\x41\x8b\x4f\x4c\x5e\xe4\x61\x0b\ +\xda\x03\xf0\x1c\x01\x40\x64\x84\xfc\xfe\xff\x85\x37\x7e\xdf\x8f\ +\xb2\xf3\x9f\xfe\x0d\x37\x7f\xf3\x3f\xb0\x9a\x9b\xc9\xed\xad\xb2\ +\xa5\x1f\x3d\x74\x08\xd5\xea\x20\x15\xc4\xb5\x15\x16\x5e\x7d\x82\ +\xda\x5c\x83\xc6\xe1\xf3\x48\x5d\xa3\x71\xe4\x61\x00\x5a\x27\xbe\ +\xda\xd7\xdd\x69\x12\x18\x75\x3e\x3d\x77\xce\x31\x4c\x86\x0c\xad\ +\x23\x49\x13\xec\x8d\x1d\x92\x8b\xb7\xf6\x5d\x60\xb7\x5d\xe8\x6e\ +\xff\xb1\x82\xbb\xcd\x42\x7c\x79\x8b\x5d\xdc\xbe\x3a\x99\x30\x07\ +\xb9\xfd\x23\xc7\x99\x80\xdb\x8b\xa8\x0c\xbf\x14\xcd\xdc\x47\xed\ +\xc8\x5b\xe8\x5f\xf8\x38\x26\x17\x28\x69\xbd\x7c\xb7\x2d\xbc\x17\ +\xa5\x35\x38\x72\xe2\xce\x0a\xce\xcd\x03\xdd\x20\xf8\x39\xa6\x00\ +\x3b\xa7\x50\x91\x02\x55\x43\xd5\x66\xf7\x13\xe8\xac\x6c\x28\x20\ +\x5c\x41\x24\x05\xb9\x31\x44\x51\x44\xa3\x51\xa7\x16\x47\xe8\x48\ +\xa1\x84\x44\xc7\x11\x5a\x6b\xe2\x58\x13\xc5\x5f\x91\xf5\x7f\x37\ +\x00\xbc\xd4\xe3\x57\x3e\xfa\x91\xcb\xdf\xf4\x8e\x6f\x7e\xfc\xda\ +\x53\x4f\x9d\x5f\x3c\x7e\x3c\xd8\xfb\x06\x4d\x76\x19\x30\xbe\x45\ +\x4e\x3f\x49\x58\xdb\x58\x63\x6e\x79\x99\xba\x8e\x2a\x0d\x3f\x37\ +\x61\xc6\x23\xa6\x82\x40\xf5\xe2\x34\xce\xb1\x2a\x5b\xb4\x7f\xf0\ +\x27\x79\xf4\xc7\xff\x0f\xd4\xfa\x55\x5c\xd2\xf7\x19\xbc\xae\xd1\ +\xbc\xef\x3c\x69\x96\x01\x50\x14\x05\x79\xee\x7f\xce\x73\x5f\x6b\ +\x03\xf4\xb2\x8c\xc2\x14\x90\x41\x9a\x65\x98\xc7\xbe\xf0\xa7\x8b\ +\x7b\x41\xf5\xd8\xbd\x40\x1c\x28\x6b\xf5\x7d\xfa\x09\xb7\x5f\xec\ +\x2f\x6d\xae\xbd\x5f\x19\x60\xc5\x3e\xb5\x43\x35\xeb\xb1\xd3\x37\ +\xbb\xa9\x92\xc0\x95\x65\xd0\x48\x10\xd8\x00\xed\x07\xfe\x12\xc9\ +\xc6\x17\x30\xb6\x85\x72\xb7\x18\x29\x88\x58\xd7\xc0\x59\x6f\x17\ +\xa7\x6b\xbb\xd8\xbc\x89\x10\x3d\x8c\x6d\x00\x11\xce\x16\x20\x87\ +\xa5\x11\xa8\x6e\x2d\x20\x1b\x0b\xc1\x58\x66\xb2\xfe\xb7\x56\x78\ +\x25\x7f\x67\xd8\xda\xda\xa4\x5e\x57\x74\x5a\x0d\x36\xb6\x1c\xb5\ +\x5a\xcd\x67\x01\x5a\xa2\xb4\x46\x2b\x49\xa4\x22\x22\x15\x13\xdd\ +\x9d\x02\xdc\x09\x49\x80\xfb\xd5\x34\x19\x9e\x5f\x7f\xe6\x49\x8e\ +\x9c\x7f\x94\x74\x30\x08\x6e\xb1\x1e\xa7\x5b\x38\x4b\x96\x66\x0c\ +\xfb\x29\xb7\xae\xdf\xe4\xf8\xf1\xe3\xe5\x25\x5c\x91\xaf\x78\x81\ +\x4c\x60\xb4\x2d\xf9\xc7\xf7\x7a\x03\x7a\xbd\x4b\x08\x09\x5a\xb5\ +\x28\x8c\xf1\xac\x9a\x3f\xf9\xe2\xbe\xcb\x47\xbe\xac\x85\xfd\x32\ +\x1f\xbb\x5f\x57\xfe\x25\xed\xf6\x2f\x1d\xc0\x72\xbb\x99\xf9\x8b\ +\x06\x94\x3d\xcd\x80\x69\x55\x93\xe9\x49\x67\xf8\x34\xdc\x24\x20\ +\x4a\xb6\x4f\x50\x5b\xf9\x1a\xcc\x30\xf3\x60\xa5\xf0\xc7\x3a\xe2\ +\x60\xf4\x12\x79\xa3\x02\xb1\xea\x0d\x41\x69\x85\x29\x89\x46\x9a\ +\x11\xe6\xdf\xa1\x1a\x75\x74\x7d\xae\x3c\x35\xcf\x48\x0c\x30\xdf\ +\x60\x5c\xda\xef\x75\x69\xd4\x23\xb4\x96\x64\x79\x9f\x5a\x5c\xa3\ +\x11\xd7\xd0\xb1\x46\xab\x90\x01\x44\x1a\xad\xfd\x14\x40\x45\x2a\ +\xfb\x4a\x5c\xd3\x77\xc9\x40\x2f\x6b\x1c\xe0\x3e\x62\x0c\x6c\x5d\ +\xbf\xc9\xf6\xa5\xe7\x69\x76\x5a\xc8\x28\xf2\x06\x93\x52\x62\x81\ +\xbc\x28\x18\x26\x43\x36\x37\x37\xe9\x0f\xfb\x98\xc0\x67\x37\x76\ +\x5c\xfb\xed\x5f\x17\x8e\x2f\x4e\xc7\x98\x48\xe4\x71\xef\x8e\x3c\ +\x1f\xfb\xd3\xed\xe5\x81\x8f\x6d\xbd\x46\xa4\x1f\xc3\xe4\xd7\x34\ +\xd9\xa4\xba\x3e\xaa\xb8\x7d\xc7\x5e\xde\x7a\x75\x74\xe5\x6e\xf3\ +\xda\xe3\xf3\x9e\xfc\x7a\xa1\x31\x58\x95\x38\x65\x84\x08\xc4\x18\ +\x31\xfe\xff\x7e\xaf\xe3\xf6\xf9\xaa\x92\xae\xf0\x1c\xfd\x2c\xcb\ +\xd9\xdc\xda\xe2\xda\xcd\x1b\xac\x6f\xac\x93\x05\xc9\xae\xe9\xc0\ +\x54\xba\x31\x85\x37\xa5\x73\xe6\x7b\xb1\x26\xc5\x5a\x1d\x88\x53\ +\x12\x6b\x8c\xd7\x17\xb0\x16\xeb\xb4\x97\x3b\x1f\xe9\xb9\x05\xed\ +\x48\x13\xc6\x81\xd6\x48\x54\xd4\x44\xc7\xad\xd2\x29\xb8\xfc\xab\ +\x2b\x81\x69\x77\x67\x93\x99\x99\x1a\x51\x24\xc8\x72\x43\x1c\x6b\ +\x6a\x8d\x98\x38\xd2\xe8\x30\x11\xd0\x32\x42\x4b\x4d\x14\x69\x3a\ +\xad\xd6\xf0\x6e\x06\xf0\xca\x1f\x9f\x05\x36\xb3\x3c\x5f\xb8\xf2\ +\xe4\x63\xe8\x46\x83\xa5\x23\xc7\xe9\xf7\xfa\x14\x76\x88\x71\x8e\ +\xc2\x15\xa4\x79\xc6\x70\x38\xe4\xd6\xad\x5b\x9c\xbc\xe7\x54\xa0\ +\xb0\x7a\xbe\xbb\x44\x60\x85\x2b\x35\x02\xab\x03\x6b\xb1\xef\xce\ +\x59\xf5\xc2\xae\x10\x83\xca\x01\x3f\x53\x50\x41\xf6\x05\xf6\xb8\ +\x7d\x67\x65\xfb\xec\xde\xd3\x59\xb5\x7b\x79\xbb\xf9\x7e\xbb\xf8\ +\x8b\x3e\xe6\x76\x65\xc5\x9e\x1b\xc5\x3e\xda\xe6\x7e\x11\x0f\xfb\ +\x7d\xba\xdd\x2e\xbd\x5e\x8f\x5e\xaf\x4b\xaf\xd7\x27\x19\x24\x14\ +\x26\xa7\x56\x8b\x99\x9f\x99\xe1\xec\xfd\xf7\xd3\x6a\x75\xca\x30\ +\x5c\x66\x02\xa3\xb7\xd1\x39\x64\xfb\x28\x7a\xee\x38\x76\x98\xe0\ +\x64\x01\xb9\x41\xd0\x43\x04\x42\x92\xb5\x2d\xaf\x00\x5c\x64\x08\ +\x31\xc0\x85\x32\xc1\xb9\x16\x16\x8d\xb3\x39\xba\x51\x0b\x4a\xc3\ +\xa3\xfc\x69\x1c\x0c\x47\x4c\xcc\x2c\xe9\xd1\xed\xa5\xcc\xb4\x6b\ +\x74\x5a\x35\x1c\x31\xb5\xb8\x8e\x96\x1a\x19\x02\x40\xb3\x59\xa7\ +\x5e\xf7\x5f\xb5\xbb\x3d\x80\x57\xfe\xf8\xcd\x5f\xfb\x2f\xe6\xeb\ +\xbf\xe1\xed\xbf\x9e\xe6\xc5\xbb\x23\x1d\xf1\xd4\xa7\x7e\x9f\x33\ +\xaf\x7b\x3d\x47\xef\x3b\xcb\xb0\xab\x19\xf4\xfb\x14\xa9\x25\x4b\ +\x0b\x12\x39\x64\x6b\x63\x8b\xb9\xb9\x6d\xe6\xe7\x67\xcb\xc5\x6b\ +\x01\xe9\x7c\x10\x10\xae\xaa\xf1\x2f\x6e\x9b\xae\xee\x59\x2e\x6e\ +\x9f\x9f\xdd\xd4\x42\x71\x2f\xd2\x34\x77\x2f\x9e\xaa\xbf\x1c\x49\ +\xef\x97\xb2\xd0\x27\x6e\x73\x2f\xef\x75\x5c\x48\xed\x9d\x73\x64\ +\x59\x46\xbf\xd7\x63\xb7\xd7\x67\xd8\xef\xd1\x1b\xf4\x48\x86\x85\ +\x47\x0f\x0e\x07\x0c\xfa\x03\x86\xfd\x3e\xc3\x41\x1f\x53\x14\xc4\ +\x51\xc4\xa1\x83\x07\x50\x3a\xe6\xdc\x43\xe7\x51\x42\x56\x82\x40\ +\xd0\x6e\xa8\xc4\xe2\xe6\x89\xaf\xa7\xf7\xc4\x45\xa4\xf0\xb0\x2f\ +\xac\x0b\xbb\xb9\xc5\x89\x38\x00\x9f\x62\x6f\x6f\x1c\x6e\xb7\x2e\ +\x0e\x8e\x3d\x31\x22\x5e\x40\x29\x85\xb5\xc5\xbe\x65\x0c\xc0\xee\ +\xf6\x1a\x33\xed\x1a\x4a\x29\xb2\xac\xa0\x56\x8b\x69\xb6\x1a\x34\ +\x1a\x0d\x1a\xa1\x17\xa0\xb5\x0e\xd8\x80\x88\xe8\x2e\x10\xe8\xce\ +\x38\x84\x12\x1f\xb3\x45\xf1\x6e\xa4\x8f\xf2\x8f\x7f\xe2\x77\x28\ +\xb2\x84\x33\x0f\xbf\x86\x38\x8e\x19\x74\x23\x86\xc3\x1e\x59\x9e\ +\x33\x48\x06\x5c\xbd\x7a\x95\x76\x67\x76\xac\x1e\xec\x1c\x06\xdf\ +\x37\x34\xc2\x43\x86\x4b\x40\x50\xd5\x4b\xc0\x55\x1a\x56\x7f\xca\ +\x9a\xfa\x85\xb7\x68\xf9\xa7\xfb\xb5\x97\x78\x9f\x7b\x91\x85\x3c\ +\x11\xac\x6e\xd3\x9f\x70\x21\x20\x0e\x06\x3d\x76\xbb\x3d\x06\xbd\ +\x01\xbd\x41\x9f\x34\x4d\x49\x8b\x8c\x24\xc9\xd8\x5c\x5b\x63\xfd\ +\xea\x65\x66\xfa\x1b\x64\xab\xd7\x49\x97\x0e\x93\x2e\x1f\x27\x4f\ +\x53\x4c\x9a\x92\xe7\x19\x32\x94\x04\x3a\x8e\x38\x7c\xf4\x18\x0b\ +\x0b\x73\xc8\x91\x77\x40\x25\x1d\x2a\x7b\x01\x33\xf7\x20\xe3\x79\ +\x6c\x16\x1a\x81\x28\xfc\xa7\xa6\xbc\xeb\x8f\x88\x10\x36\xf3\x26\ +\x26\xce\x82\xd3\x38\x67\x70\x4e\x03\x39\xba\xb6\x82\x94\x72\x4f\ +\x79\x35\xfa\xdb\x1c\xb0\xb5\xb1\xc6\xec\x6c\x93\xa2\x28\x30\xc6\ +\xd0\xe9\xb4\x58\x58\x98\x47\x4b\x55\xba\x66\x47\x91\x26\xd2\x1e\ +\x1f\x10\x47\x77\x9b\x80\x77\xc4\x21\x91\xff\xb5\x30\x45\x60\x6a\ +\x09\xa4\x54\x7c\xee\xf7\x7e\x97\xc5\x76\x87\xc5\x93\xa7\x89\xe3\ +\x98\x5a\xaf\xc6\x70\xd8\x23\xcf\x0a\x06\x49\xc2\xd5\x2b\x57\x38\ +\x76\xcf\x71\x70\x0e\x19\x76\x7a\x9f\x09\x78\xbe\x80\xdc\x67\x3d\ +\x96\xf6\x5d\x95\x05\x2f\xdc\xde\x80\xf0\x65\xb4\x34\x5f\x72\x60\ +\x79\xc1\x09\xc0\xcb\xb9\xbd\x94\xbd\x11\xfb\x2e\x76\x21\x04\xbd\ +\x5e\x8f\xc1\x60\xc8\x60\x30\x60\x98\x0c\x19\x0c\x87\xe4\x79\x41\ +\x66\x0c\x9b\x37\x6f\x92\xad\x5d\xc5\x6d\x5c\x47\x6d\xaf\x71\xf9\ +\xf2\x65\x1e\xbf\xb6\x4b\x24\x05\xaf\x5a\x8a\x98\x6d\x68\x66\xf3\ +\x5d\x6e\x2c\x1d\xf3\x3b\x6f\xd0\x73\x34\xa6\xa0\xd7\xeb\x72\xf3\ +\xfa\x4d\x2e\x5e\xba\xc0\xec\xec\x43\x08\xad\x2b\xca\xc2\x63\x93\ +\xd7\xd1\xb9\xc7\x07\xcf\x91\x5c\x7c\x02\x50\x18\x37\x83\x23\x42\ +\xb8\x0c\x21\xba\x48\x67\x70\x28\xac\x99\xc1\x12\x21\x5c\x0e\xa2\ +\xeb\xcb\x04\x27\x90\xf5\x23\x1e\x04\x34\x55\xc7\x54\x7b\x1a\x75\ +\x9d\x92\xa4\x19\xb3\x9d\x06\x9d\x76\x9d\x46\xbd\x4e\x2d\x8a\x83\ +\x31\xae\x22\x8e\x23\xb4\xd2\x44\x71\x44\x14\x29\x74\x74\xb7\x04\ +\xb8\x23\x8e\x8f\xfd\xc6\x7f\xb9\xfc\xd6\xb7\x7f\xd3\xd3\xce\x72\ +\x56\x49\x8d\x52\x39\x4a\x69\xae\x5d\x78\x8e\xa4\xbb\xcb\xdc\x3d\ +\x27\x99\x99\x5b\xa0\x1e\x47\x24\xc9\x00\x57\x14\xec\x6c\x6d\xd2\ +\x99\xed\x30\xbf\xb0\x80\x0d\x62\x12\xa3\x20\x30\xba\x30\x64\x15\ +\xab\x2f\x1c\xfb\x89\x0b\xf8\x5a\x75\xef\xed\xe2\xcb\x88\x09\xee\ +\xa5\x68\x18\xbc\xdc\xfb\x5e\x60\x57\x07\xaf\xd7\x97\x05\xae\xfe\ +\x70\x30\x64\x90\x0c\x18\x0e\x86\x24\xe9\x80\xa2\xb0\xf4\x36\xd7\ +\x31\xdd\x6d\x92\xed\x35\x8a\xed\x35\x92\xb5\x6b\x7c\xfa\xf1\x0b\ +\xec\xf4\x33\x5e\x7d\x20\xe6\xd8\x5c\x8d\xdc\x38\x0e\x36\x2c\x57\ +\x1a\x92\xed\xa1\xa5\x1e\x59\x2f\x88\x92\xed\x60\xbb\x9b\xc8\xd6\ +\x2c\x4e\x4a\xef\xf1\x27\x2d\xc6\x3a\xb6\x77\x76\xb8\x7c\xe1\x32\ +\xa7\x4e\x9e\x64\x6e\x7e\x7e\x12\x9d\x59\xe9\x3d\x08\x01\xd1\xd2\ +\xeb\x18\x5e\xfc\xa5\x60\x18\x1a\x07\xae\x7e\x1d\xe1\x76\x42\xa8\ +\xb0\x58\x57\x0f\x56\xf0\x35\x84\xdb\x29\x03\x59\xd4\x3c\x80\x90\ +\x72\xdc\xcc\xdd\xe7\xfd\xe8\xed\xac\x31\x3f\xd7\x2a\x9b\x80\x0b\ +\x8d\x7a\x99\xf2\xab\xc0\x03\xd0\x91\x26\x8a\x14\x91\xf6\x41\xe0\ +\x6e\x00\xb8\x43\x0e\xa5\xd4\xc7\xad\x75\x67\x75\xac\x90\x85\x42\ +\xe7\x82\xee\xee\x2e\x4b\x8b\x4b\x7c\xe9\xd3\x9f\xa0\xbd\x70\x80\ +\x53\xe7\x5f\xcd\xcc\xec\x2c\x45\xe6\xed\xa4\x6f\xdd\xb8\x41\x14\ +\x45\xb4\x3b\x1d\x84\x0d\x9c\x70\x37\xe6\x04\xd8\x4a\x12\xe0\xdc\ +\x3e\xfe\x5c\xa1\x4f\xb0\x1f\x09\xee\x76\x8b\x58\xfc\x29\x17\xf6\ +\x4b\x7a\xcc\x6d\x5e\x74\xb4\xd0\x87\xc3\x21\x36\x40\x84\xd3\x34\ +\x25\xcd\x72\xd2\x6c\x48\x3a\x4c\x29\xf2\x9c\xde\xce\x26\x83\xed\ +\x35\xd8\x5d\x63\xb0\x7e\x8b\xed\x8d\x0d\x9e\xbd\xbc\xc9\xad\x4b\ +\x57\x39\xb4\xac\x79\xf4\x68\x93\x61\x66\x18\xe4\x96\x03\x9d\x88\ +\x7b\x3a\x96\x4f\xef\x48\x0a\xe7\xd0\x91\x65\x60\x1c\xcb\x6d\xcd\ +\xf1\xd9\x82\x9b\x7d\x43\x14\x29\xe2\x58\xd0\xcf\x0a\xe4\xcd\x0b\ +\x88\x33\x8f\xe2\x22\x8b\xb5\xd6\x13\x76\x8a\x82\x24\x4d\x59\x5b\ +\x5f\xe7\xda\xf5\xeb\x74\x66\x66\xd0\xc1\xff\x6f\xd4\x55\x15\x41\ +\xf4\x45\x08\x20\x9e\x47\xb6\x4f\x52\xec\x5c\xc0\xd9\x1c\x27\x6a\ +\xe0\x52\x84\x50\xd8\xf0\x69\x39\x9b\xf9\x5e\x80\xcb\x70\x28\xa4\ +\x30\x38\xab\xa8\x05\xb2\xd3\x38\x60\x8f\x4b\x3b\x8f\x1a\xb4\x6c\ +\xad\xdf\xe0\xd0\xa1\x0e\x49\x92\x31\x4c\x73\x1a\xcd\x06\xf5\x7a\ +\xad\xd4\x00\xd0\x5a\xa3\xb5\x24\xd2\x91\x1f\x07\x2a\x65\xee\x06\ +\x80\x3b\x25\x00\x08\xf5\x71\xe3\x78\x6f\x53\xc5\x14\x3a\xa7\x50\ +\x31\xdd\x5e\x2f\x7c\x78\x9a\xd5\x6b\x57\xb8\xfa\xfc\x73\xdc\xf7\ +\xd0\xc3\x1c\xbb\xf7\x34\xb1\x52\x38\xe7\xb8\x7e\xed\x0a\x87\x0f\ +\x1f\xa6\xdd\x99\xf5\x40\x20\x19\xea\xdc\x8a\xac\x16\xdc\x96\x9d\ +\x3b\x21\x09\x26\x84\x7b\xd1\x95\xfe\x52\x41\x38\x2f\xa7\xab\xe0\ +\x81\x47\x39\x79\x51\x50\x04\x38\x70\x91\xe7\xc1\x36\x2d\x23\xcd\ +\x32\x8a\x3c\xc7\x5a\x4b\x7f\xbb\x4b\x6f\xb3\xcb\xda\xf5\x9b\xec\ +\x6e\x5e\x64\x45\x6d\x22\x92\x1d\x1e\x7b\xf2\x2a\x17\x56\x25\x0b\ +\xcd\x9c\xfb\x0f\x0a\x3a\xcd\x98\xa5\x08\x9e\xde\x19\x92\xa1\x68\ +\x2b\xe8\x17\x19\x71\xac\x38\xdc\x89\xd8\xe8\x15\x1c\x5f\x8a\xb8\ +\xd6\x2d\x78\x7e\xdb\x70\xe6\xb0\xe3\xc8\xa2\x62\xb5\x5f\x70\x60\ +\x5e\xb1\xb0\xa9\xb9\x31\x34\x3c\xd0\x91\x2c\x37\x23\xae\x5c\x7b\ +\x9e\x99\xb3\x8f\xe2\xb4\x46\x05\xe1\x43\x17\x3c\x05\xba\xbd\x2e\ +\xd7\xae\x5e\xe5\xe4\xa9\x93\xa8\x46\x63\x8f\xab\xd2\xc8\x01\x48\ +\x00\x7a\xfe\x0d\x64\x9b\x9b\x08\xb1\x8b\x60\x27\xa8\x0b\xcf\x96\ +\x8b\xde\xdf\x6e\x00\x89\xb5\x33\x18\x11\xe3\x6c\x46\x6d\xf6\x50\ +\x49\x02\xaa\xbe\xc1\xa3\x50\x30\xdc\x5d\xe7\xc8\xe1\x59\x36\x36\ +\xba\xcc\xce\x36\x68\xd6\x63\x9a\x8d\x06\x91\x56\x48\xa5\xc7\x6c\ +\xc0\x28\x0e\x41\x40\xa3\xb5\xee\xdd\x0d\x00\x77\x4a\x00\x88\xf4\ +\xef\x5b\x63\x3d\x6e\x3b\x8f\x89\xa2\x82\xfe\x60\xe0\x21\x23\x71\ +\x1d\x21\x07\x58\x6b\x78\xf6\xb1\xcf\x93\x6e\x6f\x51\xeb\x74\x38\ +\x7a\xea\x0c\x52\x6b\xae\x5d\xb9\xc6\xec\x4c\x8f\x03\x07\x0f\x04\ +\x4b\x74\x37\x29\xb6\xc1\x5e\xfb\x2c\xb1\x4f\xae\x3f\x19\x18\xc4\ +\xed\x1a\x16\x2f\xb9\xc1\x37\x82\x05\xe7\x41\x42\x2b\xcf\x33\x8a\ +\xc2\x7f\x37\x85\x99\xc0\xfe\x3b\xe7\xb0\x45\xc1\xfa\xfa\x3a\xc3\ +\x7e\x8f\x38\xd2\x0c\x07\x5d\x4c\x51\x30\xe8\xee\xf0\xf1\x8f\x7f\ +\x92\xfa\x4d\xe8\x90\x62\xf2\x75\x52\x93\x31\xa8\x2b\xde\x78\x3a\ +\xa6\x5e\xd3\xcc\xd4\x0c\xda\x26\x74\x07\x02\xa1\x22\x6a\xb1\xff\ +\x13\x56\xe6\x34\x37\x77\x2c\x43\xe3\xe8\x34\x3d\xa9\x21\x31\x39\ +\xb3\x6d\x49\x24\x25\xf7\x2c\x17\x7c\xee\xb2\x60\x98\x1b\x1a\x0d\ +\xc5\x6c\x4b\x22\x71\xcc\x37\x40\x4a\x49\x5c\x87\xcc\x38\xea\xda\ +\x10\x75\x6f\xc0\xcc\x11\x0f\xd3\x36\x26\x28\xfc\xfa\x20\xb5\x76\ +\x6b\x8d\xdd\xed\x2e\x8d\x46\x73\x6c\xae\xc2\x14\x3a\xd3\x39\x6a\ +\x2b\xe7\xe8\x3d\xfb\x31\x6f\x0c\x33\x4a\xfc\x5d\x3d\xdc\x5f\x43\ +\x63\x83\x6a\xaf\xc3\x51\xc7\x59\x87\x6e\x1c\x24\xae\xcf\x30\xac\ +\x18\x8a\x96\x1f\x53\x20\x44\x0d\x76\xd7\xc8\xf3\x9c\xf9\xf9\x16\ +\x4a\x48\x86\x69\x4e\xb3\xd5\x24\x8a\x6b\x48\x09\x5a\x69\x94\x56\ +\x28\x55\x2e\x7e\x94\xbe\x5b\x02\xdc\x31\xc7\xaf\xfc\xe7\x5f\xba\ +\xfc\xcd\xdf\xfa\x1d\x17\x22\x2d\x4f\x16\x71\x8c\xce\x53\xb4\x56\ +\xf4\xba\x3d\xe2\xd8\xa7\x71\x42\x09\xb2\x34\xc5\x59\xcb\x8d\x4b\ +\x17\x78\xee\xa9\x27\x38\x78\xec\x38\xf7\x9c\xb9\x1f\xb0\xf4\xba\ +\x5d\x66\x66\x67\x98\x9d\x9b\xa7\x56\xab\x21\x82\x74\xe8\x1e\x2a\ +\xeb\x0b\xec\xd0\xf2\x36\x7b\x7d\x69\x48\xe1\x20\x0b\xb4\xdb\x2c\ +\xcf\xca\x05\x9c\x0c\x87\x13\xbb\x39\x54\x5c\x8a\xc3\xc5\x3f\xec\ +\xf7\x28\xb2\x82\x34\x19\x92\xa5\x09\x79\x9e\x93\x0e\x87\x9e\x1c\ +\x34\xf0\xb0\xe4\xc7\x1f\x7f\x9c\xdd\x9d\x4d\x5e\xf7\xba\xd7\x04\ +\x67\x24\xbf\x95\x0e\x07\x03\x84\xd5\x1c\x69\x1d\x26\x8d\x3a\x90\ +\x6d\x52\xd8\x84\xd5\x7e\xca\x91\xa6\xe0\xcc\x61\xcd\xe5\x0d\xc3\ +\x56\x1f\x5a\x75\x41\x5c\x87\x61\x6a\x58\xe8\x48\x62\x51\x90\x18\ +\x98\xe9\x48\xd2\x02\x2e\xde\xcc\x39\xb9\x18\x11\xd5\x35\x47\x96\ +\x25\x97\x36\x04\x37\x7b\x8e\xb9\x39\xc3\x42\x4b\x92\x1a\xc1\xd2\ +\xbc\x40\x39\x83\x8a\x24\xa9\x75\xcc\xd4\x05\xf1\xf6\x73\x98\x85\ +\x13\x68\xeb\xfc\xe4\xa5\xd4\xdd\x77\x74\xfb\x5d\x6e\x5c\xbf\xc1\ +\xe2\xca\x12\x51\x50\xda\x11\x6e\xac\xdb\xe7\x1d\x97\x05\xa2\x36\ +\x87\x6a\x2e\x62\x07\x1b\x7e\xde\x8f\x46\xb8\x22\x34\x04\x73\x0f\ +\x0a\x12\xbe\xfb\xef\x6c\x81\x43\xd3\x98\x3b\x82\x94\xd2\xbf\x1e\ +\xa2\x54\xff\x35\x95\x06\xe0\xa0\x77\x8b\x24\x2b\x38\x71\x74\x96\ +\xc1\x30\x65\x98\x64\xb4\x42\x06\xe0\xc5\x40\x42\x19\x10\x4a\x01\ +\xa5\x15\x4a\x7e\x65\x90\x80\x77\x03\xc0\x9f\x76\x1a\xa0\xe5\x67\ +\x9d\x10\x27\x63\xad\x49\xa3\x08\xad\x73\x7a\xbd\x2e\xcb\xcb\xcb\ +\x68\xa1\xd0\x52\x92\x38\x6f\x1b\x55\xab\xd5\x18\x0e\x87\x5c\xfa\ +\xd2\xd3\x3c\xfd\xd8\x17\x58\x3c\x70\x88\x33\xe7\x1e\xc2\xda\x23\ +\xec\x6c\x78\xd7\xdb\x28\xd2\xd4\xeb\x8d\xe0\x33\xe8\xa8\xd7\xeb\ +\x88\x30\x66\xca\xd2\x64\xe2\xb5\x4d\x6e\xc8\x8b\xc9\xeb\x21\x4b\ +\x32\xac\x33\xb7\x2d\x03\xac\x31\xe5\xc2\x4f\x87\x03\xbf\xab\x67\ +\x69\xb9\xc3\x17\x81\xf9\x97\x0c\x07\x93\xc1\x47\x88\x52\x63\x60\ +\xf4\x7f\x1d\xcc\x35\xb5\xd6\x24\x49\x42\x14\x45\xe5\xe2\x97\x42\ +\xd0\x6e\x35\x50\x3b\x8e\x81\xcd\x69\x46\x0b\xcc\x35\x8e\x70\x2d\ +\xd9\x60\x6b\x70\x83\x47\x66\x87\xec\x0c\x0d\xc7\x0e\x48\xfa\x57\ +\x24\x43\x63\x58\x8c\x35\xf3\x73\x9a\x3f\xfa\x52\x4a\x2c\x04\x5a\ +\x28\xb6\x92\x82\x85\x19\xcd\xa1\x25\xc9\xe7\xae\xe6\xbc\xe9\x55\ +\x82\x53\x8b\x35\xae\xae\xf7\xd9\xe8\x49\x0e\x2d\x4a\xae\x6d\x17\ +\xb4\x1b\x8a\xd7\x9e\xd6\x7c\xea\xc9\x21\xe8\x88\x83\x6d\xc5\xd5\ +\xf5\x94\xa5\xee\x55\x62\x69\x29\xe2\xc8\x37\xf9\x8c\xf1\xce\x4d\ +\xc6\x90\x25\x39\x37\x6e\x5d\xe7\x4c\x72\xd6\x97\x01\x61\x14\x2b\ +\x03\x3e\xa0\x2a\xd9\x16\xcf\x1d\x64\xd8\x5b\xc5\xba\x08\x81\x9f\ +\x02\x08\x0a\x3f\x05\x70\x73\x58\xab\x11\xe4\x08\xd1\x05\x67\x98\ +\x39\x70\xaf\x9f\xed\x07\x4e\x86\x0d\xbd\x9b\x91\xe5\xb9\x73\x8e\ +\xac\x77\x83\x7b\x8f\x2f\x71\xed\xd6\x36\x0b\x73\x6d\x6a\x5a\xd3\ +\xee\xb4\x88\xe2\xc8\x97\x91\xd2\xef\xfe\x4a\xa9\xd1\xe2\x47\x29\ +\x75\x17\x09\x78\x87\x35\x02\x3f\xe5\xac\x78\xa7\x8a\x15\xb5\x2c\ +\x26\x8f\x52\x7a\x83\x3e\x47\xe2\x23\x9e\xcc\xa1\x14\x5a\x6a\x92\ +\x34\xa1\x16\xd7\x90\x5a\x7a\x96\x57\xa1\xb9\x7e\xf9\x12\xcf\x3f\ +\xf3\x34\xf7\xde\x7b\x86\x07\x1e\x3c\x4b\xdc\x6c\x12\xc5\x0d\xfa\ +\xa1\x57\x60\xad\x77\x17\xb2\xd6\x60\xb1\x6c\x6d\x6d\xb3\xd8\x8c\ +\x71\x26\x27\xd9\x5a\x9d\x1c\xe5\x5b\xc3\x70\x73\x75\xcc\xad\x17\ +\x90\xee\x6e\x70\x73\x3b\x63\xfe\xf4\x23\xde\xd9\x78\xbf\x06\xe1\ +\x3e\x53\x06\x29\x65\xb9\xb8\xa7\x17\x7f\xf5\xbb\x10\x82\x6b\x57\ +\x2f\xb2\xb9\x7e\x91\xe1\x30\x47\x87\x5d\x4b\xe2\x01\x41\xed\x4e\ +\x9b\x2d\xbb\x4e\x27\x6a\x23\x85\x22\xb7\x09\xf3\x22\xe3\x7a\x37\ +\x67\xb5\x9b\xb3\xbc\x14\x71\xaf\x86\x9b\x9b\x05\x87\x97\x35\xb5\ +\x3a\x18\x51\x90\x65\x96\xd8\xc1\x30\x13\xcc\xce\x48\x6a\x75\x87\ +\x1e\x3a\xd6\xb6\x1c\x89\xb1\xc4\xc6\xf2\x9a\x07\x22\x7e\xf3\x8f\ +\x0a\xd6\x07\x05\x0b\x73\xda\x6b\xf9\x39\x38\x79\x48\x83\x74\x18\ +\x61\xa8\xd7\x14\xfd\xd4\xd0\x4a\x6f\x30\x6c\xde\xe3\x53\x7b\x6b\ +\xfc\x2e\x2c\x04\xd6\x59\xb6\x37\xb7\xd9\xed\xed\x50\xaf\xd7\xbd\ +\x06\xdf\x74\x22\x15\x52\xfb\x78\xe1\x7e\xfa\x57\x9e\x0e\x29\x7c\ +\x1d\xc9\x8e\x6f\x00\x3a\x87\x75\xb5\x70\xbb\x44\xb1\x03\x4e\xd0\ +\x3e\xf4\x20\x08\x41\xee\x6c\xa5\x8f\x3b\x49\x69\x2a\x06\xb7\x28\ +\x6c\xce\xca\xd2\x0c\x52\xc2\x30\xcd\x68\x36\x9b\x7e\xb7\x0f\x4d\ +\x40\x21\xa5\x0f\x02\x01\x17\x20\xef\x8a\x82\xde\x61\x19\x80\x54\ +\x9f\xb5\xd6\x12\xd7\x62\x94\x2e\xd0\x3a\x26\x19\x0e\xfd\x0c\x37\ +\xaa\x91\xc8\x0c\x29\x15\x79\x96\xd1\x6a\xb6\x88\xa2\x08\x5b\x58\ +\xb4\x36\xe8\x48\x23\x73\x45\xbf\xd7\xe5\xe6\xb5\xcb\xd4\xe3\xd8\ +\x3b\x0d\x39\xdf\xb5\xf6\x02\x20\xd6\xd7\xe4\x45\xc1\x87\x3e\xf4\ +\x4b\xbc\xfb\xe1\x05\x94\x96\x0c\x12\xc3\x62\xa7\xc6\x20\x2f\xe8\ +\x67\x86\xa5\x4e\x8d\x41\x6a\x18\xe4\xe1\xf6\xcc\x32\xcc\x0d\xb3\ +\xda\x71\xf1\x8f\x36\x39\xf4\xc0\x57\xd3\x6a\xb5\x6f\xfb\x77\xec\ +\xb7\xc0\xa7\x03\x84\x0c\xbc\x76\x29\x25\xeb\xeb\xab\x5c\xbe\xf8\ +\x34\xce\x6d\xb3\xb2\x54\xe7\xea\xf5\x1d\xa4\x94\xd4\x74\x54\x3e\ +\xa6\xd3\x6e\x73\xc3\x5c\xa3\x2e\x0c\xbd\xe1\x25\x7a\xc9\x2d\x66\ +\x45\x8e\x2a\x04\xcf\xad\x6a\xce\xdc\x17\x13\x45\xf0\xda\x07\x1c\ +\x07\x0f\x28\xd2\xc2\xf1\xdc\x75\xc3\xfa\xba\x64\x5e\x14\x6c\xd8\ +\x82\xf9\x8e\xc3\x2a\x8d\x8b\x2c\x45\xa6\xb9\x7c\xab\xe0\xcc\x69\ +\x38\x78\x58\x73\xff\xf1\x82\x8b\xeb\x05\x6f\xf9\xaa\x88\xcb\x97\ +\x0a\x32\x24\xa7\x4e\x28\x76\x53\x47\x3f\x73\xd4\xea\x82\xf5\x6d\ +\xc3\xdc\xee\x33\x14\x73\x67\xca\xd2\x4a\x20\x02\x93\xd0\x91\xa4\ +\x29\x1b\xeb\xeb\x2c\x2f\x2d\xe3\x50\x8c\x71\xd6\x6e\xfc\x1e\x00\ +\x6a\xf6\x54\x48\xef\x23\x70\x59\x90\x23\x37\xc1\xa4\x24\x47\x88\ +\xd8\x97\x03\x56\xa3\xeb\x2d\x5a\x0b\x27\xc9\x0b\x13\x1a\x89\xce\ +\x6b\x42\x88\xb1\x21\x4b\x91\x6d\x23\x85\x65\x90\xe5\x9c\x3c\x38\ +\xc3\xee\x6e\xc2\x17\x9f\xb8\x41\xbb\xd9\x22\xd2\x5e\x0d\x48\x2a\ +\xaf\x11\xa8\x82\x28\xa8\x94\x02\xa9\xee\x96\x00\x77\xd4\xa1\xb5\ +\xfa\x6c\x5e\x58\xd3\xd6\x4a\xe9\x58\xa1\x53\x9f\x0e\x1b\x63\xa8\ +\xd5\x6a\xc8\x61\x1f\xad\x15\x79\x9e\xa3\x94\x22\xd6\x31\x56\x1b\ +\x8a\xc0\xee\xd2\x5a\x95\x40\x91\x5a\xac\x83\xb3\x8d\x0d\x2e\x3c\ +\x26\x34\x8c\x2c\x4a\x2b\xe6\xe7\xe7\xb9\xb2\x35\xe4\xbe\x83\x6d\ +\x0e\xcd\x37\x58\xef\xa6\xd4\xeb\x9a\x23\xad\x98\x5b\xbb\x29\xcd\ +\x5a\xc4\xa1\x56\x8d\xd5\x6e\x42\xab\x11\x31\xdb\x8a\xd8\xec\x65\ +\x1c\xad\x0f\xe9\x5f\xf8\x03\xba\xb3\xa7\x39\x70\xec\x24\x91\x56\ +\xfb\x2e\xf0\xe9\xdd\xbd\xba\xf0\x9d\xf3\x0e\x37\x1b\xeb\xb7\xb8\ +\x7a\xf5\x79\x8a\x7c\x93\x85\xd9\x3a\x59\x1a\xa1\x22\xc5\x70\x38\ +\xc4\x39\x87\x8a\x63\x94\xf0\xcf\x31\x3b\x3b\x83\xb5\x96\xed\xc1\ +\x25\x62\x9b\x71\xa0\xb6\xc8\x76\xd1\x67\x39\x8e\x18\x76\xe1\xfa\ +\x7a\x9f\x95\x05\xcd\x43\xaf\xaa\x73\xfd\x96\x61\x7e\x06\xea\xd2\ +\xb2\x39\x94\x34\x84\xa4\x2d\x14\x17\x37\x0c\xa7\x4f\x28\xce\xdc\ +\x13\xb3\xd9\x37\xdc\x7b\x44\x70\xe4\x90\xe6\xda\x9a\xe1\xcc\x69\ +\xc5\xea\x0d\xc3\xfa\x4e\x4a\xe6\x2c\x59\xea\xe8\xb5\x25\x71\x43\ +\xd0\x59\x50\x3c\x7f\x2d\x65\x63\x1b\x5e\x23\xae\x72\x2b\x92\x14\ +\xc2\xa3\x36\x15\x0e\x23\x85\xf7\x00\x70\x86\x8d\xd5\x0d\xf2\xd3\ +\xfe\xf3\x29\xff\xfe\x6a\xe7\x45\x08\x54\xad\x83\x6a\x68\x6c\xb2\ +\xea\x45\x3f\xec\xac\x47\x02\xba\x0c\xc9\xae\xb7\xf6\x72\x7e\x0a\ +\xd0\x39\xf4\x06\xa4\x94\x24\x79\x28\xd9\x44\xb0\x61\x16\x6e\x64\ +\x2e\xc5\xd6\xad\xe7\x89\xb5\xe4\xd0\xc9\x15\xae\x5e\xdf\x64\x61\ +\xa6\x81\x52\x92\x56\xab\x89\xd2\x41\x14\x54\x56\x16\xbe\x94\x08\ +\xef\x4b\x79\xb7\x04\xb8\x93\x8e\x0f\xff\x3f\x1f\xec\x7d\xdf\xbb\ +\x7f\xe0\x89\x58\x47\xe7\x73\x95\xa1\x43\xda\xdf\xeb\xf5\x88\xa2\ +\x18\xad\x22\x94\xca\xc8\xf2\xdc\x77\xa8\x63\x4d\x56\x48\x74\x11\ +\x79\xae\xb7\xd6\xbe\xab\x6c\x21\x8a\x63\xa4\xf1\xfd\x02\x6f\xcf\ +\xa5\x4a\x09\x72\xe3\x1c\x8b\x8b\x73\x64\xd9\x0d\x6a\x5a\x61\x9c\ +\x65\xb6\x1d\xe1\x80\xcc\x3a\xe6\xda\x3e\x0d\xcd\x8d\x61\xbe\x1d\ +\x83\x94\x14\x0e\x3a\xad\x18\x29\x04\x1d\x67\xd9\xd9\xfd\x13\x3e\ +\xf7\x89\x27\xa9\x2f\x9d\xe0\x9e\x13\xc7\x99\x99\x99\x0f\xe2\x93\ +\x72\xcf\x82\x37\xd6\x61\x4c\x41\x3a\x1c\x70\xf5\xda\x75\xf2\xac\ +\x4b\xaf\xbb\x8a\x33\x29\xad\x96\xa2\x31\xd3\xc2\x39\xc9\x28\xa9\ +\x30\xc6\x90\xe6\x19\x4b\xb5\x18\xeb\x40\x49\xc1\xdc\xdc\x0c\xd7\ +\xd3\x75\xde\x7c\xe8\x1d\x28\xa1\x51\x40\x5b\x08\xb4\xd0\x3c\xd7\ +\xbf\x49\x6f\xf8\x24\x27\x9a\x39\x83\xc2\x31\xbf\xe4\x3d\xea\xef\ +\x3b\xab\xe8\x2c\x38\x7e\xef\x93\x8a\xdd\x1d\x47\xa3\xae\xa8\x37\ +\x7d\x03\xed\x6b\xce\x1b\xd6\x76\x34\xfd\x41\xce\xc9\x23\x1a\xe7\ +\x04\x49\x6a\xe8\x34\x25\x71\x2c\xf8\xb5\xdf\x31\xbc\x61\xce\xd1\ +\x6c\xfa\xf7\x61\x76\x46\xb0\xd5\x85\x2b\x37\x12\x3a\x47\x2f\x22\ +\x9a\x67\xd1\x42\x50\xe0\x7b\x14\x36\x68\xa7\xed\xec\xee\x92\xa6\ +\x29\x8d\x7a\x83\x91\x22\x83\x90\xb2\x42\xcc\xf2\x41\x20\x9a\x39\ +\xca\x70\xb0\x8e\x57\x47\xa8\x05\x0a\x46\x1d\xdc\xb8\x1c\x70\xa2\ +\xc6\xd2\xbd\x8f\xfa\x00\x90\x65\x01\x09\x38\x6a\xae\x8a\x92\x58\ +\xac\x8a\x55\x6a\x35\xcd\x70\x90\xb1\xb2\xd8\xa1\x30\x16\x29\x15\ +\xad\x56\xcb\x97\x52\xc1\x0f\x40\x08\xca\xc5\x2f\x85\xdc\xb7\x64\ +\xbb\x1b\x00\x5e\xe1\xc3\x58\xf7\x19\x27\xc4\x79\xa9\x35\x5a\xc7\ +\x68\x9d\x32\x18\x0c\x58\x5a\x5e\xa2\x16\x2b\x92\x54\x92\x24\x89\ +\x0f\x00\x51\x1d\xa5\x52\xb4\xca\x3d\xbf\x5b\x69\x8c\xb5\x5e\x47\ +\x2e\xf2\xca\x2f\x45\xd0\xf7\xb6\xe1\x02\x2c\xac\x43\xe1\x58\x5c\ +\x9c\x27\xb9\x74\x8d\x5a\xa4\xd8\x49\x72\x0e\xce\x34\xe8\x65\x05\ +\xbd\xd4\xb0\x32\x5b\xa3\x97\x16\xf4\x73\xc3\x81\x4e\x83\xee\x30\ +\xa3\x97\x59\x0e\xce\xd5\xe9\x0e\x73\x92\x4c\x70\xcf\xd1\x05\x12\ +\xbb\xc1\xaf\xfd\xf1\x1f\x32\xe8\x5d\x06\x34\x71\xdc\x44\xab\x88\ +\x23\xc7\xce\x70\xea\xd4\x29\x00\xae\x5d\x78\x92\xee\xad\xe7\x69\ +\xd7\x2d\xca\xa6\x3c\xf3\xc5\x5b\xd0\x6c\xf2\xc0\x7d\x4b\xa4\x09\ +\xcc\xcf\x37\x48\x53\x43\x9a\xe5\xcc\xcc\xb6\x49\xd3\x9c\x95\xe5\ +\x0e\xc9\x30\x21\xd2\xde\xa9\x07\x1c\x0b\x73\x73\x68\xad\x69\x45\ +\x0d\xac\xb3\x0c\x8b\x8c\x95\xc6\x0a\x49\xba\x83\x1b\x5e\xe1\xd6\ +\xcd\x94\x57\x3d\x28\x48\x72\xc7\x91\x65\x4d\x3f\x29\xc8\x73\xc1\ +\xeb\x1e\x8d\x39\xb0\x9c\xf1\xf3\xbf\x28\xe8\x34\x35\xcb\x4b\x70\ +\x7d\xcd\xf0\x89\x4f\xc4\x3c\xfb\x8c\xe0\xe0\xf1\x9c\xff\xe1\xbd\ +\x8e\xad\x5d\x98\x5f\xb1\x1c\x5d\x32\x6c\x0e\x24\xb5\xba\xe5\x8b\ +\xcf\x68\xbe\xee\x6b\x2d\xf9\xd0\x32\xd3\x86\xd8\x09\x3e\xff\x04\ +\xbc\xf5\xdc\x35\xc4\xfc\x43\x14\x42\xa0\x84\xa4\x10\x02\x2b\x73\ +\x14\x5e\x40\xa5\xbb\xd3\x63\x76\x76\x0e\x59\x01\xed\x54\x71\x01\ +\x00\xf1\xec\x49\x92\x1b\x8f\xf9\xa6\x8b\x30\xbe\xf1\x27\x72\xef\ +\x5a\x84\x45\xe0\x51\x7b\xf3\x47\x1e\xf4\x4d\xd6\xa2\x18\x37\xfe\ +\xca\x66\xac\xc3\x19\x41\x2b\xde\xc0\x45\x92\xee\xee\x90\x7b\x4f\ +\xaf\xb0\xbe\xe6\xf1\x23\xed\x76\x03\xad\xf5\x78\xe1\x0b\xe1\x77\ +\x7e\x44\xc8\xcc\xf8\x8a\xe0\x00\xee\xea\x01\x7c\x39\x8d\x40\x2d\ +\x3f\x53\xe4\xc6\x5b\x37\x85\x91\x4d\x92\x0e\x89\xa3\x98\x66\xbb\ +\xcd\x6c\xa7\x43\xa3\x56\xc3\x18\x83\x8e\x22\xb4\x56\x48\x1d\x7b\ +\xcd\x77\xad\x70\xd6\x61\x8d\xa5\x16\x45\x44\xb5\x88\x5a\x14\x11\ +\xd7\x6a\x44\x71\x0d\x1d\x45\xd4\x6b\x31\xf5\x28\x62\x69\x69\x91\ +\x9b\xdd\x14\xad\x24\xf7\x2c\xb7\xd9\x18\x66\x44\x5a\x71\x7c\xb1\ +\xc9\xd6\x30\xa5\x16\x29\x8e\x2d\xb4\xd8\xe8\x27\xd4\x62\xc5\xf1\ +\xc5\x06\x9b\xfd\xd4\xff\xbc\xdc\x62\x7b\x37\xe1\xe4\x72\x87\x63\ +\x0b\x1d\x92\xc4\x32\x3f\xa3\x99\x6d\xe5\x6c\x6f\x5f\xa1\xbb\xbb\ +\x49\x1c\xc7\xde\x56\x7b\xe3\x19\x5e\x73\xdc\xb1\xd4\x34\x9c\x3c\ +\xd4\xe6\xdb\xbf\xf6\x38\x5b\x5b\x43\x0a\xe3\x58\x5e\xe9\xb0\xdb\ +\xcb\x88\x22\xcd\xca\xf2\x0c\xdd\x5e\x82\x8e\x24\x0b\xb3\x4d\x06\ +\xfd\x01\x51\x2d\xf2\x12\xd6\x71\xcc\xcc\x6c\x87\x38\x8e\xd8\x48\ +\xb7\x51\x52\x71\xb8\x79\x80\xf5\xee\x25\x36\xd6\x7f\x9b\x83\xf6\ +\x2a\x97\x2e\x18\xf2\xdc\xf2\xd0\x39\xcd\x30\x2f\x78\xee\x4b\x0d\ +\xda\xb1\x64\x67\x90\x72\xef\x69\xc5\x5f\x7a\xa7\xe4\xe2\xad\x82\ +\xa8\xe9\x78\xe0\x3e\xcd\xa0\x30\x1c\x72\x05\xe9\x5a\xc4\x67\x1e\ +\xcb\x98\x5f\x70\x3c\x70\x36\xe6\xda\x66\x8e\xaa\x39\x1e\xb8\x57\ +\xf2\x87\xd7\x9b\x7c\xec\x4b\x6d\xbe\xf8\xac\xe2\x33\x8f\xc3\x2c\ +\x96\x76\x57\xf0\xf1\x5f\x7b\x9a\xa8\x5e\xa7\x56\xaf\x13\xd7\x6b\ +\xc4\xf5\x06\x71\xad\x8e\xd4\x1a\x63\x61\x67\xc7\xbb\xfb\x3a\x2a\ +\xee\xcf\xc2\xeb\x3b\x8c\x60\x81\x7a\xee\x5e\x8c\x3b\x80\x65\x0e\ +\x5c\x17\xe1\xd6\xc0\x75\x71\x62\x1e\xc7\x41\x1c\xb3\x2c\x9c\x78\ +\x10\x5d\xab\x33\xcc\xf3\x8a\x93\xb4\xb7\x2c\xb7\xc2\x37\x02\x5c\ +\xb1\xc1\xf5\xcb\x37\x89\x22\xc5\xd9\xb3\x07\xb8\x72\x79\x13\x21\ +\x85\x2f\x01\x9a\xcd\xb2\xf3\x2f\x46\x69\xff\x78\xf1\x23\x84\xb8\ +\x8b\x04\xbc\xf3\x1a\x81\xf2\xb3\xc6\x38\xea\xb5\x08\xa1\x12\x94\ +\x12\x24\x49\xe2\xb1\xdc\x3a\x0a\x70\xce\x98\xa2\xc8\xa9\xd5\x6a\ +\x9e\xe9\x25\xf1\x1f\xb2\x12\xde\x6c\xd2\x41\xad\x1e\x61\x0b\x87\ +\x15\x0e\xeb\x2c\x9a\xd0\x08\x0c\xdf\x57\x96\x97\xb9\xb0\x9e\xa0\ +\x23\x48\x0b\xc3\x62\x27\xc6\x02\xa9\x75\xcc\x77\x9a\x7e\x0c\x68\ +\x1d\x8b\x9d\xba\x37\xdf\x74\x8e\x85\x4e\x0d\x84\x20\xb3\x86\xf9\ +\x4e\x4c\x2d\x12\x9c\x5a\x8e\x79\x6c\x35\xe3\xf8\xe1\x19\x84\x84\ +\xd9\x76\x87\xe3\xc7\x4f\x10\x45\x11\xdb\xcf\x3f\xce\x72\xa7\xc0\ +\x89\x56\x28\x31\x04\x8b\x33\x0d\xce\x1c\x6e\x70\xe5\x46\x9f\xf9\ +\xd9\x06\x33\x33\x0d\xa4\x70\xe4\xc6\x30\xd3\xae\x23\xa4\xa0\xd9\ +\x8c\xd8\xed\xf5\xfd\xee\xe5\x04\x42\x09\x94\x96\xcc\x74\x3a\xd4\ +\x65\x4c\x4b\xb5\x70\x66\x40\xcb\xae\xd3\x6a\x1e\xa5\x1e\xcd\x62\ +\x6c\x9b\x4b\x57\x9e\xe6\xde\xb3\x1b\x1c\x3d\x21\xb9\xf0\x5c\xce\ +\x4f\x7f\x40\xf2\xae\x77\xc1\xa1\x43\x82\xe5\xa3\x70\x6c\x01\x1b\ +\xe1\xb6\x00\x00\x1c\xe1\x49\x44\x41\x54\x20\x89\xea\x8e\xd4\x3a\ +\x96\x16\x61\xeb\x82\x20\xee\xe7\x3c\x75\x35\x66\x7e\xb9\xe0\x33\ +\xbf\xeb\xb8\x76\xb3\x8e\xac\x41\x7f\xdd\xb0\x7c\xff\x32\xbf\xbb\ +\xa6\xb8\x6f\x73\x8d\x37\xbf\x66\x89\x62\x7b\xc8\xe6\x8d\x2e\x6b\ +\xbd\x8c\xa2\xb7\x4d\xbd\x33\x8f\x05\x54\x10\x1b\x71\x46\xa1\x94\ +\xa0\xd7\xed\x92\x9b\x02\x1d\xe9\x09\x4a\xb0\x08\xc2\xa1\x20\x88\ +\x66\x0f\xfa\x5b\x5c\xec\x07\x7b\x21\xd3\xc1\x7a\x82\x8e\xa1\xc6\ +\xa1\x57\xbd\x15\x21\x04\xfd\x24\x19\xfb\x0f\x38\x81\x94\x0e\x13\ +\x4a\x81\x6c\xfb\x19\x56\x56\x3a\x48\x21\xd8\xdd\x4d\x58\x5e\x6e\ +\x33\x18\x66\x68\xad\x69\x36\x9b\xa3\x5a\x7f\x7a\xe1\x8f\xfa\x13\ +\x77\x15\x81\xee\xc0\x00\xf0\x44\x56\x14\x46\x29\x49\xac\xbd\x8e\ +\x7b\x96\x7a\x99\xe8\x58\x2b\xa4\xd6\x28\xad\x29\x8a\x22\x7c\xc8\ +\x6d\x1a\x8d\x06\xb5\x5a\x44\x1c\xc7\xe3\xa6\x9b\x95\x5e\xfa\x39\ +\x52\xc4\x51\x4c\x14\x45\x44\xb1\xf6\x7a\x70\xb1\x66\x69\x71\x81\ +\x7a\xbd\x86\x35\x92\xc4\x38\x16\x3b\x0d\x6a\x5a\x93\x1a\xcb\x62\ +\xa7\x46\xac\x04\x49\x6e\x58\xe8\xd4\x89\xa4\x24\xcd\x1c\xf3\x6d\ +\x0f\x2c\x19\x66\x96\x85\x99\x3a\x42\x6a\x4e\x1e\x68\xa2\x10\x64\ +\xc6\x91\x26\x29\xad\x99\x45\xee\x3d\x7d\x96\x8b\x97\xae\xf2\xe4\ +\x63\x9f\x62\x65\xbe\x45\x92\x17\x2c\xce\xd4\x89\x62\x49\x2f\xb3\ +\x7c\xdd\xc3\x87\x58\x5f\xed\xb2\xbd\x9b\x30\x3f\x5b\x47\x29\x45\ +\x9e\x1a\x66\x3b\x75\xe2\x48\x51\xaf\xd7\x18\xf4\xfb\xb4\x9b\x2d\ +\x66\x67\x3b\xcc\xcd\xcc\xb0\xbc\xb8\xc8\xc2\xc2\x1c\xb1\xaa\xd1\ +\xd2\x75\xac\x8c\x38\x7d\xe8\x1b\x38\x72\xf0\x6d\x74\xe6\x1e\xe5\ +\xe1\x83\xaf\xe5\xc6\xc5\x63\x6c\xec\x38\x96\x56\x24\x8f\xbe\x3e\ +\x27\x4b\x1d\x4f\x7e\x41\x23\xa3\x82\x81\x11\xcc\x77\x0e\x52\x6f\ +\x1b\x5c\x3d\xe3\xd0\x8a\xa3\xc8\x1c\xf5\xe5\x26\x5f\x38\xf4\x3a\ +\xfe\xc5\x13\x0f\x71\xe1\x6a\x87\xe3\x6b\x39\x9d\xeb\x86\xf9\x61\ +\x4e\xfb\xc8\x02\xcd\xba\xe4\xcc\xe1\x3a\xa7\x4e\x2d\xb1\x7c\x7a\ +\x99\xe5\x87\x0e\xf3\xfa\xb7\xde\x47\x3d\x5d\x25\x8a\x63\x74\xbd\ +\x4e\x54\xab\x51\xab\xc5\xc4\x71\x8c\x54\x9a\x61\x92\x90\x1b\xe3\ +\x53\xf6\xca\x97\x9f\x04\xfa\x5a\x5c\xc5\x0d\x54\x63\x01\xe7\x8a\ +\xb0\x67\x0a\x84\xd3\x20\x0a\x10\x92\xe6\xdc\x22\x0b\x47\xcf\x81\ +\x10\x0c\xb2\x7c\xe2\x79\x84\xf0\x86\x30\x42\x08\x6e\x5d\x79\x02\ +\x87\xe3\xd2\x95\x4d\x3e\xf9\x07\xcf\xf1\xd8\x13\x57\xf9\xbd\x4f\ +\x3e\x4b\x9e\xfb\xeb\x43\x0a\x5f\xef\x7b\x6b\x30\xa6\xcf\x67\x78\ +\x37\x00\xdc\x61\xc7\x07\x7f\xee\xdf\x0f\x8b\xbc\xb8\x20\xc3\xac\ +\x36\x52\x12\x19\xb2\x00\xad\xb5\x4f\xe9\xb4\xf4\x36\xd1\x52\x51\ +\xab\x45\xd4\xeb\x9e\xfa\x59\xaf\xd7\xd1\x91\x6f\xf8\x58\x67\xfd\ +\xfc\x37\xf2\x04\x10\x2d\x03\x19\x24\x8a\x88\x94\xa6\xd5\x6a\x31\ +\x3f\x3f\xc7\x6e\x96\x73\x72\xa9\xc5\xad\x9d\x84\x28\x56\x9c\x58\ +\x6e\xb1\xba\x93\xa0\xb5\xe4\x9e\x95\x16\x6b\xbb\x5e\x66\xfa\xc4\ +\x81\x16\x6b\x3d\x5f\x97\x9f\x3a\xd8\x61\x75\x27\x41\x48\xc1\xab\ +\x4e\x2f\xb1\xd2\xb2\xac\xae\x0d\xa8\xd7\x5b\xbc\xfa\x91\xaf\xe3\ +\xda\xd5\x8b\x3c\xf7\xcc\x27\x78\xea\x6a\x9f\x9b\x5b\x29\xc7\x0e\ +\xcf\xb1\xba\x3b\x24\xd6\x8a\x23\xcb\x6d\x9a\x75\xcd\xf1\xa5\x1a\ +\x5b\xbb\x05\xc3\x61\x46\xa7\x1d\x73\xf2\x9e\x65\x92\xa2\xa0\x33\ +\x53\xe7\xde\x53\xcb\xf4\xfb\x03\x5a\x9d\x16\xf5\x66\x83\x5a\xad\ +\x41\x14\xd5\x98\x9f\x9f\xe7\xe6\x70\x95\x48\xc6\x9c\xe8\x1c\x67\ +\x33\xeb\x13\x69\xc5\x91\xf6\x02\x99\xe9\xa1\x93\x83\x14\xc3\x45\ +\x56\x37\x12\xe6\x17\x05\x3f\xfe\xb7\x2d\x0f\xbd\x29\xa7\x3d\x6f\ +\x59\x6c\x75\xf8\xc3\xc7\x6b\x3c\xf3\xac\xe0\xc9\xcf\xd7\x78\xec\ +\x71\x47\xbc\xdc\x64\xeb\x7b\xde\x42\x7a\x74\x81\xc6\x57\x9d\x21\ +\xfd\xeb\x6f\xe7\xe6\x7d\x07\x99\xb3\x29\x07\xda\x0d\xd6\x84\x20\ +\x5a\xdb\xe2\xdc\xe9\x45\x56\x57\xfb\x58\x03\x07\xe6\xdb\xac\x6e\ +\xa7\x30\x58\x23\xaa\xd7\x89\xe3\xd8\x6b\xef\xd7\xeb\x44\x35\x2f\ +\xb8\x61\x8a\x02\x93\xe4\xe5\x14\xb0\xd4\x58\x11\x32\x2c\x0e\x01\ +\x52\x13\x77\x22\x04\x3d\xac\x9b\xc1\xba\x83\x58\x66\x90\xf4\x80\ +\x35\x8e\x3d\xf4\x66\x4f\x65\x1e\x0e\x43\xdd\x2f\x43\x90\x10\x38\ +\xeb\x4b\x81\x4b\xcf\x5f\xe4\x47\xff\xa7\x9f\xe5\xaf\xfd\x8f\x1f\ +\xe1\xa7\x3e\xf0\x79\x3e\xf1\x99\x5d\x3e\xf1\xe9\x84\xed\xfe\x01\ +\xfe\xce\xdf\xfc\x31\xea\xf5\xc6\xed\x16\xfe\x9e\xe9\xcc\xdd\x12\ +\xe0\x0e\x3a\xf2\xdc\x3e\xae\x95\x3a\x2d\xb5\x42\xa9\x18\x25\x35\ +\xc3\x64\xc8\x5c\x6d\x06\xa5\x34\x5a\x6a\x8c\x35\x25\xc8\x46\x29\ +\x85\x8e\x22\x62\xa5\x48\x95\xc2\x18\xe3\x5d\x84\x94\xf6\x26\x23\ +\x58\x84\xf2\x9d\x65\x94\x43\x38\x85\x52\x8e\xa5\xa5\x05\x36\x7b\ +\x7d\xfa\xb9\x63\x71\xb6\x8e\xb3\x82\x61\xea\x58\x9c\xa9\x79\x78\ +\x69\xe6\x98\x6f\xd5\x71\xd2\x31\xc8\x2d\x0b\x6d\x8f\x59\xef\xa7\ +\xc6\x97\x03\xc0\x30\x37\xbc\xe1\xc1\x45\x3e\xfc\xff\xad\x72\xf2\ +\xe4\x69\xae\x5c\x79\x92\xb5\x1b\xcf\x70\x68\xb9\x4d\x76\xf6\x08\ +\xbf\xf7\xd4\x16\xf7\x9d\x98\xe3\xd0\xf2\x2c\x52\x58\xa4\x84\x13\ +\x87\x67\x79\xc7\x1b\xe0\xdf\xff\xc6\x55\xce\xdf\xbf\x4c\xb3\x11\ +\x53\x18\xc3\xfc\x6c\x0b\xa5\xa0\x51\xd7\x6c\x6f\xef\x86\x00\xa8\ +\xcb\x8b\x75\x71\x61\x9e\xe1\xc5\x2e\xb1\x8e\x48\x6d\xc6\x42\x6d\ +\x0e\x29\x25\x03\x9b\xb3\x58\x5f\x24\xb3\x11\x9f\xfb\xc3\x67\xf9\ +\xce\xb3\x9b\xd4\x1b\x8e\xfb\x1f\x2e\x48\x33\xc1\x95\x4b\x75\x3e\ +\xf6\x91\x7b\x59\xec\x9f\xe3\x13\xbf\xb0\xc2\x8d\x0b\x9f\xa4\x75\ +\x60\x96\x9b\xdf\xfd\xd5\xec\x1c\x98\xa5\x99\xf9\x81\xfa\x50\x4a\ +\xae\x7c\xdf\x5f\x20\xff\xc3\xa7\x89\x7b\x09\x59\xbb\x43\xdb\x18\ +\xa2\x66\x4c\x2c\x34\x49\x5e\x30\x48\x0b\x66\x3a\x35\x8a\xee\x2d\ +\xa2\x48\x63\x9d\xf3\x6a\xee\xc1\xdf\xd1\x15\x06\x27\x24\xfd\x5e\ +\x9f\xd9\xf9\x59\x50\x1a\x25\xbc\x66\x83\x28\x05\x43\x3c\x3a\x30\ +\x6a\x2f\x93\xac\x3e\x85\x0b\x5c\x00\xa8\x03\xbb\x34\xda\x4b\x1c\ +\x39\xff\x56\xa4\x94\xec\xf6\x13\xc4\x48\x6d\xc8\x0a\xdf\x33\x0c\ +\x52\x80\x27\x0f\x2f\xf0\xe9\x4f\xfe\x06\xf5\x9a\x0f\x3e\x23\x99\ +\xff\xb2\xe4\xd8\x67\x2c\x3b\xf5\xf3\x5d\x32\xd0\x9d\x78\x08\xe9\ +\x9e\x70\xf0\x1d\x91\xf2\x35\xa5\xd2\x92\x2c\x4d\x51\x5a\xa2\xb5\ +\x22\x8a\x14\xc3\x61\xea\xc1\x34\xc2\xf7\x05\xa4\x56\x28\x1d\xa3\ +\x54\x54\xea\xc1\xcf\xcd\xcc\xf8\xb1\x9f\x31\x18\x63\xc2\xcf\xb6\ +\xc4\x0a\x2c\x2f\x2d\x79\x03\xd2\xc2\x72\x74\xb1\xc9\xf6\x20\x63\ +\x27\xc9\x39\x36\xdf\x62\x67\x50\xb0\x93\x64\x1c\x5d\x68\xb3\x9b\ +\x64\xec\x0e\x33\x8e\xad\xcc\xd0\x1d\x16\xec\x0e\x32\x8e\xaf\xb4\ +\xe9\xa5\x86\x9d\x61\xce\xeb\xee\x5b\xe1\xf7\x9f\xd8\xe5\xc6\xcd\ +\x0b\x3c\xfa\xd0\x01\x3a\xf7\x2c\x31\x1c\x1a\x5e\xf7\xea\x39\x7e\ +\xe5\x63\x5d\xfe\xf8\x4b\x1b\x7c\xfb\xdb\xee\x63\x6b\x63\xc0\x6e\ +\x3f\xe7\xf0\x4a\x83\xfb\x4f\x2a\x0e\xcf\xdd\xe4\xea\xcd\x21\xaf\ +\x39\xdf\x64\x7b\x37\xe1\xe8\xc1\x59\xba\xfd\x94\x38\x56\x6c\x6f\ +\xef\xe0\x8c\x23\xaa\x47\xe5\x0e\xb6\xb8\xb8\xc0\x25\xbb\x43\xac\ +\x62\x7a\xf9\x80\x63\x9d\xc3\xff\x7f\x7b\x57\x1e\x24\xc7\x55\x9f\ +\xbf\x77\xf4\x5c\x3b\xdd\x33\x7b\xef\xca\xb6\x4e\xc7\x92\x6c\x07\ +\xc7\x31\xb6\x29\x0c\x16\x14\x71\x20\x55\x4e\x0a\x88\x8b\xc3\x60\ +\x13\x1c\x08\x55\x84\x84\x22\x84\x82\xfc\x81\xa9\x04\x02\x14\x49\ +\x08\x54\xa8\x84\x24\x80\x03\xa1\x9c\x8a\x03\x4e\x11\x42\x52\x54\ +\x1c\x55\x62\x07\x83\x2d\xc9\x36\xb6\x25\x59\x5a\xad\x56\xd2\x4a\ +\x7b\x6a\x67\x77\xe7\x9e\xee\x7e\xef\xe5\x8f\xf7\xba\xa7\x67\xb6\ +\x67\x0f\xad\x5c\x20\x69\x9e\xaa\x35\x33\x3d\x3b\xb3\xb3\x3d\xef\ +\xfb\x7e\xf7\xef\x87\xb2\x5b\x45\xc5\xab\x62\xd4\x1e\x42\x82\x5a\ +\x98\x9e\xdc\x8d\xef\xff\x43\x3f\x12\xf6\x32\x5c\x55\x45\x0f\x86\ +\x31\x7f\x76\x10\x5b\xc8\x0e\xbc\x76\xe4\x66\x9c\xaf\x5d\x8b\xe7\ +\xca\x15\xec\xef\x5f\x44\xad\xcf\x01\x2f\x37\x90\x18\xee\x83\xb7\ +\x5c\x85\x2c\x55\x90\xde\x32\x84\x99\xdb\xae\x87\xac\xba\x50\xc7\ +\xa7\x31\x6c\x53\x28\xa1\xe0\xe4\x93\xa8\x16\x04\x16\x8b\x35\x64\ +\x7a\x12\x28\x2c\x2c\x23\x51\x5c\x40\x4f\x6e\x50\x67\x2b\x2a\xdd\ +\x3c\x54\x11\x9d\x6d\xd7\x68\x34\xb4\xef\x85\x02\x04\xd4\xc4\xec\ +\x09\x00\x5d\x6c\x04\x30\x58\xce\xa8\xe9\xf8\xe3\x43\x29\x0b\x20\ +\x1e\x94\xe2\xd8\x7a\xcb\x9b\x61\x25\xd2\x28\x56\xab\xf0\x94\x08\ +\xbd\xff\x06\xff\x7a\x26\x24\x51\xd8\x36\xda\x8f\x04\x23\xeb\x02\ +\x7d\xdc\x63\xb4\x0c\x4d\xef\x12\xc0\xcf\x11\x01\xb0\x17\x3c\x5f\ +\x19\x87\x1f\x07\x33\xe9\xbf\x8c\x59\xc6\xd9\xc7\xa0\x94\xd6\x00\ +\x88\x4e\x20\x82\xc5\x4c\xeb\x67\xc6\x74\xec\x1f\x04\xe9\x74\x0a\ +\xd2\x8c\x19\x03\x82\xd9\xf2\xcd\x63\x74\x64\x18\x85\x23\x63\xb8\ +\x69\x47\x2f\xc6\x67\x4a\xc8\x3b\x49\x6c\x1f\x71\x70\x6a\xb6\x8c\ +\x9c\x9d\xc0\xb6\x51\x1b\xa7\x67\xcb\x70\xb2\x49\x6c\x1f\xc9\x61\ +\x62\xbe\x8c\x7c\x36\x81\xad\xc3\x59\x4c\xcc\x95\x90\xcf\xa6\x70\ +\xd5\x90\x8d\xd9\xc5\x0a\x6e\xda\x69\xe3\x99\x69\x81\x7a\x5d\x22\ +\x9d\x4e\x60\xcb\x68\x06\x4b\xcb\x55\xdc\xb0\x67\x18\xcf\x8c\xcf\ +\xe1\x15\x13\xf3\xb8\x6a\x28\x87\xd1\xc1\x2c\x4e\x9e\x5b\xc6\xc8\ +\x40\x0f\x1e\xb8\xfb\x5a\xfc\xc9\xb7\x8e\xe0\xc6\x3d\xfd\xd8\x71\ +\xcd\x00\xce\xcd\x2c\xc1\x71\x52\xb8\x6e\xd7\x30\x6a\xf5\x3a\xca\ +\xe5\x32\xf2\xf9\x5c\xa8\x01\x0c\x0c\xf4\xe3\x40\xed\x20\x12\x34\ +\x81\x1d\xb9\x41\x4c\x95\x67\x90\x4f\xe4\x30\xec\x0c\xe0\x6c\x75\ +\x06\x7d\xc9\x5e\xfc\xc6\xd5\x6f\xc0\xe1\xc2\x29\xa4\x2a\x19\xf4\ +\x58\x19\x14\x6a\x05\xbc\x22\xb7\x05\xc3\x3d\xfd\x38\x59\x3e\x8d\ +\xfe\x54\x3f\xee\xbe\xe5\x13\x18\x3b\xf2\xb7\x38\xf8\xf8\x4f\xb1\ +\xe5\xcd\x77\xa2\x3c\x3e\x1d\x36\x31\x9d\xd9\xff\x0c\x88\xd4\x0d\ +\x46\x16\x9e\x3a\x0a\xce\x3c\x3c\xf2\x3f\x75\x1c\x3a\x3a\x1d\xe6\ +\x39\x58\x56\x02\xa9\x64\x02\xbf\xb6\x6d\x02\x37\xbe\x6a\x8b\xee\ +\xec\x2b\x75\x69\xb0\x22\x14\x8c\x00\x8d\x7a\x03\xc2\x87\x1e\x0b\ +\x6e\xc0\x4f\x8d\x13\x4e\x8b\x71\x82\x84\xb3\x0d\x0a\x39\x10\x55\ +\x04\x21\x12\x50\x14\x96\xbd\x0d\x57\xbf\xe2\x4d\x20\x84\x60\xa9\ +\x54\xd5\xba\x42\x30\x71\x88\x29\x48\xa9\xb5\x88\x94\x45\x90\x60\ +\xad\x4e\xbd\x0e\x20\x7f\xd9\x54\xfd\x2e\x01\x6c\x12\xe7\x1d\x9f\ +\x50\xe4\xa8\xf0\x05\x78\x5a\x4b\x76\x6a\x69\x89\xc2\x28\xd3\xed\ +\x9d\x29\x05\x61\xda\x0f\x60\x25\xb4\xa3\x90\x73\x06\x6a\x31\x50\ +\xe3\x1f\x90\x42\x80\x31\x0e\x4a\x03\x02\x50\xa1\xe4\x0f\x46\x4f\ +\x0d\x0f\x0f\xe1\xc4\x01\x17\xa5\xba\x8b\xa1\x7c\x0a\x00\x41\xb5\ +\xe1\x63\xb0\x2f\x09\x10\x8a\x5a\xc3\xc7\x60\x5e\xcf\xa4\xaf\x7a\ +\x3e\x86\x7b\xf5\x28\xb9\xaa\xeb\x63\x28\x9f\x31\x1e\x6a\x0f\x39\ +\x3b\x85\x57\xef\x1d\xc0\x8f\xc7\x4e\x43\x28\x8a\x74\xca\x82\xe7\ +\x4b\xd8\xd9\x34\x7a\x7b\xb3\x38\x75\x66\x09\xcf\x8c\x15\x71\xed\ +\xd6\x01\x94\x6a\x3e\x86\xfa\xb3\x00\xa1\x18\x1d\xb2\x71\xfd\x56\ +\x1b\xcf\x1f\x9d\xc7\xeb\xef\x48\x63\xb0\x2f\x03\x42\x28\x7c\x21\ +\xe0\xfb\x3e\x96\x8b\x25\xec\x4c\x58\x21\x01\x0c\x0d\xf5\xe3\x85\ +\xa5\x63\x60\x94\xa3\xea\xd5\x30\x90\xea\x03\x25\x14\x35\xe9\x62\ +\x20\xdd\x0f\xa5\x24\x0a\xee\x12\x06\x33\x39\xd4\x45\x0d\x8b\x8d\ +\x19\x94\xfd\x0a\x9e\x9c\x9d\xc4\xb2\x57\x42\xc5\xaf\xa3\xe4\x96\ +\x50\xf6\xaa\x78\x72\xf6\x00\xac\x71\x8e\xf9\x27\x5e\x42\x32\x99\ +\x42\x3e\x97\x85\x6d\xdb\xd8\xe2\xd8\xe8\xc9\x64\x90\xcd\xda\x48\ +\xdf\x79\x27\x28\x25\x48\x24\x93\xb8\x7d\x5f\x52\xf7\xd1\xe3\x5c\ +\x27\x36\x49\x81\x9e\x91\x41\x70\xc6\xa1\xb8\x80\x14\x52\x97\x09\ +\x9b\x59\xec\x9e\x14\xa0\x66\xee\x33\x25\xaa\xcd\x89\xa7\xf3\x03\ +\xb8\x9d\x07\x90\x34\x89\x3d\xfa\xa7\x77\xdd\xf6\xeb\xe0\x56\x02\ +\xcb\x95\x0a\x3c\xe1\xeb\x61\x31\x26\x95\x98\x2a\x53\xe6\x4d\x81\ +\x7c\x12\x61\x2e\xff\x3a\x24\x7d\xa7\x35\xd8\x25\x80\x97\x19\xcc\ +\x17\xf2\xfa\xf9\xf3\xb3\xc7\x7b\xf3\x59\xc1\x18\x63\x96\xb1\x83\ +\x2b\xb5\x2a\x28\x65\x46\xd5\xe7\xb0\x28\x83\xe7\x7b\x48\xa5\x92\ +\xb0\x18\x43\xc3\x38\x08\x2d\x66\x41\x48\x1f\xbe\x8f\x30\x35\x58\ +\x29\xb6\x42\xfa\x2b\xa5\x30\x32\x32\x88\xa7\x4e\x2c\x60\xa9\xe6\ +\xe3\xba\xd1\x1c\x16\x2a\x2e\x16\xab\x1e\x76\x8e\xd8\x28\x54\x5c\ +\x2c\x96\x1b\xd8\x35\x9a\x43\xa1\xec\x61\xb1\xd6\xc0\xae\x11\x07\ +\x85\x72\x03\x8b\x55\x17\x3b\x47\x72\x28\x94\x5d\x2c\x55\x1b\xd8\ +\xd5\x9f\x43\x26\x65\x61\x5b\x1f\xc3\xdc\x42\x1d\x57\x8f\x64\xb1\ +\x5c\xaa\x61\x64\x24\x0f\xcf\xf5\x70\xd3\x0d\x43\x78\xfe\xf9\x69\ +\xec\x2b\x54\x91\x4e\x27\xb0\x6d\x4b\x0e\x8b\xa5\x3a\xca\x0d\x1f\ +\x6f\xfb\xd5\x1d\xf8\xec\x3f\xbe\x84\x1b\x77\xf7\x61\xf7\xae\x21\ +\x2c\x17\xeb\x28\x55\x6b\xb8\xe3\xf6\x9d\x58\x5a\x5c\x82\xc5\x19\ +\x60\xb2\xd6\x06\xfb\x07\x70\x55\x66\x14\x87\xe6\x9f\xc7\x7c\x7d\ +\x01\x09\x66\xa1\x50\x5f\x42\xa1\x51\xc4\x4f\x0b\x47\x74\xa9\xab\ +\x65\x21\x95\x4a\x22\x9f\xcb\x21\x9f\xb7\x91\xcb\xe5\xe1\x38\x59\ +\xf4\xf5\xf6\x62\xd4\x1e\xc5\x9e\xfc\x6e\xf4\x3a\x0e\x7e\x2b\x7f\ +\x2f\x1c\xc7\x86\x93\xcd\x22\x99\x48\x82\x70\x0a\x22\x25\xa4\x04\ +\x3c\xdf\x83\xeb\xea\xe9\x48\x8b\xc5\x65\xd4\x6b\xba\x74\xd9\x75\ +\x5d\xb8\xae\x8b\x7a\xc3\x83\xdf\x70\xe1\x55\x8a\x60\x9c\x41\x0a\ +\x0e\x62\x49\x28\x29\x4c\xd8\x4f\x02\x4a\x6a\xdf\x0b\x51\xcd\xac\ +\x3b\x03\x7c\x1a\xe4\x02\xa4\x6c\x10\x22\x00\x65\x01\xf0\xd1\xd3\ +\x7b\x0d\xb6\xde\xb4\x0f\x0a\xc0\x52\xa9\x0a\x50\xaa\x7b\x3c\x9a\ +\x76\x6f\x02\x00\x98\x0e\x3b\xda\x49\xb5\xa6\xe4\x5f\x6b\x29\xa5\ +\xfa\xb1\x4a\xaf\x98\x2e\x01\x6c\x1c\xdc\xe4\x02\x7f\xae\xe5\xf1\ +\x7f\xfc\xdb\xf7\xfc\x6d\xbf\xf7\xfb\x93\x7d\x8c\x6f\xe7\xa6\x9b\ +\x0b\x88\xb6\xe5\x19\xe3\x21\x09\x68\x29\x6f\x42\x83\x86\x28\x38\ +\xa7\x10\xc2\x83\x90\x12\x16\xb7\x4c\xff\xb8\xd6\x23\xd0\x02\x86\ +\x06\x06\x61\x59\x09\xec\x1a\x76\x70\x66\xa1\x8a\x5e\x3b\x89\x3d\ +\xd7\x64\x70\x62\xba\x84\x3e\x3b\x89\x3d\xdb\xfa\x30\x3e\xbd\x8c\ +\x5e\x27\x89\xdd\xfd\x79\x8c\x4f\x97\xd0\x97\x4b\x61\x4f\x7f\x8f\ +\xbe\xef\xa4\xb0\x7b\xa0\x17\x13\xd3\x45\x0c\x0f\x64\xf1\xae\xbb\ +\x76\xe2\x8f\x1f\x3e\x86\x9b\xae\x1f\xc4\xd6\xab\x06\x30\x33\xbf\ +\x0c\xc7\x49\xe1\xd6\x9b\xb7\x60\xec\xd4\x22\x7e\xf8\xf4\x14\x3e\ +\x74\xef\x2f\xe2\xf0\xf8\x02\x18\x03\x24\x28\x26\xce\x16\xc0\x44\ +\x0d\x3f\xdc\x7f\x1c\x4f\x1f\x9c\xd0\x59\x81\x0d\x17\x85\xc5\x2a\ +\x16\x97\x97\x61\x25\x92\xe1\x06\x1f\x19\x19\xc6\xde\xdb\xaf\xc3\ +\x4c\xaa\x80\xbe\xde\x3e\x38\xb6\x8d\xeb\x72\xbb\xd1\x9b\xcf\xe3\ +\x77\xfb\x72\x70\xb2\x0e\x7a\x7b\x73\xc8\xf6\x64\xf5\x08\x6c\xcb\ +\x6a\xe6\xe4\x87\xad\x3a\x9b\xa6\x90\x34\x80\x97\xc2\x87\x90\x02\ +\xbe\x2f\x75\x78\x55\x71\x48\x2e\x21\x04\x85\x45\x39\x5c\x50\x10\ +\x45\xc1\x08\x05\x85\x6e\xb0\x09\x02\xf8\xa6\x63\x13\xe1\x0c\x4a\ +\x32\xa8\xa0\xf2\xd2\x74\x04\xf1\xfd\xa0\x61\x2b\x01\xa1\x04\x54\ +\x91\xe6\x63\x02\x30\x2b\x09\x2b\x29\xe1\xbb\x0e\x80\x14\x6e\xb8\ +\xeb\x03\x60\x9c\x63\xb6\xb0\x04\x21\xf5\x6b\xa5\xa9\xfd\x0f\x5c\ +\x87\x52\x01\xf9\xa4\xd4\xef\xb3\x79\xf5\x7e\x44\x53\x4a\xd8\x5b\ +\x94\x5c\x0c\x22\xe0\x97\x29\xd8\xc9\x3a\xce\x93\x0b\x04\xfd\x8a\ +\xd7\x79\xbe\x7f\x9c\x73\xb6\x3d\xc8\xf1\xa7\x94\xc3\x75\x5d\x58\ +\x09\x0a\x8b\x31\x30\xca\x75\x28\x90\x31\x30\x69\x42\x7c\xcc\x02\ +\x63\x16\x3c\xaf\x0e\x21\x74\xd1\x8f\x6e\x0f\x26\xc3\x26\x12\x2a\ +\x62\x0a\xe4\x72\x0e\x32\x99\x34\x66\x8a\x0d\x0c\xf5\xea\xbe\x01\ +\xc5\x9a\x6f\xee\x13\x14\x2b\xae\x36\x01\x28\xb4\x99\xd0\x97\x01\ +\x40\x50\xaa\xfb\x18\xea\xcb\xc0\x17\x12\x0b\xa5\x1a\x52\x49\x0b\ +\x67\xe7\xcb\x28\x57\x5d\xa4\x99\xc0\xfe\xc7\xc7\xd0\x97\x4f\xa0\ +\x52\xd1\x6d\xb6\xab\x75\x17\xe5\xb2\x8b\x1f\x4d\x16\xf0\xdd\xfd\ +\xc7\x91\xb0\x12\xb0\x1d\x1b\xbd\x79\x07\xb6\x9d\xc5\x96\x1d\x7b\ +\xd1\x9b\xcb\xc1\xb6\xb3\x70\x72\x0e\xfa\x72\x39\xd8\x39\x1b\xdb\ +\xb6\x5d\x13\x16\x1b\xe9\x28\x40\x1e\x9f\xff\xdc\xa7\x74\xad\x7d\ +\x04\x00\xb4\x25\xd9\x05\x2d\x61\xae\x76\x80\x34\xc1\x1f\xa8\xe5\ +\x32\xdc\xb2\x8a\x29\x48\x49\xa1\xa8\xd0\x85\x3e\x8c\x81\x73\x0a\ +\xca\x09\xa8\x24\x20\x8a\xea\xeb\x2d\x3c\x10\xc6\x40\x7d\x01\xd1\ +\xa8\x83\x73\x4b\x37\x0b\x65\x1c\x4a\xaa\xb0\x25\x98\x92\x12\x42\ +\x51\x70\x66\x9c\x80\xa6\x8c\x8f\x06\x55\x3c\x04\xb8\xe6\x97\xdf\ +\x84\xd2\xec\x02\xb6\xdf\x7c\x27\x06\xb7\xdf\x80\x52\xb5\x86\x52\ +\xbd\x8e\xa0\xd2\x27\xfc\x5b\xcd\x77\x47\xa9\x42\x3e\x79\xd1\x6c\ +\xfb\x41\x43\x00\x41\xfb\xe2\x8b\x42\x04\xfc\x32\x01\x7e\x1c\x40\ +\xc9\x06\x9e\x5f\x0d\xf8\x64\xad\x9f\x11\x42\x4e\x08\x28\xe3\x78\ +\xd2\x1b\xd1\xf3\x5c\x24\xd2\x3d\x5a\x0b\xb0\x98\x0e\x05\x12\x0a\ +\x8b\x32\x30\xc6\x4d\x94\x80\x42\x4a\x3f\x94\xf2\x9c\xf3\x18\xe9\ +\xaf\x49\x21\x93\x4e\xa3\xbf\x2f\x8f\xc9\x85\x0a\xf6\x6e\xeb\xc5\ +\xdc\x72\x0d\x73\x4b\x75\x6c\x1b\xc9\x62\x62\xb6\x8c\x73\xe7\xab\ +\xb0\x33\x16\xce\x16\xaa\x98\x39\x5f\x85\x95\xe0\x98\x2d\x54\x71\ +\xbe\x58\x87\x2f\x15\x0e\x1e\x9b\x07\xe7\x7a\xc8\x84\xed\xd8\xc8\ +\xe7\x6c\xd8\xf6\x10\xb2\xb6\x83\x4c\xd6\xc1\xf0\xa8\x0d\x27\xe7\ +\xa0\xd7\xb1\xe1\x38\x0e\x9c\xbc\x8d\xbe\x5c\xaf\x6e\x55\x65\xe9\ +\x6e\xb5\x9c\xd3\xe6\xec\x82\xf6\xc4\x19\x42\x37\x0c\xf6\x16\xd0\ +\xb7\x49\x49\x65\x9a\xea\x2b\xa5\x81\x24\x44\x40\x0a\x7a\x12\x0f\ +\x95\x54\x9f\x67\x0c\x8c\x49\x9d\x6e\xcd\x2d\x1d\x86\x33\xef\x4b\ +\x09\x01\x05\x03\x23\x3e\x24\xa5\x90\x6e\x1d\x2c\x99\x86\x62\x02\ +\x92\x4b\x33\xda\x4b\xe7\xdc\x4b\x25\x9b\x9f\x2f\xf8\x47\x49\x24\ +\xa7\x9f\xc0\xde\x7d\x17\xf6\xbc\xa6\x0f\x94\x10\x94\xaa\x35\xcc\ +\x2e\x95\xb4\x3f\x80\xea\x9a\x7f\x49\x48\xd8\x3e\x8c\x00\xb0\x2d\ +\xa9\x6b\x0c\x2e\x82\x63\x8f\x10\x32\xf0\xde\xf7\xdc\x9b\x7b\xe8\ +\x9b\x0f\x97\x4d\x44\x20\x8e\x08\xd4\x95\xa4\x01\xc4\x01\x9b\xc4\ +\x80\x7c\x3d\xe7\xd6\x4b\x1c\xb1\xcf\x09\xdf\x3f\xeb\xfb\xd2\xe4\ +\xfa\xeb\xa3\xe1\xba\xc8\x71\x27\x74\xfa\x09\x4f\xcf\x12\xe0\x09\ +\x0e\xcb\x6d\x9a\x02\x94\x52\xa3\xde\x2a\x70\x1e\x8c\x99\x26\xad\ +\x04\x00\x80\x71\x85\x5c\xce\x41\xb1\xee\xe1\x73\x8f\x3c\x87\x7f\ +\xfe\xd1\x19\x70\x6e\xc1\xb2\x38\x72\x39\x07\xb6\x6d\xc3\xb1\xb3\ +\xc6\x8e\xde\x0a\xc7\xc9\x62\xfb\x0e\x07\x37\x39\x59\xe4\xf2\x0e\ +\xde\x6f\x3b\x70\xf2\x0e\xec\x4c\x8f\x6e\x35\x6d\x59\x60\xdc\x6a\ +\xb1\x4b\x83\x46\xa3\xd1\x74\xd4\x15\x12\x3a\x06\xe8\x2d\x07\x56\ +\xa4\xb0\xb6\xbd\x3e\x7a\xbe\xf9\xbb\xa2\x9f\x23\xfc\xdb\x61\x9a\ +\xa3\xc8\x95\xa3\x4c\x99\x32\xa4\xaa\x82\xec\x39\x06\xcb\x4a\x80\ +\xc2\x14\xfd\x20\xa8\xa3\x37\xd5\x75\x94\xc0\xaf\x57\x41\xf3\xfd\ +\x00\x63\xba\x33\xb3\x79\x5f\xca\x9a\x69\xc0\x51\xf2\x40\xdb\x67\ +\xae\x7b\x3e\xc6\xa7\xe6\x74\x72\x97\x94\x3a\x40\x20\x09\x98\x41\ +\x24\x23\xca\xcc\x08\xd4\x7d\x00\x7a\xdb\x6c\xff\xcd\xae\xbb\xde\ +\xb0\x6f\xeb\x43\xdf\x7c\x78\xcc\xec\xbd\x60\xe4\x23\x36\x43\x02\ +\xfc\x32\x90\xfe\x71\xa0\xee\x74\x98\xb8\x4e\xcb\x7b\xd1\x0d\x10\ +\x44\x2c\x61\xd4\xaa\xf5\x49\x21\x24\x92\x9c\xc3\x62\xba\xd2\xcf\ +\xf3\x5c\x73\x5f\x4b\x7d\x57\xb9\x60\x8c\x41\x29\x0e\x6e\x31\x6d\ +\x1a\x98\x02\x22\xcf\xf3\x20\xa1\xb4\x97\x5a\xb5\xda\xbe\x51\x5b\ +\xf8\xce\xd7\xde\x81\x67\xc7\x27\x30\xb8\xeb\x46\x7c\xe4\xd6\xbb\ +\xd1\x9b\xcb\xc1\xc9\xd9\xe8\x49\xa7\x91\xc9\x64\x90\x4e\xa7\xd0\ +\xd3\x93\x46\x2a\x95\x59\xe1\x70\x8a\x82\x1b\x40\x8b\x24\x8f\x55\ +\xc3\x3b\x00\xbd\xe5\x67\xd1\x9a\xb9\xb6\x92\x2c\xe2\xc1\xde\xe9\ +\x3d\xe3\xd4\x7f\x02\xd9\xd2\xf3\x54\x29\x40\x12\x09\x42\x99\x06\ +\x3e\x4c\xff\x3e\x63\x06\x50\xae\x7d\x00\xd4\x03\x88\x01\xbf\x26\ +\x00\x06\xe5\x99\x32\x5d\x73\x4e\x99\x7e\x07\x41\xc3\x13\x04\xef\ +\x45\x49\x98\x07\x10\x7e\xce\x70\x97\x10\x48\x33\xe0\x45\xc8\xe6\ +\x2e\x60\x14\x10\xc2\xb4\x17\x27\x80\x63\xf9\xb8\xd8\x4d\x7c\xb6\ +\x6c\x19\xfd\x05\x00\x13\xed\xfe\x41\x04\x29\x07\x57\x80\x06\xa0\ +\xd6\x69\xbb\xc7\x81\x9f\xae\x41\x0e\x9d\x08\x83\xac\xa2\x49\x00\ +\x00\x39\xbf\x30\x7f\xee\x5a\xb1\x1d\x3c\x15\x84\xf9\x38\x3c\xd7\ +\x07\xa3\x1c\x09\xce\x51\xe7\x0c\x90\x5a\x25\x66\xa0\x20\x94\x87\ +\x79\x03\x94\x33\xf8\xbe\x0f\x29\x54\xd8\xf9\x35\xd0\x02\xa0\x64\ +\x8b\x16\xf0\xce\xb7\xbd\xa5\x05\x20\xeb\x54\x1d\x63\x6f\x83\x1d\ +\x1d\x05\x79\x1c\x11\x6c\x44\x85\x6f\xbe\x66\x0d\x2d\x22\x42\x0a\ +\xed\x9f\xb3\xf9\x77\x91\xd0\xf6\x37\x53\xb9\x34\xd0\x98\xd2\x8d\ +\x39\x94\x6f\xc0\xad\x01\x1c\xe4\xd0\x33\xc6\x40\x3c\x5f\xd7\x2c\ +\x48\x01\x42\xa1\xd3\xac\x29\x81\x70\x3d\x50\x42\x43\x62\x92\xba\ +\xf6\x16\x94\xb2\xe6\x08\x2f\x4a\x20\x41\xf5\xe8\x30\x43\x62\x2d\ +\x13\x1b\xcd\x0e\x54\xc1\x25\x54\x41\xb7\xe0\xe6\xe8\x6f\x4e\x15\ +\x9c\x84\xbc\xe8\x31\xfd\x5c\xce\xbe\xda\xec\x63\x1a\x01\x3d\xc5\ +\x26\x92\x84\x2e\x75\x13\x20\x4e\xed\x89\x7b\x1c\xa7\x2d\xd0\x0e\ +\xb7\x71\xa4\x81\xb6\xfb\x2d\x84\x30\x71\x62\x6c\xf1\x95\xaf\xbc\ +\x05\x94\x33\x58\x16\x37\xf1\x67\x57\xb7\xfd\x66\xcc\xc4\xf8\xcd\ +\xd4\x18\xce\x91\xb0\x18\xea\x9c\xe9\x4c\x40\xc6\x21\x84\x6f\x6c\ +\xd8\x76\x0d\x80\xc4\x82\x7d\xbd\xe0\x6f\x97\xac\xab\xb5\xff\x6a\ +\x6a\x04\x58\x15\xb4\x51\xb0\xb7\x90\xc2\x06\xc1\x4e\xd6\xf0\x8c\ +\xeb\xbf\x51\x36\xa7\xea\x68\xd3\x1f\x54\x29\x50\x33\x5d\x49\xfb\ +\x18\x64\xd8\x3d\x87\x10\x02\x46\x98\x06\x2f\xa3\x60\x1e\x85\x24\ +\x14\x1e\x61\xa6\xbb\x91\x30\xaa\x3d\x05\x68\x50\x6f\x0f\x58\x9c\ +\x86\x76\x7e\x50\xb8\x13\x86\x00\x03\x6d\x89\x18\xbf\x60\xd0\x32\ +\x54\x91\x96\xdd\x46\x22\xfc\xd0\x97\xf4\x2e\x28\xd6\xac\x94\x92\ +\x95\x4a\xf5\x38\xd1\xea\x9a\x5b\xa9\x54\x8e\x51\xc6\x24\x80\x6a\ +\xa9\x54\x39\x36\x39\x79\xf6\x39\x34\x27\xbc\x47\xa7\xa6\x5f\x51\ +\x51\x80\x38\xb0\xc7\xd9\x3e\xaa\x8d\x25\xdb\x6f\xe3\xb4\x09\xba\ +\x06\x39\xc4\x6a\x11\xa7\x26\x4e\x7a\xae\xe7\x95\x13\x16\xcf\x5a\ +\x8c\x83\x59\x1c\x6e\xcd\x0d\x9d\x82\x84\x05\xc9\x40\xbe\x99\x1b\ +\xc0\x61\x19\x75\x95\x31\xad\x01\x78\x42\x82\x33\xd6\xa2\xfe\x06\ +\x2a\x6f\x60\x0f\x6f\x0a\xfc\x58\x99\x86\xda\xa9\xe1\x67\xe4\x0d\ +\x62\x81\xde\xc9\x24\x68\x07\x7b\x67\xed\x63\x1d\x61\x31\xa5\xc2\ +\xb4\xdd\xb0\xeb\x0e\x14\x94\xd1\xa4\x02\xbb\x9e\x51\x02\x41\x68\ +\x58\x57\x4f\x39\x03\x21\x46\x82\x53\xaa\x1b\xae\x50\xc0\xa3\x14\ +\x44\x78\xa0\x94\x98\x7a\x7d\x0a\x42\x4d\x37\x60\xd0\xa6\xf3\x30\ +\xb2\x25\x94\x42\xc4\x3c\x20\x88\x28\x27\x20\xe1\x8e\x33\x3d\x04\ +\xcc\x73\x3d\xcc\x83\xa8\x57\x66\x8a\x9e\x5f\x02\x80\x62\xa9\x74\ +\xce\x73\xbd\xb2\xce\x19\x29\x9c\x6e\x34\x1a\x55\x4a\x89\x3a\x72\ +\xe4\xd8\x98\xe7\xfb\x0d\x42\x88\xfa\xc2\x5f\xfc\xd5\xd1\x62\xb1\ +\xe4\x19\x49\xee\x9b\x43\x44\x1e\x8b\xc8\x21\x23\xf7\x37\x4d\x02\ +\x97\xa3\x06\xa0\x22\xe0\x94\x31\x24\x41\xda\x2e\x9c\x6a\xf3\x03\ +\xd0\xb6\xf7\x08\x40\xcf\x56\x23\x86\x46\xc3\x9d\xe1\x8c\x5f\xcb\ +\x13\xba\xb1\x87\x6f\xd4\x4d\x46\x09\x2c\x63\xeb\xfb\x42\xab\xa4\ +\x9c\x91\xd0\x39\xc8\x99\xa5\x27\xc4\xfa\x12\x8c\xf3\x70\x27\xa9\ +\x0e\xb7\x6b\x69\x01\x9d\x32\xcd\x62\x25\xee\x8a\xe7\xd6\x06\xfa\ +\xca\x73\x1b\x03\x7b\xbb\xc3\xaf\xa3\xf4\x27\xd0\x99\x75\xd2\x24\ +\xe8\x18\x7b\x5d\x52\x05\x22\x65\x98\xb0\xa3\xc9\x40\x82\x31\x06\ +\xe1\x0b\x3d\xfa\x9b\x13\x10\xd3\x9e\x8c\x32\xa2\x1b\xb0\x48\x1f\ +\x94\x30\x04\x11\x3e\x69\xd4\xfb\x60\x86\x03\xa1\x41\x33\xf0\xa8\ +\x03\x90\xc6\x5c\x9f\xe6\xcf\xb5\x5a\x05\x0a\x0d\xd7\x9b\x7f\xf7\ +\x3b\xee\x79\xfb\x73\x07\x0f\x94\xda\x24\xb5\x5c\xe5\x71\x70\x4e\ +\xc4\x9c\x17\x6d\xcf\xa9\x98\x5b\xb5\x19\x22\xb8\x1c\x12\x81\x54\ +\x8c\xea\xaf\x3a\xd8\xee\xaa\x2d\x7c\x42\xdb\x0e\x15\xb9\xcf\x22\ +\xef\xc5\x22\x1e\x57\x16\xd1\x16\xc2\x43\x08\x51\x10\x50\xba\xe4\ +\x34\x95\x42\x23\x1c\xb8\xc1\x4c\x55\x20\x83\xf0\xb5\x5f\x80\x98\ +\xa6\x8f\x8c\x31\x80\x01\x42\x48\x08\xa9\x35\x00\x85\x18\xe9\xdf\ +\x0e\xf6\xb5\xb4\x80\x8e\x95\x65\x58\xd3\x11\xb8\x16\xd0\x2f\x06\ +\xd8\xdb\x71\x1f\x67\xff\x13\xed\xfe\x03\x28\xd5\x6d\xbd\x49\x10\ +\x5a\x0c\x9c\x78\x5a\xf5\x97\x14\xa0\xc4\x98\x04\x4c\x87\x56\xa9\ +\xd2\x8e\x40\x42\x74\x42\x50\xb9\xd1\x98\xab\xd5\x6a\xf5\x9e\xb4\ +\x9f\x62\xc0\x90\x22\x08\x1b\x98\x6a\x07\x5e\x6b\xf7\x1d\x05\x18\ +\x12\x40\x8b\x33\x53\x45\xda\x7c\x45\x83\xef\x44\x01\x92\x10\x71\ +\xe8\xa9\x1f\x7f\xec\xb9\x83\x07\x4e\xc5\x00\x74\x35\xd0\xae\xe7\ +\x39\x44\xf6\x5f\x3b\xd8\xd5\x95\x96\x07\xb0\x11\xd3\x40\x75\x20\ +\x00\xd9\x26\xe1\x69\xc4\x99\x12\x25\x00\xd6\x76\x9f\x45\x08\xa1\ +\xe5\x77\x0a\xdf\x9f\x92\x12\x48\x25\x12\xa8\x00\x27\x4a\x4b\xa5\ +\xa7\x84\x90\x77\x5b\x9c\xe5\xb4\x09\xc0\x74\xac\x99\x68\x8d\x20\ +\x1a\x05\xa8\x79\x75\xf8\xbe\x30\x51\x02\xb5\x42\xca\xb7\x9c\x5b\ +\xc7\xf7\xdc\x19\x78\x64\x1d\x7e\x81\xf5\x03\x7d\xa3\x60\xef\x24\ +\xf1\x83\xd0\x5f\xf3\x79\xe3\x76\x33\x03\x13\x03\xfb\x5d\x2a\x55\ +\x5f\x5a\x5c\x9e\xf2\x85\x44\xa1\x50\x98\xa9\xd4\x6a\x55\x21\x7c\ +\x4c\x8c\x9f\x39\xdd\x70\x1b\x6a\xb9\x54\xae\xbf\xf8\xc2\xe1\x85\ +\x6a\xad\x96\x9e\x9a\x9e\x2d\x9e\x3c\x79\xaa\x10\x51\x97\xf1\xc0\ +\x1f\xfc\xe1\xab\x76\x00\xef\x23\x66\x04\x30\xd1\x46\x7d\x18\x49\ +\x88\x36\x05\x69\x4a\x0a\xd3\x29\xb0\xd9\x2a\x28\x3c\xaf\x02\x32\ +\x26\x04\x85\xb9\xb9\x3f\x7b\xff\xbb\xde\xfe\x83\x18\xd5\x5c\x75\ +\x00\x6d\x1c\x80\x57\x3b\xd7\x09\xe4\x57\x6c\x26\xe0\x85\x6a\x05\ +\xed\x9e\xfd\x4e\x64\x40\x63\xc8\xa0\xd3\xc1\xbf\xf1\x77\x5f\xfd\ +\xcc\x6f\xde\x73\xcf\x7f\x9e\x3e\x3d\x31\x7b\xf0\xc0\xa1\x02\x00\ +\x76\xeb\xad\xb7\xdf\x4a\x39\xcd\x31\xd3\x03\x50\x08\xed\x84\x22\ +\x66\x90\x06\x37\x3d\x02\x94\x2f\xe1\xf9\x12\x8c\xd1\x8e\x92\x7f\ +\x23\xb6\x7f\x27\x90\xaf\x26\x7d\xd7\x0b\xf4\xcd\x80\xbd\xfd\x5c\ +\xb9\x5c\x99\x71\x3d\xaf\x22\x7c\xdf\x3d\xbf\xb0\x38\x49\x08\x51\ +\xf3\xf3\xe7\xa7\x2a\x95\x6a\xb9\xd1\x68\x34\x9e\x7b\xfe\xc5\xd3\ +\x94\x52\xf9\xd8\xfe\xc7\xcf\xbe\xf8\xe2\x91\x72\x87\xef\x90\xc5\ +\x98\x6b\x49\x00\xb9\xc8\xf7\x2e\x01\xc8\x7c\xae\x37\x13\xf8\xf4\ +\xa9\x89\x00\x40\x29\x10\xae\xcb\x82\x29\xa1\xa1\xf4\x27\xa1\x19\ +\x80\xe6\x54\xe6\x40\x13\x88\x6e\x2e\x42\xe0\x7b\xee\x63\xaf\xbd\ +\xf9\xc6\xcf\x44\x54\xf7\x4e\x80\x5e\x4b\x62\xab\x0d\x08\xb9\x8b\ +\xb2\x2e\xf7\x62\x20\xb5\x0e\x82\x68\x37\x13\xe8\x2a\x84\x10\xa7\ +\x11\xf0\xe0\xf6\xbb\xdf\xf9\xce\x4f\xcc\x63\x0e\x80\x0b\x21\x8a\ +\x2c\xc1\x61\x99\x12\x60\xa5\x74\xdb\x69\xa6\x74\xb8\x8a\x99\x8e\ +\x3f\xd4\xa2\xa8\xd5\xea\x00\x48\x58\x35\xa6\x01\xbf\xf2\xfe\xc5\ +\x20\x81\x4e\xbe\x80\x0b\x01\x7a\xf4\xb9\x4a\xa5\x3a\xd7\x70\xdd\ +\x52\xa5\x5c\x2e\x54\xaa\xf5\x45\xdf\xf3\x1b\x67\xcf\x4d\x9d\xa1\ +\x94\xc8\xf1\xf1\x89\xa9\xf3\x85\xc5\x72\xb9\x5c\xa9\x7f\xfd\xa1\ +\x6f\x9f\x8a\xb1\x77\xd7\xb2\x91\xa3\xea\xf0\x6a\xc4\x4c\xa1\xdb\ +\x67\xf9\x86\x04\xc2\xef\xb6\x7f\x68\x60\x0b\x0b\xa4\x7f\x84\xe4\ +\x18\xb1\x74\xc4\xa6\x4d\xfa\xb7\x48\x8d\x18\x42\x53\x00\xa4\x94\ +\x87\x9f\xd8\xbf\xff\x3d\x00\x5c\xac\x8c\xc5\xab\x4d\xee\xd3\x97\ +\x7d\x5d\x69\xd5\x80\x9d\xcc\x84\xa8\x59\x27\xb1\x32\x71\xa8\xdd\ +\xf1\xc7\xda\x36\x21\x8f\x39\xac\xc7\x1e\x7b\xec\x8b\xaf\xbe\xe3\ +\xf6\x77\xd7\x6a\x35\x7e\x6c\x6c\xec\xd9\xbc\x9d\x4f\x6d\xbd\x66\ +\xeb\x87\x9b\xf3\xdf\x75\xc4\x20\x69\x25\xe0\xf9\x1e\xa4\x52\x60\ +\x94\x35\x3f\x4c\x07\xa9\x1f\xa7\x0d\x74\xf4\xa8\xaf\x51\x7e\xba\ +\x9a\x53\x8e\x10\x40\x08\xe1\x16\x8b\xa5\x49\xa5\x94\x9c\x9b\x9b\ +\x9f\x20\x94\xa9\xc9\xc9\xb3\xe3\x52\x2a\x71\xe4\xa5\xe3\xa7\x2a\ +\xd5\x4a\xe3\x07\x3f\xf8\xaf\x33\x63\x27\xc6\x2b\xeb\x04\xf1\x46\ +\xc0\x1e\x67\x1f\x47\xbf\x03\x2b\x72\x6b\x05\xd7\xdd\x1c\x25\xa3\ +\x09\x64\x82\xd7\xf4\x39\xbd\x5b\xa9\x42\x98\xd1\x18\x24\xed\x50\ +\x0e\x50\xc6\xa0\x18\x69\xb1\xf3\xdb\x49\x37\x34\x0b\x28\xd5\x3d\ +\x41\x85\x3f\xfd\xe3\xff\x7b\xe2\x2d\x1f\x7c\xef\x7d\x0b\x31\xd2\ +\xff\x92\x58\x57\x72\x3f\x80\xf5\x68\x07\xeb\x21\x84\x80\x0c\x78\ +\x3b\x19\x3c\xfa\xe8\xa3\xcf\x3d\xfa\xe8\xa3\x87\x83\x4d\x79\xff\ +\xfd\xf7\xdf\x1a\x94\x99\x06\x33\xdf\x12\xdc\x42\x32\x99\x84\xef\ +\x79\xae\xeb\xfa\x89\x64\x22\xd1\x42\x51\x71\x36\xff\xfa\xcb\x18\ +\x3b\xab\xe1\x9e\xef\x57\xcb\xa5\xf2\x74\xc3\xf5\x4a\xc5\x62\x71\ +\xa6\x52\xae\x2c\x9f\x5f\x28\xcc\x16\xcb\xa5\xe2\xd8\xd8\xc9\xa9\ +\x99\xd9\xb9\xca\xc3\xff\xf4\x9d\xc9\x0b\x94\xd4\x71\x8f\xd7\x02\ +\xb6\x5a\xe5\x5c\xd4\x09\x86\xc8\xf5\x4e\x98\x6b\x9b\x8c\xbc\x2e\ +\x78\x8e\x00\xa8\x18\x02\x48\xf6\xf5\x0f\x64\xfa\x7a\x7b\xb7\x07\ +\xc1\x85\xd0\x98\x97\x00\xa5\x1c\xcc\x0c\x0b\x69\x49\xf4\x89\x41\ +\xbf\x22\x21\xf8\x17\x9e\x3d\x78\xe0\x2d\xef\x7b\xc7\x3d\xe7\xda\ +\x3e\xf3\x25\xb5\xba\x0d\x41\x36\x4e\x08\x02\xf1\xc9\x42\x2c\x46\ +\x23\x68\x44\x24\x92\x75\xe0\xc0\x81\x67\xaf\xbf\x61\xef\xdf\xa4\ +\x32\xc9\x2d\x8b\x8b\x8b\xcb\x53\x53\xd3\xd3\x27\x8e\x9f\x38\xf7\ +\x93\x9f\x3c\x75\xf6\xc1\x4f\x3e\xf8\x41\xd7\xf5\x7f\x25\x3a\x04\ +\x52\x47\xc3\x36\xa6\xfa\x2b\xa5\xe4\x72\xb1\x78\x52\x0a\xe9\x2f\ +\x2c\x2c\x4e\x08\xe1\x35\xa6\xa6\x67\x4f\xd5\xeb\x8d\xea\xe1\x23\ +\x47\xcf\x14\x16\x97\x2b\x5f\x7f\xe8\xdb\xa7\xd7\x01\x62\xd1\x01\ +\xc0\x72\x0d\x20\xcb\x0d\x02\x5a\x6d\xd0\x01\xa6\x22\xd7\x59\x44\ +\x08\x9a\x62\x65\xb9\x2c\x31\xdf\x41\xf6\xad\x6f\xbf\xf7\x0e\x22\ +\x04\xa5\x94\x80\x86\x21\x3c\xdd\xc6\x5c\x4f\xe4\x61\x20\x90\x9a\ +\x04\xc2\xbc\xdf\x20\xc0\xd7\xfc\x1f\x7a\x7e\xe3\xc2\x53\x4f\xfe\ +\xe8\x9d\x0f\xbc\xed\xad\x2f\xb5\x5d\x0f\x74\x09\xe0\xf2\x25\x84\ +\xb8\xd2\x4b\x12\x89\x1c\x88\x36\x32\x60\xed\x1a\xc1\xd1\xa3\x47\ +\x6b\x9f\xf8\xf8\x1f\x7d\x39\xa2\xaa\x86\xcf\x79\x9e\x37\xe5\x9a\ +\x91\x52\xed\xda\x7b\xa0\xf2\xfb\xbe\xa8\x54\xaa\x95\xa9\x7a\xad\ +\x51\x28\x57\xca\xe7\x97\x16\x8b\x53\xe5\x4a\xa5\xf8\xd2\xb1\xb1\ +\x89\x72\xa5\x5a\xff\xfc\x17\xbe\x74\x74\x93\x92\x7a\x3d\x52\xba\ +\x3d\x34\x75\x31\x00\xbd\x51\xa7\x98\x8a\xf1\xe3\xb4\x93\x82\x8a\ +\x7c\x3f\x6a\xfb\x35\x5b\xaf\xf7\x6a\x75\x90\xa4\x05\x62\x86\x70\ +\x06\xd3\x77\x18\xe7\x61\xd2\x10\xd0\x0c\xf7\x05\xad\xc7\x48\x90\ +\xea\xa7\xe7\x24\x4e\x7f\xef\x5f\x1e\xb9\xf7\x93\x1f\xfb\xc8\xe1\ +\xb6\xdf\xd5\x25\x80\x2b\x58\x4b\x10\x1d\xc8\x20\xce\x4f\xd0\xee\ +\x3c\x64\x00\xd8\xd3\x4f\x3f\xfd\xf0\x2d\xbf\xb4\xd7\x4e\xa7\xb8\ +\xdd\x70\xdd\xe2\xdc\xdc\xf9\x09\xd7\xf5\x1a\x87\x0e\x3d\xfb\xd2\ +\x72\xa9\x5c\xff\xf3\x2f\x7e\xe5\x64\x1b\x08\x2f\x27\x40\x5f\x88\ +\x37\x5c\xc5\x44\x03\x02\x62\x15\x6d\xd7\xc2\x6b\xd4\xea\xa2\x51\ +\xa9\x02\x32\x89\x44\x3a\x05\x62\x59\xba\x5a\x90\x50\x30\x66\x81\ +\x30\xd6\xe4\x77\xd3\x2e\xac\x99\xf7\xa3\xc3\x94\x8d\x46\xe3\xe4\ +\x5f\xff\xe5\x5f\xfc\xf6\xdf\x7f\xe5\xcb\x63\x68\xcd\xcc\x53\x97\ +\xea\x86\x26\x5d\x4c\xbf\x2c\xd7\x32\xae\xa6\x80\xb5\x99\x0a\x71\ +\x47\xa7\x82\x24\xac\xa1\x56\xcb\x4b\x1c\xd0\x9b\xb9\xe6\x81\x13\ +\x30\x65\xec\xfd\x0c\x80\x9e\xb6\x23\x7b\xe7\x9d\xaf\xbb\xe5\xbe\ +\xfb\x1e\xf8\x1d\x6e\xf1\xb4\x95\x4c\x20\x99\x4e\xc3\x4a\x58\x48\ +\xa4\x93\x48\x67\x73\xe8\xb1\x1d\x70\xab\xd9\xd6\x5c\x17\x18\x35\ +\xc3\xa2\x0b\x0b\x0b\x4f\x7e\xf2\xa3\x1f\xfe\xc4\xff\xfe\xf7\x63\ +\x53\xc6\xb7\x50\x05\x50\x37\xd1\x06\x79\xa9\x6e\x5a\xd6\xc5\xed\ +\xcb\xaa\x2d\xa8\x18\xa9\x1d\xcd\xf7\xf6\x01\x78\xd0\x21\x24\xcf\ +\xd8\xab\xae\xb9\x6d\x98\x0d\x16\x3d\x82\x73\x6e\xe4\x36\x78\x4d\ +\xf0\x1e\x5e\xe4\x7d\xbd\xb6\xdf\xd5\x29\xb7\xbc\x93\x93\xaf\x53\ +\x8a\xe9\xcf\x93\xca\x1b\xf7\x39\x49\x9b\xf6\xc5\x4e\x9f\x3e\xb5\ +\x54\x28\xcc\x4f\xdd\x76\xeb\x6d\x37\x42\x91\x84\x94\x12\x04\x40\ +\x22\x9d\x44\x2a\x93\x05\x4f\x25\xc3\x84\x9f\xd6\x31\xe1\x90\xcf\ +\x3f\x73\xe8\x6b\x77\xbf\xee\x35\x9f\x3d\x3d\x71\x72\xc9\x5c\xf7\ +\x9a\xb9\xee\xe2\x52\x06\x7f\x97\x00\x7e\x36\x9b\x34\x2e\xdf\x5b\ +\x74\x20\x86\xb8\xfb\x97\x3b\xa0\x37\x73\x7d\xe3\xec\xf1\x90\x0c\ +\x26\x27\xcf\x2c\x9d\x3a\x35\x31\xf1\xba\x7d\xaf\xdf\xcb\x19\x4b\ +\x4b\x29\x91\x48\xa5\x91\xb1\x1d\x70\xc6\x74\x2f\x80\x88\xda\x55\ +\xaf\xd5\x0a\x0f\x7f\xf3\x1b\x9f\xfe\xe8\x07\x3f\xf0\x7d\x03\xfa\ +\x5a\x44\xf2\x7b\x97\xba\xfa\xdf\x25\x80\x9f\xad\x0f\x41\xad\x41\ +\x0c\x72\x95\xf3\x97\x3b\xa0\x37\x4b\x02\x71\x9e\x79\x05\x40\xcd\ +\xcc\x4c\x2f\x1c\x3e\xf2\xe2\xe1\x37\xbe\xf1\x4d\x7b\x29\xe3\x36\ +\xb5\x2c\xa4\x7a\x7a\xb4\xfa\x1f\xf9\xe1\x97\x5e\x7c\xe1\x87\x1f\ +\x7a\xe0\xfe\x3f\xfd\xf7\x7f\xfd\xee\x31\xa3\xf2\x07\x6a\x7f\xcd\ +\x68\x5b\x97\xb4\xea\xdf\x25\x80\x4b\x6b\x53\x77\xd7\xfa\x57\x27\ +\xcd\xca\x33\x92\xbb\x32\x3f\x3f\x3f\x75\xe8\xd0\xd3\x4f\xec\xdb\ +\xb7\xef\x06\x10\x3a\xc8\x13\x16\x58\xc2\x02\xa5\x14\xe5\x52\xf1\ +\xec\xb7\xbe\xf6\xd5\x4f\x7d\xfc\xc3\x1f\x7a\xa4\xb0\xb0\x50\x80\ +\x4e\x28\x2a\x9b\x23\x50\xfd\xfd\xcb\xe5\x7b\xe9\x3a\x01\xbb\xeb\ +\x72\x5c\x81\xfd\x6f\x41\x27\x0b\x25\xcd\x2d\x47\x6b\xe9\xb7\xf5\ +\xe0\x83\x9f\xbe\xef\xea\x9d\x3b\x6f\x4f\xa6\xd3\x0b\xa7\x4e\x8f\ +\x3f\xf9\xd5\x2f\x7d\xe9\xf1\xe9\xa9\x73\xcb\x68\x96\xe1\xfa\x6d\ +\x7e\x16\xff\x72\x50\xfd\xbb\x04\xd0\x5d\x97\xfb\x8a\x86\x07\xa3\ +\x91\x96\xb8\xc5\x23\x80\xef\x64\x56\x5c\xf2\x31\xff\x2e\x01\x74\ +\xd7\x95\x4a\x04\x9b\xdd\xeb\x9b\xaa\xb9\xef\xae\xee\xea\xae\xee\ +\xea\xae\xee\xea\xae\xee\xea\xae\xee\xea\xae\xee\xea\xae\xee\xea\ +\xae\xee\xfa\x59\xaf\xff\x07\xd5\x2d\x49\x75\xbc\xee\x3b\xc6\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x28\xa4\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x28\x6b\x49\x44\x41\x54\x78\x5e\xec\x98\xcf\x6b\x1c\x65\ +\x1c\xc6\x9f\x77\xe6\x9d\x77\x7e\xff\xdc\x9d\x9d\xd9\x5f\xd9\xa4\ +\x92\xa6\x6a\x4b\x4a\x2e\x2a\x78\xe9\x41\xc4\x93\x07\x7b\x14\xc1\ +\xa3\x9e\x05\x4f\xde\xfd\x33\x14\x6f\x5e\x04\xc1\x8a\x88\x82\x60\ +\x4f\xf1\xe0\x41\xd0\xd0\x4a\x41\x1a\xab\xdb\x46\x62\xbb\x26\x9b\ +\xd9\x9d\x79\xfd\xee\x64\x82\xcb\x42\x48\xa0\xae\x5d\x70\xbf\xf0\ +\xe1\x61\xc2\xb0\x2c\xf9\x7c\x9f\x77\x76\x97\x61\x39\x4f\x12\x36\ +\x05\x08\x49\x14\xff\xed\x1b\x98\xf7\x2c\xc5\x2a\x04\x3b\xe5\x6f\ +\x2a\xa1\x54\x29\x89\x9c\x18\x11\x59\x99\x8b\xb5\x00\x4b\xce\x29\ +\x55\x99\x42\x9d\xbd\x9e\x4a\x6d\x2a\x39\x51\x54\xd2\x07\x15\x7f\ +\x11\x43\x42\x62\x8e\xc3\x71\xfe\x59\x8a\x3d\x5b\xaa\x32\x23\xb6\ +\xa4\xde\xb9\x14\xa5\x17\xae\x76\x9c\xb0\xd9\xaa\xd5\x92\xee\x4a\ +\xaf\xdd\xae\x47\xf5\x46\x2d\x0a\x42\xcf\x75\x1d\xc7\xb3\x4c\x43\ +\x68\x5a\xff\xde\x6e\x71\xe3\xcb\x6f\xbe\xff\xf6\xc6\x47\xef\xf4\ +\x7f\xf9\xe1\x56\x25\xe0\x70\x31\x4e\x80\xa5\x58\x31\xd3\x58\x2d\ +\x5d\xbb\x1a\x37\x7a\x97\xdb\x4e\x94\xb6\x92\xa4\xd9\x4d\x93\xb8\ +\x1d\xd5\xea\x71\x18\x05\x81\xeb\x58\xae\x6b\xbb\xa6\x63\x9b\x3a\ +\x8d\x22\x84\x06\x21\x38\x18\xd3\x90\x43\xc5\xd1\x98\xe1\x20\x93\ +\x18\x8e\x18\x86\x63\x60\x98\x01\xb6\x26\x61\xe4\xf7\xb0\x7d\xf3\ +\xab\xfe\xfb\xef\xbe\x71\x0d\xc0\xef\xc4\x9f\xc4\x78\xb9\x00\x53\ +\x9c\x25\xb5\x62\x56\x22\x2b\xf3\xec\xa3\x58\x74\x36\x9e\x4b\xa8\ +\xb5\x6d\xdb\x6f\x34\x93\xb4\xd5\x4d\xd3\xb8\x19\x04\x41\x1c\x84\ +\x61\xe8\xd8\x96\xed\xda\x8e\x65\x5a\x96\x6e\x18\xba\xa2\xeb\x02\ +\x1a\xe7\x50\x14\x15\x39\xc9\x1d\x8d\x2b\xa1\x23\x89\xc3\x11\x08\ +\x46\xb2\x81\xa3\x11\x30\xca\x81\xbc\x00\x0a\x89\x53\x67\x9c\x0d\ +\x31\xb8\xfd\x39\x6e\x7e\xfd\xe9\x7b\xdb\x5f\x7c\xf0\x21\x80\x07\ +\xf3\x3c\x05\xf8\xff\x45\xac\xa2\x72\xa3\xb3\xf1\x7c\x52\x6f\x6f\ +\xb4\x9d\xb0\xd1\x8a\xd3\xb4\x1b\x47\xb5\x66\x14\xfa\x35\x27\x08\ +\x7c\xcf\x76\x3c\xcf\x2d\x1b\x2b\x24\xd7\x14\x53\x68\xd0\x34\x01\ +\xa9\x70\x00\x1c\x45\x31\x11\x3b\x91\x29\x29\x81\x3d\x12\x9b\x3d\ +\x92\x18\xed\x53\x56\x62\xc7\x84\x94\x8f\xd7\x2d\x2e\x0c\xec\x1d\ +\x39\x58\x59\xbd\xf8\xf2\x36\xf0\x71\xe5\x88\x11\x72\xfe\x0b\x30\ +\xff\xa3\x18\x55\xaa\xa7\x1c\xc5\xea\x39\x9f\xb1\xfc\x24\xb9\x30\ +\x8d\xee\xd3\x2f\xa4\x51\x73\xbd\xe3\xf8\x71\xb3\x1e\x37\x56\xea\ +\x51\x90\xf8\x81\x17\x79\x4e\x18\x4c\x9e\xb2\x9e\xeb\x58\xd4\x5c\ +\x4d\xa7\xc6\x5a\x86\x06\x9d\xe4\xaa\x9c\x83\x29\x04\x63\x27\xff\ +\xdd\x52\xe4\xdd\x7d\xe0\xfe\x43\x20\x1b\x80\xda\x0c\xe4\x92\x28\ +\x4a\xaa\x61\x73\x3f\x40\x6d\x3f\xc6\xdd\x1f\x87\x29\x00\x93\xd0\ +\xaa\x02\xe4\x8b\xbe\x00\x8c\xe0\xb3\x0d\x9e\x91\xc7\xa6\xee\x53\ +\x67\x84\x8b\x69\xb1\xc2\x74\x8d\xde\x33\x2f\xb6\x83\x64\xb5\xed\ +\x86\x49\x8b\x1e\xad\x2d\xcf\xf7\x5b\x61\xe8\x46\xbe\xe3\x86\x81\ +\x1f\x52\x67\x6d\xd3\x32\x2d\xcd\x32\x75\xc5\x20\xb1\x46\x29\x56\ +\x03\x9f\x88\x55\x18\x24\x03\x8a\x42\x22\xcf\x19\xf2\x49\xca\x49\ +\x02\x8f\x72\xa0\x18\x01\x52\x52\x4a\x49\x79\x2c\xf2\x37\x12\xbf\ +\xbb\x8f\x27\x3e\xa6\x1b\x81\x71\x11\x03\xd0\x09\xbe\xe8\x0b\xc0\ +\x2a\x79\x3a\x61\x10\x7c\xa6\xcd\xbc\x62\x7a\x39\x5c\xe2\x02\x91\ +\x10\x0d\x22\x9e\x24\xe7\xbc\xf1\xd2\xf5\xb7\x57\x5f\x7b\xfd\x2d\ +\xcf\x71\x6c\x6a\xab\xc1\x74\x53\xc0\xe0\x1c\x9c\x93\x5c\x95\x43\ +\x51\x15\x92\x86\x13\x48\x2e\x25\x50\x8a\x3d\x20\xe4\xf0\xf8\x5a\ +\xca\x13\xd8\x19\x6d\x65\x65\xec\x1f\x2e\x80\xfc\x0a\x61\x38\x30\ +\x2c\xdf\x15\x86\x15\x64\xc3\x83\xb2\x54\x8b\xfa\x19\x80\x11\x66\ +\x25\xd4\x23\x22\xa2\x4e\xac\x12\x69\x25\x37\x61\x8c\xc5\x42\x88\ +\x38\xcf\xf3\xa0\x5e\xaf\x8f\xf7\xf6\xf6\x6c\x5d\xd7\x3d\xdb\xb6\ +\xe1\x38\x0e\x3c\xcf\x43\x18\x86\x30\x4d\x13\xbd\x5e\x07\xeb\x17\ +\x2f\x01\x13\xb9\x52\x96\x92\x33\xc9\xca\x0f\x54\x45\x26\xff\xf9\ +\xb9\x4c\xfe\x6b\x4f\xc5\xf2\xb5\xef\x3c\x00\xcd\xe2\x2c\x80\x30\ +\x1d\xa5\x77\xf9\xda\x95\x5b\xdf\x7d\xf6\xd3\x22\x2f\x80\x5e\x89\ +\x6f\x12\x2b\xc4\x9b\x41\x10\xbc\xd2\xed\x76\x05\xe7\x1c\xaa\xaa\ +\x82\xe4\x43\x4a\x89\x2c\xcb\xd0\xef\xf7\xb1\xb9\xb9\x89\x9d\x9d\ +\x9d\xf2\x9a\x16\xa0\xc4\xb2\x2c\xd0\xfd\xe5\xbd\xfd\x5f\xef\xe0\ +\xe1\x21\xaa\x61\x73\xff\xd2\x32\x2e\x80\xdb\xf7\xcb\x85\x5a\x98\ +\x51\x35\x01\xdd\xf4\x10\x26\xab\xcf\x02\xf8\x64\x51\x17\x40\x21\ +\x8c\xaa\xf5\x4f\x11\xd7\xd7\xd6\xd6\x5e\xdd\xda\xda\x2a\xe5\xce\ +\x50\xca\xd5\x34\x0d\x83\xc1\x00\x86\x61\x60\x38\x1c\xa2\x28\x8a\ +\x69\xca\x7b\x06\x7f\xec\xa2\x00\xa0\x60\xfe\x23\x89\x9f\x49\x7e\ +\x36\xc6\xc2\x8d\xe5\xd5\xa0\x9b\xee\x3a\x00\x7d\x9e\xdf\x04\x94\ +\xc7\x5c\x1e\x41\xf8\xd5\x12\x5c\x69\x36\x9b\xf8\x9b\xbc\x2b\xfd\ +\x91\x23\xb7\xee\x8f\xac\xab\xef\x9e\x53\x1a\x69\x34\xd2\xc8\x7b\ +\x29\xda\xcb\x59\x3b\x40\x12\x38\x70\x60\xd8\xfe\x47\x83\x7c\x70\ +\x3e\x24\x40\xf2\x21\x06\xf2\x21\x59\x60\xed\x38\xb1\xb1\x88\x63\ +\xef\x7a\x0f\x5d\x23\x8d\x8e\xd1\xdc\xd3\xe7\x51\x45\x66\x5e\x15\ +\x09\x72\x49\x56\xf7\xf4\xf4\xb4\xab\xd7\x21\x40\x54\x77\x55\x35\ +\x46\xd0\xfb\xd5\xef\xfd\xde\x41\x16\x21\x24\x77\x86\x61\x08\xad\ +\x56\x0b\xa9\x1e\x59\xc1\x9c\x19\x5b\xc4\x03\xe8\x77\xbb\xf0\xc7\ +\x18\x3b\x87\x00\xed\x01\x2c\xe4\xa8\x34\xd6\xc0\x0b\xa2\x5b\x86\ +\xae\x82\xc5\x01\x80\x52\xee\x15\x04\x40\x14\x45\x4d\x4a\xa9\x7c\ +\x92\xad\x89\x03\x01\xd0\xed\x76\x53\x06\xd0\x9f\xfc\x24\x49\xe4\ +\x04\x1c\xdd\xf6\xfc\xd5\x18\x2a\xfe\xc3\x0e\x2c\xec\x28\x55\x97\ +\x21\x88\x2a\x6b\x82\x01\xbc\x45\x04\x00\xd1\x12\x2d\x75\xcf\xf3\ +\x42\x65\x44\x35\xe4\xd3\x8d\x03\x81\x80\xee\x00\x19\x00\x0d\x8f\ +\xe7\xf1\x7e\x3c\xea\x6e\xa0\xdb\x3e\x86\xd9\x87\x8a\xed\xbb\x43\ +\x80\xd3\x1e\xc0\x41\x07\xe0\xe5\x19\xc0\xce\x91\x50\xfc\x0b\x3c\ +\x82\x52\x15\x4a\xb5\xe5\x6a\x75\xe9\xda\x9a\xcc\x05\x2c\x94\x06\ +\x30\x62\xfc\x90\x52\x1a\xc5\x71\x0c\x38\xd1\xd7\x8b\xa7\xde\x62\ +\x82\xd1\x68\x84\x0c\x60\x19\x5f\x1e\xf1\x9e\xce\xe9\xe1\x58\xa3\ +\x62\x4a\x35\x3e\x9f\x23\xa6\x7d\x16\x33\x66\xea\x73\xc2\xe0\x5b\ +\x3b\xc2\x52\x15\x19\x80\x6c\xbf\xf7\xb7\x7f\xfe\xd9\x27\xff\xf0\ +\xbb\x45\x06\x40\x20\xf3\x00\x68\x50\x0d\x00\xce\x89\xd7\xa3\x28\ +\x42\x63\x5b\x6e\x00\x8f\x18\x0d\xbc\x7a\xf1\x0c\x96\xbe\xc3\x95\ +\x31\x35\x23\x63\x32\xe7\xff\xc3\xa0\x9e\x8f\xb9\x00\x68\xac\x6e\ +\xde\x5b\x54\x06\xa0\x46\xd9\x13\x19\x20\x35\xa4\x0c\xfd\xd4\x50\ +\x4c\x80\x3a\x01\xef\xc3\x10\x11\xef\xd1\x19\x40\xfe\x66\xf7\xc9\ +\x03\xa8\xbd\x97\x17\xfc\xf1\x7c\x44\x92\x3f\x2d\x70\x94\x1b\xab\ +\x10\x96\xeb\x6f\x0a\xad\x15\xa8\x48\xa0\x78\x00\x10\x9c\x5a\xa6\ +\xaf\x8a\xc6\x15\x0c\xe0\xa4\x7e\x1c\x52\x08\x76\x3a\x1d\x3c\xba\ +\x58\x20\xbb\x7e\xf2\x5c\xaf\xaa\x00\x37\x61\xe0\xfe\x88\x00\xfa\ +\x93\x02\x06\x46\x02\x7e\x18\x6d\xba\x53\xc2\xc5\x03\x80\xea\x00\ +\xc0\x93\x0e\x11\x68\x82\x41\xe6\x02\x50\x08\x62\x48\xe8\x0c\x05\ +\x07\x67\xaf\x33\xfb\x13\xf7\x93\x4f\xb8\x79\x96\x5c\x02\x18\x8b\ +\x0f\x8e\xa8\xd2\x80\x20\xac\xac\x88\x6c\xab\x87\x73\xd1\x00\xe0\ +\x4b\x00\x48\x3f\xae\xbb\x01\x39\x75\x7a\x46\x00\xf4\x7a\xbd\x54\ +\x07\x9c\x9d\x9d\x49\xdf\xaf\x1f\x61\xd4\xeb\x40\x12\x0f\x80\xfa\ +\x21\x10\x20\x0e\x21\xe8\x06\x07\xe1\xf0\x27\xc5\x1a\x61\x94\x46\ +\x02\xe5\xb5\xcd\xb7\x6f\x1d\x3c\xff\xea\xa9\xd4\x01\x8b\xc8\x00\ +\xe8\x9f\x52\x85\x2f\x41\x40\x29\xd5\x01\x20\x9f\x6e\x3c\x8f\xf7\ +\x49\x21\x68\x45\x01\x38\x29\x25\xd0\x3b\xdd\x83\xea\xea\x16\x70\ +\xe0\xb9\xe1\x00\x01\xe2\x04\x86\x4f\xcf\xa7\x07\x10\x78\x1c\x7c\ +\x8a\xc7\xcc\xe8\xaf\x5b\xdf\x2a\xd6\xc0\x28\xe0\x7c\x96\xe1\xd6\ +\xbd\xbf\xfa\xf0\x1c\x00\xff\x5d\x3c\x00\xdc\x20\xc0\xd9\x45\xa3\ +\xa3\xf1\xc4\x11\x45\x9e\x34\xbc\xc5\x04\x08\x80\xf3\x9a\x81\x65\ +\x7c\xf9\x19\x41\x32\x68\xed\x43\x65\x65\x4b\xd5\x99\xbd\x6c\x86\ +\x68\x5c\x1f\x20\xf4\x48\x66\x64\x31\xa5\xa1\xf1\x1c\x35\x0c\x84\ +\xb6\xfc\xf2\x95\x09\xa5\xc5\x67\x0d\x42\x29\x94\xaa\x4b\x50\x5b\ +\xba\x2e\x23\x01\xaf\x78\x00\xe8\xfd\xeb\xaa\x85\xb9\x25\xe9\x9f\ +\x31\x66\x85\x82\x38\xf4\xcf\x98\x0c\x52\x22\xd0\x16\x82\x08\x9e\ +\x32\x9c\xc0\xbb\x37\xa5\x51\x09\x90\x29\x60\x69\x9a\xfa\xc9\x21\ +\x87\x96\x48\xf9\xda\xac\xb1\xd8\x5a\xa3\x5c\x5f\x83\x20\xaa\xde\ +\x35\x32\x82\xac\x58\x00\xd8\x3d\xec\x5d\xc6\xd8\x20\x49\x12\x57\ +\x28\x68\x82\x00\xaf\x63\x32\xc8\x19\x06\x4a\x06\xe8\x9e\xbc\x82\ +\x72\x40\xa4\x4d\x80\xdb\x86\x76\x83\x82\xdb\x29\xdf\x83\x96\xb2\ +\x94\xd3\xa5\x70\x58\x58\xad\x51\x69\xac\x60\x9b\xd8\x4d\x01\x80\ +\x60\x51\x00\xc0\x04\x00\x62\xb9\x88\x81\x31\xd6\x39\x9f\x91\x23\ +\x14\x74\x81\x40\xba\x06\x27\x0b\xe0\x38\x78\xf9\xc8\xb0\xa6\xb2\ +\x84\x0d\x0a\x37\x38\x4e\x7a\x1c\x76\x8f\xd0\xe4\xc4\x79\x33\xb1\ +\x59\xc3\x1e\xbc\x58\xd6\x08\x4b\x35\x8c\x06\x96\x11\x0b\x1a\x03\ +\x14\xaf\x01\x34\x17\xd0\x17\x40\xe8\x24\x49\xb2\x62\x84\x82\xce\ +\x7c\x00\x66\xfb\x30\x12\x40\x37\xa1\xd7\x04\xf4\x7a\xc0\xf1\xde\ +\x4e\x5a\xa3\xa7\x64\x52\x02\x88\x38\x8d\xd6\x1d\x71\x78\xf8\x9a\ +\x8b\x3a\x3f\x77\xb2\x06\x17\xdf\xdc\xe0\x28\x9e\x35\x80\x33\x08\ +\xc2\x32\x26\x83\xc2\x5b\xf7\xfe\xf2\x8d\xdd\x2f\x7e\xf5\xb8\x78\ +\x00\xb8\xdd\x40\x4f\x0a\x41\x4d\x0b\x38\xe9\x4d\x96\x85\x11\x00\ +\x78\x1c\x0c\x06\x96\x10\x44\x30\xa0\x08\x1c\xc6\x1c\xa2\x20\x9f\ +\x22\x49\x8e\xf5\xb0\x46\xf0\xd5\x1e\x83\x98\x11\xd3\x16\x2e\x21\ +\xe8\x02\x47\xe1\xac\x41\xf0\x13\x05\xf0\xc2\x72\x1a\x0d\x5c\xdf\ +\xfe\xe0\xfd\x73\x00\x7c\xbc\x68\x0c\x90\x08\x17\xd0\x41\x10\x68\ +\x51\x00\x2a\x7d\x3d\x14\x34\x41\x20\x43\x41\x04\x82\x33\x1a\x18\ +\x75\x4f\x52\x00\x84\x7e\xce\x73\x4e\x88\xb4\x8f\xa5\xf8\x1f\xee\ +\x71\x18\x8c\x94\xc7\x77\x5a\x0f\x60\x0c\x38\x8a\x65\x0d\x02\x2c\ +\x45\x05\x67\x99\xad\x31\x12\xa8\x36\xd6\xdf\x91\x8b\x53\x16\x87\ +\x01\x14\x08\xba\x63\x42\x41\x97\x0e\x40\xa6\x40\x00\x48\xa3\xdb\ +\x35\x01\x1e\x43\xbb\x7d\x06\xb5\x52\xd3\xcd\xd2\x9c\x3b\x69\x73\ +\xe7\x80\xc3\x69\x3f\x9f\xb3\x74\xd6\x70\xb7\xf0\x17\xcb\x1a\x78\ +\x2f\x25\xe8\xba\x88\xcc\x86\x42\xa9\xbe\x02\x5e\x54\xd9\x56\x9d\ +\xd3\x4a\x08\x16\xcf\x00\x4a\x07\xf4\x24\xfd\x9b\x55\x41\xce\xb9\ +\x29\x02\xf1\x7a\x6e\x28\x28\xab\x82\xad\x93\x43\xd8\x58\x6b\x02\ +\xe7\x46\xd9\x37\x5d\x84\xc1\xc5\x77\x75\x6d\x98\x70\xd1\xde\x35\ +\x1d\x6b\x28\x60\x14\xcf\x1a\x1e\x61\xc0\x90\x03\xb8\x42\x5f\xb9\ +\xba\x82\x5a\x60\x03\xc9\xc0\x8e\x04\x8a\x67\x80\xa1\x9e\x0b\xd0\ +\xa6\xf3\xc9\x17\x03\x01\x80\x1d\xc1\xce\xd6\x30\x09\x80\xaf\xbe\ +\x7a\x00\xa7\xfe\x1d\x88\x99\x69\xd0\x7c\x45\x20\x70\x36\x15\x6b\ +\xe0\xe0\x84\x14\xce\x1a\x3e\x41\x06\xcc\x4a\xde\x3a\xee\xfc\xa8\ +\x8c\xfd\x81\x4d\xea\xf9\x55\x96\xc4\x66\x24\x50\xbc\x08\x94\x00\ +\x30\x5a\xbc\xf2\x0a\x42\x32\xfc\xd3\x5d\x80\x35\x91\x1d\x4e\x5e\ +\x3d\x80\xd5\x77\x7e\x94\x2f\xf7\x88\x2d\x06\x79\xde\x4d\x93\xc1\ +\x51\x28\x6b\x78\x14\x45\x33\x87\x11\xf3\xd2\x73\x3a\x6b\x78\x61\ +\x05\x82\x72\xdd\xbf\xfb\xe1\x8f\xef\x3f\xfc\xf4\xe7\x0f\x17\x05\ +\x00\xcc\x00\x00\xba\x81\x6e\x92\x24\x15\x01\x00\x33\x11\x64\xe5\ +\x01\x50\x23\xe8\xbe\xdf\xee\x10\x7e\x26\xcd\x6a\x9b\x54\xa9\xa7\ +\x5c\x60\x98\x57\x39\x5f\x4c\xd6\x40\x9f\xef\xa1\xf1\x13\x0a\x66\ +\x11\x5c\xb6\x89\x87\x51\x05\x56\x37\xdf\x7e\xf7\x1c\x00\x3f\x5f\ +\x48\x06\x90\xb9\x80\x38\x8e\x2b\x9a\x10\x74\xa5\x82\x65\x2e\x00\ +\x23\x01\xd4\x01\x2e\x21\x98\x55\x05\x4f\xf7\xa4\xd1\x80\xb8\x55\ +\xb3\x1b\x1c\x1c\xbe\x35\xac\x81\x4f\xbd\x4f\x12\x88\x99\x27\x9d\ +\xba\x93\x35\xc2\xea\x12\x36\x8a\x5a\x6d\xe2\x45\x2f\x0c\x61\xc2\ +\xf0\x7d\x19\x0e\x32\xc6\xd6\xa5\xf1\xf5\xb2\xb0\x39\x64\x67\x10\ +\x02\x41\xdc\x6f\x31\xc1\xb0\x7d\xa8\x8c\x64\xc1\x4f\x59\xc6\x06\ +\xc7\xb7\x87\x35\x42\x9a\xa4\x3e\x3f\x66\x24\x97\x35\x88\x58\x2f\ +\xe8\x47\x95\xdb\x46\x24\x90\x14\x07\x00\xbb\x28\xd4\x15\x2e\x40\ +\xef\x0b\x48\x23\x01\x1c\x2e\x26\x90\x1d\x40\xc8\x04\x4a\x00\x2a\ +\x20\x8c\x7a\x27\x96\x01\x88\xcd\xb3\xb6\xa9\xbf\x25\xac\x11\xd0\ +\x24\x05\x5b\x9c\x78\x90\x13\x41\x02\xe1\x19\x4b\x44\xe5\xb4\x39\ +\xe4\x3a\x46\x02\x8b\x06\x80\x44\x03\x40\x5f\x00\xc0\x08\x05\x9d\ +\x19\x41\xc9\x00\xa6\x00\x54\xae\x20\xee\x41\x3c\xec\x61\x31\x44\ +\xfe\x0a\x68\x5a\xf6\x25\x10\xfa\x78\x04\x38\xee\x60\xcc\x6c\x18\ +\x88\xc0\x22\xb3\x86\xf2\xfb\x94\xc3\x30\xf1\x80\xe5\xb0\x86\xcc\ +\x09\x24\x9c\xa2\x10\xc4\x9a\x40\x23\xaa\xd4\x9b\x83\x6e\x4b\x02\ +\x00\x0a\x77\x01\x06\x00\xba\x66\x69\x57\x1b\xae\x0e\x61\x4b\x03\ +\xe8\x9f\x11\x1c\x37\x4a\xc7\x70\xfd\xc6\x2d\x51\xf7\x27\x40\x35\ +\xcb\x3d\x3b\x62\xc0\x38\xb7\xfd\xfd\x82\xb3\x06\x01\x04\x6f\x0c\ +\x09\xa3\x48\xfd\x36\x6b\x48\xe3\x53\x96\xde\xc3\x81\xe3\x43\x80\ +\x29\x61\xba\xfd\xe1\x4f\xde\xff\xf2\x3f\xff\xf1\x8b\x45\x01\x00\ +\x1f\x93\x0c\xc2\x69\x53\xbf\x51\x09\x13\xc9\x20\x67\x38\x88\xec\ +\xd1\x3d\x78\x08\xd5\xed\x2d\xeb\x3f\xe7\xa0\xcd\x61\xf7\x98\xa9\ +\xb3\x16\xc3\x98\x1e\xdd\xbc\xb5\x38\xd6\x08\xbd\x24\x3d\x0e\x63\ +\x9a\xeb\x52\x90\x1d\x10\x1c\x72\x50\x2f\x00\x3f\xaa\xc2\xd2\xb5\ +\xbb\xf7\x11\x3f\xc5\x03\xc0\x9d\x0c\x3a\x05\x00\x3d\x1d\x9c\xd7\ +\x20\x6a\xa5\x83\xe5\xd4\xc1\x80\x3d\x03\xfb\x2f\xb0\x00\xf6\x43\ +\xd0\x47\xab\xcf\xe1\xc1\x5e\xa2\x62\x65\x67\x99\x15\xc6\x81\xa3\ +\x30\xd6\xc0\x70\x2f\xa0\x0c\x7a\xb1\x0f\x8c\xbb\x59\x23\xc4\x27\ +\x5f\xa4\x82\x75\x80\x45\xd5\xa5\xf3\xd9\x94\x6d\xe2\x2a\x12\x28\ +\xde\x05\xa8\x64\x10\x9e\x4b\x92\x84\x0a\x10\x8c\x8d\x04\x38\xe7\ +\xb9\xbd\x81\xf2\xf3\xf1\xde\xae\xe4\xc4\x74\x0c\x62\x80\x2f\x5e\ +\xa2\x72\xb6\xbc\xb2\x91\x8c\x19\x07\x8e\x62\x58\x03\x47\xc9\x8b\ +\x31\xde\x17\xd9\x4d\x6e\xb1\x46\x40\x39\x24\x8c\x20\x00\x2c\x60\ +\x44\xb5\x65\xdc\x3a\xe5\x96\x29\x04\x0b\x65\x00\xb3\x31\x44\xf4\ +\x05\xd4\x45\x7d\x5f\x36\x88\x3a\xdd\x80\xf4\xf9\xb6\x10\x54\x00\ +\x38\x3b\x79\x05\xd2\x5e\x28\xf6\xbe\x78\x11\xc3\x30\xb6\x7d\xb4\ +\xed\x9f\x73\xc0\x41\x8a\x63\x8d\x92\xcf\xd2\xef\xfd\xd8\x73\x56\ +\x03\x03\xca\xb2\xb8\x3a\x35\x3e\xb7\xb4\x06\x36\x87\x04\x51\x75\ +\x5d\x00\xc0\x33\x00\x50\x78\x18\x38\x90\x00\x60\x8c\xd5\xf5\xbe\ +\x00\x4a\x69\x9e\x1b\x90\xbe\x1e\x8f\xce\x9a\x80\xbe\x4e\xf0\xeb\ +\xbd\x04\xda\x03\x0e\xb9\x69\x76\xc3\xe7\x3b\xc1\xc1\x8b\x61\x8d\ +\x80\xf2\x34\xe6\x6f\x8f\x7c\x67\x45\xd0\x27\xe9\x39\x64\x87\x3c\ +\xad\x81\x42\x10\xdd\x40\xad\xb1\x7e\x67\xfd\x6c\x7f\x47\xb5\x89\ +\x17\x06\x00\xbb\x2f\x00\x67\xd7\x2c\x0a\xe9\x0d\xa2\xc6\x90\x85\ +\x1f\xb9\x61\x84\x35\x07\xad\x63\x04\x43\xaa\xf8\x0f\x5a\x2c\x2f\ +\xdd\xee\x4a\xa1\x18\x3e\x9a\x18\xac\x61\x0f\x32\x27\xd6\xc0\x43\ +\x39\x88\xa1\x9f\x28\xd5\x0f\x46\xa8\x87\x85\xa0\x7e\x22\xeb\x00\ +\x6e\xad\xe1\x07\x65\x04\x01\xd9\xba\xff\x37\x1f\x7c\xf6\xf1\xce\ +\x6f\x17\x05\x00\x5c\x03\x40\x57\x44\x02\xce\x50\x90\x73\xee\x12\ +\x82\x08\x80\xdc\xbe\x80\x61\xef\x14\xf6\xcf\x12\x78\x7a\xc4\x2c\ +\xb1\x95\x67\x51\x72\x31\x60\xd8\xe0\x98\x13\x6b\x94\x83\xac\x2e\ +\xd2\x1b\x65\xaa\x9f\x18\xe8\x0d\x3d\x06\x83\x84\xda\x49\x2f\x13\ +\xc5\x94\x42\x50\xaa\x43\x7d\x75\xf3\xcf\x90\x54\x16\x8a\x01\x24\ +\xfd\x8b\x5c\x80\xde\x17\x60\x87\x82\x36\x03\x38\xa3\x00\x9c\xc0\ +\x19\xfc\xfa\xd3\xdf\x43\x73\xf3\xbe\xb2\x9b\xed\xf0\x6d\x70\x28\ +\x6b\x16\xca\x1a\xe8\xd7\x23\x2f\x81\xb3\x61\xe0\x64\x8d\x92\x9f\ +\xc0\x30\xa1\x62\x29\x3b\x77\x6a\x0d\xfd\x4b\x58\x69\x40\x58\x6e\ +\xde\xb5\x17\x8c\x16\xcf\x00\x28\xcd\x7a\x38\xc7\x84\x82\x26\x18\ +\x74\x11\x68\x81\x40\x96\x85\x0f\x9f\x7f\x0e\x0d\x04\xbd\x31\x88\ +\xa2\xc7\x1c\x70\xf0\x42\x59\x03\x4f\x57\x83\x18\x7a\x31\x85\x38\ +\x91\x77\x2b\x70\x44\x1e\x93\x75\x80\x0b\x6b\x8d\x52\x25\xdd\x39\ +\x64\xd3\x8c\x04\x0a\x06\x80\x12\x82\x82\x05\x64\x39\x58\x4f\x08\ +\xe9\xc6\x37\x43\x41\xa7\x00\x94\x89\xa2\xd6\xfe\x63\xa7\x85\x39\ +\x70\x37\x65\x2b\x09\x5e\x28\x6b\x54\xa3\x38\x3d\x76\x47\x9e\x05\ +\x0e\x9f\xa6\xdd\x3f\xe2\x1a\xbf\xb0\xd6\xf0\xa3\xb2\xdc\x3a\xa6\ +\xe4\x5e\x30\x5a\xbc\x08\x3c\xd3\x18\x40\x5f\x2b\x68\xb1\x80\x58\ +\x4f\x88\x9d\x41\x56\xf8\xa7\xf7\x05\xf4\x8e\x9f\x0b\x69\xe4\xb6\ +\x06\xc9\x07\x46\x61\xac\x11\x78\x19\xf5\x1f\xf7\x83\x14\xc8\x3a\ +\x38\x08\x41\xea\x17\x11\xc1\x94\x5a\xc3\x0f\xcb\x58\x1a\xae\x5c\ +\xdb\xfe\xee\xd6\xeb\x27\xff\xa3\x45\x02\xc5\xbb\x80\x91\xd6\x21\ +\x1c\x27\x49\xe2\x6b\xab\x7e\xf5\x0e\x61\x5d\x0c\xca\x6b\x38\xf1\ +\xbc\x73\x8e\x3a\x47\x86\x40\x32\x8c\x44\xf2\x80\x51\x0c\x6b\xa0\ +\x45\x1a\x61\x02\xbd\x91\x07\x09\xb3\x8b\xbc\x95\x20\x4e\x59\x81\ +\x31\x3e\xb5\xd6\xf0\x83\x00\x02\x3f\x82\x8d\x37\xbf\xff\xc1\x39\ +\x00\xfe\x6b\x51\x00\xc0\x64\x32\x48\x1c\xdb\x8c\xb1\x25\x61\x7c\ +\xbd\x2c\xec\x12\x83\x32\x17\x90\xdb\x1e\x36\x1a\x9e\x8d\x5f\x01\ +\xc6\x73\x81\x51\x08\x6b\x54\xc2\x24\xbd\xb3\x33\xa4\xd6\xfd\xd5\ +\x20\x81\x91\x2a\x02\x4d\xad\x35\x90\x49\x83\x6a\x03\x2a\xcb\x1b\ +\x6f\xdb\x6d\xe2\xc5\x33\x40\x1f\x8f\x22\x17\xb0\xa4\xbb\x01\x63\ +\x58\x40\xf0\x3c\x0f\xef\x75\x6b\x81\x51\x67\xd2\xda\x3a\x37\x30\ +\x0a\x60\x0d\xcc\xf5\x57\x82\x04\x4e\xfb\x3e\x30\x03\x94\x01\xcd\ +\x4a\xc0\x9d\x81\x62\xed\xa9\xb5\x06\xe7\x10\x94\x1a\x10\x95\x9b\ +\x56\x9b\x78\x41\x00\xb0\x57\x09\x19\x8b\x44\x5c\xf5\x00\x8b\x01\ +\x10\x00\xc3\xe1\xd0\x99\x0f\x80\xb8\x0f\x83\x5e\x0b\x97\x48\x19\ +\x76\x98\xb8\xb6\xee\x8f\xce\x1a\xf5\x28\x86\x51\xfa\x6e\x01\xaa\ +\xee\x13\x2e\x1c\x81\x71\x36\xf0\x80\xf3\xcb\x69\x0d\x4a\x32\x31\ +\x18\x96\x1b\xe0\x85\x25\x11\x09\x14\x0d\x00\x5b\x08\xf6\x84\x0e\ +\xd0\xd7\xfc\xe5\xed\x15\x80\x53\x02\xc0\xa2\x7e\xf9\x7b\x54\xcb\ +\x27\x2f\xbf\x82\x6b\x77\x3f\x52\xe6\x22\x13\x57\x08\xfe\xd1\x59\ +\x23\xf4\x30\xe9\xc3\x60\xbf\x93\xb9\x33\xfd\xb6\x5a\x90\x40\x2f\ +\x26\xc0\xf8\x0c\x5a\x83\x40\xfa\x7b\x2f\x2c\x23\x08\x56\xdc\x0b\ +\x46\x8b\x67\x80\xb6\xc8\x08\x82\xd9\x1e\x66\x33\x80\xfa\x1c\x45\ +\x91\x34\x9a\xb3\x31\xe4\xe4\xf9\x1f\x60\xfd\xee\x47\xca\x28\x56\ +\x49\x80\xe4\xa1\x61\x2e\xac\x81\x83\x18\xc0\x68\x96\xe2\xd4\xef\ +\x0f\x13\x65\x64\x22\x80\x41\x09\x40\x1f\x33\x81\x33\x68\x0d\x8c\ +\x1e\x12\x86\x42\x30\xc2\xc2\x50\x74\xeb\xdd\x1f\xbe\xb1\xfb\xd9\ +\xc7\x8f\x17\x0d\x00\x7d\x31\xf5\x15\xbf\x56\x73\x88\x3e\xe4\xe6\ +\x91\x76\x18\xa8\x00\xd0\xde\x7f\x6c\xd9\xc1\x82\x80\xfb\x86\x39\ +\xb0\x86\x8d\x87\x4a\xc0\xd2\xd8\x7e\xbf\xe3\x7f\xb3\xbd\x8b\x02\ +\xd4\xa2\x18\x8e\x7b\xbe\x89\x1f\x20\x53\x68\x0d\x09\x7a\xc4\x2e\ +\xf5\x42\xa0\x7e\x04\x6b\x5b\xef\xbd\x77\x0e\x80\xff\x58\x04\x00\ +\x30\x23\x19\xd4\x02\x00\xdd\xf8\x32\xe7\x9f\xbb\x4e\x50\xb6\x86\ +\xe1\x30\xb3\x82\xe8\x1e\x3a\xa7\x2f\x55\xf8\xe8\x54\x64\x79\xc0\ +\x80\xb9\xb3\x06\xa5\x04\x96\xca\xe8\xdf\xa9\xd5\xe4\x51\x0f\x13\ +\x14\x7d\x2a\xd5\xab\xff\x7b\xa7\xd0\x1a\xd4\xe3\x90\x70\x25\x11\ +\xc2\x4a\x1d\x4a\xcd\xf5\xb7\x64\x24\x50\x3c\x03\x48\x00\xd8\xc9\ +\x20\x67\x28\xa8\xaf\x17\xc4\x7b\x2a\x95\x8a\xd4\x03\xce\x1e\x41\ +\xcc\x05\x00\x8c\x5d\x79\xeb\x06\x07\x99\x3f\x6b\xd4\xc3\x18\x11\ +\x02\xad\x3e\xd5\xff\x6d\x50\x0e\xb2\xdc\x7e\x4f\x17\x84\x97\xd4\ +\x1a\x14\x99\x92\x29\xd4\xa0\x10\x8c\x4a\x8d\x3b\xc6\x1e\x82\xac\ +\x68\x17\x30\xd4\x84\xe0\x20\x8e\xe3\x88\x73\xee\x0a\x05\x9d\xee\ +\x80\x52\x9a\x5b\x13\x60\x71\x4f\x67\x56\xc8\x5f\x94\x33\xae\x5f\ +\x80\x5c\x39\x6b\xa0\x6f\x6f\x94\x18\x1c\x75\x3d\xed\xd6\xec\x7c\ +\x3d\x4a\xe0\xa0\x93\x16\xba\x66\xd2\x1a\x34\x9d\xc8\x8a\x0a\x48\ +\x58\x15\xf4\xc3\xca\x0d\x73\xc1\x68\xb1\x51\x80\x02\x01\x1e\x3b\ +\x9c\xf3\x48\xab\x09\xe4\x6f\x1b\x63\x17\x85\x2c\x10\x60\x8b\x38\ +\x70\x26\x2d\x0f\x9c\xdb\x08\x98\x1e\x1c\xb3\xb3\x46\xa3\x84\x3a\ +\x87\x43\x7b\xf0\x4d\x60\x48\x97\x90\xf0\xd9\xb5\x06\xa5\x5c\xf6\ +\x08\xaa\x73\x28\x04\x2b\x8d\x15\x2f\x28\xd5\x92\x51\x5f\x45\x02\ +\x05\x00\xc0\xde\x32\x46\x95\x86\x57\x2e\xb2\x63\x08\x0e\xb1\x39\ +\x94\xbc\xd7\x9a\x94\x27\xd0\x3a\x7c\x06\xb5\xb5\xdb\xb6\x21\xd4\ +\x70\x80\x63\x7e\xac\x41\x09\x2a\x7f\x06\x87\xf8\xf4\x6b\xe0\xa8\ +\x04\x19\x68\x7b\x43\x8a\xe7\x66\xd6\x1a\x94\x70\xd1\x43\xa8\x2f\ +\xad\x2b\xe1\x4a\x21\xef\xce\x87\x3f\xbd\xf7\xe8\x37\xff\xfc\xa0\ +\x60\x00\xb8\xd7\x08\x98\x42\x10\x8d\x2b\x86\x2b\x24\x94\x5b\xc6\ +\x38\xeb\x01\x90\xf4\xa1\xb5\xbf\x03\xb5\xd5\xdb\x39\xc5\x12\x8b\ +\xa8\xf5\x31\x17\xd6\x68\xa6\x4f\x3f\x40\xbb\x4f\xa5\x6d\x80\x52\ +\x80\x46\xc4\x60\xaf\xed\x03\x9f\x59\x6b\xa8\xec\xe2\x90\x7d\x53\ +\x5f\x10\xcf\x07\x2f\x28\xc1\xd2\xc6\x9b\xef\x02\xc0\xcf\xf1\xb6\ +\x82\x01\xa0\x74\x80\x05\x00\x35\x5d\x2e\x40\xba\x08\xb9\x7d\xac\ +\xb3\x26\xe0\x7b\x1e\x9c\xbc\xfc\x02\x36\xee\xfd\x20\x2f\x1d\xab\ +\x86\xbd\x22\xf7\xca\x59\x83\x10\x9e\xd2\xfc\x7e\xc7\x03\xa6\x65\ +\x75\x56\xca\x09\x9c\xf4\x30\xa9\x75\x35\x5a\xc3\xa7\x5c\x84\x58\ +\x36\x38\x30\x33\x5a\xaa\xaf\xbe\x21\xf7\x10\x14\x97\x78\xd1\x00\ +\x88\x65\x6b\x98\x9e\x0c\xd2\x43\x41\xc7\x90\x51\x82\x4b\x03\xe0\ +\x14\xb9\x80\x27\xb6\xa1\x89\x71\xc2\x0d\x8c\x2b\x67\x8d\x66\x39\ +\x6b\xe6\x68\x0d\xa8\x96\x06\x66\xd9\xfb\x0b\x47\xd2\xa2\xb3\x6b\ +\x0d\x04\x40\x9c\xe0\x57\x9b\x4f\x82\x72\x03\xfc\xa8\x76\xdb\xdc\ +\x4d\xbc\x48\x17\xc0\x1c\x9d\x41\x7a\x46\x50\xb6\x7f\x59\xfe\xce\ +\x5e\x26\x66\x77\x06\xb5\x4f\x5f\x01\xcf\x5d\x72\x3d\x19\x18\xb3\ +\xb3\x86\xf2\xfd\xcb\xf8\xf4\xb7\x45\x5e\x5f\x18\x0a\xa9\xff\xc5\ +\x19\xda\xe1\xea\xb4\x86\xe7\x71\x18\x60\x55\xd1\x01\x8e\x00\x37\ +\x8e\x28\x55\x37\xcc\xee\xa0\x22\x19\x80\x19\x8d\x21\xe6\x6e\xe0\ +\xb9\xea\x57\xee\x1e\xea\x70\x1b\x2a\x17\xd0\x3d\x35\xac\x66\x27\ +\x66\xdd\xc0\xb8\x5a\xd6\xc0\xa7\x9f\x71\x80\xd3\x01\x01\x22\xae\ +\xae\xd7\x12\x38\xe8\x52\x6d\xad\xe2\xec\x5a\x23\xf0\x78\x1a\xf8\ +\x30\x07\xff\x73\x19\x09\x54\x1b\xcd\x72\x6d\x75\xa9\xd7\x3e\x14\ +\x00\x28\x52\x03\xd8\xab\x84\xf8\xf9\x20\xda\x22\x11\x5b\xed\xaa\ +\x30\x50\x46\x02\xf2\xba\xa5\x05\x78\xdc\x87\x1c\xfc\x64\x86\x20\ +\x93\x80\x31\x3b\x6b\xe0\x2d\xab\xe5\x24\x55\xfe\xd2\xf5\x23\x20\ +\x30\xff\xdf\x1b\x91\x2b\xd5\x1a\x01\xc5\xe4\x8f\x01\x0e\xed\xa3\ +\xe7\x47\xe0\xfb\x65\x7a\xeb\x83\x1f\xbf\xf7\xf5\x2f\x7f\xf6\xb9\ +\x00\x40\xf1\x51\x80\x91\x10\xaa\x68\x6e\x40\x1a\x36\x3f\xe4\xa1\ +\x34\xb7\x3d\x0c\xd8\x10\x06\x9d\x63\x88\xaa\xcb\x6e\x16\xe0\x93\ +\x80\x31\x3b\x6b\xd4\x4b\x2c\x55\xfa\xc7\x3d\x84\x1c\x4f\x9f\xd2\ +\x66\xc4\xe0\xd9\xa9\x0f\xc0\xaf\x4e\x6b\x10\x92\xb9\x95\xfe\x60\ +\x8c\x4d\x29\xc5\xb2\x30\x34\xd6\xb7\xc5\x6e\xe2\x8b\xc5\x00\x78\ +\xec\xea\x00\x10\x47\xdd\xf0\xe6\x67\x14\x82\xd8\x17\xe0\x64\x00\ +\xc2\x46\x69\x28\x18\x56\x96\x1c\xcb\xb0\x49\x2e\x2d\xc1\x15\xb2\ +\xc6\x6a\x99\xc3\x69\x8f\x48\x5a\x86\x8d\x3a\x83\xd7\x1d\x41\xfd\ +\x57\xa8\x35\x02\x9a\x31\x60\x62\xb8\x14\x13\x24\x41\x1a\x09\xac\ +\xbc\x61\x6e\x1d\x53\x04\x00\xc0\x10\x81\x23\x3c\x5a\x45\x21\xf7\ +\x4b\xa5\xa4\xb1\x11\x00\x66\x2e\x40\x31\x40\xd2\x83\xf6\xd1\x2e\ +\xac\xde\xf9\xd0\xa2\x44\xee\x5c\xa8\x77\x39\x70\x90\x9c\x72\x5d\ +\x14\x70\xa8\x84\x0c\x9e\x9f\x65\x31\xfe\x4a\x85\xc1\x60\x44\xa0\ +\x37\x24\x00\xd3\xbb\x94\xb1\x5a\x23\xf4\x31\xf6\x27\xc0\x27\xb0\ +\x46\x10\xd5\x70\xde\x32\x23\x81\x62\x00\x60\x87\x82\x9d\x89\xa1\ +\xa0\x62\x01\x59\x15\xb4\x0c\x2f\xbf\x63\x42\xe4\x6c\xef\x21\x70\ +\xb0\x85\x96\xcd\xb4\x96\xc0\x9a\x8e\x35\x1c\xe0\x58\xad\x60\x9f\ +\x1f\x81\x41\x9c\xad\xe6\x59\x2a\x33\x78\x72\xe4\x21\xf8\xa6\xd2\ +\x1a\x99\xed\xf3\x85\x28\x15\x6f\x3d\xe9\x22\xb0\xf8\x78\xd6\xc0\ +\x2e\x61\xbf\x54\xbb\x06\x00\xe5\x45\x01\x00\xd3\x57\x09\x09\x03\ +\x5b\x2f\x84\x90\x46\xcf\x5f\x25\x64\x33\x00\xfe\xae\x7d\xf0\x04\ +\xb8\xb9\x34\x5c\x55\xd1\xf2\xe9\x12\x60\x26\xd6\xf0\x28\x86\x7e\ +\x0c\x76\x8e\xb3\xd0\xef\x46\x83\xc1\xab\x33\x2c\xf3\x9a\xac\x31\ +\xbb\xd6\x08\x7c\x9e\xba\x94\x98\xf1\x89\xac\x41\xbc\x10\x57\x0a\ +\x35\x9a\x37\xde\xba\x7e\xfa\xf2\xeb\x1d\xa9\x03\x0a\x73\x01\xe6\ +\x0e\xe2\x8e\x50\xd0\xf9\xf4\x8b\xfb\x72\x73\x01\x12\x1c\xdd\xd3\ +\xbd\xfc\xe4\x89\x02\x86\x0b\x1c\x33\xb1\xc6\x72\x85\xa5\xf9\xf8\ +\x56\x9f\xc0\x6a\x25\x53\xfd\xc8\x06\x36\x6b\xcc\xae\x35\x22\x8f\ +\xc3\x30\x46\x63\x4f\x66\x0d\x1a\x60\x73\x48\x00\x37\xde\xf9\xc1\ +\x7b\xe7\x00\xf8\xb4\x68\x00\x70\x17\x00\x38\xe7\x7a\x32\x48\x1a\ +\x5d\x3f\x9a\xb9\x00\x79\xde\x9a\x71\xbf\x85\x47\x9d\x32\xcd\x7e\ +\x0a\xf7\x98\x91\x35\xd6\xab\x1c\x0e\x3a\x24\x55\xe6\xab\x55\x06\ +\x5f\xef\x0b\x16\xbb\x62\xad\x81\x4c\xe3\x8b\xce\x61\x7e\x01\xd6\ +\x20\x40\x71\x23\x69\x5c\x30\x8a\x6d\xe2\x41\xf1\x00\xb0\xb7\x8c\ +\x31\x93\x3b\x79\x95\x2f\xfd\x9a\x15\x06\xaa\xef\x23\xc8\x7c\x00\ +\x51\x34\xce\xf3\xe3\x76\x71\x98\x89\x35\x9a\x25\x0c\xf7\x00\x0e\ +\x3b\x14\xee\xac\x24\xf0\xf2\x4c\xeb\xfc\x11\xc7\xe9\x85\xa8\x9b\ +\x35\xf0\xe9\x47\xe6\x1f\x25\x17\x67\x8d\x20\xaa\x42\x58\x59\x16\ +\xef\x15\x52\x0b\x46\x8b\x75\x01\x6a\x95\x10\x9e\xa3\xd2\x90\x92\ +\x09\xf0\x73\xce\xd0\xd3\xc5\x96\x2b\x20\x9c\x65\x55\xc1\x6b\xdb\ +\xe3\x7b\xfb\xec\xee\xca\x4b\xb3\xc6\x7a\x8d\xc1\x71\x37\x2b\xfd\ +\xc6\x09\xe8\xdb\xd1\x4f\xe9\x52\x26\x03\xa3\xe4\x73\x18\xc4\x64\ +\x2a\xd6\xf0\xa3\x2a\x0a\x41\x7d\xeb\x18\x0f\x85\x78\xa1\x51\x80\ +\x91\x0b\xa8\x99\xb9\x00\xbd\x12\xa8\x0d\x3d\x14\x74\xea\x00\x4a\ +\x62\x68\x1d\xec\x40\x6d\xfd\x8e\x22\xd2\x5c\x21\x67\x8d\xa9\x59\ +\x23\xf4\x21\x65\x80\x07\x07\x14\x36\x9b\x1c\xbe\x7c\x4d\x81\xcf\ +\x49\x6b\x04\x9e\xc8\xfd\x0f\x08\x9e\xbf\x30\x6b\x78\x41\x09\xf3\ +\x01\xd7\x8c\x9a\x40\xe1\x1a\x60\xa0\xe5\x04\x6a\x5a\x67\x90\x54\ +\xf4\xf8\xdd\x15\x0a\xca\x1d\x43\x9c\x9d\x41\x84\x0d\xc4\x26\xd2\ +\x72\xf0\x7c\x21\x67\x17\x58\xa6\x66\x8d\x6b\x35\x0c\xfd\x32\x0d\ +\xf0\xe2\x94\x40\xcc\xe6\xa7\x35\xf0\xe9\x47\x62\x1c\xc6\xd3\xb1\ +\x06\xf5\x43\x08\xa2\x7a\xf9\xfa\x9b\x7f\xb1\xb5\xf7\xe0\xd7\x3b\ +\xc5\x01\xc0\xee\x0b\x18\x98\x42\x50\x32\x00\xa5\x34\x2f\x1b\x28\ +\xf3\x04\xee\x65\x62\x49\x1f\x3a\x07\x4f\xbf\x69\x68\xd3\x9a\xf9\ +\xe0\x98\x8a\x35\x28\xc1\x22\x0f\xb6\x7b\x41\xea\x97\x8f\x32\x49\ +\x3b\x37\xad\x51\x0a\x04\xfd\x4f\x19\xa1\x10\x2f\x48\x23\x81\xd5\ +\xed\xef\xbd\x7f\x0e\x80\x5f\x2d\x12\x00\x3a\x56\x63\x88\xea\x10\ +\x76\x19\xdf\x99\x0b\xd0\x7f\xeb\x79\x34\xcb\x05\x00\x9f\xf4\x2e\ +\x1e\x1b\x1c\x53\xb2\xc6\x6a\x2d\x7b\xf5\x6c\x39\x00\xf8\xfd\x2b\ +\x02\x30\x47\xad\x81\xbe\xdf\x4b\x17\x8f\xa4\xc8\x9f\xcc\x1a\x06\ +\x08\x31\x21\x54\x5d\xbe\xa9\xda\xc4\x0b\x03\x80\xbb\x35\xcc\x95\ +\xdd\x33\xe7\xd8\x64\x90\x5e\x2d\xec\x9d\xed\x4f\x2c\xa7\xba\xc1\ +\x31\x1d\x6b\x6c\x34\x78\xfa\x7d\xf7\x84\xc0\x08\x69\x79\x8e\x5a\ +\x03\x9f\x7e\x26\xf6\x41\xe4\x97\xc8\x6b\xf8\x51\x0d\xc2\x6a\x73\ +\xdb\x6c\x13\x2f\x8e\x01\x14\x00\xda\xe2\xbc\xb9\x71\xd4\x54\xd9\ +\x40\x1d\x3c\xc9\xa8\x0b\x7c\xcc\xfb\x77\x26\x83\x63\x32\x6b\x34\ +\x4a\x00\xb5\x90\xc3\x51\x8f\xc0\xeb\x36\x99\xab\xd6\x20\x62\x0d\ +\x41\x2f\x8d\x70\x2f\x95\xd7\xc8\x52\xc2\x61\x4d\x2c\x18\x2d\x18\ +\x00\xaa\x28\xa4\xb6\x8c\x31\xdd\x80\x4c\x08\x19\x43\x3e\xe5\x28\ +\x12\x73\x5f\x2d\x8b\xc6\x18\x76\x4f\x20\xac\x34\x6d\x62\xe7\x63\ +\xc2\x33\x72\x71\xd6\xb8\xd1\x80\x34\xcd\xfb\x68\x9f\x00\xf0\xf9\ +\x6a\x0d\x74\x31\x94\xa4\xb9\xff\x4b\xe6\x35\x64\x73\x48\x73\x5d\ +\x5f\x30\x5a\xa8\x0b\x30\x3a\x83\x70\xb8\xde\x10\xea\x74\x01\x92\ +\x05\x44\xe4\x60\x81\x87\x06\x04\xda\x07\x3b\xb0\xbc\xf5\x81\x73\ +\xa3\x86\xdc\xe8\xf9\x82\xac\x11\x7a\x00\x6b\x55\x0e\x8f\x0e\x71\ +\x99\xf7\xfc\xb5\x46\x35\xca\x96\x7d\xf5\xe3\xcb\xe7\x35\x30\x12\ +\xf0\xc2\x4a\x70\xeb\x83\x9f\xbc\xb9\xfb\xbf\xff\xf6\xe8\xa2\x00\ +\xa0\x73\x75\x01\xaa\x43\x38\x36\x92\x3a\x38\x73\x17\x4b\xa8\x30\ +\xd1\xad\x19\x08\x30\x68\xef\xef\x38\xb9\x87\xbb\x26\x5e\xc8\x99\ +\x1c\xec\xfb\x37\x1a\x99\xea\xdf\x3b\x73\x1a\xc2\x3d\x39\x77\xfd\ +\x89\xf1\x7f\x59\x34\x94\xa0\x00\xec\x0e\x84\xf8\xb3\xfe\xed\x6a\ +\x8e\xeb\x35\x24\xd4\x07\xea\xf9\xb0\xbc\xf9\xee\x7d\x64\xf6\xa2\ +\x18\xc0\x4e\x06\xa9\x5c\x40\xdd\x88\x04\xf4\x7d\x81\x4c\x20\x38\ +\xf3\x04\x38\x65\x63\x48\xfb\xf0\x69\x7e\x49\x75\x8a\x17\x4d\x9b\ +\xac\x11\xf9\x00\x5b\x4b\x00\xfb\x1d\x10\x31\xff\x7c\xb5\x46\x2d\ +\x02\x1c\x69\xae\x81\x1b\x09\xdf\x69\xb5\x86\x1f\x56\xa1\xdc\xb8\ +\xa6\xda\xc4\x8b\x02\x80\xb9\x4a\x48\x02\xc0\x08\xe9\x5c\x89\x20\ +\x93\x01\xdc\x3b\x86\x0c\x5b\xd0\x39\x12\xbb\x88\x4f\xbf\xa5\xcb\ +\x58\x70\xdc\xbb\x0e\xe0\x7b\xd9\x6b\xe7\xb5\x2b\x73\xd1\x1a\x04\ +\x50\x68\x62\xde\x5f\x26\x7f\xd4\x05\x7e\x09\xad\xe1\x85\x55\x08\ +\xaa\x4b\xdb\x53\xbc\x6a\xde\x00\xc0\xfc\x93\x41\xa6\x0b\xb0\x41\ +\xa0\x18\xc0\x3a\x27\x27\x25\x1c\x3a\x92\x01\xf2\xbc\x3e\x5e\x9a\ +\x72\x23\xa8\xcd\x25\x80\xd5\x2a\x8a\x31\x80\x93\x2e\x98\x63\x76\ +\xad\x61\x80\xa3\x1a\x66\x2b\x89\xda\x7d\x98\x35\xaf\x21\x42\xc1\ +\x12\x16\x86\xe4\x82\x51\xbf\x40\x00\xd8\xdb\xc7\x3a\x22\x01\xdd\ +\xb8\xd6\x67\x25\x10\xed\xa5\xe2\xe8\x3a\x06\xad\x03\x3b\x27\x4f\ +\x26\x57\xce\xf2\xba\xb4\x4a\x21\x87\xb7\xaf\xe1\xfd\xf8\xf4\x73\ +\xe0\x93\x58\x63\x2a\x60\xb8\x5f\x1f\xdb\x28\x09\xfa\xef\xc3\xcc\ +\x79\x0d\x3c\x45\xbd\x00\x82\x4a\x73\xd5\x8f\xaa\xb5\x78\xd0\x51\ +\x91\xc0\x24\x00\x14\x90\x0b\xd0\x1b\x44\xe5\x34\x19\x40\xef\x1d\ +\xb4\x57\x0c\x25\x23\x4b\x14\xdb\x58\xe0\x13\x80\xa1\x2e\xbf\x7f\ +\x53\xbd\x8f\xe8\xe5\xa9\xd1\x35\x44\xe0\xca\xb5\x46\xe8\x63\xf2\ +\x07\xd2\x7e\xc2\xd1\x38\xad\x71\x51\x97\xc2\x33\x00\x78\x7e\xe4\ +\xdd\x7a\xff\xa7\xf7\x9e\xfc\xe6\x9f\xbe\x96\x3a\xa0\x78\x00\xc8\ +\x5c\x80\x0d\x82\xbc\x74\xb0\x99\x0b\xb0\x7e\xe7\x85\x7e\xaa\x03\ +\x2a\x2b\x9b\xee\x4c\x5f\xee\x17\x9b\x35\xb6\x57\x49\x1a\xfa\x25\ +\x1c\x3b\x7e\xe4\xd2\x2e\x35\xc8\x1c\xb4\x46\xb3\x94\x9d\x6b\x0d\ +\x26\xac\x1a\x9c\x22\x7c\x05\xea\xa5\x5b\xc7\x34\x6e\xbe\x8d\x1b\ +\x2b\xff\x2b\x9e\x29\x20\x0c\xb4\xb7\x8c\x31\x19\x40\xef\x0d\xc0\ +\x61\x31\x80\x4a\xfb\xe6\xba\x01\xcf\x0f\xa0\x73\xb0\x23\xc2\x26\ +\x6e\xcf\xb1\xcb\x31\xd5\x44\x11\xf6\xd6\x35\x92\xbe\x84\x2a\xa0\ +\x00\x2f\x4e\xd0\x52\x46\xc0\x96\x1b\x48\x3a\x4f\x8a\xbf\xef\x9e\ +\x38\x28\x91\xf4\x2f\xfc\xff\xb4\xe1\xab\xfc\xc4\xed\x89\x19\xc1\ +\x52\x6d\xdd\x58\x30\x5a\x24\x03\xd8\xc9\x20\x9d\x01\xcc\x95\x40\ +\x66\x2e\xc0\x6a\x21\x93\xd3\x23\x90\x26\x83\xd6\xde\xfa\x6b\xb7\ +\xb7\xe7\x39\x54\x49\xbe\xd9\x7d\xfb\xdd\x2d\x0a\x4f\x0e\x79\x2a\ +\xfe\x12\xae\xfc\xbf\xf9\xd3\xd9\xb5\x86\x62\x8d\x7a\x39\x03\x41\ +\x6b\x80\xac\x73\x29\xad\x91\x9b\x30\xa2\x61\x05\xf7\x0f\xba\x6d\ +\xec\x1c\x92\x14\x01\x00\xd5\x1a\xa6\x5e\x27\x13\x38\x8a\x42\xb6\ +\x81\x6d\x21\x68\x89\x40\x9e\x0c\x04\x03\x18\xd1\xb3\x33\x54\x76\ +\x77\x04\xbf\x75\x9d\x80\x47\x39\xbc\x6e\x71\x78\x63\x8d\xc2\xee\ +\x09\x77\xc5\xfe\x33\x6a\x0d\x7b\x2c\x95\xb3\x6b\x67\x3d\x7e\x69\ +\xad\x61\x63\x54\xa5\x84\xfd\x52\x63\xc3\x7c\xaf\x50\x51\x51\x40\ +\xa2\x25\x83\xfa\x39\x00\x90\xd3\x59\x13\x10\xc3\x02\x41\x32\x68\ +\x43\xfb\xf0\x99\xbd\x6a\x96\x8f\xe9\xa3\x23\x7a\x97\x2f\x39\xa7\ +\x7e\x0a\xbf\x78\xc0\xe0\xf6\x6a\x06\x1c\x04\x00\xe7\xb9\xac\x31\ +\xa3\xd6\x50\x79\xff\x52\x40\x20\x61\x1c\xda\x98\xfc\xb9\x62\xad\ +\x41\x69\x80\x5b\xc9\x2e\x57\x97\x37\x57\x3a\xc7\xcf\x77\xf0\x54\ +\x01\x2e\xc0\xda\x32\x66\x28\x93\x41\x8e\x50\xd0\x35\x8d\x45\xa3\ +\xf6\x64\xc3\x0e\x74\x8f\x9e\x81\x91\x0a\x18\x9f\x40\xe1\xaa\xf3\ +\xf6\x7b\xb7\x91\xfa\x59\x2a\xc2\x36\x9b\x14\xfa\x23\x0e\x87\x6d\ +\x0e\x7c\x02\x6b\x58\x83\xd8\x86\x70\x83\x43\x01\x8f\x40\x26\x36\ +\x39\xe3\x26\x6b\xcc\x9c\xd7\x20\x9e\x0f\x24\x08\xc8\x8d\x77\x7f\ +\x74\xef\xc1\x27\x7f\xf7\xfb\x82\x01\x60\xb7\x88\x2b\xaa\x77\x0b\ +\x41\x31\xf4\xdd\x44\x72\x01\x32\x68\x1f\x8a\xea\xd9\x74\x95\xb3\ +\xfb\x37\x68\xda\xe8\xf1\xd9\x0b\x06\xdf\x59\xa3\x80\x44\xb3\x7b\ +\x2c\x80\x97\xcf\x1a\x97\xd6\x1a\x7a\xcb\x77\xb3\x9c\x19\xfa\xa4\ +\x37\x1f\xad\x41\x08\x46\x4f\x21\x54\xd7\xc4\x82\xd1\xc2\x00\x60\ +\x6f\x19\xd3\xc9\xa1\xf3\x5c\x23\x4b\x00\xe4\xfd\x8e\x06\x1e\x24\ +\xf1\x00\x63\x5f\x57\x9c\xec\x04\xc6\x7a\x8d\xc0\x9b\xd7\x28\x7c\ +\xf2\x20\x7b\xf9\xe4\xdd\xb5\xcc\x40\x4f\x11\x00\xe3\xb7\x6e\xb9\ +\xb4\xd6\x50\xbe\x3f\x83\xc3\x30\xe1\xd0\x1d\xce\x4f\x6b\xe0\x5e\ +\xc2\x51\x7d\xf5\x3b\xe6\x1b\x46\x8b\x02\x40\x2c\x8c\xdf\x1e\x13\ +\x09\xe4\x2d\x16\xc1\x6b\xc8\x12\x4e\xd0\x60\x3b\x34\x56\x05\x1b\ +\x1b\x6f\x1b\x94\xec\x1e\xd8\x71\xfb\xbd\x6d\x0f\x76\x0e\x19\xec\ +\x9d\x31\xb8\xd9\xa4\x50\x09\x49\x4a\xfd\x9d\x3e\x1f\xcb\x1a\x70\ +\x49\xad\xa1\x7f\xc5\x48\x03\xf1\x7c\xda\x83\xb9\x6a\x0d\x1a\x94\ +\xa0\x5c\x6b\x6e\x99\x91\x40\x11\x2e\x80\x49\x17\x60\x00\xc0\x7c\ +\x2d\xcc\x38\x1d\x90\x5b\x13\xf0\x82\x08\x3a\x07\x8f\xa1\xb1\xf1\ +\x96\x41\xc9\x6e\x08\x7c\xb8\xe9\x81\x47\x08\xfc\x76\x37\x06\x1c\ +\x6f\xac\x53\xbc\x13\x5f\x49\x37\x96\x35\xc4\x98\x5a\x6b\xe8\xf7\ +\xd6\x22\x02\x91\x9f\x99\xea\xa8\x3b\x5f\xad\xc1\x19\x40\x89\x8c\ +\x2a\x02\x00\xb4\x00\x00\xd8\x2f\x93\x32\x72\x01\xee\x69\xb3\xc0\ +\x78\x17\x40\x08\x76\x08\x5b\xc6\x70\x41\xe0\x46\x93\x9e\xd3\x3d\ +\x85\x5f\x3e\x4c\xd2\xca\x5b\xbd\x44\xe0\x7a\x23\x6b\xf3\x7e\x76\ +\xc2\x2e\xb2\xaf\xcf\x14\x5a\xc3\x1e\x1b\x4d\xbc\x9b\xa7\xe2\x6f\ +\x38\x9a\x9f\xd6\x88\x02\x02\x6b\xf5\x1e\xfc\x62\xe7\xf3\xd7\x12\ +\x1b\x45\x6b\x80\x91\x98\x2d\x50\x9a\xdd\xa4\x73\xfd\xfb\x85\x23\ +\x01\x9e\x0c\xa1\x73\xb8\x03\xb9\x5b\x07\x13\x95\x77\xff\xfe\x1d\ +\x0f\x9e\x1d\x33\xd8\x3d\x49\x80\x88\xa7\x1f\xc7\x8b\x13\x06\xa3\ +\xd8\xa1\xfd\x27\xbb\x94\x0b\xb3\xc6\x4a\x85\x40\x3d\xca\xe8\xf0\ +\xb0\x33\x9b\xd6\xa0\xa9\x2b\x23\x69\xd6\x32\x0c\x90\x55\x28\x04\ +\x1e\x16\xb3\xbc\x74\x5b\xfa\xd6\xab\x3f\xc0\xbf\xff\xcb\xdf\xc7\ +\x4f\x7f\xf7\xc9\xcf\x30\x02\x13\x36\x60\x45\x47\x01\x43\x6d\xa5\ +\x50\x68\xea\x00\xbb\x31\xc4\xf2\x91\x4e\x16\x88\x07\x2d\xc1\x00\ +\xee\x7b\x89\xa8\x9d\x7e\xb4\xe5\xa7\x6c\xf1\xe9\x4e\xd6\x72\xeb\ +\x51\xcc\xff\x7b\x80\xe3\xd1\x01\x73\x6f\xc2\x60\xbb\x94\xe9\x81\ +\x21\x32\x31\xb7\x96\xa9\xa8\xfa\x71\x38\xed\x8e\xd7\x1a\x1e\x25\ +\xa9\x41\x43\x1f\xd7\x09\x50\x88\x02\x3c\x12\x28\xa7\x9f\x01\xf8\ +\xb0\x0f\x83\x7e\x17\x7a\xbd\x0e\xb4\x5b\x27\x70\x7c\xb8\x07\x47\ +\xfb\xbb\x70\xf4\x7a\x0f\xda\xa7\x27\xd0\x8b\x19\xc4\x09\xf9\xcd\ +\xe9\xab\x2f\x3f\x13\xda\x6b\x54\x0c\x00\xec\x55\x42\x89\x40\x64\ +\xe8\xa2\x73\x77\x4d\xc0\x66\x01\xfd\xf3\xb0\x7d\x08\xa3\xd8\x41\ +\x74\x44\x19\x62\x6b\x85\xc2\xed\xf3\xf9\xab\xc7\x31\xf4\x45\x9a\ +\xef\x9d\x0d\x3f\x7d\x6a\xda\x7d\x0e\xaf\xcf\x98\xc5\x1a\xf6\xe0\ +\x39\x94\x3c\x99\x35\xfe\x8f\xb8\xb3\xf9\x6d\x1b\x39\xc3\xf8\x23\ +\x93\x92\x2c\xcb\xb2\xe5\xc4\x4e\x9c\xac\xd7\x35\xb6\x4d\x1b\xa4\ +\x45\xd0\xb4\xbb\x69\x0a\x2c\x10\x20\x05\x36\xc7\x9e\x7a\xe8\xa5\ +\xd8\x7f\xa9\xa7\xfe\x1d\x3d\xb7\xe8\x75\xfb\x05\xb4\x7b\x68\x51\ +\xa0\xeb\x38\xf1\xda\x91\x25\x51\x14\xc5\x6f\x0e\x3f\xd4\xf7\x1d\ +\xe9\x05\x88\x81\x64\xe4\x52\x88\xf6\x83\x19\x0c\x45\x1a\xf2\x6f\ +\x9e\x77\x5e\x0e\x89\xe1\xc3\xfe\xc2\xa1\x69\x0e\xbc\x75\x2b\x34\ +\x09\xac\xc0\xd5\x60\x5b\x5b\x0b\x71\x8e\xb0\x35\x47\xae\x12\x64\ +\x49\x8c\x30\x8a\x10\xb8\x2e\x46\xe3\x6b\x8c\x6f\x06\x98\x79\x0e\ +\xb5\xc5\x98\x6f\xd9\x68\xb5\xda\xe8\xed\xb6\xe8\xbb\xf5\xb0\xdf\ +\xdf\xc5\x93\x27\xc7\x98\xfc\xf0\xc7\xf8\xea\x9b\x18\x65\x98\x61\ +\x3e\x79\x93\x70\x70\x23\xf9\xa4\x8c\x59\x6c\xa2\x03\x48\x14\x28\ +\x8c\xc9\xa0\xbd\x55\x77\xfe\x04\xb8\x29\x73\xab\x77\x8e\xaa\x2c\ +\x50\xc6\x1e\x83\x5e\x69\x29\x76\xce\xa7\xa7\x36\x06\xb3\x0a\xef\ +\x9c\x52\xb7\x75\xb7\x1b\x78\x7c\xbc\x70\xff\xb9\x53\x8a\x5b\x8d\ +\xa8\xb1\x6e\x48\x59\xdf\x31\xb8\x14\xb8\xec\xda\x9d\x96\x85\x9d\ +\xf6\x16\xee\xef\x36\x60\x53\xdb\x81\x65\xe1\xc1\x41\x01\x95\xc6\ +\x48\x93\x04\x61\x18\xc2\x1d\x8e\x70\x41\x70\xc7\xc3\x6b\x78\x33\ +\x17\x71\xa2\xb0\xd5\x6c\xd2\xf1\x2d\xec\x6c\xb7\xd0\xef\xed\xe0\ +\xc1\xd1\x3e\xbe\xf8\xd9\x19\x7e\xf0\xf1\x33\x6a\xdf\x92\xd7\xef\ +\xe9\xa5\x74\x2c\xcb\xe2\x52\xb7\xfd\xfe\xeb\x14\x9d\x76\x06\x2f\ +\x02\xac\x4e\xff\x74\x69\x83\x92\xb5\x81\x1c\x60\xed\x6d\xe1\xe4\ +\x43\xe7\x02\xcc\x44\xd0\xcc\x0b\xa4\xde\xea\xee\x23\x8b\x3c\x7e\ +\xad\x3a\xcc\xed\xf9\x59\x53\x87\xfe\xbf\xbd\xcd\x05\x33\x9e\x7d\ +\x6c\xeb\x21\x40\x15\xc0\x9b\x71\xc9\x0c\xcd\xa8\xb1\xda\x29\xd6\ +\x62\xbc\xdd\x26\x98\x0c\x76\x87\x5c\xbb\xdb\xd9\x42\xb7\xcd\xb2\ +\xc8\xcd\x40\x55\xe4\x48\x08\x70\x1c\xc7\x08\x7d\x1f\xa3\xeb\x1b\ +\xfc\x77\xb8\x74\xf0\xcc\x43\x96\x57\xb0\x09\x6e\x9b\xe0\xee\xd2\ +\x01\x77\xfb\x3d\x9c\xdc\x3f\xc0\xcb\x1f\x3d\xc1\x77\xee\x75\x35\ +\x48\x91\x6d\xdb\x22\xb9\x35\x2e\xf0\x65\xc8\xe4\xb2\xa6\x12\xdb\ +\x2d\x1b\x16\xd5\xab\x76\xef\x23\xe3\x5e\xc0\xe6\x3a\x80\x44\x01\ +\xe3\xc1\x90\xb5\x21\xbf\xae\x35\x5b\x7d\x1f\x3f\x01\x83\xd8\x31\ +\x56\x0e\xd3\x49\x9e\xa5\xc3\xef\xdf\xdf\xe5\x88\x55\x25\x57\x02\ +\xf8\x88\xda\x78\xfb\xf7\xa0\x40\x56\x40\x6e\xcf\xb2\xbb\x24\x24\ +\x13\x1c\x12\x41\xed\x2d\x00\x13\x70\x72\xb6\xd5\x40\x9e\xa7\x48\ +\x92\x54\xbb\x77\x3a\x9d\xe2\xea\xfc\x1a\xc3\x9b\x2b\x02\x3c\x82\ +\x1f\x25\x28\x4a\xa0\xd9\x6a\xa1\xc3\xc7\xee\x6c\xe3\xfe\x9d\x3d\ +\x7c\xef\x41\x1f\xbf\x7c\xf1\x29\x0e\xba\xb6\x3c\xe4\xa2\x4b\x71\ +\xb0\x80\x15\xc8\x52\x8a\x29\xcc\x7d\x52\x8a\xf3\xa5\x0d\x5b\x21\ +\x3a\x2d\x6b\x61\x18\x5e\x43\xfe\xec\xc5\x49\xf8\xf6\xcf\x97\x9b\ +\xee\x00\xe6\xa3\x61\x81\x01\xb1\x1e\x01\xcc\x29\xe1\x0f\x4a\x0a\ +\xad\x66\x07\xd1\xe4\x2d\xf6\x4f\x9f\x4a\xf6\x4d\xd0\x1a\x78\x76\ +\xda\x84\x13\x56\x38\x1f\x96\x0c\x57\x4f\xf8\x7c\x76\x66\xa3\x9a\ +\x43\x83\xbf\xd7\xdf\xc6\x27\xc7\x16\xc1\xe6\xf1\x98\x20\xcc\x4b\ +\x28\x95\x22\x8a\x19\x70\x84\xd1\x68\x84\x7f\x0d\xae\x31\x78\x7f\ +\x85\xc9\x64\x82\x80\x00\xcf\x1b\x36\xda\x04\x6e\x67\xdb\xc6\x41\ +\xaf\x83\xe3\xc3\x7d\x7c\xf6\xfd\x23\x3c\xfe\xc5\x23\x34\x2d\x0d\ +\x4b\xa0\xb2\x73\xd7\x01\x96\xef\x7a\x2b\x60\x71\xbe\x74\x98\xfa\ +\xb9\xe4\xd8\xa2\x28\xe4\x65\x1c\x7a\xdd\x62\x6a\xe2\x9b\x4c\xfa\ +\x8a\x60\xbb\xff\xf0\x34\x04\xfe\xba\xf1\x08\x60\xdc\x0f\x08\x6e\ +\x89\x00\x6b\x3b\x80\x2c\x1e\x59\xff\x07\x4b\x18\xb4\xb6\x2c\x14\ +\xde\x25\x8e\x7a\x36\x7a\xda\x79\x94\xf4\x1d\x2c\xa6\x90\xef\xec\ +\xb7\xf1\xe5\xcb\x1e\x9a\x36\x80\xaa\x44\x9a\x65\x88\x08\x64\xe0\ +\xcd\x74\x58\xfe\xfa\x9a\x1c\xfc\xfe\x1a\x13\xcf\xd3\xe3\x6f\xc3\ +\xe2\x04\xab\xc9\xe3\x37\x1d\xdb\xc1\x09\x8d\xbf\xaf\x9e\x1e\xe3\ +\xec\xc1\x23\x13\xa8\x00\x5e\x05\x4f\x42\xf4\x3a\xc0\x52\x17\xad\ +\x3c\x4f\xfd\x95\x3b\x62\x00\xa9\x8b\x24\x92\x54\x04\x5d\xe5\x15\ +\x2e\x47\xa1\xbe\x8a\xd8\x99\xfb\x48\xdd\x6f\x3d\x00\x0d\xad\x75\ +\x9b\xec\xfc\x3f\xca\x26\xf5\x49\xa7\xa4\x9f\x90\xbe\x20\xfd\x8a\ +\x24\x0e\x90\x70\x86\x4e\xa7\xc3\xf5\xfa\x17\x67\xe9\xba\x52\x8a\ +\x00\x30\x9c\x96\x88\x8f\xd1\xcb\xcb\x3f\x78\xf4\x53\xbc\x7a\xf9\ +\x39\x7e\xfe\xfa\xd7\x04\x31\x43\x10\xc5\xe4\xd8\x29\xae\xaf\xae\ +\xf0\x9e\xe0\xbe\x27\xd0\x53\x2f\x40\xa6\x0a\xd8\x04\xb8\x49\x70\ +\xbb\x6d\x5b\x03\x7e\x78\xd8\xc5\x77\x8f\x7b\xd8\xeb\xe8\x90\xcc\ +\xe2\x73\x33\x5c\x5e\xab\x88\xdb\x56\x82\x16\x07\xb2\x24\xac\x9b\ +\xce\x05\xb0\x0a\x74\x5d\xb7\xae\x94\x22\x80\xeb\x5b\xaa\x4a\xdc\ +\x4c\x13\x52\x8a\x1b\x8f\x34\xcd\x30\x20\x4d\x02\x85\xf3\x41\x88\ +\xee\xb6\x8d\xbb\x9d\x02\xff\xfc\xea\x0f\xce\xc5\x9f\x7e\xf7\x25\ +\x8f\x74\xa4\x21\x29\xde\x54\x07\x60\xa2\xfb\xa4\x13\xd2\x33\xd2\ +\x2b\xd2\x6f\xe4\xef\x0a\xd4\x2c\xcb\x04\x80\x74\x06\x06\xc0\xfb\ +\xb8\x94\xb5\x05\xf4\xe7\xd2\x34\xe5\x52\x77\x8a\x3c\xcf\xf5\x1b\ +\x44\x1a\x6d\x82\x78\xf2\x0c\x96\x6d\xf1\xe4\x88\x4e\xb0\x0e\x76\ +\x5b\x38\x3e\xe8\xd0\x98\x4f\x30\xdb\x76\xfd\xfc\xf2\x77\xcd\x7a\ +\xbd\x4d\x22\xcf\x3a\x88\x26\x60\x73\x7f\x7d\xe9\xfb\x5b\x01\xd7\ +\xf7\xc7\x59\x89\x21\x01\x1e\x10\xe0\xa1\xc7\x65\x46\xa0\x33\xb8\ +\x04\xd8\xf1\x95\xee\x00\x6d\x0e\xef\x4d\x6b\x71\x45\x50\xe6\xc8\ +\xf3\x18\x59\xcc\xf3\x02\x01\xdc\xc1\x05\x6e\x2e\xff\x13\x06\x6f\ +\xff\xf1\x5b\x15\xdc\xfc\x11\xc0\x37\x24\x87\x94\x6e\x72\x08\x30\ +\x97\x8c\x91\xc9\x20\x0d\xfa\xec\xec\x8c\x41\x30\x60\x06\xaa\xe1\ +\x26\x49\x02\xcf\xf3\xb8\xce\x9f\xd1\x6f\x14\xeb\xf5\x7a\x38\x3a\ +\x3a\xe2\x57\xcd\x73\x5d\x97\x7b\x7b\x7b\xe2\x58\x01\x57\x07\x6d\ +\xb6\x09\x60\x06\x25\xc0\x59\xd2\x09\xcc\x24\xcc\x74\xbe\xd4\xe5\ +\x9c\x0c\xef\xd6\xa5\x6e\xe4\x3c\xb2\x85\x69\x41\x80\x53\x0c\xb4\ +\x8b\x13\xaa\x2b\x8c\x82\x1c\x13\x7f\x01\x59\x15\x15\x3a\x6d\x1b\ +\x3b\x6d\x4b\x5f\x4e\x36\x2a\x6a\x4b\xf8\xb2\x31\xc2\x3c\xf6\x51\ +\xfa\x1e\x46\xbe\x8b\xc0\x9b\x54\x49\x34\xcb\x14\xfd\xa0\xca\x33\ +\xfa\x25\xc5\x51\x1e\x4d\x2e\xd4\xf4\xf2\x2f\x4b\xe7\x8f\x96\xce\ +\x2f\x36\x9e\x03\x18\x8f\x85\xa5\xa4\x16\x43\x38\x3d\x3d\xc5\xf9\ +\xf9\x39\xfa\xfd\x3e\x0e\x0f\x0f\x75\xd9\xed\x76\x19\x3a\x03\x66\ +\xf7\xcb\xa5\x90\x64\xcd\x02\x55\xea\xa2\xfa\x67\xea\x50\x57\x39\ +\x5d\x5c\x2a\xf0\x4d\xc8\x72\x8c\xb8\x74\xed\x0a\xe7\x7c\x6c\x1d\ +\x70\x10\xe7\x8b\xf0\xcc\x80\x67\xe4\x62\x37\x23\x60\x4a\x87\xe8\ +\x69\xa8\x74\x02\xba\xdb\x69\x12\x64\x4b\xaf\x06\x86\x82\x23\x5a\ +\x82\x24\x0e\x31\x0f\x7c\xe4\x81\x0b\x67\x3a\x61\xc0\x65\x1c\x05\ +\x59\x91\xe7\xd9\xbc\xcc\xd3\x79\x91\x66\xa5\x4a\xa2\x4a\x85\xd3\ +\x32\x9a\x38\x79\xec\x8e\xc5\x50\xc6\xf3\x16\xde\x32\xe4\xbf\x5b\ +\xd6\x93\xcd\x75\x80\xf5\xcf\x07\xa6\xa4\xbd\xbb\x77\xef\xe2\xe2\ +\xe2\x02\xaf\x5f\xbf\x66\x87\x0b\x18\x06\x62\x4a\x00\x9a\x6d\x02\ +\x8a\x55\x6f\xab\x03\x96\xb6\x7a\x5d\x77\x30\x19\xbb\x05\xbe\xb9\ +\x49\x06\x5e\x07\xec\x6b\xc0\x19\x86\xde\x12\x32\x95\x8e\x4f\x0e\ +\x26\xb8\x7e\x54\xe8\x39\xfa\xee\x36\x5f\x25\x90\x83\x1b\x25\xaa\ +\x5c\x69\xf7\x16\x04\xb8\xe1\x7b\x88\xa6\x0e\x06\x04\xd8\x9f\xb9\ +\x79\x14\x45\x04\xb7\x48\xab\x52\xa9\x79\x9e\xa4\xc4\x39\xac\x52\ +\x7f\x92\x47\xce\xb8\x4c\xfd\xa9\x11\x35\x19\x64\x2a\x46\x32\xca\ +\xb4\x36\xdb\x1a\x2d\xc1\xf3\xf1\x81\x84\xfe\x4d\x77\x00\xf3\xc1\ +\x90\x90\x74\xcf\x75\x5d\x3c\x7f\xfe\x9c\xc3\xba\x00\x5c\xe7\x6e\ +\x13\xb2\xb8\x4f\x80\x9a\x9d\x81\xa3\x87\x09\x9d\xb5\xf2\xd5\xf5\ +\x75\x57\x4f\x43\x72\xac\xa7\x74\x88\x1e\x6a\xc0\x99\x06\x3c\x8d\ +\x14\xc2\x94\x2f\x27\x75\x02\xb9\x00\x8c\x1c\x05\x3b\x38\x8e\x81\ +\xc8\xc7\x9c\xc0\x4e\x5c\x17\x6f\xdc\xf1\x3c\x98\x79\x2a\x4a\xd3\ +\xac\x2a\x54\x4a\x0e\xce\xe6\x79\x9c\x96\x59\xe2\x17\xe9\xcc\x2d\ +\x22\x67\x54\xa9\x88\xe1\x14\x4b\x70\xea\x36\xc0\x52\x1a\x8e\x57\ +\xb5\xb2\x58\xaa\x24\x65\x4b\xa5\x5c\x6e\xf6\x6e\xe0\xfa\xb9\x80\ +\x31\xe9\x13\x1e\xf3\x1f\x3f\x7e\x8c\x3b\x77\xee\xd4\x43\xb4\xb8\ +\xd1\xcc\xca\xeb\x30\x79\x98\x30\xe1\xb3\xcc\xf3\xb0\x6a\x63\x34\ +\x34\xc8\xa1\x84\x68\x2a\xd9\xc9\x93\x30\x87\x1f\x17\x7a\x96\xae\ +\xdd\xb2\x39\x81\xd4\x73\x06\x16\x03\x56\x19\x8a\x28\x02\x82\x19\ +\x0a\x77\x8c\x91\x33\xc6\x6c\x3a\x99\x07\x81\x9f\xc5\x49\xca\x0e\ +\xd6\xe1\xb9\xca\x93\xa4\x52\xb1\x57\x24\x9e\x9b\x07\xc3\x21\x41\ +\x67\xa0\xa5\xe9\xe0\x55\x70\xeb\x75\xa3\x53\x08\x5c\x2e\x4b\x43\ +\x55\xad\x5e\x48\x94\x5d\xaa\xd0\xa5\xb1\x6d\x3c\x02\x98\x6b\x06\ +\xb1\x78\x18\xe0\x84\x4e\xe0\xc9\xa5\x9d\x00\xae\x77\x02\x91\x39\ +\x2c\x48\x34\xb0\x2c\x1b\x41\x56\xe1\x5b\x27\xc7\xd8\x8f\x35\xe8\ +\x91\x4e\xae\x72\x9d\x5d\xe7\xe5\x62\x82\x64\x6f\xa7\xb5\x58\x90\ +\x09\x85\x1e\x7f\x1b\x69\x44\xee\x75\xe0\x3b\x0e\x5c\x97\x00\xbb\ +\x6e\x15\x84\xec\xdf\x54\xc6\xdf\xb4\x52\x49\x5c\xe6\x91\x57\x46\ +\xd3\x89\x0a\x86\x63\xcc\x2b\x65\xc0\x8a\x6f\x71\x6e\x62\xb8\x57\ +\xc2\x75\x2e\xc0\x3f\x14\xf0\xca\x92\xf5\x41\xdb\xe6\x73\x00\x49\ +\x00\x23\xd9\xc1\xd9\xfe\xd3\xa7\x4f\xc5\xbd\xe6\xa5\x98\x0c\x07\ +\x92\xa8\x61\x36\x9b\xc1\x21\x50\xc3\xe1\x10\x37\x37\x37\xb8\xbc\ +\xbc\x44\xe3\xf0\xc9\xbc\x7d\xf2\xa2\x41\x7c\xd1\x69\xd9\x04\xb8\ +\x49\x80\x2b\xa0\x2a\x50\x12\x60\x2b\x0b\xa0\xc6\x63\x8c\xc7\x23\ +\x4c\x27\x24\x6f\x56\x32\xe0\x5c\x11\x58\x06\x9c\xa7\x49\xc9\x0e\ +\xce\xc2\x69\x11\x8e\x1d\xca\xa4\xdd\xff\xb5\x6b\x2e\x39\x0d\xc3\ +\x60\x10\x6e\xda\x22\x08\xe2\x29\x01\x52\x11\x12\x2b\x56\xbc\x16\ +\xac\x59\xf4\x1c\x5c\x81\x53\x70\xad\x5e\x83\x0b\xa0\x12\x04\x21\ +\x05\xd2\x82\x9d\x60\x63\x98\x46\x53\x25\xaa\x23\xb3\xa2\x78\x11\ +\x4b\x9f\xe2\x5d\x16\x9f\x33\xf3\xd7\x6a\x45\x94\x2e\x05\x33\xa2\ +\x6d\xc9\x82\x12\x9d\xf1\xec\xe2\x2f\x05\xfb\x56\x01\x19\x88\x59\ +\x03\xbb\x83\xc1\xa0\xd5\xef\xf7\xa7\x9d\x5d\x08\xc6\x60\x84\xcb\ +\x9b\x87\x42\xf2\x33\xa4\xdd\xe3\x32\x67\x38\x1c\xb6\xa2\x28\x2a\ +\xf6\x4a\x29\xeb\x05\x57\xd7\x37\x3a\x8f\x6e\x97\x92\x24\x6e\xbd\ +\x8c\x92\xa9\x60\xf5\x3e\x11\x99\xd2\xb9\xfc\xd6\x2a\x9f\x0a\x36\ +\x4a\x08\x95\x8f\x47\x7a\x12\x27\x5f\x32\x1d\x57\xa2\x56\x53\xac\ +\xb4\xe2\x98\xcf\xea\x17\x6c\xf7\x30\xe5\xda\x92\x8d\x1f\x82\x7f\ +\x27\x58\xd0\x3b\xd6\x41\x0f\x1c\x83\x4b\x70\xc1\x67\x11\xf9\xf8\ +\xf9\x57\xdc\xb7\xf3\xaa\xd3\x09\x85\x8d\x39\x4c\x7e\x84\xbd\xd3\ +\xa0\xdd\xe9\x64\x5a\xa6\x23\x85\x78\x46\x17\xcb\x52\x2e\x60\xff\ +\x92\xba\xfe\x95\xee\x01\x8b\x12\xdd\x82\x8d\x43\xb2\xd7\x2b\x00\ +\x8b\x58\x21\xd8\x01\x47\xe0\x1c\x9c\xf0\x10\x9c\x81\xa0\x26\x31\ +\xd2\x99\x60\x20\xc8\x04\xbc\xb1\x42\x14\x99\x09\x16\x8e\xfe\xcd\ +\x1c\x03\x96\xb2\x64\xda\x18\x8f\x05\xfb\x5f\x01\x44\x53\x52\x0c\ +\xee\xc0\x26\xa3\xf1\x11\x6c\x30\x25\x04\x05\xa7\x73\x31\x4b\xc1\ +\xb5\x5f\xb0\x24\xb5\x03\x16\x31\x73\x31\x6d\x16\x2c\xb8\x49\x00\ +\x12\x82\x6d\xb0\x0f\x0e\xc1\x01\x0f\x42\x97\x42\x45\x55\x30\xc9\ +\x48\x35\x96\x89\x3d\x3d\xfb\x2d\xb8\x39\x00\x6d\xb0\x4a\xe9\x5b\ +\x60\xaf\xfc\xdf\x7a\x29\x75\x6e\xaf\x1c\x82\x75\xb9\xb7\xe5\xfa\ +\x24\xb8\x49\x00\x42\xd9\xcb\x20\x24\x5d\xa6\x90\x71\x45\xb4\x7b\ +\x8a\xf6\x7f\x35\x09\x60\xd3\x25\x01\xf9\x27\xc1\xcd\xfa\x01\x0f\ +\x02\x4c\xdb\x8e\x7c\xe3\xd9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x0a\x32\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\x31\x00\x00\x05\x31\ +\x01\xb7\xed\x28\x52\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x09\xaf\x49\x44\ +\x41\x54\x68\x81\xd5\x9a\x5b\x6c\x1c\xd5\x19\xc7\x7f\x67\x6e\xbb\ +\xeb\x75\xbc\x1b\x1b\x3b\xb6\x93\xe0\x24\x02\x52\x54\x29\x50\xa4\ +\xf2\x12\xc1\x5b\x40\x80\xfa\xc0\x45\x48\x40\x21\x45\x5c\x4a\x08\ +\x97\xaa\x55\x29\xb4\x52\xa5\x42\xa9\x5a\xf5\x82\xd3\x96\x36\x6d\ +\x85\x20\x04\xd2\x96\xaa\x28\xa9\xa0\xa1\xdc\x1e\xa0\xb4\x8d\x2a\ +\x6e\x29\xa1\x4a\x42\x62\x43\x0c\xd8\xbb\xb6\xb3\xeb\x9d\x9d\x99\ +\xdd\xb9\x9c\x3e\xcc\x8e\xb3\x6b\xef\xec\xae\x43\x68\xd5\x4f\x1e\ +\x9d\x39\x67\x8f\xbf\xf3\xff\x7f\x97\x73\xbe\xb3\xb6\x90\x52\xf2\ +\xbf\x12\xf1\x03\x91\x60\x1d\x5b\x31\xb9\x18\x9b\x7e\x12\x18\x28\ +\x74\xa1\x60\xe0\xf1\x06\x65\x76\xf3\x0f\x76\xca\x5d\xd2\x8d\xd5\ +\xd1\x8c\x80\x10\x42\x03\xc4\xa7\x86\xfc\x06\xb2\x6c\xe0\x3b\xe8\ +\x5c\x83\x42\x56\x4b\x68\x8c\x2c\x1f\xe1\x8c\xfe\x33\xa0\x02\xef\ +\x95\xde\xe3\x7d\xfb\x7d\xbc\xa2\x07\x92\x22\x49\x9e\xc7\xe1\xab\ +\xf2\x0e\x39\xd1\x96\x40\x0d\xfc\x17\x80\xd3\x3f\x15\x12\x9b\xf9\ +\x3c\xe7\x70\x39\x29\x52\x7d\xcb\xfb\xb8\xe9\x33\x37\x71\xe1\x8a\ +\x0b\xd1\x14\xed\xc4\x6a\x01\x78\x78\xbc\x32\xf3\x0a\x8f\xbc\xfe\ +\x08\x33\xe6\x0c\x38\x94\x28\x71\xbd\xfc\xb6\xdc\xd3\x8e\x80\x0e\ +\xdc\x2e\xa5\x1c\xad\x54\x2a\xd1\x68\xf4\xb3\x40\xe2\xc6\x17\x4e\ +\x13\x48\x29\xf9\xc3\xd8\x53\x6c\x7e\x69\x33\x7e\xd2\xe7\x92\x91\ +\x4b\xb8\xe2\xcc\x2b\x48\xa8\x09\x24\x12\xd7\x73\x41\x32\xaf\x4c\ +\xd7\x74\x84\x10\x54\xfc\x0a\x4f\x1f\x7d\x9a\xbd\x87\xf6\x82\x85\ +\x83\xc1\x8d\xf2\x36\xf9\xbb\x48\xb5\x16\xb7\x64\xa5\x52\x65\x7a\ +\x66\x06\x10\x08\x21\x10\x02\x84\x10\xb5\x7e\xb3\xf7\x13\x6d\xb3\ +\xf7\xbd\xe3\x7b\xb9\xf9\xb5\x9b\xf1\x35\x9f\x0b\x46\x2e\x60\xd3\ +\x19\x9b\x28\xc9\x12\x73\xde\x1c\x66\xa1\xc0\xb9\xdd\x9f\xa3\x4b\ +\x4b\x01\x60\x7b\x36\x6f\x17\xdf\xa4\x27\x9b\xc5\x47\xb0\x69\x64\ +\x13\xa6\x6f\xf2\xea\xa1\x57\x93\x78\x3c\x21\x9e\x14\x49\xbe\xc8\ +\x0e\x29\xa5\x8c\x23\x00\xc8\x3a\x90\xcd\x41\x37\x03\x3c\xdf\xd6\ +\x2c\x0f\x30\x65\x4f\x72\xfb\xdf\xb6\xe0\x24\x1c\xce\x5a\x75\x16\ +\x1b\x57\x6f\x24\xef\xe6\xd1\x14\x30\x84\x64\xba\x34\xc9\xc6\x33\ +\xef\xa4\x2f\xd5\x0f\xc0\x8c\x93\xe7\xa5\xd7\xff\x84\x9e\x71\xf1\ +\x02\x41\x45\xc2\xc6\x55\x1b\x99\xb2\xa7\x38\x34\x75\x48\x65\x86\ +\x6d\xdc\xc0\xb3\x40\x5e\x69\xe5\x76\x21\x1a\xc1\x2f\x7c\x22\xc0\ +\x0d\x4f\x44\xa2\xd6\x0f\x82\x80\x7b\xde\xb8\x87\x22\x45\x48\xc0\ +\x86\xe1\x0d\xe4\xfd\x3c\x45\x3f\x47\x39\xc8\x61\x07\x39\xe6\xcc\ +\x49\xa4\x0c\x4e\x98\x2e\x08\x28\x59\x93\x54\x82\x1c\xb6\xcc\x51\ +\xf6\x73\x14\x83\x3c\x1b\x56\x6d\x00\x1d\x48\xd0\xc3\x67\xf9\x9e\ +\x10\x42\x89\xf5\x40\x64\xc7\x66\x04\x9a\x59\xba\xde\xe2\xf5\x9f\ +\x59\x8e\xc5\xcb\xe3\x2f\x83\x06\xbd\x43\xbd\x54\x83\x2a\x45\x3f\ +\x4f\xba\x36\x5d\x55\x24\x96\x3d\x4d\x10\xf8\xf3\x6b\x07\x81\x4f\ +\xc5\x9e\xc6\x97\x3a\x2e\xa1\x07\xac\x00\x7c\x19\xea\x98\xfd\x78\ +\x16\x6c\xae\x66\x13\x5f\x8b\x23\x20\x1b\xad\x4b\x73\xf0\x71\x6d\ +\x8d\x8c\x0c\x02\x1e\x3f\xb8\x83\xb2\x5b\x86\x41\x30\x14\x83\xbc\ +\x97\x23\x03\x28\x12\x74\x01\x7a\x20\x71\xac\xd9\x46\x0f\xc8\x00\ +\xc7\x9a\x25\x08\x54\x3c\x29\xa8\x04\x60\xfb\x60\x49\x30\x34\x23\ +\xf4\x82\x46\x0f\x57\xf0\xf5\x16\x39\x40\x2c\xf8\x85\x56\x8f\x6b\ +\xbd\x20\xe0\x99\x0f\x9f\x81\x9e\x50\xdf\x64\x30\xc9\xdc\x3f\xa7\ +\xe9\xf3\xbb\xe8\x51\x74\x52\x2a\xa4\x14\x28\xe5\xaa\xd4\xef\x86\ +\x52\x4a\x3e\x18\xcb\x53\xb2\x8a\x38\x01\x58\x3e\xcc\xf9\x2e\x45\ +\xdd\x62\x76\xb5\x07\x09\x20\x03\xcc\x70\x51\x0b\x02\x31\xe0\x3b\ +\xf4\x02\x52\xe2\xba\x2e\x87\xab\x87\x43\x7f\x76\x03\x53\x70\xdb\ +\xf2\x3b\xb8\xfb\xa2\xaf\xd4\x74\x87\xde\x12\xc0\xc0\xb2\xe1\xf9\ +\x95\x07\x96\x0d\xb3\x7b\xcb\xbf\x42\x35\xd1\x13\xc0\x4f\x5f\x18\ +\xe5\xe1\xc2\x28\x6e\x0f\x50\x01\x1c\x56\xc4\x13\xa8\x8f\xfb\xc8\ +\xb2\x4b\xf0\x02\x40\xc5\x71\xc0\x03\x96\x03\x3e\xe0\x42\x26\x99\ +\xe5\xf4\xde\x91\x78\xbb\x01\x8a\x50\x19\xce\x2e\x9e\xd3\xa3\x65\ +\x51\x6d\x20\x20\xf4\x82\x4e\xa2\x65\x12\xb7\x05\x1f\x47\x08\x90\ +\xb5\x1d\x48\x53\xb5\x90\x84\x04\xe2\xf7\xbc\x8e\x45\x40\x78\x7a\ +\x49\x20\x85\xde\x3a\x89\xeb\x80\x2e\xd9\x0b\x80\xa2\x28\xa8\xa8\ +\xa1\xb6\x30\xf1\x28\x7a\x05\x3e\x98\x7d\x7f\x51\x08\x0d\x66\x56\ +\xa1\x08\x15\x80\x40\xfa\x4c\x15\x27\x4e\x84\x0f\x20\x25\xcc\x79\ +\x85\x50\x4f\x15\x30\x80\x34\xf1\xdb\x28\x31\xe0\x5b\x81\x6e\xc8\ +\x03\x29\x51\x14\x85\x6c\x4f\x96\x8f\xd4\x8f\xc0\x05\x7a\x61\xfb\ +\xd1\x51\x1e\x7f\x7c\x94\x6e\x15\xba\x35\xe8\x56\xc0\x9e\x86\xe7\ +\xee\x1c\x67\xb0\x27\x0c\x9b\x7c\x69\x82\xcb\x7f\xb9\x86\x65\x03\ +\x50\xf6\xa1\xe4\x83\xe9\x83\xad\x43\x75\x2d\xa1\x2e\x15\x30\x39\ +\xd6\x76\x17\x6a\x4a\xa4\x43\x42\x8a\xaa\x72\x9e\x7e\x1e\xef\xfa\ +\xef\x86\x8b\x0a\x90\xeb\xa0\x2b\x01\xcb\x0d\xe8\x4f\x40\x9f\x0a\ +\xb9\xfd\x8b\xd7\xee\x3f\x1d\xd6\x9c\x0b\xc7\x7d\xc8\x57\x21\x5f\ +\x81\xa0\x0a\x55\x9b\x30\x9f\x04\x30\xc6\x5f\x5b\x9e\xc4\x11\x89\ +\x06\x22\x31\xe0\x45\x93\x56\x53\x55\xae\x4d\x5f\x4b\x8a\x54\x18\ +\xb7\x1e\xd8\x55\xb0\x6a\x8f\x59\x85\x39\x0f\x5c\x9d\xc6\x8a\x50\ +\x40\x55\x83\xe3\x1e\x14\x6b\xf3\x2c\x17\x0a\x36\xc8\xc8\xfa\x01\ +\x36\xdb\xf9\x6d\xcb\xb4\x12\x75\xf1\xdc\x2a\x94\xea\x4b\x87\xf9\ +\xcf\x15\x85\x54\x2a\xc5\xf0\xc0\x30\xe7\x7b\xe7\x87\x00\xd5\xd0\ +\x7a\xa6\x0d\x73\x4e\x08\xe8\xb8\x0d\x96\x02\xb2\x8e\x80\x14\xe1\ +\x58\xde\x82\x59\x1b\x0a\x16\xcc\x5a\x50\xaa\xd6\x11\xcd\xb3\x9f\ +\x32\x93\xb1\x04\xa2\xe4\x6a\x97\x07\xf3\xa0\x9b\x78\xc1\x30\x0c\ +\x4e\x3b\xed\x34\xb6\x74\x6f\x21\x29\x93\xe1\x2e\xa4\x83\x53\x81\ +\x82\x09\xc7\xcb\x30\x53\x06\x33\xa8\xed\x1a\x75\x04\x4a\x01\x4c\ +\x97\x61\xc6\x84\x19\x0b\xa6\x4d\x90\x0a\xe1\xf6\xe9\x61\xf1\x0b\ +\x7e\x0e\x14\xdb\x27\x71\x1c\x91\x26\xe0\x59\x30\xa6\x28\x0a\x3d\ +\x3d\x3d\x9c\xbd\xfa\x6c\xae\x7b\xeb\x3a\x1e\x1d\x7e\x94\x40\x04\ +\x90\x02\xbb\x0c\xbe\x0f\xae\x02\x09\x09\xbf\x39\x30\x4a\x36\x91\ +\x45\x00\xc5\x6a\x81\x39\x09\xae\x09\x85\x4a\x98\xc8\x72\x19\xa1\ +\x01\x04\x2e\xbb\xf9\x35\xef\x72\x00\xb0\x5a\x27\x71\x0d\xec\x22\ +\x22\xcd\xc0\x37\x23\x52\xf3\x42\x7f\x7f\x3f\x57\xf6\x5f\x89\x77\ +\xcc\x63\xd7\x9a\x5d\xb8\x09\x17\x34\xa8\x16\x60\xda\x07\xcd\x85\ +\x1f\x1f\x1c\x45\x55\x00\x19\x9e\x53\x55\x03\x2a\x25\x90\x1a\x90\ +\xac\x59\x3e\x41\xc0\x93\x3c\xc1\x63\xec\x06\x8e\x01\xce\x92\x3c\ +\xb0\x54\xf0\xd4\xbc\x90\xc9\x64\x58\xbf\x7e\x3d\x57\xf9\x57\x91\ +\x3c\x96\x64\xe7\x9a\x9d\x58\x3d\x56\x58\x5e\xe4\xc1\x4b\x40\xc9\ +\x24\xcc\x11\x8d\x90\x81\x0a\xf4\x12\xee\xfb\x69\x60\x0e\x97\xc7\ +\x78\x8a\xc7\xf8\x3d\x70\x18\x28\x48\x29\xfd\x25\x7b\x60\x29\xe0\ +\xa3\xbe\xae\xeb\x0c\x0e\x0e\xa2\x28\x0a\xc6\x21\x83\xb5\x07\xd6\ +\xb2\x2b\xb3\x8b\x83\xab\x0f\x52\x19\xa9\x40\x01\xe8\x03\x8a\x84\ +\xa4\x12\x80\x1d\x8e\x25\xfd\x24\xe7\x4c\x9c\xc3\xbe\x5b\xf6\xfd\ +\x99\x59\x9e\x02\xfe\x0d\x4c\x4b\x29\x3d\x88\xbf\x52\x2e\xf2\x40\ +\x04\x96\xfa\xfe\xc2\xf7\x26\xe0\xa3\xd6\x30\x0c\x06\x07\x07\x31\ +\x0c\x83\x54\x2a\xc5\xd0\xd8\x10\xd3\x6f\x4e\xf3\x5a\xf6\x35\xde\ +\x5e\xfe\x36\x53\xfa\x14\x4a\x8f\x82\x86\x86\x2a\x54\xd2\x76\x9a\ +\xf5\xaf\xaf\xe7\xe2\xca\xc5\x0c\xf5\x0f\x71\xcd\xec\x35\xe3\xc0\ +\x5b\xc0\x24\xe1\xa9\x42\x2b\x02\x0d\xa5\xc4\x22\xe0\x4d\xce\x88\ +\xb8\xfb\x70\xfd\x98\xae\xeb\xf4\xf5\xf5\x91\x4c\x26\x19\x1a\x1a\ +\x22\x97\xcb\xb1\x2e\xb7\x8e\x4b\x73\x97\xe2\x38\x0e\xb2\x76\x7a\ +\x0b\x21\xd0\x34\x8d\x4c\x36\xc3\xca\x95\x2b\x59\xb5\x6a\x15\xc0\ +\xc7\x40\x5e\x4a\x59\xad\xd7\xdb\xa2\x1a\x6d\x1e\x3a\x0b\xad\xde\ +\x0e\xfc\xc2\xbe\xa6\x69\x64\x32\x19\xd2\xe9\x34\x03\x03\x03\x58\ +\x96\x45\xa9\x54\xc2\x34\xcd\xb0\xf8\xd3\x34\x54\x55\xc5\x30\x0c\ +\xd2\xe9\x34\xdd\xdd\xdd\x74\x75\x75\x41\x58\x01\x79\x0b\x61\xb6\ +\xb9\x52\xd2\xb1\x07\x9a\xdb\x20\x9e\x8c\xae\xeb\x68\x9a\x46\x57\ +\x57\x17\xbd\xbd\xbd\x78\x9e\xd7\xe0\x01\x45\x51\x50\x55\x75\xfe\ +\x9d\xc6\xa3\xa2\x3d\x81\x79\xc0\xd4\x85\x52\xfd\x78\x4c\x98\x74\ +\x02\x3e\x92\x1a\x30\x54\x55\x45\xd7\xf5\x56\x50\x62\xa5\x6d\x12\ +\x2f\xb4\x7e\x27\xa1\xd3\x0e\x7c\x2b\xaf\x2d\x55\x3a\xf2\x00\x4d\ +\x00\xb4\x4b\xda\xb8\xcf\xe2\xe6\x4a\x29\xe7\xef\xc5\xf5\xf7\xe3\ +\xfa\x90\x6d\x26\xad\x3d\x10\x29\xe9\x40\x51\x33\x80\x9d\x80\x0f\ +\x82\xa0\x01\x7c\xd4\x6f\xf8\x1d\x45\x8d\x5d\xaf\x7d\x08\xd5\x77\ +\x39\x75\x61\x24\xa5\x9c\x07\xeb\xfb\x3e\xbe\xef\x13\x04\x41\x03\ +\xa1\xf9\xb5\x34\x03\x4e\x3a\x89\x3b\xb4\x7c\x4b\x3d\x0b\x88\x45\ +\x40\x83\x20\xc0\x75\x5d\x3c\xcf\xc3\xf7\x7d\xaa\xd5\x6a\xd8\xf7\ +\xc3\x2f\xb9\x14\x21\x50\x74\x83\xc3\x47\xde\x99\x00\x72\xcd\x48\ +\x9c\xb2\x10\xea\xd4\x13\x11\x70\xcf\xf3\x70\x5d\x17\xd7\x75\x71\ +\x1c\x07\xcb\xb2\xb1\x1d\x1b\xb7\xea\xe2\xd7\x08\xa4\x7b\x32\x14\ +\x73\xd3\xd6\xad\x37\x6e\xfe\x15\xf0\x6c\x54\x3e\x2c\x99\xc0\x22\ +\x22\x31\xe0\xda\x49\x14\x36\x11\xf8\x6a\xb5\xca\x5c\xa9\x44\xa1\ +\x50\xc0\xb6\x2c\xca\x96\x45\xb5\xea\x92\xcd\x66\x18\x1a\x5e\xc9\ +\xcc\xcc\xb4\x7f\xcb\xcd\x5f\xfa\xc9\x91\x23\x47\x7e\x26\xa5\x9c\ +\x6b\xa6\xb3\x65\x29\x71\x32\xa1\xd3\x8a\x60\x44\x20\x02\x5f\x28\ +\x14\x99\x98\x38\x46\xd9\xb6\xe8\xee\xea\x66\x60\x60\x80\xc1\x15\ +\x2b\x30\x0c\x83\xa3\x63\x63\xc1\x9d\x5b\xb7\x3e\x74\x60\xff\x3b\ +\x3f\x92\x52\x16\xe3\xd6\xeb\xac\x1a\x5d\x02\xe8\x38\xa9\xb7\xbe\ +\xe7\x79\x98\xa6\xc9\xf1\xe3\xc7\x29\x95\x4d\x2e\xbb\xe4\xd2\x5a\ +\x32\x7b\x98\x66\x99\xb1\xf1\x31\x79\xcf\x7d\xdf\xd8\xbe\x6f\xdf\ +\xbe\x07\xe2\x2c\x1f\x49\xdb\xaf\x9a\xe2\xe2\xff\x93\x84\x8f\xe3\ +\x38\x98\xa6\x49\xa9\x34\x47\x77\x57\xba\x01\xfc\xf8\xf8\x18\xf7\ +\x3f\x78\xff\xce\x97\x9f\x7f\xf1\xbe\x76\xe0\x3b\x22\xb0\x88\x48\ +\xa7\xf3\xeb\xe6\x46\xdb\x62\xb4\x5d\xda\xb6\x43\xb9\x6c\x61\x5a\ +\x16\x99\x4c\xa6\x01\xfc\x43\xdb\x46\xf7\xec\xf9\xe3\x9e\x3b\x3a\ +\x01\x0f\x4b\x4c\xe2\xa5\x80\x5e\x28\xf5\x1e\xa8\x54\x1c\x1c\xc7\ +\xa1\xe2\x38\x0c\x0d\x0d\x46\x61\xc3\xe8\xb6\xd1\x3d\x3b\x77\xec\ +\xbc\x5e\x4a\x59\xea\x74\xcd\xd6\x49\x7c\x8a\xa4\xfe\x94\xf5\x3c\ +\x8f\x6a\x2d\x89\xb3\xd9\x2c\x89\x44\x92\xb1\xf1\x31\x79\xff\x77\ +\x1f\xd8\xb1\xe7\xe9\xdd\x77\x2d\x05\x3c\x9c\x62\x0f\xb4\x92\x86\ +\x30\xf2\x7c\x02\x29\x19\x19\x59\xcb\xd1\xb1\xb1\xe0\xde\x6f\xde\ +\xfb\xf0\x8b\x7f\x79\xe1\x5b\x4b\x05\x0f\xff\x05\x02\x51\x58\xd5\ +\x17\x6a\x52\x4a\x32\xbd\x7d\x14\x8b\x05\xff\xae\xbb\xb6\xfe\x70\ +\xdf\xdf\xf7\x3d\x28\xa5\x34\x4f\x46\x7f\xfc\x85\xe6\x14\x95\xbc\ +\x11\xf0\xa8\xae\x51\x14\x05\x3d\x95\xc6\x9e\x2b\x5a\x5b\xbf\x7c\ +\xcb\xf7\xf7\xef\xdf\xff\xd0\xc9\x82\x87\x16\x39\xa0\x28\x0a\x89\ +\x44\xa2\x61\xf0\x64\x77\x21\x84\x40\x0a\x05\xa9\xea\x88\x44\x17\ +\x1f\x7c\x7c\x78\xe2\xee\x2d\xb7\x6e\x3b\x7a\xf8\xf0\xf6\x4f\x02\ +\x1e\x88\xfd\x57\x83\xcb\x80\x35\xd4\xdd\x2c\x4f\xa1\x48\xe0\x43\ +\xe0\xb9\x4f\x0a\x1e\x9a\x10\x00\x10\x42\xa8\x9c\x92\xbf\xa7\xc4\ +\x8a\x6c\x56\x98\x9d\x8c\x34\x25\xf0\xff\x24\xff\x01\x04\xe4\x96\ +\x06\x80\x39\xb3\x6b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x0c\x65\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\x31\x00\x00\x05\x31\ +\x01\xb7\xed\x28\x52\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x0b\xe2\x49\x44\ +\x41\x54\x68\x81\xd5\x99\x7b\x70\x5d\xc5\x7d\xc7\x3f\xfb\x38\x8f\ +\x7b\xaf\x9e\x96\x84\x2c\x8c\xcd\xcb\x60\x17\x30\x0e\x1e\xa0\xc4\ +\xb2\xc1\x86\x31\xc6\x21\x24\xb4\x09\x4d\xa7\x24\x24\x99\x69\x68\ +\x69\xa6\x9d\xd0\xd0\x4e\xa8\x3b\x24\x0d\xa5\x90\x76\x32\x6e\x60\ +\x32\x06\xc2\x4c\x03\x49\x4a\x93\x40\xc0\x71\x28\x61\xa0\x60\x22\ +\x0b\xdb\xb1\x15\xe1\x67\xb1\xc1\xf8\x21\x20\xf2\x53\x92\xad\x7b\ +\x75\x5e\xbb\xdb\x3f\xee\x95\x2c\x64\xf9\x21\x5b\x4e\x27\xbf\x99\ +\xdf\xf9\xed\x9e\xdd\x73\xf6\xfb\xdd\xf3\xf8\x7d\xcf\x59\xe1\x9c\ +\xe3\xf7\xd9\xe4\xff\x37\x80\xd3\xb5\xdf\x7b\x02\x62\xe2\x57\x2f\ +\x92\x81\x17\xfc\xdd\xac\x29\x33\xe7\xd5\xe6\x6a\x3c\x29\xa4\x10\ +\x42\x30\x14\x11\x08\x21\x85\x14\xe5\x58\x6e\x13\x95\xb6\xe1\x75\ +\x89\x10\x62\xb0\x1f\xe5\x9a\x40\x08\x21\x9c\x73\xce\xe1\x70\xce\ +\x61\x9d\x73\xce\xd9\x4a\x74\x38\x67\x9d\x2d\xb7\x95\x4b\xce\x39\ +\x3b\xb8\xff\xc3\xed\x58\x67\x9d\x73\x8e\x81\x34\xca\xde\xec\xda\ +\xf0\x7a\x4f\xb1\xf7\x41\x8d\xe0\x8e\x85\x33\xe6\x3d\x24\xfc\x94\ +\xc4\x16\x91\x5a\xa2\xb5\x44\x29\x85\xd6\x02\x25\x15\x9e\xf2\xf0\ +\x84\x46\x2b\x81\x96\x1a\x4f\x69\x34\x0a\xad\x34\x4a\x6a\xb4\x54\ +\x28\xa1\xd0\x42\xa3\xa4\x42\x4a\x8d\x12\x8a\x41\x32\x95\xc1\x31\ +\xce\x60\x6d\x46\x66\x0d\xc6\x19\x8c\x2b\x97\x33\x9b\x91\x99\x0c\ +\xe3\x0c\xa9\xcd\xca\x75\x6b\x49\x8d\x21\x75\x09\xc6\x58\x8c\x71\ +\xa4\xa9\xc1\x1a\x4b\xb5\xd3\xfc\x51\xf3\xa2\x1b\xbf\xdf\xf6\x5f\ +\xbf\xd5\x42\x60\x56\xed\x6a\x47\x54\x95\xd0\x9e\x40\x69\x50\x9e\ +\x40\x69\x81\x57\x01\xe7\x29\x55\x06\x2e\x55\x19\xac\x54\x28\x29\ +\x51\x62\x30\x4a\x86\xcd\x3c\x95\x99\x47\x0c\xbb\xd4\x0e\x28\xcf\ +\xb8\xa3\x3c\xa3\x16\xeb\x1c\xc6\x59\x8c\x2d\x93\x33\xd6\x62\xac\ +\x21\xb3\x86\xb4\x42\x2c\x35\x83\xf5\x0c\x93\x39\x4c\xea\x30\x19\ +\xa4\x7d\x21\xf5\x85\xba\x48\x0b\x21\x9e\x3e\xd0\x5b\xfc\xd3\x5a\ +\x2d\x3e\x16\xe6\x05\xca\x03\xad\x25\x5e\x65\xa6\x8f\x90\x28\xc7\ +\xe1\xae\x84\x44\x49\x89\x14\x83\x2e\x90\x42\x96\x81\x8f\x42\x00\ +\xe7\x70\x80\xad\x80\x2f\xc7\x41\x02\xb6\x72\x35\x0c\xaa\xe2\xa9\ +\x91\x28\x51\x06\x2f\x8d\x20\x21\x43\x08\x4b\xe9\x90\xa5\xe7\x60\ +\xe9\xbf\xa1\xf4\x53\xe1\x9c\xe3\x9c\x7b\xa7\x85\x08\x5e\x68\x68\ +\x91\xd7\xd7\x35\x68\x7c\x55\x06\xef\x84\x23\x73\xd9\x10\x10\x51\ +\x46\xc6\x91\x6d\xb9\x24\x8e\x14\x4f\xde\xdc\xf0\x30\x7c\x5b\x2e\ +\x0d\xbe\xdd\x7d\x19\xa0\x90\xa4\x36\x23\x35\x19\x07\xf6\x27\xec\ +\x7d\x3f\x7b\x15\xc7\xcd\xef\x3d\xb8\x35\x12\x83\x79\xe0\x9c\x7f\ +\x98\x56\x10\x42\xbc\x7c\xf6\x14\xff\xa3\x8d\x0d\xb9\x21\x12\x91\ +\x1d\x20\x32\xf1\x18\x90\x8d\x9f\xe5\x75\x8e\x82\x2a\x0c\x81\xdf\ +\xbb\x7f\x80\xdd\x3b\x4b\xab\x9c\x73\x0b\xde\xfb\x97\xad\x45\x00\ +\x31\x3c\x91\x4d\x5e\x3c\xad\x56\x08\x5e\x9d\x3a\xb5\x66\x56\x53\ +\x43\x01\x5f\x69\x7c\xa9\xe8\x4d\x0e\x51\xcc\x06\x7e\xa7\xe0\xab\ +\xbd\x02\x13\x82\x3a\x32\x6b\x48\x6c\x46\xf7\xfe\x7e\xb6\x6d\xeb\ +\xf9\x8d\x75\x5c\xdf\xf5\xc0\xd6\xbe\xc1\x7e\x62\x64\x26\x9e\xf2\ +\x8f\xd3\x1a\x84\x14\x2b\x66\x4c\x6f\xbc\x6c\x62\x43\xcd\xd0\x73\ +\xb0\x67\x60\x1f\x87\x92\xfe\xdf\x09\xf8\xda\xa0\x9a\x49\x85\x89\ +\x64\x26\xab\x80\x3f\xc4\x9b\x5b\xba\x37\x19\xeb\xe6\xed\xfe\xe7\ +\xad\x07\x86\xf7\x3d\x8a\x00\xc0\xb9\xf7\x4d\x6f\x56\x52\xb6\xfd\ +\xe1\xe5\x93\x2e\x6a\xae\xaf\x90\x10\x8a\x9d\xc5\xf7\xe9\x8b\x0f\ +\x9f\x51\xf0\xf5\x41\x0d\x17\xd6\x4c\x39\x32\xf3\x07\xfb\x68\x7f\ +\x73\xf7\xdb\xc6\xda\xb9\xbb\xbe\xf9\xd6\x9e\x91\xfd\x47\xcd\xc4\ +\xbb\xbe\xf9\xd6\x1e\xeb\xdc\xf5\xeb\x36\x7f\xb0\xab\xd8\x9f\x12\ +\x2a\x9f\xd0\x0b\xb8\x74\xc2\x54\x26\x84\x35\x48\xc1\x19\xf1\x86\ +\x5c\x2d\x97\x37\x4d\x23\xd4\x3e\x81\xf6\xe9\xef\x4f\x59\xbd\xb1\ +\x6b\x97\x75\xee\xfa\xd1\xc0\xc3\x31\xae\xc0\xa0\x5d\xf8\x8d\x4b\ +\xcf\x0f\xb4\x6e\xbf\xe9\x9a\xe9\x2d\xcd\x75\xb5\x78\x52\x23\xa5\ +\xa0\x73\xdf\x16\x7a\xe3\x43\xa7\x3c\xcb\xa3\x59\x7d\x50\xcb\x95\ +\xcd\x97\xe1\xac\x23\xb5\x86\xee\xde\x3e\x7e\xb1\x66\xd3\x6f\xe3\ +\x24\x6b\xdd\xfe\xf5\xcd\x3b\x8e\x75\xdc\x71\xb5\xd0\xf6\x6f\x6c\ +\xde\x81\x90\xf3\x57\x74\xee\xd8\x57\x1a\x48\x09\xb4\x47\x5e\x87\ +\xcc\x39\x7b\x16\xf5\x61\xed\x91\x84\x75\x9a\x5e\x1f\xd6\xd2\x7a\ +\xf6\x15\x14\xbc\x1c\x81\xf6\x29\x46\x09\xaf\x74\xbc\xbd\x0f\x2b\ +\xe7\x1f\x0f\xfc\x09\x09\x00\x6c\x59\xdc\xb9\x55\x4b\xef\x86\xd7\ +\xd7\xef\xe8\x8d\x63\x5b\x49\x68\x9a\xd6\x96\x2b\xa8\x0b\xab\x91\ +\x52\x9c\x96\xd7\x85\xd5\xb4\xb6\xcc\xc2\x93\x1a\x80\x81\x38\xe3\ +\xb5\xce\x77\x7b\x7d\xe5\xdf\xb0\x65\x71\xe7\xd6\x13\xe1\x3b\x29\ +\x35\xfa\xeb\xaf\xb6\x6f\xcc\x7b\xb9\x05\x6f\x6c\xde\xd5\x5f\x8a\ +\x13\x04\x02\x4f\x7a\xcc\x6e\xb9\x82\x6a\xbf\x50\xc9\xc0\x63\xf7\ +\x1a\xbf\xc0\xec\x96\x59\xf8\x4a\x03\x82\x81\x38\xa5\x6d\xe3\x8e\ +\xfe\x50\x07\x0b\x56\xff\xed\xca\x8d\x27\x83\x4d\x38\xe7\xf8\xe2\ +\xd3\xb7\xdf\x54\x13\xd6\xce\xad\x0e\xaa\x03\xa8\xe4\x56\x01\x4a\ +\xca\x61\x82\x40\x10\x67\xd1\x15\x25\xd3\x37\xff\xd2\xf3\xeb\xf0\ +\x3d\x85\x40\x10\x65\x31\x6f\xec\xf9\x0d\xa5\x31\xe6\x89\xbc\xce\ +\x31\xbb\x79\x16\xa1\x0e\x00\x88\xd3\x8c\x4d\x3b\x7a\xa8\xd2\xf5\ +\xaf\x05\x3a\xe8\x2c\x3f\x9a\x83\x19\xda\x55\x92\x73\xb9\x1e\x65\ +\x51\x7a\xa0\xb8\xff\xf5\x27\x3e\xf3\x83\x5f\x8a\xfb\x5f\xb9\xe7\ +\xe3\x2d\x75\x93\x96\x57\xe7\x0b\x80\xad\xe8\x1c\x3d\x24\xda\xb4\ +\x50\x08\x21\x11\x15\x91\xd6\x17\xef\x67\xef\xc0\x4e\x02\xbf\x42\ +\x4b\x08\xa2\x2c\xa2\x7d\xef\x3a\xa2\xec\xe4\x32\x76\xa8\x43\x5a\ +\xcf\xba\x92\x9c\x0e\x86\x44\x5e\x92\xc0\x84\x70\x32\x0d\xb9\x89\ +\x38\xe7\x86\xe9\x26\x43\x56\x11\x7a\xd6\x59\x52\x9b\xe1\x9c\xc3\ +\x64\x82\xed\xfb\xb6\xdd\xac\xa7\xb7\x9c\x7b\xee\x81\xf8\x00\x1d\ +\xfb\x56\x13\x7a\x3e\xa1\x2a\xbf\xc2\x02\xed\x11\x28\x1f\x25\xe5\ +\x90\xfa\x19\xd4\x42\x83\xe0\xcb\xd7\x47\x50\xf0\xf2\xb4\x36\x5f\ +\xc9\xaa\xee\x0e\x22\x7b\x7c\x12\xa1\x0a\x98\xdd\x7c\x25\x05\x9d\ +\x3b\xa2\x50\x05\xf8\xbe\xa3\xdf\x76\x71\xb8\xd8\xc5\x11\x2d\x54\ +\x26\x61\xac\x25\x36\x09\x71\x96\x12\x67\x09\x91\x49\x38\x27\x7f\ +\x21\x33\x26\x5d\x3c\x45\xb4\xbf\xff\x74\xb5\xc5\xae\xe9\xe8\x5e\ +\xfb\x07\x87\xd3\x3e\x02\xed\x13\x2a\x8f\x40\xfb\x78\x4a\x1f\x05\ +\x5e\x54\x66\x5d\x20\x90\x82\x4a\x2c\xd7\xfb\xd3\x7e\xda\xf6\xae\ +\x23\xb1\xe9\xa8\xe0\x7d\xe9\x31\xb7\xf9\x2a\xaa\x75\xa1\x0c\x1e\ +\x87\x2d\x7f\xea\x60\xcb\x77\x49\x99\xd0\xe0\x8d\x33\x8c\x44\x6a\ +\xb2\x0a\xf8\x94\x82\xaa\xe6\xb2\xc6\x99\xff\x2b\x91\x57\x0b\xe7\ +\x1c\xcf\x6e\x5a\x3a\xd1\x3a\xd3\xf6\x41\xb2\x7d\xaa\x93\x29\xa1\ +\x2e\x13\xd8\x5d\x7c\x8f\xfd\xf1\xc1\x51\xf4\xe7\x91\xcd\x48\x01\ +\x3a\x90\x45\x94\xcc\xe8\xcf\x43\x5e\xe7\xc8\xab\x90\x91\x99\x67\ +\x48\x8b\x3a\x46\xb4\x39\x1a\x83\x06\x26\x17\x26\x01\x10\x67\x09\ +\xce\xf8\x34\xa9\x29\xef\x08\x21\xe7\x7e\xea\xb2\xbb\xba\x87\x12\ +\xd9\xe3\x6f\x7c\x6b\x32\xc2\xae\xcc\xc2\x83\x53\x7c\x1f\x94\x94\ +\x38\x67\xd9\xd0\xb7\x85\x9e\xa4\x77\x54\x40\x67\xda\xea\xfd\x7a\ +\x66\xd6\x5d\x82\x40\xe0\x80\x2c\x51\xd8\x62\xd5\x6e\x9c\x9c\xf3\ +\x17\xad\x5f\xeb\x82\x11\x99\xf8\xc1\x5f\x2e\xbe\x40\x4a\xd7\x3e\ +\xa1\xd9\x4c\xf4\x7c\x00\x81\xc5\xb2\xa1\x77\x13\x7d\x69\xdf\xe8\ +\xa3\x9c\x21\xab\xf5\x6a\x99\x59\x37\x03\x29\x04\xce\x41\x9a\x38\ +\x0e\xee\x51\xdd\xd6\x8a\xd6\x7b\x6f\x7a\xe0\xdd\xc1\x7e\x47\x49\ +\x89\xaf\x3d\x73\xf7\x74\xa5\x69\x9b\x72\x9e\xdf\x18\x86\x02\x10\ +\x18\x97\xb1\xa1\x77\x13\x87\xb3\x33\x2b\xe4\x06\xad\x46\x57\x33\ +\xb3\x7e\x06\x12\x85\x03\xe2\xd8\xb2\xf3\xdd\x78\xbf\xc9\x98\xfb\ +\xad\xdb\xfe\xfd\xad\xe1\x7d\x47\xd5\x42\x77\x3d\x79\xe7\xe5\xbe\ +\x27\x5f\xbf\xe4\xd2\x9a\xba\x5c\xa0\x10\xa2\x4c\xe2\xcd\xbe\x0d\ +\xf4\x67\xc5\x33\x0a\xbe\x4a\x57\x31\xab\xee\x72\x14\x1a\x8b\x63\ +\x20\x32\x6c\xde\xdc\xd7\x9b\xa4\xf6\xba\xa5\x9f\x7f\x7c\xc3\xc8\ +\xfe\xc7\x14\x73\x9f\x5d\xfa\xb9\xab\xc2\x40\xbf\x7a\xf5\xac\xa6\ +\xaa\x7c\x4e\x23\x85\xc4\xba\x94\x8e\xde\xf5\x14\x4d\xe9\x8c\x80\ +\x2f\xa8\x3c\x57\xd6\x7d\x04\x2d\x3d\x8c\x73\x94\x06\x12\x56\x75\ +\xec\xed\x8f\xe2\xec\xfa\x1f\xdd\xf5\xc3\xb5\xa3\x1d\x73\x5c\x35\ +\x7a\xeb\x92\xdb\xe6\x54\xe5\xbd\x97\xe6\x7f\x74\x72\x3e\x1f\x7a\ +\x28\x21\x49\x5d\xca\xba\xde\x4e\x06\xec\xf8\x7e\xa1\xe5\x65\x8e\ +\xab\xea\x66\xe1\x49\x0f\xeb\x1c\xfd\x51\xc2\xab\x6f\xec\x2e\xf5\ +\x97\xd2\x85\xcf\xdf\xfd\xd3\x95\xc7\x3a\xee\xb8\x04\x00\x6e\x7c\ +\xf0\x96\x1b\x6a\xab\xc3\x17\x3e\x3e\x6f\x6a\x90\x0f\x7c\xa4\x10\ +\x24\x36\x61\x6d\x5f\x07\x91\x8d\xc6\x05\x7c\x4e\x86\x5c\x53\x7f\ +\x15\x9e\xf0\x31\xce\x52\x8c\x52\x96\xaf\xd8\x16\xf7\x1e\x8e\x6e\ +\x7e\xf9\xde\xe5\xff\x73\xbc\x63\x4f\x48\x00\x60\xee\x3f\x2d\xbc\ +\xb9\xb1\x2e\xff\xfc\xa7\x6f\xbc\x44\xe7\x7d\x1f\x2d\x24\xb1\x8b\ +\x58\xdd\xb3\xee\x84\x99\xf7\x44\x16\xca\x80\xd6\x09\x57\x13\xca\ +\x1c\x99\x35\x14\xe3\x84\x1f\xbf\xbc\x29\xdb\xdf\x53\xba\xb5\xed\ +\xeb\x2f\xbd\x70\xa2\xe3\x4f\x8a\x00\xc0\x55\x8b\xe7\x7f\xaa\xa5\ +\xb1\xfa\x27\xb7\x2f\xfa\x88\x2c\x04\x3e\x5a\x28\x22\x5b\xa2\xad\ +\x77\xcd\x31\x33\xef\x89\x2c\x90\x3e\xd7\xd5\x5f\x43\x5e\xe5\x49\ +\xad\xa5\x98\x24\x3c\xf5\x42\x87\xfd\x60\xff\xe1\x3f\x59\xfb\xc0\ +\x6b\xcf\x9e\xcc\x39\x4e\x9a\x00\xc0\x8c\xbf\x9f\x73\xfb\xb9\x13\ +\xeb\x9e\xfa\xd2\x2d\x57\xcb\x9c\xef\xa3\xa5\xa4\x3f\x2b\xd2\xd6\ +\xb3\x8a\xc4\x65\x63\x02\xef\x4b\x8f\xf9\x13\x66\x53\xa5\xaa\xc8\ +\x9c\x61\x20\x49\x79\x74\xd9\x6a\xbb\xb3\xbb\xe7\x8e\x8d\xff\xba\ +\xf2\x47\x27\x7b\x9e\x31\x11\x00\x98\x7e\xf7\x35\x7f\x7e\xd1\xe4\ +\xc6\xc7\xff\xea\xd6\xd9\x22\xe7\x79\x68\xa9\x38\x64\x0e\xb3\xe2\ +\xe0\x1b\xa4\x27\x49\xc2\x13\x9a\x05\x0d\x73\xa8\xd5\xb5\x24\x36\ +\x23\x4a\x53\x1e\xfe\xd9\x4a\xb7\xad\x6b\xdf\x9d\x6f\x2d\x59\xfd\ +\xc4\x58\xf0\x8c\xf9\xf7\xfa\x5b\x4b\x56\x3f\xb1\x65\xc7\x9e\xaf\ +\x3c\xb6\x6c\x15\xc6\x39\x24\x82\xb3\xbc\x09\x2c\x68\x6c\xc5\x97\ +\xfa\x84\x1f\x31\xbe\xf4\x58\xd4\x74\x2d\xcd\x41\x23\x12\x81\xb5\ +\x8e\xef\x3e\xdf\xce\xe6\x1d\xdd\x5f\x19\x2b\xf8\x53\x22\x00\xb0\ +\xfd\x91\xb5\x0f\x77\x6c\x7b\xef\xde\xef\x3e\xd7\x8e\x73\x65\x75\ +\x3a\xd1\x3f\x8b\x05\x8d\x73\x50\x4a\x22\x24\xa3\xba\x52\x92\x45\ +\x4d\x73\x39\x3b\x38\xab\xac\x6f\x1c\x3c\xfc\x5c\x1b\xeb\xb6\x76\ +\xdd\xbb\xfd\x91\xb5\x0f\x9f\x0a\x96\x53\x5e\xe0\xe8\x5a\xda\xf9\ +\xd0\x9a\x2d\x3b\xef\x7f\xe4\xf9\x5f\x61\x9d\x43\x00\x53\x82\x16\ +\x16\x35\xcc\x45\x4b\x75\xd4\xcc\x6b\xa9\xf8\x64\xd3\x7c\xce\xcb\ +\x4d\xaa\x80\x77\x2c\x79\x6e\x05\xab\x36\xef\xb8\xbf\x6b\x69\xe7\ +\x43\xa7\x8a\xe3\xb4\x56\x68\xde\x7f\x6c\xfd\x7d\x2b\xd6\xbf\xf3\ +\xed\x47\x96\xfd\x0a\x5b\x11\xc2\xe7\xe7\x26\xb3\xa8\x61\x0e\x6a\ +\x18\x78\x25\x04\x9f\x68\xba\x8e\x0b\x72\x93\x81\xb2\xc2\x5f\xf2\ +\xdc\x0a\x5e\x7d\x73\xdb\xb7\xdf\x7f\x6c\xfd\x7d\xa7\x83\xe1\xb4\ +\x97\x98\xba\xbf\xb7\xf1\x9e\x17\xd7\x6e\x59\xfa\xc8\xf2\x32\x09\ +\xeb\x1c\x53\x73\xe7\xb1\xb0\x71\x4e\x79\xed\x40\x4a\x3e\xd6\x74\ +\x2d\x17\xe5\xcf\xaf\xfc\x52\x77\x2c\x59\xb6\x82\x5f\xfc\x7a\xe3\ +\xd2\xee\xef\x6d\xbc\xe7\x74\xc7\xd7\xa7\x7b\x02\x00\x63\xcc\x97\ +\x9f\x6d\xeb\xcc\x85\x4a\x7f\xe1\x6f\x6e\x99\x47\xea\x0c\x17\xe7\ +\x2e\x20\xab\x37\x08\x60\x5a\xee\x02\x52\x6b\x48\x9d\xe1\x3b\xcb\ +\x5f\xe3\x27\x6d\x1d\xdf\x07\xbe\x3c\x1e\x63\x8f\xf9\x35\x7a\x2c\ +\xab\xff\xc2\x74\x09\xfc\xe7\x97\x16\xce\xfe\xcc\x9d\x37\xb6\x0e\ +\x2d\x80\x08\xca\x5f\x59\xc6\x59\x1e\x7d\xb1\x8d\xc7\x5e\x5a\xf9\ +\x63\xe0\xcf\x7a\x9e\xdc\x6a\xc7\x63\xdc\x71\x23\x00\x50\xf7\xf9\ +\x69\x1a\x78\xe6\xaf\x6f\xb9\xf6\x93\x77\xcc\xbf\x86\xc1\x9f\x32\ +\x0e\x78\xea\xb5\x35\x7c\xe7\xe7\x2b\x96\x01\x9f\xee\x7d\x72\xeb\ +\xd8\xb2\xde\x71\x6c\x5c\x09\x00\xd4\xde\x71\xb1\x0f\xfc\xfc\x9e\ +\x3f\xbe\x61\xe1\x6d\x73\xae\x00\x04\xcf\xac\xec\xe4\xdf\x7e\xf6\ +\xca\x4b\xc0\x27\xfa\x9e\xda\x96\x8c\xe7\x78\xe3\x4e\x00\xa0\xfa\ +\x73\x17\xe5\x84\x10\x2f\xfe\xe5\xa2\xd6\xeb\x00\x1e\x7d\xb1\xfd\ +\x75\xe7\xdc\xa2\xc3\x3f\x78\x7b\xdc\x57\x49\xce\x08\x01\x80\xaa\ +\xcf\x4e\xcd\x01\x5f\xac\x54\xff\xa3\xff\x87\xef\x9c\x91\x25\x9e\ +\x63\x11\xd0\x40\x15\x90\x03\x54\xa5\xae\x86\xb9\x06\x94\xb5\x56\ +\x8d\x6c\x17\x42\x8c\xec\x0f\x60\x2a\x9e\x39\xe7\xcc\xf0\x3a\x60\ +\xa4\x94\x1f\xaa\x8f\x6c\x07\x06\x80\xfe\x4a\xfd\x28\xa0\x1e\x70\ +\x9e\x73\xee\x9c\x0a\xe8\xaa\x38\x8e\xc3\x28\x8a\x18\xe9\x71\x1c\ +\x13\x45\x11\x49\x92\x10\xc7\x31\x49\x92\x90\xa6\xe9\x90\x67\x59\ +\x86\x31\x06\x63\x0c\xd6\xda\xa1\x75\xe1\xc1\xdf\xe8\x52\x4a\xa4\ +\x1c\x5c\x44\xd7\x78\x9e\x37\xe4\xbe\xef\x13\x04\xc1\x87\x3c\x0c\ +\xc3\x21\xcf\xe5\x72\x84\x61\x18\x05\x41\xd0\x0f\xf4\x0b\x21\xde\ +\x03\x76\xea\x24\x49\x0a\x51\x14\x35\x16\x8b\xc5\xa6\x52\xa9\x94\ +\x2f\x16\x8b\xa2\x54\x2a\x51\x2a\x95\x28\x16\x8b\x8c\x2c\x8f\xb6\ +\xef\x78\xe5\x38\x8e\xd1\x5a\x93\xcf\xe7\x87\xbc\x50\x28\x8c\x39\ +\x56\xca\x61\xa1\x50\x08\xf2\xf9\x7c\xae\x50\x28\x44\x41\x10\xec\ +\x1b\x79\x0b\xc9\x9e\x9e\x9e\x5c\x96\x65\x55\xa5\x52\xa9\x50\x2a\ +\x95\x72\x71\x1c\xab\x28\x8a\x74\x14\x45\xaa\xe2\x3a\x8e\x63\x95\ +\xa6\xa9\x8a\xa2\x48\xa7\x69\xaa\x92\x24\x51\x69\x9a\xaa\x2c\xcb\ +\x74\x96\x65\xca\x18\xa3\xac\xb5\xca\x39\xa7\x2a\xe7\x37\x52\xca\ +\x21\xd7\x5a\x67\x5a\x6b\xe3\x79\x9e\xf1\x7d\xdf\xf8\xbe\x9f\x55\ +\xa2\xc9\xe5\x72\x59\x25\x9a\x30\x0c\x33\xdf\xf7\x4d\x3e\x9f\x1f\ +\xc8\xe7\xf3\x45\xcf\xf3\xfa\x5b\x5a\x5a\x06\x80\xa1\x1c\xf2\x7f\ +\x06\x43\x29\xed\xd9\xa6\xc2\x42\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x45\x43\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x45\x0a\x49\x44\x41\x54\x78\x5e\xed\x5d\x07\x74\x54\x55\ +\xb7\xde\x53\xd3\x1b\x21\x24\x84\xd0\x8b\x40\xe8\xbd\xa3\x08\x28\ +\xa8\x3f\x48\x11\x3b\x5d\x2c\x80\x05\x05\x11\xb1\xd0\x04\x54\x44\ +\x45\x91\xde\x8b\x28\x55\x11\xb1\x8b\xd2\x7b\x6f\xd2\x4b\x20\x9d\ +\xb4\xc9\xf4\xf7\xed\x93\x7b\x16\xf7\x3f\x6f\x42\x1e\x60\x68\x8f\ +\xbb\xd6\x5e\x77\x72\x67\x18\x20\xdf\x77\x76\xdf\xe7\x18\xbc\x5e\ +\x2f\xdd\xbd\x6e\x9c\x18\x70\xf9\x78\xac\x7f\xa6\x02\x42\xde\x42\ +\x04\xe9\xc6\x13\xe0\x2e\xe8\x06\x16\x05\x78\x85\x00\xbe\xef\x85\ +\x41\x08\xf3\x0d\x01\xe0\x2e\xf0\x06\x45\x8c\xfa\xbb\x4a\x00\x45\ +\x3c\xca\x9d\x09\xf5\xaf\x11\xc1\x7c\x35\x0c\xbe\x26\x06\xde\x05\ +\x5e\x82\x6c\xd2\x5e\x9b\xf4\xa2\x27\x81\x02\x3a\x8b\x5b\x27\x1e\ +\x79\x97\x9f\x53\x88\xf0\xaf\x9a\x00\x15\x74\xfd\xeb\x82\xd5\xd1\ +\x5d\xf0\xa5\x48\x90\xcd\x9a\x58\x58\xba\x75\xeb\x56\xb2\x51\xa3\ +\x46\x4d\x8a\x15\x2b\xd6\x30\x24\x24\xa4\x81\x9f\x9f\x5f\x9c\xc9\ +\x64\x32\xba\xdd\xee\x54\xc8\x39\x87\xc3\x71\x1e\x72\xe6\xd4\xa9\ +\x53\x7f\x8c\x18\x31\x62\x43\x66\x66\xa6\x9d\x88\x9c\x9a\xb8\x21\ +\x2e\x88\x47\x4f\x06\xbe\xae\x9b\x00\x2a\xf8\xaa\x8a\xca\x57\x4d\ +\xdd\x25\x82\xfa\x3b\x93\x2b\xdd\xa2\x89\xdf\xc0\x81\x03\x6b\xe3\ +\xea\x1d\x1c\x1c\x2c\x00\x37\x1a\x8d\xe4\xef\xef\x4f\xa1\xa1\xa1\ +\x14\x14\x1c\x44\x26\xfc\x6c\x34\x99\xc8\x0c\x31\xe0\xb5\xc7\xe3\ +\x21\x8f\xdb\x4d\x4e\xa7\x13\x5c\x70\x9e\xc8\xca\xca\xda\x34\x72\ +\xe4\xc8\xf1\x6b\xd7\xae\x4d\x26\x22\x87\x46\x06\x97\x5e\x2b\xf0\ +\x75\xdd\x04\x90\x0c\x56\xfe\x23\xc6\x0a\x15\x2a\x44\xfc\xf3\xcf\ +\x3f\x97\x98\x75\x8a\x8a\xf2\xaa\x2c\xbc\xbb\xea\xc5\x6a\xb7\x42\ +\xfc\xab\x57\xaf\x5e\xf4\xf9\xe7\x9f\x7f\x23\x3a\x3a\xfa\x69\x5e\ +\xe5\x21\xa1\x21\x14\x16\x1a\x46\x61\x61\xa1\x64\xb5\x5a\x99\x38\ +\x42\x88\xef\x79\x00\xa8\x21\x80\x5c\xe2\xe4\x76\xb9\x3c\x17\x2f\ +\x5e\xfc\xa9\x47\x8f\x9e\x03\x0e\x1f\x3e\xcc\x58\x08\xcd\xa0\xd7\ +\x08\x8c\xc1\xb5\x10\x40\x05\xdf\xa4\x63\xb0\xb5\x6f\xdf\xbe\x23\ +\xf1\x1f\xe9\x7b\xe9\xd2\xa5\x5d\xb3\x67\xcf\xee\x71\xec\xd8\xb1\ +\x0b\x0a\x03\x59\x3c\xff\x1f\xb5\x81\x04\x5f\x59\xf5\xfe\x90\xc0\ +\xb7\xde\x7a\xab\x63\x95\x2a\x55\x86\x59\x2c\x96\x62\x61\x61\x61\ +\x54\xa6\x4c\x19\xac\x7a\x3f\x5e\xe1\x02\x74\xa3\x04\x5e\x07\xbe\ +\xea\x0d\xea\x09\x20\xc5\x61\xb7\x3b\xf6\xec\xd9\x3b\xa2\x73\xe7\ +\xce\xb3\x88\xc8\xa6\x23\x82\xfb\x6a\x17\xa2\xd9\x37\xf8\xe2\xb9\ +\x1f\x24\xe0\xd5\x57\x5f\x1d\xd2\xa9\x53\xa7\xe7\xeb\xd5\xab\x67\ +\xb0\x3b\x1c\xf5\xca\x97\x2f\xbf\x03\x04\x58\xf3\xd1\x47\x1f\xbd\ +\x0a\x42\x64\x29\x7f\xb9\x5b\x3a\x27\x4c\x82\xff\x87\xe0\x5b\x19\ +\xf8\x8a\x15\x2b\x46\xe1\xf7\xf6\x05\xec\x7b\x0b\x80\x4f\xa5\x4b\ +\x97\xa2\xe8\x98\x18\x32\xea\x80\x97\x24\x30\x90\xd4\x00\x44\x0a\ +\xfc\x97\x09\x00\xd1\x7b\x87\x56\x3f\x3f\x6b\x9d\x3a\xb5\x47\x6d\ +\xda\xb4\xa9\x16\x7c\x89\xd7\x14\x13\xed\xbe\x9a\xdf\xbf\xd1\x37\ +\xf8\x82\xc1\xc1\xcf\xf5\xeb\xf7\xf2\xc3\x0f\x3f\x3c\xa0\x7e\xfd\ +\xfa\x06\xb3\xd9\x4c\x41\x81\x81\x04\x32\x58\xfb\xf4\xe9\xd3\x61\ +\xea\xd4\xa9\xbb\xdf\x7b\xef\xbd\xc1\x44\x14\x02\x09\xd4\x54\x9e\ +\x59\xfa\x0d\x7c\xfd\x7f\x51\x02\x7a\xf0\xf1\x7b\x0a\x7b\xf1\xc5\ +\x17\x3f\x0d\x0c\x0c\x6c\xc1\xf6\xbd\x56\xad\x9a\x14\x53\xbc\x38\ +\xdb\x78\x4d\x4c\x6c\xeb\x2f\xff\x6c\x62\xdb\x2f\x9f\x1b\x2f\x0b\ +\xff\x8c\xf7\x59\x0c\x52\x0c\x46\xf8\x08\x66\x0a\x0d\x09\xa5\xd8\ +\x12\x25\xa8\x61\xc3\x86\x5d\xce\x9c\x3d\xf3\x93\xfc\xfd\x4b\x73\ +\x7d\x55\x24\xd6\x89\x51\x3a\x2c\x0c\x7e\x8f\x1e\x3d\xfa\xc0\x5b\ +\x7d\xfb\xde\x7b\xef\x35\x31\xf8\x7c\xe9\x19\x69\xcb\xcd\xa5\x0b\ +\x17\x2e\xd0\xde\xbd\x7b\x13\xb6\x6e\xd9\xf2\xd6\xf8\xf1\xe3\xd7\ +\x68\xea\xc8\x01\x71\x29\x8e\xc9\x1d\xb9\xfa\xd5\x95\x0f\x09\x7b\ +\xf7\xdd\x77\x07\x97\x2a\x55\xaa\x0f\x9c\x3d\xaa\x53\xb7\x36\x59\ +\xcc\x16\x09\xa2\x5c\xf9\xb8\xf3\xcf\x62\xe5\xeb\xb4\x80\xaa\xfa\ +\x2f\xab\x7d\xbe\x18\x03\x38\x8f\x2c\xfc\x67\x04\x31\x52\x53\x53\ +\x3d\x7f\xfc\xf1\x47\x3a\xb4\xf1\xb3\x1b\x37\x6e\xdc\x46\x44\xd9\ +\xf2\xf7\xff\x7f\x35\x05\x66\x5f\x2c\x7e\xfc\xf1\xc7\x9f\xe8\xdc\ +\xa5\xcb\xb0\xfc\xc0\x77\xba\x5c\xe2\x1e\x11\x11\x41\x4d\x9b\x36\ +\x2d\x5e\xa1\x7c\xf9\x99\xd5\xaa\x55\xfb\xf3\xd9\x67\x9f\x7d\x4a\ +\xfb\x47\x90\x24\x81\x54\x47\x77\xb0\xea\x97\x36\x3f\x04\x2b\xbf\ +\x53\x89\x12\x25\x7a\xf3\x3b\x55\xe3\xab\x92\xc5\x62\x65\xd0\xe5\ +\x4a\xd6\x83\xcf\x77\x49\x00\x88\x1a\x69\x0b\xe0\x85\x16\x00\x00\ +\x1a\x89\xf2\xd6\x29\xa2\x01\xef\xd6\xad\x5b\xed\xab\x57\xaf\x76\ +\x27\x25\x25\x05\xb9\x5c\xae\x22\x44\x54\x16\xb2\x07\x92\xab\xe4\ +\x14\x0a\xbc\xcc\xea\xea\x87\x63\xf1\x08\x08\x30\xfa\xfe\x56\xad\ +\xcc\xbe\xc0\xc7\x5f\xc8\xa1\x89\x10\xc4\xac\xe2\x59\xd1\x62\xc5\ +\x0c\xb1\xb1\xb1\x2d\x9a\x37\x6f\x5e\xe5\xaf\xbf\xfe\x3a\xa8\x03\ +\xc0\xa9\xf9\x04\x06\x26\xc1\x9d\xac\xfa\x3b\x74\xe8\x50\xa7\x6a\ +\xd5\xaa\xef\x21\x7c\x33\xc4\x57\x8e\x27\xd8\x7f\x09\x3c\x83\xad\ +\xbd\x36\x28\x24\x30\x90\xe4\x92\xc4\xdf\x40\x1a\x61\x4c\x79\x9f\ +\xe3\xcb\x6e\xb7\xd3\xee\xdd\xbb\x9d\xbf\xfe\xf6\xab\x3b\xe1\x7c\ +\x82\x3f\x30\xf0\x07\x06\xae\xf4\xf4\xf4\x6d\x09\x09\x09\xab\xa1\ +\x85\xb7\x2a\x49\x25\x71\x5d\x2d\x01\xf8\x75\x40\xf9\x0a\x15\x3e\ +\x68\xd3\xa6\x8d\x05\x97\xea\x89\x0a\xf0\x1d\x1a\x01\x5c\x9a\x16\ +\xf0\x68\xc4\x88\x8d\x8b\x33\xb6\x6c\xd9\x72\x1e\x08\xd0\x4a\x09\ +\x15\x89\xef\x77\xe0\xea\x37\xe9\x57\x3f\x9c\xe4\x81\xfc\xba\x38\ +\xec\x3d\xb4\x80\x04\xff\xca\x24\x00\xf8\x52\x64\x8a\x17\xa1\xa2\ +\x78\x0d\x80\x69\xcf\xfe\x3d\xee\xf5\xeb\xd7\x3b\xcf\x9c\x39\xe3\ +\x87\xc5\x66\x01\xf0\x16\x80\x9e\x88\x04\xd1\x9e\xfd\xfb\xf7\x6f\ +\x84\x36\x38\x45\x44\x09\x52\xe5\x4b\x50\xaf\x87\x00\x7e\xa7\x4e\ +\x9e\x5c\x7d\xfa\xf4\xe9\xa7\x11\xf7\xfb\x06\xdf\xe1\x50\xc1\x17\ +\x9a\xc0\x1f\xb6\x29\x3a\x3a\xa6\x78\x97\x2e\x5d\xba\x7f\xfb\xed\ +\xb7\xd3\x75\x21\xa2\xf7\x4e\x8b\x0c\x14\x02\x04\x34\x68\xd0\xa0\ +\x02\x56\x7c\x13\x5e\x08\xe5\xca\x95\xe3\x95\xad\x80\xae\xbc\x86\ +\xe8\xcc\x80\x2e\xe4\xf7\xd0\xe1\xc3\x87\x3c\x1b\x36\x6c\x74\x9c\ +\x3d\x7b\xd6\x02\xd0\x4d\x00\xdd\x94\x9b\x9b\x9b\x73\x0c\xd7\xbe\ +\x7d\xfb\xf6\x62\xc5\x9f\x25\xa2\x74\x48\x1a\xe4\x12\x24\x0b\x92\ +\x2b\x23\xb1\xab\x25\x82\x51\xc9\x59\x9b\xbe\xfe\xfa\xeb\xd9\xb3\ +\x66\xcd\x4e\x62\xb5\x43\x1a\x5e\x52\xed\xe7\x07\x3e\xbf\x87\x7f\ +\x24\x95\xaf\x50\x9e\x4e\x9c\x38\xf1\x5a\x91\x22\x45\xa2\x34\xa7\ +\xc8\x4f\xf1\x4c\x6f\x7b\x51\xc2\x3e\x3f\x48\x20\xbc\xf1\x8e\xfc\ +\x2c\x20\x20\x80\x42\xc3\x42\x35\xc0\x01\xb0\x00\x59\x05\x1f\x22\ +\xa3\x01\xf9\xda\x94\xf7\x7a\xe6\xcc\x59\xb9\x2b\x57\xae\x32\xc2\ +\xb9\xf6\x07\xf8\x74\x12\xd7\x8f\x3f\xfe\xb8\x06\x11\xd7\x8c\x9f\ +\x7f\xfe\xf9\x7b\x80\xbf\x9f\x88\x98\x00\xe7\xb4\x95\x9f\xa4\x91\ +\x41\x84\xe3\x7a\xe7\xfb\x7a\x8a\x41\xde\x15\x2b\x96\x4f\x6c\xd0\ +\xb0\xe1\xc8\x87\x1f\x6a\x6f\x74\x7b\x3c\x02\x60\x87\x4e\xed\x4b\ +\xf1\x68\xef\x31\x59\x6c\x39\x39\x54\x1a\x89\x8e\x7a\x0d\x1a\x5a\ +\xb1\x0a\x26\x7e\xf3\xcd\x37\xbd\x99\x95\x8a\x16\x10\x99\xaa\x3b\ +\xc4\xf9\x93\xb9\x92\x20\x24\x79\x6a\xf0\xef\x22\x36\xb6\xb8\x66\ +\xd7\x2f\x87\x6e\x82\x04\xb8\xe7\x23\xba\xca\x9e\x87\x72\x72\x72\ +\xbc\x70\xec\x92\xf7\xec\xd9\x73\x04\x8e\xde\x01\xfc\x9c\xa6\x39\ +\xd5\x59\x9a\x64\xf2\x5d\xf9\x99\xdf\xcf\x51\x09\x70\x55\x79\x00\ +\x88\x57\x57\x64\x70\x1c\x39\x72\xe4\xe4\xa6\x8d\x1b\x76\x27\x26\ +\x25\x91\x4b\x73\xf8\x70\xbf\x0c\xbc\x04\x1f\x1a\x41\x80\x6f\xb3\ +\x09\xc9\x85\xb4\xba\xef\x3e\x3a\x71\xf2\x64\x83\x47\x1f\x7d\xf4\ +\x09\x0e\x27\x35\x1b\x69\x81\x98\xee\x84\xfc\x80\x4a\x00\x80\x18\ +\x18\x14\x14\x74\x0f\x08\xc0\xb6\x9f\x41\x97\x0e\xde\x65\x32\xe0\ +\x2e\x9e\x41\xf2\x21\x81\xf4\xf0\x8f\x7f\xfe\xf9\xe7\xdf\xfe\xf9\ +\xe7\x9f\x7f\x01\xfc\xe3\x44\x74\x1a\x72\x52\x8a\xf6\xf3\x59\x6d\ +\xf5\x27\x42\xd2\x34\x12\xd8\xae\xc7\x04\xc8\x04\x93\x4b\x63\x91\ +\x0d\x92\x35\x61\xc2\x84\xd9\xbf\xff\xfe\x7b\x76\x2e\x40\x76\xaa\ +\xe0\xbb\xdd\x12\x7c\x56\xfd\x62\xf5\xe7\x64\x67\x13\xaa\x56\x54\ +\xb3\x66\x0d\x2a\x59\xb2\xb4\xe1\xcc\xd9\x73\x43\x1f\x79\xe4\x91\ +\x76\xbc\x42\x20\x7e\x77\x02\x09\x7c\xe5\x4c\xe0\xfc\x55\x02\x88\ +\x41\xec\x34\x17\x29\x12\xa9\x73\xec\x14\xf0\xf9\xee\x43\x48\x97\ +\xe6\x3d\x7f\xfe\xfc\x19\x22\xba\xc0\x20\x6b\x60\x9f\xd2\xee\xfc\ +\xfc\x9c\xf6\x5e\x12\x24\x45\xda\x7f\x25\xf7\xa2\xd4\x64\xae\x8d\ +\x00\xd9\x90\x0c\x30\x3a\x75\xfe\xbc\x79\x5f\x1f\x3f\x76\xcc\xab\ +\xae\x7c\x98\x83\xff\x06\x1f\x02\xf0\x85\x60\x35\xd0\xf0\xb7\xdf\ +\x02\x09\x4a\x19\x13\x2e\x5c\x9c\xd0\xba\x75\xeb\xa6\xac\x09\xee\ +\x14\x12\xa8\x05\x1f\x38\xcb\x35\x44\x28\x5c\xb4\xa8\x58\x0c\x06\ +\xd2\x03\x4c\x32\xd1\xe3\xb3\xef\x83\xb5\x06\x6c\x3d\xdf\x59\xd8\ +\x7f\x62\xa0\x2f\x42\xce\x33\xe0\x9a\x24\x68\xcf\x92\x75\x8e\x5f\ +\xb6\xac\x01\xe4\x57\x11\xbc\x5e\x02\x30\xbb\x52\xe1\x78\x6c\xde\ +\xb6\x75\xeb\x49\xa9\x01\x00\xbe\x74\x06\x19\x7c\xa1\xf6\xb3\xb1\ +\xf2\xb3\x34\xf0\x91\xa5\x12\x2a\xad\x6a\xd5\x78\x41\x82\xb2\xe5\ +\xca\x99\x0c\x46\xd3\xf4\x7b\x5b\xb7\xae\xa6\xd3\x04\x66\x85\x04\ +\xb7\x65\xc5\x4f\x6a\x00\x54\xf9\xe2\x09\x17\xee\xac\x29\x19\x74\ +\x15\x70\x45\xa4\xff\xc4\x92\x07\xbe\x5b\xbb\x23\x9e\xff\x47\x5b\ +\xdd\x49\x2c\x1a\xe8\xa9\xba\xd5\x9e\x03\xc9\xf5\x55\x7f\x91\xd7\ +\xb5\x76\x04\x49\x12\x38\x34\x66\x65\x6a\xb6\x3b\x60\xf0\xe0\xc1\ +\x93\x50\xb7\x1e\x0a\x07\x2f\x12\x62\x90\x89\x09\x09\x7e\x76\x56\ +\x16\x83\xcf\x19\x2b\x4e\x08\x91\xd5\x62\x11\x0e\x4d\x7c\x7c\x35\ +\x1a\x35\x72\x04\x4d\x98\x30\xd1\x2f\x2d\x2d\x6d\x5e\xdd\xba\x75\ +\xff\xb3\x7d\xfb\xf6\x93\x1a\x00\xb9\xbe\x0a\x17\xb7\x89\x18\xf5\ +\x04\x80\x03\x58\x99\xb9\x11\x55\x2c\x8a\xc2\xc3\xc3\x05\xb0\x58\ +\x03\x57\x00\x9e\xc9\xe4\xd1\x77\x57\x09\xb1\x3b\xec\x04\x07\x50\ +\x82\xcd\x92\xa1\x2d\x46\xbb\xaf\x8a\xeb\xbf\x55\x79\x35\x33\x6b\ +\x18\x04\x45\x0b\x64\xc9\x52\x30\x80\x36\xa3\x1c\x3c\xfa\x1e\x5c\ +\x03\x07\xbe\xfc\x74\x89\xb8\x12\xc1\xc5\xe1\xec\x20\xd4\xe3\x7a\ +\xb6\x90\x28\x00\x1f\x8e\x9f\xc3\x42\x43\x85\xdd\xcb\x05\x41\x38\ +\x2f\x50\x1e\x31\xf1\xdb\xd0\x04\x1f\x7d\xfc\x49\x84\xd5\xcf\x7f\ +\x26\x3a\x1b\x9e\xe2\xda\xc1\x6d\x4a\x02\x35\x02\xb0\xa2\xbc\x1b\ +\x85\xa2\x4f\x34\xe1\x2a\x12\x11\x21\xb2\x77\xc9\xc9\xc9\x14\x55\ +\x34\x4a\x87\x91\x34\x9f\xcc\x1c\x0f\x79\x59\x3f\x78\x0d\x92\x12\ +\x44\x9a\x69\xcd\xc9\xce\x71\x6b\x60\xe7\x42\x6c\xea\x4a\x97\x5f\ +\x56\x28\x4d\xa1\x1a\x09\x3c\x9a\xce\x72\x6a\xe0\x64\xea\xaa\x7b\ +\x84\x06\x04\xf7\x4b\x2f\xbd\x38\xe1\xbe\xfb\xee\xab\xdd\xb4\x59\ +\x8b\x36\x61\xe1\xe1\xfe\x15\x11\xf7\xd7\xa8\x51\x9d\x1c\x9a\x43\ +\x88\x86\x05\x68\x02\x93\xd0\x0e\x32\x81\x14\x8b\xcc\xd8\xbb\xc3\ +\x87\xd1\xc4\x4f\x3f\xab\x88\xca\xd7\x0c\xac\x92\xbe\xc8\x16\x9e\ +\xbb\x4d\x49\x60\xd4\x13\xa0\x4e\x9d\x3a\x35\x71\xe7\x95\x2f\x40\ +\x06\xc1\xc9\xed\x72\x6b\xd0\x42\xbc\x06\x88\x86\x9b\x87\xc8\x23\ +\x28\x04\x0a\x28\x05\x1f\x69\x5e\x71\xb9\x34\x71\x2b\xb6\xdd\xa3\ +\x02\x5f\x28\x5d\xc1\x7a\x2d\xa0\x18\x31\x8f\x24\x06\x22\x03\x1b\ +\xe4\xd0\x93\x4f\x3d\x73\xdf\xd6\xad\x5b\xea\xfc\xf4\xf3\xcf\xc6\ +\x77\x87\xbf\x4d\xfb\xf6\xef\xa7\x5d\x3b\x77\x12\x1a\x47\xa8\x5c\ +\xf9\xf2\x30\x0f\x39\x92\xae\x04\x35\x49\x83\xdf\x78\x9d\x3e\x9e\ +\x30\xb1\x3a\x22\x88\xb9\x28\x22\xf5\x59\xb5\x6a\xd5\x09\x0d\x00\ +\xbb\x4a\x82\xdb\xc4\xfe\x5b\x91\xf6\xad\xc6\x6f\x45\x46\x16\x81\ +\x63\xec\x10\xb6\x1f\x50\x82\x08\x4e\x42\xc9\x1e\xaf\xc5\xca\xc7\ +\x53\x0f\x44\x5b\xf9\x4a\xc5\x5f\x12\x00\x9a\xc4\x84\x4a\xe2\x7d\ +\xef\xbf\xff\xfe\x1c\x05\x93\xeb\x5a\xf5\xb2\x0e\x53\x20\x01\x7c\ +\x99\x02\xf9\x96\x12\x22\xe6\x40\xb2\x17\x2e\x98\xb7\x1a\x1e\xf0\ +\x81\xda\x75\xeb\x75\x7e\x6f\xc4\xc8\xa0\x77\xde\x1e\x46\x16\xf8\ +\x01\x48\x57\x0a\xcf\x16\x16\x83\x32\x32\xb3\x48\x5e\xdc\xff\xf6\ +\xfa\xa0\x57\xa1\x09\x3e\xaf\x74\xe0\xc0\x81\x79\x4f\x3c\xf1\x44\ +\xaf\x45\x8b\x16\x1d\x55\x3c\x25\xcf\x2d\x9e\x2c\x32\xea\x1b\x66\ +\x22\x23\x23\x85\xfd\x8f\x80\xf9\xe3\xd5\x8f\xd7\x28\x91\x5f\x24\ +\xd4\x69\x10\x05\x95\x24\xa3\x5c\xf6\x4c\x6c\x88\x96\xf1\x57\x9b\ +\x3d\x64\x84\x45\xa8\xc1\x3c\x02\x02\x2c\x60\x5c\xd4\x8e\x61\xb9\ +\x38\xae\x72\xe8\xc4\xa0\x3d\x27\x3d\xce\xbe\x08\xa0\x92\xc0\x2d\ +\x1f\xe9\x08\xe0\xd0\x54\x76\x8e\x14\xf4\x08\xe6\xa0\x30\x91\xf8\ +\xe0\x83\xed\x1f\x7b\x7f\xe4\xa8\x52\xef\xbf\xfb\xae\xf0\x09\x90\ +\x48\x12\x24\xa8\x1a\x1f\x4f\x19\x19\x99\x92\xe5\x22\x4a\x78\xf5\ +\x95\x81\xf4\xf9\xa4\x2f\x4b\xef\xdc\xb9\x73\x3e\xca\xc7\x3d\xe7\ +\xce\x9d\xab\xaf\x1e\xba\x20\x24\x49\x70\x2b\xdb\x7f\xe4\xfe\x83\ +\x71\x95\x65\x1f\x28\x38\x28\x10\x91\x91\x53\xc0\x9a\x99\x91\x41\ +\x5e\x2c\xfb\xb8\xb8\x38\x12\x36\xd5\x0b\x31\x78\xf5\xed\x5e\x3a\ +\xf0\x75\x5a\x00\x7f\xa6\x54\xa9\x92\x31\x48\x2b\x97\xd8\xbc\x79\ +\x73\xaa\x56\x65\x74\x28\x99\x54\x75\x35\xab\xc0\xeb\xef\x0a\x19\ +\xd4\x9a\x8c\x4a\x00\xdf\x24\x90\x04\x70\x2b\x24\x90\x9a\xc0\x86\ +\xd0\x27\xf7\xbb\xef\x56\xce\x69\xda\xac\xd9\xfd\x6f\x0f\x7f\xa7\ +\xfe\x98\xd1\x23\x2d\xbc\xda\x0f\x1d\x3e\x2c\x40\x8f\xaf\x56\x8d\ +\x2e\x5d\xca\x20\x79\x31\x09\x06\x0e\x78\x89\xe6\xcc\x99\x57\xfc\ +\xd7\xdf\x7f\x9f\xdf\xb3\x67\xaf\xbe\xb3\x66\xcd\xdc\xc9\xb8\x4b\ +\x9f\x40\x92\xe0\x56\xea\x2f\x54\x09\x80\x56\xac\xaa\xc8\xe1\x9b\ +\x41\x04\x46\x40\x98\x80\xac\xac\x6c\xc2\x23\x26\xbf\xc8\x8f\xf8\ +\x07\x04\x30\x38\x4c\x02\x81\x87\xde\xf8\xcb\x3e\x3f\xd2\x69\x00\ +\x26\xc9\xe0\xc1\x83\xc6\xbd\xfa\xea\xeb\xbd\x50\x90\x13\xd9\x3d\ +\xc5\xf3\xf7\x30\xd8\x12\x27\x05\x78\x29\x46\x9d\x18\x14\x0c\x3d\ +\x4a\x8f\x86\x42\x00\xdf\xe6\x40\xfe\x23\xdc\xda\x6b\x07\x8b\xf4\ +\x58\x35\xb1\xaf\xff\xfb\xef\x35\xe7\xcf\x9d\x3f\x9d\x9b\x6b\x6b\ +\x37\xf1\x93\x09\x61\x56\x00\x7d\xf0\xc0\x41\xe1\xdc\x54\xaf\x51\ +\x03\x24\xb8\x24\x7b\xdb\xc8\x0f\xab\xa6\x47\x8f\x67\x09\x1d\xb2\ +\x45\x97\x2e\x5b\x3e\xbb\x4f\xdf\xe7\x9e\x9f\x3e\x6d\xea\x46\x1f\ +\x00\x78\x24\xeb\x6f\x95\xbe\x3f\x49\x80\xb2\x65\xcb\xd6\xe0\x9c\ +\x07\x14\x81\x54\xff\xec\xc9\xcb\xc8\x88\x49\xcf\x64\x97\xaa\x5f\ +\x7f\x29\xea\x9f\x20\x1e\xa9\x25\xe1\x3f\x55\x8c\xeb\xf7\x7c\x9f\ +\x85\x7f\xfc\xfe\xc7\x8b\x3f\xff\xfc\xdb\x36\xa5\xb7\x42\x80\xa8\ +\xae\x7a\xc5\x39\x35\xc9\xfb\x63\x8f\x3d\x56\xa6\x46\xad\x6a\xaf\ +\x64\xa4\x67\xfc\x3d\x7e\xfc\x47\xf3\xa4\x93\xa9\x27\x81\x24\x40\ +\xbe\x24\x50\xa6\x55\xdc\x7a\x6d\xa0\xca\x89\x13\xc7\x9d\xa9\xa9\ +\x29\xc9\x68\x65\xef\xf6\xc5\xa4\x49\x51\xec\x13\xec\x3f\x70\x80\ +\xf6\xec\xde\x03\x12\x54\x17\xe6\x40\x5c\x9a\x39\xe8\xd2\xb9\x13\ +\x85\xe1\x9a\x35\x7b\xce\xf4\x3e\x7d\xfa\xf6\x9f\x3e\x7d\xda\x1f\ +\xcc\xda\x5b\x8d\x04\x2c\x6a\x02\x08\x43\x1d\xd5\x19\x68\x3f\x7f\ +\x3f\x26\x00\x83\x27\xa0\xb0\x5a\x04\x01\x38\x2a\x62\xf2\xcb\x95\ +\x9f\x5f\xab\xf7\x7f\x0b\x3e\x0f\xc3\x42\xc5\x8b\xc7\x15\x6d\xd3\ +\xb6\xed\xfc\x52\x65\x4b\xbf\x3b\x63\xea\xac\x25\x52\x3b\x2a\x26\ +\x41\x8d\x4a\x58\xac\x2c\x4f\x77\x7f\xba\x61\xed\x5a\x35\xdf\x08\ +\x0d\x09\x6b\x80\xfa\x8c\x3d\x39\x31\x95\xeb\x06\x01\x90\x5c\x1d\ +\x9e\xf9\x6b\x00\xd5\x61\x90\xda\x40\x25\x83\x8e\x51\x4e\x29\x58\ +\xe9\xce\x55\x2b\x57\xce\x73\x38\x5c\xdd\xa6\x4e\x99\x5c\xa2\x56\ +\xcd\x9a\x04\xa7\x8f\xf6\xee\xd9\x43\x35\xa0\x09\xd2\xb1\x32\x24\ +\xab\x38\x57\xd0\xb6\x4d\x6b\xce\x1f\x04\x4d\xfa\x72\xf2\xe4\xde\ +\xbd\xfb\xbc\x36\x63\xc6\xf4\x1f\x75\xcc\x76\xa8\x24\xb8\x15\xd4\ +\x3f\x9c\xbf\x30\x44\x32\x55\xe0\x03\x88\x52\x2e\x08\x2f\x42\x3e\ +\x09\x3e\xea\x02\xdc\xc3\xc7\x24\xe0\xd7\xbc\x5c\x25\xf0\xaa\x06\ +\x90\xa2\x2b\xb1\x7b\xa8\x14\x1c\xc8\xcc\xcc\x0c\x6b\xb5\xaa\xd5\ +\xc6\x0c\x1e\xf2\x46\xb5\x4f\x27\x7e\x36\x02\x84\xca\x64\x02\x4a\ +\x8d\xac\xa6\xa4\x61\x76\x03\x7b\xf6\xee\xfe\x48\xcd\x9a\x35\x5f\ +\x8d\x8c\x28\x5a\x1a\xc8\x71\x71\x89\x2e\x65\x64\xa4\x20\x55\xcf\ +\xd8\x04\x2a\x8b\x58\x28\x11\x5e\x59\xd7\x3a\xef\x66\xd6\x75\xc4\ +\x04\x43\xc2\x20\x91\x90\x28\x48\x34\x56\x78\x6c\xeb\xb6\x0f\x3c\ +\x36\x65\xf2\x97\x65\x80\x9b\x20\x41\x10\xd8\x5d\x03\x61\x22\xd4\ +\x23\xec\xa3\xbf\x20\x80\x1f\x84\xaf\x83\x07\x0f\xd2\xf8\x8f\x26\ +\x38\xcd\x26\xe3\x9b\x73\x66\xcf\x5a\xa1\x54\xb9\x5c\x4a\x2c\x7c\ +\xa3\xd5\xbf\x2c\xfd\x86\x42\x8a\xa1\xe9\xa5\x53\xb3\x66\xcd\xde\ +\x66\x4f\xdf\x62\x35\xf1\xe7\x40\xe6\x40\x06\x5f\x12\x80\xef\xac\ +\xe5\x70\xb7\x28\xf3\x74\x12\x7c\x55\x0b\x78\xa4\x33\x28\xfc\x09\ +\x34\x79\xca\x96\x3b\x2c\x9a\xf4\x9d\x33\x66\xcf\x7c\xfe\xc4\x91\ +\x13\x17\xa4\x16\x90\x18\xa0\x4d\x3f\xe2\xb1\x6e\x5d\xba\xd7\xa8\ +\x51\xb3\x4f\x74\xb1\xe8\x70\x97\xcb\xcd\xc0\xb3\x88\x0c\xed\xb9\ +\x73\x67\x6d\xc7\x8f\x9f\xf8\x64\xf1\xe2\xc5\xf3\xb5\x5a\x42\xb6\ +\xae\x86\xa0\x98\x80\xab\xd0\x06\x7a\x07\xc5\xd7\x20\x23\x18\xeb\ +\x59\xbb\xe6\x87\x45\x3d\x7b\xf7\xe9\x32\x71\xc2\x84\x8a\x58\xfd\ +\x82\x04\x7b\xf6\xee\x25\x34\x90\x52\xa6\x16\x22\x4a\x9f\x00\x03\ +\x14\x34\x7a\xe4\xfb\x96\x77\xdf\x1f\x39\xbe\x67\xaf\xde\x81\xb3\ +\x66\xce\x58\xa4\x91\xcd\x26\x23\x84\x9b\xd1\x59\xe4\x2b\xff\x0f\ +\xfb\xdf\x28\xaf\xee\x21\x9c\x3f\x6e\xda\x64\xb0\x25\xf0\xf2\x2e\ +\xb4\x00\xf7\x53\xc8\x0b\x9f\x17\xa3\x5f\x76\x61\x32\x94\x30\x50\ +\x47\x04\x6e\x20\x89\x8a\x8a\xe2\xd4\x30\xf1\x55\x34\xb2\x68\xed\ +\x01\xcf\xbf\xf4\xfd\x9a\x35\x3f\xb0\x5f\x70\x80\x09\x50\xbf\x71\ +\xfd\x98\x47\x3b\x76\x7c\xbe\x4e\xad\x3a\x9d\x62\x8b\x97\xb0\x42\ +\x43\x08\xd0\xed\xf6\x1c\x88\x5d\x48\x76\x76\x96\x13\xa9\xe9\x00\ +\x7c\x4f\x86\xae\x0e\x63\xb8\x9e\xf1\x70\xd5\x37\x20\x8d\x91\x1e\ +\x5f\x82\x06\x12\xcf\x2f\x3f\xad\x5d\xfc\x62\xff\xfe\x9d\x3f\x18\ +\x3d\xba\x2a\x48\x20\x56\x3a\xfa\xd9\xa8\x5a\x7c\x3c\x93\x40\x56\ +\xc4\x98\x04\xa2\x9e\xfe\xf1\x87\xe3\x4c\x43\x86\x0e\x1b\xd1\xbb\ +\x77\xdf\xa0\x19\x33\xa6\xcd\x20\x5c\x6a\x98\x28\x49\x70\x33\xd4\ +\x3f\xc4\x1f\xf6\xbf\x2e\x27\xb7\x5c\x6e\x17\x39\x5d\x0e\xd8\xed\ +\x30\x09\x3c\x8b\x5e\x13\x70\xc1\x47\x90\x24\x00\x91\x11\x3a\x86\ +\x04\xc8\xb9\x76\x87\x28\xa9\x7b\x49\xf5\x01\x24\x19\x3c\x82\x00\ +\xa8\xa1\xc8\xc5\x07\x87\x39\x34\xaa\x49\x93\xa6\x0b\x30\x63\xb0\ +\xb2\x49\x93\xc6\x25\xea\xd7\x6f\xd8\x18\xc0\x1b\xa0\xde\x35\xe0\ +\xed\xaa\xb0\x06\x70\xe0\x9e\x83\xd6\xf1\xc3\x6a\x5e\xe1\x5a\x09\ +\xa0\x6a\x03\x8f\x7c\x94\x8f\x88\x78\xfe\xcf\xdf\x7f\xfb\xf6\xb5\ +\xd7\x5f\x7f\x04\x79\x82\xda\x75\xeb\xd6\xa1\xa3\x47\x8f\x0a\xe7\ +\xb0\x4a\xe5\xca\x94\x63\xcb\xf3\x6d\xbc\x1a\x11\xf8\x17\x3b\x7e\ +\xec\x18\xc3\xd0\x61\xc3\xdf\xec\xd3\xb7\x5f\xe0\xf4\x69\x53\x3e\ +\x57\x27\x5f\x6e\x60\xbb\xf9\xff\x9a\x96\x42\xab\x7c\x3c\xc0\x45\ +\xee\x27\x82\x2e\x24\x26\xc8\x41\x8d\x7c\x09\xc0\x83\x1f\x81\xde\ +\x00\xe2\x6b\xc3\xa6\x2d\xb0\xef\x25\x28\x02\xa9\xe3\x4c\x80\x06\ +\x5c\x25\xf8\xaa\x19\xe0\xcc\x20\x87\x91\xa2\xf2\x2a\x49\x80\x77\ +\xac\xb1\xb1\x25\xba\xf6\xec\xd1\x47\xaa\x79\xae\xca\xe6\x2b\x48\ +\x48\x05\xa1\xb7\xf0\x67\x2c\x30\xaf\x8a\xd3\xf5\x10\x40\xd5\x06\ +\x1e\xf5\x4b\x7d\x6d\x6e\xb0\x69\xc3\xfa\x95\x6f\x0d\x1b\xe6\x18\ +\x32\x78\x70\xc3\xd6\xad\xef\x27\xf4\x38\x72\x7d\x81\x2a\x56\xaa\ +\x44\x0e\x66\x2c\x08\xe0\xd2\x6a\xe3\x3c\x51\x33\x76\xcc\x28\x7a\ +\xfb\x9d\xf7\x06\x22\x42\x0c\x9e\x36\xf5\xab\xb1\x3a\x30\xec\x10\ +\x52\x48\x70\x23\xd2\xbf\x56\x88\x1f\xcc\x57\x13\xa8\x7b\x9e\x8d\ +\x10\xff\xee\xa8\xd8\x28\x56\xff\x3e\x09\x80\x28\x51\xa8\xf1\x1f\ +\xd6\xfe\x44\x3f\xfc\xb8\x96\x12\x93\x92\xa9\xdd\x03\x6d\xe9\xb5\ +\x81\x2f\x31\xc8\x62\xa5\xab\x1a\xc0\xa3\x23\x02\x0f\x90\xa6\xa7\ +\xa5\x4b\x02\x70\xa1\x8d\x89\xc1\xab\xbb\x40\x71\x38\xec\x1e\xe4\ +\x68\x8c\x48\xb8\x6d\x94\xce\xba\xaf\xa2\xd2\x75\x10\xc0\x77\xce\ +\x40\x21\x83\x57\x2f\xdb\xb7\x6d\xfd\xe1\x83\xb1\x63\x1d\x19\x99\ +\x99\xcd\x3b\x77\x7a\x94\x4e\x9e\x3a\x45\xc7\xfe\xf9\x87\xb8\x03\ +\xd9\xee\x70\x32\x63\x85\x6a\x84\xe9\x20\x78\xd8\xec\x13\xd0\xbb\ +\xef\x8d\xe8\xd5\xf7\xb9\x7e\x41\x70\x0c\xdf\xe5\x70\x4b\x9a\x9d\ +\x1b\x35\x78\xa2\x4c\xff\x04\x20\xff\xdf\x80\x8b\x3f\x59\x99\x19\ +\x42\x85\xc7\xc4\xc4\x4a\xc0\xe5\xf4\x8e\x70\xfa\x37\x6f\xd9\x42\ +\xdf\xaf\xf9\x91\x76\xef\xdd\x43\xc5\x8a\x46\xd2\xe9\xd3\x67\x04\ +\xb0\x3f\xfc\xf0\x03\xf5\xea\xfe\x8c\x20\x4a\x8e\x2d\x47\x82\xaf\ +\xf4\x5a\x0a\x12\x88\x29\xe2\xac\xcc\x6c\xf1\x1a\x17\x47\x1c\x30\ +\x25\x01\xff\x27\x02\x40\xc3\x18\xd1\x42\x7e\x16\xd9\xda\xd3\xda\ +\xa2\x71\xa8\x24\xb8\x6e\x0d\x90\x5f\x1d\x41\xff\x96\xaa\x0d\x76\ +\xee\xd8\xfe\xf3\x67\x9f\x7d\xe6\x48\x4f\xbf\xd4\xaa\x4f\xef\x9e\ +\x06\xa8\x28\x3a\x7e\xfc\xb8\x98\x9c\x75\x7b\x0c\x02\x7c\x17\xd4\ +\x17\xd4\x16\xdb\x3d\x1a\xf1\xfe\xbb\x34\x62\xe4\xe8\x6e\xdd\x7b\ +\xf4\x0a\x5a\xb4\x70\xfe\x60\xa8\x3d\x9d\x0d\x2b\x54\x12\x18\xd4\ +\xda\x3f\x3c\xee\x18\x68\xa7\xf2\x31\x18\xf4\xdc\xb3\x6f\x17\xd4\ +\x79\x69\x51\xe3\x90\x2b\x3f\x0b\xfd\x11\xcb\x57\xad\xa2\xdf\xfe\ +\xf8\x93\x2a\xdf\x53\x89\x9a\x36\xa9\x8f\x1e\xc9\xc6\x94\x70\xfe\ +\x22\x15\x09\x8f\xa0\x7f\x8e\x1d\x81\xc3\x68\xa5\xe5\x2b\x56\x52\ +\xb7\xae\x5d\xc9\x0d\x15\x4e\xa4\xb3\xfd\x7a\x33\x00\x01\xb9\xd9\ +\xc1\xc4\x73\x11\x0d\x30\x01\x38\xef\xa0\xaa\x7a\x55\xd8\xe7\xe0\ +\xa4\x14\xff\x5e\xb7\xc8\x8c\xad\xda\x34\xaa\x67\x37\xfd\x5b\x24\ +\xb8\x42\x77\x51\x8a\xd6\xc4\x98\xc0\xb2\x67\xf7\xae\x3f\x66\xcf\ +\x9a\xf9\xe3\xa4\x2f\x26\x7b\x38\x94\x0a\x0a\x0a\x26\xa4\x3e\x85\ +\xf7\x6b\x36\x8b\xb0\x49\xf4\x14\x80\xc1\x62\x65\xbd\xfb\xce\xdb\ +\x14\x1e\x11\xf1\x70\xb7\xc7\x9f\x9c\x04\x47\x31\x52\x76\x17\x15\ +\xd6\x30\xaa\xfc\x2e\x75\x00\xa4\x35\x2e\xac\x74\x83\xd3\xe5\x14\ +\xc9\x9f\xb2\x65\xca\x8a\x55\x7f\xe0\xd0\x21\x1a\xff\xf1\x27\x34\ +\x74\xf8\x70\xcc\xeb\x25\xd1\x90\xd7\x07\xd0\x4b\xfd\xfa\x52\xf1\ +\xe8\x18\xf8\x07\xe1\xd4\xa5\x53\x57\xea\xd9\xa3\xbb\x68\x05\xc7\ +\x64\x0f\xcd\x9d\x3b\x8f\x09\xce\xcd\x33\x7c\x07\xf1\x85\x5c\xee\ +\x10\xd2\xb4\x20\x6b\x3c\xb3\xc5\xc4\xc0\x0b\xd1\x36\x95\x28\x40\ +\xf5\x3b\x28\x35\x25\x95\xff\xbc\x63\xdb\xb6\x6d\x1b\x75\x9d\x44\ +\x8e\x7c\x09\x50\xc8\x24\xc8\x51\x48\x70\x01\x92\x80\x19\x87\xbf\ +\xe7\xcf\x9f\xf7\xdd\x84\x4f\x3e\x75\xa3\x9d\x5a\xd8\xfd\xf3\xe7\ +\xcf\x71\x41\x55\xb6\x96\x81\xcd\x76\xfc\x42\xd3\xc4\xeb\xe1\xc3\ +\x86\x12\xbc\xef\x56\x0f\x3c\xd8\x7e\x6a\xe5\xca\x95\x8b\x31\x09\ +\x64\xc7\x71\x61\x90\xc0\xd7\xa8\x3c\xda\xdd\xdb\x22\x02\xa0\x94\ +\x94\x64\x2a\x57\xb6\x1c\xec\x71\x10\x8d\x1e\xff\x21\x0d\x7f\x7f\ +\x24\xed\xde\xb3\x9b\xca\x94\x2c\x8e\x2a\x60\x1c\x35\xa8\xd7\x84\ +\x92\x53\x52\x18\x04\x61\x12\xb6\xee\xd8\x42\xeb\x37\xac\x43\x32\ +\x6c\xaf\x28\x94\x1d\x39\x7c\x88\xfe\xfc\x73\x1d\xc0\x0c\x10\x60\ +\x4b\xd1\x03\x2f\x57\x33\x2e\x3c\xf7\xe4\x11\xc0\x64\x44\xb4\xe4\ +\x57\x00\x01\xc4\x9d\xab\xb2\x3f\x21\x0a\x48\x12\x04\x50\x35\x80\ +\xc4\x4a\x12\xa0\x10\x49\xe0\xd6\x91\x20\x43\x23\xc1\x45\x4d\x13\ +\x5c\x38\x74\xf0\xc0\xe6\x85\x0b\x17\x2c\x1f\xff\xe1\xc7\x4e\x6e\ +\xaa\x0c\x45\x04\x80\x1d\x30\xe0\x07\x78\x04\xd3\xcd\x66\x8e\x99\ +\x41\x82\xb4\x34\xf1\x4b\x18\xfa\xe6\x60\x0e\x15\x1b\x37\x6a\xdc\ +\x74\x66\x93\x26\x4d\x4a\x14\x62\xc7\xb1\x3a\xf9\xeb\x8f\x52\x6d\ +\x75\x14\x7e\xca\x70\x95\x2f\x29\x39\x11\x2a\xbe\x8a\xd0\x4e\x0d\ +\xea\xd6\xcd\x0b\xd3\x82\x03\x08\x2d\xfd\x94\x0e\xc2\xfe\xb1\xee\ +\x57\x32\x18\xbd\xd4\xa4\x49\x33\xec\x0d\x50\x1a\x9f\x33\x0b\x82\ +\x37\x68\x58\x9f\x0c\x9a\x43\x37\x6f\xde\x5c\x01\xaa\x15\x80\x62\ +\xd5\xab\xc0\x6b\x3d\x97\xda\x3d\x27\x87\x35\x0d\x6b\x10\x4e\x2c\ +\xe5\xab\xfa\x99\x3c\x89\x89\x49\x1c\x3e\x9e\x43\x6b\xf9\xaf\xfc\ +\x3b\x97\x04\x50\xf2\x36\x3e\x34\x40\xe1\x6a\x02\x87\x8e\x04\xa9\ +\x7a\x73\x70\xf4\xc8\xe1\xed\x8b\x16\x2e\xf8\x66\xf4\x98\xb1\x76\ +\x84\x47\x62\xe2\x38\x25\x35\x85\xbb\x8b\xc4\x0a\xb3\x58\x38\xaf\ +\xee\xa0\xb4\xf4\x34\xd1\x74\x39\x64\xf0\xeb\xec\x2f\xd4\xae\x50\ +\xf1\x9e\x39\xed\xda\xb5\x2b\xfd\x6f\xcd\x1e\x14\xb0\x51\x46\x20\ +\xf6\x48\xe8\xc0\x20\x9e\x3d\x77\x86\xe2\xab\x56\x63\xb3\x25\xec\ +\xfe\x43\xed\x1e\x64\xad\x85\xb0\xf6\x30\xb4\xc0\x7e\xae\xff\xf2\ +\x44\x0f\x48\x9b\x82\xda\x47\x3a\x5a\xc5\x22\xf1\x7f\x2a\x82\xae\ +\xa1\x30\xfa\xcf\x7f\x1e\xa1\xe6\x2d\x5b\x50\xa3\x26\x0d\x29\x11\ +\x24\x42\x29\x9d\x82\x02\x83\x74\x80\xdb\x2e\x03\x0f\x91\xcf\x79\ +\x11\x18\xb4\x49\x23\x93\xd9\x92\xbf\xe3\x07\xc7\x14\x9e\xbf\xe7\ +\xef\xbf\xff\x5e\xa6\x74\x10\xfb\x1e\x1d\x93\x04\x28\x44\x12\xa8\ +\xfd\x04\x36\x85\x04\xc2\x1c\x1c\x3f\x7e\x6c\xf7\xd7\x8b\x17\x7d\ +\x8d\xc6\x12\x1b\xbc\x7f\xd1\x6f\x08\x27\x91\x5c\x4e\x4e\xb2\x04\ +\xf1\xb6\x2a\x0c\x3e\x33\x9b\xb2\xb1\x1a\xb8\xb1\xa4\x52\xa5\x4a\ +\x55\x8a\x14\x2d\x36\x0f\xd3\xcc\xe5\x7d\xb4\x9d\x1b\x19\xc8\xeb\ +\xad\xfc\x49\xd5\x0f\x6d\x53\x09\x2b\xff\x7e\x38\x81\x00\x27\x07\ +\xbd\x8e\x15\xa4\xe3\x27\xfe\xad\xad\x31\x0c\x63\x07\x50\x67\xcf\ +\x9c\x05\xf8\xa7\x00\x7c\x46\x9e\xf9\x02\x69\x4f\x9e\x38\x49\x89\ +\x17\x93\xa1\x31\xe2\xa9\x33\x7c\x81\x7a\xc8\x83\xa4\x24\xa5\x88\ +\x67\x8b\x16\x2f\xce\x8b\x1e\x4c\x66\x80\xae\x90\x20\x97\xef\xe2\ +\xb5\x58\x00\x49\x58\xd9\xd0\x14\x4c\x04\x9f\xe0\x83\x24\xbc\xfa\ +\x39\xc7\xb2\x11\xfe\xd4\x11\x22\x4a\xd7\x35\x96\x3a\xd4\xd6\xf1\ +\x42\x27\x80\xaa\x09\x14\x12\x64\xaa\x24\x38\x7d\xfa\xd4\xbe\x25\ +\x8b\x17\x2f\x18\xf6\xf6\x3b\x59\x5c\x23\x28\x12\x59\x84\x13\x1d\ +\x42\x2d\x86\x20\xd1\xe2\x1f\x10\xc8\xb1\x37\x93\x40\xd4\x12\x5e\ +\x79\x79\x00\x67\x13\xcb\x59\xfc\x02\xe6\x3f\xfd\xf4\xd3\x55\xa4\ +\x26\x50\x49\x70\xad\x63\x5f\x32\xec\x83\x04\xb7\x6f\xdf\xfe\x45\ +\x84\x7e\x66\x5e\xd1\x35\x6b\xd4\xd6\xa7\x7b\xc5\xbd\x47\xf7\x67\ +\x05\x01\xc2\xc3\x82\xe9\x04\x00\xbf\x94\x9e\x41\xb5\x6b\xd4\x25\ +\xf4\xc4\x93\xcb\xe3\xa4\x8a\x15\x2a\x22\xe4\xcb\xa4\xd5\x6b\x56\ +\x91\xc3\xe5\xa0\x0b\x17\x93\xc4\xff\xe5\xfb\xef\x57\x33\xe0\x4c\ +\x22\x06\x5b\x82\x0f\xd1\xee\x36\x69\x06\x6c\x94\xa8\xa5\x85\x53\ +\xe1\x5b\xa8\xaa\x3f\x27\x27\x9b\x4e\x9f\x3a\xcd\xc4\x4b\x5c\xb7\ +\x6e\xdd\x6a\xfe\x98\x32\x35\xa4\x56\x11\xe9\x86\x10\x40\x29\xde\ +\x14\x48\x02\x38\x81\x87\xbf\x59\xf2\xf5\xfc\x37\x06\xbf\x99\x81\ +\x9c\xb9\x58\x5d\x48\x75\x82\xe1\xb9\x14\x16\x12\xcc\x26\x81\x7d\ +\x01\x68\x87\x34\xde\x1d\x83\x1b\x4b\x10\x6a\x35\x89\x73\xb8\x3c\ +\xf3\xb0\xa3\x49\xcd\x6b\x25\x81\x9a\xf4\xd1\x83\xff\xdc\x73\xcf\ +\x75\x44\x5a\xb6\x09\xa7\xb1\xfd\xfc\xfd\x19\x2c\x3d\xf8\x2c\xa2\ +\xc0\x55\xb7\x4e\x6d\xb1\x42\x4f\x1e\x3f\x09\x8f\xde\x45\x4b\x97\ +\x7f\x43\x47\x11\xf6\x05\x07\x05\x31\x01\xd8\x0c\x88\xae\xe9\x92\ +\x71\x25\x28\x0e\x8e\x22\x7f\x97\xc5\xcf\x42\xdf\xaf\x5e\x8d\x9c\ +\x47\x08\x57\x12\xf5\xea\x9f\xef\x7a\x32\x70\x0b\xbe\x70\x12\x4f\ +\x21\x5a\xc2\x8a\xd7\xe7\xfb\x85\xd6\x81\xc3\x97\x8a\x41\xd2\x59\ +\xf0\x03\x12\x75\x93\x43\xd9\x3e\x67\x06\x55\x02\xdc\x60\x12\xb8\ +\x75\x24\xc8\xd2\x98\x9a\x24\x49\x90\x98\x78\xf1\xe8\xd2\x6f\x97\ +\xcc\x7d\xf5\xb5\x41\xa9\xe0\x8e\x20\x81\x43\x53\x73\xe1\xc8\x8c\ +\xb1\x89\xe0\x2b\x1d\x0d\x26\x17\xe0\x30\xf6\x44\x63\x09\x86\x58\ +\x8b\x65\x66\xdb\xe6\xa2\x9c\xdc\x80\x88\x42\x7c\x91\x80\xa5\x20\ +\xf0\x95\x95\x1f\x32\x60\xc0\x80\x6e\xe8\xfc\x1d\x1a\x8f\xba\x85\ +\xd9\x62\xa6\x4a\x15\xef\xf1\x59\xf0\xe1\xab\x77\xaf\x5e\x74\x21\ +\x21\x91\x4e\x00\x8c\xdd\xbb\xf7\x0a\x70\x32\xf0\x6f\x4c\x61\x5f\ +\x00\xb6\x39\x28\x30\x44\xfc\xdb\x1b\x35\x6a\x4c\x1f\x8d\xfb\x00\ +\xf9\x81\x66\x54\xb1\x62\x79\xfa\x76\xe9\x52\xe2\x0b\x29\x5e\x01\ +\xbc\xd0\x04\xda\xca\x96\x77\xe9\x0f\x70\xc7\x51\x4a\x32\xfb\x16\ +\x97\xf8\x39\xb4\xc2\x45\x64\x53\x8f\x30\xf8\x97\xb0\x7f\xe0\x5c\ +\x94\xe2\x4f\xe9\x26\x88\x32\x55\xe7\x2f\xdf\xe1\xd0\x9b\x44\x02\ +\xa7\xd4\x04\x2a\x09\xb0\xba\x8f\x2f\x5b\xfa\xed\xdc\xfe\xfd\x07\ +\x26\x82\xd1\xa2\xed\x1a\x77\x26\x81\x70\xa6\x82\x61\x12\x18\xb7\ +\x0c\x98\x02\xcc\xd3\x51\xa7\x47\x3b\xd2\x33\x4f\x3d\x19\x91\x9a\ +\x7e\x69\x16\x1a\x4b\x9a\x6b\x24\x08\xd0\x93\x40\x07\x76\x41\xe0\ +\x07\x32\xf8\xaf\xbf\xfe\x7a\x77\x74\x38\x0f\xc3\xca\x37\xc2\x93\ +\xe7\xac\x9c\x3e\xe3\x27\xee\x72\x33\x07\xa9\xba\x11\xce\x8a\x90\ +\x75\xd7\xce\xbd\x02\xbc\x94\x94\x34\x2a\x11\x5b\x12\x8e\xe3\x59\ +\xda\xb4\x69\x03\xfc\x18\x6e\x15\xb3\xd1\x5f\xeb\xd7\xd3\xc6\xcd\ +\x3b\x00\x68\x2e\x61\x88\x96\x57\xb6\x20\x14\xf2\x0b\x92\x04\x97\ +\x45\xa7\x09\xd2\x52\xd3\x45\xae\x00\xd9\x3d\x51\x59\xfd\xe7\xe8\ +\x31\xd6\x90\x99\x3f\xfd\xf4\xd3\x3c\xe4\x4c\x4e\xc8\x69\xa2\x02\ +\x56\xff\xcd\xd9\x2c\x5a\x2d\x22\xa9\x6f\xa9\x02\x7b\xe6\x5d\xb9\ +\x72\xf9\x3c\xbb\xd3\xf9\xc4\x94\xc9\x5f\xc4\x82\x04\xcc\x74\x72\ +\x68\x24\x00\x76\xf0\x05\xd2\xd1\xf0\x90\x09\x72\x9c\x21\xd4\x17\ +\xb8\x90\x14\x3c\x79\xca\xd4\xa9\xd0\x04\x2f\xa3\xb1\xe4\x97\x2b\ +\x35\x96\x5c\x09\xfc\x37\xdf\x7c\xf3\x39\x38\x7c\x83\x40\x00\x03\ +\xc2\x4e\x06\x47\x15\x09\xbe\xf0\x53\xb0\xa7\x82\xf0\x55\x1e\x78\ +\xe0\x01\xe1\xd8\xc5\x14\x2f\x26\xda\xe1\x2a\x94\xaf\x40\x67\xa0\ +\xb2\xe1\x0a\x50\x4e\xae\x93\x96\x2c\x9b\x8b\xe7\x87\xa8\x69\xe3\ +\xc6\x34\xf1\xe3\x8f\x41\x8e\x18\xd4\xeb\xcf\x11\xb6\x00\x40\xea\ +\x16\xff\x0f\xa7\x4b\x94\x8f\xdd\xba\x5d\x58\x5c\xda\xfe\x0b\x1e\ +\xdc\xf1\x1e\xab\x33\x0f\xea\xfb\x46\x60\xc9\xfe\xd0\x69\xf4\x0d\ +\xac\x04\xf8\xc7\xe4\xe0\x68\x3e\x13\xc3\x1e\x09\xfe\x4d\x23\x80\ +\x4a\x04\xb5\x92\xe8\xab\x88\x04\xbb\xe7\x59\xfd\xdd\xca\xf9\x3d\ +\xed\xf6\xc7\xd1\x5d\x54\x0a\x00\xb3\x63\xc8\x15\x32\x2e\x94\x68\ +\x29\xd3\x74\x56\xb1\x28\x2e\x1d\xa7\x7a\xf5\xea\xd2\xe0\x90\x41\ +\x01\x13\x3e\x99\x38\xa9\x47\xcf\x5e\x6f\x20\xdb\xf8\x9d\x2e\x6d\ +\xec\xd4\xa5\x8e\x85\x46\xf0\x05\xfe\xf0\xe1\xc3\x07\x20\xcc\x1c\ +\xc8\x36\x1f\x29\x5f\x3d\xe8\xbc\xf2\xf5\xe0\x8b\x4c\x25\x76\x43\ +\x11\x40\xf1\x05\xc2\xd0\xb2\xe5\x2b\xe8\xd4\xc9\x33\x3c\x0f\x20\ +\x9c\xd7\xf7\x46\x8c\x42\xcd\xe3\x0c\xc0\x2e\x41\xed\xdb\xb7\xa3\ +\x17\xfa\xf4\x15\xa4\x39\x0f\xad\x70\xe8\xd0\x01\x01\xb2\x48\x00\ +\x31\xe0\xb8\x33\xd0\x0e\xbc\x96\xb9\x01\x4e\x13\xcb\x66\x22\x03\ +\x19\xa4\x26\xb4\x1f\x3a\x74\xe8\x2f\x24\x7b\x36\x6a\xa0\x5f\x84\ +\x48\xdb\x9f\x01\xc9\x51\xc2\xbe\x5b\xf3\xbc\x00\x75\xbf\x1d\xb9\ +\xe1\x02\x24\x5c\xeb\x2e\x2a\x06\x89\x81\xca\x2d\x7e\x7f\xeb\xb6\ +\x5d\x3f\xff\x6c\x62\x05\xa4\x8e\x85\x63\xc8\x97\xc5\x6a\xe5\x70\ +\x91\x81\xe0\x01\x55\x4e\x1e\xa1\xb0\x54\x5e\x24\x93\x46\x8c\x1a\ +\xe3\x32\x19\x0d\xc3\x41\x82\x25\xbc\x22\x94\x9e\x3a\x09\xbe\x51\ +\x86\x7a\x90\xd0\x37\xde\x78\x63\x08\x1a\x53\x7a\xa3\xad\x8a\x87\ +\x3d\x05\xe0\x20\x0b\xab\x59\x99\x9f\x17\x7f\x07\x5a\xc2\x04\x88\ +\xcb\x97\x2f\x97\xe0\x4b\x62\xd3\x4f\x3f\xfd\x8c\x44\xd0\x3a\xf8\ +\x0c\x16\xf1\xd9\x96\x2d\x5a\x52\x8b\xe6\x4d\xe1\xbf\x84\x89\xca\ +\xa0\x7e\x1a\x38\xd7\x9e\xcb\x7e\x02\x3f\x13\x51\x81\x78\xee\xf6\ +\xe8\xb7\x87\xe3\x67\x78\x2d\xd2\xc3\x5e\x14\xcb\x72\x39\xbb\xf7\ +\xdb\x6f\xbf\x7d\x0f\x7b\x7f\x4e\x03\x3c\x59\x23\x41\x2a\x24\x5d\ +\x17\xf7\xbb\xf4\x83\xa3\x05\x11\xe0\x56\x24\x41\x98\x8e\x04\xd1\ +\xb0\xad\x31\x2d\xef\x6d\xd5\x79\xfc\xb8\x0f\xaa\xf0\xe0\xa9\x68\ +\xba\xf4\x7a\x78\x45\x72\x58\x08\x75\x98\x2a\xc8\x80\x10\x12\x39\ +\x82\x8a\xe2\x7d\xf4\x14\x70\xa5\x65\xd4\xcc\x19\xd3\xe7\x48\x12\ +\x48\xa7\x48\x92\x4e\x3a\x7c\xaf\xbd\xf6\xda\x7b\x58\xc1\x4f\x02\ +\x7c\x4e\x39\x6b\xcd\x1c\x1e\x36\x3b\xec\x67\x20\x64\xfb\x5e\x78\ +\xe2\x08\x39\x85\x66\xc0\xea\x23\x6c\xd9\x22\x81\x27\x79\x71\xd6\ +\x72\xe1\xa2\x45\xd4\xa6\x75\x6b\x84\xa9\xd5\x84\xed\xd6\x8f\x81\ +\xbb\xf2\x80\xd6\xc2\xb7\x1c\xbe\xeb\x00\xe7\x7b\x1e\x62\x50\xfb\ +\xf6\xac\xac\xcc\x34\x98\x88\x53\xbb\xf6\xec\x3e\x98\x79\x29\x93\ +\xc1\xb5\xc9\xf1\x7d\xc8\x25\x19\xee\xb1\xc8\x95\x9f\xdf\xb6\xb1\ +\xb7\x2c\x01\x7c\x67\xdf\x7c\x93\x80\xa5\x49\xb3\xe6\x1d\x46\xbe\ +\xff\x7e\x4d\x74\xc5\x90\x53\x53\x95\x50\xc9\xec\x0b\x30\x09\x78\ +\x38\x93\x1d\x34\x6e\x36\xe1\xf7\x04\x09\xbc\x6e\xf7\x27\xd3\xa7\ +\x4f\xfd\x4a\x6e\xa8\xa4\x23\x80\xbf\xe6\xf0\x8d\x41\x9d\xbf\x53\ +\xad\x5a\xb5\x78\xce\x5f\x80\x0f\x00\x78\x95\x0b\x87\x0b\x03\x2c\ +\x28\x46\x85\x33\x40\xf0\xf4\x2f\x22\x8d\x3b\x4f\x4c\x3e\x6d\xd8\ +\xb0\x41\xce\xf4\xe9\x89\xc0\x60\x33\xb1\x19\x6c\x16\xa9\xb1\xf8\ +\x2e\xb7\xd9\xe1\x3b\x9b\x12\x7e\xed\x01\x09\x5c\xf0\xec\x53\xcf\ +\x27\x24\x9c\xd9\xb1\x7d\xc7\xc1\x74\x5c\xfa\xf6\x7b\x65\x68\x34\ +\x5b\x23\x73\x86\x26\x99\x6a\xbe\x5f\x01\xff\xd6\x3f\x31\x44\x1d\ +\x46\xf1\xdd\x58\x22\xc4\xbb\xe1\xef\xbf\x56\x0c\x79\x73\xa8\xe3\ +\xad\xb7\x86\xd6\x6f\xf7\xe0\x03\xf2\x97\xc9\x21\xa2\xa4\x13\xc2\ +\x43\xec\x60\x8a\x15\x5a\xb5\x4a\x15\x6e\x2c\x31\xa0\xb1\xe4\x35\ +\xcc\x1e\x84\x60\xf6\x60\x82\xb6\xea\xdd\x10\xde\x04\x33\x18\x2b\ +\x7f\x1c\xf6\xf7\x7b\x18\xe3\xeb\x32\xc6\x67\xa0\x84\xec\xd8\xb1\ +\x83\xb0\xd3\x37\x26\x9c\x2a\xf3\x04\x34\xe7\x23\x84\x59\xc0\xb6\ +\xed\xb4\x14\xe1\x1b\x34\x85\x30\x37\x7c\xa9\x7b\x27\xc9\x56\x2d\ +\xd9\x32\xae\x23\x08\x03\x9e\x72\x16\x17\xf6\x02\xfa\x07\x25\xdb\ +\x44\x09\xb2\x02\xb8\x2a\xb9\x0a\x09\x72\x94\x52\xef\x35\xed\xd0\ +\xca\x1a\xe0\x96\xdf\x84\x09\xc2\xe8\x16\xd1\x69\x82\x98\xda\x75\ +\xea\xb6\x7e\xe5\xe5\x57\x9a\x75\xed\xda\x59\xac\x24\xb1\xb2\x88\ +\xc4\xec\x01\xc2\x48\x38\x59\xe7\x04\x58\x00\x97\x0b\x28\xdc\x58\ +\xc2\x0d\x18\x8b\x67\x4c\x9b\xfa\x11\xaf\x12\xfc\x19\xeb\x2b\xaf\ +\xbc\x32\x1a\x2b\xbf\x8d\x1e\x7c\xa8\x7c\x61\x3e\xd0\x47\x47\xd8\ +\x1b\x81\x6a\xd6\xae\x41\x11\x58\xfd\xf6\x5c\x7b\x5e\x89\x3a\x35\ +\x1d\xaa\xff\x02\x6d\xd9\xb2\x85\x37\x6f\x64\x8d\x23\x81\x95\x6a\ +\x9d\x4d\x05\x6b\x10\x59\xc3\x67\x67\x36\xe5\x34\x2e\x7c\xfe\x18\ +\x76\x01\xb9\x28\x01\x95\x77\xe5\xb5\x43\xde\x25\xb0\x52\x54\x92\ +\x5c\xcb\xb9\x01\x85\xaf\x01\x0a\xbf\xb1\x04\x22\x1a\x4b\x7e\x9a\ +\xf0\xc9\x04\x07\xb4\xe5\x7d\x7d\xfb\xf6\x36\xb0\xda\x77\x68\xd1\ +\x01\x68\xc4\x85\x13\x2e\xb6\x88\x32\x6d\x3c\x48\xc0\x8d\x25\xef\ +\x8f\x1c\xfd\x78\x8f\x9e\xbd\xc3\xbf\x59\xb2\x78\x32\x32\x87\x83\ +\xa1\xc6\x9b\xb2\xda\x47\x88\xc9\xf1\x3b\x87\x55\x02\xb8\x15\x2b\ +\x56\xd0\xd8\xb1\x63\xb1\xe3\x59\x5d\x24\x6f\x82\x44\x5e\xdf\x2e\ +\x72\xf2\x22\xdf\xce\x75\x08\xc2\xc5\xab\x5b\x12\x97\x41\x97\x5b\ +\xe5\xf0\xcf\xac\x05\xb2\x60\x3e\x8e\xfc\xf2\xcb\x2f\x3b\xf1\x2c\ +\x43\xce\xfc\xcb\xbb\x2a\x0a\xa8\x12\x58\x29\xae\x2b\x88\xe7\x9a\ +\x47\xc8\x25\x01\x6e\x7d\x12\xf8\x3e\x48\x69\xf7\xae\x9d\xbf\x4f\ +\x9b\x3e\xcd\x81\x4e\x9c\xb6\xa8\x0d\x18\x65\xaf\x1e\xa7\x5c\x65\ +\x88\x0f\x15\x4b\xd8\x5b\x5f\xb4\x9d\xbf\x87\xc6\x92\x51\x63\xc6\ +\x3e\xd8\xbd\x47\xcf\x46\xe5\xcb\x97\x0b\x87\x76\xe0\x4e\x5d\x06\ +\x8b\x57\xb2\xb8\xcf\x9a\x35\x4b\x48\xe3\xa6\x8d\xd8\x97\x10\xab\ +\x5a\xac\x7e\x08\x56\xbe\xf8\xcc\xc4\x89\x13\x65\x7a\x56\x26\x82\ +\x64\x67\xae\x1b\x26\xe1\x38\x4a\xb1\xbb\xa0\xda\xd9\x4b\xcf\x56\ +\xd5\xb5\x42\x00\x75\x25\x3b\x14\x70\xd5\x33\x83\xd4\x73\x83\x3c\ +\x6a\x8f\xdf\x1d\x72\x6c\x9c\xef\xca\x9c\x8c\xd5\x35\x73\x10\x05\ +\x89\x81\x44\x57\xa9\x1a\xdf\x10\xfb\x5b\xb7\x1f\xf4\xda\x2b\x26\ +\x00\xca\x2b\x93\x33\x1f\x0c\x8a\x58\xd5\x47\x8e\x1c\x25\x5c\xdc\ +\xa6\x25\xc2\xbb\x0f\xc6\x8e\x17\xad\x55\xf7\xdf\x77\x2f\xa7\x67\ +\x19\x40\x61\x46\x3e\xfd\xf4\x53\x5a\xbb\xf6\x47\xd4\xed\x1b\x90\ +\xd1\x64\x90\x6a\x1f\x77\xb1\xf2\x39\x0d\xcb\xa1\x9f\x68\x5f\xc3\ +\x76\x37\x12\x74\x19\xde\x39\x31\xee\xbe\x02\xcd\xae\x9c\x8e\xcd\ +\x94\xa2\x12\x40\x05\x9d\xe5\x4a\x80\xab\xa4\xd7\x09\x29\xc0\xdf\ +\x51\xc7\xc6\xa9\x9a\x80\x2f\x7b\x7e\xad\xe7\x07\x0f\xec\xdf\xb8\ +\x60\xfe\x3c\x07\xd4\x77\x07\xf4\x0b\x98\xd1\x39\xcb\x24\xd0\xea\ +\x06\x06\xe1\xb1\x8b\x79\x04\xa4\x4f\x19\xb0\xb7\x86\x0e\xa1\x71\ +\x1f\x7e\x0c\xb0\x7f\x46\xf2\xa8\x8e\xe8\xda\xf9\x18\x99\xb9\x3d\ +\x68\xe0\x6c\xd4\xb8\x21\x07\x63\x9a\xda\x87\xd8\x73\x45\x0a\x36\ +\xf1\x62\xa2\xd0\x0c\x5c\x12\x86\xf3\x26\x5b\xb2\x91\xee\x4d\x61\ +\xad\x60\xc3\x49\x2a\x8b\xe0\xd7\x9d\x96\x75\x78\x5d\x33\x46\x8e\ +\xba\xe5\x8b\x90\x82\x01\x57\x85\x74\xf7\x42\x38\x36\xee\xd6\x27\ +\x81\xf7\x4a\xcd\xa6\x47\xd0\x58\xb2\x70\xe1\x7c\x90\xc0\xd1\x79\ +\xd8\x5b\x43\xad\xbc\x5d\x1d\x08\x21\xfa\x09\x98\x47\xac\xee\xf7\ +\xef\xdf\xc7\x63\xeb\x62\x07\x8f\x21\x6f\x0c\xe2\x1d\x4b\xe8\xcf\ +\xbf\xfe\xa6\xcd\x1b\x37\x10\x06\x5b\xa9\x6e\xbd\xda\xe4\xd6\x32\ +\x71\x0e\xbb\x50\xfb\x5a\x1e\x20\x81\x3e\xf8\xe0\x03\xc2\x9e\xc0\ +\x6c\x52\x18\x74\x26\x12\x3b\x9b\xec\x7c\x66\x7c\xf5\xd5\x57\xf3\ +\x60\x42\x18\xfc\x14\xdd\xae\x5e\x99\x3a\xf0\x1d\x2c\x0a\xe8\x9e\ +\x7c\x40\xa7\xab\x01\xfc\x4e\x26\x80\x4a\x02\x16\x97\xaf\x8f\xc8\ +\x3b\xf6\x34\xa4\x45\x8b\x16\x7a\x1c\x4e\x57\x67\xd8\x7b\x7f\xb4\ +\x70\x09\x4d\x00\x32\x70\x0e\x5d\x8c\xa4\xed\xdd\xbb\x8f\x63\x7b\ +\x80\xec\x90\x3b\x96\x50\x6c\x5c\x29\x2a\x16\x13\x25\xaa\x6c\x6e\ +\x97\x24\x80\x83\x9b\x3f\x10\x4d\x24\x10\xce\x01\x40\x37\xcf\x7f\ +\xc4\x01\x19\x70\xe6\x79\xe5\x33\xf8\x4c\x82\x0c\xec\xec\x39\x03\ +\x24\x39\xab\xa5\x62\x93\x95\xa4\x4c\xae\xaf\xb3\x95\x0a\x61\x75\ +\xdf\xb9\x04\x50\xc7\xd1\x54\xc7\x50\x21\x81\xf1\xf4\xa9\x53\xc6\ +\xaf\x17\x2d\x58\xe6\x74\xd8\x3b\x62\x9b\xba\x40\xb4\x71\x31\x09\ +\x84\xb3\xc7\xaa\x00\x39\x7e\x84\x6f\xbb\x78\x25\x0b\x90\x5f\x1e\ +\xd8\x9f\xbe\xf8\xf2\x2b\x7e\x26\x2a\x6f\xc9\x97\xb8\x99\xd3\xc9\ +\xe0\xa2\x41\xe1\x82\x28\xf0\xbc\xf0\xc2\x0b\xbc\xbf\x01\x77\xdb\ +\xf0\x8a\x67\xf5\xcf\xda\x25\x6b\xd2\xa4\x49\xd3\x00\xfe\x19\x5d\ +\x2e\x3e\x55\x05\x5f\x55\xef\xd7\x71\x14\xec\xdd\xb3\x83\x65\x39\ +\x57\x6d\xd9\xd2\xe5\x09\x8a\x43\x62\x21\x25\x11\xaa\xb5\xba\xbf\ +\xcd\x03\x0d\x3f\x18\x3d\x92\x24\x09\xdc\x5a\x0a\x96\x13\x6d\x3b\ +\x77\xed\xa2\x1c\x00\xc9\xe7\xf9\x34\x6a\xd8\x90\x66\xcc\x98\x45\ +\xeb\x61\x0a\x92\x12\x13\x38\xc5\x0b\x9b\x2f\xc2\x3d\xb6\xfb\x6c\ +\x16\x78\x13\x47\xee\xb8\x61\x22\x30\x01\x1c\xd3\xa6\x4d\xfb\x0a\ +\x1e\xff\x09\xad\x0a\x77\x51\x96\x61\x25\xf8\x6a\x6c\x7e\xfd\xa0\ +\xdf\x25\x80\x4a\x02\x35\x6d\x1c\xae\x25\x89\xe2\xb0\xca\xbb\xa0\ +\x89\xe3\x21\x14\x8b\x4c\x41\xc1\xa1\x3c\x61\xc4\xb1\x3e\x93\x80\ +\xc1\xe4\xe1\x4c\x01\xe4\xce\x9d\x3b\xf8\x2e\x32\x7a\xcd\x9b\x35\ +\x43\x76\x6f\x39\x7d\xb7\xfa\x7b\x3a\x7a\xf8\x90\x00\x7b\xfe\xfc\ +\xf9\x5c\x62\x66\x07\x92\x49\xc3\xc0\xf3\x73\x17\x52\xc1\x33\x91\ +\xd0\x39\xa4\xdb\xc6\x35\x45\x29\xc4\xfc\x6b\x7b\xfb\xdd\x35\x01\ +\xbe\xcd\x81\x51\xdd\xac\x42\x0a\x3a\x85\x1f\x42\x17\xcf\x23\x50\ +\xf9\x06\xa8\x6b\xe1\xb0\x0d\x19\x32\x14\x89\x9d\x31\xdc\x71\x2c\ +\x1c\x43\x7f\xb1\x8f\x6f\x18\xd5\xae\x5d\x07\x24\xd8\x29\x86\x35\ +\x7e\xfd\xed\x37\x9c\x88\xd6\x91\xb7\xad\xa1\x79\xf3\x17\x50\xd7\ +\xce\x8f\xca\xed\x5b\x29\x5b\xdb\x08\x9b\x73\xf6\xd8\x06\x7f\x3e\ +\xc0\x3f\x2a\x9b\x2f\x64\xf3\xa5\xce\xd9\x73\x16\xd2\xde\x7e\x77\ +\x09\xa0\x9a\x01\x65\xa3\x0a\x6b\xcf\x9e\x3d\x07\xc0\x53\xef\x82\ +\x82\x0e\x13\x85\xc1\x67\xe0\xc4\x2a\xef\x3f\xe0\x65\x9a\xf4\xf9\ +\xa7\x42\x13\x88\xcb\x6a\x15\x29\x5e\x90\x05\xe6\x60\x27\x5d\x84\ +\x83\xf7\x23\x06\x38\xdb\xb6\x6d\x23\x12\x49\xb3\x31\xbd\xd3\x12\ +\x65\x5c\xfc\x59\x91\xe1\xf3\xe0\x42\xe7\xcd\x4a\x68\x83\xc3\x72\ +\xc5\x7f\x3e\xb8\x4d\xfc\x9f\x7b\x4e\x6f\xfb\xf6\xc7\xc3\x49\x3a\ +\x75\x4f\xb7\xd3\x01\x9a\xc6\x3b\xe1\x94\x4e\x3e\xab\xef\xe5\x97\ +\x5f\x1e\xd7\xb6\x6d\xdb\x2e\x48\xed\x8a\x44\x0d\x93\x80\x2f\x44\ +\x02\xa2\x4f\x7f\xc5\xf2\xa5\x84\x8d\x27\x38\x31\xc4\x49\x1f\xd9\ +\xd3\x27\xba\x8b\x6a\xd7\xaa\x4d\x7c\xd6\x4f\x52\x4a\xb2\x68\xd2\ +\xac\x8d\x06\xcf\x81\xfd\x5f\x42\x88\xb8\x1e\x04\xca\x62\x0d\xe0\ +\xc5\xe6\x98\xbf\xe2\xa0\xc6\x7d\xd2\xcb\xff\xf0\xf5\x56\x55\x7b\ +\xbf\xf0\xf2\xc7\x93\x47\xbc\xb4\xe2\x99\xf6\x95\xa3\x99\x52\xfa\ +\x8d\xb0\x59\xf8\xba\x4b\x80\x42\x00\x5f\xdf\x37\x80\x15\x1d\x89\ +\x72\xee\x97\x98\xdb\x6f\x27\x6b\xf9\x08\xfb\xd8\x56\x8b\x86\x0c\ +\x6c\x4b\x4b\x98\x91\xc3\xce\xe5\x65\x90\x11\x3c\x48\x4f\x3f\xdb\ +\x9d\x43\x39\x6d\xf0\xd2\x4c\x56\x4d\x13\xb0\x39\x28\x5d\xaa\x94\ +\x08\xef\x56\xa2\x16\x50\xb6\x6c\x19\x31\x8e\x76\xf2\xf4\x19\x9e\ +\xec\xfd\x07\xdf\xb3\x57\xf6\x14\x0c\xea\x59\xbf\x62\xff\x97\x06\ +\x8e\x72\x3b\x52\x4d\x64\xf4\x16\x1d\xde\xab\xe1\xb2\x47\xeb\x07\ +\x96\x94\x07\x38\xaa\x43\x2a\x77\x09\x50\x48\x4d\x23\x18\xd6\x28\ +\x8e\x53\xb9\xe7\xe0\xec\xc2\x16\x68\xe6\x60\x6f\x5f\x54\x00\x65\ +\xa3\xc6\x9c\x39\x73\x44\x49\xb7\x56\xed\x9a\x14\x18\x14\x28\x40\ +\x3f\x74\x70\x1f\xf5\x46\x5b\xd6\xbe\x7d\xfb\x09\x17\x93\x80\x45\ +\x14\x91\x6a\x41\x13\xe0\xd8\x57\xd1\x5b\xb0\x74\xd9\x32\xf1\x7d\ +\xe3\x3e\x18\x4d\x01\x81\x41\x15\xda\xb4\x7d\xe0\x1e\x56\xf3\xfd\ +\x9e\x6a\x52\x61\xf4\xfb\xef\x8c\x70\xdb\x4e\x5b\xec\xd9\x67\xc8\ +\x91\xbe\x87\xdc\xa9\x7f\x95\x7a\xa3\x5d\xee\xa2\x4e\xf5\xa8\x9c\ +\x1c\x52\x51\x07\x57\xef\x12\xe0\x5f\x6e\x16\x41\x71\xa7\x5c\xbf\ +\x7e\xfd\x16\x62\xc3\xc6\x3a\x00\x9f\x57\x3d\xdb\x69\x8e\xef\x85\ +\xd3\x36\x7a\xf4\x68\x3a\x70\xf0\x00\x35\x6c\x54\x1f\x79\x7f\xab\ +\xee\x94\x4e\x02\x09\xf6\xd3\x8b\x2f\xbd\x88\x4e\xdd\xcd\x84\x4b\ +\xb6\x79\xc3\xf6\x87\x88\x3c\x41\x7c\x7c\x55\x56\xfd\xe8\xf7\x5b\ +\x2a\x92\x42\x1f\x7d\x38\xce\x50\xba\x4c\xd9\x87\x06\xf5\x7f\xf2\ +\x91\x49\x5f\x4c\x1d\x6a\x0a\x2f\x6f\x71\x51\x0e\xd9\x53\xd6\x93\ +\xed\xfc\x0f\x28\xf0\x9f\xa4\xa0\x60\x4f\xf9\xd7\xdb\xd3\xe2\xa7\ +\x1a\x53\x65\x26\xe7\xed\x72\x94\xae\xf9\x76\x70\xf6\x54\xb5\x8f\ +\xed\x54\xe3\xd1\x4e\x3d\x15\xe7\xf1\x97\x02\x11\x64\x07\x0f\xef\ +\x3a\x22\x9c\x3e\x9c\xda\x2d\xee\x8d\x31\x83\xe7\x10\xfb\xf1\x78\ +\x64\x57\x25\x63\x21\x1c\xc4\x83\x20\x47\xff\x01\x03\x68\xf4\xa8\ +\x51\xec\xf8\xf1\xa8\xb6\x78\x3b\x14\x3e\x03\x5a\xce\x84\x9f\xb0\ +\x65\xeb\x56\x82\xd7\x4f\x1d\x3b\x74\xa4\xf1\xa3\x06\x53\xa0\xf1\ +\x42\x2b\x83\xc9\x40\x6e\x67\x2a\x59\x43\x2b\x90\xed\xdc\x2a\x22\ +\x4f\x02\x99\x18\x6a\xaf\x58\xfa\x71\x03\xda\xd2\x82\x54\x1b\x75\ +\x5e\xb3\x8b\x8e\xa9\x59\xbf\xbb\x1a\xe0\x1a\xc0\x57\x0f\x68\xc4\ +\x76\xf5\x0d\xb0\x03\xe6\x1c\x9c\xd5\x53\x0a\xb1\x3e\x83\xcf\x59\ +\x3b\xce\xd2\x09\x07\x6f\xd0\xa0\x41\x98\x1f\xcc\x46\x2d\xbf\x8e\ +\x3c\xd2\x8e\x9c\xa2\x35\xcb\xcd\x44\x90\xdb\xb2\x88\xac\xdf\xe9\ +\x53\x27\x69\xce\xdc\xb9\x00\x79\xa9\xec\xcd\x27\x33\x24\x14\x53\ +\x48\x4c\xac\x26\x8d\x1b\xf3\x84\x0e\x1c\xc8\xf9\x14\x98\x31\x0f\ +\xef\xfb\x81\x4c\x89\xe4\x75\x26\x90\xdb\x71\x92\x02\x62\xef\xa3\ +\x80\x98\x5a\x64\xf6\x07\x3b\x21\x01\x41\x04\xb3\x41\xd1\xdd\x1a\ +\x50\x67\x9d\x29\x30\xdd\xca\x5a\xc0\x78\x3b\x80\x2f\x1b\x37\x71\ +\x08\x55\xab\x8e\x1d\x3b\xce\x00\xf8\xd1\xd8\x23\x80\xed\x3d\x87\ +\x68\xbc\xd7\x90\x08\xf9\xd0\xe1\x23\x16\x5a\x9d\xba\xb5\x38\xe9\ +\xa3\x55\xf3\x1c\xdc\x46\x2e\xfb\xec\x21\x6e\x98\x88\xbc\x71\x6b\ +\x34\x85\x50\x54\xd1\x48\xd8\xfb\x6f\x69\xc6\xcc\xd9\xe2\x7d\x3f\ +\xcd\x1c\x20\x7a\x80\x3f\x50\x89\xee\x6b\xd9\x98\xba\xb7\xf8\x9b\ +\x4c\xae\xad\xe4\xcc\x9a\x49\xe4\xbe\x40\x5e\x17\x9c\x48\x6f\x3a\ +\x19\x28\x93\x02\x8a\xd6\x26\xff\xa8\xca\x14\x00\xa8\x43\x40\x02\ +\x33\xee\x65\x62\xa9\x8d\x32\x9c\x22\x08\x70\x57\x03\x5c\x3d\xf8\ +\x56\x09\x7e\xd7\xae\x5d\x3b\x20\xc9\xf3\x05\xc6\xb4\xc3\xb1\xa7\ +\x10\x03\xc8\x9e\x3e\xaf\x7c\x51\x8f\x47\x18\x08\x67\x2d\x80\x5b\ +\xb8\x84\xda\xcf\x15\xe0\x43\x1c\x82\x04\x4c\x08\x21\x59\xb0\xed\ +\x3c\x81\x33\x74\xe8\x50\x11\x2e\x9a\x35\x27\xf0\xfb\xef\x57\x71\ +\x61\x88\x3f\xc3\x3e\x81\x78\x16\x12\xec\x47\x0d\x22\xc7\x51\xd1\ +\x88\x6c\xa2\xd0\x24\x22\xc7\xaf\xe4\x4c\x19\x43\xe4\x49\x02\x51\ +\x33\x89\x20\x06\x6f\x2a\x66\x16\x31\xfe\xed\x67\x95\x13\x06\x14\ +\x15\x49\xf1\x2d\xab\x50\x19\x8e\x0a\x94\xfd\xf9\xee\x6a\x80\x6b\ +\x98\xce\x0d\x79\xea\xa9\xa7\x9e\xc5\x06\x0d\x1f\x02\xfc\x40\x8c\ +\x69\x31\x68\xac\xee\x19\x7c\xd1\xb2\xfd\xea\xab\xaf\x52\x64\xd1\ +\x22\xd8\x8f\x38\x3e\x6f\x8c\xca\x0e\xc1\x5d\xd7\xca\x85\xbb\xd8\ +\xcd\x5b\x3c\x1f\x39\x62\x24\xc1\x7c\x30\xe1\x44\x91\x48\xb4\x80\ +\xa3\xef\x1e\xe5\xe4\xf3\x38\xde\xc6\x8b\xcf\x8b\x4d\x1d\xfc\x4f\ +\x3c\x4a\xc6\xec\xbf\xc9\x13\x76\x91\x4c\x96\x44\x32\x1a\x8f\x23\ +\xea\xdb\x4b\x9e\xac\x79\x44\xde\x14\x32\x79\xd3\xc8\x62\x3f\x47\ +\x01\x19\xc7\xc8\x6c\xc4\x23\x80\x6f\xf4\x13\x5a\xc0\xf0\x64\x4b\ +\x6a\x77\x3b\x1c\x94\x65\xbc\x55\xc1\x97\xdd\x3f\xbd\x7b\xf7\xee\ +\x8f\xad\x79\xde\x81\xda\xb7\x62\x4c\x4b\x80\x9f\x98\x98\x28\x4a\ +\xba\x38\x54\x59\xd8\xfc\x12\x71\xb1\x74\x4f\xe5\x4a\xb2\x7d\x4b\ +\x02\x2f\x49\x20\x24\xc7\xc6\x07\x5c\x65\x13\x86\x3f\x08\x91\x83\ +\x1c\xe8\xd0\x76\xe9\xb0\x32\x91\x0e\x63\x3f\xe3\xfd\xd8\xa1\x74\ +\xd7\xd8\x71\x1f\xba\xed\x3b\x1f\x26\x4f\xca\x3a\x72\x04\xda\xc8\ +\x9d\x83\x49\x1f\xc7\x59\x00\xeb\x20\x93\x3f\x40\x36\x9d\x23\xca\ +\xfd\x81\x8c\xce\xf3\x64\x41\x25\xd8\x6a\x4b\x95\xa5\x29\xf6\x07\ +\x84\x34\xad\x49\x4f\x3c\x52\x9f\x2a\x28\x5a\x40\xf5\x05\xee\x16\ +\x83\xd4\xec\x9e\x1e\x7c\xb4\x64\xbf\x89\x3d\x79\x7b\x21\xc1\x63\ +\xc0\x34\x0e\x83\xcf\xb3\x74\x9c\xc8\x11\x32\x6c\xd8\x30\xaa\x50\ +\xb1\x3c\x27\x79\x74\xed\x5b\xb9\xda\x5d\x23\x82\x3d\x97\x07\x32\ +\x45\x58\x87\x53\x4a\x08\xa1\x23\x9b\x0e\x06\x9c\xef\x5c\xe3\xe7\ +\x7a\xc0\x41\x6c\xdf\xb6\x43\xf3\xd4\xad\x6b\xc7\x07\xdc\xdf\x24\ +\xde\x16\xe9\x8e\x00\x62\x01\xc0\xd6\x4f\x08\x08\xc0\xe0\x13\xb9\ +\x6d\x44\x9e\x34\x3c\x3b\x8f\xa5\x9e\x0b\x44\xe1\x5f\xd8\x82\x3c\ +\x94\x0d\x88\xed\x4e\xbc\x6f\x17\x82\xcc\x22\x1d\x69\xff\x2e\x75\ +\x4f\xc5\x5f\xa3\xab\x17\x38\xd5\xee\xdd\x9b\x29\xa6\xf7\xde\x7b\ +\xef\x96\x6c\x03\x47\x82\x67\x6c\xf3\xe6\xcd\x9f\x42\xa8\x67\x40\ +\x11\x87\xc1\xe7\x2e\x5f\x5e\xf5\x62\xf5\xbf\xfd\xf6\xdb\x54\x25\ +\xbe\x32\xec\x78\x69\x09\xb4\x0e\x74\xbb\xd4\x06\x3c\xa5\x2b\xc0\ +\x6f\xd1\xa2\x05\xaf\x7e\xee\xff\xe3\x06\x50\xbe\x73\xd6\x8f\x09\ +\x70\x1c\xbd\x7c\x6b\xb5\x52\xae\x6d\xc5\x70\x6a\xd1\xb4\xaa\xab\ +\x64\x2e\xc0\xf6\x32\x2d\xf5\x86\x5b\x8b\x24\x4d\x0e\x10\x21\x05\ +\x92\xe5\xd1\x3e\xe0\x26\x57\x10\x40\xb7\xfe\xf7\xee\xf0\x01\x56\ +\x8a\x6c\x51\x85\x22\x17\xfe\x41\x1b\x7c\x95\x86\x71\x3c\x0c\x41\ +\x0c\x37\x13\x03\xf3\x2d\xa6\xf6\xf9\x08\xd6\x30\xcc\xe5\x7f\x86\ +\x6d\x59\xda\x70\x6a\x57\x6e\xc9\x8e\x04\x0f\xaf\x5a\x2e\xcd\x72\ +\x92\x87\x9d\x3d\xce\xdf\x4b\xa0\xe5\xea\x97\x04\x90\xa4\x60\xa7\ +\x4f\xd4\xf5\x71\x20\x13\xc9\xea\xa0\x6c\xe4\x44\xc2\x28\x79\xca\ +\x94\x29\x4b\xb5\xd5\xe9\x5c\xfa\x26\x75\x6e\x72\x0f\x55\x62\x5c\ +\x0d\x00\xd9\x64\x50\xda\x8e\xf8\x79\x36\x80\xbf\x08\x71\xb1\xcd\ +\xe7\xa7\x2e\xf2\x18\xf1\x56\x28\x3e\xef\xc1\x5d\xab\x04\x48\xa9\ +\x5c\x8e\x1e\x9d\xd2\x9f\x0e\xf4\x9b\x44\x0b\x65\xb1\x48\xbe\x2b\ +\x4b\xc6\xba\x23\x64\xbd\x77\xb6\x06\x28\x38\xaf\x5f\x14\xe0\xcf\ +\xc0\xca\x6f\xc9\xe0\x8b\x56\x2e\xa3\x91\x57\x3c\xa7\x77\x79\x10\ +\x83\xfb\xf5\x45\xef\x5e\x4c\x4c\xb4\x4f\xb5\xaf\x5f\xfd\xbc\x1f\ +\x2f\x9b\x8e\xc9\x93\x27\xb3\x06\xe1\x95\xcf\x5e\x3e\xd7\xf6\xf9\ +\x33\x99\xe3\xc7\x8f\x9f\x81\xf0\x30\x91\x09\xb0\x60\x00\x75\xa9\ +\x51\x92\x1a\x65\x3a\x99\x92\x3a\x97\x5d\x77\x37\x32\x29\xb2\x70\ +\xb7\x6b\x9f\xb1\x5c\xce\x50\x78\x43\x21\xfc\xcc\x00\x51\x50\x2e\ +\x13\x43\x2d\x3a\x34\xa4\x32\x47\x4f\xd3\xce\xb3\x29\xe4\xd0\xaf\ +\x03\xfd\x9d\xb5\x01\x84\x6e\x24\x26\xe6\x5b\x25\xb5\x5b\xaa\x54\ +\xa9\x18\xcc\xe0\xf1\xf6\x6f\x35\xd0\xc0\xc9\x85\x1c\xfe\x2c\xc7\ +\xf8\x62\xfc\x0a\xc7\xa9\x13\x76\x18\xe5\xd4\x2e\x3c\xfe\xc8\x7c\ +\xd5\xbe\x5c\xfd\xbc\xf2\xd1\x1d\xcc\xe0\xf3\x77\x71\xd4\xc0\xef\ +\x33\x09\x38\x77\x60\xff\xf2\xcb\x2f\xe7\xe0\xce\xb6\x39\x6d\x70\ +\x3b\xaa\x1e\x1b\x4a\x4d\x2e\xa4\x82\x89\x81\x79\x76\x9e\x7c\x74\ +\xa1\x5a\xb5\xc9\x3b\x0f\x83\xcc\x60\x9b\x20\x01\x79\xfa\xcb\x18\ +\x88\x9b\x43\x17\xf1\x2b\x52\x36\x8e\x1e\x9a\xf2\x1a\xd5\x5b\xbb\ +\x91\x86\xbd\x31\x87\x7e\xc7\x3f\x2d\x97\x77\x8e\xe7\x2d\x0f\xd4\ +\x33\x02\x6f\xa4\x46\x30\xdf\x64\xf0\xfd\x21\x81\x68\xd6\x2c\x8b\ +\x43\x18\x66\x01\xfc\x0a\x32\xb5\x0b\xf0\x79\x5b\x79\x01\x18\xb6\ +\x3d\x23\xb4\x60\x51\x13\x0c\x6b\x40\x4b\x28\x6a\xff\xbf\x81\xc7\ +\x5d\x8c\x8a\x9b\xcd\x16\x01\x3e\xfc\x07\xae\xe9\xb3\xcd\x97\x8d\ +\x1d\x6e\xd8\xfc\x05\x68\xe1\x3e\xae\x35\x74\x64\x8d\x5f\x43\xeb\ +\xca\x45\x53\xdd\xe2\x11\xd4\xdc\x28\xce\xbc\x04\x23\x9d\x44\x81\ +\x5a\x02\xd7\x04\x68\xcc\x76\xf6\x98\x81\x8e\x19\x8f\x18\x78\x06\ +\xdd\x02\x31\x42\x82\xf3\x1c\x44\x52\x7d\x06\xa9\xe6\xcc\x79\x4e\ +\x64\x44\x20\x45\x77\x6d\x4f\xd3\x5a\x35\xa7\x75\xe7\x92\xe9\x97\ +\x9d\xe7\x69\xdd\x9e\xe3\x94\x70\x26\x91\x32\xb7\x6c\xd1\xcd\xf4\ +\x43\x6e\xd4\xd9\x08\xe6\x1b\x09\xbe\xaf\xbc\x3e\x40\xaf\x8a\x5d\ +\xb8\x66\xe0\x1e\x87\xfe\x7d\xb6\xf7\x0c\x3e\xf7\xde\x0b\x7b\x8d\ +\x59\x78\xc2\x8e\xa2\xd4\xb4\x79\x13\x3e\xa0\x49\x8b\xf1\x05\xf0\ +\xfc\xda\xa7\xda\xe7\x92\x0f\x1a\x36\xd9\x47\x60\xc0\x59\xed\xf3\ +\x9d\x55\xbf\x17\x07\x62\x2f\x85\x29\xd9\xaf\x3b\x7f\x3f\x17\x62\ +\x79\x7e\x36\x7d\x31\xa6\x0b\xb9\x2b\x16\xa7\x7b\xf1\x15\xe2\x32\ +\x33\xc8\xb2\xe7\x08\x60\xbb\x4d\x78\xe9\x15\x44\x10\xcf\x19\x1a\ +\x8f\xcc\xf5\x72\x1e\x48\x59\xfd\x06\x16\xbc\x69\xb2\x42\x4c\x4c\ +\x18\xf1\xcc\x50\x94\xa8\x65\xd9\x0c\x6a\x59\x37\x8d\x5c\x29\xe7\ +\x68\x1f\xac\xdb\x2f\x5f\x06\xd3\xb4\x95\xbf\x51\x8a\x9c\x1d\xb8\ +\x51\xdb\xe2\x73\x18\x78\x33\x8a\x3a\xfe\x0c\x3e\x1a\x38\xea\x22\ +\xb7\x3f\x15\xa1\x5e\x14\x06\x2e\xe4\xce\x1b\x1c\x96\x09\x95\x8d\ +\xd0\x0c\x69\xda\xa5\xd4\xbc\x79\x53\x2e\xe7\x4a\xd0\xf3\x55\xfb\ +\x88\xf3\x39\xa7\xcf\x13\x3e\x9c\xe8\x61\x55\xcf\xe0\x33\x91\xc4\ +\xf7\xe1\x3c\xbe\x9f\x70\x74\xca\x2f\xda\xf1\xec\x49\x9a\xf3\xe7\ +\xd2\xc8\x18\x09\x29\x3e\xf4\x11\x7a\xa2\x41\x79\x6a\xc1\xd5\xe3\ +\xc8\x22\x44\xc1\xfe\x79\x5a\xc0\x9f\xc3\x41\x88\x7f\xa0\x06\x28\ +\xe8\x6b\x80\x88\xbc\x40\x90\x10\xa1\x05\x3c\xae\xbc\x10\xd0\x05\ +\xf1\xba\xd8\x54\x68\x9f\x35\x40\xcc\xda\x5d\x23\x88\x07\x30\xe7\ +\x66\xd7\xa1\x94\xfd\x87\xe8\xdc\xe1\x9c\x2d\xfd\x67\x50\xaf\x5d\ +\xa7\x29\x59\x0e\x87\xaa\xa3\xde\xb7\x91\x13\x58\x70\x6a\x17\x39\ +\xfd\x16\x68\xe2\x98\x0a\x29\x82\x94\xac\x9c\x95\xe7\x91\x2b\x06\ +\x8b\x47\xb0\xc4\xa6\x0c\x2d\x5a\x36\xe3\x14\x6f\xbe\x6a\x5f\x3e\ +\xcb\x81\x7a\x67\x2f\x7f\xcc\x98\x31\x84\xae\x20\xed\xc0\x04\x27\ +\xab\x7d\x8e\xf7\xd9\x91\xdc\x39\x63\xc6\x8c\xef\x65\x23\xa7\x6c\ +\xe1\x96\x13\x47\x92\x9c\x7f\x1f\xa1\xf3\x45\x03\xc9\x5a\x22\x9c\ +\xca\x80\x5b\x06\x1b\xde\xb5\x03\x0a\xb7\x57\x88\xf0\x0f\xbc\x46\ +\xcd\xdb\xe7\xd7\x66\x7d\x3a\x8d\xc9\xa1\xf9\x06\x06\x3c\x96\xab\ +\x9e\x7f\x26\x9d\x73\x89\x37\x0c\xcc\x0a\xff\x7e\x64\xcf\x2a\x42\ +\x19\x27\xb6\x91\xd9\x4d\x25\xee\xad\x44\xcd\x8e\x26\xd2\x1f\x67\ +\x10\xa8\xa8\x2d\xe4\x85\xe5\x1c\x32\x01\x6e\x78\x51\xe7\xc9\x27\ +\x9f\x7c\x08\x2a\xff\x53\xac\xfe\x10\x99\xdd\xc3\xca\xe5\x91\x6b\ +\x61\xaf\xb1\x4a\x09\x2d\x58\xd8\x56\xb5\xa9\x3c\x82\x4d\x37\xaa\ +\xa5\x84\x7a\x3c\x92\x6d\xb3\x01\x6c\x97\xc8\xef\xa3\x39\x44\xe6\ +\xfd\x19\x78\x26\x13\x87\x8f\xc7\x3f\xfc\xf0\xc3\x05\x4a\x0b\x77\ +\xba\xb2\x8b\xa6\x34\x51\xb4\xfd\x04\x5d\x08\xb2\x92\x33\x36\x82\ +\x62\xc0\x49\x2b\xb2\xc8\x06\x17\x3e\x01\x11\xa0\x66\xdb\x40\x06\ +\xa3\x00\x17\x0f\x54\xdb\xaf\x81\x6e\xcc\x13\xa3\x3e\x2c\xe4\x9b\ +\xc9\x08\x9f\x20\x84\x28\x68\x18\x7c\x89\xe6\x94\xf0\xe7\x3b\xe4\ +\xb1\xbb\x88\x2f\xab\x99\xa2\x9b\x57\xa0\x7b\x11\x29\xac\x3b\x9e\ +\x44\x36\xa5\x94\x5c\x28\x24\x60\x02\xdc\xd0\xd4\x6e\xaf\x5e\xbd\ +\xba\xa1\x71\x73\x2c\x56\x7e\x00\xb6\x5a\x61\xf0\xc5\xca\x45\xbf\ +\x9d\xb0\xd3\x98\xb1\x63\x8f\x9f\xc1\xe7\xf7\xae\x18\xe3\xe3\x3d\ +\xa8\x79\x06\xdf\x29\xa6\x77\x1e\x7c\xf0\x41\x6e\x0a\x91\xdb\xa6\ +\x73\xac\xcf\xdf\x99\x88\xd5\x33\x0d\xda\x85\xc1\x67\x91\xd3\x3b\ +\x59\xaa\xbd\xd5\x04\x98\x93\x7b\xe7\x69\x4a\x58\xb1\x9d\x76\xff\ +\xb2\x97\x0e\x82\xca\x76\x88\x19\x36\x3e\x20\x23\x13\x90\x6b\xf6\ +\xdf\xa2\x95\x78\x8c\x06\x1f\x24\xf0\x93\xcf\xe5\x33\xf9\xda\x48\ +\x86\xa0\xde\x44\xe6\x66\x94\xb2\xad\x0f\xb9\x6d\xe9\xba\x45\x23\ +\xbe\x33\xb2\x49\x79\xba\x3f\x3d\x9b\xfe\x3e\x98\x40\x59\x0a\x09\ +\xe8\xdf\x26\x81\xf9\x46\xa4\x76\x65\x2d\x1f\x13\x36\x7d\x11\xdf\ +\xbf\x8e\x38\xdf\x8c\x0d\x19\x58\xed\x03\x28\x71\x44\x9a\xe8\xb9\ +\x9f\x3e\x7d\x3a\xc2\xbe\x43\x0c\x3e\x93\x48\xae\xf0\x7c\xd4\x3e\ +\xc4\x66\x13\x9a\x03\xc5\x22\x42\xa9\x58\x82\xcf\x84\xe2\xd0\x91\ +\x49\x90\x89\xa4\xd1\x74\x7c\x86\x57\x3d\x8b\x04\x3f\x53\x37\xbc\ +\xa1\x1c\x93\x7b\xf9\xa4\x74\x70\x29\x2b\x09\x4d\xc5\xd3\x7f\x17\ +\x7f\x36\xa4\x64\x24\x45\x0d\x7f\x8c\xda\x01\xd8\x28\x36\x07\x7e\ +\xfe\x97\xb3\x85\x16\x1d\x4c\xda\x29\xb0\x6c\x0e\x44\x04\xe0\x95\ +\xfa\xc5\x03\xf1\x6b\x0b\x92\x96\xa4\xcc\xfd\x03\xc9\x9d\x9b\x20\ +\x7c\x08\x35\x72\x08\x21\x2a\xfd\xfa\x43\x34\x1f\xfe\x47\xef\xb9\ +\xeb\x69\x7f\x61\x9e\xad\x6c\x2e\x6c\xf0\xa5\xda\x47\x6a\x77\x10\ +\xc0\xef\x07\x87\xcf\x88\x61\x0b\x06\x9f\x43\x33\xde\x67\x87\xed\ +\xb4\x08\xd9\x4e\x9f\x39\x4d\xcd\x5a\x34\x65\x5f\x40\x57\xd8\xf1\ +\xad\xf6\x6d\x10\xcc\xf1\xf1\xaa\x17\x04\xc0\xc5\x9a\x80\x41\x67\ +\xb5\xcf\x9f\x75\xc0\x19\x9c\x05\x0d\x70\x4e\x01\x3f\x4b\x37\xa9\ +\xeb\xf1\x41\x00\xb7\xb2\x9d\x6d\x3a\x24\x94\x05\xb6\x39\xfd\xb9\ +\xc9\x94\xd8\xaf\x0d\x35\x6e\x57\x97\x1a\x82\x20\xe6\xe0\x30\xbc\ +\x51\x04\xa2\x5f\xe9\x9a\xfa\x07\x09\xa4\x0f\xa0\xb1\xa4\x11\x51\ +\xc0\x63\xe4\x4c\xfd\x11\x0e\xe0\x31\x38\x87\x4a\xbc\xa8\x93\x20\ +\xa2\xe2\x2f\xb6\xa5\x79\x21\x7e\xd4\xf7\x8b\xdf\x68\x47\x61\x9d\ +\xad\x6c\xbe\x11\xe5\x5c\x54\xec\x46\xc0\x31\x7b\xa2\x71\xe3\xc6\ +\x32\xb5\xcb\x1e\x3a\xc7\xf7\xbc\xf2\x45\xc8\x96\x8c\x96\xec\xa6\ +\xcd\x1a\xf3\x2a\xbe\x62\x61\x47\xbe\xe6\x4d\x15\xe1\x47\xd0\x4b\ +\x2f\xbd\x44\xb8\xe4\x7e\xfb\xf2\xc0\x44\xf7\x7c\x5c\x68\x07\xff\ +\x47\x19\xda\x54\x36\x4f\xf6\x39\xa0\xe9\x96\x1a\x40\x23\x4b\x10\ +\x24\x58\x6b\xf0\x08\x83\x44\x4c\xf9\x99\x7e\xfd\x71\x0f\x1d\x1e\ +\xf7\x2c\x3d\x06\x90\x83\xcd\x00\x18\xb9\x26\xfd\x2a\x16\xf9\x01\ +\x37\x2f\x2f\x49\x02\x73\x34\xc0\xef\x40\x64\x2a\x46\xe6\xf0\x8e\ +\xe4\xef\x48\x27\x7b\xe2\x5a\x35\x25\x28\x22\x0b\x27\xa8\x97\xed\ +\x12\x21\x67\xe4\xd3\xcd\x69\x8e\xbf\x95\xfa\x7d\xfc\x23\x6d\x28\ +\x8c\xb3\x95\xd9\x07\x28\x4c\x9b\x1f\x36\x64\xc8\x90\x89\xd8\x83\ +\xa7\x13\xc0\x92\xe0\x33\x40\xdc\xae\x2d\xee\x9f\x7c\xf2\x09\x40\ +\xcb\x14\x7b\xe8\x8b\xb1\xad\xdc\xfc\x53\xbb\xf2\x19\x56\xba\x98\ +\xf4\xc5\xa6\x8e\x9c\x2a\x96\xab\x9f\xe3\x7c\x0e\xf9\xbc\x6b\xd6\ +\xac\x59\x86\x5d\xb3\xb7\x6b\x36\x5f\xbf\x79\x72\x8e\xb2\x75\x7a\ +\x7e\xe3\xe6\x2e\xe5\xb4\x74\x21\xfa\xcd\x98\x2e\x65\x93\xfd\xc8\ +\x39\xba\xd8\xb8\x12\x55\x73\x39\xa0\xe9\xcd\x9a\xda\xe7\xbb\x51\ +\x4b\x14\x69\x5a\xc0\x4b\x26\xfc\x1c\x0b\x46\x1c\xc0\x07\xaa\x8a\ +\x37\x4d\x81\xd5\x70\x77\x92\xd7\x7e\x44\xae\x7a\x61\x32\x02\xa2\ +\xb5\x94\x32\xb3\xd0\x03\xb6\xe6\x90\x5f\xcd\x92\xd4\xbe\x04\x26\ +\xd4\xfe\x3c\x4c\xe7\x7d\x91\xf6\x7a\x0a\x4a\xe6\x42\xaa\xe8\xf1\ +\x54\x6e\x11\xac\xce\xaf\x00\x7e\x33\x38\x7d\xbc\x09\x03\x83\xcf\ +\x20\xe9\xc1\x17\x3d\x7a\x0d\x90\xde\x85\x17\x7f\xc5\xd4\xae\x6c\ +\xec\xe0\xd9\x7e\x9c\xdc\xc9\x8e\x10\x83\xcf\xe4\xc3\x33\x31\xeb\ +\xc7\xaa\x9f\x73\x08\xbf\x63\xd7\xec\xcd\x9a\xda\x4f\x52\x76\xcf\ +\xf4\x75\x6c\x8a\x24\x31\x49\x62\xe4\x77\x5c\xbe\xb2\xd9\x83\x73\ +\xcf\x29\x72\x2f\xdf\x44\x3f\x77\x69\x4c\xed\xb2\x33\x88\x58\x13\ +\xc8\xa3\x82\x59\xbd\xbb\x4d\x79\xfe\x80\xd1\xc5\x1b\x40\x1e\x26\ +\x13\x67\x0e\xbd\x00\xca\x7f\x08\x5e\x84\x90\x5f\x64\x07\x90\xc5\ +\x4a\xb9\x17\x96\x09\xc0\xad\x9c\x51\xe4\x9a\x82\x74\x1e\x35\xb1\ +\xa5\x51\x40\xfb\x3a\xf4\x55\xa0\x3f\xbd\xf6\xe6\x12\xfa\x41\x2a\ +\x8c\x7f\xe3\x6c\x65\x73\x21\x14\x75\x02\x63\x63\x63\xa3\x30\xa6\ +\x35\x07\xdd\xbb\x35\x31\x7a\x25\xb7\x57\xe5\xf2\x2b\x83\x2f\xc0\ +\x9a\x30\xe1\x63\xb2\xfa\x59\xa9\x7e\xdd\xba\x0c\xa0\x4f\xb5\x2f\ +\x13\x3f\xf2\x3d\x27\xc0\xc7\x16\x2f\x1c\xeb\xcb\xad\x5b\x19\x44\ +\x19\xeb\x73\xc5\x70\x2b\x66\x01\x7e\xe6\x55\xaf\x80\x9f\xff\xc6\ +\xc9\x05\x9f\x96\xee\xd4\xc4\x21\x45\x3f\xfc\x39\xe7\x77\x5a\x17\ +\x1f\x47\xa5\x6a\x59\x29\xde\x64\xd4\x12\x45\x9c\x35\xcc\xcd\x03\ +\xcf\x23\x92\x41\x5e\x32\xca\xdf\x8e\xf7\x1c\x19\x69\x24\x5e\x0f\ +\xc2\x07\xc3\xc9\x12\xd1\x9a\xab\x4a\x20\xc1\x12\xf2\xba\xbc\xe4\ +\xc7\x04\x2a\xaa\x81\x2f\x83\xe8\x3c\x12\x58\x5b\x54\xa5\x4f\x27\ +\x3e\x49\x81\xaf\x2c\xa4\xa5\x3a\x18\x9c\xd7\x73\xac\xae\xf9\xdf\ +\x2e\xea\x40\x35\xc7\x75\xea\xd4\x69\x2e\xec\x7d\x25\x38\x7d\x0c\ +\x12\x83\xcf\x5d\x3c\x6c\xf3\x05\x09\xb0\xbb\x97\x18\xc4\xa8\x59\ +\xab\x86\x5c\xe1\x05\xaa\x7d\x68\x07\xb1\xe7\x3e\x2a\x78\xb2\x8d\ +\x8b\x70\x31\x99\x38\xdc\x63\x39\x8e\xcd\x9b\x56\x2a\xfb\xe6\xa6\ +\x43\xb2\x0a\x02\x5f\x1d\xd9\x56\x89\xe0\xeb\x6c\x64\x5d\x8e\xc3\ +\xfc\xe6\x02\xfa\xf6\xeb\x57\xa9\x34\xf2\x55\xc1\xdc\x2c\xe2\xe2\ +\x0c\xa1\x9d\xc1\xd7\xa5\x82\xf5\x06\x07\xdc\x34\x7a\xc7\x82\x04\ +\x03\xa1\xc5\x8a\x92\x25\xac\x11\x00\x87\x53\x9c\xb0\x98\xdc\x59\ +\x1e\xa1\x09\x24\x09\x8c\x1a\x11\xf8\x75\x4e\x1a\x99\x1a\x55\xa2\ +\xb1\x53\x9e\xa5\xc0\x7e\x73\x69\xbe\x8f\xb3\x95\x49\x92\xa0\xd0\ +\x7c\x00\x15\x7c\xfd\x09\xe2\xf0\xf0\x2b\x22\x1c\x5b\x84\x30\xaf\ +\x1c\x06\x2c\x24\xf8\x9c\x88\xe1\x95\x2f\x0a\x3b\x1f\x7d\xf4\x11\ +\x15\x45\xd7\x64\x8d\x9a\xd5\x0b\x4c\xed\xda\x75\xf1\x3f\x4a\xc3\ +\xd0\x1a\x13\x08\xe1\xa3\xac\x14\xca\xfc\x3e\xaf\xfe\x24\xf8\x03\ +\xd3\x81\x5f\x82\x54\xfd\x8a\xc7\xef\xbc\x9a\x94\x2a\xcc\x8b\x10\ +\xd8\x56\x5f\x44\x90\xaf\xe5\x65\x02\x6d\xcc\xb5\xcb\x50\x49\x24\ +\x8e\x62\xdd\x6e\xe0\xca\x29\x61\x00\xee\xd5\xbb\x99\x6a\x91\xc8\ +\x90\x0b\x70\xb7\x03\x81\x8a\x22\x8f\x6c\xb4\x44\x81\x28\xc5\xc8\ +\x96\x7e\x90\xcc\xe4\x11\x69\x65\x73\xa0\xe6\x44\xd2\xe5\xf4\x31\ +\xd2\x1e\x86\xb8\x30\x6a\xd9\xac\x22\x39\x56\xee\xa0\x7d\xca\x06\ +\x52\x74\x95\xb9\x02\x49\x80\xeb\x1f\xd3\x42\xdf\x5e\x55\xc8\x82\ +\x96\x2d\x5b\xc6\xa2\x9c\xcb\xe0\xb3\x88\x0e\x9e\xf5\xeb\xd7\x73\ +\xe7\x8d\xd8\x88\x29\x0e\x67\xe7\x56\x8d\xaf\xa2\xae\x70\x49\x04\ +\xd5\x14\x70\xff\xbe\x00\x1c\x99\x3c\x2e\xee\x48\xf0\xd9\x61\x94\ +\x4d\x1d\x19\xe8\x0e\xfa\x0a\x64\x39\xaf\x6c\x99\x9e\x21\xc1\xcf\ +\x6f\xe5\x5f\x03\x11\x48\x0f\xa9\xfe\x84\x91\x4c\x1b\x39\x5a\xdc\ +\x43\x8d\x4d\xe6\x3c\x02\x18\x9c\xbe\xaa\x83\xea\xcf\x0e\x90\x60\ +\x27\x4c\x44\x19\x48\x30\x7c\xc3\x48\x24\x90\xd0\xe4\x92\x7e\x08\ +\x1a\xc3\xad\xcd\x1b\x28\xfd\x09\x78\x81\xf5\x60\x88\x0e\xa6\xa6\ +\xf7\x57\x21\xf3\xd2\x6d\xb4\x53\x21\xa6\x42\x82\x82\x09\x70\xbd\ +\xe0\x07\x23\xab\x57\xbd\x55\xab\x56\xf3\x90\xda\x2d\x86\xee\x1b\ +\x5e\xf5\xb2\x8b\x87\xc1\x17\x1a\x00\xea\x99\xca\x57\x28\x47\x95\ +\xee\xa9\x78\x85\xd4\xae\x9a\xef\xb7\x89\x53\xc3\x90\xcc\xe1\x16\ +\x6e\x56\xfd\xfc\xbd\x02\x7c\x94\x73\x39\x8f\x60\x1f\x37\x6e\xdc\ +\x34\x10\xe1\x94\x0e\xfc\x54\x65\x5e\xdf\xe7\x7e\xf9\xd7\x41\x04\ +\x21\x0a\x01\x2c\xe7\xd2\xc8\xfd\x70\x2d\x6a\x62\x35\x53\x80\x85\ +\x01\xf3\x42\x8c\xbe\x81\x77\x81\x1c\x26\xa3\x7c\xe0\xc2\xeb\xdd\ +\x78\x5d\x02\x40\x87\x92\xd1\x14\x06\x12\xc4\x51\x6e\xc6\x61\x32\ +\x3a\x35\x12\xe4\xed\x6e\x23\xbf\x4f\x92\x80\x8a\xf8\x53\xfd\xf6\ +\xd5\x29\x6c\xc9\x56\xda\xc2\xe0\x5f\x4b\xd6\xd0\x7c\x9d\x6a\x3f\ +\x08\x6a\xbf\x16\x5a\xb6\x67\x60\xf5\x47\x01\x24\x79\xc2\x25\xb7\ +\x6c\x73\x7a\x57\x00\x85\xe6\x0b\xaa\x52\x15\xfd\x7b\x65\x4b\x6b\ +\x00\x5f\xb1\xb0\x23\xd5\x3e\xc0\x36\x8b\xc6\x4f\xcc\x01\x48\xf0\ +\x39\x4f\x20\xb4\x89\x0b\x17\x32\x87\xf3\xd1\x1c\x7a\x92\x6d\xbe\ +\x0e\xfc\xcc\x7f\x13\x7c\x1f\x8e\xa2\xaf\x5c\x01\x13\x2e\x7d\xdf\ +\x29\xda\xde\xc0\x4a\x6d\x98\x6a\x88\x78\x29\x8c\x43\x40\xc0\xa2\ +\x67\x5e\x6e\x26\x91\x3d\x3d\xcf\x3f\x08\x84\x9d\x2f\x5a\x99\xe1\ +\x72\x20\x6a\x98\x0f\x7f\xa1\x13\x10\x29\x4f\xe6\x80\x18\x42\xe7\ +\x00\xe5\x5e\x5c\x46\xfe\x19\x39\x22\x32\x08\x8e\x22\x22\x9d\x3f\ +\xc0\x92\x05\xaa\x17\x0b\xa7\x67\x57\xbe\x4c\xc1\x5d\x27\xd3\x30\ +\x79\xb4\x72\x41\xc7\xea\xaa\x1a\xe0\x9a\xc1\x47\xa3\x65\x4d\xd4\ +\xf2\x67\x82\x00\x12\x7c\x16\x3e\xce\x84\x4b\xaf\x84\x9d\x34\x38\ +\xc3\x27\xfa\xf5\x4b\x97\x29\xf5\x7f\x56\xfb\x78\x26\xc0\xc6\x46\ +\xce\x84\x30\x92\xc1\xe7\x30\x92\x57\x3e\xdb\x7c\x76\xfc\x3c\xcb\ +\x96\x2d\x5b\x0e\xa7\x72\xa7\x2e\xd6\x4f\xce\x27\xd6\xff\x57\x73\ +\xe7\x7a\x2d\xa0\xe6\x3e\xd6\xa1\x92\x58\xa3\x04\x95\x08\x0f\xa0\ +\xe2\x1e\x2f\x1e\x98\x75\x80\xf1\x07\x02\xe5\x1f\xca\x23\x86\x3d\ +\x0d\x4c\x05\x88\x81\xd1\xfc\xcc\x03\x4d\x70\x10\xf7\x70\xa0\x12\ +\x01\x80\xfd\x41\x0a\x34\xbc\x66\x1d\x27\x03\xa2\x1f\xb3\x85\xc8\ +\x12\x92\x47\x26\xd9\x59\x61\x64\x96\x03\xe6\x00\x13\x55\x79\xb4\ +\x36\x55\x58\xb5\x97\xfe\x02\x09\xdc\x05\x69\x02\x95\x00\xd7\x04\ +\x3e\x6c\x7d\x0d\x38\x7c\x33\x51\xd3\x2f\xc6\x87\x38\x48\xf0\x77\ +\xed\xda\xc5\x25\x5d\xd1\xc7\x87\x15\x8a\x31\xad\xda\xdc\xb7\xef\ +\x73\x85\xab\x31\xbe\x7c\xc6\xe0\xe3\xb4\x2e\x82\x33\xc9\xe0\xb3\ +\x03\x28\xb7\x5d\xe7\x68\x82\x1d\xca\x5f\x50\x2e\xfe\x4b\x05\x5f\ +\x57\xdd\x73\x15\xd2\x16\x2d\x7a\x53\xa0\x56\x3b\xcd\x10\xcb\xaf\ +\x07\xe8\x54\xa5\x18\x0c\x13\x05\xc2\x21\x04\x38\x72\x37\x79\x6e\ +\x16\x09\x8e\xd5\x3e\x2d\x41\xc4\xe5\xcc\x02\x63\x13\x01\x62\x51\ +\xf6\xf8\xbd\xd0\x9e\x47\xf1\x5e\x10\x90\xe1\x07\x08\x9f\xfd\xa1\ +\x35\xb3\x61\xe1\x50\x92\x34\x5b\x41\xa2\x50\x1d\x89\x34\x4d\xc0\ +\x24\xb0\x1a\xa8\x42\xa7\x5a\x54\xfd\x8f\x83\xf4\x47\x46\xae\x8c\ +\x78\x0a\x26\x01\x13\xe0\x9a\xc0\x47\x3d\x9f\x57\x7e\x31\x94\x73\ +\xa5\xda\xe7\x2a\x1e\x13\x40\x68\x80\xb9\x18\xba\xac\xdf\xb0\x9e\ +\xda\xbc\xa9\xa6\x76\x55\x53\x20\xc2\xbb\x6e\xdd\xba\x11\xc6\xc0\ +\x84\xc3\x87\x84\x12\xab\x7d\xf6\xf4\x19\x7c\xfe\xee\xcd\x53\xa7\ +\x4e\xfd\x51\x29\xed\x5e\x45\xb8\xf7\xaf\x68\x01\x09\xbe\xda\xec\ +\x62\x62\xf9\xf3\x10\x9d\x2d\x55\x84\x42\xa2\x42\x29\x4e\x86\x71\ +\xec\x1c\x06\x15\x65\x7b\x2e\x09\x20\x44\x80\xe8\xca\x01\x73\x2f\ +\x12\x05\x46\x69\x0d\x24\x46\xac\x7a\xe6\x94\x89\x1f\x98\xe1\x13\ +\x94\x22\x67\xce\x59\xf2\x62\x81\x98\xd9\xc9\x64\x12\x18\x25\x89\ +\x2e\x93\xc0\xe2\xa1\xd2\x1d\xeb\x50\xbd\x2d\xc7\xe9\xf7\xe4\x4c\ +\x72\xfe\x5f\x7a\x0a\xcc\x57\x0b\x3e\x1c\xbe\x1a\x38\xad\x73\x06\ +\xee\xc5\xe0\x95\xf3\xe7\x98\x00\xec\xec\x31\x38\x4c\x04\x5e\xa9\ +\x82\x36\xc9\x49\xc9\x98\xaf\x0b\x21\x87\x53\x75\xfa\x7c\xab\x7d\ +\x80\x2f\xf6\xe5\xeb\xd0\xa1\x83\x50\xf9\x28\x1a\xc9\x53\x3b\xd8\ +\xee\x33\x01\x8e\x20\x7b\xf8\xbd\x8c\xf5\x95\xba\xbe\x8f\xc3\x12\ +\x6e\xd8\x86\xd6\xb2\x70\x64\xd1\xc4\xfc\xd1\x1a\x5a\xf5\x82\x9d\ +\x6c\xf7\xc7\x53\x4b\xa8\x65\x81\x95\xe9\x38\x51\x89\x5a\x78\x53\ +\xe8\x71\xdd\x42\xd3\x48\x90\xb0\x99\xa8\x78\x43\x0d\x18\xbf\x8d\ +\x58\x54\x76\xbc\xa8\x2e\x66\xce\xac\x91\xf7\x93\x23\xf5\x77\x50\ +\x3d\x8d\xfc\xc2\x89\x82\x23\x74\xe6\x45\x93\x2c\xbe\x67\x52\xfd\ +\x2f\xbb\xd3\xdc\xa1\xdf\x52\x9f\x4d\x47\xe9\xac\x02\xab\x5b\xf1\ +\x09\x14\x0d\x50\x00\xf8\xf0\xf2\xab\x63\x75\xce\x04\xf8\xd1\xd8\ +\x8a\x85\xc1\x16\xe0\xcb\x8e\x5b\x68\x03\xfe\x72\x6e\xc4\x64\xdb\ +\x0d\x53\xb0\x83\x8e\x1e\x39\xca\x2b\x19\x40\xba\xaf\xa8\xf6\x19\ +\x7c\x2e\x16\x61\x14\x8c\x9b\x40\x78\x8f\x1f\x79\x4c\x2a\x03\xcf\ +\x24\xb8\x80\x86\x8f\xd9\x3e\x62\xfd\xcc\x82\x62\xfd\x42\xd6\x02\ +\x94\xdf\xf6\xae\xdb\x4e\xd0\xc5\x20\x7f\xf2\x56\x88\xa2\xb2\x40\ +\xcb\xe0\xb1\xe5\xb5\x8b\x85\x95\x60\xc0\x94\x30\x11\xaf\xdd\x0e\ +\x80\x78\x96\x35\x85\x48\x20\x81\x00\x09\x78\xe1\xc0\xeb\x18\x01\ +\x86\xd1\x5a\x82\x9c\xf6\x64\xf2\xd8\x6c\x42\x13\x58\x83\x35\x5f\ +\xc0\xa0\x23\x12\xcf\x26\x38\xa8\xd8\x83\xd5\xa8\xe5\x99\x54\xd1\ +\x58\x92\x73\xa5\xc6\x12\xf3\x55\xc4\xf9\xf1\x00\x7f\x06\xbc\xfe\ +\x68\x00\x2c\xc0\x91\x82\x93\x35\xf9\x1c\x1d\x26\x04\x8b\xe8\xc1\ +\x43\x41\x86\x87\x36\x45\x53\xe7\xea\x1f\x56\x13\xfb\x09\x66\x93\ +\xc9\x67\x04\x00\xc0\x45\x71\x07\xa3\x60\x4c\x04\xfe\x3e\x26\x17\ +\x57\xf6\x24\xf8\x99\x88\x06\x66\x41\x1b\x88\x95\xaf\x96\x76\x6f\ +\xc2\xb8\x95\xaa\x05\x9c\x4a\x41\x57\x5e\xde\x59\xeb\xe8\x37\x1e\ +\x4e\xee\x54\x9f\xda\x81\xf3\x46\x9b\x3d\x2f\x41\x14\x55\x95\xc8\ +\x12\xa8\xad\x5e\x1d\x11\xb8\x12\x78\x6e\x0b\x51\x6c\x3d\x00\x1c\ +\xc6\x35\x85\x83\x44\x9c\x34\xb2\xd4\x16\x68\x5b\xc3\x1b\x90\x23\ +\x7d\x2b\x52\xc3\xc9\x14\x10\x01\x60\xf0\x19\x7d\x42\x5e\x6a\x02\ +\x47\x06\x55\x7c\xbf\x33\x2d\x8c\x08\xa2\x9e\xdf\x6c\xa1\x23\xf9\ +\x69\x02\x73\x41\x85\x1d\x09\x3e\xda\xb8\xb8\x6d\x3b\x06\x6a\x99\ +\x41\x97\xf6\x98\x13\x3d\x1c\xe7\x73\x0f\x3e\x83\xcc\xab\x98\x1b\ +\x32\xc5\x1c\x1e\x0e\x4b\x20\x93\x76\x04\xec\xc2\x85\x0b\x39\x03\ +\xc8\xc5\x1c\xbd\x29\xe0\x64\x11\x17\x77\x78\xb6\x9f\xc1\xe7\x5c\ +\x3f\xff\x19\xb9\x29\x23\xd9\x70\x71\x53\x07\x12\x3e\xe7\x55\xf0\ +\x7d\x9d\x8d\x77\x13\x8f\xbf\x73\xf8\xd0\x06\x1e\x96\x85\x9b\xe8\ +\xaf\x2c\x3b\x39\x9f\x69\x4a\x8f\xb0\x71\x4f\x39\x9b\x17\x06\xc6\ +\xd5\x27\x32\x1b\x54\xea\xe4\x99\x83\xf3\x30\x07\xd1\xf5\x08\x20\ +\x33\x09\x4e\x40\x0b\x80\x63\x96\x5a\xfc\xcd\x20\x41\x6d\x72\x5c\ +\xda\x4d\x39\xe9\x89\x14\x08\x02\x04\x86\xfc\xb7\x29\x20\x8d\x04\ +\xf6\x4b\x54\x72\x50\x3b\x5a\x08\x5f\xa4\xcf\x97\xbf\xd0\x2e\xf5\ +\x18\x1e\xc6\xd1\xac\x80\x4f\x6a\x49\x17\x36\xb9\x2a\x1a\x2e\x66\ +\xa1\xb0\x13\x83\x4d\x13\x98\x35\x7c\x9c\x0a\xc7\xf8\xec\xa1\xdb\ +\x60\xef\x53\x41\x82\x0b\x70\xd6\xc2\xb0\x50\x63\xb0\x23\x57\x10\ +\x26\x79\x0d\xbc\xf9\xc2\x43\x0f\x3d\x44\xab\x57\xaf\xe6\xd5\xcc\ +\x23\x5d\xbc\xe9\x22\xc0\x35\x4a\xb5\x2f\xc0\x67\x3f\x02\x25\x63\ +\xfe\x2e\x7e\xcd\xcf\xd8\xee\xcb\x9d\x39\x9d\xb0\xf9\x73\x40\xb0\ +\x53\x4a\xac\x9f\xe1\x2b\xdc\xbb\x89\x22\x49\xe0\x54\x9f\x4b\xb5\ +\xbb\x6a\x27\x6d\xb4\x81\xfb\x7d\x5a\x52\xe7\x6c\x0b\x99\xd9\x85\ +\xf5\x6e\x85\xcd\xaf\xa9\x9b\x29\xd0\x09\x93\xe0\x02\xde\x8f\xae\ +\x0b\x10\x22\x99\x04\x67\xa1\x15\xc1\x31\x4b\x4d\x81\x81\x35\xb4\ +\x0a\x39\x33\x0d\x20\xc1\x45\x41\x82\x00\xcd\x1c\xa8\x3e\x81\x23\ +\x8b\x8a\x3d\xdf\x86\xe6\x96\x0a\xa7\x97\xde\xfc\x96\xd6\x29\x27\ +\xba\xbb\x55\x13\x60\x64\xd1\x35\x70\x06\xe3\x98\xb4\x2f\x51\xce\ +\x8d\x41\x2d\x5f\x54\xed\x10\x7e\x09\x60\xb0\xfb\xd6\x0a\x9c\x8c\ +\xc1\xc0\x78\x75\x26\xc3\x0f\x69\xe0\x38\x84\x6d\xed\x47\x8d\x1a\ +\x65\x66\x2d\x80\xca\xa0\xa8\x01\x40\x83\x88\x81\x4e\x10\x86\x6b\ +\xf7\x62\x95\xc3\x94\x88\xfd\x7c\xf0\x79\xfe\x9c\xec\x0f\x94\x93\ +\xbb\x1e\x9c\xc8\xb9\x0c\xc3\x21\x47\x19\x7c\x4d\x52\x54\xf0\x6f\ +\xf6\x8e\x9c\xf2\x14\x52\x9d\x43\xe8\xf5\xe9\x17\x40\x7e\xde\x47\ +\xdb\xb3\x60\x01\x5f\x79\x80\x1e\x87\xd7\x6e\x95\x05\xe8\xe2\xb5\ +\x39\x3a\x50\x14\x81\x66\x0e\x2e\x6c\x07\x09\x6a\x81\x04\xc5\x98\ +\x28\xbc\x47\xc1\x36\xa0\x53\x4d\x40\x68\x09\x2e\x2f\x18\x97\x0d\ +\x12\x04\x31\x09\x18\xb1\x48\xdd\x5c\x82\x11\xef\x41\xe0\x74\x86\ +\x3f\xda\x90\x3e\x9f\xb9\x91\x5a\xa1\x87\x41\x3f\x85\xa4\x33\x01\ +\x3e\x8e\x51\x45\x0f\xdf\xfd\x58\xcd\xe5\x59\xbd\xe3\xe2\x55\xcf\ +\xc9\x98\x74\xa4\x5f\xbf\x04\x09\xf4\x67\xd4\x79\xe4\xa4\x0f\xcc\ +\x42\x3a\x3c\xf6\x44\x8c\x61\x3f\x03\x6d\xe0\xc7\xb6\x1d\x63\x5f\ +\x22\x33\x08\x53\x42\xdf\x7d\xf7\x1d\x6b\x1b\x06\x9d\x09\x21\x26\ +\x7d\xb0\xdd\x1b\xfb\x01\x4c\x0c\xd6\x0c\x4c\x12\xee\x0a\xfe\x09\ +\xd7\x36\x5f\x3b\x71\x17\x70\x42\xd6\xcd\x26\x81\x34\x07\x5e\x5f\ +\xb2\xf1\x1f\xf2\xd8\x9d\xe4\x1a\xfc\x30\x3d\xc9\x7b\x50\x08\x76\ +\xec\x20\x2a\xd9\x40\xcc\x1d\xa8\x9a\x00\xe1\x1f\x98\x8f\xf7\xa3\ +\xa0\x29\x82\x62\x58\x13\xa4\x91\xd1\xb4\x0b\x08\x55\x11\x60\x79\ +\x83\xe3\xc8\x85\x17\xd9\x97\xa0\x09\xbc\x79\x24\x30\x68\x24\x30\ +\x48\xc9\x02\x98\x46\x2a\x32\xa5\x07\x0d\xbe\x6f\x34\xbd\xa3\x37\ +\x9b\x66\x5f\xb6\x5f\x56\xf7\x10\xeb\xff\x47\x9b\xd4\x91\x61\x98\ +\x17\x87\x23\x4c\x05\xf8\x49\xf2\x38\x14\xe5\x1c\x3e\xe6\x60\x18\ +\x4a\xbe\x39\x70\xfe\x56\x42\x95\x3f\x86\x0c\xa1\xf0\x01\x60\x3e\ +\xb8\x65\x9b\x0f\x64\xe2\xa8\x80\xc1\x67\x4f\x9f\xc9\xc1\x21\x1f\ +\x83\xcf\xc0\x73\xea\x98\x87\x40\x37\xa0\xa3\xeb\x0f\xb5\xb4\x5b\ +\x50\x5d\xff\x16\x23\x01\xe5\x77\xde\xd1\x8e\x53\xe4\x7d\x6f\x29\ +\xcd\x7e\xe7\x51\x7a\x16\x2e\x51\x20\xe7\xf5\x09\x36\x3f\x16\x9a\ +\xc0\xec\xef\x83\x04\x90\xa4\xdd\x79\x7e\x43\x48\x1c\x93\x20\x13\ +\x24\xd8\x47\x64\xa9\x88\xd5\x6d\x24\x03\xd4\x83\x13\x6b\x20\xe7\ +\x52\xa2\x20\x81\xbf\x20\x81\x06\x3e\x7e\x36\x03\x1d\x0b\xa4\x72\ +\x49\xfa\x0f\x11\x8d\xd3\xa5\xca\x8d\xaa\x06\x30\x49\x02\xa0\x87\ +\x2f\x1a\x4e\xdd\xbd\xbc\x32\x71\xf1\x90\x26\xdb\xe5\x2d\xc8\xf0\ +\x71\x6c\x99\xaa\xef\xb1\x53\x08\xc0\xcf\xec\x48\x05\x7b\xd1\xb0\ +\xd9\x0c\x60\xc6\x02\x78\x0e\x11\x05\xc0\x78\xcd\x9a\x40\xa8\x7c\ +\x90\x83\xc9\xc0\xe0\xcb\xfe\x7d\xee\xe6\x3d\x98\x7f\xac\x9f\x7f\ +\xb8\x77\x2b\x93\x40\x8a\xbe\x74\x7b\xe8\x02\x79\x06\x2f\xa1\xe9\ +\xe3\xba\x50\x4f\x00\x15\x92\x91\x82\x87\xdb\x85\x26\x10\x24\x90\ +\xb4\x26\x99\xed\x83\x24\xed\xcb\x23\x41\x58\x69\x26\x41\x0e\x99\ +\x2c\x87\x89\xac\x65\xc0\x2a\x23\x59\x28\x02\x44\xf1\x50\x76\x66\ +\x32\x99\x73\xf2\x32\x86\x7e\x16\x6d\x96\xc1\x9c\xd7\xb5\xec\x82\ +\xc8\x1d\x4b\x24\x09\xcc\x12\x7c\xb5\xb3\x07\x9b\x32\x35\xe0\xbb\ +\x3c\x09\x13\xc2\x7b\xe7\xaf\xd6\xc0\x48\x96\x2a\x59\x03\xc5\x2d\ +\x09\xa0\xd7\x08\xab\x56\xad\x5a\x89\xd0\xf1\x05\xa9\xf2\xf9\xea\ +\xde\xbd\xbb\xf0\xf6\x65\x75\x0f\xde\x3d\xab\x7d\x0e\x1d\xd9\xe3\ +\x3f\x87\x70\x6f\x81\x06\xbe\x9a\xe5\xcb\x2d\x9c\x95\x5f\xf8\x27\ +\xa4\xab\x1a\x40\xde\x31\x00\xe2\x7d\x65\x11\x4d\xfb\xe8\x71\xea\ +\xed\xf5\x50\x58\x0e\xe8\x9d\xfd\x27\x51\xb9\x86\xa2\x0c\xac\x5e\ +\x42\x13\xa4\x1d\xce\x0b\x23\xc3\xcb\x91\x58\x0f\x26\xf3\x31\x32\ +\x58\xe2\x00\xae\x91\xcc\xf0\x04\xdd\xa0\x83\x23\x1b\xbf\xcb\xf3\ +\xf8\x1c\x90\x30\x01\x55\xb3\x35\x4f\x03\xc0\xf4\x38\x94\xed\x6a\ +\x8c\x66\xe9\xfd\xab\xe1\x1f\x54\x76\x34\x9c\x3e\xf6\xe0\x19\x20\ +\x06\xcb\xa3\x1d\x7a\x78\x89\x41\x51\x86\x2b\x3c\x1a\x79\xec\x7a\ +\x32\xa0\x3f\xef\x28\x9c\x48\x2f\xbe\x47\x9c\xeb\x27\xcd\x49\xb9\ +\x72\xe5\x98\x10\x8c\x22\x83\x2f\x4b\xbb\x69\x38\xa8\x71\x86\x04\ +\xbf\x30\xc2\xbd\x9b\x17\x22\xe6\xef\x18\x26\x65\x90\x77\xc0\x3c\ +\x9a\x3a\xf1\x29\xea\x53\x94\x28\x82\x6b\x07\x67\xb6\x12\x95\xa8\ +\xc3\x8d\x95\x00\x5d\x22\xa3\x0b\x33\x52\x8f\xe6\x69\x82\x88\x4a\ +\x0c\x96\x93\x8c\x96\x33\x64\xa2\xe8\xbc\xb1\x65\x8f\x1f\xee\x08\ +\xd5\xbd\x97\xc8\xa3\xd5\x2c\x2d\xa6\x3c\x50\xe1\x80\x5e\xd2\x6d\ +\x58\x65\x54\x13\x41\x06\x7d\x61\x03\x57\x14\x27\x69\xe4\xa1\x88\ +\x00\xd0\xae\x39\x60\x59\x2c\xba\xe3\xd0\x9c\x92\x00\xba\xbb\xbf\ +\x3c\xd3\x16\x40\xdb\xf1\xe7\xfd\x41\x00\x01\x3e\x0f\x81\x22\xa2\ +\xe0\x50\x8f\xab\x7a\x6c\x56\x58\xbb\x64\x20\xcb\x37\x99\x35\xc0\ +\x9d\x00\xbe\x4a\x02\x95\x00\xea\x31\x70\x19\x36\xf2\xbe\x38\x97\ +\xa6\x7c\xf6\x14\xf5\x8e\x08\xa6\x28\x7e\xe8\xd8\x44\x54\xbe\x11\ +\x67\xfb\x14\x87\x8e\x85\x57\xe0\x89\x3c\x12\x44\x56\x61\x2f\xdf\ +\x45\x26\x6b\x02\x80\x8f\x04\xf0\x46\xdc\x2d\x64\x70\x07\xe1\xfd\ +\x1c\xa1\xfb\xcd\x2e\x80\x02\x59\xb0\x81\xbe\x53\x2b\x85\x66\x09\ +\xbe\x4a\x02\xd8\xe6\x50\x0e\xc9\x40\x02\xa1\x05\x10\x09\xf8\xf9\ +\x38\xb6\xd4\xc5\xa2\x53\x6d\x06\xa5\x93\x36\x17\x0e\x9e\x5b\x9e\ +\x9e\x0d\xf0\xb9\xb8\x23\x1b\x39\xe5\x7e\xfe\x39\xdc\xd1\x03\x22\ +\xc8\xb3\x77\xd4\xba\xbe\xb3\x10\x62\xfd\x9b\x72\x2e\xb2\x7c\xa4\ +\xde\x59\x50\xec\xf3\xf4\x9f\x03\x4d\xf0\x34\xf5\x44\x74\x10\xcb\ +\x20\x9c\xdd\x4e\x54\xbc\x16\x51\x40\xb8\xef\x01\x12\x3e\xaa\x4a\ +\xd4\x05\x8a\x03\x30\xf2\x80\x04\xc9\x62\xab\x12\x93\x9b\x63\x3f\ +\x08\x82\x3c\x8f\xd3\x29\x96\x4e\x9a\x83\x32\xde\x5f\x48\xdb\x88\ +\xf2\x09\x03\x55\x5f\x00\x4e\x59\xba\x3c\xf2\x9c\x09\x00\x42\x18\ +\xb1\x3f\x6f\x59\xe4\x01\xce\x48\xf6\x2a\x77\xa3\xd2\x3c\xe9\x82\ +\xad\xf7\x60\xe5\x07\x82\x4c\x22\xbe\x97\x77\x10\x82\x77\xfb\x62\ +\x72\xd9\x91\x2f\x98\x86\xed\x5f\x4e\xf9\xc8\xef\xe7\xf8\x2a\xed\ +\xde\x21\x24\xc8\x55\x09\x00\xf1\x38\x3c\x42\x13\x4c\x47\xe7\x6f\ +\xf7\x52\x51\x54\x9a\x70\xd9\xb7\x10\xc5\xc4\x13\x15\x11\xf5\x03\ +\x88\x82\x14\xcf\x3d\xf9\x47\xc8\x9c\xa3\x17\x3e\x41\x86\xd8\xb6\ +\xc4\x0b\xef\xcf\xcb\xe0\x3b\xf1\x18\xb2\x78\x13\xad\xd5\xb7\xb4\ +\xab\x04\x50\xc5\x8b\x18\x7c\x17\x0a\x3a\x4f\xb2\x87\x0e\x06\x8b\ +\x54\x2f\xf6\xe8\x7d\x04\x04\x58\x9f\xcf\x46\x28\xa4\x3e\x43\x2e\ +\xa0\x01\xfe\x9c\x41\x12\x49\xee\xcc\x8d\x2e\x1e\x26\x82\x13\x5b\ +\xbe\xcc\xc6\x06\xcf\xff\x48\xf0\xf3\x89\xf5\xbd\x2a\xf8\xb7\x3b\ +\x09\x0a\x32\x09\x68\xfb\x9e\x3d\xee\x31\x7a\xb2\x72\x09\xaa\x48\ +\xb8\xce\x71\xc4\x67\x25\x0a\x2e\x96\x07\xba\x55\x67\x0a\xbc\x1e\ +\x2e\x30\x49\x02\xf0\x33\x2f\x98\x84\x64\x5b\xba\x48\x05\x0b\xb8\ +\x4f\x67\xd0\xc9\x57\x27\xd3\x2f\xd2\xa4\xea\x17\x96\xd9\x67\x98\ +\x02\x59\xbb\x76\xed\x09\x8c\x74\x39\x40\x5e\xab\x3c\xf3\x1e\x59\ +\xbe\x26\x48\xef\x96\x43\x7a\x37\x4d\x96\x3d\x35\x80\xd4\x02\x92\ +\x05\xaa\xdf\x1f\x69\xe4\x3e\x32\xc1\x03\x12\x30\xe8\xf2\x48\x75\ +\x6e\xe7\x5a\x88\x6c\xe2\x01\x06\xff\x0a\x59\x3e\xef\x4d\xf5\xf8\ +\x0b\xbf\x80\xa4\x8e\xa5\x49\xf1\x0c\x59\x42\x0b\x46\x74\xa2\xae\ +\xb5\x4a\x53\x3c\x3f\x38\xcd\xe6\x00\xf6\xbe\x48\x59\xbd\xd1\xce\ +\xcb\xf6\xb9\x73\xb4\x7d\x8a\xec\xc0\x5b\x2b\x4e\x3b\x32\xf2\x9e\ +\xdb\xdc\x94\xdd\xf0\x65\xfa\x92\xdd\x06\x5f\xbf\x5f\xa3\xca\x42\ +\x5d\x4a\xd3\x09\xbb\x7c\x11\xea\x9f\xc1\xe3\xd4\x2c\x7b\xec\x06\ +\x38\x6b\xe3\xb4\x79\xb9\x40\xcd\xd9\xb3\x6a\xe2\xa7\xfd\x1c\xc0\ +\xef\xa3\x21\xe4\x03\x38\x80\x81\x00\x5e\x9e\xa5\xcf\x5d\xbc\x4c\ +\x06\x0f\xe6\xff\xbf\x45\x3d\x61\x97\xef\x2c\x5f\xfe\x89\x9e\x3b\ +\x84\x04\xea\x08\x9a\x1d\x92\xad\x45\x57\x29\xda\x82\xb8\x00\x49\ +\x78\x67\x19\x7d\xbd\xf9\x18\xed\xcc\xcc\x22\xf8\x4c\x78\x70\x88\ +\x28\xf9\x20\xa7\x88\x35\x0d\x00\xa4\x4c\x40\xca\x6b\x83\xe0\x33\ +\x1e\xc0\xeb\x4a\x06\x09\x20\xb6\x34\x11\xf7\xbb\x1e\x1f\x4f\x5f\ +\xb9\x5c\xbe\x67\x23\x55\x0d\xa0\x4e\xc3\x38\x70\x3c\xda\xd7\xd8\ +\x84\x79\x10\xd4\xb7\x01\xc0\x89\x8d\x1a\xb1\x71\x63\x0c\x52\xc2\ +\xcb\x9f\x79\xe6\x99\xae\x48\xef\xca\xc1\x04\xb7\xf4\xfe\xb1\x2d\ +\x5b\x11\x4c\xe7\xcc\x44\xbf\x40\x0d\x24\x75\xc4\xaa\x97\x1e\x3f\ +\x03\x8a\xb1\xad\xe5\x48\x07\x6f\x51\x56\xfe\xa5\xc2\xcc\xf2\xdd\ +\xce\x27\xa4\x8f\x5e\x45\xcb\x5e\x6f\x47\xce\x16\x95\xa9\x81\x91\ +\xed\xe4\x49\xd1\x4b\x28\x26\x8d\x02\xc5\xf8\x99\x6e\x76\xc0\x93\ +\xd7\x71\xec\x05\xbc\x1e\x0b\xd9\xbb\x8d\xa7\x29\x9b\x0f\xd1\x51\ +\x75\x2c\x5e\xbf\xc0\x8c\x92\x91\x0a\x2b\x1d\x10\x1b\x80\xda\x73\ +\xe8\xd0\xa1\x7f\xe4\x38\x37\xaf\x64\x80\xcf\x61\x5c\x2c\x92\x3c\ +\xbf\x62\x25\xbf\x85\xa6\xd0\x7b\x08\x9a\xe9\xe1\x87\x1f\xae\x8c\ +\x92\xef\x70\xf8\x0e\x7f\xa1\x37\xa0\x06\x2a\x84\xfc\x79\x21\x48\ +\x0d\xb3\x06\x60\xf0\x57\xe0\x33\x1b\xae\x19\xfc\x3b\x5f\x13\xe4\ +\xe8\x34\x41\x22\x24\x81\x85\xbb\x8b\x7e\xd9\x4f\x7f\x65\x66\x93\ +\x37\x0d\x30\xa6\xa7\xe2\xc3\x80\xd2\x99\x8d\x7b\x16\x24\x9d\x28\ +\x03\x10\x67\xe2\xb9\x9b\x27\x8b\x3d\x94\x59\xf7\x65\xfa\x78\xf3\ +\x01\x3a\xac\x36\xcc\xaa\xf3\x91\xbe\x34\x80\x53\x03\xc3\xc6\xc0\ +\x60\x92\x67\x16\xce\xc7\x1d\x89\xbc\xbd\x09\xe6\x80\xc1\xe4\x0d\ +\x1d\xf8\x6c\x1d\x7f\x14\x8a\x7a\x61\x1e\xa0\x17\xc0\x75\xc3\xe6\ +\x9b\xd8\x4c\xc0\xa3\xe7\xc4\x0e\xaf\x7a\x46\x51\xce\xec\xbb\x41\ +\x98\x25\xe8\x0f\xd8\xca\xc0\xdf\xe8\x76\xae\xdb\xeb\x84\x74\xdf\ +\x3e\xc1\x67\x3f\xd1\x0f\x46\x60\xd3\xba\x1a\xdd\x97\x6b\xd3\x46\ +\x04\xdc\xda\xbe\x13\xb8\x3b\x21\xdc\x78\xb5\xfb\x02\x1d\xe8\x3a\ +\x86\xbe\x61\xe0\xe5\x42\xd3\xab\x7f\x75\x91\xa9\x04\x90\x53\xb1\ +\xb9\x1a\x30\x99\x98\xb1\x3f\x0f\x53\xb0\xb8\x4f\x9f\x3e\x4f\x42\ +\x13\x18\x10\xca\x31\x09\x44\x33\x08\xb4\x83\x08\x11\xf1\x9c\xc1\ +\x97\x21\x23\x23\x28\xa7\x77\x58\x9c\x33\x70\x21\x2b\x78\x84\x81\ +\xbf\x19\xf9\xfd\xdb\xf9\x84\x74\x7d\x68\x3d\x11\x24\x38\x72\x81\ +\xce\x3e\xd7\x9a\xda\x99\x4d\x54\x14\xc0\x8b\xc6\x1e\x9e\x95\x39\ +\x95\x4e\xa7\xfb\x4e\xa2\xe5\xe9\x36\xed\x40\x4b\x88\x12\x59\xf9\ +\xcc\xa9\x98\xd5\xc9\x58\x1f\x8e\x49\xe0\x92\x25\x4b\xfe\xc2\xca\ +\xb6\x23\x55\xdb\x1d\x8e\x9d\x09\xf6\x5d\x54\xf7\xe0\x24\xb2\x8d\ +\x17\xf6\x5d\x02\x8f\x4b\x0e\x70\xf0\xea\xe7\x1d\x39\xa7\xa0\x19\ +\xe4\x98\xfc\x07\xdd\x8c\xfc\xfe\xed\x7a\x42\xba\x2f\xd3\xfc\xc3\ +\x1e\xb2\x41\x0e\xa1\xf5\x3c\x3a\x38\x90\x02\x77\x1c\x17\x00\x3b\ +\x20\x39\x72\x40\x85\x41\x67\xd1\x5e\x67\x5e\x69\x34\xde\xc0\x77\ +\x7d\x49\x58\x3f\xe3\x0f\x89\x80\x44\x41\xa2\x21\xc5\x70\x4c\xcb\ +\x3d\x70\x0a\x9f\xc2\x6e\x9e\x91\xbc\xba\xe5\x85\x6c\x1e\x83\xcd\ +\x22\x43\x3d\x3b\x7a\x01\x36\x21\x12\xf8\x05\x3f\xa7\x69\x36\x2d\ +\x59\x82\x7f\xa3\x52\xbc\xb7\xf9\xa9\xa8\x66\x7d\x43\x2e\x24\x4c\ +\x93\x70\x48\xa8\xee\x38\x1a\xaf\xb2\xa5\x4d\x86\x4e\xb2\xd5\xb8\ +\x5f\x5d\x68\x92\x00\x92\x04\xea\xb8\x77\x88\xf6\x17\x16\x85\x44\ +\x69\xf7\x70\x14\x73\xca\x20\x0a\x68\x05\x42\xc4\x61\xa5\x9b\x90\ +\xd1\x13\x2c\x05\x11\xb2\x91\x3f\xd8\x84\x86\xd0\xad\x1a\xc8\x97\ +\x20\x92\x00\x69\xfa\x95\x7f\x17\xfc\xab\xda\x5e\x4f\x2e\xc8\x20\ +\x29\xba\xaa\x9e\x57\x67\xb6\x73\x74\x35\x1a\x9b\xba\x0b\x9a\x04\ +\xbf\xa0\xb9\x00\x69\x73\xa4\x5a\x31\xb0\xe8\x1c\x44\x1b\x86\x3e\ +\xb3\xd1\x5a\x7c\x42\x8b\xff\x45\x20\x22\xc3\x47\x9d\xf9\xc8\x90\ +\x95\x43\x16\xa5\x81\xe4\xf6\xc9\xef\xdf\xfc\x9e\x02\xaf\x0f\x4c\ +\x32\xe4\xe9\xa4\xca\xc6\x56\x2c\x76\xdd\x26\x16\xae\x82\x12\x6a\ +\xe6\x82\x73\xd6\xa4\xfa\x06\xd2\xd6\xa8\x07\x22\x49\xd2\x48\x07\ +\x32\x8b\x41\xd7\x24\x4b\x32\xf2\x56\x3b\x5d\xfb\x36\xe8\x29\xf0\ +\x15\x2e\x9a\xe5\xc2\x53\x16\xad\x4b\x82\xae\x89\xa7\xa0\x54\xba\ +\xb9\xe0\xc2\x85\x10\x35\x56\x0d\xd0\xc4\xaa\x23\x91\x1a\x42\xe6\ +\x68\x92\xcb\xa2\x32\xf2\x2e\xf8\xd7\x14\x21\x48\x1c\x64\xd5\xd6\ +\xa0\x86\x8b\xea\x98\x38\x5f\xd7\xb2\x59\xb4\x3a\x20\xc2\x62\x51\ +\xd2\xbe\x12\x7c\x93\xc2\x42\x49\x02\x87\xaa\x8a\xae\xdb\xdb\xbf\ +\xeb\x17\xa8\x85\x37\x52\x23\x86\xab\x3d\xbe\xfe\x7f\x00\x6a\xc3\ +\xf7\x55\x7b\x4e\x4f\x24\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x09\x53\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\x31\x00\x00\x05\x31\ +\x01\xb7\xed\x28\x52\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x08\xd0\x49\x44\ +\x41\x54\x68\x81\xd5\x99\x6d\x8c\x5c\x55\x19\xc7\x7f\xcf\x39\xe7\ +\xce\x9d\x9d\x99\x9d\x9d\x7d\xa3\x2f\x6c\x5f\x69\x8b\x5a\xd2\x40\ +\xf8\xd8\x00\x51\x02\x04\x23\xb1\xad\x41\x13\x45\x8c\x81\x44\x13\ +\x43\x24\x26\x92\x90\x80\xe1\x03\xbe\x7d\x20\x29\x58\x95\xc4\x60\ +\x22\x12\x11\x5f\xc0\x60\x08\x04\xd4\x18\x10\x21\x21\xd5\x80\x15\ +\x43\xad\x85\x96\x52\x76\x77\x76\xb7\x3b\xbb\x33\xf7\xce\xcc\xbd\ +\xf7\x3c\x7e\xb8\xbb\xdb\x96\x16\xda\xe2\x6e\x5b\xff\xc9\xcd\x9d\ +\x99\x7b\xcf\xb9\xe7\x77\x9f\xe7\x3c\xe7\x79\xce\x88\xaa\x72\xae\ +\x24\xdf\x97\x90\xf5\x7c\x8d\x26\xd7\x11\x33\x4c\x48\x01\x43\x09\ +\x43\x81\x94\xbf\xd1\xe2\x77\xbc\xcc\xcf\xf5\x17\x9a\xbc\x6f\x1f\ +\xe7\x02\x40\xee\x92\x1a\x43\xdc\x8b\xe1\x0b\x18\x6a\x2e\x74\xac\ +\xe9\x5f\xc3\x86\xe1\x0d\xd0\x81\x7d\xb3\xfb\x38\x10\x1f\x20\x6d\ +\xa4\x00\x0d\x8a\x3c\x43\x95\xdb\xf5\x46\x1d\x3d\xe7\x00\xf2\xa8\ +\x7c\x89\x09\xee\x27\xa0\x6f\xb0\x7f\x90\x5b\x3e\x72\x0b\x57\x2e\ +\xbb\x12\x67\x1c\xc8\xdc\x4d\x1e\x52\x52\x9e\x9f\x7c\x9e\x87\x76\ +\x3f\xc4\x64\x73\x12\x52\xa6\x68\x72\xb3\xde\xa9\x4f\x9d\x13\x00\ +\x11\x11\x1e\xe4\x73\xa4\x3c\x42\x09\x7b\xfd\x9a\xeb\xd9\xb1\x71\ +\x07\xa1\x0d\x51\x94\x24\x4d\x40\x59\x80\x08\x5c\x80\x88\xd0\xc9\ +\x3a\x3c\xbe\xff\x71\x9e\xde\xfb\x34\xc4\xb4\x09\xf8\xb2\x7e\x55\ +\x7f\x79\xf6\x01\xee\x95\x1b\xa8\xf2\x2b\x42\x8a\x57\x6c\xbc\x82\ +\xed\x1b\xb6\x03\xa0\x28\xcd\xe9\x69\x2e\xad\x5c\x46\xc9\xf5\x00\ +\x10\xa7\x31\xaf\xb6\xfe\x4e\xb5\x56\x23\x43\xc0\xc3\x13\xfb\x9f\ +\xe0\x85\xbd\x2f\x40\x4a\x46\x8d\x5b\xb9\x89\x9f\xa9\xaa\xba\xb3\ +\x32\xf8\x9f\xca\x4a\xca\x3c\x4c\x89\xe2\xa6\x91\x4d\x6c\x5d\xb5\ +\x95\x7a\x52\xc7\x19\x28\x88\x32\x31\x3b\xca\xd6\x8d\xb7\x31\xd8\ +\x33\x0c\xc0\x64\xbb\xce\x1f\x77\x3f\x49\xd0\x97\x90\x7a\xa1\xa3\ +\xb0\x75\x64\x2b\x63\xf1\x18\x7b\xc7\xf6\x5a\x26\xb9\x9f\x9b\x79\ +\x0a\xa8\x9b\x25\x1f\xbc\x88\x25\x61\x17\x21\x35\x42\xd8\xb2\x72\ +\x0b\xf5\xac\x4e\x23\x1b\xa7\xe5\xc7\x89\xfd\x38\x33\xcd\x51\x54\ +\xfd\x42\x1b\xf5\x9e\xd9\x68\x94\x8e\x1f\x27\xd6\x71\x5a\xd9\x38\ +\x0d\x5f\x67\xcb\xc8\x16\x08\x80\x90\x2a\x9b\xf9\x8e\x88\x98\x25\ +\x07\x60\x35\x15\xda\x5c\x83\x85\x81\x15\x03\x74\x7d\x97\x46\x56\ +\xa7\xe5\xeb\x74\x7c\x9d\x44\xeb\x44\xf1\x04\xde\x67\x0b\x4d\xbc\ +\xcf\xe8\xc4\x13\x64\x5a\x27\xa1\x4e\x47\xeb\x44\xbe\x4e\xa6\x5d\ +\x06\x56\x0c\x40\x19\x28\xf0\x59\xae\xa1\xb2\xa4\x2e\x24\x22\x86\ +\x7b\xb8\x15\xa5\xc2\x10\x14\x4c\x81\x7a\x3a\x4e\x1f\x60\x14\x02\ +\x81\xc0\x2b\xed\x68\xea\x78\x0b\xa8\xa7\x1d\x4d\xe1\xbd\x25\x55\ +\xa1\xe3\x21\xce\x20\x52\x28\xb8\x42\x6e\x05\x47\x95\x1d\x7c\xf3\ +\x04\x80\x1f\x3c\x77\xe4\xd9\x52\x81\xab\x11\xde\xd7\x3a\x99\xe7\ +\xad\xe9\x58\x77\xdd\x71\xfd\xc0\x7d\xa7\x60\xb0\x54\xd8\x4e\x35\ +\xff\x32\xea\x47\x99\x79\x65\x82\xc1\xac\x44\xd5\x04\xf4\x58\xe8\ +\x31\x30\x3b\xde\xe5\xd8\x60\xa2\xaa\x1c\x7c\xb3\xce\x6c\xd4\xa0\ +\xed\x21\xca\x60\x26\x4b\x68\x04\x11\x53\xab\x52\x08\x81\x3e\x60\ +\x92\x6b\x8f\x8b\x42\xf7\x3c\x39\xf9\x99\xcd\xcb\xe4\x37\xa7\xe3\ +\x58\x9d\x14\x3d\x74\x44\xee\xbd\xe3\x93\xfd\xdf\x3a\xd9\x75\x11\ +\x11\xa0\xcc\x8f\x78\x8b\x02\x83\x8c\x00\x13\xf0\x0d\x7b\x3b\x5f\ +\xbf\xf6\x76\x44\xc8\x0f\xf2\x63\x79\xdf\x08\x46\x2c\x00\x5e\x33\ +\x46\x1b\x87\x72\x98\xf9\xc3\xc3\x03\xcf\xed\xe4\x87\xba\x93\xb8\ +\x0a\x1c\x06\x26\x38\x70\x9c\x05\xbc\x97\xfe\x4c\x95\x2c\xe3\x94\ +\x32\x82\x2c\xaf\xea\x5d\xdf\xfd\xfd\x11\xee\xbc\xe1\xe4\x10\x40\ +\x91\x04\x65\x08\xc8\x80\x04\xfa\x8a\x35\x56\x0f\xac\x39\x45\xdf\ +\x96\x95\xb5\x13\xef\xa9\xba\x1a\x36\x06\x3c\xb9\x15\x02\xc2\xf7\ +\x00\x40\x92\x9d\xfe\xba\x20\x82\x2c\xeb\xcb\xee\xde\xf5\x87\xc9\ +\xbb\xdf\x7b\xed\x81\x67\xeb\x34\xa7\x27\xf8\xde\xe4\x55\xcc\xa4\ +\xe3\xf9\x6b\x5c\x84\x90\x21\x00\x8e\xbc\xbf\x1e\x82\x13\x00\xd2\ +\x33\x00\x98\xef\xb0\x5c\x38\xb1\x8d\xaa\xe2\x0b\x8a\xc5\xe6\x0f\ +\xcb\x27\x1e\x8d\x74\x9a\x83\x53\x07\x4e\xe9\x42\x63\x8d\x43\x47\ +\xdd\x07\x50\x85\x99\x74\x3a\xef\xa7\x0b\x14\x80\x32\xe6\x38\x80\ +\x14\x7f\x46\x16\xf8\x20\xa9\x2a\xa9\x87\x9e\x9e\x2a\x47\x8a\xef\ +\x42\x02\x0c\xc0\x83\xfb\x77\xf2\xf0\xc3\x3b\xa9\x58\xa8\x38\xa8\ +\x18\x88\x27\xe0\x99\xdb\xde\x62\x79\x35\x77\x9b\xfa\xec\x21\xb6\ +\xff\x78\x2d\xbd\x17\x40\x2b\x83\xd9\x0c\x9a\x19\xc4\x01\x74\xd7\ +\x91\xf7\x65\x81\x26\x6f\x1f\x07\x10\x75\x7c\xcf\xc4\xcc\xfb\x66\ +\xae\x67\x0c\x10\xb7\x32\x96\x37\xb7\x70\xb8\xf2\x46\xfe\x50\x01\ +\x5d\x0f\xa5\x10\xfa\x0b\x30\x1c\xc2\xa0\x85\xf1\xd7\x4e\x6c\x3f\ +\xbc\x1a\xd6\x5e\x0a\x47\x32\xa8\x77\xa1\xde\x01\xdf\x85\x6e\x4c\ +\x3e\x9f\x04\x78\x93\xbf\xb8\x6b\xbe\xfd\xda\xf6\xe5\xb5\xf0\x5a\ +\xf2\xd0\xbc\xa9\x31\x7d\x1a\x33\xf8\xf4\x08\x48\xda\x2d\x06\xde\ +\xb9\x0e\x3b\xfc\x24\x59\xd8\x81\x14\x62\x20\x12\xe8\x01\x9a\x02\ +\x41\x00\x49\xc0\xd1\x4c\x94\xfc\x73\xd7\xc1\x91\x14\x1a\x09\x34\ +\xbb\x10\x25\x30\x1d\x83\x26\x80\x03\xe3\x5d\xb6\xfe\xf5\xaf\xbc\ +\xeb\x2e\x59\x53\xdd\xb5\xac\x2f\x2c\xce\x35\x5d\xd4\x85\x2d\x4d\ +\x2a\x4c\x95\x3a\xec\x9f\xba\x9c\xfd\xe5\xbf\xe6\x66\xef\x42\x33\ +\x86\xc0\x83\xf5\x40\x0a\x5d\x03\x7a\x0c\x80\x0a\x44\x06\xea\x11\ +\x34\x53\x98\xee\xc0\x54\x17\x66\xbb\x2c\x04\x82\x95\x8d\xcd\xba\ +\xf5\xe3\xdb\x6f\x73\x07\x26\x52\x3f\xda\xa0\x03\x20\x82\xba\x45\ +\x4c\x2e\x54\x3d\x9d\xa8\xc2\xaa\xc3\x5f\xe4\xc0\x8a\xdd\x64\x85\ +\x0e\x04\xd0\x6e\xc1\x74\x02\x84\x90\x05\x20\x3e\x9f\xa8\xc7\x02\ +\xcc\x7a\x88\x5a\xd0\x4a\xf2\x7b\x27\xda\xa0\xc5\xbc\x8d\x8d\x8b\ +\xba\xf2\xd5\xcf\x37\xeb\xcb\xca\xa9\x73\xd6\xb5\x9c\x75\xd5\x39\ +\x00\xac\x9c\x74\x2c\x1f\x5a\xd2\xd3\x47\x7f\xdf\xc5\x5c\xf4\xca\ +\x0e\xfe\x7d\xd5\x63\xa8\x78\xe8\x81\xb8\x05\x59\x06\x89\x81\x50\ +\xe1\x27\xff\xdc\x49\x2d\xac\x21\x40\xa3\x3b\xcd\x8c\x42\xd2\xcc\ +\xdf\x7e\x2b\x03\xed\x05\x0c\x18\x71\x7a\xd1\xcb\x37\x46\x83\x95\ +\xcd\x69\xd8\xd3\xdb\x72\xce\xda\xd8\x59\x9b\x03\x00\x8b\x9d\xde\ +\x19\x53\xa4\x5c\xbb\x80\xf5\x07\x3f\x8d\xfe\x39\xe3\x3f\x57\x3f\ +\x8e\x0f\x53\x70\xd0\x9d\x86\x89\x0c\x5c\x02\xf7\xbd\xb1\x13\x6b\ +\x00\xcd\xd7\xa9\x6e\x01\x3a\xb3\xa0\x0e\x98\x7b\xf3\x12\x1a\xd6\ +\x3d\xb3\xad\xbb\xb6\xfb\xa9\x76\xdf\xc8\xea\x8c\x42\x39\x72\xce\ +\xb9\xc8\xb9\xdc\xf5\x05\x10\x59\xec\x02\xc7\x62\xca\x35\x06\x56\ +\x6e\x42\xde\xd9\x46\xf0\xa7\x12\x7b\x3f\xf1\x18\x69\x35\x86\x0a\ +\x50\x87\x34\x84\xd9\x26\xf9\x1c\x71\xe4\x04\x16\x18\x20\x8f\xfb\ +\x65\xb0\xcd\x22\xeb\x9f\xbe\x81\xf5\x9d\x6d\x9d\x81\x91\x8b\xb3\ +\x9e\xea\x90\x4f\x3c\x2d\xe7\xac\x8b\x9c\xb5\x0b\x8f\x13\x16\xbf\ +\x42\xb3\x81\xa1\xb7\x7f\x39\xd6\x3a\xdc\x68\x91\xbe\x47\xd7\xb2\ +\xf7\xb2\x5f\x33\xbd\x79\x1f\xd9\x9a\x0e\x4c\x03\x83\x40\x83\x1c\ +\x2a\x24\x0f\x57\x83\x60\xbb\x21\x43\xff\xb8\x84\x0d\xbb\xb7\x51\ +\xab\x6c\xa4\xb6\xea\xe2\xac\x54\x5b\xe6\xad\x2b\xa0\x49\x16\xb9\ +\xc0\xda\xd8\xd9\x63\x83\x8f\x3f\xc9\x10\x16\x01\xc2\x39\x7a\x07\ +\x96\x13\x14\x42\x0a\x61\x89\xca\x9e\x15\xb4\x5f\x99\xe4\xf0\x86\ +\x97\x98\x58\xb7\x87\xb8\x5a\x87\x92\x60\x52\x87\x88\xc1\x4d\x96\ +\xe9\x7f\x69\x23\x6b\x0e\x5c\x4d\xa9\xbc\x8c\xde\x15\xab\xe8\x1d\ +\x5a\x45\xb1\x77\xc8\x5b\x1b\x28\x22\x78\x4f\xec\x02\x6b\x5b\x47\ +\x2d\xa0\xc7\xc7\xb3\xc5\x96\xb1\xb8\xea\x30\x61\x58\xa6\x6f\xf0\ +\x42\x5a\x8d\x71\x6a\x47\xd6\xd1\x3e\x38\x45\x9a\xb4\x41\x95\xbc\ +\xc6\x12\x8c\x75\x84\xa5\x2a\x95\xb5\x17\x52\xe9\x5f\x49\x58\xa9\ +\xe1\x82\x22\xc6\x1d\x5d\x34\xd4\x6b\xcb\x59\x6b\x62\x77\x4c\xe8\ +\x59\xea\x1a\xdf\xda\x80\x20\xa8\x52\x2c\x95\xa8\xd4\x86\x49\x3a\ +\xeb\xe8\xb6\x9b\x24\xed\x26\xaa\x1e\x63\x1c\x62\x2c\xd6\x15\x08\ +\xc2\x12\x41\xb1\x82\x2b\x14\x31\xc6\xe6\xd9\xa3\xcc\x67\x4f\xe0\ +\xbd\x89\x9d\x73\x12\xcd\x03\xe4\x79\xf7\xd9\xd8\xa5\x90\x1c\xc4\ +\x39\xc2\x9e\x1e\xd4\xd7\xf0\x59\x8a\xce\x59\x40\x90\xfc\x6c\x2c\ +\xc2\x5c\xd6\x37\xdf\xd2\x48\xfe\x1b\xe0\x55\x22\x17\x58\x13\xb9\ +\x39\x0f\x52\x05\xbf\x84\x1e\x74\x32\x90\xb9\xe0\x4d\x1e\x6e\x4e\ +\x2d\x73\x0c\x8f\xaa\x89\x9c\x7b\x2f\xc0\xd9\x25\x38\x63\x19\x33\ +\xef\x46\xa0\x2a\x91\x0b\x9c\x2e\xcc\x01\x55\x64\x91\x52\xb9\x25\ +\x93\xb5\x0b\xe3\x07\x34\x76\x56\x8e\x5a\x20\x77\xff\xf3\xdb\x02\ +\xd6\x0a\x66\xde\x02\x3e\xb7\x40\xcb\xda\x3c\x7f\x10\x8f\x9c\xc3\ +\xdd\xf6\xd3\x92\x35\x22\xc6\xcc\x4f\x02\xdf\x72\xd6\x4a\x3c\x9f\ +\x81\xfa\xa5\x59\x88\x17\x55\xce\x70\x74\x3b\xce\x4a\xec\x0a\x8e\ +\x99\x79\xa2\x4c\x14\x5d\xca\x85\x6c\x11\x64\x2d\xd8\xb9\xf1\x1a\ +\xd1\x19\x67\x45\xc7\xac\xc5\x90\x47\x50\x51\xfb\xc1\x1d\x9c\x6b\ +\x39\x83\xcc\x25\x0e\x26\x53\x1d\x73\x45\x09\xc6\xd4\xe8\xdc\xda\ +\x20\xe2\xcf\x7b\x0b\x88\x38\x2b\xa0\x48\x20\xc1\x98\x2b\xb6\x19\ +\x4b\x8a\x08\x22\xa8\xca\x79\x6f\x01\x6b\xe6\x01\x54\x82\x59\xc6\ +\x44\x55\x79\x64\x77\xf6\x36\x82\x4d\x52\x5f\x49\xd2\xac\xf7\x5c\ +\x0f\xf2\x83\x14\x38\x3b\x1b\x38\xd3\x44\xc9\x6e\xba\xdc\xae\x72\ +\xf9\x8f\x12\x2b\x54\xbc\xf2\x7f\xe0\x42\x88\xb3\x82\xe4\x15\x43\ +\xbe\x0b\xe1\x2c\x91\x42\x25\xf3\x88\x5f\xfa\x7f\x0c\xfe\x27\x59\ +\x83\x38\x0b\x02\x11\x2c\x00\x48\xa4\x40\x9a\x89\xe8\x62\x57\xf5\ +\x8b\xac\xf9\x39\x70\x3c\x80\xd1\xc8\x23\x18\x51\x6b\x16\xbd\x26\ +\x5e\x5c\x19\x51\x6b\x0d\x18\x34\x02\xc1\x89\x88\xfc\x76\x4f\xd6\ +\xee\x78\x24\xea\xa8\xf1\x67\xa5\x1e\xf8\xf0\x32\x46\x4d\x26\x48\ +\x68\x68\x8b\x88\x38\xc0\x36\xe3\x76\xb7\xed\x0b\x36\x6a\x27\x56\ +\x55\x97\xbe\x2c\xfb\xb0\xca\x2b\x32\x9b\xa9\xb1\x89\xe9\x76\x01\ +\xeb\x80\xc2\xdb\xfb\xf6\xbc\x58\x1d\xf9\xe8\x55\xc2\x7c\xa2\x77\ +\xbe\x02\x00\xa8\xe9\x74\x63\x5b\x3f\xf4\xaf\x17\x81\x82\x00\x25\ +\x60\x04\xf8\xd8\xdc\xb9\x4c\xbe\x2b\x73\x3e\x2a\x03\x5a\xc0\x21\ +\xe0\x75\xe0\x90\x90\x4f\xe4\x3e\xe0\x02\x60\x88\x1c\xe8\xf4\xea\ +\xbb\xb3\xaf\x84\x3c\xfa\x4c\x00\xe3\x40\x63\xbe\x28\xb5\xe4\xdb\ +\x49\xf9\x3f\x4f\xe7\xb7\x05\x12\xa0\x33\x77\x64\xff\x05\x13\x0c\ +\xb3\xc2\x0e\xb6\x76\x2f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x04\x5b\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\x31\x00\x00\x05\x31\ +\x01\xb7\xed\x28\x52\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\xd8\x49\x44\ +\x41\x54\x68\x81\xed\x99\x6b\x8b\x14\x47\x14\x86\x9f\xd3\xb3\x42\ +\x8b\xa8\x7f\xc1\x5f\x10\x08\x61\x41\x84\xe0\x22\xc1\x4c\x12\x08\ +\x03\x21\x08\x22\xa8\x10\x84\xb1\x10\xc4\x3f\x10\xe6\x9b\x20\x48\ +\x20\x0c\x2e\x8b\x60\x02\x22\x88\x04\x16\xc1\x75\x67\x91\x65\x45\ +\x30\x42\x10\x89\x8b\x9f\x37\x7f\xc1\x4b\x24\x97\xcd\x9e\x7c\xe8\ +\x6a\xec\xed\x6b\x55\x75\x4f\x86\x80\x2f\x1c\x7a\x87\xad\x3e\xe7\ +\x7d\xab\xea\x9c\xae\x8b\xa8\x2a\xff\x67\x44\xb3\x26\xd0\x16\xef\ +\x05\xcc\x1a\x4e\x02\x46\x22\xf1\x65\x91\xfe\xb4\xc9\xa4\xb8\x2c\ +\xd2\x1f\x89\xc4\x2e\x6d\x1b\x05\x8c\x44\xe2\xbd\xb0\x1c\xc1\xca\ +\x15\x91\x61\x7b\x7a\xf5\xb8\x22\x32\xec\xc1\xca\x3e\x58\x76\x11\ +\x21\x75\x55\x68\x24\x12\xef\x83\x65\xe0\x53\x00\x01\x15\x30\x97\ +\x54\xaf\x75\x47\xf9\x1d\xae\x8a\x0c\x15\xc6\x49\x28\x00\x26\x6f\ +\x60\xf0\xad\xea\x1f\x55\xef\x54\x0a\x18\x89\xc4\xfb\x33\xe4\x79\ +\xe7\x55\x75\x0a\x22\xae\x8a\x0c\x65\x37\xf9\x24\x18\x4c\x5e\xd7\ +\x88\x28\x15\x30\x12\x89\x0f\xe6\xc8\xe7\xa0\x80\xb9\xd8\x91\x88\ +\xef\x2a\xc8\x67\x30\x39\x08\x83\x33\x25\x22\x0a\x02\x7e\x10\x89\ +\x5f\xc3\xb2\x56\x93\x4f\x5e\xb4\x22\x2e\xb4\x14\xf1\x7d\x92\x57\ +\x75\xe4\x53\x4c\xf6\x97\x88\x28\x24\xf1\x5b\x58\x10\x38\x1e\xd9\ +\x7f\xd6\x98\x44\x30\x1e\xb7\x48\xec\xb1\xc8\x30\x82\xb1\xf5\xd5\ +\x14\xef\xf8\x5b\x58\xc8\xfb\x28\x08\x38\xaf\xba\x2a\x60\x22\xd0\ +\x3a\x87\x92\x98\x08\x8c\x17\x03\x44\x2c\xfa\x91\xd7\x1e\x98\xf3\ +\xaa\xab\x79\x3f\x95\x49\xbc\xe8\x3e\xb4\x90\x88\x35\xe7\x1c\xa7\ +\xd3\x52\xb1\xda\xd4\xfa\x96\x1a\xdf\xb5\x65\x74\xc9\x43\x84\xd8\ +\xea\xd4\x24\x62\xa9\x39\x61\xb3\x68\xf4\x59\x2b\x00\xe0\xba\xe7\ +\x48\x00\xe6\x9b\x8a\x80\xd7\x03\xc8\x57\xf9\x4a\xd1\x28\x00\xe0\ +\x46\xc0\x90\x9f\xcd\x05\xbe\x11\xd0\x11\x79\x1f\x65\x70\x12\x90\ +\x12\x70\xed\xbd\xb4\xc4\x9e\xb6\x04\x7e\x0c\x20\x7f\xda\x31\x9f\ +\x9c\x05\xa4\x44\x5c\x44\xa4\x5f\x6c\x01\x63\x19\x79\x8d\xde\x29\ +\x8f\x6f\x8b\x97\x00\x80\x9b\x9e\xbd\x69\x1b\x39\x93\x3f\xe9\xf9\ +\x61\xf4\x16\x00\x70\xcb\xaf\x3a\xb9\x40\x35\x80\x3c\x04\x0a\x00\ +\xb8\xed\x98\xd8\x0e\x02\x14\x30\x27\x02\x97\x24\xc1\x02\x00\xee\ +\xf8\x55\xa7\x24\xe0\xee\x9f\x0a\x98\xaf\x5b\xac\xa7\x5a\x09\x80\ +\x44\x84\x47\x6d\xcf\x36\x52\xc0\x7c\xd5\x72\x31\xd8\x5a\x00\xc0\ +\x4f\x7e\x25\x16\x6c\xc2\x0e\x3a\x58\x8e\xcf\xb5\x75\x00\xd0\xeb\ +\xc2\x49\x20\x5a\x8f\xc0\x5d\xbf\xb2\x9a\x85\x02\xe6\xcb\x59\x4e\ +\xa1\x7b\x01\x49\xbc\x2b\xb8\x15\xf1\xc5\x2c\x92\xf8\x7e\x4b\xf2\ +\x19\xa8\x80\xf9\xec\xbf\x2c\xa3\xf7\x3d\x2b\x8f\x03\x54\x03\x45\ +\x78\x0b\x58\xf3\x5f\x98\xe1\xda\x36\x02\xf3\xc9\x34\x97\x12\x0f\ +\x02\x56\x95\xf6\x6f\xaf\x4d\x91\x8f\x08\xe7\x32\xba\x6e\xf7\xb0\ +\x2e\x44\xb0\xe4\x8f\x59\x22\xeb\x22\xe0\xf6\xae\x08\x8c\xd7\x45\ +\x38\xd6\xe5\x72\xfa\x61\xc0\x86\xe6\x68\x8e\x40\x17\x3e\xca\xd0\ +\x28\xe0\x61\xc0\x36\xb0\x2a\xb0\x8f\xaf\xb4\xc4\x7e\xdc\x66\x4b\ +\xf9\x28\x80\x7c\x53\xc0\xae\x7d\x56\x0a\x78\x6c\x87\x5c\x3c\xe6\ +\xfc\x11\xc7\x79\xfb\x38\xa0\x18\x54\xf9\x2e\x15\xf0\xa4\x62\xbe\ +\x56\x44\x53\xc0\x1c\xf6\x2c\x7f\x4f\x02\x44\x94\xc5\x28\x08\xf8\ +\x59\xa4\x1f\xc1\x4a\x99\xe3\x92\x48\x2a\x60\xe6\x03\xbf\xa2\xbf\ +\xf8\x27\xf6\xe7\xf3\xb9\xd3\xb9\xc2\xd1\xe2\x9f\xb0\x11\xc1\x9a\ +\xeb\x71\x5f\x28\x79\x80\x79\xd5\x6b\x3d\x87\x63\x4c\x7b\x94\xb9\ +\xf6\x3b\x6c\xe4\x7d\x94\x4e\xa1\x8d\x92\xbb\x81\x1c\x14\x30\x1f\ +\x75\x74\xbc\xfe\xd4\xe1\x78\xfd\x15\x0c\x16\x5c\x8e\xd7\x53\x6c\ +\x54\xdf\x11\x28\x60\x3e\xec\xf8\x82\xe3\x59\xcd\x05\xc7\xcb\x0a\ +\xf2\xd0\x50\x46\x7f\x13\x89\x5f\xee\x16\xa1\x02\xe6\x83\x29\x5d\ +\x31\x3d\x2f\x26\xf6\xe4\x00\x0c\x0e\xd5\x5c\x31\xa1\xaa\xb5\xb6\ +\x05\xf1\x26\xac\x3e\x87\x9d\x5f\x61\xd8\xd4\xbe\xad\x6d\xc2\x70\ +\x13\x76\x36\x61\x75\x0b\xe2\xa6\xf6\x4e\x4e\xb7\x20\x7e\x01\xfd\ +\x69\x93\x4f\xed\x05\xf4\x5d\xc8\xab\x6a\x37\x9b\xfa\x59\xa2\xb0\ +\x1a\x95\x64\xe5\x38\x47\xb2\x57\xaf\xb3\x28\xf3\xcc\x5e\xdc\x64\ +\x2e\x70\x0a\x50\x6b\x3b\x99\x67\x6a\xff\x64\x9e\x75\xb6\x9d\xed\ +\x74\x51\x55\x44\xa4\x67\x49\xef\xb1\xcf\x2e\x2d\xb2\xc4\xb6\x3b\ +\xb4\xbf\x81\xbf\x80\xed\xc2\x14\xb2\x23\x50\xf6\x2d\xc9\xf6\x7a\ +\xd3\xc8\xcc\x65\xde\xa3\xa4\xa7\x53\x4b\x7f\x6f\x97\x8c\x40\xd9\ +\xe8\xec\x68\x8e\xf0\xbf\xac\xa9\x36\x72\x5a\xb3\xcd\xe8\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x5c\xbc\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xd7\x00\x00\x00\xb4\x08\x06\x00\x00\x00\x07\x1d\xb9\x41\ +\x00\x00\x20\x00\x49\x44\x41\x54\x78\xda\xec\xbd\xeb\x9a\xe3\xc6\ +\x8e\x25\xba\x80\x88\xe0\x45\xca\xcc\xba\xd8\xed\xdd\x3d\x33\xef\ +\xff\x4e\xe7\xef\x39\x73\x7a\x76\x6f\xdb\x55\xae\xcc\x94\x44\x32\ +\x22\x80\xf9\x11\xc1\xab\x48\x49\x59\x55\x76\xbb\xaa\x52\x9f\xf3\ +\x2b\x4b\xa9\xa4\x28\x32\x56\x00\x58\x00\x16\x48\x55\xff\x1f\xbc\ +\x3e\x5e\x1f\xaf\x8f\xaf\xfe\xe0\xd7\x4b\xf0\xfa\x78\x7d\xfc\x39\ +\x0f\xfb\x7a\x09\xbe\xaf\x87\xaa\x1a\x00\x0e\x00\x01\x08\x00\x02\ +\x11\xe9\xeb\x95\x79\x05\xd7\xeb\xe3\xcb\x00\x55\x40\x75\xaf\xd0\ +\xfb\xfc\xab\x96\x88\x9e\x54\xd1\x00\xe8\x88\x28\xbc\x5e\xad\x57\ +\x70\xbd\x3e\xae\x03\x2a\x81\x09\x5a\x41\x51\x28\xb4\xca\x00\x9b\ +\x3e\x4a\x55\x2d\x01\x15\x80\x4e\x80\x9e\x00\x3a\x12\x51\xf3\x7a\ +\x05\x5f\xc1\xf5\x2d\x2f\x7e\xfa\xda\xee\x58\xb6\x50\x77\x13\x40\ +\xb9\x74\x0f\xe9\x86\xd8\x5a\xf7\xaa\xd8\x01\xb8\x57\xd5\x13\x11\ +\x7d\x24\x22\xff\x7a\xa7\x5e\xc1\xf5\x6d\x00\x4a\x64\x2f\x1a\xdf\ +\xe7\x78\x87\x00\x08\x00\x10\x28\x80\xa8\x21\xa2\x16\xa0\xd3\x4b\ +\x41\xa7\xaa\x35\xa0\x6f\x01\x14\xaa\x70\x80\xf2\x1c\x50\xd3\xc3\ +\xd1\xca\x6b\xd3\x5f\x6a\x99\x2d\xda\x0e\xa0\x0f\x44\xfc\xf8\x7a\ +\xe7\xfe\x9c\x07\xbd\x52\xf1\x5f\xc3\xa2\x48\xa9\x22\xef\x55\xe5\ +\x0e\xdb\x66\x44\x01\x12\x10\x84\x40\x2d\x88\x8e\x44\x74\x22\xe2\ +\xf6\x82\xdb\xb7\x03\xf4\x8d\x2a\x8a\x73\x40\x4d\x01\x44\x09\xc9\ +\xaa\x10\x91\x64\xaa\x98\x41\x44\x5b\x20\x4b\x2f\x13\x04\xa0\x67\ +\x22\xfa\x95\x88\xe2\xeb\x9d\x7c\x05\xd7\xdf\xc9\xf5\x63\x95\xf8\ +\xb3\xaa\xde\x03\x6a\x3e\xe3\xf2\x47\x10\x3a\x22\x7e\x64\x36\x9f\ +\xf2\x31\xef\x01\xbd\x57\x45\x75\xcd\xb3\xe8\xb1\x13\x25\xc2\x87\ +\x08\x52\x01\xab\x82\x48\x11\x95\x01\x66\x38\xe7\xd2\xfb\xe6\xa0\ +\x82\xea\xec\x38\x0d\x11\xff\xeb\x35\x16\x7b\x05\xd7\xdf\xc9\x05\ +\xfc\x07\x54\xbf\x8a\x6b\x4d\xc4\x0a\x62\xe0\x86\x00\xaa\xb7\x46\ +\x31\x46\x78\x1f\xc0\x50\x38\x4a\x60\xa3\x11\x3f\x08\xa2\xf0\x4a\ +\xb0\xce\xc1\x1a\xb3\x62\xc3\x66\xee\x64\x60\xe6\x7f\x12\xd1\xf1\ +\xf5\xee\xbe\x82\xeb\xbf\xcb\x5a\x59\xd5\xf8\x4e\x45\xde\xf5\xdb\ +\xbe\x8a\xa0\xeb\x3c\xfe\xf8\xf8\x88\xa6\x69\x41\x16\x30\xc6\xc0\ +\x59\x0b\xe7\x1c\xca\xa2\x80\xb5\x06\x6c\x0c\xcc\xe0\xae\x51\xfe\ +\x8f\x90\x41\x75\x15\x50\xaa\x80\xaa\x42\x62\x84\x48\x04\xab\xc0\ +\x32\xe1\xdc\xf9\xd3\xc9\xf9\x02\x3e\x2a\xd4\x18\x58\xeb\xc0\x7c\ +\x11\xbb\x42\xc4\xff\x24\xa2\xc3\x6b\x6e\xec\x15\x5c\x7f\x25\xa8\ +\x8c\xaa\xec\x55\xe5\x3d\x54\x8b\x84\x2b\x42\x88\x11\x4f\x4f\xcf\ +\x38\x1c\x8e\x28\x8a\x0a\xce\x59\x44\x8a\x10\x11\x68\x54\xc4\x2e\ +\x42\x45\x61\xc9\x82\x0d\xa1\xdc\x15\xd8\xef\x77\x30\xd6\xde\x66\ +\xa4\x90\xe2\x28\x11\x85\x6a\xfa\x61\x89\xb0\x0c\xac\x46\x54\x13\ +\x7f\x2f\x59\xb0\x6c\xe5\xb2\x15\x63\xeb\x60\xad\x05\xcd\x5c\xc3\ +\xd9\x51\x94\xd9\xfc\x17\xf3\x2b\xd1\xf1\x0a\xae\xbf\x86\xb0\xd8\ +\xa9\xc8\x1b\x55\xb9\xef\xad\x15\x01\x38\x9d\x1a\x7c\x7a\x7c\x84\ +\x10\x50\x54\x45\xb2\x48\x0a\x50\x60\x18\x31\x30\xe2\x60\xd5\x81\ +\x94\x60\x1c\x43\x5d\x04\xef\x00\xe3\x18\xeb\xe4\x04\x4d\xc1\x9c\ +\x00\x9a\xff\x35\xc6\xc0\x98\x14\xd6\xc5\xe0\xc1\xd1\x67\x0b\xb8\ +\x04\x94\x26\xd0\xe9\x14\x34\x3a\xbc\xad\x8d\x0a\xb2\x0e\xce\x15\ +\xb3\x58\x4c\xfb\x8f\xcf\x6f\x35\xc6\xfc\x1f\x66\x7e\x7e\xbd\xfb\ +\xaf\xe0\xfa\x13\x5d\x40\x79\x50\x95\xb7\x7d\x6c\x45\x44\x88\x31\ +\xe2\xf9\xf9\x80\xe7\xe3\x11\xb6\x74\x70\xa5\x03\x3a\x80\xa3\x81\ +\x89\x0e\x4e\x0b\xb0\x26\x4b\x45\x56\xc1\x15\x40\x95\x82\x5c\x5a\ +\xbc\xaa\x97\xac\x54\xb6\x50\x22\x00\x11\x98\x19\x6c\xcc\x0c\x30\ +\xaa\x0a\x6d\x8f\x60\xa2\x09\x24\xb3\xdb\xd8\xbb\xaa\xc8\x41\x58\ +\x46\x8e\xaa\x80\x25\x82\xa0\xe8\xa2\x22\xb2\x85\x2b\x4a\x18\xc3\ +\xd0\xf5\x13\x12\x63\xcc\x3f\x99\xcd\x2b\xc0\x3e\xf3\xf1\x9a\xe7\ +\xda\x0a\x3e\x24\x3e\x40\xf5\x41\x55\x76\xbd\xb5\x62\x22\x1c\x0f\ +\x47\x3c\x1d\x8f\x88\x10\xb8\xda\xc1\xc2\xc1\x1c\x0b\xd8\x58\xc0\ +\xa8\x05\xab\x01\xac\xc0\x54\x0a\xce\x80\x22\x9b\x80\xa1\xb2\x46\ +\x64\xa4\xdf\xc5\x18\x21\x2a\x20\x10\x88\x08\x6c\xcc\x40\xa7\xab\ +\xea\xc4\x71\x23\xa8\x84\x6c\xa3\x46\x2b\x17\x15\x00\x5b\xb0\x31\ +\x50\x9a\xc4\x75\xbd\x35\x53\x45\x0c\x1e\x14\x1a\x14\x46\xd1\xc5\ +\x0e\xed\x29\xc2\x95\xc9\x95\x15\xd1\xa5\x9f\xc9\x21\xc4\x7f\x58\ +\x4b\xca\xcc\x87\xd7\x15\xf1\x0a\xae\xaf\x61\xad\x5c\xa6\xd7\x77\ +\x03\xbd\x9e\x2d\xc0\xa7\xc7\x27\x1c\x4e\x47\x18\x67\x61\xc9\xc0\ +\x86\x12\x65\xdc\x81\xd5\x82\x84\x40\xa4\xc0\xbd\x87\xab\x19\x64\ +\x69\x48\x25\x27\x50\x2d\xad\x43\x3a\x66\x08\x11\x21\x04\x10\x01\ +\xd6\x26\x57\x8d\x68\xee\x1e\xce\x40\xaf\x02\xf5\x6d\x6a\x67\x50\ +\x85\x8a\x42\xd8\x00\xae\x00\x73\x72\x37\x89\x96\xee\x49\xb2\x62\ +\xec\x4a\x44\x89\x40\x68\xe0\x08\x80\x7a\x34\xa7\x08\xd1\x1d\x0a\ +\x67\x57\x2c\x98\x9a\x10\xc2\xbf\x39\xe7\xba\xd7\x6a\x8e\x57\x70\ +\x7d\x19\xb0\x44\xee\x45\xe3\xcf\x48\x09\x5c\x0c\x6e\xa0\x08\x3e\ +\x7e\xfc\x03\x8d\xef\x50\xed\x6b\x20\x28\x5c\x57\xa1\xd4\x7d\xaa\ +\xc1\x20\x05\xf6\x11\xf6\x3e\x59\x9c\x2d\x82\x61\xfa\x88\xb1\x07\ +\x95\xc0\x1a\x05\x71\x31\x63\xf2\x74\xdd\x6b\x84\xb4\x0d\x58\x22\ +\x40\x94\x92\xc6\xec\xc0\xae\x04\x31\x4d\x42\x2c\xdd\x38\x0e\x01\ +\x6c\xa1\x2a\x50\x00\x96\x80\x8a\x02\x4e\xc7\x03\xb0\xdb\xc1\x59\ +\x3b\x8b\xd5\x72\x9e\xb9\xf0\xbe\xfb\x47\x51\x94\xff\xfb\x75\x85\ +\xbc\x82\xeb\xf3\x62\x2b\x89\x3f\xab\xca\xc3\xdc\x65\x23\x9c\x9a\ +\x06\x1f\x3f\x7e\x02\x19\x46\x7d\xb7\x03\xbc\xc0\x75\x3b\x14\x52\ +\x03\xac\xe0\x9d\xc2\xdc\x09\x8c\xb3\x93\x95\x3c\x67\x07\x06\x77\ +\x4e\x35\xb9\x7f\x12\x01\x44\x58\x03\x30\xa5\xca\x8a\xd1\x85\x5b\ +\x70\x1c\x19\x13\x12\x63\x72\x17\x8b\x02\x12\x18\x1a\x3d\xc8\x38\ +\xb0\x2b\x40\xf9\xd8\x9b\xfc\x48\x0f\x18\xa2\x44\x8e\xa8\xa4\x98\ +\x4c\x15\x06\x8a\x12\x11\xed\x51\x41\xfb\x3b\x18\xe6\xfc\xf6\x1e\ +\x60\x04\x55\xd9\x79\xef\x7f\x71\xce\xfd\xeb\x75\xb5\xbc\x82\xeb\ +\x56\x50\x11\xa0\xb5\x48\xfc\xf7\x65\x32\x98\x99\xf1\xe1\xe3\x1f\ +\x78\xfa\xf4\x8c\xfa\xbe\x86\xad\x1c\xa4\x13\xd8\xae\x46\xa1\x35\ +\xec\x1e\xe0\x3d\xc0\x96\x40\xb4\xea\x52\xcd\x9e\x85\x10\x10\x63\ +\x00\xb3\x24\x1a\x9d\x52\x2c\xa4\x00\x88\x14\x22\x1d\x88\x6a\x8c\ +\xcc\x05\xf5\x4c\x25\x62\xe8\xd0\xb5\x3e\x25\x8b\xad\x05\x6c\x01\ +\xb6\x6e\xc6\x10\x2e\xf1\xac\xc9\x87\x9c\x91\x92\xaa\x0a\xf5\x4d\ +\xfa\x0b\xd1\x0c\x38\xc0\x19\x45\xf4\x0d\x9a\x03\xa1\xda\xef\xc1\ +\x44\x83\x01\xec\xd3\x5d\x31\xc6\x7b\x66\x3a\x19\x63\x9f\x5e\x61\ +\xf3\xca\x16\x5e\x03\x96\x51\x8d\xef\x87\x64\xf0\xd4\x65\x13\xc1\ +\xef\xbf\x7d\x80\xb6\x0e\x6e\x4f\xa0\x8a\x00\x01\xb8\xb1\xd8\x99\ +\x7b\xb8\x37\x00\x3b\x85\xea\xc5\x22\x59\xa8\x02\x22\x11\xde\x7b\ +\x30\x09\xac\x5d\xda\x33\x9d\xc4\x55\x8a\x28\x06\xcc\x16\x20\x4e\ +\xae\x9b\x44\x00\xe9\x6f\x09\x40\xd3\x11\x10\x14\x86\x00\x53\xdf\ +\x25\x17\x54\xa7\xd4\xc6\xba\xd5\xeb\xb1\x17\x43\x07\x3d\x7d\x82\ +\xe3\xc4\x4a\x26\x32\x25\xbd\x91\x09\xf8\x70\x08\x70\xbb\x07\xd4\ +\xbb\x7a\x35\x03\xc7\xcc\x27\xe7\x8a\x7f\x32\xf3\x6b\xfc\xf5\x6a\ +\xb9\x56\x41\xc5\x50\xad\x45\xe3\x4f\x50\xad\xa6\x2e\xa0\x88\xe0\ +\xd4\x34\xf8\xf4\xf1\x80\x52\xee\x60\x76\x40\x28\x5a\x30\x0c\x0c\ +\x08\xbb\xfb\x1d\xdc\x2e\x5b\x1c\x5d\x07\xd5\x50\x45\x21\x02\x91\ +\x00\x68\x84\xb3\x69\xf1\x6a\x0f\x24\x9a\x12\x15\xe3\x31\x2c\x7b\ +\x44\xe9\x86\xd7\xfb\x10\xac\x07\x41\x55\x2a\xbc\x01\x7c\x28\xe0\ +\x4c\x8a\x9d\xd6\x0c\xa5\x4e\x5f\x48\xdc\x3c\x24\x06\x48\xf3\x0c\ +\x87\x88\x18\xc7\x63\xf6\x2e\xa3\x00\x78\x53\x13\x3e\x9d\x9e\x60\ +\x0c\xa3\x28\xca\x33\xfe\x25\x8a\xd4\x1c\xc3\x03\x91\xfb\xf0\x5a\ +\xc1\xf1\x0a\xae\x73\x26\x50\xe3\x5b\x15\x7d\x93\xaa\xcc\x47\x60\ +\xf9\xe0\xf1\xf4\x78\x80\x3f\x12\xf6\xf4\x13\xc8\x45\x74\xf6\x19\ +\x65\x51\xa1\x34\x69\x31\xf3\x76\x4e\x28\x83\x4a\x10\x63\x84\x6a\ +\x04\x20\x30\xac\x03\x73\x27\xd3\xbf\x9b\x02\x4b\x47\x30\xa8\xf6\ +\xef\x4f\xaf\x88\xf4\x56\x49\xc1\x94\x00\x6d\x8d\x80\xc8\x64\xa4\ +\x2e\x71\x75\xce\x48\x26\x8b\xe5\xa1\xcd\x13\x4c\x6c\x21\x39\xfd\ +\x25\x92\xc0\x3b\xe6\xce\xd2\x06\x70\x5f\x08\x1e\x0f\x4f\x30\xf9\ +\xfb\x8e\x2e\x4e\xfa\xd7\x87\xf0\x8e\x88\x1b\x36\xe6\x08\x55\x56\ +\x80\xfb\x7f\x29\x5d\x4c\x21\x20\x32\x73\x78\x05\xd7\x0f\x03\x2c\ +\xa9\x45\xe2\xcf\x50\xad\x27\x8c\x45\x72\xb7\xda\x16\x8f\x7f\x1c\ +\x80\xae\xc0\xde\xde\x83\x08\x88\x75\x83\xfb\xfd\x3d\x4a\x57\x4c\ +\xe2\x9f\x75\x4b\x45\x43\x5c\x15\x11\x83\x87\xb3\x02\x36\x94\x16\ +\xae\x66\x2b\xd7\xaf\xce\x21\x67\xa5\xf3\x03\x4c\x2c\x1a\x91\x22\ +\x04\xa0\x6d\x08\x8c\x54\xcf\xab\x00\xc8\x64\x00\xb2\xc0\xd8\x21\ +\x62\x1b\xc0\xb1\xe6\x1b\x86\xf6\x04\x6d\x9f\x61\x31\xae\x75\x91\ +\x04\xbb\x14\x92\x8d\x56\x58\x32\x42\x0a\xb4\x78\x7c\xfc\x84\xb7\ +\x6f\xdf\xe6\xb3\xcc\x69\x85\x94\x85\xe3\x18\xe3\xcf\x0a\x34\x50\ +\xb0\x02\x26\xa7\x2c\x4c\x0f\x2e\x26\xf2\x22\xd2\xe5\x1a\xc5\x1f\ +\xb6\x10\xf8\xbb\x8f\xb9\x54\x95\x54\xe5\xad\xaa\xbc\x9b\x92\x16\ +\xc4\x0c\x89\x11\x8f\x4f\x4f\x68\x0f\x11\x85\xdc\xa3\xb0\x25\x6c\ +\x01\x70\x2d\x30\x55\x2a\xbe\xbd\xc4\xc2\xc5\x28\x43\xff\x94\xb5\ +\x26\x27\x83\x03\x62\xf4\x20\x24\x77\x70\xb0\x0c\x1b\x80\x52\xcc\ +\xad\x18\xa8\xaf\x21\x04\xbc\x27\x88\x4f\xc4\x84\x23\x40\x29\x27\ +\x8b\x89\xe1\x76\xf7\x60\xeb\x40\x4b\x12\x23\xd7\x1f\x46\xdf\x42\ +\xfd\x09\x14\x1a\x18\x28\xb4\xaf\x98\xcf\xf1\x5d\x6f\x25\xb5\x2f\ +\x1c\x26\x06\xb1\x01\xd8\x02\x6c\xd0\x04\xc2\x6e\xb7\x1f\x92\xe7\ +\x69\x23\x4a\x09\x6e\xea\x81\x46\x73\x66\x75\xe5\x32\x79\x00\x07\ +\x00\xbf\xff\x88\xfd\x62\xdf\x35\xb8\x32\xc5\xfe\x8b\xaa\xec\x27\ +\xc4\x34\x98\x19\x9d\xef\xf0\xf1\xc3\x23\xb4\xb3\xa8\xe8\x1e\x65\ +\x6d\x61\x77\x80\x29\x00\x32\xe7\xe4\x80\x4e\x16\x91\x8a\xa0\xf3\ +\x29\xa6\xef\x01\xe8\x83\x47\x59\x14\x60\x36\x39\x87\xd5\x21\x86\ +\x0e\x65\x31\x75\xd7\x14\x53\xa8\x2d\x41\x46\x84\xc4\xe2\xd1\xf8\ +\xfe\x28\x40\xf0\x84\xd0\x02\x05\x29\x4a\x06\x04\x8a\x08\x03\xb1\ +\x05\xc8\x14\xb9\xaa\x5e\x13\x3d\xcf\x16\x6c\x2d\xc2\xd3\x6f\x60\ +\x0d\xc9\x57\x9b\x00\x0a\x6c\xa0\x6c\x41\xc6\x81\xd8\x81\x8c\x01\ +\xb1\x49\x7f\xc7\x0c\xa2\xd4\x07\x46\xd9\xaa\xaf\x01\xe7\x33\x1e\ +\x47\x00\xff\x49\x44\xf2\xea\x16\x7e\x1f\x6e\xe0\x4e\x62\xfc\x1f\ +\xd3\xd8\xaa\x07\xd6\xf1\x74\xc2\xef\xbf\x7e\xc4\x9d\xf9\x37\x58\ +\x6b\x51\xbd\x61\x98\x2a\x17\x62\xd0\x39\xa0\xa6\x8f\xae\xeb\x10\ +\x42\x80\x73\x05\x8c\x35\x18\x1a\x3e\x88\xd0\xb6\x1d\xac\xb5\xb0\ +\xd6\xc2\xb9\x02\x22\xc0\xb1\x69\xb0\xab\x75\x70\x11\x7b\x70\xcd\ +\xea\x01\xb3\x15\x09\x21\x31\x8a\x12\x01\x62\x85\x08\xc0\xac\xb0\ +\x56\xe1\x0a\xe0\x70\x60\xb4\x1d\xb0\xb7\x02\xcb\x82\xd8\x79\x28\ +\x0e\xe9\xef\x13\x6d\x01\x6f\x76\x30\xd8\x41\x43\x07\x63\x09\x11\ +\x06\xe4\x0a\xc0\x96\x60\x9b\xc0\x4f\x19\x44\xc9\x0a\xa5\x1f\x4c\ +\xc0\xf4\x27\x3c\x76\x00\xfe\x07\x80\x1f\x2a\x11\xfd\x5d\x5a\x2e\ +\x91\xf8\xb3\x4a\x7c\x3f\xff\xa6\x09\x04\x8f\x9f\x9e\xf0\xf1\xf7\ +\x67\xbc\xdf\xff\x03\xe5\xce\xa1\xbc\xc7\x59\xbe\x77\xad\xa9\x30\ +\xc6\x88\xae\x4b\x95\xe8\x55\x55\x61\xd1\xb3\x91\x3f\x57\x70\x3a\ +\x9d\x32\xb8\x52\x95\x6e\xd3\xb4\x08\xfe\x84\xba\xd6\x21\x61\x4c\ +\x43\x91\xad\x0e\xb4\x83\xaa\x82\x0d\x10\x82\xc2\x98\x1c\x17\x65\ +\x12\x83\x59\x11\x63\x7a\xfd\xd4\x10\x9a\x13\xa1\x82\xa2\xb2\x9a\ +\xad\xde\x58\xa4\x1b\xdc\x1d\xd8\x15\x29\x56\xb3\x05\x8c\xb1\x83\ +\x2b\xd7\xe7\xaf\xbe\x82\x25\x5a\xdf\xd0\xd6\x02\xd2\xc9\x33\x22\ +\xfa\x8d\x88\x3e\xbe\x82\xeb\xdb\x74\x03\x8b\xec\x06\xee\xe6\xb8\ +\x22\x78\xef\xf1\xe1\xc3\x27\x70\x2c\xf1\xe6\xe1\x0d\xec\x0e\x60\ +\x83\x4d\x4a\xbd\x7f\xc4\x28\xe8\xba\x16\xcc\xa9\xd9\xb0\x8f\xad\ +\x30\xa5\x13\x26\x09\xdc\x28\x11\xa7\xe3\x09\xce\x99\xdc\x62\x4f\ +\x68\x9a\x16\x6d\x7b\xc0\xbe\x96\x21\x79\x4c\x13\x07\xb1\xb7\x5c\ +\x22\x0a\xc3\xa9\xf7\x8a\x39\x3d\x27\x4e\xae\x22\x71\x02\x9c\x31\ +\x0a\x89\x8a\xe3\xc9\x80\xc4\xa1\x72\x2e\xc5\x5e\xd6\x81\x8c\x83\ +\x31\x66\xb4\x48\x5f\x11\x48\xba\x0a\x1a\xba\x78\xed\x56\x1e\x0d\ +\x11\xfd\xe7\x8f\xa2\x9f\xf8\xdd\xb8\x85\x2a\x72\x27\x1a\x7f\x59\ +\x6b\xbb\x6f\x9a\x06\x7f\x7c\x3c\x60\x5f\xdf\xe3\xee\xa1\x4e\xac\ +\x1b\x2e\xb4\x7e\x68\xb2\x30\x5d\xd7\x41\x44\x50\x55\x15\x98\xcd\ +\xc0\x18\x4e\xf1\x98\x0a\x89\xc6\xf2\x23\xc3\x06\x55\x5d\xe1\xf9\ +\xf9\x09\x22\x82\xa2\x28\x50\x14\x05\x00\xe0\xe9\xf0\x88\xbb\x5d\ +\x06\x4e\x76\xe5\x7a\xaa\x3d\x01\x27\x59\x2e\xee\x01\x36\x50\xe6\ +\x84\x18\x01\xc3\x8c\x28\x15\x88\x4b\xdc\xdd\x97\x60\x36\x60\xe2\ +\xec\xe6\x65\x2e\x8f\xbe\x16\x80\x2e\xda\xa4\x2b\xaf\x6f\x3e\xb2\ +\xe8\x0e\x1e\x5f\xc1\xf5\x6d\x58\x2b\x56\x95\x07\x15\xf9\x79\x19\ +\x5f\x89\x28\x9a\xb6\xc1\xe9\xd8\xe2\xe7\x9f\x7f\x82\x2b\x4d\x6e\ +\x40\xdc\x3c\x16\x44\x24\x5b\xab\x0e\x65\x59\xa2\xae\xeb\x05\xe3\ +\x87\xa1\x2a\x82\x66\xf6\x67\xa4\xea\x09\x40\x5d\x46\x1c\x4f\x4f\ +\x50\xdc\xa3\x70\x0e\xae\x70\x08\x61\x8f\xc3\xf1\x09\xbb\x5d\xa2\ +\xdb\x75\x12\x77\x11\x14\x21\x27\x77\x45\x09\x44\x06\x0a\x06\xb1\ +\x05\xa8\x84\x35\x25\x98\x4b\x38\x26\x70\xef\x05\x7e\x61\x9c\xa4\ +\xdb\xff\xf3\xf5\x01\x9a\x4e\xd4\x40\xf5\x0e\xc0\xd3\x8f\x90\x84\ +\xfe\xa6\xdd\xc2\x31\x29\x2c\x6f\xa7\x6c\x60\x4f\x49\x7b\x1f\x20\ +\xaa\xa8\xeb\xba\x27\x39\xd2\xdb\x74\x42\x16\xe7\xdc\x52\x08\x31\ +\x27\x80\x15\xcc\x06\x45\x51\x80\x78\x51\x10\xbb\x52\x6a\x94\xc8\ +\x04\x9a\x30\x80\x40\x08\x47\x10\x3d\x41\xa2\xe0\x78\x32\x28\x8a\ +\x7b\x94\xa5\x83\xa8\xe2\xf0\x7c\x84\xea\x33\xf6\x3b\x1d\xfe\x4a\ +\xc1\x00\x0c\x00\x9b\xca\x9f\xe0\xc0\x6c\x41\x54\x64\x16\x8f\x72\ +\x86\x56\x3f\xcb\xcd\x9b\x63\xe7\x33\xd7\x74\x0f\xe4\xbe\xee\x50\ +\x04\x12\x13\xf9\x47\x4c\x20\xe6\x31\x87\xa7\x97\xce\x84\x02\x33\ +\xfd\x17\x11\x7d\xf7\x3d\x62\xf6\xdb\x05\x96\x54\x2a\xf2\xf3\x32\ +\xbe\x1a\x75\xc3\x92\xea\x51\xea\xb4\x95\x49\x2e\x48\x67\x8b\xa4\ +\xeb\x3c\xba\xae\x05\x41\x61\x8b\x0a\x85\x75\xb9\x2f\x6a\x2c\x6e\ +\xd5\x2b\xde\x90\x4e\xa8\x45\x91\x00\xd5\x23\x80\x08\x6b\x81\xaa\ +\xf2\x38\x1e\x3f\x01\xf4\x06\x85\xb3\xa8\x77\x15\x4e\xc7\x88\xb6\ +\x6d\x50\x94\x0e\x44\x0e\xcc\x0e\x44\x99\xc9\x23\x06\x93\x19\xfa\ +\xba\xe6\x58\xa2\xab\x20\x3a\x6f\xf1\xc7\x17\x80\x89\xc6\x9c\x9e\ +\xf7\x08\x21\x20\x78\x8f\xe8\x03\x42\x0c\x90\x10\xa0\x00\xd8\x18\ +\x94\x55\x85\x6a\xb7\x9b\xb4\xdc\x6c\xba\x92\x56\x15\x77\x00\x8e\ +\xdf\xbb\xf5\xfa\x26\x2d\x57\x96\x35\xfb\xb7\x5e\x28\x66\x09\xae\ +\xb3\x6e\x8b\xe9\xd2\xa4\x44\x0c\x78\xef\xd1\xb6\x2d\x08\x1d\xac\ +\x15\x58\xbb\x87\x2b\xee\x66\x40\x59\xba\x82\x63\x11\xac\x4e\x2c\ +\x59\xb6\x28\x48\xb5\x89\xc1\x7f\x02\xf1\x11\x69\x23\x4f\x65\x4b\ +\xde\x03\x87\x63\x81\xfd\xdd\x3b\x30\xf7\x95\x1b\x02\xeb\x1c\x98\ +\x0c\x98\xb7\x93\xb3\x37\x81\xa9\x27\x19\x5e\xca\x2f\xf4\xec\x61\ +\x6f\x43\x73\x02\x3a\x7d\x0f\x8f\xd0\x75\x08\x9d\x87\x0f\x3e\xb5\ +\xca\x84\x80\x18\xc2\xbc\x94\x2b\x3f\x98\x19\xbb\xbb\x7b\xdc\xbf\ +\x7b\x0b\x6b\xaf\xee\xd9\x91\x99\xff\x93\x88\x4e\xaf\x96\xeb\xef\ +\xe3\x06\x92\xaa\xbc\x57\x95\x37\x4b\xe2\x42\x67\xec\x15\xcd\x2b\ +\x22\x90\xaa\x0c\x42\x8c\x38\x9e\x3a\xa8\xb4\x60\xf2\xb0\x46\x50\ +\x38\x40\x95\x01\x32\xb9\x20\x57\x57\xad\xd4\x0c\x74\x67\xee\x21\ +\x21\x4a\x44\x0c\x9f\x00\x1c\xc0\x24\x48\xf5\xc1\x16\x11\x0e\xc6\ +\x15\xb8\xbb\x73\x30\xb6\x77\xf1\x38\xb9\x52\x2f\x61\xf4\x14\x50\ +\x3a\x77\xed\x6e\xe2\x1d\x86\xd3\xe4\x41\xdb\x30\xc6\x08\xf1\x09\ +\x34\xbe\xf3\x88\xc1\x23\x86\x80\xd0\x75\x88\x92\x2a\x4f\xb4\xff\ +\x59\x6c\x50\xbc\xf2\x71\x22\x82\xc3\xe3\x27\xb0\x61\xdc\xbf\x7d\ +\x9b\xad\xff\xf9\xa9\xe5\xaf\x60\x52\xa7\x37\x9a\xef\xd9\x7a\xd9\ +\x6f\x0a\x58\x12\xff\xa3\xaf\xb6\xd0\x4b\xd1\x45\x0f\x10\x02\x98\ +\x18\x21\x46\x3c\x1e\x8e\x88\xa1\x45\x61\x23\xca\x22\xed\xd2\xc6\ +\xd0\xa8\x1d\x81\x79\x3d\xed\x99\x95\x9a\x1d\x5e\x07\xcd\x41\x45\ +\xea\xd5\x7a\x7e\xfc\x00\x6b\x1b\xec\xf6\x16\xa2\xf7\x00\x0a\x18\ +\xe3\x00\x32\x60\x22\xb0\x1b\x93\xb6\xb8\x01\x50\xab\x71\xd2\x4b\ +\x97\xe1\x84\x92\x17\x11\xf8\xd3\x01\xfe\x74\x82\x6f\x1b\x48\x8c\ +\x80\x08\x14\x0a\x1f\x15\x3e\xc8\xb0\x25\xcd\x2c\xd2\x0d\xd6\x73\ +\x6a\x41\xbb\xd3\x11\x7e\xb7\x43\x51\x56\xf3\xf2\xa8\xc5\xf7\x52\ +\xc5\x8e\x08\x9f\x00\x84\x57\x70\xfd\x37\x33\x82\x22\xe1\x7f\x41\ +\xb5\x52\xbd\xdd\x55\x92\x28\xf8\xe3\xe9\x11\x5d\x7b\xc4\x7e\xa7\ +\xd8\xed\x26\x2e\x17\x65\x82\x83\x08\x22\x11\x04\x0f\xa0\x1a\x01\ +\x75\x56\xc4\xbe\x70\x05\xb3\x25\xf1\xed\x09\xda\xfd\x81\xfd\xae\ +\x06\xcc\x3b\x80\x0c\xac\xc9\x22\x33\x93\x0a\x88\x9b\xc1\xf4\xa5\ +\xc4\xc3\x84\x68\xf1\xa7\x23\xfc\xf1\x80\xee\x70\x40\x0c\x61\xb6\ +\xc8\x69\xe2\x19\x96\x44\x20\x06\x32\x3f\xf1\x22\x06\x52\x17\x20\ +\x43\x08\xf0\xcd\x29\xc7\xbb\x97\x14\xbe\xb5\x54\x50\x49\xaf\xe0\ +\xfa\xef\xb3\x56\x50\xad\x44\xe2\x2f\x79\xce\xd4\xd9\x3e\xa8\x93\ +\xe7\xc3\x0e\xdd\x79\xb4\xed\x11\x5d\x77\x42\xe1\x04\xef\xde\x30\ +\x54\x09\x3e\x28\x44\x09\x31\xdf\xce\x18\x39\xb9\x48\xa2\x30\xee\ +\x88\x3b\x2e\xc1\xc6\x2d\x2c\xd7\xc2\x35\xcb\x0b\x57\x45\x10\x42\ +\x0b\xc3\x0c\x73\xf7\x1f\x09\x4c\x59\xa8\xf3\xc5\x80\xd2\x2f\x03\ +\x52\xcc\xb1\x50\xf0\x1e\x5d\xd3\xa0\x3b\x9d\xa0\xbe\x83\xd5\xde\ +\x7a\x27\xbd\x8c\xfe\x1a\xd1\x02\x64\x04\x85\xb3\x06\x4d\x10\x44\ +\xd1\x17\x01\x6b\x69\x91\x58\x05\xd2\x36\x08\x55\x05\x36\xe7\x4d\ +\x97\x34\x02\x91\x49\xb5\xd6\xef\x98\xd8\xf8\xdb\x11\x1a\xa9\xf5\ +\x1e\x26\xb3\x81\x6f\xb2\x6f\x4e\xc0\x46\xc7\x6d\x4f\x7f\xc7\x80\ +\xe3\xb1\x41\xd3\x1c\x01\x0d\x30\x0c\x58\x9b\x7a\x35\x48\x93\x0b\ +\xc7\x94\x12\xb3\x86\xd2\xff\x13\x01\x27\x9f\x4a\xb7\xcb\x2a\x82\ +\xc8\xc1\xd8\x07\x18\x5b\x81\x88\x87\x0a\xf2\xde\x12\x2c\x86\x17\ +\xe4\x24\x2e\x4d\x98\x3d\xba\x4a\x48\x7c\x29\x93\xd7\x03\xdb\x77\ +\x1d\xda\xe3\x11\xbe\x6d\x33\x83\xe7\x21\x13\xe0\x58\x02\xf6\x8e\ +\x20\x51\x87\x38\x6b\x69\x95\xa6\xff\xcf\x04\xa8\xb1\x38\x74\x11\ +\x51\xf4\xf2\x20\xa2\x0b\x1b\x45\xe1\x92\x86\x81\x7b\xf3\x0e\xf5\ +\xdd\xfd\x59\xec\xb5\x88\xbf\x3c\x33\xff\x7f\xdf\x6b\xc5\x86\xfd\ +\x1b\x81\x8a\x01\x75\x9a\x2c\xd5\x4f\x50\xb5\x7a\x65\x91\x89\x28\ +\xbc\xf7\x38\x1d\x8f\xe8\x9a\x23\x98\x80\xca\x10\x9c\x25\x58\x06\ +\x98\x04\xc6\xa4\xbd\x72\xb0\x22\xb9\xea\x21\x02\xf8\xd4\x02\xc6\ +\x01\x77\x75\xcc\xe5\x46\x2d\x24\xfe\x0b\x5d\x28\xa0\x48\xf4\xb8\ +\x82\x13\x88\xd8\xa5\x06\xc2\x05\x98\xae\x02\x4a\x17\x9d\xc1\x9f\ +\x03\xa6\x98\xe4\xb1\xbb\xb6\xc1\xe9\xe9\x19\xdd\xf1\x38\x00\x69\ +\x4a\x32\x2c\x9d\x30\xc3\x06\x1c\xc3\x4d\xae\x9e\x2a\xc0\x31\x60\ +\x5f\x24\x80\x89\xe8\xe6\xdf\xad\x7d\x93\x9c\xd3\x86\x21\x82\x84\ +\x08\xc9\x05\xce\x7d\x75\xca\x86\xf5\x72\x0a\x7c\xb7\xae\xa1\xfd\ +\x9b\x00\xaa\x50\xd5\x5a\x45\xee\x01\x35\xba\xe2\x7b\xf4\xe2\x98\ +\x31\x0a\xbc\xf7\x88\xa1\x43\x68\x1b\xc4\xae\x41\x41\x8a\x77\x3b\ +\x93\x2b\x17\x14\x3a\x71\x17\x25\x93\x0f\xbd\x66\x84\x8f\xe9\xe7\ +\x28\x40\x5d\x2b\x0a\x2b\x10\x01\x42\x00\xd8\xa4\x9e\x26\xc7\x06\ +\xa2\x9c\xf2\x4f\x5c\xe5\xdc\x13\x0d\xe7\xd1\x97\x19\xad\xb9\x7d\ +\x9f\x9d\xb0\xed\xdb\x46\x24\xa6\x41\x0b\x3e\x40\x82\x47\xec\x3a\ +\x84\xe6\x84\xe8\x3b\x88\x2a\x42\x8e\x8b\xcc\xc2\xbd\x3b\xb3\x4a\ +\xb9\xda\xde\xd0\xed\x67\x21\x0a\x98\x18\x50\x3b\x83\x53\x17\xb1\ +\xe5\x21\x6e\x59\x35\xca\xac\x2c\x98\x10\x8f\xcf\x88\xbb\x3d\x34\ +\xd7\x57\x6e\x66\xbd\x44\xde\xc3\x98\xc3\x2b\xb8\xbe\x1e\xa8\xac\ +\xaa\xec\x54\xb5\x52\x95\x0a\x8a\x32\xb5\xf3\x9d\x3f\xd8\x30\x62\ +\x14\x34\x4d\x0b\xdf\x35\x90\xe0\x11\xba\x16\x35\x47\xec\x58\x51\ +\xd6\xa9\xb6\x4e\x34\x49\x08\xea\x74\x4b\x9f\x90\x10\x44\x29\x60\ +\x6f\x3c\xd0\x09\xc1\x39\x05\xbc\xe0\xd4\x01\xc4\x0e\x6c\x0b\x40\ +\x0b\x18\x53\x00\xec\x60\xd9\x66\x00\x61\x4e\x99\xaf\x94\x1c\x7d\ +\x3e\xa0\x92\xe5\x93\x18\x11\x9b\x23\x62\xd7\x26\x10\x75\x1d\x24\ +\x78\x68\x08\x50\x19\x63\x26\x63\x08\xe4\x18\x9d\x12\xba\x36\x0c\ +\x31\xcf\x96\x55\x8a\x51\xe0\x0c\x21\x46\x1d\x9a\x89\x2f\x15\x4f\ +\x50\x06\x98\x55\x41\xed\x0c\x8e\x5d\xbc\xf8\x6d\xce\x40\x96\xaf\ +\x17\x13\x10\xbc\x20\xb6\x0d\x62\x59\xc2\xf6\x72\xdc\xeb\x16\xac\ +\x56\x55\xf7\x3d\x8a\x8e\xda\xbf\x16\x54\x52\x49\x8a\xa3\x4a\xa8\ +\x14\x00\x78\xdd\xc5\x48\x2b\x21\xc6\x88\xc7\xa7\x03\x7c\x73\x02\ +\x62\x87\xa3\x1f\x95\x8a\xac\x63\xec\xad\x66\x40\xe9\x78\xf3\x26\ +\x44\xc4\xd0\x69\x8b\x51\x26\xac\xb6\xc0\x8e\x04\x51\x09\x6a\x2a\ +\x30\xd7\xb0\xae\x04\x1b\x0b\x62\x4e\x39\xa8\x29\xa8\x36\xa8\x73\ +\xfd\x6c\x22\x22\xaf\x3e\x55\x84\xe6\x04\x7f\x3c\x20\xb6\x2d\xc4\ +\x77\xd0\x18\x41\x59\x34\xa6\xaf\x1f\x24\x33\x01\x90\x28\x48\x23\ +\x6a\x6b\xe0\x6a\x87\x53\xe3\x2f\x9e\x42\x92\xb8\x66\x50\x8c\xab\ +\xd6\x6d\xf6\x7d\xa6\x12\x6c\xa2\xb0\x2c\xa8\x4b\x8b\x63\x1b\xae\ +\xc6\x5f\x43\x76\x91\xc6\x6a\x4b\xc3\x40\x3c\x3c\x41\xf6\x77\xd0\ +\x0c\xae\x4d\xa6\x51\xf5\x81\x88\x7e\x7f\x05\xd7\xe7\x5a\x29\x91\ +\x07\x85\xba\x5e\xcd\x76\xe9\xfa\x11\x8f\xf2\xce\x5d\xe7\xd1\x36\ +\x47\x74\x4d\x83\x92\x02\x1e\xac\x82\x2c\xc1\x11\xa1\x95\x74\x03\ +\x2d\xeb\xa8\xc2\x44\x94\xf4\x20\x08\x83\x0e\xc4\x78\xc3\x75\x68\ +\x26\x54\x10\xd8\x58\x88\xa9\x60\x5c\x9d\xbb\x71\xcd\x58\x4d\xbe\ +\x68\x65\x5f\x05\xd4\xe7\x80\x2a\xa3\x55\x43\x40\xf4\x1d\xc2\xf1\ +\x80\x70\x3a\x41\x7c\x00\x24\x0c\x31\xd3\x08\xea\x09\xa0\x68\x05\ +\x14\x21\xa2\x30\x00\xd7\x05\x4e\x8d\x9f\x11\x10\xcb\x38\xea\xd6\ +\xc2\x8d\xb3\x2a\x2b\x51\x38\x8e\xa8\x9c\x41\xe3\xe3\xaa\x85\x5c\ +\xb3\x44\x3c\xb9\x07\x21\x04\x84\xb6\x4d\xbd\x6d\x44\x2b\x32\xa9\ +\xc3\x1a\xb9\x03\xf0\x0a\xae\x1b\x01\x65\x54\xe5\xae\x77\xfd\xa0\ +\x30\x7d\xc5\xfa\xf2\x86\x30\x27\x56\xee\x78\x6a\x71\x38\x1c\xc1\ +\xb1\x05\x8b\x47\x6d\x14\xf7\x45\x56\x3d\xc9\x37\xe6\x9e\x15\x0f\ +\x59\x47\xc2\x70\xd6\xbc\xec\x27\x7d\xe4\x46\x44\x26\x42\x14\x45\ +\x1b\x28\xed\xdc\x2a\x28\x4b\x0b\xb6\x15\x60\x2b\x90\x2d\x87\x1a\ +\xbe\x69\x9b\xc6\x96\x95\x7a\x09\xa0\xa6\x39\x36\x42\xd2\xe9\x50\ +\x55\xf8\xe3\x01\xe1\x74\x44\x6c\x1b\x48\xd7\x81\x34\x0d\x46\x30\ +\x0b\x20\x6d\x82\x69\x6d\x41\xc6\x08\xab\x8a\xbb\xca\xe1\xd0\x05\ +\x84\x20\x1b\x00\x1b\x25\xda\x6e\x4a\x0b\x2c\x00\x56\xb2\x20\x1a\ +\x46\x88\x72\xd1\x2d\x1c\x52\x10\xb9\x57\x80\x72\xdc\x17\x9b\x13\ +\xe2\x6e\x37\x9b\x6c\x39\x21\x34\xfa\x87\x53\xd5\xea\x7b\x1b\x1b\ +\xfb\x55\xc1\xa5\x22\xb5\x68\x7c\xa7\xaa\x75\x2a\xf5\x56\xda\x64\ +\x97\x88\x10\xa3\xe0\xd3\xe3\x23\x9e\x9f\x9f\xb1\xcf\x16\xca\x18\ +\xc0\xba\x14\x1f\x59\x4e\xae\x0d\x01\x08\x0a\x58\x4e\xc0\x29\x2c\ +\x10\x22\x86\xc6\xc2\xde\x62\x19\x26\x04\x51\xfc\x76\x64\xd8\x22\ +\xa2\xaa\x0b\x18\xf7\x00\x32\x65\xd2\x87\x60\x1e\x5c\xce\xa4\x63\ +\xb4\x5d\x82\xf4\x52\x50\x4d\x17\x1b\x33\x23\x78\x8f\xe3\xef\xbf\ +\x41\x8f\xcf\x80\x24\x77\x8f\xf2\x05\xa7\x89\x95\xba\xe6\xae\x5d\ +\x74\xe5\x44\x40\xda\x61\x5f\x38\x1c\x15\x67\x00\x48\x1e\x26\xdd\ +\x64\xba\x56\x5d\xbf\x5c\x05\x5c\x1b\xc2\xb3\xd0\xa6\xac\xdc\xc2\ +\x40\x8f\xa9\x0a\x00\xd2\xb5\x08\x5d\x07\xbb\xdb\x01\xaa\xab\x29\ +\x01\x00\xfc\x0a\xae\x55\xb6\x0f\xac\x2a\xf7\x92\xda\xea\xcd\xf2\ +\x0e\xe9\xca\x4e\xda\xb6\x1d\x9e\x9f\x9f\xe1\x4f\x07\xd4\x46\xf1\ +\x3f\x2b\x1e\x2f\x38\x25\x40\x59\x06\xbc\x8e\x6e\x86\x21\x20\x88\ +\xe0\x14\x08\x87\x13\xe0\xac\x41\x61\x28\x97\x30\x21\xb5\xb5\x87\ +\x08\x67\x18\xfb\x7d\x0d\x53\xdd\xa3\xc8\x03\xde\x06\xa6\x2f\xdf\ +\xf5\x41\xcd\x68\x8d\x9c\xd0\x97\x25\x51\xa7\x2b\x39\x8a\xc0\x37\ +\x0d\x9e\x3f\x7c\x80\x6f\xdb\xd4\xd7\x65\x90\xe6\x15\x2f\xac\x13\ +\xbd\x10\x48\x97\x28\x74\x0a\x1e\xfb\xaa\xc0\xf3\xc9\x2f\x92\xc0\ +\x29\x26\xb5\x44\x37\x7f\xaf\x35\x90\x31\x14\xbb\x82\x71\x68\xe3\ +\xe5\x98\x6b\xa8\x23\x9b\xcc\x67\xf6\x1d\x24\x04\x48\x94\x8b\x23\ +\x63\x35\x35\x51\xfe\xf1\x0a\x2e\x00\x22\x62\x82\xf7\x3f\xab\xca\ +\x1b\xe2\xbc\x60\x67\xab\x66\x5b\x62\xd9\x77\x1d\xe0\x5b\xbc\x2d\ +\x09\x3b\x3b\xba\x75\x7d\x8c\xc0\xd9\x52\x99\xec\xea\x29\x80\x4e\ +\x2d\x02\x97\xf0\x65\x85\xbb\xfb\x02\xd6\xda\xa1\xa5\xbd\x4f\xac\ +\xc6\x18\x10\x98\xb1\x33\x76\x4c\x9c\x0e\xae\xdf\x24\x8e\xa2\xc9\ +\x42\x78\x01\x39\xa1\xcb\xc5\x9f\x2b\xc8\xfd\xe9\x84\xf6\x78\x42\ +\x7b\x78\x46\x88\x31\x77\x66\x65\x52\x41\x80\xd2\x60\xd5\x35\xfb\ +\x9c\x46\xc7\xad\xd8\x8a\x83\xc7\x5d\x6d\x71\x68\x22\x42\x94\x33\ +\xd7\x8b\x5e\xb2\x51\x2c\xde\xaf\xaa\x30\x10\x54\x8e\xd1\x7a\xd9\ +\xce\x73\xf1\x79\xfc\x45\x11\x89\x05\xad\x2a\xb0\x29\x70\xa1\x53\ +\xb5\x56\x55\xfe\x9e\x14\xa2\x3e\x1b\x5c\x44\xa4\x20\x3a\xc5\xa8\ +\xac\x51\x1c\x00\xcb\x44\xd6\x98\x5c\xf1\x8d\xed\x4e\xd7\xfb\x87\ +\x7b\xd4\xbb\x1d\x9e\x9e\x9f\x71\x3c\x3d\xe3\xce\x46\x38\x1e\x13\ +\xb1\x92\x6f\x4c\x90\x34\x22\x47\xdc\x1e\xa6\xdc\xa3\xb4\x0e\x75\ +\x46\xa1\x42\xd3\xac\x2a\x19\x5b\xe6\x7b\xcd\x8a\xde\xed\xc2\x02\ +\x54\x67\xae\xdf\x0b\xa8\xf3\x29\xb0\x44\x04\xa1\xeb\xd0\x3c\x3f\ +\xa3\x7d\x7e\x1e\xfb\x9a\x90\xfa\xd8\x69\x1e\xb6\x20\xe4\x4c\xe9\ +\xe7\x82\xe7\x96\xbf\x51\x51\x90\xf7\xd8\x97\x0e\x87\x36\xb9\x88\ +\xa4\x6b\x3b\xc2\xf5\xcf\x5d\x05\x9a\x26\xed\xc4\x90\x5d\xef\x55\ +\x6a\x3d\xdf\x9b\x3c\xbd\x36\x01\x8c\x81\x78\x3c\x40\xee\x1e\xae\ +\x6d\x60\xac\x40\x4d\x49\xe7\xf0\xbb\x78\x7c\xb5\xf2\xa7\xae\xf3\ +\x77\x21\xf8\x7b\x11\x29\x99\xa8\x30\x86\x53\xe9\xcb\x4a\x75\xb9\ +\xea\x48\x75\x1f\x4f\x2d\x9e\x3e\x7d\xc2\x9e\x5a\xd4\x56\xf3\x28\ +\x52\x45\x50\x86\xd8\x1d\xcc\xee\x4d\x12\x60\x99\x48\x3f\xf7\x83\ +\xb7\xc7\x1b\xc8\xc9\x32\x4c\xba\x65\x79\x52\x39\x71\x46\x50\xbc\ +\x28\x1f\xd5\x2b\xda\x2a\x82\xf7\xf0\x4d\x83\xe6\x39\x55\x49\xa0\ +\x67\xf9\x80\xad\x58\x62\x58\x84\x77\x2e\xf9\xcc\xfa\x85\x40\xba\ +\x85\x98\x14\xeb\x70\x68\x02\x44\x14\xa5\x33\xa8\x8c\x02\x51\x5e\ +\x5c\x23\xa2\x2b\xc7\xf6\x60\x9c\xfc\x28\x95\xa0\x93\xdf\x55\x95\ +\x83\x53\x81\x84\x38\xfc\x2e\x02\xe8\x22\x50\xfe\xe3\x1f\x28\xeb\ +\x5d\x2a\xe6\xdd\x04\x19\x3d\x1b\xc3\xff\xf9\x1a\x73\x2d\x1e\x45\ +\xe1\x9e\x8b\xc2\x3d\x87\x10\x2a\xef\xc3\x3e\xc4\x70\x47\x51\x4a\ +\x36\x0c\x33\xad\x2f\x9b\x68\x93\xab\x28\xea\xaa\x80\x35\xef\x71\ +\x3c\x3c\xe3\xe0\x0f\xb0\x1a\x60\x9d\x83\x54\x0f\x70\xf5\xfd\xe0\ +\xf6\x89\xce\x7b\xad\x28\xb7\x93\xf0\xc4\xcd\x1b\xdd\xbe\xf3\x78\ +\xea\x16\xd7\x6f\xe6\x42\x65\x1f\x27\x76\xed\x90\xdc\xf5\x6d\x83\ +\xee\xd4\x42\x63\x9c\x81\x8a\x6e\xb0\x40\x4d\x24\xec\x8d\xde\x0e\ +\xa8\xc5\xc9\xd3\x55\x76\x63\x44\xb2\x89\x01\x75\x61\x70\xec\x24\ +\x57\xa8\xd0\xc5\x38\x4f\xf5\x36\x6b\xa6\x0a\x38\x56\x44\x9b\xdc\ +\xc3\xe9\xe6\xd1\xf7\xcc\x4d\x0f\x46\x13\xeb\x15\x9e\x9f\x50\x54\ +\xbb\x2b\xf7\x60\x22\x35\xfe\x0a\xae\x95\x03\x5a\xdb\x58\x6b\x9b\ +\x10\xc2\x73\x08\x61\x1f\x42\x78\x27\x2c\xc6\xda\x9e\xeb\x98\x37\ +\xfa\xa9\x08\x8c\x61\xec\xef\xef\xd1\x35\x0e\xcf\x4f\x9f\x50\xa0\ +\xc2\x9b\xfd\x9b\x3c\x29\x44\x46\x2b\x45\x63\x89\x0d\xad\x80\x6a\ +\x93\x4a\xbf\x70\x43\x97\x9d\xc6\x94\x37\x02\x7f\x3c\xc0\x1f\x9e\ +\x21\x5d\x0b\xf5\x1e\xa4\x02\xcb\x84\xa2\xb4\x00\x17\x10\x51\x04\ +\x1f\xd0\x75\xd7\x2b\x25\xfa\xca\x7b\xcf\x40\xc1\x1b\xa7\xb3\xc5\ +\x1c\xde\xe8\xd6\x4d\x4d\xa7\xe6\x1c\x55\xed\x18\x5e\xa6\x59\xf5\ +\xf5\x63\x4e\x81\xbb\x65\xd4\x07\x10\x89\xa2\x20\x20\xe4\xca\x99\ +\x39\x53\x48\xb3\x8d\x60\xf0\x2c\xfa\x4d\x2a\x06\x18\x53\x80\x2e\ +\x38\xa1\x22\xba\x67\xfe\x3e\xf4\x35\xfe\xb4\x24\xb2\xb5\xb6\xb5\ +\xd6\xb6\x21\x84\xb6\x69\x4e\xff\xde\xb6\x62\x9c\xb3\x79\xe1\xeb\ +\x6c\xba\x46\x5f\x47\x51\x56\x15\xd8\x18\x3c\x3e\x3e\xe1\xf9\xf9\ +\x09\xf5\x6e\x0f\x11\x01\x31\xc1\x0c\xd6\x88\x56\x49\x8a\xf3\x78\ +\xea\x46\x0a\x5d\x47\x25\x25\x85\xa2\x7b\x7a\x44\xf7\xf4\x08\xe9\ +\x5a\x90\xa4\xe4\xa9\xc9\x31\x20\x8b\x02\xde\x83\x29\x80\xac\x41\ +\x51\x17\xa8\xab\x02\x6d\xeb\xd1\xb5\xfe\x2a\x79\xd0\x09\xc1\x91\ +\xbe\x4c\xfe\xec\x33\x83\x30\x55\x85\x85\x80\xac\xcd\x2b\x3f\x6e\ +\x1f\x73\x09\xb4\x65\xf3\x28\x8d\xd6\x53\x13\x3d\x8c\xca\x00\x07\ +\x19\x2d\x55\xea\x5f\xc3\x38\x55\xbd\xa7\xe4\x33\xe3\x1b\x35\x95\ +\x43\xa9\x2b\xb2\x04\xc2\xea\x99\x9b\x94\x50\x7e\x05\xd7\x4d\x54\ +\x3d\x13\x1e\xaa\xaa\xe4\xae\xf3\xf0\x3e\xc0\x5a\x33\x00\x41\x57\ +\xc0\x60\x9d\xc3\xc3\x9b\x37\xa9\x2a\x5b\x15\xc6\xf0\x0b\x41\x75\ +\x39\x9e\x9a\xc5\x5c\xc4\xa9\x49\xb0\xeb\x52\x53\xe1\xf3\x13\xd4\ +\x77\xe0\x9c\xe0\x65\x5a\x89\xa9\x32\xa5\xa9\x9d\x80\x7c\x02\xd9\ +\xae\x72\xa8\x2a\x87\xce\x47\xf8\xd6\xcf\x76\xf4\xe9\x23\xaa\xa2\ +\x53\x42\x45\x7a\x53\xc5\x84\x5e\x78\x8d\x6e\xbb\x01\x48\x1d\x20\ +\x49\xb7\x43\x69\x9d\xb8\xa0\x15\x0b\x3e\x7b\x5d\xe7\x00\x4b\x0b\ +\x47\xe1\x0c\xc3\x07\x1d\x2d\x17\x66\x43\x31\xc7\xbc\x5f\xbe\x6e\ +\xb1\x6d\xa0\xfb\x3b\xa8\x9a\x73\x3f\x77\xf8\xa0\x35\x5d\x94\x57\ +\x70\x9d\x01\x4b\x25\xfe\x43\x55\xee\x09\x40\x59\x38\x84\x10\xe1\ +\x43\x4c\xad\x09\x79\x2a\xe2\xf4\x26\xa7\x39\xbd\x94\x59\xbf\x85\ +\xd0\xe5\x24\xd9\xfb\x12\x4b\xb5\x5a\x54\x4b\x04\x62\x03\x7f\x3a\ +\xa2\xfd\xf4\x07\x62\xdb\x80\x42\x18\xc0\x34\x34\x3d\xe2\xbc\x72\ +\xe2\xec\xe8\x21\x40\x43\x00\x31\xa3\x72\x16\xe5\x7d\x8d\x10\x05\ +\xed\xa9\x4b\xdf\x75\xf1\x76\x2f\x40\xc1\x69\x34\xd0\xe7\x18\xad\ +\x17\x19\x3d\x02\x28\x86\x21\x45\x42\xb7\x1c\x6b\x51\x66\x3f\xcb\ +\x7b\x2d\x90\x59\x19\xc0\x47\x4a\x09\xf2\x9e\x87\xd7\x31\x91\x3c\ +\xb8\xf2\x39\xbd\x22\x3e\xe9\x74\x98\xd2\x6c\x7c\x2e\x01\xaa\x46\ +\x55\x4b\x22\x6a\x5f\xc1\xb5\x0d\xac\x5f\x54\xe5\x7e\xb9\x18\x3f\ +\x7e\xfc\x80\x77\x6f\xdf\x22\x82\xb2\x12\x52\x1e\xf4\x86\x24\xdc\ +\xc2\x67\xea\xb1\x6b\xfd\x53\xd7\xe3\x29\xdd\x8a\xd8\x89\x10\xda\ +\x06\xa7\xdf\x7f\x85\xb4\x6d\xea\x83\xa2\x54\xed\xb1\x4a\x52\xd0\ +\x8d\x8b\x5b\x04\xda\x76\x00\x75\x70\xae\x40\xf1\x50\xc3\x87\x88\ +\xd3\xa1\x85\xc8\x68\xa9\xa2\x02\x6d\x04\x76\xf6\x0b\x1b\x90\x17\ +\xa6\x8d\x16\xae\xdc\xf0\x5c\xc6\x6c\xd7\x8a\xbc\xfd\x4d\x54\x7c\ +\xef\xde\x2d\x63\x32\x16\x41\x95\xdb\x53\x52\xc7\xcc\x48\xc3\x4f\ +\x4f\x91\x28\xf1\xec\x12\x03\xc4\x7b\x68\x51\x0c\xba\xf5\xe7\x9f\ +\x49\xaf\xe0\xba\x02\xac\x9f\x55\xe5\x61\xfa\xba\xf7\x01\xff\xfa\ +\xd7\xaf\x28\xd1\x41\xdb\x67\x68\xf5\x00\x48\x5f\xb0\xcb\xb0\x3c\ +\x16\xcd\xae\xf5\x4d\xdd\xea\xfe\xe9\x2a\xf5\x97\x2a\xec\x7d\xd3\ +\xe0\xf9\x8f\x3f\x10\x9b\x06\x35\x03\x8e\xcf\x5d\xbf\x65\x01\xeb\ +\x8b\x43\x1e\x45\x02\x59\xd7\xc1\x55\x25\x8a\x37\x35\x9a\x26\x11\ +\x1f\x31\x26\x72\x26\x28\x21\x28\xc1\x42\x6f\xa7\xc7\x27\x60\x5a\ +\xad\x29\xd3\x05\x48\xf4\x06\x6e\xfd\xa5\x60\x5e\x62\x9a\x80\x12\ +\x11\x2d\x27\xd6\x96\x16\xdf\x67\x5e\xe5\x91\x36\xa0\xe8\x3b\x88\ +\xd4\x13\x7d\xc3\xf9\x79\x67\x23\xf7\x5d\xb8\x86\xf6\xab\x03\x4b\ +\xe3\x7b\x55\x79\x3b\xba\x05\x04\xdf\x79\xfc\xfe\xfb\x6f\x30\xe4\ +\x51\xde\xff\x04\x5b\xef\xb3\x64\x97\x82\xb2\x3a\xd2\x66\x3c\xb5\ +\xa4\xd4\x2f\x81\x6a\xc2\x50\x50\x16\xa0\xf1\xad\x47\x7b\x38\xa0\ +\x39\x1c\x86\x92\x24\x26\x42\x84\xa2\x40\xd6\x96\xd0\xdb\x8a\x66\ +\x6f\x76\xcf\x7a\xab\x71\x6a\xa1\xdc\xa1\x2a\x1c\x8a\x7d\x81\x2e\ +\x08\xda\x36\x81\xac\xcb\xda\xf0\xa4\x57\x82\xad\xad\x52\x8b\x1b\ +\x9f\xd3\xd6\x73\xcc\x44\xb2\xd6\xab\xd5\x2f\xb8\x9b\xd3\xcb\x5d\ +\x59\x40\x89\x01\x9d\x93\x26\xa4\xf3\x3c\x18\xab\x20\x76\x2d\xb4\ +\x17\xc6\x5f\xbf\x76\x84\x54\xc8\xfb\xcd\x57\x6b\xd8\xaf\x08\xac\ +\xa4\x29\x28\xf2\x7e\x1a\x03\x77\x9d\xc7\x6f\xff\xfa\x15\x80\xc7\ +\xfb\xf7\x3f\xc1\xb8\x3a\x4d\x63\x24\x64\x65\xd9\x85\xa5\x62\x9a\ +\x4d\xe9\xb8\xe4\xfe\x9d\xbf\x4e\xc3\xe0\xf0\xae\x69\x70\x3a\x1c\ +\xd0\x3c\x3f\x43\x62\xcc\xba\x12\x63\xc5\xb6\x28\xa1\x15\xc0\xd0\ +\xd8\xad\x4b\x5f\x02\xa8\xb5\x37\xe7\x08\x5f\xda\x0e\xc4\x84\xca\ +\x39\xb8\x7d\x81\xa6\x8b\x88\x3e\x20\x8a\xc2\xf2\x0d\x1f\x44\x9f\ +\xf1\x1e\xba\x02\xda\x29\x65\x4e\xdb\xf4\xfb\x55\x83\x47\x89\xdc\ +\x50\x93\x8b\x42\x7b\xf7\x73\x2d\x4b\xa0\x48\x6d\x37\x31\xc2\x5a\ +\xbb\xda\xc9\x9d\x5f\x71\x99\xa4\x7d\x05\x57\x02\x56\xfc\x69\x00\ +\x56\x0e\x6a\xbb\x10\xf0\xe9\xf7\xdf\x61\xdb\x16\xee\xfd\x7b\xb0\ +\xad\x10\x62\x4c\x64\xc5\xb4\x35\x21\xff\x3f\xf3\x3c\xae\xba\x15\ +\x54\xfd\xfb\x63\x8c\xe8\x4e\x0d\x9a\x63\x06\x95\x48\xaa\xf3\x23\ +\x5a\x55\x3d\x8a\x0a\x9c\x22\xa1\x36\x9a\x07\xfa\x6e\xec\xd2\x7a\ +\x43\x60\x42\xeb\xd6\x61\xd4\x79\x53\x68\xdb\x81\x0d\x63\x5f\x14\ +\x68\x4d\x09\x0d\x1e\xd0\x70\xfe\xe5\xe8\x0b\x9e\xaf\x9d\xd2\x34\ +\x11\x77\xe9\xbb\x5c\xb3\x8a\x1b\xc7\x67\x68\x9a\xd8\x97\x37\xcd\ +\xa5\xa5\x9c\xa6\x3c\x34\x46\x44\xdf\x41\x8b\xe2\x92\x3a\x96\x51\ +\xa0\xc8\x63\x5f\x7f\x70\x70\xa5\x18\xeb\x9d\x4e\x90\x15\x42\xc4\ +\xf3\xc7\x3f\x40\xc7\x13\xca\xfd\x1e\x45\x5d\x23\x84\x30\x68\x45\ +\x20\x6f\x4b\x94\x24\x60\x26\xd3\x0e\xb7\xdb\x3d\x74\x85\xf5\x63\ +\x66\x84\xae\xc3\xe9\x70\x48\x6a\x48\x4d\x83\x98\x8b\x67\xdd\x06\ +\xa8\xb0\x00\x58\xd3\x03\x8c\x27\x03\xc4\xe9\x65\x96\x83\x2e\x99\ +\xb6\xe9\xeb\x51\xa0\x4d\x83\xc2\x5a\xa0\xb0\x89\x3e\x14\xb9\x6a\ +\x81\x66\x56\xe6\xa5\xe6\xf4\xca\x77\x99\xb9\x79\xd8\x00\xef\xb5\ +\x78\x2d\x86\xc5\x86\x87\x55\xa5\x5e\x8a\x21\xc9\x18\xec\xb6\x05\ +\x47\x15\x70\xa4\xea\x40\x84\x1f\x1a\x5c\x12\xc3\x3f\x06\xf2\x22\ +\x5f\xdc\x18\x23\x3e\x7e\xfc\x03\x78\x7e\x86\x35\x0c\xde\xef\xd3\ +\x04\x11\xa4\x38\xe8\x8c\x52\x37\x80\xcd\xc3\x07\x96\x56\x69\x8b\ +\xf5\x23\x66\xa8\x08\x3e\xfd\xfe\x3b\x9a\xe7\x67\xc4\x10\x52\x9b\ +\x7c\xb6\x54\x67\xf9\xa9\xb5\x60\x23\x3f\x82\x02\x27\x21\xec\xe8\ +\x7a\x63\xe1\x17\xdf\xee\xfe\x00\x21\x64\x50\xe9\xa6\xf7\x36\x35\ +\x02\x9f\x13\x72\xe9\xc6\x31\x5f\xc2\x6b\x0c\xd8\xa2\x6b\x16\x4d\ +\x2f\x7c\x65\xca\x39\xb6\x24\x74\x22\xc1\x43\x24\x37\xe4\x6d\x5f\ +\x22\xf7\x43\x13\x1a\x12\xc3\x2f\xaa\xf2\x90\xc6\x4b\xe9\xa0\x72\ +\xfb\xfc\xf4\x88\xd0\x3d\x43\x99\xc0\x55\x9d\x5f\x8f\xd0\x89\x60\ +\xf2\xb4\x49\xd1\x70\x91\x2a\x24\x26\x56\x69\xb3\x59\x91\x08\x1a\ +\x23\x8e\xcf\xcf\x78\xfa\xf0\x01\x31\x8c\x6d\xf2\xbc\x02\xaa\x33\ +\x41\x99\x0d\x2e\x3a\x08\x70\x42\xb2\x60\x5f\xab\x3d\xe4\xfa\x05\ +\x94\x75\xeb\xa7\xe7\x80\xd1\x2d\x2f\xf0\x0a\x1b\x71\xad\x35\xff\ +\x2a\x33\x49\x37\xc4\x71\x74\xf5\x30\x43\x92\x99\x39\x4d\x4c\x11\ +\xdf\x25\x65\xa8\xed\xb3\x28\xbf\x75\xe1\x1a\xfb\x05\xc0\xfa\x49\ +\x55\x1e\x52\xb7\x87\x0e\xc5\xb5\xcf\x87\x03\x1e\x9f\x9e\xf0\x50\ +\x2b\x3c\x13\x60\x0d\xa2\xc8\x30\xbb\x57\x16\xf7\x82\x99\x66\xd5\ +\x86\x6b\x49\xdf\xe9\xfd\x3b\x7c\xfa\x84\xc3\xe3\x23\x7c\xdb\x0e\ +\x60\x1a\x00\x35\x71\x03\x37\x01\xb1\x70\x35\xa6\xcf\x7c\x52\xb7\ +\x46\x6d\xf4\xf2\x31\xbe\xf2\x83\xa6\xea\xbe\x1b\x75\x87\xa4\x73\ +\x8b\xb4\x99\xd7\xda\x78\x7e\x89\x89\x9c\x02\x40\x15\x20\x93\x4a\ +\xa6\xd4\xfb\xab\x80\xa4\xf3\x71\x67\xb9\x18\x60\x59\x81\x93\x3e\ +\x90\xa1\x88\xa1\x4b\x9e\x86\x5e\x9c\x37\x56\xfc\x90\xe0\x12\x89\ +\x6f\x45\xe5\x3d\x14\x34\x1d\x3d\xd3\xb6\x2d\x9e\x3e\x7c\x44\x09\ +\xe0\xd0\x30\xac\x4b\x09\x5a\xed\x8b\x6f\x89\x47\x77\x65\xb8\xeb\ +\x59\xd9\x56\x27\xf1\xc4\xea\x90\x39\xe0\x8f\xdf\x7e\xc5\xe1\xf1\ +\x11\x4c\xb9\xd6\xb0\xf7\xe5\x6f\x01\xd5\x2d\x04\x1c\x01\x5e\x12\ +\x60\xab\x65\x05\xfb\x4b\x24\x68\x2f\x55\xae\xaf\x2c\x7c\x5d\x10\ +\x27\x43\xb1\x02\xb0\x50\xb2\xba\xcc\xea\x5d\xb2\x1e\x74\x45\xbf\ +\x70\x69\xdd\xb9\x4a\xc3\xfa\x34\x84\x95\x0b\x40\x97\x7d\xc8\xe9\ +\x86\xd0\x33\xb1\xd3\xef\x2e\xa9\x5a\x63\xa0\xe4\x17\x27\x97\xf5\ +\x50\x2c\x7d\xe3\x93\x4f\xed\x67\x00\xeb\x41\x62\xfc\x65\x58\xfe\ +\xd9\x62\x79\xef\xf1\xfb\xbf\x7e\xc5\x1d\x12\xf3\xd6\x05\xa0\x51\ +\x06\x5b\x80\x33\xa3\xaa\xc8\x5a\xe4\x3a\x57\x73\xd5\xdc\xfc\x48\ +\x4a\xab\xea\xb4\x44\x84\xd3\xf1\x80\xc3\xd3\xd3\x60\xa9\x38\xbf\ +\xce\x5f\x08\xa8\xb5\x47\x13\x53\x11\x6a\x61\x56\xfe\x86\x5e\xe4\ +\x60\x6d\x9e\x80\xae\x3c\x3f\x23\x16\x26\xa0\xd0\x15\xf2\x81\x16\ +\x40\x5d\xea\x72\xe8\xb4\xdd\x7e\x95\x69\xa4\x15\xb0\xeb\x90\x42\ +\x60\x47\x88\xc2\x23\x0b\xa8\xe7\x57\x71\x49\x82\x2c\x35\x38\xa6\ +\xc5\xbf\x49\xb4\x26\x25\x9b\xc5\x77\x90\x18\x53\x37\xf9\x0a\x51\ +\xd3\xc7\x5d\xaa\x4a\xdf\xaa\x96\xbc\x7d\x21\xb0\xee\x45\x46\x60\ +\x69\x2e\x62\xf5\x3e\xe0\xe3\xaf\xbf\x63\x9f\xd5\x97\x42\xa6\x67\ +\x0b\xd1\x54\x16\xd4\x8f\xf4\xd4\x33\x0a\x3f\xbb\x93\xb9\xf9\xee\ +\xc2\x35\x6c\x0e\x87\x74\xc3\x73\x23\xe4\x59\x6c\xf5\x15\x5d\x38\ +\x22\xe0\x18\xd3\x6a\x2a\xcd\xd7\xa3\x36\x2e\xed\xfd\x7a\x21\x94\ +\xb9\x12\xda\xac\x79\xbb\xeb\xaf\xe8\x95\xf5\xf0\x00\x00\x20\x00\ +\x49\x44\x41\x54\xbd\xa4\x99\x8c\x08\x24\x11\x5c\x18\xc4\x16\x37\ +\xd7\x6a\xd1\x16\x19\x32\x39\x27\x46\x22\x35\x62\x0c\x70\xb9\x18\ +\xe3\xec\x54\x53\x1f\x5f\x89\x94\xef\xfa\x26\xe5\xae\xf9\x76\x60\ +\xc9\x5e\x25\xfe\x1b\x34\x09\x79\xf6\xae\x9c\x0f\x11\xbf\x7f\xf8\ +\x08\x1b\x3c\x5c\xae\x7c\xd0\x4c\xb3\x43\x65\x78\x5f\x7f\xb9\x69\ +\xba\xdd\x4e\x24\xaa\x55\xe5\x6c\xb1\xe9\x74\xcb\xce\xad\xfc\x7d\ +\x11\xe8\x9a\x97\xa6\xb8\x2c\x5c\xf9\x52\x20\x9c\x22\xa1\x13\xba\ +\xea\x76\xdd\xfa\xf3\x02\x66\xff\x2a\x0b\xb8\xe5\xa5\xea\xc6\x6b\ +\xab\xfd\x66\x34\xb7\x38\x6b\x00\x65\x28\xd8\x99\xd5\xf7\x6f\x81\ +\x7a\x69\xd1\x68\x01\x78\xca\xa1\x42\xcc\xf2\x08\x17\x98\xca\xf2\ +\x25\x6b\xf4\x9b\xb4\x5c\x2a\xb2\x13\x09\xbf\xf4\xc3\x11\x7a\xc0\ +\x44\x11\x7c\xfc\xf8\x07\x48\x1a\x78\x63\xc0\x13\x61\x14\x20\x55\ +\x4b\x4b\xd7\x81\xad\xc5\x5c\x23\x48\x27\x00\x4a\x22\x2f\xa2\x3a\ +\xf8\xe8\x6b\x57\xdc\x39\x07\xcb\x04\x4b\x94\xda\x56\x26\x77\x40\ +\x73\x9f\x03\xd1\x68\x0d\xe7\xbf\xbb\xbd\xe7\x70\xb9\x90\x4f\x31\ +\x9d\x71\x61\xce\x2d\xef\x5f\x95\x85\xb9\x76\xee\x37\x7f\xb7\x8d\ +\x6b\xab\x67\x80\x98\x1e\x4d\xc0\x86\xa1\xd6\x40\x43\x1c\x63\x41\ +\x4c\x5a\x58\xae\xd2\xf4\x0b\xc0\x12\x00\x89\xf3\xb8\x6b\xfd\x74\ +\x2d\xce\xe7\x4b\x7c\x3f\xe0\x52\x95\x3a\x4a\xf8\x07\x54\xdd\x40\ +\x44\x68\x12\x69\xf9\xe3\x8f\x4f\x40\x3c\xe2\xae\x04\xda\x28\x68\ +\x5a\x42\x91\x65\xce\x86\x76\x83\xe0\x11\x9b\x06\x5c\x96\xa3\x20\ +\xff\x22\xa2\xef\x3b\x8e\x0d\x9b\xf5\x9b\xaf\x8a\x72\x57\x03\xcd\ +\x73\x9a\x87\x65\x18\xab\x9c\xdf\xd6\xe2\xd1\x89\xee\x86\xa6\x41\ +\xe2\x69\x2c\xa9\x9e\xfd\x6e\x10\x19\xc5\xd8\x9f\x74\x8a\xc9\x4d\ +\x71\xac\x2f\x9c\x39\x8c\xaf\x31\xf7\xbb\xbf\xe4\xb3\x85\x7c\x66\ +\x39\x74\x61\x7d\x74\x85\x8d\xdc\x48\x76\xcd\x9f\x4e\x65\xe8\xc6\ +\x4d\xd2\x58\x46\x90\x94\x5b\x9c\xc6\x7d\xba\x34\x8b\xd3\x7a\xc5\ +\xe1\x5c\xe9\xec\x3b\x51\x54\x20\xc6\x94\xf0\xdf\x1e\x92\x47\x9a\ +\x14\x9a\xbf\xc9\xf1\xae\xf6\x0a\xb0\x4a\x89\x73\x60\xf5\x73\xaa\ +\x9e\x0f\x07\xa8\x3f\xa0\x2e\x52\x9d\x9e\x63\x05\x0a\xa0\xeb\x12\ +\xc0\x0c\x14\x4a\x04\x93\xad\x97\xc4\x00\xb0\x01\xaa\x0a\xcc\x66\ +\x28\xea\xed\x2d\x57\x8c\x02\x6b\xb7\x77\x60\x63\x2d\x2c\x01\x14\ +\x3a\x90\x18\x8c\xb7\x8c\xce\xc5\x35\xa7\xed\xfe\xfd\x2a\xe9\x93\ +\x57\xc4\xf9\x87\xa0\x13\x59\x36\x11\x85\x44\x41\x0c\xe9\x5c\x62\ +\xd6\x57\x27\x22\x88\x12\x4e\x31\x0d\x15\xb7\x7c\x41\x94\xf1\x1a\ +\x98\x2e\x75\x3b\x2e\xcc\x8f\xea\xb9\xcb\x35\xb5\x14\x1b\xa3\x9b\ +\xcf\x9e\xd3\x22\x70\x1b\x80\x41\x0b\xda\x7e\xc2\x5c\x32\x9d\xd3\ +\x44\x04\x01\x5b\x42\xf4\xeb\x5f\xe2\xac\xbe\xf8\x42\x6d\x63\x1f\ +\x19\x48\xf4\x69\x7c\xec\xe6\xc6\x42\x50\xfd\x76\x9b\x27\xed\x36\ +\xb0\xd4\x48\x0c\xff\xa1\xaa\xc5\x94\x12\x06\x80\xd3\xe9\x84\xee\ +\xf4\x88\xba\x10\x44\x05\x98\xd3\x68\x1b\x6b\x14\x54\x02\x5d\x4b\ +\x60\xc9\x81\x6b\xcf\xe8\x45\x49\x05\xb4\x86\x81\x6a\x37\x3b\x60\ +\xd2\x1c\x8c\xa9\x7a\x63\x22\x7e\x37\x75\xfd\x88\x0d\xc8\xb8\xe4\ +\x66\x2e\x03\xe6\x8d\xb5\xbb\x64\xae\x96\x89\x65\x02\x52\x56\xd3\ +\x18\xc0\x1a\xa0\x28\x06\x53\xa1\x9a\xb4\xce\x7d\x9b\xdb\x45\x04\ +\x68\x00\xec\xf2\xe0\xbc\x17\x07\x4f\xd7\x7c\x49\x5a\x27\x23\x96\ +\x34\xfa\x92\xf5\x5b\x63\x11\x97\x0d\x8b\xd3\x05\x3d\xcb\x49\xf5\ +\x4c\xa4\x4e\x6b\xac\x74\x53\x27\x99\x0d\xa0\xc2\x90\x78\x5e\xae\ +\xb5\x75\x1e\x98\x76\x28\xcf\xc3\xed\x3c\xf0\xfc\x6a\xbe\xcb\x7d\ +\x1d\x1f\xe0\x6f\x02\xae\x0c\xac\xff\xa5\x8a\x62\x56\x88\x94\x5d\ +\x0b\x6b\x2d\xd8\xed\xf1\xa9\x39\xc2\x71\x84\x21\x85\xb3\xe9\xdb\ +\x5b\xa3\xd0\x0a\x68\x1b\x42\xa5\x3a\xc8\x89\x09\x01\x06\x84\xe8\ +\x03\xa8\xa6\xc1\x67\xe8\xdd\xb0\x18\x63\x6a\xec\x33\x5b\x8b\xd6\ +\xc0\x14\x05\xe4\x74\x18\xb6\xf5\xcd\xd9\x54\xd7\xd6\xee\x64\xc8\ +\x38\x62\xc8\x75\x71\xbd\x89\xe4\x0c\x64\x83\xc2\x1a\x94\xae\x4a\ +\xb3\x8f\x7d\x44\xdb\x04\x74\x1a\x50\xd1\x4b\xa2\x20\xbd\x81\xa6\ +\x58\x3f\x86\x66\x13\xa3\x2b\x74\xfa\xec\xf9\xb5\x58\xe7\xc6\x2a\ +\x8a\xd1\xf2\xf3\xa8\x85\x31\xfb\x9d\x82\x2d\xcf\xaa\xb6\xb6\xdc\ +\x56\x28\xb2\xa0\xbf\xac\x7e\x2a\x91\x02\x3e\x0c\x2e\xba\xb5\xf6\ +\xac\x9b\x3c\x17\x26\x58\x93\x76\x5c\xf9\xe6\xc1\x95\x81\xf5\xef\ +\xaa\x52\x2e\x70\x85\x7e\xac\x9c\xb1\x06\x6f\xde\xdc\xe3\xee\x6e\ +\x8f\xb6\x6d\xd1\x34\x2d\xba\xae\x81\xe5\x88\xc2\x01\xa5\x55\xd0\ +\x04\x60\xbd\xc8\x4b\x04\x60\x44\x10\x27\xb1\xcd\x59\xdc\xd5\xb7\ +\xff\xd3\xf9\x0a\xe1\xaa\x06\x9e\xfe\xb8\xb6\xd3\xbd\x90\x92\x5e\ +\x54\xc6\x8a\xa4\x20\xdb\xfb\xd4\x9a\xc2\x0c\x32\x8c\xc2\x58\x14\ +\x7b\x87\xa8\x0e\xda\x36\x20\x89\x37\x9a\xa1\x97\x37\xeb\x2b\x52\ +\xed\x24\x19\x93\x16\xa0\x26\x17\x7b\x35\x9f\x74\xed\x79\xef\x46\ +\x6e\x7c\xfc\x6a\xbe\x8d\x27\xe6\x65\x31\x6c\x9d\x29\xdd\xff\xe8\ +\xe3\x34\x6c\x5e\x49\xff\x29\xd8\x1a\x48\x2b\x69\x1f\x5d\x5c\x92\ +\x7e\x2a\x87\xc6\x90\x5a\x90\x56\xe2\xec\x98\x5e\x77\xdf\x2a\x63\ +\xc8\x8b\x2f\x44\x22\xf1\x9d\xaa\xec\xaf\x35\x7e\x6b\xce\x39\xd5\ +\x55\x85\x37\x6f\x1e\xf0\xf6\xdd\xcf\x60\xf7\x80\x43\x63\xd0\x7a\ +\xa0\xb0\x0a\x5b\x2b\xba\x89\xfa\x6e\x6a\xd0\x51\x70\xf0\x67\x96\ +\x47\x7a\xd7\x10\xf3\x19\xbe\xd3\x20\x84\xca\x1d\x88\xcc\xcc\xf0\ +\xdc\xc4\x8d\xbf\x98\x84\xa7\x21\x26\xcb\xfe\x21\xa4\x6d\xa0\xc7\ +\x23\xb8\x6b\x93\xfc\x1a\xd1\x97\xd3\x85\x17\xce\x4f\x45\x41\xce\ +\x81\xdf\x3c\x80\xeb\xea\x6c\x87\xd0\x17\x1c\x73\x6b\x73\x39\x73\ +\xe5\x74\x8c\x75\x66\xa8\xa1\x39\xc3\x63\x4c\x1a\x4a\xb8\x75\xcc\ +\x1e\xb0\x64\xcd\x79\x55\xff\xc4\x6d\x25\x06\xa4\x6d\xce\x34\x29\ +\x27\xc0\x02\x00\x9b\x1d\xa0\x6f\x1b\x5c\x44\xa4\x31\x4a\x0c\x51\ +\x82\x88\x88\xa8\xae\xce\x96\x99\x55\xb4\xe7\x46\x47\x63\x18\xf7\ +\xf7\x77\x78\xf7\xfe\x67\x28\xdf\xe1\xd0\xda\xe4\x15\x38\x45\xcb\ +\x63\x25\x85\x01\x52\x1f\xd3\xd4\xf9\xce\x17\x34\xc4\x78\x51\x12\ +\x8d\x0c\xc3\x56\xd5\x65\xe7\x5b\x6f\x5b\xd3\x9f\x8d\x82\x18\x81\ +\xe0\xd7\x13\x4a\xb7\xc4\x5b\xd7\xb2\xc7\x53\x2b\xd2\x34\x80\x6f\ +\x41\x65\x01\xf3\x70\x07\xaa\xca\xbc\x60\x2f\xe4\xde\x56\xce\x4b\ +\xaf\x48\x02\xcc\xe3\x21\xda\x70\x16\x67\xd3\xf1\xc0\x96\x70\x79\ +\xb2\x7a\x06\x91\xa1\x73\x47\x78\x10\x6e\x05\xb4\x6b\x92\xa7\xb0\ +\x0e\xac\xfe\xd5\x6f\x12\x5c\x76\x25\x9f\xf4\x47\x08\xd4\xc4\x18\ +\x6b\xa8\x56\x80\x16\x50\x2d\xfa\x0e\xe1\x54\xa4\x4b\x33\x3d\xf0\ +\xe9\x4d\x34\xc6\xe0\xcd\x9b\x07\x74\x5d\x8d\xb6\x3d\xc1\x9a\x06\ +\x4d\x8c\x10\x1d\x5d\x44\xea\x41\x44\x89\xe6\x1d\xca\xa8\x24\x66\ +\x4a\x9e\xb7\xf2\x6d\xe0\xfb\xb7\xa0\xa7\x67\x28\xf7\x8a\x43\xfa\ +\xa7\x27\x9e\x94\x96\x54\x37\x9d\xf7\x7d\xe9\xa2\x17\x6c\x4d\xa7\ +\x7d\x11\x1f\x5d\x2a\xb2\xa5\x2c\xee\x29\x5d\x07\x8e\x1e\x30\x16\ +\x5c\x38\xc0\xd9\x24\x17\x1d\x23\xd4\xfb\x14\xa7\x12\x6d\x16\xee\ +\x62\x83\xc6\x9f\x3d\x1f\xb4\x1b\xc7\x7f\xaf\xed\x4c\xdc\xc7\x5f\ +\x21\x9e\x7d\xee\x40\x92\xe4\x09\x33\xb9\xb8\x6d\x96\xe2\xa0\x9c\ +\xef\x8c\x21\x0e\x21\x41\x0a\x87\xcf\x69\x50\x55\xad\x00\x3c\x7f\ +\xf3\xe0\x22\x22\x75\xce\x9d\x9c\x73\x27\x11\x61\x11\x29\x63\x08\ +\xfb\x18\xe2\x7b\xd0\xd8\x2d\x9c\x00\xa6\xc3\xbf\xa3\xa6\x7a\x3a\ +\x4e\x51\x38\x58\x6b\x11\x42\x05\xd0\x09\xa7\xe6\x04\x09\xc0\x9e\ +\x92\x86\x9d\x4a\x4c\xf4\xd3\xe0\x6d\x28\x44\xf4\x22\x25\x4f\xaa\ +\x40\x59\x83\x9d\x81\x48\x9c\x0d\xc6\x7b\x89\x19\xbb\xd8\xb6\x71\ +\xa5\xf9\x49\x97\xa0\x03\x56\x6b\xe3\x40\x2b\x9f\x75\xcd\x5d\x5b\ +\xc9\x63\x41\x09\x8a\x54\x8a\x84\x2e\x02\xc4\x49\xdc\xc5\x16\x50\ +\x97\xd8\x53\xf5\x61\x0e\x4c\x5c\xde\x73\x96\xf1\xd1\x0c\x98\x17\ +\xaf\xe7\x7c\xa7\x30\x86\x20\x31\x17\x5e\x9f\xc5\x7e\x3a\x64\x3e\ +\x74\x45\x89\x77\xf8\x5c\x41\xaa\x33\xec\x99\xda\x95\x8f\xd4\xd4\ +\x7e\xf2\xcd\xd5\x18\x5e\x0c\x14\x99\x59\xac\xb5\x27\x63\x0d\x71\ +\xb6\x26\x21\x08\x42\x88\xb3\xaa\x88\xd9\x7e\x34\x69\xd1\x27\x4a\ +\x22\x9f\xfb\xbb\x7b\xdc\xdf\x3d\x40\x0a\x87\x67\x4d\xa4\x01\xc7\ +\x78\x76\x31\x87\xb8\x4b\x75\xd3\x9b\x22\x28\x78\xff\x90\x07\x8b\ +\x5f\x97\xd6\xa4\x15\x72\x63\x96\xfb\xb9\xe5\xff\xd7\xbc\x25\xda\ +\x34\x48\x58\x7a\xd3\x4b\x4f\x4d\x75\x6e\xa5\x74\x99\xd7\x9a\x14\ +\x13\x26\x69\xb4\xb9\x4b\x86\xe0\x81\xd0\x82\x48\x61\xea\x0a\xbc\ +\xab\x07\x19\xee\xde\xf2\x4c\x63\x1f\xf0\x4a\xc2\x97\xd6\x13\xd1\ +\xb3\xfe\x96\xab\x8d\xa3\x02\xe3\x18\xaa\x2b\x2e\x66\x9f\xf2\x98\ +\x26\xa4\x17\x9f\xd9\xff\x48\xd7\x5e\xac\x32\xc9\x96\xeb\xdb\x8e\ +\xb9\xd6\x1e\x31\xc6\xfb\x18\xe3\xbb\x64\xb5\xc6\xa1\x0a\x31\x67\ +\xd7\xd7\x92\x9d\x67\xf5\x64\x00\xca\xb2\xc4\xc3\xfd\x03\xec\x7e\ +\x87\x13\x08\x21\x37\x39\x4e\x07\x27\xa8\x2a\x24\xc6\xec\x22\x4c\ +\xd5\x35\xe6\x2b\x82\xf7\x77\xb3\xdc\xc9\xc5\xfa\xb4\xd9\xa0\x61\ +\xca\xee\xc9\xd4\xff\x79\x21\xfb\x71\x3d\xcc\x18\xe3\xc8\xcd\xdf\ +\x2f\x00\x90\xff\x66\x5e\x25\x41\xd9\xfd\xd4\x91\x15\xa7\x05\x82\ +\x43\x07\x84\x16\xcc\x00\xef\x6b\x50\x55\x8d\x4d\xa7\xfd\xdf\x67\ +\xa1\xd5\xd9\xf3\xe9\x35\x98\x5d\x13\x2c\xfc\x42\xba\x7a\x59\x0c\ +\x09\x8c\xe5\x73\x17\x77\xfa\xad\x69\x3b\x8e\x1d\xc0\xb5\x55\xfc\ +\x92\x76\x05\x83\xbf\xae\xda\xec\xaf\x01\x97\xaa\xda\x18\xc3\xcf\ +\x03\x13\x9b\xb7\xa8\xa4\x0b\xce\x99\x48\x8b\x08\x41\xce\x28\xa1\ +\x7e\x91\xcd\x1a\x23\x0d\xa3\xae\x6a\x54\x77\x69\xc2\xbb\xae\xe4\ +\x52\xa2\x48\x4a\x52\xd2\x8a\xeb\xd6\xc7\x05\xc6\x80\x4a\x37\x0b\ +\x84\x5f\x02\x04\xba\x89\xbc\xb8\xf1\x87\x56\x80\x4a\x38\x7f\xcf\ +\x99\x75\xbf\xf4\x37\x73\x5f\x52\x42\xcc\xd2\x65\x2b\xa7\x28\x02\ +\x44\x0f\x8a\x1d\xd8\x11\xf8\xee\x0e\xe4\x1c\xa6\xe6\xa4\x1f\x36\ +\x39\x88\xe2\x6e\x11\x1e\x44\xe9\x3d\x6b\xaa\xa8\xb4\x91\xc2\x80\ +\xc2\x98\x24\x08\xbf\xb4\xce\x3d\xa5\xdf\x6b\xc3\xeb\xa4\x4f\x66\ +\x5a\x03\x4a\x1a\x2f\xdc\x4b\xed\xd7\x5e\xf9\x5d\x81\x4b\x24\xbe\ +\x03\xe0\xe6\x65\x39\x3a\x69\x66\xd4\xa1\xc2\xd9\xfb\x30\x28\xcb\ +\x9e\xc9\xa2\x2d\x94\xfe\x8d\x35\x28\x26\xea\x3f\x34\xf1\xd5\x44\ +\x04\x31\x37\x57\x6e\x19\x14\x62\x03\x2a\x77\x6b\x79\xce\xbf\x7e\ +\x7f\xdb\x2a\x43\xbf\xf0\x5c\x2f\xc4\x59\xd3\x4e\x6c\x1d\x03\xd2\ +\xec\x06\x6f\x80\xbb\x4f\x55\x04\x0f\x0a\x0d\x78\x5f\xc3\xec\x2a\ +\x9c\xb5\x9c\xde\x60\xe9\x07\x01\x21\xbd\x25\x67\x30\x5a\x9f\x25\ +\x07\x45\x13\x0b\xc8\xb3\x6a\x2a\x02\xb4\xbf\xc7\xd9\x6b\xb5\x06\ +\x22\x61\x33\x64\xce\x2e\x6d\xf5\xdd\x80\x4b\x55\x4a\x95\x24\x3c\ +\x43\x2b\xdf\x7a\xe8\xc5\xca\xe2\x9e\xaa\x99\xf9\x89\x92\xf3\x16\ +\x8b\xa8\x87\x86\x4a\xc0\xe1\xb5\x59\x1d\xe0\x94\x8a\x8d\xf1\x8a\ +\x55\x22\xa0\xa8\x10\xf3\x54\x0d\x5a\x24\x58\x2f\xb9\x32\xb7\x88\ +\x79\x26\xeb\x98\x14\xa9\xd2\xec\x51\x7a\x31\xde\xd6\xf2\x49\x83\ +\x3b\xa8\xe7\xcf\x75\x12\x87\x2c\x6b\xf4\x94\x08\xb1\x8b\x63\x22\ +\xf9\xe2\x87\x0b\xa8\x3d\x80\x2c\xc3\xdc\xdd\x81\xad\x41\x6f\xf4\ +\xd6\x2c\x98\xf6\xcf\xfb\xf3\xea\xdf\x4c\x37\x18\xf6\xc9\x4b\xc6\ +\x66\xcd\xc8\xfe\x98\x66\xa4\x4c\x53\x4e\x2b\x6f\x9e\x31\xc2\x07\ +\x19\x65\xae\xf3\xef\x24\xf8\xf9\x66\xb5\x68\xbb\x56\xfd\xf6\x66\ +\x77\xd9\x0b\xb1\xd6\xcf\x0a\x35\xe9\x66\x9f\x4f\x54\xa2\x7e\x04\ +\x10\xe6\x6d\x1e\x31\x2a\x58\xf3\xe8\xd6\x2d\x3f\x7a\x3a\x0e\x83\ +\xce\x5b\x01\x63\x8c\x88\x7d\xb5\xc6\xda\xfa\x27\x80\x8b\x0a\x27\ +\x31\x88\x1a\x51\x17\xb7\xaf\xff\xcd\x75\xb3\x1c\x36\x67\x0c\x50\ +\x16\x73\x66\x4d\x75\xac\xe0\x18\xfe\xd5\x55\x93\xb0\xac\x7b\xd4\ +\x09\x8b\x47\x9f\x03\x54\x28\x34\xce\xe7\x0e\x5f\xdc\x21\x7c\x0b\ +\x62\x0b\x53\x97\x10\x1f\x10\x5b\x0f\x4c\xa6\x71\xea\xc6\x4e\x93\ +\x40\xa0\xab\x96\x75\xbd\xf4\x3d\x3d\x27\x00\x9c\x87\xbf\xf7\x13\ +\x64\xa6\x23\x4f\x88\x14\x21\x44\x4c\xf9\x19\x55\xc0\x55\x2e\x29\ +\x41\xf5\xb9\xc3\x4d\x86\xf7\xdb\x23\x35\xec\xb6\x4b\xa8\x8f\x31\ +\x46\x62\xe6\x41\xf5\x79\x1e\x40\x01\x9a\x1b\x09\x87\x9e\x29\x55\ +\xa8\x8e\x65\x4c\xc4\x7d\x36\x43\x07\x76\xb1\x77\x39\xfa\xbf\xeb\ +\xc1\x3b\x6d\x4c\xd0\x5c\x25\xaf\xc3\x18\xd7\x95\x40\xda\x59\xd8\ +\xaa\xc2\xe9\x70\x00\x48\x51\x59\x5a\x51\x6d\xd2\xeb\xeb\x70\x89\ +\xb6\x3e\x4e\xe9\x7c\x9a\xcf\x55\x16\x69\xc1\x71\xae\xa6\x07\x0f\ +\xe3\x8c\xa6\x89\x65\x0d\x11\x1a\x13\xe0\x48\x65\xec\x25\x23\x9d\ +\xe5\xc1\xa6\xb9\xa0\x7e\xc1\xf6\x0c\xf3\x9a\x98\xcc\x4c\x72\xba\ +\x67\x8f\xf4\x46\x21\x0f\x89\x80\x44\xb0\x2b\x00\x36\x90\xb6\x4d\ +\xe7\xa8\xe3\x82\x57\xcd\x80\xa0\xf4\x3c\x6d\x8a\x82\x33\x55\x1c\ +\x6c\xe4\x2e\x72\x1e\x82\x90\x74\x1f\xc5\x10\x34\xf6\xb5\x9f\xb9\ +\x68\x4e\x24\x85\x86\x32\x36\x27\x48\x9e\xdb\xc5\xd6\x40\xbb\x06\ +\x22\x89\x25\x26\x5e\xff\x7e\xaa\x6a\xbf\x1b\x70\x15\x45\xf1\x04\ +\x14\x4f\xde\xfb\x3a\xc6\xb8\x07\x50\xe5\xce\x50\xd3\xfb\xd3\xcc\ +\xe9\xa2\x31\xd3\xac\x3e\x53\x44\x10\x82\x80\xd9\x24\x90\x11\x0d\ +\x31\xda\x3c\x31\x34\x0e\x4e\x9b\x4a\xa9\x49\x76\x0d\x45\x35\xb7\ +\x3f\xe8\x6a\x1b\x78\xb1\xdf\xa3\x39\x1c\xd0\xc5\xb4\x62\x0b\x5e\ +\xca\x43\x6f\x89\xbf\xdf\x90\x78\x26\x40\x83\x00\xd2\x00\x96\x46\ +\x2d\xd3\xbe\x6e\x67\xf8\x37\xb9\x8e\x54\xd8\x31\xce\x50\xc9\x40\ +\x4b\x0b\x8b\xf2\xbf\x3a\xa8\x60\x4d\x91\xa4\xb3\x6f\x37\xd3\xd2\ +\x98\x52\xf2\xaa\x40\x4c\xb2\xd1\x2f\x0e\x2b\x7d\x0b\xb6\x05\xa8\ +\x2e\x11\xdb\x00\xf5\xe1\xec\x73\x87\x53\x5a\x5b\xdc\xd7\xf4\xd9\ +\x7a\x80\x51\x4a\x5d\x86\x98\xd6\x04\x72\x51\x80\xe8\x3c\x26\x1b\ +\xa4\x89\x0a\x9b\xb6\x5e\x05\x10\x03\x44\x05\xe6\x42\xa5\x93\xaa\ +\x16\x44\xd4\x7d\xf3\xe0\xea\x1f\x7d\x42\x39\xc6\xe8\x62\x8c\xb5\ +\xaa\xd4\x12\x65\x0f\xa8\x25\x22\x30\x03\x22\x0c\x66\x1d\xb2\xec\ +\x34\xb4\xef\xa7\x36\x12\x66\x03\x66\x9e\x84\xd7\x79\x57\x14\x9d\ +\x55\xb8\x4f\x5d\xa8\xbe\x5a\x43\x99\x37\x25\xd2\x5c\x59\xc1\x30\ +\x43\x55\x10\x84\x21\x20\x14\x50\x14\x7c\x4d\x01\x9a\x26\xf5\x02\ +\x17\xac\x00\x51\xca\x33\xc5\x9e\x49\xeb\x03\x22\xc9\x7f\x16\x17\ +\xf9\x07\x1a\x40\x47\xcc\x20\x4b\xc3\x25\xd6\xbe\x69\xb0\x77\x29\ +\xa3\x00\x12\xa1\x43\x7c\x99\x00\x3c\xf4\x69\x9f\x49\x50\x53\x96\ +\xe7\x36\xdb\xbe\xe5\x25\x9f\x37\x74\x20\x36\x30\xa5\x81\x18\x86\ +\x34\xdd\x58\xdd\x31\x9d\xf4\xc8\x3c\xff\x5a\x97\x5c\x68\x5d\xa6\ +\x5f\x34\x35\xca\x6a\x16\xb4\x11\x3f\xc4\x79\xa0\x39\x6b\x48\x99\ +\xd8\x42\xcc\xf2\x6d\x71\xbd\x2b\x59\xbf\x67\x70\x0d\x6e\x98\x31\ +\xde\x18\xe3\x45\xf4\x59\x4c\x7c\x0c\xc1\x3f\x84\x10\xdf\x30\xf7\ +\x00\x4b\x79\x30\x11\x49\xff\xe6\xf8\x44\x72\x23\xa2\x31\x19\x60\ +\x34\x55\x7f\xca\xf3\xb9\x96\x54\xd3\xd0\x40\x19\xe1\xfa\xb1\xa3\ +\x2b\xae\x82\x75\x16\xc5\xdd\x1d\x9a\xc7\x47\x18\x68\x1a\xae\x10\ +\x09\x51\xb3\xf6\xe0\x45\xec\xdc\x28\xc4\x46\x94\x98\xba\xa0\x80\ +\xed\x63\x92\x0b\xda\x69\x69\x92\xfa\xa4\x41\x62\x32\x00\xbd\xa7\ +\xd5\x8c\x81\x16\xae\x37\xf3\xc9\xa5\x0c\x21\xfd\x3b\xc8\x12\xd0\ +\x0c\x5b\xfd\xd7\x90\xa8\x30\xf6\xca\xe4\x84\x8d\xef\x01\x91\xd4\ +\x55\x6c\x0c\x68\x57\x21\x9c\x9a\xc5\x9c\x9f\x09\xd3\x71\xb5\x83\ +\x6a\x3e\xc6\x44\x07\xbd\x94\x9c\x49\x63\x40\xa3\xce\x3c\xef\x7c\ +\x0a\x69\x3d\x59\x06\x53\xba\xcf\xc3\x90\xbe\x6b\x03\xe1\x53\x57\ +\x32\xbe\x3b\x70\x8d\xd7\x9f\x84\xd9\x9e\x8c\x31\xad\x31\xe1\xc9\ +\x7b\xff\x5e\x44\x77\x03\xad\xce\x0c\x88\x82\x21\x90\x8c\x3a\x51\ +\x45\x08\x7e\xb0\x60\xb3\x49\x4e\x2a\x03\x69\x49\x33\xcb\x95\x4a\ +\xa1\x12\x30\xa7\xb9\xa0\xc9\xed\x35\x06\x45\x55\xa1\x79\x7c\x1c\ +\xaa\xf4\x81\xa4\x9e\x7b\x54\x42\x6d\xc7\x09\x26\x5f\xcc\xb8\xf7\ +\x00\x73\xf4\x42\xf2\x50\xcf\x4b\x36\x86\x31\xb4\x0c\xb0\x01\x15\ +\x36\x81\x4d\xd3\xa0\x02\xf5\x3e\x01\x4d\x92\x8b\x3c\x8e\x44\x22\ +\x44\x1f\x61\x8a\x02\x90\xcf\x10\x44\xea\x19\x15\x09\x60\xb6\xb0\ +\xbb\x0a\xf1\xd4\x0d\x79\xc5\x51\x3e\xe1\x92\xb2\xe8\x19\xd1\x90\ +\xdc\xbf\x49\xea\x80\x4d\xbf\x71\xce\x6f\x2a\x61\xbc\x8d\xec\xec\ +\xd0\x33\xd6\xc7\x93\x2a\xf1\xda\x70\xf8\xe2\xbb\x06\xd7\x24\xe6\ +\x11\xe7\xdc\xd1\x5a\xdb\x84\x10\x76\xde\xfb\xb7\xa2\x71\xc7\x44\ +\xd0\xde\x55\xcc\x00\x63\x49\xa5\x9b\x31\xbb\x7a\x33\x80\x0d\x7e\ +\xc2\xbc\xbf\xb8\x77\x2b\x13\x39\xc2\x9b\x83\xe8\x6c\x59\xa6\x26\ +\x4a\xef\xc1\x13\x0b\x18\x15\x38\x06\x42\x65\xd2\x5c\x60\x05\xbe\ +\x58\x45\x37\x01\x4c\x40\x8e\x6f\x58\xc5\x7a\x69\x0b\xce\xa0\x4b\ +\xae\xe1\x90\x17\xe2\x44\x02\x69\x5d\xa6\x6b\x10\x05\xea\xd3\x34\ +\xc6\x9e\x75\xc8\xd5\x63\xe0\xab\xe6\xea\x8a\xde\x80\x84\x74\xbd\ +\x6a\x07\x6d\x02\xc4\x87\xd4\x25\x3e\x65\x3e\xd7\x6a\xc7\xf2\x85\ +\x48\xf1\xa3\x40\x56\x3e\xca\x98\xa4\x55\x19\x37\x2e\x8b\xb1\x04\ +\xc3\xe9\xfb\xcd\x52\x16\xd1\x43\x51\x6d\xf7\x7d\x7e\x63\xa4\xc6\ +\x17\x9f\x6c\x06\xd9\xb3\xb5\xf6\xe8\xbd\xdf\x37\x6d\xf3\x1f\x94\ +\xe3\x07\x08\x27\x01\xeb\xdc\x47\xca\x60\x88\x26\x77\x2f\x4d\x35\ +\x19\x01\x36\xb6\xb2\x8f\xea\x50\x29\xa1\x1c\x61\xd5\x9c\x8d\xf9\ +\x1c\x59\x43\x07\x57\x14\x68\xba\xee\xac\x89\x52\xf2\x04\x13\x00\ +\x28\x58\xb7\xf5\xd6\x5f\x80\x8f\xd4\x23\x29\xe0\xb3\xc1\x5a\x9f\ +\x2d\x12\x38\x02\x2e\x86\x7c\x4d\x73\xbf\x1b\x5b\xa0\x2e\xc1\xbb\ +\x0a\xe8\x3a\x84\x53\x0b\x88\x22\xfa\x00\xae\x6c\x7a\x3f\x6d\x13\ +\x0c\x9b\xdf\xa5\xff\xbd\x28\x98\x22\x6c\x69\x10\x92\x5f\x3f\xaa\ +\xf9\xd3\x0a\xa8\x24\x8e\xee\x1f\xb6\x99\x73\x4d\x74\xeb\x19\x71\ +\xd4\x1f\x86\x9d\x05\xb1\x42\x82\xcc\x3e\x42\x43\x77\xcd\x07\xe0\ +\x6f\xa9\x80\xf7\xab\xed\x04\x44\x24\x45\x51\x3c\x19\x63\x9a\xa6\ +\x69\xfe\x3d\x4a\xac\x89\x09\x2c\x89\xc8\x10\x4e\x71\x48\x1f\x67\ +\x49\x8c\xa3\x80\x8c\xae\xb3\x86\x23\x29\xa2\x9b\x89\x2c\x66\x46\ +\x7d\xbf\x87\x89\x5d\x2e\xab\xa1\x5c\x29\xa2\x43\xa1\xc1\x29\x26\ +\x66\xac\x60\x3d\x5f\xf6\xd7\xc6\xe5\xac\x30\x65\x12\x32\x6d\x6d\ +\xfe\xac\x1e\x97\x3e\xa7\xd6\x0d\x44\x04\x6c\x01\xf7\xe6\x1e\xd2\ +\x79\x48\xd7\xe1\xac\x0c\x5e\x3f\x0f\xd3\x50\x49\x61\x60\x65\x41\ +\xd6\x02\xea\x17\x16\x16\x50\x8d\x59\x83\xf2\xb6\xcd\x88\x08\x49\ +\x59\x79\xe5\xf4\xd8\x32\x8c\x33\xa9\xa7\x6f\xc1\xdb\x20\x74\xd7\ +\xac\x7e\x2f\xb6\x1c\x7f\x28\x70\x4d\x89\x8f\xdd\x6e\xf7\xbf\xbb\ +\xae\x7b\xeb\xbd\x7f\x2b\x2c\x0e\x0a\x90\xa4\xde\x6e\x12\x06\x58\ +\x06\xed\x04\x22\x02\xf1\xfa\x8d\xe8\x05\x43\x2f\xf5\x78\x81\x18\ +\xc6\x15\x28\x4b\x0b\x52\x01\x5b\x07\x50\x02\x98\x88\x22\x66\x55\ +\x27\x9f\xf3\x4f\x8e\x74\x5e\x0d\x7e\xc9\x5f\xa4\xed\x35\x24\x41\ +\x53\xfb\x0d\xe3\xeb\x29\x91\x6e\x1d\x40\x22\xd0\x1d\x01\x36\x60\ +\x53\x80\xf7\xbb\x64\xb5\x24\x5e\xfe\xac\x9b\x26\x94\x24\x96\xc1\ +\xb0\x49\xc2\xfe\x5d\x0f\x24\x19\x5c\x76\xbd\xe1\x14\xf5\xc2\x35\ +\xe8\x7f\xd7\xe7\xb5\x18\xc9\x23\x19\x2c\x56\x9f\x6e\x08\xfe\x22\ +\x87\xab\xa9\x80\xd7\xfc\xb0\xe0\xca\x16\x48\xcb\xb2\xfc\x68\xad\ +\x3d\xb4\x6d\xfb\x53\x88\xe1\x8e\x89\x49\x20\x23\x75\x4f\x80\x50\ +\x16\x03\x8d\x11\xc6\xd8\x81\xad\x1a\x18\xb2\xcc\x1a\x86\x7e\xcc\ +\xe7\x06\x09\xc6\xd6\x22\x28\xa0\xa7\x06\xd6\x85\x21\x0f\x65\x98\ +\x61\x0d\xa7\x06\xc3\xa4\x82\x03\x8d\x3e\xf5\x85\xd1\x8d\x8b\x72\ +\x8d\x24\xeb\x0d\x8b\x57\x70\x41\x2f\xd2\xf3\xf8\xcc\x0b\x3a\xe4\ +\xcf\xe0\x9b\x79\xbf\x06\x3e\x03\xd8\x4b\x61\x46\x28\x34\x76\x40\ +\x6c\x67\x4c\xa7\x6e\x35\x25\xdf\x2a\x1f\xb7\xf0\xbf\xc9\x24\xb2\ +\x63\x4d\x4e\x8d\xb2\x1b\x9f\xfa\xfc\x36\x63\x5a\xce\xb3\x92\xbf\ +\x89\x98\xeb\x4f\x15\xfe\x30\xc6\x74\xbb\xdd\xee\xff\x94\xae\xfc\ +\x9d\x99\x03\x13\x83\x89\xb3\xb5\xe2\x21\xee\x12\x15\x48\x0c\xab\ +\xfa\x83\xbd\xa6\xa1\x8a\xac\x93\x1a\xaa\x20\xeb\xc0\x45\x99\xb4\ +\xf8\x62\x1c\x89\x82\xe0\xa1\x5d\x0b\x6d\x4e\x60\xdf\xe5\x3a\x36\ +\xfe\x62\xa1\xae\x9e\x15\x53\x51\xa8\xd7\x9b\x75\xd4\xbf\x02\xca\ +\x6e\x62\xf0\xae\xc6\x76\xc8\x39\x36\x09\x50\xf1\xd0\xe8\xc7\xb1\ +\xab\x6b\xda\xd7\x2b\xdd\xd4\xba\x05\xe6\x0b\x2e\x75\x6a\x8e\x4c\ +\x16\x57\x37\x98\x4c\x8d\x7e\x7d\x67\x18\x3d\xfa\x6f\xa6\xe5\xff\ +\x2f\x51\xd5\x29\xab\xf2\x83\xb3\xa6\x33\x9c\x62\x24\xce\xa0\x1a\ +\x86\x2a\x30\x23\x86\x90\x85\x4b\xe6\xbb\xf2\x68\xbd\xb2\x2b\x39\ +\xb7\x90\x43\x05\x3e\x57\x7b\x10\xdb\x49\x9b\xf8\xd8\xbb\x04\x10\ +\x54\x22\xd4\x77\x18\x6b\x7d\x3e\x0f\x5f\x4b\x39\xb3\x18\x93\x8b\ +\xf8\xb7\x79\xd0\x32\x05\x20\x50\x4d\x40\x42\xf4\x50\xf5\x09\x50\ +\x79\x91\xcf\x3a\x1d\xa7\xc7\x38\x53\xf9\x5c\xf9\xfd\x0d\x3c\xe5\ +\x52\xe5\xb7\x17\x95\x5d\x0e\xd5\x4b\x79\x30\x4d\x35\x86\x74\xc9\ +\xfd\xfc\x76\x18\xc3\x3f\xfd\x44\x55\x95\xda\xb6\xfb\x85\xa0\xa5\ +\x89\x0d\x8e\x1d\x50\x96\x35\xc0\x49\x09\x8a\xc0\x60\x01\x14\x11\ +\x12\x63\xd2\x95\x5f\x8c\x18\x92\x18\x11\x25\x82\x22\x4d\x6e\xc4\ +\xbc\x9a\x1e\x65\x05\xb2\x16\xda\x86\x91\xd9\xd7\x15\xc6\x6b\x71\ +\xb7\x5e\xa2\x21\xbf\x4a\xc4\xe5\x12\x3e\x62\x4d\x15\x19\xfa\x57\ +\x81\x67\x21\xde\xd1\xbb\x77\xd3\x36\x67\x9d\x17\x15\x6f\xd6\xc5\ +\x6e\xca\xf5\xae\xc4\x4f\xb8\x21\xc6\xbc\x20\xd5\xa8\xb8\x18\x54\ +\x4d\x2c\xd7\x6a\x9f\x0e\xe9\x37\x34\xb3\xeb\x4f\x3e\x51\xa5\xae\ +\x6d\x7f\x89\x31\x3e\x58\x39\x51\xdb\x9e\xd0\x34\x0c\x43\x11\x45\ +\xb9\x43\x80\x01\x34\x26\x55\x5e\xc3\xd0\x18\x00\xe7\xce\x6b\x0d\ +\xfb\x4a\x0f\x9e\x64\xfc\x97\x52\x00\x6c\x60\x76\x77\xf0\x6d\x0b\ +\x95\x08\xd2\x49\x93\xd1\x4b\x7c\xf4\x1b\x5c\xc6\xb5\xb7\xc4\x90\ +\xeb\x1a\xf9\x05\x53\xe6\x6e\xd3\x06\x9d\x2b\x80\xca\xd8\x93\x31\ +\x03\xd2\xda\xac\x57\xac\xc4\x3e\x57\x34\x4a\x37\x85\x46\xaf\xcc\ +\xbc\x5b\x9d\x79\xf4\x39\xfb\x46\xf4\xe7\x93\xfa\xe6\xa6\xf0\x15\ +\x5c\xaa\x4a\x12\xba\x9f\x45\xe2\x83\xef\x4e\x64\xe4\x19\x41\x92\ +\x14\x74\xc9\x2d\x7c\xab\x80\xd9\xe5\x9a\x43\x80\x05\x10\x4d\x89\ +\xc9\x99\x2a\x14\x90\x0b\x79\x05\xd6\xea\xa6\xc5\x51\x89\x40\x7d\ +\x07\xfa\xf4\x21\x75\x33\x93\x0e\xb5\x36\x83\x73\x48\x18\x2a\xda\ +\x69\x12\xc0\xe9\xd4\x0a\xea\x9a\x78\x0d\x5d\xa8\xe5\xeb\x19\x3d\ +\x20\x7a\x85\x29\xe8\xf2\xe2\xd2\xad\x49\x11\xcb\xa0\x66\x94\x61\ +\x7d\x51\x7c\x45\x37\x6e\x1e\x74\xc5\xe5\x5d\x01\xe2\x45\xa3\x47\ +\x2f\xdc\xab\xb6\xf2\x88\xb9\xb8\x79\x7d\x67\x00\x7e\x78\xcb\xa5\ +\xaa\xec\xbb\xf6\x67\x48\x78\x7b\x3c\x36\x90\xee\x80\xb2\x12\x74\ +\x81\x51\x15\xb9\x3c\xe9\xd0\xa1\xe0\x08\xbb\xdf\x0f\xb5\x88\x84\ +\x34\x4c\x9c\x8c\x3b\x1b\x91\x28\x43\xb5\xc6\x85\x78\x96\x19\x5c\ +\xef\x10\x0f\xcf\xab\x8b\x40\x27\xa2\xf7\xb4\x52\x19\x7f\x31\x94\ +\xd8\xd8\xf9\x75\xea\x23\xe6\x75\x61\xae\x56\xc0\xdd\xd2\x12\x7c\ +\xc3\x21\xe8\xfa\x47\x9c\x4d\x20\x59\x99\x48\x02\x5e\xcc\x42\x5b\ +\xf9\xae\xba\x22\x17\xc7\xce\x20\xb6\xf1\x6c\x80\xc4\x2c\xc6\xda\ +\xb0\x9c\x4b\xf7\x70\x4c\x79\xe6\x32\xa8\xad\xd6\x9a\x1f\xd9\x72\ +\xa9\x2a\x07\xef\x7f\x12\xd1\xb7\x00\xa1\x28\x1d\x50\xbc\x41\x84\ +\xc0\x55\x01\x8e\x3b\x1c\x4f\x11\x4e\x05\x14\x03\xc2\xf3\x13\xcc\ +\xfe\x2e\x95\xe2\x0c\xf3\xb4\xf4\xec\x1e\xf7\xd6\x8b\xd9\x5c\xf4\ +\xf2\xb8\xda\x43\x16\xe0\x5a\x6d\xd9\xba\x32\xab\xea\xd2\x2f\xa6\ +\xad\x69\xd3\x3c\x10\x21\xc7\xe3\x34\xa8\xc6\xfd\x05\xb1\xd7\x0d\ +\xbf\xbf\x30\x68\xfc\x96\xf6\xb0\xcd\x38\xab\x28\x60\xa4\x41\xf0\ +\xba\x3e\x73\x79\x61\x25\x6f\xda\x4b\x7a\xa6\xd7\xb8\xd5\xbf\xd0\ +\x1f\x95\x2d\x54\x55\x8e\x31\xbe\x13\xe0\x1d\x38\x8d\xde\x61\x63\ +\x01\x36\x50\x2e\x50\xd5\x35\x50\xbc\x41\x7d\xf7\x06\x76\xbf\x03\ +\x39\x07\x15\x45\x38\x3c\x27\x2a\x7e\xd2\xf1\x4c\x4b\xd5\xa6\x2c\ +\x1a\x3a\x93\x3d\x5e\x73\xaf\x8a\x12\x70\xee\x72\x69\xdf\x46\x5c\ +\x71\xab\x92\x2f\x2d\x76\xf1\x29\x3b\xde\x57\x31\xfd\x65\xec\xbc\ +\xe2\xfa\x78\x4d\x59\xdc\xed\xde\xf3\xe2\xc9\xb5\xd0\x15\x96\x90\ +\x16\x16\x6b\xb0\xd6\x23\x1f\x8b\x6a\x6c\x25\x99\x5a\xca\x99\x20\ +\xcd\xda\x67\x6c\x5d\x73\x95\x14\x33\xd3\xda\x97\x1c\x9a\x72\xf9\ +\x87\x02\x57\xd2\x99\x97\xb7\x51\xe4\x27\x95\x34\x2e\x48\x73\x81\ +\x67\xba\xd0\x59\x55\x55\x53\x3b\x2a\x57\x15\xf8\xee\x1e\xf6\x6e\ +\x8f\xc8\x06\x27\x7f\x42\x44\x96\x5b\xcb\x71\xd7\x74\x31\x2b\x00\ +\xe9\xf3\x5d\x97\x2c\x8d\x71\xe0\xa2\xba\x49\x33\x46\x6f\x75\xb1\ +\x6e\xb1\x14\x53\x72\x23\x0e\x65\x82\xeb\x14\xf6\x4b\x67\xbb\x5e\ +\xa2\xbd\x33\x00\x86\xe5\xb7\x90\x6d\x9b\xfd\xe8\x42\xde\xed\x36\ +\xe7\x75\x75\x5c\x6b\xd2\x73\x4b\xdd\x0b\x54\xdc\xe0\x01\xd3\x3a\ +\xf8\xcf\x15\x7e\x15\xd0\x78\x89\x3d\xf9\x66\x18\xc3\xaf\x06\x2e\ +\x11\x79\xe7\x83\xff\x39\xc6\x80\x98\x2d\x8c\x4e\x5c\xa6\x25\x3b\ +\xac\x7d\xed\x99\x2b\xe0\xf6\x7b\x38\x57\xc0\x4b\x83\xa8\x3e\x8f\ +\xf8\xa1\x89\x2a\x14\xe5\x0c\xbe\x0e\xaa\x41\xdb\x03\x90\x15\xbc\ +\xbf\xbf\xea\x86\x0c\xe2\x28\x0b\xb4\xe9\xf4\x07\x73\x01\xcf\xd9\ +\xf3\xc9\x2e\xbf\x94\xb6\xd6\x9c\xae\x91\x35\xbd\xc1\x5b\x63\xa4\ +\x15\xd5\xdf\x35\xc0\xac\x12\x13\x4b\x6b\xc3\xe7\x31\xd6\x60\xd1\ +\xb2\x05\x9b\x5a\x2c\x9d\x5a\x2c\x59\x58\xac\xde\x6a\x99\x54\x8d\ +\x4d\xf9\x78\x64\xe7\x99\x81\xd9\xf5\x59\x6c\x12\x8a\xf3\x63\x0e\ +\xdc\x90\xea\xc6\xd8\xa1\xe9\x66\xf8\x6d\xc4\x5d\x5f\xe5\x24\xbd\ +\xf7\xef\xba\xae\xfd\xb9\x17\x09\x5d\x56\xa3\xcd\x35\x27\x74\xfe\ +\xfb\xdc\x5c\xe7\xb8\x04\x8b\x41\x90\x54\xbc\x69\xd4\xce\x59\xc3\ +\xdc\xea\x2e\x31\x42\x8d\x49\x37\x77\xad\x3b\x62\x90\xbc\x76\xa9\ +\x55\x83\xd6\x63\x2f\xea\xa5\xb9\xf3\x60\x03\x1d\x45\xce\xcf\x7e\ +\x86\xbc\xb3\xea\x6c\x83\x98\xc6\x5f\x4b\xe1\x17\xcd\xf1\x97\xe3\ +\x1b\x33\x01\x97\x34\xe5\x6f\x74\x57\x6f\x69\xae\x3e\x3b\xbe\x5e\ +\xe0\x57\x56\x48\xcc\xe1\x63\xac\x49\x89\xe8\x7c\x1c\x32\xf3\x52\ +\xc7\x2d\x8f\xe0\xba\xb7\x9c\x7a\xd8\x2e\xec\xfa\xf4\xad\x34\x4d\ +\x7e\x31\xb8\xba\xae\x7b\x73\x3c\x1e\x7e\xea\xda\x2e\x57\x47\x28\ +\xa2\x04\x28\xf7\xad\xde\x0c\xab\x06\xce\x30\xd8\x3a\xb0\xb5\x20\ +\x4a\xad\x27\x7d\x6c\x95\x2c\x5c\x1a\xac\x60\x50\x40\x24\x82\x42\ +\x07\xe3\xca\x51\x4e\x2c\x07\x07\x31\xeb\x1a\x32\x5f\xb8\xfc\xa2\ +\x30\x0f\xef\x21\xbf\xfe\x17\xd4\xac\x1b\x8d\xa1\xd2\x27\x6a\x6a\ +\xee\x33\x9c\x4b\x12\x29\x83\x68\x2a\xa0\xdd\xeb\x2e\xe7\xdc\x52\ +\xaf\x89\x91\x47\xbe\x42\xa4\xd7\x82\x99\x4d\x6c\xec\x27\xd5\xda\ +\x97\x2e\x85\x95\xe9\x8c\x6b\x4c\xe5\xc5\x29\x2b\xb4\x88\xb9\xb2\ +\xac\xf5\x2c\x56\x74\x06\x50\x82\x74\x61\x95\x45\x54\x5e\x89\xb7\ +\x90\x75\x6b\x8c\x99\x55\xd0\x93\x59\x08\xef\xac\x01\x56\x57\xe2\ +\xad\x35\x77\x51\xe2\xd9\x97\x9b\x28\x8e\x7c\x33\x6e\xe1\x97\x9e\ +\x24\xb5\x6d\xfb\xae\x39\x9d\x58\xa4\xef\xf1\x51\x04\x09\x10\x8d\ +\x43\x5e\x29\x04\x86\xb4\x80\x35\x4d\x6a\x08\x2c\x2b\x14\x65\x91\ +\x73\xa2\x93\x1e\x2c\x55\xa4\x0e\x30\x93\xab\x35\xf4\x2c\xe7\x95\ +\x62\xb7\x08\x55\x33\x6a\x5a\xd0\x4a\x36\xa4\x1f\xd8\x10\xe3\xc5\ +\x19\x58\x2a\x11\x1a\x00\x74\xa1\x6f\x0c\x4e\x4c\x1f\x8d\x82\x97\ +\xa3\x3c\x58\x2a\xdf\x82\x61\x28\xd9\xb4\xa2\xf2\x79\x6b\x06\x9e\ +\x7a\x0f\xe9\x02\x42\x48\x6b\x3a\x74\x80\xb1\x2f\xcb\x63\xeb\xcd\ +\x14\xe6\x4a\x9e\x69\xe9\x8a\xca\xc6\x1f\xf4\x9a\xfd\x55\x01\x26\ +\x86\xb4\xdd\x79\x85\xfb\x9a\x6b\x87\xd4\x36\x42\xa4\x43\xbd\xe7\ +\x00\x56\x9b\xba\x64\x88\xd6\xca\x9e\x6e\x4d\x27\xe4\x26\xd2\x0b\ +\xc4\x95\xfe\x08\x6e\xa1\xf7\x7e\xef\x7d\x67\xa7\x53\x2e\x68\x60\ +\xd0\xb2\x06\x04\x13\xa8\x50\x84\x96\xc0\x51\xd1\x41\x20\xe8\xd0\ +\x04\x41\xcd\x0e\x36\x3b\x00\x53\x8d\x75\xca\xf5\x67\x9a\xcb\xa1\ +\xa6\x62\x98\x43\x1b\x8a\x15\x98\x8b\x63\x9b\x08\x74\xff\x16\xf8\ +\xf0\xfb\x8c\xbc\x5d\xbb\x9f\x83\x64\x44\xcc\xb5\x82\x04\xb0\xd3\ +\x59\x2b\xcc\x98\x44\x8d\x8b\xa1\xe6\x00\x11\xa7\xc6\x46\x63\xa0\ +\xae\x82\xd9\x01\x4e\x15\xd2\x79\xf8\x93\x47\xec\x14\xb6\xfc\x3c\ +\x60\x91\x35\x80\xb5\x49\x97\x2c\xcf\x0f\xee\xd7\xdf\x99\x75\x02\ +\xb6\xab\x2a\x56\xaa\x2c\x34\x28\xd0\x75\xa0\xd2\x82\x60\x21\x6d\ +\x18\x2d\x1c\x30\xd7\xa8\x9f\xac\x7b\xd4\x05\x14\x72\x26\xca\xcb\ +\x66\xe8\xc1\x9c\x83\xea\x86\x3c\xd7\xcc\x1a\x4f\x2c\xd7\xaa\x52\ +\x88\xfe\x00\x96\x4b\x44\x8b\x18\xe3\xbc\x64\x82\x28\x95\x1e\xd1\ +\x64\x8c\x02\x03\x5a\x02\x6d\xcb\xd0\xda\x02\x4c\x90\x18\xd1\x1c\ +\x5b\x58\x93\xf4\x07\x0d\x11\xa2\xce\x07\xed\x8a\x44\x10\xcc\xdc\ +\x0b\x22\x82\xaa\x0c\x39\xaf\x29\xa0\x97\x35\xa8\x54\x54\x20\xcb\ +\x49\xde\x8c\xae\x6c\x98\x18\x5d\x1e\x05\x10\xbb\x2c\x71\x61\xcf\ +\x73\x56\xd3\xf2\xab\x24\x06\x15\xc7\x76\xfd\x81\x49\xb3\xe0\x82\ +\x51\x56\x3b\x68\x00\x48\x4e\xa9\x7f\xed\xa5\x2c\x6c\x48\x60\xa6\ +\xaa\x02\xcc\x2e\xcd\x36\x8b\x01\xd4\x8b\xda\x5c\xd6\x9c\x18\x15\ +\xa4\xfb\x61\x74\x34\x7f\x1e\xbd\xc2\xb8\x08\x2e\x0d\xa0\x76\x74\ +\x11\xb7\x8e\x97\xd5\x88\xa1\xed\x39\x28\x18\x69\x23\xf3\xb8\x38\ +\xa3\x79\xd0\x83\xe5\x33\x23\x35\xa0\xfa\x62\x91\x0b\xbe\x0d\x2a\ +\xfe\x0b\x77\x00\xe5\x41\xec\x93\x74\x32\x36\x86\xe6\xf3\xaa\x88\ +\xc0\x16\x40\x54\xc4\x7c\x53\x4d\x93\x68\xf7\xd6\x11\x3a\x0a\x70\ +\x64\x50\x81\xf3\x54\xc1\x6c\xb9\x7a\x45\x5b\x1a\x45\x43\x55\x31\ +\xc9\x79\x99\xac\x6b\x38\xc9\xcb\x4c\x5b\xb5\x8c\x05\x97\x15\xe2\ +\xf1\xb8\x59\xc1\x34\xdb\x61\xcf\x07\x28\x22\x76\xbd\x25\x9b\x83\ +\x6c\x5a\xf9\x74\x36\x4e\x48\x24\xb7\xb9\xe7\xef\xce\x79\x5b\x17\ +\xb9\x99\x73\x98\x59\xcc\x10\xa1\xc7\x03\xa8\x4c\x73\x92\xc9\x3a\ +\xc0\x15\x69\x23\x88\x01\xf0\x6d\x1a\x42\xa7\x0b\x77\x0c\x0b\xcb\ +\xb1\x60\xfc\xfa\xca\x0c\xf1\x0a\x2e\x03\xb8\x72\x00\xe5\xaa\x8b\ +\xb5\x1c\xa0\x02\x54\xd8\x51\x49\x6a\xe5\x7b\xb0\x4d\x1e\xc0\x64\ +\x50\xcd\x2a\x25\x4f\x44\x60\x63\x10\x35\x9c\x13\x26\xc3\x4e\xc0\ +\x7f\x61\xc2\xf0\x6f\x06\x2e\x22\x92\xd1\x43\xa2\xa1\x5a\x9d\x89\ +\x93\x34\x18\x23\xad\xcc\x5e\xa7\xae\x54\x68\x13\x87\xeb\x1d\x6a\ +\x07\xd8\xb4\x62\x7d\xdb\x81\x83\xc0\x96\x55\xd2\xfd\xa3\x91\x30\ +\x60\x6b\x46\x95\xd8\xcc\x35\xf6\xc5\xbc\x6c\x78\x26\x15\xbd\xe4\ +\xdb\xa9\xda\x03\xcd\xf1\xdc\x25\x9a\xfe\x0d\x6d\x24\xc2\x26\x0b\ +\x34\xb6\x80\x98\x54\x38\xb0\xc0\xf3\xb5\x04\x20\x24\xea\x2c\xf8\ +\x79\xd1\x72\xd1\x09\x2d\xde\x0a\x50\x0a\x88\x7d\xef\x33\x82\x4c\ +\x01\xb8\x3d\x8c\xa6\x00\x4f\x9a\x2e\xe5\x9e\x48\x67\xe9\x0f\x9a\ +\xba\xb6\xfd\x7e\xd8\x5b\xde\xac\x6a\x05\xea\xc0\xa5\x83\x46\x85\ +\x78\x19\x08\x90\xd9\xdf\x58\x0b\xe0\x42\x96\xbc\x6f\xc4\x9f\xd2\ +\xfc\xba\xe6\xee\xa6\xd8\x15\x61\xb1\x31\xe9\x38\xec\xe3\xd2\x14\ +\xbe\x6f\x41\x4b\x83\xbf\x10\x5c\x81\x88\x74\x3a\x23\xb9\x07\xd7\ +\x30\x54\x7a\x5a\x3f\xc6\x80\x2d\x62\x2a\x72\xad\x1c\xe0\x4c\x22\ +\x31\x9a\x80\xa2\x0d\x88\x04\x1c\x59\x10\xcd\xd8\xdd\x9b\x2c\xd4\ +\xc4\x4c\xe4\x55\xd2\x4b\xaf\xe9\x8a\x1a\xef\xa0\xee\x4b\x04\x2a\ +\xab\xd4\xfa\x8f\xeb\xc3\x48\x66\xb9\xa4\x95\x76\x0b\x89\xa9\x11\ +\x38\xf4\x6d\x61\x7f\xc1\xad\xd5\x85\x25\xd5\xb6\x8f\x85\x08\xd0\ +\x00\xc8\x11\x08\x4f\x59\x19\x98\xc1\xf7\x7b\xd8\xbb\x1a\x5c\x14\ +\x09\x08\x4c\x98\x66\x19\xce\xac\x5a\xef\x0d\xc4\xfe\x98\x1e\xa6\ +\x36\x60\x47\x67\x2e\x1b\x71\x6a\x72\x85\x86\x8b\xf9\xc3\xe9\x18\ +\xa2\xe5\xa0\x3f\xe4\xd1\x42\x64\x8b\x84\x40\xc5\x4a\xbd\xa6\xac\ +\x8e\x97\x5a\xf8\x1b\x7f\x7b\xd7\xf0\x8b\x4e\x90\xd9\xb4\xcc\xac\ +\xc4\xa9\xe9\xb1\x47\x13\x53\xd6\x53\x57\x80\x8c\xa6\x6b\x28\xfd\ +\xb8\x18\x80\xcb\x7c\x35\xa3\xc2\x9e\x3c\xac\x0f\x08\x85\x45\xd8\ +\x97\x50\xcb\xf0\x10\x18\x4e\x6d\xfa\xc8\x55\xd2\x23\x89\x30\x96\ +\x48\x4d\x67\xe9\x2e\xc3\xdf\x61\xb7\x35\x16\xb4\xbb\xbf\x32\x21\ +\xef\x3c\xe7\x33\x00\x4d\xcf\xe7\x0c\x4b\x48\x96\x2c\x74\x89\x00\ +\xf9\xb3\x30\xa6\x38\xa7\xa9\x7b\x8f\x73\x00\xd8\x80\x94\x0e\x88\ +\x47\x20\x1c\x00\x78\x50\x61\x60\xea\x02\x66\x57\x81\xab\x32\x8d\ +\x7a\x5d\x90\x0b\x83\x4c\xc6\x94\xbc\x48\x3e\x05\x4c\x6d\x40\xcc\ +\x23\x71\xc2\x89\x7e\x27\xd6\xf1\x66\x62\x7d\x24\x2d\x19\x8c\xa5\ +\x55\x32\x77\x4b\x41\x00\x15\x05\xc0\x9a\x9a\x38\xd7\x52\x09\x39\ +\xbd\xb1\xd9\xce\xaf\x4a\x59\x4f\xe3\xfb\x05\x97\x31\xdc\x1a\x36\ +\x3a\xb4\xed\xf7\xf7\x81\x19\x3c\x21\x22\xd8\x01\xe2\x27\xee\xa1\ +\x55\x98\x10\x60\x8f\x1d\x4c\x14\x84\xd2\x41\xea\x22\x55\x94\x07\ +\xc1\x1d\x18\x65\x51\xa0\x28\xd2\x68\xb0\x44\xf9\xd2\xd9\x4d\x90\ +\x3c\x28\xef\x5c\x6d\x7d\x6a\xc1\x00\x2e\x6b\x90\xb3\xd7\x01\x06\ +\xac\xf6\x38\x9d\x8d\x41\xcd\x3b\xb2\x04\x20\xb4\x13\x4b\xf6\x15\ +\x41\xa5\x5b\xf9\xab\xcc\x6a\x6a\xb7\x35\x43\x4b\xb3\x45\x6b\x00\ +\x69\x40\x14\xc0\x05\xc3\xec\xab\x04\xb4\x5e\x7c\x74\x01\x32\x89\ +\x94\x5d\xef\x3e\x30\x8b\xb0\x35\x83\xcc\x68\xc1\xc8\x18\x80\xe2\ +\x55\x93\xbd\x90\xa0\x9c\x6d\x5c\xec\x5c\x3a\x8e\xf8\xf5\xcd\x70\ +\x46\x4b\xae\xdf\x23\xfd\x11\x2c\x17\x00\x18\x6b\x3d\xe5\x7c\x50\ +\x3f\x83\x29\xb9\x86\x66\xd2\x4e\xa0\x20\x06\xa2\x1f\xc5\xfa\xad\ +\x49\x5b\xbe\xaf\x0b\xc4\x2a\x4d\x89\x2c\xa3\xe2\x8e\x2d\x0a\xeb\ +\x00\x02\xac\x61\x94\x85\xcb\xad\xea\x3a\x2b\x87\x1a\x68\x79\xc9\ +\x03\x0f\x2e\xc4\x3c\xb0\x05\xb8\xde\x6f\xba\x86\xb7\x54\xc2\xaf\ +\xbd\x71\xc8\x79\x7a\xc0\xb7\x80\xef\x00\xf9\x82\x3a\x45\xbd\x94\ +\xe3\x5a\x24\x68\x45\x12\x11\x71\x3d\x60\xcb\x40\xd3\x16\xec\x00\ +\x53\x5b\xd8\x7d\x0d\x53\x95\x83\xf6\xa2\x44\x40\x82\x4c\xa8\xf7\ +\x04\x30\xe2\x08\x5b\xf6\x23\x59\x39\xbd\xbf\x7f\xd3\x05\x1f\x3b\ +\xcf\xa6\x38\x23\x52\xc8\x9a\x3c\xf5\xd2\x03\x88\xf3\xe2\xe0\x29\ +\x78\x54\xc6\x18\x75\x39\x9b\x77\xec\x48\x36\xdf\x3d\xb8\x9c\x73\ +\x87\x7e\x54\xd0\x74\x08\x9d\x61\x0b\xea\x65\xaa\x89\x60\x9c\x42\ +\x02\x0d\x63\x87\x4c\x01\x50\x81\x24\x79\x1d\x22\x76\x42\xd8\x5b\ +\x07\x6b\xec\xec\xbe\x55\x55\xf5\x87\x33\xe6\xd8\x47\xe5\xb4\x66\ +\xbd\x54\xa6\x91\xd6\xf9\x3d\x27\x80\xca\x1a\x64\xec\x66\xf5\xbb\ +\x5e\x03\x01\x6d\xb8\x8e\x13\xb7\x2a\xfa\x31\x26\xd3\x59\x6e\x6c\ +\x65\xcd\x63\xa5\x4e\x70\x8b\x2d\xd4\x95\xaa\x73\x49\xa0\x96\x70\ +\xe3\xc0\x2f\x8d\x80\xb4\x80\xb4\x20\x0e\x30\x05\x60\xea\x64\xcd\ +\x8c\xe3\x04\xd6\xb0\xd0\x2f\x80\x82\xac\xc0\x38\x82\x71\xc9\x8a\ +\xe5\xe0\xec\xfc\xba\x2d\x7a\xba\xd8\x4d\xce\x5d\x52\xe2\x99\xcb\ +\x32\x9b\x5d\xbf\xbe\xa3\x4c\xe6\x3d\xeb\xe0\x16\xd2\xda\xe7\x11\ +\xbe\x81\xca\xf8\x2f\x3e\xc1\xa2\x28\x1e\x99\x8d\xf6\x20\xea\xad\ +\x97\xc9\xae\x61\x9f\xad\xe7\x5c\x1e\x13\x3b\x1a\x26\xf0\xb8\x22\ +\xc2\xb4\x1d\xee\x60\x51\x3b\x97\x27\xd2\x0f\xbd\x5c\xea\x5c\xf1\ +\x5b\x51\x56\xff\xda\xed\x76\xbf\x91\x4a\x18\x27\x89\x60\x66\xbd\ +\x24\x5e\x16\xac\x54\x55\x90\x2b\x40\x45\x79\x79\x64\x10\xce\x93\ +\x9e\xba\x16\x87\xf5\x80\x5d\xd3\x98\x90\x64\xc1\xda\x63\x8a\xc7\ +\x88\x5e\x00\xa4\x75\x17\xe8\x8c\xe0\x98\x16\x43\x4b\x77\xb6\xde\ +\x6f\xb3\x66\xea\x41\x68\xc0\x56\x60\xef\x76\xb0\x95\x83\x06\x81\ +\xca\x9c\x52\x25\x28\x6c\xc5\xe0\xaa\x3a\x2b\x4b\xba\xe4\x05\x0c\ +\x71\x97\xa4\xa1\x78\x5c\xd7\x00\x04\xa4\xdd\x79\x6f\xdc\x5a\x62\ +\x59\x26\x59\x72\x5d\x61\x0b\x7f\x04\xb7\x90\x88\xa2\xb5\xb6\x25\ +\x1a\xad\x57\x4f\xc9\x1b\x72\xd0\xc8\x83\x94\x85\xb1\x8a\xd0\x11\ +\xc4\x27\x57\x51\x82\xc1\x5d\x55\x27\xd7\x8f\xc6\x61\xae\xcc\xe4\ +\xcb\xb2\xfe\xff\x5d\x51\x7e\xc8\xd6\xb1\x71\xd6\x1e\xa6\xd3\x51\ +\xa6\xc0\x49\x95\xf2\x57\xa8\x6e\xb6\xa0\xb2\x1a\x55\xa5\x80\xd5\ +\x79\xc1\x33\xc6\x50\x17\x14\xf1\xc6\x42\x3a\x9b\x63\x9c\x2d\x4d\ +\x77\x02\xba\x76\x3d\x87\x76\x0b\x4b\xb8\xfa\x79\x8b\x2f\x27\x02\ +\xc4\x4e\x3f\x23\x1d\x94\x47\xaa\xaa\x07\xe9\x11\xa6\xb6\x09\x40\ +\x64\xce\x4d\x37\x0b\x08\xdd\x8c\x25\xd4\x75\x8b\x72\xc6\x1c\xb2\ +\xcd\xc0\x52\x01\x69\x3b\x2b\xda\xde\xba\x2e\x7d\x2e\x73\x69\xb8\ +\x16\xf7\xeb\x87\x00\x97\x5a\xeb\x8e\xbd\x45\x99\x0e\x0f\x37\x6c\ +\x53\xce\x4b\x46\x22\x03\x96\xd1\x75\x06\xb1\x75\xa8\xdc\x1d\xac\ +\x75\x33\xdd\x0a\x6b\xed\x63\x55\xef\xfe\x5f\x63\xed\x71\xfa\x39\ +\x75\x55\x7d\x24\xe8\xbc\x8b\x6e\x90\x5f\x4b\xd3\x50\x54\xb7\x6f\ +\xb6\xaa\x82\xab\x5d\x4a\xc0\xde\x12\x0f\xad\x10\x1a\x58\x69\x35\ +\x99\x16\xea\xea\xca\xcc\xe1\xd0\x01\x5d\x93\xc7\x50\xe9\x2d\xcb\ +\x7d\x9d\x25\x5c\x2b\x63\x1a\x34\x6b\x7c\xce\x55\x7d\x01\x85\x42\ +\xd2\x80\x6d\xaa\x34\xd6\x49\x7e\x4d\x7b\xd7\x43\x3b\xf4\x15\xc0\ +\xaa\x74\x4e\x01\xce\xfa\x48\xd2\x73\xe3\x00\x5b\x57\xb9\xc6\xa0\ +\x3d\xcf\x8d\x5d\x10\xc6\xd1\xcd\x2b\xd3\x0f\x3a\xfb\x01\xdc\xc2\ +\x6c\x59\x8e\xcc\xac\xbd\xe5\xea\x87\x26\x30\x13\x48\x0a\xf4\xde\ +\x1e\x1b\x80\x11\x61\xd8\xa1\x2a\xee\xd2\xf4\x92\x1e\x59\x44\x52\ +\x94\xd5\x3f\xcb\xaa\xfe\x27\x11\x9f\x39\x3a\xd6\xda\xce\x19\x73\ +\xe8\x41\x45\x8b\x7a\xc3\xa4\xe2\xaa\x17\x76\xd3\x4c\x6c\x14\xd5\ +\x65\x12\xe1\x1a\xe3\xa1\x73\x2b\xa6\x6b\x44\xc7\x74\xc6\x5f\xd6\ +\xaf\x0f\x9e\x10\x02\x56\x5b\x30\x2e\xb9\x8a\x5b\x8d\xc6\xba\x78\ +\x1e\xda\x75\x82\xed\x45\xb4\xbf\x86\x9c\x48\x5b\x56\xb7\x67\xed\ +\xc7\xd9\xb9\xd0\xe2\xfb\x4e\x88\x26\x4c\x87\x8e\x0b\x48\x9a\x44\ +\x4a\xad\x4d\xb2\x5c\xc9\xbf\xad\x71\x3e\xf3\x6b\xa0\xdf\x84\x5b\ +\xf8\x55\x0a\x20\x8d\x31\x27\x63\xac\x0f\xda\x15\x34\x1d\x22\x4e\ +\x40\xe1\xd2\x04\xa1\x5c\xf3\xe7\x00\x00\x1c\x6b\x49\x44\x41\x54\ +\x12\x53\x46\x48\x64\x94\xae\x42\x5d\x55\x53\xeb\xa3\x86\x4d\x5b\ +\x94\xd5\x7f\x19\x63\xda\x4b\x9f\x53\x3a\xf7\xc9\xb7\xdd\x9d\x12\ +\x78\x98\xab\xdc\xd3\xe2\x99\x35\xbc\x34\x1c\x41\x45\xc0\xf7\x6f\ +\x21\xa7\x43\xae\x5b\x5c\x58\xac\x6b\xb2\x64\xd3\x5d\x69\x11\xfb\ +\x11\x8d\x5a\x8a\xcc\x04\x36\x94\xdb\x58\x38\x55\x23\x00\xa9\x82\ +\x22\xeb\xa1\x5f\x5c\xe8\xab\xc5\xac\x0b\x79\x69\x99\xb7\x6c\x88\ +\x00\xe1\xa8\xb0\x7b\x7a\xf9\x44\xf3\x0b\xf5\x58\x7a\xc5\xf7\xd3\ +\xad\x8d\xa5\x9f\xcf\x85\x16\xa3\x40\x6b\xba\x61\xa3\x17\xa0\xab\ +\xe5\x59\x69\x78\x39\x2f\xa4\xe3\xbe\xbd\xc7\x57\x01\x17\x11\xa9\ +\x73\xee\x39\xc6\xf0\x1e\x93\x16\x12\x45\x1a\x56\xe0\xb8\x42\xf4\ +\x0d\x2c\xd7\x28\xca\x62\x98\x5a\xc2\x44\xd1\x3a\xf7\x58\xb8\xf2\ +\x03\x31\x5f\x0d\xcb\x5d\x51\x9c\xac\xf7\x27\x2f\xd8\x4f\xab\xf0\ +\x15\xe3\x1c\xe5\x24\x91\x7d\x61\x25\x19\x07\xde\xed\xa1\x4f\x8f\ +\xf3\x9d\x92\x29\xe7\x71\x46\x77\x93\x46\xd4\xcc\x06\xb7\x11\xc6\ +\x81\x74\xe0\xfc\x3b\x1e\xdb\x53\x66\x73\xc7\x34\x40\xbd\x8e\xca\ +\x53\xb7\x2e\xe4\x65\x1c\xb7\x00\xfa\x5a\x9f\x54\x88\x00\x75\x0a\ +\x53\xf2\x65\x20\x9d\x05\x8a\xf3\x17\x75\xd5\x37\xbe\xf4\xfb\xf5\ +\xcc\xc5\x00\xb2\x6b\x9b\xc8\xc2\xe5\x35\xae\x00\x17\x75\x9e\x56\ +\x83\x1f\x1b\x5c\xd9\x35\xfc\xd4\xb6\xed\x7b\xc5\x64\x98\x5b\x06\ +\x98\x73\x0e\x46\x0d\xac\xe9\xe7\xf9\x12\x0c\x73\xeb\x8a\xea\x77\ +\xe7\xdc\xf3\x4b\x3e\x67\x57\x55\xbf\x7e\x3a\x1c\xf7\xe7\x96\x26\ +\x89\x87\xaa\x4a\x4a\x01\xd0\xba\xe1\x51\x89\xa0\xfd\x1b\xd0\xe1\ +\x00\xd1\xb1\x92\x5d\x35\x07\xdf\x66\xbe\xfa\x87\x1a\x3d\x5a\x2e\ +\x9b\xb1\x71\x32\x95\x97\xeb\x4c\xa7\x82\x2e\x2c\x3c\xba\x04\xa8\ +\x65\xdc\xb8\x92\x88\x9d\x5a\x2c\x5d\xe4\x97\x42\x9b\xd4\x7f\xd9\ +\xd1\xd9\xf4\x55\x5a\x6b\xbb\xd7\x6b\xa3\x50\xe6\x7c\xbb\x9e\xe5\ +\x38\x30\x51\xed\x1a\xef\xf9\xe2\x43\x66\x44\xcd\x98\x20\x9c\xbf\ +\xa5\x67\x16\xdd\xfd\x3b\xa8\x29\x52\x31\xf2\x85\x30\xf1\x87\x01\ +\x97\x31\xc6\x3b\xe7\x1e\xbd\xd7\x87\x71\xa2\x2f\x06\x3b\x6f\x26\ +\x2c\x94\x35\xf6\xb9\x28\xab\xdf\x8c\x31\xdd\x67\x7c\x4e\x57\x58\ +\xf3\xd8\x45\x79\x98\xf5\x90\x41\xd3\x40\x87\x5c\xcc\x8b\x4b\x9e\ +\x1d\x1b\xd0\x6e\x0f\x3c\x3f\x8e\x14\x7c\x54\xa0\xf1\xd0\x49\x61\ +\x2e\x70\x61\xc8\x07\xad\xf3\x20\xb3\x45\x84\x1b\x5d\x2d\xda\x00\ +\xd6\xda\xdf\xac\xa8\x30\x2d\xad\x41\x68\x15\xce\xd2\xd9\x7b\xf4\ +\x96\xe2\xca\xa5\xc1\xba\x22\xb1\xa8\x8b\x44\x97\x2e\xfe\x70\xfa\ +\x5c\x27\xa0\xec\x35\xe3\xa7\x06\xdd\xd5\x3b\xb8\xbb\xf7\x80\x2d\ +\x11\x62\xc4\x6d\xc3\x8b\x7e\x00\x70\x01\x40\x59\x96\x1f\x43\xf0\ +\x0f\x3d\xa0\x78\xb1\x7f\x13\x51\x74\x45\xf9\xc1\xb9\xe2\x91\x6f\ +\x70\x03\xb7\x1e\x55\x59\x7e\xe8\x0e\xc7\x87\xe5\xc2\x57\x05\x62\ +\x14\x18\xd6\xab\x63\x7d\x78\x77\x87\x78\x7c\x9a\xea\x84\x0d\x73\ +\x09\xb8\x98\xf4\x3d\xad\x85\x60\x74\xd9\xe3\x7a\x99\x4f\xbd\x4e\ +\x8a\x10\x16\x71\xc8\x92\x96\xd6\xb4\xa9\xc8\xd4\xbb\xcb\x5d\x1a\ +\x51\x00\x6a\x14\xb6\x66\xdc\x96\x55\x5b\x98\xb4\x61\xe2\x27\xd6\ +\x51\xb6\xa1\x51\x38\xff\x1e\x34\x63\x00\xcf\xc9\x8c\x04\x2e\x66\ +\x0b\x57\xed\x60\xea\x7b\xc0\x14\x10\x70\x56\x0e\xbb\x55\x08\xe4\ +\x07\x01\x17\x33\x7b\x6b\xdd\x53\x08\xdd\x7d\x1f\xb5\xf4\x4c\xae\ +\x31\xdc\x56\xf5\xee\x9f\xcc\xa6\xfb\xd2\x56\x01\xc3\xec\x0b\x67\ +\x3f\x75\x21\xbe\x99\xc7\x0d\x29\xb3\x2f\x2a\x60\x35\x73\x50\x50\ +\x6f\xe1\x7a\x3f\xb6\x84\x29\x2b\xc4\xd3\x69\xa6\x71\xae\xb9\x30\ +\x96\xcb\x73\xa1\xda\x6b\x40\x9a\xae\xc5\x8b\xbf\x9f\x1c\x80\x00\ +\x18\x6b\xa0\x49\x5b\x60\x68\x1a\x9b\x7a\x6c\x34\x43\xf4\x3c\xe1\ +\xc6\x3d\xd2\x44\xd3\xf8\x24\x44\x68\xfc\xbf\xed\x5d\x6b\x73\xe3\ +\x4a\x6e\x3d\x00\x9a\xa4\x64\xcf\x23\xbb\x5b\xb5\x49\xfe\xff\x5f\ +\xdb\x4a\x65\x37\xd9\xfb\x98\x19\x5b\x12\xd9\x0d\xe4\x03\xba\x9b\ +\x4d\x8a\x92\xed\x79\x6c\xc6\xbe\xe2\xd4\x94\x1f\x92\x25\x8a\xec\ +\xd3\x00\x0e\x80\x03\x45\x3c\x19\x98\xbd\x09\xd2\xda\x24\x19\xad\ +\xe5\x71\xa9\x79\xb3\x2d\x89\xdd\x06\x1c\xb6\x91\xed\xb5\xb6\x8b\ +\xdc\xae\x5b\xdd\x9c\x36\x71\xe6\x78\x87\xee\x4f\x1f\xc1\xdd\x1e\ +\x06\x57\x5c\xf6\x74\xca\xf3\x06\xa9\xdb\x2b\x68\x3b\xf9\xae\xe0\ +\x22\x22\x0d\x21\x3c\xc4\x38\xbd\x9f\x17\x19\xa1\xeb\xba\xdf\x87\ +\xdd\xfe\x1f\xdf\xeb\x42\x10\x91\x75\x22\x0f\x53\x4c\x1f\x50\xdb\ +\x34\xab\x60\x24\x52\x4c\xe0\x5e\xce\xfc\x17\x6b\xd3\xcf\x66\xe0\ +\x0f\x7f\x41\x7c\xfc\xdb\xd9\x38\x1b\x33\x20\x1d\x01\xd9\x35\x82\ +\x9f\xab\xb0\xab\x75\x0d\xe9\x1a\x09\x81\x6d\xb7\xaf\x35\x04\x9a\ +\x12\x98\x08\xd6\xed\xaa\x4f\x6a\x50\xac\x95\x87\x0b\xd7\x6e\xcc\ +\x4d\xdd\xe6\x6c\xd2\x08\x73\x0e\x4f\xf2\xc4\x90\xaa\xd0\x54\x3f\ +\xdc\xf5\x98\x6a\x33\xc6\xda\x60\x1e\xea\x28\xdd\xb9\x83\x75\x4e\ +\x41\x35\x17\x60\xfd\x33\xf7\xef\x10\x76\x7f\x06\xc9\x80\xa4\x8a\ +\x29\x25\x1f\x0b\xfb\x15\xd9\x83\x9f\xbd\x9f\xeb\x47\x8c\x6d\x3d\ +\x88\xc8\x51\x35\xed\x98\x38\xf6\xc3\xf0\x3f\x5d\xd7\x7f\xfe\xde\ +\xef\xd3\x85\x70\x90\x29\x1e\x93\xea\xbe\x6d\x73\x75\xe9\xeb\x3c\ +\xea\xb5\x91\x5f\x6b\xfd\xfe\xda\x24\x29\x01\xe1\xee\x0e\xf1\xf1\ +\x71\x11\x67\x95\x05\x96\x8e\x80\x0c\xcb\xe6\x48\xac\xb9\x0d\xfa\ +\xfa\x71\xc4\x8b\x38\x69\x8c\xc0\xf8\x05\x12\x00\x84\xb9\x8c\x6c\ +\x73\x73\xb1\x0b\xe6\xb2\x9d\x49\x46\x02\x92\xe0\x95\x0e\x88\x9b\ +\x67\x77\x6e\x91\x57\x02\xef\x75\x0e\xd3\xaa\xe7\xc0\x5a\x3d\xec\ +\x79\x47\x5a\x0f\xdf\xb5\xcc\xb2\x90\xf4\x60\xd9\x83\xfb\xf7\x30\ +\xea\x90\x52\x44\x1a\xc7\x97\x5f\xa7\xcb\x57\xe1\x8f\x01\x2e\x66\ +\x8e\x5d\xd7\xff\x96\x52\xbc\xeb\xfb\xfe\x37\x91\x70\xfc\x11\x27\ +\xce\xcc\x69\xe8\xbb\x5f\x1f\x8f\xa7\x3d\xd5\xd8\xce\x9a\xd8\x2b\ +\x42\xa4\xbf\xce\x48\x9b\x81\xde\xff\x09\x74\x78\x5c\x0e\x64\x6b\ +\x72\x3f\xe9\x94\x8b\x8c\x65\x3b\xde\x7f\x0e\x23\xf8\x2c\x4d\xfa\ +\xfc\x07\x29\x02\x88\x06\x12\xf3\x2a\x74\x79\x6e\xdd\xd4\x2a\xbd\ +\x5c\x44\x04\x89\xe6\x4a\xa1\xf5\x87\x6c\x5d\xba\x0d\x8d\x6f\x33\ +\x5b\x12\x3a\x1b\x56\x6f\x4e\x5c\xd3\xc2\x43\x28\x22\x19\xe1\xee\ +\xdf\x01\x1e\xa0\x86\x6c\xa5\x8e\xcf\xde\x86\xec\xaa\xd5\x42\xfc\ +\xc3\x81\x8b\x88\xac\xef\xfb\x4f\x40\xff\xe9\x87\x9f\xbc\xc8\x91\ +\x89\x8e\x0a\xdb\x51\xd3\x0e\x6f\x59\xea\xcc\xc9\x0d\xde\xe2\xfa\ +\x66\x86\x9b\xc5\xc9\x8d\x87\x2f\xf5\xef\x5b\x6d\x8c\xd2\xe2\xcf\ +\xc3\xb6\x50\xcd\x62\xe4\x10\x7d\x65\xb8\xbd\x51\xf6\x63\xd1\xe5\ +\xbb\x59\x08\xd4\x71\x2e\x2b\xbb\xf6\xe2\xb4\x01\x7c\xbb\x12\x00\ +\xcd\x25\x4c\xdb\x84\x65\x63\x8d\x68\x39\x68\xcf\xda\xfa\xae\xfa\ +\x1a\xab\x18\xcd\x14\x61\xff\x57\x18\x0f\x48\x31\x6e\x56\x76\xbc\ +\x98\xa6\x98\x5d\xe1\x49\x98\xbf\xfc\xec\xe0\x7a\x15\x2a\x3a\x57\ +\x88\x8d\xb8\x1b\xfa\x5f\x66\x19\x80\xf9\xc6\x69\x11\xb1\x79\xea\ +\x86\x11\x81\xf7\x77\x0b\x0f\x68\x51\xb8\x4b\xb3\x1a\x94\x5e\x90\ +\x8e\x58\x68\xb1\xdb\x0b\x91\x65\xe7\x85\xc2\x4b\x4b\x66\x48\xc7\ +\x94\xfb\xad\x6c\xa1\xf7\x7e\xad\xda\x3e\x97\xe5\xae\x1e\xdf\xfe\ +\x79\x3e\x87\xb5\x28\xbc\x83\xa6\x95\x26\xb7\x8d\x1e\x98\x1a\x97\ +\xd5\xbf\x31\x17\x31\x94\x1d\x52\x4a\xcf\x12\x00\x7e\xb2\xaf\x6e\ +\x7e\xbb\x24\xc2\xbf\x33\xf3\x78\x03\xd7\x8f\xb6\x5e\xcc\xa7\x20\ +\x7c\x58\xd0\xd7\xf9\x66\x6b\x53\x2d\x7f\xb9\x87\x8b\x80\x30\x80\ +\x87\xfd\x75\x1f\xcf\xbc\xf8\xb6\x05\xd8\xd5\x7a\x40\xc3\x39\x10\ +\x36\x34\xe8\xaf\x0d\x45\x68\x6b\xef\xd2\xa8\x48\x27\x07\xd9\x36\ +\x39\x71\x65\xfb\xb7\x15\xa1\x61\xe7\xae\xdc\x0c\x8c\xec\xda\xb5\ +\x31\x54\xb3\xd3\x18\x51\xad\x5a\x9f\xc1\x76\xfe\x33\x48\x36\x06\ +\xd9\x5d\xfe\x8c\xcf\xb0\x56\x51\x84\x3f\x75\x21\xfc\xa3\x0b\xe1\ +\xd7\x57\xb1\x36\x5f\x3b\xb8\x44\x64\x0a\x21\x3c\x24\x1d\x77\xf9\ +\xee\xd7\x60\xda\xd4\x32\xb1\x71\xa5\xde\x10\x06\x12\xf1\xb9\x5e\ +\xc7\xc3\x76\x5d\x5f\x73\xa3\x75\xf2\x38\x43\x3a\xcc\x3a\x11\xd7\ +\x9c\x9d\x97\xcc\x20\x7e\x0a\xb0\x09\x2e\xcf\x96\x0c\xdc\x79\xdd\ +\xe2\xc5\x7c\xd0\xe6\x7b\x18\x6a\x88\xb5\x35\x47\xc9\x9a\xf2\x26\ +\x6a\x01\x95\xf5\xd2\xac\x65\x01\x79\xd9\xfc\x46\xe7\xd2\xba\x66\ +\x76\xb1\x90\xc2\x2e\x0d\xe2\x5b\xa5\xd4\x98\xf9\x20\xcc\x9f\x99\ +\xe9\xc4\x44\xa7\xa2\x38\x76\x03\xd7\xbf\xcc\x7a\xc9\x61\x24\x9a\ +\xcc\xd0\x2f\xfd\x7e\x6f\xa4\x2c\x03\xf3\xae\x11\x11\x34\xec\x41\ +\xc3\x0e\x76\x3c\x6e\xf7\x5e\x35\x04\x99\x65\xeb\x25\xfd\x39\x93\ +\x88\x4b\xa4\xc6\x4b\x62\x8c\x27\x26\x3a\x6a\xf2\x2e\x00\xe9\xcc\ +\x15\x79\x71\x01\x28\x4b\x53\xbe\xd0\x76\x9c\x81\xc1\x73\x30\x99\ +\xc5\x32\x6c\x81\x40\x73\x91\x53\x12\x58\xca\xca\x38\xcd\x87\xb6\ +\xcc\x2a\x12\x05\x98\x8e\x4b\xda\xde\xec\x2c\xe3\x6e\x17\x87\x99\ +\xcf\xed\x43\x44\x34\x8a\xc8\x17\x21\x7e\x24\xa6\x91\x89\xe2\xab\ +\x5c\x97\x6f\x01\x5c\x7d\x17\x0e\xa7\x89\x8f\x93\xa6\x7e\xbd\x46\ +\x67\x5a\x5e\x2e\xdb\x05\x33\x40\x02\x78\x7f\x0f\x2d\xdd\x8d\x76\ +\x9d\x0a\x34\xf5\x3a\x3e\x0e\x97\xc7\xb4\x7e\x15\x57\x6c\x9b\xc6\ +\x66\xb3\x14\x29\x8e\x0a\x51\x03\x77\x79\x52\x4b\x93\x13\x2e\x25\ +\x46\x73\x41\x62\x19\x7c\x11\x40\xdc\x81\xa4\x03\x71\xef\xb1\x11\ +\x89\xc7\x56\x9a\x40\x50\x58\x7c\x80\x4e\x87\x79\xf2\x8b\x26\x97\ +\x48\x60\xc9\x83\xf3\xd6\xe6\x3d\x0f\x77\xd7\x15\x13\x69\x17\x72\ +\xdf\x8d\x30\xa8\xcb\xe4\x25\xc4\x38\x41\x5d\x41\x38\xed\xf7\xfb\ +\x5f\xfb\x10\x7e\x7f\xf5\x9b\x3e\xde\xc8\x21\x44\x8f\x11\xb8\x37\ +\x40\xe6\x85\x68\x5e\x71\xa1\xc9\x59\xc3\x0b\xc5\xbc\x75\xc7\xdc\ +\xdd\x43\x0e\x8f\x48\xc7\xc3\xd9\x64\xfa\x4d\xef\x4e\x3d\x06\x83\ +\xe6\x8a\x8e\x6f\x4e\x78\x6d\x80\xf2\x52\x25\x7c\x3e\xaf\x38\x1a\ +\x58\x13\xa4\xcf\x15\xfd\x3a\x6b\x89\x10\x11\x48\x76\x60\xe9\xc1\ +\x61\x07\x92\x21\x83\xc8\xbb\x08\xb4\x7c\x2e\x5d\x0e\xee\xa2\x7e\ +\x07\xa4\xbf\xd7\xce\x63\xa7\xe4\x0d\xc4\x04\x35\x01\x34\xd6\xa9\ +\x34\x7e\x7a\x59\x05\x94\x19\x96\xb4\xba\x87\xd4\xa4\x46\xda\xf3\ +\xa6\x0c\xfc\xe3\xf1\x80\x38\x4d\x59\x1e\xcf\x0a\x49\x05\x33\xb3\ +\xb7\xb0\x26\xdf\x0c\xb8\xee\xf6\xfb\x4f\xa7\xf1\xd3\x47\x03\xf6\ +\x2d\x3d\x6e\x70\xd7\x30\x71\x4e\x2a\x5f\xa5\x77\x18\xb4\xbf\x77\ +\x29\x27\xd5\x27\xcd\x4f\x09\x33\x52\xca\x9a\x9c\xc3\xb6\xc9\xa2\ +\x4b\xfe\xe2\x33\x62\xad\x8b\x8f\xd7\xae\x67\xce\x04\x03\x83\xbb\ +\x1d\x58\x06\x90\x0c\x20\xe9\x41\x1c\x32\x90\x14\x51\xd5\x55\x74\ +\x37\x5c\xb5\xf5\x69\xf9\xb4\xc8\xbf\xc0\x8e\xff\x3d\x03\x5e\x01\ +\xb0\x81\x98\xa1\xca\x80\xe6\xc2\x5a\x5a\xf6\xef\x81\xb2\xd6\x24\ +\x73\xe3\x83\x52\x03\x2c\xe0\x74\x3a\xe0\xd7\x7f\xfe\x13\x66\xc0\ +\xfe\x6e\x3f\x0b\xca\xe6\x8b\x4a\xf4\x36\xd6\xe4\x9b\x01\x97\x5b\ +\x2f\x3c\xaa\xda\x0e\x65\xc4\x56\xc9\xa7\xe6\x76\x14\x6e\x7a\xbd\ +\xb6\xa7\xd7\x18\x78\xb7\x07\x1f\x7a\xe8\x78\x5c\xea\xce\x37\x8d\ +\x7c\x14\x08\xe7\x25\x1d\xde\x8c\xb9\x98\x8c\xf2\x04\x30\xae\x1f\ +\xc5\xdd\xf2\x9d\x9e\x5d\x27\xc1\x45\x7c\xb8\x03\x93\xf8\xbc\xe9\ +\xd0\x67\x21\x7b\x1f\xd0\xad\x19\x4c\x2e\x36\x73\x5c\x9b\x8c\xab\ +\xb3\x8c\x96\x96\x31\x80\xc2\x07\xe8\xe9\x57\x07\xa9\x15\xcb\xec\ +\x2e\xa2\x01\x75\x36\x99\x03\xbc\x08\xca\x68\xbe\x4e\x2b\x21\xfd\ +\x92\x5a\x50\xc5\xe3\xc3\x17\xa8\x29\x44\xc2\x99\xee\x0a\x7d\x93\ +\xe9\xbf\x81\xeb\x87\x1d\xf7\xf7\xf7\xbf\xfd\xf2\xeb\x6f\x1f\xb9\ +\x0b\x61\xd9\x77\x55\x64\xb1\x19\xd4\x80\xa2\x0e\x72\x6b\xea\x99\ +\x8c\x05\x72\xff\x01\x36\x8d\x2e\xab\xbc\xb5\x00\xd5\xfb\xa5\xb8\ +\xe3\x85\x15\x33\x63\xaf\xe5\xb3\xf3\x5e\x2e\xda\xf8\x05\x55\xed\ +\x67\xce\xa4\x00\x39\xb3\xc9\x1d\x20\x1d\x88\xb3\x16\x3c\xbb\x82\ +\xb1\x35\x25\x4e\x06\x20\x59\x33\x8c\x2f\x9d\x36\xfc\xaf\xaf\x5f\ +\xa4\x06\x03\xc2\x3b\x50\x3c\xc2\xf4\xd4\x0c\x04\xcc\x3a\xf4\x24\ +\xee\x0a\x2e\xc6\xa6\x60\xae\x37\xac\x35\x92\x73\x69\x9a\xcf\x6f\ +\x48\x3e\xed\xa5\x4c\xc1\x69\xc7\x4d\x55\x49\xf4\x9b\xe5\xfa\x19\ +\x69\xf9\xc4\x4c\x47\x4d\xfa\xae\xad\xcd\xa3\x6c\xb9\x54\xd5\x75\ +\xec\xd7\x03\x19\xd6\x43\x7a\xf7\xf7\x08\x29\x22\x3e\x7c\x82\xa5\ +\x78\xa6\x99\x6e\x09\xd0\x18\xc1\x93\x13\x1a\x8d\xfe\xe9\x82\xf9\ +\xf2\x85\xe2\xc0\x29\xff\x29\xeb\xca\x31\x73\x26\x15\x3a\x57\xa6\ +\x12\xff\x6a\x59\x03\xba\x54\x99\x68\x1d\xe4\xb0\xd6\x20\x5b\xb0\ +\x17\x8b\xf7\xfd\x96\x78\x6f\x61\x38\x88\x40\xfd\x7b\xe8\xe1\x94\ +\xa9\xf8\xae\x3e\x99\x08\x5e\xa9\x41\x21\x9f\x49\xaa\x9b\x44\xb1\ +\xba\x74\x96\x8a\x9b\x19\xc8\x22\xc3\x47\x79\x53\xa9\x60\x63\x7e\ +\x33\xeb\xf1\x4d\x81\x0b\x00\x86\xbe\xff\xf2\xf9\xe1\xe1\x5d\x37\ +\xec\xd0\xd6\x1a\xa2\x54\xcb\xb3\x54\x01\x9d\x73\xcb\x52\x34\xec\ +\x13\x70\xff\x11\xa1\xeb\x61\xa7\x83\x5b\xb1\x12\x83\xb5\x6d\xff\ +\x79\x92\x0b\xe5\x9c\x93\x5b\x18\xae\x22\x8d\x54\xc1\x54\xe8\x6e\ +\xaa\x20\xb3\x92\x2a\xc8\xd9\x64\x4b\x0a\x8b\xa7\xed\xac\x2a\x6d\ +\x74\x66\x1a\x9d\x33\xf0\x76\xc5\xc3\xbc\x40\x92\x2e\x1f\xde\x98\ +\xc3\xc4\x03\x48\xf6\xb0\x74\x9c\xeb\x2b\x9b\x78\xaf\x8c\x34\xb1\ +\x45\xf3\x5b\x1e\x92\xbc\x62\x85\xac\xe8\x6a\x98\xcd\xee\x20\xd3\ +\xc2\x62\xd1\xb7\x9a\xdc\x1b\xb8\x7e\x20\x2d\xdf\xf7\x27\xfb\xf4\ +\x29\x69\x8a\x22\x21\x78\x87\x71\xbe\xb5\x49\x13\x38\x25\x30\x85\ +\xb3\xc5\x78\xb6\x71\x6b\x02\xfa\x1d\xb8\x1b\x72\x17\x65\x01\x17\ +\x6f\x34\x62\xb6\xf1\xcc\x2c\xb9\x6d\x66\xd0\x05\x35\xed\x1a\xec\ +\x78\xaa\x67\x69\xab\x0b\xf4\xa9\x58\xc4\x56\x38\xa3\x17\x5a\xa9\ +\xec\xba\xd5\xb4\xaf\xb5\xd6\xeb\x1d\xec\x38\x9d\xd7\x12\x92\x36\ +\xd3\xeb\xda\xe2\x60\xf8\xa4\xcd\xb3\xed\xcb\x66\x7d\x49\x72\x91\ +\x9f\xaa\x16\x56\xdc\x43\x66\x7b\x23\x5e\xe1\xdb\x04\x97\x48\x18\ +\xd3\x38\xee\x99\xc5\xe9\xe1\x86\xf9\x8b\x31\x42\xc4\x2d\x0c\x3d\ +\xb5\xf6\xca\xdf\xb1\xa0\x95\x26\xbf\xae\x2d\xbf\x3d\x16\x67\xf3\ +\xe7\x4b\xd6\xc6\xf0\x2c\x4e\xff\xd2\xb0\x86\x6b\x7a\xf3\x67\xcf\ +\xcd\x65\x62\xd4\xc8\xd5\xb5\xa7\x46\x66\x20\xee\x41\xdd\x3d\x2c\ +\x3e\x80\x78\x5d\x25\xaf\x0d\x8d\xdf\x64\xbb\x0b\x5b\xd8\x8a\xc0\ +\x99\x6f\x38\xc4\xbe\xc7\xd4\xf7\xa4\x15\xa9\xc1\x74\xa3\xe2\x7f\ +\xd6\xa3\xeb\xc2\xe9\x70\x98\xf6\xd3\xe9\x88\x7e\xb7\x03\x09\x67\ +\xc9\xeb\x4c\x4b\xc7\x84\xae\xe3\x0d\xc6\xf0\x9c\x23\x6f\x47\xb4\ +\x7e\x97\x78\x06\xd8\x90\xea\xa5\x17\x81\xe7\xd9\xef\xb7\xce\xd5\ +\x65\x17\x54\xcb\x5c\xe9\x94\x32\xc1\xe0\x31\x50\xdf\x77\xe8\xba\ +\x0e\xf3\x88\xc1\x02\x15\xf2\x1c\x59\x3a\x65\xcb\x53\x86\xf9\xad\ +\xb4\xde\x00\x98\x09\x40\xba\x50\x45\x6e\x49\x92\x62\xb9\x38\x4f\ +\xc6\x29\xd6\xcb\xc7\x50\xb1\xc7\xa2\x37\xb6\xf0\xe7\x3d\xf6\xfb\ +\xfd\x97\xc7\xc3\xe1\xdf\x4c\x13\x4e\x87\x03\x86\xfd\x1d\x24\x48\ +\xd5\x66\x48\x29\x82\x85\x21\x45\x5d\xf6\x22\xc8\xb0\x64\xbc\xbe\ +\xea\xf8\x4e\x0b\xc5\x5e\xf0\x76\x75\x34\x90\xd6\xf6\x79\xcd\xc3\ +\x0d\x62\x9c\x60\x31\x3a\x7b\xca\xc1\x19\xd1\x9c\x44\x56\x53\xb0\ +\x08\x64\xd5\x5b\x63\x30\xa7\xe3\xa5\xf7\xd8\x6b\x41\x15\x51\x63\ +\xc1\x78\xb6\x62\x39\xae\x9c\x4f\x3d\xb7\xb0\x98\x82\x39\xd3\x1f\ +\x9c\xc1\xc4\xcb\xe1\x89\xb8\xb1\x85\x3f\x35\xb8\x1e\xcd\xd5\x4f\ +\xa0\x29\xe2\xf4\xf8\x80\xfd\xfd\x3b\x88\x04\xdf\xa9\xcd\x10\x27\ +\x9f\x5b\xd5\xba\x42\x97\xe1\x40\x5f\xb1\xca\x2f\x3d\xff\xfb\xaf\ +\x9c\x62\x81\xd5\x7c\x5e\x59\x61\x46\x35\x2b\x11\xeb\x34\x81\xe2\ +\x88\x71\x9a\x30\x45\xc5\x10\x08\xc2\x04\xed\xf7\xd0\x42\x99\xe7\ +\x6b\x32\x8d\x13\x78\xc7\x1b\xf5\x97\xe4\x71\x54\xb2\x2c\x67\x5d\ +\x66\xb3\x16\x0b\x16\xf2\x99\x24\xcf\x91\x11\x6d\x18\x6c\xab\x64\ +\x46\x01\x16\x33\x17\x0d\xcb\x3a\x86\xea\x66\xb9\x7e\x76\xd6\x70\ +\x18\x1e\xe3\x34\xdd\x11\x79\xe5\xf8\x74\x3a\x42\xba\x0e\xcc\x92\ +\x95\x5e\x0d\x31\x45\x84\xd0\x81\x9e\x5c\xb6\x3f\x16\x1c\xcf\x83\ +\xa7\x35\xad\x1d\x96\x67\x74\x29\x2c\xe7\x8d\x52\x4a\x48\x49\x01\ +\x4b\x20\x4d\x30\x4d\x48\xd3\x84\xe3\xa4\xd8\x05\x42\x10\x42\x20\ +\x60\x6a\x99\xd1\x14\x41\x61\xa8\x24\x86\xaa\x62\x9a\x46\x74\x7d\ +\xb7\x6a\x32\x2d\xa4\x4d\xc9\x3b\x28\x2e\x55\x36\xfb\x9e\x26\xd5\ +\x8a\x9d\x6f\x45\xde\xa5\x10\x23\xb0\x1c\xf7\x5b\xf2\x5d\x74\x4d\ +\x47\xf4\x06\xae\x9f\xe1\xb8\xdb\xef\x3f\x7f\x9a\xa6\x3b\x22\xf2\ +\x8a\x05\x33\xc4\x71\x84\x01\x08\x5d\x07\x11\x2f\x0d\x4a\x31\x42\ +\x82\x34\xbb\xa5\x35\xae\x22\x5d\xa0\xd7\x2e\xb1\x11\x4f\x89\x19\ +\x9e\xc1\x65\xf9\x70\x15\x79\xb1\x45\x7c\x64\xc5\x12\x25\x75\xf9\ +\x02\x24\xa4\x94\x30\x4e\x0a\x81\x22\xb0\x21\x46\xc5\x61\x52\x0c\ +\x01\xe8\xf3\x4c\x69\x61\xa0\x0b\xec\xca\x57\x4c\x90\x5c\xe0\xae\ +\x00\x02\xb9\x14\x02\xc2\x00\x62\x9f\x1e\x09\x33\xc4\x98\x90\x62\ +\x82\xf4\x1b\xf9\x26\x0e\x00\x75\x00\x8e\x6e\xa1\x1a\x99\x6a\x2a\ +\x23\x58\xcd\x2b\xe8\x4b\x92\x6b\x1e\x13\x8f\x85\x3c\x35\x35\x6c\ +\xe1\x1a\x60\x6f\xe5\x78\xb3\xe0\xda\xed\x76\x0f\x9f\x3e\x7d\x02\ +\x33\xe5\x56\x24\x03\x33\x23\xc5\x88\x31\x25\x74\x79\x7c\x28\xb3\ +\xc0\x60\x10\x96\x4d\x97\xe4\x7c\x68\xd1\x05\xda\xad\x85\xa5\x35\ +\x60\xa9\xc0\x69\xac\x4f\x06\x4f\x49\x14\xcf\xd6\xc8\x99\xbb\x18\ +\x23\x38\x27\xc1\xa7\x69\x42\x3c\x4e\x60\x03\xcc\x22\xd4\x0c\xbb\ +\x5c\xfb\x1f\x47\x03\x84\xd0\x31\x41\x04\xe0\xc4\x79\x72\xa7\x0f\ +\x64\x17\x21\x04\x18\x5c\xb8\xd6\x5c\xcd\x56\x67\x7d\x43\x24\x05\ +\x59\x84\x71\x07\x22\xad\x84\x43\x8c\xd1\xaf\xcf\xaa\xac\x84\x88\ +\x61\xd4\xc1\xf5\xdf\x35\xcf\x9f\xa3\x15\xc1\xe1\xed\x27\x4b\x49\ +\x85\xb6\x40\xd1\x25\xce\x51\x72\x5c\x75\x70\x22\x5a\x80\xdd\x2c\ +\xd7\xcf\x7c\x88\x48\x62\x91\x08\xb3\xe0\xed\x18\x65\xc7\x2c\x96\ +\x4c\x31\x1d\x27\xdf\xd1\x25\x40\x42\x40\x08\x21\x57\x70\xd0\xa2\ +\x75\x63\x61\x6d\x96\x4a\x97\xf3\xd2\xb1\x59\xf6\xba\x00\xa7\x76\ +\xf4\x1a\x96\xd3\xe9\x4b\xd7\x6e\x7d\xce\xfc\x9a\x29\x25\x8c\xa7\ +\x13\x86\xdd\xe0\xf1\x48\x7e\x0d\x82\x80\xa9\x07\xa0\x88\x16\xb1\ +\xeb\x80\xa0\x54\x45\x9a\x7c\xec\x47\x96\x8f\xcb\x43\xe7\xd4\x0c\ +\x7d\x20\xa4\x5c\x29\x4f\x04\xf4\x01\x18\x63\xd1\xea\x07\x90\x26\ +\xa8\xf4\xb0\xe2\x92\x19\xbc\xfd\xc3\x06\x08\xf1\x46\xdc\x25\x30\ +\x70\x33\x46\xa8\x00\x28\x3f\x97\x2c\x6b\xee\xd3\xaa\x9b\xc0\x72\ +\xaf\x56\xe5\x1f\x9b\x82\xdd\x5c\xf2\xe4\xc8\xb2\x9b\xe5\x7a\x0d\ +\x71\x57\xdf\x3f\x9e\xc6\xd3\x07\x6a\x04\x2b\xa9\xd6\xe4\x90\xb3\ +\x56\x49\x11\xa7\x23\x98\x39\xc7\x1a\xb2\xd1\xe0\x67\x88\xd3\x88\ +\xee\x6c\xf2\x86\x33\x71\x4c\xbe\x90\xcd\x00\x48\xef\xb2\x68\xb6\ +\x1e\xa6\x7d\x79\xcd\x94\xbe\xa6\x94\x12\x34\x0f\xd0\xe4\x9c\xac\ +\xe6\xdc\x2a\x43\x99\x6d\x13\x32\xa4\x04\xa0\x77\xa0\x64\xde\x06\ +\x31\x36\x5c\x1d\x7b\x2e\xe9\x34\x02\xef\xf6\x86\x3a\x6b\x9d\x0c\ +\x2c\x40\xd7\x94\x4d\x69\xee\xe1\xca\x53\x25\x60\x50\xa4\x1c\xc3\ +\x39\x6b\xb8\xd2\xc3\x96\x0e\x9e\xf3\xd3\xec\x1a\x16\x17\xd9\x63\ +\x31\x62\x03\x73\xc0\xb6\xb8\x82\xd6\x5c\x96\x95\x12\xa8\xb6\x1a\ +\x1e\x57\x66\x49\xde\xc0\xf5\xf3\x1c\x59\x85\xea\x30\x8e\xe3\x07\ +\x26\x77\x93\x8a\xaf\x5f\xfa\x89\x88\x18\xcc\xce\x7e\xa9\x2a\x34\ +\x26\x50\x98\x11\x61\x8d\xd0\xe8\xe1\xe1\xa1\x0a\x8d\x16\x2b\x50\ +\xba\x37\x92\x95\x9f\x9d\x9d\xe3\xd0\x7b\xc5\x7a\x2b\xea\xd9\x00\ +\x96\x9a\xda\xc3\x22\x03\x17\xe3\xe4\xae\x59\xc9\x23\x65\x37\xa9\ +\xb4\xc9\x98\x46\x6f\x64\x84\xe7\x90\x62\x02\xfa\x6e\x5e\x86\x31\ +\x2e\x0c\x09\xba\x90\x65\xad\x19\xe8\x3a\xaf\xe8\x2a\xb3\x9b\x6b\ +\xf1\x04\x79\x57\xf3\x80\x88\xc8\x65\x2c\xab\x27\x83\xe3\x94\x5d\ +\xc3\xb5\xed\x22\xf1\x69\xe2\x29\x55\x37\x10\xa5\xf2\x04\x00\x51\ +\xbf\x28\xb6\x5c\x38\x87\x9a\xaa\x1e\xa3\x5f\xbb\x06\x5c\xf5\xe6\ +\x10\x5e\x83\x26\xe1\x1f\xde\x72\x85\x10\xc6\xba\x98\xdb\x4e\xc6\ +\xb6\x13\x76\xa3\x32\x61\x96\x66\x9e\x97\x16\x67\xbd\x0a\xce\x23\ +\x83\x5a\x85\xe9\xe2\x3d\x31\x11\x18\x8a\x14\x8f\x38\x4d\x92\x89\ +\x13\x69\xc0\x34\x1b\x30\x67\xf8\x3c\xdf\xe4\x3b\xbe\x83\x5e\x98\ +\x5d\x31\xc9\xfc\xf5\x8c\x04\x09\x8a\x9e\x87\xc5\x42\x54\x1d\x41\ +\x94\x50\x06\xba\xdc\xdf\x01\x8f\x8f\x54\x01\x45\x04\xec\x06\x3f\ +\xcf\x2e\xcc\xeb\xf6\x71\x04\x86\x52\xfe\xc8\x3e\xf2\x55\x35\x81\ +\x43\x56\xf2\x55\xcd\x3d\x6a\xa9\x6e\x40\x67\xe5\xb7\x1c\x72\x15\ +\x3e\x37\xd7\xc8\xeb\x0b\x29\xf4\x20\x96\xe5\x4c\xe3\x82\x26\xcb\ +\xca\xc2\xc5\x31\x24\x5e\x58\xad\x02\xc6\x5b\xf9\xd3\x2b\x38\x98\ +\x39\xb1\x70\x54\xd5\x50\x6e\x1f\xb3\x4f\x7a\x34\x98\xbb\x5e\xd9\ +\xf7\x9f\x63\x32\x3e\x93\xa9\x36\x00\x2c\x02\x43\xf4\x31\xb4\x4b\ +\x61\xec\x25\x81\x08\x5f\xb8\xd3\x69\xc2\x49\xbd\xd4\xca\xd4\xd0\ +\xf5\x3b\xf4\x7d\x8f\x34\x1d\x41\x36\x01\x06\x4c\x53\x42\x08\x92\ +\xc7\x16\xcd\x7b\xbc\x93\x19\x56\xeb\xee\x38\xbb\x8d\xe5\x9f\xea\ +\xc9\xc9\x0d\x00\x81\x09\xaa\x80\x04\xe0\xc3\x07\xe0\xcb\xc3\x0c\ +\xae\x2f\x9f\x00\x11\xe0\xfd\x7b\xa0\xcb\x24\x48\x9f\x0c\x0f\x47\ +\xc2\xfd\x9d\x0b\xf8\x58\x02\xa6\x93\xa2\x0b\xde\x08\xe9\xba\x34\ +\x5a\x9b\x4c\xb9\xe3\x5a\xa8\x38\x6f\x26\xbd\x33\x86\x55\xc4\xc6\ +\x6b\x0b\x09\x04\x96\x2e\x0b\x91\xe2\x8c\xec\x21\xa4\x0a\xd6\x96\ +\x2d\x5c\x91\x43\xf6\x56\xa8\x78\x7e\xe3\xe0\x52\x61\x99\xa8\x89\ +\x9d\xa8\x2d\xb1\xa1\xd6\x13\x99\x87\x5c\x97\xd2\x9c\xea\xb6\x30\ +\x83\x45\x90\xd4\x5c\xab\xa5\xb2\x5a\x25\xe9\x89\xea\xee\x78\x9c\ +\x44\xe8\x3b\x5f\xa8\xce\x8c\x99\x6b\x78\x98\x82\x11\x11\x84\xd1\ +\x77\x8c\x21\x30\x92\xda\xfc\x7a\x3c\x17\xb2\x7a\x0d\xde\xfc\xde\ +\x1e\x6f\x31\x60\x13\x08\x06\x41\x0f\x53\x41\x08\xee\x12\x1e\x8f\ +\xee\x8d\xdd\xdd\x15\x42\x07\x10\xf6\x1a\xe1\x71\xf2\xc1\xe7\x9f\ +\x3f\xfb\x7c\x66\xe5\x80\xdf\x8f\x02\x43\xc0\x6e\x10\x50\xa6\xfb\ +\xb9\x6d\x03\xc9\x31\x60\x6b\x4e\x6a\x02\xa1\x4a\x5f\xb5\x65\x4f\ +\x2e\x5b\x2d\xa1\x9f\x59\xd2\x66\x64\x32\x74\x9c\xab\xe0\x81\x7a\ +\x7d\xe7\x62\x67\xd4\xe1\x81\x37\x42\xe3\x75\xc4\x5d\xca\x22\x13\ +\x52\xdc\xd3\xc6\x8c\xd6\x52\x29\x50\x0b\x54\x8b\x85\x20\x5a\x58\ +\x24\x02\x10\x44\x30\x4d\x19\x3c\x8d\x5b\xa8\xea\x14\xbf\x9a\x41\ +\x98\x8b\x73\x84\x3e\x30\xc6\x54\xc4\x71\x02\xba\xae\xc3\xe3\xc3\ +\x67\x0c\x32\x6b\x8a\x0d\x7d\xc0\xf8\x38\xf9\xdf\x66\x0b\x27\x4c\ +\x48\x19\xe8\xc2\x02\x66\x42\x08\x02\x4a\x6e\xb5\x3a\xd9\xe7\xad\ +\xdd\xa0\xe9\x08\xa3\x13\x86\x01\x78\xf8\x82\xca\xda\xb9\x44\x7e\ +\x82\x08\x61\x82\xe0\x33\x7a\xd0\x18\xd1\x8f\x13\x48\x0d\xf2\x5e\ +\x80\x29\x61\xe8\xbd\xfc\x4b\x72\x31\xad\x33\x86\x0c\x62\xcd\x83\ +\x53\x74\x3b\x01\x51\x9a\x3c\x4d\x17\xae\xb6\x74\x3d\x48\x02\x34\ +\xc6\xb3\xfc\xde\x78\x3c\x80\x08\x88\x69\xca\xb9\xbb\x96\xcc\x58\ +\xbc\xc9\x4b\x65\x55\x6f\xe0\xfa\xff\x22\x35\x84\x39\x96\x39\xcd\ +\x2d\x1d\xdf\x7e\xef\xb1\x4d\xeb\xe6\x65\xf5\x79\x9b\xe3\x33\x66\ +\xce\x2e\xe1\x22\x6c\x83\x48\x01\x16\x41\xcd\x6a\xaf\x98\x10\xa3\ +\x17\xc5\x98\x80\x6e\x18\x70\x3c\x3e\x20\x69\xc2\x08\xc2\x7d\x37\ +\xc7\x6f\xfb\x41\x70\x8c\xce\xe8\x51\x10\x07\x95\xb8\x45\xf3\x21\ +\x7e\x84\x20\x01\x93\x4d\x18\xc4\x1f\x77\x23\xc9\x30\xed\x10\xa7\ +\x09\x5d\x9f\xf0\xfe\xa3\x9f\x94\x4e\x1d\xa6\x44\x30\x3d\x62\x32\ +\x81\xbd\xdb\xf9\x4c\xe6\xa1\x43\x3a\x32\xc2\x18\x11\x89\xd0\xc3\ +\xad\xb0\xe6\xf6\xfd\x52\xf3\xe7\xc6\x88\x51\xaa\x2d\x4c\xed\x7c\ +\x28\x44\xb6\x40\xaa\x54\x99\x43\x66\x42\xe8\x77\x59\x08\x74\x09\ +\x49\xd3\x88\xc3\xc9\x10\x24\x40\x42\x8f\x9e\x19\xfd\xbb\x0e\x21\ +\x5c\x5c\x7e\x37\x70\xbd\x92\x7c\xd7\x54\x98\x37\x2b\xbd\x46\x1b\ +\x34\x78\xa9\x85\xab\xf4\x77\x7e\xae\x35\x84\x46\x99\x7f\xdc\x56\ +\x11\x18\x00\xc9\x8b\xd2\x4b\x86\xe6\x0e\xe1\xa1\x13\x8c\xaa\xd0\ +\x34\x82\x60\x6e\xa9\xc6\x84\x98\x14\x43\xe7\x56\x63\xbf\x0b\x18\ +\xbf\x4c\x35\x8a\x13\xf1\x18\x4a\x55\x6b\xfe\x47\x82\x60\xc2\x94\ +\xdf\x9b\xeb\x79\x07\xeb\x10\x8f\x7b\x68\x8c\x7e\xfe\x51\x40\x69\ +\x87\x81\x18\x53\x12\x68\x17\xa1\x1d\x83\x8d\xbc\x68\xb7\xef\x10\ +\x43\x80\x9e\x26\x98\x19\xc6\x49\x11\x73\xb7\x00\x07\x46\xd7\x65\ +\x02\x23\xeb\x6e\x96\x7a\x45\x41\x58\x29\xca\x97\x7e\xad\x58\xe9\ +\x75\xe9\xf7\x60\xe9\x30\x15\x57\xb2\x79\x6e\x17\x04\xff\xf9\x1f\ +\x7f\x3d\x4b\x6f\xbc\x11\x91\xa7\x3f\xb0\xe5\x12\x99\x08\x64\x44\ +\x44\x9a\x17\x82\xad\x06\x72\x55\x80\xe5\x35\xc1\x74\xde\x0c\xab\ +\x22\x55\xe0\x86\x5b\x09\x01\xf2\xdd\xbf\x58\xae\x96\x66\x67\x26\ +\x84\xd1\xa9\xf5\x42\xa9\x77\x9d\xe0\x38\x26\xf4\x9d\xd4\xb4\xc0\ +\xdd\x20\x38\x4c\x8a\xbb\xbb\x2e\x57\x56\x30\x6c\xcc\x6c\x1d\x33\ +\xba\x10\xf0\x59\x27\x30\xbd\xcb\x33\x9f\xe7\x36\x7a\xd2\x01\x7a\ +\xea\x91\x72\xbc\x08\x4a\x38\xe9\x04\xb0\x60\x3a\x3d\x02\x9a\xa0\ +\xb9\xb5\xc3\x13\xce\x84\xa0\x06\xb0\xe0\x18\x81\xda\xa7\x66\xb4\ +\x60\x50\x5b\x92\x8f\xd6\x2c\x2b\xc8\xe5\x09\x70\xa8\xc3\x2c\x42\ +\x7f\x97\x73\x7d\xf3\x06\x56\x52\x15\xcc\x94\xe5\xd3\x9e\x7f\xeb\ +\x6e\xe0\x7a\x25\x8c\xa1\xe3\x69\xa6\xb0\x6a\x45\x40\x2e\xe9\xa1\ +\x6a\xd9\xb4\xe6\x5f\x5a\x96\xab\xba\x92\x39\x08\x63\x9a\x33\x58\ +\x5e\x3a\x45\x15\x60\xb6\xb2\x68\xbb\x9e\xf1\x38\x19\xfa\xce\x1f\ +\x13\x61\x9c\xcc\x30\x46\xc5\xfd\xce\x35\x33\xfa\x5e\xf0\x78\x1a\ +\x31\x8e\x11\x21\xb0\x17\xe0\x66\xdd\x0f\x09\x82\x10\x5c\xa7\xe2\ +\x90\x0e\x73\x7e\x2a\x97\x4c\x11\x53\xd3\xb6\x31\xbb\x6c\x44\xc0\ +\x47\x7a\x5f\x93\xd1\xb4\x60\xe6\x72\xd1\x6f\xf9\x84\x86\x99\xd0\ +\x38\xdb\x58\x96\x5a\x00\xf3\x38\xd9\xb9\x9a\x3e\xf4\x3b\xb0\x74\ +\x88\x29\x9e\x41\x84\x5f\xde\x41\xe2\x33\x8f\xe8\x06\xae\x9f\xea\ +\x50\x55\x5a\x01\xcb\x00\x18\x33\x47\x55\xed\x4b\x9e\xa9\x30\x7e\ +\x8b\x44\x66\x51\xac\x2d\x09\xdc\xd5\xdd\xf5\xf6\x08\xa7\xe3\xdb\ +\x45\x2a\xe4\x24\x46\xc8\xc0\x92\x26\xa7\xa5\x06\xec\x06\xc1\xc3\ +\xf1\x84\xd3\x44\x59\x28\xc7\x10\x93\xe2\x78\x4c\x78\x3c\x50\x66\ +\x2f\x09\x31\x19\x74\xa4\x9c\x9b\x65\xec\x86\xbe\xb2\x9a\xc2\x8c\ +\x3f\xfd\xf9\x63\x4d\x15\xb4\xcc\xe2\xd9\xff\x86\x33\x5f\x14\x23\ +\xdb\xec\x8a\xa9\x67\xae\x73\xbf\x57\xce\x51\xd5\x32\xab\x36\xe6\ +\xc4\xc5\x4e\x69\x62\x06\x73\x00\x87\x01\xfd\xee\x7d\x2e\x29\xcb\ +\x09\xfa\x16\x25\x2f\x05\x89\x81\x8c\x8c\xdf\x82\xe9\x0a\xaf\x05\ +\x28\x5f\xfb\x1a\x44\xa4\xcc\x3c\x99\x69\x3f\xc7\x5d\xbc\x20\x35\ +\x5a\x21\xca\xb2\x40\x88\xe6\x2e\x5c\x60\x59\xc1\x5d\x2c\x95\x9a\ +\xe1\xe4\x55\xb1\x98\xa2\x2f\xae\x98\x14\x53\xf2\x58\x06\x20\xa7\ +\xe0\x89\x80\x08\xaf\x61\x14\x46\xdf\xbb\x8b\x29\xd5\xd5\xa4\x19\ +\xd0\x0b\xc9\x31\xae\xa6\x62\x7f\xb7\x5f\xfa\x4b\x6d\x65\xc3\x3a\ +\x90\x3c\x1b\x86\x50\x6c\xb0\x35\xa9\xa4\xb6\xb6\x7f\xfe\xf0\xf3\ +\xa0\x48\x3a\x53\x28\xa6\x55\xcc\xb5\x7b\xff\x17\x2f\x86\x36\x43\ +\x52\x3d\x6b\xe4\xe6\xaf\xea\x7b\x34\x86\xb9\xaf\xaa\xaa\x94\x37\ +\xc8\x1b\xb8\x7e\x34\xa8\xcc\x9e\xa7\x5d\xb2\x7e\x1e\x33\xc7\x94\ +\x66\x52\xa3\x65\x0f\xe7\x1e\x22\x5a\xfa\x3e\x65\xf1\x36\x4a\x47\ +\x2c\x82\xc7\xe3\x09\xbf\x7c\x99\x90\x32\x81\x21\x22\x10\x11\x84\ +\xe0\x96\x66\x27\x82\xfb\xdc\xe5\xcc\xc2\x8d\x0b\xba\x35\xce\x63\ +\x3b\xca\xa0\xf5\x77\xb4\xd1\x29\x4d\x57\x02\x14\x6a\x66\x66\x91\ +\x2b\xa4\x16\xc2\xa4\x7c\xd7\x5a\xdf\x4a\xd2\x94\x00\x2b\x6b\x0c\ +\x2e\x54\xa0\x36\x06\x40\x47\x33\x50\xd2\xf3\x4e\xed\x8c\xdc\xaf\ +\x35\x3f\x66\x2a\xaa\x7e\x82\xaf\x19\x60\xe1\x67\x07\xd6\x16\xa0\ +\x2e\x81\xec\xd2\xef\x89\x28\x15\xe2\x42\x73\xe0\x4f\x0d\x15\x58\ +\xeb\x1f\x88\x16\x31\x56\x3b\x40\x99\x89\xb0\xdb\xed\x11\xba\x1e\ +\xef\x84\x57\xb1\x0c\x96\x93\xc9\x17\xf1\xca\x05\xa5\x28\x5c\x90\ +\x16\xa0\x6d\xb0\x6c\x03\xe9\x82\x69\xb0\x1c\x0d\x36\xc0\x5a\x94\ +\xeb\x19\x1a\xb5\xaa\x46\xcc\xd3\xac\xc5\xc6\x32\xf6\x5a\xe5\x09\ +\x97\xc3\x57\xd6\x25\x15\x06\xf9\xfa\x6e\x7d\x32\x20\x98\x2a\x13\ +\x91\x11\x91\xbd\x56\x80\xfd\x54\xe0\x62\x66\x7b\xae\xe5\x5a\x03\ +\xe9\x12\x08\x99\x59\x1d\x5c\xd9\xcd\xd2\x34\x33\x6d\x4d\x8d\x61\ +\x05\x89\xad\x02\x77\xa0\xee\xfa\x5d\x17\xb2\x80\xcb\x15\x55\x0d\ +\x5a\x2f\xc1\xcb\xe6\x69\x53\x4e\xe0\x09\x8b\xf4\x2c\x3a\x8d\xf2\ +\x39\x5b\x06\x18\x56\x53\xf6\xc8\x40\x46\x8b\x46\xc6\x05\x3c\xa8\ +\x19\xca\x7e\x26\x30\x7d\xfe\xdd\xfa\x5a\x30\x6a\xe7\xc8\xd6\x68\ +\x74\x5b\x6c\x01\x66\x85\xbb\x8f\xae\x2c\x4a\x09\xc0\xe3\x8d\x2d\ +\xfc\x17\x00\x8c\x88\xac\x00\xa7\xfd\x7e\x0b\x58\x5b\xe0\x53\x55\ +\x9e\x37\xe2\xc6\x3a\x2c\xd1\xd5\x58\x9f\xc6\x72\x61\x61\xbc\x70\ +\x0d\x36\xd7\xdd\xbb\x17\x82\x68\x41\x4a\x7c\x0d\x5b\x6d\x4d\x0d\ +\x8a\xcd\xb5\xf9\x8b\xe2\xe5\x79\x20\x43\x01\xe1\x1c\x7d\x35\x20\ +\xbc\xf0\x56\xad\x4d\x5e\x71\x8b\x06\xd8\xd1\xd4\xa2\x73\x28\x16\ +\x73\xe8\x17\xe1\x8e\x43\x02\xa0\xcc\x9c\x44\x38\xad\x9b\x23\xcb\ +\xfd\x37\x33\x2a\xbf\xbf\xb9\x85\xdf\x19\x60\xad\x9b\x58\x2e\x72\ +\x7b\xc1\x5b\x10\x15\xd0\x6d\x81\xcf\x4a\x57\x1f\x91\x79\xa9\x1e\ +\x19\xe5\x65\x53\x5a\x4f\x4a\x83\x24\x15\x45\xd8\xcd\xc5\xfd\x9c\ +\xfb\x4b\x17\xd7\xfd\x37\x01\x6d\xe3\x09\xf4\x9c\xf3\x80\x2d\xc8\ +\x8a\xca\x6a\xd8\x42\x39\xcd\x40\x64\x54\xdb\x93\xa9\xa3\x2a\xa1\ +\x4f\x9b\xd3\xd4\x69\xf3\x9b\xda\xf4\xf9\x19\x46\xff\x64\x91\xf4\ +\xdc\xb8\xb8\xbd\xaf\xed\x3d\x7f\xcd\x64\xc6\x4f\x4f\xc5\xb7\x17\ +\x37\x33\x7f\xcf\xba\xd8\x6b\xa0\x11\x71\x0c\x41\x3e\x13\xc0\xcc\ +\x72\x22\xa2\x8f\x44\x29\xcc\xad\x27\x0d\x43\xd8\xc4\x1d\x97\x5c\ +\xb2\x17\x86\x10\xd9\x03\xa2\xe7\x01\xed\x39\x20\x6a\xa8\x4d\x2b\ +\xdb\x4e\x1e\xe6\x62\xb0\xfc\x15\x06\xb3\x94\xad\x07\xac\x1e\xd0\ +\xdc\x1d\x6d\xa5\xbc\x09\x44\x4a\x2c\x46\xcc\x81\x08\x1f\x61\x39\ +\xa3\x60\xc5\x4a\x5f\xda\x2d\x68\x7d\x5a\x8f\x0c\xfe\x85\x85\x62\ +\xeb\x6d\x5c\x88\x83\x5f\xb5\x55\x7a\xf5\xe0\x7a\x0e\xd0\xd6\x56\ +\xab\x05\x95\x99\x91\x99\x51\x08\x32\x31\xd3\x6f\xf9\x75\x74\x1c\ +\xc7\x3b\x10\x85\x99\x8e\x9f\x35\x1c\xb4\x4c\x95\x24\x7a\x52\x18\ +\xf7\x39\xb6\x63\xf9\xd3\x36\x99\x61\xe7\xc6\xb1\x6a\x07\xa8\x59\ +\xca\xaa\xd8\x6a\x66\x6a\xde\x95\xa8\x00\x94\xb2\xf0\x45\xd5\x85\ +\xf2\xe7\x95\x52\x75\x23\x22\xf5\xeb\x64\xe4\x45\xc6\x9a\x49\x41\ +\xbf\x3e\xcc\x4c\x29\x25\x29\xb1\xa9\x11\x75\x8b\x6d\xe4\x92\x6a\ +\xfb\xa6\xaf\x48\xa3\x30\xfd\xaf\x30\x8f\x2f\x30\xf5\x6f\xfa\x78\ +\x95\x49\xe4\xf5\x6e\x57\x4a\x6b\x5a\xf7\x71\xfd\xb5\x7d\x4c\x44\ +\x7e\x03\x30\x32\x73\x84\xa1\x27\xc2\xfb\x32\x91\x84\xc9\x36\xe3\ +\x09\x7a\x26\xa4\xb6\x16\x63\xf5\xc8\xcc\x16\xd6\x25\xdb\x9e\x94\ +\x53\x51\x9a\x83\x7b\x03\x90\x08\xa4\xc4\xa4\x66\x6d\x2a\x97\x34\ +\xa7\x0f\xac\xfc\xcf\xe5\x5a\x97\xf9\x95\xe6\x73\x33\x33\x95\x0d\ +\xa7\xb8\x5f\xcc\xac\x05\x60\x44\xd4\x51\x6d\x43\xa2\xeb\x8c\xe4\ +\xf2\x48\x4c\xf8\x1f\x61\x3e\xe2\x76\xbc\x6e\x70\x7d\x0b\xd8\xf2\ +\x22\x3a\x72\xde\x61\x55\x75\x48\x29\x0e\xde\x9e\xc2\x53\x2e\x97\ +\x7a\x07\x20\x6c\x09\x5b\xd2\x65\x57\x14\x66\xa6\xaa\x36\x19\x4c\ +\xcd\x30\xc1\x90\xbc\x1d\x11\x5a\x6a\xcf\xb3\x8f\x98\x2d\x0b\x0c\ +\xc8\x20\xc1\x9c\x9e\x6a\xad\xf2\x16\x50\x2e\xfd\x7c\xcd\x0d\x2b\ +\xe4\x4e\x06\x16\xb3\x77\x3c\x53\x43\x77\x0b\x13\xf7\xee\x1e\xdb\ +\xd2\x03\x5d\x65\x14\xac\xe1\x18\x33\xdf\xf8\x77\x26\x7e\xbc\xc1\ +\xe9\x0d\x82\xeb\x25\x60\x2b\x00\x63\x66\xcd\x5f\x0f\x22\xf2\x5f\ +\x65\x37\x57\x35\x21\x60\x57\xae\xcd\xaa\xf0\x41\xd5\x2c\x9a\xd9\ +\x64\x66\x51\xcd\x26\x00\x89\x88\x4e\x55\xae\xb9\x05\x87\x93\x27\ +\xb8\x04\x98\x6f\x05\xcb\xa5\xcf\x7b\xe5\x50\xcd\xf9\xa3\xb5\x2b\ +\x4d\x44\x01\x30\x99\x13\xc7\x57\x2c\x57\xa3\x72\x45\xb0\xbf\xf1\ +\xcd\x62\xfd\x71\xc0\xf5\x44\xbc\xb6\xb0\x68\xad\x55\x13\x11\x00\ +\x88\x9a\xd2\x2f\x6a\x18\x3c\xe4\x41\x34\xb3\x48\x44\x49\x44\x52\ +\x89\x5f\x8a\xa0\xf3\x53\x60\x78\x0e\x80\xbe\x12\x28\x5f\x7b\x1d\ +\xb4\xb9\x16\xd2\x9c\x93\x9a\xe6\xb0\x8d\xe7\xf2\xab\xb9\x92\xa3\ +\xb1\x54\xbe\x8f\x44\x68\xfa\x07\x8b\x9c\xde\x3a\x31\x71\x03\xd7\ +\x37\x02\xad\x75\x1f\x45\xe4\x01\xc0\xc3\xfa\xf7\xc5\xe2\xfd\x2c\ +\x60\xf9\x56\x80\x89\x08\x01\x40\x4a\x49\x88\x68\x4a\x49\x3f\x13\ +\xd1\x7b\x28\x42\x9d\x5f\x97\x71\xd5\x94\x1a\x42\x93\x1e\xcc\xf4\ +\x97\x42\x5e\xd0\x1b\xd2\x1a\xbc\x81\xeb\x07\xb9\x8f\x85\x38\x58\ +\x57\x89\xac\x5d\xba\xd7\xbe\x4b\xaf\x2d\x58\x73\x1c\x55\x93\x85\ +\x10\x3e\x54\xb7\x78\xd1\xdb\x65\xaa\x29\x7d\x31\x4d\x9f\x42\x08\ +\xb1\xc4\x6b\x37\xab\x75\x03\xd7\xb7\x80\xee\xad\x7e\x46\x2d\x9b\ +\x06\x33\x5b\x8c\x51\x44\xe4\x11\x40\x24\xa2\x0f\x66\x36\xa8\x29\ +\x31\x91\x9a\xda\x68\xaa\x9f\x61\x76\x08\x21\x28\x33\x6b\x2e\x2d\ +\xbb\x01\xeb\x06\xae\xdb\x71\x09\x60\x19\x5c\x2a\x22\x29\x13\x1c\ +\xa3\xa9\x9d\x92\xea\x5d\xee\x77\x9c\x98\xe8\xc8\x5d\x37\x35\x04\ +\xc8\xcd\x6a\xdd\xc0\x75\x3b\x9e\x01\xb0\xb3\x82\x69\xee\x38\xaa\ +\xea\xb1\x80\x69\x5d\xf3\x79\x03\xd5\x0d\x5c\xb7\xe3\x1b\x5c\xe1\ +\x02\xbc\x1b\xa0\xbe\xf2\x9a\xde\x2e\xc1\xed\xb8\x1d\x37\x70\xdd\ +\x8e\xdb\xf1\xaa\x8e\xff\x03\xf0\x2a\x88\x6c\x97\x3f\xfd\x52\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0b\x03\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x0a\xca\x49\x44\x41\x54\x78\xda\xed\x9d\x0b\x50\x15\xd7\ +\x19\xc7\xff\xf7\x5e\xa0\xe1\x21\x08\x68\xc1\x40\x85\x04\xb4\x89\ +\x46\x62\x44\x3b\x49\x8c\xf8\xac\x8f\xe8\x54\x89\x71\x68\x6a\x6d\ +\x14\x05\x9f\x15\x13\xa7\x9a\x4e\xd3\xaa\x89\x1a\xa3\x13\x91\x12\ +\x1b\x49\x93\xa6\x68\xd3\x44\xa5\x65\x62\x45\x4d\xad\xa9\x4a\x6c\ +\x5a\xad\xaf\xf8\x00\x8d\x1a\x6d\x7c\x2b\x88\x4f\xc4\xfb\xd8\x7e\ +\xbb\x34\xd6\xf6\x9e\xbd\x97\xc7\xdd\xdd\x7b\xd9\xef\x37\x73\x66\ +\x07\x76\xd9\xef\xec\xd9\xdf\xee\x7e\xbb\x9c\x3d\x6b\x01\x63\x6a\ +\x2c\x46\x57\x80\x31\x16\x16\xc0\xe4\xb0\x00\x26\x87\x05\x30\x39\ +\x2c\x80\xc9\x61\x01\x4c\x0e\x0b\x60\x72\x58\x00\x93\xc3\x02\x98\ +\x1c\xbf\x10\x20\x3d\x3d\x3d\x81\x26\x03\xa9\x24\x51\x89\x32\xba\ +\x3e\x3a\x72\x8b\xca\x69\x2a\x5b\x77\xef\xde\x5d\x61\x44\x05\x0c\ +\x15\x80\x76\xfc\xc3\x34\x59\x44\x65\x18\x15\xab\x91\x75\xf1\x03\ +\x76\x52\x99\x45\x22\x6c\xd3\x33\xa8\x61\x02\xd0\xce\x1f\x49\x93\ +\x62\x2a\xe1\x46\xd5\xc1\x0f\x71\x51\xf9\x19\x49\xb0\x48\xaf\x80\ +\x86\x08\x40\x3b\xbf\x2f\x4d\x3e\xa6\x12\x6c\x44\xfc\x00\x60\x1a\ +\x49\xb0\x5c\x8f\x40\xba\x0b\x40\x3b\x3f\x94\x26\x47\xa9\x24\xea\ +\x1d\x3b\x80\xa8\xa3\xd2\x89\x24\x38\xa1\x75\x20\x23\x04\x98\x4e\ +\x93\x02\xbd\xe3\x06\x20\xef\x90\x00\x39\x5a\x07\x31\x42\x80\xed\ +\x34\xe9\xa5\x77\xdc\x00\xa4\x8a\x4a\x1c\x49\xe0\xd4\x32\x88\x11\ +\x02\x5c\xa7\x49\x84\xde\x71\x03\x94\x14\xad\x2f\x03\xba\x0a\x40\ +\x3b\x5f\xce\xf8\x6f\xe8\x19\x33\xc0\x79\x92\x04\xf8\x4c\xcb\x00\ +\x7a\x0b\xd0\x9a\x26\x57\xf4\x8c\x19\xe0\xf4\x26\x01\xb6\x6b\x19\ +\x80\x05\xf0\x6f\xcc\x25\x40\x68\x68\x28\x92\x92\x92\xf4\xac\x92\ +\x61\xd4\xd6\xd6\xe2\xd4\xa9\x53\xde\x16\x33\x97\x00\x69\x69\x69\ +\x58\xb1\x62\x85\x9e\x55\x32\x8c\xfd\xfb\xf7\x63\xf2\xe4\xc9\xde\ +\x16\x63\x01\x5a\x2a\x2c\x80\x00\x16\xc0\x0d\x16\xa0\xa5\xc2\x02\ +\x08\x60\x01\xdc\x60\x01\x5a\x2a\x2c\x80\x00\x16\xc0\x0d\x16\xa0\ +\xa5\xc2\x02\x08\xd0\x54\x00\x49\xa2\xad\xf5\x8b\x2e\x90\x0a\x2c\ +\x80\x00\x4d\x04\xa8\xad\x81\xf5\xe8\x46\x58\x8f\x6f\x81\xe3\x99\ +\x77\xf4\xdc\x5c\x8f\xb0\x00\x02\x7c\x26\x00\x1d\xed\x96\xb3\x7b\ +\x60\xad\xf8\x08\xd6\x13\xdb\x60\x71\xd9\x21\xb5\xba\x1f\xf6\xd1\ +\x25\x7a\x6e\xae\x47\x58\x00\x01\xcd\x16\xa0\xf6\x0a\xac\x47\x36\ +\xc0\x56\xb1\x0e\x96\xab\x5f\xdd\xfd\xf5\x97\xb7\x42\x91\x30\xed\ +\x4f\x40\x48\x98\x9e\x9b\xeb\x11\x16\x40\x40\x93\x04\x90\x5c\xb0\ +\x9c\xd9\x5d\x7f\xb4\x7f\xb9\x9d\x8e\x76\x87\xdb\x22\x7b\xe3\x46\ +\xa1\x73\xe6\x0b\x7a\x6e\xaa\x57\x58\x00\x01\x8d\x12\xe0\x56\xd5\ +\x7f\x8f\xf6\x6b\x67\x3c\x2e\x6a\x1f\xfe\x16\xa4\x76\x8f\xea\xb9\ +\xa9\x5e\x61\x01\x04\x34\x44\x00\xcb\xd9\xbd\xb0\x1d\x5c\x0b\xcb\ +\xc9\x4f\x85\x47\xbb\x08\xfb\x88\x15\x90\xe2\xd3\xf4\xdc\x54\xaf\ +\xb0\x00\x02\x1a\x22\x40\x50\x69\x2e\xac\x17\x0e\x36\x2a\x2e\x0b\ +\xa0\x4e\x40\x09\xb0\x70\xe1\x42\x74\xad\x2a\x43\x4d\x9d\x84\xc3\ +\x97\x81\x4b\xb5\x40\x1c\xe5\x75\xd9\x5d\x80\x8e\x31\xea\x71\x59\ +\x00\x75\x02\x4a\x80\xb1\x63\xc7\xe2\xe8\xd1\xa3\x88\x8b\x8b\x43\ +\x6c\x6c\x2c\x2e\x5c\xb8\x80\xaa\xaa\x2a\x44\x86\x00\x25\x23\x80\ +\x98\xfb\xc4\x7f\xc7\x02\xa8\x13\x50\x02\xec\xdc\xb9\x13\xa9\xa9\ +\xa9\x88\x89\xa9\x3f\xdc\x5d\x2e\x17\x56\xad\x5a\x85\xa2\xa2\x22\ +\xbc\xd0\x1d\x18\xdd\x49\xfc\x77\x2c\x80\x3a\x01\x25\x80\x08\x49\ +\x92\x90\x93\x93\x83\xa4\xda\xc3\x78\x55\xe5\x75\x13\x16\x40\x9d\ +\x80\x17\x40\xa6\xb8\xb8\x18\x07\xd7\x17\xa1\xa0\xbf\x78\x3e\x0b\ +\xa0\x4e\x8b\x10\x60\xf3\xe6\xcd\xd8\x58\x34\x07\x6f\x0e\x10\xcf\ +\x67\x01\xd4\x69\x11\x02\x94\x97\x97\xa3\xb4\x60\x36\x0b\xd0\x04\ +\x58\x00\x83\x60\x01\x04\xb0\x00\x6e\xb0\x00\x0d\x81\x05\x68\x3a\ +\x2c\x80\x41\xb0\x00\x02\x58\x00\x37\x58\x80\x86\xc0\x02\x34\x1d\ +\x16\xc0\x20\x58\x00\x01\x46\x09\x60\x2b\x7f\x03\xb8\xe3\xbb\x81\ +\x4b\x9c\x8f\x4f\x01\xc2\xdb\x7a\x5c\x86\x05\x10\x60\x84\x00\x57\ +\xaf\x5e\x45\x4c\xe9\x0f\x60\xbb\xed\xbb\x71\x2b\xec\x59\xbf\x87\ +\x14\x9d\xec\x71\x19\x16\x40\x80\x11\x02\x0c\x1a\x34\x08\xe9\xad\ +\xaf\xa3\x6d\x18\x90\x1c\x05\xf4\x4c\x00\x12\x5b\x35\x2e\xbe\xc3\ +\x05\xec\xbb\x48\x3b\x95\xca\xf0\xe7\xa7\x21\xf2\xb1\xe1\x40\x88\ +\xe7\x01\x50\x59\x00\x01\x46\x08\x90\x95\x95\x85\x73\xe7\xce\xc1\ +\xe1\x70\xdc\x6d\x10\xb9\x83\xc9\xe4\xc7\xbc\xc7\x3d\x7f\x13\xf8\ +\xb0\x02\x58\x7f\x1c\xa8\xa9\x03\x22\x22\x22\xb0\x72\xe5\x4a\xc4\ +\xc7\xc7\x7b\xfd\x5b\x16\x40\x80\x51\x39\x80\xdc\xaf\xe0\xf4\xe9\ +\xd3\xd8\xb1\x63\x87\xb2\x03\xe5\xcb\xc2\x47\x99\x40\x82\xca\x99\ +\xe0\x2a\xed\xec\x5f\xef\x07\x36\x9e\x0e\xc3\x53\xbd\xfb\x22\x23\ +\x23\x43\xa9\x7b\x54\x54\xc3\x07\x3a\x67\x01\x04\xf8\xc3\x5d\xc0\ +\xc9\x93\x27\x31\x66\xcc\x18\xac\x1c\xe2\xc4\xb7\xff\xaf\x9b\x99\ +\xfc\x76\x59\xd9\x09\xe0\xbd\x63\x51\x18\x3a\x72\x34\x32\x33\x33\ +\x11\x1e\xde\xb4\xb1\xae\x59\x00\x01\xfe\x20\x80\xcc\x8f\x27\xfc\ +\x10\xcb\xbb\x9d\x40\xd0\x3d\x03\xd8\x57\xdf\x06\x5e\xfb\x87\x0d\ +\x71\x4f\x8c\x42\x76\x76\xb6\x72\xba\x6f\x0e\x2c\x80\x00\x7f\x10\ +\x40\xbe\x1c\x7c\x32\x77\x18\x9e\xbe\xbf\xe6\xee\xef\x76\x9f\xa7\ +\xa3\xfe\x5c\x2a\x26\xcd\x7c\x19\x1d\x3b\x76\xf4\x49\x5b\xb0\x00\ +\x02\xfc\x41\x80\x9b\x15\x5b\x10\xf9\xd7\x9f\xc3\x66\xad\x3f\xe5\ +\x7f\x58\x49\xc9\x5e\x6a\x16\x72\x26\x4e\x46\x48\x48\x88\xcf\xda\ +\x82\x05\x10\x60\xb4\x00\x96\x0b\x87\x10\xb4\x3e\x0f\x16\xfb\x2d\ +\xdc\x71\x02\x85\x07\xc3\x91\xf6\xfd\x97\xd1\xbb\x77\x6f\x9f\xb7\ +\x05\x0b\x20\xc0\x48\x01\x2c\xa7\xfe\x86\xa0\xbf\xfc\x42\xd9\xf9\ +\xf2\xf5\xbe\xf0\x78\x22\x9e\x9b\xb9\x18\xc9\xc9\xc9\x9a\xb4\x05\ +\x0b\x20\xc0\x10\x01\xe8\x3c\x6f\xdd\xf7\x3e\x6c\x3b\x57\xc0\x22\ +\xb9\xf0\x05\xd5\xee\x83\xeb\xdd\x31\xe5\xa5\xf9\x88\x8c\x8c\xd4\ +\xac\x2d\x58\x00\x01\xba\x0b\xe0\xa8\x83\x6d\xeb\x6b\xb0\x1d\xfb\ +\xb3\xf2\xe3\xd6\x7f\xd1\x8e\x89\x1b\x89\x9c\xa9\x79\x08\x0a\x0a\ +\xd2\xb4\x2d\x58\x00\x01\xba\x0a\x70\xe3\x22\x82\x3e\x7e\x09\xd6\ +\x4b\x95\x4a\xb2\xb7\xaa\xd2\x86\xd0\xbe\x2f\x62\xf8\x88\x4c\x5d\ +\xda\x82\x05\x10\xa0\x97\x00\x96\xf3\x07\x68\xe7\xff\x14\x96\xda\ +\x6a\xd4\x39\x80\x82\xc3\x91\xe8\x35\x7e\x81\x5c\x3f\xdd\xda\x82\ +\x05\x10\xa0\x87\x00\xd6\xca\xf5\xb0\x6d\x5f\xa2\x0c\x1b\x73\xe9\ +\x16\xb0\xfc\x64\x32\x7e\x34\x6b\x31\x12\x13\xf5\xfd\x86\x15\x0b\ +\x20\x40\x53\x01\xbe\xd9\x19\xb6\xcf\x0a\x61\x3b\xb0\xe6\xee\xef\ +\x8f\xde\x08\x43\xdb\x89\x7f\x40\x78\x2b\xfd\x3f\x56\xca\x02\x08\ +\xd0\x4c\x80\xc1\x8b\x69\xc7\xaf\x85\xf5\xcc\x2e\xb7\x79\xce\x2e\ +\xa3\xe0\xec\xa9\xff\xf0\x31\x2c\x80\x00\xad\x04\x90\x82\xc3\x94\ +\xfb\x7b\x35\x1c\xfd\xe7\xc0\xd5\x61\x90\x9e\x4d\xc1\x02\x88\xd0\ +\x4a\x80\x77\x3f\x07\xc6\x75\xa1\xeb\xbf\xca\xd6\x4a\x41\xf7\xc1\ +\x91\xf9\x36\xa4\xd8\x54\xdd\xda\x82\x05\x10\xa0\x95\x00\xe3\x37\ +\x02\xdd\xe2\x80\xa9\xdd\xd4\xd7\x21\x45\x26\xc0\x3e\xf2\x37\xc0\ +\x37\x1a\xd9\x1d\xa8\x89\xb0\x00\x02\xb4\x12\x60\xf2\x96\x10\xec\ +\x3a\x73\x07\xaf\xf7\x06\xfa\x7b\xf8\x24\x91\xab\xfd\x13\x70\x0c\ +\x59\x42\xad\xa2\xfd\x87\xcc\x59\x00\x01\x5a\x09\x70\xe8\xe1\x17\ +\x91\x3b\x77\x39\xac\xce\x3a\xfc\xf6\x69\x20\xa5\xb5\xfa\xba\x9c\ +\xe9\xd9\x70\xf6\x98\xa0\x79\x5b\xb0\x00\x02\xb4\xbc\x0d\xdc\xb4\ +\xff\x1c\xe6\xcd\x9b\x87\x6f\xd1\x19\xbe\x78\x28\x94\x71\x85\x44\ +\x48\xd4\x24\x8e\x21\x8b\x21\x25\xf5\xd4\xb4\x2d\x58\x00\x01\x5a\ +\x3f\x08\x2a\x28\x28\xc0\xea\xd5\xab\x95\x9e\xbf\xf9\xfd\x3c\x24\ +\x85\x21\x11\xf5\xf9\x40\x94\x76\x0f\x87\x58\x00\x01\x5a\x0b\x20\ +\xf7\xfc\x9d\x31\x63\x06\xf6\xec\xd9\xa3\xf4\xfc\x9d\xe2\xa1\xe7\ +\xaf\x14\x93\x02\x3b\xdd\x19\x20\x38\x54\x93\xb6\x60\x01\x04\xe8\ +\xf1\x28\xb8\xa6\xa6\x06\xe3\xc6\x8d\x53\x86\x98\x5b\x4c\x49\x61\ +\x3f\x0f\x49\xa1\x33\x75\x00\x9c\xfd\xe7\x69\xf2\x9d\x01\x16\x40\ +\x80\x5e\xff\x0c\x3a\x72\xe4\x08\x26\x4e\x9c\x88\x20\xd7\x1d\x25\ +\x29\x7c\xd0\x43\x52\xe8\x78\x7c\x2a\x5c\x5d\x47\xfb\xbc\x2d\x58\ +\x00\x01\x7a\xfe\x3b\x78\xd3\xa6\x4d\x78\xe5\x95\x57\xd0\xfe\x3f\ +\x49\x61\x2b\xb5\xa4\x90\x6e\x09\x1d\x83\x5f\xf7\x79\x52\xc8\x02\ +\x08\xd0\xbb\x43\xc8\xb2\x65\xcb\xb0\x66\xcd\x1a\x3c\x45\x49\xe1\ +\x52\x4f\x49\x21\xe5\x01\x8e\xef\x2d\x87\xd4\xf6\x21\x9f\xb5\x05\ +\x0b\x20\x40\x6f\x01\xe4\xa4\x30\x2f\x2f\x0f\x7b\xf7\xee\xc5\x78\ +\x2f\xaf\x83\x49\xa1\xd1\xb0\x0f\xff\x15\xd0\xda\x37\x1f\xb7\x66\ +\x01\x04\x34\x47\x80\x75\xbf\x9c\xdd\xa4\x81\x22\xaf\x5c\xb9\xa2\ +\xbc\xe8\x71\x51\x4e\x0a\xfb\x00\x7d\xdb\xab\xc7\x91\xc2\xdb\xc2\ +\x4e\x67\x02\x5f\xdc\x1e\xb2\x00\x02\x9a\x23\x40\xf9\xdb\xb3\x31\ +\x57\xe5\x32\xed\xad\x57\x70\x65\x65\x25\x26\x4d\x9a\xa4\x24\x85\ +\xc5\x94\x14\x3e\xe0\x21\x29\x94\xc2\xda\xc0\x31\x2c\x5f\xb9\x4d\ +\x6c\x0e\x2c\x80\x80\xe6\x8c\x14\x5a\xbd\x6e\x0e\xc6\x74\x16\xcf\ +\xb7\x7f\xf7\x55\x48\x29\xfd\x3d\xae\x63\xc3\x86\x0d\x98\x3f\x7f\ +\x3e\xda\x47\x02\x2b\x49\x82\x08\x0f\xef\x80\xc8\x0f\x8a\x1c\x03\ +\x17\x40\x4a\xec\xd1\xe4\xb6\x60\x01\x04\x34\x55\x80\xf7\x7f\xb7\ +\x0a\xfd\xce\xbe\x85\x24\x95\x5e\xdc\xce\x0e\x03\xe9\x7e\x7e\xae\ +\xd7\xf5\xe4\xe7\xe7\x63\xed\xda\xb5\xe8\x45\x67\xf8\x37\xfa\xaa\ +\x27\x85\x32\x92\xc5\x06\xe7\x77\x72\xeb\x6f\x11\x9b\xf0\xcf\x23\ +\x16\x40\x40\x53\x05\xd8\xf5\xee\x2c\xf4\xb4\x7f\xaa\x3a\x5f\xb9\ +\x95\x1b\x9a\xef\xf5\x88\xbd\x37\x29\x9c\x40\x57\x8c\x49\x5d\xbd\ +\xc7\x76\xc5\x3f\x0a\x67\xc6\x4f\xe8\x92\xf0\x60\xa3\xea\xcc\x02\ +\x08\x68\xb4\x00\x75\x37\x60\xfb\xfc\x03\x58\xfe\xf9\x9e\xc7\xa3\ +\x55\x46\xb2\x85\xc0\xd9\x7d\x3c\x5c\x9d\x9f\xf1\x38\x7a\x47\x75\ +\x75\xb5\x92\x14\x5e\xba\x78\x11\x4b\xfa\x00\x7d\xda\xc3\x2b\xb2\ +\x60\x2e\x3a\xcb\xb8\xba\x8c\x82\xd4\xe6\xa1\x06\x3d\x39\x64\x01\ +\x04\x34\x44\x00\xeb\xa1\x3f\xc2\x72\xf9\x0b\x58\x6a\x4e\xc1\x72\ +\xf1\x10\x2c\x4e\x7b\xa3\xea\x20\x8b\x20\x77\x10\x95\xa2\x93\x20\ +\xc5\x76\x20\x21\xdc\xdf\x03\xa8\xa8\xa8\x50\x76\x4e\xb0\x54\xff\ +\xa4\xf0\x81\x46\xf4\x19\x95\x5a\xb5\x83\x2b\xee\x11\x65\x8c\x20\ +\x57\xfa\x38\xd5\xe5\x58\x00\x01\x5a\x7d\x34\x4a\x0d\x57\x7c\x17\ +\x38\x46\x14\x09\xe7\x95\x95\x95\x61\xc1\x82\x05\x4a\x5e\x51\xec\ +\x25\x29\x14\xa1\x3c\x37\x78\xbe\x4c\x75\x3e\x0b\x20\xc0\x9b\x00\ +\xb9\xb9\xb9\xe8\xe4\x38\x88\x76\x4d\x1b\x94\xe3\x7f\x90\xbf\x3b\ +\xd4\x6f\xc4\x68\xb8\x1e\x79\x56\x75\x99\xa5\x4b\x97\xa2\xa4\xa4\ +\x04\x3d\xe2\x81\x27\x13\x1a\xbe\xee\xf0\xf0\x30\x0c\x7f\xf6\x39\ +\xe5\x92\xa3\x06\x0b\x20\xa0\xa1\x1f\x8d\xf2\x51\x5d\x50\x58\x58\ +\xe8\x71\x19\x39\x29\x9c\x3e\x7d\x3a\xf6\xed\xdb\xd7\xa8\x75\xcb\ +\x72\x95\x96\x96\x7a\x5c\x86\x05\x10\xe0\x4d\x00\x39\x41\xfb\x7a\ +\x34\xaf\xe6\x12\x1c\x1c\x8c\xe8\xe8\x68\xaf\xcb\xdd\xbe\x7d\x1b\ +\xd7\xae\x5d\x6b\xd4\xba\xad\x56\x2b\xda\xb4\x69\xe3\x71\x19\x16\ +\x40\x80\x26\x9f\x8f\xf7\x53\x58\x00\x01\x2c\x80\x1b\x2c\x40\x4b\ +\x85\x05\x10\xc0\x02\xb8\xc1\x02\xb4\x54\x58\x00\x01\x2c\x80\x1b\ +\x2c\x40\x4b\x85\x05\x10\x90\x92\x92\x82\x99\x33\x67\xea\x59\x25\ +\xc3\x38\x76\xec\x98\xf2\xa4\xd1\x0b\xe6\x12\x80\x71\x83\x05\x30\ +\x39\x2c\x80\xc9\x61\x01\x4c\x0e\x0b\x60\x72\x58\x00\x93\xc3\x02\ +\x98\x1c\x16\xc0\xe4\xb4\x38\x01\xe4\xee\x95\x35\xcd\x5e\x91\x79\ +\xc8\x20\x01\xca\xb5\x0c\xa0\xb7\x00\xf2\x1b\x14\x75\x54\xb4\x1d\ +\x8b\xbd\xe5\x90\x46\x02\x1c\xd0\x32\x80\xae\x02\xc8\x90\x04\xc7\ +\x69\xd2\xb8\xb7\x28\xcc\x89\x93\x4a\x2c\x09\x70\x55\xcb\x20\x46\ +\x08\xf0\x26\x4d\xa6\xea\x1d\x37\x00\x29\xa7\x9d\x9f\xa1\x75\x10\ +\x23\x04\x90\x5f\xe1\xdc\x4f\xc5\xa6\x77\xec\x00\x23\x8b\x04\x58\ +\xd3\xfc\xd5\x78\x46\x77\x01\x64\x48\x82\x65\x34\xc9\x33\x22\x76\ +\x80\xf0\x09\x95\x01\x24\x80\xa4\x75\x20\xa3\x04\x08\xa6\xc9\x3a\ +\x2a\x83\x8d\x88\xef\xe7\x54\xa0\x3e\xfb\xbf\xac\x47\x30\x43\x04\ +\x90\x21\x09\xe4\x3b\x81\x45\x54\xa6\x53\x09\x36\xaa\x1e\x7e\x84\ +\x7c\xb4\x97\x50\xc9\xd1\x3a\xf1\xbb\x17\xc3\x04\xf8\x1a\x12\xa1\ +\x03\x4d\xb2\xa9\x0c\xa4\x92\x4c\xa5\x75\xb3\x56\x18\x58\xdc\xa4\ +\xf2\x15\x95\x6d\x54\x56\xd2\x8e\xff\xbb\xde\x15\x30\x5c\x00\xc6\ +\x58\x58\x00\x93\xc3\x02\x98\x1c\x16\xc0\xe4\xb0\x00\x26\x87\x05\ +\x30\x39\x2c\x80\xc9\x61\x01\x4c\x0e\x0b\x60\x72\xfe\x0d\x3d\x48\ +\xb1\xea\xac\xcd\x38\x11\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x09\x54\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x09\x1b\x49\x44\x41\x54\x78\xda\xed\x9d\x7f\x8c\x14\x67\ +\x19\xc7\x3f\xef\xec\xec\x71\xcb\x1d\x72\x77\xd8\xbb\x63\x0f\x7a\ +\xb6\x0d\x28\x98\x6a\xea\x4a\x8c\xa5\x35\xa9\x56\x62\xa2\x89\x11\ +\x88\xd4\xc6\x98\x02\x96\x06\x42\x4d\xda\x44\x8b\xda\x54\x8d\x36\ +\xd5\xc4\x68\x62\xa9\x50\x51\x92\xca\x1f\x4d\x2d\xa8\x69\x54\x1a\ +\xff\xb0\x92\xa0\xa9\xe0\x24\x10\x8b\x28\x1c\xe5\xc7\x71\x2c\x5c\ +\xe1\xe0\x7e\x71\x77\xbb\x33\xf3\xfa\x47\xef\x70\x6f\xd9\x99\xdb\ +\xe3\x6e\x77\xe7\xc7\xf3\x4d\x36\x7b\xb7\xb7\xb7\x33\xfb\x3c\x9f\ +\xf7\x79\x9e\xf7\xc7\xcc\x0b\x22\x91\x48\x24\x12\x89\x44\x22\x91\ +\x48\x24\x12\x89\x44\x22\x91\x28\xfa\x52\x41\x38\x89\x4c\x26\xd3\ +\x01\xac\x02\x3a\x81\xf9\x31\xb2\xff\x75\xe0\x3c\xf0\x57\xcb\xb2\ +\x8e\xc7\x0e\x80\x4c\x26\xb3\x0c\xf8\x21\xf0\x39\xc0\x88\x79\x63\ +\x3c\x04\x7c\xc3\xb2\xac\x03\xd5\x3c\x68\xa2\x86\xce\x5f\x03\xfc\ +\x09\xb8\x3b\x28\x91\xa8\xc6\xea\x00\xbe\x92\x4e\xa7\x73\xd9\x6c\ +\xf6\x60\xa4\x01\xc8\x64\x32\x0f\x00\xbf\x07\xea\xc5\xef\x37\x45\ +\xe4\x07\xd3\xe9\xf4\xe5\x6c\x36\x7b\x38\x92\x29\x20\x93\xc9\xa4\ +\x80\x13\xc0\x22\xf1\xb7\xa7\xc6\x80\xe5\x96\x65\xbd\x5d\xe9\x03\ +\xd5\x22\xef\x3e\x2a\xce\x9f\x52\x73\x80\x6f\x56\xe3\x40\xb5\x00\ +\x60\xad\xf8\xb7\x2c\x7d\x21\x93\xc9\x24\xa2\x08\xc0\x3d\xe2\xdb\ +\xb2\xb4\x60\xbc\x5b\x1c\x1d\x00\x32\x99\x4c\x03\xd0\x28\xbe\x2d\ +\x5b\x6d\x51\x8b\x00\x49\xf1\x69\xb0\xec\x65\x88\x8d\xe3\x2d\x33\ +\x48\x27\x93\x4a\xa5\xe8\xec\x2c\x2f\xed\x29\xf5\x6e\x0f\xd6\x30\ +\x0c\x94\x52\x68\xad\x27\x3d\x82\xae\x91\x91\x11\xce\x9e\x3d\x2b\ +\x00\x14\x6a\xc9\x92\x25\xec\xdc\xb9\x33\x16\x2d\xef\xe8\xd1\xa3\ +\x6c\xde\xbc\x59\x00\x98\x89\x26\xa2\x40\xb1\xc2\x10\x01\x24\x05\ +\xcc\x82\xe3\x0b\x01\x98\x48\x03\x85\x3f\x0b\x08\x11\x04\x40\x29\ +\x35\x09\x80\x62\x08\x0a\x23\x80\x80\x10\x31\x00\x26\x1c\x5e\x0c\ +\x81\xd7\x7b\x0b\x1d\x2f\x10\x44\x2c\x02\x78\x39\xbe\x54\x6a\x70\ +\x5d\x57\x20\x08\x3b\x00\xa5\x5a\xbf\x57\x31\x58\x98\x02\x26\xba\ +\x8a\x5a\x6b\x5c\xd7\x15\x08\x8a\x64\x44\xcd\xf9\xa5\x5e\x9b\xf8\ +\x3f\xc3\x30\x6e\x8c\x1b\x88\x42\x12\x01\xa6\xeb\x7c\xbf\x82\x50\ +\xba\x8b\x21\x03\xa0\xd8\xf9\xb7\xd2\x72\x6f\x14\x83\xae\x83\x32\ +\x12\x32\x6e\x10\x16\x00\xa6\x72\xfe\x74\x60\x50\x4a\xa1\xc7\x9d\ +\x3f\xf1\x59\xa5\x86\x8d\xe3\x08\x82\x19\x34\xa7\xfb\xf5\xfb\x8b\ +\x5b\xed\xb4\x21\x28\x70\xf0\x74\x41\x88\xea\xa8\x63\xa0\x00\x30\ +\x0c\xa3\xac\xae\xde\xad\x16\x71\xc5\x10\x14\x7e\x56\x21\x0c\x85\ +\xf5\xc3\x74\x8e\x15\x46\x18\x02\x1d\x01\xbc\x46\xfa\x66\x7a\x0c\ +\x2f\x08\x8a\x8b\x47\xaf\x88\x54\x1c\x49\xc2\x9c\x46\x02\x19\x01\ +\x26\x0c\xfb\xef\x1e\x87\xbd\x87\xf2\x8c\xd9\x35\x34\xaa\xc6\x7b\ +\xed\xb4\x9e\x78\xd2\x93\x5e\x9b\xf4\x3b\x30\xc7\x54\xac\x59\x61\ +\xb2\x2c\x6d\x08\x00\x7e\x2d\xb3\x30\x05\x1c\xef\x71\xf8\xea\xaf\ +\x46\x22\x53\x6c\xfd\xf9\x2d\x87\x17\xd7\xcf\x09\x1c\x04\x81\x43\ +\x72\x22\xec\xbe\x7a\x28\x1f\xb9\x8a\x7b\xdf\x61\x3b\x70\xe7\x14\ +\x18\x00\x8a\x73\x67\x4d\xc3\x7e\x85\x14\xc4\xef\x14\xa8\x08\x20\ +\x63\xf5\x31\x2f\x02\x67\x6b\xd6\xce\x9d\xe2\xdf\x0d\x99\x0a\x08\ +\x36\x00\x33\x91\xe3\xc2\x86\x95\x39\x96\xb6\xe9\x92\x8e\x3f\x91\ +\x75\xd8\x75\x30\x89\x69\xca\x0a\xf5\xc0\x01\x30\x1b\xe1\xdf\xd5\ +\x70\x7b\xb3\xcb\xf2\x76\xb7\x24\x00\xa3\xa3\x36\xb9\xbe\x33\x98\ +\xb7\x2d\x05\x65\xc6\x1e\x00\x23\x88\x00\x54\xb6\x0e\x70\x41\xbb\ +\xe4\xfa\xba\xfe\xdf\x91\x17\x00\x02\x28\x5d\x31\xca\xc6\x9f\x1d\ +\x72\x57\xfe\x0b\x6e\x5e\x00\x88\x95\x0a\xeb\x0c\xed\x90\xbb\xda\ +\x05\xda\x11\x00\x82\x17\x00\x2a\x14\x02\x8a\x7b\x00\xda\x25\xd7\ +\x77\x32\xb6\xe9\x40\xae\x0d\xbc\x91\x0e\xfe\x53\xf1\x74\xa0\x02\ +\x78\x2b\x24\x01\xa0\x30\x12\xc4\x30\x1d\x08\x00\x31\x4f\x07\x02\ +\x40\x8d\xd2\x81\x00\x10\x8a\x74\xe0\xa2\xc7\xe3\x81\xd7\x23\xec\ +\x92\xa1\x30\x0f\xe5\xf3\x0e\x1f\x6d\xee\xe6\xae\xce\x85\xe0\xb3\ +\x34\xed\xd2\x35\x9b\x83\x6f\xd7\x13\xd6\x4b\x0d\x04\x80\x52\x01\ +\x40\xc3\xa7\x3e\xd4\xc8\xf7\x1f\x6e\x63\x2c\xef\x3d\x87\xdf\xd3\ +\x67\xb3\x71\x7b\x37\x24\xe7\x61\xbe\xe7\x76\x01\x20\x2a\xce\x5f\ +\xfc\xde\x3a\xbe\xb5\xb6\x95\xa1\x51\xef\xc9\x29\x17\xd8\xfa\x8b\ +\x9e\x77\x67\x1e\x73\x83\xe4\xfb\xcf\x92\x9c\xdf\x19\xba\xef\x2b\ +\x35\x40\x91\x16\x36\x27\x79\x61\x53\x1a\xc7\x67\x62\xd2\x76\x34\ +\x1b\x7e\xd6\x3d\x09\x10\x9d\x1f\x24\x7f\xcd\xff\xc6\x9e\x1a\x59\ +\x10\x12\x68\x35\x37\x9a\x6c\xdf\x94\xc6\x4c\x78\x27\x74\x57\xc3\ +\xb6\x3d\x59\x7a\xfb\xed\xa2\xbc\xaf\xd0\xf6\x08\xf6\xc0\x39\x89\ +\x00\x61\x94\x52\xf0\x93\xf5\x0b\x49\xd5\x79\x9b\xc4\x50\xf0\xec\ +\xde\x5e\x8e\x9f\x1f\xf3\x2c\xfa\xdc\xdc\x20\xf9\xfe\x33\x02\x40\ +\x98\x94\x30\x14\x2f\x6e\x5e\x44\x7b\x93\xe9\xeb\xfc\xe7\xf6\xf5\ +\x72\xf0\xf8\xd0\xd4\x75\x44\x7e\x88\xfc\xb5\xd3\x02\x40\x18\xe4\ +\xb8\xf0\xd4\xea\xdb\xe8\x68\x49\x7a\x2e\x25\xab\x33\x15\xfb\xde\ +\xec\xe7\xc0\xb1\x61\xcc\xb2\xd6\x93\x29\xb4\x7d\x1d\x7b\xa0\x5b\ +\x00\x08\xba\x9e\x5e\xdb\xca\x7d\xcb\x1a\x7c\xdf\xf3\xbb\x7f\x0c\ +\xb0\xf3\xf5\x2b\xd3\xee\xeb\xbb\xb9\x81\xc0\xa7\x83\xd8\x02\x90\ +\xb3\x35\x1b\x1f\x6c\xe1\x13\x1f\x6c\xc0\x6b\x01\x52\xc2\x50\x1c\ +\x3a\x79\x9d\x9f\xef\xbf\xec\x5b\x18\x86\x39\x1d\xc4\x12\x80\xbc\ +\xa3\xf9\x6c\x66\x1e\x5f\xbc\xb7\xc9\x33\xec\x1b\x0a\xba\xb2\x63\ +\x3c\xf3\xf2\xc5\x99\x96\x97\x81\x4e\x07\xf1\x03\x40\xc3\xfd\xcb\ +\x1b\x79\x6a\x75\x2b\xb6\xcf\xfa\xf1\x2b\x83\x0e\x8f\xed\x38\x4f\ +\x62\x96\xd6\x90\xbb\xb9\x01\xec\xc1\xf3\x02\x40\x8d\x7d\x4f\x6b\ +\x93\xc9\xb7\xd7\xb6\x32\x96\xf7\x76\xbe\xd6\xb0\x75\x57\x0f\x49\ +\x33\xfa\x17\x10\xc4\x6a\x28\x58\x6b\xe8\x58\x90\xc4\x6f\xd1\x71\ +\xde\xd6\xac\xdf\x7e\x9e\xab\x43\x0e\x71\xb8\x97\x54\xec\x52\x80\ +\x9f\xf3\xeb\xeb\x14\x4f\xbf\x7c\x89\xab\x43\x36\x71\xb9\x91\x58\ +\xec\x00\xf0\x73\xec\x58\x5e\xb3\xe5\x33\x2d\xbe\xb5\x81\x00\x10\ +\x72\xe7\x5f\xee\xb7\x71\x3c\x1c\xac\x35\xdc\xd1\x5a\xc7\x8e\xc7\ +\x16\x49\x04\x88\x24\x00\x40\xf7\xe5\x3c\x3f\x7d\xed\x1d\xea\x3d\ +\xc6\xfc\x5d\x0d\x77\xb6\xd5\xf1\xdd\x75\xed\x8c\xe4\x5c\x01\xa0\ +\x76\xce\x52\x15\xa3\xe0\x0f\xff\x1c\xe4\xf9\x3f\xbe\xe3\x3b\xb8\ +\x73\xef\x07\xe6\xf2\xbd\x87\xda\x7d\xa7\x85\x05\x80\x90\x6a\x4e\ +\x52\xf1\x9b\xbf\xf5\xf3\xda\xa1\x01\xcf\x4b\xc5\x73\xb6\xe6\x81\ +\xbb\x1b\x79\xe4\x93\xcd\x44\xb9\x24\x88\xed\x50\x70\x9d\xa9\x78\ +\x61\xff\x65\xde\xf8\xd7\x90\xe7\x60\x8f\xed\x68\xbe\x74\x7f\x13\ +\x0f\xdd\xd7\xe4\x59\x37\x08\x00\x95\x4c\xd8\x55\xd0\x0f\xf6\xf6\ +\xf2\xc6\x5b\x43\x9e\x45\x9f\xd6\xb0\xe9\xd3\x2d\xac\xfd\x78\x13\ +\x51\xbc\x79\x49\xa0\x00\x98\x6a\x13\x88\x4a\x45\x82\x1f\xfd\xb6\ +\x97\x33\xbd\x39\xcf\x74\x30\x66\x6b\x1e\x5d\xd5\xc2\x47\xee\x4a\ +\xe1\xba\x02\x40\xc5\x54\xcb\xfb\x03\x3d\xbe\xeb\x02\xa7\x7b\x73\ +\x3e\xe7\x06\xcf\x3e\xdc\xce\xc7\x96\xce\x15\x00\x2a\x1d\x01\x6a\ +\x21\xc7\xd5\x3c\xb9\x3b\xcb\x85\x3e\xef\x2b\x82\x34\xf0\xcc\xba\ +\x56\x96\x2f\xae\x8f\x4c\x3a\x90\x08\x50\xa0\xd1\xbc\xcb\x13\xbb\ +\x2f\x70\x7d\xcc\xf5\x2c\x41\x0c\xa5\x78\xee\xcb\xed\xb4\x35\x99\ +\x91\x80\x20\x90\x45\x60\x2d\x41\x18\x1c\x71\x59\xff\x7c\x37\xc3\ +\x63\xde\xc9\xde\x4c\x28\x76\x6d\x59\x44\x5b\x93\x29\x00\x54\x8e\ +\x82\x5a\xa5\x21\x18\x1a\x75\xd9\xb6\x27\xeb\xdb\xc2\xcd\x84\xe2\ +\xc7\x8f\xa4\x69\x98\x63\x84\xfa\x1a\x41\x59\x15\xec\xa1\xae\x8b\ +\x39\xb6\xee\xea\xf1\xed\xff\x2f\x98\x97\x60\xf7\xe3\x8b\x99\x5b\ +\x67\x08\x00\xb3\x1f\x00\x6e\xb5\x5d\x29\x52\x49\x97\xc6\x7a\xe3\ +\xe6\x47\x2a\xe1\xbb\xee\xbf\x78\x18\xe2\xf4\xa5\x1c\xdb\xf6\x5c\ +\x64\x5e\xca\x28\xfd\x79\xf5\x06\x0b\x9b\x4d\x5e\xfa\xda\x62\x92\ +\x65\xac\x19\x0c\xe2\xfc\x52\xe4\x16\x84\x24\x13\x9a\x27\x5e\x49\ +\x32\xd2\x77\x0a\xed\xe4\x6e\x32\xbb\x99\xa0\x7c\x08\x14\x1c\x3b\ +\x37\xca\x3d\x4f\x9e\x9c\xf2\x7d\x8d\xf5\xe1\x8c\x02\x91\x5c\x11\ +\x94\xaa\x4f\x92\x4a\xbf\x9f\x7c\xdf\x09\xb4\x3b\xb3\x3b\x74\x2b\ +\x05\xf3\x52\xd1\xcd\x94\x11\xae\x01\x14\xc9\xe6\x25\xa8\x84\xdc\ +\x12\x36\xbe\x45\xa0\x32\x48\xce\xbf\x13\x65\xc8\x55\xf0\xa1\x00\ +\xa0\x70\x24\xb0\x3e\x39\x4b\x25\x93\x61\x92\x6c\x59\x1a\x08\x08\ +\x82\xb8\xca\x38\xb0\x00\xac\x59\x31\x9b\x0e\x1b\x4f\x07\x46\x6d\ +\xd3\xc1\xea\x95\x6d\x52\x04\x96\x03\x80\x52\x8a\xe5\x1d\x26\xbf\ +\xdc\x68\xb0\xf7\x70\x9e\xb1\xd9\xda\x69\xc5\x5d\x8a\x3d\x7c\xb1\ +\x3a\x5f\xa6\x60\x14\x29\x69\x2a\x56\xaf\x6c\xe3\xc3\x77\x34\x04\ +\x6e\x43\x8c\x40\x6f\x1b\xb7\xac\x23\xc1\x77\x16\x27\x3d\xff\x7e\ +\x6b\x9a\x3f\x73\xc7\x4e\x75\x1e\x5a\xa3\xb5\x03\x2a\x31\x69\x63\ +\x4a\x37\x80\x73\xc9\x32\x12\x78\x2b\xfd\x42\x5f\xdf\x6b\xb4\x76\ +\x27\x45\x80\xe2\x9d\x49\x05\x00\x1f\xe3\xf9\xbd\x16\xf4\xfd\x84\ +\x26\x1c\x9d\xb7\x1d\x30\xcc\x40\x3b\x3e\xd0\x00\xf8\x19\xae\x5a\ +\x06\x2d\xde\xbc\xc2\xef\xb9\xf0\x7c\x95\x52\x98\xa6\xe9\xf9\x77\ +\x29\x02\xa7\x11\x01\x8a\xb7\x68\xf5\x7a\xbd\x78\x9b\xd7\x89\xdf\ +\x67\x6a\xf4\x72\x21\x98\x4e\x44\x13\x00\xca\x34\x58\xb9\x3b\x78\ +\x7b\x39\xa3\x56\xc6\x2f\x6c\xed\x41\x6f\xfd\x81\x03\x60\x3a\x2d\ +\x48\x05\xe8\xda\x2d\x5d\xa2\xe0\xab\xce\xfe\x47\x11\x07\xa0\x94\ +\x71\x55\xc0\x2e\xda\x2b\x15\xb5\xc2\xe2\xfc\x50\x00\xe0\x05\x41\ +\xd0\x8c\x1b\xd6\x2d\xe4\x43\x33\x4b\xe2\x65\xe0\xa0\x44\x84\xb0\ +\x6e\x79\x1b\xfa\x69\x32\xd9\x6b\x38\x42\x00\x0c\x0f\x0f\x73\xe4\ +\xc8\x91\x58\x18\xbe\xab\xab\x4b\x00\x28\xd6\xa9\x53\xa7\xd8\xb2\ +\x65\x8b\x34\xcb\x2a\x4a\xe6\x02\x04\x00\x91\x00\x20\x12\x00\x44\ +\x02\x80\x48\x00\x10\x09\x00\x22\x01\xa0\x82\x92\x61\xbb\x80\xd9\ +\xab\xda\x00\x0c\x02\xb6\xf8\xb5\x6c\x5d\x8b\x14\x00\x96\x65\xb9\ +\xc0\x39\xf1\x6b\x59\x72\xaa\x61\xab\x5a\xd4\x00\xfb\xc5\xb7\x65\ +\xe9\xef\x96\x65\xf5\x47\x11\x80\x1d\xe3\x74\x8b\xfc\xb5\x3d\x92\ +\xbd\x00\xcb\xb2\x8e\x55\xeb\xcb\x85\x58\x7f\x01\x5e\x8d\x72\x37\ +\xf0\xeb\xc0\xeb\xe2\xe7\x92\x3a\x0e\xac\xb3\x2c\xab\x2a\x3d\xa6\ +\x44\x2d\xbe\x61\x36\x9b\x75\xd3\xe9\xf4\x2b\x40\x03\xb0\xa2\x56\ +\xe7\x11\xc0\x2e\xdf\x5e\xe0\xf3\x96\x65\x5d\xad\xd6\x41\x6b\xbe\ +\x9e\x2a\x93\xc9\x2c\x01\x36\x00\xab\x80\xf7\x01\x4d\x31\x72\xfa\ +\x30\xd0\x0d\x1c\x00\x7e\x6d\x59\xd6\x9b\xd2\x0e\x44\x22\x91\x48\ +\x24\x12\x89\x44\x22\x91\x48\x24\x12\x89\x44\x15\xd1\xff\x00\x56\ +\x1c\x01\xcd\xc9\x01\xf3\xd5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x05\xe0\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ +\xbb\x7f\x00\x00\x05\x95\x49\x44\x41\x54\x78\xda\xed\x5d\xc1\x6a\ +\x25\x45\x14\x3d\xd5\x69\xd1\x30\x82\x82\x0b\xa1\x47\x88\x9b\x2c\ +\x14\x5c\x48\xe1\x07\x08\x32\x2b\x41\x44\xc1\x9d\x0b\xc1\x45\xb2\ +\x57\xf0\x0f\xfc\x00\xc1\xac\xdd\x89\x2e\x5c\xa9\x2b\x71\x40\x44\ +\x1c\x0a\x92\x85\x0c\x48\x22\x44\x85\xde\x08\x2a\x12\x83\x3a\xe9\ +\x76\x31\x79\x43\xa7\xd2\xd5\xaf\xfa\xbd\x7e\xdd\xf7\x56\x9f\x03\ +\x43\x42\x32\x79\xdd\xef\x9e\x53\xa7\xee\xbd\x5d\xaf\x0a\x20\x08\ +\x82\x20\x08\x82\x20\x08\x82\x20\x08\x82\x20\x08\x22\x7d\x18\x09\ +\x37\x61\xad\xbd\x09\xe0\x16\x80\x1d\x00\x8f\xcd\x28\xfe\x7f\x03\ +\xf8\x15\xc0\xd7\xce\xb9\xbb\xb3\x13\x80\xb5\xf6\x19\x00\xef\x03\ +\x78\x19\x40\x36\xf3\xc1\xf8\x3d\x80\x77\x9d\x73\xb7\xc7\xbc\xe8\ +\xd6\x84\xe4\xbf\x06\xe0\x73\x00\xcf\x49\x71\xa2\x89\x71\x13\xc0\ +\x9b\x45\x51\xfc\x5b\x96\xe5\x37\x49\x0b\xc0\x5a\xfb\x22\x80\xcf\ +\x00\x3c\x42\xde\xaf\x39\xf2\x4b\x45\x51\xfc\x56\x96\xe5\x9d\x24\ +\xa7\x00\x6b\xed\x36\x80\x1f\x01\x3c\x45\xbe\x83\xf8\x07\xc0\xb3\ +\xce\xb9\x9f\x36\x7d\xa1\x29\xe6\xdd\xb7\x49\xfe\x52\x3c\x0c\xe0\ +\xbd\x31\x2e\x34\x85\x00\x5e\x27\xbf\x51\x78\xd5\x5a\xbb\x95\xa2\ +\x00\x9e\x27\xb7\x51\x78\xe2\xb2\x2c\x4e\x47\x00\xd6\xda\x1b\x00\ +\x1e\x25\xb7\xd1\x78\x32\x35\x07\x78\x88\x9c\xca\x8a\x57\xc6\x18\ +\xcf\x1b\xb9\xa4\x9b\xd9\xde\xde\xc6\xce\x4e\xdc\xb4\x67\xcc\xfd\ +\x0a\x36\xcb\x32\x18\x63\x50\xd7\xf5\x95\x7f\xd2\x71\x7e\x7e\x8e\ +\xd3\xd3\x53\x0a\xa0\x89\xdd\xdd\x5d\x1c\x1c\x1c\xcc\x62\xe4\x1d\ +\x1d\x1d\x61\x6f\x6f\x8f\x02\x58\x07\x0b\x17\xf0\xa1\xc1\x01\x38\ +\x05\x0c\x40\x7c\x53\x00\x8b\x69\xa0\xf9\x3d\x85\x90\xa0\x00\x8c\ +\x31\x57\x04\xe0\x8b\xa0\xe9\x00\x14\x42\x62\x02\x58\x10\xee\x8b\ +\x20\xf4\x7f\x9b\xc4\x53\x04\x89\x39\x40\x88\xf8\xb6\xa9\xa1\xaa\ +\x2a\x8a\x40\xbb\x00\xda\x46\x7f\x28\x19\x6c\x4e\x01\x8b\x52\xb1\ +\xae\x6b\x54\x55\x45\x11\x78\xc8\x52\x23\xbf\xed\x67\x8b\xbf\xcb\ +\xb2\xec\x41\xdf\x80\x50\xe2\x00\x7d\xc9\xef\x4a\x08\x59\x2e\x2a\ +\x13\x80\x4f\xfe\x2a\x23\xf7\x41\x32\x58\x5d\xc0\x64\x5b\xec\x1b\ +\x68\x11\xc0\x32\xf2\xfb\x88\xc1\x18\x83\xfa\x92\xfc\xc5\x6b\xb5\ +\xb5\x8d\xe7\x28\x84\x5c\x1a\xe9\x5d\x75\xbf\x3f\x6a\x7b\x8b\xa0\ +\x41\x70\x5f\x21\xa4\xda\x75\x14\x25\x80\x2c\xcb\xa2\x4a\xbd\x55\ +\x93\x38\x5f\x04\xcd\xd7\x6a\x8a\xa1\x99\x3f\xf4\xb9\x96\x46\x31\ +\x88\x76\x80\x50\xa7\x6f\xdd\x6b\x84\x44\xe0\x27\x8f\x21\x47\xf2\ +\x9d\x44\xf3\x34\x22\xd2\x01\x86\x22\x3b\x46\x68\x3e\x99\x31\x42\ +\xf0\x2b\x0c\xcd\x4e\x90\x4b\x1a\xfd\xcd\x29\x60\x28\xdb\x8f\x15\ +\x43\x88\xb4\x98\x52\xb3\xcd\x55\xb4\x88\x40\x5c\x15\xd0\x95\x6c\ +\x8d\xe1\x0a\xab\x12\xa7\xb5\xcf\x20\x46\x00\xcb\x82\xd5\x45\xfe\ +\x90\xe2\x58\x27\xe9\xd3\x28\x02\x51\xad\xe0\xae\x5e\xfd\xb2\x40\ +\x4e\x11\xe8\x50\x7f\x42\x53\xab\x59\x9c\x00\x34\x66\xd2\x5d\xfd\ +\x0b\xe9\x62\x10\x29\x80\x95\x45\x30\xa1\x70\xfc\x0a\x42\x8b\x13\ +\x88\x12\xc0\x2a\xa4\x5f\xf9\x1b\x81\x01\xa7\x03\xac\x40\x66\xf3\ +\x6b\x6c\x93\x45\x42\xa0\x43\x2e\x20\x59\x04\x62\xd7\x03\xc4\x26\ +\x83\x92\x83\xbb\x6c\xd9\x1a\x05\x10\x21\x02\xed\x09\xa1\x74\x17\ +\x50\xe1\x00\x9a\x45\x20\xdd\x05\x92\x70\x00\xe9\x89\x96\x64\x11\ +\xa8\x58\x13\xa8\x71\xe1\xc6\x3a\x0b\x58\x28\x00\xc5\x39\x80\x36\ +\x87\xca\xb5\x38\x80\x1f\xcc\xae\xc5\x9e\x44\x42\x53\x40\x97\x0b\ +\x68\x21\x5f\xb2\x8b\xa9\xd9\x20\x82\x9f\xf1\x63\x12\xa8\xaa\x24\ +\xd4\xb2\x40\x44\xd5\x16\x31\x5a\x57\xdd\xd0\x01\x06\x74\x01\x8d\ +\xa4\x4b\x76\x2f\x95\x9b\x44\x49\x17\x41\x5b\xcf\x82\x53\xc0\x86\ +\x12\x41\x89\x81\xe5\x8a\xa0\x99\x43\x53\xae\x42\x01\x30\x09\xd4\ +\x0d\x76\x02\x67\x24\x00\x92\x4d\x07\x50\xb7\xec\x9a\x02\x20\x28\ +\x80\x21\x47\xfe\xd0\x9f\x16\xa6\x00\x14\x0b\x80\x98\x89\x00\x48\ +\xfe\x8c\x05\x10\x5a\x5f\xcf\xb5\x00\x33\x10\x80\xf6\x91\xaf\xe1\ +\xc1\x95\x2a\x07\xd0\x0a\xc9\x4f\x31\x33\xe9\xc4\xb7\xd9\xbd\x64\ +\x31\x68\x5b\xb3\xa0\xc2\x01\xb4\x90\xcf\x29\x60\xc3\xe4\x6b\x9c\ +\xff\xa5\x2f\x62\xc9\x48\x3e\xcb\x40\x71\xa4\x87\xca\x3d\xe9\xa2\ +\xd0\xb8\x5c\x2d\x63\x00\x37\x7b\xef\xdc\x1f\x60\x26\xb6\xaf\x75\ +\xb3\x28\xf1\x0e\xa0\x7d\x37\x6f\x3a\xc0\x8c\xa6\x82\xae\x92\x95\ +\x9f\x0e\x5e\x41\x04\xcb\x1c\x81\x0e\x90\x78\x1f\x40\x43\x1d\x1d\ +\x9b\xc7\xd0\x01\x56\x24\x5e\xbb\x0b\x48\x9f\x06\x54\xee\x10\x22\ +\x5d\x04\x9a\xda\xd7\xb9\x06\xf2\x63\x8f\x6b\x31\xf7\xa3\xcd\x24\ +\x36\x25\x07\xe8\x3d\x7a\x04\x04\x5f\x53\x3f\x43\xf5\xf1\xf1\xb1\ +\x22\xa8\x47\x26\x85\x27\x86\x0c\x94\x30\xc5\x6c\xb7\x7a\xed\xe7\ +\x8b\xe0\x37\x5f\x6b\x82\xf7\xc1\x13\x43\x06\x4a\x9e\x7a\x9f\x19\ +\xc8\x1c\x40\x6f\x0e\xd0\x7c\x1a\xa8\xad\x9e\xbe\x7e\x8f\x5c\x0f\ +\x30\x48\xf2\x24\xae\x8e\x8e\x21\xb3\xae\x81\xba\x52\xe1\x0c\xfc\ +\x68\x58\x7f\x95\x46\xf4\x2c\xaa\x2b\x42\xe1\xa2\xd0\x35\xe6\x4e\ +\x4d\x4f\x03\x17\x44\xff\x77\xef\x02\xc8\x72\x15\x6d\x6c\xb1\x07\ +\x46\x4c\x7d\x28\x63\xdb\xe1\x15\xa1\xaf\xcd\xfb\x35\xc6\x20\xcf\ +\xf3\xe0\xef\x59\x05\xf4\x70\x80\xd0\xa9\x9e\x6d\x47\xb7\xfa\xbf\ +\x1f\xa2\x14\x8b\x15\x81\xe6\x6a\x40\xac\x00\x62\x4f\xf0\x0e\x91\ +\x31\x55\xf0\xfd\x4d\x2d\xa5\x4f\x03\xa2\x3b\x81\xd2\xcf\x08\x0a\ +\x09\x57\xd3\xce\xa6\x2a\x1e\x06\xf9\xd6\x2e\xdd\xb5\x34\x6d\x6b\ +\xab\x6e\xbb\xf8\xa1\xe6\xf7\xb1\xa7\x2f\x0a\x60\x43\x01\x96\xe2\ +\x08\x5a\xd7\x31\xaa\x7f\x1a\xc8\x0d\xa3\x13\x12\xc0\xd9\xd9\x19\ +\x0e\x0f\x0f\x67\x11\xf8\xe3\xe3\x63\x0a\xc0\xc7\xc9\xc9\x09\xf6\ +\xf7\xf7\x39\x2c\x47\x04\x9f\x05\x50\x00\x04\x05\x40\x50\x00\x04\ +\x05\x40\x50\x00\x04\x05\x40\x50\x00\x1b\x04\xdb\x76\xc2\xe2\x35\ +\xb6\x00\xfe\x02\x70\x8f\xbc\x46\xe3\x8f\xa4\x04\xe0\x9c\xab\x00\ +\xfc\x4c\x5e\xa3\x70\x31\x46\xac\xa6\xc8\x01\xbe\x20\xb7\x51\xf8\ +\xd6\x39\xf7\x67\x8a\x02\xf8\xf0\x52\xdd\x44\x37\x3e\x48\xb2\x0a\ +\x70\xce\xfd\x30\xd6\x9b\x53\x8c\xaf\x00\x7c\x92\x72\x19\xf8\x0e\ +\x80\x2f\xc9\x73\x2b\xee\x02\x78\xc3\x39\x37\x4a\xc5\xb4\x35\xc5\ +\x3b\x2c\xcb\xb2\x2a\x8a\xe2\x63\x00\x37\x00\xbc\x30\xd5\x7d\x08\ +\x2c\xf9\x3e\x05\xf0\x8a\x73\xee\xf7\xb1\x2e\x3a\xf9\x7a\x2a\x6b\ +\xed\x2e\x80\xb7\x00\xdc\x02\xf0\x34\x80\xc7\x67\x44\xfa\x19\x80\ +\x5f\x00\xdc\x06\xf0\x91\x73\xee\x3b\x8e\x03\x82\x20\x08\x82\x20\ +\x08\x82\x20\x08\x82\x20\x08\x62\x23\xf8\x1f\x8e\x96\x1e\x7d\x49\ +\xfc\xce\x76\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x29\xf7\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\ +\x01\xd2\xdd\x7e\xfc\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\ +\x9d\x79\x9c\x24\x47\x75\xe7\xbf\x11\x91\x99\x55\x5d\xd5\xe7\xdc\ +\x87\x46\xa3\x19\xcd\xe8\x40\x02\xdd\xe8\xc0\x32\x92\x41\x1c\x1f\ +\x8b\x43\x5c\xf6\x62\x63\x8c\x17\x2f\xeb\x63\x01\x7b\xcd\x61\xf3\ +\xd1\xda\xfb\x41\xd8\x60\xbc\xbb\x06\x76\x97\xcf\xae\x77\xbd\xc6\ +\x80\x31\x06\x63\x71\x63\x04\x92\x40\x42\x12\x48\x42\x1a\x24\x21\ +\xa4\xd1\x68\xa4\x91\x66\xba\xe7\xea\xbb\xae\xcc\x8c\x78\xfb\x47\ +\x64\x56\x55\xf7\x74\xcf\x74\xcf\x64\xf3\x19\x49\xfd\xeb\x4f\x74\ +\x55\x65\x65\x45\x66\x46\xbc\x78\xef\xc5\x7b\x2f\x5e\x28\x11\xe1\ +\x44\x91\x4a\x4c\x4c\x4d\xdd\x53\xff\xfb\xb3\x3f\x37\xf9\xee\xeb\ +\x7a\xa3\xf0\xa2\x54\x92\x6d\xda\x72\x8a\xb1\x51\x8f\x92\xa0\xa4\ +\x44\x2b\xc0\x01\xf9\x05\x45\x40\x40\xfc\x31\x85\x74\xbe\x13\xba\ +\xce\xcd\x4a\xfb\x46\x9d\x74\x3e\xe7\xbf\xa3\x5d\xcf\x91\xbf\xe9\ +\xae\xd7\x5f\x53\xe1\x3a\xb7\x30\xe3\x5c\x47\xfb\x42\xd2\x7d\x4f\ +\x59\xdd\xc2\xac\x6b\xb8\xae\xfb\x6a\xdf\x5f\xfb\xd9\x14\xa2\x3a\ +\x27\xcc\x71\x7f\x73\x1c\x57\x47\x7c\x3f\xe3\x7a\xfe\x04\x31\xbd\ +\x6a\xe8\xc1\x0f\xae\x1e\xfd\x93\x85\xf4\xcf\xd1\x10\x9c\xd8\xcf\ +\x05\x50\xfc\xac\xf9\xad\xca\xff\x18\x7d\xcd\x9f\x06\x81\x7e\x47\ +\x18\x30\x50\x1a\x5f\x29\x43\x8d\x2d\xaa\xa7\xb5\x9e\xde\xfa\x69\ +\x44\xc9\x20\x9a\x08\x65\x03\x8d\x92\xec\xc9\x1c\x92\xfd\x1e\x1c\ +\xa8\xac\xd9\xb3\xbe\x11\x35\xb3\x1d\x3a\x9f\x9d\x3f\x92\x7f\x56\ +\xf9\x6f\xa4\x7d\x2c\xaf\x49\xf2\x6b\x28\x7f\x3d\x10\xdf\x33\x3a\ +\xeb\xff\xbc\xae\xec\x3b\xd7\x3e\x2f\xfb\x2e\xaf\x4f\x1c\x4a\x81\ +\x28\x50\x4a\xa1\x95\x6a\x5f\xa3\x73\xdf\xb3\xee\x37\xff\x4e\x64\ +\xe6\xfd\x22\x88\xea\x6e\x3f\x10\xe5\x3a\x9f\xb3\x7b\x10\xe9\xfe\ +\x4d\x06\xe5\x50\x84\x32\x5a\xdd\xa1\x64\x70\x74\xed\xc2\xfb\x69\ +\x7e\x9c\x20\x01\x28\x05\xc8\xa7\x9a\x6f\x7b\x55\x4f\x1f\xef\xed\ +\xaf\xad\x73\x5b\xf7\xff\x1b\x77\xda\xf8\xab\xd5\x90\xdb\x26\x41\ +\x59\x94\xea\x01\xaa\x19\xdd\xce\xfe\xb9\x74\x1d\xeb\x1e\xa3\x79\ +\xed\x5d\xff\xdb\x67\xce\xc9\xb0\xda\x2d\x8a\xb8\xae\x0e\x10\x45\ +\xa7\x51\x55\xfe\xd2\x75\xf7\x0a\x11\x41\x29\xdf\x8b\xaa\x7d\x82\ +\x74\x5e\xfd\x41\xac\x4d\x49\x6d\x4a\x92\xb6\x48\x5c\x03\xad\x4c\ +\x5e\xe3\x8c\xfa\x94\xd2\x58\x6b\x71\xce\xcd\xf8\x6e\xf6\x7d\xcf\ +\xc7\x77\xf3\x1a\x65\x56\x7b\x68\xa5\x41\x3b\x5c\x3d\x92\xfb\x56\ +\xfc\x57\x75\x60\xf0\xcb\xe9\x3c\x55\x2c\x0a\x27\x48\x00\x19\x71\ +\xff\x74\xcd\x3b\xa6\x5a\x09\x43\xe1\xf3\x54\xc9\x6c\x50\x13\x9b\ +\x7f\x40\xa3\x72\x87\x6f\x24\xa5\x8e\x68\xa8\x19\x15\xcc\xa6\x80\ +\x13\x3d\x6f\xd6\x0f\x44\x04\x67\xf3\x57\xc1\x59\x87\xb3\xe0\x9c\ +\xe0\x52\x41\x9c\xc3\xa6\xa2\xc4\x81\x73\x0e\x67\x05\x9b\x0a\x22\ +\x82\x58\xb0\xa9\x43\x89\xa2\xb7\x32\xc0\x8a\xc1\x35\x9c\x32\x74\ +\x26\x9b\xa2\x0b\xa9\x25\x63\x88\xb2\x80\xf2\xbf\x73\x8e\xa9\xa9\ +\x69\x6a\xd3\xd3\x0c\x0d\xf4\x53\xa9\x54\x50\x6a\xfe\xe7\x5e\x28\ +\x04\x7f\x2f\x71\x2b\x26\x4e\x9b\x8c\x8d\x34\xb0\xba\x01\x1c\xa5\ +\x51\x17\x81\x13\x25\x00\x00\xc6\x1f\x29\x9f\xd1\x18\xdf\xc8\xa1\ +\xd3\x0e\x53\x3f\xe5\x6f\x58\x69\xaa\x94\x82\x00\xe6\x1a\xf5\xf3\ +\x60\xe1\x4f\xb3\xd8\xe7\x16\x9c\x13\x6c\x2c\xa4\x56\xb0\x56\x48\ +\x13\x87\x8d\x2d\x69\x2c\xd8\x24\xfb\x9c\xb8\xf6\x67\x5f\x1c\x49\ +\xec\xb0\xb1\xc3\xa5\x10\xa8\x88\x48\x55\xe9\xad\xf6\xf3\xc2\xcb\ +\x2e\xe1\xea\xf5\xff\x9e\x15\x6e\x3b\xb5\x64\x8c\x89\xc9\x71\x2a\ +\x3d\x15\x56\x0e\x95\x19\x3b\x3c\xce\x17\xff\xe9\x4b\x88\x08\xd5\ +\x6a\xd5\xdf\x81\xe7\x32\xed\xd7\xf9\x8e\x75\x1f\xcf\x61\xad\x25\ +\x0c\x43\x2e\xbf\xfc\x72\x56\xac\x1c\x44\xb9\x16\xa0\x17\xd9\x06\ +\xf3\xa3\x10\x02\xe8\x2b\x0d\xe9\xe9\xf0\x49\x44\x97\x88\xec\x00\ +\x81\x2b\x11\xba\xa0\x20\x1a\x3d\x4e\xe4\x94\xa7\x7c\x91\x40\xb0\ +\xe2\x4b\x8a\x60\x71\xa4\xca\x61\xb5\x90\x6a\xc1\x29\x47\xaa\xbb\ +\x3e\x6b\x21\xd5\x8e\xd4\x38\x5c\x02\x49\xcb\x52\x6f\xd6\x19\x1f\ +\x1f\x67\xe4\x5b\x4f\xf0\x93\xcb\xbe\xce\xd5\xa7\xbf\x85\x73\xd3\ +\xdf\x60\xe2\x70\x8d\x09\x3d\xc1\xa6\x53\x4f\xe1\xec\xb3\xce\x66\ +\xd7\xae\x5d\xd4\xeb\x75\x2e\xb9\xe4\x12\xd6\xae\x5d\x4b\x10\x04\ +\x38\xe7\x30\xc6\xf8\x5b\xeb\xea\x64\xa5\x54\x5b\x5c\x38\xe7\xd0\ +\x5a\x7b\xee\x93\x71\xb0\x72\xb9\xc4\xee\xdd\xbb\x79\xe0\x81\x07\ +\x79\xc9\x4b\xaf\xc6\xb9\x13\x57\xda\xbb\x51\x08\x01\x94\xe8\x0b\ +\x71\x0a\xe5\x3c\x45\x3b\x71\x38\xdc\xb1\xb8\xf5\xcf\x07\xf9\x3d\ +\x68\x50\x81\xa0\x94\xa0\x33\xe5\x50\x7b\x06\x8b\xce\x14\x7c\x8d\ +\xef\x1c\x9d\x4d\x0e\xb4\x80\x16\x10\x71\x04\x02\xa8\x10\x13\x04\ +\xa4\x4d\xc7\xae\xef\xc5\x4c\x96\xfe\x33\xf7\x6f\xfc\x14\xcf\x0b\ +\xff\x80\xd2\xf0\x76\xd6\xaf\xdb\x88\x0a\x52\xae\xbd\xf6\x5a\x46\ +\x46\x46\xd8\xb1\x63\x07\x37\xde\x78\x23\x67\x9e\x79\x26\x36\x4d\ +\xb9\xec\xb2\xcb\xb8\xfb\xde\x7b\xa9\x4d\x4f\xf3\xca\x57\xbe\x92\ +\xbd\x7b\xf7\x12\x86\x01\x07\x0e\x1c\x64\xf7\xee\xc7\x39\xeb\xac\ +\xb3\x59\xbf\x7e\x3d\xdf\xb9\xe9\x26\x56\xaf\x5e\x4d\x18\x85\xbc\ +\xe1\x0d\x6f\xa4\x56\x4b\x48\xd3\xfb\xdb\xfa\x48\x91\x28\x84\x00\ +\xfc\x9d\xcd\x9e\xe1\x9c\x0c\xbd\x3f\x13\xca\xe0\x35\xf8\x6c\x72\ +\xe6\x5f\xbd\xba\xa0\x44\xb2\x49\xa1\xca\x3e\x83\x84\x99\x32\x98\ +\x9d\x67\xb2\x73\x82\x32\xb8\xe9\x12\xad\x9f\x6e\x60\x64\xd5\xe3\ +\xec\xe9\xff\x3d\x4e\x3b\xf0\x66\x86\x46\xfe\x03\xa7\x9f\x76\x06\ +\xad\x56\x8b\x75\xeb\xd6\x11\x45\x11\x7b\xf6\xec\xe1\xe0\xc1\x83\ +\x5c\x76\xc5\x8b\x38\xf5\xb4\x2d\x4c\x4c\x4d\xd1\x68\xd4\x19\x1a\ +\x1a\x42\x6b\x45\x9a\x5a\x86\x86\x56\xb2\x6a\xd5\x2a\x2e\xb8\xe0\ +\x7c\xd2\x34\xe5\x9a\x57\xbe\x02\x6b\x15\x0f\xec\x78\x90\xbb\xef\ +\xfe\x01\x07\x86\x1f\x23\x0c\x4b\x88\xb8\x63\x3d\xe2\xa2\x51\x10\ +\x01\x64\x5d\x2e\x33\xcb\xc9\x08\xa5\x40\x07\x9e\xcd\x6a\x54\x67\ +\xc4\xe7\xa3\x9d\x2e\x0e\x90\x29\x60\xc6\xf3\x06\x04\x47\x00\xa4\ +\x28\xc2\x5e\xc7\xe4\xe3\x25\xaa\x67\xf4\xd3\x73\xca\x24\xf7\x96\ +\x3f\x4b\xdf\xf4\x2a\xce\x35\xff\x8d\xa6\xda\x47\x12\x27\x0c\x0d\ +\x0d\xf1\x5b\xbf\xf5\x5b\xdc\x71\xfb\x6d\xdc\xf3\xdd\x6f\x32\xfa\ +\xf4\x1e\xd6\x9d\xba\x99\xad\x5b\xb6\x11\x04\x01\xfb\xf6\x0d\x13\ +\x05\x01\xe2\x12\x9c\x13\xbe\xf9\xcd\x9b\x19\x1f\x1f\x23\x68\x4e\ +\x93\x36\x0f\xb2\x69\xeb\x34\x8c\xed\xc4\x4d\x4c\x83\x7e\xdb\x92\ +\x34\x6a\x21\x04\x20\x33\xfe\x49\x87\x1a\x4e\x52\x68\xa5\x50\x81\ +\x06\x71\xf9\x34\x1e\x9b\x29\x0b\x2a\x23\x06\x2b\x20\xa1\xf6\x33\ +\x18\x71\x10\xf9\x69\x65\x9a\x11\x84\x02\xa4\x07\xea\x4f\xf4\x50\ +\xde\x30\x4d\xb9\xd7\x32\x3c\xf6\x10\xf5\x78\x02\xa3\x03\x40\x91\ +\x24\x09\xc6\x18\xce\xbf\xf0\x62\x46\x7f\xf6\x13\xfe\xd3\xef\xbe\ +\x83\x0d\x51\x93\x8d\xaf\xbc\x8a\x6b\x5e\xf1\x6b\x7c\xf6\xb3\xef\ +\x21\xea\x1b\x62\xba\xd1\xa4\x3f\x74\x4c\x8c\x36\xf9\xe9\xcf\x46\ +\x99\xde\xdb\x22\x4c\xe1\xac\x8b\x56\xf1\xd2\x97\x9c\xc6\xa9\x9b\ +\x4e\x41\xf7\x2f\x4d\x5b\x14\xcb\x01\x66\x95\x93\x17\x5e\xe0\x9b\ +\x40\x03\x0e\x93\x1d\x12\xf1\xe2\xc1\x74\xce\xf2\xac\x1f\x05\xb1\ +\x82\x08\x32\x4d\x01\x44\x13\x94\x1c\xcd\xe1\x0a\x2e\x85\x72\x15\ +\xa6\x46\x9f\x66\xdf\xe4\xa3\x9c\x32\x74\x16\x71\xd2\xc0\x18\x83\ +\xb5\x96\x9e\x4a\x0f\xbf\xfa\xee\xf7\x12\x0e\xae\xe6\xa3\x1f\xfc\ +\x43\xd2\x27\x6e\xe3\xff\xfe\xdd\xd3\x94\x0e\xed\xa7\xef\x8e\xfd\ +\x9c\xa3\xe1\xf6\x5e\xc3\xe0\x45\x55\xae\xfa\xc5\x7e\x9c\x04\x8c\ +\x8f\x59\x9e\xde\x5b\xe3\x23\x9f\xbc\x9f\x0d\xeb\xf7\x72\xc3\x0d\ +\x6f\xc1\x16\xac\x00\x42\x81\x04\x00\x3c\x93\x28\x00\x00\x95\x11\ +\x81\x88\xcb\x18\x97\x02\xc9\x3b\xd8\x75\x31\x31\x7f\x5c\x70\xb3\ +\x18\x9c\x42\x5a\x21\xe9\x58\x0f\xa5\x81\x84\x49\xf5\x14\xfb\x6b\ +\xbb\xd8\xb2\xf2\x3c\x62\x55\x07\xc0\x18\x83\x73\x8e\x89\xc9\x29\ +\x5e\xf5\x6b\x6f\xa1\x55\xd6\xfc\xc3\x3f\x7c\x00\x3b\xf2\x33\x36\ +\x3d\x12\x50\x6a\x5a\x76\x0b\x6c\xdc\x6f\x39\x50\x6b\x50\xbf\xa8\ +\xc2\x13\xbb\x6a\xf4\xf6\x6b\x9e\x7f\x6e\x95\xe7\x9d\x1d\x31\x3e\ +\x6e\xb0\x76\x49\x74\xc0\x82\x08\xa0\xcb\x48\x27\x33\x0f\x9d\xfc\ +\x68\x73\x02\xeb\x47\x7a\xde\xc1\x68\x4c\x6e\x96\xce\x0c\xf4\x06\ +\x4f\x2c\x1a\xdf\x70\xa9\x52\x68\x07\xf1\x54\x40\x75\x8d\x61\x44\ +\xd5\x38\xd8\xdc\x4d\xa8\x4b\x5e\x97\xc8\xe6\xf9\x5a\x6b\x9c\x73\ +\x34\x1b\x0d\xde\x70\xdd\x9b\x89\x74\xca\x7b\xff\xf8\x7d\x6c\xad\ +\x37\x39\xa7\x62\xf8\xa1\x53\xbc\x2c\x80\xff\x73\x20\xe6\x07\xdf\ +\x48\x20\xf5\xf6\x93\xc7\x77\x25\x5c\xf3\xd2\x32\xab\x56\x45\xcc\ +\x36\x2c\x16\x85\xe2\x38\xc0\x33\x4b\x06\xcc\x80\xd2\xa0\x8d\xef\ +\x5c\x11\x30\xb9\x22\x1b\x7a\x73\xb0\x64\x33\x03\x2f\x26\xbc\xd8\ +\x50\x19\xc7\x90\x14\xa4\x19\xa0\x95\x82\x12\x4c\xc9\x7e\x52\x97\ +\xa0\xd4\x4c\x63\x4d\x3e\xef\x6f\xc5\x2d\xae\x7d\xd5\xaf\xb3\x7f\ +\xd4\xf2\xe9\xff\xf2\x97\x24\xe3\xa3\x8c\x34\x53\x6e\xc7\x92\x98\ +\x00\x49\x1d\xa1\x06\xa7\xe0\xc0\x81\x98\x3d\x7b\x0c\x5b\xb6\xc8\ +\x92\x8c\x7e\x28\x8c\x03\x08\x73\xfd\x3d\x93\xa0\x0d\x78\xf9\xee\ +\xcd\xbb\x1d\x7f\x80\xf1\x9c\x40\x59\x52\xc8\xf4\x03\x2f\x0e\x8c\ +\xd2\xde\x3f\x97\x04\x08\x10\x95\xa1\x19\x8f\xd1\x4c\xa6\x31\xca\ +\xcc\x69\xe5\x13\x11\xe2\x24\xe6\xdf\xbd\xfd\xdf\xb2\xb6\xaf\x97\ +\xf7\xfe\xde\xef\xf3\xf2\x97\xbd\x94\x47\x46\x0e\x32\x72\xff\x8f\ +\x59\x6f\x34\xc3\xd6\x5f\x47\x29\xc5\xf4\xb4\x5d\x52\x7d\xba\x40\ +\x0e\x90\x0d\x11\x77\x92\xcf\x03\xe7\x81\x00\x4a\x2b\x2f\x0e\xc4\ +\x41\xee\x67\x16\xc9\x9c\x72\x3a\x73\x26\xbb\xcc\xb1\xa5\xfc\xab\ +\x55\x90\x86\xa0\x84\x30\x84\x5a\x63\x94\x66\x5a\xa3\x52\xee\x25\ +\xb5\xa9\x3f\x2b\x6b\x8b\xb6\x19\xd8\x39\xea\xb5\x1a\xd7\xbe\xf6\ +\xb5\xec\xdf\xf5\x18\xdf\xbb\xf5\x7b\x0c\x4c\x8d\xf1\x1b\x15\xcd\ +\xad\x09\x54\x50\x3c\x25\x60\x9d\xd0\xd7\x67\xd0\x7a\xe9\x18\x6a\ +\x21\x46\xe5\x67\x56\x57\x1f\x0d\xe2\xc5\x41\xa0\x31\x46\x61\x42\ +\x85\x89\x14\x3a\xc8\xde\x07\x0a\x13\x6a\xff\xb9\xeb\x98\xb2\x11\ +\x82\x10\x84\x50\x77\x87\x69\xa6\xd3\x68\x0c\x79\xcb\x78\x2f\x61\ +\xc7\xf4\xab\xb4\x9f\x46\xc6\xce\xf1\xf6\x3f\xfe\x13\x7e\xe1\x82\ +\xf3\x19\x79\x6c\x37\x16\xc5\x2b\x22\xc5\x15\x01\xbc\x26\xf4\x6e\ +\xe7\x9f\x3c\xd8\xa0\xd1\x90\x25\xb3\xaa\x17\xc4\x01\xa4\xcb\x16\ +\x70\xd2\x9b\x01\x8e\x09\xa5\x41\x87\x1a\x9d\x6b\xfd\x92\x29\x81\ +\x6d\xe6\xa6\x08\x44\xb0\x28\x24\x04\x27\x21\x38\x08\x23\xa8\xcb\ +\x28\x2d\x5b\x43\x6b\x03\xf6\x48\x77\x71\x5b\x2c\x68\x8d\x38\x47\ +\xdc\x6c\xf2\xdb\x7f\xfe\x17\xb8\xd1\x83\xdc\xf2\xf9\x7f\x26\xed\ +\x09\xd8\x84\xe3\xa2\x40\xb3\xd3\xc1\xfd\x63\xc2\x43\x0f\x37\x79\ +\x53\xb0\x34\x6d\x5a\x1c\x07\xe8\x56\xfc\xe6\x8a\x7d\x79\x86\x15\ +\xa5\xc0\x04\x0a\x1d\xd0\x1e\xe9\x3a\x50\x04\x61\xc6\x05\x72\x4e\ +\x10\x2a\xb4\x51\x48\x1c\x10\x04\xd0\x94\x09\x4f\x00\xca\x6b\x0b\ +\xdd\x23\x7f\xf6\xab\xca\x66\x07\x36\x4d\x79\xf3\x5f\xfc\x25\xe5\ +\x8b\x2f\x66\x67\x23\x65\x52\x45\xfc\x30\xd1\xf4\x2a\x45\x1f\xb0\ +\x77\x5f\x82\xd6\x6a\x49\x58\x6d\x71\x7e\x45\xba\xdb\xef\xd9\xf1\ +\x97\xdb\x09\xbc\x38\x00\x13\x90\x11\xc4\x4c\xa2\x30\x81\x42\x9c\ +\x27\x96\x94\x16\x4e\x52\x94\xd2\x6d\xcd\x7d\x76\x5c\x40\x37\x11\ +\x68\xad\x71\xd6\xd2\x3f\x38\xc4\xf5\x1f\xff\x6b\x5e\xb8\x69\x23\ +\xba\xd9\x64\x44\x09\xfb\x1c\x4c\xe1\x55\xce\xa5\x42\x31\x04\xd0\ +\xa5\xf7\x3d\xdb\x4a\xae\x13\xe8\xa0\x7b\xe4\x6b\x4f\x18\x91\x26\ +\x08\x35\xda\x68\xf2\x88\x23\x4b\x0b\x47\xea\x23\x78\xc8\x3a\x5b\ +\x75\xf4\x80\x19\x1c\xa0\xab\xb4\x5a\x2d\x4e\x3f\xfb\x5c\xde\xf1\ +\xe7\x7f\xce\xae\x6a\x3f\xd6\x29\x86\x72\x93\xe4\x12\xfa\xd5\x0b\ +\x23\x80\x19\xef\x9f\x45\x25\x27\x02\x13\x18\x2f\x02\x82\xce\xc8\ +\xd7\x81\x42\x87\x5e\x0c\x28\xe5\xc5\x86\x25\xc6\x91\xe2\x7b\xdd\ +\x37\x88\x42\xb5\x63\x07\xbd\x7c\x99\xd9\x7c\x79\x9c\x61\xdc\x6a\ +\x70\xf9\xb5\xbf\xcc\x6b\xde\xfb\x67\xd4\xa9\xd2\x97\x09\x7d\xc7\ +\x12\x59\x81\x28\xd4\x14\x9c\xb7\x5a\xb7\x02\xf0\xec\x81\xd2\x10\ +\x04\x0a\xdb\x1d\xb3\x28\xa0\x02\x40\x2b\x2c\x3e\xf4\x2d\xc5\x22\ +\x40\xa8\x35\x81\x8a\xbc\x2e\x20\xf8\x00\x53\xa5\x10\x1c\x22\x0e\ +\xe7\x2c\x4e\xb2\xa0\x55\xc9\x94\x0e\x27\x34\x5a\x29\xbf\xff\xbb\ +\x6f\x65\xec\x91\x07\xb8\xf5\xb3\xff\x8f\x10\x18\x18\x58\xe1\x83\ +\x46\x4e\x5a\x53\x30\x32\x63\xc4\x3c\x03\xcd\x00\x0b\x43\x26\x0e\ +\x1c\x2e\x9b\x11\x28\x4f\x04\x36\x37\x1c\xf9\x58\x81\xfb\x46\x6f\ +\x64\x22\x1e\x46\x29\x4d\x59\xf7\x51\x32\x55\x22\x53\xa1\x1a\x0c\ +\x51\x32\xbd\x04\x3a\x22\x54\x25\x02\x13\x51\x32\x25\x50\x42\x62\ +\x9b\x24\xb4\x48\x6d\x4a\x24\x9a\x3f\xf8\xe0\xf5\x8c\x1c\x7c\x9a\ +\xa9\x87\x1f\xe5\xec\xb3\xce\xa1\xbf\xbf\x0f\x71\xae\x70\x8b\x60\ +\xb1\xce\xa0\xe7\x00\x94\xc9\xbc\x83\x48\xc7\x77\xa0\x7d\xaf\x38\ +\x25\xf4\xae\x86\x7b\x26\xfe\x86\xbb\xa6\xfe\x06\xb1\x20\x16\x1f\ +\x84\x9a\x82\x8b\x61\x80\xb5\xac\x2d\x9f\xc1\x9a\xd2\x36\xd6\x96\ +\xb7\xb1\xba\xb2\x8d\xfe\x60\x0d\x2b\xcb\xa7\xb0\xb2\xba\x09\x17\ +\xa4\xd4\x5a\x13\x0c\x0c\x0e\xf0\xbb\x7f\xfc\x7e\x3e\xff\x99\x8f\ +\xb0\x7e\x6d\x2f\xc6\x2c\x8d\x2a\x58\x58\x3c\x80\x1f\xf5\x32\xa3\ +\x3c\x5b\x91\xcf\x0e\xc8\xbc\x88\x4e\x81\x52\x1a\xad\x0c\xe5\x1e\ +\x45\xb9\xd2\x3d\x4c\x05\x51\xd6\xaf\x40\x10\xb0\xe9\x7e\x0e\x35\ +\xf7\xb3\xb7\x71\x1b\xcd\x1a\x34\x9f\x82\x52\x33\x62\x7b\xf9\x45\ +\x9c\x33\xf8\x72\xb6\x0e\x5c\xc2\x96\xa1\x0b\x31\x18\xce\x3b\xef\ +\x42\x5a\xe3\xbf\xc0\xae\x47\xbe\xc5\xee\xdd\xbb\xd9\xb6\x7d\x5b\ +\xe1\xed\x5a\x9c\x08\x78\x8e\xc1\x13\x41\xce\xfa\x0d\x3d\x53\xa7\ +\x7a\xf9\x9e\x66\x21\xe7\x56\xda\xaf\x56\x12\x9c\x24\x38\x95\x82\ +\x71\x04\x5a\x08\x43\xc7\xd0\x0a\x21\x3a\xd5\xd1\xa4\xce\x53\x07\ +\x6f\xe1\xa1\xfd\xb7\xb0\xea\xf0\x7a\xb6\x95\x5e\xcc\x15\x83\x6f\ +\x67\xdb\xba\x0b\x38\xeb\xc2\x5f\xe5\x7b\xb7\xdd\xc1\x9a\x68\xc2\ +\x07\x84\x16\x2c\x03\x8a\xe1\x00\xdd\xa3\xdf\xf9\x07\x97\x25\x08\ +\x5e\x38\xe9\xa0\x40\x05\x0a\x23\x9a\xa8\x35\xe4\x43\xc8\x13\x87\ +\x24\x0e\x89\x05\x97\x08\x49\x2c\xb8\x18\x6c\x2a\xd8\xd4\xe1\x5c\ +\x8a\x75\x0e\x71\x16\x65\x04\x22\x8b\xd3\x2d\x7a\x56\xa5\xac\xde\ +\x9a\x50\x57\xfb\xb9\xe7\xc0\x3f\x72\xf8\xe0\xd3\x5c\x33\xf9\xa7\ +\x6c\xdf\xbc\x9d\x2b\x5f\xf2\x36\x6e\xbf\xfd\x1e\x92\x34\x2d\x5c\ +\x0f\x5c\xd6\x01\x4e\x10\x5a\x81\x04\x0a\x2d\x29\xa2\x05\x8c\xc3\ +\x18\x81\x40\x50\x89\x40\x28\xd8\x50\xd0\xa9\x43\xc7\x42\x9a\x28\ +\x54\xa2\x49\xac\x22\xad\x09\xe9\xa8\xc1\xa6\x11\xf5\x3d\x96\xd1\ +\x07\x2c\x61\x5f\x2f\x1b\x2f\x6a\x31\xb9\xf6\x76\x86\x0f\x7f\x9f\ +\xd5\x63\x1b\xd9\x70\xca\xe9\x5c\x75\x75\x3f\x69\x9a\xa2\x75\xa1\ +\xb6\xbb\x62\xe3\x01\xba\xc5\xd3\xb3\x58\x05\x38\x12\x0a\xb4\x31\ +\x3e\x9e\xc0\x29\xb4\x73\x38\x11\xb4\xf3\x45\x02\x41\x04\x74\x90\ +\x87\xa2\x83\xc9\xd6\x2b\xa8\x40\xd0\x89\x90\xc6\x0a\xdb\x34\xd4\ +\xa7\x0d\x8f\x7f\x39\xa2\x6f\x4b\xc8\x43\x17\xfd\x3d\xcf\xef\xbb\ +\x86\x15\x6e\x2b\x6b\x56\xaf\xa7\x56\x9f\x3e\x59\x75\x00\x98\xdb\ +\x92\xf2\xdc\x81\x8f\x27\xf0\x3a\x81\xca\x8c\x40\x56\x04\xc4\xbb\ +\x8d\x15\x3e\xd0\x34\x3f\x4b\x09\xa8\xd0\x47\x1f\xe4\xcd\xa5\x14\ +\xa8\x6c\x65\xd2\xc4\xa3\x25\xa6\x86\xeb\x7c\xf3\xca\x8f\xf0\xb6\ +\x33\xfe\x96\x30\x88\x48\x6d\xe2\x9d\x49\x45\xde\x77\x21\xb5\x74\ +\x19\xb9\x9e\xcb\x45\x6b\x66\x58\x09\xbd\xbf\xc0\xcf\x18\x74\xa0\ +\xbd\xe3\x28\xb7\x24\x86\x1a\x1d\xd0\x36\x2d\xeb\xa0\xdb\xb7\x00\ +\x61\x55\x70\xb5\x32\x77\xdc\xfc\x63\xee\x7c\xec\x2b\xf4\xf5\x0c\ +\xb2\x14\x61\x36\xc5\x4e\x03\x01\x97\x85\x4f\xb9\xe7\x94\x0c\xe8\ +\x82\x06\x1d\x28\x1c\x82\x12\x8d\x12\x41\x61\xb3\x35\x08\x1a\x9d\ +\x59\xff\x94\x80\xce\x02\x4d\xf3\x68\x64\x41\xd0\xe2\x03\x50\x9d\ +\x38\xc2\xb2\xa6\x5e\xd3\x7c\xf5\xce\xbf\xe5\x85\x67\xbd\x04\xa3\ +\xc2\xc2\x65\x6b\x41\x1a\xc5\x73\xb4\xb3\xe7\x82\x74\xec\x04\x9d\ +\xa0\x11\xdd\x76\x2b\xeb\x50\x63\x02\xd3\x35\xda\xb5\xe7\x12\xa1\ +\xc6\x84\xa6\xe3\x5f\x88\x34\xca\x08\x3d\x95\x88\x91\x89\x27\xf9\ +\xee\x8e\x7f\xa2\x52\xea\xc3\x8a\x2d\xf4\x76\x8b\x5b\x17\xd0\x65\ +\x00\x72\xcf\x72\x43\xd0\x42\xe0\x57\x20\xf9\x08\x39\x1d\xaa\xcc\ +\x6a\x28\x98\xac\x59\x72\x2b\x22\x48\xc6\x01\xfc\x17\x22\xf9\x62\ +\x7a\xaf\x3f\x68\xad\xa9\x35\x5a\x0c\x8f\x3c\x45\x70\x5e\x78\x92\ +\x2a\x81\xf3\xc9\xc5\xe7\x38\x94\x02\x63\xb2\x8e\x76\xca\x27\x94\ +\xc9\x7d\x65\x0e\xdf\xfa\x32\x73\x59\xa5\xc9\x5e\xc5\x29\x24\x00\ +\x51\x3e\xce\xa0\x96\x8c\x53\x6b\x4e\xfa\x60\xd3\x02\xef\xb1\x20\ +\x1d\x20\x0f\x09\xcb\x46\xfe\x32\x07\x68\xc3\xc7\x13\x78\xd1\xad\ +\xa1\xcd\x01\xda\x61\xe6\x5d\xef\xa1\xcd\x14\x3c\x62\x9f\xc4\xa6\ +\x54\x8a\x98\x88\x87\x19\x99\x7e\x8c\xc0\x54\x91\x02\xdd\xc3\xcb\ +\x86\xa0\x9f\x03\xb4\x06\x15\x68\x6c\x96\xf3\x47\xa9\x7c\xc8\x08\ +\x41\x16\x33\xd0\x5d\x52\xa4\x1d\x4b\x40\xa2\x30\x61\x80\x35\xb1\ +\x0f\x36\x55\x7d\x85\xde\x5b\x61\xeb\x02\xfc\xa8\x27\x5b\x5c\xb1\ +\xcc\x01\x8e\x80\xf6\x1c\xc0\xb9\x2e\x4e\x90\x71\x80\x3c\xd8\x14\ +\x3a\x9f\xdb\x1f\xf0\x06\xa4\x20\x50\x18\xa3\xdb\xb6\x84\xa2\xb0\ +\xcc\x01\x7e\x8e\xc8\x1d\x48\x16\x1f\x57\xe8\x09\xc0\xab\x7c\x46\ +\x3a\xcb\x51\xfc\x3f\x95\x05\x11\xe5\x81\xa7\xfa\xa8\xb9\x96\x8e\ +\x17\x4b\xb3\x3a\xb8\x8b\xa2\x97\x31\x13\x39\x11\x88\x80\x8e\x3a\ +\xb3\x01\x09\xfd\xf7\xba\xcd\x19\xb2\x73\xe8\xac\x47\x50\x26\x5b\ +\xb8\x5a\x20\x0a\xcc\x0f\xd0\x15\x0b\xc0\xb2\x08\x38\x2a\x14\x98\ +\x6c\xdd\x88\x04\xd9\x6b\x6e\x4d\xc4\xbf\xcf\xcd\xc5\x86\x2c\x12\ +\xd9\x28\x9f\x95\x60\x59\x04\x3c\x3b\xa0\x8c\x1f\xdd\xed\x95\xc7\ +\x59\xc7\x06\x64\x7e\x82\x2c\xdc\xcc\xa9\x8e\x59\x59\xe9\xe2\xa3\ +\x82\x8a\x21\x80\x3c\x61\x6a\x66\x0f\x5e\x56\x02\x17\x06\xbf\x2a\ +\x39\x6b\xbb\xb0\x23\xff\x73\xb3\x7a\xde\x82\x3a\xf3\x1d\xa8\x62\ +\x3d\xc1\x40\xd1\x11\x41\xcb\x86\xa0\x45\x43\x9b\x2c\x9a\x58\x3a\ +\x0d\x27\xf9\xf4\x20\xf4\xcb\xc8\x4c\x88\x5f\x19\xa4\x3a\xc1\xa7\ +\x45\xa1\x40\x67\x90\x74\x5e\x97\x82\x03\x08\xc5\x86\x45\x77\xdf\ +\xde\x52\xd5\xbb\x90\xba\xb3\xe7\xca\x75\x82\xf6\x9a\xd2\xae\xf4\ +\xc7\xc6\xa8\x36\xa1\x14\x8d\x42\x75\x80\x36\xeb\x2a\x60\x16\x90\ +\x0f\x08\xa5\xf3\xa2\x7c\x6a\xd7\x2c\x86\x7e\xb1\xa1\x71\xb9\x88\ +\x52\x5a\x65\x85\xf6\xbc\xcb\xa7\x85\x95\x6c\x11\xc8\xc2\x2b\x6e\ +\x8b\x3d\x7c\x7d\x4a\x81\x32\xaa\xbd\x26\x24\x67\xe9\xce\x0a\xe2\ +\x38\x3a\x0b\xcf\xbd\x88\x92\xc7\x0a\x64\x2b\x88\x50\xa8\x6c\x49\ +\xda\x12\x30\x80\x93\x33\x28\x34\x8f\x27\x8c\x2a\x06\x97\x0a\xad\ +\x9a\xc3\xa5\x96\x72\x7f\x40\x58\xd6\xa4\x2d\x47\xda\x12\xdf\xd8\ +\xc7\xaa\x4b\x7c\x7d\x61\x49\x13\x94\x34\x49\xd3\x11\x37\x2c\x36\ +\x91\x8c\xc0\xbc\x82\x55\xea\x35\x28\x05\x49\x3d\x4b\x10\x71\x0c\ +\x79\x2b\x4e\xd0\x1a\xc2\x8a\x01\x05\x49\x53\x48\x5b\x16\x9b\xf8\ +\xa0\x50\xb1\xd2\xae\x3b\xaa\x68\xa2\xaa\x21\xae\xd9\xa3\x12\x42\ +\x7b\xf1\x89\xff\x84\x12\x9f\xbd\xcc\x04\xca\xfb\x14\x96\x00\x05\ +\x3b\x83\x64\x66\x39\x0e\x38\x07\x41\xe4\x49\x7d\xcf\x8f\xa7\x19\ +\xfe\x59\x9d\xb1\xa7\x62\x92\xa6\xb0\xfa\xf4\x12\x2b\x36\x95\x58\ +\x7d\x7a\x99\xc1\x0d\x11\x71\xc3\xfa\xd1\x7c\x94\xdb\x52\x0a\x4a\ +\xbd\x86\xc3\x4f\x36\x39\xfc\x64\x8b\xc3\x4f\xb6\x98\x18\x49\x88\ +\xa7\x2d\x69\x22\x84\x65\x4d\xa9\x4f\xb3\x66\x5b\x0f\x6b\xb6\x96\ +\x59\xbd\xad\xec\xb9\x82\x95\x79\xd9\xb7\x38\x08\x4a\x8a\xa4\xe9\ +\x18\xfe\xf1\x34\x13\xfb\x13\x26\xf7\xc7\xd4\xc7\x2c\xcd\x69\x4b\ +\x5c\xf7\xb9\x87\x83\x48\x53\xee\x33\x0c\x6e\x08\x59\xb3\xad\x87\ +\x8d\xcf\xaf\x10\x96\x35\x2e\x99\xbf\xee\x5c\x31\xec\xd6\xa3\x4c\ +\xe8\x39\x80\x3f\xe1\xb8\x9a\x75\x5e\x14\xa7\x03\xb4\xad\xdb\xc7\ +\xaf\x03\x8a\x13\x82\x92\xa6\x76\x28\xe1\xfe\xaf\x8c\xf1\xc8\xad\ +\x13\x4c\x1f\x4e\x31\x91\x5f\x40\xf9\xd8\x1d\x93\x28\xa3\x58\x7f\ +\x56\x0f\x97\xfc\xca\x2a\xb6\x5e\xd6\x4b\x6b\xda\xfa\xc8\xcc\x79\ +\xee\xcc\xc6\xc2\x8e\xef\x4e\xf0\xd0\x4d\xe3\x1c\xd8\xd9\xc4\xa5\ +\xd2\xae\x4f\x29\x7f\x4d\x71\xf0\xd0\xb7\xc6\x19\x58\x17\xb1\xe5\ +\xb2\x5e\x2e\x7a\xc3\x4a\xca\xbd\x66\x4e\x1a\x16\x07\x61\x8f\x62\ +\xec\xa9\x98\x7b\xfe\xf9\x30\x4f\xde\x3d\xcd\xf4\xa1\x14\x6d\x3c\ +\xfb\xd7\x26\x13\x4f\xb9\x78\x71\x3e\xc4\x2b\x28\x69\xb6\xff\x62\ +\x3f\x97\xbd\x79\x15\x95\x15\x06\x71\xf3\xf7\xa4\x32\x82\xce\xd2\ +\xd0\x28\xa5\xd0\xa9\x42\x19\xc5\x12\x24\x0a\x2d\x96\x03\xe4\x29\ +\xd6\xe5\x38\xc2\xc2\x45\xfc\xc8\x9f\x3a\x10\x73\xf3\x7f\xdf\xcf\ +\x9e\xfb\x6a\x94\x2a\x9a\xea\x50\xe0\xd7\x5f\x88\x50\xea\xf1\xb9\ +\x78\xf6\x3f\xda\xe0\xe6\x4f\x0c\x33\x39\xb2\x92\x17\xfc\xf2\x20\ +\x71\x43\x8e\x60\xab\xce\x0a\xa5\x5e\xc3\x8f\xbe\x78\x90\xbb\xff\ +\xf1\x30\xca\x28\xca\x55\x9d\x25\x69\xa0\xa3\xa4\x2a\xdd\xde\x47\ +\xa0\x31\x69\xb9\xff\x4b\xa3\xd4\x0e\xa5\x5c\xf3\x1f\xd7\x1f\xd1\ +\xe0\x22\x5e\x6b\xaf\x1d\x4a\xb8\xe3\xef\x0e\xf0\xd8\xed\x53\xf4\ +\x0c\x18\x7a\x57\x04\x5d\x53\xb8\x23\xb5\xc0\xa8\xe2\xaf\xf9\xf0\ +\xb7\x27\x28\x57\x35\x57\xfc\xc6\xea\x63\x2b\xc9\x4a\x7c\xde\x01\ +\xf1\x3e\x80\xa5\x98\x02\x42\x81\xf9\x01\x64\xd6\xfb\x45\x15\xf1\ +\x0a\x50\x63\xc2\x72\xd3\xc7\x46\xd8\xfb\x93\x3a\xe5\x3e\x03\x1a\ +\xd2\x58\x48\x5a\x8e\x34\x11\xe2\x96\x23\x89\x85\xa8\xc7\xd0\x9c\ +\xb2\xfc\xf0\x73\x87\xd8\xf5\xc3\x69\xa2\xaa\xc6\xda\x0e\x07\x72\ +\x0e\xc2\x8a\x66\xcf\xfd\x75\x1e\xfc\xf6\x24\x2a\x54\x04\x65\x85\ +\x73\x10\xc7\x42\xda\x72\x59\x9c\xbe\x90\xc6\xce\xa7\x8b\x4f\x3d\ +\x11\x95\xfa\x03\x9e\xb8\xb7\xc6\x53\x3b\xea\xa8\xcc\x64\x3b\xf3\ +\x7e\x05\xd1\x8a\x52\x9f\x21\xea\x35\x38\x07\x49\x9c\xd7\x23\xd8\ +\x94\xae\x22\xed\x57\x71\x42\xd4\xab\x79\xec\x8e\x69\x5a\x4d\xef\ +\x11\x3a\x56\xbb\xf8\x04\xd7\x3e\x42\x48\x69\xb5\x24\xf6\xf5\x02\ +\x17\x87\xb6\xad\x41\xc7\xa5\x03\x38\x2b\xfc\xe8\x73\x87\xd8\xf7\ +\x60\x9d\xa8\xa2\xdb\x1b\x3a\x18\xa3\xd8\x70\x4e\x0f\x9b\xce\xaf\ +\x12\x94\x14\x8f\xdc\x32\xc9\xe1\x27\x63\x82\x92\xa6\x39\x6d\xb9\ +\xf7\x8b\xa3\xac\xdc\x1c\x51\x5d\x19\xe2\x52\x9f\x4e\x4d\xac\x10\ +\x44\x01\x7b\xee\x9d\x66\x72\x24\xa6\xb2\x22\x40\xac\x60\x2d\xf4\ +\xae\x0a\x38\xf7\xe5\x03\x6c\x78\x5e\x0f\x4a\x2b\xf6\x3e\x50\xe7\ +\xfe\xaf\x8c\xd1\xaa\x65\xab\x6f\x9d\x27\x84\xb1\xa7\x5a\x6c\xbe\ +\xb0\x82\xed\x8a\xc2\x55\x80\x58\x28\xf5\x28\xae\xfc\xed\x35\x5c\ +\xfc\x2b\x2b\x68\x4e\x3a\x5c\x2a\x3e\xea\x47\xfb\x39\x7b\x50\xd6\ +\xd9\xe6\x14\xf0\xf4\x8e\x3a\x77\x7e\xfa\x60\x57\x93\x64\xf5\xe5\ +\x94\x75\x0c\x28\x25\x68\xc3\x92\x25\x8a\x2a\x50\x07\xf0\xff\xda\ +\x3b\x26\x2d\xf0\x6e\x45\x20\x2c\x29\x76\xde\x36\xc5\xc3\xdf\x9d\ +\x20\x2c\x6b\x4f\x4b\x0e\x82\x48\x73\xf1\x9b\x3c\x9b\xcf\xb9\xc4\ +\xa6\xf3\xaa\x7c\xf3\xc3\x7b\x19\xdf\x97\x50\xaa\x1a\x86\x1f\x6e\ +\xf0\xc8\xcd\x53\xbc\xf0\xd7\x56\xd2\x6c\x39\x6f\x30\xd1\x8a\xb8\ +\xe6\x68\x4e\x5b\x3f\x3d\x03\x92\x44\x18\x58\x17\xf2\xb2\x3f\x5c\ +\xcf\xaa\xad\x65\x3f\x8b\xd0\xb0\x6a\x6b\x09\x65\xe0\xfb\xff\xeb\ +\x20\x3d\x03\x06\xeb\x04\x9d\x29\x8e\xce\xcd\xfd\x1c\xf9\x6a\xee\ +\xea\x50\x48\x75\xe8\xe8\x0f\x77\x60\x57\x93\xa4\x21\x84\x3d\x3e\ +\x1d\xcc\x9a\xed\x3d\x9e\xb3\xcc\x53\xf7\x9c\xc8\xa6\xc2\xed\x30\ +\x81\x02\x51\xa0\x0e\x90\xdd\xda\x62\x67\x01\x22\xc4\x35\xd8\xf1\ +\x95\xd1\xdc\x0b\xda\x56\xce\x2e\x7e\xd3\x4a\xce\x7b\xf5\x00\x69\ +\xd3\xe7\xca\x4b\x5a\xc2\xca\xcd\x21\xa7\x9c\x57\x61\x72\x64\xc2\ +\x37\x88\x12\xc6\xf6\xb5\x68\x4c\xa4\x98\x50\x21\xce\x73\x81\xa4\ +\xe9\x48\x1a\x0e\xa5\x55\xdb\xb9\xb2\xf9\x82\x0a\x6b\xcf\x2c\x53\ +\x1b\x4d\xd0\x81\x4f\xf2\x18\x6a\x8d\x36\x9d\x09\xb6\x52\x7e\x6a\ +\xb8\x76\x7b\xc9\x73\x14\xe6\x1e\xa9\x7e\x7a\x39\xb7\x56\x26\xe2\ +\xb9\xc0\x83\xdf\x18\xe7\xe1\xef\x8c\x13\xf5\x78\xb5\x3e\x8d\x85\ +\x8d\xe7\xf6\x60\x8c\xe7\x78\x0b\x6e\xdc\x25\x34\xab\x17\x93\x24\ +\x2a\x53\x7e\x6c\x36\x17\x70\x0b\x2c\xa9\x75\x44\xbd\x9a\x9f\x7e\ +\x67\x9c\xd1\xa7\x63\x4c\xc6\xea\x5a\x53\x96\xad\x97\xf7\x72\xf6\ +\xcb\xfa\x49\x5a\x0e\xeb\x32\xfa\xd2\x8a\x66\xcd\xb1\xf5\xf2\x5e\ +\x4c\x04\x62\x1d\x26\x54\x4c\xee\x8f\xa9\x8d\xa5\xa8\xc0\x87\xa3\ +\x8b\x12\xd2\xd4\x6f\xfb\xa2\x94\x20\xce\x11\x94\x14\x03\xa7\x44\ +\xc4\x4d\x3f\x6b\x70\x16\xa2\xaa\xe6\xf0\x9e\x16\x3f\xf9\xc6\x58\ +\xa6\xa8\x09\x71\xc3\xb2\xe5\x85\x15\xfa\x37\x04\x58\xe7\x8e\xf1\ +\x0c\x1c\x51\xac\xf3\x41\xa0\xfb\x1f\x69\x70\xef\x17\x47\x09\x4b\ +\xd9\xb6\x14\x4e\xa8\xae\x0c\x58\xff\xbc\x32\xa2\x7d\xe0\xec\x42\ +\xdb\x29\x2f\xd0\x16\x20\x85\xa1\x58\xdd\x72\xae\x16\x99\xa7\x88\ +\x05\xa3\x15\x13\xc3\x09\x3b\x6f\x9f\xc6\xc5\x5e\xeb\xb5\xb1\xd0\ +\xb7\x26\xe4\xec\x97\xf4\x13\x84\x1a\x17\x67\x6c\x2f\xdb\x59\xce\ +\xa5\xc2\x9a\xad\x25\x56\x6f\x2b\x93\xb4\xfc\x68\x9f\x3e\x94\xd2\ +\x9c\xca\x62\xef\xad\x1f\xb1\x2e\x11\x5c\xb6\xaf\x96\x38\x3f\xb7\ +\xee\x5b\x15\xe0\xb2\xa4\xcb\xa5\x8a\x66\xf7\x5d\x35\x6e\xfe\xf8\ +\x7e\x26\xf6\x26\xd9\xb5\x1d\x6b\xb7\x97\xb9\xf8\x4d\x2b\x71\xa9\ +\x5a\xd4\xf3\xf8\xde\xf7\x33\xd2\xb8\x66\xb9\xeb\x33\x87\x69\x4e\ +\x79\x93\x8e\xd6\x8a\xd6\xb4\xe3\x9c\x6b\xfa\x19\xdc\x10\x62\x5b\ +\x19\x57\x59\x4c\xdd\x4b\xc4\x04\x0a\x0c\x08\xe9\x58\x03\xf2\xbf\ +\xa3\xc1\x59\xa1\xdc\x1f\xb0\xe3\x6b\xe3\x1c\xda\xdd\x22\x2c\x79\ +\xca\x8e\x1b\x96\xed\x2f\xee\x63\xed\x59\x65\x6f\xe8\x31\x47\x3e\ +\xbb\x03\xae\xf8\xcd\xd5\xfc\xf0\x33\x87\xd8\xff\x48\x93\xd3\x5f\ +\xd4\xc7\xe0\xc6\x90\x24\xb6\xe4\x7b\x04\x25\x2d\xd7\x36\x14\xb5\ +\x2d\x7e\x25\xcf\x61\x0e\x3f\x1d\xb3\xe3\x2b\x63\x3c\xbd\xa3\x4e\ +\x3c\xed\x08\xcb\xaa\xad\xc7\x96\xfb\x8d\xdf\x29\x4c\xcb\xa2\xf7\ +\xe7\x11\x11\xa2\x92\xe1\x87\x9f\x1b\x63\xf8\xa7\x0d\x82\x92\x6a\ +\x8b\xa3\x95\x9b\x23\xb6\x5c\x56\x45\x69\xda\xca\xea\xc2\x5b\xb6\ +\xd3\xa2\x27\xa7\x0e\x00\x9d\x5e\x5a\x88\x25\x28\xeb\x90\xd6\xb4\ +\xe5\xf0\xee\x16\xb6\x25\x44\x3d\x1a\x1b\x0b\xd5\x95\x21\xa7\x5e\ +\x58\x41\x6b\x95\xa5\x44\x39\xf2\x91\xc5\xc2\xc0\xba\x80\x97\xbc\ +\x6b\x1d\xce\xe6\x86\x1d\xda\x21\xd7\x5a\x43\x73\xd2\xd2\x18\xb7\ +\xde\xaa\xa6\x3c\x47\x78\xf0\xeb\x13\xfc\xe8\xb3\xa3\x8c\xee\x89\ +\x49\x5a\x0e\x63\x14\x61\x45\xb7\x45\xac\x09\x61\xdf\x43\x0d\xfe\ +\xe5\x03\x7b\xb9\xe8\x0d\x2b\x38\xe7\x15\xfd\x5e\x59\x5c\x40\xab\ +\x3b\x2b\x94\xaa\x86\xc7\x6e\x9b\xe2\x67\xdf\x9d\x68\x27\x8e\x12\ +\xe7\x39\xce\xf3\x5f\x3d\xc8\x8a\x4d\x25\xe2\xba\x6b\x2b\x74\x8b\ +\x6a\xdb\x93\x9b\x03\xc8\x8c\xff\xc7\xe2\x00\x82\x5f\x25\x33\x39\ +\x12\x33\x79\x28\x41\x47\x5e\x51\x4b\x62\xc7\xfa\x73\xca\x6c\x3a\ +\xbf\x87\x56\xc3\x6b\xf0\xf3\xd5\x63\xd3\x2c\x5d\x4b\x90\x19\x9e\ +\xb2\xd3\x1c\x82\x0a\x0c\x8d\x89\x84\xe9\xc3\xa9\xd7\xb8\x81\x34\ +\x15\x76\xff\xa8\xe6\xcd\xfc\xd9\xaa\x9d\x34\x16\x5c\xd3\xef\x23\ +\xa8\x03\xd5\xe6\x42\xad\x69\xcb\xdd\xff\x78\x98\xde\x55\x86\xcd\ +\x17\x57\x48\x9a\x47\x1a\x9a\x66\x3c\x8f\x03\x53\x52\x8c\xed\x8b\ +\xb9\xff\xcb\x63\xc4\x75\x21\xec\xf1\xd7\x4d\x5a\x8e\x33\x5e\xdc\ +\xc7\xf6\x2b\x7b\x89\x1b\x9e\x43\x2d\x92\xaf\x20\x33\x28\xa0\x58\ +\x4a\x28\x2c\x41\xc4\x9c\x32\x6d\x3e\x38\x30\x65\xc5\xd4\xfe\x94\ +\xa9\xfd\x49\x5b\x7b\x37\xa1\x62\xe5\xd6\x12\x61\x8f\x26\x1d\xb7\ +\xde\xd9\x73\x94\xe7\x15\xcb\x11\x6c\x51\x65\x0b\x30\xa6\x0f\x59\ +\x9a\x53\x96\xca\x8a\x00\x97\xfa\x4a\x4c\xe4\xe5\x43\x6b\x2a\x25\ +\x2c\x1b\x86\x36\x45\xf4\xf4\x6b\xca\xfd\x86\xfa\xb8\xe5\xe0\xae\ +\x16\x64\x76\xfe\x56\xdd\x72\xdf\xbf\x8c\xb1\xfa\xf4\x12\x51\x45\ +\x23\xf3\x6d\xd8\x20\x7e\x8a\x26\xa9\xf0\xc0\x57\xc7\x39\xf0\x58\ +\x8b\x72\x9f\x69\x9b\x80\x07\x37\x46\x9c\xff\xda\x21\x14\x0a\x67\ +\x65\xf1\xa3\x9f\xee\xf6\x2c\x5e\x08\x14\x44\x00\xb9\xee\x3f\x53\ +\x13\x98\x0f\x2e\x73\xcb\x4e\x8e\x24\xd4\x0f\xa7\x94\x07\x03\x6c\ +\xec\x1d\x33\x2b\x36\x46\xa4\x2d\x97\x8d\x94\x85\xb5\xd4\x8c\xb3\ +\x34\xb4\x6a\x96\xb1\xbd\x31\x3a\xe8\x10\x90\xca\xc4\x00\x4a\x38\ +\xf3\x97\xfa\x39\xf5\xfc\x0a\x03\x1b\x43\x2a\x03\x86\x52\x9f\x26\ +\x6e\x3a\xbe\xff\x3f\x0f\xf1\xe4\xbd\x75\xc2\x1e\x45\x58\xd6\x8c\ +\xee\x89\x79\xf2\xde\x1a\xe7\xbc\x62\x80\xc6\x44\x9a\x4d\x17\x67\ +\x41\x79\xee\xb1\xfb\xae\x1a\x8f\xdc\x32\x49\xa9\xd7\x1b\x81\x44\ +\xbc\x6f\xe0\x82\xd7\x0d\x32\x78\x4a\x48\x6b\xda\xf9\xe8\x9f\x05\ +\xb7\x6a\xe7\xe9\x96\x4e\x03\x58\x82\x0d\x23\x16\x94\x2d\x5e\x29\ +\xd2\x44\xa8\x4f\x58\x9c\xf5\xbf\x13\x2b\x7e\x54\x9e\x1a\x91\x26\ +\xf9\x4a\xa3\xc5\xdf\x43\x6e\x52\x1e\xdf\x9b\x60\x4c\x66\x17\x00\ +\x6c\x2c\x94\xfb\x0d\x97\xbc\x79\x05\x5b\x2e\xad\x52\xaa\x6a\x2f\ +\x02\xac\x90\x34\x85\xca\x40\xc0\xd6\xcb\xab\x0c\x3f\xdc\xc4\x26\ +\x9e\x1b\x35\x26\x2c\x07\x76\xb6\x38\xe3\xc5\x5e\x90\xcf\xf5\x4c\ +\x3a\x50\xd4\x0e\xa6\xdc\xf3\xf9\x51\x84\x8e\xc3\xc6\x26\xc2\xb9\ +\x2f\xef\x67\xeb\xe5\xbd\xb4\xa6\xbd\xdc\x3f\xde\xe9\x7c\xb7\x15\ +\xb1\x68\x14\x6a\x09\xec\x8e\x08\x3e\x9a\xb3\x43\x24\x4b\x9d\x96\ +\xf9\xcc\xf3\x63\x26\x54\x54\x57\xf9\x18\x00\x8e\xc3\xf4\x2d\x99\ +\x02\xd8\xaa\x59\x26\x47\x92\x36\x07\x70\x16\xc2\x1e\xcd\x8b\xde\ +\xbe\x8a\x53\x2f\xee\x21\x6d\x0a\x8d\x09\xdb\x99\x04\x2b\x88\x9b\ +\x8e\xca\x90\xa1\x54\xd5\xd4\x0e\xa7\x10\x28\xb4\xf6\x0e\xa2\xe6\ +\xb4\x25\xcc\x7c\x09\x47\x88\x01\x81\x7b\x3e\x3f\xca\xd4\x70\x42\ +\x50\xf6\x15\xa6\xb1\xb0\x66\x7b\xc4\x79\xd7\x0d\x60\x53\x77\x5c\ +\xcf\xd2\x7d\x81\x76\x7b\x2e\x81\x22\xb8\x44\x3e\xa6\x63\x40\xf2\ +\x35\x73\x59\xfa\xf4\xfc\xb0\x13\xd2\xcc\x51\x72\xbc\x0f\xab\xb5\ +\x22\x69\x38\xa6\x0e\xa4\xed\x35\x79\xce\x09\x67\xfc\x52\x1f\xa7\ +\x5e\xdc\x43\xd2\xc8\xd9\x33\xed\xf4\xae\xe2\x84\x20\x82\xa9\x83\ +\x09\xcd\x69\xdb\x61\xf5\x4a\xf9\x7d\x84\xd3\x23\x6d\xb0\x2e\xd3\ +\x15\x76\x7e\x7f\x8a\xdd\x3f\xaa\xa1\x4b\xde\xe6\xec\xac\x10\x55\ +\x35\x97\xfe\x7a\xe6\x52\x2e\x76\x35\x77\xe1\x28\xcc\x14\xdc\x1e\ +\xf1\x0b\x58\x1a\xe6\x9c\xa0\x03\x43\xef\x4a\x83\x0e\x95\x4f\x26\ +\xa1\xfc\xc6\xce\xcd\x69\xeb\x35\xe8\x63\x10\x80\xf7\x17\xf8\xa8\ +\xa0\x7c\x54\xfa\xce\x76\x34\x26\x53\xd2\xd8\x11\x56\xfc\xb6\x2d\ +\x41\x04\xdb\x5f\x5c\xcd\x0c\x30\x33\xb9\x8b\x58\x4f\x0c\x71\xc3\ +\xf1\xc4\x3d\x75\x5a\x35\xe7\xad\x82\xf8\xba\x2a\x83\x9a\x52\xaf\ +\xf6\xde\x42\x72\x4e\xe7\x0d\x4b\xb5\xc3\x29\x0f\x7c\x63\x02\x9b\ +\xfa\x6b\x08\x60\xad\x70\xc9\xeb\x07\x59\xb5\x35\x22\xc9\x74\x99\ +\x13\x1b\xb9\x79\x5b\x2e\xcd\x3c\xb0\x38\x0e\x20\x0b\x2f\x0a\x6f\ +\xf1\xeb\x5d\x1d\xd0\xbb\x3a\xc0\x26\x82\x0e\x14\xad\x9a\x65\xe4\ +\xe1\x26\x41\xe4\x35\xe6\xf9\x7e\xef\x52\x21\x08\x15\x95\x21\x9f\ +\x68\xa1\x1d\x40\x89\xcf\xc8\x59\x3b\xec\x0d\x48\xe0\x3b\xab\xba\ +\x2a\xa0\x3a\x60\xba\x88\xd4\x13\x8f\x4b\x05\xa5\x7d\x5d\x3b\x6e\ +\x1c\x67\xef\x8e\x06\x61\x4f\x2e\x36\xbc\x52\xba\x7a\x5b\x89\xa8\ +\x27\xb3\x30\xe6\xbf\xb5\x82\x09\x14\x0f\x7c\x7d\xd2\xeb\x1a\x91\ +\x77\xd7\x26\x75\xc7\xd6\xcb\xaa\x6c\xbb\xb2\xea\x15\xce\x45\xb4\ +\xc9\x51\xcb\x62\x1c\x47\x8b\x44\x41\xbe\x80\x4e\x62\x08\xe7\xb2\ +\x44\x89\x47\x29\x22\x42\x5c\x77\xac\xdc\x12\xb1\x76\x5b\x89\xb4\ +\xe5\xd0\x46\x11\x4f\x0b\x4f\xfc\xb0\xde\x1e\x39\xed\x64\x8b\x5d\ +\xc5\x5a\x21\xac\x68\x46\x1e\x6d\x72\xc7\xdf\x8d\x32\xba\xa7\x05\ +\xda\x8f\x3c\x9f\x98\xd1\x91\xc6\xae\xbd\xb8\x56\x9c\x57\xf0\x9c\ +\x30\x23\x79\xa3\x38\x08\x7a\xbc\x4f\xe0\x47\x9f\x1d\xe3\xc1\x6f\ +\x4c\x92\x31\x22\x00\x6c\x4b\x58\x77\x56\x89\x53\x2f\xae\xd0\x98\ +\xf4\x7c\xdc\x39\x2f\x0e\xc2\x1e\xc5\xf0\x4f\x1b\xec\xbe\xab\xe6\ +\x13\x41\x28\x2f\x76\x06\x37\x46\xbc\xe0\xd5\x03\x04\x91\x57\x72\ +\x7d\x7b\x74\xae\x39\xd7\xf3\x2c\xb4\xb4\x03\x6c\x4e\xc6\x90\xb0\ +\x99\x46\x8a\xee\x32\x0f\x32\x9f\x7d\x54\x35\x6c\xbb\xd2\x6b\xde\ +\xad\x69\x47\xd4\xa3\xd8\xff\x68\x93\x9f\x7c\x65\x92\xf3\x5e\xdd\ +\x8f\xcb\xaa\x11\xa4\x1d\x12\x1d\x96\x15\xbb\x6e\x9f\xe2\xc7\x5f\ +\x98\x60\xf4\xa9\x18\xa5\xe1\x85\x6f\x8e\x48\x27\x5c\x16\x24\xda\ +\xdd\x42\x3e\xae\x7e\x62\x24\x21\x69\x59\x7a\x06\x4c\x3b\x28\xd3\ +\xa5\xc2\x63\xdf\xaf\xf1\xc8\xcd\xd3\x1c\xde\xdd\xf2\xd3\x39\xe3\ +\x45\x4f\xda\x74\xf4\xad\x09\xb8\xe4\xcd\x43\x94\xaa\xaa\xed\x3a\ +\xce\xef\xdd\x26\xb0\xfb\xae\x3a\x53\x07\x52\x6f\x3a\x4e\x3c\x47\ +\x38\xeb\x25\xbd\x0c\x9d\x1a\xd2\x9a\xb6\x3e\x95\x6c\x1e\xca\xaf\ +\x3a\x81\xa0\x2e\x65\x91\xd1\x52\x4b\xc7\xfe\xa1\xe8\x75\x01\x19\ +\x9f\x5a\xd0\xba\x00\xed\x2d\x6e\x1b\xcf\x2b\xb3\xe1\x9c\x12\xbb\ +\x7e\x50\xc7\x84\x9e\x9d\xef\xf8\xf2\x38\x36\x71\x9c\xfd\xf2\x3e\ +\x1f\x20\x9a\x0d\xe7\xd6\x94\xe5\xa7\xdf\x9e\xe2\xb1\xef\xd5\x48\ +\x5b\x42\x4f\xbf\xc1\x98\xdc\x12\x28\x79\x84\x76\x3b\x04\x0b\x7c\ +\xc3\xd7\xc7\x2c\xdf\xfb\xf8\x21\xb6\xbc\xa8\x42\xd2\x10\x26\xf6\ +\x25\x8c\xed\x89\x99\x18\x49\x49\x9a\x42\x58\xf2\x2c\x3c\x8d\x1d\ +\xe2\x60\xf5\xe9\x25\x2e\xff\xcd\x15\x0c\x6c\x08\x48\x9a\x9d\x29\ +\x5c\x1e\x0f\x78\xf0\xb1\x16\x7b\xee\xab\x67\xb1\x0b\x5e\x94\x9c\ +\x72\x7e\x99\xb3\x5e\xda\x4b\x92\x59\x30\xad\x75\xd8\x58\x98\xd8\ +\x9b\x70\xf0\xf1\x98\x43\x8f\xc7\x88\x08\x67\x5f\xd3\xc7\xea\x6d\ +\xd1\x22\xe2\xfb\xba\xd6\x5b\xe6\x8d\x5d\x20\x8a\x5f\x1d\xbc\x10\ +\x3b\x40\xfe\x1b\x05\x69\x22\x9c\xfd\xb2\x3e\x46\x1e\x6e\xd1\x98\ +\xb0\x04\x25\x05\x29\x3c\xf8\x8d\x49\x7e\x76\xf3\x34\x2b\x36\x85\ +\xf4\xaf\x0b\x98\x3a\x90\x30\xb6\x27\x25\xae\x3b\x3f\xbd\x53\xd0\ +\xd3\xaf\xd9\x7c\x69\x0f\xad\xba\x9f\x9f\x39\x07\x81\x86\xea\xaa\ +\x3c\x8d\x8a\xd7\xc0\xb4\x81\x03\x8f\xb5\x38\xf8\x78\xcb\x5f\x37\ +\x6b\x7c\x1d\xf8\x90\x6d\x1b\x0b\xb6\xe9\x28\xf5\x6a\x36\x5f\xd2\ +\xc3\xf9\x6f\x18\xa0\x5c\xd5\xa4\xad\x59\xd3\xd1\x6c\xf4\xef\xdd\ +\xd1\x64\x72\x38\xf5\x01\x24\x69\xae\x2b\x94\x79\xe2\xee\x06\x93\ +\xfb\x13\x9a\x93\x8e\x89\x91\x94\xd1\x27\x5a\xc4\x75\x69\x1b\xf0\ +\x5c\x2a\x24\x0d\xe1\xaa\x77\xae\xf2\x11\x3e\x0b\xec\xcc\x3c\xb4\ +\xbd\xad\xe8\x14\x88\x25\xc8\x11\xb4\x70\x0a\xc8\x0d\x34\x2b\xb7\ +\x44\xbc\xe0\x35\xfd\xdc\xfd\xb9\x31\xd2\xd8\x79\xa5\xca\x82\x8d\ +\x1d\x07\x76\x36\xd9\xff\x48\x67\x71\x88\x8e\xfc\x35\x9c\x13\xb6\ +\xfe\x42\x95\xc1\x0d\x21\x71\xad\x33\x4a\x5d\x0a\xe5\x3e\xcd\xe0\ +\xc6\x80\xfa\xa8\x6d\x37\x74\x77\x58\xb5\xce\x96\x62\xdb\xc4\x11\ +\x4f\x0a\x95\x21\xc3\x86\xe7\x97\x39\xeb\x9a\x3e\xd6\x3f\xaf\x84\ +\x4d\x84\x34\x91\xb6\x1e\x91\x3f\xa3\x0e\x15\xf5\xb1\x94\xbd\x0f\ +\xd4\x09\x2b\xb4\xf3\xf7\x3b\x2b\xfc\xf8\x0b\x63\x7e\x56\xa2\xfd\ +\xac\x44\x1b\xe5\x17\x80\x06\x9e\xe0\xd2\xd8\x61\x63\x58\x7b\x66\ +\x09\xad\x65\x51\x1c\x60\x29\x03\x42\x0a\xdd\x3b\x38\x7f\xbb\x28\ +\xa9\xa5\x20\x69\x5a\xb6\x5f\x5d\xc5\x59\x61\xc7\x97\x27\xa9\x8f\ +\x59\xa2\xde\xcc\x8d\xdb\x6d\x7e\x55\xde\xc2\xe6\x12\x78\xfe\xb5\ +\xfd\x3c\xff\xda\x3e\xe2\xba\x77\xc2\x4b\xf6\x7d\x1a\x0b\x7d\x6b\ +\x43\x4e\x7b\x61\x0f\x3f\xfe\xc2\x04\x95\x15\x59\xaa\x2e\xbc\x3c\ +\xb6\xa9\x97\xf1\x92\xc2\xc0\x86\x90\x75\x67\x46\x6c\xba\xb0\xc2\ +\x86\x17\x94\x31\x81\x6a\x47\x11\xcd\xe5\xb4\xc9\xed\x07\x3a\xf0\ +\x4a\x5e\x50\x52\xed\x79\x7e\xd8\xa3\xdb\xa3\x53\x9c\x0f\x06\x75\ +\x2d\x1f\x96\xde\xd3\x6f\x58\xb3\xbd\xcc\x9a\xed\x11\xdb\x5f\x5c\ +\x5d\xb4\x54\x5f\x4a\x2d\xa0\xb8\x24\x51\x72\x64\x59\x0c\x92\x86\ +\xe3\x8c\xab\xab\xf4\xad\x0d\x78\xf8\xdb\xd3\x3c\xbd\xa3\xd1\x1e\ +\xb9\x79\xd8\x76\xd2\x80\x81\xf5\x01\xe7\x5e\xdb\xc7\xb6\x5f\xa8\ +\x62\xdb\x53\xb3\xce\xb5\x44\xfc\xd4\x66\xdb\x2f\x56\x99\xd8\x67\ +\xd9\x73\x6f\x23\xb3\xcd\xfb\x11\xdd\xbb\x26\x64\xf5\xd6\x1e\xd6\ +\x9c\x19\xb1\x6a\x6b\x89\x15\x9b\x03\x4c\xa4\x89\x6b\x16\x97\xa8\ +\x2c\x5a\x57\xe6\x6c\xf1\x34\x11\x4a\xbd\x9a\x73\x7f\xb9\x8f\x89\ +\x7d\x29\xb5\x51\x8b\x89\x68\xdb\x41\x24\x9b\xa2\x46\x55\x4d\xff\ +\xda\x80\x81\x75\x01\x2b\xb7\x44\xac\x38\x35\xa2\x7f\x7d\x40\xdf\ +\x1a\x43\xda\x92\xb6\xa5\x73\x41\x50\x4b\xbb\xff\x42\xb1\x79\x02\ +\x5d\x97\xc2\x72\x1c\x37\x1c\xb7\x84\x75\xcf\x8b\x18\xdc\x34\xc0\ +\xe8\x9e\x2a\x23\x0f\x35\x99\x3e\x68\x89\x9b\x42\x54\x51\xac\xd9\ +\x1e\xb1\xf6\x8c\x12\x43\x9b\x33\x87\xd1\x3c\x48\x62\xa1\x3c\x60\ +\xb8\xec\x6d\x83\x9c\x72\x41\x89\xfa\x98\xa3\xd4\xa7\xa8\x0c\x1a\ +\xaa\x2b\x03\xca\xfd\xda\xcf\x08\x44\x48\xb3\x25\x5d\x3e\xf0\x64\ +\xee\x8e\xef\x86\x4d\x85\xb5\x67\x95\xb8\xea\xdd\x2b\xd9\xbb\xa3\ +\x41\x6b\xca\x2f\x03\x0b\x2b\x8a\xf2\x80\xa1\x6f\xb5\xa1\xb2\x22\ +\x20\x28\x7b\xfd\xa2\xdc\xef\xd3\xc0\xda\x96\xa3\x95\x89\x2a\xdf\ +\x60\x0b\x6d\x95\xee\x41\xb5\xd0\xdf\x2c\x1c\xc5\x4e\x03\x73\xaa\ +\x3e\xce\x10\x26\x85\x5f\x63\x17\xf6\x68\x36\x9c\x53\x62\xcd\xe9\ +\x51\xc7\xb3\xa6\x7c\xa0\xa5\x52\xe2\xd9\xf4\x51\x46\x90\x37\x08\ +\x79\x87\xce\x96\x4b\x7b\xbc\x0d\x5f\x7b\x99\x9c\x1b\x92\xe2\xba\ +\xdf\xed\x43\xe5\x53\xb4\x45\xdc\xaf\xb5\xc2\x8a\xcd\x4a\x7c\x1a\ +\x54\x00\x00\x09\x9d\x49\x44\x41\x54\x21\x43\xa7\x04\x6d\x67\x56\ +\xbe\x88\x55\x07\x59\x20\x88\xcd\xec\x06\x4d\x21\xcd\xf6\x22\x3e\ +\x2e\x57\x30\x2c\xa9\x0c\x28\x36\x1e\x40\x04\x9f\x25\x4c\x9f\x10\ +\xcb\x72\x89\x97\xf5\x79\x8e\xbd\xdc\x9c\x9a\xc6\x7e\xd4\xab\x05\ +\x3a\x57\x6c\x2a\xb4\x57\x60\xa5\x1d\xe7\x72\x2e\x52\xba\x92\x75\ +\x2e\x1a\xed\x48\xa1\xae\x7a\xc4\xfa\x6b\x76\xa3\x7d\x2d\x8e\x77\ +\x04\x3f\x13\x44\x40\x97\xe2\xbf\xd8\xa8\xf0\xa3\x56\xeb\xe6\xee\ +\x9b\xc5\xd4\x3d\x67\x5c\x7f\xfb\xdf\x89\x61\x21\x26\xfa\x22\xae\ +\x95\x5f\xa7\xf8\x68\x80\xc2\xf7\x0b\xe8\x7e\xbf\x74\x53\x97\xe7\ +\x16\x16\x68\x5d\x3d\x4e\x14\xcb\x01\x9c\xb4\xf3\xe1\x3e\x27\xf6\ +\x0c\xfa\x79\x40\xe5\xca\x35\x2c\xc5\x26\xf2\x85\x4d\x03\xfd\x6b\ +\xb1\x22\x60\x19\x1e\x4b\xd9\x9e\x85\xe6\x07\xa0\x6d\xb1\x5e\x68\ +\x34\xdf\x32\x8e\x8d\xdc\x0f\xb0\x34\xab\x43\x0a\xce\x15\xbc\xb4\ +\x73\xd6\xe7\x26\xfc\xcc\xea\xa4\x9e\x06\x02\x47\xea\x28\xcb\x04\ +\x50\x1c\x72\x11\x70\xf2\x1a\x82\xba\xe5\x7f\xc7\x16\xb0\x8c\x22\ +\xd0\xb1\xae\x2e\x05\x8a\x5b\x17\xd0\xa5\xfd\x2d\x67\x0a\x2d\x12\ +\x5d\x6d\xbb\x04\x28\x36\x4f\x20\xcb\xb3\x80\xa5\x40\xbb\x4d\x97\ +\xa0\xee\xe5\xdd\xc3\x4f\x7a\x2c\xed\x26\x5c\x05\xce\x02\x58\x6a\ +\xa3\xd5\x73\x16\xaa\xdd\x9e\x27\xeb\x34\x10\xa0\x3d\x5b\x5d\xe6\ +\x00\xc5\x22\xe3\x00\x27\xb5\x12\x08\xcb\x4a\xe0\x92\x61\x69\xed\ +\x2a\x85\x89\x80\xb6\xe2\x97\xb1\xaa\x65\x02\x28\x0a\x39\x01\x2c\ +\x41\x9a\x50\x96\x67\x01\xcf\x08\x2c\x2a\xa5\xdc\x22\xb1\x44\xdb\ +\xc7\x9f\xf0\x82\xb8\x65\xb4\x21\x9d\xe5\x4a\x27\xab\x25\x50\xda\ +\x22\x20\x9f\xb2\xb0\x2c\x02\x0a\xc3\x33\xc2\x10\x94\xf9\x00\x33\ +\x56\xe5\xa4\x1d\x89\xbd\x8c\x13\x84\xa2\xd3\x9e\x4b\x31\x13\x28\ +\x6e\x5d\x80\xcb\xdc\x95\xe2\xda\x1b\x25\x2f\xa3\x00\x28\x7c\xf6\ +\xc9\x2c\xb0\xb4\x68\x14\x9c\x21\x64\x59\x09\x5c\x0a\x9c\xf4\x01\ +\x21\x39\x05\x78\x5d\x40\x65\xde\xc0\xa5\x08\x61\x7c\x2e\xa2\x93\ +\x1e\xe6\x24\x0e\x0a\x95\x19\x73\x80\x65\x4b\x70\xb1\xe8\xc4\x5a\ +\x9d\xac\x3a\x00\xd0\xee\x76\x27\xcb\x14\x50\x28\x96\xd0\x15\x48\ +\x91\xd3\xc0\x3c\x09\xb4\xca\x17\x86\x14\x51\xf3\x32\x9e\x19\x01\ +\x21\x78\x16\xe5\x44\x10\xa7\xb2\xb4\x26\x45\xd4\xbc\x0c\xa5\x3a\ +\x69\x62\x4e\x5a\x43\x50\x47\x01\xcc\x8d\x40\x6a\xd9\x10\x54\x18\ +\xba\x62\x2c\x96\xa0\xf6\xe5\xbd\x83\x9f\x09\x58\xc2\xf6\x2c\x6e\ +\x71\x68\xfe\x1e\x96\x48\x5f\x7d\xae\xa2\x3b\x57\xf0\x49\x3c\x0b\ +\x10\x97\xdd\x66\x7b\x69\x58\x51\x35\x3f\xc7\x91\x2f\x0d\x5b\x22\ +\xdb\xfa\x72\xec\xf6\x73\x1c\x8b\xe6\x00\xb3\x95\x3b\xa5\x54\x3b\ +\x68\x51\xac\xe0\xc4\xe1\x9c\x5e\x9e\x05\x14\x04\xa5\x7c\xca\xda\ +\x4e\x40\xc8\x4c\x7b\xe0\x5c\xfd\xb1\x18\x2c\x88\x00\xba\x43\xbc\ +\xb4\x9e\x83\x69\x74\xd9\x2a\x96\x7d\x01\xc5\xe3\x68\xed\x39\xbb\ +\xc3\x9d\x73\xed\xe3\x0b\x21\x86\xa3\x8a\x00\x11\x21\x49\x12\x7f\ +\xa2\xf6\xfb\xee\x1e\x38\x70\x00\x80\x1b\x6e\xb8\x01\xa5\x94\xda\ +\xb0\x7e\x23\xe3\xe3\xe3\x84\x61\xe0\x93\x3e\xcf\x11\x1e\xbe\x5c\ +\x4e\xb4\x74\x62\x2e\x40\x08\xc3\x90\xf1\xf1\x09\xd6\xad\xdd\x80\ +\x52\x4a\xdd\x70\xc3\x0d\x00\x1c\x38\x70\xc0\x6f\x36\x9d\x0d\xd2\ +\x24\x49\x8e\x39\x1d\x9f\x97\x03\xe4\x9d\x1f\x45\x11\x4f\x3e\xf9\ +\x24\xa3\xa3\xa3\xd4\x6a\x35\xae\xbc\xf2\xca\x6e\xb2\xd2\xc3\x23\ +\xfb\xec\xf9\x6e\xab\xca\x02\x02\x14\xa2\x96\xa7\x81\x85\x62\x6e\ +\xd3\xba\x38\x51\xfb\x0f\x0c\x03\xe8\xeb\xaf\xbf\xde\x5d\x7f\xfd\ +\xf5\x00\xdc\x76\xdb\x6d\x52\xad\x56\x59\xb1\x62\x05\x9b\x37\x6f\ +\x26\x8e\x63\xc2\x30\x9c\x97\x1b\xcc\x49\x00\xce\x39\xb4\xd6\x0c\ +\x0f\x0f\x73\xdf\x7d\xf7\xf1\xf1\x8f\x7f\x5c\xdd\x72\xcb\x2d\x18\ +\x63\xc0\x73\x0d\x05\x68\xa5\x94\x16\x41\x77\x07\x82\xb1\x2c\x02\ +\x0a\x47\xde\x9e\x6a\xe6\x31\x0d\x84\x4a\x29\x23\x92\x1b\xe2\x91\ +\xab\xae\xba\xca\x59\x6b\xb9\xfa\xea\xab\x79\xe7\x3b\xdf\x29\x17\ +\x5c\x70\x01\x9b\x37\x6f\x6e\xf7\xe9\x6c\x1c\x41\x00\x22\x82\xd6\ +\x9a\x5a\xad\xc6\xbb\xdf\xfd\x6e\x75\xe3\x8d\x37\x12\x45\x91\x8a\ +\xa2\x48\x89\x88\xb6\xd6\x6a\xc0\x00\x81\x88\x64\x49\xd9\xd1\xb4\ +\x59\xd5\x32\x01\x14\x8b\xac\x5d\x67\x59\x57\xc4\x62\x80\xde\x8c\ +\xc5\x5b\x20\x05\xac\xd6\xda\x19\x63\xdc\x0f\x7e\xf0\x03\xb9\xe5\ +\x96\x5b\x78\xed\x6b\x5f\xcb\x67\x3e\xf3\x19\xa9\x56\xab\x88\xc8\ +\x11\x9c\xe0\x08\x02\x50\x4a\x61\xad\xe5\xf5\xaf\x7f\xbd\xfa\xd7\ +\x7f\xfd\x57\x2a\x95\x8a\x6e\x36\x9b\x38\xe7\x4c\x76\x7e\x00\x84\ +\x59\x29\x01\x0a\x11\x25\x64\xb1\x00\x74\xcb\xab\x65\x9c\x38\xb2\ +\xb6\xcc\xb5\xec\x7c\x23\x55\x87\x01\x06\xf0\x47\x5b\x40\x02\x24\ +\x49\x92\xa4\x40\xaa\xb5\xb6\x95\x4a\x45\xdd\x78\xe3\x8d\xee\xf5\ +\xaf\x7f\xbd\xfa\xfa\xd7\xbf\x2e\x19\x07\x9f\x81\x39\x45\x40\xab\ +\xd5\xe2\xa6\x9b\x6e\xc2\x18\xa3\xea\xf5\xba\xc2\x8f\x78\x83\xef\ +\xf4\x08\xdf\xf1\xe5\xac\x18\xf1\x1b\x86\x75\x05\x84\x2e\x73\x80\ +\xa2\xa0\xe8\x52\x02\x11\xb4\xd2\x3e\x15\xbd\xef\x8b\x01\xfc\xe8\ +\x0f\x81\x26\x1d\xf1\x8c\x73\x4e\xd5\xeb\x75\x6b\x8c\x51\x37\xdd\ +\x74\x93\xb4\x5a\x2d\x2a\x95\xca\x11\xf5\xcf\x20\x80\x5c\x4e\x5c\ +\x7a\xe9\xa5\xca\xf9\x5d\x3b\xbb\x32\xe1\x91\x73\x80\x6e\x02\xe8\ +\xf1\xc7\x94\xca\xb5\xcd\x05\xed\x1a\xb6\x8c\x05\x43\x32\x02\x70\ +\xce\x49\x29\x2c\xab\x66\xd0\xaa\x7d\xf1\x3d\x4f\x7e\xe8\x7b\xdf\ +\xe7\x3e\xa0\x1f\xdf\xf1\xfe\xd4\x2c\x3a\xb3\xab\x28\xe7\x9c\x12\ +\x11\xb9\xf4\xd2\x4b\xd5\x03\x0f\x3c\x20\xb3\x75\x81\x39\x39\xc0\ +\xf8\xf8\xf8\x5c\x87\xbb\x89\x41\xd3\xa5\x0c\x36\x9b\xcd\x9a\x73\ +\xf4\xbb\x84\xd4\xa5\xd9\xae\x9e\xc9\xbc\xcf\xb4\x1c\x2b\x76\x74\ +\xcc\x18\x3a\x4e\x41\xda\x42\xc4\x69\x33\x3c\x3c\xb2\xef\x63\x7f\ +\xf6\xa9\x8f\xdd\xfc\x9d\xef\xdf\xef\x07\x67\x3b\x0b\x47\x77\x7f\ +\xcc\xde\x35\x03\x98\xb7\x4f\x67\x12\x40\xae\x20\x5c\x77\xdd\x75\ +\x7c\xe2\x13\x9f\x20\x08\x02\x92\x24\xc9\x29\xcb\x66\x25\xc1\x73\ +\x83\xfc\x42\x76\xac\xb9\x4f\xc2\x1e\xa5\xc2\x3e\xc2\x52\xbf\x50\ +\x1a\x84\xb0\x7c\xdc\x0d\xb0\x8c\x19\x70\x62\x52\x94\xeb\x1b\x6b\ +\x7c\xf0\xaf\xdf\xf7\xbf\xef\xfc\xce\x93\x77\x9a\x40\xf5\xd9\x54\ +\x1a\x78\xd9\x1f\xe3\xb9\x40\x8c\xef\x9b\xbc\x9f\x04\x90\xac\x0f\ +\xb9\xee\xba\xeb\x80\x23\x0d\x47\x6a\x3e\x43\xc1\x7b\xde\xf3\x1e\ +\xfe\xea\xaf\xfe\x4a\x97\x4a\x25\xe2\x38\xd6\x99\xc6\x9f\x2b\x80\ +\x11\x1d\x25\x30\x5c\x79\x26\xaf\xd3\x86\xf5\xa6\x84\x0a\x4a\x18\ +\x53\x42\xeb\xe0\x08\xaa\xec\x7e\xcf\x51\x5e\x99\xe7\xf3\xb1\x8e\ +\x9f\x2c\x98\x4f\xf8\xcd\x3e\x2e\x47\x79\xcd\x59\x79\xfe\xaa\x9d\ +\x70\xf8\xd0\xc3\xfa\xf6\xda\x30\x87\x50\x2e\x45\x88\xf1\x04\x90\ +\x97\x84\x0e\x11\xa4\x4a\x29\x1b\x45\x91\x6b\xb5\x5a\xfc\xd1\x1f\ +\xfd\x91\xfb\xe8\x47\x3f\x3a\xe7\x4d\xcd\x49\x00\x49\x92\x10\x86\ +\x21\xef\x7f\xff\xfb\xf9\xc8\x47\x3e\xa2\x82\x20\xc0\x5a\x6b\xc8\ +\x58\x8d\x88\xcc\x9e\x0d\xd4\xb3\x9f\x46\x74\x88\x23\xa0\xa3\x38\ +\xe6\x4a\x64\x3e\x85\xec\x26\x88\x6e\x42\x81\x19\xdb\x39\x1e\x95\ +\x60\x66\x3c\xc7\x9c\x4f\x57\x1c\xb1\x2c\xb4\x53\xbb\x8f\xcd\xee\ +\xd0\xfc\xb3\xeb\x3a\xde\x9e\xbf\x77\xbd\xda\xec\x7d\x37\xc7\x4d\ +\xb3\x47\x29\x65\x7e\xd6\x19\x9d\x4d\xa7\xd3\xd3\xbc\x4e\x63\x8c\ +\x4d\xd3\x94\xf7\xbd\xef\x7d\xf2\xe1\x0f\x7f\xb8\xdd\xa7\xb3\x31\ +\x27\x01\xe4\x26\xc8\x89\x89\x09\x92\x24\xe1\x77\x7e\xe7\x77\xd4\ +\x97\xbe\xf4\x25\x82\x20\x50\xd6\x5a\xa5\xbd\x16\x61\x00\xed\x9c\ +\x33\x28\x29\x91\x77\xb8\x22\x50\x1d\x85\xb1\xfb\xb5\x9b\x08\xf4\ +\xac\xf7\x33\x74\x0a\x8e\x94\x67\xdd\x84\xd0\x4d\x20\x73\xbd\xce\ +\x77\x6c\xae\xcf\xf3\xe1\x58\xa3\x75\xae\x63\x73\x75\xf0\xec\x32\ +\xbb\xc3\xbb\x8b\x9d\xf5\x3e\x2f\x69\xfe\xea\x84\x18\x47\x9c\x7f\ +\xa7\x94\xb2\x5a\xeb\x36\xc1\x38\xe7\x9c\x31\x46\xd2\x34\x95\xd7\ +\xbd\xee\x75\x7c\xf2\x93\x9f\x94\x30\x0c\x19\x18\x18\x98\xd7\x37\ +\x30\xaf\x08\x10\x91\xb6\x63\xc1\x18\xc3\xb5\xd7\x5e\xab\xee\xb8\ +\xe3\x0e\xca\xe5\x32\xc3\xc3\xc3\x4a\x29\x85\x88\xe8\x20\x08\x94\ +\x52\xaa\xdd\x79\xd6\x5a\xed\x9c\x9b\xdd\xc1\xc7\x7a\x9f\xcf\x32\ +\xba\x09\x60\x36\x61\x1c\x4d\x94\x1c\x4d\xac\xcc\x45\x18\xb3\xdf\ +\xc3\xdc\x9d\x9b\xbf\x3f\x16\xbb\xee\x7e\xef\x98\xbb\xd3\xbb\x4b\ +\x3e\xd2\xf3\xef\x67\x77\xfe\x9c\xef\x73\x23\x4f\x5e\x87\x88\xb8\ +\x34\x4d\x45\x29\xe5\x44\x84\xf5\xeb\xd7\x4b\xb3\xd9\xe4\x8a\x2b\ +\xae\xe0\x6b\x5f\xfb\x9a\x58\xeb\xb7\x33\xc9\xfd\x38\x73\x61\x5e\ +\x02\x80\x0e\x27\xc8\x7f\xac\x94\x62\xd7\xae\x5d\xbc\xf1\x8d\x6f\ +\x54\x83\x83\x83\x18\x63\xb8\xeb\xae\xbb\xd4\xf4\xf4\x34\x19\x41\ +\xa8\x20\x08\x74\x10\x04\x79\xbd\xb9\xc9\x58\x25\x49\xa2\xad\xb5\ +\xb3\x67\x11\x73\x8d\xf4\xf9\xb8\xc2\x5c\x04\x70\x2c\x22\x98\xdd\ +\xe1\x47\x13\x23\x30\x77\xc7\xce\xfe\x7c\xb4\xce\x9f\x4d\x00\xf3\ +\x8d\xf6\xf9\x38\x83\x03\xc4\x18\x23\x61\x18\x3a\xf1\x8d\xe8\x00\ +\x51\x4a\x91\xa6\xa9\xa4\x69\xea\x94\x52\x22\x22\xf4\xf6\xf6\x72\ +\xd9\x65\x97\x89\xb5\x96\xf1\xf1\x71\xbe\xf0\x85\x2f\xc8\xe9\xa7\ +\x9f\xde\x76\x00\xe5\x7d\x77\x34\xaf\xe0\x51\x09\xa0\x1b\xae\xcb\ +\xc1\xaf\xb5\xc6\x5a\x8b\x31\x86\x0f\x7d\xe8\x43\x6a\xe7\xce\x9d\ +\x52\x2a\x95\xa8\x56\xab\xdc\x7a\xeb\xad\xea\xbe\xfb\xee\x53\x5a\ +\x6b\x9c\x73\xf9\x3a\x71\x65\x8c\x51\x41\x10\x20\x9d\x25\x43\xdd\ +\x1d\x0a\xa0\xe2\x38\x9e\xcd\xea\xe7\xea\xe4\xd9\x3a\x02\x73\xbc\ +\xce\xfe\x7e\xae\xef\xe6\xc2\x42\xb8\x40\xf7\x77\x73\x11\x83\x63\ +\x6e\xe2\x68\x8b\x86\x28\x8a\xe6\x3d\x5f\x29\x25\x69\x9a\x62\xfd\ +\x7e\x38\x02\x28\xad\xb5\x38\xe7\xb8\xe0\x82\x0b\xe4\xaa\xab\xae\ +\x92\x5a\xad\x46\xab\xd5\x62\xfb\xf6\xed\xea\x03\x1f\xf8\x80\xe4\ +\x7d\x31\xbb\x8f\x16\x82\x05\x13\x40\xfb\xc9\xa5\xe3\x22\x06\xda\ +\x9e\xa6\xfc\x26\xee\xbc\xf3\x4e\x6e\xbd\xf5\x56\xfa\xfb\xfb\xb1\ +\xd6\x92\xa6\x29\x2b\x57\xae\x54\x9f\xfa\xd4\xa7\xc8\x1c\x4a\x2a\ +\x67\x4d\xdd\xf7\x01\xe4\xce\xa6\x63\xb1\x73\xe9\x7a\x3f\x43\x54\ +\x71\x64\x27\xcf\x38\xf7\x38\xd0\xee\x04\xe6\x20\x80\x59\xac\x75\ +\xf6\xb9\xf3\x8a\x8d\xae\xe7\x9f\xd1\xf8\xc6\x18\xac\xb5\x72\xf5\ +\xd5\x57\xf3\xd6\xb7\xbe\x95\xc3\x87\x0f\x4b\x10\x04\x18\x63\x98\ +\x9c\x9c\xe4\xaa\xab\xae\xe2\xf2\xcb\x2f\x6f\xb7\xf5\x7c\x7d\xb1\ +\x18\x2c\x9a\x00\x66\x23\x8e\xe3\x19\x2c\x27\x0c\x43\xba\x6d\xce\ +\xb9\xe5\xe9\xd1\x47\x1f\x65\xe7\xce\x9d\x94\xcb\xe5\x19\x94\x0a\ +\xbe\x21\x5b\xad\x16\xaf\x7a\xd5\xab\xd4\xec\xef\x38\x7e\x45\x6e\ +\xb1\xe7\x1e\x0d\x8b\x69\xa4\xf9\x14\x48\xc0\x3f\xeb\x57\xbf\xfa\ +\x55\x29\x95\x4a\x73\xb6\x43\xb3\xd9\x64\xfb\xf6\xed\x9c\x71\xc6\ +\x19\x47\x78\xf0\xac\xb5\x24\x49\x32\x43\x24\x47\x51\xb4\xa8\x07\ +\x99\x8d\x13\x26\x80\xd9\xc8\x47\x7d\x37\x25\x8a\x08\x39\x25\xcf\ +\x07\x11\x61\xf7\xee\xdd\x0b\xbe\x4e\x9a\xa6\xac\x5e\xbd\x9a\x4f\ +\x7f\xfa\xd3\xbc\xeb\x5d\xef\x52\x51\x14\x11\xc7\xf1\x09\xdd\xfb\ +\x42\x91\x5f\xeb\x63\x1f\xfb\x98\xbc\xe5\x2d\x6f\xe1\xe0\xc1\x83\ +\x04\xc1\xc2\xa3\xeb\xb6\x6c\xd9\x72\xd4\x91\x7a\xbc\x6d\x78\x3c\ +\xf8\xff\x7f\x6c\xd3\x30\xd0\x13\xb0\x11\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x1f\x38\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ +\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x1e\xb5\x49\x44\ +\x41\x54\x78\x9c\xed\x9d\x79\x94\x14\xd5\xd9\xff\x3f\xb7\x7b\x7a\ +\x16\x40\xc6\x99\x61\x16\x90\x45\x07\x51\x5e\x01\x17\x14\x09\x60\ +\xd0\xf8\x06\xf5\xa7\xe6\xc5\x2d\x1a\xf2\xc6\xbc\x2a\x27\x2a\x68\ +\x50\x41\xc9\x49\x3c\xc2\x2f\xaf\x22\xe6\x3d\x01\x17\x40\x93\x9f\ +\x5b\x24\x90\x1c\x63\x14\x09\x42\x04\x44\x16\x0f\x20\xca\xe2\x04\ +\x10\x90\x45\x18\x06\x18\x66\x84\x61\x66\x98\x99\xde\xaa\xea\xf7\ +\x47\x75\x55\x57\x75\x57\x75\x57\xf7\x54\xcf\xc2\xcb\xf7\x9c\x3a\ +\x5d\xf7\xde\xe7\xde\xba\x55\xdf\xe7\x3e\xcf\xdd\xaa\x5a\x28\x8a\ +\xc2\x59\xfc\xef\x45\x96\x1b\x85\x08\x21\x84\x1b\xe5\x9c\x45\x6a\ +\x50\x5c\x68\xbd\x22\xd5\x32\x62\xc8\x3e\x4b\x7c\xc7\x80\x4e\x62\ +\xaa\x4a\x91\x92\x05\x88\x90\x1f\x7b\xc0\x59\x45\x68\x2f\x28\x86\ +\x5f\x05\x50\x84\x10\x29\x29\x81\x63\x05\x30\x90\xef\x89\x1c\x5e\ +\xc3\xb9\x51\x19\xce\xa2\x6d\xa0\x91\x2e\x47\x0e\x49\x3b\x4f\x45\ +\x09\x52\xb1\x00\x1a\xf9\x5e\xc0\x07\x64\x47\x7e\xb3\x88\x2a\x01\ +\x9c\x55\x84\x4c\xc3\xd8\xea\x65\x20\x0c\x84\x80\x60\xe4\x97\x48\ +\xbc\x7b\x0a\x60\x68\xfd\x5e\x54\xe2\x73\x81\x2e\x91\xdf\x1c\xa2\ +\xd6\xe0\x2c\xf9\x6d\x03\x8d\x7c\x09\x08\x00\x7e\xa0\x19\xf5\xf9\ +\x07\x51\x5d\x81\x70\x62\x05\x92\x2a\x80\xa1\xd3\xa7\x59\x00\x1f\ +\x2a\xf9\xdd\x81\x73\x50\x95\x20\x1b\x55\x09\x34\xb9\xb3\xc8\x1c\ +\x34\x52\x25\x54\xb2\xfd\x40\xa3\x21\x2e\x4c\x84\x03\x27\x4a\xe0\ +\xd4\x05\xc4\x5a\x80\x3c\x54\xf2\xcf\x55\x14\x65\x69\x2a\xb5\x3f\ +\x0b\x77\x21\x84\xb8\x25\x72\x1a\x42\xb5\x06\x41\xa2\x4a\xd0\x7a\ +\x0b\x60\xbc\x16\xd1\x3e\x80\xa6\x04\xdd\x00\x4e\x9c\x38\x89\x3f\ +\x10\x20\x3a\x40\x14\x91\xca\x45\xc3\xf6\x69\xb1\xe9\x56\x61\xb0\ +\x9a\x6a\x10\xf1\x05\xb5\x3a\xcd\x5c\xcb\xe4\x72\x26\xd9\xb8\x84\ +\xcc\x19\xc3\xac\xac\x2c\xba\x76\xe9\x02\x2a\x07\x01\xa2\x56\x38\ +\x25\x57\x9c\xaa\x02\x58\x75\x04\x0d\xe4\xc7\x13\x9f\x5a\x38\x9e\ +\xe8\xb6\x24\xde\x09\xe9\x8a\xa2\x10\x0c\x04\x00\xc8\xce\xce\xc6\ +\xe3\xf1\xa4\x45\xb4\x2c\xcb\x04\x83\x41\x00\x72\x72\x72\x10\x42\ +\xd8\xb2\x66\xd5\x8c\xc3\xe1\xb0\x76\xaa\x75\xc6\x8d\xe4\x3b\xae\ +\x90\xc7\xa9\x60\x04\xb1\x4a\xe0\x05\x1c\x93\x2f\x44\xb2\xb0\x79\ +\x8e\xc9\x92\x7c\x73\x26\x73\xc5\xd2\x4d\x33\xa6\x27\x92\x01\xf6\ +\x7e\xf3\x0d\x65\x65\x65\x94\x95\x95\xf1\xee\xbb\xef\x3a\xb2\x24\ +\x56\xc7\x27\x2b\x57\x52\x56\x5a\x4a\x59\x69\x29\x9f\x6f\xdc\x98\ +\x90\x31\xbb\x32\x22\xd0\x78\x48\x6b\x38\x9e\xce\x54\xb0\xb1\x0e\ +\x9e\x68\x54\xfa\x26\xdf\x51\xab\x4f\xb1\x55\x3b\x6a\xed\x4e\xac\ +\x41\xac\x5c\xa2\x7a\x58\x26\xd8\xa4\xc4\x96\x99\xbe\xbb\x30\x12\ +\x9f\x72\x21\xae\xac\x05\x80\x53\xf2\x93\xf9\x7a\x0b\xdf\x6f\x2e\ +\x20\xed\xf8\x68\x6d\x1c\xa4\x27\x90\x49\xb5\x4c\xa7\x65\x38\xcd\ +\xed\xf6\xd2\x9d\x4b\x8b\x41\x90\x2a\xd9\xe9\xb6\x7a\xb7\x89\x77\ +\x4a\xba\x88\xf9\xd5\xe5\x9d\x5a\x91\x18\x8c\xfe\xfe\xf7\xd9\xbc\ +\x79\x33\x00\x7d\xfa\xf4\x49\x20\xe9\xbc\xcc\x74\xe0\x92\x05\x70\ +\x97\x7c\x5b\x92\xed\x08\x4e\xb7\x43\xe8\x24\x3d\x56\x2e\x99\x12\ +\x59\x57\x30\x2e\xaa\x4b\xd7\xae\x5c\x74\xf1\xc5\xc9\x72\x66\x1c\ +\x19\x77\x01\xc9\x14\x21\x10\x08\xe0\xf7\xfb\x01\xc8\xcf\xcf\x47\ +\x08\x81\x24\x49\x7c\xb1\x69\x13\xdf\x1e\x3c\x88\x2f\x2b\x8b\x21\ +\x43\x86\xf0\x6f\x97\x5c\x12\x77\xcd\x70\x28\xc4\xa6\x2f\xbe\xe0\ +\xd0\xc1\x83\x14\x16\x15\x31\x74\xe8\x50\x4a\x4b\x4b\x13\x5b\x09\ +\x43\x85\x5b\x5a\x5a\xd8\xb5\x6b\x17\xbb\xbe\xfe\x9a\xa2\xa2\x22\ +\x06\x0f\x1e\x6c\x6e\x8d\x0e\x3b\x78\x00\xdf\x7c\xf3\x0d\xff\xda\ +\xbe\x9d\x60\x20\xc0\xd0\x2b\xaf\xe4\xe2\x8b\x2f\xb6\x55\x4c\x50\ +\x7b\xf1\x4d\x4d\x4d\x08\xa0\x5b\xb7\x6e\x78\xbd\x5e\x5b\x59\x23\ +\x3a\xad\x0b\xb0\x6b\xf5\xb3\x67\xcf\x66\xf6\xac\x59\x00\x1c\xab\ +\xae\x66\xd5\xaa\x55\x3c\x39\x65\x0a\xd5\xd5\xd5\x26\xf9\x31\x63\ +\xc6\xf0\xff\x5e\x7f\x9d\xee\xdd\xbb\x23\x80\x85\x0b\x17\xf2\xec\ +\xb3\xcf\x52\x53\x53\x63\x92\xbb\xff\x81\x07\xf8\xdd\xef\x7e\x87\ +\xcf\xe7\x8b\x5e\x2b\xa6\xb2\x75\x75\x75\x3c\xfe\xd8\x63\x2c\x59\ +\xb2\x04\x59\x96\x4d\xf9\x8b\x8b\x8b\x99\x3d\x7b\x36\xff\x31\x76\ +\xac\xb9\xbe\x56\x65\x01\xfb\xf6\xef\x67\xc2\xc3\x0f\xb3\x69\xd3\ +\x26\x53\x7c\x61\x61\x21\xaf\xbe\xfa\x2a\xb7\xdc\x72\x0b\x56\xf8\ +\x74\xd5\x2a\xee\xba\xeb\x2e\x00\x96\x2f\x5f\xce\xc8\x91\x23\x2d\ +\xe5\x62\xe1\xb6\x0b\x48\x75\x18\x68\x83\xf4\xc8\x8f\xc5\xe2\x0f\ +\x3f\xe4\xde\x9f\xfd\x8c\xea\xea\x6a\xca\xca\xca\x18\x3c\x78\x30\ +\xd9\xd9\xd9\x00\xac\x5c\xb9\x92\x9f\x8e\x1b\x07\xc0\x8b\x2f\xbd\ +\xc4\x2f\x7f\xf9\x4b\x6a\x6a\x6a\xe8\xdd\xbb\x37\x97\x5c\x72\x09\ +\x59\x59\xaa\x2e\xbf\xfd\xd6\x5b\x4c\x9c\x38\x51\xaf\x95\x6e\x0d\ +\x22\xc7\xd6\xad\x5b\x19\x35\x72\x24\x8b\x17\x2f\x46\x96\x65\xba\ +\x74\xe9\xc2\xc8\x91\x23\xe9\xdf\xbf\x3f\x00\xb5\xb5\xb5\xdc\x7b\ +\xef\xbd\x3c\x36\x69\x12\x28\x8a\xb9\x83\x16\xe3\xf3\x0f\x55\x56\ +\xf2\xef\xd7\x5f\xcf\xa6\x4d\x9b\x28\x28\x28\x60\xf4\xe8\xd1\x9c\ +\x7f\xfe\xf9\x00\x9c\x3c\x79\x92\x71\xe3\xc6\xf1\xf2\xcb\x2f\x1b\ +\x6f\xdc\xba\xdf\x60\x8c\x4f\xe5\x70\x01\x2e\x29\x80\x33\xf2\x85\ +\x88\x1f\xdb\x1b\x43\x8f\x3f\xfe\x38\x97\x5e\x7a\x29\x9b\xbe\xf8\ +\x82\x9d\x5f\x7f\xcd\xda\x75\xeb\xd8\xbd\x67\x0f\x63\xc6\x8c\x01\ +\x60\xe3\xc6\x8d\x4c\x9b\x36\x8d\xe7\x67\xcc\x60\xd4\xa8\x51\x54\ +\x54\x54\xb0\x7d\xfb\x76\xd6\x6f\xd8\xc0\xce\x9d\x3b\xb9\x7a\xf8\ +\x70\x00\x3e\x78\xff\x7d\xf6\xed\xdd\x1b\xf7\xa0\x24\x49\x62\xe2\ +\x84\x09\x1c\x3d\x7a\x14\x21\x04\xd3\xa7\x4f\xa7\xea\xc8\x11\xfe\ +\xf9\xf1\xc7\x6c\xdd\xb6\x8d\x6d\x5f\x7d\xc5\x80\x01\x03\x00\xf8\ +\xd3\x9f\xfe\xc4\x7b\xef\xbd\x97\xf0\x81\xcf\xfa\xfd\xef\x69\x6c\ +\x6c\x64\xce\x9c\x39\x54\x56\x56\xb2\x74\xe9\x52\xb6\xef\xd8\xc1\ +\x86\x8d\x1b\xe9\xd5\xab\x17\x8a\xa2\xf0\xcc\x33\xcf\xb0\x63\xe7\ +\xce\xa4\x9d\xc5\x54\x0f\xb7\xe0\x8a\x02\xd8\xfb\x7f\x33\xf9\xa6\ +\x3c\x16\x71\x45\x45\x45\x2c\x5d\xb6\x8c\x0b\x2f\xbc\x50\x8f\x3b\ +\x37\x3f\x9f\xb9\x73\xe7\xea\x96\x60\xde\xdc\xb9\x0c\x18\x30\x80\ +\xc5\x8b\x17\xd3\xb7\x5f\x3f\xfd\xe2\x25\xa5\xa5\xcc\x9d\x33\x07\ +\x21\x04\xb2\x2c\xb3\x70\xe1\xc2\xb8\xeb\x2d\x5c\xb0\x80\xdd\xbb\ +\x77\x03\xf0\x9b\xdf\xfc\x86\xc9\x53\xa6\xe0\xf5\x7a\xf5\x87\xda\ +\xbf\xbc\x9c\x95\x2b\x57\x52\x58\x58\x08\xc0\x6f\xff\xfb\xbf\x09\ +\x44\x66\xfd\xac\x1e\x7e\x30\x18\xe4\xf9\x99\x33\xb9\xef\xfe\xfb\ +\x4d\x4a\x32\x64\xc8\x10\x3e\xfe\xf8\x63\xb2\xb2\xb2\x50\x14\x85\ +\x19\xcf\x3d\xe7\x3a\x81\x6e\x29\x81\x6b\x16\x20\x51\xe7\xcf\xd2\ +\x05\x58\xb4\x88\xa9\xbf\xfa\x15\x79\x79\x79\x86\x12\x01\x21\x28\ +\x2e\x29\xe1\xca\x2b\xaf\xd4\xe3\x7f\xf3\xf4\xd3\x78\xb3\xcc\xdd\ +\x17\x01\x5c\x74\xd1\x45\x5c\x3c\x70\x20\x00\x07\x0e\x1c\xd0\xe3\ +\xb5\x72\x5e\x7b\xed\x35\x00\xba\x77\xef\xce\x84\x89\x13\x2d\xcd\ +\x7b\x61\x51\x11\x0f\x4f\x98\x00\xc0\xe1\xca\x4a\x96\x2d\x5d\x6a\ +\x3b\x54\x2c\x2e\x2e\xe6\xfe\xfb\xef\xb7\x6c\xa1\xe5\xe5\xe5\xba\ +\x8f\xff\xe8\xa3\x8f\xa8\xac\xac\x34\x5d\xc7\x15\x37\xe0\x02\x5c\ +\xeb\x03\xb4\xd6\xff\x03\x3a\xc9\xba\x75\x30\xc8\xf6\xee\xdd\x3b\ +\x4e\x4e\x97\x55\x0b\x06\x21\xe8\xd5\xb3\x27\x00\x95\x95\x95\xa6\ +\x78\x59\x96\xd9\xbf\x7f\x3f\x00\x37\xdc\x70\x03\xdd\xcf\x39\x47\ +\xab\x90\xe9\x3a\x02\xb8\xe7\xee\xbb\xf5\xf0\x5e\xa3\x2b\x89\xa9\ +\xfb\xcd\x37\xdf\x4c\x5e\x6e\x6e\xfc\x8d\x44\x64\x6f\xbf\xe3\x8e\ +\x68\x39\xfb\xf6\xe9\xf9\xad\xac\x40\x7b\xb9\x01\x57\x5d\x80\xea\ +\xe3\x8d\xf1\x89\xc9\xd7\x09\x8a\xa0\x5f\xbf\x7e\x96\x43\x38\x01\ +\x9c\x5b\x50\x00\xa8\x0b\x30\x3d\x7b\xf6\x8c\xef\xe0\x45\x70\x4e\ +\x84\xd8\x53\xa7\x4e\x99\xe2\x8f\x1e\x39\xa2\x2f\xbe\x5c\x70\xc1\ +\x05\x96\xc4\x6b\xa1\x3e\x7d\xfa\xa8\x8b\x3c\xc4\x5b\x12\x63\xcd\ +\x74\xa5\xb4\x68\x99\x02\xe8\x6b\x18\x52\x7e\x7b\xe0\x80\xeb\xfe\ +\xdb\x0d\xb8\xd8\x09\x34\xde\x9a\x45\x67\x2f\x09\xf9\xa0\x92\x6b\ +\x45\xbe\x31\xce\xeb\xf5\xe2\xb1\x68\x91\x76\x0f\x57\x8b\x3f\x7c\ +\xf8\xb0\x1e\xd7\xb3\x57\x2f\x53\x5a\xac\x1b\xf0\x65\x67\x53\x5c\ +\x5c\x0c\x91\x7c\x76\xa4\x95\x96\x95\x81\x10\xb6\xad\xb3\xb4\xb4\ +\x54\x97\xad\xaa\xaa\x8a\xa9\x98\x30\x9f\xb7\x83\xf9\x07\xf7\xde\ +\x0b\x30\x86\xcc\xf7\xa6\x0a\x24\x90\xb7\x29\xd3\x22\x9f\xa1\x80\ +\x78\x59\x2d\x3e\x46\x29\xb4\xf8\x12\x03\x19\x27\xbe\xfb\xce\xd6\ +\xaf\x0b\xd4\xa5\xda\xba\xba\x3a\x00\x4a\x4a\x4a\xcc\x32\x06\xd9\ +\xba\x93\x27\xed\x5b\xb4\x10\x9c\x8c\x94\x01\x50\x5c\x52\x62\xeb\ +\x02\xd2\xb2\x0c\x2e\x29\x81\x6b\x33\x81\x2a\x12\xbb\x00\xab\x38\ +\xbb\x56\x6b\x4b\xb2\x55\x9c\x03\x45\xe9\xdb\xb7\x2f\x1e\x8f\x07\ +\x59\x96\x39\x74\xe8\x50\xc2\xf2\x8f\x1d\x3b\xa6\xbb\x8b\xf2\xf2\ +\x72\xbd\x95\xc7\xca\x1d\x39\x72\xc4\xf2\x5a\x9a\xdc\x51\x43\x7a\ +\xff\xf2\xf2\x0e\x67\xfe\xc1\x65\x17\x90\xd0\xff\xdb\xc4\xc5\x95\ +\xa3\x66\x36\xe7\xb3\x93\x4b\x41\x36\x27\x3b\x5b\xf7\xd9\xeb\xd6\ +\xad\xd3\x37\x54\xc4\xe5\x11\x82\x4f\x56\xad\xd2\x83\xfd\xfb\xf7\ +\xb7\x25\x6e\xed\xba\x75\xea\xd4\xac\x85\x1b\x00\x58\xb3\x66\x8d\ +\x2e\x7b\xc1\x05\x17\xd8\x94\x42\xbb\x99\x7f\x70\xad\x13\x98\xba\ +\xbf\xb7\x1a\x0a\xc6\xc6\xd9\xb5\x70\xbd\xbc\x04\xbd\xea\xb8\x78\ +\x21\xf8\x49\x64\x26\xb1\xb2\xb2\x92\xbf\xbf\xf7\x5e\xbc\x1b\x88\ +\x8c\x16\x5e\x7a\xf1\x45\x40\x1d\x2e\xde\x7c\xf3\xcd\xa6\x74\x23\ +\xf6\xec\xde\x1d\x3f\x4c\x8c\xa0\xa1\xa1\x81\x37\xde\x78\x03\x80\ +\x2b\xae\xb8\x42\x5d\xcb\x10\x02\xbb\xc9\xb0\x94\x0e\x8b\x32\xd2\ +\x85\x8b\xf3\x00\x2a\x1c\x93\x9f\xac\x1c\x2d\x9f\x95\xac\x9d\x92\ +\x24\x71\x05\x53\x26\x4f\xd6\x7d\xfa\xe4\xc9\x93\x59\xf5\xe9\xa7\ +\x7a\x3e\x01\xf8\x5b\x5a\xf8\xf9\xbd\xf7\xaa\x43\x3f\xe0\xa9\xa7\ +\x9e\xa2\xa8\x47\x0f\x93\xa2\xc5\x62\xe2\xc4\x89\xfa\xb2\xae\x56\ +\xd6\xa9\xfa\x7a\xee\xba\xeb\x2e\x1a\x1a\x1a\x00\x98\x3e\x7d\x7a\ +\x87\x1c\x01\x80\xcb\x7d\x00\x37\xc8\xb7\x33\xed\xb6\x72\x16\xd7\ +\xb0\x8a\x17\x40\xd7\xae\x5d\x99\x3d\x7b\x36\xe3\xc7\x8f\xa7\xb1\ +\xb1\x91\x3b\xef\xb8\x83\xe1\xc3\x87\x73\xf9\xe5\x97\x53\x53\x53\ +\xc3\x86\x0d\x1b\x74\xbf\x3e\x7c\xf8\x70\x26\x3e\xf2\x48\x42\xd2\ +\x1e\x18\x3f\x9e\xf9\xef\xbc\xc3\x8d\x37\xde\xc8\xe8\xd1\xa3\xb9\ +\xf4\xd2\x4b\xa9\xac\xac\x64\xed\xda\xb5\xfa\x62\xd6\x1d\x77\xdc\ +\xc1\x8d\x37\xde\x98\xf0\x9e\x13\xde\x83\x86\x0c\xbd\xc5\xed\xe2\ +\x72\x70\xea\xe4\x5b\xf9\x7b\xec\xe2\x62\xf3\x25\x93\xb3\x6a\xb5\ +\x42\x70\xdb\xed\xb7\x53\xde\xbf\x3f\xff\xf5\xf3\x9f\xb3\x77\xef\ +\x5e\xd6\xaf\x5f\xcf\xfa\xf5\xeb\x4d\x75\x9c\x3c\x79\x32\xd3\xa7\ +\x4f\xd7\x17\x98\x4c\x65\x1a\xae\x39\xe2\x7b\xdf\xe3\x86\x31\x63\ +\xf8\xc5\x2f\x7e\xc1\xf2\xe5\xcb\x59\xbe\x7c\xb9\x49\x7c\xea\xd4\ +\xa9\xfc\xdf\xdf\xfe\xd6\xb2\x9e\x71\x6b\x24\x16\xf7\x69\x75\x3f\ +\x6e\x23\xe9\xdb\xc1\x86\xb7\x82\x7c\xa8\x5b\xc1\xf3\x81\x62\xa0\ +\x0c\x28\x56\x14\xe5\xad\x13\x27\x4f\x9a\xf3\xa8\x19\x6d\xc3\xc6\ +\xb8\xca\xca\x4a\x7d\xd6\x6e\xd4\x35\xd7\x98\x1f\x8c\x21\xdf\x81\ +\x03\x07\x38\x7a\xe4\x08\x5e\xaf\x57\x5d\x3a\xb5\x51\x9c\xdd\xbb\ +\x77\x53\x5b\x5b\x4b\x5e\x6e\x2e\xc3\x86\x0d\x33\xde\x88\x49\xb6\ +\xa5\xa5\x85\xcd\x9b\x37\xb3\x63\xe7\x4e\xbe\xde\xb9\x93\xa2\x1e\ +\x3d\x18\x32\x78\x30\x43\x87\x0e\x55\x7b\xfe\xe6\x87\xa0\xe7\x6d\ +\x6e\x6e\xd6\x4d\xfe\xc0\x81\x03\x29\x29\x29\xe1\xd4\xa9\x53\x2c\ +\x5e\xbc\x98\x1d\x3b\x76\x10\x08\x04\xb8\xf2\xaa\xab\x18\x39\x62\ +\x04\x17\x5d\x74\x91\xed\x73\x3d\x79\xf2\x24\x3b\x76\xec\x00\xe0\ +\xb2\xcb\x2e\x23\x3f\x3f\xdf\x56\xd6\x0e\x91\xdd\xc4\x0f\x00\xb5\ +\x40\x75\xe4\xb7\x1e\x68\x41\x7d\x4f\x40\x49\xf6\x62\x88\xeb\x0a\ +\x90\x0a\xf9\x09\xc3\xa9\xc4\x19\xe2\x1d\x59\x82\x44\xe5\x24\xcb\ +\x97\xae\x5c\x06\xe0\x86\x02\xb8\xdb\x07\x80\xb6\x27\x3f\x4d\x85\ +\xb0\x4c\x8b\xa4\x27\x24\x33\x5d\xc2\x9d\x98\xf9\x76\x80\x7b\x7d\ +\x00\x48\x4e\x6c\x6b\xfa\x00\x36\x3e\x3d\x2e\xce\xcd\x78\xa7\xe9\ +\xe9\xca\x76\x00\xb8\x33\x15\x0c\xae\x93\x9f\x56\x0b\xcf\x00\xf1\ +\x4e\x49\xef\x2c\x84\xc7\xc2\x1d\x0b\x10\xdb\x43\x4d\x12\x6e\x15\ +\xf9\x99\x54\x08\x43\x7a\x32\x37\x90\x0e\xe1\x1d\xf1\x53\x4a\x2e\ +\xaf\x05\xc4\xdf\xa4\xa3\xa1\x5f\x86\xdc\x40\x4a\x3e\xde\x2d\x6b\ +\x40\xc7\x24\xda\x0e\x99\x9f\x08\x8a\x0d\xa7\x40\x7e\x5a\x2d\x3c\ +\x0d\x85\xb0\x94\x4f\x96\xcf\x24\xd2\x79\x08\x8f\x45\x9b\x4d\x04\ +\x65\x82\x7c\x47\x24\x27\x22\x38\x01\xb9\x49\x67\x2c\x3b\x31\xe9\ +\x46\xb8\xd7\x09\x8c\x0d\xbb\x41\x7e\x3b\xb8\x81\x44\xb4\x66\x9a\ +\x74\xbb\xf2\x33\xf9\x31\x4f\xd7\x3b\x81\x6e\x93\x9f\x49\x37\x10\ +\x0e\x87\xa9\xae\xae\x26\x10\x0c\xd2\xb7\x4f\x1f\x7d\xe7\x71\x7c\ +\xb6\xd6\x13\xdf\x9a\x32\x32\xa9\x78\x6d\x3a\x11\x94\x09\xf2\x53\ +\x69\xf5\xdf\x1e\x38\xc0\xc2\x85\x0b\xf9\xe7\x3f\xff\x49\x55\x55\ +\x15\xb5\xb5\xb5\x7a\xeb\xf2\x78\x3c\xf4\xee\xdd\x9b\xf2\xf2\x72\ +\x06\x0e\x1c\xc8\xb8\x71\xe3\x18\x31\x62\x44\x82\xbb\xb5\x47\x67\ +\x72\x0f\xae\x4c\x05\xd7\x9d\x3a\x95\x71\xf2\x9d\xfa\x7b\xab\xb8\ +\x0f\x17\x2d\x62\xce\x9c\x39\x6c\xd8\xb0\xc1\xfe\x46\x2d\x70\xd9\ +\x65\x97\xf1\xda\x6b\xaf\x71\xd5\x55\x57\x25\x94\x6b\x2f\xc2\xb3\ +\xb2\xb2\x68\xed\x54\xb0\x7b\xfb\x01\x9c\x90\x1d\x1b\x4e\x87\x7c\ +\x21\x2c\xe3\x2c\x57\xd4\x84\xe0\xf9\x19\x33\x18\x37\x6e\x5c\xca\ +\xe4\x03\x54\x54\x54\x30\x7a\xf4\x68\xe6\xcd\x9b\x17\x97\xa6\x6d\ +\xca\xe8\x4c\xad\xdd\x0a\xee\xec\x08\xb2\x39\x37\x85\x93\x91\xed\ +\x94\xfc\x64\x32\x91\x38\xed\x35\xb0\x67\x9f\x7d\x36\xf9\x0d\x24\ +\x40\x38\x1c\x66\xca\x94\x29\x7c\xfa\xe9\xa7\x91\xa2\x3b\x3f\xe9\ +\x46\xb8\x63\x01\x6c\x66\xfe\xda\x8b\x7c\x01\x3c\xf9\xe4\x93\xbc\ +\xfd\xf6\xdb\x4e\xef\x20\x21\x64\x59\xe6\xbe\xfb\xee\xe3\xf4\xe9\ +\xd3\xae\x94\xd7\x91\xe0\xea\x96\xb0\x58\xd3\x8f\x21\xdc\x5a\xf2\ +\x45\x32\x19\xd0\xdd\xc0\xd7\x5f\x7f\xcd\xeb\xaf\xbf\x9e\xb4\xbe\ +\xf9\xf9\xf9\x5c\x77\xdd\x75\xf4\xed\xdb\x37\xa9\x6c\x75\x75\x35\ +\xcb\x96\x2d\x4b\x2a\xe7\x04\x46\xf7\xd1\x9a\xc3\x0d\xb8\xb7\x2b\ +\x18\x6c\xfb\x01\x6e\x90\x4f\x32\x19\xc3\xb5\xe7\xce\x9d\x8b\x24\ +\x49\xb6\x75\xbd\xe7\x9e\x7b\xf8\xf4\xd3\x4f\x39\x76\xec\x18\x2b\ +\x56\xac\x60\xdf\xbe\x7d\x2c\x5b\xb6\x8c\x82\xc8\xdb\x47\x76\x58\ +\xb2\x64\x49\xc2\xf4\xf8\x6a\x66\x8e\x38\xb7\xe0\x5e\x1f\x20\x41\ +\x27\x10\xab\xb0\x51\xd6\x20\x93\x16\xf9\x86\xa0\xa2\x28\x7c\xf4\ +\xd1\x47\xb6\x75\x1d\x3b\x76\x2c\xf3\xe7\xcf\xe7\x9a\x6b\xae\x31\ +\x6d\xf9\xfa\xe1\x0f\x7f\xc8\x1f\xff\xf8\x47\xdb\x7c\x00\x7b\xf6\ +\xec\x49\x98\xae\x56\xa7\x63\x12\x6d\x07\xf7\x77\x05\x3b\x0d\x27\ +\x23\x3b\x81\x89\x4f\x24\x73\xe2\xc4\x89\xb8\xaf\x86\x18\xf1\xeb\ +\x5f\xff\xda\x92\x1c\x21\x04\x37\xdd\x74\x13\x5d\xbb\x76\xb5\xcd\ +\xdb\xd4\xd4\x64\x19\xdf\xd9\x48\x37\x22\xa3\xcb\xc1\xc9\x4c\xbf\ +\x51\xde\x09\xf9\x09\xf3\x44\x64\x8a\x8b\x8b\xf9\xdb\xdf\xfe\xc6\ +\x97\x5f\x7e\xc9\x91\x23\x47\x38\x72\xe4\x08\x87\x0f\x1f\xe6\xe8\ +\xd1\xa3\xdc\x70\xc3\x0d\x0c\x1d\x3a\xd4\xb6\xdc\xbc\xbc\x3c\x06\ +\x0c\x18\xc0\x57\x5f\x7d\x65\x79\x9b\x2d\x2d\x2d\xf6\xf5\xe9\xa4\ +\xc8\xd8\x4c\x60\xaa\x23\x00\xec\xc2\x38\x27\x5f\xc3\xd8\xb1\x63\ +\xb9\xed\xb6\xdb\x12\xd7\xd5\x86\xc0\xb8\x9d\xc0\x06\x34\x35\x35\ +\x9d\x31\xc4\x6b\xc8\xd8\x96\x30\x0c\xe1\xd6\x0e\x07\x63\xcb\x4c\ +\xd9\x5a\x38\x4c\x3f\x71\xe2\x84\xfe\x4e\xa0\x15\xec\x5c\x40\x6b\ +\xe1\x54\xa9\x32\xb1\x28\x94\xb9\xd5\xc0\x64\xb2\x56\x64\xc7\x86\ +\xd3\xec\x27\x24\x82\xa2\x28\x54\x54\x54\xb0\x7a\xf5\x6a\x76\xec\ +\xd8\x41\x55\x55\x15\x87\x0f\x1f\xa6\xaa\xaa\xca\x64\xe2\xad\x90\ +\x48\x39\x92\xa1\xbd\x17\x94\xec\xe0\x9e\x0b\x70\xd0\xba\x5d\x25\ +\x3b\x05\xf2\x8f\x1d\x3b\xc6\xa2\x45\x8b\x58\xb3\x66\x0d\xeb\xd6\ +\xad\xe3\x64\xcc\x7b\x0c\x99\x40\x67\x71\x15\x6d\xda\x09\x34\xa6\ +\xb7\x05\xf9\xe1\x70\x98\x57\x5e\x79\x85\xe7\x9e\x7b\xae\x4d\x66\ +\xf1\x3a\x0b\xe9\x46\xb8\xdf\x09\x8c\x8b\xcc\xb0\x32\x60\xfd\xe0\ +\xeb\xeb\xeb\xb9\xf9\xe6\x9b\xf9\xf2\xcb\x2f\x93\xd6\xbb\x35\xe8\ +\x8c\xa4\x1b\xe1\x6e\x27\x10\x2c\x7d\xbb\xab\xc3\xc1\xd8\xb0\x05\ +\x01\x4d\x4d\x4d\x8c\x1d\x3b\x36\x29\xf9\x3e\x9f\x8f\x6b\xaf\xbd\ +\x96\x6b\xae\xb9\x86\xe2\xe2\x62\x8a\x8a\x8a\x98\x3e\x7d\xba\xe3\ +\x09\x9f\x33\x01\xee\xee\x0a\x4e\x46\x30\x16\x04\x3a\x4c\x53\x8b\ +\x13\x09\xc3\x1a\xa6\x4e\x9d\x9a\x70\xf9\xd7\xeb\xf5\xf2\xc2\x0b\ +\x2f\xf0\xc0\x03\x0f\xc4\xbd\x93\x37\x2b\xf2\xd9\x5a\x3b\x9c\x29\ +\xc4\x6b\xc8\xc8\x28\x40\x8d\x4c\xd2\x09\xb4\x08\x9b\x83\xa9\x85\ +\x35\x1c\x3b\x76\x8c\x77\xde\x79\xc7\xb6\xae\x79\x79\x79\x2c\x58\ +\xb0\x80\xb1\x31\xdf\x02\xd6\xa0\x7d\x18\x32\x93\xe8\x48\x4a\x94\ +\xb9\x51\x00\xad\x30\xf5\x69\x92\x0f\x30\x67\xce\x9c\x84\xc3\xb5\ +\x7b\xef\xbd\xd7\x96\x7c\x70\x5f\x01\x3a\x12\xd9\x56\x70\x75\x3f\ +\x40\x2a\xa6\xdf\x98\x37\x91\x32\xa4\x42\xbe\x10\x22\xe9\xce\x9f\ +\x1f\xfc\xe0\x07\x09\xd3\x4f\x9d\x3a\x95\x30\x3d\xf6\xeb\xe2\x76\ +\xf5\xe8\x2c\x6b\x03\xae\x2f\x06\x69\x70\x6a\xfa\x5b\x63\x09\xac\ +\xd2\xb4\xaf\x81\xda\x61\xf4\xe8\xd1\xb6\x69\x5b\xb6\x6c\xe1\xf8\ +\xf1\xe3\x09\xf3\xef\xda\xb5\xcb\xf6\xfa\x9d\x85\x74\x23\xdc\xdd\ +\x0f\x00\x96\xad\x1f\x43\x5a\x42\x82\xed\xca\x4c\x76\xed\x48\x39\ +\x4d\x4d\x4d\x49\x09\x4c\x44\xd0\xfb\xef\xbf\x9f\xf4\x5a\xb1\xff\ +\x0b\xd0\x19\x49\x37\xc2\x5d\x0b\xe0\x60\xf6\x0f\xbb\xb4\x34\xfd\ +\x7e\xec\x6a\x9e\xf1\x63\xd3\x56\xd8\xbe\x7d\xbb\x65\x7c\x4d\x4d\ +\x0d\x0b\x16\x2c\x48\x98\x17\xe0\xb3\xcf\x3e\xd3\xaf\xdb\x99\x89\ +\xd7\x90\xb9\x4d\xa1\x49\x3a\x7e\x6e\x98\xfe\xd8\x78\x8f\xc7\xc3\ +\xc0\xc8\xd7\xc2\xed\x30\x63\xc6\x8c\xb8\xdd\x42\x4d\x4d\x4d\xdc\ +\x7a\xeb\xad\x1c\x3d\x7a\x34\x61\x5e\x80\xbf\xfc\xe5\x2f\x6c\xdd\ +\xba\x35\xa9\x9c\x53\xb4\xc7\x36\x30\x23\x32\xb2\x2d\x5c\x8f\xb2\ +\x4b\x4b\xc1\xf4\x3b\x25\x5f\xc3\x90\x21\x43\xec\xeb\x88\xfa\x91\ +\xc8\x9b\x6e\xba\x89\x65\xcb\x96\xb1\x65\xcb\x16\x66\xcc\x98\xc1\ +\xf0\xe1\xc3\x1d\x93\x1a\x0e\x87\xb9\xef\xbe\xfb\xd2\x5a\x18\x72\ +\x83\x50\xb7\x95\x21\x33\x53\xc1\x49\x94\x21\xdd\x8e\x9e\x13\x0c\ +\x1b\x36\x8c\xf9\xf3\xe7\x27\x94\x59\xbd\x7a\x35\xab\x57\xaf\x4e\ +\xfb\x1a\x3b\x77\xee\x64\xed\xda\xb5\xfa\x3f\x99\xd8\xa1\x33\xb8\ +\x88\xcc\x6c\x0b\xc7\x61\x3f\x80\x78\x57\x60\x0e\xa6\xd6\xfa\x01\ +\xc6\x8f\x1f\xcf\xa0\x41\x83\x12\x5c\x31\x31\xce\x39\xe7\x1c\xae\ +\xbf\xfe\xfa\x84\x32\xa3\x46\x8d\x4a\xf8\x27\x4f\x9d\xa9\x7f\x90\ +\x91\x51\x40\xda\x1d\x3f\x53\x52\xea\xe4\x83\xfa\xc9\xf9\x37\xdf\ +\x7c\xd3\xf1\xdf\xb0\x19\x51\x52\x52\xc2\xaa\x55\xab\xf8\xe0\x83\ +\x0f\x38\xff\xfc\xf3\x2d\x65\xee\xbe\xfb\x6e\x56\xae\x5c\x19\xb7\ +\x77\x30\x1d\xd3\xac\x28\x4a\x5a\x87\x9b\x70\xfd\x0b\x21\x26\xa4\ +\xa0\x0c\x4e\x1e\x9c\xd3\x9d\x3e\x57\x5d\x75\x15\x6f\xbe\xf9\x26\ +\x4f\x3c\xf1\x84\xfe\xd9\xf7\x64\xb8\xf6\xda\x6b\x79\xfd\xf5\xd7\ +\xd5\x8f\x43\x0b\xc1\x7b\xef\xbd\xc7\x98\x31\x63\x4c\x13\x43\x53\ +\xa7\x4e\x65\xe6\xcc\x99\xa6\x7a\xa4\x4a\xb8\x65\xdc\x91\x75\x88\ +\xe3\x9f\x43\xc3\x41\x68\x38\x88\x68\x3c\x08\xc1\x7a\xc8\x2b\x46\ +\xc9\x2b\x81\xbc\x52\x28\xff\x11\x4a\xf9\xed\x08\x6f\xb6\x5e\x8e\ +\x2b\x9b\x4c\xdc\x78\x39\x54\xdf\x2a\x95\x68\x18\x28\x04\xde\x13\ +\x5f\x21\x8e\x7f\x81\xdc\xff\xc7\x90\x5b\x68\xbc\x88\x2b\xad\x3f\ +\x36\xbd\xb6\xb6\x96\xa7\x9e\x7a\x8a\x77\xdf\x7d\x97\x50\x28\x14\ +\x27\xef\xf1\x78\x18\x31\x62\x04\x13\x27\x4e\xe4\x27\x3f\xf9\x49\ +\x5c\x19\xdb\xb6\x6d\xe3\xc6\x1b\x6f\xa4\xbe\xbe\x9e\x57\x5e\x79\ +\x85\x87\x1e\x7a\x28\xa5\xfa\x40\x3c\xe9\x7a\x58\x0a\x22\xf6\xbd\ +\x8b\xa8\x78\x19\x6a\xad\x37\xa1\xc6\x95\xd5\xfb\x7a\x94\xb1\x2b\ +\x4c\xf5\x17\x1d\xe1\x43\x91\x46\x05\x48\xd4\xd9\xcb\x3a\xb4\x04\ +\xdf\x8a\x7b\x20\xfb\x1c\xa4\x41\x13\x91\x2e\x9d\x84\x92\x53\xe8\ +\xa8\x45\xa5\xbb\xcf\x0f\x20\x14\x0a\xb1\x7f\xff\x7e\x76\xed\xda\ +\x45\x4d\x4d\x0d\x05\x05\x05\x14\x16\x16\x32\x74\xe8\x50\x8a\x8a\ +\x8a\x12\x96\xd1\xdc\xdc\x4c\x6e\x6e\xae\xfe\x17\x32\x4e\xea\x62\ +\x7c\xa6\x96\xcf\x77\xdf\x7b\x78\x3e\x7b\x02\x9a\xab\xe3\xd3\x12\ +\xa1\x4b\x19\xd2\x7d\xd1\x7f\x3e\xf1\x7a\xbd\x1d\x48\x01\x92\xb4\ +\x7e\xed\xdc\xfb\xed\x22\x7c\xeb\x26\x40\xb0\x01\x7c\xdd\x90\x06\ +\x4d\x40\xba\xf4\x31\xc8\xeb\xa1\x5d\xcf\xaa\x0e\xc9\xea\xd8\xaa\ +\x74\xa7\x32\xc9\xe4\xec\x88\x8f\x7d\xc6\xa2\xe2\x65\xa8\xdb\x03\ +\x79\x25\xd0\xa5\x04\x25\xaf\x58\x3d\xcf\x2d\x82\x70\x0b\x04\xeb\ +\x11\x0d\xdf\x22\x76\xbd\x85\xa8\xd9\x1c\xcd\x98\x9d\x4f\x78\x7c\ +\xad\x5e\x8f\x0e\xa7\x00\x8e\xe6\xff\x85\xc0\xd3\x70\x00\xdf\x27\ +\x3f\x43\x7c\xb7\x4d\x8d\xf3\x75\x45\xba\xe4\x61\xe4\xcb\x9f\x80\ +\xbc\x62\xab\x3a\x24\xaa\x5f\xb2\xfa\x27\x4c\x77\x43\xc6\x09\xf1\ +\xb6\xfe\x3f\x09\x7c\x6f\x97\x41\x40\xed\xc7\x28\x65\x23\x08\xdf\ +\xb6\x46\xaf\x4b\xc7\xfa\x3e\x80\x1d\x2c\x66\x00\x95\xee\xe5\x04\ +\xc7\xae\x46\x1a\xf4\xb0\x1a\x19\x6a\xc2\x5b\x31\x0b\xdf\x5f\x2e\ +\xc6\xfb\xf9\xaf\xa1\xa5\xc6\x90\x3d\xb3\xc3\x29\xb7\xc8\x77\xd2\ +\x73\xb7\x4d\x0f\x07\xa0\x76\x2b\x8a\xff\x24\xb2\x2c\x9b\x0e\xa5\ +\xfb\x05\xd1\x6b\x15\x0e\x72\x7d\x34\xe0\xda\x3c\x80\x23\x9a\x8c\ +\x0f\xd2\x9b\x83\x74\xcd\x4b\x84\xc7\x2c\x84\xec\xee\x6a\x5c\xa8\ +\x09\xcf\x57\xb3\xf1\xfd\xb9\x9c\xac\x65\x63\xf1\xec\xf9\xb3\xda\ +\x1b\xb6\x2d\xae\xfd\x5c\x83\x1d\xc1\xc6\x34\x2b\x39\x45\x51\x74\ +\x72\xc5\xf1\xcf\xf1\x7e\x36\x09\xdf\x9f\xfb\xe1\x7b\x7f\x04\x59\ +\x4b\x6e\x8a\x2f\xf7\x74\xf4\x7f\x87\xe4\x82\x41\xa6\xfc\x6e\xc0\ +\xfd\x61\x60\xa2\x39\xff\x18\x39\x00\xb9\xfc\x4e\x42\x3d\xae\x20\ +\x6b\xe5\x4f\x11\xdf\x45\x7a\xc3\x72\x08\x51\xf9\x31\xde\xca\x8f\ +\x61\xdd\x23\x28\x7d\x6e\x40\xbe\xf0\x2e\x94\xf3\x7f\x04\xbe\x6e\ +\x91\xec\xed\x4b\x7e\xa2\xdf\x84\x69\xf5\x07\xf0\xee\xfb\x2b\xde\ +\xbd\x7f\x45\x34\x98\x97\xae\xe5\x92\xe1\x26\xe5\xf1\x34\x1d\x46\ +\xb4\x44\x56\x37\x3d\x59\x84\xfb\xfd\x07\x8a\x2c\xbb\x6a\x15\x33\ +\x3e\x0f\x60\x3c\xb7\x55\x8c\xfc\xfe\x84\x6f\x5f\x87\x77\xc3\x54\ +\x3c\x3b\xff\x60\x2e\x43\x0a\x20\x0e\x2e\xc1\x7b\x70\x09\x64\xe5\ +\xa1\xf4\xfd\x3f\xc8\x17\xde\x05\xe7\xdf\x02\x59\x5d\x6c\x2e\x9b\ +\x19\xf2\xd3\x21\x5c\x51\x14\x38\xb9\x0b\xcf\xd1\xd5\x78\xf7\xff\ +\x1d\xcf\xf1\x8d\xf1\xe5\x76\xe9\x49\xf0\xea\xe7\x08\x97\xdf\x0d\ +\x86\x96\x2d\xaa\xa3\x9b\x5b\xc2\x7d\x6e\x41\xce\x2b\x85\x88\x82\ +\x74\xa8\xb5\x00\xbb\xce\x5f\xb2\xd6\x6f\x82\x37\x07\xe9\xfb\x2f\ +\x23\x0f\xb8\x07\xef\xe6\xe7\x10\x55\xab\xe2\x65\xc2\x2d\x88\x03\ +\x1f\xe0\x3d\xf0\x01\xf8\xba\xa2\xf4\xba\x16\x4a\xae\x44\x29\x1e\ +\x8a\x52\x3c\x14\xba\xf6\x6a\xd5\x7d\x44\xab\xe7\x9c\x7c\xab\x5f\ +\x71\x6a\x0f\x9e\xa3\x6b\x11\x47\xd6\xe2\x39\xf6\x19\xa2\xc5\xe6\ +\x6d\x65\x8f\x8f\xe0\x25\x8f\x10\xba\xe2\x57\x28\x59\x5d\xe3\xfe\ +\x16\xc6\x7b\xe0\x03\xfd\x3c\x34\x70\xbc\xea\x36\x22\x75\x73\xab\ +\x0f\x90\x39\x0b\x90\x68\x9a\xd7\x24\x66\x96\x53\xca\x46\x12\xbe\ +\x75\x19\x9e\xe3\x1b\xf1\x7c\xf9\x1c\xa2\xea\x13\xeb\xf2\x43\x4d\ +\x88\x43\xcb\xe0\xd0\xb2\x68\x79\x5d\x7b\xa2\xf4\x18\x0a\xa5\x57\ +\x46\x14\xe3\x4a\xe8\x52\x16\x53\xad\xd4\xad\x83\x2d\xd9\x52\x08\ +\xd1\xf8\x2d\xd4\xed\x41\xd4\xed\x41\xd4\x6e\x45\x1c\x5d\x17\x35\ +\xdb\x09\x10\xee\xf5\xef\x04\x86\xff\x0e\x39\x5f\xfd\xbb\x7a\x25\ +\xc6\xa7\x8b\x40\x1d\x59\x47\x56\x02\x20\x77\xbf\x90\x70\xcf\xd1\ +\x7a\xeb\x77\x72\x1f\x4e\x91\x59\x17\xa0\x21\xc5\xca\x0a\x21\x50\ +\xca\x46\x22\xfd\x68\x19\xa2\x7a\x23\x9e\xcd\xcf\x21\x0e\xaf\x4c\ +\x9e\xb1\xe9\x18\xa2\x69\x29\x1c\x5a\xaa\x96\x03\xd0\xb5\x17\x4a\ +\xe1\x60\xc8\xeb\x81\xc8\x2d\x84\xdc\x42\x94\xec\x7c\xc8\x29\x50\ +\x67\x23\x73\x0a\x20\xb7\x00\x72\x0a\x11\x79\x85\x80\x07\x42\x8d\ +\x10\x6c\x84\x50\x23\x4a\xa0\x41\x0f\x8b\x40\x1d\x9c\xda\x87\xa8\ +\xdb\x03\xa7\xf6\x20\x1a\xbe\x05\x39\x7e\x86\x31\x11\xe4\x6e\xfd\ +\xf0\x0f\x7b\x9e\x70\xdf\x5b\x80\x78\xe2\x35\xf8\x0e\x7e\x00\x52\ +\x10\xbc\x39\x34\x8f\x9a\x87\x2c\x2b\x80\xd2\x81\x2d\x40\x6b\xcc\ +\x7f\x02\x28\x65\x23\x90\x6e\x5d\x8a\x38\xfe\xb9\x6a\x11\x0e\xaf\ +\x48\x9e\xc9\x88\xa6\xa3\x88\x26\xf3\x46\x8f\x54\x6a\xe0\x4e\x3b\ +\x13\x84\x4b\x47\x11\x1a\xf0\x33\x82\xfd\xc6\x82\x37\xd7\xd4\x9a\ +\x21\x9e\x50\xdf\xfe\xbf\x01\xd0\x74\xf5\xef\x09\x15\x5d\x85\x30\ +\xba\x18\xf3\x33\x54\x0c\x47\xca\xc8\x8c\x05\x48\xd3\xfc\xdb\xc5\ +\x01\x28\xa5\xdf\x43\xfe\xd1\x52\xc4\xf1\x4d\x88\xcd\xcf\x23\x2a\ +\x97\x83\x62\xff\x1d\xa0\x8e\x00\xa5\x6b\x6f\x82\xfd\x7f\x4a\xe8\ +\xc2\x9f\x22\x75\xeb\xa7\xc6\x29\x8a\x89\x7c\xab\x96\xec\x39\x5d\ +\x49\x56\xed\x17\xf8\xff\x6d\x22\x81\xf2\x71\x71\xa6\x5f\x51\x14\ +\xe3\xd4\xb4\x62\x71\x38\x46\xe6\x5d\x80\xcb\x13\x39\x4a\xe9\x70\ +\x94\x5b\x16\x43\xcb\x77\x88\x03\x1f\x20\xf6\xfd\x1d\x71\x74\x5d\ +\xc7\x51\x06\x6f\x0e\xe1\xbe\xb7\x12\xbc\xf0\x3f\x09\xf7\xbc\x0e\ +\x05\x61\x4b\xba\xc9\x02\xa8\x11\x00\x08\x39\x4c\xf3\xe0\x27\x69\ +\x1e\x3c\x59\x1d\x15\x18\xac\xab\x66\x01\x0c\x79\x65\x40\x8a\xfc\ +\xca\xa4\xa8\x04\xae\xbd\x1d\x6c\xdb\xca\x63\xe4\xd2\xbf\x44\x4c\ +\xde\xbc\x1e\x28\x83\x1e\x44\x19\xf4\x20\x34\x1f\xc7\x73\x70\x31\ +\x1c\x5e\x8d\xa8\x5e\x0f\x4d\xc7\xd2\xbe\x4e\xca\xf0\xe6\x20\x17\ +\x5d\x8e\x54\x3c\x0c\xa9\x64\x18\xe1\x9e\xd7\x21\xfb\xf2\x0d\xe3\ +\x79\xfb\xc9\x22\xab\x5f\x00\xb9\x4b\x5f\x42\x83\xa6\xa0\xc8\x0a\ +\x42\xa8\x7d\x04\xed\xfe\x35\xf2\x85\x10\x6c\xdd\xba\x75\x37\xea\ +\x94\x6f\x08\x08\xd3\x6e\x0a\x60\x44\xa2\x79\x7b\x93\x58\xea\x8b\ +\x3e\xb6\xe5\x76\x2d\x43\x19\xf4\x10\x0c\x7a\x48\xbd\xf3\xfa\xfd\ +\x88\x63\xeb\xe1\xd8\x7a\xc4\x89\x7f\x41\xfd\x7e\xf0\xbb\xf3\x4d\ +\x00\xe5\x9c\x7e\xc8\x25\x57\x23\x97\x0c\x43\x2a\xbe\x1a\xa9\x60\ +\x08\x8a\xc7\x97\x70\xe6\x4f\x8f\x57\x4f\x6c\x66\x0a\xc1\xc8\x9b\ +\x51\x21\x84\xf0\x20\x04\xfa\x86\x93\x86\x86\x06\xea\xea\xea\xfc\ +\x3f\xfe\xf1\x8f\xe7\xa1\xce\xfb\x07\x80\x20\x69\x28\x41\xdb\x4d\ +\x04\xb5\x25\xf2\xfb\xa3\xe4\xf7\x87\x81\x3f\x8f\xd6\x21\x70\x4a\ +\x55\x84\xfa\x7d\xd0\x78\x08\x11\xe9\xe5\x13\x3c\x1d\xed\xf5\x0b\ +\x01\xb9\x3d\x50\x72\x8b\x50\x72\x0a\x55\x2b\x93\x5b\x84\x92\x53\ +\x04\x79\x3d\x90\x73\x4b\x50\x72\x0a\xd5\x39\x7a\x87\x73\xfe\x46\ +\x59\x73\x1a\x80\xa2\x4f\xe9\xca\x31\x6e\xc2\x08\xe1\xf1\xe0\x11\ +\x82\x60\x30\x48\x7d\x7d\x3d\x7e\xbf\x5f\x7a\xf4\xd1\x47\x9f\x3d\ +\x74\xe8\x50\x2d\xd0\x04\x34\xa3\x2a\x41\x08\xd5\x1d\x44\x74\x2d\ +\xf9\x50\xc1\xfd\xff\x0c\xb2\x4d\x70\xd1\xfc\xa7\x93\x96\x73\x2e\ +\x94\xa8\xf3\x03\x76\xf5\xb1\x22\xca\x78\xee\xf4\xd0\x49\x35\x90\ +\x1f\xab\x34\x51\xc2\x41\x51\xb4\xc5\x1f\x05\x45\x89\xca\xa9\x2d\ +\xde\x83\xd7\xeb\xc1\xef\xf7\xd3\xd2\xd2\x42\x30\x18\x54\x5e\x78\ +\xe1\x85\xd9\x5b\xb6\x6c\x39\x04\x34\x46\x8e\x26\xc0\x4f\x8c\x02\ +\x38\x41\xe6\xde\x0e\xc6\xbe\x2f\xe0\xa6\xf9\x77\x0b\x76\x43\xb2\ +\x74\xc8\xd7\x0e\x49\x92\x4c\x71\xd1\x73\x25\x4a\xba\xa2\xa0\xc8\ +\x32\x92\x2c\x23\x4b\x92\x2e\x07\xea\xfe\x46\x9f\xcf\x47\x20\xe0\ +\x27\x18\x0c\x12\x0c\x06\x99\x3f\x7f\xfe\xdb\xff\xf8\xc7\x3f\xb6\ +\x03\x0d\xa8\x4b\xbf\xb1\x0a\x20\xe3\x60\x19\x58\x43\x46\xbe\x0f\ +\xd0\x56\x70\xc5\x32\x18\xe0\xb4\xd5\xdb\xa5\x6b\x44\x87\xc3\x61\ +\x24\x49\x22\x14\x0e\x13\x0e\x85\x91\x65\x09\x29\x42\xae\x2c\x2b\ +\xc8\x8a\xac\x92\x2e\x49\x84\xc3\x12\x8a\x22\x13\x96\x24\x64\x49\ +\x26\x2b\xcb\x4b\x7e\x7e\x3e\x79\x79\x79\xc8\xb2\x4c\x20\x10\x20\ +\x18\x0c\x12\x08\x04\xf8\xe4\x93\x4f\x96\xfc\xe1\x0f\x7f\x58\x87\ +\x4a\x7a\x3d\xaa\x12\x34\xa2\xf6\x03\x82\xa4\xd8\xfa\xa1\xad\xa6\ +\x82\x33\x64\xfe\xdd\x82\x91\x58\x2d\x6c\x95\xee\xa4\xe5\x87\xc3\ +\x61\x9d\xb0\x60\x30\x48\x28\x14\x22\x18\x0c\xa9\x0a\xa0\xc8\x51\ +\x45\x90\x54\xa5\x08\x4b\x12\x8a\xac\x50\x58\x58\x40\x49\xcf\x9e\ +\x74\xe9\xd2\x85\x50\x28\xa4\xe7\xd7\x8e\x8a\x8a\x8a\x4d\xd3\xa6\ +\x4d\x5b\x84\x4a\xf8\x29\xa2\x0a\xa0\xf9\x7f\xbd\x03\xe8\xb4\xf5\ +\x43\x5b\x4d\x05\x1b\xd0\xde\xe6\x3f\x95\x9d\x3d\x89\x5a\xbc\x55\ +\x9c\xda\xa2\xc3\x04\x02\x01\x9a\x9b\x9b\x69\x6e\x6e\xc6\xef\xf7\ +\x13\x08\x04\x0c\x64\x47\x5d\x43\x41\x41\x01\x7d\xcf\x3b\x8f\x5e\ +\x3d\x7b\x22\x84\x30\xb5\x76\xe3\xef\xbe\x7d\xfb\x76\x3d\xf1\xc4\ +\x13\x6f\x10\x6d\xf9\xb1\xe4\xeb\xbe\x3f\x15\xf2\x21\x83\x1f\x89\ +\x72\x34\x2d\xdc\x9a\x6b\xb5\x62\x9b\x98\x11\x89\x5a\xbf\x53\x25\ +\x30\xfa\xfc\x50\x28\x84\xdf\xef\xa7\xa9\xa9\x89\xc6\xc6\x46\x02\ +\xc1\x20\x1e\x21\xf0\xf9\x7c\x74\xe9\xd2\x85\x82\x82\x02\x4a\x4b\ +\x4b\x29\x2d\x2d\x45\x51\x14\x5b\xd2\xb5\xdf\xaa\xaa\xaa\xca\x49\ +\x93\x26\xcd\xf5\xfb\xfd\x1a\xf1\xa7\x50\xc9\xd7\xfc\xbe\x6e\xfa\ +\x53\x25\x1f\x32\xf0\x85\x90\xce\x0a\x2b\xe2\x8d\xe7\x4e\x47\x04\ +\x9a\x0b\x68\x69\x69\xc1\xef\x0f\x70\xdb\x6d\xd6\x5f\x23\xd1\xe4\ +\x12\x1d\xb5\xb5\xb5\x35\x53\xa6\x4c\x79\xb1\xae\xae\xee\x04\x66\ +\xf2\x4f\x63\xf6\xfb\x72\x3a\xe4\x43\xa6\xf6\x04\xba\xa4\x0c\x6e\ +\xbb\x86\xb8\xa5\x67\x0b\x5f\x6f\x3c\x77\xa4\x04\x91\xb0\xe6\xdb\ +\x35\x2b\x10\x08\x04\x6d\x1f\x43\x6c\x3f\xc1\xea\xb7\xbe\xbe\xbe\ +\xe1\x99\x67\x9e\x79\xb1\xb2\xb2\xb2\x9a\x28\xf9\xf5\xa8\xe4\xa7\ +\x35\xe4\xb3\x42\x9b\x6c\x0a\x4d\x9c\x9c\x59\x92\x93\xc1\xae\xc3\ +\x67\x77\x1e\x17\x36\x8c\xef\x25\xad\x67\x2f\x49\x84\xc3\x21\x7c\ +\x16\xff\x43\xe8\xa4\xe5\x9f\x3e\x7d\xba\x65\xe6\xcc\x99\x2f\x55\ +\x54\x54\x1c\x22\x9e\xfc\x56\x75\xfa\x62\x91\x79\x05\x30\xc0\x2d\ +\xb2\xdd\x56\x1a\xab\xe7\x97\xac\x5f\x60\x3c\xd7\x47\x02\x92\xaa\ +\x00\x52\x38\x4c\x28\x1c\x26\x27\x3b\xc7\x54\xa6\x24\x49\x3a\xc9\ +\x76\xad\xbf\xb9\xb9\x39\x3c\x6f\xde\xbc\x57\xd7\xae\x5d\xbb\x07\ +\x33\xf9\x8d\xa8\xe4\x9b\xa6\x7c\x5b\x43\x3e\x64\xe2\xe5\xd0\x04\ +\xe7\xed\x09\x27\xe6\xdf\xae\x95\xdb\x9d\x1b\x5d\x80\x66\xfe\x8d\ +\xbf\x05\x05\xe7\xea\xe5\x4b\x92\x94\xb4\xc3\xe7\xf7\xfb\xe5\x05\ +\x0b\x16\xbc\xf1\xe1\x87\x1f\x6e\xc3\x9a\x7c\xad\xc7\xef\x0a\xf9\ +\xd0\xc6\x16\x20\x15\xb4\xd5\xf8\x3f\x59\x5a\x52\x25\x90\xcd\x73\ +\x01\xe1\xc8\xf8\x5e\x0a\x87\x29\x2d\x53\xb7\xa3\x19\x5b\x7e\xa2\ +\x63\xf1\xe2\xc5\x7f\x7d\xeb\xad\xb7\x36\x10\x9d\xe5\x33\xce\xf4\ +\xb9\x66\xf6\x8d\xe8\xb0\x0a\x90\x0e\xd2\x51\x9a\x44\xe6\xdf\xca\ +\x0d\xc4\xb6\x7e\x6d\x41\x47\x55\x00\x95\xf8\x70\x38\x8c\x2c\xcb\ +\x94\x95\x96\xea\xe4\x27\x6b\xfd\x6b\xd6\xac\x59\xf2\xe2\x8b\x2f\ +\xae\x20\xda\xf2\x8d\xc3\x3d\x8d\xfc\xb4\x87\x7b\x76\xc8\xd8\x07\ +\x22\x3a\x13\xec\x88\xb6\x8b\x53\xa2\x09\x3a\xf9\x92\x24\x23\x49\ +\x72\xa4\x03\x18\xa6\xb0\x50\x7d\xe9\xd5\x49\xcb\xdf\xb6\x6d\xdb\ +\xba\x69\xd3\xa6\xfd\x1d\x95\x70\x3b\xb3\xef\x3a\xf9\x90\x09\x0b\ +\xd0\x01\x5e\xe5\x4a\x96\xc7\xae\xd5\x3b\x22\x5f\x89\x2e\xdb\x46\ +\x4d\xbf\x3a\xbf\x1f\x96\xd4\xd6\x1f\x0e\x87\x39\xef\xbc\xf3\x92\ +\xb6\xfa\x40\x20\xc0\xee\xdd\xbb\xb7\x4c\x9e\x3c\xf9\x6d\xcc\xe4\ +\x1b\x27\x7a\x5c\xf5\xf9\xb1\x68\x57\x17\xd0\x9e\x2b\x80\x4e\x9e\ +\xa5\x25\xf9\xc4\x76\x18\x89\xce\xf1\x4b\x12\xe1\x50\x08\x49\x92\ +\xe9\xd3\xa7\x4f\x52\xf2\xb7\x6d\xdb\xb6\x6e\xc2\x84\x09\x73\x25\ +\x49\x32\x9a\x7d\xab\xb1\x7e\xda\x13\x3d\xc9\x90\x59\x05\xe8\xe0\ +\xae\xc1\x89\xff\x4f\xf6\xdc\x15\x45\x56\x5d\x81\x24\x11\x0a\x85\ +\x09\x85\xc2\x14\x97\x14\xe3\xf1\x78\x12\x9a\xfd\x35\x6b\xd6\x2c\ +\x79\xec\xb1\xc7\xde\x92\x24\xe9\x14\x50\x47\x94\xfc\xd8\x29\xde\ +\x8c\x91\x0f\xed\xb0\x18\xd4\x91\x91\xca\xa8\x40\x6d\xf9\xd1\x5f\ +\x49\x96\x91\x64\x09\x49\x0a\xd3\xab\x67\x4f\xdb\x56\x1f\x08\x04\ +\xe4\xc5\x8b\x17\xff\x75\xd6\xac\x59\xcb\x89\x9a\x7d\xd7\xa7\x78\ +\x9d\xa2\xcd\x14\xa0\xbd\x37\x7c\xd8\xc1\xe9\x28\xc0\x22\x67\xa4\ +\x2f\x20\x47\x4c\x7f\x98\x70\x28\x84\xd7\x9b\xc5\xb9\xe7\x9e\x6b\ +\xd9\xea\x5b\x5a\x5a\xc2\x0b\x16\x2c\x78\xe3\x8d\x37\xde\x58\x4f\ +\x74\x98\x67\xec\xed\xb7\x29\xf9\x70\x06\x59\x80\x4c\x2a\x58\x22\ +\x85\x88\xae\x03\xa8\x93\x3f\x25\x25\xc5\xa6\xf5\x7c\xed\xb7\xb1\ +\xb1\xb1\x65\xee\xdc\xb9\xf3\x16\x2d\x5a\xb4\x0d\xfb\x0e\x9f\x4e\ +\x7e\xc6\x6e\x26\x06\x67\x8c\x02\xb4\x15\xa2\xe3\x7f\xd4\xad\x5d\ +\xa8\x2e\x40\x8e\x6c\xeb\x2a\x28\x28\x88\x23\xbf\xae\xae\xae\x61\ +\xe6\xcc\x99\xb3\xd7\xac\x59\xf3\x0d\xf1\x33\x7c\xb1\xfb\xf9\xda\ +\xa4\xe5\x6b\xc8\xa8\x02\x74\x4c\xa3\x6f\x8d\x54\x9f\xb9\x71\xe3\ +\xa7\x2c\xa9\xe4\x77\xeb\xd6\xcd\xb4\xb1\x23\x18\x0c\x52\x53\x53\ +\x53\xf3\xf4\xd3\x4f\xcf\xb2\x58\xd8\xb1\x1a\xe7\xb7\x29\xf9\x70\ +\xd6\x02\xb4\x0a\x46\xae\x84\x10\xe4\x77\xef\x6e\x6a\xfd\x55\x55\ +\x55\x95\x8f\x3f\xfe\xf8\xac\xca\xca\xca\x63\x44\x7d\xbe\xdd\xdc\ +\x7e\x9b\x93\x0f\x67\x15\xc0\x15\x08\x8f\x20\x2f\x37\xd7\xd4\xfa\ +\xf7\xee\xdd\xbb\xeb\xd1\x47\x1f\x7d\x39\xb2\x99\x43\x6b\xf5\x76\ +\x4b\xba\xed\x42\x3e\x64\x58\x01\x14\x3a\x8f\x1b\x88\x79\xdf\x2e\ +\xa1\x1c\x8a\xb6\x67\x3f\xfa\xb6\x4e\x76\x76\xb6\x4e\xfe\xb6\x6d\ +\xdb\x3e\x9f\x34\x69\xd2\xeb\x7e\xbf\x5f\x23\x5e\xeb\xe9\x1b\x77\ +\xf0\x66\x64\x6e\x3f\x55\x9c\x51\x8b\x41\x99\x86\xfe\x7e\x9e\x21\ +\xec\x11\x82\x2c\xaf\x57\xf7\xf9\x2b\x56\xac\xf8\xc7\x83\x0f\x3e\ +\xf8\xaa\xdf\xef\x3f\x09\x68\x87\xa6\x00\x19\x9f\xdb\x4f\x15\x67\ +\x8c\x0b\x50\x94\xf4\xbe\x9b\x93\xa8\xe5\x1b\x5f\xc4\xb4\x92\xd1\ +\xde\xdc\x89\x90\xaf\xbc\xf3\xce\x3b\x6f\xce\x9d\x3b\x77\x0d\xe6\ +\xe5\x5c\xe3\x18\xdf\xf4\x12\x67\x7b\x93\x0f\xe9\x29\x80\x62\x38\ +\x1c\x8f\x57\xd3\x25\xa8\x2d\x91\x8c\xf0\x88\x90\x4e\x3c\x42\x21\ +\x14\x0a\x12\x08\x04\xe4\xe7\x9f\x7f\xfe\x7f\x16\x2d\x5a\xf4\x2f\ +\xa2\x63\xfc\x06\xa2\xad\x5e\x23\x5f\x1b\xe3\x77\x08\xf2\x21\x75\ +\x05\x30\x12\x2f\x45\x0e\xbc\x5e\x2f\xb2\xd4\x41\xde\xcf\x4f\x01\ +\x4e\xfc\x7e\xac\x52\x78\x84\x40\x16\x02\x8f\x47\x00\x1e\x4e\x9f\ +\x3e\x1d\x7c\xe4\x91\x47\xa6\x6d\xda\xb4\xe9\x5b\xcc\x2d\xff\x34\ +\xd1\xb5\x7c\xd3\x04\x4f\x47\x21\x1f\x52\x53\x80\x58\xf2\x43\xa8\ +\x37\x46\xb6\xcf\x07\x3e\x9f\xfb\xb5\xcb\x10\xb4\x8e\x5b\x6b\x51\ +\x51\x51\xb1\xeb\xce\x3b\xef\x7c\xe5\xc0\x81\x03\x35\x44\xc9\x37\ +\xce\xe9\xfb\x89\x76\xf6\x3a\x1c\xf9\x40\x4a\xdf\x0a\xf6\x02\x39\ +\x40\x37\xe0\x5c\xa0\x30\xf2\xdb\x35\x12\x9f\x45\xe7\xe9\xf4\xb7\ +\x06\xc6\x46\x10\x40\x25\xfa\x34\xd1\x5e\xbe\xe6\xef\x3b\xc4\x30\ +\x2f\x19\x9c\x5a\x00\xad\xf5\x4b\xa8\xad\xbe\x05\xf5\x66\x41\xd5\ +\xf2\x6c\x54\x05\x81\x33\x5f\x09\x34\x05\x08\x13\x7d\x16\xcd\x44\ +\xc7\xf7\xc6\x39\xfd\x0e\xd1\xd3\x4f\x84\xa4\x0a\xa0\x28\x8a\x12\ +\xb1\x02\xda\x8d\x87\x50\x6f\x14\xd4\x1b\xcd\x41\x25\xdf\xc3\x99\ +\x4f\x3e\x58\xbb\x41\x7f\xe4\x30\x4d\xeb\xd2\xc1\xc9\x07\x07\x2e\ +\x40\x17\x14\xc2\x83\x4a\xb2\x17\xf5\xd3\xf1\xd9\x91\xdf\x2c\xcc\ +\xe4\x9f\xc9\x4a\xa0\x18\x7e\x8d\x4a\xa0\x0d\xef\xf4\xc9\x1d\x3a\ +\x01\xf9\x90\x7a\x27\x50\x36\x9c\x6b\x3e\x50\x23\xff\x4c\x26\x3e\ +\x16\xc6\x0e\xb1\x76\xe8\xad\x1e\x3a\x5e\x67\xcf\x0e\x8e\x2d\x00\ +\x98\x3a\x84\xc6\x03\xfe\x77\x91\xaf\xc1\x68\x0d\xf4\xa3\xb3\x10\ +\xaf\x21\x25\x05\x00\x5d\x09\xf4\xa0\xbb\xd5\xe9\x94\xe8\x54\x2d\ +\x3e\x16\x29\x2b\x80\x65\x21\x1d\x7d\x8a\x2f\x03\xe8\xac\x84\xc7\ +\xe2\xff\x03\x8b\x04\xf0\x49\x6a\x2c\xa5\x0d\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x1c\x4b\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x1c\x00\x49\x44\x41\x54\x78\x9c\xed\x5d\x7d\x78\ +\x14\xf5\x9d\xff\xcc\xee\x66\x43\x02\x24\x40\x81\x24\x10\x36\x09\ +\x04\xa4\x68\x39\x11\x09\xef\xbe\xa1\xd5\xf3\xb9\xe3\x6a\x78\x17\ +\xa5\x22\x2a\x20\xa0\x28\xa5\xa5\xa5\x16\xc4\xb7\x5a\xb5\xda\x37\ +\x7a\x6d\xef\xec\x95\x0a\x24\x28\xb6\x3d\x78\xee\x7a\x02\x9e\x1e\ +\x28\x04\x4c\x80\x20\xef\x92\xf0\x26\x0d\x21\xef\xd9\xf7\x79\xbb\ +\x3f\x66\x67\x76\x66\x76\x5e\x7e\xb3\x3b\xbb\x6c\x6c\x3e\xcf\x33\ +\xcf\xce\xfc\xe6\xf7\x36\xfb\xf9\xbe\xfd\x5e\x66\x17\xe8\xc6\xdf\ +\x35\xa8\x04\xf2\x5b\x2d\xdb\x0d\xfb\xc1\xeb\x9c\x13\xc3\x65\x21\ +\x2f\x15\x39\x1c\xb2\x73\xf1\xe8\x46\x6a\xc1\xab\x0e\x4e\x96\x6e\ +\x09\xa4\xe4\x89\xc4\x3b\x21\x08\x8d\x33\x72\xc8\x85\xa1\x1b\xa9\ +\x81\x9c\x74\x36\x72\x30\x91\x4f\x0e\x16\x85\x80\xd4\x02\x50\x10\ +\x08\x77\x03\xe8\x01\x20\x33\x72\xee\x42\x54\x08\xba\x91\x1a\x88\ +\xe4\x33\x00\xc2\x00\x42\x00\x82\x91\x73\x51\x38\x88\x41\x22\x00\ +\x72\xed\xef\x01\xa0\x57\xe4\xc8\x82\x20\x08\x8e\xc8\xd1\x8d\xd4\ +\x80\x8b\x1c\x21\x00\x01\x00\xde\x48\xba\xdc\x02\x10\x0b\x81\x15\ +\x0b\xe0\x82\x40\x78\x2f\x00\x7d\x00\xe4\x40\x10\x08\xd1\x0a\x74\ +\x23\x35\x10\xb5\x3f\x08\xa0\x23\x92\x46\x43\x10\x08\xc6\x6a\x65\ +\xf1\xb8\x80\x6c\x08\xe4\xf7\x8d\x9c\x67\xa0\x5b\x00\x52\x09\x0e\ +\x02\xe1\xfe\xc8\x75\x18\x80\x0f\x02\x3f\x96\x5d\x31\xa9\x0b\x10\ +\xdd\x80\x0b\xd1\x38\x20\x1b\x40\x4f\x9e\xe7\xdf\xb4\xda\x68\x37\ +\xec\x03\x45\x51\x53\xa1\x8c\xc5\x28\x24\xc1\x05\x00\xb1\x23\x81\ +\x0c\x08\xc2\x80\x6b\x4d\x4d\x08\x87\xc3\x10\x05\x90\xa2\xa0\x3a\ +\xd7\xba\x16\xd2\xac\x5d\x03\x94\x3a\x41\x5e\x7b\x1c\xf7\xa2\x3d\ +\x33\xce\xa3\xc8\x47\x98\xdf\xb4\x7c\x02\x70\x3a\x9d\xe8\xd5\xab\ +\x17\xa0\x1c\x8d\x59\x86\x15\x17\x20\x3f\x1c\xb2\x03\xe1\x30\x0d\ +\x6b\xe4\x5b\x27\xda\x6e\xe2\x49\x48\x8f\x87\x70\xc3\x1c\x16\x05\ +\xc6\x08\x2c\x27\x0e\xfd\x13\x9b\x93\xb1\x62\x01\x0c\x11\x3f\xd9\ +\x09\x68\x7d\x32\xad\x81\x49\xbe\x98\xbc\x84\x65\xd2\x0d\xb6\x08\ +\x00\x19\xf9\xb1\x2e\xc0\x4c\xcb\x53\x45\x3c\x29\xe9\x89\xb8\x80\ +\x74\x15\x0b\xdb\x2c\x80\x31\xd9\xd6\xb4\xde\x2e\xe2\xcd\xcc\xbc\ +\x65\x37\x90\xa8\x0b\x20\xac\x23\x95\xb0\x49\x00\xe2\x27\x9f\x44\ +\xeb\x0d\x09\xb6\x48\xbc\x19\xa1\x56\xb4\x5c\xf7\x4e\x9a\x91\x6c\ +\x04\xdb\x5d\x00\x39\xd9\x64\xbe\xde\xb2\x40\xc4\x71\x4f\x71\x9f\ +\x34\x8f\x49\x5e\xa2\xb2\x69\x80\xb4\x70\x01\x96\x48\x96\xa5\x4d\ +\x9d\x32\x45\x3a\xe7\xf9\xe8\xd0\xd7\xe9\x74\x22\x27\x27\x07\x1e\ +\x8f\x07\x13\x27\x4e\xc4\xf4\xe9\xd3\xd1\xa7\x6f\x5f\xcd\x36\xc6\ +\x8f\x1f\x2f\x95\x3d\x78\xe8\x90\x76\x3f\x94\x1d\xc0\xd8\x5b\x6e\ +\x91\x2e\xab\x6b\x6a\x62\xf2\x4e\x9c\x38\x11\x14\x45\x69\x1e\xd9\ +\xd9\xd9\x18\x30\x60\x00\x46\xdd\x78\x23\xee\xbf\xff\x7e\x8c\x1e\ +\x3d\x3a\xa6\xcd\x54\xc2\xa6\x19\x3c\x2a\x86\x6c\x3d\xf2\x85\x2f\ +\x42\x79\x1d\x53\x9b\xb2\x82\x48\x2d\xfa\x31\x80\x1a\x2c\xcb\xa2\ +\xb5\xb5\x15\x47\x8e\x1c\xc1\xaf\x7f\xfd\x6b\xcc\x9b\x37\x0f\xd5\ +\xd5\xd5\xca\xba\x84\x86\x74\x9e\x46\x95\x47\x7e\x18\xe5\x25\x40\ +\x30\x18\xc4\xe5\xcb\x97\xb1\xeb\x83\x0f\xf0\xcc\xca\x95\x78\xeb\ +\xcd\x37\xc1\x45\x87\x74\x29\xc7\x75\x73\x01\xf1\x6a\xbd\x22\xaf\ +\x0c\x9f\x7c\xfa\xa9\x94\x4e\xd3\x34\x2e\x5c\xbc\x88\x4d\x9b\x36\ +\x61\xd7\x07\x1f\xa0\xad\xad\x0d\xdf\x5d\xbd\x1a\x5b\xb7\x6e\x45\ +\x5e\x5e\x5e\xdc\x41\x61\x3c\x3e\x7f\xdf\x27\x9f\x48\xe5\x78\x9e\ +\x47\x5b\x5b\x1b\xaa\xaa\xaa\xb0\x71\xe3\x46\x78\xbd\x5e\xec\xd8\ +\xb1\x03\xc5\xc5\xc5\x78\xe0\x81\x07\x74\xeb\x48\x26\x6c\x9c\xc3\ +\x37\xd2\x74\xca\x9c\x7c\x42\xad\xa7\x8c\xf2\x0a\x15\x21\xc3\xed\ +\x46\x69\x69\x29\x36\x6c\xd8\x80\x69\xd3\xa6\x01\x00\xfc\x7e\x3f\ +\x36\x6f\xde\xac\x28\xa7\x19\xf0\xe9\xd4\x4b\x42\xbe\x56\x3e\x45\ +\xd4\x43\x51\xe8\xdb\xb7\x2f\xee\xbb\xef\x3e\xac\x5a\xb5\x4a\x4a\ +\xdf\xb9\x73\x67\xac\xa5\xd1\x3a\x92\x80\x24\xb8\x00\xe3\x60\x8f\ +\x38\xd0\xd3\x21\x43\xf7\x8b\x50\xe5\x17\xc9\x98\x3f\x7f\xbe\x94\ +\x56\x55\x55\xa5\xb8\xa7\x87\x18\xd2\x0d\x88\x20\x12\x10\x8d\xa3\ +\x6c\xfc\x78\x29\xcb\xe5\xcb\x97\x0d\x7a\x63\x50\x97\x0d\x48\xaa\ +\x0b\x30\x9d\xe8\x89\x14\xf6\x85\x1b\x70\xbc\x71\x2b\x2e\x75\xec\ +\x43\x7b\xe8\x02\x18\x2e\x88\x1e\xae\x3e\xc8\xeb\x75\x33\x6e\x1c\ +\x38\x0f\x9e\x9c\x29\x96\x1e\x58\x4e\xdc\xb0\x61\xc3\xa4\xf4\x86\ +\x86\x06\x7b\x87\x88\x26\xf9\x8d\xca\xc9\xd3\xdc\x6e\xf7\x75\x1b\ +\x25\x24\x69\x14\x40\xe0\xef\x23\x69\xa7\x9b\xde\xc7\xde\x0b\x1b\ +\xc0\xf2\x21\xc5\xfd\x00\xdd\x8c\xf3\xad\x7b\x70\xbe\x75\x0f\x46\ +\x0d\x9c\x83\xdb\x8a\xd6\x83\xa2\x1c\x91\x96\xf4\x7a\x20\x55\x6e\ +\xd0\x4d\x6b\xf7\x4c\x89\x31\x72\x29\x06\xe5\x0f\xc9\x46\x1c\xa3\ +\x47\x8f\x36\x17\x70\x3e\xae\x3d\x9f\xa6\x48\xc2\x44\x10\x39\xf9\ +\x67\x9a\xff\x82\x8f\xce\xaf\x15\x3a\xe2\xc8\x42\x59\xe1\x4a\x94\ +\xf6\xfb\x47\x64\x3a\xfb\xa0\xc9\xff\x39\xf6\x5e\x78\x11\x4d\xfe\ +\x13\x38\xd1\x58\x89\x2c\x57\x3f\x94\x15\xae\xb4\x34\x29\x44\x01\ +\xa8\xab\xab\x93\xae\xf3\xf3\xf3\x95\xf9\x75\x9f\x46\x2b\xd1\x62\ +\x60\xa8\x51\x8e\xe7\x79\x74\x74\x74\xe0\xc0\x81\x03\xd8\xf8\xab\ +\x5f\x01\x00\x7a\xf6\xec\x89\xc7\x9f\x78\xc2\xb0\x2e\xde\xa0\xfd\ +\x44\x61\xb3\x0b\x20\x27\x3f\xc0\x34\x63\xdf\x85\x0d\x00\x00\x07\ +\xe5\xc2\xfd\xc3\x7f\x83\x41\x39\x65\x42\x1e\x00\xf9\xbd\xc7\x62\ +\xfa\xc8\xff\x40\xe5\xe7\xd3\xe1\x0b\x37\xa0\xe6\x6f\xbf\xc1\x88\ +\xaf\xfd\x33\xfa\x66\x97\x9a\x76\x42\xde\xea\xe6\x2d\x5b\xa4\xf3\ +\xb2\xb2\x32\x43\x33\xaf\x19\x14\x1a\xdd\x37\xc9\x0f\x00\x93\x54\ +\x73\x02\x0e\x87\x03\x14\x45\xa1\x4f\x9f\x3e\x98\x3e\x7d\x3a\xe6\ +\xcd\x9b\x87\x82\x82\x02\xe3\x6a\xcd\xda\x4d\x00\xb6\xee\xe4\x21\ +\x25\x1f\x00\x4e\x34\x56\x82\xe6\x84\x4d\x2d\xa3\x06\xce\x55\x90\ +\x2f\x7e\x91\x99\xae\x5c\x94\x15\x3e\x0d\x00\xe0\x79\x0e\xb5\x57\ +\xff\x10\xad\x4b\xab\xfd\xc8\xc1\x30\x0c\xce\xd5\xd5\x61\xfd\xfa\ +\xf5\xd8\xbd\x6b\x17\x00\x20\x2b\x2b\x0b\x0f\x3d\xf4\x10\x59\x10\ +\x25\xbb\x6f\x25\xc8\x33\x0b\x2e\xe5\x68\x6f\x6f\xc7\xa9\x53\xa7\ +\x70\xfa\xf4\x69\xc3\xf6\x93\x0d\x1b\x97\x83\xf5\xc9\xd7\x32\xcf\ +\x97\xda\xff\x4f\x3a\x1f\xd9\xbf\x5c\xd7\x84\x97\xf4\x99\x86\xff\ +\x95\xca\x7c\xaa\xeb\xe7\x27\x4e\x98\x10\xd3\x27\x71\x86\x2f\x37\ +\x37\x17\x2f\xbd\xfc\x32\x0a\x06\x0d\x52\xf6\x29\xf6\x21\xf4\xef\ +\x69\xb4\x69\x98\x37\x82\xfd\xfb\xf7\x2b\xca\x05\x02\x01\xd4\xd7\ +\xd7\xe3\xfd\xed\xdb\xb1\x7b\xf7\x6e\xac\x5f\xbf\x1e\xb3\x66\xcd\ +\xc2\xf2\xe5\xcb\x4d\xdb\x4b\x46\x14\x60\x93\x0b\xb0\x46\x3e\x45\ +\x51\x68\x0b\xd6\x4b\xd7\xdb\x4f\xcc\x92\xdd\x15\x1e\x33\x3a\xb5\ +\x1b\x7d\x6c\x1f\xdd\x20\x56\x60\xd8\x1f\x71\xb7\x4c\x71\x71\x31\ +\x26\x4c\x98\x80\x07\xca\xcb\xd1\x37\x32\x15\x9c\x88\xef\x8f\xc7\ +\x05\xa8\xbf\x8f\xec\xac\x2c\xdc\x38\x6a\x14\x6e\x1c\x35\x0a\x14\ +\x45\x61\xd7\xae\x5d\xd8\xb6\x6d\x1b\x6e\xbe\xf9\x66\x4c\x91\x4d\ +\x6d\x13\xf7\x2f\x41\xd8\x38\x0a\x30\x1f\xf6\xc9\xd3\xc2\x9c\x57\ +\x4a\xe3\x79\x96\xa8\x7e\x96\xa3\x75\xc9\x3f\x20\x1b\xe3\xcb\x1a\ +\x8b\x9e\xc6\x76\x44\xea\x8f\x28\x6c\x0c\xc3\xc0\xe5\x72\x19\x96\ +\xa3\x69\x5a\x3a\x77\x38\x1c\xd6\x04\x44\x85\xd9\xb3\x67\x63\x57\ +\xc4\x45\x6d\xdf\xbe\xdd\x54\x00\x92\x81\xa4\xb8\x00\xcd\x6b\x21\ +\x51\xba\x76\x52\x99\x60\xf8\x00\x00\xe0\xb1\xb1\x35\xc8\x70\xf6\ +\xd4\x34\xef\x86\x69\xea\xfa\x49\xf2\xaa\xcc\x7c\x76\x76\x36\xbc\ +\x5e\x41\x18\x3b\xbd\x5e\x53\x4b\xd1\xd1\xd9\x29\x9d\xf7\xec\xd9\ +\xd3\x1a\xe9\xaa\xef\xa4\xb8\xa4\x44\x3a\x3f\x75\xea\x94\xa6\xc2\ +\xa8\x61\xb7\x1b\xb0\x25\x08\xb4\x4a\x3e\x00\xe4\xf6\x28\x92\xce\ +\xdb\x43\x17\x95\x0b\x2f\xea\x72\x26\x02\x01\x79\x9a\x2a\x78\x53\ +\xdf\x53\xa7\x0f\x19\x32\x44\x3a\xaf\xaf\xab\xd3\x0e\xe4\x64\x81\ +\x5e\xdd\xb9\x73\x9a\x65\xf5\xa0\x58\x0d\x94\xf5\x4b\xdd\x8e\xb0\ +\xa9\xd6\x1c\xa6\x41\xa9\x45\xd8\xbe\x9f\x9f\x34\x06\x18\x92\x1b\ +\x35\x77\x97\xdb\xf7\xc6\x90\xac\x2e\xa7\x48\xd3\x23\x5f\xde\xa6\ +\x3c\x5d\x2f\x42\xa7\x28\x8c\x1b\x37\x4e\xba\xfc\xe8\xa3\x8f\x62\ +\xca\x41\x45\xdc\x87\x1f\x7e\x28\x65\x19\x2f\x4e\xe7\x8a\xf9\x28\ +\x2a\xe6\xf9\x8d\x70\xfe\xfc\x79\xe9\x7c\xc0\x80\x01\xc4\xe5\xec\ +\x44\xd2\x86\x81\x80\x0e\x89\x91\xeb\x9b\x06\xce\x87\xd3\xe1\x06\ +\x00\x1c\x6d\xf8\x03\x7c\xf4\xd5\x68\x19\x8d\x72\xba\x69\xaa\xf6\ +\x14\x79\xf5\xa2\x7a\x19\xb1\xe5\xe5\xe5\x70\x3a\x9d\x00\x80\xf7\ +\xde\x7b\x0f\xe7\xea\xea\x62\x48\x17\x71\xe6\xcc\x19\x6c\xdf\xbe\ +\x1d\x80\x10\x68\xce\x9a\x35\x4b\xa1\xd9\x44\x90\x09\x56\x65\x65\ +\xa5\x94\x3c\x61\xc2\x04\xa5\xb5\x30\x38\xec\x1c\x26\xda\x26\x00\ +\x24\xe4\xcb\xaf\x7b\x67\x0e\xc2\x14\x8f\x30\x0b\xe8\xa7\x9b\xb0\ +\xed\xf3\x72\x1c\x6b\xd8\x84\xf6\xe0\x05\xb0\x3c\x03\x96\xa3\xe1\ +\x0b\x37\xe2\x4a\x47\x15\x0e\x5d\xfe\x25\x2a\x6a\xff\x49\xaa\x87\ +\x34\x06\x20\x71\x03\x45\x45\x45\x58\xbc\x78\x31\x00\x61\xad\x7e\ +\xe1\x23\x8f\xe0\xf7\x6f\xbf\x8d\xfa\xfa\x7a\x84\x42\x21\x84\x42\ +\x21\xd4\xd7\xd7\xe3\xdf\xdf\x7e\x1b\x8f\x2c\x5c\x88\x50\x48\x98\ +\xb2\x5e\xb1\x62\x85\x75\x17\x40\x51\x08\x05\x83\x38\x79\xe2\x04\ +\x9e\x5f\xbf\x5e\x0a\x00\x73\x72\x72\xb0\x60\xc1\x02\xd3\xba\xe4\ +\xcf\x6a\x97\x0b\x20\xa9\xc7\x01\xe1\x05\x90\x5e\x00\xfa\x03\xc8\ +\x8f\x1c\xfd\x01\xf4\xe2\x79\xfe\x95\xe6\xe6\x66\x43\xb2\x35\xdd\ +\x40\x24\xed\x74\xd3\x9f\xf1\x71\xfd\x8f\xc0\x70\x41\xd3\x8e\xac\ +\x98\xf8\x45\xa4\xb0\x50\xd7\x04\xd9\x8a\x5a\x55\x55\x95\xb1\xc6\ +\x9b\xa4\x6f\xde\xbc\x19\x6f\xbd\xf5\x16\x68\x9a\x56\xec\x2e\x12\ +\x21\xa6\xb9\xdd\x6e\x3c\xfb\xec\xb3\x8a\x55\x46\x75\xfd\x63\xc7\ +\x8e\xd5\xd5\x5e\x71\x26\x50\x54\x98\xfc\xfc\x7c\xbc\xf0\xc2\x0b\ +\x18\x39\x72\xa4\xe9\xf3\xab\x91\x99\x99\x09\x8a\xa2\xee\x04\xd0\ +\x00\xa0\x09\xc2\x8b\xa2\x61\x44\x7f\x2f\xc0\x14\xf6\x8c\x02\xe2\ +\x24\x1f\x00\x6e\xe8\xff\x2d\x78\x72\xa7\xe2\x78\x63\x05\x2e\xb5\ +\xef\x45\x6b\xa0\x0e\x61\xd6\x0b\x07\xe5\x42\x76\x46\x7f\xf4\xcd\ +\x2a\xc5\xe0\x9c\x5b\x51\xd2\xf7\xee\x98\xb6\xb4\xfa\xa0\x67\x09\ +\xb4\xf2\xcb\xd3\xe7\xcf\x9f\x8f\x7b\xef\xbd\x17\xef\xbf\xff\x3e\ +\x0e\x1d\x3a\x84\xba\xba\x3a\x74\x74\x08\xef\x5e\xe6\xe4\xe4\x60\ +\xe8\xd0\xa1\x28\x2b\x2b\x43\x79\x79\x39\xfa\xf7\xef\x1f\x53\x9e\ +\x14\x6e\xb7\x1b\xb9\xb9\xb9\x18\x3e\x7c\x38\x26\x4f\x9e\x8c\xfb\ +\xee\xbb\x0f\x59\x59\x59\x96\xeb\xb1\x6b\x34\x60\x8f\x05\x68\x69\ +\x89\x56\x66\x26\x0c\xf1\xe6\x91\xa5\x11\x91\x6c\x90\xae\xfb\xd0\ +\x66\xa4\x5a\x21\x3d\x4e\x01\xb1\x02\xb7\xdb\x9d\x26\x16\x00\xc9\ +\x21\xdf\x34\xf8\xb3\x43\x20\x22\xf7\xe2\x16\x0a\xab\xf9\xd2\x0c\ +\xf6\xcd\x04\xa6\x92\x7c\x2b\x24\x27\x91\x78\x2b\x43\x3e\x3b\xca\ +\x25\x03\xb6\xaf\x05\x44\x12\xb4\x32\x45\x4f\x49\xae\x65\x69\x89\ +\x68\xbd\x55\xe2\xcd\xc8\xb1\x42\x5e\x3a\x11\xad\x07\x5b\xd7\x02\ +\x80\xd8\x87\x26\x22\xdb\x6e\xf2\xe3\xf0\xff\x86\x64\x11\x9a\xf7\ +\xae\x40\xb8\x1a\xf6\x2e\x06\x69\x5d\x27\x99\xfc\x44\xb5\xde\x88\ +\x34\x3b\xad\x41\xba\x22\xb5\x41\x60\x02\xe4\xa7\x8b\x1b\xf8\x2a\ +\x90\x2e\x87\x3d\x31\x00\x90\x1c\xf2\x13\xb1\x04\xd0\x21\xab\x9b\ +\x78\x05\x52\x3e\x11\x94\x12\xf2\x2d\x9a\xfb\xbf\x47\xe2\x45\xd8\ +\x1f\x03\x90\x90\xad\xbe\x26\x24\x9f\x88\x68\xa2\x34\x1e\x47\xaf\ +\xbc\x83\x93\x8d\x7f\x86\xcb\xd1\x03\x5f\xcf\xfb\x16\x6e\xcc\x9b\ +\x09\x69\xdb\x79\x92\x48\x4f\x47\x61\xb2\x7d\x14\x20\x22\x6e\xb2\ +\x13\x88\x01\x48\xb4\x9e\xe7\x59\xfc\xf5\xcc\x6a\x9c\x68\x78\x4f\ +\x4a\xbb\xd0\xba\x17\xc7\x1b\xde\xc5\xf4\x9b\x7e\x8b\xec\x8c\x7e\ +\xda\x0f\x64\x11\xe9\x48\xb6\x16\xec\x5b\x0d\x04\xac\x93\x9b\x4c\ +\xf2\xa9\xd8\xb5\x79\x8e\x67\xf0\x5f\xa7\x9e\x52\x90\x2f\xe2\x52\ +\xdb\x01\x6c\x3b\x32\x07\xfe\x70\x73\xcc\x3d\x12\xc4\x2c\xd9\x76\ +\x11\xd8\xb3\x23\x08\x50\x98\x7a\xc8\xae\xed\x26\x9f\x32\xcb\xa3\ +\x93\xc6\xf1\x0c\x76\x9e\x5c\x86\x53\x8d\x3b\x74\x9f\xe3\x9a\xf7\ +\x24\x2a\x8e\xcc\x84\x2f\x7c\x4d\x37\x8f\xb2\x99\xae\x47\xb8\x1a\ +\xf6\x58\x00\x03\xbf\x2f\xbf\x6f\x07\xf9\xea\x7a\x63\x5c\x8d\x0e\ +\xf9\xff\x79\x7c\x31\xce\x5e\xfb\x6f\xa3\xa7\x00\x00\x34\xfb\xce\ +\xa2\xe2\xf0\x2c\x78\x43\x57\x75\xf3\x74\x75\xd2\xe5\xb0\x77\x47\ +\x10\xa0\x2b\x0c\x86\x64\xab\xaf\xe3\x21\x5f\x8b\x14\x8a\x02\xcb\ +\x87\xf1\xa7\xcf\x1f\xc5\xb9\xe6\x5d\x64\x0f\x01\xa0\xc5\xff\x85\ +\x20\x04\xe1\x06\x59\x55\x5d\x5f\xdb\xb5\x60\x6f\x0c\xa0\xbe\x36\ +\xb3\x04\x91\x34\xab\xe4\xc7\x68\xb9\x4e\x1e\x86\x0d\xe0\x4f\xc7\ +\x16\xe2\x7c\xcb\x47\xa6\xfd\x57\xa3\x35\x50\x87\x2d\xd5\xe5\xe8\ +\x0c\x5d\x49\x0a\xe9\xa4\xdb\xbf\x74\xb7\x85\xd9\x04\x7b\x37\x85\ +\x92\x68\xb7\x2a\x7f\x3c\xe4\x1b\xd6\x11\xc9\x43\xb3\x7e\xbc\x7f\ +\x6c\x01\x2e\xb4\xee\x35\xef\xb7\x0e\xda\x83\x17\xb1\xa5\xa6\x1c\ +\x1d\x41\xc2\xf7\xf7\x35\x90\x2c\x02\xed\x12\x82\xeb\x1e\x04\xca\ +\xf3\xdb\x45\x7e\x88\xe9\xc4\xf6\xda\x87\x71\xa9\xed\x00\xd9\x03\ +\x18\xa0\x23\x78\x19\x5b\x6a\xca\xd1\x1e\xbc\x48\x94\xbf\xab\x8d\ +\x06\xec\xdf\x16\x0e\xc4\x3d\x02\x80\xec\xda\x8c\x7c\xad\x60\x4f\ +\x20\xbf\x03\xdb\x8f\x3d\x8c\xcb\xed\x07\xe3\xe9\xbe\x26\x3a\x82\ +\x5f\x62\x4b\xcd\x0c\xb4\x06\xea\x34\xef\x77\x25\xc2\xd5\xb0\x75\ +\x14\xa0\xf9\xf8\x71\x08\x03\x09\xf9\xea\x36\x28\x8a\x42\x90\x6e\ +\xc3\xb6\xa3\xf3\x70\xa5\xbd\x1a\x76\xa3\x33\x78\x05\x5b\x6b\x66\ +\xa1\xc5\xff\x85\xa2\x1f\x5d\x91\x74\x39\xec\x0f\x02\x8d\x84\x41\ +\x9d\x57\xa7\xac\xe2\x1e\x09\xf9\x00\xfc\x74\x0b\xb6\x1d\x9d\x87\ +\xab\x9d\xb5\x64\x1d\x06\x30\xb9\xe4\x59\x4c\x2e\x59\x65\x9e\x31\ +\x02\x6f\xa8\x01\x5b\x0f\xcf\x42\xb3\xef\x6c\x97\x27\x5e\x84\xbd\ +\x53\xc1\x56\xb5\x5b\x4b\xdb\x35\xea\x33\xba\x16\xc8\x6f\xc6\xbb\ +\x47\xe6\xe2\x9a\xef\x14\x71\x57\xe5\xe4\x53\xa0\xb0\xaf\xfe\x75\ +\xa2\x72\xbe\x50\x23\x2a\x0e\xcf\xc4\x9c\x5b\xb6\x61\x40\x4f\xeb\ +\x5b\xb9\xf5\x60\x26\x50\x5a\x5b\xd5\xed\x80\x7d\x41\x60\x4c\x62\ +\x82\x41\x1f\xe1\xb5\x2f\xdc\x88\xca\xc3\x33\x2d\x91\x3f\xa9\xe4\ +\x19\x85\xe6\x4f\x2a\x79\x06\x53\x4a\xbe\x43\x5c\xde\x17\x6e\x42\ +\x45\xf5\x4c\x34\x7a\x8f\x13\x97\x01\x8c\x87\x7e\xf1\x94\xb5\x03\ +\xf6\x05\x81\x1a\xa6\xdf\xb6\x11\x80\xce\xb5\x37\xdc\x80\xca\x23\ +\xb3\xd1\x2c\xf3\xcb\x66\x98\x54\xbc\x52\x93\x6c\xab\x42\xe0\xa7\ +\x5b\x50\x51\x33\x0b\x57\x3b\x8f\xe9\xe6\xe9\x0a\x23\x82\xe4\x04\ +\x81\x5a\xbe\x5c\xef\x3a\x4e\xf2\x3b\x43\x57\xb0\xb5\x66\x06\x5a\ +\xfc\xe7\x40\x8a\x49\xc5\x2b\x31\x65\xe8\x6a\xfd\xfb\x25\xcf\x18\ +\xde\x57\x23\x40\xb7\xa1\xa2\x66\x36\x1a\x3a\x8e\xca\xba\x97\xde\ +\x84\xab\x61\xff\xbf\x7d\xc5\x31\xc4\x53\xdc\x26\xb8\x6e\x0f\x5e\ +\xc2\xd6\xc3\x33\x88\xc7\xe6\x00\x30\xb1\xf8\x29\x22\x72\x27\x97\ +\x3c\x83\x31\x85\xe4\xef\xe9\x05\x99\x76\x54\x1c\x9e\x83\xf6\xe0\ +\xc5\x2e\x43\xba\x1c\xf6\xee\x09\x54\x9f\x5b\x0d\x02\x4d\x22\x7e\ +\x8a\xa2\xd0\x16\x38\x8f\xca\x23\xb3\xd1\x19\xfa\x1b\x71\xdf\x26\ +\x16\x3f\x85\xa9\x43\xbf\x67\x98\x47\x6c\xab\xa1\xf3\x28\x4e\x34\ +\xfc\x99\xb8\x6e\x00\xf8\x46\xc1\x6c\xf4\xc9\xf2\x58\x2a\x93\x2e\ +\xb0\x6f\x4f\x20\x40\x64\xfa\xa3\x37\x8c\x85\x41\x8b\xfc\x16\xff\ +\x17\xa8\x3c\x32\x17\xbe\xb0\xfe\x4a\x9d\x1a\x13\x8a\x56\x58\x22\ +\xbf\xa2\x66\x0e\x42\x4c\x87\x61\x7e\x39\x6e\x1d\xf2\x18\xee\xbe\ +\x61\x03\x8c\x07\xbe\xe9\x0b\xdb\xdf\x0c\x8a\xcb\xf4\x13\x58\x82\ +\x66\xdf\x59\x54\x1e\x9d\x03\x3f\xe1\x5a\x3d\x20\x90\x7f\xdb\xb0\ +\x35\x86\x79\xae\x07\xf9\xe9\xe4\x2a\x92\xb6\x25\x0c\x20\x37\xfd\ +\x66\x73\x01\xd7\xbc\x27\xf0\x6e\xed\x83\x96\x76\xeb\x98\x91\x2f\ +\x27\x21\xd9\xe4\xa7\x13\xe1\x6a\xd8\xba\x2b\xd8\x68\x3a\x17\x7a\ +\xf7\x4c\xfc\x7e\x63\xe7\x31\xbc\x57\x3b\x1f\x01\xba\x95\xb8\x3b\ +\xe3\x8b\x96\x27\x95\xfc\xb1\x43\x16\x99\x92\x9f\xce\xa4\xcb\x91\ +\xfc\xff\xfc\x4d\x40\x18\xae\x76\xd6\xe2\xdd\xa3\xf3\x2c\x92\xbf\ +\x0c\xb7\x0f\xfb\xbe\x41\x77\x12\x27\xff\x9e\x1b\x5e\x80\x16\xf9\ +\xea\x21\x60\xab\xff\x3c\xbe\x4c\xc2\xba\x84\x9d\x48\xca\x5a\x00\ +\x29\xe1\x46\x6e\xe1\x4a\xc7\x67\x78\xb7\xf6\x41\x04\x99\x76\xe2\ +\x3e\x08\xe4\xff\x40\xbf\x8f\x09\x93\xff\xa8\x26\xf9\x5a\xe3\xfe\ +\x56\x7f\x3d\x36\x57\x97\xa3\xb2\x66\x2e\x2e\xb5\x55\x11\xb7\x91\ +\x6a\x24\x65\x43\x88\xfc\xda\x28\x0e\x50\x5c\xca\xce\xbf\x6c\x3f\ +\x88\xed\xc7\x16\x58\x22\xa7\xcc\xb3\x34\x05\xe4\xbf\xa8\xe8\xa9\ +\xde\x84\x4f\x8b\xbf\x0e\x9b\xab\x67\xa0\x33\x78\x05\x21\xa6\x13\ +\xdb\x6a\x1e\xc4\xc5\xd6\xfd\xc4\x6d\xa5\x12\xb6\xaf\x05\x18\x0d\ +\x09\xf5\xca\x40\x41\xce\x11\x6c\x3f\xb6\x00\x61\xc6\x1b\x53\x46\ +\x0f\x65\x9e\xa5\xb8\xa3\xf4\x87\xfa\x6d\x25\x48\xfe\x2d\x85\x0b\ +\x15\xe4\x1b\xcd\xf4\xb5\xf8\xeb\xb0\xa5\x7a\x26\x3a\x83\x57\xa4\ +\xb4\x30\xeb\xc3\xb6\xc3\x0f\xe2\x7c\xcb\x3e\xcd\xbe\x59\x59\x0b\ +\xb0\x1b\xb6\xaf\x05\x28\x92\x64\xf7\x48\xb4\x9f\xe5\xc2\xd8\x79\ +\x62\x19\x68\xd6\x4f\xdc\xec\x38\xcf\x92\xa4\x93\xff\xcd\x91\x2f\ +\x41\x4e\xbe\x1e\x5a\xfc\xe7\xb0\xe5\xb3\x19\x0a\xf2\x45\xd0\x6c\ +\x00\xef\x1d\x79\x18\x0d\x1d\xca\xe5\x6a\x9e\xe7\x63\x56\xfa\x48\ +\xd3\xec\x80\xfd\xbb\x82\x01\x4b\xda\x2f\xff\x42\xeb\x5a\x3e\x44\ +\x7b\xf0\x12\x71\x7b\xe3\x3c\x8b\x71\x67\xe9\x73\xfa\xed\x24\x4c\ +\xfe\x23\x12\xf9\x66\x1a\x28\x90\x3f\xd3\x70\x86\x92\x66\x03\xd8\ +\x73\x66\x9d\x44\xa6\xde\x21\x82\x34\x5f\x22\x48\xfe\xab\x61\x46\ +\xda\xaf\xfa\x42\xbd\x61\xf2\xe9\xdd\x9b\xf2\x67\xe3\xce\xd2\x1f\ +\xe9\xb7\x2f\xab\xbb\x3d\x70\x29\x4e\xf2\x5f\x86\x48\xbe\x11\x5a\ +\xfc\xe7\xb0\xf9\xb3\x19\xf0\x86\x1a\x0c\xf3\x01\x40\x93\x57\xf8\ +\x7f\x80\x44\x09\x4c\xaf\xe5\x60\x55\xb0\x47\x94\x0f\xb1\x71\x40\ +\x1f\xd9\xef\x07\x9b\xa1\xae\x79\x37\xae\x79\x4f\x10\xe5\xcd\xcd\ +\x2a\xc4\x8d\xf9\xe5\xc4\x75\x8f\x29\xfc\x36\x31\xf9\xcd\xbe\x2f\ +\x88\xc9\x07\x00\x4f\xbf\x29\x12\xf9\x66\x1a\x6e\xa4\xf9\x76\x59\ +\x80\xa4\xcc\x03\x90\x0e\x09\xd5\x65\x8a\xfa\xde\x86\xdc\x1e\xe6\ +\xbf\xbe\x09\x08\xeb\xf1\x95\x87\xe7\x68\x0a\x41\x2c\x69\x14\xee\ +\xb9\xe1\x25\x8c\x1d\xf2\xa8\x69\xbd\x63\x0a\xbf\x8d\x7b\x47\xbe\ +\x02\x8a\x72\x10\x91\xbf\xa5\x9a\x9c\x7c\x00\x18\x33\x78\x81\x65\ +\x53\xaf\x97\xdf\x0e\x24\x6f\x47\x50\x4c\x26\x63\xed\x07\x00\xa7\ +\x23\x03\x53\x4c\x16\x6e\xe4\xf0\xd3\x2d\xa8\x3c\x32\x57\x21\x04\ +\xfa\xa4\x51\xb8\x7b\xc4\x0b\xb8\x75\xc8\x63\xba\xf5\x8d\x29\x5c\ +\x20\x91\x6f\x86\x66\xdf\xd9\x08\xf9\xe4\x0b\x53\x77\x96\xfe\x08\ +\x85\xb9\x13\x2c\xfb\x7c\xbd\xfb\x76\xc0\xf6\x79\x80\x78\xb5\x5f\ +\xc4\xa8\xbc\x6f\xe1\xce\xd2\x75\xc4\x4d\xfa\xc3\xcd\x92\x10\x98\ +\x69\x2c\x45\x39\x70\xf7\x0d\x1b\x30\xce\xf3\x78\xcc\x3d\x81\xfc\ +\x1f\x5b\x20\x7f\xa6\x25\xf2\x6f\x1f\xb6\x16\xb7\x0e\x11\xfe\x1d\ +\x4c\x4e\x22\xc7\x71\xd2\xa1\x27\x00\x7a\x79\xec\x40\xf2\xa7\x82\ +\x23\x30\xd3\x7e\x39\x6e\x1d\xf2\x38\xee\x18\xa6\x1f\xdd\xab\x21\ +\x17\x02\x92\x9e\x4c\x1b\xb1\x01\x65\x9e\xc5\x52\xca\xcd\x83\x1f\ +\xb6\x44\xfe\x66\x8b\x9a\x7f\xdb\xd0\xef\x63\xdc\x90\x25\x12\x99\ +\x72\x62\x8d\xc8\xd6\xbb\x9f\x9e\xa3\x00\x0b\x1a\xaf\xb8\xa5\xc8\ +\x16\xbd\x1a\xe7\x59\x0c\x1e\x1c\x3e\x3e\xf7\x12\x51\xf3\xfe\x70\ +\x33\x2a\x0e\xcf\xc1\xdc\x31\x95\x18\xd0\x6b\x94\x46\x17\x94\x7d\ +\xb8\x6b\xc4\x7a\x00\x40\x98\xf5\xe3\xbe\xaf\xbf\x4a\x44\x7e\x53\ +\xc4\xec\xfb\x42\x8d\x44\x7d\x02\x80\xa9\x43\xbf\x87\x71\x43\x96\ +\x1a\x06\x70\x46\x64\xca\xef\x89\xcf\x60\xe7\x7c\x00\x89\xfb\x36\ +\xfd\xad\x60\x9f\xcf\x67\x68\xfe\xe5\x5f\x3e\xa5\x1a\x06\x1a\x6d\ +\x02\x01\x80\x83\x17\x37\xe2\xe3\x73\x2f\x93\x3c\x0b\x00\x20\xdb\ +\xfd\x35\xcc\x1d\xb3\x0d\x03\x7a\x7d\xdd\xb0\xde\x28\x78\x32\xcd\ +\xf7\x7f\x81\xcd\x87\x1e\x20\xfe\xed\x00\x00\x98\x5c\xbc\x1a\xe3\ +\x3d\xc2\xbf\x81\xa9\x7d\xb9\x3a\x4d\xd1\xa3\x48\xba\x5e\xbf\xc5\ +\xf4\xec\xec\x6c\x50\x09\xfe\x56\x70\x4a\x56\x03\x75\x6f\x29\xb2\ +\x69\xe7\x2b\xf3\x3c\x89\xdb\x86\xea\xaf\xee\xa9\x21\x58\x82\xd9\ +\xb8\xe6\x3d\x69\x58\x6f\xb4\x5d\x02\xcd\xf7\x9e\xb1\x4c\xfe\xa4\ +\xe2\x55\x18\xef\x59\xae\x6b\xc2\xd5\xe6\x5d\xcb\xec\xeb\xb9\x02\ +\xf1\xda\x0e\x24\x65\x1e\xc0\x8a\xbf\x27\xc1\x84\x62\xe3\xf5\x7d\ +\x35\xd4\x42\x90\x08\x9a\xbc\x67\x04\xb3\x6f\x81\xfc\x89\x45\xcf\ +\x60\xfc\x90\x15\x31\x64\x6b\x91\x6f\x16\x00\xea\xe5\xe3\x38\x49\ +\xc9\x79\xd9\x61\x19\x29\x0b\x02\x01\x7d\x8d\x27\x99\xd5\x22\xd9\ +\xdb\x27\x87\x28\x04\x8d\x9d\xfa\x81\xa1\x59\xbb\x02\xf9\xe5\x16\ +\xc9\x5f\x89\x09\x9e\xa7\x75\x35\x5e\xfe\xa9\xa7\xed\x5a\x87\x96\ +\x20\x68\xc0\xb2\x10\x24\x57\x00\x0c\xa6\x7d\xc9\xab\x88\x96\x13\ +\x76\xf7\x7e\x97\xb8\xac\x24\x04\x1a\x96\xc0\x8c\xfc\x6b\xde\xd3\ +\x11\xf2\x9b\x88\xdb\x1b\xef\x59\x81\xf1\x43\x9e\x36\x8d\xe0\x6d\ +\xb6\x00\x1c\x94\x16\xc0\x92\x10\xd8\x3b\x11\x64\x60\xfe\xed\x70\ +\x05\x00\x30\xb1\xf8\x69\x4b\x2f\x6f\xf8\xc3\xcd\xa8\xa8\x99\xa5\ +\x29\x04\x7a\x68\xf2\x9d\xb1\x4c\xfe\xb8\xc2\x27\x31\xd1\xf3\xac\ +\x2e\x79\x66\xe9\x56\x2c\x80\x6a\x18\xc8\x00\x60\x11\xa7\x1b\x48\ +\xa9\x0b\x10\x41\x12\xfc\x19\xdd\x9b\x54\xbc\xd2\xd2\x5b\xbd\x6a\ +\x21\x30\x6a\xf3\x9a\xf7\x14\x36\x7f\xf6\x80\xa5\x0d\xa8\xb7\x16\ +\x2e\xc1\xa4\xa2\xef\xe8\x06\x6b\x24\x71\x40\xf4\x5c\x2e\x0c\xfa\ +\x75\xc9\x10\x06\x40\x23\x2a\x04\x96\x90\x3c\x01\xb0\xc1\xfc\x1b\ +\x61\xca\xd0\x55\x98\x32\xd4\xba\x10\x18\xbd\x44\xda\xe8\x3d\x89\ +\x2d\xd5\x33\x2c\x91\x3f\x76\xf0\x13\x98\x5c\xf4\x5d\x5d\x6d\xd7\ +\x13\x02\x91\x68\x96\xe5\xc0\xb2\x2c\x58\x96\x05\xc3\x30\x60\x18\ +\x06\x34\x2d\x1c\xe2\x35\xcb\xb2\x52\x5e\xb1\x2c\x00\x9c\x3c\x79\ +\xf2\x20\x80\x00\x04\x21\xb8\xfe\x02\x90\x6c\xf3\x1f\xad\x42\xa8\ +\x63\x72\xc9\x2a\x4c\x2e\x79\x86\xb8\x9c\x3f\xdc\x8c\xad\xd5\x33\ +\x71\xcd\x1b\x2b\x04\x8d\xde\x93\xd8\x5a\x3d\xd3\x12\xf9\xb7\x0c\ +\x7e\x0c\x53\x8a\xd7\x98\x9a\x76\x91\x40\xf1\x5c\x20\x95\x01\x4d\ +\xd3\xa0\xe9\x30\xc2\xe1\xe8\x11\x0a\x85\x10\x0e\x87\x23\xf7\x68\ +\x49\x00\x58\x96\x05\xcf\x0b\x75\xf8\x7c\x5e\x9c\x3b\x77\xae\x73\ +\xe1\xc2\x85\x6b\x00\xf8\x01\x84\x20\xb8\x02\x31\x1e\x20\x46\x52\ +\xfe\x32\xc6\x30\x9b\xa2\x88\x75\xf3\xaf\x86\x18\x0f\x7c\x52\xff\ +\x26\x51\x7e\x7f\xb8\x19\x5b\xaa\x67\xe0\xc1\xb1\xdb\x31\xa0\x97\ +\xf0\x7e\x7f\x63\xe7\x71\x6c\xad\x99\x6d\x91\xfc\x45\x98\x5a\xfc\ +\x03\xc3\xa9\x5c\x7d\xa1\xe0\xc1\xf3\x11\xc1\xe0\x79\x70\x2c\x2b\ +\xa4\x8b\x7e\x9d\x17\x9e\xdf\x95\xe1\x82\xd3\xe9\x84\xd3\xe1\x80\ +\xc3\xe1\x00\x4d\xd3\x68\x6b\x6b\x83\xdf\xef\x67\x5e\x7e\xf9\xe5\ +\x05\x55\x55\x55\x97\x21\x08\x40\xdc\x16\x20\x39\x1b\x42\x52\xbc\ +\x27\x7e\xca\xd0\xd5\xe0\xc1\xe1\xd3\xfa\x9f\x11\xe5\x97\x0b\x01\ +\xcf\xb3\x71\x90\xff\x28\xa6\x16\xaf\xd5\x24\x5e\xd4\x56\xb5\xe6\ +\xcb\xfd\x3a\xc7\x73\xe0\x58\x36\x62\xd2\xa3\x9f\x3c\xcf\x83\x07\ +\xe0\x74\x38\xe1\x72\xb9\x90\xc1\x65\xc0\x9d\x91\x01\xb8\x5c\xf0\ +\xf9\x7c\xf0\xfb\xfd\x08\x87\xc3\xdc\x3b\xef\xbc\xb3\x7c\xc7\x8e\ +\x1d\xa7\x21\xcc\xfc\x05\x20\xc4\x00\xc4\xb3\x7f\x72\x24\xf5\xcd\ +\x20\x00\xb6\xc7\x02\x7a\x96\x61\xea\xd0\xef\x81\xe7\x79\xec\x3f\ +\xff\x73\xa2\x7a\x44\x21\x00\xcf\xc3\x4f\xb7\x10\xb7\x3f\x66\xd0\ +\xc2\x18\xf2\x45\x01\x88\xfa\x70\x1a\xe1\x70\x18\x0c\x23\x98\x7b\ +\x8e\x63\xa3\x3e\x9f\x63\xc1\x32\x4c\x24\x3f\x2b\x09\x00\xcf\x73\ +\xa0\x28\x0a\x0e\xa7\x13\x19\x19\x19\x70\xbb\xdd\x70\xbb\x33\xc0\ +\xf3\x3c\x7c\x3e\x9f\xf4\x2f\xa6\xbb\x77\xef\x5e\xbf\x71\xe3\xc6\ +\x7d\x00\x3a\x10\xab\xfd\xd7\xc9\x02\x10\x0e\xff\xec\x36\xff\x6a\ +\xdc\x5e\xfa\x7d\xf0\xe0\x71\xe0\xfc\x2f\x88\xf2\x5b\xfd\x61\xe8\ +\x9b\x07\x3d\x82\xdb\x4a\x7e\x08\x9e\x8f\x5d\xd2\x15\x7d\x7b\x30\ +\x18\x44\x20\x10\x90\x7c\x39\xc3\x30\xa0\x23\x84\xb3\x2c\x1b\xd1\ +\xfc\xc8\xc1\x71\x92\xf9\xa7\x28\x0a\x4e\x97\x0b\x99\x99\x99\xe8\ +\xd3\xa7\x0f\x72\x72\x72\xc0\xb1\xac\x22\x2e\xa8\xad\xad\xfd\xb7\ +\x75\xeb\xd6\xfd\x05\x02\xf9\x3e\x24\xe0\xfb\x45\x24\xdf\x02\xa4\ +\x08\xa2\xd0\xdc\x51\xfa\x03\x00\x3c\x0e\x9c\xff\xa5\xad\xf5\xff\ +\x43\xc1\x02\xdc\x5e\xf2\x5c\x0c\xf9\x72\x01\xa0\x69\x1a\x81\x40\ +\x00\x3e\x9f\x0f\x5e\xaf\x0f\xc1\x60\x00\x34\x4d\x6b\xba\x05\xd1\ +\xec\x8b\x7d\xcf\xcb\xcb\xc3\xe0\xc1\x83\xd1\xaf\x5f\x3f\xb0\x2c\ +\x2b\x91\x2e\x7e\xd6\xd7\xd7\xff\xcf\xd2\xa5\x4b\x7f\x05\xa0\x1d\ +\x36\x91\x0f\x24\x43\x00\x92\xe8\xff\x49\x2d\xc3\x1d\xa5\x6b\xc1\ +\xf3\x1c\xaa\x2e\x6c\xb4\xa5\xdd\xd1\x05\x0f\xe1\xce\x61\xeb\x23\ +\xe4\xeb\xaf\xe1\x8b\x66\xda\xeb\xf5\xa2\xb3\xb3\x13\x7e\xbf\x1f\ +\xa1\x70\x18\x6c\xc4\xd4\xcb\xe3\x00\x87\xc3\x81\xbc\xbc\x81\xf0\ +\x78\x3c\xf0\x78\x3c\x70\xb9\x5c\x12\xe1\x22\xe9\xe2\x71\xf5\xea\ +\xd5\xa3\x4f\x3d\xf5\xd4\x3a\x08\xe4\x7b\x01\x04\x91\xc0\xd8\x5f\ +\x8e\xe4\x5a\x80\x38\xfc\xbf\x5d\xbb\x5d\xef\x1c\xfe\x1c\x78\x70\ +\x38\x78\xe1\x5f\x13\xaa\x67\x74\xc1\x7c\xdc\x35\x6c\x83\xa4\xf9\ +\x80\xf6\xd6\x2d\xd1\xff\x07\x83\x41\x04\x83\x41\xf8\xfc\x7e\xf8\ +\x7d\x3e\x30\x0c\x03\x87\xc3\x81\xec\xec\x6c\xe4\xe4\xe6\x62\xe0\ +\x80\x01\x28\x2c\x2c\x44\x7e\x7e\x3e\x78\x9e\x57\x68\xb9\x9a\xf8\ +\x50\x28\x84\xb6\xb6\xb6\xf3\xcf\x3d\xf7\xdc\xca\xe6\xe6\x66\x71\ +\xb9\x57\x24\x3f\x21\xcd\x17\x61\xff\xff\x06\x92\x9c\xdb\x6c\x25\ +\xf4\xea\xbb\x6b\xf8\x3a\x50\x00\xaa\xe2\x14\x82\x6f\x14\xcc\xc3\ +\xb4\xd2\x17\x63\x34\x1f\x80\xca\xfc\x8b\x31\x80\xe0\x06\x42\xe1\ +\x30\x42\xc1\x20\x18\x86\xc1\x92\x25\x4b\x34\xeb\x66\x18\xc6\x90\ +\xfc\x70\x38\x0c\xaf\xd7\xdb\xf4\xc6\x1b\x6f\xac\xf8\xfc\xf3\xcf\ +\xbf\x04\xd0\x09\xe5\xa4\x4f\x5c\x51\xbf\x1a\xa9\xdb\x14\x9a\x68\ +\x1b\x71\x0a\xcd\x5d\x23\xd6\xa3\xac\x68\xb1\x79\x46\x15\x6e\xca\ +\x9f\x83\x7b\x86\xbf\xa2\xab\xf9\xf2\x6b\xd1\xbc\xb3\x2c\x03\x86\ +\x65\xc1\x44\xfc\xbe\xde\x37\xc3\x30\x8c\x26\xe1\x72\x41\xf0\xf9\ +\x7c\xfe\x4d\x9b\x36\xad\xdc\xb3\x67\xcf\x59\xc4\x92\x6f\xdb\x96\ +\xa0\xeb\xb2\x16\x90\x2a\x88\x42\x33\x6d\xc4\xf3\x28\x2b\x7a\x82\ +\xb8\xdc\x37\x0a\xe6\xe2\x9b\x23\x5e\x85\x34\x2f\xa3\x41\xba\xb6\ +\x25\x60\xc1\xd0\xd1\x21\x5e\xcf\x9e\xd9\x31\x75\xcb\xc9\xd7\x32\ +\xf9\xe1\x70\x18\x81\x40\x80\xd9\xb9\x73\xe7\x9a\x77\xde\x79\xa7\ +\x1a\xd1\xe1\x9e\x18\xf4\xc5\xbd\xf6\xaf\x85\xe4\xbe\x1d\x6c\xb9\ +\x78\xf2\x6c\xc9\xb4\x11\xcf\x6b\xee\x06\x56\xe3\xa6\x82\x39\xb8\ +\x67\xf8\x8f\x01\x50\x9a\x44\xcb\xcf\xc5\xb1\x3d\xcf\xf3\x60\x59\ +\x4e\x1a\xf3\x33\x0c\x03\x9e\xe7\x90\x93\x93\xa3\xa8\x5b\x34\xfb\ +\x5a\x5a\x2f\x13\x06\x7e\xef\xde\xbd\xaf\xbc\xf5\xd6\x5b\x7b\xa0\ +\x24\x3f\xee\xb1\xbe\x11\x52\xb3\x18\x94\x44\x90\x0b\x0d\x85\xbb\ +\x6f\xd8\x80\x5b\x3d\xfa\xef\x05\xdc\x94\x3f\x1b\xf7\x8e\x10\x36\ +\x88\x1a\x11\x2f\x9e\x03\x7c\x84\xfc\xe8\x30\x8f\x61\x04\x37\xc0\ +\xb2\x2c\x06\x0e\xcc\x93\xea\xd6\xf3\xf9\x6a\x2b\x70\xf0\xe0\xc1\ +\x37\xd7\xad\x5b\x57\x89\x58\xcd\xb7\x25\xe8\x53\x23\x35\xf3\x00\ +\x16\x77\xff\x24\xb1\x23\xb8\xe7\x86\x17\xd0\xcb\x3d\x10\x7b\xeb\ +\x5e\x03\xcb\xd1\x00\x80\xec\x8c\x7e\x98\x54\xb2\x0a\x37\x0f\x7a\ +\x08\x3c\x4f\xa9\x48\x86\xe2\x3c\xea\x02\xa0\x18\x02\x8a\x33\x80\ +\x0c\xc3\x08\x93\x3d\x1c\x87\xc2\xc2\xc1\x00\x62\x35\x5f\x8f\xfc\ +\xda\xda\xda\xdf\xad\x5e\xbd\xfa\xf7\x10\xc8\xb7\x3d\xe2\xd7\x42\ +\x4a\xfe\x37\x30\x51\xca\xe3\x11\x1a\xa3\x37\x84\x26\x96\x3c\x85\ +\x91\x79\xff\x82\x73\x4d\xbb\xd0\x23\xa3\x1f\x86\xf7\xbf\x17\x4e\ +\x2a\x53\xd2\x6a\x20\x96\x70\x79\x9a\x00\xa5\xef\x67\x39\x56\x5a\ +\xb9\x63\x18\x16\x4e\x87\x03\x05\x05\x05\x60\x23\xb3\x79\x7a\x91\ +\xbe\x98\x7e\xfa\xf4\xe9\xad\x2b\x56\xac\xf8\x05\x94\x63\xfd\xa4\ +\x69\xbe\x88\xa4\xfe\x7b\x78\x3a\xa3\x4f\x96\x07\xb7\x14\x0a\xef\ +\x0a\xaa\x76\xd8\x10\x5a\x00\xb9\xff\x17\x22\x7f\xd1\x0a\x70\x1c\ +\x87\xbc\xbc\x3c\x50\x14\x65\x6a\xf2\x43\xa1\x10\xea\xea\xea\x76\ +\x2c\x5b\xb6\xec\x55\x44\x67\xf9\x44\xf2\x6d\x8d\xf8\xb5\xf0\x95\ +\x1e\x05\x90\x40\xa9\xd5\xe6\xe4\x8b\x9f\x62\x10\xc8\xc6\xac\xf3\ +\x0b\xd7\x45\x45\x45\xba\x1a\x2f\x0f\xfc\x2e\x5d\xba\xb4\x7b\xd9\ +\xb2\x65\xeb\x68\x9a\x6e\x83\x72\x75\x2f\xe9\xe4\x03\x5d\x5c\x00\ +\xec\x72\x0d\xda\x26\xde\xfc\x1e\xc0\x83\xe7\x38\xd9\xe6\x0d\x21\ +\x10\xa4\x1c\x14\x4a\x4a\x4a\x74\x7d\xbe\x6c\x7e\x7f\xc7\xe2\xc5\ +\x8b\x57\xfb\xfd\xfe\x16\x08\x63\x7d\xdb\xa6\x78\x49\x91\x36\x8b\ +\x41\xa9\x0a\x0e\xb5\x89\xd4\xce\xa3\x67\x0d\xc4\x43\x18\xfa\x09\ +\x01\x1f\xc3\xb2\x60\x58\x61\x98\x3e\xa8\xa0\x00\x6e\xb7\x5b\x61\ +\x01\xd4\xe4\x9f\x3e\x7d\x7a\xeb\x93\x4f\x3e\xf9\x2a\x4d\xd3\xad\ +\x88\xfa\x7c\xf1\xad\x9e\x94\x90\x0f\xa4\x91\x00\xa4\x12\xd6\x35\ +\x3d\xb6\x9c\x20\x04\x91\x0d\x1d\x0c\x03\x96\x61\x00\x9e\x87\xc3\ +\xe1\x84\xc7\x53\x64\x38\xc5\x5b\x5b\x5b\xfb\xdb\xe5\xcb\x97\xff\ +\x02\xd1\x68\x5f\xbe\xa9\xc3\x96\x29\x5e\x52\x74\x69\x17\x90\x4c\ +\xe8\x09\x84\x38\x04\x14\x26\x81\x84\x18\x80\x15\xd7\xf4\x1d\x0e\ +\xf4\xe8\x91\x89\x81\x03\x07\xe8\x99\x7e\xfe\xe0\xc1\x83\x6f\x2c\ +\x5f\xbe\xfc\xe7\x10\x02\x3e\x71\x8a\xf7\xba\x90\x0f\x5c\x87\x3d\ +\x81\x5d\x15\xb1\x43\x40\x41\xfb\x85\x0d\x1d\x00\x40\x21\xc3\x95\ +\x81\xfe\xf9\x05\xe0\x38\x2e\x46\xeb\x83\xc1\x20\xb3\x6f\xdf\xbe\ +\x17\xd7\xae\x5d\xbb\x0d\xca\x0d\x1d\x29\xf5\xf9\x6a\x7c\x25\x5d\ +\x00\x49\x3c\x61\xe4\x06\x48\xca\xca\x0f\x8a\x02\x32\x32\x5c\x00\ +\x78\xe4\xe5\x0d\x8c\xd1\x7e\xbf\xdf\xef\xdd\xb1\x63\xc7\x9a\x9f\ +\xfe\xf4\xa7\xe2\xf4\xae\x7c\x43\xc7\x75\x23\x1f\xf8\x8a\x0a\x40\ +\x2a\x41\x51\x14\x1c\x0e\x07\x32\x32\x32\xd0\xbb\x77\x6f\x00\x50\ +\x04\x7e\x1d\x1d\x1d\xd7\xfe\xf8\xc7\x3f\xae\xd8\xb4\x69\xd3\x61\ +\x08\x26\xdf\xb6\xdd\x3c\x76\xa0\x5b\x00\x12\x00\x45\x51\x70\x46\ +\x36\x71\x3a\x1c\x0e\xf4\xee\xdd\x5b\xa1\xfd\x6d\x6d\x6d\x75\x3f\ +\xf9\xc9\x4f\x96\xed\xd9\xb3\xe7\x0b\x08\xe4\x8b\x9b\x38\xd3\x82\ +\x7c\xa0\x5b\x00\xe2\x86\xa8\xf9\x4e\xa7\x13\x6e\xb7\x1b\x80\xe0\ +\x1a\x44\xf2\xaf\x5e\xbd\x5a\xbd\x66\xcd\x9a\x95\xc7\x8f\x1f\xbf\ +\x02\xed\xcd\x1c\xd7\x9d\x7c\xe0\x2b\x2a\x00\xe2\x2e\x5b\xab\xa0\ +\x28\x8a\x38\x0e\x10\x05\xc0\xe5\x72\x81\xa2\x28\x45\xe0\x77\xe1\ +\xc2\x85\xbf\x2e\x5d\xba\x74\x6d\x53\x53\x53\x0b\xa2\xc3\xbc\x84\ +\xb6\x6f\x27\x0b\xf6\x09\x00\xcf\x77\xa9\x91\x80\x15\xb2\xb5\xca\ +\x0a\x02\xe0\x84\xd3\x29\x3c\x7a\x30\x18\x44\x28\x14\xc2\xb1\x63\ +\xc7\x7e\xb7\x68\xd1\xa2\x9f\x21\x1a\xec\xa9\x67\xf7\xd2\x86\x7c\ +\x80\x7c\x1e\x80\x57\x1d\x1c\xae\xd3\xb8\x35\xd5\x10\x2d\x49\xd4\ +\xa2\x50\x00\x04\xed\xa7\x1c\x14\x9c\x4e\x07\x42\xa1\x20\x68\x9a\ +\xe6\x3f\xfe\xf8\xe3\x1f\x2e\x5a\xb4\xe8\x4d\x00\xf2\x79\xfd\xb4\ +\x33\xfb\x72\x58\xb1\x00\x22\xf1\x2c\x84\x20\x86\x86\xf0\x70\x5d\ +\x0e\x46\xda\x2f\xde\xd3\xcb\x43\x51\xc2\xc1\xf3\x80\x83\xa2\x10\ +\xa4\x69\x04\x83\x41\xb6\xa2\xa2\xe2\xf1\xd7\x5f\x7f\xfd\x13\x44\ +\x83\xbd\xb4\x18\xe6\x99\x81\x44\x00\xe4\x5a\xcf\x40\x20\x3d\x08\ +\xe1\x21\x01\x00\x0e\x87\x23\x6e\xbf\x2b\x35\x92\x60\xf9\x44\x21\ +\x27\x5e\xec\x87\xc3\xe1\x00\xc7\x71\x31\x9f\x91\x12\xa0\x28\x0a\ +\x5e\xaf\xd7\xff\xda\x6b\xaf\xcd\xa9\xac\xac\x3c\x09\x41\xeb\xd3\ +\x2e\xd2\x37\x02\xa9\x05\xe0\x21\x48\x72\x18\xc2\x03\x8a\x3f\xbb\ +\x1d\x00\x80\xcc\xcc\x4c\xfb\x7b\x96\x64\xd8\x21\x6c\x67\xcf\x9e\ +\xad\x5a\xb2\x64\xc9\xb3\xfb\xf7\xef\xbf\x02\xc1\xdf\xa7\xbd\xc9\ +\x57\x83\xe4\x5b\xa0\x00\x38\x01\x64\x00\xe8\x09\xe1\xf7\x02\x7b\ +\x01\xc8\x02\x90\x09\x21\x8e\xf8\xaa\xaf\x29\xc8\x7f\x7f\x87\x83\ +\xe0\xfe\x42\x10\x94\x41\x3c\x42\x48\xd3\x48\xdf\x08\xa4\x2e\x40\ +\xf4\xfd\xc1\x48\x1a\x0d\x41\xe2\x5d\x10\xc8\xef\x3a\xe1\x7f\x7c\ +\x50\x0b\x00\x8b\xa8\x10\x84\x11\xfd\x99\x16\xf5\x0f\x36\xa5\x3d\ +\xc8\xb7\xd4\x0a\x44\x3b\x21\x90\xee\x8c\x1c\x22\xf9\x5f\x75\x01\ +\x00\xb4\x85\x40\x0c\x88\xbb\x8c\xc9\x57\xc3\x0a\x71\x22\xd1\x72\ +\xd2\xff\x5e\xc8\x17\x21\x17\x02\x51\x10\xe4\xc3\xe3\x2e\x07\xab\ +\xe4\xd9\xb9\xd9\xb7\x2b\x83\xd7\x39\xef\x46\x37\xba\xd1\x8d\x6e\ +\x74\xa3\xab\xe0\xff\x01\xdd\x54\x8b\x5c\xc7\x61\xe8\xd6\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x09\x59\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\x31\x00\x00\x05\x31\ +\x01\xb7\xed\x28\x52\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x08\xd6\x49\x44\ +\x41\x54\x68\x81\xd5\x9a\x5d\x8c\x5d\x55\x15\xc7\x7f\x6b\x9f\x73\ +\xee\xdc\x8f\xce\x67\x5b\x5a\x86\x52\x19\xb4\x02\x03\x83\x11\x22\ +\xd0\x00\x6d\x89\x48\x14\xe4\x81\x07\xc6\x1a\x41\x34\x46\x5f\x0c\ +\x10\xe2\x43\x5f\x88\xe3\x84\xc4\x48\xd0\x60\xd1\x07\x8c\x0f\x52\ +\xc1\x88\xf0\xd0\x07\x40\x49\xd5\x58\x08\x0d\xa1\x04\x42\xa4\x1d\ +\x1b\x09\xe9\x30\x54\x68\x69\xe7\xa3\xd3\x99\x7b\xef\xcc\xf9\x58\ +\x3e\x9c\x73\xef\x3d\xe7\xde\x73\xee\xdc\x69\x6b\x0c\x2b\x59\x77\ +\x9f\x8f\xbd\xd7\xfe\xff\xd7\x5e\x7b\xed\x7d\xf6\x8c\xa8\x2a\x9f\ +\x66\x31\xff\x6f\x00\xe7\x2a\x9f\x7a\x02\xf6\xf9\x30\x22\x82\x70\ +\xf7\xde\x1b\x31\x72\x2d\x04\xc3\x88\x19\x06\x2e\x07\x71\x80\x0a\ +\x22\x65\xd0\x32\x62\x0e\xa3\xbc\x0a\xbc\xc2\x1f\xef\x9c\x50\xe5\ +\x9c\xe3\x57\xce\x65\x0e\xc8\xe8\x0b\x43\x58\xee\x7d\xa8\xdc\x07\ +\x72\x09\x02\x84\x3f\x20\x52\xab\x45\xc6\xf3\x53\x88\x3c\x85\xb2\ +\x5b\x9f\xf9\xda\xb1\xb3\xc6\x70\x36\x04\x64\xf4\x85\x21\x8c\xff\ +\x04\xc2\x1d\x75\x44\x22\xac\xc9\xdb\x5c\x71\x51\x37\xeb\x7b\x72\ +\xf4\x15\x73\xf4\x95\x1c\x00\xe6\xca\x2e\x73\x65\x8f\x93\x67\x96\ +\xf9\xd7\x47\x0b\x2c\x54\x83\x38\x29\x0f\x35\xcf\x22\x3c\xaa\xbf\ +\xbf\xed\xd0\xff\x94\x80\x8c\x3e\x6f\x61\xe5\x1e\x02\xc6\x11\x29\ +\x02\xf4\x97\x72\xec\x18\x5e\xcb\xc8\xe6\x1e\x2e\x1e\x28\x44\x74\ +\x24\xd6\x28\x79\xaf\x0a\x1f\xce\x54\x79\xf7\xd8\x02\xfb\x8f\xcc\ +\x32\xbb\xe8\xd6\x7c\xe0\x82\x19\x63\xe8\xb5\x47\x75\x6c\x2c\x38\ +\xef\x04\x64\xf4\xc5\xcd\x38\xc1\x5e\x94\x6b\x40\xb8\xa0\xb7\x8b\ +\xdb\xae\x5e\xcf\x97\x2e\xed\xc3\x32\xb1\x5c\x10\x61\x55\x60\xb1\ +\xea\xa3\x0a\x6b\x0a\x76\x8c\x82\xd4\xeb\xf8\x81\xf2\xe6\xd1\x33\ +\xec\x3b\x3c\xcd\x27\xf3\x6e\xf4\xdc\xec\xc7\x92\x7b\xf5\xb7\x3b\ +\x3a\x0a\xab\x8e\x08\xc8\xb7\x5e\xdc\x02\xfa\x37\x90\xcd\x22\xb0\ +\xfd\x8a\x75\x7c\xf5\xea\xf5\xd8\x56\x53\x12\x13\x08\x14\xde\x3f\ +\xbe\x80\x2d\x70\xd9\xe0\x1a\x1c\x4b\x38\xf2\xf1\x22\x0b\x55\x9f\ +\xcf\x5f\xd4\x83\x65\x62\x73\x23\x2a\x3c\x5f\x79\xf9\xd0\x0c\xaf\ +\xfc\x7b\x0e\x55\x01\x98\x26\x30\xb7\xe8\xef\xb6\xbd\x7b\xce\x04\ +\xe4\x9e\x3f\x8f\x80\xfe\x15\xd8\xd0\x9d\xb7\xf9\xc6\xd6\x41\x2e\ +\x59\x57\x20\xee\xc9\x1a\x12\x05\x26\xa6\xe6\xf8\xee\xf6\x8b\xf9\ +\xca\xc8\xfa\x84\x9d\xd7\xdf\x9b\xe5\xd7\xfb\x3e\xe0\xb2\x8b\x7b\ +\x5b\x49\x44\x97\x93\xa7\x96\xf8\xd3\x9b\x9f\x70\x66\x29\x00\x38\ +\x81\xc5\xcd\xfa\xe4\xb6\xf7\xce\x9a\x80\xdc\xf3\x97\x4d\xc0\x3b\ +\x88\xae\xed\x29\x38\xdc\x73\xe3\x20\x03\x6b\x72\xad\x9d\x03\x88\ +\xf0\xc1\xc9\x45\x46\xaf\xdb\xc0\xd7\xbf\xb8\x21\xd5\xde\xeb\xef\ +\xcd\xb2\x7b\xdf\x14\x5b\x06\x7b\xea\x6d\x9a\x8c\x30\xb3\xe8\xf2\ +\xcc\x1b\x27\x99\xaf\xfa\x80\x4c\x21\xdc\xac\xbf\xb9\x71\x2a\x0b\ +\x63\xe6\x42\x26\xe3\xe3\x06\xe1\x69\x8c\xac\xed\x2d\xe5\xd8\xb9\ +\x75\x90\x62\x97\x4d\xd5\x0d\xa8\xba\x4a\xd5\x0b\x62\xaa\x54\xdd\ +\x00\xd7\xf5\x33\xc1\x03\x6c\xdd\xd2\xcf\x40\xd1\xa2\xec\x2a\x55\ +\x5f\x1b\x6d\xeb\x1a\x50\xcc\xdb\xec\xbc\xee\x02\x7a\x8b\x0e\x18\ +\xd9\x8c\x98\xbd\x32\xfa\xbc\xb5\x6a\x02\xbc\x7f\xfd\x2e\x8c\xd9\ +\x61\x59\x86\xdb\xbf\x70\x01\x39\xdb\x4a\x76\xe6\xc6\xd4\x53\xe6\ +\x2b\x3e\x9f\xdd\x50\xcc\x34\x57\x93\xe1\x4d\xdd\xcc\x2e\xb8\x89\ +\xb6\xa1\x12\xaa\xab\xe4\x6c\xc3\xed\x23\x6b\xb1\x2c\x0b\xc4\x5c\ +\xc3\xc0\xe6\x87\x56\x45\x40\xbe\xbd\xef\x2a\xc4\x8c\x23\x86\x1b\ +\x3e\xd7\x4f\x29\xef\x24\x41\xc7\x3d\x17\x79\x72\xc9\x57\x5c\x7f\ +\xe5\x84\xe0\xfa\xca\x92\x1f\x03\x1c\xf3\x7e\x9c\x4c\x29\x6f\x71\ +\xc3\xa5\xdd\x61\x98\x59\x66\x5c\xee\x3f\x38\x94\x66\x2f\x7d\x2b\ +\x61\x64\x17\x22\xce\x60\x5f\x17\x43\xeb\x8b\x54\xbd\x80\x78\xd6\ +\x68\xa2\x5b\x2f\x0f\x1f\x5b\x40\xd3\xaa\xc4\xe4\xed\xc9\x79\x24\ +\x57\xa0\xea\xc5\xc9\xd6\x12\x82\x26\x4c\x0e\xad\x2b\x70\x74\xda\ +\xe5\xa3\x79\xaf\x88\xf2\x04\x70\x67\x0b\xd4\x16\x38\xdf\xdf\xbf\ +\x09\xcc\x4e\xc4\x30\x7c\x51\x77\x53\x8c\x2a\x55\x97\x48\x9b\x3c\ +\xe7\x2b\x8b\x81\xc5\x1f\x0e\x7c\x94\x09\xfe\xe5\x77\x4f\x31\x39\ +\xe7\xb1\xe4\x93\x0c\x1b\xaf\x39\x94\x1a\xe5\xf0\x60\x31\x1c\x05\ +\x31\x77\xc8\xfd\xff\x6c\x19\x85\xd6\x11\xf0\x79\x10\xcb\xd8\x1b\ +\x7b\x73\xe4\x73\x56\xe4\x29\x09\xbd\x53\xf7\x52\xf3\xfe\x26\x2c\ +\xd6\x94\xf2\xfc\xea\xef\xc7\xb0\x8c\xf0\xcd\xad\x17\x26\xcc\xbe\ +\xf8\xce\x49\x7e\xfa\xd2\x24\x03\x03\xbd\x49\x9b\xf5\xf6\x29\x23\ +\x2c\x90\xcf\x59\x6c\xec\xed\xe2\xf8\x19\x4f\x20\xb8\x0f\xf8\x49\ +\xc2\xe1\xf1\x34\x2a\x82\xf0\xbd\xfd\x9f\x80\xac\xbb\x6e\xa8\x3b\ +\xcc\x04\x71\xab\x75\xe3\x4d\xbd\xc4\x6e\x55\x60\xee\x74\x85\xfe\ +\xbc\x30\xb2\x29\x5c\xc8\x0e\xfd\x67\x81\x8f\x17\x94\x81\xbe\x12\ +\x92\xb9\xb9\x4b\xb3\x1f\x96\xa7\xab\x01\x07\xa7\xca\x80\x4c\xb2\ +\x7b\xe4\xd2\xf8\x2e\x36\x49\xe0\x07\x07\xae\x44\xfd\x43\x39\xdb\ +\x70\xfd\x50\x4f\x13\xce\xe6\xc5\x27\x85\x54\x13\x30\xcf\x0f\x40\ +\xc1\xb6\x4d\x92\x74\xcb\x4e\x75\xa5\x3e\x84\x37\x3e\x28\xb3\xec\ +\x03\x96\xdc\xac\x3f\x1f\x7e\xad\xd6\xa4\x29\x84\x74\x3b\x62\xe8\ +\x29\x38\x54\xeb\x19\xa5\x79\xc5\xad\xd7\x6d\xea\x54\xa3\xeb\x5a\ +\x88\x29\xb5\x29\xe6\xf9\x34\x9e\xc7\xa5\x85\x7c\xed\x36\x1e\x62\ +\xa1\xad\x9e\x82\xcd\xa9\x45\x1f\x90\x6b\x81\x0c\x02\x22\xdb\x40\ +\x08\x10\x2a\xf5\x4d\x62\x13\xb0\x38\x90\xe8\xfd\xf2\x92\xc7\x62\ +\xb9\xd2\xf4\x3c\x71\x01\x40\xa9\xbb\x44\xae\xcb\x49\xb1\xa5\x64\ +\x8f\x4a\xb8\x83\x0d\x30\x60\x14\x30\xc3\x71\x9b\x4d\x04\xcc\x95\ +\x00\x33\x95\x80\xb2\xb7\xc4\xc6\x9e\x1c\x8e\x9d\x16\xa3\x49\x99\ +\x3f\x53\xe1\xf8\xe3\x5b\xd3\x5f\xc6\x64\xe3\x8f\x0e\xd2\x33\xd0\ +\xd7\x6a\x2b\x2b\xef\x8a\xe0\x06\xca\xf1\x79\x3f\x8c\x08\x31\x00\ +\x6d\x09\x14\x6b\x71\x5c\xf5\x60\x6a\xce\xa5\xaf\x68\x53\x74\x0c\ +\x22\x92\x1c\xda\x98\xc7\xdc\x0e\x3f\x29\xdc\x20\x4c\x9b\xed\xe6\ +\x4d\x4d\x54\xa1\xec\x29\x73\x15\x9f\x40\x25\x7a\x27\x00\x97\xb7\ +\x21\x20\xc5\x38\xb0\x00\x98\x29\x07\xcc\x49\x40\x3e\x67\x51\x70\ +\x0c\xa6\x6e\xa7\x81\xc1\xf5\x57\x41\xc0\x57\xd2\x33\x4f\x28\x81\ +\x42\x25\xda\x2b\x05\x0a\x60\xa2\xa9\x54\x27\xe9\xc4\xeb\x27\x09\ +\x18\x53\x68\xf5\x86\x10\x08\x94\x5d\x28\xbb\x01\xb6\x11\x1c\xdb\ +\x60\x44\x31\xd1\xa8\x04\x4e\x81\xc2\x0f\x5f\x07\x04\xf5\x3d\xaa\ +\x4f\xde\x94\x4e\xc0\x07\xfc\x98\x07\x22\xef\x07\x0a\x01\xe1\x36\ +\xa3\xb1\xe8\x9b\xc6\xe8\x24\x47\xa9\xd2\x8e\x80\x1b\x26\x97\xac\ +\xa1\x15\x3c\xc0\xf3\xa2\xbb\x5a\x1f\x38\x48\x21\x87\x20\x04\x8b\ +\xa7\x53\xc1\x03\x2c\x2b\x78\x9e\xa0\x68\xf8\xe1\x22\xe1\x34\x56\ +\x8d\xf5\x21\xed\xd6\x09\x01\x28\x67\x13\xc0\x1c\x41\xb8\xa9\x83\ +\x13\x85\x46\xe7\xb5\x3a\x1a\xbd\x53\x21\x4b\x02\x95\x30\x9e\x91\ +\x24\x30\xd3\x59\x7f\xd1\x4f\x1b\x02\x22\x13\x88\xdc\x94\x6a\xac\ +\x33\xe3\x49\x60\xcd\x22\xd2\xd0\xb3\xea\x03\x40\x0e\x67\x13\x40\ +\x26\xa2\x54\xb5\x0a\xc0\x4d\x75\xda\x11\x40\xa2\xb8\x4b\x05\xd6\ +\x61\x7f\xe6\xd5\x6c\x02\x8e\xfd\x16\x41\xa3\x5d\xaa\xb1\xb6\xc6\ +\x57\x20\x20\x02\x66\x95\x0e\x6a\xb9\xe7\x95\xb8\xc9\xe4\x76\xfa\ +\x17\xc3\x07\x10\x99\x0c\xbd\x94\xa1\x26\xed\x3a\x02\xd6\xc8\xd5\ +\xd9\x04\xda\xd9\xae\xd9\x8a\x97\x46\xe2\x7d\x9c\xe2\x91\x8d\x13\ +\x99\x04\x54\x51\x8c\xec\x69\x05\x99\x6a\x2c\xf6\xbc\x09\x44\x26\ +\x81\x55\xda\x6a\xbd\x7e\xaa\xf9\x3c\x35\xa5\x37\xd9\x83\x88\x26\ +\xbd\xd1\x89\xd6\xea\x66\xe3\xaf\xcf\x81\x2c\x90\x59\xa3\x10\x96\ +\x1e\x98\xdd\xcd\x16\x5b\x08\xe8\x63\x97\x1d\x45\xe4\xa5\xd6\x8e\ +\xb2\x3c\x26\xad\x60\xda\xe0\x6f\x03\x30\xdd\x56\x6d\x5e\x29\xcf\ +\xea\xd8\x40\xcb\x69\x5d\x7a\x6f\x81\xf3\x00\x46\xca\x49\xc0\x1d\ +\x8e\x42\xdb\x39\xb0\x62\x88\x34\x00\x27\xc5\x05\xf3\x68\x9a\xc9\ +\x54\x02\xfa\xd8\x67\x8e\x22\x66\x2c\x15\x60\x9a\xf7\xdd\x65\x38\ +\x33\x0d\xf3\xd3\xe0\xbb\xd9\x04\x7c\x17\x4e\x9f\x0a\xd5\x5d\x6a\ +\x07\xb8\x59\xc6\x74\xac\x3f\xf5\xe4\x3a\xf3\x64\x4e\x46\xb1\xd8\ +\xf2\xe1\x41\x44\xae\x89\x9e\x90\x99\xf6\xe6\x4f\xa2\xbf\x1c\x59\ +\x09\x44\xd2\xfe\x43\x13\xd0\x9f\x7d\x08\xd6\xa8\xc8\x7e\x82\xb5\ +\x5f\xd6\x31\x52\x4f\xac\x33\x03\x56\x9f\xc3\xc7\xb7\xef\x42\xcc\ +\xd4\x4a\x13\x4c\x56\xf6\x60\x8b\x74\xd9\xd2\xd8\x41\x64\xcb\x34\ +\x81\xdc\x9b\x05\xbe\x2d\x01\x00\xfd\xd9\x85\x53\x10\xdc\x8a\x98\ +\x13\xe9\x13\xcc\x90\xcf\x59\x14\x9d\xb6\x66\x52\xa5\xe8\x40\x5f\ +\x5e\xc8\xdb\x99\x2c\x4e\x20\xe6\x96\xb4\x89\x1b\x97\xce\x8e\xd7\ +\x7f\x7c\x62\x04\x4b\xfe\x81\xca\xda\xf0\x41\xf8\x63\x09\x94\xba\ +\x0c\x5d\x7e\x15\xa9\xcc\xd3\x65\x09\x5d\x36\x74\x59\xd0\x65\x09\ +\x39\x4b\xb0\x0d\x78\x01\x2c\x47\x27\x72\x4b\x3e\x2c\x79\x60\x4a\ +\x3d\x2c\x5b\x79\x16\x5d\x65\x7e\xa9\x05\xc3\x14\x26\xb8\x55\x1f\ +\x5e\xdf\xf6\x64\xba\x63\x02\x00\x32\x3e\xb3\x09\x82\xa7\x11\xd9\ +\x11\x7f\x5e\x72\x84\x52\x4e\x28\x3a\x50\x74\x84\xa2\x23\x14\x6c\ +\x21\x6f\x43\xce\x12\x2c\x03\x7e\x44\xa0\xea\x41\xc5\x53\xca\x6e\ +\x4d\x61\xb6\x12\xe0\x26\x03\xe4\x6d\xd4\xdc\xa5\x63\xfd\x53\x1d\ +\xe1\x5a\xd5\x9f\x98\xc6\x31\xc8\xf4\x2e\x60\x1c\xa8\x7f\x19\x39\ +\x06\x4a\xb9\x24\x70\xc7\x02\x4b\x24\x4c\xe1\x0a\xbe\x2a\xae\x1f\ +\x12\xa9\x78\x30\xbf\xa4\x54\xdc\xc4\xb2\x5a\x46\x74\x8c\xcb\xd7\ +\x3d\xae\x77\xd3\xe1\x37\xde\x2a\x09\x34\x88\xcc\x5e\x05\xc1\x2e\ +\x84\x9d\x34\x6d\x08\x2d\x01\xcb\x80\x6d\xa4\xbe\x22\x28\xe1\xa7\ +\xa2\x17\x28\xd1\x51\x51\x5c\x14\xe1\x25\xc4\x7e\x40\x1f\xee\x3d\ +\xba\x6a\x2c\xe7\xf4\x67\xd6\xf1\x99\x4d\xc0\x83\x48\xf0\x1d\x90\ +\x75\xab\x6c\x3e\x09\xba\x07\xe3\xec\x39\x1b\xe0\x75\x0c\xe7\xe3\ +\x7f\x25\x04\x84\x47\x66\x86\x41\xb7\xa3\xba\x0d\xe4\x4a\x90\x22\ +\x68\x11\x28\x80\xba\xc0\x11\xd4\x4c\x20\x4c\xa0\xf2\x16\x63\xfd\ +\x07\xb4\x65\x30\xce\x03\x81\x28\xa7\xdb\x80\xb5\x82\x9a\x48\x6b\ +\xd7\x12\x2b\xb3\xf6\x14\x1a\xd3\x20\x56\xfa\x29\x65\x96\x7a\x89\ +\xe3\x50\x55\x45\x44\xac\x08\xb4\x13\x95\xe7\x4b\xad\x88\x88\x02\ +\x5e\x0d\xc0\x79\x50\x17\x58\x06\xbc\xac\x11\x30\x29\x1a\xf7\x7c\ +\xda\x88\xd8\x29\x75\x6a\x2b\x5c\xb0\x0a\x0f\x37\x8f\x46\xe2\x5a\ +\x9b\x00\xff\x17\x83\xe5\xeb\x32\x4d\x9a\x90\x76\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x15\x39\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x0a\x4d\x69\x43\x43\x50\x50\x68\x6f\ +\x74\x6f\x73\x68\x6f\x70\x20\x49\x43\x43\x20\x70\x72\x6f\x66\x69\ +\x6c\x65\x00\x00\x78\xda\x9d\x53\x77\x58\x93\xf7\x16\x3e\xdf\xf7\ +\x65\x0f\x56\x42\xd8\xf0\xb1\x97\x6c\x81\x00\x22\x23\xac\x08\xc8\ +\x10\x59\xa2\x10\x92\x00\x61\x84\x10\x12\x40\xc5\x85\x88\x0a\x56\ +\x14\x15\x11\x9c\x48\x55\xc4\x82\xd5\x0a\x48\x9d\x88\xe2\xa0\x28\ +\xb8\x67\x41\x8a\x88\x5a\x8b\x55\x5c\x38\xee\x1f\xdc\xa7\xb5\x7d\ +\x7a\xef\xed\xed\xfb\xd7\xfb\xbc\xe7\x9c\xe7\xfc\xce\x79\xcf\x0f\ +\x80\x11\x12\x26\x91\xe6\xa2\x6a\x00\x39\x52\x85\x3c\x3a\xd8\x1f\ +\x8f\x4f\x48\xc4\xc9\xbd\x80\x02\x15\x48\xe0\x04\x20\x10\xe6\xcb\ +\xc2\x67\x05\xc5\x00\x00\xf0\x03\x79\x78\x7e\x74\xb0\x3f\xfc\x01\ +\xaf\x6f\x00\x02\x00\x70\xd5\x2e\x24\x12\xc7\xe1\xff\x83\xba\x50\ +\x26\x57\x00\x20\x91\x00\xe0\x22\x12\xe7\x0b\x01\x90\x52\x00\xc8\ +\x2e\x54\xc8\x14\x00\xc8\x18\x00\xb0\x53\xb3\x64\x0a\x00\x94\x00\ +\x00\x6c\x79\x7c\x42\x22\x00\xaa\x0d\x00\xec\xf4\x49\x3e\x05\x00\ +\xd8\xa9\x93\xdc\x17\x00\xd8\xa2\x1c\xa9\x08\x00\x8d\x01\x00\x99\ +\x28\x47\x24\x02\x40\xbb\x00\x60\x55\x81\x52\x2c\x02\xc0\xc2\x00\ +\xa0\xac\x40\x22\x2e\x04\xc0\xae\x01\x80\x59\xb6\x32\x47\x02\x80\ +\xbd\x05\x00\x76\x8e\x58\x90\x0f\x40\x60\x00\x80\x99\x42\x2c\xcc\ +\x00\x20\x38\x02\x00\x43\x1e\x13\xcd\x03\x20\x4c\x03\xa0\x30\xd2\ +\xbf\xe0\xa9\x5f\x70\x85\xb8\x48\x01\x00\xc0\xcb\x95\xcd\x97\x4b\ +\xd2\x33\x14\xb8\x95\xd0\x1a\x77\xf2\xf0\xe0\xe2\x21\xe2\xc2\x6c\ +\xb1\x42\x61\x17\x29\x10\x66\x09\xe4\x22\x9c\x97\x9b\x23\x13\x48\ +\xe7\x03\x4c\xce\x0c\x00\x00\x1a\xf9\xd1\xc1\xfe\x38\x3f\x90\xe7\ +\xe6\xe4\xe1\xe6\x66\xe7\x6c\xef\xf4\xc5\xa2\xfe\x6b\xf0\x6f\x22\ +\x3e\x21\xf1\xdf\xfe\xbc\x8c\x02\x04\x00\x10\x4e\xcf\xef\xda\x5f\ +\xe5\xe5\xd6\x03\x70\xc7\x01\xb0\x75\xbf\x6b\xa9\x5b\x00\xda\x56\ +\x00\x68\xdf\xf9\x5d\x33\xdb\x09\xa0\x5a\x0a\xd0\x7a\xf9\x8b\x79\ +\x38\xfc\x40\x1e\x9e\xa1\x50\xc8\x3c\x1d\x1c\x0a\x0b\x0b\xed\x25\ +\x62\xa1\xbd\x30\xe3\x8b\x3e\xff\x33\xe1\x6f\xe0\x8b\x7e\xf6\xfc\ +\x40\x1e\xfe\xdb\x7a\xf0\x00\x71\x9a\x40\x99\xad\xc0\xa3\x83\xfd\ +\x71\x61\x6e\x76\xae\x52\x8e\xe7\xcb\x04\x42\x31\x6e\xf7\xe7\x23\ +\xfe\xc7\x85\x7f\xfd\x8e\x29\xd1\xe2\x34\xb1\x5c\x2c\x15\x8a\xf1\ +\x58\x89\xb8\x50\x22\x4d\xc7\x79\xb9\x52\x91\x44\x21\xc9\x95\xe2\ +\x12\xe9\x7f\x32\xf1\x1f\x96\xfd\x09\x93\x77\x0d\x00\xac\x86\x4f\ +\xc0\x4e\xb6\x07\xb5\xcb\x6c\xc0\x7e\xee\x01\x02\x8b\x0e\x58\xd2\ +\x76\x00\x40\x7e\xf3\x2d\x8c\x1a\x0b\x91\x00\x10\x67\x34\x32\x79\ +\xf7\x00\x00\x93\xbf\xf9\x8f\x40\x2b\x01\x00\xcd\x97\xa4\xe3\x00\ +\x00\xbc\xe8\x18\x5c\xa8\x94\x17\x4c\xc6\x08\x00\x00\x44\xa0\x81\ +\x2a\xb0\x41\x07\x0c\xc1\x14\xac\xc0\x0e\x9c\xc1\x1d\xbc\xc0\x17\ +\x02\x61\x06\x44\x40\x0c\x24\xc0\x3c\x10\x42\x06\xe4\x80\x1c\x0a\ +\xa1\x18\x96\x41\x19\x54\xc0\x3a\xd8\x04\xb5\xb0\x03\x1a\xa0\x11\ +\x9a\xe1\x10\xb4\xc1\x31\x38\x0d\xe7\xe0\x12\x5c\x81\xeb\x70\x17\ +\x06\x60\x18\x9e\xc2\x18\xbc\x86\x09\x04\x41\xc8\x08\x13\x61\x21\ +\x3a\x88\x11\x62\x8e\xd8\x22\xce\x08\x17\x99\x8e\x04\x22\x61\x48\ +\x34\x92\x80\xa4\x20\xe9\x88\x14\x51\x22\xc5\xc8\x72\xa4\x02\xa9\ +\x42\x6a\x91\x5d\x48\x23\xf2\x2d\x72\x14\x39\x8d\x5c\x40\xfa\x90\ +\xdb\xc8\x20\x32\x8a\xfc\x8a\xbc\x47\x31\x94\x81\xb2\x51\x03\xd4\ +\x02\x75\x40\xb9\xa8\x1f\x1a\x8a\xc6\xa0\x73\xd1\x74\x34\x0f\x5d\ +\x80\x96\xa2\x6b\xd1\x1a\xb4\x1e\x3d\x80\xb6\xa2\xa7\xd1\x4b\xe8\ +\x75\x74\x00\x7d\x8a\x8e\x63\x80\xd1\x31\x0e\x66\x8c\xd9\x61\x5c\ +\x8c\x87\x45\x60\x89\x58\x1a\x26\xc7\x16\x63\xe5\x58\x35\x56\x8f\ +\x35\x63\x1d\x58\x37\x76\x15\x1b\xc0\x9e\x61\xef\x08\x24\x02\x8b\ +\x80\x13\xec\x08\x5e\x84\x10\xc2\x6c\x82\x90\x90\x47\x58\x4c\x58\ +\x43\xa8\x25\xec\x23\xb4\x12\xba\x08\x57\x09\x83\x84\x31\xc2\x27\ +\x22\x93\xa8\x4f\xb4\x25\x7a\x12\xf9\xc4\x78\x62\x3a\xb1\x90\x58\ +\x46\xac\x26\xee\x21\x1e\x21\x9e\x25\x5e\x27\x0e\x13\x5f\x93\x48\ +\x24\x0e\xc9\x92\xe4\x4e\x0a\x21\x25\x90\x32\x49\x0b\x49\x6b\x48\ +\xdb\x48\x2d\xa4\x53\xa4\x3e\xd2\x10\x69\x9c\x4c\x26\xeb\x90\x6d\ +\xc9\xde\xe4\x08\xb2\x80\xac\x20\x97\x91\xb7\x90\x0f\x90\x4f\x92\ +\xfb\xc9\xc3\xe4\xb7\x14\x3a\xc5\x88\xe2\x4c\x09\xa2\x24\x52\xa4\ +\x94\x12\x4a\x35\x65\x3f\xe5\x04\xa5\x9f\x32\x42\x99\xa0\xaa\x51\ +\xcd\xa9\x9e\xd4\x08\xaa\x88\x3a\x9f\x5a\x49\x6d\xa0\x76\x50\x2f\ +\x53\x87\xa9\x13\x34\x75\x9a\x25\xcd\x9b\x16\x43\xcb\xa4\x2d\xa3\ +\xd5\xd0\x9a\x69\x67\x69\xf7\x68\x2f\xe9\x74\xba\x09\xdd\x83\x1e\ +\x45\x97\xd0\x97\xd2\x6b\xe8\x07\xe9\xe7\xe9\x83\xf4\x77\x0c\x0d\ +\x86\x0d\x83\xc7\x48\x62\x28\x19\x6b\x19\x7b\x19\xa7\x18\xb7\x19\ +\x2f\x99\x4c\xa6\x05\xd3\x97\x99\xc8\x54\x30\xd7\x32\x1b\x99\x67\ +\x98\x0f\x98\x6f\x55\x58\x2a\xf6\x2a\x7c\x15\x91\xca\x12\x95\x3a\ +\x95\x56\x95\x7e\x95\xe7\xaa\x54\x55\x73\x55\x3f\xd5\x79\xaa\x0b\ +\x54\xab\x55\x0f\xab\x5e\x56\x7d\xa6\x46\x55\xb3\x50\xe3\xa9\x09\ +\xd4\x16\xab\xd5\xa9\x1d\x55\xbb\xa9\x36\xae\xce\x52\x77\x52\x8f\ +\x50\xcf\x51\x5f\xa3\xbe\x5f\xfd\x82\xfa\x63\x0d\xb2\x86\x85\x46\ +\xa0\x86\x48\xa3\x54\x63\xb7\xc6\x19\x8d\x21\x16\xc6\x32\x65\xf1\ +\x58\x42\xd6\x72\x56\x03\xeb\x2c\x6b\x98\x4d\x62\x5b\xb2\xf9\xec\ +\x4c\x76\x05\xfb\x1b\x76\x2f\x7b\x4c\x53\x43\x73\xaa\x66\xac\x66\ +\x91\x66\x9d\xe6\x71\xcd\x01\x0e\xc6\xb1\xe0\xf0\x39\xd9\x9c\x4a\ +\xce\x21\xce\x0d\xce\x7b\x2d\x03\x2d\x3f\x2d\xb1\xd6\x6a\xad\x66\ +\xad\x7e\xad\x37\xda\x7a\xda\xbe\xda\x62\xed\x72\xed\x16\xed\xeb\ +\xda\xef\x75\x70\x9d\x40\x9d\x2c\x9d\xf5\x3a\x6d\x3a\xf7\x75\x09\ +\xba\x36\xba\x51\xba\x85\xba\xdb\x75\xcf\xea\x3e\xd3\x63\xeb\x79\ +\xe9\x09\xf5\xca\xf5\x0e\xe9\xdd\xd1\x47\xf5\x6d\xf4\xa3\xf5\x17\ +\xea\xef\xd6\xef\xd1\x1f\x37\x30\x34\x08\x36\x90\x19\x6c\x31\x38\ +\x63\xf0\xcc\x90\x63\xe8\x6b\x98\x69\xb8\xd1\xf0\x84\xe1\xa8\x11\ +\xcb\x68\xba\x91\xc4\x68\xa3\xd1\x49\xa3\x27\xb8\x26\xee\x87\x67\ +\xe3\x35\x78\x17\x3e\x66\xac\x6f\x1c\x62\xac\x34\xde\x65\xdc\x6b\ +\x3c\x61\x62\x69\x32\xdb\xa4\xc4\xa4\xc5\xe4\xbe\x29\xcd\x94\x6b\ +\x9a\x66\xba\xd1\xb4\xd3\x74\xcc\xcc\xc8\x2c\xdc\xac\xd8\xac\xc9\ +\xec\x8e\x39\xd5\x9c\x6b\x9e\x61\xbe\xd9\xbc\xdb\xfc\x8d\x85\xa5\ +\x45\x9c\xc5\x4a\x8b\x36\x8b\xc7\x96\xda\x96\x7c\xcb\x05\x96\x4d\ +\x96\xf7\xac\x98\x56\x3e\x56\x79\x56\xf5\x56\xd7\xac\x49\xd6\x5c\ +\xeb\x2c\xeb\x6d\xd6\x57\x6c\x50\x1b\x57\x9b\x0c\x9b\x3a\x9b\xcb\ +\xb6\xa8\xad\x9b\xad\xc4\x76\x9b\x6d\xdf\x14\xe2\x14\x8f\x29\xd2\ +\x29\xf5\x53\x6e\xda\x31\xec\xfc\xec\x0a\xec\x9a\xec\x06\xed\x39\ +\xf6\x61\xf6\x25\xf6\x6d\xf6\xcf\x1d\xcc\x1c\x12\x1d\xd6\x3b\x74\ +\x3b\x7c\x72\x74\x75\xcc\x76\x6c\x70\xbc\xeb\xa4\xe1\x34\xc3\xa9\ +\xc4\xa9\xc3\xe9\x57\x67\x1b\x67\xa1\x73\x9d\xf3\x35\x17\xa6\x4b\ +\x90\xcb\x12\x97\x76\x97\x17\x53\x6d\xa7\x8a\xa7\x6e\x9f\x7a\xcb\ +\x95\xe5\x1a\xee\xba\xd2\xb5\xd3\xf5\xa3\x9b\xbb\x9b\xdc\xad\xd9\ +\x6d\xd4\xdd\xcc\x3d\xc5\x7d\xab\xfb\x4d\x2e\x9b\x1b\xc9\x5d\xc3\ +\x3d\xef\x41\xf4\xf0\xf7\x58\xe2\x71\xcc\xe3\x9d\xa7\x9b\xa7\xc2\ +\xf3\x90\xe7\x2f\x5e\x76\x5e\x59\x5e\xfb\xbd\x1e\x4f\xb3\x9c\x26\ +\x9e\xd6\x30\x6d\xc8\xdb\xc4\x5b\xe0\xbd\xcb\x7b\x60\x3a\x3e\x3d\ +\x65\xfa\xce\xe9\x03\x3e\xc6\x3e\x02\x9f\x7a\x9f\x87\xbe\xa6\xbe\ +\x22\xdf\x3d\xbe\x23\x7e\xd6\x7e\x99\x7e\x07\xfc\x9e\xfb\x3b\xfa\ +\xcb\xfd\x8f\xf8\xbf\xe1\x79\xf2\x16\xf1\x4e\x05\x60\x01\xc1\x01\ +\xe5\x01\xbd\x81\x1a\x81\xb3\x03\x6b\x03\x1f\x04\x99\x04\xa5\x07\ +\x35\x05\x8d\x05\xbb\x06\x2f\x0c\x3e\x15\x42\x0c\x09\x0d\x59\x1f\ +\x72\x93\x6f\xc0\x17\xf2\x1b\xf9\x63\x33\xdc\x67\x2c\x9a\xd1\x15\ +\xca\x08\x9d\x15\x5a\x1b\xfa\x30\xcc\x26\x4c\x1e\xd6\x11\x8e\x86\ +\xcf\x08\xdf\x10\x7e\x6f\xa6\xf9\x4c\xe9\xcc\xb6\x08\x88\xe0\x47\ +\x6c\x88\xb8\x1f\x69\x19\x99\x17\xf9\x7d\x14\x29\x2a\x32\xaa\x2e\ +\xea\x51\xb4\x53\x74\x71\x74\xf7\x2c\xd6\xac\xe4\x59\xfb\x67\xbd\ +\x8e\xf1\x8f\xa9\x8c\xb9\x3b\xdb\x6a\xb6\x72\x76\x67\xac\x6a\x6c\ +\x52\x6c\x63\xec\x9b\xb8\x80\xb8\xaa\xb8\x81\x78\x87\xf8\x45\xf1\ +\x97\x12\x74\x13\x24\x09\xed\x89\xe4\xc4\xd8\xc4\x3d\x89\xe3\x73\ +\x02\xe7\x6c\x9a\x33\x9c\xe4\x9a\x54\x96\x74\x63\xae\xe5\xdc\xa2\ +\xb9\x17\xe6\xe9\xce\xcb\x9e\x77\x3c\x59\x35\x59\x90\x7c\x38\x85\ +\x98\x12\x97\xb2\x3f\xe5\x83\x20\x42\x50\x2f\x18\x4f\xe5\xa7\x6e\ +\x4d\x1d\x13\xf2\x84\x9b\x85\x4f\x45\xbe\xa2\x8d\xa2\x51\xb1\xb7\ +\xb8\x4a\x3c\x92\xe6\x9d\x56\x95\xf6\x38\xdd\x3b\x7d\x43\xfa\x68\ +\x86\x4f\x46\x75\xc6\x33\x09\x4f\x52\x2b\x79\x91\x19\x92\xb9\x23\ +\xf3\x4d\x56\x44\xd6\xde\xac\xcf\xd9\x71\xd9\x2d\x39\x94\x9c\x94\ +\x9c\xa3\x52\x0d\x69\x96\xb4\x2b\xd7\x30\xb7\x28\xb7\x4f\x66\x2b\ +\x2b\x93\x0d\xe4\x79\xe6\x6d\xca\x1b\x93\x87\xca\xf7\xe4\x23\xf9\ +\x73\xf3\xdb\x15\x6c\x85\x4c\xd1\xa3\xb4\x52\xae\x50\x0e\x16\x4c\ +\x2f\xa8\x2b\x78\x5b\x18\x5b\x78\xb8\x48\xbd\x48\x5a\xd4\x33\xdf\ +\x66\xfe\xea\xf9\x23\x0b\x82\x16\x7c\xbd\x90\xb0\x50\xb8\xb0\xb3\ +\xd8\xb8\x78\x59\xf1\xe0\x22\xbf\x45\xbb\x16\x23\x8b\x53\x17\x77\ +\x2e\x31\x5d\x52\xba\x64\x78\x69\xf0\xd2\x7d\xcb\x68\xcb\xb2\x96\ +\xfd\x50\xe2\x58\x52\x55\xf2\x6a\x79\xdc\xf2\x8e\x52\x83\xd2\xa5\ +\xa5\x43\x2b\x82\x57\x34\x95\xa9\x94\xc9\xcb\x6e\xae\xf4\x5a\xb9\ +\x63\x15\x61\x95\x64\x55\xef\x6a\x97\xd5\x5b\x56\x7f\x2a\x17\x95\ +\x5f\xac\x70\xac\xa8\xae\xf8\xb0\x46\xb8\xe6\xe2\x57\x4e\x5f\xd5\ +\x7c\xf5\x79\x6d\xda\xda\xde\x4a\xb7\xca\xed\xeb\x48\xeb\xa4\xeb\ +\x6e\xac\xf7\x59\xbf\xaf\x4a\xbd\x6a\x41\xd5\xd0\x86\xf0\x0d\xad\ +\x1b\xf1\x8d\xe5\x1b\x5f\x6d\x4a\xde\x74\xa1\x7a\x6a\xf5\x8e\xcd\ +\xb4\xcd\xca\xcd\x03\x35\x61\x35\xed\x5b\xcc\xb6\xac\xdb\xf2\xa1\ +\x36\xa3\xf6\x7a\x9d\x7f\x5d\xcb\x56\xfd\xad\xab\xb7\xbe\xd9\x26\ +\xda\xd6\xbf\xdd\x77\x7b\xf3\x0e\x83\x1d\x15\x3b\xde\xef\x94\xec\ +\xbc\xb5\x2b\x78\x57\x6b\xbd\x45\x7d\xf5\x6e\xd2\xee\x82\xdd\x8f\ +\x1a\x62\x1b\xba\xbf\xe6\x7e\xdd\xb8\x47\x77\x4f\xc5\x9e\x8f\x7b\ +\xa5\x7b\x07\xf6\x45\xef\xeb\x6a\x74\x6f\x6c\xdc\xaf\xbf\xbf\xb2\ +\x09\x6d\x52\x36\x8d\x1e\x48\x3a\x70\xe5\x9b\x80\x6f\xda\x9b\xed\ +\x9a\x77\xb5\x70\x5a\x2a\x0e\xc2\x41\xe5\xc1\x27\xdf\xa6\x7c\x7b\ +\xe3\x50\xe8\xa1\xce\xc3\xdc\xc3\xcd\xdf\x99\x7f\xb7\xf5\x08\xeb\ +\x48\x79\x2b\xd2\x3a\xbf\x75\xac\x2d\xa3\x6d\xa0\x3d\xa1\xbd\xef\ +\xe8\x8c\xa3\x9d\x1d\x5e\x1d\x47\xbe\xb7\xff\x7e\xef\x31\xe3\x63\ +\x75\xc7\x35\x8f\x57\x9e\xa0\x9d\x28\x3d\xf1\xf9\xe4\x82\x93\xe3\ +\xa7\x64\xa7\x9e\x9d\x4e\x3f\x3d\xd4\x99\xdc\x79\xf7\x4c\xfc\x99\ +\x6b\x5d\x51\x5d\xbd\x67\x43\xcf\x9e\x3f\x17\x74\xee\x4c\xb7\x5f\ +\xf7\xc9\xf3\xde\xe7\x8f\x5d\xf0\xbc\x70\xf4\x22\xf7\x62\xdb\x25\ +\xb7\x4b\xad\x3d\xae\x3d\x47\x7e\x70\xfd\xe1\x48\xaf\x5b\x6f\xeb\ +\x65\xf7\xcb\xed\x57\x3c\xae\x74\xf4\x4d\xeb\x3b\xd1\xef\xd3\x7f\ +\xfa\x6a\xc0\xd5\x73\xd7\xf8\xd7\x2e\x5d\x9f\x79\xbd\xef\xc6\xec\ +\x1b\xb7\x6e\x26\xdd\x1c\xb8\x25\xba\xf5\xf8\x76\xf6\xed\x17\x77\ +\x0a\xee\x4c\xdc\x5d\x7a\x8f\x78\xaf\xfc\xbe\xda\xfd\xea\x07\xfa\ +\x0f\xea\x7f\xb4\xfe\xb1\x65\xc0\x6d\xe0\xf8\x60\xc0\x60\xcf\xc3\ +\x59\x0f\xef\x0e\x09\x87\x9e\xfe\x94\xff\xd3\x87\xe1\xd2\x47\xcc\ +\x47\xd5\x23\x46\x23\x8d\x8f\x9d\x1f\x1f\x1b\x0d\x1a\xbd\xf2\x64\ +\xce\x93\xe1\xa7\xb2\xa7\x13\xcf\xca\x7e\x56\xff\x79\xeb\x73\xab\ +\xe7\xdf\xfd\xe2\xfb\x4b\xcf\x58\xfc\xd8\xf0\x0b\xf9\x8b\xcf\xbf\ +\xae\x79\xa9\xf3\x72\xef\xab\xa9\xaf\x3a\xc7\x23\xc7\x1f\xbc\xce\ +\x79\x3d\xf1\xa6\xfc\xad\xce\xdb\x7d\xef\xb8\xef\xba\xdf\xc7\xbd\ +\x1f\x99\x28\xfc\x40\xfe\x50\xf3\xd1\xfa\x63\xc7\xa7\xd0\x4f\xf7\ +\x3e\xe7\x7c\xfe\xfc\x2f\xf7\x84\xf3\xfb\x25\xd2\x9f\x33\x00\x00\ +\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8e\x7c\xfb\x51\x93\x00\x00\ +\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x25\x00\x00\x80\x83\x00\x00\ +\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\x30\x00\x00\xea\x60\x00\x00\ +\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\x46\x00\x00\x0a\x56\x49\x44\ +\x41\x54\x78\xda\xec\x9a\x6b\x6c\x14\xd7\x15\xc7\x7f\x33\xb3\xeb\ +\xf5\x7a\xfd\xc0\x6f\xb0\xcd\xc3\x84\xe0\x10\xf3\x34\x06\x63\xb1\ +\x89\x49\x08\xaf\x24\x6a\x90\x5a\xa9\x95\xd5\x28\x54\x55\x1e\x9b\ +\x54\x45\x45\x72\x55\xea\x94\x48\x29\x91\x22\x55\x54\x91\x9a\x60\ +\x91\xa7\x4b\xa3\x56\xfd\xd2\xb4\x88\xa8\x51\x93\x94\x84\xa6\x09\ +\xa5\x21\x69\x42\x09\x14\x08\x84\x57\x8c\x8d\x0d\xf6\x7a\xd7\xbb\ +\x3b\x33\x77\x6e\x3f\xcc\xdd\x97\x1f\x24\x06\x43\x1a\xa9\x23\x1d\ +\xdd\xbb\x73\xcf\x39\xf7\xfc\xcf\x39\xf7\x39\xab\x49\x29\xf9\x3a\ +\x3f\x3a\x5f\xf3\xe7\xff\x00\xbe\xea\xc7\x73\x2d\x94\x76\x6c\xc8\ +\x6f\x05\x42\x80\x01\xbc\x0a\x74\x84\x3a\x23\x17\xaf\x45\x5f\xda\ +\x44\x0f\xe2\x8e\x0d\xf9\xdb\xe7\x2c\x5b\x10\x5a\x74\xc7\x9d\x68\ +\xba\xce\xe9\xc3\x1f\xb3\xef\x4f\xaf\x61\x99\xd6\x83\xa1\xce\xc8\ +\xb3\x13\x8e\x40\x4a\x39\x61\xb4\xfd\xbe\xc0\x53\xef\xff\xee\x2e\ +\x29\xa3\xfb\xa5\x8c\x7d\x22\x65\xec\xb0\x94\xd1\x0f\xe5\xe0\xa9\ +\x67\xe4\x8b\xa1\x32\xb9\xfd\xbe\x40\x70\x22\xfb\x93\x52\x4e\xdc\ +\x18\xe8\xd8\x90\xdf\x5a\x35\xa3\x66\x63\xc3\x5d\x9b\x41\x2f\x06\ +\x2d\xcf\x25\xa3\x98\xfc\xf2\x16\xd6\xde\xff\x20\x2a\xad\xfe\x67\ +\x07\x71\x68\xc5\x7d\x3f\x44\xf3\x54\x80\xec\x02\xeb\x55\xb0\x76\ +\x83\xf8\x18\xf4\x7c\xa6\xd4\x7d\x87\x99\xf3\x6f\x6c\xed\xd8\x90\ +\xff\xc0\x84\x0f\xe2\x68\x34\x7a\x55\x4a\x76\x3e\x52\xb9\x69\xfe\ +\xad\x4b\x82\x45\x95\xb7\x80\x73\x12\xac\x3d\x19\xbe\x39\x07\xfa\ +\xa7\xe0\x59\x4d\xf0\x5b\x3f\xe2\xc4\xc7\x0f\x87\xa2\xd1\xe8\x55\ +\x8f\x85\x40\x20\x90\x06\xd0\xdf\xdf\x7f\xc5\x8a\x76\xb5\xd7\xe5\ +\x18\x1e\x63\x5b\xc3\x9a\x87\x41\x44\xc1\xfc\x2b\x20\xb2\x99\xc4\ +\x39\x90\xfb\x08\x14\xcf\x67\xe1\x8a\xe6\x85\x3b\x1f\xa9\x6c\xff\ +\xc6\x13\xff\x79\x62\xc2\x00\xf4\xf5\xf5\x5d\x8d\xae\x2d\x4b\xd6\ +\xac\xc2\x5f\x50\x03\x89\xbd\xe0\x24\x46\xe7\x12\x07\xc1\x37\x83\ +\x86\xd5\x0f\x73\x78\xdf\x81\xad\xbb\xda\xeb\x9e\x5d\xbe\xe9\xdd\ +\x0b\x57\xda\x69\x75\x75\x75\x1a\x40\x4f\x4f\xcf\x15\x29\x39\xf6\ +\xf2\xfa\x5a\x7f\xc0\xdf\x3e\x77\xf9\xb7\xc1\xfe\x1c\xac\xcf\x40\ +\xbb\x8c\x40\xe2\x6f\xf8\x02\x2d\x2c\x59\xbb\x96\x77\xfe\xb8\xab\ +\xad\xa7\xa7\xe7\xc7\x13\x32\x06\x2e\x5c\xb8\x62\x47\x6c\x6c\x5a\ +\x77\x17\x5e\x7f\x3e\xc4\xde\x00\x19\x77\x73\x7f\x34\x10\x12\x10\ +\xa7\x40\x3f\xcf\x9c\x65\x77\xf3\xd1\x5b\x6f\xb7\x1d\x7b\x79\xfd\ +\xae\x49\x6b\x9e\x7b\xe7\xaa\x01\xf4\xf6\xf6\x8e\x5f\xf0\xc0\xe6\ +\x60\x71\x45\xc9\xc6\xba\xc6\x15\xae\xe7\xad\x6e\xd7\xf0\xcb\x45\ +\x40\x02\xb1\xb7\xf0\xe4\xad\x25\x78\xcf\x37\xf9\xf3\xaf\x5f\x0c\ +\xf5\xf6\xf6\x5e\x3d\x80\x8b\x17\xc7\xbf\xca\x57\x40\x68\xe9\xea\ +\x3b\xd1\x0d\x1f\x44\x5e\x07\xe2\x0a\x80\x36\x76\x04\xa4\x04\x19\ +\x03\xf3\x28\xd3\xe7\x2c\xa0\xa2\xa6\xaa\xb5\xe7\xc0\xe6\x57\x7b\ +\x6a\xdb\x7e\x7b\x55\x00\xc2\xe1\xf0\xb8\x84\x66\xf5\xed\x68\x9d\ +\x3c\x7d\x7a\xeb\xcc\x79\x4b\x21\x71\x08\xc4\x80\xbb\xeb\x91\xc9\ +\x08\x8c\x81\x20\xb9\x6b\x19\x7a\x0f\xad\x60\x3d\xc1\x7b\xd6\xf3\ +\x87\x67\xb6\x87\xc2\xe1\xf0\xd5\x01\x48\x24\x12\xe3\x5e\xb4\x9a\ +\xd7\xad\x01\x99\x80\xd8\x7e\xd0\x1d\xd7\x38\x1d\x90\x1a\x47\x8e\ +\x84\x79\xe1\xb9\xe3\x0c\x0d\xd9\x34\x34\x94\xf0\xfd\xfb\x67\x29\ +\x70\x12\x1c\xdc\x68\xc5\xfe\x49\xe5\x8c\x25\xdc\xb8\x60\x5e\x90\ +\x8f\x76\x6c\x3a\x94\xbf\xe1\x97\xd7\x65\x25\xae\x8f\x74\x6e\x9a\ +\x35\xaf\x3e\x38\x79\xe6\x5c\x88\x7f\x00\x0c\xa9\xf4\x89\xbb\xa5\ +\x11\x67\xf7\xee\x2e\x7c\xba\x43\x49\x81\xce\xd1\xc3\x97\xf8\xe0\ +\x5f\xdd\x60\xc4\xb3\xf9\xcc\x8f\xc0\x19\xa4\x69\xcd\x3a\x74\xc3\ +\xd8\x56\x1f\xe9\x2c\xba\xe6\x00\xea\x23\x9d\x39\xba\x61\x6c\x6b\ +\x5a\xb7\x16\x44\x0f\x98\x1f\x82\x96\x70\x89\x04\x18\x26\x90\xa0\ +\xaf\x2b\x8c\xa6\xb2\x28\xc7\xa3\x91\x30\x8b\xb2\xda\x5d\x99\x38\ +\x0c\xbd\x49\x41\xd9\x34\x16\xb5\x2c\x07\x68\xbf\x1e\x11\xd8\x32\ +\x77\x59\x23\x85\xa5\x35\x10\x79\x5b\x2d\x5a\x71\xd7\x28\x3d\x91\ +\xf2\x70\xf9\xe4\xb2\x61\xbd\x68\x69\xcf\xeb\x0a\x2c\x71\x48\x1c\ +\x07\xf3\x38\x8b\x5a\xee\xc0\xe7\xf7\xb7\xd5\x47\x3a\xe7\x5d\x33\ +\x00\xf5\x91\xce\xda\x9c\x5c\x7f\x7b\xe3\xca\xdb\x21\x71\x04\xec\ +\xa3\xa0\x0d\x01\x31\x55\xaa\xba\x1e\x23\xd7\x9f\x93\x25\x5b\x5a\ +\xe1\x05\x3d\xe6\xb6\x33\x94\x2d\x17\x7d\x03\xaf\x2f\xc0\xb2\xb5\ +\xb7\x5f\xd1\x6e\x75\x3c\x11\xd8\xb8\xb8\xa5\x19\x9f\xbf\x00\x22\ +\x6f\x82\x34\x01\x95\x12\x24\x40\x33\xc1\x70\x23\x31\xa9\x2c\x3f\ +\x4b\xd0\xef\x0f\xbb\x9e\x37\x14\x5f\x52\x06\xd3\xdd\x27\xc5\xf6\ +\x31\xa7\xb1\x89\xd2\x29\x95\xa1\xfa\x48\x67\xeb\x84\x03\xa8\x8f\ +\x74\x06\x0b\x8b\x8b\x37\xce\x0f\x2e\x85\xd8\x3f\x40\x74\xa5\x01\ +\x48\xd3\x35\x4a\x26\x52\x54\x5c\xe6\xcd\x8e\x40\x79\x76\xbb\xcb\ +\x9f\x21\x1f\x7d\x1d\x4d\x13\xdc\x72\xf7\xea\x71\x47\xe1\xcb\x46\ +\x20\xd4\xb8\xa2\x19\x5d\xb7\x60\xf0\x4d\xb5\x65\x88\x8f\x2c\x15\ +\x15\x97\xa6\x8f\xa9\xfe\x80\x9f\x3c\x7f\x77\x56\xfb\x08\x39\x67\ +\x10\xc2\x7f\x61\x4a\xed\x34\x66\xce\x99\x1d\xac\x8f\x74\x6e\x1a\ +\x17\x00\x5d\xd7\xc7\xa4\xfa\x48\xe7\xbd\xe5\xd5\x35\xad\xb3\x17\ +\xcf\xc1\x19\x78\x07\xc7\x0e\x23\x1d\xcb\x25\x69\x65\xd7\x15\x15\ +\x97\xa6\xd7\x95\x29\xd3\x2a\x91\x4e\x38\xab\x7d\x34\x79\x27\xfa\ +\x1e\xd2\xec\xa6\x69\x75\x30\x35\xad\x5e\xce\xae\x2f\x0d\x00\x08\ +\x35\xad\x5a\x86\xb4\x2e\x22\x06\xdf\x45\x3a\x36\x8e\x63\xe3\x48\ +\x45\xb8\x24\xb1\x91\xd2\xa5\xea\xa9\xe9\x03\x52\x51\xa9\x81\x74\ +\xd2\x6d\x92\xb4\x4c\x4a\x87\x63\x23\x1d\x13\xfb\xe2\x6e\x0a\xcb\ +\x26\x51\xbf\xa4\x01\xa0\xfd\x4b\x03\x30\x0c\x63\x54\xaa\xeb\x7f\ +\xbe\x7d\xda\xec\xba\xe6\xaa\xda\x72\xec\x4b\x6f\x23\x6d\x13\x21\ +\x04\x42\x0a\x84\x23\x90\xd2\x25\x1c\x81\x14\x02\x69\xbb\xa5\xdf\ +\x7b\x16\x7f\x5e\x2e\x00\xc5\x25\x1a\x72\x58\x3b\x19\xb2\xc2\x51\ +\xfa\x84\x40\xc6\x4e\xe2\x44\x0f\xd1\xb0\x72\x01\xfe\xfc\x82\xb6\ +\xba\xfe\xe7\x83\x63\xd9\xf6\x85\x00\x66\xf5\xed\x28\xf2\x78\x73\ +\xb6\x36\xaf\x5d\x84\x1c\x3a\x83\x13\x3e\x08\xd2\x01\xcd\x71\x4b\ +\xe9\x20\x45\x06\x39\x8a\x84\x83\x14\x51\xa6\x4c\xaf\x04\xc0\xe7\ +\x4b\xa4\xdf\x67\xf1\xb8\x94\xd4\x95\xd4\xeb\xf4\xee\xc1\xe7\xd1\ +\x69\xbc\x75\x29\x40\xe8\x8a\x01\x00\xed\x37\xce\xbd\x99\x82\x42\ +\x3f\x89\x9e\xbd\x08\x07\x2c\x01\x8e\x05\x8e\x00\xe5\xf8\x54\x99\ +\xac\x4b\x01\xd2\x82\xca\x6a\x3f\x00\x55\xd5\x06\xd2\x4a\xb7\x39\ +\x62\x0c\x79\xcb\xd5\x6f\x99\x97\xb0\xfa\xf6\x53\xd7\x30\x8d\xc2\ +\x92\x8a\xd6\xda\x9e\xed\xad\xe3\x06\x30\xad\xeb\x57\xcd\xb9\x79\ +\xf9\x6d\x8b\x5b\x6e\xc0\xee\x3f\x8c\x13\xe9\xc2\xb1\x5d\x47\x09\ +\x07\x84\x3d\x92\x1c\xcb\x2d\xa5\x22\x9f\x37\xe6\x1e\xfd\x2a\x7b\ +\x53\xef\x32\xf9\x46\x90\x0a\x84\x63\x83\xd5\xb3\x1f\x61\x0d\xb0\ +\xf4\xf6\x85\x63\x46\xe1\xb2\x00\x80\xd0\xdc\xa5\xf3\xf0\xe4\x08\ +\xcc\xf3\xef\x21\x1c\xe5\x25\x3b\x4d\xc2\x4e\x7b\xd3\xb1\xd3\xa5\ +\xb0\x5c\x0a\xde\x56\xc2\x63\xdb\x1f\xc5\x8e\x9f\x4d\xbd\xcb\xe4\ +\x4b\xca\x0a\x3b\x5b\xaf\x23\x40\x08\x0b\xf3\xfc\xbb\x4c\x9d\x35\ +\x89\xea\x19\xb3\x82\xd5\x67\x9f\x6a\x1f\x0b\x80\x27\x09\x60\xcb\ +\x96\x2d\xa9\x0b\xaa\x40\x51\xd9\xbd\x73\x16\x95\x61\xf5\x1c\xc2\ +\x4e\x0c\xa1\x1b\xee\x16\x5f\x6a\xee\x8e\x38\xb5\xe5\x17\xea\x0c\ +\x60\xb8\x67\x15\x4d\x57\x3c\x3a\x88\xfe\x3d\x88\xfe\x3d\xe9\xd3\ +\x80\xa3\x8e\x04\x0e\xee\x96\x5a\xa4\xd3\x1f\xa1\x22\x97\xac\x0b\ +\xb0\x2e\x7e\x8a\x51\x74\x13\x4d\x2b\x6f\x60\xd7\x6f\xce\x6d\x9d\ +\x7c\x6a\xdb\xae\x50\x67\xe4\x20\xc0\xe3\x8f\x3f\x3e\x32\x02\x59\ +\x8b\xd6\xad\xb3\x91\x76\x98\xf8\xf9\x7f\xa7\xbc\x9d\x0a\xbf\xf2\ +\x9a\x34\xc1\x31\xd5\x98\x50\x75\x61\xb9\xbf\x2f\x74\xeb\xec\x78\ +\x3e\x8f\xb6\xcd\x85\xec\x7c\xd9\x8f\x50\x7c\x22\x83\x37\x29\x27\ +\x4d\xa5\x5f\x64\xa7\x97\x63\x43\xfc\xf4\x7e\x02\x45\x5e\x6e\x9a\ +\x7f\x73\xd6\x0a\x3d\x6a\x0a\x29\xef\x6f\x2a\xab\x98\x1e\x9c\x5e\ +\x9b\x4b\xe2\xdc\x41\xa4\x65\x67\xa7\x89\xca\x65\x27\xa3\x93\xa4\ +\xd1\xc9\xc1\xeb\xd8\xf0\xca\xee\x02\xba\xbb\xbc\x94\x14\xe8\x9c\ +\x3c\x91\xc3\x9e\xbd\x3e\x57\x56\xf1\x39\x19\x29\x25\x86\xe9\xcd\ +\x4c\x2f\x7b\xf0\x02\x76\xef\x71\x16\x36\x17\x92\x57\x50\x1a\x52\ +\xb7\xde\xa3\x03\xe8\xd8\x90\x9f\xaf\xe9\xc6\xb6\xc6\x96\x4a\xcc\ +\xa1\x0b\xc4\x7b\xcf\x62\x59\x60\xdb\x19\x64\x81\x65\x66\x78\x2a\ +\xc3\x08\xdb\x4c\x47\xe9\xfc\xe7\xe0\x35\xb4\xd4\x79\xe0\xcc\xb9\ +\xf2\x94\x4c\x8a\x2f\x39\x5e\x94\x8c\x65\xba\xfa\x33\xfb\xb3\x2c\ +\x88\x9e\xf9\x04\x61\x0f\xd1\xb0\xbc\x36\x15\x85\x11\x00\xd4\xca\ +\xd6\x36\x65\xea\x4c\x8a\x2b\x0c\x86\x4e\x1c\x46\x58\xd2\x9d\xe6\ +\x92\x33\x8b\x48\xe7\xaf\x10\xe9\xce\x6d\x2b\x23\xfc\xa6\x6b\xe0\ +\xec\x9b\x66\x66\xed\x57\x6a\xa6\xd7\xb8\x86\x9b\xe9\x34\xb4\x33\ +\x9c\x20\x84\xab\x57\x3a\xaa\x9f\x64\x44\x04\xd8\xf1\x18\xf1\x33\ +\x47\x99\x7a\x83\x97\x8a\xaa\x99\xc1\x8e\x0d\xf9\x5b\x47\xac\xc4\ +\x79\x07\x1f\xf3\x6b\xba\x67\xcb\xc2\x60\x2e\x66\xcf\x29\x62\xfd\ +\x03\xae\x17\x44\xb6\x37\x6c\x4b\x95\x2a\xdf\x53\x46\x28\xef\x25\ +\x73\x7b\xd5\x9a\x9b\x99\x5c\x3d\x05\x80\x19\xb3\x6a\x69\x5a\x5c\ +\x94\xca\x79\x5b\x01\x4d\x81\x57\xfa\xb2\xf4\x27\xa3\xa0\xfa\x8f\ +\x74\x9d\xc3\x0a\xf7\xb0\x74\x65\x00\xdd\x93\xdb\x9e\x77\xf0\xb1\ +\xea\xe1\x5f\x68\x5a\x02\xfe\x72\x02\x7e\x9b\x81\xc3\xa7\x71\x4c\ +\xd0\x0c\x35\xab\xe8\x2e\x97\xa1\x83\xf0\xb8\x33\x8e\xa6\xa9\x52\ +\x57\x75\xdd\xad\x3b\xba\x3b\x3b\x79\xe4\x6b\x7c\xf7\x7b\xf7\x62\ +\xf8\x6b\xb0\x23\xc7\x18\x3a\xbd\x13\x69\xa7\x67\xa1\x64\x24\xa5\ +\xcc\x98\x79\xa4\x9a\xd5\xd4\x9a\x80\x9d\xe6\x95\x42\x32\x78\xf4\ +\x04\x85\xf3\xea\xa9\xaa\x99\xca\xd9\xcf\x8e\x85\x80\x47\x33\x01\ +\xd4\xfa\x72\x7d\x44\x4e\x9e\x21\x31\x90\x40\xf7\xba\x9d\xe9\x1e\ +\x05\x44\x03\xa1\xb9\xe1\xd2\xa4\x3b\x55\xa6\x6e\x4a\x92\x53\xab\ +\x54\x46\x48\x10\x89\x3e\x22\xc7\x9e\xca\xba\x12\x72\x6f\x23\x94\ +\x4c\xf2\x86\x25\xe3\xa6\x25\x59\x77\xd4\x74\x2d\x35\xa5\xcb\x76\ +\x81\xc5\x7b\x23\x78\xcf\x9c\xa1\x6a\x6a\x39\x67\x3f\x63\xd5\x70\ +\x00\x11\xd3\xb4\x18\xfc\xb4\xd7\xf5\x8c\x3a\xc6\x3a\x1a\x18\x06\ +\x68\xde\xb4\xc7\x93\x11\xd0\xd4\xda\x80\xe6\xf2\xa2\xbc\xaf\x8d\ +\x72\x3b\xa7\xa9\x64\x95\xea\xea\x45\x77\xc0\x51\x60\x35\xe9\x46\ +\x59\x4a\xd0\x84\xd2\x2f\x14\x18\x15\x19\x47\x0d\xf4\xfe\xa3\xdd\ +\x44\x8b\x8a\x01\x06\x86\xa7\xd0\xae\xc8\x50\x37\x17\xa5\xa0\x30\ +\x1f\x0c\xe5\x59\xc3\xa3\xbc\xa5\x81\x6e\x80\xf4\xa4\x53\x46\x66\ +\x80\x90\x5a\xda\xf8\x64\x74\x52\x8b\xdd\x70\x2f\xa7\xee\x8f\xd4\ +\x6f\xa1\xf8\x1c\x17\x88\x6e\x83\x90\xe9\x74\x13\xb6\x5a\x63\x4c\ +\x30\xe3\x82\x23\xa7\xba\x00\x3a\xb2\x00\x88\xc6\x27\x07\x3c\x07\ +\x7e\xfa\xb3\x4f\x22\xbe\x9f\x97\x85\x4d\xaa\x26\x49\x0a\x4a\xfd\ +\x78\x73\x4b\xd0\x73\x35\x0c\xaf\xa6\xa2\xa0\xa5\xc7\x80\x5a\x71\ +\xc9\xf0\x7e\x96\xc7\x33\x7f\x67\x82\x50\x40\x34\xb5\x32\x27\xc1\ +\xa4\x22\xa0\x81\xa1\x4b\x04\x12\x4d\x4a\x74\x47\x62\x85\xbb\x39\ +\xdb\xeb\x70\xce\xca\x41\x6a\x89\x5f\x88\xc6\x27\x5f\x19\xf1\x99\ +\xf5\xa1\x97\xc2\x4f\x3c\xf7\x40\xd9\xdf\x2f\x39\x56\x68\x20\x2e\ +\x6f\xf3\x9e\xd7\xca\x72\x2e\xc5\xf0\x7a\x35\x0c\x03\x74\x5d\x1b\ +\xfb\xd6\x70\xc2\xbe\x38\xa6\xaf\x50\x6d\x5b\x62\x0b\x89\x65\x81\ +\x99\xc8\xc3\x96\x72\xaf\xe6\xd1\x3b\x1e\x7a\x61\xe0\xf7\x4f\x3f\ +\xfd\xf4\xa8\xdf\x89\xe5\xfd\xcf\xf6\xbe\x05\xec\x55\xef\x3d\x40\ +\x2e\xe0\x03\xbc\xca\x57\xd7\xe3\xc3\x78\x72\xb7\x64\x67\x5f\x7b\ +\x60\xab\xf7\x72\xc4\xdd\xa8\xf1\xfe\x4f\x80\x1f\x64\x2a\xb0\x33\ +\x14\x99\xe9\xe1\x7a\x4d\xfd\x9f\x35\x69\x0d\xb3\x43\x64\x1a\x9e\ +\x69\xaf\xe7\x32\x5e\x50\x43\x09\xfb\x3a\x1a\x9f\x75\x19\x3f\x0a\ +\x7d\xe1\x5f\x0d\x86\x33\x89\xcc\x71\xf9\x15\x3c\xf2\x32\xb6\x01\ +\xf0\xdf\x01\x00\x6d\xbe\xca\x6b\x94\x7f\xd6\xea\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0c\x9c\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x05\x31\x00\x00\x05\x31\ +\x01\xb7\xed\x28\x52\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x0c\x19\x49\x44\ +\x41\x54\x68\x81\x9d\x99\x7b\x8c\x15\xd5\x1d\xc7\x3f\x67\x66\x2e\ +\xe8\x2a\x25\x48\xc1\xa5\x20\x2a\x01\x5c\x05\x71\x45\x0b\xcb\xc3\ +\xda\xb8\x96\x44\xdb\xc2\x0a\xd1\x8d\xa0\x8b\x0f\xda\x8a\x6f\x94\ +\x6a\xfa\x07\x58\xff\x6a\xb4\xa9\x0d\x88\xca\x23\x36\x54\xc5\x68\ +\xa5\xb1\x2d\x52\xa5\xb0\x60\x5b\x82\x8d\xc6\xb0\xab\x18\x50\xd8\ +\x16\x58\x1e\xae\x2f\x28\xec\xe3\xde\x3b\x73\xce\xe9\x1f\x73\xce\ +\xdc\x33\xb3\x77\x97\xdd\x4e\xf2\xcb\x9c\x39\x33\x73\xe6\xfb\xfd\ +\xbd\x67\x46\x68\xad\xe9\xef\x56\x2f\x84\xff\xf8\x73\xcf\xed\xbe\ +\x78\xda\xb4\x31\x68\x4d\x6a\x85\x9e\xd6\xb3\x0f\x12\x22\xb9\x46\ +\x4b\x09\xa0\xbf\xdc\xb7\xef\xc4\xb3\xcb\x97\x57\x3f\x77\xe8\xd0\ +\x89\xfe\x62\x11\xfd\x25\x50\x2f\x84\xd7\xb0\x70\xe1\xce\xcb\xc7\ +\x8e\x9d\xd2\x75\xf0\xa0\x8f\x10\x69\x9c\xc9\xca\xa2\xdb\xbd\xc2\ +\x9e\x0f\x43\x74\x18\x26\x44\x72\xe7\x9d\xc7\xd7\xe7\x9e\x7b\xf0\ +\xa5\x57\x5f\x9d\xdc\x5f\x12\xfd\x22\x50\x2f\x84\xb7\x60\xc1\x82\ +\x7f\x4c\xa8\xac\xac\x29\x1c\x39\xe2\x77\xbb\x53\x08\xca\xae\x26\ +\x04\x5a\x29\x74\x14\x25\xc0\x85\x21\x28\x8c\xe4\x86\x0d\xe3\xe4\ +\xf0\xe1\x07\x5f\xda\xb0\xa1\x5f\x24\xfa\x4c\xa0\x5e\x08\xef\xe6\ +\xb9\x73\xdf\xbd\x7c\xe8\xd0\x69\xd1\x89\x13\x81\xee\x01\xb0\x9d\ +\x4f\x8e\xb5\x46\x4b\x89\x0e\x43\xb4\x52\x09\x68\x17\x3c\x42\x20\ +\x80\x60\xc8\x10\xda\x2f\xbc\xf0\xe0\x86\xd7\x5e\x9b\xbc\x62\xff\ +\xfe\x3e\x91\xe8\x13\x81\x7a\x21\xbc\x1f\xd7\xd6\x36\x5e\x39\x7c\ +\xf8\x4c\x55\x28\x04\x09\x50\xd2\x2e\x93\x5d\x49\x49\x19\x83\x8f\ +\xa2\x54\x6c\xb8\xda\xcf\x12\x09\x06\x0d\x22\x7f\xe9\xa5\x87\x5e\ +\x7e\xe5\x95\x2b\xfb\x42\xe2\x8c\x04\xea\x85\xf0\x6a\x27\x4d\xda\ +\x52\x33\x66\xcc\xf7\xd1\x3a\xd0\x06\xb4\x30\x80\xdd\xbb\x13\xab\ +\x68\x8d\x8a\xa2\x12\x78\x33\xef\x82\x4e\x80\x67\x5c\x09\x20\xa8\ +\xa8\x20\x9a\x32\xe5\xf0\xfa\x75\xeb\xae\x58\xd9\xd2\x72\xf2\xff\ +\x26\x50\x2f\x84\x3f\x63\xf4\xe8\xcd\xdf\x9b\x38\xb1\x56\x7b\x5e\ +\xd0\x13\x68\xed\xba\x8c\x52\x31\x78\xa5\x6c\x96\xc9\x3c\x51\xa4\ +\x34\x5f\x8e\x88\x9f\xcb\x91\x1b\x34\x08\x39\x6d\xda\xd1\x17\x57\ +\xae\x9c\xd8\x1b\x89\x1e\x09\xd4\x0b\xe1\x4f\x1f\x3d\x7a\xf3\x35\ +\x97\x5d\x56\x8b\x10\x81\x7b\x4e\x1b\x22\x91\x10\xf8\x4e\x1a\x55\ +\x4a\xc5\xc0\x4d\xc0\xba\xa0\xbb\x3d\xd8\x21\xa3\x00\xdf\x1c\xfb\ +\x03\x07\x12\xe4\x72\x31\xa9\x20\x40\x5c\x7b\xed\xd1\xf5\xcf\x3f\ +\x7f\xf9\x33\x7b\xf7\x96\x75\x27\xaf\x47\xf0\xa3\x46\x6d\xbe\x66\ +\xfc\xf8\x5a\x2d\x65\xa0\xa2\x08\x25\x25\x4a\x4a\xa4\x94\xa8\x28\ +\xe2\x44\x75\x35\xa2\xa1\x81\xbc\xe7\xa1\x95\x22\x0a\x43\xa4\x91\ +\xa8\x50\x40\x29\x85\x52\x0a\xa9\x14\xd2\xdc\x27\xa5\x4c\xcd\x2b\ +\x29\xf9\xaa\xba\x9a\x13\x75\x75\x84\x41\x00\x41\x00\x9e\x57\xba\ +\xbe\x58\x44\x35\x36\x8e\xbc\x7d\xd1\xa2\x8f\x1e\xb9\xf4\xd2\x21\ +\x7d\xb2\x40\xbd\x10\xfe\xb4\x11\x23\x36\x5f\x53\x55\x55\xab\x3d\ +\x2f\x28\xe7\x32\xa7\xa7\x4c\xa1\x7a\xc9\x12\x3c\xdf\xa7\x65\xc7\ +\x0e\xda\xd7\xae\x25\x57\x2c\xa2\x01\x15\x86\xe9\x60\xee\x45\xfb\ +\xff\xbd\xfa\x6a\x2e\x5a\xb8\x10\x3f\x08\x38\xf2\xcf\x7f\x72\xf6\ +\xa6\x4d\x0c\xd4\x3a\xe5\x5a\x1e\xb1\x7b\x45\x35\x35\x87\x37\x6e\ +\xdc\x58\xfd\x74\x73\x73\xca\x12\x29\x02\x16\xfc\xcc\xf1\xe3\x6b\ +\x11\x22\x50\x38\x81\x69\xc6\x5d\x35\x35\x4c\x32\xe0\x21\x4e\x93\ +\x2d\xdb\xb7\x73\x7a\xcd\x1a\xbc\xce\x4e\xd0\x3a\x89\x89\x72\x75\ +\xc2\x6e\xed\x53\xa7\x32\xf6\xee\xbb\x11\x42\xa0\x4c\x7a\xfd\xfc\ +\xbd\xf7\x18\xf0\xe6\x9b\xe4\xa2\x08\x61\xdc\xcb\x95\xae\x89\x13\ +\x0f\x6e\xda\xb6\x6d\xb2\x4b\x22\x21\x50\x2f\x84\x37\xbd\xb2\x72\ +\xd3\x8c\x71\xe3\x66\x69\x08\xb4\x03\x5a\x99\x8b\xf3\x35\x35\x4c\ +\xfa\xf9\xcf\xf1\x0d\x78\x77\xdb\xb7\x65\x0b\x27\x57\xad\x22\x17\ +\x86\xc9\x9c\xce\x68\x5f\x1b\x20\x9d\x33\x66\x50\xf5\xd3\x9f\x26\ +\xe0\xa5\x13\xec\xc7\x77\xed\x22\xf7\xc7\x3f\x12\x44\x51\xca\x02\ +\x96\xc4\x37\x23\x46\xec\x6f\x6c\x6e\x9e\x6a\x49\x08\xad\x35\xf5\ +\x42\x78\x33\x2a\x2b\xff\x34\x7d\xcc\x98\x1b\xb4\x10\x81\x05\x6d\ +\x33\x8c\x06\xc2\xe9\xd3\x99\xb8\x74\x69\x1c\x60\x65\xdc\x42\x6b\ +\xcd\xde\xb7\xdf\xe6\xeb\x67\x9f\x4d\x48\x94\x73\xa5\xfc\xcc\x99\ +\x4c\xbc\xf7\xde\xe4\x1e\x4b\x40\x6b\x9d\xb4\x4b\x9f\xef\xda\x45\ +\xb0\x71\x63\x42\x22\x11\x43\xe4\xb8\xef\x7f\xb2\xbd\xa5\x65\xe6\ +\xca\x96\x96\x93\x1e\x40\xf5\xb0\x61\x2b\xa6\x8f\x1e\x7d\x83\x92\ +\x32\xd0\x4e\xc0\x6a\x13\xb0\xf9\xc9\x93\x99\xf0\xe8\xa3\xe4\x06\ +\x0c\x88\x17\x31\xe2\x79\x5e\xea\xf8\xb2\x1b\x6f\x64\xc8\xfd\xf7\ +\x93\xf7\xbc\x24\x58\xdd\x40\xce\xcf\x9c\x49\xf5\x83\x0f\x92\xcb\ +\xe5\xf0\x7d\x1f\xcf\xf3\x12\x71\x95\x52\x39\x7d\x3a\x85\xba\x3a\ +\x22\x29\xe3\x60\xb7\x62\x70\x55\x16\x8b\x13\xae\x1e\x3e\x7c\x13\ +\x40\x00\xf0\xad\x8a\x8a\x31\x5a\xa9\x24\x60\x13\x31\xda\x97\x07\ +\x0e\x70\xf2\xf0\x61\xce\x1f\x3f\x3e\x05\xd8\xd5\xbe\xdd\x5f\xfe\ +\xa3\x1f\xf1\x91\xd6\x7c\xb9\x62\x05\x41\xb1\x98\x68\x5f\x5e\x77\ +\x1d\x57\x2f\x59\xd2\xed\x7a\x57\x19\x00\x52\x4a\xa2\x30\xa4\x73\ +\xcf\x1e\x72\x26\x36\x6c\xe1\xb4\x96\xf0\x80\xc1\x15\x15\x83\x30\ +\x63\xb4\xd6\x5a\x3b\x39\xdc\x32\xd6\x86\xf1\x80\xb6\x36\x0e\x2c\ +\x5b\xc6\x17\xfb\xf7\xa7\x08\x94\xb3\x84\xe7\x79\x5c\x31\x7b\x36\ +\xc3\x1e\x7a\x88\x7c\x10\xc4\xda\xbf\xee\x3a\xa6\x2e\x5d\x4a\x10\ +\x04\xdd\x34\x9f\xb5\x82\x8c\x22\xfe\xbd\x76\x2d\xe7\xee\xde\x5d\ +\xb2\x5e\x26\x15\xcb\x18\xa7\x4c\x2c\x80\x75\x19\x21\x50\x94\x82\ +\xd6\x1d\xe7\x8e\x1e\x65\xef\x2f\x7e\x81\xff\xd4\x53\x54\x56\x55\ +\xf5\x18\x07\xd6\xaf\xaf\x98\x3d\x1b\x0d\x7c\xd5\xd4\xc4\xcc\xc7\ +\x1e\x4b\x02\x56\x29\x95\x10\x75\x2d\xa1\x4c\x2d\x39\xb0\x7a\x35\ +\xe7\xec\xde\x8d\x04\x84\x94\xb1\xc6\x9d\x2a\x6d\xc7\xca\x8f\x9b\ +\xe1\x00\x4a\x15\xd4\x4d\x9b\x16\xbc\xd6\x3a\xf6\x3d\x60\xc0\xb1\ +\x63\x7c\xbc\x74\x29\xe2\x99\x67\x18\x51\x55\x65\xbc\x43\xa4\xdc\ +\xc2\x5a\x42\x29\xc5\x95\x73\xe6\xa0\x67\xcf\x4e\x0a\x98\x4b\x5a\ +\x29\x95\x90\xf0\x3c\x8f\x62\xb1\xc8\xde\x55\xab\x38\xeb\xc3\x0f\ +\x89\x84\x88\xb3\x8f\x71\x11\xe5\x8c\xad\x5b\x2b\x93\xb9\x3c\xf3\ +\x74\xa5\xa5\x04\x1b\xb8\x4e\x17\xa9\xc2\xb0\x44\x50\x4a\x82\x63\ +\xc7\x68\x5a\xb2\x84\xb6\xfd\xfb\xbb\xb9\x80\x75\x0f\xab\x61\x77\ +\xec\xfb\x3e\x42\x88\xd4\x35\xf6\x5c\x58\x2c\xb2\x67\xc5\x0a\x72\ +\x1f\x7c\x90\x0a\xfc\xc8\x48\xe2\x46\xc6\x52\x26\xa0\x75\x3a\x06\ +\xa2\x08\xdb\x32\x10\x45\x09\x78\x6d\xc7\x96\x94\x94\xf8\x47\x8f\ +\xf2\xc1\x7d\xf7\x71\x7c\xdf\xbe\x14\x10\x97\x88\x05\x6a\xc7\x16\ +\xbc\xbd\xde\x8e\xa3\x30\xe4\xc3\x5f\xff\x1a\xb5\x6b\x57\x02\x38\ +\x92\x32\xc9\x40\x2e\x09\xe5\xc4\x80\x34\xbd\x56\x4c\xc0\x09\x60\ +\x1b\x0f\x32\x0c\x63\x6b\x38\x01\x6d\xad\xa3\xa4\xc4\x6b\x6d\xe5\ +\x5f\x8b\x17\x73\xfc\xd3\x4f\x7b\x0c\x4a\x57\xd3\x16\xb0\x6b\x0d\ +\x19\x45\xec\xfa\xd5\xaf\x50\x3b\x77\xa2\xa2\x28\x06\xee\x80\x8e\ +\x6c\xff\x64\x70\x44\x6e\x3a\x55\x4a\xbb\x2e\xa4\xb5\x94\x60\x5d\ +\x25\x8a\x12\x77\xd2\x52\x96\xcd\x4e\x3a\x8a\xf0\x5a\x5b\xd9\xf9\ +\x93\x9f\xd0\xfa\xc9\x27\xf1\xbc\x49\x8b\xbd\x59\xc3\xce\xcb\x28\ +\xe2\xef\x4f\x3e\x49\xf8\xee\xbb\x44\x52\x52\x8c\x22\xa2\x28\x2a\ +\x35\x85\xc6\x23\x64\x14\xc5\x5a\xb7\xc7\x25\x52\x3a\x65\x01\x4c\ +\x0b\x9c\xb8\x8d\x03\xb8\x1b\x19\x6b\x19\x29\xe1\xd0\x21\xfe\xb1\ +\x68\x11\xc7\x5a\x5a\x92\xaa\x6a\x03\xb6\x1c\x70\x2b\x7f\x7b\xe2\ +\x09\x0a\x3b\x76\xc4\x79\xdf\x00\xb4\xbe\x1e\x39\x69\xd3\xed\x82\ +\x6d\x27\x6c\x89\x94\x08\x38\x01\x9b\x80\x37\x80\x71\x2b\xa1\x01\ +\x2f\xa3\x28\xd5\xfb\x9f\x3b\x79\x32\x43\x47\x8e\x4c\xb7\xcb\x66\ +\x6c\xdd\x28\x4b\xe6\xe2\x6b\xaf\x25\xf4\xfd\x52\x80\x9a\x34\x9a\ +\xf5\x7d\x4b\xc6\xba\x91\x74\x94\x9a\xa4\x51\x19\x45\x28\xdb\x0e\ +\x0b\x91\xa4\x2a\x5b\x05\x93\x96\xda\x36\x78\x4a\x25\x4d\xde\x59\ +\x75\x75\x5c\xff\xd4\x53\x71\xb5\x95\xb2\x5b\x81\x03\x92\x74\xe9\ +\x76\xbe\x57\xce\x99\x83\x52\x8a\x3d\x4f\x3e\x89\x57\x28\x94\x2a\ +\xad\x52\xe0\x79\xc9\x27\x18\x8b\xc5\x77\xf0\x00\x84\x42\x94\xea\ +\x80\x2c\x16\x95\x04\xb4\xe7\x41\x10\x94\x72\xad\x5b\x0f\xdc\xb1\ +\x91\xb3\xea\xea\xa8\x7d\xfa\xe9\xb8\x6e\x28\x5b\xf2\x48\x15\x2a\ +\x2b\x36\x16\xec\xa6\xb5\x66\x72\x5d\x1d\x4a\x29\x3e\xfa\xe5\x2f\ +\x93\xb6\xc3\x33\x9f\x60\x3c\xcf\x8b\xf3\x7e\x69\x51\x30\x44\x54\ +\x5c\x47\x9c\x42\x16\x86\x5a\x86\x61\x02\x50\x09\x81\xf6\x3c\x94\ +\xef\xa3\x3d\x0f\xed\xfb\xb1\x78\x5e\x42\x6e\xe0\xdc\xb9\x5c\xff\ +\x9b\xdf\x24\xe0\x5d\xed\xda\x42\xe6\x56\x5b\xa0\x2c\x89\xab\x6e\ +\xba\x09\x0d\x34\x2f\x5b\x86\x5f\x2c\xa2\x8c\x5f\x7b\x42\xe0\x1b\ +\x12\xae\xe6\x2d\x19\x69\x08\x25\xef\xba\xa9\xc6\xc0\x7e\xcb\x91\ +\x12\x49\xa9\xa5\x50\xc6\x4a\x03\x6e\xbd\x95\x1f\xfc\xf6\xb7\xb1\ +\x95\x0c\x78\x2b\xc9\xcb\xb9\xf9\x3a\xe1\xb6\x0b\x5a\x6b\x82\x20\ +\x48\x88\x59\x32\x57\xd5\xd5\x21\xa5\xe4\xa3\xe5\xcb\x53\x24\xb4\ +\x94\x78\x42\x10\x18\x57\x74\x5b\x6b\x2d\x84\xd3\x0b\x39\x24\xb2\ +\x1d\x4e\x76\x6e\x60\x7d\x3d\x3f\x5c\xb7\x0e\xa5\x35\x91\x09\xe6\ +\x24\x5b\x39\x16\xf0\x3c\x8f\x7c\x67\x27\xdf\x1c\x3f\xce\xe8\x4b\ +\x2e\x49\x11\xcc\x5a\xc1\xf7\x7d\xbe\x3b\x77\x2e\x52\x29\x9a\x97\ +\x2f\x27\x57\x28\xa4\xdf\xea\xa4\x4c\xda\x08\xeb\x4a\xca\xb5\x80\ +\xcb\xac\x37\x22\xb9\xfa\x7a\x66\xaf\x5f\x1f\x9b\xb0\x58\x4c\x9a\ +\xb0\x24\x43\x39\xee\x12\x16\x0a\xfc\xf9\x67\x3f\xa3\xb8\x77\x2f\ +\xd7\x6f\xd8\xc0\x45\x93\x26\xa5\x80\xfb\xbe\x9f\x6a\xfe\x7c\xdf\ +\x67\xea\xbc\x79\x28\x29\x69\x5e\xb6\x2c\x26\x41\xec\xf3\x6e\x10\ +\x5b\x5c\x61\x18\x96\x62\xc0\x3d\x51\x8e\x88\x00\xf4\xbc\x79\xcc\ +\x5a\xb3\x06\xcf\xf7\x13\x6d\xbb\x00\x5c\x57\x2a\xe6\xf3\xbc\xb5\ +\x78\x31\xc5\xad\x5b\x51\xc0\xdf\x16\x2c\x60\x96\x21\x61\x2d\x64\ +\x2d\x61\x2d\x60\xad\x33\x65\xde\x3c\x8a\xf9\x3c\x4d\x8f\x3f\xce\ +\x80\x42\x01\xdf\x80\xf4\x8d\x48\xb3\xcf\xc7\xc3\x38\x46\x14\x08\ +\xd5\x0b\xf8\xfc\xac\x59\x7c\x6f\xe5\x4a\x84\x79\xd3\x72\xdf\xa0\ +\x5c\x02\x52\x4a\xba\x3a\x3a\x78\xeb\x9e\x7b\x90\x5b\xb7\x26\xf7\ +\xcb\xc3\x87\x79\x67\xfe\x7c\xfe\xd3\xdc\x9c\xea\xeb\x2d\xf8\x6c\ +\xd5\x9e\x31\x7f\x3e\x97\x3c\xf1\x44\x2a\xe3\x65\x3f\x65\x6a\x03\ +\xd5\x03\x38\x0c\x2f\x1f\x80\xb6\x28\x03\x3c\x71\xa3\xa6\x26\x8e\ +\x99\x87\x67\xdb\x62\xd7\x0a\x5d\x1d\x1d\xbc\x73\xef\xbd\xb0\x6d\ +\x5b\x37\xf7\x93\xad\xad\xbc\xbd\x60\x41\x37\x12\x6e\x7f\x64\x89\ +\x14\xba\xba\x38\xee\xac\xe1\x82\x97\x40\x1b\x9c\x3a\x04\x7f\x4f\ +\x08\xac\xd1\xfa\xcd\x26\x78\xe0\x33\x68\xcb\x67\x2c\xe0\x01\x15\ +\x5f\x7c\xc1\xde\x3b\xef\xe4\xe0\xfb\xef\xa7\x1e\xea\x92\xc8\x77\ +\x76\xb2\xed\xfe\xfb\xf1\x1a\x1b\xcb\x2a\x41\x00\xaa\xb5\x95\xcd\ +\x65\x2c\x91\x05\xff\xfa\xdd\x77\x73\x6a\xfb\xf6\x6e\xe0\x23\xe0\ +\x38\x9c\x6e\x81\xd5\x6b\xb5\x5e\x9e\x10\x30\x24\xde\xd8\x03\x0f\ +\x7f\x06\x5f\xb6\x53\x7a\x89\xb0\x52\xd1\xd6\xc6\xc7\x0d\x0d\xb4\ +\xbc\xf7\x1e\x52\xca\x94\x1b\x15\xba\xba\x68\xbc\xef\x3e\x7c\x07\ +\xbc\x07\x65\xc7\xfa\xc8\x11\xde\xca\x90\xb0\x2f\x35\x5d\x1d\x1d\ +\xbc\xd4\xd0\xc0\xc9\x6d\xdb\xba\x7d\x3f\x2d\x00\xc7\xa0\xfd\x28\ +\xac\x5e\xaf\xf5\xe3\x16\x77\xea\xd3\xe2\x3a\xad\x5f\xfb\x14\x1e\ +\x38\x00\x5f\x9d\x32\x8c\x5d\x00\x15\x6d\x6d\x34\xdd\x76\x1b\x9f\ +\xee\xdc\x99\x68\xac\x98\xcf\xd3\xb8\x78\x31\xb9\xc6\xc6\xb8\x00\ +\xf5\x00\xdc\x3d\xa7\x5a\x5b\xd9\x74\xeb\xad\xfc\xbb\xa9\x29\x21\ +\xd1\xd5\xd1\xc1\x4b\xb7\xdf\xce\xc9\xad\x5b\x53\x6f\x63\x00\x9d\ +\xb1\xe6\xdb\xdb\x60\xf5\xef\xb5\x7e\xcc\xc5\x5c\xf6\xe3\xee\x22\ +\x21\xea\x2f\x80\x55\x17\xc2\xb7\x07\x13\x67\x01\x5b\xc8\x24\xd0\ +\x51\x59\x49\xcd\x1b\x6f\x30\xac\xaa\x8a\xbf\xdc\x76\x1b\x62\xcb\ +\x96\xe4\x9c\xca\x5c\xab\x7a\x11\x31\x6a\x14\x73\x5e\x7f\x9d\xf3\ +\xc7\x8e\x65\x43\x43\x03\xdf\x6c\xd9\x92\x00\xf7\xcd\xbe\x03\xf8\ +\x1a\xda\x4f\xc1\x9a\x0d\x5a\x2f\xcd\x62\xed\xf1\xeb\xf4\x5d\x42\ +\xdc\x32\x12\x9e\x1f\x0d\x43\x87\x66\x48\x28\xe0\x74\x65\x25\xfe\ +\x84\x09\xf8\x8d\x8d\x3d\x02\x3e\x13\x01\x6d\x48\x9c\x3d\x6e\x1c\ +\xa7\x77\xec\x88\x01\x39\x9a\x6f\x07\xbe\x80\xf6\x4e\x58\xfb\xaa\ +\xd6\x8f\x96\xc3\xd9\xeb\xff\x81\xbb\x84\xb8\xf9\x7c\x78\x61\x14\ +\x0c\x3d\x1f\x18\x70\x06\x60\x67\x02\x9c\x05\xef\xa6\xc9\x04\x90\ +\xd9\x9f\x04\x3e\x87\xce\x3c\xac\x7d\x4d\xeb\x25\x3d\x61\x3c\xe3\ +\x1f\x9a\xbb\x84\xb8\x79\x08\xbc\x70\x01\x0c\x1d\x09\x0c\x3c\x03\ +\xd0\x9e\xce\xe9\x32\xe3\x6c\x7e\xb7\xff\x0a\xbe\x06\x8e\x41\x67\ +\x11\xd6\xbc\xae\xf5\x23\xbd\xe1\xeb\xd3\x3f\xb2\x3b\x84\xb8\x65\ +\x70\x4c\xe2\xbc\x0b\x80\xb3\xcf\x40\xa2\x2f\x04\xca\x15\x28\x05\ +\xb4\x01\x47\xa1\x33\x84\x75\x7f\xd0\xfa\xe1\x33\x61\xeb\xf3\x5f\ +\xca\x3b\x84\xb8\xe5\x1c\x43\xe2\x62\x43\xc2\x6a\xdc\x16\x98\x2c\ +\xd0\xde\x5c\x26\x4b\x40\xc6\xc0\x39\x02\x9d\x51\x1f\xc1\xf7\x8b\ +\x00\xc0\x42\x21\x6e\x39\x0b\x56\x8f\x82\x21\xe3\x80\x8a\x1e\xc0\ +\xf6\xe6\x32\xe5\x5c\x27\x02\x0e\x03\x87\xa0\x53\xc1\xba\x37\xfa\ +\x08\xbe\xdf\x04\x20\xb6\x44\x0e\xd6\x7e\x07\x06\x8f\xa3\x7b\x76\ +\xb2\x02\xdd\x5d\xa6\xa7\xde\xa6\x15\x38\x08\x5d\x1a\xd6\x6d\xd4\ +\xfa\xa1\xfe\xe0\xe9\x37\x01\x80\x3b\x85\x98\xaf\xe0\xf9\x41\x30\ +\xd8\xce\xb9\xc0\x54\x99\xb9\x72\xbf\xaa\xec\x76\x0a\xba\x04\xbc\ +\xb8\x51\xeb\x07\xfa\x8b\xa5\x2c\x01\x11\xf7\x08\x6e\x17\x6b\xc5\ +\xd6\x18\xff\x06\x98\x55\x01\xb3\x8d\x56\x95\xe9\x0e\x85\xb6\xeb\ +\x66\x80\x96\x51\x53\xc2\x49\x43\xf3\x5f\xe1\x77\x94\xc2\xca\x8a\ +\x7b\x1c\x01\x52\x67\x00\x0b\xd3\x87\xfb\x40\xce\x80\xcb\x19\xf0\ +\xff\x8f\xf8\x99\xb1\xed\x0a\xac\x61\x2c\x10\x57\x24\x10\xf6\x63\ +\x6f\xef\x2b\x02\x51\xca\x02\xa6\x39\xb3\x0f\xb5\x60\x12\xad\x3b\ +\x73\xd9\x7d\xd6\x5a\x76\x0d\x1c\x02\x56\xeb\x29\x8d\x66\x88\x64\ +\xcf\x95\x13\xed\x5a\xe1\x7f\x98\x41\x2d\x15\x18\x86\xae\x05\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +" + +qt_resource_name = b"\ +\x00\x06\ +\x05\xaa\x8b\xc3\ +\x00\x53\ +\x00\x74\x00\x61\x00\x74\x00\x75\x00\x73\ +\x00\x07\ +\x0d\x69\x38\x33\ +\x00\x46\ +\x00\x6f\x00\x72\x00\x6d\x00\x61\x00\x74\x00\x73\ +\x00\x07\ +\x0a\xcc\xf9\x43\ +\x00\x44\ +\x00\x65\x00\x76\x00\x69\x00\x63\x00\x65\x00\x73\ +\x00\x05\ +\x00\x56\xae\xc2\ +\x00\x4f\ +\x00\x74\x00\x68\x00\x65\x00\x72\ +\x00\x04\ +\x00\x04\xfa\x5e\ +\x00\x49\ +\x00\x63\x00\x6f\x00\x6e\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x0f\ +\x05\xb2\xe9\xe7\ +\x00\x63\ +\x00\x6f\x00\x6d\x00\x69\x00\x63\x00\x32\x00\x65\x00\x62\x00\x6f\x00\x6f\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x00\x1c\x58\x87\ +\x00\x77\ +\x00\x69\x00\x6b\x00\x69\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x0c\xbc\x3d\x27\ +\x00\x64\ +\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0b\ +\x0c\x43\x9c\xc7\ +\x00\x63\ +\x00\x6f\x00\x6e\x00\x76\x00\x65\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0a\ +\x0b\x68\x21\x47\ +\x00\x65\ +\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x08\x9f\xcb\x47\ +\x00\x66\ +\x00\x6f\x00\x6c\x00\x64\x00\x65\x00\x72\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x0b\x85\x83\x07\ +\x00\x63\ +\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x13\ +\x0b\x2e\x10\x07\ +\x00\x6c\ +\x00\x69\x00\x73\x00\x74\x00\x5f\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x67\x00\x72\x00\x6f\x00\x75\x00\x6e\x00\x64\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x0a\ +\x0b\x2e\x17\xc7\ +\x00\x4b\ +\x00\x69\x00\x6e\x00\x64\x00\x6c\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x05\x92\x5d\x07\ +\x00\x4b\ +\x00\x6f\x00\x62\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x0e\xc5\xfa\x07\ +\x00\x4f\ +\x00\x74\x00\x68\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x07\ +\x07\x7d\x57\xc7\ +\x00\x43\ +\x00\x42\x00\x5a\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x03\x6c\x5d\x07\ +\x00\x4d\ +\x00\x4f\x00\x42\x00\x49\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x05\x95\x5e\x07\ +\x00\x45\ +\x00\x50\x00\x55\x00\x42\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x08\ +\x04\xd2\x59\x47\ +\x00\x69\ +\x00\x6e\x00\x66\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0b\ +\x00\xb5\x45\xe7\ +\x00\x77\ +\x00\x61\x00\x72\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x09\ +\x09\x65\x8e\x67\ +\x00\x65\ +\x00\x72\x00\x72\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +" + +qt_resource_struct = b"\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x05\x00\x00\x00\x01\ +\x00\x00\x00\x4a\x00\x02\x00\x00\x00\x01\x00\x00\x00\x1a\ +\x00\x00\x00\x3a\x00\x02\x00\x00\x00\x01\x00\x00\x00\x12\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x0e\ +\x00\x00\x00\x26\x00\x02\x00\x00\x00\x01\x00\x00\x00\x0a\ +\x00\x00\x00\x12\x00\x02\x00\x00\x00\x01\x00\x00\x00\x06\ +\x00\x00\x00\x58\x00\x02\x00\x00\x00\x03\x00\x00\x00\x07\ +\x00\x00\x01\xc0\x00\x00\x00\x00\x00\x01\x00\x02\x50\xd2\ +\x00\x00\x01\xd6\x00\x00\x00\x00\x00\x01\x00\x02\x70\x0e\ +\x00\x00\x01\xac\x00\x00\x00\x00\x00\x01\x00\x02\x26\xd7\ +\x00\x00\x00\x58\x00\x02\x00\x00\x00\x03\x00\x00\x00\x0b\ +\x00\x00\x01\x7e\x00\x00\x00\x00\x00\x01\x00\x02\x17\x9b\ +\x00\x00\x01\x64\x00\x00\x00\x00\x00\x01\x00\x02\x0c\x94\ +\x00\x00\x01\x94\x00\x00\x00\x00\x00\x01\x00\x02\x20\xf3\ +\x00\x00\x00\x58\x00\x02\x00\x00\x00\x03\x00\x00\x00\x0f\ +\x00\x00\x02\x02\x00\x00\x00\x00\x00\x01\x00\x02\x95\xba\ +\x00\x00\x01\xec\x00\x00\x00\x00\x00\x01\x00\x02\x8c\x5d\ +\x00\x00\x02\x1e\x00\x00\x00\x00\x00\x01\x00\x02\xaa\xf7\ +\x00\x00\x00\x58\x00\x02\x00\x00\x00\x07\x00\x00\x00\x13\ +\x00\x00\x00\x8c\x00\x00\x00\x00\x00\x01\x00\x01\x1d\x90\ +\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x01\xa2\x1e\ +\x00\x00\x01\x38\x00\x00\x00\x00\x00\x01\x00\x01\xaf\xd4\ +\x00\x00\x00\xe4\x00\x00\x00\x00\x00\x01\x00\x01\x5c\xd7\ +\x00\x00\x01\x20\x00\x00\x00\x00\x00\x01\x00\x01\xab\x75\ +\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x01\x50\x6e\ +\x00\x00\x00\xa2\x00\x00\x00\x00\x00\x01\x00\x01\x46\x38\ +\x00\x00\x00\x58\x00\x02\x00\x00\x00\x01\x00\x00\x00\x1b\ +\x00\x00\x00\x68\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/kindlecomicconverter/KCC_ui.py b/kindlecomicconverter/KCC_ui.py new file mode 100644 index 0000000..71689ab --- /dev/null +++ b/kindlecomicconverter/KCC_ui.py @@ -0,0 +1,271 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'gui\KCC.ui' +# +# Created by: PyQt5 UI code generator 5.6 +# +# WARNING! All changes made in this file will be lost! + +from PyQt5 import QtCore, QtGui, QtWidgets + +class Ui_mainWindow(object): + def setupUi(self, mainWindow): + mainWindow.setObjectName("mainWindow") + mainWindow.resize(450, 400) + icon = QtGui.QIcon() + icon.addPixmap(QtGui.QPixmap(":/Icon/icons/comic2ebook.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + mainWindow.setWindowIcon(icon) + self.centralWidget = QtWidgets.QWidget(mainWindow) + self.centralWidget.setObjectName("centralWidget") + self.gridLayout = QtWidgets.QGridLayout(self.centralWidget) + self.gridLayout.setContentsMargins(-1, -1, -1, 5) + self.gridLayout.setObjectName("gridLayout") + self.progressBar = QtWidgets.QProgressBar(self.centralWidget) + self.progressBar.setMinimumSize(QtCore.QSize(0, 30)) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.progressBar.setFont(font) + self.progressBar.setVisible(False) + self.progressBar.setAlignment(QtCore.Qt.AlignJustify|QtCore.Qt.AlignVCenter) + self.progressBar.setObjectName("progressBar") + self.gridLayout.addWidget(self.progressBar, 1, 0, 1, 2) + self.jobList = QtWidgets.QListWidget(self.centralWidget) + self.jobList.setStyleSheet("QListWidget#jobList {background:#ffffff;background-image:url(:/Other/icons/list_background.png);background-position:center center;background-repeat:no-repeat;color:rgb(0,0,0);}") + self.jobList.setSelectionMode(QtWidgets.QAbstractItemView.NoSelection) + self.jobList.setVerticalScrollMode(QtWidgets.QAbstractItemView.ScrollPerPixel) + self.jobList.setHorizontalScrollMode(QtWidgets.QAbstractItemView.ScrollPerPixel) + self.jobList.setObjectName("jobList") + self.gridLayout.addWidget(self.jobList, 2, 0, 1, 2) + self.customWidget = QtWidgets.QWidget(self.centralWidget) + self.customWidget.setVisible(False) + self.customWidget.setObjectName("customWidget") + self.gridLayout_3 = QtWidgets.QGridLayout(self.customWidget) + self.gridLayout_3.setContentsMargins(0, 0, 0, 0) + self.gridLayout_3.setObjectName("gridLayout_3") + self.hLabel = QtWidgets.QLabel(self.customWidget) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.hLabel.sizePolicy().hasHeightForWidth()) + self.hLabel.setSizePolicy(sizePolicy) + self.hLabel.setObjectName("hLabel") + self.gridLayout_3.addWidget(self.hLabel, 0, 2, 1, 1) + self.widthBox = QtWidgets.QSpinBox(self.customWidget) + self.widthBox.setMaximum(2160) + self.widthBox.setObjectName("widthBox") + self.gridLayout_3.addWidget(self.widthBox, 0, 1, 1, 1) + self.wLabel = QtWidgets.QLabel(self.customWidget) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.wLabel.sizePolicy().hasHeightForWidth()) + self.wLabel.setSizePolicy(sizePolicy) + self.wLabel.setObjectName("wLabel") + self.gridLayout_3.addWidget(self.wLabel, 0, 0, 1, 1) + self.heightBox = QtWidgets.QSpinBox(self.customWidget) + self.heightBox.setMaximum(3840) + self.heightBox.setObjectName("heightBox") + self.gridLayout_3.addWidget(self.heightBox, 0, 3, 1, 1) + self.gridLayout.addWidget(self.customWidget, 6, 0, 1, 2) + self.optionWidget = QtWidgets.QWidget(self.centralWidget) + self.optionWidget.setObjectName("optionWidget") + self.gridLayout_2 = QtWidgets.QGridLayout(self.optionWidget) + self.gridLayout_2.setContentsMargins(0, 0, 0, 0) + self.gridLayout_2.setObjectName("gridLayout_2") + self.mangaBox = QtWidgets.QCheckBox(self.optionWidget) + self.mangaBox.setObjectName("mangaBox") + self.gridLayout_2.addWidget(self.mangaBox, 0, 0, 1, 1) + self.rotateBox = QtWidgets.QCheckBox(self.optionWidget) + self.rotateBox.setTristate(True) + self.rotateBox.setObjectName("rotateBox") + self.gridLayout_2.addWidget(self.rotateBox, 0, 1, 1, 1) + self.qualityBox = QtWidgets.QCheckBox(self.optionWidget) + self.qualityBox.setObjectName("qualityBox") + self.gridLayout_2.addWidget(self.qualityBox, 0, 2, 1, 1) + self.webtoonBox = QtWidgets.QCheckBox(self.optionWidget) + self.webtoonBox.setObjectName("webtoonBox") + self.gridLayout_2.addWidget(self.webtoonBox, 1, 0, 1, 1) + self.upscaleBox = QtWidgets.QCheckBox(self.optionWidget) + self.upscaleBox.setTristate(True) + self.upscaleBox.setObjectName("upscaleBox") + self.gridLayout_2.addWidget(self.upscaleBox, 1, 1, 1, 1) + self.gammaBox = QtWidgets.QCheckBox(self.optionWidget) + self.gammaBox.setObjectName("gammaBox") + self.gridLayout_2.addWidget(self.gammaBox, 1, 2, 1, 1) + self.borderBox = QtWidgets.QCheckBox(self.optionWidget) + self.borderBox.setTristate(True) + self.borderBox.setObjectName("borderBox") + self.gridLayout_2.addWidget(self.borderBox, 2, 0, 1, 1) + self.outputSplit = QtWidgets.QCheckBox(self.optionWidget) + self.outputSplit.setObjectName("outputSplit") + self.gridLayout_2.addWidget(self.outputSplit, 2, 1, 1, 1) + self.colorBox = QtWidgets.QCheckBox(self.optionWidget) + self.colorBox.setObjectName("colorBox") + self.gridLayout_2.addWidget(self.colorBox, 2, 2, 1, 1) + self.gridLayout.addWidget(self.optionWidget, 4, 0, 1, 2) + self.gammaWidget = QtWidgets.QWidget(self.centralWidget) + self.gammaWidget.setVisible(False) + self.gammaWidget.setObjectName("gammaWidget") + self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.gammaWidget) + self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_2.setObjectName("horizontalLayout_2") + self.gammaLabel = QtWidgets.QLabel(self.gammaWidget) + self.gammaLabel.setObjectName("gammaLabel") + self.horizontalLayout_2.addWidget(self.gammaLabel) + self.gammaSlider = QtWidgets.QSlider(self.gammaWidget) + self.gammaSlider.setMaximum(250) + self.gammaSlider.setSingleStep(5) + self.gammaSlider.setOrientation(QtCore.Qt.Horizontal) + self.gammaSlider.setObjectName("gammaSlider") + self.horizontalLayout_2.addWidget(self.gammaSlider) + self.gridLayout.addWidget(self.gammaWidget, 5, 0, 1, 2) + self.toolWidget = QtWidgets.QWidget(self.centralWidget) + self.toolWidget.setObjectName("toolWidget") + self.horizontalLayout = QtWidgets.QHBoxLayout(self.toolWidget) + self.horizontalLayout.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout.setObjectName("horizontalLayout") + self.editorButton = QtWidgets.QPushButton(self.toolWidget) + self.editorButton.setMinimumSize(QtCore.QSize(0, 30)) + icon1 = QtGui.QIcon() + icon1.addPixmap(QtGui.QPixmap(":/Other/icons/editor.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.editorButton.setIcon(icon1) + self.editorButton.setObjectName("editorButton") + self.horizontalLayout.addWidget(self.editorButton) + self.wikiButton = QtWidgets.QPushButton(self.toolWidget) + self.wikiButton.setMinimumSize(QtCore.QSize(0, 30)) + icon2 = QtGui.QIcon() + icon2.addPixmap(QtGui.QPixmap(":/Other/icons/wiki.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.wikiButton.setIcon(icon2) + self.wikiButton.setObjectName("wikiButton") + self.horizontalLayout.addWidget(self.wikiButton) + self.gridLayout.addWidget(self.toolWidget, 0, 0, 1, 2) + self.buttonWidget = QtWidgets.QWidget(self.centralWidget) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.buttonWidget.sizePolicy().hasHeightForWidth()) + self.buttonWidget.setSizePolicy(sizePolicy) + self.buttonWidget.setObjectName("buttonWidget") + self.gridLayout_4 = QtWidgets.QGridLayout(self.buttonWidget) + self.gridLayout_4.setContentsMargins(0, 0, 0, 0) + self.gridLayout_4.setObjectName("gridLayout_4") + self.directoryButton = QtWidgets.QPushButton(self.buttonWidget) + self.directoryButton.setMinimumSize(QtCore.QSize(0, 30)) + icon3 = QtGui.QIcon() + icon3.addPixmap(QtGui.QPixmap(":/Other/icons/folder_new.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.directoryButton.setIcon(icon3) + self.directoryButton.setObjectName("directoryButton") + self.gridLayout_4.addWidget(self.directoryButton, 0, 0, 1, 1) + self.fileButton = QtWidgets.QPushButton(self.buttonWidget) + self.fileButton.setMinimumSize(QtCore.QSize(0, 30)) + icon4 = QtGui.QIcon() + icon4.addPixmap(QtGui.QPixmap(":/Other/icons/document_new.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.fileButton.setIcon(icon4) + self.fileButton.setObjectName("fileButton") + self.gridLayout_4.addWidget(self.fileButton, 0, 3, 1, 1) + self.deviceBox = QtWidgets.QComboBox(self.buttonWidget) + self.deviceBox.setMinimumSize(QtCore.QSize(0, 28)) + self.deviceBox.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToMinimumContentsLength) + self.deviceBox.setObjectName("deviceBox") + self.gridLayout_4.addWidget(self.deviceBox, 1, 0, 1, 1) + self.formatBox = QtWidgets.QComboBox(self.buttonWidget) + self.formatBox.setMinimumSize(QtCore.QSize(0, 28)) + self.formatBox.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToMinimumContentsLength) + self.formatBox.setObjectName("formatBox") + self.gridLayout_4.addWidget(self.formatBox, 1, 3, 1, 1) + self.convertButton = QtWidgets.QPushButton(self.buttonWidget) + self.convertButton.setMinimumSize(QtCore.QSize(0, 30)) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.convertButton.setFont(font) + icon5 = QtGui.QIcon() + icon5.addPixmap(QtGui.QPixmap(":/Other/icons/convert.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.convertButton.setIcon(icon5) + self.convertButton.setObjectName("convertButton") + self.gridLayout_4.addWidget(self.convertButton, 1, 2, 1, 1) + self.clearButton = QtWidgets.QPushButton(self.buttonWidget) + self.clearButton.setMinimumSize(QtCore.QSize(0, 30)) + icon6 = QtGui.QIcon() + icon6.addPixmap(QtGui.QPixmap(":/Other/icons/clear.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.clearButton.setIcon(icon6) + self.clearButton.setObjectName("clearButton") + self.gridLayout_4.addWidget(self.clearButton, 0, 2, 1, 1) + self.directoryButton.raise_() + self.clearButton.raise_() + self.fileButton.raise_() + self.deviceBox.raise_() + self.convertButton.raise_() + self.formatBox.raise_() + self.gridLayout.addWidget(self.buttonWidget, 3, 0, 1, 2) + mainWindow.setCentralWidget(self.centralWidget) + self.statusBar = QtWidgets.QStatusBar(mainWindow) + self.statusBar.setSizeGripEnabled(False) + self.statusBar.setObjectName("statusBar") + mainWindow.setStatusBar(self.statusBar) + + self.retranslateUi(mainWindow) + QtCore.QMetaObject.connectSlotsByName(mainWindow) + mainWindow.setTabOrder(self.convertButton, self.clearButton) + mainWindow.setTabOrder(self.clearButton, self.directoryButton) + mainWindow.setTabOrder(self.directoryButton, self.fileButton) + mainWindow.setTabOrder(self.fileButton, self.deviceBox) + mainWindow.setTabOrder(self.deviceBox, self.formatBox) + mainWindow.setTabOrder(self.formatBox, self.mangaBox) + mainWindow.setTabOrder(self.mangaBox, self.rotateBox) + mainWindow.setTabOrder(self.rotateBox, self.qualityBox) + mainWindow.setTabOrder(self.qualityBox, self.webtoonBox) + mainWindow.setTabOrder(self.webtoonBox, self.upscaleBox) + mainWindow.setTabOrder(self.upscaleBox, self.gammaBox) + mainWindow.setTabOrder(self.gammaBox, self.borderBox) + mainWindow.setTabOrder(self.borderBox, self.outputSplit) + mainWindow.setTabOrder(self.outputSplit, self.colorBox) + mainWindow.setTabOrder(self.colorBox, self.editorButton) + mainWindow.setTabOrder(self.editorButton, self.wikiButton) + mainWindow.setTabOrder(self.wikiButton, self.jobList) + mainWindow.setTabOrder(self.jobList, self.gammaSlider) + mainWindow.setTabOrder(self.gammaSlider, self.widthBox) + mainWindow.setTabOrder(self.widthBox, self.heightBox) + + def retranslateUi(self, mainWindow): + _translate = QtCore.QCoreApplication.translate + mainWindow.setWindowTitle(_translate("mainWindow", "Kindle Comic Converter")) + self.hLabel.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Resolution of target device.</p></body></html>")) + self.hLabel.setText(_translate("mainWindow", "Custom height:")) + self.widthBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Resolution of target device.</p></body></html>")) + self.wLabel.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Resolution of target device.</p></body></html>")) + self.wLabel.setText(_translate("mainWindow", "Custom width:")) + self.heightBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Resolution of target device.</p></body></html>")) + self.mangaBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Enable right-to-left reading.</p></body></html>")) + self.mangaBox.setText(_translate("mainWindow", "Manga mode")) + self.rotateBox.setToolTip(_translate("mainWindow", "<html><head/><body><p><span style=\" font-weight:600; text-decoration: underline;\">Unchecked - Split<br/></span>Double page spreads will be cut into two separate pages.</p><p><span style=\" font-weight:600; text-decoration: underline;\">Indeterminate - Rotate and split<br/></span>Double page spreads will be displayed twice. First rotated and then split. </p><p><span style=\" font-weight:600; text-decoration: underline;\">Checked - Rotate<br/></span>Double page spreads will be rotated.</p></body></html>")) + self.rotateBox.setText(_translate("mainWindow", "Spread splitter")) + self.qualityBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'><span style=\" font-weight:600; text-decoration: underline;\">Unchecked - 4 panels<br/></span>Zoom each corner separately.</p><p style=\'white-space:pre\'><span style=\" font-weight:600; text-decoration: underline;\">Checked - 2 panels<br/></span>Zoom only the top and bottom of the page.</p></body></html>")) + self.qualityBox.setText(_translate("mainWindow", "Panel View 4/2")) + self.webtoonBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Enable special parsing mode for Korean Webtoons.</p></body></html>")) + self.webtoonBox.setText(_translate("mainWindow", "Webtoon mode")) + self.upscaleBox.setToolTip(_translate("mainWindow", "<html><head/><body><p><span style=\" font-weight:600; text-decoration: underline;\">Unchecked - Nothing<br/></span>Images smaller than device resolution will not be resized.</p><p><span style=\" font-weight:600; text-decoration: underline;\">Indeterminate - Stretching<br/></span>Images smaller than device resolution will be resized. Aspect ratio will be not preserved.</p><p><span style=\" font-weight:600; text-decoration: underline;\">Checked - Upscaling<br/></span>Images smaller than device resolution will be resized. Aspect ratio will be preserved.</p></body></html>")) + self.upscaleBox.setText(_translate("mainWindow", "Stretch/Upscale")) + self.gammaBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Disable automatic gamma correction.</p></body></html>")) + self.gammaBox.setText(_translate("mainWindow", "Custom gamma")) + self.borderBox.setToolTip(_translate("mainWindow", "<html><head/><body><p><span style=\" font-weight:600; text-decoration: underline;\">Unchecked - Autodetection<br/></span>Color of margins fill will be detected automatically.</p><p><span style=\" font-weight:600; text-decoration: underline;\">Indeterminate - White<br/></span>Margins will be filled with white color.</p><p><span style=\" font-weight:600; text-decoration: underline;\">Checked - Black<br/></span>Margins will be filled with black color.</p></body></html>")) + self.borderBox.setText(_translate("mainWindow", "W/B margins")) + self.outputSplit.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'><span style=\" font-weight:600; text-decoration: underline;\">Unchecked - Automatic mode<br/></span>Output will be splitted automatically.</p><p style=\'white-space:pre\'><span style=\" font-weight:600; text-decoration: underline;\">Checked - Volume mode<br/></span>Every subdirectory will be considered as separate volume.</p></body></html>")) + self.outputSplit.setText(_translate("mainWindow", "Output split")) + self.colorBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Disable conversion to grayscale.</p></body></html>")) + self.colorBox.setText(_translate("mainWindow", "Color mode")) + self.gammaLabel.setText(_translate("mainWindow", "Gamma: Auto")) + self.editorButton.setText(_translate("mainWindow", "Editor")) + self.wikiButton.setText(_translate("mainWindow", "Wiki")) + self.directoryButton.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Add directory containing JPG, PNG or GIF files to queue.<br/><span style=\" font-weight:600;\">CBR, CBZ and CB7 files inside will not be processed!</span></p></body></html>")) + self.directoryButton.setText(_translate("mainWindow", "Add directory")) + self.fileButton.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Add CBR, CBZ, CB7 or PDF file to queue.</p></body></html>")) + self.fileButton.setText(_translate("mainWindow", "Add file")) + self.deviceBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Target device.</p></body></html>")) + self.formatBox.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Output format.</p></body></html>")) + self.convertButton.setToolTip(_translate("mainWindow", "<html><head/><body><p style=\'white-space:pre\'>Shift+Click to select the output directory.</p></body></html>")) + self.convertButton.setText(_translate("mainWindow", "Convert")) + self.clearButton.setText(_translate("mainWindow", "Clear list")) + +from . import KCC_rc diff --git a/kindlecomicconverter/KCC_ui_editor.py b/kindlecomicconverter/KCC_ui_editor.py new file mode 100644 index 0000000..56dc07d --- /dev/null +++ b/kindlecomicconverter/KCC_ui_editor.py @@ -0,0 +1,124 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'gui\MetaEditor.ui' +# +# Created by: PyQt5 UI code generator 5.6 +# +# WARNING! All changes made in this file will be lost! + +from PyQt5 import QtCore, QtGui, QtWidgets + +class Ui_editorDialog(object): + def setupUi(self, editorDialog): + editorDialog.setObjectName("editorDialog") + editorDialog.resize(400, 260) + editorDialog.setMinimumSize(QtCore.QSize(400, 260)) + icon = QtGui.QIcon() + icon.addPixmap(QtGui.QPixmap(":/Icon/icons/comic2ebook.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + editorDialog.setWindowIcon(icon) + self.verticalLayout = QtWidgets.QVBoxLayout(editorDialog) + self.verticalLayout.setContentsMargins(-1, -1, -1, 5) + self.verticalLayout.setObjectName("verticalLayout") + self.editorWidget = QtWidgets.QWidget(editorDialog) + self.editorWidget.setObjectName("editorWidget") + self.gridLayout = QtWidgets.QGridLayout(self.editorWidget) + self.gridLayout.setContentsMargins(0, 0, 0, 0) + self.gridLayout.setObjectName("gridLayout") + self.label_1 = QtWidgets.QLabel(self.editorWidget) + self.label_1.setObjectName("label_1") + self.gridLayout.addWidget(self.label_1, 0, 0, 1, 1) + self.seriesLine = QtWidgets.QLineEdit(self.editorWidget) + self.seriesLine.setObjectName("seriesLine") + self.gridLayout.addWidget(self.seriesLine, 0, 1, 1, 1) + self.label_2 = QtWidgets.QLabel(self.editorWidget) + self.label_2.setObjectName("label_2") + self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1) + self.volumeLine = QtWidgets.QLineEdit(self.editorWidget) + self.volumeLine.setObjectName("volumeLine") + self.gridLayout.addWidget(self.volumeLine, 1, 1, 1, 1) + self.label_3 = QtWidgets.QLabel(self.editorWidget) + self.label_3.setObjectName("label_3") + self.gridLayout.addWidget(self.label_3, 2, 0, 1, 1) + self.numberLine = QtWidgets.QLineEdit(self.editorWidget) + self.numberLine.setObjectName("numberLine") + self.gridLayout.addWidget(self.numberLine, 2, 1, 1, 1) + self.label_4 = QtWidgets.QLabel(self.editorWidget) + self.label_4.setObjectName("label_4") + self.gridLayout.addWidget(self.label_4, 3, 0, 1, 1) + self.writerLine = QtWidgets.QLineEdit(self.editorWidget) + self.writerLine.setObjectName("writerLine") + self.gridLayout.addWidget(self.writerLine, 3, 1, 1, 1) + self.label_5 = QtWidgets.QLabel(self.editorWidget) + self.label_5.setObjectName("label_5") + self.gridLayout.addWidget(self.label_5, 4, 0, 1, 1) + self.pencillerLine = QtWidgets.QLineEdit(self.editorWidget) + self.pencillerLine.setObjectName("pencillerLine") + self.gridLayout.addWidget(self.pencillerLine, 4, 1, 1, 1) + self.label_6 = QtWidgets.QLabel(self.editorWidget) + self.label_6.setObjectName("label_6") + self.gridLayout.addWidget(self.label_6, 5, 0, 1, 1) + self.inkerLine = QtWidgets.QLineEdit(self.editorWidget) + self.inkerLine.setObjectName("inkerLine") + self.gridLayout.addWidget(self.inkerLine, 5, 1, 1, 1) + self.label_7 = QtWidgets.QLabel(self.editorWidget) + self.label_7.setObjectName("label_7") + self.gridLayout.addWidget(self.label_7, 6, 0, 1, 1) + self.coloristLine = QtWidgets.QLineEdit(self.editorWidget) + self.coloristLine.setObjectName("coloristLine") + self.gridLayout.addWidget(self.coloristLine, 6, 1, 1, 1) + self.label_8 = QtWidgets.QLabel(self.editorWidget) + self.label_8.setOpenExternalLinks(True) + self.label_8.setObjectName("label_8") + self.gridLayout.addWidget(self.label_8, 7, 0, 1, 1) + self.muidLine = QtWidgets.QLineEdit(self.editorWidget) + self.muidLine.setObjectName("muidLine") + self.gridLayout.addWidget(self.muidLine, 7, 1, 1, 1) + self.verticalLayout.addWidget(self.editorWidget) + self.optionWidget = QtWidgets.QWidget(editorDialog) + self.optionWidget.setObjectName("optionWidget") + self.horizontalLayout = QtWidgets.QHBoxLayout(self.optionWidget) + self.horizontalLayout.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout.setObjectName("horizontalLayout") + self.statusLabel = QtWidgets.QLabel(self.optionWidget) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.MinimumExpanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.statusLabel.sizePolicy().hasHeightForWidth()) + self.statusLabel.setSizePolicy(sizePolicy) + self.statusLabel.setText("") + self.statusLabel.setObjectName("statusLabel") + self.horizontalLayout.addWidget(self.statusLabel) + self.okButton = QtWidgets.QPushButton(self.optionWidget) + self.okButton.setMinimumSize(QtCore.QSize(0, 30)) + icon1 = QtGui.QIcon() + icon1.addPixmap(QtGui.QPixmap(":/Other/icons/convert.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.okButton.setIcon(icon1) + self.okButton.setObjectName("okButton") + self.horizontalLayout.addWidget(self.okButton) + self.cancelButton = QtWidgets.QPushButton(self.optionWidget) + self.cancelButton.setMinimumSize(QtCore.QSize(0, 30)) + icon2 = QtGui.QIcon() + icon2.addPixmap(QtGui.QPixmap(":/Other/icons/clear.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.cancelButton.setIcon(icon2) + self.cancelButton.setObjectName("cancelButton") + self.horizontalLayout.addWidget(self.cancelButton) + self.verticalLayout.addWidget(self.optionWidget) + + self.retranslateUi(editorDialog) + QtCore.QMetaObject.connectSlotsByName(editorDialog) + + def retranslateUi(self, editorDialog): + _translate = QtCore.QCoreApplication.translate + editorDialog.setWindowTitle(_translate("editorDialog", "Metadata editor")) + self.label_1.setText(_translate("editorDialog", "Series:")) + self.label_2.setText(_translate("editorDialog", "Volume:")) + self.label_3.setText(_translate("editorDialog", "Number:")) + self.label_4.setText(_translate("editorDialog", "Writer:")) + self.label_5.setText(_translate("editorDialog", "Penciller:")) + self.label_6.setText(_translate("editorDialog", "Inker:")) + self.label_7.setText(_translate("editorDialog", "Colorist:")) + self.label_8.setText(_translate("editorDialog", "<html><head/><body><p><a href=\"https://github.com/ciromattia/kcc/wiki/Manga-Cover-Database-support\"><span style=\" text-decoration: underline; color:#0000ff;\">MUid:</span></a></p></body></html>")) + self.okButton.setText(_translate("editorDialog", "Save")) + self.cancelButton.setText(_translate("editorDialog", "Cancel")) + +from . import KCC_rc diff --git a/kindlecomicconverter/__init__.py b/kindlecomicconverter/__init__.py new file mode 100644 index 0000000..c966b7c --- /dev/null +++ b/kindlecomicconverter/__init__.py @@ -0,0 +1,4 @@ +__version__ = '5.3.0' +__license__ = 'ISC' +__copyright__ = '2012-2017, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>' +__docformat__ = 'restructuredtext en' diff --git a/kindlecomicconverter/cbxarchive.py b/kindlecomicconverter/cbxarchive.py new file mode 100644 index 0000000..726432b --- /dev/null +++ b/kindlecomicconverter/cbxarchive.py @@ -0,0 +1,105 @@ +# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. +# + +import sys +import os +from zipfile import is_zipfile, ZipFile +from subprocess import STDOUT, PIPE +from psutil import Popen +from shutil import move, copy +try: + from scandir import walk +except ImportError: + walk = os.walk +from . import rarfile +from .shared import check7ZFile as is_7zfile, saferReplace, saferRemove + + +class CBxArchive: + def __init__(self, origFileName): + self.origFileName = origFileName + if is_zipfile(origFileName): + self.compressor = 'zip' + elif rarfile.is_rarfile(origFileName): + self.compressor = 'rar' + elif is_7zfile(origFileName): + self.compressor = '7z' + else: + self.compressor = None + + def isCbxFile(self): + return self.compressor is not None + + def extractCBZ(self, targetdir): + cbzFile = ZipFile(self.origFileName) + filelist = [] + for f in cbzFile.namelist(): + if f.startswith('__MACOSX') or f.endswith('.DS_Store') or f.endswith('humbs.db'): + pass # skip MacOS special files + elif f.endswith('/'): + try: + os.makedirs(os.path.join(targetdir, f)) + except Exception: + pass # the dir exists so we are going to extract the images only. + else: + filelist.append(f) + cbzFile.extractall(targetdir, filelist) + + def extractCBR(self, targetdir): + cbrFile = rarfile.RarFile(self.origFileName) + cbrFile.extractall(targetdir) + for root, dirnames, filenames in walk(targetdir): + for filename in filenames: + if filename.startswith('__MACOSX') or filename.endswith('.DS_Store') or filename.endswith('humbs.db'): + saferRemove(os.path.join(root, filename)) + + def extractCB7(self, targetdir): + # Workaround for some wide UTF-8 + Popen abnormalities + if sys.platform.startswith('darwin'): + copy(self.origFileName, os.path.join(os.path.dirname(self.origFileName), 'TMP_KCC_TMP')) + self.origFileName = os.path.join(os.path.dirname(self.origFileName), 'TMP_KCC_TMP') + output = Popen('7za x "' + self.origFileName + '" -xr!__MACOSX -xr!.DS_Store -xr!thumbs.db -xr!Thumbs.db -o"' + + targetdir + '"', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + extracted = False + for line in output.stdout: + if b"Everything is Ok" in line: + extracted = True + if sys.platform.startswith('darwin'): + saferRemove(self.origFileName) + if not extracted: + raise OSError + + def extract(self, targetdir): + if self.compressor == 'rar': + self.extractCBR(targetdir) + elif self.compressor == 'zip': + self.extractCBZ(targetdir) + elif self.compressor == '7z': + self.extractCB7(targetdir) + adir = os.listdir(targetdir) + if 'ComicInfo.xml' in adir: + adir.remove('ComicInfo.xml') + if len(adir) == 1 and os.path.isdir(os.path.join(targetdir, adir[0])): + for f in os.listdir(os.path.join(targetdir, adir[0])): + # If directory names contain UTF-8 chars shutil.move can't clean up the mess alone + if os.path.isdir(os.path.join(targetdir, f)): + saferReplace(os.path.join(targetdir, adir[0], f), os.path.join(targetdir, adir[0], f + '-A')) + f += '-A' + move(os.path.join(targetdir, adir[0], f), targetdir) + os.rmdir(os.path.join(targetdir, adir[0])) + return targetdir diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py new file mode 100755 index 0000000..404ca11 --- /dev/null +++ b/kindlecomicconverter/comic2ebook.py @@ -0,0 +1,1185 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. +# + +import os +import sys +from time import strftime, gmtime +from copy import copy +from glob import glob +from json import loads +from urllib.request import Request, urlopen +from re import sub +from stat import S_IWRITE, S_IREAD, S_IEXEC +from zipfile import ZipFile, ZIP_STORED, ZIP_DEFLATED +from tempfile import mkdtemp, gettempdir, TemporaryFile +from shutil import move, copytree, rmtree +from optparse import OptionParser, OptionGroup +from multiprocessing import Pool +from uuid import uuid4 +from slugify import slugify as slugifyExt +from PIL import Image +from subprocess import STDOUT, PIPE +from psutil import Popen, virtual_memory +from html import escape +try: + from PyQt5 import QtCore +except ImportError: + QtCore = None +try: + from scandir import walk +except ImportError: + walk = os.walk +from .shared import md5Checksum, getImageFileName, walkSort, walkLevel, saferReplace, saferRemove, sanitizeTrace +from . import comic2panel +from . import image +from . import cbxarchive +from . import pdfjpgextract +from . import dualmetafix +from . import metadata +from . import kindle +from . import __version__ + + +def main(argv=None): + global options + parser = makeParser() + optionstemplate, args = parser.parse_args(argv) + if len(args) == 0: + parser.print_help() + return 0 + if sys.platform.startswith('win'): + sources = set([source for arg in args for source in glob(arg)]) + else: + sources = set(args) + if len(sources) == 0: + print('No matching files found.') + return 1 + for source in sources: + source = source.rstrip('\\').rstrip('/') + options = copy(optionstemplate) + checkOptions() + if len(sources) > 1: + print('Working on ' + source + '...') + makeBook(source) + return 0 + + +def buildHTML(path, imgfile, imgfilepath): + imgfilepath = md5Checksum(imgfilepath) + filename = getImageFileName(imgfile) + deviceres = options.profileData[1] + if "Rotated" in options.imgIndex[imgfilepath]: + rotatedPage = True + else: + rotatedPage = False + if "BlackFill" in options.imgIndex[imgfilepath]: + additionalStyle = 'background-color:#000000;' + else: + additionalStyle = 'background-color:#FFFFFF;' + postfix = '' + backref = 1 + head = path + while True: + head, tail = os.path.split(head) + if tail == 'Images': + htmlpath = os.path.join(head, 'Text', postfix) + break + postfix = tail + "/" + postfix + backref += 1 + if not os.path.exists(htmlpath): + os.makedirs(htmlpath) + htmlfile = os.path.join(htmlpath, filename[0] + '.xhtml') + imgsize = Image.open(os.path.join(head, "Images", postfix, imgfile)).size + f = open(htmlfile, "w", encoding='UTF-8') + f.writelines(["<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n", + "<!DOCTYPE html>\n", + "<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:epub=\"http://www.idpf.org/2007/ops\">\n", + "<head>\n", + "<title>", escape(filename[0]), "</title>\n", + "<link href=\"", "../" * (backref - 1), "style.css\" type=\"text/css\" rel=\"stylesheet\"/>\n", + "<meta name=\"viewport\" " + "content=\"width=" + str(deviceres[0]) + ", height=" + str(deviceres[1]) + "\"/>\n" + "</head>\n", + "<body style=\"" + additionalStyle + "\">\n", + "<div style=\"text-align:center;top:" + getTopMargin(deviceres, imgsize) + "%;\">\n", + "<img width=\"" + str(imgsize[0]) + "\" height=\"" + str(imgsize[1]) + "\" ", + "src=\"", "../" * backref, "Images/", postfix, imgfile, "\"/>\n</div>\n"]) + if options.iskindle and options.panelview: + if options.autoscale: + size = (getPanelViewResolution(imgsize, deviceres)) + else: + size = (int(imgsize[0] * 1.5), int(imgsize[1] * 1.5)) + if size[0] - deviceres[0] < deviceres[0] * 0.01: + noHorizontalPV = True + else: + noHorizontalPV = False + if size[1] - deviceres[1] < deviceres[1] * 0.01: + noVerticalPV = True + else: + noVerticalPV = False + x, y = getPanelViewSize(deviceres, size) + boxStyles = {"PV-TL": "position:absolute;left:0;top:0;", + "PV-TR": "position:absolute;right:0;top:0;", + "PV-BL": "position:absolute;left:0;bottom:0;", + "PV-BR": "position:absolute;right:0;bottom:0;", + "PV-T": "position:absolute;top:0;left:" + x + "%;", + "PV-B": "position:absolute;bottom:0;left:" + x + "%;", + "PV-L": "position:absolute;left:0;top:" + y + "%;", + "PV-R": "position:absolute;right:0;top:" + y + "%;"} + f.write("<div id=\"PV\">\n") + if not noHorizontalPV and not noVerticalPV: + if rotatedPage: + if options.righttoleft: + order = [1, 3, 2, 4] + else: + order = [2, 4, 1, 3] + else: + if options.righttoleft: + order = [2, 1, 4, 3] + else: + order = [1, 2, 3, 4] + boxes = ["PV-TL", "PV-TR", "PV-BL", "PV-BR"] + elif noHorizontalPV and not noVerticalPV: + if rotatedPage: + if options.righttoleft: + order = [1, 2] + else: + order = [2, 1] + else: + order = [1, 2] + boxes = ["PV-T", "PV-B"] + elif not noHorizontalPV and noVerticalPV: + if rotatedPage: + order = [1, 2] + else: + if options.righttoleft: + order = [2, 1] + else: + order = [1, 2] + boxes = ["PV-L", "PV-R"] + else: + order = [] + boxes = [] + for i in range(0, len(boxes)): + f.writelines(["<div id=\"" + boxes[i] + "\">\n", + "<a style=\"display:inline-block;width:100%;height:100%;\" class=\"app-amzn-magnify\" " + "data-app-amzn-magnify='{\"targetId\":\"" + boxes[i] + + "-P\", \"ordinal\":" + str(order[i]) + "}'></a>\n", + "</div>\n"]) + f.write("</div>\n") + for box in boxes: + f.writelines(["<div class=\"PV-P\" id=\"" + box + "-P\" style=\"" + additionalStyle + "\">\n", + "<img style=\"" + boxStyles[box] + "\" src=\"", "../" * backref, "Images/", postfix, + imgfile, "\" width=\"" + str(size[0]) + "\" height=\"" + str(size[1]) + "\"/>\n", + "</div>\n"]) + f.writelines(["</body>\n", + "</html>\n"]) + f.close() + return path, imgfile + + +def buildNCX(dstdir, title, chapters, chapterNames): + ncxfile = os.path.join(dstdir, 'OEBPS', 'toc.ncx') + f = open(ncxfile, "w", encoding='UTF-8') + f.writelines(["<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n", + "<ncx version=\"2005-1\" xml:lang=\"en-US\" xmlns=\"http://www.daisy.org/z3986/2005/ncx/\">\n", + "<head>\n", + "<meta name=\"dtb:uid\" content=\"urn:uuid:", options.uuid, "\"/>\n", + "<meta name=\"dtb:depth\" content=\"1\"/>\n", + "<meta name=\"dtb:totalPageCount\" content=\"0\"/>\n", + "<meta name=\"dtb:maxPageNumber\" content=\"0\"/>\n", + "<meta name=\"generated\" content=\"true\"/>\n", + "</head>\n", + "<docTitle><text>", escape(title), "</text></docTitle>\n", + "<navMap>\n"]) + for chapter in chapters: + folder = chapter[0].replace(os.path.join(dstdir, 'OEBPS'), '').lstrip('/').lstrip('\\\\') + filename = getImageFileName(os.path.join(folder, chapter[1])) + navID = folder.replace('/', '_').replace('\\', '_') + if options.chapters: + title = chapterNames[chapter[1]] + navID = filename[0].replace('/', '_').replace('\\', '_') + elif os.path.basename(folder) != "Text": + title = chapterNames[os.path.basename(folder)] + f.write("<navPoint id=\"" + navID + "\"><navLabel><text>" + + escape(title) + "</text></navLabel><content src=\"" + filename[0].replace("\\", "/") + + ".xhtml\"/></navPoint>\n") + f.write("</navMap>\n</ncx>") + f.close() + + +def buildNAV(dstdir, title, chapters, chapterNames): + navfile = os.path.join(dstdir, 'OEBPS', 'nav.xhtml') + f = open(navfile, "w", encoding='UTF-8') + f.writelines(["<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", + "<!DOCTYPE html>\n", + "<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:epub=\"http://www.idpf.org/2007/ops\">\n", + "<head>\n", + "<title>" + escape(title) + "</title>\n", + "<meta charset=\"utf-8\"/>\n", + "</head>\n", + "<body>\n", + "<nav xmlns:epub=\"http://www.idpf.org/2007/ops\" epub:type=\"toc\" id=\"toc\">\n", + "<ol>\n"]) + for chapter in chapters: + folder = chapter[0].replace(os.path.join(dstdir, 'OEBPS'), '').lstrip('/').lstrip('\\\\') + filename = getImageFileName(os.path.join(folder, chapter[1])) + if options.chapters: + title = chapterNames[chapter[1]] + elif os.path.basename(folder) != "Text": + title = chapterNames[os.path.basename(folder)] + f.write("<li><a href=\"" + filename[0].replace("\\", "/") + ".xhtml\">" + escape(title) + "</a></li>\n") + f.writelines(["</ol>\n", + "</nav>\n", + "<nav epub:type=\"page-list\">\n", + "<ol>\n"]) + for chapter in chapters: + folder = chapter[0].replace(os.path.join(dstdir, 'OEBPS'), '').lstrip('/').lstrip('\\\\') + filename = getImageFileName(os.path.join(folder, chapter[1])) + if options.chapters: + title = chapterNames[chapter[1]] + elif os.path.basename(folder) != "Text": + title = chapterNames[os.path.basename(folder)] + f.write("<li><a href=\"" + filename[0].replace("\\", "/") + ".xhtml\">" + escape(title) + "</a></li>\n") + f.write("</ol>\n</nav>\n</body>\n</html>") + f.close() + + +def buildOPF(dstdir, title, filelist, cover=None): + opffile = os.path.join(dstdir, 'OEBPS', 'content.opf') + deviceres = options.profileData[1] + if options.righttoleft: + writingmode = "horizontal-rl" + else: + writingmode = "horizontal-lr" + f = open(opffile, "w", encoding='UTF-8') + f.writelines(["<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n", + "<package version=\"3.0\" unique-identifier=\"BookID\" ", + "xmlns=\"http://www.idpf.org/2007/opf\">\n", + "<metadata xmlns:opf=\"http://www.idpf.org/2007/opf\" ", + "xmlns:dc=\"http://purl.org/dc/elements/1.1/\">\n", + "<dc:title>", title, "</dc:title>\n", + "<dc:language>en-US</dc:language>\n", + "<dc:identifier id=\"BookID\">urn:uuid:", options.uuid, "</dc:identifier>\n", + "<dc:contributor id=\"contributor\">KindleComicConverter-" + __version__ + "</dc:contributor>\n"]) + if len(options.summary) > 0: + f.writelines(["<dc:description>", options.summary, "</dc:description>\n"]) + for author in options.authors: + f.writelines(["<dc:creator>", author, "</dc:creator>\n"]) + f.writelines(["<meta property=\"dcterms:modified\">" + strftime("%Y-%m-%dT%H:%M:%SZ", gmtime()) + "</meta>\n", + "<meta name=\"cover\" content=\"cover\"/>\n", + "<meta property=\"rendition:orientation\">portrait</meta>\n", + "<meta property=\"rendition:spread\">portrait</meta>\n", + "<meta property=\"rendition:layout\">pre-paginated</meta>\n"]) + if options.iskindle and options.profile != 'Custom': + f.writelines(["<meta name=\"original-resolution\" content=\"", + str(deviceres[0]) + "x" + str(deviceres[1]) + "\"/>\n", + "<meta name=\"book-type\" content=\"comic\"/>\n", + "<meta name=\"RegionMagnification\" content=\"true\"/>\n", + "<meta name=\"primary-writing-mode\" content=\"" + writingmode + "\"/>\n", + "<meta name=\"zero-gutter\" content=\"true\"/>\n", + "<meta name=\"zero-margin\" content=\"true\"/>\n", + "<meta name=\"ke-border-color\" content=\"#ffffff\"/>\n", + "<meta name=\"ke-border-width\" content=\"0\"/>\n"]) + f.writelines(["</metadata>\n<manifest>\n<item id=\"ncx\" href=\"toc.ncx\" ", + "media-type=\"application/x-dtbncx+xml\"/>\n", + "<item id=\"nav\" href=\"nav.xhtml\" ", + "properties=\"nav\" media-type=\"application/xhtml+xml\"/>\n"]) + if cover is not None: + filename = getImageFileName(cover.replace(os.path.join(dstdir, 'OEBPS'), '').lstrip('/').lstrip('\\\\')) + if '.png' == filename[1]: + mt = 'image/png' + else: + mt = 'image/jpeg' + f.write("<item id=\"cover\" href=\"Images/cover" + filename[1] + "\" media-type=\"" + mt + + "\" properties=\"cover-image\"/>\n") + reflist = [] + for path in filelist: + folder = path[0].replace(os.path.join(dstdir, 'OEBPS'), '').lstrip('/').lstrip('\\\\').replace("\\", "/") + filename = getImageFileName(path[1]) + uniqueid = os.path.join(folder, filename[0]).replace('/', '_').replace('\\', '_') + reflist.append(uniqueid) + f.write("<item id=\"page_" + str(uniqueid) + "\" href=\"" + + folder.replace('Images', 'Text') + "/" + filename[0] + + ".xhtml\" media-type=\"application/xhtml+xml\"/>\n") + if '.png' == filename[1]: + mt = 'image/png' + else: + mt = 'image/jpeg' + f.write("<item id=\"img_" + str(uniqueid) + "\" href=\"" + folder + "/" + path[1] + "\" media-type=\"" + + mt + "\"/>\n") + f.write("<item id=\"css\" href=\"Text/style.css\" media-type=\"text/css\"/>\n") + if options.righttoleft: + f.write("</manifest>\n<spine page-progression-direction=\"rtl\" toc=\"ncx\">\n") + else: + f.write("</manifest>\n<spine page-progression-direction=\"ltr\" toc=\"ncx\">\n") + for entry in reflist: + f.write("<itemref idref=\"page_" + entry + "\"/>\n") + f.write("</spine>\n</package>\n") + f.close() + os.mkdir(os.path.join(dstdir, 'META-INF')) + f = open(os.path.join(dstdir, 'META-INF', 'container.xml'), 'w', encoding='UTF-8') + f.writelines(["<?xml version=\"1.0\"?>\n", + "<container version=\"1.0\" xmlns=\"urn:oasis:names:tc:opendocument:xmlns:container\">\n", + "<rootfiles>\n", + "<rootfile full-path=\"OEBPS/content.opf\" media-type=\"application/oebps-package+xml\"/>\n", + "</rootfiles>\n", + "</container>"]) + f.close() + + +def buildEPUB(path, chapterNames, tomeNumber): + filelist = [] + chapterlist = [] + cover = None + os.mkdir(os.path.join(path, 'OEBPS', 'Text')) + f = open(os.path.join(path, 'OEBPS', 'Text', 'style.css'), 'w', encoding='UTF-8') + f.writelines(["@page {\n", + "margin: 0;\n", + "}\n", + "body {\n", + "display: block;\n", + "margin: 0;\n", + "padding: 0;\n", + "}\n", + "#PV {\n", + "position: absolute;\n", + "width: 100%;\n", + "height: 100%;\n", + "top: 0;\n", + "left: 0;\n", + "}\n", + "#PV-T {\n", + "top: 0;\n", + "width: 100%;\n", + "height: 50%;\n", + "}\n", + "#PV-B {\n", + "bottom: 0;\n", + "width: 100%;\n", + "height: 50%;\n", + "}\n", + "#PV-L {\n", + "left: 0;\n", + "width: 49.5%;\n", + "height: 100%;\n", + "float: left;\n", + "}\n", + "#PV-R {\n", + "right: 0;\n", + "width: 49.5%;\n", + "height: 100%;\n", + "float: right;\n", + "}\n", + "#PV-TL {\n", + "top: 0;\n", + "left: 0;\n", + "width: 49.5%;\n", + "height: 50%;\n", + "float: left;\n", + "}\n", + "#PV-TR {\n", + "top: 0;\n", + "right: 0;\n", + "width: 49.5%;\n", + "height: 50%;\n", + "float: right;\n", + "}\n", + "#PV-BL {\n", + "bottom: 0;\n", + "left: 0;\n", + "width: 49.5%;\n", + "height: 50%;\n", + "float: left;\n", + "}\n", + "#PV-BR {\n", + "bottom: 0;\n", + "right: 0;\n", + "width: 49.5%;\n", + "height: 50%;\n", + "float: right;\n", + "}\n", + ".PV-P {\n", + "width: 100%;\n", + "height: 100%;\n", + "top: 0;\n", + "position: absolute;\n", + "display: none;\n", + "}\n"]) + f.close() + for (dirpath, dirnames, filenames) in walk(os.path.join(path, 'OEBPS', 'Images')): + chapter = False + dirnames, filenames = walkSort(dirnames, filenames) + for afile in filenames: + filelist.append(buildHTML(dirpath, afile, os.path.join(dirpath, afile))) + if not chapter: + chapterlist.append((dirpath.replace('Images', 'Text'), filelist[-1][1])) + chapter = True + if cover is None: + cover = os.path.join(os.path.join(path, 'OEBPS', 'Images'), + 'cover' + getImageFileName(filelist[-1][1])[1]) + options.covers.append((image.Cover(os.path.join(filelist[-1][0], filelist[-1][1]), cover, options, + tomeNumber), options.uuid)) + # Overwrite chapternames if tree is flat and ComicInfo.xml has bookmarks + if not chapterNames and options.chapters: + chapterlist = [] + globaldiff = 0 + for aChapter in options.chapters: + pageid = aChapter[0] + for x in range(0, pageid + globaldiff + 1): + if '-kcc-b' in filelist[x][1]: + pageid += 1 + if '-kcc-c' in filelist[pageid][1]: + pageid -= 1 + filename = filelist[pageid][1] + chapterlist.append((filelist[pageid][0].replace('Images', 'Text'), filename)) + chapterNames[filename] = aChapter[1] + globaldiff = pageid - (aChapter[0] + globaldiff) + buildNCX(path, options.title, chapterlist, chapterNames) + buildNAV(path, options.title, chapterlist, chapterNames) + buildOPF(path, options.title, filelist, cover) + + +def imgDirectoryProcessing(path): + global workerPool, workerOutput + workerPool = Pool() + workerOutput = [] + options.imgIndex = {} + options.imgPurgeIndex = [] + work = [] + pagenumber = 0 + for (dirpath, dirnames, filenames) in walk(path): + for afile in filenames: + pagenumber += 1 + work.append([afile, dirpath, options]) + if GUI: + GUI.progressBarTick.emit(str(pagenumber)) + if len(work) > 0: + for i in work: + workerPool.apply_async(func=imgFileProcessing, args=(i, ), callback=imgFileProcessingTick) + workerPool.close() + workerPool.join() + if GUI and not GUI.conversionAlive: + rmtree(os.path.join(path, '..', '..'), True) + raise UserWarning("Conversion interrupted.") + if len(workerOutput) > 0: + rmtree(os.path.join(path, '..', '..'), True) + raise RuntimeError("One of workers crashed. Cause: " + workerOutput[0][0], workerOutput[0][1]) + for file in options.imgPurgeIndex: + if os.path.isfile(file): + saferRemove(file) + else: + rmtree(os.path.join(path, '..', '..'), True) + raise UserWarning("Source directory is empty.") + + +def imgFileProcessingTick(output): + if isinstance(output, tuple): + workerOutput.append(output) + workerPool.terminate() + else: + for page in output: + if page is not None: + options.imgIndex[page[0]] = page[1] + options.imgPurgeIndex.append(page[2]) + if GUI: + GUI.progressBarTick.emit('tick') + if not GUI.conversionAlive: + workerPool.terminate() + + +def imgFileProcessing(work): + try: + afile = work[0] + dirpath = work[1] + opt = work[2] + output = [] + workImg = image.ComicPageParser((dirpath, afile), opt) + for i in workImg.payload: + img = image.ComicPage(i[0], i[1], i[2], i[3], i[4], opt) + if opt.cropping == 2 and not opt.webtoon: + img.cropPageNumber(opt.croppingp) + if opt.cropping > 0 and not opt.webtoon: + img.cropMargin(opt.croppingp) + img.autocontrastImage() + img.resizeImage() + if opt.forcepng and not opt.forcecolor: + img.quantizeImage() + output.append(img.saveToDir()) + return output + except Exception: + return str(sys.exc_info()[1]), sanitizeTrace(sys.exc_info()[2]) + + +def getWorkFolder(afile): + if os.path.isdir(afile): + workdir = mkdtemp('', 'KCC-') + try: + os.rmdir(workdir) + fullPath = os.path.join(workdir, 'OEBPS', 'Images') + copytree(afile, fullPath) + sanitizePermissions(fullPath) + return workdir + except: + rmtree(workdir, True) + raise UserWarning("Failed to prepare a workspace.") + elif os.path.isfile(afile) and afile.lower().endswith('.pdf'): + pdf = pdfjpgextract.PdfJpgExtract(afile) + path, njpg = pdf.extract() + if njpg == 0: + rmtree(path, True) + raise UserWarning("Failed to extract images from PDF file.") + elif os.path.isfile(afile): + workdir = mkdtemp('', 'KCC-') + cbx = cbxarchive.CBxArchive(afile) + if cbx.isCbxFile(): + try: + path = cbx.extract(workdir) + except: + rmtree(workdir, True) + raise UserWarning("Failed to extract archive.") + else: + rmtree(workdir, True) + raise UserWarning("Failed to detect archive format.") + else: + raise UserWarning("Failed to open source file/directory.") + sanitizePermissions(path) + newpath = mkdtemp('', 'KCC-') + copytree(path, os.path.join(newpath, 'OEBPS', 'Images')) + rmtree(path, True) + return newpath + + +def getOutputFilename(srcpath, wantedname, ext, tomeNumber): + if srcpath[-1] == os.path.sep: + srcpath = srcpath[:-1] + if 'Ko' in options.profile and options.format == 'EPUB': + ext = '.kepub.epub' + if wantedname is not None: + if wantedname.endswith(ext): + filename = os.path.abspath(wantedname) + elif os.path.isdir(srcpath): + filename = os.path.join(os.path.abspath(options.output), os.path.basename(srcpath) + ext) + else: + filename = os.path.join(os.path.abspath(options.output), + os.path.basename(os.path.splitext(srcpath)[0]) + ext) + elif os.path.isdir(srcpath): + filename = srcpath + tomeNumber + ext + else: + if 'Ko' in options.profile and options.format == 'EPUB': + path = srcpath.split(os.path.sep) + path[-1] = ''.join(e for e in path[-1].split('.')[0] if e.isalnum()) + tomeNumber + ext + if not path[-1].split('.')[0]: + path[-1] = 'KCCPlaceholder' + tomeNumber + ext + filename = os.path.sep.join(path) + else: + filename = os.path.splitext(srcpath)[0] + tomeNumber + ext + if os.path.isfile(filename): + counter = 0 + basename = os.path.splitext(filename)[0] + while os.path.isfile(basename + '_kcc' + str(counter) + ext): + counter += 1 + filename = basename + '_kcc' + str(counter) + ext + return filename + + +def getComicInfo(path, originalPath): + xmlPath = os.path.join(path, 'ComicInfo.xml') + options.authors = ['KCC'] + options.remoteCovers = {} + options.chapters = [] + options.summary = '' + titleSuffix = '' + if options.title == 'defaulttitle': + defaultTitle = True + if os.path.isdir(originalPath): + options.title = os.path.basename(originalPath) + else: + options.title = os.path.splitext(os.path.basename(originalPath))[0] + else: + defaultTitle = False + if os.path.exists(xmlPath): + try: + xml = metadata.MetadataParser(xmlPath) + except Exception: + saferRemove(xmlPath) + return + options.authors = [] + if defaultTitle: + if xml.data['Series']: + options.title = escape(xml.data['Series']) + if xml.data['Volume']: + titleSuffix += ' V' + xml.data['Volume'].zfill(2) + if xml.data['Number']: + titleSuffix += ' #' + xml.data['Number'].zfill(3) + options.title += titleSuffix + for field in ['Writers', 'Pencillers', 'Inkers', 'Colorists']: + for person in xml.data[field]: + options.authors.append(escape(person)) + if len(options.authors) > 0: + options.authors = list(set(options.authors)) + options.authors.sort() + else: + options.authors = ['KCC'] + if xml.data['MUid']: + options.remoteCovers = getCoversFromMCB(xml.data['MUid']) + if xml.data['Bookmarks']: + options.chapters = xml.data['Bookmarks'] + if xml.data['Summary']: + options.summary = escape(xml.data['Summary']) + saferRemove(xmlPath) + + +def getCoversFromMCB(mangaID): + covers = {} + try: + jsonRaw = urlopen(Request('http://mcd.iosphe.re/api/v1/series/' + mangaID + '/', + headers={'User-Agent': 'KindleComicConverter/' + __version__})) + jsonData = loads(jsonRaw.read().decode('utf-8')) + for volume in jsonData['Covers']['a']: + if volume['Side'] == 'front': + covers[int(volume['Volume'])] = volume['Raw'] + except Exception: + return {} + return covers + + +def getDirectorySize(start_path='.'): + total_size = 0 + for dirpath, dirnames, filenames in walk(start_path): + for f in filenames: + fp = os.path.join(dirpath, f) + total_size += os.path.getsize(fp) + return total_size + + +def getTopMargin(deviceres, size): + y = int((deviceres[1] - size[1]) / 2) / deviceres[1] * 100 + return str(round(y, 1)) + + +def getPanelViewResolution(imageSize, deviceRes): + scale = float(deviceRes[0]) / float(imageSize[0]) + return int(deviceRes[0]), int(scale * imageSize[1]) + + +def getPanelViewSize(deviceres, size): + x = int(deviceres[0] / 2 - size[0] / 2) / deviceres[0] * 100 + y = int(deviceres[1] / 2 - size[1] / 2) / deviceres[1] * 100 + return str(int(x)), str(int(y)) + + +def sanitizeTree(filetree): + chapterNames = {} + for root, dirs, files in walk(filetree, False): + for name in files: + splitname = os.path.splitext(name) + slugified = slugify(splitname[0]) + while os.path.exists(os.path.join(root, slugified + splitname[1])) and splitname[0].upper()\ + != slugified.upper(): + slugified += "A" + newKey = os.path.join(root, slugified + splitname[1]) + key = os.path.join(root, name) + if key != newKey: + saferReplace(key, newKey) + for name in dirs: + tmpName = name + slugified = slugify(name) + while os.path.exists(os.path.join(root, slugified)) and name.upper() != slugified.upper(): + slugified += "A" + chapterNames[slugified] = tmpName + newKey = os.path.join(root, slugified) + key = os.path.join(root, name) + if key != newKey: + saferReplace(key, newKey) + return chapterNames + + +def sanitizeTreeKobo(filetree): + pageNumber = 0 + for root, dirs, files in walk(filetree): + dirs, files = walkSort(dirs, files) + for name in files: + splitname = os.path.splitext(name) + slugified = str(pageNumber).zfill(5) + pageNumber += 1 + while os.path.exists(os.path.join(root, slugified + splitname[1])) and splitname[0].upper()\ + != slugified.upper(): + slugified += "A" + newKey = os.path.join(root, slugified + splitname[1]) + key = os.path.join(root, name) + if key != newKey: + saferReplace(key, newKey) + + +def sanitizePermissions(filetree): + for root, dirs, files in walk(filetree, False): + for name in files: + os.chmod(os.path.join(root, name), S_IWRITE | S_IREAD) + for name in dirs: + os.chmod(os.path.join(root, name), S_IWRITE | S_IREAD | S_IEXEC) + + +def splitDirectory(path): + level = -1 + for root, _, files in os.walk(os.path.join(path, 'OEBPS', 'Images')): + for f in files: + if f.endswith('.jpg') or f.endswith('.jpeg') or f.endswith('.png') or f.endswith('.gif'): + newLevel = os.path.join(root, f).replace(os.path.join(path, 'OEBPS', 'Images'), '').count(os.sep) + if level != -1 and level != newLevel: + level = 0 + break + else: + level = newLevel + if level > 0: + splitter = splitProcess(os.path.join(path, 'OEBPS', 'Images'), level) + path = [path] + for tome in splitter: + path.append(tome) + return path + else: + raise UserWarning('Unsupported directory structure.') + + +def splitProcess(path, mode): + output = [] + currentSize = 0 + currentTarget = path + if options.webtoon: + targetSize = 104857600 + else: + targetSize = 419430400 + if options.batchsplit == 2 and mode == 2: + mode = 3 + if mode < 3: + for root, dirs, files in walkLevel(path, 0): + for name in files if mode == 1 else dirs: + if mode == 1: + size = os.path.getsize(os.path.join(root, name)) + else: + size = getDirectorySize(os.path.join(root, name)) + if currentSize + size > targetSize: + currentTarget, pathRoot = createNewTome() + output.append(pathRoot) + currentSize = size + else: + currentSize += size + if path != currentTarget: + move(os.path.join(root, name), os.path.join(currentTarget, name)) + else: + firstTome = True + for root, dirs, files in walkLevel(path, 0): + for name in dirs: + if not firstTome: + currentTarget, pathRoot = createNewTome() + output.append(pathRoot) + move(os.path.join(root, name), os.path.join(currentTarget, name)) + else: + firstTome = False + return output + + +def detectCorruption(tmpPath, orgPath): + imageNumber = 0 + imageSmaller = 0 + for root, dirs, files in walk(tmpPath, False): + for name in files: + if getImageFileName(name) is not None: + path = os.path.join(root, name) + pathOrg = orgPath + path.split('OEBPS' + os.path.sep + 'Images')[1] + if os.path.getsize(path) == 0: + rmtree(os.path.join(tmpPath, '..', '..'), True) + raise RuntimeError('Image file %s is corrupted.' % pathOrg) + try: + img = Image.open(path) + img.verify() + img = Image.open(path) + img.load() + imageNumber += 1 + if options.profileData[1][0] > img.size[0] and options.profileData[1][1] > img.size[1]: + imageSmaller += 1 + except Exception as err: + rmtree(os.path.join(tmpPath, '..', '..'), True) + if 'decoder' in str(err) and 'not available' in str(err): + raise RuntimeError('Pillow was compiled without JPG and/or PNG decoder.') + else: + raise RuntimeError('Image file %s is corrupted.' % pathOrg) + else: + saferRemove(os.path.join(root, name)) + if imageSmaller > imageNumber * 0.25 and not options.upscale and not options.stretch: + print("WARNING: More than 25% of images are smaller than target device resolution. " + "Consider enabling stretching or upscaling to improve readability.") + if GUI: + GUI.addMessage.emit('More than 25% of images are smaller than target device resolution.', 'warning', False) + GUI.addMessage.emit('Consider enabling stretching or upscaling to improve readability.', 'warning', False) + GUI.addMessage.emit('', '', False) + + +def createNewTome(): + tomePathRoot = mkdtemp('', 'KCC-') + tomePath = os.path.join(tomePathRoot, 'OEBPS', 'Images') + os.makedirs(tomePath) + return tomePath, tomePathRoot + + +def slugify(value): + value = slugifyExt(value) + value = sub(r'0*([0-9]{4,})', r'\1', sub(r'([0-9]+)', r'0000\1', value, count=2)) + return value + + +def makeZIP(zipFilename, baseDir, isEPUB=False): + zipFilename = os.path.abspath(zipFilename) + '.zip' + zipOutput = ZipFile(zipFilename, 'w', ZIP_DEFLATED) + if isEPUB: + zipOutput.writestr('mimetype', 'application/epub+zip', ZIP_STORED) + for dirpath, dirnames, filenames in walk(baseDir): + for name in filenames: + path = os.path.normpath(os.path.join(dirpath, name)) + aPath = os.path.normpath(os.path.join(dirpath.replace(baseDir, ''), name)) + if os.path.isfile(path): + zipOutput.write(path, aPath) + zipOutput.close() + return zipFilename + + +def makeParser(): + psr = OptionParser(usage="Usage: kcc-c2e [options] comic_file|comic_folder", add_help_option=False) + + mainOptions = OptionGroup(psr, "MAIN") + processingOptions = OptionGroup(psr, "PROCESSING") + outputOptions = OptionGroup(psr, "OUTPUT SETTINGS") + customProfileOptions = OptionGroup(psr, "CUSTOM PROFILE") + otherOptions = OptionGroup(psr, "OTHER") + + mainOptions.add_option("-p", "--profile", action="store", dest="profile", default="KV", + help="Device profile (Available options: K1, K2, K3, K45, KDX, KPW, KV, KoMT, KoG, KoGHD," + " KoA, KoAHD, KoAH2O, KoAO) [Default=KV]") + mainOptions.add_option("-m", "--manga-style", action="store_true", dest="righttoleft", default=False, + help="Manga style (right-to-left reading and splitting)") + mainOptions.add_option("-2", "--two-panel", action="store_true", dest="autoscale", default=False, + help="Display two not four panels in Panel View mode") + mainOptions.add_option("-w", "--webtoon", action="store_true", dest="webtoon", default=False, + help="Webtoon processing mode"), + + outputOptions.add_option("-o", "--output", action="store", dest="output", default=None, + help="Output generated file to specified directory or file") + outputOptions.add_option("-t", "--title", action="store", dest="title", default="defaulttitle", + help="Comic title [Default=filename or directory name]") + outputOptions.add_option("-f", "--format", action="store", dest="format", default="Auto", + help="Output format (Available options: Auto, MOBI, EPUB, CBZ) [Default=Auto]") + outputOptions.add_option("-b", "--batchsplit", type="int", dest="batchsplit", default="0", + help="Split output into multiple files. 0: Don't split 1: Automatic mode " + "2: Consider every subdirectory as separate volume [Default=0]") + + processingOptions.add_option("-u", "--upscale", action="store_true", dest="upscale", default=False, + help="Resize images smaller than device's resolution") + processingOptions.add_option("-s", "--stretch", action="store_true", dest="stretch", default=False, + help="Stretch images to device's resolution") + processingOptions.add_option("-r", "--splitter", type="int", dest="splitter", default="0", + help="Double page parsing mode. 0: Split 1: Rotate 2: Both [Default=0]") + processingOptions.add_option("-g", "--gamma", type="float", dest="gamma", default="0.0", + help="Apply gamma correction to linearize the image [Default=Auto]") + processingOptions.add_option("-c", "--cropping", type="int", dest="cropping", default="2", + help="Set cropping mode. 0: Disabled 1: Margins 2: Margins + page numbers [Default=2]") + processingOptions.add_option("--cp", "--croppingpower", type="float", dest="croppingp", default="1.0", + help="Set cropping power [Default=1.0]") + processingOptions.add_option("--blackborders", action="store_true", dest="black_borders", default=False, + help="Disable autodetection and force black borders") + processingOptions.add_option("--whiteborders", action="store_true", dest="white_borders", default=False, + help="Disable autodetection and force white borders") + processingOptions.add_option("--forcecolor", action="store_true", dest="forcecolor", default=False, + help="Don't convert images to grayscale") + processingOptions.add_option("--forcepng", action="store_true", dest="forcepng", default=False, + help="Create PNG files instead JPEG") + + customProfileOptions.add_option("--customwidth", type="int", dest="customwidth", default=0, + help="Replace screen width provided by device profile") + customProfileOptions.add_option("--customheight", type="int", dest="customheight", default=0, + help="Replace screen height provided by device profile") + + otherOptions.add_option("-h", "--help", action="help", + help="Show this help message and exit") + + psr.add_option_group(mainOptions) + psr.add_option_group(outputOptions) + psr.add_option_group(processingOptions) + psr.add_option_group(customProfileOptions) + psr.add_option_group(otherOptions) + return psr + + +def checkOptions(): + global options + options.panelview = True + options.iskindle = False + options.bordersColor = None + if options.format == 'Auto': + if options.profile in ['K1', 'K2', 'K3', 'K45', 'KPW', 'KV']: + options.format = 'MOBI' + elif options.profile in ['OTHER', 'KoMT', 'KoG', 'KoGHD', 'KoA', 'KoAHD', 'KoAH2O', 'KoAO']: + options.format = 'EPUB' + elif options.profile in ['KDX']: + options.format = 'CBZ' + if options.profile in ['K1', 'K2', 'K3', 'K45', 'KPW', 'KV']: + options.iskindle = True + if options.white_borders: + options.bordersColor = 'white' + if options.black_borders: + options.bordersColor = 'black' + # Splitting MOBI is not optional + if options.format == 'MOBI' and options.batchsplit != 2: + options.batchsplit = 1 + # Older Kindle models don't support Panel View. + if options.profile == 'K1' or options.profile == 'K2' or options.profile == 'KDX': + options.panelview = False + # Webtoon mode mandatory options + if options.webtoon: + options.panelview = False + options.righttoleft = False + options.upscale = True + # Disable all Kindle features for other e-readers + if options.profile == 'OTHER': + options.panelview = False + if 'Ko' in options.profile: + options.panelview = False + # CBZ files on Kindle DX/DXG support higher resolution + if options.profile == 'KDX' and options.format == 'CBZ': + options.customheight = 1200 + # Override profile data + if options.customwidth != 0 or options.customheight != 0: + X = image.ProfileData.Profiles[options.profile][1][0] + Y = image.ProfileData.Profiles[options.profile][1][1] + if options.customwidth != 0: + X = options.customwidth + if options.customheight != 0: + Y = options.customheight + newProfile = ("Custom", (int(X), int(Y)), image.ProfileData.Palette16, + image.ProfileData.Profiles[options.profile][3]) + image.ProfileData.Profiles["Custom"] = newProfile + options.profile = "Custom" + options.profileData = image.ProfileData.Profiles[options.profile] + + +def checkTools(source): + source = source.upper() + if source.endswith('.CBR') or source.endswith('.RAR'): + rarExitCode = Popen('unrar', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + rarExitCode = rarExitCode.wait() + if rarExitCode != 0 and rarExitCode != 7: + print('ERROR: UnRAR is missing!') + exit(1) + elif source.endswith('.CB7') or source.endswith('.7Z'): + sevenzaExitCode = Popen('7za', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + sevenzaExitCode = sevenzaExitCode.wait() + if sevenzaExitCode != 0 and sevenzaExitCode != 7: + print('ERROR: 7za is missing!') + exit(1) + if options.format == 'MOBI': + kindleGenExitCode = Popen('kindlegen -locale en', stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + if kindleGenExitCode.wait() != 0: + print('ERROR: KindleGen is missing!') + exit(1) + + +def checkPre(source): + # Make sure that all temporary files are gone + for root, dirs, _ in walkLevel(gettempdir(), 0): + for tempdir in dirs: + if tempdir.startswith('KCC-'): + rmtree(os.path.join(root, tempdir), True) + # Make sure that target directory is writable + if os.path.isdir(source): + src = os.path.abspath(os.path.join(source, '..')) + else: + src = os.path.dirname(source) + try: + with TemporaryFile(prefix='KCC-', dir=src): + pass + except: + raise UserWarning("Target directory is not writable.") + + +def makeBook(source, qtGUI=None): + global GUI + GUI = qtGUI + if GUI: + GUI.progressBarTick.emit('1') + else: + checkTools(source) + checkPre(source) + print("Preparing source images...") + path = getWorkFolder(source) + print("Checking images...") + getComicInfo(os.path.join(path, "OEBPS", "Images"), source) + detectCorruption(os.path.join(path, "OEBPS", "Images"), source) + if options.webtoon: + if image.ProfileData.Profiles[options.profile][1][1] > 1024: + y = 1024 + else: + y = image.ProfileData.Profiles[options.profile][1][1] + comic2panel.main(['-y ' + str(y), '-i', '-m', path], qtGUI) + print("Processing images...") + if GUI: + GUI.progressBarTick.emit('Processing images') + imgDirectoryProcessing(os.path.join(path, "OEBPS", "Images")) + if GUI: + GUI.progressBarTick.emit('1') + chapterNames = sanitizeTree(os.path.join(path, 'OEBPS', 'Images')) + if 'Ko' in options.profile and options.format == 'CBZ': + sanitizeTreeKobo(os.path.join(path, 'OEBPS', 'Images')) + if options.batchsplit > 0: + tomes = splitDirectory(path) + else: + tomes = [path] + filepath = [] + tomeNumber = 0 + if GUI: + if options.format == 'CBZ': + GUI.progressBarTick.emit('Compressing CBZ files') + else: + GUI.progressBarTick.emit('Compressing EPUB files') + GUI.progressBarTick.emit(str(len(tomes) + 1)) + GUI.progressBarTick.emit('tick') + options.baseTitle = options.title + options.covers = [] + for tome in tomes: + options.uuid = str(uuid4()) + if len(tomes) > 9: + tomeNumber += 1 + options.title = options.baseTitle + ' [' + str(tomeNumber).zfill(2) + '/' + str(len(tomes)).zfill(2) + ']' + elif len(tomes) > 1: + tomeNumber += 1 + options.title = options.baseTitle + ' [' + str(tomeNumber) + '/' + str(len(tomes)) + ']' + if options.format == 'CBZ': + print("Creating CBZ file...") + if len(tomes) > 1: + filepath.append(getOutputFilename(source, options.output, '.cbz', ' ' + str(tomeNumber))) + else: + filepath.append(getOutputFilename(source, options.output, '.cbz', '')) + makeZIP(tome + '_comic', os.path.join(tome, "OEBPS", "Images")) + else: + print("Creating EPUB file...") + buildEPUB(tome, chapterNames, tomeNumber) + if len(tomes) > 1: + filepath.append(getOutputFilename(source, options.output, '.epub', ' ' + str(tomeNumber))) + else: + filepath.append(getOutputFilename(source, options.output, '.epub', '')) + makeZIP(tome + '_comic', tome, True) + move(tome + '_comic.zip', filepath[-1]) + rmtree(tome, True) + if GUI: + GUI.progressBarTick.emit('tick') + if not GUI and options.format == 'MOBI': + print("Creating MOBI files...") + work = [] + for i in filepath: + work.append([i]) + output = makeMOBI(work, GUI) + for errors in output: + if errors[0] != 0: + print('Error: KindleGen failed to create MOBI!') + print(errors) + return filepath + k = kindle.Kindle() + if k.path and k.coverSupport: + print("Kindle detected. Uploading covers...") + for i in filepath: + output = makeMOBIFix(i, options.covers[filepath.index(i)][1]) + if not output[0]: + print('Error: Failed to tweak KindleGen output!') + return filepath + else: + saferRemove(i.replace('.epub', '.mobi') + '_toclean') + if k.path and k.coverSupport: + options.covers[filepath.index(i)][0].saveToKindle(k, options.covers[filepath.index(i)][1]) + return filepath + + +def makeMOBIFix(item, uuid): + saferRemove(item) + mobiPath = item.replace('.epub', '.mobi') + move(mobiPath, mobiPath + '_toclean') + try: + dualmetafix.DualMobiMetaFix(mobiPath + '_toclean', mobiPath, bytes(uuid, 'UTF-8')) + return [True] + except Exception as err: + return [False, format(err)] + + +def makeMOBIWorkerTick(output): + makeMOBIWorkerOutput.append(output) + if output[0] != 0: + makeMOBIWorkerPool.terminate() + if GUI: + GUI.progressBarTick.emit('tick') + if not GUI.conversionAlive: + makeMOBIWorkerPool.terminate() + + +def makeMOBIWorker(item): + item = item[0] + kindlegenErrorCode = 0 + kindlegenError = '' + try: + if os.path.getsize(item) < 629145600: + output = Popen('kindlegen -dont_append_source -locale en "' + item + '"', + stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + for line in output.stdout: + line = line.decode('utf-8') + # ERROR: Generic error + if "Error(" in line: + kindlegenErrorCode = 1 + kindlegenError = line + # ERROR: EPUB too big + if ":E23026:" in line: + kindlegenErrorCode = 23026 + if kindlegenErrorCode > 0: + break + if ":I1036: Mobi file built successfully" in line: + output.terminate() + else: + # ERROR: EPUB too big + kindlegenErrorCode = 23026 + return [kindlegenErrorCode, kindlegenError, item] + except Exception as err: + # ERROR: KCC unknown generic error + kindlegenErrorCode = 1 + kindlegenError = format(err) + return [kindlegenErrorCode, kindlegenError, item] + + +def makeMOBI(work, qtGUI=None): + global GUI, makeMOBIWorkerPool, makeMOBIWorkerOutput + GUI = qtGUI + makeMOBIWorkerOutput = [] + availableMemory = virtual_memory().total / 1000000000 + if availableMemory <= 2: + threadNumber = 1 + elif 2 < availableMemory <= 4: + threadNumber = 2 + else: + threadNumber = 4 + makeMOBIWorkerPool = Pool(threadNumber) + for i in work: + makeMOBIWorkerPool.apply_async(func=makeMOBIWorker, args=(i, ), callback=makeMOBIWorkerTick) + makeMOBIWorkerPool.close() + makeMOBIWorkerPool.join() + return makeMOBIWorkerOutput diff --git a/kindlecomicconverter/comic2panel.py b/kindlecomicconverter/comic2panel.py new file mode 100644 index 0000000..522587c --- /dev/null +++ b/kindlecomicconverter/comic2panel.py @@ -0,0 +1,303 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. +# + +import os +import sys +from shutil import rmtree, copytree, move +from optparse import OptionParser, OptionGroup +from multiprocessing import Pool +from PIL import Image, ImageStat, ImageOps +from .shared import getImageFileName, walkLevel, walkSort, saferRemove, sanitizeTrace +try: + from PyQt5 import QtCore +except ImportError: + QtCore = None +try: + from scandir import walk +except ImportError: + walk = os.walk + + +def mergeDirectoryTick(output): + if output: + mergeWorkerOutput.append(output) + mergeWorkerPool.terminate() + if GUI: + GUI.progressBarTick.emit('tick') + if not GUI.conversionAlive: + mergeWorkerPool.terminate() + + +def mergeDirectory(work): + try: + directory = work[0] + images = [] + imagesValid = [] + sizes = [] + targetHeight = 0 + for root, dirs, files in walkLevel(directory, 0): + for name in files: + if getImageFileName(name) is not None: + i = Image.open(os.path.join(root, name)) + images.append([os.path.join(root, name), i.size[0], i.size[1]]) + sizes.append(i.size[0]) + if len(images) > 0: + targetWidth = max(set(sizes), key=sizes.count) + for i in images: + if i[1] <= targetWidth: + targetHeight += i[2] + imagesValid.append(i[0]) + # Silently drop directories that contain too many images + # 131072 = GIMP_MAX_IMAGE_SIZE / 4 + if targetHeight > 131072: + return None + result = Image.new('RGB', (targetWidth, targetHeight)) + y = 0 + for i in imagesValid: + img = Image.open(i) + img = img.convert('RGB') + if img.size[0] < targetWidth: + img = ImageOps.fit(img, (targetWidth, img.size[1]), method=Image.BICUBIC, centering=(0.5, 0.5)) + result.paste(img, (0, y)) + y += img.size[1] + saferRemove(i) + savePath = os.path.split(imagesValid[0]) + result.save(os.path.join(savePath[0], os.path.splitext(savePath[1])[0] + '.png'), 'PNG') + except Exception: + return str(sys.exc_info()[1]), sanitizeTrace(sys.exc_info()[2]) + + +def sanitizePanelSize(panel, opt): + newPanels = [] + if panel[2] > 6 * opt.height: + diff = int(panel[2] / 8) + newPanels.append([panel[0], panel[1] - diff * 7, diff]) + newPanels.append([panel[1] - diff * 7, panel[1] - diff * 6, diff]) + newPanels.append([panel[1] - diff * 6, panel[1] - diff * 5, diff]) + newPanels.append([panel[1] - diff * 5, panel[1] - diff * 4, diff]) + newPanels.append([panel[1] - diff * 4, panel[1] - diff * 3, diff]) + newPanels.append([panel[1] - diff * 3, panel[1] - diff * 2, diff]) + newPanels.append([panel[1] - diff * 2, panel[1] - diff, diff]) + newPanels.append([panel[1] - diff, panel[1], diff]) + elif panel[2] > 3 * opt.height: + diff = int(panel[2] / 4) + newPanels.append([panel[0], panel[1] - diff * 3, diff]) + newPanels.append([panel[1] - diff * 3, panel[1] - diff * 2, diff]) + newPanels.append([panel[1] - diff * 2, panel[1] - diff, diff]) + newPanels.append([panel[1] - diff, panel[1], diff]) + elif panel[2] > 1.5 * opt.height: + newPanels.append([panel[0], panel[1] - int(panel[2] / 2), int(panel[2] / 2)]) + newPanels.append([panel[1] - int(panel[2] / 2), panel[1], int(panel[2] / 2)]) + else: + newPanels = [panel] + return newPanels + + +def splitImageTick(output): + if output: + splitWorkerOutput.append(output) + splitWorkerPool.terminate() + if GUI: + GUI.progressBarTick.emit('tick') + if not GUI.conversionAlive: + splitWorkerPool.terminate() + + +def splitImage(work): + try: + path = work[0] + name = work[1] + opt = work[2] + # Hardcoded options + threshold = 1.0 + delta = 15 + fileExpanded = os.path.splitext(name) + filePath = os.path.join(path, name) + image = Image.open(filePath) + image = image.convert('RGB') + widthImg, heightImg = image.size + if heightImg > opt.height: + if opt.debug: + from PIL import ImageDraw + debugImage = Image.open(filePath) + draw = ImageDraw.Draw(debugImage) + + # Find panels + y1 = 0 + y2 = 15 + panels = [] + while y2 < heightImg: + while ImageStat.Stat(image.crop([0, y1, widthImg, y2])).var[0] < threshold and y2 < heightImg: + y2 += delta + y2 -= delta + y1Temp = y2 + y1 = y2 + delta + y2 = y1 + delta + while ImageStat.Stat(image.crop([0, y1, widthImg, y2])).var[0] >= threshold and y2 < heightImg: + y1 += delta + y2 += delta + if y1 + delta >= heightImg: + y1 = heightImg - 1 + y2Temp = y1 + if opt.debug: + draw.line([(0, y1Temp), (widthImg, y1Temp)], fill=(0, 255, 0)) + draw.line([(0, y2Temp), (widthImg, y2Temp)], fill=(255, 0, 0)) + panelHeight = y2Temp - y1Temp + if panelHeight > delta: + # Panels that can't be cut nicely will be forcefully splitted + panelsCleaned = sanitizePanelSize([y1Temp, y2Temp, panelHeight], opt) + for panel in panelsCleaned: + panels.append(panel) + if opt.debug: + # noinspection PyUnboundLocalVariable + debugImage.save(os.path.join(path, fileExpanded[0] + '-debug.png'), 'PNG') + + # Create virtual pages + pages = [] + currentPage = [] + pageLeft = opt.height + panelNumber = 0 + for panel in panels: + if pageLeft - panel[2] > 0: + pageLeft -= panel[2] + currentPage.append(panelNumber) + panelNumber += 1 + else: + if len(currentPage) > 0: + pages.append(currentPage) + pageLeft = opt.height - panel[2] + currentPage = [panelNumber] + panelNumber += 1 + if len(currentPage) > 0: + pages.append(currentPage) + + # Create pages + pageNumber = 1 + for page in pages: + pageHeight = 0 + targetHeight = 0 + for panel in page: + pageHeight += panels[panel][2] + if pageHeight > delta: + newPage = Image.new('RGB', (widthImg, pageHeight)) + for panel in page: + panelImg = image.crop([0, panels[panel][0], widthImg, panels[panel][1]]) + newPage.paste(panelImg, (0, targetHeight)) + targetHeight += panels[panel][2] + newPage.save(os.path.join(path, fileExpanded[0] + '-' + str(pageNumber) + '.png'), 'PNG') + pageNumber += 1 + saferRemove(filePath) + except Exception: + return str(sys.exc_info()[1]), sanitizeTrace(sys.exc_info()[2]) + + +def main(argv=None, qtGUI=None): + global options, GUI, splitWorkerPool, splitWorkerOutput, mergeWorkerPool, mergeWorkerOutput + parser = OptionParser(usage="Usage: kcc-c2p [options] comic_folder", add_help_option=False) + mainOptions = OptionGroup(parser, "MANDATORY") + otherOptions = OptionGroup(parser, "OTHER") + mainOptions.add_option("-y", "--height", type="int", dest="height", default=0, + help="Height of the target device screen") + mainOptions.add_option("-i", "--in-place", action="store_true", dest="inPlace", default=False, + help="Overwrite source directory") + mainOptions.add_option("-m", "--merge", action="store_true", dest="merge", default=False, + help="Combine every directory into a single image before splitting") + otherOptions.add_option("-d", "--debug", action="store_true", dest="debug", default=False, + help="Create debug file for every splitted image") + otherOptions.add_option("-h", "--help", action="help", + help="Show this help message and exit") + parser.add_option_group(mainOptions) + parser.add_option_group(otherOptions) + options, args = parser.parse_args(argv) + if qtGUI: + GUI = qtGUI + else: + GUI = None + if len(args) != 1: + parser.print_help() + return 1 + if options.height > 0: + options.sourceDir = args[0] + options.targetDir = args[0] + "-Splitted" + if os.path.isdir(options.sourceDir): + rmtree(options.targetDir, True) + copytree(options.sourceDir, options.targetDir) + work = [] + pagenumber = 1 + splitWorkerOutput = [] + splitWorkerPool = Pool() + if options.merge: + print("Merging images...") + directoryNumer = 1 + mergeWork = [] + mergeWorkerOutput = [] + mergeWorkerPool = Pool() + mergeWork.append([options.targetDir]) + for root, dirs, files in walk(options.targetDir, False): + dirs, files = walkSort(dirs, files) + for directory in dirs: + directoryNumer += 1 + mergeWork.append([os.path.join(root, directory)]) + if GUI: + GUI.progressBarTick.emit('Combining images') + GUI.progressBarTick.emit(str(directoryNumer)) + for i in mergeWork: + mergeWorkerPool.apply_async(func=mergeDirectory, args=(i, ), callback=mergeDirectoryTick) + mergeWorkerPool.close() + mergeWorkerPool.join() + if GUI and not GUI.conversionAlive: + rmtree(options.targetDir, True) + raise UserWarning("Conversion interrupted.") + if len(mergeWorkerOutput) > 0: + rmtree(options.targetDir, True) + raise RuntimeError("One of workers crashed. Cause: " + mergeWorkerOutput[0][0], mergeWorkerOutput[0][1]) + print("Splitting images...") + for root, dirs, files in walk(options.targetDir, False): + for name in files: + if getImageFileName(name) is not None: + pagenumber += 1 + work.append([root, name, options]) + else: + saferRemove(os.path.join(root, name)) + if GUI: + GUI.progressBarTick.emit('Splitting images') + GUI.progressBarTick.emit(str(pagenumber)) + GUI.progressBarTick.emit('tick') + if len(work) > 0: + for i in work: + splitWorkerPool.apply_async(func=splitImage, args=(i, ), callback=splitImageTick) + splitWorkerPool.close() + splitWorkerPool.join() + if GUI and not GUI.conversionAlive: + rmtree(options.targetDir, True) + raise UserWarning("Conversion interrupted.") + if len(splitWorkerOutput) > 0: + rmtree(options.targetDir, True) + raise RuntimeError("One of workers crashed. Cause: " + splitWorkerOutput[0][0], splitWorkerOutput[0][1]) + if options.inPlace: + rmtree(options.sourceDir) + move(options.targetDir, options.sourceDir) + else: + rmtree(options.targetDir, True) + raise UserWarning("Source directory is empty.") + else: + raise UserWarning("Provided path is not a directory.") + else: + raise UserWarning("Target height is not set.") diff --git a/kindlecomicconverter/dualmetafix.py b/kindlecomicconverter/dualmetafix.py new file mode 100644 index 0000000..566ceb5 --- /dev/null +++ b/kindlecomicconverter/dualmetafix.py @@ -0,0 +1,185 @@ +# -*- coding: utf-8 -*- +# +# Based on initial version of DualMetaFix. Copyright (C) 2013 Kevin Hendricks +# Changes for KCC Copyright (C) 2014-2017 Pawel Jastrzebski <[email protected]> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import struct +import mmap +import shutil + + +class DualMetaFixException(Exception): + pass + +# palm database offset constants +number_of_pdb_records = 76 +first_pdb_record = 78 + +# important rec0 offsets +mobi_header_base = 16 +mobi_header_length = 20 +mobi_version = 36 +title_offset = 84 + + +def getint(data, ofs, sz='L'): + i, = struct.unpack_from('>' + sz, data, ofs) + return i + + +def writeint(data, ofs, n, slen='L'): + if slen == 'L': + return data[:ofs] + struct.pack('>L', n) + data[ofs + 4:] + else: + return data[:ofs] + struct.pack('>H', n) + data[ofs + 2:] + + +def getsecaddr(datain, secno): + nsec = getint(datain, number_of_pdb_records, 'H') + if (secno < 0) | (secno >= nsec): + emsg = 'requested section number %d out of range (nsec=%d)' % (secno, nsec) + raise DualMetaFixException(emsg) + secstart = getint(datain, first_pdb_record + secno * 8) + if secno == nsec - 1: + secend = len(datain) + else: + secend = getint(datain, first_pdb_record + (secno + 1) * 8) + return secstart, secend + + +def readsection(datain, secno): + secstart, secend = getsecaddr(datain, secno) + return datain[secstart:secend] + + +# overwrite section - must be exact same length as original +def replacesection(datain, secno, secdata): + secstart, secend = getsecaddr(datain, secno) + seclen = secend - secstart + if len(secdata) != seclen: + raise DualMetaFixException('section length change in replacesection') + datain[secstart:secstart + seclen] = secdata + + +def get_exth_params(rec0): + ebase = mobi_header_base + getint(rec0, mobi_header_length) + if rec0[ebase:ebase + 4] != b'EXTH': + raise DualMetaFixException('EXTH tag not found where expected') + elen = getint(rec0, ebase + 4) + enum = getint(rec0, ebase + 8) + rlen = len(rec0) + return ebase, elen, enum, rlen + + +def add_exth(rec0, exth_num, exth_bytes): + ebase, elen, enum, rlen = get_exth_params(rec0) + newrecsize = 8 + len(exth_bytes) + newrec0 = rec0[0:ebase + 4] + struct.pack('>L', elen + newrecsize) + struct.pack('>L', enum + 1) + \ + struct.pack('>L', exth_num) + struct.pack('>L', newrecsize) + exth_bytes + rec0[ebase + 12:] + newrec0 = writeint(newrec0, title_offset, getint(newrec0, title_offset) + newrecsize) + # keep constant record length by removing newrecsize null bytes from end + sectail = newrec0[-newrecsize:] + if sectail != b'\0' * newrecsize: + raise DualMetaFixException('add_exth: trimmed non-null bytes at end of section') + newrec0 = newrec0[0:rlen] + return newrec0 + + +def read_exth(rec0, exth_num): + exth_values = [] + ebase, elen, enum, rlen = get_exth_params(rec0) + ebase += 12 + while enum > 0: + exth_id = getint(rec0, ebase) + if exth_id == exth_num: + # We might have multiple exths, so build a list. + exth_values.append(rec0[ebase + 8:ebase + getint(rec0, ebase + 4)]) + enum -= 1 + ebase = ebase + getint(rec0, ebase + 4) + return exth_values + + +def del_exth(rec0, exth_num): + ebase, elen, enum, rlen = get_exth_params(rec0) + ebase_idx = ebase + 12 + enum_idx = 0 + while enum_idx < enum: + exth_id = getint(rec0, ebase_idx) + exth_size = getint(rec0, ebase_idx + 4) + if exth_id == exth_num: + newrec0 = rec0 + newrec0 = writeint(newrec0, title_offset, getint(newrec0, title_offset) - exth_size) + newrec0 = newrec0[:ebase_idx] + newrec0[ebase_idx + exth_size:] + newrec0 = newrec0[0:ebase + 4] + struct.pack('>L', elen - exth_size) + \ + struct.pack('>L', enum - 1) + newrec0[ebase + 12:] + newrec0 += b'\0' * exth_size + if rlen != len(newrec0): + raise DualMetaFixException('del_exth: incorrect section size change') + return newrec0 + enum_idx += 1 + ebase_idx = ebase_idx + exth_size + return rec0 + + +class DualMobiMetaFix: + def __init__(self, infile, outfile, asin): + shutil.copyfile(infile, outfile) + f = open(outfile, "r+b") + self.datain = mmap.mmap(f.fileno(), 0) + self.datain_rec0 = readsection(self.datain, 0) + + # in the first mobi header + # add 501 to "EBOK", add 113 as asin, add 504 as asin + rec0 = self.datain_rec0 + rec0 = del_exth(rec0, 501) + rec0 = del_exth(rec0, 113) + rec0 = del_exth(rec0, 504) + rec0 = add_exth(rec0, 501, b'EBOK') + rec0 = add_exth(rec0, 113, asin) + rec0 = add_exth(rec0, 504, asin) + replacesection(self.datain, 0, rec0) + + ver = getint(self.datain_rec0, mobi_version) + self.combo = (ver != 8) + if not self.combo: + return + + exth121 = read_exth(self.datain_rec0, 121) + if len(exth121) == 0: + self.combo = False + return + else: + # only pay attention to first exth121 + # (there should only be one) + datain_kf8, = struct.unpack_from('>L', exth121[0], 0) + if datain_kf8 == 0xffffffff: + self.combo = False + return + self.datain_kfrec0 = readsection(self.datain, datain_kf8) + + # in the second header + # add 501 to "EBOK", add 113 as asin, add 504 as asin + rec0 = self.datain_kfrec0 + rec0 = del_exth(rec0, 501) + rec0 = del_exth(rec0, 113) + rec0 = del_exth(rec0, 504) + rec0 = add_exth(rec0, 501, b'EBOK') + rec0 = add_exth(rec0, 113, asin) + rec0 = add_exth(rec0, 504, asin) + replacesection(self.datain, datain_kf8, rec0) + + self.datain.flush() + self.datain.close() diff --git a/kindlecomicconverter/image.py b/kindlecomicconverter/image.py new file mode 100755 index 0000000..ecc08b9 --- /dev/null +++ b/kindlecomicconverter/image.py @@ -0,0 +1,374 @@ +# Copyright (C) 2010 Alex Yatskov +# Copyright (C) 2011 Stanislav (proDOOMman) Kosolapov <[email protected]> +# Copyright (c) 2016 Alberto Planas <[email protected]> +# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import os +from io import BytesIO +from urllib.request import Request, urlopen +from urllib.parse import quote +from PIL import Image, ImageOps, ImageStat, ImageChops, ImageFilter +from .shared import md5Checksum +from . import __version__ + + +class ProfileData: + def __init__(self): + pass + + Palette4 = [ + 0x00, 0x00, 0x00, + 0x55, 0x55, 0x55, + 0xaa, 0xaa, 0xaa, + 0xff, 0xff, 0xff + ] + + Palette15 = [ + 0x00, 0x00, 0x00, + 0x11, 0x11, 0x11, + 0x22, 0x22, 0x22, + 0x33, 0x33, 0x33, + 0x44, 0x44, 0x44, + 0x55, 0x55, 0x55, + 0x66, 0x66, 0x66, + 0x77, 0x77, 0x77, + 0x88, 0x88, 0x88, + 0x99, 0x99, 0x99, + 0xaa, 0xaa, 0xaa, + 0xbb, 0xbb, 0xbb, + 0xcc, 0xcc, 0xcc, + 0xdd, 0xdd, 0xdd, + 0xff, 0xff, 0xff, + ] + + Palette16 = [ + 0x00, 0x00, 0x00, + 0x11, 0x11, 0x11, + 0x22, 0x22, 0x22, + 0x33, 0x33, 0x33, + 0x44, 0x44, 0x44, + 0x55, 0x55, 0x55, + 0x66, 0x66, 0x66, + 0x77, 0x77, 0x77, + 0x88, 0x88, 0x88, + 0x99, 0x99, 0x99, + 0xaa, 0xaa, 0xaa, + 0xbb, 0xbb, 0xbb, + 0xcc, 0xcc, 0xcc, + 0xdd, 0xdd, 0xdd, + 0xee, 0xee, 0xee, + 0xff, 0xff, 0xff, + ] + + PalleteNull = [ + ] + + Profiles = { + 'K1': ("Kindle 1", (600, 670), Palette4, 1.8), + 'K2': ("Kindle 2", (600, 670), Palette15, 1.8), + 'K3': ("Kindle", (600, 800), Palette16, 1.8), + 'K45': ("Kindle", (600, 800), Palette16, 1.8), + 'KDX': ("Kindle DX/DXG", (824, 1000), Palette16, 1.8), + 'KPW': ("Kindle Paperwhite 1/2", (758, 1024), Palette16, 1.8), + 'KV': ("Kindle Paperwhite 3/Voyage/Oasis", (1072, 1448), Palette16, 1.8), + 'KoMT': ("Kobo Mini/Touch", (600, 800), Palette16, 1.8), + 'KoG': ("Kobo Glo", (768, 1024), Palette16, 1.8), + 'KoGHD': ("Kobo Glo HD", (1072, 1448), Palette16, 1.8), + 'KoA': ("Kobo Aura", (758, 1024), Palette16, 1.8), + 'KoAHD': ("Kobo Aura HD", (1080, 1440), Palette16, 1.8), + 'KoAH2O': ("Kobo Aura H2O", (1080, 1430), Palette16, 1.8), + 'KoAO': ("Kobo Aura ONE", (1404, 1872), Palette16, 1.8), + 'OTHER': ("Other", (0, 0), Palette16, 1.8), + } + + +class ComicPageParser: + def __init__(self, source, options): + self.opt = options + self.source = source + self.size = self.opt.profileData[1] + self.payload = [] + self.image = Image.open(os.path.join(source[0], source[1])).convert('RGB') + self.color = self.colorCheck() + self.fill = self.fillCheck() + self.splitCheck() + + def getImageHistogram(self, image): + histogram = image.histogram() + if histogram[0] == 0: + return -1 + elif histogram[255] == 0: + return 1 + else: + return 0 + + def splitCheck(self): + width, height = self.image.size + dstwidth, dstheight = self.size + if (width > height) != (dstwidth > dstheight) and width <= dstheight and height <= dstwidth \ + and not self.opt.webtoon: + self.payload.append(['R', self.source, self.image.rotate(90, Image.BICUBIC, True), self.color, self.fill]) + elif (width > height) != (dstwidth > dstheight) and not self.opt.webtoon: + if self.opt.splitter != 1: + if width > height: + leftbox = (0, 0, int(width / 2), height) + rightbox = (int(width / 2), 0, width, height) + else: + leftbox = (0, 0, width, int(height / 2)) + rightbox = (0, int(height / 2), width, height) + if self.opt.righttoleft: + pageone = self.image.crop(rightbox) + pagetwo = self.image.crop(leftbox) + else: + pageone = self.image.crop(leftbox) + pagetwo = self.image.crop(rightbox) + self.payload.append(['S1', self.source, pageone, self.color, self.fill]) + self.payload.append(['S2', self.source, pagetwo, self.color, self.fill]) + if self.opt.splitter > 0: + self.payload.append(['R', self.source, self.image.rotate(90, Image.BICUBIC, True), + self.color, self.fill]) + else: + self.payload.append(['N', self.source, self.image, self.color, self.fill]) + + def colorCheck(self): + if self.opt.webtoon: + return True + else: + img = self.image.copy() + bands = img.getbands() + if bands == ('R', 'G', 'B') or bands == ('R', 'G', 'B', 'A'): + thumb = img.resize((40, 40)) + SSE, bias = 0, [0, 0, 0] + bias = ImageStat.Stat(thumb).mean[:3] + bias = [b - sum(bias) / 3 for b in bias] + for pixel in thumb.getdata(): + mu = sum(pixel) / 3 + SSE += sum((pixel[i] - mu - bias[i]) * (pixel[i] - mu - bias[i]) for i in [0, 1, 2]) + MSE = float(SSE) / (40 * 40) + if MSE > 22: + return True + else: + return False + else: + return False + + def fillCheck(self): + if self.opt.bordersColor: + return self.opt.bordersColor + else: + bw = self.image.convert('L').point(lambda x: 0 if x < 128 else 255, '1') + imageBoxA = bw.getbbox() + imageBoxB = ImageChops.invert(bw).getbbox() + if imageBoxA is None or imageBoxB is None: + surfaceB, surfaceW = 0, 0 + diff = 0 + else: + surfaceB = (imageBoxA[2] - imageBoxA[0]) * (imageBoxA[3] - imageBoxA[1]) + surfaceW = (imageBoxB[2] - imageBoxB[0]) * (imageBoxB[3] - imageBoxB[1]) + diff = ((max(surfaceB, surfaceW) - min(surfaceB, surfaceW)) / min(surfaceB, surfaceW)) * 100 + if diff > 0.5: + if surfaceW < surfaceB: + return 'white' + elif surfaceW > surfaceB: + return 'black' + else: + fill = 0 + startY = 0 + while startY < bw.size[1]: + if startY + 5 > bw.size[1]: + startY = bw.size[1] - 5 + fill += self.getImageHistogram(bw.crop((0, startY, bw.size[0], startY + 5))) + startY += 5 + startX = 0 + while startX < bw.size[0]: + if startX + 5 > bw.size[0]: + startX = bw.size[0] - 5 + fill += self.getImageHistogram(bw.crop((startX, 0, startX + 5, bw.size[1]))) + startX += 5 + if fill > 0: + return 'black' + else: + return 'white' + + +class ComicPage: + def __init__(self, mode, path, image, color, fill, options): + self.opt = options + _, self.size, self.palette, self.gamma = self.opt.profileData + self.image = image + self.color = color + self.fill = fill + self.rotated = False + self.orgPath = os.path.join(path[0], path[1]) + if 'N' in mode: + self.targetPath = os.path.join(path[0], os.path.splitext(path[1])[0]) + '-KCC' + elif 'R' in mode: + self.targetPath = os.path.join(path[0], os.path.splitext(path[1])[0]) + '-KCC-A' + self.rotated = True + elif 'S1' in mode: + self.targetPath = os.path.join(path[0], os.path.splitext(path[1])[0]) + '-KCC-B' + elif 'S2' in mode: + self.targetPath = os.path.join(path[0], os.path.splitext(path[1])[0]) + '-KCC-C' + + def saveToDir(self): + try: + flags = [] + if not self.opt.forcecolor and not self.opt.forcepng: + self.image = self.image.convert('L') + if self.rotated: + flags.append('Rotated') + if self.fill != 'white': + flags.append('BlackFill') + if self.opt.forcepng: + self.targetPath += '.png' + self.image.save(self.targetPath, 'PNG', optimize=1) + else: + self.targetPath += '.jpg' + self.image.save(self.targetPath, 'JPEG', optimize=1, quality=80) + return [md5Checksum(self.targetPath), flags, self.orgPath] + except IOError: + raise RuntimeError('Cannot save image.') + + def autocontrastImage(self): + gamma = self.opt.gamma + if gamma < 0.1: + gamma = self.gamma + if self.gamma != 1.0 and self.color: + gamma = 1.0 + if gamma == 1.0: + self.image = ImageOps.autocontrast(self.image) + else: + self.image = ImageOps.autocontrast(Image.eval(self.image, lambda a: 255 * (a / 255.) ** gamma)) + + def quantizeImage(self): + colors = len(self.palette) // 3 + if colors < 256: + self.palette += self.palette[:3] * (256 - colors) + palImg = Image.new('P', (1, 1)) + palImg.putpalette(self.palette) + self.image = self.image.convert('L') + self.image = self.image.convert('RGB') + # Quantize is deprecated but new function call it internally anyway... + self.image = self.image.quantize(palette=palImg) + + def resizeImage(self): + if self.image.size[0] <= self.size[0] and self.image.size[1] <= self.size[1]: + method = Image.BICUBIC + else: + method = Image.LANCZOS + if self.opt.stretch: + self.image = self.image.resize(self.size, method) + elif self.image.size[0] <= self.size[0] and self.image.size[1] <= self.size[1] and not self.opt.upscale: + if self.opt.format == 'CBZ': + borderw = int((self.size[0] - self.image.size[0]) / 2) + borderh = int((self.size[1] - self.image.size[1]) / 2) + self.image = ImageOps.expand(self.image, border=(borderw, borderh), fill=self.fill) + if self.image.size[0] != self.size[0] or self.image.size[1] != self.size[1]: + self.image = ImageOps.fit(self.image, self.size, method=Image.BICUBIC, centering=(0.5, 0.5)) + else: + if self.opt.format == 'CBZ': + ratioDev = float(self.size[0]) / float(self.size[1]) + if (float(self.image.size[0]) / float(self.image.size[1])) < ratioDev: + diff = int(self.image.size[1] * ratioDev) - self.image.size[0] + self.image = ImageOps.expand(self.image, border=(int(diff / 2), 0), fill=self.fill) + elif (float(self.image.size[0]) / float(self.image.size[1])) > ratioDev: + diff = int(self.image.size[0] / ratioDev) - self.image.size[1] + self.image = ImageOps.expand(self.image, border=(0, int(diff / 2)), fill=self.fill) + self.image = ImageOps.fit(self.image, self.size, method=method, centering=(0.5, 0.5)) + else: + hpercent = self.size[1] / float(self.image.size[1]) + wsize = int((float(self.image.size[0]) * float(hpercent))) + self.image = self.image.resize((wsize, self.size[1]), method) + if self.image.size[0] > self.size[0] or self.image.size[1] > self.size[1]: + self.image.thumbnail(self.size, Image.LANCZOS) + + def getBoundingBox(self, tmpImg): + min_margin = [int(0.005 * i + 0.5) for i in tmpImg.size] + max_margin = [int(0.1 * i + 0.5) for i in tmpImg.size] + bbox = tmpImg.getbbox() + bbox = ( + max(0, min(max_margin[0], bbox[0] - min_margin[0])), + max(0, min(max_margin[1], bbox[1] - min_margin[1])), + min(tmpImg.size[0], + max(tmpImg.size[0] - max_margin[0], bbox[2] + min_margin[0])), + min(tmpImg.size[1], + max(tmpImg.size[1] - max_margin[1], bbox[3] + min_margin[1])), + ) + return bbox + + def cropPageNumber(self, power): + if self.fill != 'white': + tmpImg = self.image.convert(mode='L') + else: + tmpImg = ImageOps.invert(self.image.convert(mode='L')) + tmpImg = tmpImg.point(lambda x: x and 255) + tmpImg = tmpImg.filter(ImageFilter.MinFilter(size=3)) + tmpImg = tmpImg.filter(ImageFilter.GaussianBlur(radius=5)) + tmpImg = tmpImg.point(lambda x: (x >= 16 * power) and x) + self.image = self.image.crop(tmpImg.getbbox()) if tmpImg.getbbox() else self.image + + def cropMargin(self, power): + if self.fill != 'white': + tmpImg = self.image.convert(mode='L') + else: + tmpImg = ImageOps.invert(self.image.convert(mode='L')) + tmpImg = tmpImg.filter(ImageFilter.GaussianBlur(radius=3)) + tmpImg = tmpImg.point(lambda x: (x >= 16 * power) and x) + self.image = self.image.crop(self.getBoundingBox(tmpImg)) if tmpImg.getbbox() else self.image + + +class Cover: + def __init__(self, source, target, opt, tomeNumber): + self.options = opt + self.source = source + self.target = target + if tomeNumber == 0: + self.tomeNumber = 1 + else: + self.tomeNumber = tomeNumber + if self.tomeNumber in self.options.remoteCovers: + try: + source = urlopen(Request(quote(self.options.remoteCovers[self.tomeNumber]).replace('%3A', ':', 1), + headers={'User-Agent': 'KindleComicConverter/' + __version__})).read() + self.image = Image.open(BytesIO(source)) + except Exception: + self.image = Image.open(source) + else: + self.image = Image.open(source) + self.process() + + def process(self): + self.image = self.image.convert('RGB') + self.image = ImageOps.autocontrast(self.image) + if not self.options.forcecolor: + self.image = self.image.convert('L') + self.image.thumbnail(self.options.profileData[1], Image.LANCZOS) + self.save() + + def save(self): + try: + self.image.save(self.target, "JPEG", optimize=1, quality=80) + except IOError: + raise RuntimeError('Failed to process downloaded cover.') + + def saveToKindle(self, kindle, asin): + self.image = self.image.resize((300, 470), Image.ANTIALIAS) + try: + self.image.save(os.path.join(kindle.path.split('documents')[0], 'system', 'thumbnails', + 'thumbnail_' + asin + '_EBOK_portrait.jpg'), 'JPEG') + except IOError: + raise RuntimeError('Failed to upload cover.') diff --git a/kindlecomicconverter/kindle.py b/kindlecomicconverter/kindle.py new file mode 100644 index 0000000..1eea63c --- /dev/null +++ b/kindlecomicconverter/kindle.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +import os.path +import psutil + + +class Kindle: + def __init__(self): + self.path = self.findDevice() + if self.path: + self.coverSupport = self.checkThumbnails() + else: + self.coverSupport = False + + def findDevice(self): + for drive in reversed(psutil.disk_partitions(False)): + if (drive[2] == 'FAT32' and drive[3] == 'rw,removable') or \ + (drive[2] == 'vfat' and 'rw' in drive[3]) or \ + (drive[2] == 'msdos' and 'rw' in drive[3]): + if os.path.isdir(os.path.join(drive[1], 'system')) and \ + os.path.isdir(os.path.join(drive[1], 'documents')): + return drive[1] + return False + + def checkThumbnails(self): + if os.path.isdir(os.path.join(self.path, 'system', 'thumbnails')): + return True + return False diff --git a/kindlecomicconverter/metadata.py b/kindlecomicconverter/metadata.py new file mode 100644 index 0000000..f2cf488 --- /dev/null +++ b/kindlecomicconverter/metadata.py @@ -0,0 +1,173 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +import os +from xml.dom.minidom import parse, Document +from re import compile +from zipfile import is_zipfile, ZipFile, ZIP_DEFLATED +from subprocess import STDOUT, PIPE +from psutil import Popen +from tempfile import mkdtemp +from shutil import rmtree +from .shared import removeFromZIP, check7ZFile as is_7zfile +from . import rarfile + + +class MetadataParser: + def __init__(self, source): + self.source = source + self.data = {'Series': '', + 'Volume': '', + 'Number': '', + 'Writers': [], + 'Pencillers': [], + 'Inkers': [], + 'Colorists': [], + 'Summary': '', + 'MUid': '', + 'Bookmarks': []} + self.rawdata = None + self.compressor = None + if self.source.endswith('.xml'): + self.rawdata = parse(self.source) + self.parseXML() + else: + if is_zipfile(self.source): + self.compressor = 'zip' + with ZipFile(self.source) as zip_file: + for member in zip_file.namelist(): + if member != 'ComicInfo.xml': + continue + with zip_file.open(member) as xml_file: + self.rawdata = parse(xml_file) + elif rarfile.is_rarfile(self.source): + self.compressor = 'rar' + with rarfile.RarFile(self.source) as rar_file: + for member in rar_file.namelist(): + if member != 'ComicInfo.xml': + continue + with rar_file.open(member) as xml_file: + self.rawdata = parse(xml_file) + elif is_7zfile(self.source): + self.compressor = '7z' + workdir = mkdtemp('', 'KCC-') + tmpXML = os.path.join(workdir, 'ComicInfo.xml') + output = Popen('7za e "' + self.source + '" ComicInfo.xml -o"' + workdir + '"', + stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + extracted = False + for line in output.stdout: + if b"Everything is Ok" in line or b"No files to process" in line: + extracted = True + if not extracted: + rmtree(workdir) + raise OSError('Failed to extract 7ZIP file.') + if os.path.isfile(tmpXML): + self.rawdata = parse(tmpXML) + rmtree(workdir) + else: + raise OSError('Failed to detect archive format.') + if self.rawdata: + self.parseXML() + + def parseXML(self): + if len(self.rawdata.getElementsByTagName('Series')) != 0: + self.data['Series'] = self.rawdata.getElementsByTagName('Series')[0].firstChild.nodeValue + if len(self.rawdata.getElementsByTagName('Volume')) != 0: + self.data['Volume'] = self.rawdata.getElementsByTagName('Volume')[0].firstChild.nodeValue + if len(self.rawdata.getElementsByTagName('Number')) != 0: + self.data['Number'] = self.rawdata.getElementsByTagName('Number')[0].firstChild.nodeValue + if len(self.rawdata.getElementsByTagName('Summary')) != 0: + self.data['Summary'] = self.rawdata.getElementsByTagName('Summary')[0].firstChild.nodeValue + for field in ['Writer', 'Penciller', 'Inker', 'Colorist']: + if len(self.rawdata.getElementsByTagName(field)) != 0: + for person in self.rawdata.getElementsByTagName(field)[0].firstChild.nodeValue.split(', '): + self.data[field + 's'].append(person) + self.data[field + 's'] = list(set(self.data[field + 's'])) + self.data[field + 's'].sort() + if len(self.rawdata.getElementsByTagName('ScanInformation')) != 0: + coverId = compile('(MCD\\()(\\d+)(\\))')\ + .search(self.rawdata.getElementsByTagName('ScanInformation')[0].firstChild.nodeValue) + if coverId: + self.data['MUid'] = coverId.group(2) + if len(self.rawdata.getElementsByTagName('Page')) != 0: + for page in self.rawdata.getElementsByTagName('Page'): + if 'Bookmark' in page.attributes and 'Image' in page.attributes: + self.data['Bookmarks'].append((int(page.attributes['Image'].value), + page.attributes['Bookmark'].value)) + + def saveXML(self): + if self.rawdata: + root = self.rawdata.getElementsByTagName('ComicInfo')[0] + for row in (['Series', self.data['Series']], ['Volume', self.data['Volume']], + ['Number', self.data['Number']], ['Writer', ', '.join(self.data['Writers'])], + ['Penciller', ', '.join(self.data['Pencillers'])], ['Inker', ', '.join(self.data['Inkers'])], + ['Colorist', ', '.join(self.data['Colorists'])], ['Summary', self.data['Summary']], + ['ScanInformation', 'MCD(' + self.data['MUid'] + ')' if self.data['MUid'] else '']): + if self.rawdata.getElementsByTagName(row[0]): + node = self.rawdata.getElementsByTagName(row[0])[0] + if row[1]: + node.firstChild.replaceWholeText(row[1]) + else: + root.removeChild(node) + elif row[1]: + main = self.rawdata.createElement(row[0]) + root.appendChild(main) + text = self.rawdata.createTextNode(row[1]) + main.appendChild(text) + else: + doc = Document() + root = doc.createElement('ComicInfo') + root.setAttribute('xmlns:xsd', 'http://www.w3.org/2001/XMLSchema') + root.setAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance') + doc.appendChild(root) + for row in (['Series', self.data['Series']], ['Volume', self.data['Volume']], + ['Number', self.data['Number']], ['Writer', ', '.join(self.data['Writers'])], + ['Penciller', ', '.join(self.data['Pencillers'])], ['Inker', ', '.join(self.data['Inkers'])], + ['Colorist', ', '.join(self.data['Colorists'])], ['Summary', self.data['Summary']], + ['ScanInformation', 'MCD(' + self.data['MUid'] + ')' if self.data['MUid'] else '']): + if row[1]: + main = doc.createElement(row[0]) + root.appendChild(main) + text = doc.createTextNode(row[1]) + main.appendChild(text) + self.rawdata = doc + if self.source.endswith('.xml'): + with open(self.source, 'w', encoding='utf-8') as f: + self.rawdata.writexml(f, encoding='utf-8') + else: + workdir = mkdtemp('', 'KCC-') + tmpXML = os.path.join(workdir, 'ComicInfo.xml') + with open(tmpXML, 'w', encoding='utf-8') as f: + self.rawdata.writexml(f, encoding='utf-8') + if is_zipfile(self.source): + removeFromZIP(self.source, 'ComicInfo.xml') + with ZipFile(self.source, mode='a', compression=ZIP_DEFLATED) as zip_file: + zip_file.write(tmpXML, arcname=tmpXML.split(os.sep)[-1]) + elif rarfile.is_rarfile(self.source): + raise NotImplementedError + elif is_7zfile(self.source): + output = Popen('7za a "' + self.source + '" "' + tmpXML + '"', + stdout=PIPE, stderr=STDOUT, stdin=PIPE, shell=True) + extracted = False + for line in output.stdout: + if b"Everything is Ok" in line: + extracted = True + if not extracted: + rmtree(workdir) + raise OSError('Failed to modify 7ZIP file.') + rmtree(workdir) diff --git a/kindlecomicconverter/pdfjpgextract.py b/kindlecomicconverter/pdfjpgextract.py new file mode 100644 index 0000000..90d0643 --- /dev/null +++ b/kindlecomicconverter/pdfjpgextract.py @@ -0,0 +1,68 @@ +# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Based upon the code snippet by Ned Batchelder +# (http://nedbatchelder.com/blog/200712/extracting_jpgs_from_pdfs.html) +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. +# + +import os +from random import choice +from string import ascii_uppercase, digits + + +class PdfJpgExtract: + def __init__(self, origFileName): + self.origFileName = origFileName + self.filename = os.path.splitext(origFileName) + # noinspection PyUnusedLocal + self.path = self.filename[0] + "-KCC-" + ''.join(choice(ascii_uppercase + digits) for x in range(3)) + + def getPath(self): + return self.path + + def extract(self): + pdf = open(self.origFileName, "rb").read() + startmark = b"\xff\xd8" + startfix = 0 + endmark = b"\xff\xd9" + endfix = 2 + i = 0 + njpg = 0 + os.makedirs(self.path) + while True: + istream = pdf.find(b"stream", i) + if istream < 0: + break + istart = pdf.find(startmark, istream, istream + 20) + if istart < 0: + i = istream + 20 + continue + iend = pdf.find(b"endstream", istart) + if iend < 0: + raise Exception("Didn't find end of stream!") + iend = pdf.find(endmark, iend - 20) + if iend < 0: + raise Exception("Didn't find end of JPG!") + istart += startfix + iend += endfix + jpg = pdf[istart:iend] + jpgfile = open(self.path + "/jpg%d.jpg" % njpg, "wb") + jpgfile.write(jpg) + jpgfile.close() + njpg += 1 + i = iend + return self.path, njpg diff --git a/kindlecomicconverter/rarfile.py b/kindlecomicconverter/rarfile.py new file mode 100644 index 0000000..afb19a7 --- /dev/null +++ b/kindlecomicconverter/rarfile.py @@ -0,0 +1,1990 @@ +# rarfile.py +# +# Copyright (c) 2005-2014 Marko Kreen <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +r"""RAR archive reader. + +This is Python module for Rar archive reading. The interface +is made as :mod:`zipfile`-like as possible. + +Basic logic: + - Parse archive structure with Python. + - Extract non-compressed files with Python + - Extract compressed files with unrar. + - Optionally write compressed data to temp file to speed up unrar, + otherwise it needs to scan whole archive on each execution. + +Example:: + + import rarfile + + rf = rarfile.RarFile('myarchive.rar') + for f in rf.infolist(): + print f.filename, f.file_size + if f.filename == 'README': + print(rf.read(f)) + +Archive files can also be accessed via file-like object returned +by :meth:`RarFile.open`:: + + import rarfile + + with rarfile.RarFile('archive.rar') as rf: + with rf.open('README') as f: + for ln in f: + print(ln.strip()) + +There are few module-level parameters to tune behaviour, +here they are with defaults, and reason to change it:: + + import rarfile + + # Set to full path of unrar.exe if it is not in PATH + rarfile.UNRAR_TOOL = "unrar" + + # Set to 0 if you don't look at comments and want to + # avoid wasting time for parsing them + rarfile.NEED_COMMENTS = 1 + + # Set up to 1 if you don't want to deal with decoding comments + # from unknown encoding. rarfile will try couple of common + # encodings in sequence. + rarfile.UNICODE_COMMENTS = 0 + + # Set to 1 if you prefer timestamps to be datetime objects + # instead tuples + rarfile.USE_DATETIME = 0 + + # Set to '/' to be more compatible with zipfile + rarfile.PATH_SEP = '\\' + +For more details, refer to source. + +""" + +__version__ = '2.7-kcc' + +# export only interesting items +__all__ = ['is_rarfile', 'RarInfo', 'RarFile', 'RarExtFile'] + +## +## Imports and compat - support both Python 2.x and 3.x +## + +import sys, os, struct, errno +from struct import pack, unpack +from binascii import crc32 +from tempfile import mkstemp +from subprocess import Popen, PIPE, STDOUT +from datetime import datetime + +# only needed for encryped headers +try: + from Crypto.Cipher import AES + try: + from hashlib import sha1 + except ImportError: + from sha import new as sha1 + _have_crypto = 1 +except ImportError: + _have_crypto = 0 + +# compat with 2.x +if sys.hexversion < 0x3000000: + # prefer 3.x behaviour + range = xrange + # py2.6 has broken bytes() + def bytes(s, enc): + return str(s) +else: + unicode = str + +# see if compat bytearray() is needed +try: + bytearray +except NameError: + import array + class bytearray: + def __init__(self, val = ''): + self.arr = array.array('B', val) + self.append = self.arr.append + self.__getitem__ = self.arr.__getitem__ + self.__len__ = self.arr.__len__ + def decode(self, *args): + return self.arr.tostring().decode(*args) + +# Optimized .readinto() requires memoryview +try: + memoryview + have_memoryview = 1 +except NameError: + have_memoryview = 0 + +# Struct() for older python +try: + from struct import Struct +except ImportError: + class Struct: + def __init__(self, fmt): + self.format = fmt + self.size = struct.calcsize(fmt) + def unpack(self, buf): + return unpack(self.format, buf) + def unpack_from(self, buf, ofs = 0): + return unpack(self.format, buf[ofs : ofs + self.size]) + def pack(self, *args): + return pack(self.format, *args) + +# file object superclass +try: + from io import RawIOBase +except ImportError: + class RawIOBase(object): + def close(self): + pass + + +## +## Module configuration. Can be tuned after importing. +## + +#: default fallback charset +DEFAULT_CHARSET = "windows-1252" + +#: list of encodings to try, with fallback to DEFAULT_CHARSET if none succeed +TRY_ENCODINGS = ('utf8', 'utf-16le') + +#: 'unrar', 'rar' or full path to either one +UNRAR_TOOL = "unrar" + +#: Command line args to use for opening file for reading. +OPEN_ARGS = ('p', '-inul') + +#: Command line args to use for extracting file to disk. +EXTRACT_ARGS = ('x', '-y', '-idq') + +#: args for testrar() +TEST_ARGS = ('t', '-idq') + +# +# Allow use of tool that is not compatible with unrar. +# +# By default use 'bsdtar' which is 'tar' program that +# sits on top of libarchive. +# +# Problems with libarchive RAR backend: +# - Does not support solid archives. +# - Does not support password-protected archives. +# + +ALT_TOOL = 'bsdtar' +ALT_OPEN_ARGS = ('-x', '--to-stdout', '-f') +ALT_EXTRACT_ARGS = ('-x', '-f') +ALT_TEST_ARGS = ('-t', '-f') +ALT_CHECK_ARGS = ('--help',) + +#: whether to speed up decompression by using tmp archive +USE_EXTRACT_HACK = 0 + +#: limit the filesize for tmp archive usage +HACK_SIZE_LIMIT = 20*1024*1024 + +#: whether to parse file/archive comments. +NEED_COMMENTS = 1 + +#: whether to convert comments to unicode strings +UNICODE_COMMENTS = 0 + +#: Convert RAR time tuple into datetime() object +USE_DATETIME = 0 + +#: Separator for path name components. RAR internally uses '\\'. +#: Use '/' to be similar with zipfile. +PATH_SEP = '\\' + +## +## rar constants +## + +# block types +RAR_BLOCK_MARK = 0x72 # r +RAR_BLOCK_MAIN = 0x73 # s +RAR_BLOCK_FILE = 0x74 # t +RAR_BLOCK_OLD_COMMENT = 0x75 # u +RAR_BLOCK_OLD_EXTRA = 0x76 # v +RAR_BLOCK_OLD_SUB = 0x77 # w +RAR_BLOCK_OLD_RECOVERY = 0x78 # x +RAR_BLOCK_OLD_AUTH = 0x79 # y +RAR_BLOCK_SUB = 0x7a # z +RAR_BLOCK_ENDARC = 0x7b # { + +# flags for RAR_BLOCK_MAIN +RAR_MAIN_VOLUME = 0x0001 +RAR_MAIN_COMMENT = 0x0002 +RAR_MAIN_LOCK = 0x0004 +RAR_MAIN_SOLID = 0x0008 +RAR_MAIN_NEWNUMBERING = 0x0010 +RAR_MAIN_AUTH = 0x0020 +RAR_MAIN_RECOVERY = 0x0040 +RAR_MAIN_PASSWORD = 0x0080 +RAR_MAIN_FIRSTVOLUME = 0x0100 +RAR_MAIN_ENCRYPTVER = 0x0200 + +# flags for RAR_BLOCK_FILE +RAR_FILE_SPLIT_BEFORE = 0x0001 +RAR_FILE_SPLIT_AFTER = 0x0002 +RAR_FILE_PASSWORD = 0x0004 +RAR_FILE_COMMENT = 0x0008 +RAR_FILE_SOLID = 0x0010 +RAR_FILE_DICTMASK = 0x00e0 +RAR_FILE_DICT64 = 0x0000 +RAR_FILE_DICT128 = 0x0020 +RAR_FILE_DICT256 = 0x0040 +RAR_FILE_DICT512 = 0x0060 +RAR_FILE_DICT1024 = 0x0080 +RAR_FILE_DICT2048 = 0x00a0 +RAR_FILE_DICT4096 = 0x00c0 +RAR_FILE_DIRECTORY = 0x00e0 +RAR_FILE_LARGE = 0x0100 +RAR_FILE_UNICODE = 0x0200 +RAR_FILE_SALT = 0x0400 +RAR_FILE_VERSION = 0x0800 +RAR_FILE_EXTTIME = 0x1000 +RAR_FILE_EXTFLAGS = 0x2000 + +# flags for RAR_BLOCK_ENDARC +RAR_ENDARC_NEXT_VOLUME = 0x0001 +RAR_ENDARC_DATACRC = 0x0002 +RAR_ENDARC_REVSPACE = 0x0004 +RAR_ENDARC_VOLNR = 0x0008 + +# flags common to all blocks +RAR_SKIP_IF_UNKNOWN = 0x4000 +RAR_LONG_BLOCK = 0x8000 + +# Host OS types +RAR_OS_MSDOS = 0 +RAR_OS_OS2 = 1 +RAR_OS_WIN32 = 2 +RAR_OS_UNIX = 3 +RAR_OS_MACOS = 4 +RAR_OS_BEOS = 5 + +# Compression methods - '0'..'5' +RAR_M0 = 0x30 +RAR_M1 = 0x31 +RAR_M2 = 0x32 +RAR_M3 = 0x33 +RAR_M4 = 0x34 +RAR_M5 = 0x35 + +## +## internal constants +## + +RAR_ID = bytes("Rar!\x1a\x07\x00", 'ascii') +RAR5_ID = bytes("Rar!\x1a\x07\x01", 'ascii') +ZERO = bytes("\0", 'ascii') +EMPTY = bytes("", 'ascii') + +S_BLK_HDR = Struct('<HBHH') +S_FILE_HDR = Struct('<LLBLLBBHL') +S_LONG = Struct('<L') +S_SHORT = Struct('<H') +S_BYTE = Struct('<B') +S_COMMENT_HDR = Struct('<HBBH') + +## +## Public interface +## + +class Error(Exception): + """Base class for rarfile errors.""" +class BadRarFile(Error): + """Incorrect data in archive.""" +class NotRarFile(Error): + """The file is not RAR archive.""" +class BadRarName(Error): + """Cannot guess multipart name components.""" +class NoRarEntry(Error): + """File not found in RAR""" +class PasswordRequired(Error): + """File requires password""" +class NeedFirstVolume(Error): + """Need to start from first volume.""" +class NoCrypto(Error): + """Cannot parse encrypted headers - no crypto available.""" +class RarExecError(Error): + """Problem reported by unrar/rar.""" +class RarWarning(RarExecError): + """Non-fatal error""" +class RarFatalError(RarExecError): + """Fatal error""" +class RarCRCError(RarExecError): + """CRC error during unpacking""" +class RarLockedArchiveError(RarExecError): + """Must not modify locked archive""" +class RarWriteError(RarExecError): + """Write error""" +class RarOpenError(RarExecError): + """Open error""" +class RarUserError(RarExecError): + """User error""" +class RarMemoryError(RarExecError): + """Memory error""" +class RarCreateError(RarExecError): + """Create error""" +class RarNoFilesError(RarExecError): + """No files that match pattern were found""" +class RarUserBreak(RarExecError): + """User stop""" +class RarUnknownError(RarExecError): + """Unknown exit code""" +class RarSignalExit(RarExecError): + """Unrar exited with signal""" +class RarCannotExec(RarExecError): + """Executable not found.""" + + +def is_rarfile(xfile): + '''Check quickly whether file is rar archive.''' + with open(xfile, 'rb') as fh: + buf = fh.read(len(RAR_ID)) + if buf == RAR_ID or buf == RAR5_ID: + return True + else: + return False + + +class RarInfo(object): + r'''An entry in rar archive. + + :mod:`zipfile`-compatible fields: + + filename + File name with relative path. + Default path separator is '\\', to change set rarfile.PATH_SEP. + Always unicode string. + date_time + Modification time, tuple of (year, month, day, hour, minute, second). + Or datetime() object if USE_DATETIME is set. + file_size + Uncompressed size. + compress_size + Compressed size. + CRC + CRC-32 of uncompressed file, unsigned int. + comment + File comment. Byte string or None. Use UNICODE_COMMENTS + to get automatic decoding to unicode. + volume + Volume nr, starting from 0. + + RAR-specific fields: + + compress_type + Compression method: 0x30 - 0x35. + extract_version + Minimal Rar version needed for decompressing. + host_os + Host OS type, one of RAR_OS_* constants. + mode + File attributes. May be either dos-style or unix-style, depending on host_os. + volume_file + Volume file name, where file starts. + mtime + Optional time field: Modification time, with float seconds. + Same as .date_time but with more precision. + ctime + Optional time field: creation time, with float seconds. + atime + Optional time field: last access time, with float seconds. + arctime + Optional time field: archival time, with float seconds. + + Internal fields: + + type + One of RAR_BLOCK_* types. Only entries with type==RAR_BLOCK_FILE are shown in .infolist(). + flags + For files, RAR_FILE_* bits. + ''' + + __slots__ = ( + # zipfile-compatible fields + 'filename', + 'file_size', + 'compress_size', + 'date_time', + 'comment', + 'CRC', + 'volume', + 'orig_filename', # bytes in unknown encoding + + # rar-specific fields + 'extract_version', + 'compress_type', + 'host_os', + 'mode', + 'type', + 'flags', + + # optional extended time fields + # tuple where the sec is float, or datetime(). + 'mtime', # same as .date_time + 'ctime', + 'atime', + 'arctime', + + # RAR internals + 'name_size', + 'header_size', + 'header_crc', + 'file_offset', + 'add_size', + 'header_data', + 'header_base', + 'header_offset', + 'salt', + 'volume_file', + ) + + def isdir(self): + '''Returns True if the entry is a directory.''' + if self.type == RAR_BLOCK_FILE: + return (self.flags & RAR_FILE_DIRECTORY) == RAR_FILE_DIRECTORY + return False + + def needs_password(self): + return self.flags & RAR_FILE_PASSWORD + + +class RarFile(object): + '''Parse RAR structure, provide access to files in archive. + ''' + + #: Archive comment. Byte string or None. Use :data:`UNICODE_COMMENTS` + #: to get automatic decoding to unicode. + comment = None + + def __init__(self, rarfile, mode="r", charset=None, info_callback=None, + crc_check = True, errors = "stop"): + """Open and parse a RAR archive. + + Parameters: + + rarfile + archive file name + mode + only 'r' is supported. + charset + fallback charset to use, if filenames are not already Unicode-enabled. + info_callback + debug callback, gets to see all archive entries. + crc_check + set to False to disable CRC checks + errors + Either "stop" to quietly stop parsing on errors, + or "strict" to raise errors. Default is "stop". + """ + self.rarfile = rarfile + self.comment = None + self._charset = charset or DEFAULT_CHARSET + self._info_callback = info_callback + + self._info_list = [] + self._info_map = {} + self._needs_password = False + self._password = None + self._crc_check = crc_check + self._vol_list = [] + + if errors == "stop": + self._strict = False + elif errors == "strict": + self._strict = True + else: + raise ValueError("Invalid value for 'errors' parameter.") + + self._main = None + + if mode != "r": + raise NotImplementedError("RarFile supports only mode=r") + + self._parse() + + def __enter__(self): + return self + + def __exit__(self, type, value, traceback): + self.close() + + def setpassword(self, password): + '''Sets the password to use when extracting.''' + self._password = password + if not self._main: + self._parse() + + def needs_password(self): + '''Returns True if any archive entries require password for extraction.''' + return self._needs_password + + def namelist(self): + '''Return list of filenames in archive.''' + return [f.filename for f in self._info_list] + + def infolist(self): + '''Return RarInfo objects for all files/directories in archive.''' + return self._info_list + + def volumelist(self): + '''Returns filenames of archive volumes. + + In case of single-volume archive, the list contains + just the name of main archive file. + ''' + return self._vol_list + + def getinfo(self, fname): + '''Return RarInfo for file.''' + + if isinstance(fname, RarInfo): + return fname + + # accept both ways here + if PATH_SEP == '/': + fname2 = fname.replace("\\", "/") + else: + fname2 = fname.replace("/", "\\") + + try: + return self._info_map[fname] + except KeyError: + try: + return self._info_map[fname2] + except KeyError: + raise NoRarEntry("No such file: "+fname) + + def open(self, fname, mode = 'r', psw = None): + '''Returns file-like object (:class:`RarExtFile`), + from where the data can be read. + + The object implements :class:`io.RawIOBase` interface, so it can + be further wrapped with :class:`io.BufferedReader` + and :class:`io.TextIOWrapper`. + + On older Python where io module is not available, it implements + only .read(), .seek(), .tell() and .close() methods. + + The object is seekable, although the seeking is fast only on + uncompressed files, on compressed files the seeking is implemented + by reading ahead and/or restarting the decompression. + + Parameters: + + fname + file name or RarInfo instance. + mode + must be 'r' + psw + password to use for extracting. + ''' + + if mode != 'r': + raise NotImplementedError("RarFile.open() supports only mode=r") + + # entry lookup + inf = self.getinfo(fname) + if inf.isdir(): + raise TypeError("Directory does not have any data: " + inf.filename) + + if inf.flags & RAR_FILE_SPLIT_BEFORE: + raise NeedFirstVolume("Partial file, please start from first volume: " + inf.filename) + + # check password + if inf.needs_password(): + psw = psw or self._password + if psw is None: + raise PasswordRequired("File %s requires password" % inf.filename) + else: + psw = None + + # is temp write usable? + use_hack = 1 + if not self._main: + use_hack = 0 + elif self._main.flags & (RAR_MAIN_SOLID | RAR_MAIN_PASSWORD): + use_hack = 0 + elif inf.flags & (RAR_FILE_SPLIT_BEFORE | RAR_FILE_SPLIT_AFTER): + use_hack = 0 + elif is_filelike(self.rarfile): + pass + elif inf.file_size > HACK_SIZE_LIMIT: + use_hack = 0 + elif not USE_EXTRACT_HACK: + use_hack = 0 + + # now extract + if inf.compress_type == RAR_M0 and (inf.flags & RAR_FILE_PASSWORD) == 0: + return self._open_clear(inf) + elif use_hack: + return self._open_hack(inf, psw) + else: + return self._open_unrar(self.rarfile, inf, psw) + + def read(self, fname, psw = None): + """Return uncompressed data for archive entry. + + For longer files using :meth:`RarFile.open` may be better idea. + + Parameters: + + fname + filename or RarInfo instance + psw + password to use for extracting. + """ + + f = self.open(fname, 'r', psw) + try: + return f.read() + finally: + f.close() + + def close(self): + """Release open resources.""" + pass + + def printdir(self): + """Print archive file list to stdout.""" + for f in self._info_list: + print(f.filename) + + def extract(self, member, path=None, pwd=None): + """Extract single file into current directory. + + Parameters: + + member + filename or :class:`RarInfo` instance + path + optional destination path + pwd + optional password to use + """ + if isinstance(member, RarInfo): + fname = member.filename + else: + fname = member + self._extract([fname], path, pwd) + + def extractall(self, path=None, members=None, pwd=None): + """Extract all files into current directory. + + Parameters: + + path + optional destination path + members + optional filename or :class:`RarInfo` instance list to extract + pwd + optional password to use + """ + fnlist = [] + if members is not None: + for m in members: + if isinstance(m, RarInfo): + fnlist.append(m.filename) + else: + fnlist.append(m) + self._extract(fnlist, path, pwd) + + def testrar(self): + """Let 'unrar' test the archive. + """ + cmd = [UNRAR_TOOL] + list(TEST_ARGS) + add_password_arg(cmd, self._password) + cmd.append(self.rarfile) + p = custom_popen(cmd) + output = p.communicate()[0] + check_returncode(p, output) + + def strerror(self): + """Return error string if parsing failed, + or None if no problems. + """ + return self._parse_error + + ## + ## private methods + ## + + def _set_error(self, msg, *args): + if args: + msg = msg % args + self._parse_error = msg + if self._strict: + raise BadRarFile(msg) + + # store entry + def _process_entry(self, item): + if item.type == RAR_BLOCK_FILE: + # use only first part + if (item.flags & RAR_FILE_SPLIT_BEFORE) == 0: + self._info_map[item.filename] = item + self._info_list.append(item) + # remember if any items require password + if item.needs_password(): + self._needs_password = True + elif len(self._info_list) > 0: + # final crc is in last block + old = self._info_list[-1] + old.CRC = item.CRC + old.compress_size += item.compress_size + + # parse new-style comment + if item.type == RAR_BLOCK_SUB and item.filename == 'CMT': + if not NEED_COMMENTS: + pass + elif item.flags & (RAR_FILE_SPLIT_BEFORE | RAR_FILE_SPLIT_AFTER): + pass + elif item.flags & RAR_FILE_SOLID: + # file comment + cmt = self._read_comment_v3(item, self._password) + if len(self._info_list) > 0: + old = self._info_list[-1] + old.comment = cmt + else: + # archive comment + cmt = self._read_comment_v3(item, self._password) + self.comment = cmt + + if self._info_callback: + self._info_callback(item) + + # read rar + def _parse(self): + self._fd = None + try: + self._parse_real() + finally: + if self._fd: + self._fd.close() + self._fd = None + + def _parse_real(self): + fd = XFile(self.rarfile) + self._fd = fd + id = fd.read(len(RAR_ID)) + if id != RAR_ID and id != RAR5_ID: + raise NotRarFile("Not a Rar archive: "+self.rarfile) + + volume = 0 # first vol (.rar) is 0 + more_vols = 0 + endarc = 0 + volfile = self.rarfile + self._vol_list = [self.rarfile] + while 1: + if endarc: + h = None # don't read past ENDARC + else: + h = self._parse_header(fd) + if not h: + if more_vols: + volume += 1 + fd.close() + try: + volfile = self._next_volname(volfile) + fd = XFile(volfile) + except IOError: + self._set_error("Cannot open next volume: %s", volfile) + break + self._fd = fd + more_vols = 0 + endarc = 0 + self._vol_list.append(volfile) + continue + break + h.volume = volume + h.volume_file = volfile + + if h.type == RAR_BLOCK_MAIN and not self._main: + self._main = h + if h.flags & RAR_MAIN_NEWNUMBERING: + # RAR 2.x does not set FIRSTVOLUME, + # so check it only if NEWNUMBERING is used + if (h.flags & RAR_MAIN_FIRSTVOLUME) == 0: + raise NeedFirstVolume("Need to start from first volume") + if h.flags & RAR_MAIN_PASSWORD: + self._needs_password = True + if not self._password: + self._main = None + break + elif h.type == RAR_BLOCK_ENDARC: + more_vols = h.flags & RAR_ENDARC_NEXT_VOLUME + endarc = 1 + elif h.type == RAR_BLOCK_FILE: + # RAR 2.x does not write RAR_BLOCK_ENDARC + if h.flags & RAR_FILE_SPLIT_AFTER: + more_vols = 1 + # RAR 2.x does not set RAR_MAIN_FIRSTVOLUME + if volume == 0 and h.flags & RAR_FILE_SPLIT_BEFORE: + raise NeedFirstVolume("Need to start from first volume") + + # store it + self._process_entry(h) + + # go to next header + if h.add_size > 0: + fd.seek(h.file_offset + h.add_size, 0) + + # AES encrypted headers + _last_aes_key = (None, None, None) # (salt, key, iv) + def _decrypt_header(self, fd): + if not _have_crypto: + raise NoCrypto('Cannot parse encrypted headers - no crypto') + salt = fd.read(8) + if self._last_aes_key[0] == salt: + key, iv = self._last_aes_key[1:] + else: + key, iv = rar3_s2k(self._password, salt) + self._last_aes_key = (salt, key, iv) + return HeaderDecrypt(fd, key, iv) + + # read single header + def _parse_header(self, fd): + try: + # handle encrypted headers + if self._main and self._main.flags & RAR_MAIN_PASSWORD: + if not self._password: + return + fd = self._decrypt_header(fd) + + # now read actual header + return self._parse_block_header(fd) + except struct.error: + self._set_error('Broken header in RAR file') + return None + + # common header + def _parse_block_header(self, fd): + h = RarInfo() + h.header_offset = fd.tell() + h.comment = None + + # read and parse base header + buf = fd.read(S_BLK_HDR.size) + if not buf: + return None + t = S_BLK_HDR.unpack_from(buf) + h.header_crc, h.type, h.flags, h.header_size = t + h.header_base = S_BLK_HDR.size + pos = S_BLK_HDR.size + + # read full header + if h.header_size > S_BLK_HDR.size: + h.header_data = buf + fd.read(h.header_size - S_BLK_HDR.size) + else: + h.header_data = buf + h.file_offset = fd.tell() + + # unexpected EOF? + if len(h.header_data) != h.header_size: + self._set_error('Unexpected EOF when reading header') + return None + + # block has data assiciated with it? + if h.flags & RAR_LONG_BLOCK: + h.add_size = S_LONG.unpack_from(h.header_data, pos)[0] + else: + h.add_size = 0 + + # parse interesting ones, decide header boundaries for crc + if h.type == RAR_BLOCK_MARK: + return h + elif h.type == RAR_BLOCK_MAIN: + h.header_base += 6 + if h.flags & RAR_MAIN_ENCRYPTVER: + h.header_base += 1 + if h.flags & RAR_MAIN_COMMENT: + self._parse_subblocks(h, h.header_base) + self.comment = h.comment + elif h.type == RAR_BLOCK_FILE: + self._parse_file_header(h, pos) + elif h.type == RAR_BLOCK_SUB: + self._parse_file_header(h, pos) + h.header_base = h.header_size + elif h.type == RAR_BLOCK_OLD_AUTH: + h.header_base += 8 + elif h.type == RAR_BLOCK_OLD_EXTRA: + h.header_base += 7 + else: + h.header_base = h.header_size + + # check crc + if h.type == RAR_BLOCK_OLD_SUB: + crcdat = h.header_data[2:] + fd.read(h.add_size) + else: + crcdat = h.header_data[2:h.header_base] + + calc_crc = crc32(crcdat) & 0xFFFF + + # return good header + if h.header_crc == calc_crc: + return h + + # header parsing failed. + self._set_error('Header CRC error (%02x): exp=%x got=%x (xlen = %d)', + h.type, h.header_crc, calc_crc, len(crcdat)) + + # instead panicing, send eof + return None + + # read file-specific header + def _parse_file_header(self, h, pos): + fld = S_FILE_HDR.unpack_from(h.header_data, pos) + h.compress_size = fld[0] + h.file_size = fld[1] + h.host_os = fld[2] + h.CRC = fld[3] + h.date_time = parse_dos_time(fld[4]) + h.extract_version = fld[5] + h.compress_type = fld[6] + h.name_size = fld[7] + h.mode = fld[8] + pos += S_FILE_HDR.size + + if h.flags & RAR_FILE_LARGE: + h1 = S_LONG.unpack_from(h.header_data, pos)[0] + h2 = S_LONG.unpack_from(h.header_data, pos + 4)[0] + h.compress_size |= h1 << 32 + h.file_size |= h2 << 32 + pos += 8 + h.add_size = h.compress_size + + name = h.header_data[pos : pos + h.name_size ] + pos += h.name_size + if h.flags & RAR_FILE_UNICODE: + nul = name.find(ZERO) + h.orig_filename = name[:nul] + u = UnicodeFilename(h.orig_filename, name[nul + 1 : ]) + h.filename = u.decode() + + # if parsing failed fall back to simple name + if u.failed: + h.filename = self._decode(h.orig_filename) + else: + h.orig_filename = name + h.filename = self._decode(name) + + # change separator, if requested + if PATH_SEP != '\\': + h.filename = h.filename.replace('\\', PATH_SEP) + + if h.flags & RAR_FILE_SALT: + h.salt = h.header_data[pos : pos + 8] + pos += 8 + else: + h.salt = None + + # optional extended time stamps + if h.flags & RAR_FILE_EXTTIME: + pos = self._parse_ext_time(h, pos) + else: + h.mtime = h.atime = h.ctime = h.arctime = None + + # base header end + h.header_base = pos + + if h.flags & RAR_FILE_COMMENT: + self._parse_subblocks(h, pos) + + # convert timestamps + if USE_DATETIME: + h.date_time = to_datetime(h.date_time) + h.mtime = to_datetime(h.mtime) + h.atime = to_datetime(h.atime) + h.ctime = to_datetime(h.ctime) + h.arctime = to_datetime(h.arctime) + + # .mtime is .date_time with more precision + if h.mtime: + if USE_DATETIME: + h.date_time = h.mtime + else: + # keep seconds int + h.date_time = h.mtime[:5] + (int(h.mtime[5]),) + + return pos + + # find old-style comment subblock + def _parse_subblocks(self, h, pos): + hdata = h.header_data + while pos < len(hdata): + # ordinary block header + t = S_BLK_HDR.unpack_from(hdata, pos) + scrc, stype, sflags, slen = t + pos_next = pos + slen + pos += S_BLK_HDR.size + + # corrupt header + if pos_next < pos: + break + + # followed by block-specific header + if stype == RAR_BLOCK_OLD_COMMENT and pos + S_COMMENT_HDR.size <= pos_next: + declen, ver, meth, crc = S_COMMENT_HDR.unpack_from(hdata, pos) + pos += S_COMMENT_HDR.size + data = hdata[pos : pos_next] + cmt = rar_decompress(ver, meth, data, declen, sflags, + crc, self._password) + if not self._crc_check: + h.comment = self._decode_comment(cmt) + elif crc32(cmt) & 0xFFFF == crc: + h.comment = self._decode_comment(cmt) + + pos = pos_next + + def _parse_ext_time(self, h, pos): + data = h.header_data + + # flags and rest of data can be missing + flags = 0 + if pos + 2 <= len(data): + flags = S_SHORT.unpack_from(data, pos)[0] + pos += 2 + + h.mtime, pos = self._parse_xtime(flags >> 3*4, data, pos, h.date_time) + h.ctime, pos = self._parse_xtime(flags >> 2*4, data, pos) + h.atime, pos = self._parse_xtime(flags >> 1*4, data, pos) + h.arctime, pos = self._parse_xtime(flags >> 0*4, data, pos) + return pos + + def _parse_xtime(self, flag, data, pos, dostime = None): + unit = 10000000.0 # 100 ns units + if flag & 8: + if not dostime: + t = S_LONG.unpack_from(data, pos)[0] + dostime = parse_dos_time(t) + pos += 4 + rem = 0 + cnt = flag & 3 + for i in range(cnt): + b = S_BYTE.unpack_from(data, pos)[0] + rem = (b << 16) | (rem >> 8) + pos += 1 + sec = dostime[5] + rem / unit + if flag & 4: + sec += 1 + dostime = dostime[:5] + (sec,) + return dostime, pos + + # given current vol name, construct next one + def _next_volname(self, volfile): + if is_filelike(volfile): + raise IOError("Working on single FD") + if self._main.flags & RAR_MAIN_NEWNUMBERING: + return self._next_newvol(volfile) + return self._next_oldvol(volfile) + + # new-style next volume + def _next_newvol(self, volfile): + i = len(volfile) - 1 + while i >= 0: + if volfile[i] >= '0' and volfile[i] <= '9': + return self._inc_volname(volfile, i) + i -= 1 + raise BadRarName("Cannot construct volume name: "+volfile) + + # old-style next volume + def _next_oldvol(self, volfile): + # rar -> r00 + if volfile[-4:].lower() == '.rar': + return volfile[:-2] + '00' + return self._inc_volname(volfile, len(volfile) - 1) + + # increase digits with carry, otherwise just increment char + def _inc_volname(self, volfile, i): + fn = list(volfile) + while i >= 0: + if fn[i] != '9': + fn[i] = chr(ord(fn[i]) + 1) + break + fn[i] = '0' + i -= 1 + return ''.join(fn) + + def _open_clear(self, inf): + return DirectReader(self, inf) + + # put file compressed data into temporary .rar archive, and run + # unrar on that, thus avoiding unrar going over whole archive + def _open_hack(self, inf, psw = None): + BSIZE = 32*1024 + + size = inf.compress_size + inf.header_size + rf = XFile(inf.volume_file, 0) + rf.seek(inf.header_offset) + + tmpfd, tmpname = mkstemp(suffix='.rar') + tmpf = os.fdopen(tmpfd, "wb") + + try: + # create main header: crc, type, flags, size, res1, res2 + mh = S_BLK_HDR.pack(0x90CF, 0x73, 0, 13) + ZERO * (2+4) + tmpf.write(RAR_ID + mh) + while size > 0: + if size > BSIZE: + buf = rf.read(BSIZE) + else: + buf = rf.read(size) + if not buf: + raise BadRarFile('read failed: ' + inf.filename) + tmpf.write(buf) + size -= len(buf) + tmpf.close() + rf.close() + except: + rf.close() + tmpf.close() + os.unlink(tmpname) + raise + + return self._open_unrar(tmpname, inf, psw, tmpname) + + def _read_comment_v3(self, inf, psw=None): + + # read data + rf = XFile(inf.volume_file) + rf.seek(inf.file_offset) + data = rf.read(inf.compress_size) + rf.close() + + # decompress + cmt = rar_decompress(inf.extract_version, inf.compress_type, data, + inf.file_size, inf.flags, inf.CRC, psw, inf.salt) + + # check crc + if self._crc_check: + crc = crc32(cmt) + if crc < 0: + crc += (long(1) << 32) + if crc != inf.CRC: + return None + + return self._decode_comment(cmt) + + # extract using unrar + def _open_unrar(self, rarfile, inf, psw = None, tmpfile = None): + if is_filelike(rarfile): + raise ValueError("Cannot use unrar directly on memory buffer") + cmd = [UNRAR_TOOL] + list(OPEN_ARGS) + add_password_arg(cmd, psw) + cmd.append(rarfile) + + # not giving filename avoids encoding related problems + if not tmpfile: + fn = inf.filename + if PATH_SEP != os.sep: + fn = fn.replace(PATH_SEP, os.sep) + cmd.append(fn) + + # read from unrar pipe + return PipeReader(self, inf, cmd, tmpfile) + + def _decode(self, val): + for c in TRY_ENCODINGS: + try: + return val.decode(c) + except UnicodeError: + pass + return val.decode(self._charset, 'replace') + + def _decode_comment(self, val): + if UNICODE_COMMENTS: + return self._decode(val) + return val + + # call unrar to extract a file + def _extract(self, fnlist, path=None, psw=None): + cmd = [UNRAR_TOOL] + list(EXTRACT_ARGS) + + # pasoword + psw = psw or self._password + add_password_arg(cmd, psw) + + # rar file + cmd.append(self.rarfile) + + # file list + for fn in fnlist: + if os.sep != PATH_SEP: + fn = fn.replace(PATH_SEP, os.sep) + cmd.append(fn) + + # destination path + if path is not None: + cmd.append(path + os.sep) + + # call + p = custom_popen(cmd) + output = p.communicate()[0] + check_returncode(p, output) + +## +## Utility classes +## + +class UnicodeFilename: + """Handle unicode filename decompression""" + + def __init__(self, name, encdata): + self.std_name = bytearray(name) + self.encdata = bytearray(encdata) + self.pos = self.encpos = 0 + self.buf = bytearray() + self.failed = 0 + + def enc_byte(self): + try: + c = self.encdata[self.encpos] + self.encpos += 1 + return c + except IndexError: + self.failed = 1 + return 0 + + def std_byte(self): + try: + return self.std_name[self.pos] + except IndexError: + self.failed = 1 + return ord('?') + + def put(self, lo, hi): + self.buf.append(lo) + self.buf.append(hi) + self.pos += 1 + + def decode(self): + hi = self.enc_byte() + flagbits = 0 + while self.encpos < len(self.encdata): + if flagbits == 0: + flags = self.enc_byte() + flagbits = 8 + flagbits -= 2 + t = (flags >> flagbits) & 3 + if t == 0: + self.put(self.enc_byte(), 0) + elif t == 1: + self.put(self.enc_byte(), hi) + elif t == 2: + self.put(self.enc_byte(), self.enc_byte()) + else: + n = self.enc_byte() + if n & 0x80: + c = self.enc_byte() + for i in range((n & 0x7f) + 2): + lo = (self.std_byte() + c) & 0xFF + self.put(lo, hi) + else: + for i in range(n + 2): + self.put(self.std_byte(), 0) + return self.buf.decode("utf-16le", "replace") + + +class RarExtFile(RawIOBase): + """Base class for file-like object that :meth:`RarFile.open` returns. + + Provides public methods and common crc checking. + + Behaviour: + - no short reads - .read() and .readinfo() read as much as requested. + - no internal buffer, use io.BufferedReader for that. + + If :mod:`io` module is available (Python 2.6+, 3.x), then this calls + will inherit from :class:`io.RawIOBase` class. This makes line-based + access available: :meth:`RarExtFile.readline` and ``for ln in f``. + """ + + #: Filename of the archive entry + name = None + + def __init__(self, rf, inf): + RawIOBase.__init__(self) + + # standard io.* properties + self.name = inf.filename + self.mode = 'rb' + + self.rf = rf + self.inf = inf + self.crc_check = rf._crc_check + self.fd = None + self.CRC = 0 + self.remain = 0 + self.returncode = 0 + + self._open() + + def _open(self): + if self.fd: + self.fd.close() + self.fd = None + self.CRC = 0 + self.remain = self.inf.file_size + + def read(self, cnt = None): + """Read all or specified amount of data from archive entry.""" + + # sanitize cnt + if cnt is None or cnt < 0: + cnt = self.remain + elif cnt > self.remain: + cnt = self.remain + if cnt == 0: + return EMPTY + + # actual read + data = self._read(cnt) + if data: + self.CRC = crc32(data, self.CRC) + self.remain -= len(data) + if len(data) != cnt: + raise BadRarFile("Failed the read enough data") + + # done? + if not data or self.remain == 0: + #self.close() + self._check() + return data + + def _check(self): + """Check final CRC.""" + if not self.crc_check: + return + if self.returncode: + check_returncode(self, '') + if self.remain != 0: + raise BadRarFile("Failed the read enough data") + crc = self.CRC + if crc < 0: + crc += (long(1) << 32) + if crc != self.inf.CRC: + raise BadRarFile("Corrupt file - CRC check failed: " + self.inf.filename) + + def _read(self, cnt): + """Actual read that gets sanitized cnt.""" + + def close(self): + """Close open resources.""" + + RawIOBase.close(self) + + if self.fd: + self.fd.close() + self.fd = None + + def __del__(self): + """Hook delete to make sure tempfile is removed.""" + self.close() + + def readinto(self, buf): + """Zero-copy read directly into buffer. + + Returns bytes read. + """ + + data = self.read(len(buf)) + n = len(data) + try: + buf[:n] = data + except TypeError: + import array + if not isinstance(buf, array.array): + raise + buf[:n] = array.array(buf.typecode, data) + return n + + def tell(self): + """Return current reading position in uncompressed data.""" + return self.inf.file_size - self.remain + + def seek(self, ofs, whence = 0): + """Seek in data. + + On uncompressed files, the seeking works by actual + seeks so it's fast. On compresses files its slow + - forward seeking happends by reading ahead, + backwards by re-opening and decompressing from the start. + """ + + # disable crc check when seeking + self.crc_check = 0 + + fsize = self.inf.file_size + cur_ofs = self.tell() + + if whence == 0: # seek from beginning of file + new_ofs = ofs + elif whence == 1: # seek from current position + new_ofs = cur_ofs + ofs + elif whence == 2: # seek from end of file + new_ofs = fsize + ofs + else: + raise ValueError('Invalid value for whence') + + # sanity check + if new_ofs < 0: + new_ofs = 0 + elif new_ofs > fsize: + new_ofs = fsize + + # do the actual seek + if new_ofs >= cur_ofs: + self._skip(new_ofs - cur_ofs) + else: + # process old data ? + #self._skip(fsize - cur_ofs) + # reopen and seek + self._open() + self._skip(new_ofs) + return self.tell() + + def _skip(self, cnt): + """Read and discard data""" + while cnt > 0: + if cnt > 8192: + buf = self.read(8192) + else: + buf = self.read(cnt) + if not buf: + break + cnt -= len(buf) + + def readable(self): + """Returns True""" + return True + + def writable(self): + """Returns False. + + Writing is not supported.""" + return False + + def seekable(self): + """Returns True. + + Seeking is supported, although it's slow on compressed files. + """ + return True + + def readall(self): + """Read all remaining data""" + # avoid RawIOBase default impl + return self.read() + + +class PipeReader(RarExtFile): + """Read data from pipe, handle tempfile cleanup.""" + + def __init__(self, rf, inf, cmd, tempfile=None): + self.cmd = cmd + self.proc = None + self.tempfile = tempfile + RarExtFile.__init__(self, rf, inf) + + def _close_proc(self): + if not self.proc: + return + if self.proc.stdout: + self.proc.stdout.close() + if self.proc.stdin: + self.proc.stdin.close() + if self.proc.stderr: + self.proc.stderr.close() + self.proc.wait() + self.returncode = self.proc.returncode + self.proc = None + + def _open(self): + RarExtFile._open(self) + + # stop old process + self._close_proc() + + # launch new process + self.returncode = 0 + self.proc = custom_popen(self.cmd) + self.fd = self.proc.stdout + + # avoid situation where unrar waits on stdin + if self.proc.stdin: + self.proc.stdin.close() + + def _read(self, cnt): + """Read from pipe.""" + + # normal read is usually enough + data = self.fd.read(cnt) + if len(data) == cnt or not data: + return data + + # short read, try looping + buf = [data] + cnt -= len(data) + while cnt > 0: + data = self.fd.read(cnt) + if not data: + break + cnt -= len(data) + buf.append(data) + return EMPTY.join(buf) + + def close(self): + """Close open resources.""" + + self._close_proc() + RarExtFile.close(self) + + if self.tempfile: + try: + os.unlink(self.tempfile) + except OSError: + pass + self.tempfile = None + + if have_memoryview: + def readinto(self, buf): + """Zero-copy read directly into buffer.""" + cnt = len(buf) + if cnt > self.remain: + cnt = self.remain + vbuf = memoryview(buf) + res = got = 0 + while got < cnt: + res = self.fd.readinto(vbuf[got : cnt]) + if not res: + break + if self.crc_check: + self.CRC = crc32(vbuf[got : got + res], self.CRC) + self.remain -= res + got += res + return got + + +class DirectReader(RarExtFile): + """Read uncompressed data directly from archive.""" + + def _open(self): + RarExtFile._open(self) + + self.volfile = self.inf.volume_file + self.fd = XFile(self.volfile, 0) + self.fd.seek(self.inf.header_offset, 0) + self.cur = self.rf._parse_header(self.fd) + self.cur_avail = self.cur.add_size + + def _skip(self, cnt): + """RAR Seek, skipping through rar files to get to correct position + """ + + while cnt > 0: + # next vol needed? + if self.cur_avail == 0: + if not self._open_next(): + break + + # fd is in read pos, do the read + if cnt > self.cur_avail: + cnt -= self.cur_avail + self.remain -= self.cur_avail + self.cur_avail = 0 + else: + self.fd.seek(cnt, 1) + self.cur_avail -= cnt + self.remain -= cnt + cnt = 0 + + def _read(self, cnt): + """Read from potentially multi-volume archive.""" + + buf = [] + while cnt > 0: + # next vol needed? + if self.cur_avail == 0: + if not self._open_next(): + break + + # fd is in read pos, do the read + if cnt > self.cur_avail: + data = self.fd.read(self.cur_avail) + else: + data = self.fd.read(cnt) + if not data: + break + + # got some data + cnt -= len(data) + self.cur_avail -= len(data) + buf.append(data) + + if len(buf) == 1: + return buf[0] + return EMPTY.join(buf) + + def _open_next(self): + """Proceed to next volume.""" + + # is the file split over archives? + if (self.cur.flags & RAR_FILE_SPLIT_AFTER) == 0: + return False + + if self.fd: + self.fd.close() + self.fd = None + + # open next part + self.volfile = self.rf._next_volname(self.volfile) + fd = open(self.volfile, "rb", 0) + self.fd = fd + + # loop until first file header + while 1: + cur = self.rf._parse_header(fd) + if not cur: + raise BadRarFile("Unexpected EOF") + if cur.type in (RAR_BLOCK_MARK, RAR_BLOCK_MAIN): + if cur.add_size: + fd.seek(cur.add_size, 1) + continue + if cur.orig_filename != self.inf.orig_filename: + raise BadRarFile("Did not found file entry") + self.cur = cur + self.cur_avail = cur.add_size + return True + + if have_memoryview: + def readinto(self, buf): + """Zero-copy read directly into buffer.""" + got = 0 + vbuf = memoryview(buf) + while got < len(buf): + # next vol needed? + if self.cur_avail == 0: + if not self._open_next(): + break + + # lenght for next read + cnt = len(buf) - got + if cnt > self.cur_avail: + cnt = self.cur_avail + + # read into temp view + res = self.fd.readinto(vbuf[got : got + cnt]) + if not res: + break + if self.crc_check: + self.CRC = crc32(vbuf[got : got + res], self.CRC) + self.cur_avail -= res + self.remain -= res + got += res + return got + + +class HeaderDecrypt: + """File-like object that decrypts from another file""" + def __init__(self, f, key, iv): + self.f = f + self.ciph = AES.new(key, AES.MODE_CBC, iv) + self.buf = EMPTY + + def tell(self): + return self.f.tell() + + def read(self, cnt=None): + if cnt > 8*1024: + raise BadRarFile('Bad count to header decrypt - wrong password?') + + # consume old data + if cnt <= len(self.buf): + res = self.buf[:cnt] + self.buf = self.buf[cnt:] + return res + res = self.buf + self.buf = EMPTY + cnt -= len(res) + + # decrypt new data + BLK = self.ciph.block_size + while cnt > 0: + enc = self.f.read(BLK) + if len(enc) < BLK: + break + dec = self.ciph.decrypt(enc) + if cnt >= len(dec): + res += dec + cnt -= len(dec) + else: + res += dec[:cnt] + self.buf = dec[cnt:] + cnt = 0 + + return res + +# handle (filename|filelike) object +class XFile(object): + __slots__ = ('_fd', '_need_close') + def __init__(self, xfile, bufsize = 1024): + if is_filelike(xfile): + self._need_close = False + self._fd = xfile + self._fd.seek(0) + else: + self._need_close = True + self._fd = open(xfile, 'rb', bufsize) + def read(self, n=None): + return self._fd.read(n) + def tell(self): + return self._fd.tell() + def seek(self, ofs, whence=0): + return self._fd.seek(ofs, whence) + def readinto(self, dst): + return self._fd.readinto(dst) + def close(self): + if self._need_close: + self._fd.close() + def __enter__(self): + return self + def __exit__(self, typ, val, tb): + self.close() + +## +## Utility functions +## + +def is_filelike(obj): + if isinstance(obj, str) or isinstance(obj, unicode): + return False + res = True + for a in ('read', 'tell', 'seek'): + res = res and hasattr(obj, a) + if not res: + raise ValueError("Invalid object passed as file") + return True + +def rar3_s2k(psw, salt): + """String-to-key hash for RAR3.""" + + seed = psw.encode('utf-16le') + salt + iv = EMPTY + h = sha1() + for i in range(16): + for j in range(0x4000): + cnt = S_LONG.pack(i*0x4000 + j) + h.update(seed + cnt[:3]) + if j == 0: + iv += h.digest()[19:20] + key_be = h.digest()[:16] + key_le = pack("<LLLL", *unpack(">LLLL", key_be)) + return key_le, iv + +def rar_decompress(vers, meth, data, declen=0, flags=0, crc=0, psw=None, salt=None): + """Decompress blob of compressed data. + + Used for data with non-standard header - eg. comments. + """ + + # already uncompressed? + if meth == RAR_M0 and (flags & RAR_FILE_PASSWORD) == 0: + return data + + # take only necessary flags + flags = flags & (RAR_FILE_PASSWORD | RAR_FILE_SALT | RAR_FILE_DICTMASK) + flags |= RAR_LONG_BLOCK + + # file header + fname = bytes('data', 'ascii') + date = 0 + mode = 0x20 + fhdr = S_FILE_HDR.pack(len(data), declen, RAR_OS_MSDOS, crc, + date, vers, meth, len(fname), mode) + fhdr += fname + if flags & RAR_FILE_SALT: + if not salt: + return EMPTY + fhdr += salt + + # full header + hlen = S_BLK_HDR.size + len(fhdr) + hdr = S_BLK_HDR.pack(0, RAR_BLOCK_FILE, flags, hlen) + fhdr + hcrc = crc32(hdr[2:]) & 0xFFFF + hdr = S_BLK_HDR.pack(hcrc, RAR_BLOCK_FILE, flags, hlen) + fhdr + + # archive main header + mh = S_BLK_HDR.pack(0x90CF, RAR_BLOCK_MAIN, 0, 13) + ZERO * (2+4) + + # decompress via temp rar + tmpfd, tmpname = mkstemp(suffix='.rar') + tmpf = os.fdopen(tmpfd, "wb") + try: + tmpf.write(RAR_ID + mh + hdr + data) + tmpf.close() + + cmd = [UNRAR_TOOL] + list(OPEN_ARGS) + add_password_arg(cmd, psw, (flags & RAR_FILE_PASSWORD)) + cmd.append(tmpname) + + p = custom_popen(cmd) + return p.communicate()[0] + finally: + tmpf.close() + os.unlink(tmpname) + +def to_datetime(t): + """Convert 6-part time tuple into datetime object.""" + + if t is None: + return None + + # extract values + year, mon, day, h, m, xs = t + s = int(xs) + us = int(1000000 * (xs - s)) + + # assume the values are valid + try: + return datetime(year, mon, day, h, m, s, us) + except ValueError: + pass + + # sanitize invalid values + MDAY = (0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31) + if mon < 1: mon = 1 + if mon > 12: mon = 12 + if day < 1: day = 1 + if day > MDAY[mon]: day = MDAY[mon] + if h > 23: h = 23 + if m > 59: m = 59 + if s > 59: s = 59 + if mon == 2 and day == 29: + try: + return datetime(year, mon, day, h, m, s, us) + except ValueError: + day = 28 + return datetime(year, mon, day, h, m, s, us) + +def parse_dos_time(stamp): + """Parse standard 32-bit DOS timestamp.""" + + sec = stamp & 0x1F; stamp = stamp >> 5 + min = stamp & 0x3F; stamp = stamp >> 6 + hr = stamp & 0x1F; stamp = stamp >> 5 + day = stamp & 0x1F; stamp = stamp >> 5 + mon = stamp & 0x0F; stamp = stamp >> 4 + yr = (stamp & 0x7F) + 1980 + return (yr, mon, day, hr, min, sec * 2) + +def custom_popen(cmd): + """Disconnect cmd from parent fds, read only from stdout.""" + + # needed for py2exe + creationflags = 0 + if sys.platform == 'win32': + creationflags = 0x08000000 # CREATE_NO_WINDOW + + # run command + try: + p = Popen(cmd, bufsize = 0, + stdout = PIPE, stdin = PIPE, stderr = STDOUT, + creationflags = creationflags) + except OSError: + ex = sys.exc_info()[1] + if ex.errno == errno.ENOENT: + raise RarCannotExec("Unrar not installed? (rarfile.UNRAR_TOOL=%r)" % UNRAR_TOOL) + raise + return p + +def custom_check(cmd, ignore_retcode=False): + """Run command, collect output, raise error if needed.""" + p = custom_popen(cmd) + out, err = p.communicate() + if p.returncode and not ignore_retcode: + raise RarExecError("Check-run failed") + return out + +def add_password_arg(cmd, psw, required=False): + """Append password switch to commandline.""" + if UNRAR_TOOL == ALT_TOOL: + return + if psw is not None: + cmd.append('-p' + psw) + else: + cmd.append('-p-') + +def check_returncode(p, out): + """Raise exception according to unrar exit code""" + + code = p.returncode + if code == 0: + return + if code == 9: + return + + # map return code to exception class + errmap = [None, + RarWarning, RarFatalError, RarCRCError, RarLockedArchiveError, + RarWriteError, RarOpenError, RarUserError, RarMemoryError, + RarCreateError, RarNoFilesError] # codes from rar.txt + if UNRAR_TOOL == ALT_TOOL: + errmap = [None] + if code > 0 and code < len(errmap): + exc = errmap[code] + elif code == 255: + exc = RarUserBreak + elif code < 0: + exc = RarSignalExit + else: + exc = RarUnknownError + + # format message + if out: + msg = "%s [%d]: %s" % (exc.__doc__, p.returncode, out) + else: + msg = "%s [%d]" % (exc.__doc__, p.returncode) + + raise exc(msg) + +# +# Check if unrar works +# + +try: + # does UNRAR_TOOL work? + custom_check([UNRAR_TOOL], True) +except RarCannotExec: + try: + # does ALT_TOOL work? + custom_check([ALT_TOOL] + list(ALT_CHECK_ARGS), True) + # replace config + UNRAR_TOOL = ALT_TOOL + OPEN_ARGS = ALT_OPEN_ARGS + EXTRACT_ARGS = ALT_EXTRACT_ARGS + TEST_ARGS = ALT_TEST_ARGS + except RarCannotExec: + # no usable tool, only uncompressed archives work + pass + diff --git a/kindlecomicconverter/shared.py b/kindlecomicconverter/shared.py new file mode 100644 index 0000000..3843f39 --- /dev/null +++ b/kindlecomicconverter/shared.py @@ -0,0 +1,196 @@ +# Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]> +# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]> +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. +# + +import os +from sys import version_info +from hashlib import md5 +from html.parser import HTMLParser +from distutils.version import StrictVersion +from time import sleep +from shutil import rmtree, copy +from tempfile import mkdtemp +from zipfile import ZipFile, ZIP_DEFLATED +from re import split +from traceback import format_tb +try: + from scandir import walk +except ImportError: + walk = os.walk + + +class HTMLStripper(HTMLParser): + def __init__(self): + HTMLParser.__init__(self) + self.reset() + self.strict = False + self.convert_charrefs = True + self.fed = [] + + def handle_data(self, d): + self.fed.append(d) + + def get_data(self): + return ''.join(self.fed) + + def error(self, message): + pass + + +def getImageFileName(imgfile): + name, ext = os.path.splitext(imgfile) + ext = ext.lower() + if name.startswith('.') or (ext != '.png' and ext != '.jpg' and ext != '.jpeg' and ext != '.gif'): + return None + return [name, ext] + + +def walkSort(dirnames, filenames): + convert = lambda text: int(text) if text.isdigit() else text + alphanum_key = lambda key: [convert(c) for c in split('([0-9]+)', key)] + dirnames.sort(key=lambda name: alphanum_key(name.lower())) + filenames.sort(key=lambda name: alphanum_key(name.lower())) + return dirnames, filenames + + +def walkLevel(some_dir, level=1): + some_dir = some_dir.rstrip(os.path.sep) + assert os.path.isdir(some_dir) + num_sep = some_dir.count(os.path.sep) + for root, dirs, files in walk(some_dir): + dirs, files = walkSort(dirs, files) + yield root, dirs, files + num_sep_this = root.count(os.path.sep) + if num_sep + level <= num_sep_this: + del dirs[:] + + +def md5Checksum(filePath): + with open(filePath, 'rb') as fh: + m = md5() + while True: + data = fh.read(8192) + if not data: + break + m.update(data) + return m.hexdigest() + + +def check7ZFile(filePath): + with open(filePath, 'rb') as fh: + header = fh.read(6) + return header == b"7z\xbc\xaf'\x1c" + + +def saferReplace(old, new): + for x in range(30): + try: + os.replace(old, new) + except PermissionError: + sleep(1) + else: + break + else: + raise PermissionError("Failed to move the file.") + + +def saferRemove(target): + for x in range(30): + try: + os.remove(target) + except PermissionError: + sleep(1) + else: + break + else: + raise PermissionError("Failed to remove the file.") + + +def removeFromZIP(zipfname, *filenames): + tempdir = mkdtemp('', 'KCC-') + try: + tempname = os.path.join(tempdir, 'KCC.zip') + with ZipFile(zipfname, 'r') as zipread: + with ZipFile(tempname, 'w', compression=ZIP_DEFLATED) as zipwrite: + for item in zipread.infolist(): + if item.filename not in filenames: + zipwrite.writestr(item, zipread.read(item.filename)) + for x in range(30): + try: + copy(tempname, zipfname) + except PermissionError: + sleep(1) + else: + break + else: + raise PermissionError + finally: + rmtree(tempdir, True) + + +def sanitizeTrace(traceback): + return ''.join(format_tb(traceback))\ + .replace('C:/Users/Pawel/Documents/Projekty/KCC/', '')\ + .replace('C:/Python35/', '')\ + .replace('c:/python35/', '')\ + .replace('C:\\Users\\Pawel\\Documents\\Projekty\\KCC\\', '')\ + .replace('C:\\Python35\\', '')\ + .replace('c:\\python35\\', '') + + +def dependencyCheck(level): + missing = [] + if level > 2: + try: + from PyQt5.QtCore import qVersion as qtVersion + if StrictVersion('5.6.0') > StrictVersion(qtVersion()): + missing.append('PyQt 5.6.0+') + except ImportError: + missing.append('PyQt 5.6.0+') + try: + import raven + except ImportError: + missing.append('raven 5.13.0+') + if level > 1: + try: + from psutil import __version__ as psutilVersion + if StrictVersion('4.1.0') > StrictVersion(psutilVersion): + missing.append('psutil 4.1.0+') + except ImportError: + missing.append('psutil 4.1.0+') + try: + from slugify import __version__ as slugifyVersion + if StrictVersion('1.2.0') > StrictVersion(slugifyVersion): + missing.append('python-slugify 1.2.0+') + except ImportError: + missing.append('python-slugify 1.2.0+') + try: + from PIL import PILLOW_VERSION as pillowVersion + if StrictVersion('3.2.0') > StrictVersion(pillowVersion): + missing.append('Pillow 3.2.0+') + except ImportError: + missing.append('Pillow 3.2.0+') + if version_info[1] < 5: + try: + from scandir import __version__ as scandirVersion + if StrictVersion('1.2') > StrictVersion(scandirVersion): + missing.append('scandir 1.2+') + except ImportError: + missing.append('scandir 1.2+') + if len(missing) > 0: + print('ERROR: ' + ', '.join(missing) + ' is not installed!') + exit(1) |